Edward M. Reingold <reingold@emr.cs.iit.edu>
[emacs.git] / src / xfns.c
blobaf7ed7473e863d24f694b03fd3b49f55e3920139
1 /* Functions for the X window system.
2 Copyright (C) 1989, 92, 93, 94, 95, 96, 97, 98, 99, 2000, 01, 02, 03
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 /* Non-zero means we're allowed to display an hourglass cursor. */
144 int display_hourglass_p;
146 /* The background and shape of the mouse pointer, and shape when not
147 over text or in the modeline. */
149 Lisp_Object Vx_pointer_shape, Vx_nontext_pointer_shape, Vx_mode_pointer_shape;
150 Lisp_Object Vx_hourglass_pointer_shape;
152 /* The shape when over mouse-sensitive text. */
154 Lisp_Object Vx_sensitive_text_pointer_shape;
156 /* If non-nil, the pointer shape to indicate that windows can be
157 dragged horizontally. */
159 Lisp_Object Vx_window_horizontal_drag_shape;
161 /* Color of chars displayed in cursor box. */
163 Lisp_Object Vx_cursor_fore_pixel;
165 /* Nonzero if using X. */
167 static int x_in_use;
169 /* Non nil if no window manager is in use. */
171 Lisp_Object Vx_no_window_manager;
173 /* Search path for bitmap files. */
175 Lisp_Object Vx_bitmap_file_path;
177 /* Regexp matching a font name whose width is the same as `PIXEL_SIZE'. */
179 Lisp_Object Vx_pixel_size_width_font_regexp;
181 Lisp_Object Qnone;
182 Lisp_Object Qsuppress_icon;
183 Lisp_Object Qundefined_color;
184 Lisp_Object Qcenter;
185 Lisp_Object Qcompound_text, Qcancel_timer;
187 /* In dispnew.c */
189 extern Lisp_Object Vwindow_system_version;
191 /* The below are defined in frame.c. */
193 #if GLYPH_DEBUG
194 int image_cache_refcount, dpyinfo_refcount;
195 #endif
199 /* Error if we are not connected to X. */
201 void
202 check_x ()
204 if (! x_in_use)
205 error ("X windows are not in use or not initialized");
208 /* Nonzero if we can use mouse menus.
209 You should not call this unless HAVE_MENUS is defined. */
212 have_menus_p ()
214 return x_in_use;
217 /* Extract a frame as a FRAME_PTR, defaulting to the selected frame
218 and checking validity for X. */
220 FRAME_PTR
221 check_x_frame (frame)
222 Lisp_Object frame;
224 FRAME_PTR f;
226 if (NILP (frame))
227 frame = selected_frame;
228 CHECK_LIVE_FRAME (frame);
229 f = XFRAME (frame);
230 if (! FRAME_X_P (f))
231 error ("Non-X frame used");
232 return f;
235 /* Let the user specify an X display with a frame.
236 nil stands for the selected frame--or, if that is not an X frame,
237 the first X display on the list. */
239 struct x_display_info *
240 check_x_display_info (frame)
241 Lisp_Object frame;
243 struct x_display_info *dpyinfo = NULL;
245 if (NILP (frame))
247 struct frame *sf = XFRAME (selected_frame);
249 if (FRAME_X_P (sf) && FRAME_LIVE_P (sf))
250 dpyinfo = FRAME_X_DISPLAY_INFO (sf);
251 else if (x_display_list != 0)
252 dpyinfo = x_display_list;
253 else
254 error ("X windows are not in use or not initialized");
256 else if (STRINGP (frame))
257 dpyinfo = x_display_info_for_name (frame);
258 else
260 FRAME_PTR f = check_x_frame (frame);
261 dpyinfo = FRAME_X_DISPLAY_INFO (f);
264 return dpyinfo;
268 /* Return the Emacs frame-object corresponding to an X window.
269 It could be the frame's main window or an icon window. */
271 /* This function can be called during GC, so use GC_xxx type test macros. */
273 struct frame *
274 x_window_to_frame (dpyinfo, wdesc)
275 struct x_display_info *dpyinfo;
276 int wdesc;
278 Lisp_Object tail, frame;
279 struct frame *f;
281 for (tail = Vframe_list; GC_CONSP (tail); tail = XCDR (tail))
283 frame = XCAR (tail);
284 if (!GC_FRAMEP (frame))
285 continue;
286 f = XFRAME (frame);
287 if (!FRAME_X_P (f) || FRAME_X_DISPLAY_INFO (f) != dpyinfo)
288 continue;
289 if (f->output_data.x->hourglass_window == wdesc)
290 return f;
291 #ifdef USE_X_TOOLKIT
292 if ((f->output_data.x->edit_widget
293 && XtWindow (f->output_data.x->edit_widget) == wdesc)
294 /* A tooltip frame? */
295 || (!f->output_data.x->edit_widget
296 && FRAME_X_WINDOW (f) == wdesc)
297 || f->output_data.x->icon_desc == wdesc)
298 return f;
299 #else /* not USE_X_TOOLKIT */
300 #ifdef USE_GTK
301 if (f->output_data.x->edit_widget)
303 GtkWidget *gwdesc = xg_win_to_widget (wdesc);
304 struct x_output *x = f->output_data.x;
305 if (gwdesc != 0 && gwdesc == x->edit_widget)
306 return f;
308 #endif /* USE_GTK */
309 if (FRAME_X_WINDOW (f) == wdesc
310 || f->output_data.x->icon_desc == wdesc)
311 return f;
312 #endif /* not USE_X_TOOLKIT */
314 return 0;
317 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
318 /* Like x_window_to_frame but also compares the window with the widget's
319 windows. */
321 struct frame *
322 x_any_window_to_frame (dpyinfo, wdesc)
323 struct x_display_info *dpyinfo;
324 int wdesc;
326 Lisp_Object tail, frame;
327 struct frame *f, *found;
328 struct x_output *x;
330 found = NULL;
331 for (tail = Vframe_list; GC_CONSP (tail) && !found; tail = XCDR (tail))
333 frame = XCAR (tail);
334 if (!GC_FRAMEP (frame))
335 continue;
337 f = XFRAME (frame);
338 if (FRAME_X_P (f) && FRAME_X_DISPLAY_INFO (f) == dpyinfo)
340 /* This frame matches if the window is any of its widgets. */
341 x = f->output_data.x;
342 if (x->hourglass_window == wdesc)
343 found = f;
344 else if (x->widget)
346 #ifdef USE_GTK
347 GtkWidget *gwdesc = xg_win_to_widget (wdesc);
348 if (gwdesc != 0
349 && (gwdesc == x->widget
350 || gwdesc == x->edit_widget
351 || gwdesc == x->vbox_widget
352 || gwdesc == x->menubar_widget))
353 found = f;
354 #else
355 if (wdesc == XtWindow (x->widget)
356 || wdesc == XtWindow (x->column_widget)
357 || wdesc == XtWindow (x->edit_widget))
358 found = f;
359 /* Match if the window is this frame's menubar. */
360 else if (lw_window_is_in_menubar (wdesc, x->menubar_widget))
361 found = f;
362 #endif
364 else if (FRAME_X_WINDOW (f) == wdesc)
365 /* A tooltip frame. */
366 found = f;
370 return found;
373 /* Likewise, but exclude the menu bar widget. */
375 struct frame *
376 x_non_menubar_window_to_frame (dpyinfo, wdesc)
377 struct x_display_info *dpyinfo;
378 int wdesc;
380 Lisp_Object tail, frame;
381 struct frame *f;
382 struct x_output *x;
384 for (tail = Vframe_list; GC_CONSP (tail); tail = XCDR (tail))
386 frame = XCAR (tail);
387 if (!GC_FRAMEP (frame))
388 continue;
389 f = XFRAME (frame);
390 if (!FRAME_X_P (f) || FRAME_X_DISPLAY_INFO (f) != dpyinfo)
391 continue;
392 x = f->output_data.x;
393 /* This frame matches if the window is any of its widgets. */
394 if (x->hourglass_window == wdesc)
395 return f;
396 else if (x->widget)
398 #ifdef USE_GTK
399 GtkWidget *gwdesc = xg_win_to_widget (wdesc);
400 if (gwdesc != 0
401 && (gwdesc == x->widget
402 || gwdesc == x->edit_widget
403 || gwdesc == x->vbox_widget))
404 return f;
405 #else
406 if (wdesc == XtWindow (x->widget)
407 || wdesc == XtWindow (x->column_widget)
408 || wdesc == XtWindow (x->edit_widget))
409 return f;
410 #endif
412 else if (FRAME_X_WINDOW (f) == wdesc)
413 /* A tooltip frame. */
414 return f;
416 return 0;
419 /* Likewise, but consider only the menu bar widget. */
421 struct frame *
422 x_menubar_window_to_frame (dpyinfo, wdesc)
423 struct x_display_info *dpyinfo;
424 int wdesc;
426 Lisp_Object tail, frame;
427 struct frame *f;
428 struct x_output *x;
430 for (tail = Vframe_list; GC_CONSP (tail); tail = XCDR (tail))
432 frame = XCAR (tail);
433 if (!GC_FRAMEP (frame))
434 continue;
435 f = XFRAME (frame);
436 if (!FRAME_X_P (f) || FRAME_X_DISPLAY_INFO (f) != dpyinfo)
437 continue;
438 x = f->output_data.x;
439 /* Match if the window is this frame's menubar. */
440 #ifdef USE_GTK
441 if (x->menubar_widget)
443 GtkWidget *gwdesc = xg_win_to_widget (wdesc);
444 int found = 0;
446 BLOCK_INPUT;
447 if (gwdesc != 0
448 && (gwdesc == x->menubar_widget
449 || gtk_widget_get_parent (gwdesc) == x->menubar_widget))
450 found = 1;
451 UNBLOCK_INPUT;
452 if (found) return f;
454 #else
455 if (x->menubar_widget
456 && lw_window_is_in_menubar (wdesc, x->menubar_widget))
457 return f;
458 #endif
460 return 0;
463 /* Return the frame whose principal (outermost) window is WDESC.
464 If WDESC is some other (smaller) window, we return 0. */
466 struct frame *
467 x_top_window_to_frame (dpyinfo, wdesc)
468 struct x_display_info *dpyinfo;
469 int wdesc;
471 Lisp_Object tail, frame;
472 struct frame *f;
473 struct x_output *x;
475 for (tail = Vframe_list; GC_CONSP (tail); tail = XCDR (tail))
477 frame = XCAR (tail);
478 if (!GC_FRAMEP (frame))
479 continue;
480 f = XFRAME (frame);
481 if (!FRAME_X_P (f) || FRAME_X_DISPLAY_INFO (f) != dpyinfo)
482 continue;
483 x = f->output_data.x;
485 if (x->widget)
487 /* This frame matches if the window is its topmost widget. */
488 #ifdef USE_GTK
489 GtkWidget *gwdesc = xg_win_to_widget (wdesc);
490 if (gwdesc == x->widget)
491 return f;
492 #else
493 if (wdesc == XtWindow (x->widget))
494 return f;
495 #if 0 /* I don't know why it did this,
496 but it seems logically wrong,
497 and it causes trouble for MapNotify events. */
498 /* Match if the window is this frame's menubar. */
499 if (x->menubar_widget
500 && wdesc == XtWindow (x->menubar_widget))
501 return f;
502 #endif
503 #endif
505 else if (FRAME_X_WINDOW (f) == wdesc)
506 /* Tooltip frame. */
507 return f;
509 return 0;
511 #endif /* USE_X_TOOLKIT || USE_GTK */
515 /* Code to deal with bitmaps. Bitmaps are referenced by their bitmap
516 id, which is just an int that this section returns. Bitmaps are
517 reference counted so they can be shared among frames.
519 Bitmap indices are guaranteed to be > 0, so a negative number can
520 be used to indicate no bitmap.
522 If you use x_create_bitmap_from_data, then you must keep track of
523 the bitmaps yourself. That is, creating a bitmap from the same
524 data more than once will not be caught. */
527 /* Functions to access the contents of a bitmap, given an id. */
530 x_bitmap_height (f, id)
531 FRAME_PTR f;
532 int id;
534 return FRAME_X_DISPLAY_INFO (f)->bitmaps[id - 1].height;
538 x_bitmap_width (f, id)
539 FRAME_PTR f;
540 int id;
542 return FRAME_X_DISPLAY_INFO (f)->bitmaps[id - 1].width;
546 x_bitmap_pixmap (f, id)
547 FRAME_PTR f;
548 int id;
550 return FRAME_X_DISPLAY_INFO (f)->bitmaps[id - 1].pixmap;
554 x_bitmap_mask (f, id)
555 FRAME_PTR f;
556 int id;
558 return FRAME_X_DISPLAY_INFO (f)->bitmaps[id - 1].mask;
562 /* Allocate a new bitmap record. Returns index of new record. */
564 static int
565 x_allocate_bitmap_record (f)
566 FRAME_PTR f;
568 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
569 int i;
571 if (dpyinfo->bitmaps == NULL)
573 dpyinfo->bitmaps_size = 10;
574 dpyinfo->bitmaps
575 = (struct x_bitmap_record *) xmalloc (dpyinfo->bitmaps_size * sizeof (struct x_bitmap_record));
576 dpyinfo->bitmaps_last = 1;
577 return 1;
580 if (dpyinfo->bitmaps_last < dpyinfo->bitmaps_size)
581 return ++dpyinfo->bitmaps_last;
583 for (i = 0; i < dpyinfo->bitmaps_size; ++i)
584 if (dpyinfo->bitmaps[i].refcount == 0)
585 return i + 1;
587 dpyinfo->bitmaps_size *= 2;
588 dpyinfo->bitmaps
589 = (struct x_bitmap_record *) xrealloc (dpyinfo->bitmaps,
590 dpyinfo->bitmaps_size * sizeof (struct x_bitmap_record));
591 return ++dpyinfo->bitmaps_last;
594 /* Add one reference to the reference count of the bitmap with id ID. */
596 void
597 x_reference_bitmap (f, id)
598 FRAME_PTR f;
599 int id;
601 ++FRAME_X_DISPLAY_INFO (f)->bitmaps[id - 1].refcount;
604 /* Create a bitmap for frame F from a HEIGHT x WIDTH array of bits at BITS. */
607 x_create_bitmap_from_data (f, bits, width, height)
608 struct frame *f;
609 char *bits;
610 unsigned int width, height;
612 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
613 Pixmap bitmap;
614 int id;
616 bitmap = XCreateBitmapFromData (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
617 bits, width, height);
621 if (! bitmap)
622 return -1;
624 id = x_allocate_bitmap_record (f);
625 dpyinfo->bitmaps[id - 1].pixmap = bitmap;
626 dpyinfo->bitmaps[id - 1].have_mask = 0;
627 dpyinfo->bitmaps[id - 1].file = NULL;
628 dpyinfo->bitmaps[id - 1].refcount = 1;
629 dpyinfo->bitmaps[id - 1].depth = 1;
630 dpyinfo->bitmaps[id - 1].height = height;
631 dpyinfo->bitmaps[id - 1].width = width;
633 return id;
636 /* Create bitmap from file FILE for frame F. */
639 x_create_bitmap_from_file (f, file)
640 struct frame *f;
641 Lisp_Object file;
643 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
644 unsigned int width, height;
645 Pixmap bitmap;
646 int xhot, yhot, result, id;
647 Lisp_Object found;
648 int fd;
649 char *filename;
651 /* Look for an existing bitmap with the same name. */
652 for (id = 0; id < dpyinfo->bitmaps_last; ++id)
654 if (dpyinfo->bitmaps[id].refcount
655 && dpyinfo->bitmaps[id].file
656 && !strcmp (dpyinfo->bitmaps[id].file, (char *) SDATA (file)))
658 ++dpyinfo->bitmaps[id].refcount;
659 return id + 1;
663 /* Search bitmap-file-path for the file, if appropriate. */
664 fd = openp (Vx_bitmap_file_path, file, Qnil, &found, Qnil);
665 if (fd < 0)
666 return -1;
667 emacs_close (fd);
669 filename = (char *) SDATA (found);
671 result = XReadBitmapFile (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
672 filename, &width, &height, &bitmap, &xhot, &yhot);
673 if (result != BitmapSuccess)
674 return -1;
676 id = x_allocate_bitmap_record (f);
677 dpyinfo->bitmaps[id - 1].pixmap = bitmap;
678 dpyinfo->bitmaps[id - 1].have_mask = 0;
679 dpyinfo->bitmaps[id - 1].refcount = 1;
680 dpyinfo->bitmaps[id - 1].file
681 = (char *) xmalloc (SBYTES (file) + 1);
682 dpyinfo->bitmaps[id - 1].depth = 1;
683 dpyinfo->bitmaps[id - 1].height = height;
684 dpyinfo->bitmaps[id - 1].width = width;
685 strcpy (dpyinfo->bitmaps[id - 1].file, SDATA (file));
687 return id;
690 /* Remove reference to bitmap with id number ID. */
692 void
693 x_destroy_bitmap (f, id)
694 FRAME_PTR f;
695 int id;
697 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
699 if (id > 0)
701 --dpyinfo->bitmaps[id - 1].refcount;
702 if (dpyinfo->bitmaps[id - 1].refcount == 0)
704 BLOCK_INPUT;
705 XFreePixmap (FRAME_X_DISPLAY (f), dpyinfo->bitmaps[id - 1].pixmap);
706 if (dpyinfo->bitmaps[id - 1].have_mask)
707 XFreePixmap (FRAME_X_DISPLAY (f), dpyinfo->bitmaps[id - 1].mask);
708 if (dpyinfo->bitmaps[id - 1].file)
710 xfree (dpyinfo->bitmaps[id - 1].file);
711 dpyinfo->bitmaps[id - 1].file = NULL;
713 UNBLOCK_INPUT;
718 /* Free all the bitmaps for the display specified by DPYINFO. */
720 static void
721 x_destroy_all_bitmaps (dpyinfo)
722 struct x_display_info *dpyinfo;
724 int i;
725 for (i = 0; i < dpyinfo->bitmaps_last; i++)
726 if (dpyinfo->bitmaps[i].refcount > 0)
728 XFreePixmap (dpyinfo->display, dpyinfo->bitmaps[i].pixmap);
729 if (dpyinfo->bitmaps[i].have_mask)
730 XFreePixmap (dpyinfo->display, dpyinfo->bitmaps[i].mask);
731 if (dpyinfo->bitmaps[i].file)
732 xfree (dpyinfo->bitmaps[i].file);
734 dpyinfo->bitmaps_last = 0;
740 /* Useful functions defined in the section
741 `Image type independent image structures' below. */
743 static unsigned long four_corners_best P_ ((XImage *ximg, unsigned long width,
744 unsigned long height));
746 static int x_create_x_image_and_pixmap P_ ((struct frame *f, int width, int height,
747 int depth, XImage **ximg,
748 Pixmap *pixmap));
750 static void x_destroy_x_image P_ ((XImage *ximg));
753 /* Create a mask of a bitmap. Note is this not a perfect mask.
754 It's nicer with some borders in this context */
757 x_create_bitmap_mask(f, id)
758 struct frame *f;
759 int id;
761 Pixmap pixmap, mask;
762 XImage *ximg, *mask_img;
763 unsigned long width, height;
764 int result;
765 unsigned long bg;
766 unsigned long x, y, xp, xm, yp, ym;
767 GC gc;
769 int depth = DefaultDepthOfScreen (FRAME_X_SCREEN (f));
770 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
772 if (!(id > 0))
773 return -1;
775 pixmap = x_bitmap_pixmap(f, id);
776 width = x_bitmap_width(f, id);
777 height = x_bitmap_height(f, id);
779 BLOCK_INPUT;
780 ximg = XGetImage (FRAME_X_DISPLAY (f), pixmap, 0, 0, width, height,
781 ~0, ZPixmap);
783 if (!ximg)
785 UNBLOCK_INPUT;
786 return -1;
789 result = x_create_x_image_and_pixmap (f, width, height, 1, &mask_img, &mask);
791 UNBLOCK_INPUT;
792 if (!result)
794 XDestroyImage(ximg);
795 return -1;
798 bg = four_corners_best (ximg, width, height);
800 for (y = 0; y < ximg->height; ++y)
802 for (x = 0; x < ximg->width; ++x)
804 xp = x != ximg->width - 1 ? x + 1 : 0;
805 xm = x != 0 ? x - 1 : ximg->width - 1;
806 yp = y != ximg->height - 1 ? y + 1 : 0;
807 ym = y != 0 ? y - 1 : ximg->height - 1;
808 if (XGetPixel (ximg, x, y) == bg
809 && XGetPixel (ximg, x, yp) == bg
810 && XGetPixel (ximg, x, ym) == bg
811 && XGetPixel (ximg, xp, y) == bg
812 && XGetPixel (ximg, xp, yp) == bg
813 && XGetPixel (ximg, xp, ym) == bg
814 && XGetPixel (ximg, xm, y) == bg
815 && XGetPixel (ximg, xm, yp) == bg
816 && XGetPixel (ximg, xm, ym) == bg)
817 XPutPixel (mask_img, x, y, 0);
818 else
819 XPutPixel (mask_img, x, y, 1);
823 xassert (interrupt_input_blocked);
824 gc = XCreateGC (FRAME_X_DISPLAY (f), mask, 0, NULL);
825 XPutImage (FRAME_X_DISPLAY (f), mask, gc, mask_img, 0, 0, 0, 0,
826 width, height);
827 XFreeGC (FRAME_X_DISPLAY (f), gc);
829 dpyinfo->bitmaps[id - 1].have_mask = 1;
830 dpyinfo->bitmaps[id - 1].mask = mask;
832 XDestroyImage (ximg);
833 x_destroy_x_image(mask_img);
835 return 0;
838 static Lisp_Object unwind_create_frame P_ ((Lisp_Object));
839 static Lisp_Object unwind_create_tip_frame P_ ((Lisp_Object));
840 static void x_disable_image P_ ((struct frame *, struct image *));
842 void x_set_foreground_color P_ ((struct frame *, Lisp_Object, Lisp_Object));
843 static void x_set_wait_for_wm P_ ((struct frame *, Lisp_Object, Lisp_Object));
844 void x_set_background_color P_ ((struct frame *, Lisp_Object, Lisp_Object));
845 void x_set_mouse_color P_ ((struct frame *, Lisp_Object, Lisp_Object));
846 void x_set_cursor_color P_ ((struct frame *, Lisp_Object, Lisp_Object));
847 void x_set_border_color P_ ((struct frame *, Lisp_Object, Lisp_Object));
848 void x_set_cursor_type P_ ((struct frame *, Lisp_Object, Lisp_Object));
849 void x_set_icon_type P_ ((struct frame *, Lisp_Object, Lisp_Object));
850 void x_set_icon_name P_ ((struct frame *, Lisp_Object, Lisp_Object));
851 void x_explicitly_set_name P_ ((struct frame *, Lisp_Object, Lisp_Object));
852 void x_set_menu_bar_lines P_ ((struct frame *, Lisp_Object, Lisp_Object));
853 void x_set_title P_ ((struct frame *, Lisp_Object, Lisp_Object));
854 void x_set_tool_bar_lines P_ ((struct frame *, Lisp_Object, Lisp_Object));
855 void x_set_scroll_bar_foreground P_ ((struct frame *, Lisp_Object,
856 Lisp_Object));
857 void x_set_scroll_bar_background P_ ((struct frame *, Lisp_Object,
858 Lisp_Object));
859 static Lisp_Object x_default_scroll_bar_color_parameter P_ ((struct frame *,
860 Lisp_Object,
861 Lisp_Object,
862 char *, char *,
863 int));
864 static void x_edge_detection P_ ((struct frame *, struct image *, Lisp_Object,
865 Lisp_Object));
866 static void init_color_table P_ ((void));
867 static void free_color_table P_ ((void));
868 static unsigned long *colors_in_color_table P_ ((int *n));
869 static unsigned long lookup_rgb_color P_ ((struct frame *f, int r, int g, int b));
870 static unsigned long lookup_pixel_color P_ ((struct frame *f, unsigned long p));
876 /* Store the screen positions of frame F into XPTR and YPTR.
877 These are the positions of the containing window manager window,
878 not Emacs's own window. */
880 void
881 x_real_positions (f, xptr, yptr)
882 FRAME_PTR f;
883 int *xptr, *yptr;
885 int win_x, win_y, outer_x, outer_y;
886 int real_x = 0, real_y = 0;
887 int had_errors = 0;
888 Window win = f->output_data.x->parent_desc;
890 int count;
892 BLOCK_INPUT;
894 count = x_catch_errors (FRAME_X_DISPLAY (f));
896 if (win == FRAME_X_DISPLAY_INFO (f)->root_window)
897 win = FRAME_OUTER_WINDOW (f);
899 /* This loop traverses up the containment tree until we hit the root
900 window. Window managers may intersect many windows between our window
901 and the root window. The window we find just before the root window
902 should be the outer WM window. */
903 for (;;)
905 Window wm_window, rootw;
906 Window *tmp_children;
907 unsigned int tmp_nchildren;
908 int success;
910 success = XQueryTree (FRAME_X_DISPLAY (f), win, &rootw,
911 &wm_window, &tmp_children, &tmp_nchildren);
913 had_errors = x_had_errors_p (FRAME_X_DISPLAY (f));
915 /* Don't free tmp_children if XQueryTree failed. */
916 if (! success)
917 break;
919 XFree ((char *) tmp_children);
921 if (wm_window == rootw || had_errors)
922 break;
924 win = wm_window;
927 if (! had_errors)
929 int ign;
930 Window child, rootw;
932 /* Get the real coordinates for the WM window upper left corner */
933 XGetGeometry (FRAME_X_DISPLAY (f), win,
934 &rootw, &real_x, &real_y, &ign, &ign, &ign, &ign);
936 /* Translate real coordinates to coordinates relative to our
937 window. For our window, the upper left corner is 0, 0.
938 Since the upper left corner of the WM window is outside
939 our window, win_x and win_y will be negative:
941 ------------------ ---> x
942 | title |
943 | ----------------- v y
944 | | our window
946 XTranslateCoordinates (FRAME_X_DISPLAY (f),
948 /* From-window, to-window. */
949 FRAME_X_DISPLAY_INFO (f)->root_window,
950 FRAME_X_WINDOW (f),
952 /* From-position, to-position. */
953 real_x, real_y, &win_x, &win_y,
955 /* Child of win. */
956 &child);
958 if (FRAME_X_WINDOW (f) == FRAME_OUTER_WINDOW (f))
960 outer_x = win_x;
961 outer_y = win_y;
963 else
965 XTranslateCoordinates (FRAME_X_DISPLAY (f),
967 /* From-window, to-window. */
968 FRAME_X_DISPLAY_INFO (f)->root_window,
969 FRAME_OUTER_WINDOW (f),
971 /* From-position, to-position. */
972 real_x, real_y, &outer_x, &outer_y,
974 /* Child of win. */
975 &child);
978 had_errors = x_had_errors_p (FRAME_X_DISPLAY (f));
981 x_uncatch_errors (FRAME_X_DISPLAY (f), count);
983 UNBLOCK_INPUT;
985 if (had_errors) return;
987 f->x_pixels_diff = -win_x;
988 f->y_pixels_diff = -win_y;
990 FRAME_X_OUTPUT (f)->x_pixels_outer_diff = -outer_x;
991 FRAME_X_OUTPUT (f)->y_pixels_outer_diff = -outer_y;
993 *xptr = real_x;
994 *yptr = real_y;
1000 /* Gamma-correct COLOR on frame F. */
1002 void
1003 gamma_correct (f, color)
1004 struct frame *f;
1005 XColor *color;
1007 if (f->gamma)
1009 color->red = pow (color->red / 65535.0, f->gamma) * 65535.0 + 0.5;
1010 color->green = pow (color->green / 65535.0, f->gamma) * 65535.0 + 0.5;
1011 color->blue = pow (color->blue / 65535.0, f->gamma) * 65535.0 + 0.5;
1016 /* Decide if color named COLOR_NAME is valid for use on frame F. If
1017 so, return the RGB values in COLOR. If ALLOC_P is non-zero,
1018 allocate the color. Value is zero if COLOR_NAME is invalid, or
1019 no color could be allocated. */
1022 x_defined_color (f, color_name, color, alloc_p)
1023 struct frame *f;
1024 char *color_name;
1025 XColor *color;
1026 int alloc_p;
1028 int success_p;
1029 Display *dpy = FRAME_X_DISPLAY (f);
1030 Colormap cmap = FRAME_X_COLORMAP (f);
1032 BLOCK_INPUT;
1033 success_p = XParseColor (dpy, cmap, color_name, color);
1034 if (success_p && alloc_p)
1035 success_p = x_alloc_nearest_color (f, cmap, color);
1036 UNBLOCK_INPUT;
1038 return success_p;
1042 /* Return the pixel color value for color COLOR_NAME on frame F. If F
1043 is a monochrome frame, return MONO_COLOR regardless of what ARG says.
1044 Signal an error if color can't be allocated. */
1047 x_decode_color (f, color_name, mono_color)
1048 FRAME_PTR f;
1049 Lisp_Object color_name;
1050 int mono_color;
1052 XColor cdef;
1054 CHECK_STRING (color_name);
1056 #if 0 /* Don't do this. It's wrong when we're not using the default
1057 colormap, it makes freeing difficult, and it's probably not
1058 an important optimization. */
1059 if (strcmp (SDATA (color_name), "black") == 0)
1060 return BLACK_PIX_DEFAULT (f);
1061 else if (strcmp (SDATA (color_name), "white") == 0)
1062 return WHITE_PIX_DEFAULT (f);
1063 #endif
1065 /* Return MONO_COLOR for monochrome frames. */
1066 if (FRAME_X_DISPLAY_INFO (f)->n_planes == 1)
1067 return mono_color;
1069 /* x_defined_color is responsible for coping with failures
1070 by looking for a near-miss. */
1071 if (x_defined_color (f, SDATA (color_name), &cdef, 1))
1072 return cdef.pixel;
1074 Fsignal (Qerror, Fcons (build_string ("Undefined color"),
1075 Fcons (color_name, Qnil)));
1076 return 0;
1081 /* Change the `wait-for-wm' frame parameter of frame F. OLD_VALUE is
1082 the previous value of that parameter, NEW_VALUE is the new value.
1083 See also the comment of wait_for_wm in struct x_output. */
1085 static void
1086 x_set_wait_for_wm (f, new_value, old_value)
1087 struct frame *f;
1088 Lisp_Object new_value, old_value;
1090 f->output_data.x->wait_for_wm = !NILP (new_value);
1093 #ifdef USE_GTK
1095 static Lisp_Object x_find_image_file P_ ((Lisp_Object file));
1097 /* Set icon from FILE for frame F. By using GTK functions the icon
1098 may be any format that GdkPixbuf knows about, i.e. not just bitmaps. */
1101 xg_set_icon(f, file)
1102 FRAME_PTR f;
1103 Lisp_Object file;
1105 struct gcpro gcpro1;
1106 int result = 0;
1107 Lisp_Object found;
1109 GCPRO1 (found);
1111 found = x_find_image_file (file);
1113 if (! NILP (found))
1115 GdkPixbuf *pixbuf;
1116 GError *err = NULL;
1117 char *filename;
1119 filename = SDATA (found);
1120 BLOCK_INPUT;
1122 pixbuf = gdk_pixbuf_new_from_file (filename, &err);
1124 if (pixbuf)
1126 gtk_window_set_icon (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
1127 pixbuf);
1128 g_object_unref (pixbuf);
1130 result = 1;
1132 else
1133 g_error_free (err);
1135 UNBLOCK_INPUT;
1138 UNGCPRO;
1139 return result;
1141 #endif /* USE_GTK */
1144 /* Functions called only from `x_set_frame_param'
1145 to set individual parameters.
1147 If FRAME_X_WINDOW (f) is 0,
1148 the frame is being created and its X-window does not exist yet.
1149 In that case, just record the parameter's new value
1150 in the standard place; do not attempt to change the window. */
1152 void
1153 x_set_foreground_color (f, arg, oldval)
1154 struct frame *f;
1155 Lisp_Object arg, oldval;
1157 struct x_output *x = f->output_data.x;
1158 unsigned long fg, old_fg;
1160 fg = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f));
1161 old_fg = x->foreground_pixel;
1162 x->foreground_pixel = fg;
1164 if (FRAME_X_WINDOW (f) != 0)
1166 Display *dpy = FRAME_X_DISPLAY (f);
1168 BLOCK_INPUT;
1169 XSetForeground (dpy, x->normal_gc, fg);
1170 XSetBackground (dpy, x->reverse_gc, fg);
1172 if (x->cursor_pixel == old_fg)
1174 unload_color (f, x->cursor_pixel);
1175 x->cursor_pixel = x_copy_color (f, fg);
1176 XSetBackground (dpy, x->cursor_gc, x->cursor_pixel);
1179 UNBLOCK_INPUT;
1181 update_face_from_frame_parameter (f, Qforeground_color, arg);
1183 if (FRAME_VISIBLE_P (f))
1184 redraw_frame (f);
1187 unload_color (f, old_fg);
1190 void
1191 x_set_background_color (f, arg, oldval)
1192 struct frame *f;
1193 Lisp_Object arg, oldval;
1195 struct x_output *x = f->output_data.x;
1196 unsigned long bg;
1198 bg = x_decode_color (f, arg, WHITE_PIX_DEFAULT (f));
1199 unload_color (f, x->background_pixel);
1200 x->background_pixel = bg;
1202 if (FRAME_X_WINDOW (f) != 0)
1204 Display *dpy = FRAME_X_DISPLAY (f);
1206 BLOCK_INPUT;
1207 XSetBackground (dpy, x->normal_gc, bg);
1208 XSetForeground (dpy, x->reverse_gc, bg);
1209 XSetWindowBackground (dpy, FRAME_X_WINDOW (f), bg);
1210 XSetForeground (dpy, x->cursor_gc, bg);
1212 #ifdef USE_GTK
1213 xg_set_background_color (f, bg);
1214 #endif
1216 #ifndef USE_TOOLKIT_SCROLL_BARS /* Turns out to be annoying with
1217 toolkit scroll bars. */
1219 Lisp_Object bar;
1220 for (bar = FRAME_SCROLL_BARS (f);
1221 !NILP (bar);
1222 bar = XSCROLL_BAR (bar)->next)
1224 Window window = SCROLL_BAR_X_WINDOW (XSCROLL_BAR (bar));
1225 XSetWindowBackground (dpy, window, bg);
1228 #endif /* USE_TOOLKIT_SCROLL_BARS */
1230 UNBLOCK_INPUT;
1231 update_face_from_frame_parameter (f, Qbackground_color, arg);
1233 if (FRAME_VISIBLE_P (f))
1234 redraw_frame (f);
1238 void
1239 x_set_mouse_color (f, arg, oldval)
1240 struct frame *f;
1241 Lisp_Object arg, oldval;
1243 struct x_output *x = f->output_data.x;
1244 Display *dpy = FRAME_X_DISPLAY (f);
1245 Cursor cursor, nontext_cursor, mode_cursor, hand_cursor;
1246 Cursor hourglass_cursor, horizontal_drag_cursor;
1247 int count;
1248 unsigned long pixel = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f));
1249 unsigned long mask_color = x->background_pixel;
1251 /* Don't let pointers be invisible. */
1252 if (mask_color == pixel)
1254 x_free_colors (f, &pixel, 1);
1255 pixel = x_copy_color (f, x->foreground_pixel);
1258 unload_color (f, x->mouse_pixel);
1259 x->mouse_pixel = pixel;
1261 BLOCK_INPUT;
1263 /* It's not okay to crash if the user selects a screwy cursor. */
1264 count = x_catch_errors (dpy);
1266 if (!NILP (Vx_pointer_shape))
1268 CHECK_NUMBER (Vx_pointer_shape);
1269 cursor = XCreateFontCursor (dpy, XINT (Vx_pointer_shape));
1271 else
1272 cursor = XCreateFontCursor (dpy, XC_xterm);
1273 x_check_errors (dpy, "bad text pointer cursor: %s");
1275 if (!NILP (Vx_nontext_pointer_shape))
1277 CHECK_NUMBER (Vx_nontext_pointer_shape);
1278 nontext_cursor
1279 = XCreateFontCursor (dpy, XINT (Vx_nontext_pointer_shape));
1281 else
1282 nontext_cursor = XCreateFontCursor (dpy, XC_left_ptr);
1283 x_check_errors (dpy, "bad nontext pointer cursor: %s");
1285 if (!NILP (Vx_hourglass_pointer_shape))
1287 CHECK_NUMBER (Vx_hourglass_pointer_shape);
1288 hourglass_cursor
1289 = XCreateFontCursor (dpy, XINT (Vx_hourglass_pointer_shape));
1291 else
1292 hourglass_cursor = XCreateFontCursor (dpy, XC_watch);
1293 x_check_errors (dpy, "bad hourglass pointer cursor: %s");
1295 x_check_errors (dpy, "bad nontext pointer cursor: %s");
1296 if (!NILP (Vx_mode_pointer_shape))
1298 CHECK_NUMBER (Vx_mode_pointer_shape);
1299 mode_cursor = XCreateFontCursor (dpy, XINT (Vx_mode_pointer_shape));
1301 else
1302 mode_cursor = XCreateFontCursor (dpy, XC_xterm);
1303 x_check_errors (dpy, "bad modeline pointer cursor: %s");
1305 if (!NILP (Vx_sensitive_text_pointer_shape))
1307 CHECK_NUMBER (Vx_sensitive_text_pointer_shape);
1308 hand_cursor
1309 = XCreateFontCursor (dpy, XINT (Vx_sensitive_text_pointer_shape));
1311 else
1312 hand_cursor = XCreateFontCursor (dpy, XC_hand2);
1314 if (!NILP (Vx_window_horizontal_drag_shape))
1316 CHECK_NUMBER (Vx_window_horizontal_drag_shape);
1317 horizontal_drag_cursor
1318 = XCreateFontCursor (dpy, XINT (Vx_window_horizontal_drag_shape));
1320 else
1321 horizontal_drag_cursor
1322 = XCreateFontCursor (dpy, XC_sb_h_double_arrow);
1324 /* Check and report errors with the above calls. */
1325 x_check_errors (dpy, "can't set cursor shape: %s");
1326 x_uncatch_errors (dpy, count);
1329 XColor fore_color, back_color;
1331 fore_color.pixel = x->mouse_pixel;
1332 x_query_color (f, &fore_color);
1333 back_color.pixel = mask_color;
1334 x_query_color (f, &back_color);
1336 XRecolorCursor (dpy, cursor, &fore_color, &back_color);
1337 XRecolorCursor (dpy, nontext_cursor, &fore_color, &back_color);
1338 XRecolorCursor (dpy, mode_cursor, &fore_color, &back_color);
1339 XRecolorCursor (dpy, hand_cursor, &fore_color, &back_color);
1340 XRecolorCursor (dpy, hourglass_cursor, &fore_color, &back_color);
1341 XRecolorCursor (dpy, horizontal_drag_cursor, &fore_color, &back_color);
1344 if (FRAME_X_WINDOW (f) != 0)
1345 XDefineCursor (dpy, FRAME_X_WINDOW (f), cursor);
1347 if (cursor != x->text_cursor
1348 && x->text_cursor != 0)
1349 XFreeCursor (dpy, x->text_cursor);
1350 x->text_cursor = cursor;
1352 if (nontext_cursor != x->nontext_cursor
1353 && x->nontext_cursor != 0)
1354 XFreeCursor (dpy, x->nontext_cursor);
1355 x->nontext_cursor = nontext_cursor;
1357 if (hourglass_cursor != x->hourglass_cursor
1358 && x->hourglass_cursor != 0)
1359 XFreeCursor (dpy, x->hourglass_cursor);
1360 x->hourglass_cursor = hourglass_cursor;
1362 if (mode_cursor != x->modeline_cursor
1363 && x->modeline_cursor != 0)
1364 XFreeCursor (dpy, f->output_data.x->modeline_cursor);
1365 x->modeline_cursor = mode_cursor;
1367 if (hand_cursor != x->hand_cursor
1368 && x->hand_cursor != 0)
1369 XFreeCursor (dpy, x->hand_cursor);
1370 x->hand_cursor = hand_cursor;
1372 if (horizontal_drag_cursor != x->horizontal_drag_cursor
1373 && x->horizontal_drag_cursor != 0)
1374 XFreeCursor (dpy, x->horizontal_drag_cursor);
1375 x->horizontal_drag_cursor = horizontal_drag_cursor;
1377 XFlush (dpy);
1378 UNBLOCK_INPUT;
1380 update_face_from_frame_parameter (f, Qmouse_color, arg);
1383 void
1384 x_set_cursor_color (f, arg, oldval)
1385 struct frame *f;
1386 Lisp_Object arg, oldval;
1388 unsigned long fore_pixel, pixel;
1389 int fore_pixel_allocated_p = 0, pixel_allocated_p = 0;
1390 struct x_output *x = f->output_data.x;
1392 if (!NILP (Vx_cursor_fore_pixel))
1394 fore_pixel = x_decode_color (f, Vx_cursor_fore_pixel,
1395 WHITE_PIX_DEFAULT (f));
1396 fore_pixel_allocated_p = 1;
1398 else
1399 fore_pixel = x->background_pixel;
1401 pixel = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f));
1402 pixel_allocated_p = 1;
1404 /* Make sure that the cursor color differs from the background color. */
1405 if (pixel == x->background_pixel)
1407 if (pixel_allocated_p)
1409 x_free_colors (f, &pixel, 1);
1410 pixel_allocated_p = 0;
1413 pixel = x->mouse_pixel;
1414 if (pixel == fore_pixel)
1416 if (fore_pixel_allocated_p)
1418 x_free_colors (f, &fore_pixel, 1);
1419 fore_pixel_allocated_p = 0;
1421 fore_pixel = x->background_pixel;
1425 unload_color (f, x->cursor_foreground_pixel);
1426 if (!fore_pixel_allocated_p)
1427 fore_pixel = x_copy_color (f, fore_pixel);
1428 x->cursor_foreground_pixel = fore_pixel;
1430 unload_color (f, x->cursor_pixel);
1431 if (!pixel_allocated_p)
1432 pixel = x_copy_color (f, pixel);
1433 x->cursor_pixel = pixel;
1435 if (FRAME_X_WINDOW (f) != 0)
1437 BLOCK_INPUT;
1438 XSetBackground (FRAME_X_DISPLAY (f), x->cursor_gc, x->cursor_pixel);
1439 XSetForeground (FRAME_X_DISPLAY (f), x->cursor_gc, fore_pixel);
1440 UNBLOCK_INPUT;
1442 if (FRAME_VISIBLE_P (f))
1444 x_update_cursor (f, 0);
1445 x_update_cursor (f, 1);
1449 update_face_from_frame_parameter (f, Qcursor_color, arg);
1452 /* Set the border-color of frame F to pixel value PIX.
1453 Note that this does not fully take effect if done before
1454 F has an x-window. */
1456 void
1457 x_set_border_pixel (f, pix)
1458 struct frame *f;
1459 int pix;
1461 unload_color (f, f->output_data.x->border_pixel);
1462 f->output_data.x->border_pixel = pix;
1464 if (FRAME_X_WINDOW (f) != 0 && f->border_width > 0)
1466 BLOCK_INPUT;
1467 XSetWindowBorder (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
1468 (unsigned long)pix);
1469 UNBLOCK_INPUT;
1471 if (FRAME_VISIBLE_P (f))
1472 redraw_frame (f);
1476 /* Set the border-color of frame F to value described by ARG.
1477 ARG can be a string naming a color.
1478 The border-color is used for the border that is drawn by the X server.
1479 Note that this does not fully take effect if done before
1480 F has an x-window; it must be redone when the window is created.
1482 Note: this is done in two routines because of the way X10 works.
1484 Note: under X11, this is normally the province of the window manager,
1485 and so emacs' border colors may be overridden. */
1487 void
1488 x_set_border_color (f, arg, oldval)
1489 struct frame *f;
1490 Lisp_Object arg, oldval;
1492 int pix;
1494 CHECK_STRING (arg);
1495 pix = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f));
1496 x_set_border_pixel (f, pix);
1497 update_face_from_frame_parameter (f, Qborder_color, arg);
1501 void
1502 x_set_cursor_type (f, arg, oldval)
1503 FRAME_PTR f;
1504 Lisp_Object arg, oldval;
1506 set_frame_cursor_types (f, arg);
1508 /* Make sure the cursor gets redrawn. */
1509 cursor_type_changed = 1;
1512 void
1513 x_set_icon_type (f, arg, oldval)
1514 struct frame *f;
1515 Lisp_Object arg, oldval;
1517 int result;
1519 if (STRINGP (arg))
1521 if (STRINGP (oldval) && EQ (Fstring_equal (oldval, arg), Qt))
1522 return;
1524 else if (!STRINGP (oldval) && EQ (oldval, Qnil) == EQ (arg, Qnil))
1525 return;
1527 BLOCK_INPUT;
1528 if (NILP (arg))
1529 result = x_text_icon (f,
1530 (char *) SDATA ((!NILP (f->icon_name)
1531 ? f->icon_name
1532 : f->name)));
1533 else
1534 result = x_bitmap_icon (f, arg);
1536 if (result)
1538 UNBLOCK_INPUT;
1539 error ("No icon window available");
1542 XFlush (FRAME_X_DISPLAY (f));
1543 UNBLOCK_INPUT;
1546 void
1547 x_set_icon_name (f, arg, oldval)
1548 struct frame *f;
1549 Lisp_Object arg, oldval;
1551 int result;
1553 if (STRINGP (arg))
1555 if (STRINGP (oldval) && EQ (Fstring_equal (oldval, arg), Qt))
1556 return;
1558 else if (!STRINGP (oldval) && EQ (oldval, Qnil) == EQ (arg, Qnil))
1559 return;
1561 f->icon_name = arg;
1563 if (f->output_data.x->icon_bitmap != 0)
1564 return;
1566 BLOCK_INPUT;
1568 result = x_text_icon (f,
1569 (char *) SDATA ((!NILP (f->icon_name)
1570 ? f->icon_name
1571 : !NILP (f->title)
1572 ? f->title
1573 : f->name)));
1575 if (result)
1577 UNBLOCK_INPUT;
1578 error ("No icon window available");
1581 XFlush (FRAME_X_DISPLAY (f));
1582 UNBLOCK_INPUT;
1586 void
1587 x_set_menu_bar_lines (f, value, oldval)
1588 struct frame *f;
1589 Lisp_Object value, oldval;
1591 int nlines;
1592 #ifndef USE_X_TOOLKIT
1593 int olines = FRAME_MENU_BAR_LINES (f);
1594 #endif
1596 /* Right now, menu bars don't work properly in minibuf-only frames;
1597 most of the commands try to apply themselves to the minibuffer
1598 frame itself, and get an error because you can't switch buffers
1599 in or split the minibuffer window. */
1600 if (FRAME_MINIBUF_ONLY_P (f))
1601 return;
1603 if (INTEGERP (value))
1604 nlines = XINT (value);
1605 else
1606 nlines = 0;
1608 /* Make sure we redisplay all windows in this frame. */
1609 windows_or_buffers_changed++;
1611 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
1612 FRAME_MENU_BAR_LINES (f) = 0;
1613 if (nlines)
1615 FRAME_EXTERNAL_MENU_BAR (f) = 1;
1616 if (FRAME_X_P (f) && f->output_data.x->menubar_widget == 0)
1617 /* Make sure next redisplay shows the menu bar. */
1618 XWINDOW (FRAME_SELECTED_WINDOW (f))->update_mode_line = Qt;
1620 else
1622 if (FRAME_EXTERNAL_MENU_BAR (f) == 1)
1623 free_frame_menubar (f);
1624 FRAME_EXTERNAL_MENU_BAR (f) = 0;
1625 if (FRAME_X_P (f))
1626 f->output_data.x->menubar_widget = 0;
1628 #else /* not USE_X_TOOLKIT && not USE_GTK */
1629 FRAME_MENU_BAR_LINES (f) = nlines;
1630 change_window_heights (f->root_window, nlines - olines);
1631 #endif /* not USE_X_TOOLKIT */
1632 adjust_glyphs (f);
1636 /* Set the number of lines used for the tool bar of frame F to VALUE.
1637 VALUE not an integer, or < 0 means set the lines to zero. OLDVAL
1638 is the old number of tool bar lines. This function changes the
1639 height of all windows on frame F to match the new tool bar height.
1640 The frame's height doesn't change. */
1642 void
1643 x_set_tool_bar_lines (f, value, oldval)
1644 struct frame *f;
1645 Lisp_Object value, oldval;
1647 int delta, nlines, root_height;
1648 Lisp_Object root_window;
1650 /* Treat tool bars like menu bars. */
1651 if (FRAME_MINIBUF_ONLY_P (f))
1652 return;
1654 /* Use VALUE only if an integer >= 0. */
1655 if (INTEGERP (value) && XINT (value) >= 0)
1656 nlines = XFASTINT (value);
1657 else
1658 nlines = 0;
1660 #ifdef USE_GTK
1661 FRAME_TOOL_BAR_LINES (f) = 0;
1662 if (nlines)
1664 FRAME_EXTERNAL_TOOL_BAR (f) = 1;
1665 if (FRAME_X_P (f) && f->output_data.x->toolbar_widget == 0)
1666 /* Make sure next redisplay shows the tool bar. */
1667 XWINDOW (FRAME_SELECTED_WINDOW (f))->update_mode_line = Qt;
1668 update_frame_tool_bar (f);
1670 else
1672 if (FRAME_EXTERNAL_TOOL_BAR (f))
1673 free_frame_tool_bar (f);
1674 FRAME_EXTERNAL_TOOL_BAR (f) = 0;
1677 return;
1678 #endif
1680 /* Make sure we redisplay all windows in this frame. */
1681 ++windows_or_buffers_changed;
1683 delta = nlines - FRAME_TOOL_BAR_LINES (f);
1685 /* Don't resize the tool-bar to more than we have room for. */
1686 root_window = FRAME_ROOT_WINDOW (f);
1687 root_height = WINDOW_TOTAL_LINES (XWINDOW (root_window));
1688 if (root_height - delta < 1)
1690 delta = root_height - 1;
1691 nlines = FRAME_TOOL_BAR_LINES (f) + delta;
1694 FRAME_TOOL_BAR_LINES (f) = nlines;
1695 change_window_heights (root_window, delta);
1696 adjust_glyphs (f);
1698 /* We also have to make sure that the internal border at the top of
1699 the frame, below the menu bar or tool bar, is redrawn when the
1700 tool bar disappears. This is so because the internal border is
1701 below the tool bar if one is displayed, but is below the menu bar
1702 if there isn't a tool bar. The tool bar draws into the area
1703 below the menu bar. */
1704 if (FRAME_X_WINDOW (f) && FRAME_TOOL_BAR_LINES (f) == 0)
1706 updating_frame = f;
1707 clear_frame ();
1708 clear_current_matrices (f);
1709 updating_frame = NULL;
1712 /* If the tool bar gets smaller, the internal border below it
1713 has to be cleared. It was formerly part of the display
1714 of the larger tool bar, and updating windows won't clear it. */
1715 if (delta < 0)
1717 int height = FRAME_INTERNAL_BORDER_WIDTH (f);
1718 int width = FRAME_PIXEL_WIDTH (f);
1719 int y = nlines * FRAME_LINE_HEIGHT (f);
1721 BLOCK_INPUT;
1722 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
1723 0, y, width, height, False);
1724 UNBLOCK_INPUT;
1726 if (WINDOWP (f->tool_bar_window))
1727 clear_glyph_matrix (XWINDOW (f->tool_bar_window)->current_matrix);
1732 /* Set the foreground color for scroll bars on frame F to VALUE.
1733 VALUE should be a string, a color name. If it isn't a string or
1734 isn't a valid color name, do nothing. OLDVAL is the old value of
1735 the frame parameter. */
1737 void
1738 x_set_scroll_bar_foreground (f, value, oldval)
1739 struct frame *f;
1740 Lisp_Object value, oldval;
1742 unsigned long pixel;
1744 if (STRINGP (value))
1745 pixel = x_decode_color (f, value, BLACK_PIX_DEFAULT (f));
1746 else
1747 pixel = -1;
1749 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
1750 unload_color (f, f->output_data.x->scroll_bar_foreground_pixel);
1752 f->output_data.x->scroll_bar_foreground_pixel = pixel;
1753 if (FRAME_X_WINDOW (f) && FRAME_VISIBLE_P (f))
1755 /* Remove all scroll bars because they have wrong colors. */
1756 if (condemn_scroll_bars_hook)
1757 (*condemn_scroll_bars_hook) (f);
1758 if (judge_scroll_bars_hook)
1759 (*judge_scroll_bars_hook) (f);
1761 update_face_from_frame_parameter (f, Qscroll_bar_foreground, value);
1762 redraw_frame (f);
1767 /* Set the background color for scroll bars on frame F to VALUE VALUE
1768 should be a string, a color name. If it isn't a string or isn't a
1769 valid color name, do nothing. OLDVAL is the old value of the frame
1770 parameter. */
1772 void
1773 x_set_scroll_bar_background (f, value, oldval)
1774 struct frame *f;
1775 Lisp_Object value, oldval;
1777 unsigned long pixel;
1779 if (STRINGP (value))
1780 pixel = x_decode_color (f, value, WHITE_PIX_DEFAULT (f));
1781 else
1782 pixel = -1;
1784 if (f->output_data.x->scroll_bar_background_pixel != -1)
1785 unload_color (f, f->output_data.x->scroll_bar_background_pixel);
1787 #ifdef USE_TOOLKIT_SCROLL_BARS
1788 /* Scrollbar shadow colors. */
1789 if (f->output_data.x->scroll_bar_top_shadow_pixel != -1)
1791 unload_color (f, f->output_data.x->scroll_bar_top_shadow_pixel);
1792 f->output_data.x->scroll_bar_top_shadow_pixel = -1;
1794 if (f->output_data.x->scroll_bar_bottom_shadow_pixel != -1)
1796 unload_color (f, f->output_data.x->scroll_bar_bottom_shadow_pixel);
1797 f->output_data.x->scroll_bar_bottom_shadow_pixel = -1;
1799 #endif /* USE_TOOLKIT_SCROLL_BARS */
1801 f->output_data.x->scroll_bar_background_pixel = pixel;
1802 if (FRAME_X_WINDOW (f) && FRAME_VISIBLE_P (f))
1804 /* Remove all scroll bars because they have wrong colors. */
1805 if (condemn_scroll_bars_hook)
1806 (*condemn_scroll_bars_hook) (f);
1807 if (judge_scroll_bars_hook)
1808 (*judge_scroll_bars_hook) (f);
1810 update_face_from_frame_parameter (f, Qscroll_bar_background, value);
1811 redraw_frame (f);
1816 /* Encode Lisp string STRING as a text in a format appropriate for
1817 XICCC (X Inter Client Communication Conventions).
1819 If STRING contains only ASCII characters, do no conversion and
1820 return the string data of STRING. Otherwise, encode the text by
1821 CODING_SYSTEM, and return a newly allocated memory area which
1822 should be freed by `xfree' by a caller.
1824 SELECTIONP non-zero means the string is being encoded for an X
1825 selection, so it is safe to run pre-write conversions (which
1826 may run Lisp code).
1828 Store the byte length of resulting text in *TEXT_BYTES.
1830 If the text contains only ASCII and Latin-1, store 1 in *STRING_P,
1831 which means that the `encoding' of the result can be `STRING'.
1832 Otherwise store 0 in *STRINGP, which means that the `encoding' of
1833 the result should be `COMPOUND_TEXT'. */
1835 unsigned char *
1836 x_encode_text (string, coding_system, selectionp, text_bytes, stringp)
1837 Lisp_Object string, coding_system;
1838 int *text_bytes, *stringp;
1839 int selectionp;
1841 unsigned char *str = SDATA (string);
1842 int chars = SCHARS (string);
1843 int bytes = SBYTES (string);
1844 int charset_info;
1845 int bufsize;
1846 unsigned char *buf;
1847 struct coding_system coding;
1848 extern Lisp_Object Qcompound_text_with_extensions;
1850 charset_info = find_charset_in_text (str, chars, bytes, NULL, Qnil);
1851 if (charset_info == 0)
1853 /* No multibyte character in OBJ. We need not encode it. */
1854 *text_bytes = bytes;
1855 *stringp = 1;
1856 return str;
1859 setup_coding_system (coding_system, &coding);
1860 if (selectionp
1861 && SYMBOLP (coding.pre_write_conversion)
1862 && !NILP (Ffboundp (coding.pre_write_conversion)))
1864 string = run_pre_post_conversion_on_str (string, &coding, 1);
1865 str = SDATA (string);
1866 chars = SCHARS (string);
1867 bytes = SBYTES (string);
1869 coding.src_multibyte = 1;
1870 coding.dst_multibyte = 0;
1871 coding.mode |= CODING_MODE_LAST_BLOCK;
1872 if (coding.type == coding_type_iso2022)
1873 coding.flags |= CODING_FLAG_ISO_SAFE;
1874 /* We suppress producing escape sequences for composition. */
1875 coding.composing = COMPOSITION_DISABLED;
1876 bufsize = encoding_buffer_size (&coding, bytes);
1877 buf = (unsigned char *) xmalloc (bufsize);
1878 encode_coding (&coding, str, buf, bytes, bufsize);
1879 *text_bytes = coding.produced;
1880 *stringp = (charset_info == 1
1881 || (!EQ (coding_system, Qcompound_text)
1882 && !EQ (coding_system, Qcompound_text_with_extensions)));
1883 return buf;
1887 /* Change the name of frame F to NAME. If NAME is nil, set F's name to
1888 x_id_name.
1890 If EXPLICIT is non-zero, that indicates that lisp code is setting the
1891 name; if NAME is a string, set F's name to NAME and set
1892 F->explicit_name; if NAME is Qnil, then clear F->explicit_name.
1894 If EXPLICIT is zero, that indicates that Emacs redisplay code is
1895 suggesting a new name, which lisp code should override; if
1896 F->explicit_name is set, ignore the new name; otherwise, set it. */
1898 void
1899 x_set_name (f, name, explicit)
1900 struct frame *f;
1901 Lisp_Object name;
1902 int explicit;
1904 /* Make sure that requests from lisp code override requests from
1905 Emacs redisplay code. */
1906 if (explicit)
1908 /* If we're switching from explicit to implicit, we had better
1909 update the mode lines and thereby update the title. */
1910 if (f->explicit_name && NILP (name))
1911 update_mode_lines = 1;
1913 f->explicit_name = ! NILP (name);
1915 else if (f->explicit_name)
1916 return;
1918 /* If NAME is nil, set the name to the x_id_name. */
1919 if (NILP (name))
1921 /* Check for no change needed in this very common case
1922 before we do any consing. */
1923 if (!strcmp (FRAME_X_DISPLAY_INFO (f)->x_id_name,
1924 SDATA (f->name)))
1925 return;
1926 name = build_string (FRAME_X_DISPLAY_INFO (f)->x_id_name);
1928 else
1929 CHECK_STRING (name);
1931 /* Don't change the name if it's already NAME. */
1932 if (! NILP (Fstring_equal (name, f->name)))
1933 return;
1935 f->name = name;
1937 /* For setting the frame title, the title parameter should override
1938 the name parameter. */
1939 if (! NILP (f->title))
1940 name = f->title;
1942 if (FRAME_X_WINDOW (f))
1944 BLOCK_INPUT;
1945 #ifdef HAVE_X11R4
1947 XTextProperty text, icon;
1948 int bytes, stringp;
1949 Lisp_Object coding_system;
1951 /* Note: Encoding strategy
1953 We encode NAME by compound-text and use "COMPOUND-TEXT" in
1954 text.encoding. But, there are non-internationalized window
1955 managers which don't support that encoding. So, if NAME
1956 contains only ASCII and 8859-1 characters, encode it by
1957 iso-latin-1, and use "STRING" in text.encoding hoping that
1958 such window managers at least analyze this format correctly,
1959 i.e. treat 8-bit bytes as 8859-1 characters.
1961 We may also be able to use "UTF8_STRING" in text.encoding
1962 in the future which can encode all Unicode characters.
1963 But, for the moment, there's no way to know that the
1964 current window manager supports it or not. */
1965 coding_system = Qcompound_text;
1966 text.value = x_encode_text (name, coding_system, 0, &bytes, &stringp);
1967 text.encoding = (stringp ? XA_STRING
1968 : FRAME_X_DISPLAY_INFO (f)->Xatom_COMPOUND_TEXT);
1969 text.format = 8;
1970 text.nitems = bytes;
1972 if (NILP (f->icon_name))
1974 icon = text;
1976 else
1978 /* See the above comment "Note: Encoding strategy". */
1979 icon.value = x_encode_text (f->icon_name, coding_system, 0,
1980 &bytes, &stringp);
1981 icon.encoding = (stringp ? XA_STRING
1982 : FRAME_X_DISPLAY_INFO (f)->Xatom_COMPOUND_TEXT);
1983 icon.format = 8;
1984 icon.nitems = bytes;
1986 #ifdef USE_GTK
1987 gtk_window_set_title (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
1988 SDATA (name));
1989 #else /* not USE_GTK */
1990 XSetWMName (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f), &text);
1991 #endif /* not USE_GTK */
1993 XSetWMIconName (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f), &icon);
1995 if (!NILP (f->icon_name)
1996 && icon.value != (unsigned char *) SDATA (f->icon_name))
1997 xfree (icon.value);
1998 if (text.value != (unsigned char *) SDATA (name))
1999 xfree (text.value);
2001 #else /* not HAVE_X11R4 */
2002 XSetIconName (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2003 SDATA (name));
2004 XStoreName (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2005 SDATA (name));
2006 #endif /* not HAVE_X11R4 */
2007 UNBLOCK_INPUT;
2011 /* This function should be called when the user's lisp code has
2012 specified a name for the frame; the name will override any set by the
2013 redisplay code. */
2014 void
2015 x_explicitly_set_name (f, arg, oldval)
2016 FRAME_PTR f;
2017 Lisp_Object arg, oldval;
2019 x_set_name (f, arg, 1);
2022 /* This function should be called by Emacs redisplay code to set the
2023 name; names set this way will never override names set by the user's
2024 lisp code. */
2025 void
2026 x_implicitly_set_name (f, arg, oldval)
2027 FRAME_PTR f;
2028 Lisp_Object arg, oldval;
2030 x_set_name (f, arg, 0);
2033 /* Change the title of frame F to NAME.
2034 If NAME is nil, use the frame name as the title.
2036 If EXPLICIT is non-zero, that indicates that lisp code is setting the
2037 name; if NAME is a string, set F's name to NAME and set
2038 F->explicit_name; if NAME is Qnil, then clear F->explicit_name.
2040 If EXPLICIT is zero, that indicates that Emacs redisplay code is
2041 suggesting a new name, which lisp code should override; if
2042 F->explicit_name is set, ignore the new name; otherwise, set it. */
2044 void
2045 x_set_title (f, name, old_name)
2046 struct frame *f;
2047 Lisp_Object name, old_name;
2049 /* Don't change the title if it's already NAME. */
2050 if (EQ (name, f->title))
2051 return;
2053 update_mode_lines = 1;
2055 f->title = name;
2057 if (NILP (name))
2058 name = f->name;
2059 else
2060 CHECK_STRING (name);
2062 if (FRAME_X_WINDOW (f))
2064 BLOCK_INPUT;
2065 #ifdef HAVE_X11R4
2067 XTextProperty text, icon;
2068 int bytes, stringp;
2069 Lisp_Object coding_system;
2071 coding_system = Qcompound_text;
2072 /* See the comment "Note: Encoding strategy" in x_set_name. */
2073 text.value = x_encode_text (name, coding_system, 0, &bytes, &stringp);
2074 text.encoding = (stringp ? XA_STRING
2075 : FRAME_X_DISPLAY_INFO (f)->Xatom_COMPOUND_TEXT);
2076 text.format = 8;
2077 text.nitems = bytes;
2079 if (NILP (f->icon_name))
2081 icon = text;
2083 else
2085 /* See the comment "Note: Encoding strategy" in x_set_name. */
2086 icon.value = x_encode_text (f->icon_name, coding_system, 0,
2087 &bytes, &stringp);
2088 icon.encoding = (stringp ? XA_STRING
2089 : FRAME_X_DISPLAY_INFO (f)->Xatom_COMPOUND_TEXT);
2090 icon.format = 8;
2091 icon.nitems = bytes;
2094 #ifdef USE_GTK
2095 gtk_window_set_title (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
2096 SDATA (name));
2097 #else /* not USE_GTK */
2098 XSetWMName (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f), &text);
2099 #endif /* not USE_GTK */
2101 XSetWMIconName (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
2102 &icon);
2104 if (!NILP (f->icon_name)
2105 && icon.value != (unsigned char *) SDATA (f->icon_name))
2106 xfree (icon.value);
2107 if (text.value != (unsigned char *) SDATA (name))
2108 xfree (text.value);
2110 #else /* not HAVE_X11R4 */
2111 XSetIconName (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2112 SDATA (name));
2113 XStoreName (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2114 SDATA (name));
2115 #endif /* not HAVE_X11R4 */
2116 UNBLOCK_INPUT;
2120 void
2121 x_set_scroll_bar_default_width (f)
2122 struct frame *f;
2124 int wid = FRAME_COLUMN_WIDTH (f);
2126 #ifdef USE_TOOLKIT_SCROLL_BARS
2127 /* A minimum width of 14 doesn't look good for toolkit scroll bars. */
2128 int width = 16 + 2 * VERTICAL_SCROLL_BAR_WIDTH_TRIM;
2129 FRAME_CONFIG_SCROLL_BAR_COLS (f) = (width + wid - 1) / wid;
2130 FRAME_CONFIG_SCROLL_BAR_WIDTH (f) = width;
2131 #else
2132 /* Make the actual width at least 14 pixels and a multiple of a
2133 character width. */
2134 FRAME_CONFIG_SCROLL_BAR_COLS (f) = (14 + wid - 1) / wid;
2136 /* Use all of that space (aside from required margins) for the
2137 scroll bar. */
2138 FRAME_CONFIG_SCROLL_BAR_WIDTH (f) = 0;
2139 #endif
2143 /* Record in frame F the specified or default value according to ALIST
2144 of the parameter named PROP (a Lisp symbol). If no value is
2145 specified for PROP, look for an X default for XPROP on the frame
2146 named NAME. If that is not found either, use the value DEFLT. */
2148 static Lisp_Object
2149 x_default_scroll_bar_color_parameter (f, alist, prop, xprop, xclass,
2150 foreground_p)
2151 struct frame *f;
2152 Lisp_Object alist;
2153 Lisp_Object prop;
2154 char *xprop;
2155 char *xclass;
2156 int foreground_p;
2158 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
2159 Lisp_Object tem;
2161 tem = x_get_arg (dpyinfo, alist, prop, xprop, xclass, RES_TYPE_STRING);
2162 if (EQ (tem, Qunbound))
2164 #ifdef USE_TOOLKIT_SCROLL_BARS
2166 /* See if an X resource for the scroll bar color has been
2167 specified. */
2168 tem = display_x_get_resource (dpyinfo,
2169 build_string (foreground_p
2170 ? "foreground"
2171 : "background"),
2172 empty_string,
2173 build_string ("verticalScrollBar"),
2174 empty_string);
2175 if (!STRINGP (tem))
2177 /* If nothing has been specified, scroll bars will use a
2178 toolkit-dependent default. Because these defaults are
2179 difficult to get at without actually creating a scroll
2180 bar, use nil to indicate that no color has been
2181 specified. */
2182 tem = Qnil;
2185 #else /* not USE_TOOLKIT_SCROLL_BARS */
2187 tem = Qnil;
2189 #endif /* not USE_TOOLKIT_SCROLL_BARS */
2192 x_set_frame_parameters (f, Fcons (Fcons (prop, tem), Qnil));
2193 return tem;
2198 #if !defined (HAVE_X11R4) && !defined (HAVE_XSETWMPROTOCOLS)
2200 Status
2201 XSetWMProtocols (dpy, w, protocols, count)
2202 Display *dpy;
2203 Window w;
2204 Atom *protocols;
2205 int count;
2207 Atom prop;
2208 prop = XInternAtom (dpy, "WM_PROTOCOLS", False);
2209 if (prop == None) return False;
2210 XChangeProperty (dpy, w, prop, XA_ATOM, 32, PropModeReplace,
2211 (unsigned char *) protocols, count);
2212 return True;
2214 #endif /* not HAVE_X11R4 && not HAVE_XSETWMPROTOCOLS */
2216 #ifdef USE_X_TOOLKIT
2218 /* If the WM_PROTOCOLS property does not already contain WM_TAKE_FOCUS,
2219 WM_DELETE_WINDOW, and WM_SAVE_YOURSELF, then add them. (They may
2220 already be present because of the toolkit (Motif adds some of them,
2221 for example, but Xt doesn't). */
2223 static void
2224 hack_wm_protocols (f, widget)
2225 FRAME_PTR f;
2226 Widget widget;
2228 Display *dpy = XtDisplay (widget);
2229 Window w = XtWindow (widget);
2230 int need_delete = 1;
2231 int need_focus = 1;
2232 int need_save = 1;
2234 BLOCK_INPUT;
2236 Atom type, *atoms = 0;
2237 int format = 0;
2238 unsigned long nitems = 0;
2239 unsigned long bytes_after;
2241 if ((XGetWindowProperty (dpy, w,
2242 FRAME_X_DISPLAY_INFO (f)->Xatom_wm_protocols,
2243 (long)0, (long)100, False, XA_ATOM,
2244 &type, &format, &nitems, &bytes_after,
2245 (unsigned char **) &atoms)
2246 == Success)
2247 && format == 32 && type == XA_ATOM)
2248 while (nitems > 0)
2250 nitems--;
2251 if (atoms[nitems] == FRAME_X_DISPLAY_INFO (f)->Xatom_wm_delete_window)
2252 need_delete = 0;
2253 else if (atoms[nitems] == FRAME_X_DISPLAY_INFO (f)->Xatom_wm_take_focus)
2254 need_focus = 0;
2255 else if (atoms[nitems] == FRAME_X_DISPLAY_INFO (f)->Xatom_wm_save_yourself)
2256 need_save = 0;
2258 if (atoms) XFree ((char *) atoms);
2261 Atom props [10];
2262 int count = 0;
2263 if (need_delete)
2264 props[count++] = FRAME_X_DISPLAY_INFO (f)->Xatom_wm_delete_window;
2265 if (need_focus)
2266 props[count++] = FRAME_X_DISPLAY_INFO (f)->Xatom_wm_take_focus;
2267 if (need_save)
2268 props[count++] = FRAME_X_DISPLAY_INFO (f)->Xatom_wm_save_yourself;
2269 if (count)
2270 XChangeProperty (dpy, w, FRAME_X_DISPLAY_INFO (f)->Xatom_wm_protocols,
2271 XA_ATOM, 32, PropModeAppend,
2272 (unsigned char *) props, count);
2274 UNBLOCK_INPUT;
2276 #endif
2280 /* Support routines for XIC (X Input Context). */
2282 #ifdef HAVE_X_I18N
2284 static XFontSet xic_create_xfontset P_ ((struct frame *, char *));
2285 static XIMStyle best_xim_style P_ ((XIMStyles *, XIMStyles *));
2288 /* Supported XIM styles, ordered by preference. */
2290 static XIMStyle supported_xim_styles[] =
2292 XIMPreeditPosition | XIMStatusArea,
2293 XIMPreeditPosition | XIMStatusNothing,
2294 XIMPreeditPosition | XIMStatusNone,
2295 XIMPreeditNothing | XIMStatusArea,
2296 XIMPreeditNothing | XIMStatusNothing,
2297 XIMPreeditNothing | XIMStatusNone,
2298 XIMPreeditNone | XIMStatusArea,
2299 XIMPreeditNone | XIMStatusNothing,
2300 XIMPreeditNone | XIMStatusNone,
2305 /* Create an X fontset on frame F with base font name
2306 BASE_FONTNAME.. */
2308 static XFontSet
2309 xic_create_xfontset (f, base_fontname)
2310 struct frame *f;
2311 char *base_fontname;
2313 XFontSet xfs;
2314 char **missing_list;
2315 int missing_count;
2316 char *def_string;
2318 xfs = XCreateFontSet (FRAME_X_DISPLAY (f),
2319 base_fontname, &missing_list,
2320 &missing_count, &def_string);
2321 if (missing_list)
2322 XFreeStringList (missing_list);
2324 /* No need to free def_string. */
2325 return xfs;
2329 /* Value is the best input style, given user preferences USER (already
2330 checked to be supported by Emacs), and styles supported by the
2331 input method XIM. */
2333 static XIMStyle
2334 best_xim_style (user, xim)
2335 XIMStyles *user;
2336 XIMStyles *xim;
2338 int i, j;
2340 for (i = 0; i < user->count_styles; ++i)
2341 for (j = 0; j < xim->count_styles; ++j)
2342 if (user->supported_styles[i] == xim->supported_styles[j])
2343 return user->supported_styles[i];
2345 /* Return the default style. */
2346 return XIMPreeditNothing | XIMStatusNothing;
2349 /* Create XIC for frame F. */
2351 static XIMStyle xic_style;
2353 void
2354 create_frame_xic (f)
2355 struct frame *f;
2357 XIM xim;
2358 XIC xic = NULL;
2359 XFontSet xfs = NULL;
2361 if (FRAME_XIC (f))
2362 return;
2364 xim = FRAME_X_XIM (f);
2365 if (xim)
2367 XRectangle s_area;
2368 XPoint spot;
2369 XVaNestedList preedit_attr;
2370 XVaNestedList status_attr;
2371 char *base_fontname;
2372 int fontset;
2374 s_area.x = 0; s_area.y = 0; s_area.width = 1; s_area.height = 1;
2375 spot.x = 0; spot.y = 1;
2376 /* Create X fontset. */
2377 fontset = FRAME_FONTSET (f);
2378 if (fontset < 0)
2379 base_fontname = "-*-*-*-r-normal--14-*-*-*-*-*-*-*";
2380 else
2382 /* Determine the base fontname from the ASCII font name of
2383 FONTSET. */
2384 char *ascii_font = (char *) SDATA (fontset_ascii (fontset));
2385 char *p = ascii_font;
2386 int i;
2388 for (i = 0; *p; p++)
2389 if (*p == '-') i++;
2390 if (i != 14)
2391 /* As the font name doesn't conform to XLFD, we can't
2392 modify it to get a suitable base fontname for the
2393 frame. */
2394 base_fontname = "-*-*-*-r-normal--14-*-*-*-*-*-*-*";
2395 else
2397 int len = strlen (ascii_font) + 1;
2398 char *p1 = NULL;
2400 for (i = 0, p = ascii_font; i < 8; p++)
2402 if (*p == '-')
2404 i++;
2405 if (i == 3)
2406 p1 = p + 1;
2409 base_fontname = (char *) alloca (len);
2410 bzero (base_fontname, len);
2411 strcpy (base_fontname, "-*-*-");
2412 bcopy (p1, base_fontname + 5, p - p1);
2413 strcat (base_fontname, "*-*-*-*-*-*-*");
2416 xfs = xic_create_xfontset (f, base_fontname);
2418 /* Determine XIC style. */
2419 if (xic_style == 0)
2421 XIMStyles supported_list;
2422 supported_list.count_styles = (sizeof supported_xim_styles
2423 / sizeof supported_xim_styles[0]);
2424 supported_list.supported_styles = supported_xim_styles;
2425 xic_style = best_xim_style (&supported_list,
2426 FRAME_X_XIM_STYLES (f));
2429 preedit_attr = XVaCreateNestedList (0,
2430 XNFontSet, xfs,
2431 XNForeground,
2432 FRAME_FOREGROUND_PIXEL (f),
2433 XNBackground,
2434 FRAME_BACKGROUND_PIXEL (f),
2435 (xic_style & XIMPreeditPosition
2436 ? XNSpotLocation
2437 : NULL),
2438 &spot,
2439 NULL);
2440 status_attr = XVaCreateNestedList (0,
2441 XNArea,
2442 &s_area,
2443 XNFontSet,
2444 xfs,
2445 XNForeground,
2446 FRAME_FOREGROUND_PIXEL (f),
2447 XNBackground,
2448 FRAME_BACKGROUND_PIXEL (f),
2449 NULL);
2451 xic = XCreateIC (xim,
2452 XNInputStyle, xic_style,
2453 XNClientWindow, FRAME_X_WINDOW(f),
2454 XNFocusWindow, FRAME_X_WINDOW(f),
2455 XNStatusAttributes, status_attr,
2456 XNPreeditAttributes, preedit_attr,
2457 NULL);
2458 XFree (preedit_attr);
2459 XFree (status_attr);
2462 FRAME_XIC (f) = xic;
2463 FRAME_XIC_STYLE (f) = xic_style;
2464 FRAME_XIC_FONTSET (f) = xfs;
2468 /* Destroy XIC and free XIC fontset of frame F, if any. */
2470 void
2471 free_frame_xic (f)
2472 struct frame *f;
2474 if (FRAME_XIC (f) == NULL)
2475 return;
2477 XDestroyIC (FRAME_XIC (f));
2478 if (FRAME_XIC_FONTSET (f))
2479 XFreeFontSet (FRAME_X_DISPLAY (f), FRAME_XIC_FONTSET (f));
2481 FRAME_XIC (f) = NULL;
2482 FRAME_XIC_FONTSET (f) = NULL;
2486 /* Place preedit area for XIC of window W's frame to specified
2487 pixel position X/Y. X and Y are relative to window W. */
2489 void
2490 xic_set_preeditarea (w, x, y)
2491 struct window *w;
2492 int x, y;
2494 struct frame *f = XFRAME (w->frame);
2495 XVaNestedList attr;
2496 XPoint spot;
2498 spot.x = WINDOW_TO_FRAME_PIXEL_X (w, x) + WINDOW_LEFT_FRINGE_WIDTH (w);
2499 spot.y = WINDOW_TO_FRAME_PIXEL_Y (w, y) + FONT_BASE (FRAME_FONT (f));
2500 attr = XVaCreateNestedList (0, XNSpotLocation, &spot, NULL);
2501 XSetICValues (FRAME_XIC (f), XNPreeditAttributes, attr, NULL);
2502 XFree (attr);
2506 /* Place status area for XIC in bottom right corner of frame F.. */
2508 void
2509 xic_set_statusarea (f)
2510 struct frame *f;
2512 XIC xic = FRAME_XIC (f);
2513 XVaNestedList attr;
2514 XRectangle area;
2515 XRectangle *needed;
2517 /* Negotiate geometry of status area. If input method has existing
2518 status area, use its current size. */
2519 area.x = area.y = area.width = area.height = 0;
2520 attr = XVaCreateNestedList (0, XNAreaNeeded, &area, NULL);
2521 XSetICValues (xic, XNStatusAttributes, attr, NULL);
2522 XFree (attr);
2524 attr = XVaCreateNestedList (0, XNAreaNeeded, &needed, NULL);
2525 XGetICValues (xic, XNStatusAttributes, attr, NULL);
2526 XFree (attr);
2528 if (needed->width == 0) /* Use XNArea instead of XNAreaNeeded */
2530 attr = XVaCreateNestedList (0, XNArea, &needed, NULL);
2531 XGetICValues (xic, XNStatusAttributes, attr, NULL);
2532 XFree (attr);
2535 area.width = needed->width;
2536 area.height = needed->height;
2537 area.x = FRAME_PIXEL_WIDTH (f) - area.width - FRAME_INTERNAL_BORDER_WIDTH (f);
2538 area.y = (FRAME_PIXEL_HEIGHT (f) - area.height
2539 - FRAME_MENUBAR_HEIGHT (f)
2540 - FRAME_TOOLBAR_HEIGHT (f)
2541 - FRAME_INTERNAL_BORDER_WIDTH (f));
2542 XFree (needed);
2544 attr = XVaCreateNestedList (0, XNArea, &area, NULL);
2545 XSetICValues(xic, XNStatusAttributes, attr, NULL);
2546 XFree (attr);
2550 /* Set X fontset for XIC of frame F, using base font name
2551 BASE_FONTNAME. Called when a new Emacs fontset is chosen. */
2553 void
2554 xic_set_xfontset (f, base_fontname)
2555 struct frame *f;
2556 char *base_fontname;
2558 XVaNestedList attr;
2559 XFontSet xfs;
2561 xfs = xic_create_xfontset (f, base_fontname);
2563 attr = XVaCreateNestedList (0, XNFontSet, xfs, NULL);
2564 if (FRAME_XIC_STYLE (f) & XIMPreeditPosition)
2565 XSetICValues (FRAME_XIC (f), XNPreeditAttributes, attr, NULL);
2566 if (FRAME_XIC_STYLE (f) & XIMStatusArea)
2567 XSetICValues (FRAME_XIC (f), XNStatusAttributes, attr, NULL);
2568 XFree (attr);
2570 if (FRAME_XIC_FONTSET (f))
2571 XFreeFontSet (FRAME_X_DISPLAY (f), FRAME_XIC_FONTSET (f));
2572 FRAME_XIC_FONTSET (f) = xfs;
2575 #endif /* HAVE_X_I18N */
2579 #ifdef USE_X_TOOLKIT
2581 /* Create and set up the X widget for frame F. */
2583 static void
2584 x_window (f, window_prompting, minibuffer_only)
2585 struct frame *f;
2586 long window_prompting;
2587 int minibuffer_only;
2589 XClassHint class_hints;
2590 XSetWindowAttributes attributes;
2591 unsigned long attribute_mask;
2592 Widget shell_widget;
2593 Widget pane_widget;
2594 Widget frame_widget;
2595 Arg al [25];
2596 int ac;
2598 BLOCK_INPUT;
2600 /* Use the resource name as the top-level widget name
2601 for looking up resources. Make a non-Lisp copy
2602 for the window manager, so GC relocation won't bother it.
2604 Elsewhere we specify the window name for the window manager. */
2607 char *str = (char *) SDATA (Vx_resource_name);
2608 f->namebuf = (char *) xmalloc (strlen (str) + 1);
2609 strcpy (f->namebuf, str);
2612 ac = 0;
2613 XtSetArg (al[ac], XtNallowShellResize, 1); ac++;
2614 XtSetArg (al[ac], XtNinput, 1); ac++;
2615 XtSetArg (al[ac], XtNmappedWhenManaged, 0); ac++;
2616 XtSetArg (al[ac], XtNborderWidth, f->border_width); ac++;
2617 XtSetArg (al[ac], XtNvisual, FRAME_X_VISUAL (f)); ac++;
2618 XtSetArg (al[ac], XtNdepth, FRAME_X_DISPLAY_INFO (f)->n_planes); ac++;
2619 XtSetArg (al[ac], XtNcolormap, FRAME_X_COLORMAP (f)); ac++;
2620 shell_widget = XtAppCreateShell (f->namebuf, EMACS_CLASS,
2621 applicationShellWidgetClass,
2622 FRAME_X_DISPLAY (f), al, ac);
2624 f->output_data.x->widget = shell_widget;
2625 /* maybe_set_screen_title_format (shell_widget); */
2627 pane_widget = lw_create_widget ("main", "pane", widget_id_tick++,
2628 (widget_value *) NULL,
2629 shell_widget, False,
2630 (lw_callback) NULL,
2631 (lw_callback) NULL,
2632 (lw_callback) NULL,
2633 (lw_callback) NULL);
2635 ac = 0;
2636 XtSetArg (al[ac], XtNvisual, FRAME_X_VISUAL (f)); ac++;
2637 XtSetArg (al[ac], XtNdepth, FRAME_X_DISPLAY_INFO (f)->n_planes); ac++;
2638 XtSetArg (al[ac], XtNcolormap, FRAME_X_COLORMAP (f)); ac++;
2639 XtSetValues (pane_widget, al, ac);
2640 f->output_data.x->column_widget = pane_widget;
2642 /* mappedWhenManaged to false tells to the paned window to not map/unmap
2643 the emacs screen when changing menubar. This reduces flickering. */
2645 ac = 0;
2646 XtSetArg (al[ac], XtNmappedWhenManaged, 0); ac++;
2647 XtSetArg (al[ac], XtNshowGrip, 0); ac++;
2648 XtSetArg (al[ac], XtNallowResize, 1); ac++;
2649 XtSetArg (al[ac], XtNresizeToPreferred, 1); ac++;
2650 XtSetArg (al[ac], XtNemacsFrame, f); ac++;
2651 XtSetArg (al[ac], XtNvisual, FRAME_X_VISUAL (f)); ac++;
2652 XtSetArg (al[ac], XtNdepth, FRAME_X_DISPLAY_INFO (f)->n_planes); ac++;
2653 XtSetArg (al[ac], XtNcolormap, FRAME_X_COLORMAP (f)); ac++;
2654 frame_widget = XtCreateWidget (f->namebuf, emacsFrameClass, pane_widget,
2655 al, ac);
2657 f->output_data.x->edit_widget = frame_widget;
2659 XtManageChild (frame_widget);
2661 /* Do some needed geometry management. */
2663 int len;
2664 char *tem, shell_position[32];
2665 Arg al[2];
2666 int ac = 0;
2667 int extra_borders = 0;
2668 int menubar_size
2669 = (f->output_data.x->menubar_widget
2670 ? (f->output_data.x->menubar_widget->core.height
2671 + f->output_data.x->menubar_widget->core.border_width)
2672 : 0);
2674 #if 0 /* Experimentally, we now get the right results
2675 for -geometry -0-0 without this. 24 Aug 96, rms. */
2676 if (FRAME_EXTERNAL_MENU_BAR (f))
2678 Dimension ibw = 0;
2679 XtVaGetValues (pane_widget, XtNinternalBorderWidth, &ibw, NULL);
2680 menubar_size += ibw;
2682 #endif
2684 f->output_data.x->menubar_height = menubar_size;
2686 #ifndef USE_LUCID
2687 /* Motif seems to need this amount added to the sizes
2688 specified for the shell widget. The Athena/Lucid widgets don't.
2689 Both conclusions reached experimentally. -- rms. */
2690 XtVaGetValues (f->output_data.x->edit_widget, XtNinternalBorderWidth,
2691 &extra_borders, NULL);
2692 extra_borders *= 2;
2693 #endif
2695 /* Convert our geometry parameters into a geometry string
2696 and specify it.
2697 Note that we do not specify here whether the position
2698 is a user-specified or program-specified one.
2699 We pass that information later, in x_wm_set_size_hints. */
2701 int left = f->left_pos;
2702 int xneg = window_prompting & XNegative;
2703 int top = f->top_pos;
2704 int yneg = window_prompting & YNegative;
2705 if (xneg)
2706 left = -left;
2707 if (yneg)
2708 top = -top;
2710 if (window_prompting & USPosition)
2711 sprintf (shell_position, "=%dx%d%c%d%c%d",
2712 FRAME_PIXEL_WIDTH (f) + extra_borders,
2713 FRAME_PIXEL_HEIGHT (f) + menubar_size + extra_borders,
2714 (xneg ? '-' : '+'), left,
2715 (yneg ? '-' : '+'), top);
2716 else
2717 sprintf (shell_position, "=%dx%d",
2718 FRAME_PIXEL_WIDTH (f) + extra_borders,
2719 FRAME_PIXEL_HEIGHT (f) + menubar_size + extra_borders);
2722 len = strlen (shell_position) + 1;
2723 /* We don't free this because we don't know whether
2724 it is safe to free it while the frame exists.
2725 It isn't worth the trouble of arranging to free it
2726 when the frame is deleted. */
2727 tem = (char *) xmalloc (len);
2728 strncpy (tem, shell_position, len);
2729 XtSetArg (al[ac], XtNgeometry, tem); ac++;
2730 XtSetValues (shell_widget, al, ac);
2733 XtManageChild (pane_widget);
2734 XtRealizeWidget (shell_widget);
2736 FRAME_X_WINDOW (f) = XtWindow (frame_widget);
2738 validate_x_resource_name ();
2740 class_hints.res_name = (char *) SDATA (Vx_resource_name);
2741 class_hints.res_class = (char *) SDATA (Vx_resource_class);
2742 XSetClassHint (FRAME_X_DISPLAY (f), XtWindow (shell_widget), &class_hints);
2744 #ifdef HAVE_X_I18N
2745 FRAME_XIC (f) = NULL;
2746 if (use_xim)
2747 create_frame_xic (f);
2748 #endif
2750 f->output_data.x->wm_hints.input = True;
2751 f->output_data.x->wm_hints.flags |= InputHint;
2752 XSetWMHints (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2753 &f->output_data.x->wm_hints);
2755 hack_wm_protocols (f, shell_widget);
2757 #ifdef HACK_EDITRES
2758 XtAddEventHandler (shell_widget, 0, True, _XEditResCheckMessages, 0);
2759 #endif
2761 /* Do a stupid property change to force the server to generate a
2762 PropertyNotify event so that the event_stream server timestamp will
2763 be initialized to something relevant to the time we created the window.
2765 XChangeProperty (XtDisplay (frame_widget), XtWindow (frame_widget),
2766 FRAME_X_DISPLAY_INFO (f)->Xatom_wm_protocols,
2767 XA_ATOM, 32, PropModeAppend,
2768 (unsigned char*) NULL, 0);
2770 /* Make all the standard events reach the Emacs frame. */
2771 attributes.event_mask = STANDARD_EVENT_SET;
2773 #ifdef HAVE_X_I18N
2774 if (FRAME_XIC (f))
2776 /* XIM server might require some X events. */
2777 unsigned long fevent = NoEventMask;
2778 XGetICValues(FRAME_XIC (f), XNFilterEvents, &fevent, NULL);
2779 attributes.event_mask |= fevent;
2781 #endif /* HAVE_X_I18N */
2783 attribute_mask = CWEventMask;
2784 XChangeWindowAttributes (XtDisplay (shell_widget), XtWindow (shell_widget),
2785 attribute_mask, &attributes);
2787 XtMapWidget (frame_widget);
2789 /* x_set_name normally ignores requests to set the name if the
2790 requested name is the same as the current name. This is the one
2791 place where that assumption isn't correct; f->name is set, but
2792 the X server hasn't been told. */
2794 Lisp_Object name;
2795 int explicit = f->explicit_name;
2797 f->explicit_name = 0;
2798 name = f->name;
2799 f->name = Qnil;
2800 x_set_name (f, name, explicit);
2803 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2804 f->output_data.x->text_cursor);
2806 UNBLOCK_INPUT;
2808 /* This is a no-op, except under Motif. Make sure main areas are
2809 set to something reasonable, in case we get an error later. */
2810 lw_set_main_areas (pane_widget, 0, frame_widget);
2813 #else /* not USE_X_TOOLKIT */
2814 #ifdef USE_GTK
2815 void
2816 x_window (f)
2817 FRAME_PTR f;
2819 if (! xg_create_frame_widgets (f))
2820 error ("Unable to create window");
2822 #ifdef HAVE_X_I18N
2823 FRAME_XIC (f) = NULL;
2824 if (use_xim)
2826 BLOCK_INPUT;
2827 create_frame_xic (f);
2828 if (FRAME_XIC (f))
2830 /* XIM server might require some X events. */
2831 unsigned long fevent = NoEventMask;
2832 XGetICValues(FRAME_XIC (f), XNFilterEvents, &fevent, NULL);
2834 if (fevent != NoEventMask)
2836 XSetWindowAttributes attributes;
2837 XWindowAttributes wattr;
2838 unsigned long attribute_mask;
2840 XGetWindowAttributes (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2841 &wattr);
2842 attributes.event_mask = wattr.your_event_mask | fevent;
2843 attribute_mask = CWEventMask;
2844 XChangeWindowAttributes (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2845 attribute_mask, &attributes);
2848 UNBLOCK_INPUT;
2850 #endif
2853 #else /*! USE_GTK */
2854 /* Create and set up the X window for frame F. */
2856 void
2857 x_window (f)
2858 struct frame *f;
2861 XClassHint class_hints;
2862 XSetWindowAttributes attributes;
2863 unsigned long attribute_mask;
2865 attributes.background_pixel = f->output_data.x->background_pixel;
2866 attributes.border_pixel = f->output_data.x->border_pixel;
2867 attributes.bit_gravity = StaticGravity;
2868 attributes.backing_store = NotUseful;
2869 attributes.save_under = True;
2870 attributes.event_mask = STANDARD_EVENT_SET;
2871 attributes.colormap = FRAME_X_COLORMAP (f);
2872 attribute_mask = (CWBackPixel | CWBorderPixel | CWBitGravity | CWEventMask
2873 | CWColormap);
2875 BLOCK_INPUT;
2876 FRAME_X_WINDOW (f)
2877 = XCreateWindow (FRAME_X_DISPLAY (f),
2878 f->output_data.x->parent_desc,
2879 f->left_pos,
2880 f->top_pos,
2881 FRAME_PIXEL_WIDTH (f), FRAME_PIXEL_HEIGHT (f),
2882 f->border_width,
2883 CopyFromParent, /* depth */
2884 InputOutput, /* class */
2885 FRAME_X_VISUAL (f),
2886 attribute_mask, &attributes);
2888 #ifdef HAVE_X_I18N
2889 if (use_xim)
2891 create_frame_xic (f);
2892 if (FRAME_XIC (f))
2894 /* XIM server might require some X events. */
2895 unsigned long fevent = NoEventMask;
2896 XGetICValues(FRAME_XIC (f), XNFilterEvents, &fevent, NULL);
2897 attributes.event_mask |= fevent;
2898 attribute_mask = CWEventMask;
2899 XChangeWindowAttributes (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2900 attribute_mask, &attributes);
2903 #endif /* HAVE_X_I18N */
2905 validate_x_resource_name ();
2907 class_hints.res_name = (char *) SDATA (Vx_resource_name);
2908 class_hints.res_class = (char *) SDATA (Vx_resource_class);
2909 XSetClassHint (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), &class_hints);
2911 /* The menubar is part of the ordinary display;
2912 it does not count in addition to the height of the window. */
2913 f->output_data.x->menubar_height = 0;
2915 /* This indicates that we use the "Passive Input" input model.
2916 Unless we do this, we don't get the Focus{In,Out} events that we
2917 need to draw the cursor correctly. Accursed bureaucrats.
2918 XWhipsAndChains (FRAME_X_DISPLAY (f), IronMaiden, &TheRack); */
2920 f->output_data.x->wm_hints.input = True;
2921 f->output_data.x->wm_hints.flags |= InputHint;
2922 XSetWMHints (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2923 &f->output_data.x->wm_hints);
2924 f->output_data.x->wm_hints.icon_pixmap = None;
2926 /* Request "save yourself" and "delete window" commands from wm. */
2928 Atom protocols[2];
2929 protocols[0] = FRAME_X_DISPLAY_INFO (f)->Xatom_wm_delete_window;
2930 protocols[1] = FRAME_X_DISPLAY_INFO (f)->Xatom_wm_save_yourself;
2931 XSetWMProtocols (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), protocols, 2);
2934 /* x_set_name normally ignores requests to set the name if the
2935 requested name is the same as the current name. This is the one
2936 place where that assumption isn't correct; f->name is set, but
2937 the X server hasn't been told. */
2939 Lisp_Object name;
2940 int explicit = f->explicit_name;
2942 f->explicit_name = 0;
2943 name = f->name;
2944 f->name = Qnil;
2945 x_set_name (f, name, explicit);
2948 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2949 f->output_data.x->text_cursor);
2951 UNBLOCK_INPUT;
2953 if (FRAME_X_WINDOW (f) == 0)
2954 error ("Unable to create window");
2957 #endif /* not USE_GTK */
2958 #endif /* not USE_X_TOOLKIT */
2960 /* Handle the icon stuff for this window. Perhaps later we might
2961 want an x_set_icon_position which can be called interactively as
2962 well. */
2964 static void
2965 x_icon (f, parms)
2966 struct frame *f;
2967 Lisp_Object parms;
2969 Lisp_Object icon_x, icon_y;
2970 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
2972 /* Set the position of the icon. Note that twm groups all
2973 icons in an icon window. */
2974 icon_x = x_frame_get_and_record_arg (f, parms, Qicon_left, 0, 0, RES_TYPE_NUMBER);
2975 icon_y = x_frame_get_and_record_arg (f, parms, Qicon_top, 0, 0, RES_TYPE_NUMBER);
2976 if (!EQ (icon_x, Qunbound) && !EQ (icon_y, Qunbound))
2978 CHECK_NUMBER (icon_x);
2979 CHECK_NUMBER (icon_y);
2981 else if (!EQ (icon_x, Qunbound) || !EQ (icon_y, Qunbound))
2982 error ("Both left and top icon corners of icon must be specified");
2984 BLOCK_INPUT;
2986 if (! EQ (icon_x, Qunbound))
2987 x_wm_set_icon_position (f, XINT (icon_x), XINT (icon_y));
2989 /* Start up iconic or window? */
2990 x_wm_set_window_state
2991 (f, (EQ (x_get_arg (dpyinfo, parms, Qvisibility, 0, 0, RES_TYPE_SYMBOL),
2992 Qicon)
2993 ? IconicState
2994 : NormalState));
2996 x_text_icon (f, (char *) SDATA ((!NILP (f->icon_name)
2997 ? f->icon_name
2998 : f->name)));
3000 UNBLOCK_INPUT;
3003 /* Make the GCs needed for this window, setting the
3004 background, border and mouse colors; also create the
3005 mouse cursor and the gray border tile. */
3007 static char cursor_bits[] =
3009 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
3010 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
3011 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
3012 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
3015 static void
3016 x_make_gc (f)
3017 struct frame *f;
3019 XGCValues gc_values;
3021 BLOCK_INPUT;
3023 /* Create the GCs of this frame.
3024 Note that many default values are used. */
3026 /* Normal video */
3027 gc_values.font = FRAME_FONT (f)->fid;
3028 gc_values.foreground = f->output_data.x->foreground_pixel;
3029 gc_values.background = f->output_data.x->background_pixel;
3030 gc_values.line_width = 0; /* Means 1 using fast algorithm. */
3031 f->output_data.x->normal_gc
3032 = XCreateGC (FRAME_X_DISPLAY (f),
3033 FRAME_X_WINDOW (f),
3034 GCLineWidth | GCFont | GCForeground | GCBackground,
3035 &gc_values);
3037 /* Reverse video style. */
3038 gc_values.foreground = f->output_data.x->background_pixel;
3039 gc_values.background = f->output_data.x->foreground_pixel;
3040 f->output_data.x->reverse_gc
3041 = XCreateGC (FRAME_X_DISPLAY (f),
3042 FRAME_X_WINDOW (f),
3043 GCFont | GCForeground | GCBackground | GCLineWidth,
3044 &gc_values);
3046 /* Cursor has cursor-color background, background-color foreground. */
3047 gc_values.foreground = f->output_data.x->background_pixel;
3048 gc_values.background = f->output_data.x->cursor_pixel;
3049 gc_values.fill_style = FillOpaqueStippled;
3050 gc_values.stipple
3051 = XCreateBitmapFromData (FRAME_X_DISPLAY (f),
3052 FRAME_X_DISPLAY_INFO (f)->root_window,
3053 cursor_bits, 16, 16);
3054 f->output_data.x->cursor_gc
3055 = XCreateGC (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3056 (GCFont | GCForeground | GCBackground
3057 | GCFillStyle /* | GCStipple */ | GCLineWidth),
3058 &gc_values);
3060 /* Reliefs. */
3061 f->output_data.x->white_relief.gc = 0;
3062 f->output_data.x->black_relief.gc = 0;
3064 /* Create the gray border tile used when the pointer is not in
3065 the frame. Since this depends on the frame's pixel values,
3066 this must be done on a per-frame basis. */
3067 f->output_data.x->border_tile
3068 = (XCreatePixmapFromBitmapData
3069 (FRAME_X_DISPLAY (f), FRAME_X_DISPLAY_INFO (f)->root_window,
3070 gray_bits, gray_width, gray_height,
3071 f->output_data.x->foreground_pixel,
3072 f->output_data.x->background_pixel,
3073 DefaultDepth (FRAME_X_DISPLAY (f), FRAME_X_SCREEN_NUMBER (f))));
3075 UNBLOCK_INPUT;
3079 /* Free what was was allocated in x_make_gc. */
3081 void
3082 x_free_gcs (f)
3083 struct frame *f;
3085 Display *dpy = FRAME_X_DISPLAY (f);
3087 BLOCK_INPUT;
3089 if (f->output_data.x->normal_gc)
3091 XFreeGC (dpy, f->output_data.x->normal_gc);
3092 f->output_data.x->normal_gc = 0;
3095 if (f->output_data.x->reverse_gc)
3097 XFreeGC (dpy, f->output_data.x->reverse_gc);
3098 f->output_data.x->reverse_gc = 0;
3101 if (f->output_data.x->cursor_gc)
3103 XFreeGC (dpy, f->output_data.x->cursor_gc);
3104 f->output_data.x->cursor_gc = 0;
3107 if (f->output_data.x->border_tile)
3109 XFreePixmap (dpy, f->output_data.x->border_tile);
3110 f->output_data.x->border_tile = 0;
3113 UNBLOCK_INPUT;
3117 /* Handler for signals raised during x_create_frame and
3118 x_create_top_frame. FRAME is the frame which is partially
3119 constructed. */
3121 static Lisp_Object
3122 unwind_create_frame (frame)
3123 Lisp_Object frame;
3125 struct frame *f = XFRAME (frame);
3127 /* If frame is ``official'', nothing to do. */
3128 if (!CONSP (Vframe_list) || !EQ (XCAR (Vframe_list), frame))
3130 #if GLYPH_DEBUG
3131 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
3132 #endif
3134 x_free_frame_resources (f);
3136 /* Check that reference counts are indeed correct. */
3137 xassert (dpyinfo->reference_count == dpyinfo_refcount);
3138 xassert (dpyinfo->image_cache->refcount == image_cache_refcount);
3139 return Qt;
3142 return Qnil;
3146 DEFUN ("x-create-frame", Fx_create_frame, Sx_create_frame,
3147 1, 1, 0,
3148 doc: /* Make a new X window, which is called a "frame" in Emacs terms.
3149 Returns an Emacs frame object.
3150 ALIST is an alist of frame parameters.
3151 If the parameters specify that the frame should not have a minibuffer,
3152 and do not specify a specific minibuffer window to use,
3153 then `default-minibuffer-frame' must be a frame whose minibuffer can
3154 be shared by the new frame.
3156 This function is an internal primitive--use `make-frame' instead. */)
3157 (parms)
3158 Lisp_Object parms;
3160 struct frame *f;
3161 Lisp_Object frame, tem;
3162 Lisp_Object name;
3163 int minibuffer_only = 0;
3164 long window_prompting = 0;
3165 int width, height;
3166 int count = SPECPDL_INDEX ();
3167 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
3168 Lisp_Object display;
3169 struct x_display_info *dpyinfo = NULL;
3170 Lisp_Object parent;
3171 struct kboard *kb;
3173 check_x ();
3175 /* Use this general default value to start with
3176 until we know if this frame has a specified name. */
3177 Vx_resource_name = Vinvocation_name;
3179 display = x_get_arg (dpyinfo, parms, Qdisplay, 0, 0, RES_TYPE_STRING);
3180 if (EQ (display, Qunbound))
3181 display = Qnil;
3182 dpyinfo = check_x_display_info (display);
3183 #ifdef MULTI_KBOARD
3184 kb = dpyinfo->kboard;
3185 #else
3186 kb = &the_only_kboard;
3187 #endif
3189 name = x_get_arg (dpyinfo, parms, Qname, "name", "Name", RES_TYPE_STRING);
3190 if (!STRINGP (name)
3191 && ! EQ (name, Qunbound)
3192 && ! NILP (name))
3193 error ("Invalid frame name--not a string or nil");
3195 if (STRINGP (name))
3196 Vx_resource_name = name;
3198 /* See if parent window is specified. */
3199 parent = x_get_arg (dpyinfo, parms, Qparent_id, NULL, NULL, RES_TYPE_NUMBER);
3200 if (EQ (parent, Qunbound))
3201 parent = Qnil;
3202 if (! NILP (parent))
3203 CHECK_NUMBER (parent);
3205 /* make_frame_without_minibuffer can run Lisp code and garbage collect. */
3206 /* No need to protect DISPLAY because that's not used after passing
3207 it to make_frame_without_minibuffer. */
3208 frame = Qnil;
3209 GCPRO4 (parms, parent, name, frame);
3210 tem = x_get_arg (dpyinfo, parms, Qminibuffer, "minibuffer", "Minibuffer",
3211 RES_TYPE_SYMBOL);
3212 if (EQ (tem, Qnone) || NILP (tem))
3213 f = make_frame_without_minibuffer (Qnil, kb, display);
3214 else if (EQ (tem, Qonly))
3216 f = make_minibuffer_frame ();
3217 minibuffer_only = 1;
3219 else if (WINDOWP (tem))
3220 f = make_frame_without_minibuffer (tem, kb, display);
3221 else
3222 f = make_frame (1);
3224 XSETFRAME (frame, f);
3226 /* Note that X Windows does support scroll bars. */
3227 FRAME_CAN_HAVE_SCROLL_BARS (f) = 1;
3229 f->output_method = output_x_window;
3230 f->output_data.x = (struct x_output *) xmalloc (sizeof (struct x_output));
3231 bzero (f->output_data.x, sizeof (struct x_output));
3232 f->output_data.x->icon_bitmap = -1;
3233 FRAME_FONTSET (f) = -1;
3234 f->output_data.x->scroll_bar_foreground_pixel = -1;
3235 f->output_data.x->scroll_bar_background_pixel = -1;
3236 #ifdef USE_TOOLKIT_SCROLL_BARS
3237 f->output_data.x->scroll_bar_top_shadow_pixel = -1;
3238 f->output_data.x->scroll_bar_bottom_shadow_pixel = -1;
3239 #endif /* USE_TOOLKIT_SCROLL_BARS */
3240 record_unwind_protect (unwind_create_frame, frame);
3242 f->icon_name
3243 = x_get_arg (dpyinfo, parms, Qicon_name, "iconName", "Title",
3244 RES_TYPE_STRING);
3245 if (! STRINGP (f->icon_name))
3246 f->icon_name = Qnil;
3248 FRAME_X_DISPLAY_INFO (f) = dpyinfo;
3249 #if GLYPH_DEBUG
3250 image_cache_refcount = FRAME_X_IMAGE_CACHE (f)->refcount;
3251 dpyinfo_refcount = dpyinfo->reference_count;
3252 #endif /* GLYPH_DEBUG */
3253 #ifdef MULTI_KBOARD
3254 FRAME_KBOARD (f) = kb;
3255 #endif
3257 /* These colors will be set anyway later, but it's important
3258 to get the color reference counts right, so initialize them! */
3260 Lisp_Object black;
3261 struct gcpro gcpro1;
3263 /* Function x_decode_color can signal an error. Make
3264 sure to initialize color slots so that we won't try
3265 to free colors we haven't allocated. */
3266 f->output_data.x->foreground_pixel = -1;
3267 f->output_data.x->background_pixel = -1;
3268 f->output_data.x->cursor_pixel = -1;
3269 f->output_data.x->cursor_foreground_pixel = -1;
3270 f->output_data.x->border_pixel = -1;
3271 f->output_data.x->mouse_pixel = -1;
3273 black = build_string ("black");
3274 GCPRO1 (black);
3275 f->output_data.x->foreground_pixel
3276 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
3277 f->output_data.x->background_pixel
3278 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
3279 f->output_data.x->cursor_pixel
3280 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
3281 f->output_data.x->cursor_foreground_pixel
3282 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
3283 f->output_data.x->border_pixel
3284 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
3285 f->output_data.x->mouse_pixel
3286 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
3287 UNGCPRO;
3290 /* Specify the parent under which to make this X window. */
3292 if (!NILP (parent))
3294 f->output_data.x->parent_desc = (Window) XFASTINT (parent);
3295 f->output_data.x->explicit_parent = 1;
3297 else
3299 f->output_data.x->parent_desc = FRAME_X_DISPLAY_INFO (f)->root_window;
3300 f->output_data.x->explicit_parent = 0;
3303 /* Set the name; the functions to which we pass f expect the name to
3304 be set. */
3305 if (EQ (name, Qunbound) || NILP (name))
3307 f->name = build_string (dpyinfo->x_id_name);
3308 f->explicit_name = 0;
3310 else
3312 f->name = name;
3313 f->explicit_name = 1;
3314 /* use the frame's title when getting resources for this frame. */
3315 specbind (Qx_resource_name, name);
3318 /* Extract the window parameters from the supplied values
3319 that are needed to determine window geometry. */
3321 Lisp_Object font;
3323 font = x_get_arg (dpyinfo, parms, Qfont, "font", "Font", RES_TYPE_STRING);
3325 BLOCK_INPUT;
3326 /* First, try whatever font the caller has specified. */
3327 if (STRINGP (font))
3329 tem = Fquery_fontset (font, Qnil);
3330 if (STRINGP (tem))
3331 font = x_new_fontset (f, SDATA (tem));
3332 else
3333 font = x_new_font (f, SDATA (font));
3336 /* Try out a font which we hope has bold and italic variations. */
3337 if (!STRINGP (font))
3338 font = x_new_font (f, "-adobe-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-1");
3339 if (!STRINGP (font))
3340 font = x_new_font (f, "-misc-fixed-medium-r-normal-*-*-140-*-*-c-*-iso8859-1");
3341 if (! STRINGP (font))
3342 font = x_new_font (f, "-*-*-medium-r-normal-*-*-140-*-*-c-*-iso8859-1");
3343 if (! STRINGP (font))
3344 /* This was formerly the first thing tried, but it finds too many fonts
3345 and takes too long. */
3346 font = x_new_font (f, "-*-*-medium-r-*-*-*-*-*-*-c-*-iso8859-1");
3347 /* If those didn't work, look for something which will at least work. */
3348 if (! STRINGP (font))
3349 font = x_new_font (f, "-*-fixed-*-*-*-*-*-140-*-*-c-*-iso8859-1");
3350 UNBLOCK_INPUT;
3351 if (! STRINGP (font))
3352 font = build_string ("fixed");
3354 x_default_parameter (f, parms, Qfont, font,
3355 "font", "Font", RES_TYPE_STRING);
3358 #ifdef USE_LUCID
3359 /* Prevent lwlib/xlwmenu.c from crashing because of a bug
3360 whereby it fails to get any font. */
3361 xlwmenu_default_font = FRAME_FONT (f);
3362 #endif
3364 x_default_parameter (f, parms, Qborder_width, make_number (2),
3365 "borderWidth", "BorderWidth", RES_TYPE_NUMBER);
3367 /* This defaults to 1 in order to match xterm. We recognize either
3368 internalBorderWidth or internalBorder (which is what xterm calls
3369 it). */
3370 if (NILP (Fassq (Qinternal_border_width, parms)))
3372 Lisp_Object value;
3374 value = x_get_arg (dpyinfo, parms, Qinternal_border_width,
3375 "internalBorder", "internalBorder", RES_TYPE_NUMBER);
3376 if (! EQ (value, Qunbound))
3377 parms = Fcons (Fcons (Qinternal_border_width, value),
3378 parms);
3380 x_default_parameter (f, parms, Qinternal_border_width, make_number (1),
3381 "internalBorderWidth", "internalBorderWidth",
3382 RES_TYPE_NUMBER);
3383 x_default_parameter (f, parms, Qvertical_scroll_bars, Qleft,
3384 "verticalScrollBars", "ScrollBars",
3385 RES_TYPE_SYMBOL);
3387 /* Also do the stuff which must be set before the window exists. */
3388 x_default_parameter (f, parms, Qforeground_color, build_string ("black"),
3389 "foreground", "Foreground", RES_TYPE_STRING);
3390 x_default_parameter (f, parms, Qbackground_color, build_string ("white"),
3391 "background", "Background", RES_TYPE_STRING);
3392 x_default_parameter (f, parms, Qmouse_color, build_string ("black"),
3393 "pointerColor", "Foreground", RES_TYPE_STRING);
3394 x_default_parameter (f, parms, Qcursor_color, build_string ("black"),
3395 "cursorColor", "Foreground", RES_TYPE_STRING);
3396 x_default_parameter (f, parms, Qborder_color, build_string ("black"),
3397 "borderColor", "BorderColor", RES_TYPE_STRING);
3398 x_default_parameter (f, parms, Qscreen_gamma, Qnil,
3399 "screenGamma", "ScreenGamma", RES_TYPE_FLOAT);
3400 x_default_parameter (f, parms, Qline_spacing, Qnil,
3401 "lineSpacing", "LineSpacing", RES_TYPE_NUMBER);
3402 x_default_parameter (f, parms, Qleft_fringe, Qnil,
3403 "leftFringe", "LeftFringe", RES_TYPE_NUMBER);
3404 x_default_parameter (f, parms, Qright_fringe, Qnil,
3405 "rightFringe", "RightFringe", RES_TYPE_NUMBER);
3407 x_default_scroll_bar_color_parameter (f, parms, Qscroll_bar_foreground,
3408 "scrollBarForeground",
3409 "ScrollBarForeground", 1);
3410 x_default_scroll_bar_color_parameter (f, parms, Qscroll_bar_background,
3411 "scrollBarBackground",
3412 "ScrollBarBackground", 0);
3414 /* Init faces before x_default_parameter is called for scroll-bar
3415 parameters because that function calls x_set_scroll_bar_width,
3416 which calls change_frame_size, which calls Fset_window_buffer,
3417 which runs hooks, which call Fvertical_motion. At the end, we
3418 end up in init_iterator with a null face cache, which should not
3419 happen. */
3420 init_frame_faces (f);
3422 x_default_parameter (f, parms, Qmenu_bar_lines, make_number (1),
3423 "menuBar", "MenuBar", RES_TYPE_NUMBER);
3424 x_default_parameter (f, parms, Qtool_bar_lines, make_number (1),
3425 "toolBar", "ToolBar", RES_TYPE_NUMBER);
3426 x_default_parameter (f, parms, Qbuffer_predicate, Qnil,
3427 "bufferPredicate", "BufferPredicate",
3428 RES_TYPE_SYMBOL);
3429 x_default_parameter (f, parms, Qtitle, Qnil,
3430 "title", "Title", RES_TYPE_STRING);
3431 x_default_parameter (f, parms, Qwait_for_wm, Qt,
3432 "waitForWM", "WaitForWM", RES_TYPE_BOOLEAN);
3433 x_default_parameter (f, parms, Qfullscreen, Qnil,
3434 "fullscreen", "Fullscreen", RES_TYPE_SYMBOL);
3436 f->output_data.x->parent_desc = FRAME_X_DISPLAY_INFO (f)->root_window;
3438 /* Compute the size of the X window. */
3439 window_prompting = x_figure_window_size (f, parms, 1);
3441 tem = x_get_arg (dpyinfo, parms, Qunsplittable, 0, 0, RES_TYPE_BOOLEAN);
3442 f->no_split = minibuffer_only || EQ (tem, Qt);
3444 /* Create the X widget or window. */
3445 #ifdef USE_X_TOOLKIT
3446 x_window (f, window_prompting, minibuffer_only);
3447 #else
3448 x_window (f);
3449 #endif
3451 x_icon (f, parms);
3452 x_make_gc (f);
3454 /* Now consider the frame official. */
3455 FRAME_X_DISPLAY_INFO (f)->reference_count++;
3456 Vframe_list = Fcons (frame, Vframe_list);
3458 /* We need to do this after creating the X window, so that the
3459 icon-creation functions can say whose icon they're describing. */
3460 x_default_parameter (f, parms, Qicon_type, Qnil,
3461 "bitmapIcon", "BitmapIcon", RES_TYPE_SYMBOL);
3463 x_default_parameter (f, parms, Qauto_raise, Qnil,
3464 "autoRaise", "AutoRaiseLower", RES_TYPE_BOOLEAN);
3465 x_default_parameter (f, parms, Qauto_lower, Qnil,
3466 "autoLower", "AutoRaiseLower", RES_TYPE_BOOLEAN);
3467 x_default_parameter (f, parms, Qcursor_type, Qbox,
3468 "cursorType", "CursorType", RES_TYPE_SYMBOL);
3469 x_default_parameter (f, parms, Qscroll_bar_width, Qnil,
3470 "scrollBarWidth", "ScrollBarWidth",
3471 RES_TYPE_NUMBER);
3473 /* Dimensions, especially FRAME_LINES (f), must be done via change_frame_size.
3474 Change will not be effected unless different from the current
3475 FRAME_LINES (f). */
3476 width = FRAME_COLS (f);
3477 height = FRAME_LINES (f);
3479 SET_FRAME_COLS (f, 0);
3480 FRAME_LINES (f) = 0;
3481 change_frame_size (f, height, width, 1, 0, 0);
3483 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
3484 /* Create the menu bar. */
3485 if (!minibuffer_only && FRAME_EXTERNAL_MENU_BAR (f))
3487 /* If this signals an error, we haven't set size hints for the
3488 frame and we didn't make it visible. */
3489 initialize_frame_menubar (f);
3491 #ifndef USE_GTK
3492 /* This is a no-op, except under Motif where it arranges the
3493 main window for the widgets on it. */
3494 lw_set_main_areas (f->output_data.x->column_widget,
3495 f->output_data.x->menubar_widget,
3496 f->output_data.x->edit_widget);
3497 #endif /* not USE_GTK */
3499 #endif /* USE_X_TOOLKIT || USE_GTK */
3501 /* Tell the server what size and position, etc, we want, and how
3502 badly we want them. This should be done after we have the menu
3503 bar so that its size can be taken into account. */
3504 BLOCK_INPUT;
3505 x_wm_set_size_hint (f, window_prompting, 0);
3506 UNBLOCK_INPUT;
3508 /* Make the window appear on the frame and enable display, unless
3509 the caller says not to. However, with explicit parent, Emacs
3510 cannot control visibility, so don't try. */
3511 if (! f->output_data.x->explicit_parent)
3513 Lisp_Object visibility;
3515 visibility = x_get_arg (dpyinfo, parms, Qvisibility, 0, 0,
3516 RES_TYPE_SYMBOL);
3517 if (EQ (visibility, Qunbound))
3518 visibility = Qt;
3520 if (EQ (visibility, Qicon))
3521 x_iconify_frame (f);
3522 else if (! NILP (visibility))
3523 x_make_frame_visible (f);
3524 else
3525 /* Must have been Qnil. */
3529 UNGCPRO;
3531 /* Make sure windows on this frame appear in calls to next-window
3532 and similar functions. */
3533 Vwindow_list = Qnil;
3535 return unbind_to (count, frame);
3539 /* FRAME is used only to get a handle on the X display. We don't pass the
3540 display info directly because we're called from frame.c, which doesn't
3541 know about that structure. */
3543 Lisp_Object
3544 x_get_focus_frame (frame)
3545 struct frame *frame;
3547 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (frame);
3548 Lisp_Object xfocus;
3549 if (! dpyinfo->x_focus_frame)
3550 return Qnil;
3552 XSETFRAME (xfocus, dpyinfo->x_focus_frame);
3553 return xfocus;
3557 /* In certain situations, when the window manager follows a
3558 click-to-focus policy, there seems to be no way around calling
3559 XSetInputFocus to give another frame the input focus .
3561 In an ideal world, XSetInputFocus should generally be avoided so
3562 that applications don't interfere with the window manager's focus
3563 policy. But I think it's okay to use when it's clearly done
3564 following a user-command. */
3566 DEFUN ("x-focus-frame", Fx_focus_frame, Sx_focus_frame, 1, 1, 0,
3567 doc: /* Set the input focus to FRAME.
3568 FRAME nil means use the selected frame. */)
3569 (frame)
3570 Lisp_Object frame;
3572 struct frame *f = check_x_frame (frame);
3573 Display *dpy = FRAME_X_DISPLAY (f);
3574 int count;
3576 BLOCK_INPUT;
3577 count = x_catch_errors (dpy);
3578 XSetInputFocus (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3579 RevertToParent, CurrentTime);
3580 x_uncatch_errors (dpy, count);
3581 UNBLOCK_INPUT;
3583 return Qnil;
3587 DEFUN ("xw-color-defined-p", Fxw_color_defined_p, Sxw_color_defined_p, 1, 2, 0,
3588 doc: /* Internal function called by `color-defined-p', which see. */)
3589 (color, frame)
3590 Lisp_Object color, frame;
3592 XColor foo;
3593 FRAME_PTR f = check_x_frame (frame);
3595 CHECK_STRING (color);
3597 if (x_defined_color (f, SDATA (color), &foo, 0))
3598 return Qt;
3599 else
3600 return Qnil;
3603 DEFUN ("xw-color-values", Fxw_color_values, Sxw_color_values, 1, 2, 0,
3604 doc: /* Internal function called by `color-values', which see. */)
3605 (color, frame)
3606 Lisp_Object color, frame;
3608 XColor foo;
3609 FRAME_PTR f = check_x_frame (frame);
3611 CHECK_STRING (color);
3613 if (x_defined_color (f, SDATA (color), &foo, 0))
3615 Lisp_Object rgb[3];
3617 rgb[0] = make_number (foo.red);
3618 rgb[1] = make_number (foo.green);
3619 rgb[2] = make_number (foo.blue);
3620 return Flist (3, rgb);
3622 else
3623 return Qnil;
3626 DEFUN ("xw-display-color-p", Fxw_display_color_p, Sxw_display_color_p, 0, 1, 0,
3627 doc: /* Internal function called by `display-color-p', which see. */)
3628 (display)
3629 Lisp_Object display;
3631 struct x_display_info *dpyinfo = check_x_display_info (display);
3633 if (dpyinfo->n_planes <= 2)
3634 return Qnil;
3636 switch (dpyinfo->visual->class)
3638 case StaticColor:
3639 case PseudoColor:
3640 case TrueColor:
3641 case DirectColor:
3642 return Qt;
3644 default:
3645 return Qnil;
3649 DEFUN ("x-display-grayscale-p", Fx_display_grayscale_p, Sx_display_grayscale_p,
3650 0, 1, 0,
3651 doc: /* Return t if the X display supports shades of gray.
3652 Note that color displays do support shades of gray.
3653 The optional argument DISPLAY specifies which display to ask about.
3654 DISPLAY should be either a frame or a display name (a string).
3655 If omitted or nil, that stands for the selected frame's display. */)
3656 (display)
3657 Lisp_Object display;
3659 struct x_display_info *dpyinfo = check_x_display_info (display);
3661 if (dpyinfo->n_planes <= 1)
3662 return Qnil;
3664 switch (dpyinfo->visual->class)
3666 case StaticColor:
3667 case PseudoColor:
3668 case TrueColor:
3669 case DirectColor:
3670 case StaticGray:
3671 case GrayScale:
3672 return Qt;
3674 default:
3675 return Qnil;
3679 DEFUN ("x-display-pixel-width", Fx_display_pixel_width, Sx_display_pixel_width,
3680 0, 1, 0,
3681 doc: /* Returns the width in pixels of the X display DISPLAY.
3682 The optional argument DISPLAY specifies which display to ask about.
3683 DISPLAY should be either a frame or a display name (a string).
3684 If omitted or nil, that stands for the selected frame's display. */)
3685 (display)
3686 Lisp_Object display;
3688 struct x_display_info *dpyinfo = check_x_display_info (display);
3690 return make_number (dpyinfo->width);
3693 DEFUN ("x-display-pixel-height", Fx_display_pixel_height,
3694 Sx_display_pixel_height, 0, 1, 0,
3695 doc: /* Returns the height in pixels of the X display DISPLAY.
3696 The optional argument DISPLAY specifies which display to ask about.
3697 DISPLAY should be either a frame or a display name (a string).
3698 If omitted or nil, that stands for the selected frame's display. */)
3699 (display)
3700 Lisp_Object display;
3702 struct x_display_info *dpyinfo = check_x_display_info (display);
3704 return make_number (dpyinfo->height);
3707 DEFUN ("x-display-planes", Fx_display_planes, Sx_display_planes,
3708 0, 1, 0,
3709 doc: /* Returns the number of bitplanes of the X display DISPLAY.
3710 The optional argument DISPLAY specifies which display to ask about.
3711 DISPLAY should be either a frame or a display name (a string).
3712 If omitted or nil, that stands for the selected frame's display. */)
3713 (display)
3714 Lisp_Object display;
3716 struct x_display_info *dpyinfo = check_x_display_info (display);
3718 return make_number (dpyinfo->n_planes);
3721 DEFUN ("x-display-color-cells", Fx_display_color_cells, Sx_display_color_cells,
3722 0, 1, 0,
3723 doc: /* Returns the number of color cells of the X display DISPLAY.
3724 The optional argument DISPLAY specifies which display to ask about.
3725 DISPLAY should be either a frame or a display name (a string).
3726 If omitted or nil, that stands for the selected frame's display. */)
3727 (display)
3728 Lisp_Object display;
3730 struct x_display_info *dpyinfo = check_x_display_info (display);
3732 return make_number (DisplayCells (dpyinfo->display,
3733 XScreenNumberOfScreen (dpyinfo->screen)));
3736 DEFUN ("x-server-max-request-size", Fx_server_max_request_size,
3737 Sx_server_max_request_size,
3738 0, 1, 0,
3739 doc: /* Returns the maximum request size of the X server of display DISPLAY.
3740 The optional argument DISPLAY specifies which display to ask about.
3741 DISPLAY should be either a frame or a display name (a string).
3742 If omitted or nil, that stands for the selected frame's display. */)
3743 (display)
3744 Lisp_Object display;
3746 struct x_display_info *dpyinfo = check_x_display_info (display);
3748 return make_number (MAXREQUEST (dpyinfo->display));
3751 DEFUN ("x-server-vendor", Fx_server_vendor, Sx_server_vendor, 0, 1, 0,
3752 doc: /* Returns the vendor ID string of the X server of display DISPLAY.
3753 The optional argument DISPLAY specifies which display to ask about.
3754 DISPLAY should be either a frame or a display name (a string).
3755 If omitted or nil, that stands for the selected frame's display. */)
3756 (display)
3757 Lisp_Object display;
3759 struct x_display_info *dpyinfo = check_x_display_info (display);
3760 char *vendor = ServerVendor (dpyinfo->display);
3762 if (! vendor) vendor = "";
3763 return build_string (vendor);
3766 DEFUN ("x-server-version", Fx_server_version, Sx_server_version, 0, 1, 0,
3767 doc: /* Returns the version numbers of the X server of display DISPLAY.
3768 The value is a list of three integers: the major and minor
3769 version numbers of the X Protocol in use, and the vendor-specific release
3770 number. See also the function `x-server-vendor'.
3772 The optional argument DISPLAY specifies which display to ask about.
3773 DISPLAY should be either a frame or a display name (a string).
3774 If omitted or nil, that stands for the selected frame's display. */)
3775 (display)
3776 Lisp_Object display;
3778 struct x_display_info *dpyinfo = check_x_display_info (display);
3779 Display *dpy = dpyinfo->display;
3781 return Fcons (make_number (ProtocolVersion (dpy)),
3782 Fcons (make_number (ProtocolRevision (dpy)),
3783 Fcons (make_number (VendorRelease (dpy)), Qnil)));
3786 DEFUN ("x-display-screens", Fx_display_screens, Sx_display_screens, 0, 1, 0,
3787 doc: /* Return the number of screens on the X server of display DISPLAY.
3788 The optional argument DISPLAY specifies which display to ask about.
3789 DISPLAY should be either a frame or a display name (a string).
3790 If omitted or nil, that stands for the selected frame's display. */)
3791 (display)
3792 Lisp_Object display;
3794 struct x_display_info *dpyinfo = check_x_display_info (display);
3796 return make_number (ScreenCount (dpyinfo->display));
3799 DEFUN ("x-display-mm-height", Fx_display_mm_height, Sx_display_mm_height, 0, 1, 0,
3800 doc: /* Return the height in millimeters of the X display DISPLAY.
3801 The optional argument DISPLAY specifies which display to ask about.
3802 DISPLAY should be either a frame or a display name (a string).
3803 If omitted or nil, that stands for the selected frame's display. */)
3804 (display)
3805 Lisp_Object display;
3807 struct x_display_info *dpyinfo = check_x_display_info (display);
3809 return make_number (HeightMMOfScreen (dpyinfo->screen));
3812 DEFUN ("x-display-mm-width", Fx_display_mm_width, Sx_display_mm_width, 0, 1, 0,
3813 doc: /* Return the width in millimeters of the X display DISPLAY.
3814 The optional argument DISPLAY specifies which display to ask about.
3815 DISPLAY should be either a frame or a display name (a string).
3816 If omitted or nil, that stands for the selected frame's display. */)
3817 (display)
3818 Lisp_Object display;
3820 struct x_display_info *dpyinfo = check_x_display_info (display);
3822 return make_number (WidthMMOfScreen (dpyinfo->screen));
3825 DEFUN ("x-display-backing-store", Fx_display_backing_store,
3826 Sx_display_backing_store, 0, 1, 0,
3827 doc: /* Returns an indication of whether X display DISPLAY does backing store.
3828 The value may be `always', `when-mapped', or `not-useful'.
3829 The optional argument DISPLAY specifies which display to ask about.
3830 DISPLAY should be either a frame or a display name (a string).
3831 If omitted or nil, that stands for the selected frame's display. */)
3832 (display)
3833 Lisp_Object display;
3835 struct x_display_info *dpyinfo = check_x_display_info (display);
3836 Lisp_Object result;
3838 switch (DoesBackingStore (dpyinfo->screen))
3840 case Always:
3841 result = intern ("always");
3842 break;
3844 case WhenMapped:
3845 result = intern ("when-mapped");
3846 break;
3848 case NotUseful:
3849 result = intern ("not-useful");
3850 break;
3852 default:
3853 error ("Strange value for BackingStore parameter of screen");
3854 result = Qnil;
3857 return result;
3860 DEFUN ("x-display-visual-class", Fx_display_visual_class,
3861 Sx_display_visual_class, 0, 1, 0,
3862 doc: /* Return the visual class of the X display DISPLAY.
3863 The value is one of the symbols `static-gray', `gray-scale',
3864 `static-color', `pseudo-color', `true-color', or `direct-color'.
3866 The optional argument DISPLAY specifies which display to ask about.
3867 DISPLAY should be either a frame or a display name (a string).
3868 If omitted or nil, that stands for the selected frame's display. */)
3869 (display)
3870 Lisp_Object display;
3872 struct x_display_info *dpyinfo = check_x_display_info (display);
3873 Lisp_Object result;
3875 switch (dpyinfo->visual->class)
3877 case StaticGray:
3878 result = intern ("static-gray");
3879 break;
3880 case GrayScale:
3881 result = intern ("gray-scale");
3882 break;
3883 case StaticColor:
3884 result = intern ("static-color");
3885 break;
3886 case PseudoColor:
3887 result = intern ("pseudo-color");
3888 break;
3889 case TrueColor:
3890 result = intern ("true-color");
3891 break;
3892 case DirectColor:
3893 result = intern ("direct-color");
3894 break;
3895 default:
3896 error ("Display has an unknown visual class");
3897 result = Qnil;
3900 return result;
3903 DEFUN ("x-display-save-under", Fx_display_save_under,
3904 Sx_display_save_under, 0, 1, 0,
3905 doc: /* Returns t if the X display DISPLAY supports the save-under feature.
3906 The optional argument DISPLAY specifies which display to ask about.
3907 DISPLAY should be either a frame or a display name (a string).
3908 If omitted or nil, that stands for the selected frame's display. */)
3909 (display)
3910 Lisp_Object display;
3912 struct x_display_info *dpyinfo = check_x_display_info (display);
3914 if (DoesSaveUnders (dpyinfo->screen) == True)
3915 return Qt;
3916 else
3917 return Qnil;
3921 x_pixel_width (f)
3922 register struct frame *f;
3924 return FRAME_PIXEL_WIDTH (f);
3928 x_pixel_height (f)
3929 register struct frame *f;
3931 return FRAME_PIXEL_HEIGHT (f);
3935 x_char_width (f)
3936 register struct frame *f;
3938 return FRAME_COLUMN_WIDTH (f);
3942 x_char_height (f)
3943 register struct frame *f;
3945 return FRAME_LINE_HEIGHT (f);
3949 x_screen_planes (f)
3950 register struct frame *f;
3952 return FRAME_X_DISPLAY_INFO (f)->n_planes;
3957 /************************************************************************
3958 X Displays
3959 ************************************************************************/
3962 /* Mapping visual names to visuals. */
3964 static struct visual_class
3966 char *name;
3967 int class;
3969 visual_classes[] =
3971 {"StaticGray", StaticGray},
3972 {"GrayScale", GrayScale},
3973 {"StaticColor", StaticColor},
3974 {"PseudoColor", PseudoColor},
3975 {"TrueColor", TrueColor},
3976 {"DirectColor", DirectColor},
3977 {NULL, 0}
3981 #ifndef HAVE_XSCREENNUMBEROFSCREEN
3983 /* Value is the screen number of screen SCR. This is a substitute for
3984 the X function with the same name when that doesn't exist. */
3987 XScreenNumberOfScreen (scr)
3988 register Screen *scr;
3990 Display *dpy = scr->display;
3991 int i;
3993 for (i = 0; i < dpy->nscreens; ++i)
3994 if (scr == dpy->screens + i)
3995 break;
3997 return i;
4000 #endif /* not HAVE_XSCREENNUMBEROFSCREEN */
4003 /* Select the visual that should be used on display DPYINFO. Set
4004 members of DPYINFO appropriately. Called from x_term_init. */
4006 void
4007 select_visual (dpyinfo)
4008 struct x_display_info *dpyinfo;
4010 Display *dpy = dpyinfo->display;
4011 Screen *screen = dpyinfo->screen;
4012 Lisp_Object value;
4014 /* See if a visual is specified. */
4015 value = display_x_get_resource (dpyinfo,
4016 build_string ("visualClass"),
4017 build_string ("VisualClass"),
4018 Qnil, Qnil);
4019 if (STRINGP (value))
4021 /* VALUE should be of the form CLASS-DEPTH, where CLASS is one
4022 of `PseudoColor', `TrueColor' etc. and DEPTH is the color
4023 depth, a decimal number. NAME is compared with case ignored. */
4024 char *s = (char *) alloca (SBYTES (value) + 1);
4025 char *dash;
4026 int i, class = -1;
4027 XVisualInfo vinfo;
4029 strcpy (s, SDATA (value));
4030 dash = index (s, '-');
4031 if (dash)
4033 dpyinfo->n_planes = atoi (dash + 1);
4034 *dash = '\0';
4036 else
4037 /* We won't find a matching visual with depth 0, so that
4038 an error will be printed below. */
4039 dpyinfo->n_planes = 0;
4041 /* Determine the visual class. */
4042 for (i = 0; visual_classes[i].name; ++i)
4043 if (xstricmp (s, visual_classes[i].name) == 0)
4045 class = visual_classes[i].class;
4046 break;
4049 /* Look up a matching visual for the specified class. */
4050 if (class == -1
4051 || !XMatchVisualInfo (dpy, XScreenNumberOfScreen (screen),
4052 dpyinfo->n_planes, class, &vinfo))
4053 fatal ("Invalid visual specification `%s'", SDATA (value));
4055 dpyinfo->visual = vinfo.visual;
4057 else
4059 int n_visuals;
4060 XVisualInfo *vinfo, vinfo_template;
4062 dpyinfo->visual = DefaultVisualOfScreen (screen);
4064 #ifdef HAVE_X11R4
4065 vinfo_template.visualid = XVisualIDFromVisual (dpyinfo->visual);
4066 #else
4067 vinfo_template.visualid = dpyinfo->visual->visualid;
4068 #endif
4069 vinfo_template.screen = XScreenNumberOfScreen (screen);
4070 vinfo = XGetVisualInfo (dpy, VisualIDMask | VisualScreenMask,
4071 &vinfo_template, &n_visuals);
4072 if (n_visuals != 1)
4073 fatal ("Can't get proper X visual info");
4075 dpyinfo->n_planes = vinfo->depth;
4076 XFree ((char *) vinfo);
4081 /* Return the X display structure for the display named NAME.
4082 Open a new connection if necessary. */
4084 struct x_display_info *
4085 x_display_info_for_name (name)
4086 Lisp_Object name;
4088 Lisp_Object names;
4089 struct x_display_info *dpyinfo;
4091 CHECK_STRING (name);
4093 if (! EQ (Vwindow_system, intern ("x")))
4094 error ("Not using X Windows");
4096 for (dpyinfo = x_display_list, names = x_display_name_list;
4097 dpyinfo;
4098 dpyinfo = dpyinfo->next, names = XCDR (names))
4100 Lisp_Object tem;
4101 tem = Fstring_equal (XCAR (XCAR (names)), name);
4102 if (!NILP (tem))
4103 return dpyinfo;
4106 /* Use this general default value to start with. */
4107 Vx_resource_name = Vinvocation_name;
4109 validate_x_resource_name ();
4111 dpyinfo = x_term_init (name, (char *)0,
4112 (char *) SDATA (Vx_resource_name));
4114 if (dpyinfo == 0)
4115 error ("Cannot connect to X server %s", SDATA (name));
4117 x_in_use = 1;
4118 XSETFASTINT (Vwindow_system_version, 11);
4120 return dpyinfo;
4124 DEFUN ("x-open-connection", Fx_open_connection, Sx_open_connection,
4125 1, 3, 0,
4126 doc: /* Open a connection to an X server.
4127 DISPLAY is the name of the display to connect to.
4128 Optional second arg XRM-STRING is a string of resources in xrdb format.
4129 If the optional third arg MUST-SUCCEED is non-nil,
4130 terminate Emacs if we can't open the connection. */)
4131 (display, xrm_string, must_succeed)
4132 Lisp_Object display, xrm_string, must_succeed;
4134 unsigned char *xrm_option;
4135 struct x_display_info *dpyinfo;
4137 CHECK_STRING (display);
4138 if (! NILP (xrm_string))
4139 CHECK_STRING (xrm_string);
4141 if (! EQ (Vwindow_system, intern ("x")))
4142 error ("Not using X Windows");
4144 if (! NILP (xrm_string))
4145 xrm_option = (unsigned char *) SDATA (xrm_string);
4146 else
4147 xrm_option = (unsigned char *) 0;
4149 validate_x_resource_name ();
4151 /* This is what opens the connection and sets x_current_display.
4152 This also initializes many symbols, such as those used for input. */
4153 dpyinfo = x_term_init (display, xrm_option,
4154 (char *) SDATA (Vx_resource_name));
4156 if (dpyinfo == 0)
4158 if (!NILP (must_succeed))
4159 fatal ("Cannot connect to X server %s.\n\
4160 Check the DISPLAY environment variable or use `-d'.\n\
4161 Also use the `xauth' program to verify that you have the proper\n\
4162 authorization information needed to connect the X server.\n\
4163 An insecure way to solve the problem may be to use `xhost'.\n",
4164 SDATA (display));
4165 else
4166 error ("Cannot connect to X server %s", SDATA (display));
4169 x_in_use = 1;
4171 XSETFASTINT (Vwindow_system_version, 11);
4172 return Qnil;
4175 DEFUN ("x-close-connection", Fx_close_connection,
4176 Sx_close_connection, 1, 1, 0,
4177 doc: /* Close the connection to DISPLAY's X server.
4178 For DISPLAY, specify either a frame or a display name (a string).
4179 If DISPLAY is nil, that stands for the selected frame's display. */)
4180 (display)
4181 Lisp_Object display;
4183 struct x_display_info *dpyinfo = check_x_display_info (display);
4184 int i;
4186 if (dpyinfo->reference_count > 0)
4187 error ("Display still has frames on it");
4189 BLOCK_INPUT;
4190 /* Free the fonts in the font table. */
4191 for (i = 0; i < dpyinfo->n_fonts; i++)
4192 if (dpyinfo->font_table[i].name)
4194 if (dpyinfo->font_table[i].name != dpyinfo->font_table[i].full_name)
4195 xfree (dpyinfo->font_table[i].full_name);
4196 xfree (dpyinfo->font_table[i].name);
4197 XFreeFont (dpyinfo->display, dpyinfo->font_table[i].font);
4200 x_destroy_all_bitmaps (dpyinfo);
4201 XSetCloseDownMode (dpyinfo->display, DestroyAll);
4203 #ifdef USE_X_TOOLKIT
4204 XtCloseDisplay (dpyinfo->display);
4205 #else
4206 XCloseDisplay (dpyinfo->display);
4207 #endif
4209 x_delete_display (dpyinfo);
4210 UNBLOCK_INPUT;
4212 return Qnil;
4215 DEFUN ("x-display-list", Fx_display_list, Sx_display_list, 0, 0, 0,
4216 doc: /* Return the list of display names that Emacs has connections to. */)
4219 Lisp_Object tail, result;
4221 result = Qnil;
4222 for (tail = x_display_name_list; ! NILP (tail); tail = XCDR (tail))
4223 result = Fcons (XCAR (XCAR (tail)), result);
4225 return result;
4228 DEFUN ("x-synchronize", Fx_synchronize, Sx_synchronize, 1, 2, 0,
4229 doc: /* If ON is non-nil, report X errors as soon as the erring request is made.
4230 If ON is nil, allow buffering of requests.
4231 Turning on synchronization prohibits the Xlib routines from buffering
4232 requests and seriously degrades performance, but makes debugging much
4233 easier.
4234 The optional second argument DISPLAY specifies which display to act on.
4235 DISPLAY should be either a frame or a display name (a string).
4236 If DISPLAY is omitted or nil, that stands for the selected frame's display. */)
4237 (on, display)
4238 Lisp_Object display, on;
4240 struct x_display_info *dpyinfo = check_x_display_info (display);
4242 XSynchronize (dpyinfo->display, !EQ (on, Qnil));
4244 return Qnil;
4247 /* Wait for responses to all X commands issued so far for frame F. */
4249 void
4250 x_sync (f)
4251 FRAME_PTR f;
4253 BLOCK_INPUT;
4254 XSync (FRAME_X_DISPLAY (f), False);
4255 UNBLOCK_INPUT;
4259 /***********************************************************************
4260 Image types
4261 ***********************************************************************/
4263 /* Value is the number of elements of vector VECTOR. */
4265 #define DIM(VECTOR) (sizeof (VECTOR) / sizeof *(VECTOR))
4267 /* List of supported image types. Use define_image_type to add new
4268 types. Use lookup_image_type to find a type for a given symbol. */
4270 static struct image_type *image_types;
4272 /* The symbol `image' which is the car of the lists used to represent
4273 images in Lisp. */
4275 extern Lisp_Object Qimage;
4277 /* The symbol `xbm' which is used as the type symbol for XBM images. */
4279 Lisp_Object Qxbm;
4281 /* Keywords. */
4283 extern Lisp_Object QCwidth, QCheight, QCforeground, QCbackground, QCfile;
4284 extern Lisp_Object QCdata, QCtype;
4285 Lisp_Object QCascent, QCmargin, QCrelief;
4286 Lisp_Object QCconversion, QCcolor_symbols, QCheuristic_mask;
4287 Lisp_Object QCindex, QCmatrix, QCcolor_adjustment, QCmask;
4289 /* Other symbols. */
4291 Lisp_Object Qlaplace, Qemboss, Qedge_detection, Qheuristic;
4293 /* Time in seconds after which images should be removed from the cache
4294 if not displayed. */
4296 Lisp_Object Vimage_cache_eviction_delay;
4298 /* Function prototypes. */
4300 static void define_image_type P_ ((struct image_type *type));
4301 static struct image_type *lookup_image_type P_ ((Lisp_Object symbol));
4302 static void image_error P_ ((char *format, Lisp_Object, Lisp_Object));
4303 static void x_laplace P_ ((struct frame *, struct image *));
4304 static void x_emboss P_ ((struct frame *, struct image *));
4305 static int x_build_heuristic_mask P_ ((struct frame *, struct image *,
4306 Lisp_Object));
4309 /* Define a new image type from TYPE. This adds a copy of TYPE to
4310 image_types and adds the symbol *TYPE->type to Vimage_types. */
4312 static void
4313 define_image_type (type)
4314 struct image_type *type;
4316 /* Make a copy of TYPE to avoid a bus error in a dumped Emacs.
4317 The initialized data segment is read-only. */
4318 struct image_type *p = (struct image_type *) xmalloc (sizeof *p);
4319 bcopy (type, p, sizeof *p);
4320 p->next = image_types;
4321 image_types = p;
4322 Vimage_types = Fcons (*p->type, Vimage_types);
4326 /* Look up image type SYMBOL, and return a pointer to its image_type
4327 structure. Value is null if SYMBOL is not a known image type. */
4329 static INLINE struct image_type *
4330 lookup_image_type (symbol)
4331 Lisp_Object symbol;
4333 struct image_type *type;
4335 for (type = image_types; type; type = type->next)
4336 if (EQ (symbol, *type->type))
4337 break;
4339 return type;
4343 /* Value is non-zero if OBJECT is a valid Lisp image specification. A
4344 valid image specification is a list whose car is the symbol
4345 `image', and whose rest is a property list. The property list must
4346 contain a value for key `:type'. That value must be the name of a
4347 supported image type. The rest of the property list depends on the
4348 image type. */
4351 valid_image_p (object)
4352 Lisp_Object object;
4354 int valid_p = 0;
4356 if (CONSP (object) && EQ (XCAR (object), Qimage))
4358 Lisp_Object tem;
4360 for (tem = XCDR (object); CONSP (tem); tem = XCDR (tem))
4361 if (EQ (XCAR (tem), QCtype))
4363 tem = XCDR (tem);
4364 if (CONSP (tem) && SYMBOLP (XCAR (tem)))
4366 struct image_type *type;
4367 type = lookup_image_type (XCAR (tem));
4368 if (type)
4369 valid_p = type->valid_p (object);
4372 break;
4376 return valid_p;
4380 /* Log error message with format string FORMAT and argument ARG.
4381 Signaling an error, e.g. when an image cannot be loaded, is not a
4382 good idea because this would interrupt redisplay, and the error
4383 message display would lead to another redisplay. This function
4384 therefore simply displays a message. */
4386 static void
4387 image_error (format, arg1, arg2)
4388 char *format;
4389 Lisp_Object arg1, arg2;
4391 add_to_log (format, arg1, arg2);
4396 /***********************************************************************
4397 Image specifications
4398 ***********************************************************************/
4400 enum image_value_type
4402 IMAGE_DONT_CHECK_VALUE_TYPE,
4403 IMAGE_STRING_VALUE,
4404 IMAGE_STRING_OR_NIL_VALUE,
4405 IMAGE_SYMBOL_VALUE,
4406 IMAGE_POSITIVE_INTEGER_VALUE,
4407 IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR,
4408 IMAGE_NON_NEGATIVE_INTEGER_VALUE,
4409 IMAGE_ASCENT_VALUE,
4410 IMAGE_INTEGER_VALUE,
4411 IMAGE_FUNCTION_VALUE,
4412 IMAGE_NUMBER_VALUE,
4413 IMAGE_BOOL_VALUE
4416 /* Structure used when parsing image specifications. */
4418 struct image_keyword
4420 /* Name of keyword. */
4421 char *name;
4423 /* The type of value allowed. */
4424 enum image_value_type type;
4426 /* Non-zero means key must be present. */
4427 int mandatory_p;
4429 /* Used to recognize duplicate keywords in a property list. */
4430 int count;
4432 /* The value that was found. */
4433 Lisp_Object value;
4437 static int parse_image_spec P_ ((Lisp_Object, struct image_keyword *,
4438 int, Lisp_Object));
4439 static Lisp_Object image_spec_value P_ ((Lisp_Object, Lisp_Object, int *));
4442 /* Parse image spec SPEC according to KEYWORDS. A valid image spec
4443 has the format (image KEYWORD VALUE ...). One of the keyword/
4444 value pairs must be `:type TYPE'. KEYWORDS is a vector of
4445 image_keywords structures of size NKEYWORDS describing other
4446 allowed keyword/value pairs. Value is non-zero if SPEC is valid. */
4448 static int
4449 parse_image_spec (spec, keywords, nkeywords, type)
4450 Lisp_Object spec;
4451 struct image_keyword *keywords;
4452 int nkeywords;
4453 Lisp_Object type;
4455 int i;
4456 Lisp_Object plist;
4458 if (!CONSP (spec) || !EQ (XCAR (spec), Qimage))
4459 return 0;
4461 plist = XCDR (spec);
4462 while (CONSP (plist))
4464 Lisp_Object key, value;
4466 /* First element of a pair must be a symbol. */
4467 key = XCAR (plist);
4468 plist = XCDR (plist);
4469 if (!SYMBOLP (key))
4470 return 0;
4472 /* There must follow a value. */
4473 if (!CONSP (plist))
4474 return 0;
4475 value = XCAR (plist);
4476 plist = XCDR (plist);
4478 /* Find key in KEYWORDS. Error if not found. */
4479 for (i = 0; i < nkeywords; ++i)
4480 if (strcmp (keywords[i].name, SDATA (SYMBOL_NAME (key))) == 0)
4481 break;
4483 if (i == nkeywords)
4484 continue;
4486 /* Record that we recognized the keyword. If a keywords
4487 was found more than once, it's an error. */
4488 keywords[i].value = value;
4489 ++keywords[i].count;
4491 if (keywords[i].count > 1)
4492 return 0;
4494 /* Check type of value against allowed type. */
4495 switch (keywords[i].type)
4497 case IMAGE_STRING_VALUE:
4498 if (!STRINGP (value))
4499 return 0;
4500 break;
4502 case IMAGE_STRING_OR_NIL_VALUE:
4503 if (!STRINGP (value) && !NILP (value))
4504 return 0;
4505 break;
4507 case IMAGE_SYMBOL_VALUE:
4508 if (!SYMBOLP (value))
4509 return 0;
4510 break;
4512 case IMAGE_POSITIVE_INTEGER_VALUE:
4513 if (!INTEGERP (value) || XINT (value) <= 0)
4514 return 0;
4515 break;
4517 case IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR:
4518 if (INTEGERP (value) && XINT (value) >= 0)
4519 break;
4520 if (CONSP (value)
4521 && INTEGERP (XCAR (value)) && INTEGERP (XCDR (value))
4522 && XINT (XCAR (value)) >= 0 && XINT (XCDR (value)) >= 0)
4523 break;
4524 return 0;
4526 case IMAGE_ASCENT_VALUE:
4527 if (SYMBOLP (value) && EQ (value, Qcenter))
4528 break;
4529 else if (INTEGERP (value)
4530 && XINT (value) >= 0
4531 && XINT (value) <= 100)
4532 break;
4533 return 0;
4535 case IMAGE_NON_NEGATIVE_INTEGER_VALUE:
4536 if (!INTEGERP (value) || XINT (value) < 0)
4537 return 0;
4538 break;
4540 case IMAGE_DONT_CHECK_VALUE_TYPE:
4541 break;
4543 case IMAGE_FUNCTION_VALUE:
4544 value = indirect_function (value);
4545 if (SUBRP (value)
4546 || COMPILEDP (value)
4547 || (CONSP (value) && EQ (XCAR (value), Qlambda)))
4548 break;
4549 return 0;
4551 case IMAGE_NUMBER_VALUE:
4552 if (!INTEGERP (value) && !FLOATP (value))
4553 return 0;
4554 break;
4556 case IMAGE_INTEGER_VALUE:
4557 if (!INTEGERP (value))
4558 return 0;
4559 break;
4561 case IMAGE_BOOL_VALUE:
4562 if (!NILP (value) && !EQ (value, Qt))
4563 return 0;
4564 break;
4566 default:
4567 abort ();
4568 break;
4571 if (EQ (key, QCtype) && !EQ (type, value))
4572 return 0;
4575 /* Check that all mandatory fields are present. */
4576 for (i = 0; i < nkeywords; ++i)
4577 if (keywords[i].mandatory_p && keywords[i].count == 0)
4578 return 0;
4580 return NILP (plist);
4584 /* Return the value of KEY in image specification SPEC. Value is nil
4585 if KEY is not present in SPEC. if FOUND is not null, set *FOUND
4586 to 1 if KEY was found in SPEC, set it to 0 otherwise. */
4588 static Lisp_Object
4589 image_spec_value (spec, key, found)
4590 Lisp_Object spec, key;
4591 int *found;
4593 Lisp_Object tail;
4595 xassert (valid_image_p (spec));
4597 for (tail = XCDR (spec);
4598 CONSP (tail) && CONSP (XCDR (tail));
4599 tail = XCDR (XCDR (tail)))
4601 if (EQ (XCAR (tail), key))
4603 if (found)
4604 *found = 1;
4605 return XCAR (XCDR (tail));
4609 if (found)
4610 *found = 0;
4611 return Qnil;
4615 DEFUN ("image-size", Fimage_size, Simage_size, 1, 3, 0,
4616 doc: /* Return the size of image SPEC as pair (WIDTH . HEIGHT).
4617 PIXELS non-nil means return the size in pixels, otherwise return the
4618 size in canonical character units.
4619 FRAME is the frame on which the image will be displayed. FRAME nil
4620 or omitted means use the selected frame. */)
4621 (spec, pixels, frame)
4622 Lisp_Object spec, pixels, frame;
4624 Lisp_Object size;
4626 size = Qnil;
4627 if (valid_image_p (spec))
4629 struct frame *f = check_x_frame (frame);
4630 int id = lookup_image (f, spec);
4631 struct image *img = IMAGE_FROM_ID (f, id);
4632 int width = img->width + 2 * img->hmargin;
4633 int height = img->height + 2 * img->vmargin;
4635 if (NILP (pixels))
4636 size = Fcons (make_float ((double) width / FRAME_COLUMN_WIDTH (f)),
4637 make_float ((double) height / FRAME_LINE_HEIGHT (f)));
4638 else
4639 size = Fcons (make_number (width), make_number (height));
4641 else
4642 error ("Invalid image specification");
4644 return size;
4648 DEFUN ("image-mask-p", Fimage_mask_p, Simage_mask_p, 1, 2, 0,
4649 doc: /* Return t if image SPEC has a mask bitmap.
4650 FRAME is the frame on which the image will be displayed. FRAME nil
4651 or omitted means use the selected frame. */)
4652 (spec, frame)
4653 Lisp_Object spec, frame;
4655 Lisp_Object mask;
4657 mask = Qnil;
4658 if (valid_image_p (spec))
4660 struct frame *f = check_x_frame (frame);
4661 int id = lookup_image (f, spec);
4662 struct image *img = IMAGE_FROM_ID (f, id);
4663 if (img->mask)
4664 mask = Qt;
4666 else
4667 error ("Invalid image specification");
4669 return mask;
4674 /***********************************************************************
4675 Image type independent image structures
4676 ***********************************************************************/
4678 static struct image *make_image P_ ((Lisp_Object spec, unsigned hash));
4679 static void free_image P_ ((struct frame *f, struct image *img));
4682 /* Allocate and return a new image structure for image specification
4683 SPEC. SPEC has a hash value of HASH. */
4685 static struct image *
4686 make_image (spec, hash)
4687 Lisp_Object spec;
4688 unsigned hash;
4690 struct image *img = (struct image *) xmalloc (sizeof *img);
4692 xassert (valid_image_p (spec));
4693 bzero (img, sizeof *img);
4694 img->type = lookup_image_type (image_spec_value (spec, QCtype, NULL));
4695 xassert (img->type != NULL);
4696 img->spec = spec;
4697 img->data.lisp_val = Qnil;
4698 img->ascent = DEFAULT_IMAGE_ASCENT;
4699 img->hash = hash;
4700 return img;
4704 /* Free image IMG which was used on frame F, including its resources. */
4706 static void
4707 free_image (f, img)
4708 struct frame *f;
4709 struct image *img;
4711 if (img)
4713 struct image_cache *c = FRAME_X_IMAGE_CACHE (f);
4715 /* Remove IMG from the hash table of its cache. */
4716 if (img->prev)
4717 img->prev->next = img->next;
4718 else
4719 c->buckets[img->hash % IMAGE_CACHE_BUCKETS_SIZE] = img->next;
4721 if (img->next)
4722 img->next->prev = img->prev;
4724 c->images[img->id] = NULL;
4726 /* Free resources, then free IMG. */
4727 img->type->free (f, img);
4728 xfree (img);
4733 /* Prepare image IMG for display on frame F. Must be called before
4734 drawing an image. */
4736 void
4737 prepare_image_for_display (f, img)
4738 struct frame *f;
4739 struct image *img;
4741 EMACS_TIME t;
4743 /* We're about to display IMG, so set its timestamp to `now'. */
4744 EMACS_GET_TIME (t);
4745 img->timestamp = EMACS_SECS (t);
4747 /* If IMG doesn't have a pixmap yet, load it now, using the image
4748 type dependent loader function. */
4749 if (img->pixmap == None && !img->load_failed_p)
4750 img->load_failed_p = img->type->load (f, img) == 0;
4754 /* Value is the number of pixels for the ascent of image IMG when
4755 drawn in face FACE. */
4758 image_ascent (img, face)
4759 struct image *img;
4760 struct face *face;
4762 int height = img->height + img->vmargin;
4763 int ascent;
4765 if (img->ascent == CENTERED_IMAGE_ASCENT)
4767 if (face->font)
4768 /* This expression is arranged so that if the image can't be
4769 exactly centered, it will be moved slightly up. This is
4770 because a typical font is `top-heavy' (due to the presence
4771 uppercase letters), so the image placement should err towards
4772 being top-heavy too. It also just generally looks better. */
4773 ascent = (height + face->font->ascent - face->font->descent + 1) / 2;
4774 else
4775 ascent = height / 2;
4777 else
4778 ascent = height * img->ascent / 100.0;
4780 return ascent;
4784 /* Image background colors. */
4786 static unsigned long
4787 four_corners_best (ximg, width, height)
4788 XImage *ximg;
4789 unsigned long width, height;
4791 unsigned long corners[4], best;
4792 int i, best_count;
4794 /* Get the colors at the corners of ximg. */
4795 corners[0] = XGetPixel (ximg, 0, 0);
4796 corners[1] = XGetPixel (ximg, width - 1, 0);
4797 corners[2] = XGetPixel (ximg, width - 1, height - 1);
4798 corners[3] = XGetPixel (ximg, 0, height - 1);
4800 /* Choose the most frequently found color as background. */
4801 for (i = best_count = 0; i < 4; ++i)
4803 int j, n;
4805 for (j = n = 0; j < 4; ++j)
4806 if (corners[i] == corners[j])
4807 ++n;
4809 if (n > best_count)
4810 best = corners[i], best_count = n;
4813 return best;
4816 /* Return the `background' field of IMG. If IMG doesn't have one yet,
4817 it is guessed heuristically. If non-zero, XIMG is an existing XImage
4818 object to use for the heuristic. */
4820 unsigned long
4821 image_background (img, f, ximg)
4822 struct image *img;
4823 struct frame *f;
4824 XImage *ximg;
4826 if (! img->background_valid)
4827 /* IMG doesn't have a background yet, try to guess a reasonable value. */
4829 int free_ximg = !ximg;
4831 if (! ximg)
4832 ximg = XGetImage (FRAME_X_DISPLAY (f), img->pixmap,
4833 0, 0, img->width, img->height, ~0, ZPixmap);
4835 img->background = four_corners_best (ximg, img->width, img->height);
4837 if (free_ximg)
4838 XDestroyImage (ximg);
4840 img->background_valid = 1;
4843 return img->background;
4846 /* Return the `background_transparent' field of IMG. If IMG doesn't
4847 have one yet, it is guessed heuristically. If non-zero, MASK is an
4848 existing XImage object to use for the heuristic. */
4851 image_background_transparent (img, f, mask)
4852 struct image *img;
4853 struct frame *f;
4854 XImage *mask;
4856 if (! img->background_transparent_valid)
4857 /* IMG doesn't have a background yet, try to guess a reasonable value. */
4859 if (img->mask)
4861 int free_mask = !mask;
4863 if (! mask)
4864 mask = XGetImage (FRAME_X_DISPLAY (f), img->mask,
4865 0, 0, img->width, img->height, ~0, ZPixmap);
4867 img->background_transparent
4868 = !four_corners_best (mask, img->width, img->height);
4870 if (free_mask)
4871 XDestroyImage (mask);
4873 else
4874 img->background_transparent = 0;
4876 img->background_transparent_valid = 1;
4879 return img->background_transparent;
4883 /***********************************************************************
4884 Helper functions for X image types
4885 ***********************************************************************/
4887 static void x_clear_image_1 P_ ((struct frame *, struct image *, int,
4888 int, int));
4889 static void x_clear_image P_ ((struct frame *f, struct image *img));
4890 static unsigned long x_alloc_image_color P_ ((struct frame *f,
4891 struct image *img,
4892 Lisp_Object color_name,
4893 unsigned long dflt));
4896 /* Clear X resources of image IMG on frame F. PIXMAP_P non-zero means
4897 free the pixmap if any. MASK_P non-zero means clear the mask
4898 pixmap if any. COLORS_P non-zero means free colors allocated for
4899 the image, if any. */
4901 static void
4902 x_clear_image_1 (f, img, pixmap_p, mask_p, colors_p)
4903 struct frame *f;
4904 struct image *img;
4905 int pixmap_p, mask_p, colors_p;
4907 if (pixmap_p && img->pixmap)
4909 XFreePixmap (FRAME_X_DISPLAY (f), img->pixmap);
4910 img->pixmap = None;
4911 img->background_valid = 0;
4914 if (mask_p && img->mask)
4916 XFreePixmap (FRAME_X_DISPLAY (f), img->mask);
4917 img->mask = None;
4918 img->background_transparent_valid = 0;
4921 if (colors_p && img->ncolors)
4923 x_free_colors (f, img->colors, img->ncolors);
4924 xfree (img->colors);
4925 img->colors = NULL;
4926 img->ncolors = 0;
4930 /* Free X resources of image IMG which is used on frame F. */
4932 static void
4933 x_clear_image (f, img)
4934 struct frame *f;
4935 struct image *img;
4937 BLOCK_INPUT;
4938 x_clear_image_1 (f, img, 1, 1, 1);
4939 UNBLOCK_INPUT;
4943 /* Allocate color COLOR_NAME for image IMG on frame F. If color
4944 cannot be allocated, use DFLT. Add a newly allocated color to
4945 IMG->colors, so that it can be freed again. Value is the pixel
4946 color. */
4948 static unsigned long
4949 x_alloc_image_color (f, img, color_name, dflt)
4950 struct frame *f;
4951 struct image *img;
4952 Lisp_Object color_name;
4953 unsigned long dflt;
4955 XColor color;
4956 unsigned long result;
4958 xassert (STRINGP (color_name));
4960 if (x_defined_color (f, SDATA (color_name), &color, 1))
4962 /* This isn't called frequently so we get away with simply
4963 reallocating the color vector to the needed size, here. */
4964 ++img->ncolors;
4965 img->colors =
4966 (unsigned long *) xrealloc (img->colors,
4967 img->ncolors * sizeof *img->colors);
4968 img->colors[img->ncolors - 1] = color.pixel;
4969 result = color.pixel;
4971 else
4972 result = dflt;
4974 return result;
4979 /***********************************************************************
4980 Image Cache
4981 ***********************************************************************/
4983 static void cache_image P_ ((struct frame *f, struct image *img));
4984 static void postprocess_image P_ ((struct frame *, struct image *));
4987 /* Return a new, initialized image cache that is allocated from the
4988 heap. Call free_image_cache to free an image cache. */
4990 struct image_cache *
4991 make_image_cache ()
4993 struct image_cache *c = (struct image_cache *) xmalloc (sizeof *c);
4994 int size;
4996 bzero (c, sizeof *c);
4997 c->size = 50;
4998 c->images = (struct image **) xmalloc (c->size * sizeof *c->images);
4999 size = IMAGE_CACHE_BUCKETS_SIZE * sizeof *c->buckets;
5000 c->buckets = (struct image **) xmalloc (size);
5001 bzero (c->buckets, size);
5002 return c;
5006 /* Free image cache of frame F. Be aware that X frames share images
5007 caches. */
5009 void
5010 free_image_cache (f)
5011 struct frame *f;
5013 struct image_cache *c = FRAME_X_IMAGE_CACHE (f);
5014 if (c)
5016 int i;
5018 /* Cache should not be referenced by any frame when freed. */
5019 xassert (c->refcount == 0);
5021 for (i = 0; i < c->used; ++i)
5022 free_image (f, c->images[i]);
5023 xfree (c->images);
5024 xfree (c->buckets);
5025 xfree (c);
5026 FRAME_X_IMAGE_CACHE (f) = NULL;
5031 /* Clear image cache of frame F. FORCE_P non-zero means free all
5032 images. FORCE_P zero means clear only images that haven't been
5033 displayed for some time. Should be called from time to time to
5034 reduce the number of loaded images. If image-eviction-seconds is
5035 non-nil, this frees images in the cache which weren't displayed for
5036 at least that many seconds. */
5038 void
5039 clear_image_cache (f, force_p)
5040 struct frame *f;
5041 int force_p;
5043 struct image_cache *c = FRAME_X_IMAGE_CACHE (f);
5045 if (c && INTEGERP (Vimage_cache_eviction_delay))
5047 EMACS_TIME t;
5048 unsigned long old;
5049 int i, nfreed;
5051 EMACS_GET_TIME (t);
5052 old = EMACS_SECS (t) - XFASTINT (Vimage_cache_eviction_delay);
5054 /* Block input so that we won't be interrupted by a SIGIO
5055 while being in an inconsistent state. */
5056 BLOCK_INPUT;
5058 for (i = nfreed = 0; i < c->used; ++i)
5060 struct image *img = c->images[i];
5061 if (img != NULL
5062 && (force_p || img->timestamp < old))
5064 free_image (f, img);
5065 ++nfreed;
5069 /* We may be clearing the image cache because, for example,
5070 Emacs was iconified for a longer period of time. In that
5071 case, current matrices may still contain references to
5072 images freed above. So, clear these matrices. */
5073 if (nfreed)
5075 Lisp_Object tail, frame;
5077 FOR_EACH_FRAME (tail, frame)
5079 struct frame *f = XFRAME (frame);
5080 if (FRAME_X_P (f)
5081 && FRAME_X_IMAGE_CACHE (f) == c)
5082 clear_current_matrices (f);
5085 ++windows_or_buffers_changed;
5088 UNBLOCK_INPUT;
5093 DEFUN ("clear-image-cache", Fclear_image_cache, Sclear_image_cache,
5094 0, 1, 0,
5095 doc: /* Clear the image cache of FRAME.
5096 FRAME nil or omitted means use the selected frame.
5097 FRAME t means clear the image caches of all frames. */)
5098 (frame)
5099 Lisp_Object frame;
5101 if (EQ (frame, Qt))
5103 Lisp_Object tail;
5105 FOR_EACH_FRAME (tail, frame)
5106 if (FRAME_X_P (XFRAME (frame)))
5107 clear_image_cache (XFRAME (frame), 1);
5109 else
5110 clear_image_cache (check_x_frame (frame), 1);
5112 return Qnil;
5116 /* Compute masks and transform image IMG on frame F, as specified
5117 by the image's specification, */
5119 static void
5120 postprocess_image (f, img)
5121 struct frame *f;
5122 struct image *img;
5124 /* Manipulation of the image's mask. */
5125 if (img->pixmap)
5127 Lisp_Object conversion, spec;
5128 Lisp_Object mask;
5130 spec = img->spec;
5132 /* `:heuristic-mask t'
5133 `:mask heuristic'
5134 means build a mask heuristically.
5135 `:heuristic-mask (R G B)'
5136 `:mask (heuristic (R G B))'
5137 means build a mask from color (R G B) in the
5138 image.
5139 `:mask nil'
5140 means remove a mask, if any. */
5142 mask = image_spec_value (spec, QCheuristic_mask, NULL);
5143 if (!NILP (mask))
5144 x_build_heuristic_mask (f, img, mask);
5145 else
5147 int found_p;
5149 mask = image_spec_value (spec, QCmask, &found_p);
5151 if (EQ (mask, Qheuristic))
5152 x_build_heuristic_mask (f, img, Qt);
5153 else if (CONSP (mask)
5154 && EQ (XCAR (mask), Qheuristic))
5156 if (CONSP (XCDR (mask)))
5157 x_build_heuristic_mask (f, img, XCAR (XCDR (mask)));
5158 else
5159 x_build_heuristic_mask (f, img, XCDR (mask));
5161 else if (NILP (mask) && found_p && img->mask)
5163 XFreePixmap (FRAME_X_DISPLAY (f), img->mask);
5164 img->mask = None;
5169 /* Should we apply an image transformation algorithm? */
5170 conversion = image_spec_value (spec, QCconversion, NULL);
5171 if (EQ (conversion, Qdisabled))
5172 x_disable_image (f, img);
5173 else if (EQ (conversion, Qlaplace))
5174 x_laplace (f, img);
5175 else if (EQ (conversion, Qemboss))
5176 x_emboss (f, img);
5177 else if (CONSP (conversion)
5178 && EQ (XCAR (conversion), Qedge_detection))
5180 Lisp_Object tem;
5181 tem = XCDR (conversion);
5182 if (CONSP (tem))
5183 x_edge_detection (f, img,
5184 Fplist_get (tem, QCmatrix),
5185 Fplist_get (tem, QCcolor_adjustment));
5191 /* Return the id of image with Lisp specification SPEC on frame F.
5192 SPEC must be a valid Lisp image specification (see valid_image_p). */
5195 lookup_image (f, spec)
5196 struct frame *f;
5197 Lisp_Object spec;
5199 struct image_cache *c = FRAME_X_IMAGE_CACHE (f);
5200 struct image *img;
5201 int i;
5202 unsigned hash;
5203 struct gcpro gcpro1;
5204 EMACS_TIME now;
5206 /* F must be a window-system frame, and SPEC must be a valid image
5207 specification. */
5208 xassert (FRAME_WINDOW_P (f));
5209 xassert (valid_image_p (spec));
5211 GCPRO1 (spec);
5213 /* Look up SPEC in the hash table of the image cache. */
5214 hash = sxhash (spec, 0);
5215 i = hash % IMAGE_CACHE_BUCKETS_SIZE;
5217 for (img = c->buckets[i]; img; img = img->next)
5218 if (img->hash == hash && !NILP (Fequal (img->spec, spec)))
5219 break;
5221 /* If not found, create a new image and cache it. */
5222 if (img == NULL)
5224 extern Lisp_Object Qpostscript;
5226 BLOCK_INPUT;
5227 img = make_image (spec, hash);
5228 cache_image (f, img);
5229 img->load_failed_p = img->type->load (f, img) == 0;
5231 /* If we can't load the image, and we don't have a width and
5232 height, use some arbitrary width and height so that we can
5233 draw a rectangle for it. */
5234 if (img->load_failed_p)
5236 Lisp_Object value;
5238 value = image_spec_value (spec, QCwidth, NULL);
5239 img->width = (INTEGERP (value)
5240 ? XFASTINT (value) : DEFAULT_IMAGE_WIDTH);
5241 value = image_spec_value (spec, QCheight, NULL);
5242 img->height = (INTEGERP (value)
5243 ? XFASTINT (value) : DEFAULT_IMAGE_HEIGHT);
5245 else
5247 /* Handle image type independent image attributes
5248 `:ascent ASCENT', `:margin MARGIN', `:relief RELIEF',
5249 `:background COLOR'. */
5250 Lisp_Object ascent, margin, relief, bg;
5252 ascent = image_spec_value (spec, QCascent, NULL);
5253 if (INTEGERP (ascent))
5254 img->ascent = XFASTINT (ascent);
5255 else if (EQ (ascent, Qcenter))
5256 img->ascent = CENTERED_IMAGE_ASCENT;
5258 margin = image_spec_value (spec, QCmargin, NULL);
5259 if (INTEGERP (margin) && XINT (margin) >= 0)
5260 img->vmargin = img->hmargin = XFASTINT (margin);
5261 else if (CONSP (margin) && INTEGERP (XCAR (margin))
5262 && INTEGERP (XCDR (margin)))
5264 if (XINT (XCAR (margin)) > 0)
5265 img->hmargin = XFASTINT (XCAR (margin));
5266 if (XINT (XCDR (margin)) > 0)
5267 img->vmargin = XFASTINT (XCDR (margin));
5270 relief = image_spec_value (spec, QCrelief, NULL);
5271 if (INTEGERP (relief))
5273 img->relief = XINT (relief);
5274 img->hmargin += abs (img->relief);
5275 img->vmargin += abs (img->relief);
5278 if (! img->background_valid)
5280 bg = image_spec_value (img->spec, QCbackground, NULL);
5281 if (!NILP (bg))
5283 img->background
5284 = x_alloc_image_color (f, img, bg,
5285 FRAME_BACKGROUND_PIXEL (f));
5286 img->background_valid = 1;
5290 /* Do image transformations and compute masks, unless we
5291 don't have the image yet. */
5292 if (!EQ (*img->type->type, Qpostscript))
5293 postprocess_image (f, img);
5296 UNBLOCK_INPUT;
5297 xassert (!interrupt_input_blocked);
5300 /* We're using IMG, so set its timestamp to `now'. */
5301 EMACS_GET_TIME (now);
5302 img->timestamp = EMACS_SECS (now);
5304 UNGCPRO;
5306 /* Value is the image id. */
5307 return img->id;
5311 /* Cache image IMG in the image cache of frame F. */
5313 static void
5314 cache_image (f, img)
5315 struct frame *f;
5316 struct image *img;
5318 struct image_cache *c = FRAME_X_IMAGE_CACHE (f);
5319 int i;
5321 /* Find a free slot in c->images. */
5322 for (i = 0; i < c->used; ++i)
5323 if (c->images[i] == NULL)
5324 break;
5326 /* If no free slot found, maybe enlarge c->images. */
5327 if (i == c->used && c->used == c->size)
5329 c->size *= 2;
5330 c->images = (struct image **) xrealloc (c->images,
5331 c->size * sizeof *c->images);
5334 /* Add IMG to c->images, and assign IMG an id. */
5335 c->images[i] = img;
5336 img->id = i;
5337 if (i == c->used)
5338 ++c->used;
5340 /* Add IMG to the cache's hash table. */
5341 i = img->hash % IMAGE_CACHE_BUCKETS_SIZE;
5342 img->next = c->buckets[i];
5343 if (img->next)
5344 img->next->prev = img;
5345 img->prev = NULL;
5346 c->buckets[i] = img;
5350 /* Call FN on every image in the image cache of frame F. Used to mark
5351 Lisp Objects in the image cache. */
5353 void
5354 forall_images_in_image_cache (f, fn)
5355 struct frame *f;
5356 void (*fn) P_ ((struct image *img));
5358 if (FRAME_LIVE_P (f) && FRAME_X_P (f))
5360 struct image_cache *c = FRAME_X_IMAGE_CACHE (f);
5361 if (c)
5363 int i;
5364 for (i = 0; i < c->used; ++i)
5365 if (c->images[i])
5366 fn (c->images[i]);
5373 /***********************************************************************
5374 X support code
5375 ***********************************************************************/
5377 static int x_create_x_image_and_pixmap P_ ((struct frame *, int, int, int,
5378 XImage **, Pixmap *));
5379 static void x_destroy_x_image P_ ((XImage *));
5380 static void x_put_x_image P_ ((struct frame *, XImage *, Pixmap, int, int));
5383 /* Create an XImage and a pixmap of size WIDTH x HEIGHT for use on
5384 frame F. Set *XIMG and *PIXMAP to the XImage and Pixmap created.
5385 Set (*XIMG)->data to a raster of WIDTH x HEIGHT pixels allocated
5386 via xmalloc. Print error messages via image_error if an error
5387 occurs. Value is non-zero if successful. */
5389 static int
5390 x_create_x_image_and_pixmap (f, width, height, depth, ximg, pixmap)
5391 struct frame *f;
5392 int width, height, depth;
5393 XImage **ximg;
5394 Pixmap *pixmap;
5396 Display *display = FRAME_X_DISPLAY (f);
5397 Screen *screen = FRAME_X_SCREEN (f);
5398 Window window = FRAME_X_WINDOW (f);
5400 xassert (interrupt_input_blocked);
5402 if (depth <= 0)
5403 depth = DefaultDepthOfScreen (screen);
5404 *ximg = XCreateImage (display, DefaultVisualOfScreen (screen),
5405 depth, ZPixmap, 0, NULL, width, height,
5406 depth > 16 ? 32 : depth > 8 ? 16 : 8, 0);
5407 if (*ximg == NULL)
5409 image_error ("Unable to allocate X image", Qnil, Qnil);
5410 return 0;
5413 /* Allocate image raster. */
5414 (*ximg)->data = (char *) xmalloc ((*ximg)->bytes_per_line * height);
5416 /* Allocate a pixmap of the same size. */
5417 *pixmap = XCreatePixmap (display, window, width, height, depth);
5418 if (*pixmap == None)
5420 x_destroy_x_image (*ximg);
5421 *ximg = NULL;
5422 image_error ("Unable to create X pixmap", Qnil, Qnil);
5423 return 0;
5426 return 1;
5430 /* Destroy XImage XIMG. Free XIMG->data. */
5432 static void
5433 x_destroy_x_image (ximg)
5434 XImage *ximg;
5436 xassert (interrupt_input_blocked);
5437 if (ximg)
5439 xfree (ximg->data);
5440 ximg->data = NULL;
5441 XDestroyImage (ximg);
5446 /* Put XImage XIMG into pixmap PIXMAP on frame F. WIDTH and HEIGHT
5447 are width and height of both the image and pixmap. */
5449 static void
5450 x_put_x_image (f, ximg, pixmap, width, height)
5451 struct frame *f;
5452 XImage *ximg;
5453 Pixmap pixmap;
5454 int width, height;
5456 GC gc;
5458 xassert (interrupt_input_blocked);
5459 gc = XCreateGC (FRAME_X_DISPLAY (f), pixmap, 0, NULL);
5460 XPutImage (FRAME_X_DISPLAY (f), pixmap, gc, ximg, 0, 0, 0, 0, width, height);
5461 XFreeGC (FRAME_X_DISPLAY (f), gc);
5466 /***********************************************************************
5467 File Handling
5468 ***********************************************************************/
5470 static Lisp_Object x_find_image_file P_ ((Lisp_Object));
5471 static char *slurp_file P_ ((char *, int *));
5474 /* Find image file FILE. Look in data-directory, then
5475 x-bitmap-file-path. Value is the full name of the file found, or
5476 nil if not found. */
5478 static Lisp_Object
5479 x_find_image_file (file)
5480 Lisp_Object file;
5482 Lisp_Object file_found, search_path;
5483 struct gcpro gcpro1, gcpro2;
5484 int fd;
5486 file_found = Qnil;
5487 search_path = Fcons (Vdata_directory, Vx_bitmap_file_path);
5488 GCPRO2 (file_found, search_path);
5490 /* Try to find FILE in data-directory, then x-bitmap-file-path. */
5491 fd = openp (search_path, file, Qnil, &file_found, Qnil);
5493 if (fd == -1)
5494 file_found = Qnil;
5495 else
5496 close (fd);
5498 UNGCPRO;
5499 return file_found;
5503 /* Read FILE into memory. Value is a pointer to a buffer allocated
5504 with xmalloc holding FILE's contents. Value is null if an error
5505 occurred. *SIZE is set to the size of the file. */
5507 static char *
5508 slurp_file (file, size)
5509 char *file;
5510 int *size;
5512 FILE *fp = NULL;
5513 char *buf = NULL;
5514 struct stat st;
5516 if (stat (file, &st) == 0
5517 && (fp = fopen (file, "r")) != NULL
5518 && (buf = (char *) xmalloc (st.st_size),
5519 fread (buf, 1, st.st_size, fp) == st.st_size))
5521 *size = st.st_size;
5522 fclose (fp);
5524 else
5526 if (fp)
5527 fclose (fp);
5528 if (buf)
5530 xfree (buf);
5531 buf = NULL;
5535 return buf;
5540 /***********************************************************************
5541 XBM images
5542 ***********************************************************************/
5544 static int xbm_scan P_ ((char **, char *, char *, int *));
5545 static int xbm_load P_ ((struct frame *f, struct image *img));
5546 static int xbm_load_image P_ ((struct frame *f, struct image *img,
5547 char *, char *));
5548 static int xbm_image_p P_ ((Lisp_Object object));
5549 static int xbm_read_bitmap_data P_ ((char *, char *, int *, int *,
5550 unsigned char **));
5551 static int xbm_file_p P_ ((Lisp_Object));
5554 /* Indices of image specification fields in xbm_format, below. */
5556 enum xbm_keyword_index
5558 XBM_TYPE,
5559 XBM_FILE,
5560 XBM_WIDTH,
5561 XBM_HEIGHT,
5562 XBM_DATA,
5563 XBM_FOREGROUND,
5564 XBM_BACKGROUND,
5565 XBM_ASCENT,
5566 XBM_MARGIN,
5567 XBM_RELIEF,
5568 XBM_ALGORITHM,
5569 XBM_HEURISTIC_MASK,
5570 XBM_MASK,
5571 XBM_LAST
5574 /* Vector of image_keyword structures describing the format
5575 of valid XBM image specifications. */
5577 static struct image_keyword xbm_format[XBM_LAST] =
5579 {":type", IMAGE_SYMBOL_VALUE, 1},
5580 {":file", IMAGE_STRING_VALUE, 0},
5581 {":width", IMAGE_POSITIVE_INTEGER_VALUE, 0},
5582 {":height", IMAGE_POSITIVE_INTEGER_VALUE, 0},
5583 {":data", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
5584 {":foreground", IMAGE_STRING_OR_NIL_VALUE, 0},
5585 {":background", IMAGE_STRING_OR_NIL_VALUE, 0},
5586 {":ascent", IMAGE_ASCENT_VALUE, 0},
5587 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR, 0},
5588 {":relief", IMAGE_INTEGER_VALUE, 0},
5589 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
5590 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
5591 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0}
5594 /* Structure describing the image type XBM. */
5596 static struct image_type xbm_type =
5598 &Qxbm,
5599 xbm_image_p,
5600 xbm_load,
5601 x_clear_image,
5602 NULL
5605 /* Tokens returned from xbm_scan. */
5607 enum xbm_token
5609 XBM_TK_IDENT = 256,
5610 XBM_TK_NUMBER
5614 /* Return non-zero if OBJECT is a valid XBM-type image specification.
5615 A valid specification is a list starting with the symbol `image'
5616 The rest of the list is a property list which must contain an
5617 entry `:type xbm..
5619 If the specification specifies a file to load, it must contain
5620 an entry `:file FILENAME' where FILENAME is a string.
5622 If the specification is for a bitmap loaded from memory it must
5623 contain `:width WIDTH', `:height HEIGHT', and `:data DATA', where
5624 WIDTH and HEIGHT are integers > 0. DATA may be:
5626 1. a string large enough to hold the bitmap data, i.e. it must
5627 have a size >= (WIDTH + 7) / 8 * HEIGHT
5629 2. a bool-vector of size >= WIDTH * HEIGHT
5631 3. a vector of strings or bool-vectors, one for each line of the
5632 bitmap.
5634 4. A string containing an in-memory XBM file. WIDTH and HEIGHT
5635 may not be specified in this case because they are defined in the
5636 XBM file.
5638 Both the file and data forms may contain the additional entries
5639 `:background COLOR' and `:foreground COLOR'. If not present,
5640 foreground and background of the frame on which the image is
5641 displayed is used. */
5643 static int
5644 xbm_image_p (object)
5645 Lisp_Object object;
5647 struct image_keyword kw[XBM_LAST];
5649 bcopy (xbm_format, kw, sizeof kw);
5650 if (!parse_image_spec (object, kw, XBM_LAST, Qxbm))
5651 return 0;
5653 xassert (EQ (kw[XBM_TYPE].value, Qxbm));
5655 if (kw[XBM_FILE].count)
5657 if (kw[XBM_WIDTH].count || kw[XBM_HEIGHT].count || kw[XBM_DATA].count)
5658 return 0;
5660 else if (kw[XBM_DATA].count && xbm_file_p (kw[XBM_DATA].value))
5662 /* In-memory XBM file. */
5663 if (kw[XBM_WIDTH].count || kw[XBM_HEIGHT].count || kw[XBM_FILE].count)
5664 return 0;
5666 else
5668 Lisp_Object data;
5669 int width, height;
5671 /* Entries for `:width', `:height' and `:data' must be present. */
5672 if (!kw[XBM_WIDTH].count
5673 || !kw[XBM_HEIGHT].count
5674 || !kw[XBM_DATA].count)
5675 return 0;
5677 data = kw[XBM_DATA].value;
5678 width = XFASTINT (kw[XBM_WIDTH].value);
5679 height = XFASTINT (kw[XBM_HEIGHT].value);
5681 /* Check type of data, and width and height against contents of
5682 data. */
5683 if (VECTORP (data))
5685 int i;
5687 /* Number of elements of the vector must be >= height. */
5688 if (XVECTOR (data)->size < height)
5689 return 0;
5691 /* Each string or bool-vector in data must be large enough
5692 for one line of the image. */
5693 for (i = 0; i < height; ++i)
5695 Lisp_Object elt = XVECTOR (data)->contents[i];
5697 if (STRINGP (elt))
5699 if (SCHARS (elt)
5700 < (width + BITS_PER_CHAR - 1) / BITS_PER_CHAR)
5701 return 0;
5703 else if (BOOL_VECTOR_P (elt))
5705 if (XBOOL_VECTOR (elt)->size < width)
5706 return 0;
5708 else
5709 return 0;
5712 else if (STRINGP (data))
5714 if (SCHARS (data)
5715 < (width + BITS_PER_CHAR - 1) / BITS_PER_CHAR * height)
5716 return 0;
5718 else if (BOOL_VECTOR_P (data))
5720 if (XBOOL_VECTOR (data)->size < width * height)
5721 return 0;
5723 else
5724 return 0;
5727 return 1;
5731 /* Scan a bitmap file. FP is the stream to read from. Value is
5732 either an enumerator from enum xbm_token, or a character for a
5733 single-character token, or 0 at end of file. If scanning an
5734 identifier, store the lexeme of the identifier in SVAL. If
5735 scanning a number, store its value in *IVAL. */
5737 static int
5738 xbm_scan (s, end, sval, ival)
5739 char **s, *end;
5740 char *sval;
5741 int *ival;
5743 int c;
5745 loop:
5747 /* Skip white space. */
5748 while (*s < end && (c = *(*s)++, isspace (c)))
5751 if (*s >= end)
5752 c = 0;
5753 else if (isdigit (c))
5755 int value = 0, digit;
5757 if (c == '0' && *s < end)
5759 c = *(*s)++;
5760 if (c == 'x' || c == 'X')
5762 while (*s < end)
5764 c = *(*s)++;
5765 if (isdigit (c))
5766 digit = c - '0';
5767 else if (c >= 'a' && c <= 'f')
5768 digit = c - 'a' + 10;
5769 else if (c >= 'A' && c <= 'F')
5770 digit = c - 'A' + 10;
5771 else
5772 break;
5773 value = 16 * value + digit;
5776 else if (isdigit (c))
5778 value = c - '0';
5779 while (*s < end
5780 && (c = *(*s)++, isdigit (c)))
5781 value = 8 * value + c - '0';
5784 else
5786 value = c - '0';
5787 while (*s < end
5788 && (c = *(*s)++, isdigit (c)))
5789 value = 10 * value + c - '0';
5792 if (*s < end)
5793 *s = *s - 1;
5794 *ival = value;
5795 c = XBM_TK_NUMBER;
5797 else if (isalpha (c) || c == '_')
5799 *sval++ = c;
5800 while (*s < end
5801 && (c = *(*s)++, (isalnum (c) || c == '_')))
5802 *sval++ = c;
5803 *sval = 0;
5804 if (*s < end)
5805 *s = *s - 1;
5806 c = XBM_TK_IDENT;
5808 else if (c == '/' && **s == '*')
5810 /* C-style comment. */
5811 ++*s;
5812 while (**s && (**s != '*' || *(*s + 1) != '/'))
5813 ++*s;
5814 if (**s)
5816 *s += 2;
5817 goto loop;
5821 return c;
5825 /* Replacement for XReadBitmapFileData which isn't available under old
5826 X versions. CONTENTS is a pointer to a buffer to parse; END is the
5827 buffer's end. Set *WIDTH and *HEIGHT to the width and height of
5828 the image. Return in *DATA the bitmap data allocated with xmalloc.
5829 Value is non-zero if successful. DATA null means just test if
5830 CONTENTS looks like an in-memory XBM file. */
5832 static int
5833 xbm_read_bitmap_data (contents, end, width, height, data)
5834 char *contents, *end;
5835 int *width, *height;
5836 unsigned char **data;
5838 char *s = contents;
5839 char buffer[BUFSIZ];
5840 int padding_p = 0;
5841 int v10 = 0;
5842 int bytes_per_line, i, nbytes;
5843 unsigned char *p;
5844 int value;
5845 int LA1;
5847 #define match() \
5848 LA1 = xbm_scan (&s, end, buffer, &value)
5850 #define expect(TOKEN) \
5851 if (LA1 != (TOKEN)) \
5852 goto failure; \
5853 else \
5854 match ()
5856 #define expect_ident(IDENT) \
5857 if (LA1 == XBM_TK_IDENT && strcmp (buffer, (IDENT)) == 0) \
5858 match (); \
5859 else \
5860 goto failure
5862 *width = *height = -1;
5863 if (data)
5864 *data = NULL;
5865 LA1 = xbm_scan (&s, end, buffer, &value);
5867 /* Parse defines for width, height and hot-spots. */
5868 while (LA1 == '#')
5870 match ();
5871 expect_ident ("define");
5872 expect (XBM_TK_IDENT);
5874 if (LA1 == XBM_TK_NUMBER);
5876 char *p = strrchr (buffer, '_');
5877 p = p ? p + 1 : buffer;
5878 if (strcmp (p, "width") == 0)
5879 *width = value;
5880 else if (strcmp (p, "height") == 0)
5881 *height = value;
5883 expect (XBM_TK_NUMBER);
5886 if (*width < 0 || *height < 0)
5887 goto failure;
5888 else if (data == NULL)
5889 goto success;
5891 /* Parse bits. Must start with `static'. */
5892 expect_ident ("static");
5893 if (LA1 == XBM_TK_IDENT)
5895 if (strcmp (buffer, "unsigned") == 0)
5897 match ();
5898 expect_ident ("char");
5900 else if (strcmp (buffer, "short") == 0)
5902 match ();
5903 v10 = 1;
5904 if (*width % 16 && *width % 16 < 9)
5905 padding_p = 1;
5907 else if (strcmp (buffer, "char") == 0)
5908 match ();
5909 else
5910 goto failure;
5912 else
5913 goto failure;
5915 expect (XBM_TK_IDENT);
5916 expect ('[');
5917 expect (']');
5918 expect ('=');
5919 expect ('{');
5921 bytes_per_line = (*width + 7) / 8 + padding_p;
5922 nbytes = bytes_per_line * *height;
5923 p = *data = (char *) xmalloc (nbytes);
5925 if (v10)
5927 for (i = 0; i < nbytes; i += 2)
5929 int val = value;
5930 expect (XBM_TK_NUMBER);
5932 *p++ = val;
5933 if (!padding_p || ((i + 2) % bytes_per_line))
5934 *p++ = value >> 8;
5936 if (LA1 == ',' || LA1 == '}')
5937 match ();
5938 else
5939 goto failure;
5942 else
5944 for (i = 0; i < nbytes; ++i)
5946 int val = value;
5947 expect (XBM_TK_NUMBER);
5949 *p++ = val;
5951 if (LA1 == ',' || LA1 == '}')
5952 match ();
5953 else
5954 goto failure;
5958 success:
5959 return 1;
5961 failure:
5963 if (data && *data)
5965 xfree (*data);
5966 *data = NULL;
5968 return 0;
5970 #undef match
5971 #undef expect
5972 #undef expect_ident
5976 /* Load XBM image IMG which will be displayed on frame F from buffer
5977 CONTENTS. END is the end of the buffer. Value is non-zero if
5978 successful. */
5980 static int
5981 xbm_load_image (f, img, contents, end)
5982 struct frame *f;
5983 struct image *img;
5984 char *contents, *end;
5986 int rc;
5987 unsigned char *data;
5988 int success_p = 0;
5990 rc = xbm_read_bitmap_data (contents, end, &img->width, &img->height, &data);
5991 if (rc)
5993 int depth = DefaultDepthOfScreen (FRAME_X_SCREEN (f));
5994 unsigned long foreground = FRAME_FOREGROUND_PIXEL (f);
5995 unsigned long background = FRAME_BACKGROUND_PIXEL (f);
5996 Lisp_Object value;
5998 xassert (img->width > 0 && img->height > 0);
6000 /* Get foreground and background colors, maybe allocate colors. */
6001 value = image_spec_value (img->spec, QCforeground, NULL);
6002 if (!NILP (value))
6003 foreground = x_alloc_image_color (f, img, value, foreground);
6004 value = image_spec_value (img->spec, QCbackground, NULL);
6005 if (!NILP (value))
6007 background = x_alloc_image_color (f, img, value, background);
6008 img->background = background;
6009 img->background_valid = 1;
6012 img->pixmap
6013 = XCreatePixmapFromBitmapData (FRAME_X_DISPLAY (f),
6014 FRAME_X_WINDOW (f),
6015 data,
6016 img->width, img->height,
6017 foreground, background,
6018 depth);
6019 xfree (data);
6021 if (img->pixmap == None)
6023 x_clear_image (f, img);
6024 image_error ("Unable to create X pixmap for `%s'", img->spec, Qnil);
6026 else
6027 success_p = 1;
6029 else
6030 image_error ("Error loading XBM image `%s'", img->spec, Qnil);
6032 return success_p;
6036 /* Value is non-zero if DATA looks like an in-memory XBM file. */
6038 static int
6039 xbm_file_p (data)
6040 Lisp_Object data;
6042 int w, h;
6043 return (STRINGP (data)
6044 && xbm_read_bitmap_data (SDATA (data),
6045 (SDATA (data)
6046 + SBYTES (data)),
6047 &w, &h, NULL));
6051 /* Fill image IMG which is used on frame F with pixmap data. Value is
6052 non-zero if successful. */
6054 static int
6055 xbm_load (f, img)
6056 struct frame *f;
6057 struct image *img;
6059 int success_p = 0;
6060 Lisp_Object file_name;
6062 xassert (xbm_image_p (img->spec));
6064 /* If IMG->spec specifies a file name, create a non-file spec from it. */
6065 file_name = image_spec_value (img->spec, QCfile, NULL);
6066 if (STRINGP (file_name))
6068 Lisp_Object file;
6069 char *contents;
6070 int size;
6071 struct gcpro gcpro1;
6073 file = x_find_image_file (file_name);
6074 GCPRO1 (file);
6075 if (!STRINGP (file))
6077 image_error ("Cannot find image file `%s'", file_name, Qnil);
6078 UNGCPRO;
6079 return 0;
6082 contents = slurp_file (SDATA (file), &size);
6083 if (contents == NULL)
6085 image_error ("Error loading XBM image `%s'", img->spec, Qnil);
6086 UNGCPRO;
6087 return 0;
6090 success_p = xbm_load_image (f, img, contents, contents + size);
6091 UNGCPRO;
6093 else
6095 struct image_keyword fmt[XBM_LAST];
6096 Lisp_Object data;
6097 int depth;
6098 unsigned long foreground = FRAME_FOREGROUND_PIXEL (f);
6099 unsigned long background = FRAME_BACKGROUND_PIXEL (f);
6100 char *bits;
6101 int parsed_p;
6102 int in_memory_file_p = 0;
6104 /* See if data looks like an in-memory XBM file. */
6105 data = image_spec_value (img->spec, QCdata, NULL);
6106 in_memory_file_p = xbm_file_p (data);
6108 /* Parse the image specification. */
6109 bcopy (xbm_format, fmt, sizeof fmt);
6110 parsed_p = parse_image_spec (img->spec, fmt, XBM_LAST, Qxbm);
6111 xassert (parsed_p);
6113 /* Get specified width, and height. */
6114 if (!in_memory_file_p)
6116 img->width = XFASTINT (fmt[XBM_WIDTH].value);
6117 img->height = XFASTINT (fmt[XBM_HEIGHT].value);
6118 xassert (img->width > 0 && img->height > 0);
6121 /* Get foreground and background colors, maybe allocate colors. */
6122 if (fmt[XBM_FOREGROUND].count
6123 && STRINGP (fmt[XBM_FOREGROUND].value))
6124 foreground = x_alloc_image_color (f, img, fmt[XBM_FOREGROUND].value,
6125 foreground);
6126 if (fmt[XBM_BACKGROUND].count
6127 && STRINGP (fmt[XBM_BACKGROUND].value))
6128 background = x_alloc_image_color (f, img, fmt[XBM_BACKGROUND].value,
6129 background);
6131 if (in_memory_file_p)
6132 success_p = xbm_load_image (f, img, SDATA (data),
6133 (SDATA (data)
6134 + SBYTES (data)));
6135 else
6137 if (VECTORP (data))
6139 int i;
6140 char *p;
6141 int nbytes = (img->width + BITS_PER_CHAR - 1) / BITS_PER_CHAR;
6143 p = bits = (char *) alloca (nbytes * img->height);
6144 for (i = 0; i < img->height; ++i, p += nbytes)
6146 Lisp_Object line = XVECTOR (data)->contents[i];
6147 if (STRINGP (line))
6148 bcopy (SDATA (line), p, nbytes);
6149 else
6150 bcopy (XBOOL_VECTOR (line)->data, p, nbytes);
6153 else if (STRINGP (data))
6154 bits = SDATA (data);
6155 else
6156 bits = XBOOL_VECTOR (data)->data;
6158 /* Create the pixmap. */
6159 depth = DefaultDepthOfScreen (FRAME_X_SCREEN (f));
6160 img->pixmap
6161 = XCreatePixmapFromBitmapData (FRAME_X_DISPLAY (f),
6162 FRAME_X_WINDOW (f),
6163 bits,
6164 img->width, img->height,
6165 foreground, background,
6166 depth);
6167 if (img->pixmap)
6168 success_p = 1;
6169 else
6171 image_error ("Unable to create pixmap for XBM image `%s'",
6172 img->spec, Qnil);
6173 x_clear_image (f, img);
6178 return success_p;
6183 /***********************************************************************
6184 XPM images
6185 ***********************************************************************/
6187 #if HAVE_XPM
6189 static int xpm_image_p P_ ((Lisp_Object object));
6190 static int xpm_load P_ ((struct frame *f, struct image *img));
6191 static int xpm_valid_color_symbols_p P_ ((Lisp_Object));
6193 #include "X11/xpm.h"
6195 /* The symbol `xpm' identifying XPM-format images. */
6197 Lisp_Object Qxpm;
6199 /* Indices of image specification fields in xpm_format, below. */
6201 enum xpm_keyword_index
6203 XPM_TYPE,
6204 XPM_FILE,
6205 XPM_DATA,
6206 XPM_ASCENT,
6207 XPM_MARGIN,
6208 XPM_RELIEF,
6209 XPM_ALGORITHM,
6210 XPM_HEURISTIC_MASK,
6211 XPM_MASK,
6212 XPM_COLOR_SYMBOLS,
6213 XPM_BACKGROUND,
6214 XPM_LAST
6217 /* Vector of image_keyword structures describing the format
6218 of valid XPM image specifications. */
6220 static struct image_keyword xpm_format[XPM_LAST] =
6222 {":type", IMAGE_SYMBOL_VALUE, 1},
6223 {":file", IMAGE_STRING_VALUE, 0},
6224 {":data", IMAGE_STRING_VALUE, 0},
6225 {":ascent", IMAGE_ASCENT_VALUE, 0},
6226 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR, 0},
6227 {":relief", IMAGE_INTEGER_VALUE, 0},
6228 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
6229 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
6230 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
6231 {":color-symbols", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
6232 {":background", IMAGE_STRING_OR_NIL_VALUE, 0}
6235 /* Structure describing the image type XBM. */
6237 static struct image_type xpm_type =
6239 &Qxpm,
6240 xpm_image_p,
6241 xpm_load,
6242 x_clear_image,
6243 NULL
6247 /* Define ALLOC_XPM_COLORS if we can use Emacs' own color allocation
6248 functions for allocating image colors. Our own functions handle
6249 color allocation failures more gracefully than the ones on the XPM
6250 lib. */
6252 #if defined XpmAllocColor && defined XpmFreeColors && defined XpmColorClosure
6253 #define ALLOC_XPM_COLORS
6254 #endif
6256 #ifdef ALLOC_XPM_COLORS
6258 static void xpm_init_color_cache P_ ((struct frame *, XpmAttributes *));
6259 static void xpm_free_color_cache P_ ((void));
6260 static int xpm_lookup_color P_ ((struct frame *, char *, XColor *));
6261 static int xpm_color_bucket P_ ((char *));
6262 static struct xpm_cached_color *xpm_cache_color P_ ((struct frame *, char *,
6263 XColor *, int));
6265 /* An entry in a hash table used to cache color definitions of named
6266 colors. This cache is necessary to speed up XPM image loading in
6267 case we do color allocations ourselves. Without it, we would need
6268 a call to XParseColor per pixel in the image. */
6270 struct xpm_cached_color
6272 /* Next in collision chain. */
6273 struct xpm_cached_color *next;
6275 /* Color definition (RGB and pixel color). */
6276 XColor color;
6278 /* Color name. */
6279 char name[1];
6282 /* The hash table used for the color cache, and its bucket vector
6283 size. */
6285 #define XPM_COLOR_CACHE_BUCKETS 1001
6286 struct xpm_cached_color **xpm_color_cache;
6288 /* Initialize the color cache. */
6290 static void
6291 xpm_init_color_cache (f, attrs)
6292 struct frame *f;
6293 XpmAttributes *attrs;
6295 size_t nbytes = XPM_COLOR_CACHE_BUCKETS * sizeof *xpm_color_cache;
6296 xpm_color_cache = (struct xpm_cached_color **) xmalloc (nbytes);
6297 memset (xpm_color_cache, 0, nbytes);
6298 init_color_table ();
6300 if (attrs->valuemask & XpmColorSymbols)
6302 int i;
6303 XColor color;
6305 for (i = 0; i < attrs->numsymbols; ++i)
6306 if (XParseColor (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f),
6307 attrs->colorsymbols[i].value, &color))
6309 color.pixel = lookup_rgb_color (f, color.red, color.green,
6310 color.blue);
6311 xpm_cache_color (f, attrs->colorsymbols[i].name, &color, -1);
6317 /* Free the color cache. */
6319 static void
6320 xpm_free_color_cache ()
6322 struct xpm_cached_color *p, *next;
6323 int i;
6325 for (i = 0; i < XPM_COLOR_CACHE_BUCKETS; ++i)
6326 for (p = xpm_color_cache[i]; p; p = next)
6328 next = p->next;
6329 xfree (p);
6332 xfree (xpm_color_cache);
6333 xpm_color_cache = NULL;
6334 free_color_table ();
6338 /* Return the bucket index for color named COLOR_NAME in the color
6339 cache. */
6341 static int
6342 xpm_color_bucket (color_name)
6343 char *color_name;
6345 unsigned h = 0;
6346 char *s;
6348 for (s = color_name; *s; ++s)
6349 h = (h << 2) ^ *s;
6350 return h %= XPM_COLOR_CACHE_BUCKETS;
6354 /* On frame F, cache values COLOR for color with name COLOR_NAME.
6355 BUCKET, if >= 0, is a precomputed bucket index. Value is the cache
6356 entry added. */
6358 static struct xpm_cached_color *
6359 xpm_cache_color (f, color_name, color, bucket)
6360 struct frame *f;
6361 char *color_name;
6362 XColor *color;
6363 int bucket;
6365 size_t nbytes;
6366 struct xpm_cached_color *p;
6368 if (bucket < 0)
6369 bucket = xpm_color_bucket (color_name);
6371 nbytes = sizeof *p + strlen (color_name);
6372 p = (struct xpm_cached_color *) xmalloc (nbytes);
6373 strcpy (p->name, color_name);
6374 p->color = *color;
6375 p->next = xpm_color_cache[bucket];
6376 xpm_color_cache[bucket] = p;
6377 return p;
6381 /* Look up color COLOR_NAME for frame F in the color cache. If found,
6382 return the cached definition in *COLOR. Otherwise, make a new
6383 entry in the cache and allocate the color. Value is zero if color
6384 allocation failed. */
6386 static int
6387 xpm_lookup_color (f, color_name, color)
6388 struct frame *f;
6389 char *color_name;
6390 XColor *color;
6392 struct xpm_cached_color *p;
6393 int h = xpm_color_bucket (color_name);
6395 for (p = xpm_color_cache[h]; p; p = p->next)
6396 if (strcmp (p->name, color_name) == 0)
6397 break;
6399 if (p != NULL)
6400 *color = p->color;
6401 else if (XParseColor (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f),
6402 color_name, color))
6404 color->pixel = lookup_rgb_color (f, color->red, color->green,
6405 color->blue);
6406 p = xpm_cache_color (f, color_name, color, h);
6408 /* You get `opaque' at least from ImageMagick converting pbm to xpm
6409 with transparency, and it's useful. */
6410 else if (strcmp ("opaque", color_name) == 0)
6412 bzero (color, sizeof (XColor)); /* Is this necessary/correct? */
6413 color->pixel = FRAME_FOREGROUND_PIXEL (f);
6414 p = xpm_cache_color (f, color_name, color, h);
6417 return p != NULL;
6421 /* Callback for allocating color COLOR_NAME. Called from the XPM lib.
6422 CLOSURE is a pointer to the frame on which we allocate the
6423 color. Return in *COLOR the allocated color. Value is non-zero
6424 if successful. */
6426 static int
6427 xpm_alloc_color (dpy, cmap, color_name, color, closure)
6428 Display *dpy;
6429 Colormap cmap;
6430 char *color_name;
6431 XColor *color;
6432 void *closure;
6434 return xpm_lookup_color ((struct frame *) closure, color_name, color);
6438 /* Callback for freeing NPIXELS colors contained in PIXELS. CLOSURE
6439 is a pointer to the frame on which we allocate the color. Value is
6440 non-zero if successful. */
6442 static int
6443 xpm_free_colors (dpy, cmap, pixels, npixels, closure)
6444 Display *dpy;
6445 Colormap cmap;
6446 Pixel *pixels;
6447 int npixels;
6448 void *closure;
6450 return 1;
6453 #endif /* ALLOC_XPM_COLORS */
6456 /* Value is non-zero if COLOR_SYMBOLS is a valid color symbols list
6457 for XPM images. Such a list must consist of conses whose car and
6458 cdr are strings. */
6460 static int
6461 xpm_valid_color_symbols_p (color_symbols)
6462 Lisp_Object color_symbols;
6464 while (CONSP (color_symbols))
6466 Lisp_Object sym = XCAR (color_symbols);
6467 if (!CONSP (sym)
6468 || !STRINGP (XCAR (sym))
6469 || !STRINGP (XCDR (sym)))
6470 break;
6471 color_symbols = XCDR (color_symbols);
6474 return NILP (color_symbols);
6478 /* Value is non-zero if OBJECT is a valid XPM image specification. */
6480 static int
6481 xpm_image_p (object)
6482 Lisp_Object object;
6484 struct image_keyword fmt[XPM_LAST];
6485 bcopy (xpm_format, fmt, sizeof fmt);
6486 return (parse_image_spec (object, fmt, XPM_LAST, Qxpm)
6487 /* Either `:file' or `:data' must be present. */
6488 && fmt[XPM_FILE].count + fmt[XPM_DATA].count == 1
6489 /* Either no `:color-symbols' or it's a list of conses
6490 whose car and cdr are strings. */
6491 && (fmt[XPM_COLOR_SYMBOLS].count == 0
6492 || xpm_valid_color_symbols_p (fmt[XPM_COLOR_SYMBOLS].value)));
6496 /* Load image IMG which will be displayed on frame F. Value is
6497 non-zero if successful. */
6499 static int
6500 xpm_load (f, img)
6501 struct frame *f;
6502 struct image *img;
6504 int rc;
6505 XpmAttributes attrs;
6506 Lisp_Object specified_file, color_symbols;
6508 /* Configure the XPM lib. Use the visual of frame F. Allocate
6509 close colors. Return colors allocated. */
6510 bzero (&attrs, sizeof attrs);
6511 attrs.visual = FRAME_X_VISUAL (f);
6512 attrs.colormap = FRAME_X_COLORMAP (f);
6513 attrs.valuemask |= XpmVisual;
6514 attrs.valuemask |= XpmColormap;
6516 #ifdef ALLOC_XPM_COLORS
6517 /* Allocate colors with our own functions which handle
6518 failing color allocation more gracefully. */
6519 attrs.color_closure = f;
6520 attrs.alloc_color = xpm_alloc_color;
6521 attrs.free_colors = xpm_free_colors;
6522 attrs.valuemask |= XpmAllocColor | XpmFreeColors | XpmColorClosure;
6523 #else /* not ALLOC_XPM_COLORS */
6524 /* Let the XPM lib allocate colors. */
6525 attrs.valuemask |= XpmReturnAllocPixels;
6526 #ifdef XpmAllocCloseColors
6527 attrs.alloc_close_colors = 1;
6528 attrs.valuemask |= XpmAllocCloseColors;
6529 #else /* not XpmAllocCloseColors */
6530 attrs.closeness = 600;
6531 attrs.valuemask |= XpmCloseness;
6532 #endif /* not XpmAllocCloseColors */
6533 #endif /* ALLOC_XPM_COLORS */
6535 /* If image specification contains symbolic color definitions, add
6536 these to `attrs'. */
6537 color_symbols = image_spec_value (img->spec, QCcolor_symbols, NULL);
6538 if (CONSP (color_symbols))
6540 Lisp_Object tail;
6541 XpmColorSymbol *xpm_syms;
6542 int i, size;
6544 attrs.valuemask |= XpmColorSymbols;
6546 /* Count number of symbols. */
6547 attrs.numsymbols = 0;
6548 for (tail = color_symbols; CONSP (tail); tail = XCDR (tail))
6549 ++attrs.numsymbols;
6551 /* Allocate an XpmColorSymbol array. */
6552 size = attrs.numsymbols * sizeof *xpm_syms;
6553 xpm_syms = (XpmColorSymbol *) alloca (size);
6554 bzero (xpm_syms, size);
6555 attrs.colorsymbols = xpm_syms;
6557 /* Fill the color symbol array. */
6558 for (tail = color_symbols, i = 0;
6559 CONSP (tail);
6560 ++i, tail = XCDR (tail))
6562 Lisp_Object name = XCAR (XCAR (tail));
6563 Lisp_Object color = XCDR (XCAR (tail));
6564 xpm_syms[i].name = (char *) alloca (SCHARS (name) + 1);
6565 strcpy (xpm_syms[i].name, SDATA (name));
6566 xpm_syms[i].value = (char *) alloca (SCHARS (color) + 1);
6567 strcpy (xpm_syms[i].value, SDATA (color));
6571 /* Create a pixmap for the image, either from a file, or from a
6572 string buffer containing data in the same format as an XPM file. */
6573 #ifdef ALLOC_XPM_COLORS
6574 xpm_init_color_cache (f, &attrs);
6575 #endif
6577 specified_file = image_spec_value (img->spec, QCfile, NULL);
6578 if (STRINGP (specified_file))
6580 Lisp_Object file = x_find_image_file (specified_file);
6581 if (!STRINGP (file))
6583 image_error ("Cannot find image file `%s'", specified_file, Qnil);
6584 return 0;
6587 rc = XpmReadFileToPixmap (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
6588 SDATA (file), &img->pixmap, &img->mask,
6589 &attrs);
6591 else
6593 Lisp_Object buffer = image_spec_value (img->spec, QCdata, NULL);
6594 rc = XpmCreatePixmapFromBuffer (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
6595 SDATA (buffer),
6596 &img->pixmap, &img->mask,
6597 &attrs);
6600 if (rc == XpmSuccess)
6602 #ifdef ALLOC_XPM_COLORS
6603 img->colors = colors_in_color_table (&img->ncolors);
6604 #else /* not ALLOC_XPM_COLORS */
6605 int i;
6607 img->ncolors = attrs.nalloc_pixels;
6608 img->colors = (unsigned long *) xmalloc (img->ncolors
6609 * sizeof *img->colors);
6610 for (i = 0; i < attrs.nalloc_pixels; ++i)
6612 img->colors[i] = attrs.alloc_pixels[i];
6613 #ifdef DEBUG_X_COLORS
6614 register_color (img->colors[i]);
6615 #endif
6617 #endif /* not ALLOC_XPM_COLORS */
6619 img->width = attrs.width;
6620 img->height = attrs.height;
6621 xassert (img->width > 0 && img->height > 0);
6623 /* The call to XpmFreeAttributes below frees attrs.alloc_pixels. */
6624 XpmFreeAttributes (&attrs);
6626 else
6628 switch (rc)
6630 case XpmOpenFailed:
6631 image_error ("Error opening XPM file (%s)", img->spec, Qnil);
6632 break;
6634 case XpmFileInvalid:
6635 image_error ("Invalid XPM file (%s)", img->spec, Qnil);
6636 break;
6638 case XpmNoMemory:
6639 image_error ("Out of memory (%s)", img->spec, Qnil);
6640 break;
6642 case XpmColorFailed:
6643 image_error ("Color allocation error (%s)", img->spec, Qnil);
6644 break;
6646 default:
6647 image_error ("Unknown error (%s)", img->spec, Qnil);
6648 break;
6652 #ifdef ALLOC_XPM_COLORS
6653 xpm_free_color_cache ();
6654 #endif
6655 return rc == XpmSuccess;
6658 #endif /* HAVE_XPM != 0 */
6661 /***********************************************************************
6662 Color table
6663 ***********************************************************************/
6665 /* An entry in the color table mapping an RGB color to a pixel color. */
6667 struct ct_color
6669 int r, g, b;
6670 unsigned long pixel;
6672 /* Next in color table collision list. */
6673 struct ct_color *next;
6676 /* The bucket vector size to use. Must be prime. */
6678 #define CT_SIZE 101
6680 /* Value is a hash of the RGB color given by R, G, and B. */
6682 #define CT_HASH_RGB(R, G, B) (((R) << 16) ^ ((G) << 8) ^ (B))
6684 /* The color hash table. */
6686 struct ct_color **ct_table;
6688 /* Number of entries in the color table. */
6690 int ct_colors_allocated;
6692 /* Initialize the color table. */
6694 static void
6695 init_color_table ()
6697 int size = CT_SIZE * sizeof (*ct_table);
6698 ct_table = (struct ct_color **) xmalloc (size);
6699 bzero (ct_table, size);
6700 ct_colors_allocated = 0;
6704 /* Free memory associated with the color table. */
6706 static void
6707 free_color_table ()
6709 int i;
6710 struct ct_color *p, *next;
6712 for (i = 0; i < CT_SIZE; ++i)
6713 for (p = ct_table[i]; p; p = next)
6715 next = p->next;
6716 xfree (p);
6719 xfree (ct_table);
6720 ct_table = NULL;
6724 /* Value is a pixel color for RGB color R, G, B on frame F. If an
6725 entry for that color already is in the color table, return the
6726 pixel color of that entry. Otherwise, allocate a new color for R,
6727 G, B, and make an entry in the color table. */
6729 static unsigned long
6730 lookup_rgb_color (f, r, g, b)
6731 struct frame *f;
6732 int r, g, b;
6734 unsigned hash = CT_HASH_RGB (r, g, b);
6735 int i = hash % CT_SIZE;
6736 struct ct_color *p;
6738 for (p = ct_table[i]; p; p = p->next)
6739 if (p->r == r && p->g == g && p->b == b)
6740 break;
6742 if (p == NULL)
6744 XColor color;
6745 Colormap cmap;
6746 int rc;
6748 color.red = r;
6749 color.green = g;
6750 color.blue = b;
6752 cmap = FRAME_X_COLORMAP (f);
6753 rc = x_alloc_nearest_color (f, cmap, &color);
6755 if (rc)
6757 ++ct_colors_allocated;
6759 p = (struct ct_color *) xmalloc (sizeof *p);
6760 p->r = r;
6761 p->g = g;
6762 p->b = b;
6763 p->pixel = color.pixel;
6764 p->next = ct_table[i];
6765 ct_table[i] = p;
6767 else
6768 return FRAME_FOREGROUND_PIXEL (f);
6771 return p->pixel;
6775 /* Look up pixel color PIXEL which is used on frame F in the color
6776 table. If not already present, allocate it. Value is PIXEL. */
6778 static unsigned long
6779 lookup_pixel_color (f, pixel)
6780 struct frame *f;
6781 unsigned long pixel;
6783 int i = pixel % CT_SIZE;
6784 struct ct_color *p;
6786 for (p = ct_table[i]; p; p = p->next)
6787 if (p->pixel == pixel)
6788 break;
6790 if (p == NULL)
6792 XColor color;
6793 Colormap cmap;
6794 int rc;
6796 cmap = FRAME_X_COLORMAP (f);
6797 color.pixel = pixel;
6798 x_query_color (f, &color);
6799 rc = x_alloc_nearest_color (f, cmap, &color);
6801 if (rc)
6803 ++ct_colors_allocated;
6805 p = (struct ct_color *) xmalloc (sizeof *p);
6806 p->r = color.red;
6807 p->g = color.green;
6808 p->b = color.blue;
6809 p->pixel = pixel;
6810 p->next = ct_table[i];
6811 ct_table[i] = p;
6813 else
6814 return FRAME_FOREGROUND_PIXEL (f);
6817 return p->pixel;
6821 /* Value is a vector of all pixel colors contained in the color table,
6822 allocated via xmalloc. Set *N to the number of colors. */
6824 static unsigned long *
6825 colors_in_color_table (n)
6826 int *n;
6828 int i, j;
6829 struct ct_color *p;
6830 unsigned long *colors;
6832 if (ct_colors_allocated == 0)
6834 *n = 0;
6835 colors = NULL;
6837 else
6839 colors = (unsigned long *) xmalloc (ct_colors_allocated
6840 * sizeof *colors);
6841 *n = ct_colors_allocated;
6843 for (i = j = 0; i < CT_SIZE; ++i)
6844 for (p = ct_table[i]; p; p = p->next)
6845 colors[j++] = p->pixel;
6848 return colors;
6853 /***********************************************************************
6854 Algorithms
6855 ***********************************************************************/
6857 static XColor *x_to_xcolors P_ ((struct frame *, struct image *, int));
6858 static void x_from_xcolors P_ ((struct frame *, struct image *, XColor *));
6859 static void x_detect_edges P_ ((struct frame *, struct image *, int[9], int));
6861 /* Non-zero means draw a cross on images having `:conversion
6862 disabled'. */
6864 int cross_disabled_images;
6866 /* Edge detection matrices for different edge-detection
6867 strategies. */
6869 static int emboss_matrix[9] = {
6870 /* x - 1 x x + 1 */
6871 2, -1, 0, /* y - 1 */
6872 -1, 0, 1, /* y */
6873 0, 1, -2 /* y + 1 */
6876 static int laplace_matrix[9] = {
6877 /* x - 1 x x + 1 */
6878 1, 0, 0, /* y - 1 */
6879 0, 0, 0, /* y */
6880 0, 0, -1 /* y + 1 */
6883 /* Value is the intensity of the color whose red/green/blue values
6884 are R, G, and B. */
6886 #define COLOR_INTENSITY(R, G, B) ((2 * (R) + 3 * (G) + (B)) / 6)
6889 /* On frame F, return an array of XColor structures describing image
6890 IMG->pixmap. Each XColor structure has its pixel color set. RGB_P
6891 non-zero means also fill the red/green/blue members of the XColor
6892 structures. Value is a pointer to the array of XColors structures,
6893 allocated with xmalloc; it must be freed by the caller. */
6895 static XColor *
6896 x_to_xcolors (f, img, rgb_p)
6897 struct frame *f;
6898 struct image *img;
6899 int rgb_p;
6901 int x, y;
6902 XColor *colors, *p;
6903 XImage *ximg;
6905 colors = (XColor *) xmalloc (img->width * img->height * sizeof *colors);
6907 /* Get the X image IMG->pixmap. */
6908 ximg = XGetImage (FRAME_X_DISPLAY (f), img->pixmap,
6909 0, 0, img->width, img->height, ~0, ZPixmap);
6911 /* Fill the `pixel' members of the XColor array. I wished there
6912 were an easy and portable way to circumvent XGetPixel. */
6913 p = colors;
6914 for (y = 0; y < img->height; ++y)
6916 XColor *row = p;
6918 for (x = 0; x < img->width; ++x, ++p)
6919 p->pixel = XGetPixel (ximg, x, y);
6921 if (rgb_p)
6922 x_query_colors (f, row, img->width);
6925 XDestroyImage (ximg);
6926 return colors;
6930 /* Create IMG->pixmap from an array COLORS of XColor structures, whose
6931 RGB members are set. F is the frame on which this all happens.
6932 COLORS will be freed; an existing IMG->pixmap will be freed, too. */
6934 static void
6935 x_from_xcolors (f, img, colors)
6936 struct frame *f;
6937 struct image *img;
6938 XColor *colors;
6940 int x, y;
6941 XImage *oimg;
6942 Pixmap pixmap;
6943 XColor *p;
6945 init_color_table ();
6947 x_create_x_image_and_pixmap (f, img->width, img->height, 0,
6948 &oimg, &pixmap);
6949 p = colors;
6950 for (y = 0; y < img->height; ++y)
6951 for (x = 0; x < img->width; ++x, ++p)
6953 unsigned long pixel;
6954 pixel = lookup_rgb_color (f, p->red, p->green, p->blue);
6955 XPutPixel (oimg, x, y, pixel);
6958 xfree (colors);
6959 x_clear_image_1 (f, img, 1, 0, 1);
6961 x_put_x_image (f, oimg, pixmap, img->width, img->height);
6962 x_destroy_x_image (oimg);
6963 img->pixmap = pixmap;
6964 img->colors = colors_in_color_table (&img->ncolors);
6965 free_color_table ();
6969 /* On frame F, perform edge-detection on image IMG.
6971 MATRIX is a nine-element array specifying the transformation
6972 matrix. See emboss_matrix for an example.
6974 COLOR_ADJUST is a color adjustment added to each pixel of the
6975 outgoing image. */
6977 static void
6978 x_detect_edges (f, img, matrix, color_adjust)
6979 struct frame *f;
6980 struct image *img;
6981 int matrix[9], color_adjust;
6983 XColor *colors = x_to_xcolors (f, img, 1);
6984 XColor *new, *p;
6985 int x, y, i, sum;
6987 for (i = sum = 0; i < 9; ++i)
6988 sum += abs (matrix[i]);
6990 #define COLOR(A, X, Y) ((A) + (Y) * img->width + (X))
6992 new = (XColor *) xmalloc (img->width * img->height * sizeof *new);
6994 for (y = 0; y < img->height; ++y)
6996 p = COLOR (new, 0, y);
6997 p->red = p->green = p->blue = 0xffff/2;
6998 p = COLOR (new, img->width - 1, y);
6999 p->red = p->green = p->blue = 0xffff/2;
7002 for (x = 1; x < img->width - 1; ++x)
7004 p = COLOR (new, x, 0);
7005 p->red = p->green = p->blue = 0xffff/2;
7006 p = COLOR (new, x, img->height - 1);
7007 p->red = p->green = p->blue = 0xffff/2;
7010 for (y = 1; y < img->height - 1; ++y)
7012 p = COLOR (new, 1, y);
7014 for (x = 1; x < img->width - 1; ++x, ++p)
7016 int r, g, b, y1, x1;
7018 r = g = b = i = 0;
7019 for (y1 = y - 1; y1 < y + 2; ++y1)
7020 for (x1 = x - 1; x1 < x + 2; ++x1, ++i)
7021 if (matrix[i])
7023 XColor *t = COLOR (colors, x1, y1);
7024 r += matrix[i] * t->red;
7025 g += matrix[i] * t->green;
7026 b += matrix[i] * t->blue;
7029 r = (r / sum + color_adjust) & 0xffff;
7030 g = (g / sum + color_adjust) & 0xffff;
7031 b = (b / sum + color_adjust) & 0xffff;
7032 p->red = p->green = p->blue = COLOR_INTENSITY (r, g, b);
7036 xfree (colors);
7037 x_from_xcolors (f, img, new);
7039 #undef COLOR
7043 /* Perform the pre-defined `emboss' edge-detection on image IMG
7044 on frame F. */
7046 static void
7047 x_emboss (f, img)
7048 struct frame *f;
7049 struct image *img;
7051 x_detect_edges (f, img, emboss_matrix, 0xffff / 2);
7055 /* Perform the pre-defined `laplace' edge-detection on image IMG
7056 on frame F. */
7058 static void
7059 x_laplace (f, img)
7060 struct frame *f;
7061 struct image *img;
7063 x_detect_edges (f, img, laplace_matrix, 45000);
7067 /* Perform edge-detection on image IMG on frame F, with specified
7068 transformation matrix MATRIX and color-adjustment COLOR_ADJUST.
7070 MATRIX must be either
7072 - a list of at least 9 numbers in row-major form
7073 - a vector of at least 9 numbers
7075 COLOR_ADJUST nil means use a default; otherwise it must be a
7076 number. */
7078 static void
7079 x_edge_detection (f, img, matrix, color_adjust)
7080 struct frame *f;
7081 struct image *img;
7082 Lisp_Object matrix, color_adjust;
7084 int i = 0;
7085 int trans[9];
7087 if (CONSP (matrix))
7089 for (i = 0;
7090 i < 9 && CONSP (matrix) && NUMBERP (XCAR (matrix));
7091 ++i, matrix = XCDR (matrix))
7092 trans[i] = XFLOATINT (XCAR (matrix));
7094 else if (VECTORP (matrix) && ASIZE (matrix) >= 9)
7096 for (i = 0; i < 9 && NUMBERP (AREF (matrix, i)); ++i)
7097 trans[i] = XFLOATINT (AREF (matrix, i));
7100 if (NILP (color_adjust))
7101 color_adjust = make_number (0xffff / 2);
7103 if (i == 9 && NUMBERP (color_adjust))
7104 x_detect_edges (f, img, trans, (int) XFLOATINT (color_adjust));
7108 /* Transform image IMG on frame F so that it looks disabled. */
7110 static void
7111 x_disable_image (f, img)
7112 struct frame *f;
7113 struct image *img;
7115 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
7117 if (dpyinfo->n_planes >= 2)
7119 /* Color (or grayscale). Convert to gray, and equalize. Just
7120 drawing such images with a stipple can look very odd, so
7121 we're using this method instead. */
7122 XColor *colors = x_to_xcolors (f, img, 1);
7123 XColor *p, *end;
7124 const int h = 15000;
7125 const int l = 30000;
7127 for (p = colors, end = colors + img->width * img->height;
7128 p < end;
7129 ++p)
7131 int i = COLOR_INTENSITY (p->red, p->green, p->blue);
7132 int i2 = (0xffff - h - l) * i / 0xffff + l;
7133 p->red = p->green = p->blue = i2;
7136 x_from_xcolors (f, img, colors);
7139 /* Draw a cross over the disabled image, if we must or if we
7140 should. */
7141 if (dpyinfo->n_planes < 2 || cross_disabled_images)
7143 Display *dpy = FRAME_X_DISPLAY (f);
7144 GC gc;
7146 gc = XCreateGC (dpy, img->pixmap, 0, NULL);
7147 XSetForeground (dpy, gc, BLACK_PIX_DEFAULT (f));
7148 XDrawLine (dpy, img->pixmap, gc, 0, 0,
7149 img->width - 1, img->height - 1);
7150 XDrawLine (dpy, img->pixmap, gc, 0, img->height - 1,
7151 img->width - 1, 0);
7152 XFreeGC (dpy, gc);
7154 if (img->mask)
7156 gc = XCreateGC (dpy, img->mask, 0, NULL);
7157 XSetForeground (dpy, gc, WHITE_PIX_DEFAULT (f));
7158 XDrawLine (dpy, img->mask, gc, 0, 0,
7159 img->width - 1, img->height - 1);
7160 XDrawLine (dpy, img->mask, gc, 0, img->height - 1,
7161 img->width - 1, 0);
7162 XFreeGC (dpy, gc);
7168 /* Build a mask for image IMG which is used on frame F. FILE is the
7169 name of an image file, for error messages. HOW determines how to
7170 determine the background color of IMG. If it is a list '(R G B)',
7171 with R, G, and B being integers >= 0, take that as the color of the
7172 background. Otherwise, determine the background color of IMG
7173 heuristically. Value is non-zero if successful. */
7175 static int
7176 x_build_heuristic_mask (f, img, how)
7177 struct frame *f;
7178 struct image *img;
7179 Lisp_Object how;
7181 Display *dpy = FRAME_X_DISPLAY (f);
7182 XImage *ximg, *mask_img;
7183 int x, y, rc, use_img_background;
7184 unsigned long bg = 0;
7186 if (img->mask)
7188 XFreePixmap (FRAME_X_DISPLAY (f), img->mask);
7189 img->mask = None;
7190 img->background_transparent_valid = 0;
7193 /* Create an image and pixmap serving as mask. */
7194 rc = x_create_x_image_and_pixmap (f, img->width, img->height, 1,
7195 &mask_img, &img->mask);
7196 if (!rc)
7197 return 0;
7199 /* Get the X image of IMG->pixmap. */
7200 ximg = XGetImage (dpy, img->pixmap, 0, 0, img->width, img->height,
7201 ~0, ZPixmap);
7203 /* Determine the background color of ximg. If HOW is `(R G B)'
7204 take that as color. Otherwise, use the image's background color. */
7205 use_img_background = 1;
7207 if (CONSP (how))
7209 int rgb[3], i;
7211 for (i = 0; i < 3 && CONSP (how) && NATNUMP (XCAR (how)); ++i)
7213 rgb[i] = XFASTINT (XCAR (how)) & 0xffff;
7214 how = XCDR (how);
7217 if (i == 3 && NILP (how))
7219 char color_name[30];
7220 sprintf (color_name, "#%04x%04x%04x", rgb[0], rgb[1], rgb[2]);
7221 bg = x_alloc_image_color (f, img, build_string (color_name), 0);
7222 use_img_background = 0;
7226 if (use_img_background)
7227 bg = four_corners_best (ximg, img->width, img->height);
7229 /* Set all bits in mask_img to 1 whose color in ximg is different
7230 from the background color bg. */
7231 for (y = 0; y < img->height; ++y)
7232 for (x = 0; x < img->width; ++x)
7233 XPutPixel (mask_img, x, y, XGetPixel (ximg, x, y) != bg);
7235 /* Fill in the background_transparent field while we have the mask handy. */
7236 image_background_transparent (img, f, mask_img);
7238 /* Put mask_img into img->mask. */
7239 x_put_x_image (f, mask_img, img->mask, img->width, img->height);
7240 x_destroy_x_image (mask_img);
7241 XDestroyImage (ximg);
7243 return 1;
7248 /***********************************************************************
7249 PBM (mono, gray, color)
7250 ***********************************************************************/
7252 static int pbm_image_p P_ ((Lisp_Object object));
7253 static int pbm_load P_ ((struct frame *f, struct image *img));
7254 static int pbm_scan_number P_ ((unsigned char **, unsigned char *));
7256 /* The symbol `pbm' identifying images of this type. */
7258 Lisp_Object Qpbm;
7260 /* Indices of image specification fields in gs_format, below. */
7262 enum pbm_keyword_index
7264 PBM_TYPE,
7265 PBM_FILE,
7266 PBM_DATA,
7267 PBM_ASCENT,
7268 PBM_MARGIN,
7269 PBM_RELIEF,
7270 PBM_ALGORITHM,
7271 PBM_HEURISTIC_MASK,
7272 PBM_MASK,
7273 PBM_FOREGROUND,
7274 PBM_BACKGROUND,
7275 PBM_LAST
7278 /* Vector of image_keyword structures describing the format
7279 of valid user-defined image specifications. */
7281 static struct image_keyword pbm_format[PBM_LAST] =
7283 {":type", IMAGE_SYMBOL_VALUE, 1},
7284 {":file", IMAGE_STRING_VALUE, 0},
7285 {":data", IMAGE_STRING_VALUE, 0},
7286 {":ascent", IMAGE_ASCENT_VALUE, 0},
7287 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR, 0},
7288 {":relief", IMAGE_INTEGER_VALUE, 0},
7289 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
7290 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
7291 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
7292 {":foreground", IMAGE_STRING_OR_NIL_VALUE, 0},
7293 {":background", IMAGE_STRING_OR_NIL_VALUE, 0}
7296 /* Structure describing the image type `pbm'. */
7298 static struct image_type pbm_type =
7300 &Qpbm,
7301 pbm_image_p,
7302 pbm_load,
7303 x_clear_image,
7304 NULL
7308 /* Return non-zero if OBJECT is a valid PBM image specification. */
7310 static int
7311 pbm_image_p (object)
7312 Lisp_Object object;
7314 struct image_keyword fmt[PBM_LAST];
7316 bcopy (pbm_format, fmt, sizeof fmt);
7318 if (!parse_image_spec (object, fmt, PBM_LAST, Qpbm))
7319 return 0;
7321 /* Must specify either :data or :file. */
7322 return fmt[PBM_DATA].count + fmt[PBM_FILE].count == 1;
7326 /* Scan a decimal number from *S and return it. Advance *S while
7327 reading the number. END is the end of the string. Value is -1 at
7328 end of input. */
7330 static int
7331 pbm_scan_number (s, end)
7332 unsigned char **s, *end;
7334 int c = 0, val = -1;
7336 while (*s < end)
7338 /* Skip white-space. */
7339 while (*s < end && (c = *(*s)++, isspace (c)))
7342 if (c == '#')
7344 /* Skip comment to end of line. */
7345 while (*s < end && (c = *(*s)++, c != '\n'))
7348 else if (isdigit (c))
7350 /* Read decimal number. */
7351 val = c - '0';
7352 while (*s < end && (c = *(*s)++, isdigit (c)))
7353 val = 10 * val + c - '0';
7354 break;
7356 else
7357 break;
7360 return val;
7364 /* Load PBM image IMG for use on frame F. */
7366 static int
7367 pbm_load (f, img)
7368 struct frame *f;
7369 struct image *img;
7371 int raw_p, x, y;
7372 int width, height, max_color_idx = 0;
7373 XImage *ximg;
7374 Lisp_Object file, specified_file;
7375 enum {PBM_MONO, PBM_GRAY, PBM_COLOR} type;
7376 struct gcpro gcpro1;
7377 unsigned char *contents = NULL;
7378 unsigned char *end, *p;
7379 int size;
7381 specified_file = image_spec_value (img->spec, QCfile, NULL);
7382 file = Qnil;
7383 GCPRO1 (file);
7385 if (STRINGP (specified_file))
7387 file = x_find_image_file (specified_file);
7388 if (!STRINGP (file))
7390 image_error ("Cannot find image file `%s'", specified_file, Qnil);
7391 UNGCPRO;
7392 return 0;
7395 contents = slurp_file (SDATA (file), &size);
7396 if (contents == NULL)
7398 image_error ("Error reading `%s'", file, Qnil);
7399 UNGCPRO;
7400 return 0;
7403 p = contents;
7404 end = contents + size;
7406 else
7408 Lisp_Object data;
7409 data = image_spec_value (img->spec, QCdata, NULL);
7410 p = SDATA (data);
7411 end = p + SBYTES (data);
7414 /* Check magic number. */
7415 if (end - p < 2 || *p++ != 'P')
7417 image_error ("Not a PBM image: `%s'", img->spec, Qnil);
7418 error:
7419 xfree (contents);
7420 UNGCPRO;
7421 return 0;
7424 switch (*p++)
7426 case '1':
7427 raw_p = 0, type = PBM_MONO;
7428 break;
7430 case '2':
7431 raw_p = 0, type = PBM_GRAY;
7432 break;
7434 case '3':
7435 raw_p = 0, type = PBM_COLOR;
7436 break;
7438 case '4':
7439 raw_p = 1, type = PBM_MONO;
7440 break;
7442 case '5':
7443 raw_p = 1, type = PBM_GRAY;
7444 break;
7446 case '6':
7447 raw_p = 1, type = PBM_COLOR;
7448 break;
7450 default:
7451 image_error ("Not a PBM image: `%s'", img->spec, Qnil);
7452 goto error;
7455 /* Read width, height, maximum color-component. Characters
7456 starting with `#' up to the end of a line are ignored. */
7457 width = pbm_scan_number (&p, end);
7458 height = pbm_scan_number (&p, end);
7460 if (type != PBM_MONO)
7462 max_color_idx = pbm_scan_number (&p, end);
7463 if (raw_p && max_color_idx > 255)
7464 max_color_idx = 255;
7467 if (width < 0
7468 || height < 0
7469 || (type != PBM_MONO && max_color_idx < 0))
7470 goto error;
7472 if (!x_create_x_image_and_pixmap (f, width, height, 0,
7473 &ximg, &img->pixmap))
7474 goto error;
7476 /* Initialize the color hash table. */
7477 init_color_table ();
7479 if (type == PBM_MONO)
7481 int c = 0, g;
7482 struct image_keyword fmt[PBM_LAST];
7483 unsigned long fg = FRAME_FOREGROUND_PIXEL (f);
7484 unsigned long bg = FRAME_BACKGROUND_PIXEL (f);
7486 /* Parse the image specification. */
7487 bcopy (pbm_format, fmt, sizeof fmt);
7488 parse_image_spec (img->spec, fmt, PBM_LAST, Qpbm);
7490 /* Get foreground and background colors, maybe allocate colors. */
7491 if (fmt[PBM_FOREGROUND].count
7492 && STRINGP (fmt[PBM_FOREGROUND].value))
7493 fg = x_alloc_image_color (f, img, fmt[PBM_FOREGROUND].value, fg);
7494 if (fmt[PBM_BACKGROUND].count
7495 && STRINGP (fmt[PBM_BACKGROUND].value))
7497 bg = x_alloc_image_color (f, img, fmt[PBM_BACKGROUND].value, bg);
7498 img->background = bg;
7499 img->background_valid = 1;
7502 for (y = 0; y < height; ++y)
7503 for (x = 0; x < width; ++x)
7505 if (raw_p)
7507 if ((x & 7) == 0)
7508 c = *p++;
7509 g = c & 0x80;
7510 c <<= 1;
7512 else
7513 g = pbm_scan_number (&p, end);
7515 XPutPixel (ximg, x, y, g ? fg : bg);
7518 else
7520 for (y = 0; y < height; ++y)
7521 for (x = 0; x < width; ++x)
7523 int r, g, b;
7525 if (type == PBM_GRAY)
7526 r = g = b = raw_p ? *p++ : pbm_scan_number (&p, end);
7527 else if (raw_p)
7529 r = *p++;
7530 g = *p++;
7531 b = *p++;
7533 else
7535 r = pbm_scan_number (&p, end);
7536 g = pbm_scan_number (&p, end);
7537 b = pbm_scan_number (&p, end);
7540 if (r < 0 || g < 0 || b < 0)
7542 xfree (ximg->data);
7543 ximg->data = NULL;
7544 XDestroyImage (ximg);
7545 image_error ("Invalid pixel value in image `%s'",
7546 img->spec, Qnil);
7547 goto error;
7550 /* RGB values are now in the range 0..max_color_idx.
7551 Scale this to the range 0..0xffff supported by X. */
7552 r = (double) r * 65535 / max_color_idx;
7553 g = (double) g * 65535 / max_color_idx;
7554 b = (double) b * 65535 / max_color_idx;
7555 XPutPixel (ximg, x, y, lookup_rgb_color (f, r, g, b));
7559 /* Store in IMG->colors the colors allocated for the image, and
7560 free the color table. */
7561 img->colors = colors_in_color_table (&img->ncolors);
7562 free_color_table ();
7564 /* Maybe fill in the background field while we have ximg handy. */
7565 if (NILP (image_spec_value (img->spec, QCbackground, NULL)))
7566 IMAGE_BACKGROUND (img, f, ximg);
7568 /* Put the image into a pixmap. */
7569 x_put_x_image (f, ximg, img->pixmap, width, height);
7570 x_destroy_x_image (ximg);
7572 img->width = width;
7573 img->height = height;
7575 UNGCPRO;
7576 xfree (contents);
7577 return 1;
7582 /***********************************************************************
7584 ***********************************************************************/
7586 #if HAVE_PNG
7588 #if defined HAVE_LIBPNG_PNG_H
7589 # include <libpng/png.h>
7590 #else
7591 # include <png.h>
7592 #endif
7594 /* Function prototypes. */
7596 static int png_image_p P_ ((Lisp_Object object));
7597 static int png_load P_ ((struct frame *f, struct image *img));
7599 /* The symbol `png' identifying images of this type. */
7601 Lisp_Object Qpng;
7603 /* Indices of image specification fields in png_format, below. */
7605 enum png_keyword_index
7607 PNG_TYPE,
7608 PNG_DATA,
7609 PNG_FILE,
7610 PNG_ASCENT,
7611 PNG_MARGIN,
7612 PNG_RELIEF,
7613 PNG_ALGORITHM,
7614 PNG_HEURISTIC_MASK,
7615 PNG_MASK,
7616 PNG_BACKGROUND,
7617 PNG_LAST
7620 /* Vector of image_keyword structures describing the format
7621 of valid user-defined image specifications. */
7623 static struct image_keyword png_format[PNG_LAST] =
7625 {":type", IMAGE_SYMBOL_VALUE, 1},
7626 {":data", IMAGE_STRING_VALUE, 0},
7627 {":file", IMAGE_STRING_VALUE, 0},
7628 {":ascent", IMAGE_ASCENT_VALUE, 0},
7629 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR, 0},
7630 {":relief", IMAGE_INTEGER_VALUE, 0},
7631 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
7632 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
7633 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
7634 {":background", IMAGE_STRING_OR_NIL_VALUE, 0}
7637 /* Structure describing the image type `png'. */
7639 static struct image_type png_type =
7641 &Qpng,
7642 png_image_p,
7643 png_load,
7644 x_clear_image,
7645 NULL
7649 /* Return non-zero if OBJECT is a valid PNG image specification. */
7651 static int
7652 png_image_p (object)
7653 Lisp_Object object;
7655 struct image_keyword fmt[PNG_LAST];
7656 bcopy (png_format, fmt, sizeof fmt);
7658 if (!parse_image_spec (object, fmt, PNG_LAST, Qpng))
7659 return 0;
7661 /* Must specify either the :data or :file keyword. */
7662 return fmt[PNG_FILE].count + fmt[PNG_DATA].count == 1;
7666 /* Error and warning handlers installed when the PNG library
7667 is initialized. */
7669 static void
7670 my_png_error (png_ptr, msg)
7671 png_struct *png_ptr;
7672 char *msg;
7674 xassert (png_ptr != NULL);
7675 image_error ("PNG error: %s", build_string (msg), Qnil);
7676 longjmp (png_ptr->jmpbuf, 1);
7680 static void
7681 my_png_warning (png_ptr, msg)
7682 png_struct *png_ptr;
7683 char *msg;
7685 xassert (png_ptr != NULL);
7686 image_error ("PNG warning: %s", build_string (msg), Qnil);
7689 /* Memory source for PNG decoding. */
7691 struct png_memory_storage
7693 unsigned char *bytes; /* The data */
7694 size_t len; /* How big is it? */
7695 int index; /* Where are we? */
7699 /* Function set as reader function when reading PNG image from memory.
7700 PNG_PTR is a pointer to the PNG control structure. Copy LENGTH
7701 bytes from the input to DATA. */
7703 static void
7704 png_read_from_memory (png_ptr, data, length)
7705 png_structp png_ptr;
7706 png_bytep data;
7707 png_size_t length;
7709 struct png_memory_storage *tbr
7710 = (struct png_memory_storage *) png_get_io_ptr (png_ptr);
7712 if (length > tbr->len - tbr->index)
7713 png_error (png_ptr, "Read error");
7715 bcopy (tbr->bytes + tbr->index, data, length);
7716 tbr->index = tbr->index + length;
7719 /* Load PNG image IMG for use on frame F. Value is non-zero if
7720 successful. */
7722 static int
7723 png_load (f, img)
7724 struct frame *f;
7725 struct image *img;
7727 Lisp_Object file, specified_file;
7728 Lisp_Object specified_data;
7729 int x, y, i;
7730 XImage *ximg, *mask_img = NULL;
7731 struct gcpro gcpro1;
7732 png_struct *png_ptr = NULL;
7733 png_info *info_ptr = NULL, *end_info = NULL;
7734 FILE *volatile fp = NULL;
7735 png_byte sig[8];
7736 png_byte * volatile pixels = NULL;
7737 png_byte ** volatile rows = NULL;
7738 png_uint_32 width, height;
7739 int bit_depth, color_type, interlace_type;
7740 png_byte channels;
7741 png_uint_32 row_bytes;
7742 int transparent_p;
7743 double screen_gamma;
7744 struct png_memory_storage tbr; /* Data to be read */
7746 /* Find out what file to load. */
7747 specified_file = image_spec_value (img->spec, QCfile, NULL);
7748 specified_data = image_spec_value (img->spec, QCdata, NULL);
7749 file = Qnil;
7750 GCPRO1 (file);
7752 if (NILP (specified_data))
7754 file = x_find_image_file (specified_file);
7755 if (!STRINGP (file))
7757 image_error ("Cannot find image file `%s'", specified_file, Qnil);
7758 UNGCPRO;
7759 return 0;
7762 /* Open the image file. */
7763 fp = fopen (SDATA (file), "rb");
7764 if (!fp)
7766 image_error ("Cannot open image file `%s'", file, Qnil);
7767 UNGCPRO;
7768 fclose (fp);
7769 return 0;
7772 /* Check PNG signature. */
7773 if (fread (sig, 1, sizeof sig, fp) != sizeof sig
7774 || !png_check_sig (sig, sizeof sig))
7776 image_error ("Not a PNG file: `%s'", file, Qnil);
7777 UNGCPRO;
7778 fclose (fp);
7779 return 0;
7782 else
7784 /* Read from memory. */
7785 tbr.bytes = SDATA (specified_data);
7786 tbr.len = SBYTES (specified_data);
7787 tbr.index = 0;
7789 /* Check PNG signature. */
7790 if (tbr.len < sizeof sig
7791 || !png_check_sig (tbr.bytes, sizeof sig))
7793 image_error ("Not a PNG image: `%s'", img->spec, Qnil);
7794 UNGCPRO;
7795 return 0;
7798 /* Need to skip past the signature. */
7799 tbr.bytes += sizeof (sig);
7802 /* Initialize read and info structs for PNG lib. */
7803 png_ptr = png_create_read_struct (PNG_LIBPNG_VER_STRING, NULL,
7804 my_png_error, my_png_warning);
7805 if (!png_ptr)
7807 if (fp) fclose (fp);
7808 UNGCPRO;
7809 return 0;
7812 info_ptr = png_create_info_struct (png_ptr);
7813 if (!info_ptr)
7815 png_destroy_read_struct (&png_ptr, NULL, NULL);
7816 if (fp) fclose (fp);
7817 UNGCPRO;
7818 return 0;
7821 end_info = png_create_info_struct (png_ptr);
7822 if (!end_info)
7824 png_destroy_read_struct (&png_ptr, &info_ptr, NULL);
7825 if (fp) fclose (fp);
7826 UNGCPRO;
7827 return 0;
7830 /* Set error jump-back. We come back here when the PNG library
7831 detects an error. */
7832 if (setjmp (png_ptr->jmpbuf))
7834 error:
7835 if (png_ptr)
7836 png_destroy_read_struct (&png_ptr, &info_ptr, &end_info);
7837 xfree (pixels);
7838 xfree (rows);
7839 if (fp) fclose (fp);
7840 UNGCPRO;
7841 return 0;
7844 /* Read image info. */
7845 if (!NILP (specified_data))
7846 png_set_read_fn (png_ptr, (void *) &tbr, png_read_from_memory);
7847 else
7848 png_init_io (png_ptr, fp);
7850 png_set_sig_bytes (png_ptr, sizeof sig);
7851 png_read_info (png_ptr, info_ptr);
7852 png_get_IHDR (png_ptr, info_ptr, &width, &height, &bit_depth, &color_type,
7853 &interlace_type, NULL, NULL);
7855 /* If image contains simply transparency data, we prefer to
7856 construct a clipping mask. */
7857 if (png_get_valid (png_ptr, info_ptr, PNG_INFO_tRNS))
7858 transparent_p = 1;
7859 else
7860 transparent_p = 0;
7862 /* This function is easier to write if we only have to handle
7863 one data format: RGB or RGBA with 8 bits per channel. Let's
7864 transform other formats into that format. */
7866 /* Strip more than 8 bits per channel. */
7867 if (bit_depth == 16)
7868 png_set_strip_16 (png_ptr);
7870 /* Expand data to 24 bit RGB, or 8 bit grayscale, with alpha channel
7871 if available. */
7872 png_set_expand (png_ptr);
7874 /* Convert grayscale images to RGB. */
7875 if (color_type == PNG_COLOR_TYPE_GRAY
7876 || color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
7877 png_set_gray_to_rgb (png_ptr);
7879 screen_gamma = (f->gamma ? 1 / f->gamma / 0.45455 : 2.2);
7881 #if 0 /* Avoid double gamma correction for PNG images. */
7882 { /* Tell the PNG lib to handle gamma correction for us. */
7883 int intent;
7884 double image_gamma;
7885 #if defined(PNG_READ_sRGB_SUPPORTED) || defined(PNG_WRITE_sRGB_SUPPORTED)
7886 if (png_get_sRGB (png_ptr, info_ptr, &intent))
7887 /* The libpng documentation says this is right in this case. */
7888 png_set_gamma (png_ptr, screen_gamma, 0.45455);
7889 else
7890 #endif
7891 if (png_get_gAMA (png_ptr, info_ptr, &image_gamma))
7892 /* Image contains gamma information. */
7893 png_set_gamma (png_ptr, screen_gamma, image_gamma);
7894 else
7895 /* Use the standard default for the image gamma. */
7896 png_set_gamma (png_ptr, screen_gamma, 0.45455);
7898 #endif /* if 0 */
7900 /* Handle alpha channel by combining the image with a background
7901 color. Do this only if a real alpha channel is supplied. For
7902 simple transparency, we prefer a clipping mask. */
7903 if (!transparent_p)
7905 png_color_16 *image_bg;
7906 Lisp_Object specified_bg
7907 = image_spec_value (img->spec, QCbackground, NULL);
7909 if (STRINGP (specified_bg))
7910 /* The user specified `:background', use that. */
7912 XColor color;
7913 if (x_defined_color (f, SDATA (specified_bg), &color, 0))
7915 png_color_16 user_bg;
7917 bzero (&user_bg, sizeof user_bg);
7918 user_bg.red = color.red;
7919 user_bg.green = color.green;
7920 user_bg.blue = color.blue;
7922 png_set_background (png_ptr, &user_bg,
7923 PNG_BACKGROUND_GAMMA_SCREEN, 0, 1.0);
7926 else if (png_get_bKGD (png_ptr, info_ptr, &image_bg))
7927 /* Image contains a background color with which to
7928 combine the image. */
7929 png_set_background (png_ptr, image_bg,
7930 PNG_BACKGROUND_GAMMA_FILE, 1, 1.0);
7931 else
7933 /* Image does not contain a background color with which
7934 to combine the image data via an alpha channel. Use
7935 the frame's background instead. */
7936 XColor color;
7937 Colormap cmap;
7938 png_color_16 frame_background;
7940 cmap = FRAME_X_COLORMAP (f);
7941 color.pixel = FRAME_BACKGROUND_PIXEL (f);
7942 x_query_color (f, &color);
7944 bzero (&frame_background, sizeof frame_background);
7945 frame_background.red = color.red;
7946 frame_background.green = color.green;
7947 frame_background.blue = color.blue;
7949 png_set_background (png_ptr, &frame_background,
7950 PNG_BACKGROUND_GAMMA_SCREEN, 0, 1.0);
7954 /* Update info structure. */
7955 png_read_update_info (png_ptr, info_ptr);
7957 /* Get number of channels. Valid values are 1 for grayscale images
7958 and images with a palette, 2 for grayscale images with transparency
7959 information (alpha channel), 3 for RGB images, and 4 for RGB
7960 images with alpha channel, i.e. RGBA. If conversions above were
7961 sufficient we should only have 3 or 4 channels here. */
7962 channels = png_get_channels (png_ptr, info_ptr);
7963 xassert (channels == 3 || channels == 4);
7965 /* Number of bytes needed for one row of the image. */
7966 row_bytes = png_get_rowbytes (png_ptr, info_ptr);
7968 /* Allocate memory for the image. */
7969 pixels = (png_byte *) xmalloc (row_bytes * height * sizeof *pixels);
7970 rows = (png_byte **) xmalloc (height * sizeof *rows);
7971 for (i = 0; i < height; ++i)
7972 rows[i] = pixels + i * row_bytes;
7974 /* Read the entire image. */
7975 png_read_image (png_ptr, rows);
7976 png_read_end (png_ptr, info_ptr);
7977 if (fp)
7979 fclose (fp);
7980 fp = NULL;
7983 /* Create the X image and pixmap. */
7984 if (!x_create_x_image_and_pixmap (f, width, height, 0, &ximg,
7985 &img->pixmap))
7986 goto error;
7988 /* Create an image and pixmap serving as mask if the PNG image
7989 contains an alpha channel. */
7990 if (channels == 4
7991 && !transparent_p
7992 && !x_create_x_image_and_pixmap (f, width, height, 1,
7993 &mask_img, &img->mask))
7995 x_destroy_x_image (ximg);
7996 XFreePixmap (FRAME_X_DISPLAY (f), img->pixmap);
7997 img->pixmap = None;
7998 goto error;
8001 /* Fill the X image and mask from PNG data. */
8002 init_color_table ();
8004 for (y = 0; y < height; ++y)
8006 png_byte *p = rows[y];
8008 for (x = 0; x < width; ++x)
8010 unsigned r, g, b;
8012 r = *p++ << 8;
8013 g = *p++ << 8;
8014 b = *p++ << 8;
8015 XPutPixel (ximg, x, y, lookup_rgb_color (f, r, g, b));
8017 /* An alpha channel, aka mask channel, associates variable
8018 transparency with an image. Where other image formats
8019 support binary transparency---fully transparent or fully
8020 opaque---PNG allows up to 254 levels of partial transparency.
8021 The PNG library implements partial transparency by combining
8022 the image with a specified background color.
8024 I'm not sure how to handle this here nicely: because the
8025 background on which the image is displayed may change, for
8026 real alpha channel support, it would be necessary to create
8027 a new image for each possible background.
8029 What I'm doing now is that a mask is created if we have
8030 boolean transparency information. Otherwise I'm using
8031 the frame's background color to combine the image with. */
8033 if (channels == 4)
8035 if (mask_img)
8036 XPutPixel (mask_img, x, y, *p > 0);
8037 ++p;
8042 if (NILP (image_spec_value (img->spec, QCbackground, NULL)))
8043 /* Set IMG's background color from the PNG image, unless the user
8044 overrode it. */
8046 png_color_16 *bg;
8047 if (png_get_bKGD (png_ptr, info_ptr, &bg))
8049 img->background = lookup_rgb_color (f, bg->red, bg->green, bg->blue);
8050 img->background_valid = 1;
8054 /* Remember colors allocated for this image. */
8055 img->colors = colors_in_color_table (&img->ncolors);
8056 free_color_table ();
8058 /* Clean up. */
8059 png_destroy_read_struct (&png_ptr, &info_ptr, &end_info);
8060 xfree (rows);
8061 xfree (pixels);
8063 img->width = width;
8064 img->height = height;
8066 /* Maybe fill in the background field while we have ximg handy. */
8067 IMAGE_BACKGROUND (img, f, ximg);
8069 /* Put the image into the pixmap, then free the X image and its buffer. */
8070 x_put_x_image (f, ximg, img->pixmap, width, height);
8071 x_destroy_x_image (ximg);
8073 /* Same for the mask. */
8074 if (mask_img)
8076 /* Fill in the background_transparent field while we have the mask
8077 handy. */
8078 image_background_transparent (img, f, mask_img);
8080 x_put_x_image (f, mask_img, img->mask, img->width, img->height);
8081 x_destroy_x_image (mask_img);
8084 UNGCPRO;
8085 return 1;
8088 #endif /* HAVE_PNG != 0 */
8092 /***********************************************************************
8093 JPEG
8094 ***********************************************************************/
8096 #if HAVE_JPEG
8098 /* Work around a warning about HAVE_STDLIB_H being redefined in
8099 jconfig.h. */
8100 #ifdef HAVE_STDLIB_H
8101 #define HAVE_STDLIB_H_1
8102 #undef HAVE_STDLIB_H
8103 #endif /* HAVE_STLIB_H */
8105 #include <jpeglib.h>
8106 #include <jerror.h>
8107 #include <setjmp.h>
8109 #ifdef HAVE_STLIB_H_1
8110 #define HAVE_STDLIB_H 1
8111 #endif
8113 static int jpeg_image_p P_ ((Lisp_Object object));
8114 static int jpeg_load P_ ((struct frame *f, struct image *img));
8116 /* The symbol `jpeg' identifying images of this type. */
8118 Lisp_Object Qjpeg;
8120 /* Indices of image specification fields in gs_format, below. */
8122 enum jpeg_keyword_index
8124 JPEG_TYPE,
8125 JPEG_DATA,
8126 JPEG_FILE,
8127 JPEG_ASCENT,
8128 JPEG_MARGIN,
8129 JPEG_RELIEF,
8130 JPEG_ALGORITHM,
8131 JPEG_HEURISTIC_MASK,
8132 JPEG_MASK,
8133 JPEG_BACKGROUND,
8134 JPEG_LAST
8137 /* Vector of image_keyword structures describing the format
8138 of valid user-defined image specifications. */
8140 static struct image_keyword jpeg_format[JPEG_LAST] =
8142 {":type", IMAGE_SYMBOL_VALUE, 1},
8143 {":data", IMAGE_STRING_VALUE, 0},
8144 {":file", IMAGE_STRING_VALUE, 0},
8145 {":ascent", IMAGE_ASCENT_VALUE, 0},
8146 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR, 0},
8147 {":relief", IMAGE_INTEGER_VALUE, 0},
8148 {":conversions", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
8149 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
8150 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
8151 {":background", IMAGE_STRING_OR_NIL_VALUE, 0}
8154 /* Structure describing the image type `jpeg'. */
8156 static struct image_type jpeg_type =
8158 &Qjpeg,
8159 jpeg_image_p,
8160 jpeg_load,
8161 x_clear_image,
8162 NULL
8166 /* Return non-zero if OBJECT is a valid JPEG image specification. */
8168 static int
8169 jpeg_image_p (object)
8170 Lisp_Object object;
8172 struct image_keyword fmt[JPEG_LAST];
8174 bcopy (jpeg_format, fmt, sizeof fmt);
8176 if (!parse_image_spec (object, fmt, JPEG_LAST, Qjpeg))
8177 return 0;
8179 /* Must specify either the :data or :file keyword. */
8180 return fmt[JPEG_FILE].count + fmt[JPEG_DATA].count == 1;
8184 struct my_jpeg_error_mgr
8186 struct jpeg_error_mgr pub;
8187 jmp_buf setjmp_buffer;
8191 static void
8192 my_error_exit (cinfo)
8193 j_common_ptr cinfo;
8195 struct my_jpeg_error_mgr *mgr = (struct my_jpeg_error_mgr *) cinfo->err;
8196 longjmp (mgr->setjmp_buffer, 1);
8200 /* Init source method for JPEG data source manager. Called by
8201 jpeg_read_header() before any data is actually read. See
8202 libjpeg.doc from the JPEG lib distribution. */
8204 static void
8205 our_init_source (cinfo)
8206 j_decompress_ptr cinfo;
8211 /* Fill input buffer method for JPEG data source manager. Called
8212 whenever more data is needed. We read the whole image in one step,
8213 so this only adds a fake end of input marker at the end. */
8215 static boolean
8216 our_fill_input_buffer (cinfo)
8217 j_decompress_ptr cinfo;
8219 /* Insert a fake EOI marker. */
8220 struct jpeg_source_mgr *src = cinfo->src;
8221 static JOCTET buffer[2];
8223 buffer[0] = (JOCTET) 0xFF;
8224 buffer[1] = (JOCTET) JPEG_EOI;
8226 src->next_input_byte = buffer;
8227 src->bytes_in_buffer = 2;
8228 return TRUE;
8232 /* Method to skip over NUM_BYTES bytes in the image data. CINFO->src
8233 is the JPEG data source manager. */
8235 static void
8236 our_skip_input_data (cinfo, num_bytes)
8237 j_decompress_ptr cinfo;
8238 long num_bytes;
8240 struct jpeg_source_mgr *src = (struct jpeg_source_mgr *) cinfo->src;
8242 if (src)
8244 if (num_bytes > src->bytes_in_buffer)
8245 ERREXIT (cinfo, JERR_INPUT_EOF);
8247 src->bytes_in_buffer -= num_bytes;
8248 src->next_input_byte += num_bytes;
8253 /* Method to terminate data source. Called by
8254 jpeg_finish_decompress() after all data has been processed. */
8256 static void
8257 our_term_source (cinfo)
8258 j_decompress_ptr cinfo;
8263 /* Set up the JPEG lib for reading an image from DATA which contains
8264 LEN bytes. CINFO is the decompression info structure created for
8265 reading the image. */
8267 static void
8268 jpeg_memory_src (cinfo, data, len)
8269 j_decompress_ptr cinfo;
8270 JOCTET *data;
8271 unsigned int len;
8273 struct jpeg_source_mgr *src;
8275 if (cinfo->src == NULL)
8277 /* First time for this JPEG object? */
8278 cinfo->src = (struct jpeg_source_mgr *)
8279 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_PERMANENT,
8280 sizeof (struct jpeg_source_mgr));
8281 src = (struct jpeg_source_mgr *) cinfo->src;
8282 src->next_input_byte = data;
8285 src = (struct jpeg_source_mgr *) cinfo->src;
8286 src->init_source = our_init_source;
8287 src->fill_input_buffer = our_fill_input_buffer;
8288 src->skip_input_data = our_skip_input_data;
8289 src->resync_to_restart = jpeg_resync_to_restart; /* Use default method. */
8290 src->term_source = our_term_source;
8291 src->bytes_in_buffer = len;
8292 src->next_input_byte = data;
8296 /* Load image IMG for use on frame F. Patterned after example.c
8297 from the JPEG lib. */
8299 static int
8300 jpeg_load (f, img)
8301 struct frame *f;
8302 struct image *img;
8304 struct jpeg_decompress_struct cinfo;
8305 struct my_jpeg_error_mgr mgr;
8306 Lisp_Object file, specified_file;
8307 Lisp_Object specified_data;
8308 FILE * volatile fp = NULL;
8309 JSAMPARRAY buffer;
8310 int row_stride, x, y;
8311 XImage *ximg = NULL;
8312 int rc;
8313 unsigned long *colors;
8314 int width, height;
8315 struct gcpro gcpro1;
8317 /* Open the JPEG file. */
8318 specified_file = image_spec_value (img->spec, QCfile, NULL);
8319 specified_data = image_spec_value (img->spec, QCdata, NULL);
8320 file = Qnil;
8321 GCPRO1 (file);
8323 if (NILP (specified_data))
8325 file = x_find_image_file (specified_file);
8326 if (!STRINGP (file))
8328 image_error ("Cannot find image file `%s'", specified_file, Qnil);
8329 UNGCPRO;
8330 return 0;
8333 fp = fopen (SDATA (file), "r");
8334 if (fp == NULL)
8336 image_error ("Cannot open `%s'", file, Qnil);
8337 UNGCPRO;
8338 return 0;
8342 /* Customize libjpeg's error handling to call my_error_exit when an
8343 error is detected. This function will perform a longjmp. */
8344 cinfo.err = jpeg_std_error (&mgr.pub);
8345 mgr.pub.error_exit = my_error_exit;
8347 if ((rc = setjmp (mgr.setjmp_buffer)) != 0)
8349 if (rc == 1)
8351 /* Called from my_error_exit. Display a JPEG error. */
8352 char buffer[JMSG_LENGTH_MAX];
8353 cinfo.err->format_message ((j_common_ptr) &cinfo, buffer);
8354 image_error ("Error reading JPEG image `%s': %s", img->spec,
8355 build_string (buffer));
8358 /* Close the input file and destroy the JPEG object. */
8359 if (fp)
8360 fclose ((FILE *) fp);
8361 jpeg_destroy_decompress (&cinfo);
8363 /* If we already have an XImage, free that. */
8364 x_destroy_x_image (ximg);
8366 /* Free pixmap and colors. */
8367 x_clear_image (f, img);
8369 UNGCPRO;
8370 return 0;
8373 /* Create the JPEG decompression object. Let it read from fp.
8374 Read the JPEG image header. */
8375 jpeg_create_decompress (&cinfo);
8377 if (NILP (specified_data))
8378 jpeg_stdio_src (&cinfo, (FILE *) fp);
8379 else
8380 jpeg_memory_src (&cinfo, SDATA (specified_data),
8381 SBYTES (specified_data));
8383 jpeg_read_header (&cinfo, TRUE);
8385 /* Customize decompression so that color quantization will be used.
8386 Start decompression. */
8387 cinfo.quantize_colors = TRUE;
8388 jpeg_start_decompress (&cinfo);
8389 width = img->width = cinfo.output_width;
8390 height = img->height = cinfo.output_height;
8392 /* Create X image and pixmap. */
8393 if (!x_create_x_image_and_pixmap (f, width, height, 0, &ximg, &img->pixmap))
8394 longjmp (mgr.setjmp_buffer, 2);
8396 /* Allocate colors. When color quantization is used,
8397 cinfo.actual_number_of_colors has been set with the number of
8398 colors generated, and cinfo.colormap is a two-dimensional array
8399 of color indices in the range 0..cinfo.actual_number_of_colors.
8400 No more than 255 colors will be generated. */
8402 int i, ir, ig, ib;
8404 if (cinfo.out_color_components > 2)
8405 ir = 0, ig = 1, ib = 2;
8406 else if (cinfo.out_color_components > 1)
8407 ir = 0, ig = 1, ib = 0;
8408 else
8409 ir = 0, ig = 0, ib = 0;
8411 /* Use the color table mechanism because it handles colors that
8412 cannot be allocated nicely. Such colors will be replaced with
8413 a default color, and we don't have to care about which colors
8414 can be freed safely, and which can't. */
8415 init_color_table ();
8416 colors = (unsigned long *) alloca (cinfo.actual_number_of_colors
8417 * sizeof *colors);
8419 for (i = 0; i < cinfo.actual_number_of_colors; ++i)
8421 /* Multiply RGB values with 255 because X expects RGB values
8422 in the range 0..0xffff. */
8423 int r = cinfo.colormap[ir][i] << 8;
8424 int g = cinfo.colormap[ig][i] << 8;
8425 int b = cinfo.colormap[ib][i] << 8;
8426 colors[i] = lookup_rgb_color (f, r, g, b);
8429 /* Remember those colors actually allocated. */
8430 img->colors = colors_in_color_table (&img->ncolors);
8431 free_color_table ();
8434 /* Read pixels. */
8435 row_stride = width * cinfo.output_components;
8436 buffer = cinfo.mem->alloc_sarray ((j_common_ptr) &cinfo, JPOOL_IMAGE,
8437 row_stride, 1);
8438 for (y = 0; y < height; ++y)
8440 jpeg_read_scanlines (&cinfo, buffer, 1);
8441 for (x = 0; x < cinfo.output_width; ++x)
8442 XPutPixel (ximg, x, y, colors[buffer[0][x]]);
8445 /* Clean up. */
8446 jpeg_finish_decompress (&cinfo);
8447 jpeg_destroy_decompress (&cinfo);
8448 if (fp)
8449 fclose ((FILE *) fp);
8451 /* Maybe fill in the background field while we have ximg handy. */
8452 if (NILP (image_spec_value (img->spec, QCbackground, NULL)))
8453 IMAGE_BACKGROUND (img, f, ximg);
8455 /* Put the image into the pixmap. */
8456 x_put_x_image (f, ximg, img->pixmap, width, height);
8457 x_destroy_x_image (ximg);
8458 UNGCPRO;
8459 return 1;
8462 #endif /* HAVE_JPEG */
8466 /***********************************************************************
8467 TIFF
8468 ***********************************************************************/
8470 #if HAVE_TIFF
8472 #include <tiffio.h>
8474 static int tiff_image_p P_ ((Lisp_Object object));
8475 static int tiff_load P_ ((struct frame *f, struct image *img));
8477 /* The symbol `tiff' identifying images of this type. */
8479 Lisp_Object Qtiff;
8481 /* Indices of image specification fields in tiff_format, below. */
8483 enum tiff_keyword_index
8485 TIFF_TYPE,
8486 TIFF_DATA,
8487 TIFF_FILE,
8488 TIFF_ASCENT,
8489 TIFF_MARGIN,
8490 TIFF_RELIEF,
8491 TIFF_ALGORITHM,
8492 TIFF_HEURISTIC_MASK,
8493 TIFF_MASK,
8494 TIFF_BACKGROUND,
8495 TIFF_LAST
8498 /* Vector of image_keyword structures describing the format
8499 of valid user-defined image specifications. */
8501 static struct image_keyword tiff_format[TIFF_LAST] =
8503 {":type", IMAGE_SYMBOL_VALUE, 1},
8504 {":data", IMAGE_STRING_VALUE, 0},
8505 {":file", IMAGE_STRING_VALUE, 0},
8506 {":ascent", IMAGE_ASCENT_VALUE, 0},
8507 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR, 0},
8508 {":relief", IMAGE_INTEGER_VALUE, 0},
8509 {":conversions", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
8510 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
8511 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
8512 {":background", IMAGE_STRING_OR_NIL_VALUE, 0}
8515 /* Structure describing the image type `tiff'. */
8517 static struct image_type tiff_type =
8519 &Qtiff,
8520 tiff_image_p,
8521 tiff_load,
8522 x_clear_image,
8523 NULL
8527 /* Return non-zero if OBJECT is a valid TIFF image specification. */
8529 static int
8530 tiff_image_p (object)
8531 Lisp_Object object;
8533 struct image_keyword fmt[TIFF_LAST];
8534 bcopy (tiff_format, fmt, sizeof fmt);
8536 if (!parse_image_spec (object, fmt, TIFF_LAST, Qtiff))
8537 return 0;
8539 /* Must specify either the :data or :file keyword. */
8540 return fmt[TIFF_FILE].count + fmt[TIFF_DATA].count == 1;
8544 /* Reading from a memory buffer for TIFF images Based on the PNG
8545 memory source, but we have to provide a lot of extra functions.
8546 Blah.
8548 We really only need to implement read and seek, but I am not
8549 convinced that the TIFF library is smart enough not to destroy
8550 itself if we only hand it the function pointers we need to
8551 override. */
8553 typedef struct
8555 unsigned char *bytes;
8556 size_t len;
8557 int index;
8559 tiff_memory_source;
8562 static size_t
8563 tiff_read_from_memory (data, buf, size)
8564 thandle_t data;
8565 tdata_t buf;
8566 tsize_t size;
8568 tiff_memory_source *src = (tiff_memory_source *) data;
8570 if (size > src->len - src->index)
8571 return (size_t) -1;
8572 bcopy (src->bytes + src->index, buf, size);
8573 src->index += size;
8574 return size;
8578 static size_t
8579 tiff_write_from_memory (data, buf, size)
8580 thandle_t data;
8581 tdata_t buf;
8582 tsize_t size;
8584 return (size_t) -1;
8588 static toff_t
8589 tiff_seek_in_memory (data, off, whence)
8590 thandle_t data;
8591 toff_t off;
8592 int whence;
8594 tiff_memory_source *src = (tiff_memory_source *) data;
8595 int idx;
8597 switch (whence)
8599 case SEEK_SET: /* Go from beginning of source. */
8600 idx = off;
8601 break;
8603 case SEEK_END: /* Go from end of source. */
8604 idx = src->len + off;
8605 break;
8607 case SEEK_CUR: /* Go from current position. */
8608 idx = src->index + off;
8609 break;
8611 default: /* Invalid `whence'. */
8612 return -1;
8615 if (idx > src->len || idx < 0)
8616 return -1;
8618 src->index = idx;
8619 return src->index;
8623 static int
8624 tiff_close_memory (data)
8625 thandle_t data;
8627 /* NOOP */
8628 return 0;
8632 static int
8633 tiff_mmap_memory (data, pbase, psize)
8634 thandle_t data;
8635 tdata_t *pbase;
8636 toff_t *psize;
8638 /* It is already _IN_ memory. */
8639 return 0;
8643 static void
8644 tiff_unmap_memory (data, base, size)
8645 thandle_t data;
8646 tdata_t base;
8647 toff_t size;
8649 /* We don't need to do this. */
8653 static toff_t
8654 tiff_size_of_memory (data)
8655 thandle_t data;
8657 return ((tiff_memory_source *) data)->len;
8661 static void
8662 tiff_error_handler (title, format, ap)
8663 const char *title, *format;
8664 va_list ap;
8666 char buf[512];
8667 int len;
8669 len = sprintf (buf, "TIFF error: %s ", title);
8670 vsprintf (buf + len, format, ap);
8671 add_to_log (buf, Qnil, Qnil);
8675 static void
8676 tiff_warning_handler (title, format, ap)
8677 const char *title, *format;
8678 va_list ap;
8680 char buf[512];
8681 int len;
8683 len = sprintf (buf, "TIFF warning: %s ", title);
8684 vsprintf (buf + len, format, ap);
8685 add_to_log (buf, Qnil, Qnil);
8689 /* Load TIFF image IMG for use on frame F. Value is non-zero if
8690 successful. */
8692 static int
8693 tiff_load (f, img)
8694 struct frame *f;
8695 struct image *img;
8697 Lisp_Object file, specified_file;
8698 Lisp_Object specified_data;
8699 TIFF *tiff;
8700 int width, height, x, y;
8701 uint32 *buf;
8702 int rc;
8703 XImage *ximg;
8704 struct gcpro gcpro1;
8705 tiff_memory_source memsrc;
8707 specified_file = image_spec_value (img->spec, QCfile, NULL);
8708 specified_data = image_spec_value (img->spec, QCdata, NULL);
8709 file = Qnil;
8710 GCPRO1 (file);
8712 TIFFSetErrorHandler (tiff_error_handler);
8713 TIFFSetWarningHandler (tiff_warning_handler);
8715 if (NILP (specified_data))
8717 /* Read from a file */
8718 file = x_find_image_file (specified_file);
8719 if (!STRINGP (file))
8721 image_error ("Cannot find image file `%s'", file, Qnil);
8722 UNGCPRO;
8723 return 0;
8726 /* Try to open the image file. */
8727 tiff = TIFFOpen (SDATA (file), "r");
8728 if (tiff == NULL)
8730 image_error ("Cannot open `%s'", file, Qnil);
8731 UNGCPRO;
8732 return 0;
8735 else
8737 /* Memory source! */
8738 memsrc.bytes = SDATA (specified_data);
8739 memsrc.len = SBYTES (specified_data);
8740 memsrc.index = 0;
8742 tiff = TIFFClientOpen ("memory_source", "r", &memsrc,
8743 (TIFFReadWriteProc) tiff_read_from_memory,
8744 (TIFFReadWriteProc) tiff_write_from_memory,
8745 tiff_seek_in_memory,
8746 tiff_close_memory,
8747 tiff_size_of_memory,
8748 tiff_mmap_memory,
8749 tiff_unmap_memory);
8751 if (!tiff)
8753 image_error ("Cannot open memory source for `%s'", img->spec, Qnil);
8754 UNGCPRO;
8755 return 0;
8759 /* Get width and height of the image, and allocate a raster buffer
8760 of width x height 32-bit values. */
8761 TIFFGetField (tiff, TIFFTAG_IMAGEWIDTH, &width);
8762 TIFFGetField (tiff, TIFFTAG_IMAGELENGTH, &height);
8763 buf = (uint32 *) xmalloc (width * height * sizeof *buf);
8765 rc = TIFFReadRGBAImage (tiff, width, height, buf, 0);
8766 TIFFClose (tiff);
8767 if (!rc)
8769 image_error ("Error reading TIFF image `%s'", img->spec, Qnil);
8770 xfree (buf);
8771 UNGCPRO;
8772 return 0;
8775 /* Create the X image and pixmap. */
8776 if (!x_create_x_image_and_pixmap (f, width, height, 0, &ximg, &img->pixmap))
8778 xfree (buf);
8779 UNGCPRO;
8780 return 0;
8783 /* Initialize the color table. */
8784 init_color_table ();
8786 /* Process the pixel raster. Origin is in the lower-left corner. */
8787 for (y = 0; y < height; ++y)
8789 uint32 *row = buf + y * width;
8791 for (x = 0; x < width; ++x)
8793 uint32 abgr = row[x];
8794 int r = TIFFGetR (abgr) << 8;
8795 int g = TIFFGetG (abgr) << 8;
8796 int b = TIFFGetB (abgr) << 8;
8797 XPutPixel (ximg, x, height - 1 - y, lookup_rgb_color (f, r, g, b));
8801 /* Remember the colors allocated for the image. Free the color table. */
8802 img->colors = colors_in_color_table (&img->ncolors);
8803 free_color_table ();
8805 img->width = width;
8806 img->height = height;
8808 /* Maybe fill in the background field while we have ximg handy. */
8809 if (NILP (image_spec_value (img->spec, QCbackground, NULL)))
8810 IMAGE_BACKGROUND (img, f, ximg);
8812 /* Put the image into the pixmap, then free the X image and its buffer. */
8813 x_put_x_image (f, ximg, img->pixmap, width, height);
8814 x_destroy_x_image (ximg);
8815 xfree (buf);
8817 UNGCPRO;
8818 return 1;
8821 #endif /* HAVE_TIFF != 0 */
8825 /***********************************************************************
8827 ***********************************************************************/
8829 #if HAVE_GIF
8831 #include <gif_lib.h>
8833 static int gif_image_p P_ ((Lisp_Object object));
8834 static int gif_load P_ ((struct frame *f, struct image *img));
8836 /* The symbol `gif' identifying images of this type. */
8838 Lisp_Object Qgif;
8840 /* Indices of image specification fields in gif_format, below. */
8842 enum gif_keyword_index
8844 GIF_TYPE,
8845 GIF_DATA,
8846 GIF_FILE,
8847 GIF_ASCENT,
8848 GIF_MARGIN,
8849 GIF_RELIEF,
8850 GIF_ALGORITHM,
8851 GIF_HEURISTIC_MASK,
8852 GIF_MASK,
8853 GIF_IMAGE,
8854 GIF_BACKGROUND,
8855 GIF_LAST
8858 /* Vector of image_keyword structures describing the format
8859 of valid user-defined image specifications. */
8861 static struct image_keyword gif_format[GIF_LAST] =
8863 {":type", IMAGE_SYMBOL_VALUE, 1},
8864 {":data", IMAGE_STRING_VALUE, 0},
8865 {":file", IMAGE_STRING_VALUE, 0},
8866 {":ascent", IMAGE_ASCENT_VALUE, 0},
8867 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR, 0},
8868 {":relief", IMAGE_INTEGER_VALUE, 0},
8869 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
8870 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
8871 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
8872 {":image", IMAGE_NON_NEGATIVE_INTEGER_VALUE, 0},
8873 {":background", IMAGE_STRING_OR_NIL_VALUE, 0}
8876 /* Structure describing the image type `gif'. */
8878 static struct image_type gif_type =
8880 &Qgif,
8881 gif_image_p,
8882 gif_load,
8883 x_clear_image,
8884 NULL
8888 /* Return non-zero if OBJECT is a valid GIF image specification. */
8890 static int
8891 gif_image_p (object)
8892 Lisp_Object object;
8894 struct image_keyword fmt[GIF_LAST];
8895 bcopy (gif_format, fmt, sizeof fmt);
8897 if (!parse_image_spec (object, fmt, GIF_LAST, Qgif))
8898 return 0;
8900 /* Must specify either the :data or :file keyword. */
8901 return fmt[GIF_FILE].count + fmt[GIF_DATA].count == 1;
8905 /* Reading a GIF image from memory
8906 Based on the PNG memory stuff to a certain extent. */
8908 typedef struct
8910 unsigned char *bytes;
8911 size_t len;
8912 int index;
8914 gif_memory_source;
8917 /* Make the current memory source available to gif_read_from_memory.
8918 It's done this way because not all versions of libungif support
8919 a UserData field in the GifFileType structure. */
8920 static gif_memory_source *current_gif_memory_src;
8922 static int
8923 gif_read_from_memory (file, buf, len)
8924 GifFileType *file;
8925 GifByteType *buf;
8926 int len;
8928 gif_memory_source *src = current_gif_memory_src;
8930 if (len > src->len - src->index)
8931 return -1;
8933 bcopy (src->bytes + src->index, buf, len);
8934 src->index += len;
8935 return len;
8939 /* Load GIF image IMG for use on frame F. Value is non-zero if
8940 successful. */
8942 static int
8943 gif_load (f, img)
8944 struct frame *f;
8945 struct image *img;
8947 Lisp_Object file, specified_file;
8948 Lisp_Object specified_data;
8949 int rc, width, height, x, y, i;
8950 XImage *ximg;
8951 ColorMapObject *gif_color_map;
8952 unsigned long pixel_colors[256];
8953 GifFileType *gif;
8954 struct gcpro gcpro1;
8955 Lisp_Object image;
8956 int ino, image_left, image_top, image_width, image_height;
8957 gif_memory_source memsrc;
8958 unsigned char *raster;
8960 specified_file = image_spec_value (img->spec, QCfile, NULL);
8961 specified_data = image_spec_value (img->spec, QCdata, NULL);
8962 file = Qnil;
8963 GCPRO1 (file);
8965 if (NILP (specified_data))
8967 file = x_find_image_file (specified_file);
8968 if (!STRINGP (file))
8970 image_error ("Cannot find image file `%s'", specified_file, Qnil);
8971 UNGCPRO;
8972 return 0;
8975 /* Open the GIF file. */
8976 gif = DGifOpenFileName (SDATA (file));
8977 if (gif == NULL)
8979 image_error ("Cannot open `%s'", file, Qnil);
8980 UNGCPRO;
8981 return 0;
8984 else
8986 /* Read from memory! */
8987 current_gif_memory_src = &memsrc;
8988 memsrc.bytes = SDATA (specified_data);
8989 memsrc.len = SBYTES (specified_data);
8990 memsrc.index = 0;
8992 gif = DGifOpen(&memsrc, gif_read_from_memory);
8993 if (!gif)
8995 image_error ("Cannot open memory source `%s'", img->spec, Qnil);
8996 UNGCPRO;
8997 return 0;
9001 /* Read entire contents. */
9002 rc = DGifSlurp (gif);
9003 if (rc == GIF_ERROR)
9005 image_error ("Error reading `%s'", img->spec, Qnil);
9006 DGifCloseFile (gif);
9007 UNGCPRO;
9008 return 0;
9011 image = image_spec_value (img->spec, QCindex, NULL);
9012 ino = INTEGERP (image) ? XFASTINT (image) : 0;
9013 if (ino >= gif->ImageCount)
9015 image_error ("Invalid image number `%s' in image `%s'",
9016 image, img->spec);
9017 DGifCloseFile (gif);
9018 UNGCPRO;
9019 return 0;
9022 width = img->width = max (gif->SWidth, gif->Image.Left + gif->Image.Width);
9023 height = img->height = max (gif->SHeight, gif->Image.Top + gif->Image.Height);
9025 /* Create the X image and pixmap. */
9026 if (!x_create_x_image_and_pixmap (f, width, height, 0, &ximg, &img->pixmap))
9028 DGifCloseFile (gif);
9029 UNGCPRO;
9030 return 0;
9033 /* Allocate colors. */
9034 gif_color_map = gif->SavedImages[ino].ImageDesc.ColorMap;
9035 if (!gif_color_map)
9036 gif_color_map = gif->SColorMap;
9037 init_color_table ();
9038 bzero (pixel_colors, sizeof pixel_colors);
9040 for (i = 0; i < gif_color_map->ColorCount; ++i)
9042 int r = gif_color_map->Colors[i].Red << 8;
9043 int g = gif_color_map->Colors[i].Green << 8;
9044 int b = gif_color_map->Colors[i].Blue << 8;
9045 pixel_colors[i] = lookup_rgb_color (f, r, g, b);
9048 img->colors = colors_in_color_table (&img->ncolors);
9049 free_color_table ();
9051 /* Clear the part of the screen image that are not covered by
9052 the image from the GIF file. Full animated GIF support
9053 requires more than can be done here (see the gif89 spec,
9054 disposal methods). Let's simply assume that the part
9055 not covered by a sub-image is in the frame's background color. */
9056 image_top = gif->SavedImages[ino].ImageDesc.Top;
9057 image_left = gif->SavedImages[ino].ImageDesc.Left;
9058 image_width = gif->SavedImages[ino].ImageDesc.Width;
9059 image_height = gif->SavedImages[ino].ImageDesc.Height;
9061 for (y = 0; y < image_top; ++y)
9062 for (x = 0; x < width; ++x)
9063 XPutPixel (ximg, x, y, FRAME_BACKGROUND_PIXEL (f));
9065 for (y = image_top + image_height; y < height; ++y)
9066 for (x = 0; x < width; ++x)
9067 XPutPixel (ximg, x, y, FRAME_BACKGROUND_PIXEL (f));
9069 for (y = image_top; y < image_top + image_height; ++y)
9071 for (x = 0; x < image_left; ++x)
9072 XPutPixel (ximg, x, y, FRAME_BACKGROUND_PIXEL (f));
9073 for (x = image_left + image_width; x < width; ++x)
9074 XPutPixel (ximg, x, y, FRAME_BACKGROUND_PIXEL (f));
9077 /* Read the GIF image into the X image. We use a local variable
9078 `raster' here because RasterBits below is a char *, and invites
9079 problems with bytes >= 0x80. */
9080 raster = (unsigned char *) gif->SavedImages[ino].RasterBits;
9082 if (gif->SavedImages[ino].ImageDesc.Interlace)
9084 static int interlace_start[] = {0, 4, 2, 1};
9085 static int interlace_increment[] = {8, 8, 4, 2};
9086 int pass;
9087 int row = interlace_start[0];
9089 pass = 0;
9091 for (y = 0; y < image_height; y++)
9093 if (row >= image_height)
9095 row = interlace_start[++pass];
9096 while (row >= image_height)
9097 row = interlace_start[++pass];
9100 for (x = 0; x < image_width; x++)
9102 int i = raster[(y * image_width) + x];
9103 XPutPixel (ximg, x + image_left, row + image_top,
9104 pixel_colors[i]);
9107 row += interlace_increment[pass];
9110 else
9112 for (y = 0; y < image_height; ++y)
9113 for (x = 0; x < image_width; ++x)
9115 int i = raster[y * image_width + x];
9116 XPutPixel (ximg, x + image_left, y + image_top, pixel_colors[i]);
9120 DGifCloseFile (gif);
9122 /* Maybe fill in the background field while we have ximg handy. */
9123 if (NILP (image_spec_value (img->spec, QCbackground, NULL)))
9124 IMAGE_BACKGROUND (img, f, ximg);
9126 /* Put the image into the pixmap, then free the X image and its buffer. */
9127 x_put_x_image (f, ximg, img->pixmap, width, height);
9128 x_destroy_x_image (ximg);
9130 UNGCPRO;
9131 return 1;
9134 #endif /* HAVE_GIF != 0 */
9138 /***********************************************************************
9139 Ghostscript
9140 ***********************************************************************/
9142 static int gs_image_p P_ ((Lisp_Object object));
9143 static int gs_load P_ ((struct frame *f, struct image *img));
9144 static void gs_clear_image P_ ((struct frame *f, struct image *img));
9146 /* The symbol `postscript' identifying images of this type. */
9148 Lisp_Object Qpostscript;
9150 /* Keyword symbols. */
9152 Lisp_Object QCloader, QCbounding_box, QCpt_width, QCpt_height;
9154 /* Indices of image specification fields in gs_format, below. */
9156 enum gs_keyword_index
9158 GS_TYPE,
9159 GS_PT_WIDTH,
9160 GS_PT_HEIGHT,
9161 GS_FILE,
9162 GS_LOADER,
9163 GS_BOUNDING_BOX,
9164 GS_ASCENT,
9165 GS_MARGIN,
9166 GS_RELIEF,
9167 GS_ALGORITHM,
9168 GS_HEURISTIC_MASK,
9169 GS_MASK,
9170 GS_BACKGROUND,
9171 GS_LAST
9174 /* Vector of image_keyword structures describing the format
9175 of valid user-defined image specifications. */
9177 static struct image_keyword gs_format[GS_LAST] =
9179 {":type", IMAGE_SYMBOL_VALUE, 1},
9180 {":pt-width", IMAGE_POSITIVE_INTEGER_VALUE, 1},
9181 {":pt-height", IMAGE_POSITIVE_INTEGER_VALUE, 1},
9182 {":file", IMAGE_STRING_VALUE, 1},
9183 {":loader", IMAGE_FUNCTION_VALUE, 0},
9184 {":bounding-box", IMAGE_DONT_CHECK_VALUE_TYPE, 1},
9185 {":ascent", IMAGE_ASCENT_VALUE, 0},
9186 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR, 0},
9187 {":relief", IMAGE_INTEGER_VALUE, 0},
9188 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
9189 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
9190 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
9191 {":background", IMAGE_STRING_OR_NIL_VALUE, 0}
9194 /* Structure describing the image type `ghostscript'. */
9196 static struct image_type gs_type =
9198 &Qpostscript,
9199 gs_image_p,
9200 gs_load,
9201 gs_clear_image,
9202 NULL
9206 /* Free X resources of Ghostscript image IMG which is used on frame F. */
9208 static void
9209 gs_clear_image (f, img)
9210 struct frame *f;
9211 struct image *img;
9213 /* IMG->data.ptr_val may contain a recorded colormap. */
9214 xfree (img->data.ptr_val);
9215 x_clear_image (f, img);
9219 /* Return non-zero if OBJECT is a valid Ghostscript image
9220 specification. */
9222 static int
9223 gs_image_p (object)
9224 Lisp_Object object;
9226 struct image_keyword fmt[GS_LAST];
9227 Lisp_Object tem;
9228 int i;
9230 bcopy (gs_format, fmt, sizeof fmt);
9232 if (!parse_image_spec (object, fmt, GS_LAST, Qpostscript))
9233 return 0;
9235 /* Bounding box must be a list or vector containing 4 integers. */
9236 tem = fmt[GS_BOUNDING_BOX].value;
9237 if (CONSP (tem))
9239 for (i = 0; i < 4; ++i, tem = XCDR (tem))
9240 if (!CONSP (tem) || !INTEGERP (XCAR (tem)))
9241 return 0;
9242 if (!NILP (tem))
9243 return 0;
9245 else if (VECTORP (tem))
9247 if (XVECTOR (tem)->size != 4)
9248 return 0;
9249 for (i = 0; i < 4; ++i)
9250 if (!INTEGERP (XVECTOR (tem)->contents[i]))
9251 return 0;
9253 else
9254 return 0;
9256 return 1;
9260 /* Load Ghostscript image IMG for use on frame F. Value is non-zero
9261 if successful. */
9263 static int
9264 gs_load (f, img)
9265 struct frame *f;
9266 struct image *img;
9268 char buffer[100];
9269 Lisp_Object window_and_pixmap_id = Qnil, loader, pt_height, pt_width;
9270 struct gcpro gcpro1, gcpro2;
9271 Lisp_Object frame;
9272 double in_width, in_height;
9273 Lisp_Object pixel_colors = Qnil;
9275 /* Compute pixel size of pixmap needed from the given size in the
9276 image specification. Sizes in the specification are in pt. 1 pt
9277 = 1/72 in, xdpi and ydpi are stored in the frame's X display
9278 info. */
9279 pt_width = image_spec_value (img->spec, QCpt_width, NULL);
9280 in_width = XFASTINT (pt_width) / 72.0;
9281 img->width = in_width * FRAME_X_DISPLAY_INFO (f)->resx;
9282 pt_height = image_spec_value (img->spec, QCpt_height, NULL);
9283 in_height = XFASTINT (pt_height) / 72.0;
9284 img->height = in_height * FRAME_X_DISPLAY_INFO (f)->resy;
9286 /* Create the pixmap. */
9287 xassert (img->pixmap == None);
9288 img->pixmap = XCreatePixmap (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
9289 img->width, img->height,
9290 DefaultDepthOfScreen (FRAME_X_SCREEN (f)));
9292 if (!img->pixmap)
9294 image_error ("Unable to create pixmap for `%s'", img->spec, Qnil);
9295 return 0;
9298 /* Call the loader to fill the pixmap. It returns a process object
9299 if successful. We do not record_unwind_protect here because
9300 other places in redisplay like calling window scroll functions
9301 don't either. Let the Lisp loader use `unwind-protect' instead. */
9302 GCPRO2 (window_and_pixmap_id, pixel_colors);
9304 sprintf (buffer, "%lu %lu",
9305 (unsigned long) FRAME_X_WINDOW (f),
9306 (unsigned long) img->pixmap);
9307 window_and_pixmap_id = build_string (buffer);
9309 sprintf (buffer, "%lu %lu",
9310 FRAME_FOREGROUND_PIXEL (f),
9311 FRAME_BACKGROUND_PIXEL (f));
9312 pixel_colors = build_string (buffer);
9314 XSETFRAME (frame, f);
9315 loader = image_spec_value (img->spec, QCloader, NULL);
9316 if (NILP (loader))
9317 loader = intern ("gs-load-image");
9319 img->data.lisp_val = call6 (loader, frame, img->spec,
9320 make_number (img->width),
9321 make_number (img->height),
9322 window_and_pixmap_id,
9323 pixel_colors);
9324 UNGCPRO;
9325 return PROCESSP (img->data.lisp_val);
9329 /* Kill the Ghostscript process that was started to fill PIXMAP on
9330 frame F. Called from XTread_socket when receiving an event
9331 telling Emacs that Ghostscript has finished drawing. */
9333 void
9334 x_kill_gs_process (pixmap, f)
9335 Pixmap pixmap;
9336 struct frame *f;
9338 struct image_cache *c = FRAME_X_IMAGE_CACHE (f);
9339 int class, i;
9340 struct image *img;
9342 /* Find the image containing PIXMAP. */
9343 for (i = 0; i < c->used; ++i)
9344 if (c->images[i]->pixmap == pixmap)
9345 break;
9347 /* Should someone in between have cleared the image cache, for
9348 instance, give up. */
9349 if (i == c->used)
9350 return;
9352 /* Kill the GS process. We should have found PIXMAP in the image
9353 cache and its image should contain a process object. */
9354 img = c->images[i];
9355 xassert (PROCESSP (img->data.lisp_val));
9356 Fkill_process (img->data.lisp_val, Qnil);
9357 img->data.lisp_val = Qnil;
9359 /* On displays with a mutable colormap, figure out the colors
9360 allocated for the image by looking at the pixels of an XImage for
9361 img->pixmap. */
9362 class = FRAME_X_VISUAL (f)->class;
9363 if (class != StaticColor && class != StaticGray && class != TrueColor)
9365 XImage *ximg;
9367 BLOCK_INPUT;
9369 /* Try to get an XImage for img->pixmep. */
9370 ximg = XGetImage (FRAME_X_DISPLAY (f), img->pixmap,
9371 0, 0, img->width, img->height, ~0, ZPixmap);
9372 if (ximg)
9374 int x, y;
9376 /* Initialize the color table. */
9377 init_color_table ();
9379 /* For each pixel of the image, look its color up in the
9380 color table. After having done so, the color table will
9381 contain an entry for each color used by the image. */
9382 for (y = 0; y < img->height; ++y)
9383 for (x = 0; x < img->width; ++x)
9385 unsigned long pixel = XGetPixel (ximg, x, y);
9386 lookup_pixel_color (f, pixel);
9389 /* Record colors in the image. Free color table and XImage. */
9390 img->colors = colors_in_color_table (&img->ncolors);
9391 free_color_table ();
9392 XDestroyImage (ximg);
9394 #if 0 /* This doesn't seem to be the case. If we free the colors
9395 here, we get a BadAccess later in x_clear_image when
9396 freeing the colors. */
9397 /* We have allocated colors once, but Ghostscript has also
9398 allocated colors on behalf of us. So, to get the
9399 reference counts right, free them once. */
9400 if (img->ncolors)
9401 x_free_colors (f, img->colors, img->ncolors);
9402 #endif
9404 else
9405 image_error ("Cannot get X image of `%s'; colors will not be freed",
9406 img->spec, Qnil);
9408 UNBLOCK_INPUT;
9411 /* Now that we have the pixmap, compute mask and transform the
9412 image if requested. */
9413 BLOCK_INPUT;
9414 postprocess_image (f, img);
9415 UNBLOCK_INPUT;
9420 /***********************************************************************
9421 Window properties
9422 ***********************************************************************/
9424 DEFUN ("x-change-window-property", Fx_change_window_property,
9425 Sx_change_window_property, 2, 3, 0,
9426 doc: /* Change window property PROP to VALUE on the X window of FRAME.
9427 PROP and VALUE must be strings. FRAME nil or omitted means use the
9428 selected frame. Value is VALUE. */)
9429 (prop, value, frame)
9430 Lisp_Object frame, prop, value;
9432 struct frame *f = check_x_frame (frame);
9433 Atom prop_atom;
9435 CHECK_STRING (prop);
9436 CHECK_STRING (value);
9438 BLOCK_INPUT;
9439 prop_atom = XInternAtom (FRAME_X_DISPLAY (f), SDATA (prop), False);
9440 XChangeProperty (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
9441 prop_atom, XA_STRING, 8, PropModeReplace,
9442 SDATA (value), SCHARS (value));
9444 /* Make sure the property is set when we return. */
9445 XFlush (FRAME_X_DISPLAY (f));
9446 UNBLOCK_INPUT;
9448 return value;
9452 DEFUN ("x-delete-window-property", Fx_delete_window_property,
9453 Sx_delete_window_property, 1, 2, 0,
9454 doc: /* Remove window property PROP from X window of FRAME.
9455 FRAME nil or omitted means use the selected frame. Value is PROP. */)
9456 (prop, frame)
9457 Lisp_Object prop, frame;
9459 struct frame *f = check_x_frame (frame);
9460 Atom prop_atom;
9462 CHECK_STRING (prop);
9463 BLOCK_INPUT;
9464 prop_atom = XInternAtom (FRAME_X_DISPLAY (f), SDATA (prop), False);
9465 XDeleteProperty (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), prop_atom);
9467 /* Make sure the property is removed when we return. */
9468 XFlush (FRAME_X_DISPLAY (f));
9469 UNBLOCK_INPUT;
9471 return prop;
9475 DEFUN ("x-window-property", Fx_window_property, Sx_window_property,
9476 1, 2, 0,
9477 doc: /* Value is the value of window property PROP on FRAME.
9478 If FRAME is nil or omitted, use the selected frame. Value is nil
9479 if FRAME hasn't a property with name PROP or if PROP has no string
9480 value. */)
9481 (prop, frame)
9482 Lisp_Object prop, frame;
9484 struct frame *f = check_x_frame (frame);
9485 Atom prop_atom;
9486 int rc;
9487 Lisp_Object prop_value = Qnil;
9488 char *tmp_data = NULL;
9489 Atom actual_type;
9490 int actual_format;
9491 unsigned long actual_size, bytes_remaining;
9493 CHECK_STRING (prop);
9494 BLOCK_INPUT;
9495 prop_atom = XInternAtom (FRAME_X_DISPLAY (f), SDATA (prop), False);
9496 rc = XGetWindowProperty (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
9497 prop_atom, 0, 0, False, XA_STRING,
9498 &actual_type, &actual_format, &actual_size,
9499 &bytes_remaining, (unsigned char **) &tmp_data);
9500 if (rc == Success)
9502 int size = bytes_remaining;
9504 XFree (tmp_data);
9505 tmp_data = NULL;
9507 rc = XGetWindowProperty (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
9508 prop_atom, 0, bytes_remaining,
9509 False, XA_STRING,
9510 &actual_type, &actual_format,
9511 &actual_size, &bytes_remaining,
9512 (unsigned char **) &tmp_data);
9513 if (rc == Success && tmp_data)
9514 prop_value = make_string (tmp_data, size);
9516 XFree (tmp_data);
9519 UNBLOCK_INPUT;
9520 return prop_value;
9525 /***********************************************************************
9526 Busy cursor
9527 ***********************************************************************/
9529 /* If non-null, an asynchronous timer that, when it expires, displays
9530 an hourglass cursor on all frames. */
9532 static struct atimer *hourglass_atimer;
9534 /* Non-zero means an hourglass cursor is currently shown. */
9536 static int hourglass_shown_p;
9538 /* Number of seconds to wait before displaying an hourglass cursor. */
9540 static Lisp_Object Vhourglass_delay;
9542 /* Default number of seconds to wait before displaying an hourglass
9543 cursor. */
9545 #define DEFAULT_HOURGLASS_DELAY 1
9547 /* Function prototypes. */
9549 static void show_hourglass P_ ((struct atimer *));
9550 static void hide_hourglass P_ ((void));
9553 /* Cancel a currently active hourglass timer, and start a new one. */
9555 void
9556 start_hourglass ()
9558 EMACS_TIME delay;
9559 int secs, usecs = 0;
9561 cancel_hourglass ();
9563 if (INTEGERP (Vhourglass_delay)
9564 && XINT (Vhourglass_delay) > 0)
9565 secs = XFASTINT (Vhourglass_delay);
9566 else if (FLOATP (Vhourglass_delay)
9567 && XFLOAT_DATA (Vhourglass_delay) > 0)
9569 Lisp_Object tem;
9570 tem = Ftruncate (Vhourglass_delay, Qnil);
9571 secs = XFASTINT (tem);
9572 usecs = (XFLOAT_DATA (Vhourglass_delay) - secs) * 1000000;
9574 else
9575 secs = DEFAULT_HOURGLASS_DELAY;
9577 EMACS_SET_SECS_USECS (delay, secs, usecs);
9578 hourglass_atimer = start_atimer (ATIMER_RELATIVE, delay,
9579 show_hourglass, NULL);
9583 /* Cancel the hourglass cursor timer if active, hide a busy cursor if
9584 shown. */
9586 void
9587 cancel_hourglass ()
9589 if (hourglass_atimer)
9591 cancel_atimer (hourglass_atimer);
9592 hourglass_atimer = NULL;
9595 if (hourglass_shown_p)
9596 hide_hourglass ();
9600 /* Timer function of hourglass_atimer. TIMER is equal to
9601 hourglass_atimer.
9603 Display an hourglass pointer on all frames by mapping the frames'
9604 hourglass_window. Set the hourglass_p flag in the frames'
9605 output_data.x structure to indicate that an hourglass cursor is
9606 shown on the frames. */
9608 static void
9609 show_hourglass (timer)
9610 struct atimer *timer;
9612 /* The timer implementation will cancel this timer automatically
9613 after this function has run. Set hourglass_atimer to null
9614 so that we know the timer doesn't have to be canceled. */
9615 hourglass_atimer = NULL;
9617 if (!hourglass_shown_p)
9619 Lisp_Object rest, frame;
9621 BLOCK_INPUT;
9623 FOR_EACH_FRAME (rest, frame)
9625 struct frame *f = XFRAME (frame);
9627 if (FRAME_LIVE_P (f) && FRAME_X_P (f) && FRAME_X_DISPLAY (f))
9629 Display *dpy = FRAME_X_DISPLAY (f);
9631 #ifdef USE_X_TOOLKIT
9632 if (f->output_data.x->widget)
9633 #else
9634 if (FRAME_OUTER_WINDOW (f))
9635 #endif
9637 f->output_data.x->hourglass_p = 1;
9639 if (!f->output_data.x->hourglass_window)
9641 unsigned long mask = CWCursor;
9642 XSetWindowAttributes attrs;
9644 attrs.cursor = f->output_data.x->hourglass_cursor;
9646 f->output_data.x->hourglass_window
9647 = XCreateWindow (dpy, FRAME_OUTER_WINDOW (f),
9648 0, 0, 32000, 32000, 0, 0,
9649 InputOnly,
9650 CopyFromParent,
9651 mask, &attrs);
9654 XMapRaised (dpy, f->output_data.x->hourglass_window);
9655 XFlush (dpy);
9660 hourglass_shown_p = 1;
9661 UNBLOCK_INPUT;
9666 /* Hide the hourglass pointer on all frames, if it is currently
9667 shown. */
9669 static void
9670 hide_hourglass ()
9672 if (hourglass_shown_p)
9674 Lisp_Object rest, frame;
9676 BLOCK_INPUT;
9677 FOR_EACH_FRAME (rest, frame)
9679 struct frame *f = XFRAME (frame);
9681 if (FRAME_X_P (f)
9682 /* Watch out for newly created frames. */
9683 && f->output_data.x->hourglass_window)
9685 XUnmapWindow (FRAME_X_DISPLAY (f),
9686 f->output_data.x->hourglass_window);
9687 /* Sync here because XTread_socket looks at the
9688 hourglass_p flag that is reset to zero below. */
9689 XSync (FRAME_X_DISPLAY (f), False);
9690 f->output_data.x->hourglass_p = 0;
9694 hourglass_shown_p = 0;
9695 UNBLOCK_INPUT;
9701 /***********************************************************************
9702 Tool tips
9703 ***********************************************************************/
9705 static Lisp_Object x_create_tip_frame P_ ((struct x_display_info *,
9706 Lisp_Object, Lisp_Object));
9707 static void compute_tip_xy P_ ((struct frame *, Lisp_Object, Lisp_Object,
9708 Lisp_Object, int, int, int *, int *));
9710 /* The frame of a currently visible tooltip. */
9712 Lisp_Object tip_frame;
9714 /* If non-nil, a timer started that hides the last tooltip when it
9715 fires. */
9717 Lisp_Object tip_timer;
9718 Window tip_window;
9720 /* If non-nil, a vector of 3 elements containing the last args
9721 with which x-show-tip was called. See there. */
9723 Lisp_Object last_show_tip_args;
9725 /* Maximum size for tooltips; a cons (COLUMNS . ROWS). */
9727 Lisp_Object Vx_max_tooltip_size;
9730 static Lisp_Object
9731 unwind_create_tip_frame (frame)
9732 Lisp_Object frame;
9734 Lisp_Object deleted;
9736 deleted = unwind_create_frame (frame);
9737 if (EQ (deleted, Qt))
9739 tip_window = None;
9740 tip_frame = Qnil;
9743 return deleted;
9747 /* Create a frame for a tooltip on the display described by DPYINFO.
9748 PARMS is a list of frame parameters. TEXT is the string to
9749 display in the tip frame. Value is the frame.
9751 Note that functions called here, esp. x_default_parameter can
9752 signal errors, for instance when a specified color name is
9753 undefined. We have to make sure that we're in a consistent state
9754 when this happens. */
9756 static Lisp_Object
9757 x_create_tip_frame (dpyinfo, parms, text)
9758 struct x_display_info *dpyinfo;
9759 Lisp_Object parms, text;
9761 struct frame *f;
9762 Lisp_Object frame, tem;
9763 Lisp_Object name;
9764 long window_prompting = 0;
9765 int width, height;
9766 int count = SPECPDL_INDEX ();
9767 struct gcpro gcpro1, gcpro2, gcpro3;
9768 struct kboard *kb;
9769 int face_change_count_before = face_change_count;
9770 Lisp_Object buffer;
9771 struct buffer *old_buffer;
9773 check_x ();
9775 /* Use this general default value to start with until we know if
9776 this frame has a specified name. */
9777 Vx_resource_name = Vinvocation_name;
9779 #ifdef MULTI_KBOARD
9780 kb = dpyinfo->kboard;
9781 #else
9782 kb = &the_only_kboard;
9783 #endif
9785 /* Get the name of the frame to use for resource lookup. */
9786 name = x_get_arg (dpyinfo, parms, Qname, "name", "Name", RES_TYPE_STRING);
9787 if (!STRINGP (name)
9788 && !EQ (name, Qunbound)
9789 && !NILP (name))
9790 error ("Invalid frame name--not a string or nil");
9791 Vx_resource_name = name;
9793 frame = Qnil;
9794 GCPRO3 (parms, name, frame);
9795 f = make_frame (1);
9796 XSETFRAME (frame, f);
9798 buffer = Fget_buffer_create (build_string (" *tip*"));
9799 Fset_window_buffer (FRAME_ROOT_WINDOW (f), buffer, Qnil);
9800 old_buffer = current_buffer;
9801 set_buffer_internal_1 (XBUFFER (buffer));
9802 current_buffer->truncate_lines = Qnil;
9803 Ferase_buffer ();
9804 Finsert (1, &text);
9805 set_buffer_internal_1 (old_buffer);
9807 FRAME_CAN_HAVE_SCROLL_BARS (f) = 0;
9808 record_unwind_protect (unwind_create_tip_frame, frame);
9810 /* By setting the output method, we're essentially saying that
9811 the frame is live, as per FRAME_LIVE_P. If we get a signal
9812 from this point on, x_destroy_window might screw up reference
9813 counts etc. */
9814 f->output_method = output_x_window;
9815 f->output_data.x = (struct x_output *) xmalloc (sizeof (struct x_output));
9816 bzero (f->output_data.x, sizeof (struct x_output));
9817 f->output_data.x->icon_bitmap = -1;
9818 FRAME_FONTSET (f) = -1;
9819 f->output_data.x->scroll_bar_foreground_pixel = -1;
9820 f->output_data.x->scroll_bar_background_pixel = -1;
9821 #ifdef USE_TOOLKIT_SCROLL_BARS
9822 f->output_data.x->scroll_bar_top_shadow_pixel = -1;
9823 f->output_data.x->scroll_bar_bottom_shadow_pixel = -1;
9824 #endif /* USE_TOOLKIT_SCROLL_BARS */
9825 f->icon_name = Qnil;
9826 FRAME_X_DISPLAY_INFO (f) = dpyinfo;
9827 #if GLYPH_DEBUG
9828 image_cache_refcount = FRAME_X_IMAGE_CACHE (f)->refcount;
9829 dpyinfo_refcount = dpyinfo->reference_count;
9830 #endif /* GLYPH_DEBUG */
9831 #ifdef MULTI_KBOARD
9832 FRAME_KBOARD (f) = kb;
9833 #endif
9834 f->output_data.x->parent_desc = FRAME_X_DISPLAY_INFO (f)->root_window;
9835 f->output_data.x->explicit_parent = 0;
9837 /* These colors will be set anyway later, but it's important
9838 to get the color reference counts right, so initialize them! */
9840 Lisp_Object black;
9841 struct gcpro gcpro1;
9843 black = build_string ("black");
9844 GCPRO1 (black);
9845 f->output_data.x->foreground_pixel
9846 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
9847 f->output_data.x->background_pixel
9848 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
9849 f->output_data.x->cursor_pixel
9850 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
9851 f->output_data.x->cursor_foreground_pixel
9852 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
9853 f->output_data.x->border_pixel
9854 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
9855 f->output_data.x->mouse_pixel
9856 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
9857 UNGCPRO;
9860 /* Set the name; the functions to which we pass f expect the name to
9861 be set. */
9862 if (EQ (name, Qunbound) || NILP (name))
9864 f->name = build_string (dpyinfo->x_id_name);
9865 f->explicit_name = 0;
9867 else
9869 f->name = name;
9870 f->explicit_name = 1;
9871 /* use the frame's title when getting resources for this frame. */
9872 specbind (Qx_resource_name, name);
9875 /* Extract the window parameters from the supplied values that are
9876 needed to determine window geometry. */
9878 Lisp_Object font;
9880 font = x_get_arg (dpyinfo, parms, Qfont, "font", "Font", RES_TYPE_STRING);
9882 BLOCK_INPUT;
9883 /* First, try whatever font the caller has specified. */
9884 if (STRINGP (font))
9886 tem = Fquery_fontset (font, Qnil);
9887 if (STRINGP (tem))
9888 font = x_new_fontset (f, SDATA (tem));
9889 else
9890 font = x_new_font (f, SDATA (font));
9893 /* Try out a font which we hope has bold and italic variations. */
9894 if (!STRINGP (font))
9895 font = x_new_font (f, "-adobe-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-1");
9896 if (!STRINGP (font))
9897 font = x_new_font (f, "-misc-fixed-medium-r-normal-*-*-140-*-*-c-*-iso8859-1");
9898 if (! STRINGP (font))
9899 font = x_new_font (f, "-*-*-medium-r-normal-*-*-140-*-*-c-*-iso8859-1");
9900 if (! STRINGP (font))
9901 /* This was formerly the first thing tried, but it finds too many fonts
9902 and takes too long. */
9903 font = x_new_font (f, "-*-*-medium-r-*-*-*-*-*-*-c-*-iso8859-1");
9904 /* If those didn't work, look for something which will at least work. */
9905 if (! STRINGP (font))
9906 font = x_new_font (f, "-*-fixed-*-*-*-*-*-140-*-*-c-*-iso8859-1");
9907 UNBLOCK_INPUT;
9908 if (! STRINGP (font))
9909 font = build_string ("fixed");
9911 x_default_parameter (f, parms, Qfont, font,
9912 "font", "Font", RES_TYPE_STRING);
9915 x_default_parameter (f, parms, Qborder_width, make_number (2),
9916 "borderWidth", "BorderWidth", RES_TYPE_NUMBER);
9918 /* This defaults to 2 in order to match xterm. We recognize either
9919 internalBorderWidth or internalBorder (which is what xterm calls
9920 it). */
9921 if (NILP (Fassq (Qinternal_border_width, parms)))
9923 Lisp_Object value;
9925 value = x_get_arg (dpyinfo, parms, Qinternal_border_width,
9926 "internalBorder", "internalBorder", RES_TYPE_NUMBER);
9927 if (! EQ (value, Qunbound))
9928 parms = Fcons (Fcons (Qinternal_border_width, value),
9929 parms);
9932 x_default_parameter (f, parms, Qinternal_border_width, make_number (1),
9933 "internalBorderWidth", "internalBorderWidth",
9934 RES_TYPE_NUMBER);
9936 /* Also do the stuff which must be set before the window exists. */
9937 x_default_parameter (f, parms, Qforeground_color, build_string ("black"),
9938 "foreground", "Foreground", RES_TYPE_STRING);
9939 x_default_parameter (f, parms, Qbackground_color, build_string ("white"),
9940 "background", "Background", RES_TYPE_STRING);
9941 x_default_parameter (f, parms, Qmouse_color, build_string ("black"),
9942 "pointerColor", "Foreground", RES_TYPE_STRING);
9943 x_default_parameter (f, parms, Qcursor_color, build_string ("black"),
9944 "cursorColor", "Foreground", RES_TYPE_STRING);
9945 x_default_parameter (f, parms, Qborder_color, build_string ("black"),
9946 "borderColor", "BorderColor", RES_TYPE_STRING);
9948 /* Init faces before x_default_parameter is called for scroll-bar
9949 parameters because that function calls x_set_scroll_bar_width,
9950 which calls change_frame_size, which calls Fset_window_buffer,
9951 which runs hooks, which call Fvertical_motion. At the end, we
9952 end up in init_iterator with a null face cache, which should not
9953 happen. */
9954 init_frame_faces (f);
9956 f->output_data.x->parent_desc = FRAME_X_DISPLAY_INFO (f)->root_window;
9958 window_prompting = x_figure_window_size (f, parms, 0);
9961 XSetWindowAttributes attrs;
9962 unsigned long mask;
9964 BLOCK_INPUT;
9965 mask = CWBackPixel | CWOverrideRedirect | CWEventMask;
9966 if (DoesSaveUnders (dpyinfo->screen))
9967 mask |= CWSaveUnder;
9969 /* Window managers look at the override-redirect flag to determine
9970 whether or net to give windows a decoration (Xlib spec, chapter
9971 3.2.8). */
9972 attrs.override_redirect = True;
9973 attrs.save_under = True;
9974 attrs.background_pixel = FRAME_BACKGROUND_PIXEL (f);
9975 /* Arrange for getting MapNotify and UnmapNotify events. */
9976 attrs.event_mask = StructureNotifyMask;
9977 tip_window
9978 = FRAME_X_WINDOW (f)
9979 = XCreateWindow (FRAME_X_DISPLAY (f),
9980 FRAME_X_DISPLAY_INFO (f)->root_window,
9981 /* x, y, width, height */
9982 0, 0, 1, 1,
9983 /* Border. */
9985 CopyFromParent, InputOutput, CopyFromParent,
9986 mask, &attrs);
9987 UNBLOCK_INPUT;
9990 x_make_gc (f);
9992 x_default_parameter (f, parms, Qauto_raise, Qnil,
9993 "autoRaise", "AutoRaiseLower", RES_TYPE_BOOLEAN);
9994 x_default_parameter (f, parms, Qauto_lower, Qnil,
9995 "autoLower", "AutoRaiseLower", RES_TYPE_BOOLEAN);
9996 x_default_parameter (f, parms, Qcursor_type, Qbox,
9997 "cursorType", "CursorType", RES_TYPE_SYMBOL);
9999 /* Dimensions, especially FRAME_LINES (f), must be done via change_frame_size.
10000 Change will not be effected unless different from the current
10001 FRAME_LINES (f). */
10002 width = FRAME_COLS (f);
10003 height = FRAME_LINES (f);
10004 SET_FRAME_COLS (f, 0);
10005 FRAME_LINES (f) = 0;
10006 change_frame_size (f, height, width, 1, 0, 0);
10008 /* Add `tooltip' frame parameter's default value. */
10009 if (NILP (Fframe_parameter (frame, intern ("tooltip"))))
10010 Fmodify_frame_parameters (frame, Fcons (Fcons (intern ("tooltip"), Qt),
10011 Qnil));
10013 /* Set up faces after all frame parameters are known. This call
10014 also merges in face attributes specified for new frames.
10016 Frame parameters may be changed if .Xdefaults contains
10017 specifications for the default font. For example, if there is an
10018 `Emacs.default.attributeBackground: pink', the `background-color'
10019 attribute of the frame get's set, which let's the internal border
10020 of the tooltip frame appear in pink. Prevent this. */
10022 Lisp_Object bg = Fframe_parameter (frame, Qbackground_color);
10024 /* Set tip_frame here, so that */
10025 tip_frame = frame;
10026 call1 (Qface_set_after_frame_default, frame);
10028 if (!EQ (bg, Fframe_parameter (frame, Qbackground_color)))
10029 Fmodify_frame_parameters (frame, Fcons (Fcons (Qbackground_color, bg),
10030 Qnil));
10033 f->no_split = 1;
10035 UNGCPRO;
10037 /* It is now ok to make the frame official even if we get an error
10038 below. And the frame needs to be on Vframe_list or making it
10039 visible won't work. */
10040 Vframe_list = Fcons (frame, Vframe_list);
10042 /* Now that the frame is official, it counts as a reference to
10043 its display. */
10044 FRAME_X_DISPLAY_INFO (f)->reference_count++;
10046 /* Setting attributes of faces of the tooltip frame from resources
10047 and similar will increment face_change_count, which leads to the
10048 clearing of all current matrices. Since this isn't necessary
10049 here, avoid it by resetting face_change_count to the value it
10050 had before we created the tip frame. */
10051 face_change_count = face_change_count_before;
10053 /* Discard the unwind_protect. */
10054 return unbind_to (count, frame);
10058 /* Compute where to display tip frame F. PARMS is the list of frame
10059 parameters for F. DX and DY are specified offsets from the current
10060 location of the mouse. WIDTH and HEIGHT are the width and height
10061 of the tooltip. Return coordinates relative to the root window of
10062 the display in *ROOT_X, and *ROOT_Y. */
10064 static void
10065 compute_tip_xy (f, parms, dx, dy, width, height, root_x, root_y)
10066 struct frame *f;
10067 Lisp_Object parms, dx, dy;
10068 int width, height;
10069 int *root_x, *root_y;
10071 Lisp_Object left, top;
10072 int win_x, win_y;
10073 Window root, child;
10074 unsigned pmask;
10076 /* User-specified position? */
10077 left = Fcdr (Fassq (Qleft, parms));
10078 top = Fcdr (Fassq (Qtop, parms));
10080 /* Move the tooltip window where the mouse pointer is. Resize and
10081 show it. */
10082 if (!INTEGERP (left) || !INTEGERP (top))
10084 BLOCK_INPUT;
10085 XQueryPointer (FRAME_X_DISPLAY (f), FRAME_X_DISPLAY_INFO (f)->root_window,
10086 &root, &child, root_x, root_y, &win_x, &win_y, &pmask);
10087 UNBLOCK_INPUT;
10090 if (INTEGERP (top))
10091 *root_y = XINT (top);
10092 else if (*root_y + XINT (dy) - height < 0)
10093 *root_y -= XINT (dy);
10094 else
10096 *root_y -= height;
10097 *root_y += XINT (dy);
10100 if (INTEGERP (left))
10101 *root_x = XINT (left);
10102 else if (*root_x + XINT (dx) + width <= FRAME_X_DISPLAY_INFO (f)->width)
10103 /* It fits to the right of the pointer. */
10104 *root_x += XINT (dx);
10105 else if (width + XINT (dx) <= *root_x)
10106 /* It fits to the left of the pointer. */
10107 *root_x -= width + XINT (dx);
10108 else
10109 /* Put it left-justified on the screen--it ought to fit that way. */
10110 *root_x = 0;
10114 DEFUN ("x-show-tip", Fx_show_tip, Sx_show_tip, 1, 6, 0,
10115 doc: /* Show STRING in a "tooltip" window on frame FRAME.
10116 A tooltip window is a small X window displaying a string.
10118 FRAME nil or omitted means use the selected frame.
10120 PARMS is an optional list of frame parameters which can be used to
10121 change the tooltip's appearance.
10123 Automatically hide the tooltip after TIMEOUT seconds. TIMEOUT nil
10124 means use the default timeout of 5 seconds.
10126 If the list of frame parameters PARAMS contains a `left' parameters,
10127 the tooltip is displayed at that x-position. Otherwise it is
10128 displayed at the mouse position, with offset DX added (default is 5 if
10129 DX isn't specified). Likewise for the y-position; if a `top' frame
10130 parameter is specified, it determines the y-position of the tooltip
10131 window, otherwise it is displayed at the mouse position, with offset
10132 DY added (default is -10).
10134 A tooltip's maximum size is specified by `x-max-tooltip-size'.
10135 Text larger than the specified size is clipped. */)
10136 (string, frame, parms, timeout, dx, dy)
10137 Lisp_Object string, frame, parms, timeout, dx, dy;
10139 struct frame *f;
10140 struct window *w;
10141 int root_x, root_y;
10142 struct buffer *old_buffer;
10143 struct text_pos pos;
10144 int i, width, height;
10145 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
10146 int old_windows_or_buffers_changed = windows_or_buffers_changed;
10147 int count = SPECPDL_INDEX ();
10149 specbind (Qinhibit_redisplay, Qt);
10151 GCPRO4 (string, parms, frame, timeout);
10153 CHECK_STRING (string);
10154 f = check_x_frame (frame);
10155 if (NILP (timeout))
10156 timeout = make_number (5);
10157 else
10158 CHECK_NATNUM (timeout);
10160 if (NILP (dx))
10161 dx = make_number (5);
10162 else
10163 CHECK_NUMBER (dx);
10165 if (NILP (dy))
10166 dy = make_number (-10);
10167 else
10168 CHECK_NUMBER (dy);
10170 if (NILP (last_show_tip_args))
10171 last_show_tip_args = Fmake_vector (make_number (3), Qnil);
10173 if (!NILP (tip_frame))
10175 Lisp_Object last_string = AREF (last_show_tip_args, 0);
10176 Lisp_Object last_frame = AREF (last_show_tip_args, 1);
10177 Lisp_Object last_parms = AREF (last_show_tip_args, 2);
10179 if (EQ (frame, last_frame)
10180 && !NILP (Fequal (last_string, string))
10181 && !NILP (Fequal (last_parms, parms)))
10183 struct frame *f = XFRAME (tip_frame);
10185 /* Only DX and DY have changed. */
10186 if (!NILP (tip_timer))
10188 Lisp_Object timer = tip_timer;
10189 tip_timer = Qnil;
10190 call1 (Qcancel_timer, timer);
10193 BLOCK_INPUT;
10194 compute_tip_xy (f, parms, dx, dy, FRAME_PIXEL_WIDTH (f),
10195 FRAME_PIXEL_HEIGHT (f), &root_x, &root_y);
10196 XMoveWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
10197 root_x, root_y);
10198 UNBLOCK_INPUT;
10199 goto start_timer;
10203 /* Hide a previous tip, if any. */
10204 Fx_hide_tip ();
10206 ASET (last_show_tip_args, 0, string);
10207 ASET (last_show_tip_args, 1, frame);
10208 ASET (last_show_tip_args, 2, parms);
10210 /* Add default values to frame parameters. */
10211 if (NILP (Fassq (Qname, parms)))
10212 parms = Fcons (Fcons (Qname, build_string ("tooltip")), parms);
10213 if (NILP (Fassq (Qinternal_border_width, parms)))
10214 parms = Fcons (Fcons (Qinternal_border_width, make_number (3)), parms);
10215 if (NILP (Fassq (Qborder_width, parms)))
10216 parms = Fcons (Fcons (Qborder_width, make_number (1)), parms);
10217 if (NILP (Fassq (Qborder_color, parms)))
10218 parms = Fcons (Fcons (Qborder_color, build_string ("lightyellow")), parms);
10219 if (NILP (Fassq (Qbackground_color, parms)))
10220 parms = Fcons (Fcons (Qbackground_color, build_string ("lightyellow")),
10221 parms);
10223 /* Create a frame for the tooltip, and record it in the global
10224 variable tip_frame. */
10225 frame = x_create_tip_frame (FRAME_X_DISPLAY_INFO (f), parms, string);
10226 f = XFRAME (frame);
10228 /* Set up the frame's root window. */
10229 w = XWINDOW (FRAME_ROOT_WINDOW (f));
10230 w->left_col = w->top_line = make_number (0);
10232 if (CONSP (Vx_max_tooltip_size)
10233 && INTEGERP (XCAR (Vx_max_tooltip_size))
10234 && XINT (XCAR (Vx_max_tooltip_size)) > 0
10235 && INTEGERP (XCDR (Vx_max_tooltip_size))
10236 && XINT (XCDR (Vx_max_tooltip_size)) > 0)
10238 w->total_cols = XCAR (Vx_max_tooltip_size);
10239 w->total_lines = XCDR (Vx_max_tooltip_size);
10241 else
10243 w->total_cols = make_number (80);
10244 w->total_lines = make_number (40);
10247 FRAME_TOTAL_COLS (f) = XINT (w->total_cols);
10248 adjust_glyphs (f);
10249 w->pseudo_window_p = 1;
10251 /* Display the tooltip text in a temporary buffer. */
10252 old_buffer = current_buffer;
10253 set_buffer_internal_1 (XBUFFER (XWINDOW (FRAME_ROOT_WINDOW (f))->buffer));
10254 current_buffer->truncate_lines = Qnil;
10255 clear_glyph_matrix (w->desired_matrix);
10256 clear_glyph_matrix (w->current_matrix);
10257 SET_TEXT_POS (pos, BEGV, BEGV_BYTE);
10258 try_window (FRAME_ROOT_WINDOW (f), pos);
10260 /* Compute width and height of the tooltip. */
10261 width = height = 0;
10262 for (i = 0; i < w->desired_matrix->nrows; ++i)
10264 struct glyph_row *row = &w->desired_matrix->rows[i];
10265 struct glyph *last;
10266 int row_width;
10268 /* Stop at the first empty row at the end. */
10269 if (!row->enabled_p || !row->displays_text_p)
10270 break;
10272 /* Let the row go over the full width of the frame. */
10273 row->full_width_p = 1;
10275 /* There's a glyph at the end of rows that is used to place
10276 the cursor there. Don't include the width of this glyph. */
10277 if (row->used[TEXT_AREA])
10279 last = &row->glyphs[TEXT_AREA][row->used[TEXT_AREA] - 1];
10280 row_width = row->pixel_width - last->pixel_width;
10282 else
10283 row_width = row->pixel_width;
10285 height += row->height;
10286 width = max (width, row_width);
10289 /* Add the frame's internal border to the width and height the X
10290 window should have. */
10291 height += 2 * FRAME_INTERNAL_BORDER_WIDTH (f);
10292 width += 2 * FRAME_INTERNAL_BORDER_WIDTH (f);
10294 /* Move the tooltip window where the mouse pointer is. Resize and
10295 show it. */
10296 compute_tip_xy (f, parms, dx, dy, width, height, &root_x, &root_y);
10298 BLOCK_INPUT;
10299 XMoveResizeWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
10300 root_x, root_y, width, height);
10301 XMapRaised (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
10302 UNBLOCK_INPUT;
10304 /* Draw into the window. */
10305 w->must_be_updated_p = 1;
10306 update_single_window (w, 1);
10308 /* Restore original current buffer. */
10309 set_buffer_internal_1 (old_buffer);
10310 windows_or_buffers_changed = old_windows_or_buffers_changed;
10312 start_timer:
10313 /* Let the tip disappear after timeout seconds. */
10314 tip_timer = call3 (intern ("run-at-time"), timeout, Qnil,
10315 intern ("x-hide-tip"));
10317 UNGCPRO;
10318 return unbind_to (count, Qnil);
10322 DEFUN ("x-hide-tip", Fx_hide_tip, Sx_hide_tip, 0, 0, 0,
10323 doc: /* Hide the current tooltip window, if there is any.
10324 Value is t if tooltip was open, nil otherwise. */)
10327 int count;
10328 Lisp_Object deleted, frame, timer;
10329 struct gcpro gcpro1, gcpro2;
10331 /* Return quickly if nothing to do. */
10332 if (NILP (tip_timer) && NILP (tip_frame))
10333 return Qnil;
10335 frame = tip_frame;
10336 timer = tip_timer;
10337 GCPRO2 (frame, timer);
10338 tip_frame = tip_timer = deleted = Qnil;
10340 count = SPECPDL_INDEX ();
10341 specbind (Qinhibit_redisplay, Qt);
10342 specbind (Qinhibit_quit, Qt);
10344 if (!NILP (timer))
10345 call1 (Qcancel_timer, timer);
10347 if (FRAMEP (frame))
10349 Fdelete_frame (frame, Qnil);
10350 deleted = Qt;
10352 #ifdef USE_LUCID
10353 /* Bloodcurdling hack alert: The Lucid menu bar widget's
10354 redisplay procedure is not called when a tip frame over menu
10355 items is unmapped. Redisplay the menu manually... */
10357 struct frame *f = SELECTED_FRAME ();
10358 Widget w = f->output_data.x->menubar_widget;
10359 extern void xlwmenu_redisplay P_ ((Widget));
10361 if (!DoesSaveUnders (FRAME_X_DISPLAY_INFO (f)->screen)
10362 && w != NULL)
10364 BLOCK_INPUT;
10365 xlwmenu_redisplay (w);
10366 UNBLOCK_INPUT;
10369 #endif /* USE_LUCID */
10372 UNGCPRO;
10373 return unbind_to (count, deleted);
10378 /***********************************************************************
10379 File selection dialog
10380 ***********************************************************************/
10382 #ifdef USE_MOTIF
10384 /* Callback for "OK" and "Cancel" on file selection dialog. */
10386 static void
10387 file_dialog_cb (widget, client_data, call_data)
10388 Widget widget;
10389 XtPointer call_data, client_data;
10391 int *result = (int *) client_data;
10392 XmAnyCallbackStruct *cb = (XmAnyCallbackStruct *) call_data;
10393 *result = cb->reason;
10397 /* Callback for unmapping a file selection dialog. This is used to
10398 capture the case where a dialog is closed via a window manager's
10399 closer button, for example. Using a XmNdestroyCallback didn't work
10400 in this case. */
10402 static void
10403 file_dialog_unmap_cb (widget, client_data, call_data)
10404 Widget widget;
10405 XtPointer call_data, client_data;
10407 int *result = (int *) client_data;
10408 *result = XmCR_CANCEL;
10412 DEFUN ("x-file-dialog", Fx_file_dialog, Sx_file_dialog, 2, 4, 0,
10413 doc: /* Read file name, prompting with PROMPT in directory DIR.
10414 Use a file selection dialog.
10415 Select DEFAULT-FILENAME in the dialog's file selection box, if
10416 specified. Don't let the user enter a file name in the file
10417 selection dialog's entry field, if MUSTMATCH is non-nil. */)
10418 (prompt, dir, default_filename, mustmatch)
10419 Lisp_Object prompt, dir, default_filename, mustmatch;
10421 int result;
10422 struct frame *f = SELECTED_FRAME ();
10423 Lisp_Object file = Qnil;
10424 Widget dialog, text, list, help;
10425 Arg al[10];
10426 int ac = 0;
10427 extern XtAppContext Xt_app_con;
10428 XmString dir_xmstring, pattern_xmstring;
10429 int count = SPECPDL_INDEX ();
10430 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
10432 GCPRO5 (prompt, dir, default_filename, mustmatch, file);
10433 CHECK_STRING (prompt);
10434 CHECK_STRING (dir);
10436 /* Prevent redisplay. */
10437 specbind (Qinhibit_redisplay, Qt);
10439 BLOCK_INPUT;
10441 /* Create the dialog with PROMPT as title, using DIR as initial
10442 directory and using "*" as pattern. */
10443 dir = Fexpand_file_name (dir, Qnil);
10444 dir_xmstring = XmStringCreateLocalized (SDATA (dir));
10445 pattern_xmstring = XmStringCreateLocalized ("*");
10447 XtSetArg (al[ac], XmNtitle, SDATA (prompt)); ++ac;
10448 XtSetArg (al[ac], XmNdirectory, dir_xmstring); ++ac;
10449 XtSetArg (al[ac], XmNpattern, pattern_xmstring); ++ac;
10450 XtSetArg (al[ac], XmNresizePolicy, XmRESIZE_GROW); ++ac;
10451 XtSetArg (al[ac], XmNdialogStyle, XmDIALOG_APPLICATION_MODAL); ++ac;
10452 dialog = XmCreateFileSelectionDialog (f->output_data.x->widget,
10453 "fsb", al, ac);
10454 XmStringFree (dir_xmstring);
10455 XmStringFree (pattern_xmstring);
10457 /* Add callbacks for OK and Cancel. */
10458 XtAddCallback (dialog, XmNokCallback, file_dialog_cb,
10459 (XtPointer) &result);
10460 XtAddCallback (dialog, XmNcancelCallback, file_dialog_cb,
10461 (XtPointer) &result);
10462 XtAddCallback (dialog, XmNunmapCallback, file_dialog_unmap_cb,
10463 (XtPointer) &result);
10465 /* Disable the help button since we can't display help. */
10466 help = XmFileSelectionBoxGetChild (dialog, XmDIALOG_HELP_BUTTON);
10467 XtSetSensitive (help, False);
10469 /* Mark OK button as default. */
10470 XtVaSetValues (XmFileSelectionBoxGetChild (dialog, XmDIALOG_OK_BUTTON),
10471 XmNshowAsDefault, True, NULL);
10473 /* If MUSTMATCH is non-nil, disable the file entry field of the
10474 dialog, so that the user must select a file from the files list
10475 box. We can't remove it because we wouldn't have a way to get at
10476 the result file name, then. */
10477 text = XmFileSelectionBoxGetChild (dialog, XmDIALOG_TEXT);
10478 if (!NILP (mustmatch))
10480 Widget label;
10481 label = XmFileSelectionBoxGetChild (dialog, XmDIALOG_SELECTION_LABEL);
10482 XtSetSensitive (text, False);
10483 XtSetSensitive (label, False);
10486 /* Manage the dialog, so that list boxes get filled. */
10487 XtManageChild (dialog);
10489 /* Select DEFAULT_FILENAME in the files list box. DEFAULT_FILENAME
10490 must include the path for this to work. */
10491 list = XmFileSelectionBoxGetChild (dialog, XmDIALOG_LIST);
10492 if (STRINGP (default_filename))
10494 XmString default_xmstring;
10495 int item_pos;
10497 default_xmstring
10498 = XmStringCreateLocalized (SDATA (default_filename));
10500 if (!XmListItemExists (list, default_xmstring))
10502 /* Add a new item if DEFAULT_FILENAME is not in the list. */
10503 XmListAddItem (list, default_xmstring, 0);
10504 item_pos = 0;
10506 else
10507 item_pos = XmListItemPos (list, default_xmstring);
10508 XmStringFree (default_xmstring);
10510 /* Select the item and scroll it into view. */
10511 XmListSelectPos (list, item_pos, True);
10512 XmListSetPos (list, item_pos);
10515 /* Process events until the user presses Cancel or OK. */
10516 result = 0;
10517 while (result == 0)
10519 XEvent event;
10520 XtAppNextEvent (Xt_app_con, &event);
10521 (void) x_dispatch_event (&event, FRAME_X_DISPLAY (f) );
10524 /* Get the result. */
10525 if (result == XmCR_OK)
10527 XmString text;
10528 String data;
10530 XtVaGetValues (dialog, XmNtextString, &text, NULL);
10531 XmStringGetLtoR (text, XmFONTLIST_DEFAULT_TAG, &data);
10532 XmStringFree (text);
10533 file = build_string (data);
10534 XtFree (data);
10536 else
10537 file = Qnil;
10539 /* Clean up. */
10540 XtUnmanageChild (dialog);
10541 XtDestroyWidget (dialog);
10542 UNBLOCK_INPUT;
10543 UNGCPRO;
10545 /* Make "Cancel" equivalent to C-g. */
10546 if (NILP (file))
10547 Fsignal (Qquit, Qnil);
10549 return unbind_to (count, file);
10552 #endif /* USE_MOTIF */
10554 #ifdef USE_GTK
10556 DEFUN ("x-file-dialog", Fx_file_dialog, Sx_file_dialog, 2, 4, 0,
10557 "Read file name, prompting with PROMPT in directory DIR.\n\
10558 Use a file selection dialog.\n\
10559 Select DEFAULT-FILENAME in the dialog's file selection box, if\n\
10560 specified. Don't let the user enter a file name in the file\n\
10561 selection dialog's entry field, if MUSTMATCH is non-nil.")
10562 (prompt, dir, default_filename, mustmatch)
10563 Lisp_Object prompt, dir, default_filename, mustmatch;
10565 FRAME_PTR f = SELECTED_FRAME ();
10566 char *fn;
10567 Lisp_Object file = Qnil;
10568 int count = specpdl_ptr - specpdl;
10569 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
10570 char *cdef_file;
10571 char *cprompt;
10573 GCPRO5 (prompt, dir, default_filename, mustmatch, file);
10574 CHECK_STRING (prompt);
10575 CHECK_STRING (dir);
10577 /* Prevent redisplay. */
10578 specbind (Qinhibit_redisplay, Qt);
10580 BLOCK_INPUT;
10582 if (STRINGP (default_filename))
10583 cdef_file = SDATA (default_filename);
10584 else
10585 cdef_file = SDATA (dir);
10587 fn = xg_get_file_name (f, SDATA (prompt), cdef_file, ! NILP (mustmatch));
10589 if (fn)
10591 file = build_string (fn);
10592 xfree (fn);
10595 UNBLOCK_INPUT;
10596 UNGCPRO;
10598 /* Make "Cancel" equivalent to C-g. */
10599 if (NILP (file))
10600 Fsignal (Qquit, Qnil);
10602 return unbind_to (count, file);
10605 #endif /* USE_GTK */
10608 /***********************************************************************
10609 Keyboard
10610 ***********************************************************************/
10612 #ifdef HAVE_XKBGETKEYBOARD
10613 #include <X11/XKBlib.h>
10614 #include <X11/keysym.h>
10615 #endif
10617 DEFUN ("x-backspace-delete-keys-p", Fx_backspace_delete_keys_p,
10618 Sx_backspace_delete_keys_p, 0, 1, 0,
10619 doc: /* Check if both Backspace and Delete keys are on the keyboard of FRAME.
10620 FRAME nil means use the selected frame.
10621 Value is t if we know that both keys are present, and are mapped to the
10622 usual X keysyms. */)
10623 (frame)
10624 Lisp_Object frame;
10626 #ifdef HAVE_XKBGETKEYBOARD
10627 XkbDescPtr kb;
10628 struct frame *f = check_x_frame (frame);
10629 Display *dpy = FRAME_X_DISPLAY (f);
10630 Lisp_Object have_keys;
10631 int major, minor, op, event, error;
10633 BLOCK_INPUT;
10635 /* Check library version in case we're dynamically linked. */
10636 major = XkbMajorVersion;
10637 minor = XkbMinorVersion;
10638 if (!XkbLibraryVersion (&major, &minor))
10640 UNBLOCK_INPUT;
10641 return Qnil;
10644 /* Check that the server supports XKB. */
10645 major = XkbMajorVersion;
10646 minor = XkbMinorVersion;
10647 if (!XkbQueryExtension (dpy, &op, &event, &error, &major, &minor))
10649 UNBLOCK_INPUT;
10650 return Qnil;
10653 have_keys = Qnil;
10654 kb = XkbGetMap (dpy, XkbAllMapComponentsMask, XkbUseCoreKbd);
10655 if (kb)
10657 int delete_keycode = 0, backspace_keycode = 0, i;
10659 if (XkbGetNames (dpy, XkbAllNamesMask, kb) == Success)
10661 for (i = kb->min_key_code;
10662 (i < kb->max_key_code
10663 && (delete_keycode == 0 || backspace_keycode == 0));
10664 ++i)
10666 /* The XKB symbolic key names can be seen most easily in
10667 the PS file generated by `xkbprint -label name
10668 $DISPLAY'. */
10669 if (bcmp ("DELE", kb->names->keys[i].name, 4) == 0)
10670 delete_keycode = i;
10671 else if (bcmp ("BKSP", kb->names->keys[i].name, 4) == 0)
10672 backspace_keycode = i;
10675 XkbFreeNames (kb, 0, True);
10678 XkbFreeClientMap (kb, 0, True);
10680 if (delete_keycode
10681 && backspace_keycode
10682 && XKeysymToKeycode (dpy, XK_Delete) == delete_keycode
10683 && XKeysymToKeycode (dpy, XK_BackSpace) == backspace_keycode)
10684 have_keys = Qt;
10686 UNBLOCK_INPUT;
10687 return have_keys;
10688 #else /* not HAVE_XKBGETKEYBOARD */
10689 return Qnil;
10690 #endif /* not HAVE_XKBGETKEYBOARD */
10695 /***********************************************************************
10696 Initialization
10697 ***********************************************************************/
10699 /* Keep this list in the same order as frame_parms in frame.c.
10700 Use 0 for unsupported frame parameters. */
10702 frame_parm_handler x_frame_parm_handlers[] =
10704 x_set_autoraise,
10705 x_set_autolower,
10706 x_set_background_color,
10707 x_set_border_color,
10708 x_set_border_width,
10709 x_set_cursor_color,
10710 x_set_cursor_type,
10711 x_set_font,
10712 x_set_foreground_color,
10713 x_set_icon_name,
10714 x_set_icon_type,
10715 x_set_internal_border_width,
10716 x_set_menu_bar_lines,
10717 x_set_mouse_color,
10718 x_explicitly_set_name,
10719 x_set_scroll_bar_width,
10720 x_set_title,
10721 x_set_unsplittable,
10722 x_set_vertical_scroll_bars,
10723 x_set_visibility,
10724 x_set_tool_bar_lines,
10725 x_set_scroll_bar_foreground,
10726 x_set_scroll_bar_background,
10727 x_set_screen_gamma,
10728 x_set_line_spacing,
10729 x_set_fringe_width,
10730 x_set_fringe_width,
10731 x_set_wait_for_wm,
10732 x_set_fullscreen,
10735 void
10736 syms_of_xfns ()
10738 /* This is zero if not using X windows. */
10739 x_in_use = 0;
10741 /* The section below is built by the lisp expression at the top of the file,
10742 just above where these variables are declared. */
10743 /*&&& init symbols here &&&*/
10744 Qnone = intern ("none");
10745 staticpro (&Qnone);
10746 Qsuppress_icon = intern ("suppress-icon");
10747 staticpro (&Qsuppress_icon);
10748 Qundefined_color = intern ("undefined-color");
10749 staticpro (&Qundefined_color);
10750 Qcenter = intern ("center");
10751 staticpro (&Qcenter);
10752 Qcompound_text = intern ("compound-text");
10753 staticpro (&Qcompound_text);
10754 Qcancel_timer = intern ("cancel-timer");
10755 staticpro (&Qcancel_timer);
10756 /* This is the end of symbol initialization. */
10758 /* Text property `display' should be nonsticky by default. */
10759 Vtext_property_default_nonsticky
10760 = Fcons (Fcons (Qdisplay, Qt), Vtext_property_default_nonsticky);
10763 Qlaplace = intern ("laplace");
10764 staticpro (&Qlaplace);
10765 Qemboss = intern ("emboss");
10766 staticpro (&Qemboss);
10767 Qedge_detection = intern ("edge-detection");
10768 staticpro (&Qedge_detection);
10769 Qheuristic = intern ("heuristic");
10770 staticpro (&Qheuristic);
10771 QCmatrix = intern (":matrix");
10772 staticpro (&QCmatrix);
10773 QCcolor_adjustment = intern (":color-adjustment");
10774 staticpro (&QCcolor_adjustment);
10775 QCmask = intern (":mask");
10776 staticpro (&QCmask);
10778 Fput (Qundefined_color, Qerror_conditions,
10779 Fcons (Qundefined_color, Fcons (Qerror, Qnil)));
10780 Fput (Qundefined_color, Qerror_message,
10781 build_string ("Undefined color"));
10783 DEFVAR_BOOL ("cross-disabled-images", &cross_disabled_images,
10784 doc: /* Non-nil means always draw a cross over disabled images.
10785 Disabled images are those having an `:conversion disabled' property.
10786 A cross is always drawn on black & white displays. */);
10787 cross_disabled_images = 0;
10789 DEFVAR_LISP ("x-bitmap-file-path", &Vx_bitmap_file_path,
10790 doc: /* List of directories to search for window system bitmap files. */);
10791 Vx_bitmap_file_path = decode_env_path ((char *) 0, PATH_BITMAPS);
10793 DEFVAR_LISP ("x-pointer-shape", &Vx_pointer_shape,
10794 doc: /* The shape of the pointer when over text.
10795 Changing the value does not affect existing frames
10796 unless you set the mouse color. */);
10797 Vx_pointer_shape = Qnil;
10799 #if 0 /* This doesn't really do anything. */
10800 DEFVAR_LISP ("x-nontext-pointer-shape", &Vx_nontext_pointer_shape,
10801 doc: /* The shape of the pointer when not over text.
10802 This variable takes effect when you create a new frame
10803 or when you set the mouse color. */);
10804 #endif
10805 Vx_nontext_pointer_shape = Qnil;
10807 DEFVAR_LISP ("x-hourglass-pointer-shape", &Vx_hourglass_pointer_shape,
10808 doc: /* The shape of the pointer when Emacs is busy.
10809 This variable takes effect when you create a new frame
10810 or when you set the mouse color. */);
10811 Vx_hourglass_pointer_shape = Qnil;
10813 DEFVAR_BOOL ("display-hourglass", &display_hourglass_p,
10814 doc: /* Non-zero means Emacs displays an hourglass pointer on window systems. */);
10815 display_hourglass_p = 1;
10817 DEFVAR_LISP ("hourglass-delay", &Vhourglass_delay,
10818 doc: /* *Seconds to wait before displaying an hourglass pointer.
10819 Value must be an integer or float. */);
10820 Vhourglass_delay = make_number (DEFAULT_HOURGLASS_DELAY);
10822 #if 0 /* This doesn't really do anything. */
10823 DEFVAR_LISP ("x-mode-pointer-shape", &Vx_mode_pointer_shape,
10824 doc: /* The shape of the pointer when over the mode line.
10825 This variable takes effect when you create a new frame
10826 or when you set the mouse color. */);
10827 #endif
10828 Vx_mode_pointer_shape = Qnil;
10830 DEFVAR_LISP ("x-sensitive-text-pointer-shape",
10831 &Vx_sensitive_text_pointer_shape,
10832 doc: /* The shape of the pointer when over mouse-sensitive text.
10833 This variable takes effect when you create a new frame
10834 or when you set the mouse color. */);
10835 Vx_sensitive_text_pointer_shape = Qnil;
10837 DEFVAR_LISP ("x-window-horizontal-drag-cursor",
10838 &Vx_window_horizontal_drag_shape,
10839 doc: /* Pointer shape to use for indicating a window can be dragged horizontally.
10840 This variable takes effect when you create a new frame
10841 or when you set the mouse color. */);
10842 Vx_window_horizontal_drag_shape = Qnil;
10844 DEFVAR_LISP ("x-cursor-fore-pixel", &Vx_cursor_fore_pixel,
10845 doc: /* A string indicating the foreground color of the cursor box. */);
10846 Vx_cursor_fore_pixel = Qnil;
10848 DEFVAR_LISP ("x-max-tooltip-size", &Vx_max_tooltip_size,
10849 doc: /* Maximum size for tooltips. Value is a pair (COLUMNS . ROWS).
10850 Text larger than this is clipped. */);
10851 Vx_max_tooltip_size = Fcons (make_number (80), make_number (40));
10853 DEFVAR_LISP ("x-no-window-manager", &Vx_no_window_manager,
10854 doc: /* Non-nil if no X window manager is in use.
10855 Emacs doesn't try to figure this out; this is always nil
10856 unless you set it to something else. */);
10857 /* We don't have any way to find this out, so set it to nil
10858 and maybe the user would like to set it to t. */
10859 Vx_no_window_manager = Qnil;
10861 DEFVAR_LISP ("x-pixel-size-width-font-regexp",
10862 &Vx_pixel_size_width_font_regexp,
10863 doc: /* Regexp matching a font name whose width is the same as `PIXEL_SIZE'.
10865 Since Emacs gets width of a font matching with this regexp from
10866 PIXEL_SIZE field of the name, font finding mechanism gets faster for
10867 such a font. This is especially effective for such large fonts as
10868 Chinese, Japanese, and Korean. */);
10869 Vx_pixel_size_width_font_regexp = Qnil;
10871 DEFVAR_LISP ("image-cache-eviction-delay", &Vimage_cache_eviction_delay,
10872 doc: /* Time after which cached images are removed from the cache.
10873 When an image has not been displayed this many seconds, remove it
10874 from the image cache. Value must be an integer or nil with nil
10875 meaning don't clear the cache. */);
10876 Vimage_cache_eviction_delay = make_number (30 * 60);
10878 #ifdef USE_X_TOOLKIT
10879 Fprovide (intern ("x-toolkit"), Qnil);
10880 #ifdef USE_MOTIF
10881 Fprovide (intern ("motif"), Qnil);
10883 DEFVAR_LISP ("motif-version-string", &Vmotif_version_string,
10884 doc: /* Version info for LessTif/Motif. */);
10885 Vmotif_version_string = build_string (XmVERSION_STRING);
10886 #endif /* USE_MOTIF */
10887 #endif /* USE_X_TOOLKIT */
10889 /* X window properties. */
10890 defsubr (&Sx_change_window_property);
10891 defsubr (&Sx_delete_window_property);
10892 defsubr (&Sx_window_property);
10894 defsubr (&Sxw_display_color_p);
10895 defsubr (&Sx_display_grayscale_p);
10896 defsubr (&Sxw_color_defined_p);
10897 defsubr (&Sxw_color_values);
10898 defsubr (&Sx_server_max_request_size);
10899 defsubr (&Sx_server_vendor);
10900 defsubr (&Sx_server_version);
10901 defsubr (&Sx_display_pixel_width);
10902 defsubr (&Sx_display_pixel_height);
10903 defsubr (&Sx_display_mm_width);
10904 defsubr (&Sx_display_mm_height);
10905 defsubr (&Sx_display_screens);
10906 defsubr (&Sx_display_planes);
10907 defsubr (&Sx_display_color_cells);
10908 defsubr (&Sx_display_visual_class);
10909 defsubr (&Sx_display_backing_store);
10910 defsubr (&Sx_display_save_under);
10911 defsubr (&Sx_create_frame);
10912 defsubr (&Sx_open_connection);
10913 defsubr (&Sx_close_connection);
10914 defsubr (&Sx_display_list);
10915 defsubr (&Sx_synchronize);
10916 defsubr (&Sx_focus_frame);
10917 defsubr (&Sx_backspace_delete_keys_p);
10919 /* Setting callback functions for fontset handler. */
10920 get_font_info_func = x_get_font_info;
10922 #if 0 /* This function pointer doesn't seem to be used anywhere.
10923 And the pointer assigned has the wrong type, anyway. */
10924 list_fonts_func = x_list_fonts;
10925 #endif
10927 load_font_func = x_load_font;
10928 find_ccl_program_func = x_find_ccl_program;
10929 query_font_func = x_query_font;
10930 set_frame_fontset_func = x_set_font;
10931 check_window_system_func = check_x;
10933 /* Images. */
10934 Qxbm = intern ("xbm");
10935 staticpro (&Qxbm);
10936 QCconversion = intern (":conversion");
10937 staticpro (&QCconversion);
10938 QCheuristic_mask = intern (":heuristic-mask");
10939 staticpro (&QCheuristic_mask);
10940 QCcolor_symbols = intern (":color-symbols");
10941 staticpro (&QCcolor_symbols);
10942 QCascent = intern (":ascent");
10943 staticpro (&QCascent);
10944 QCmargin = intern (":margin");
10945 staticpro (&QCmargin);
10946 QCrelief = intern (":relief");
10947 staticpro (&QCrelief);
10948 Qpostscript = intern ("postscript");
10949 staticpro (&Qpostscript);
10950 QCloader = intern (":loader");
10951 staticpro (&QCloader);
10952 QCbounding_box = intern (":bounding-box");
10953 staticpro (&QCbounding_box);
10954 QCpt_width = intern (":pt-width");
10955 staticpro (&QCpt_width);
10956 QCpt_height = intern (":pt-height");
10957 staticpro (&QCpt_height);
10958 QCindex = intern (":index");
10959 staticpro (&QCindex);
10960 Qpbm = intern ("pbm");
10961 staticpro (&Qpbm);
10963 #if HAVE_XPM
10964 Qxpm = intern ("xpm");
10965 staticpro (&Qxpm);
10966 #endif
10968 #if HAVE_JPEG
10969 Qjpeg = intern ("jpeg");
10970 staticpro (&Qjpeg);
10971 #endif
10973 #if HAVE_TIFF
10974 Qtiff = intern ("tiff");
10975 staticpro (&Qtiff);
10976 #endif
10978 #if HAVE_GIF
10979 Qgif = intern ("gif");
10980 staticpro (&Qgif);
10981 #endif
10983 #if HAVE_PNG
10984 Qpng = intern ("png");
10985 staticpro (&Qpng);
10986 #endif
10988 defsubr (&Sclear_image_cache);
10989 defsubr (&Simage_size);
10990 defsubr (&Simage_mask_p);
10992 hourglass_atimer = NULL;
10993 hourglass_shown_p = 0;
10995 defsubr (&Sx_show_tip);
10996 defsubr (&Sx_hide_tip);
10997 tip_timer = Qnil;
10998 staticpro (&tip_timer);
10999 tip_frame = Qnil;
11000 staticpro (&tip_frame);
11002 last_show_tip_args = Qnil;
11003 staticpro (&last_show_tip_args);
11005 #ifdef USE_MOTIF
11006 defsubr (&Sx_file_dialog);
11007 #endif
11011 void
11012 init_xfns ()
11014 image_types = NULL;
11015 Vimage_types = Qnil;
11017 define_image_type (&xbm_type);
11018 define_image_type (&gs_type);
11019 define_image_type (&pbm_type);
11021 #if HAVE_XPM
11022 define_image_type (&xpm_type);
11023 #endif
11025 #if HAVE_JPEG
11026 define_image_type (&jpeg_type);
11027 #endif
11029 #if HAVE_TIFF
11030 define_image_type (&tiff_type);
11031 #endif
11033 #if HAVE_GIF
11034 define_image_type (&gif_type);
11035 #endif
11037 #if HAVE_PNG
11038 define_image_type (&png_type);
11039 #endif
11042 #endif /* HAVE_X_WINDOWS */