*** empty log message ***
[bpt/emacs.git] / src / xfns.c
1 /* Functions for the X window system.
2 Copyright (C) 1989, 92, 93, 94, 95, 96, 1997, 1998, 1999, 2000
3 Free Software Foundation.
4
5 This file is part of GNU Emacs.
6
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.
11
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.
16
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. */
21
22 #include <config.h>
23 #include <signal.h>
24 #include <stdio.h>
25 #include <math.h>
26
27 /* This makes the fields of a Display accessible, in Xlib header files. */
28
29 #define XLIB_ILLEGAL_ACCESS
30
31 #include "lisp.h"
32 #include "xterm.h"
33 #include "frame.h"
34 #include "window.h"
35 #include "buffer.h"
36 #include "intervals.h"
37 #include "dispextern.h"
38 #include "keyboard.h"
39 #include "blockinput.h"
40 #include <epaths.h>
41 #include "charset.h"
42 #include "coding.h"
43 #include "fontset.h"
44 #include "systime.h"
45 #include "termhooks.h"
46 #include "atimer.h"
47
48 #ifdef HAVE_X_WINDOWS
49
50 #include <ctype.h>
51 #include <sys/types.h>
52 #include <sys/stat.h>
53
54 #ifndef VMS
55 #if 1 /* Used to be #ifdef EMACS_BITMAP_FILES, but this should always work. */
56 #include "bitmaps/gray.xbm"
57 #else
58 #include <X11/bitmaps/gray>
59 #endif
60 #else
61 #include "[.bitmaps]gray.xbm"
62 #endif
63
64 #ifdef USE_X_TOOLKIT
65 #include <X11/Shell.h>
66
67 #ifndef USE_MOTIF
68 #include <X11/Xaw/Paned.h>
69 #include <X11/Xaw/Label.h>
70 #endif /* USE_MOTIF */
71
72 #ifdef USG
73 #undef USG /* ####KLUDGE for Solaris 2.2 and up */
74 #include <X11/Xos.h>
75 #define USG
76 #else
77 #include <X11/Xos.h>
78 #endif
79
80 #include "widget.h"
81
82 #include "../lwlib/lwlib.h"
83
84 #ifdef USE_MOTIF
85 #include <Xm/Xm.h>
86 #include <Xm/DialogS.h>
87 #include <Xm/FileSB.h>
88 #endif
89
90 /* Do the EDITRES protocol if running X11R5
91 Exception: HP-UX (at least version A.09.05) has X11R5 without EditRes */
92
93 #if (XtSpecificationRelease >= 5) && !defined(NO_EDITRES)
94 #define HACK_EDITRES
95 extern void _XEditResCheckMessages ();
96 #endif /* R5 + Athena */
97
98 /* Unique id counter for widgets created by the Lucid Widget Library. */
99
100 extern LWLIB_ID widget_id_tick;
101
102 #ifdef USE_LUCID
103 /* This is part of a kludge--see lwlib/xlwmenu.c. */
104 extern XFontStruct *xlwmenu_default_font;
105 #endif
106
107 extern void free_frame_menubar ();
108 extern double atof ();
109
110 #endif /* USE_X_TOOLKIT */
111
112 #define min(a,b) ((a) < (b) ? (a) : (b))
113 #define max(a,b) ((a) > (b) ? (a) : (b))
114
115 #ifdef HAVE_X11R4
116 #define MAXREQUEST(dpy) (XMaxRequestSize (dpy))
117 #else
118 #define MAXREQUEST(dpy) ((dpy)->max_request_size)
119 #endif
120
121 /* The gray bitmap `bitmaps/gray'. This is done because xterm.c uses
122 it, and including `bitmaps/gray' more than once is a problem when
123 config.h defines `static' as an empty replacement string. */
124
125 int gray_bitmap_width = gray_width;
126 int gray_bitmap_height = gray_height;
127 unsigned char *gray_bitmap_bits = gray_bits;
128
129 /* The name we're using in resource queries. Most often "emacs". */
130
131 Lisp_Object Vx_resource_name;
132
133 /* The application class we're using in resource queries.
134 Normally "Emacs". */
135
136 Lisp_Object Vx_resource_class;
137
138 /* Non-zero means we're allowed to display a busy cursor. */
139
140 int display_busy_cursor_p;
141
142 /* The background and shape of the mouse pointer, and shape when not
143 over text or in the modeline. */
144
145 Lisp_Object Vx_pointer_shape, Vx_nontext_pointer_shape, Vx_mode_pointer_shape;
146 Lisp_Object Vx_busy_pointer_shape;
147
148 /* The shape when over mouse-sensitive text. */
149
150 Lisp_Object Vx_sensitive_text_pointer_shape;
151
152 /* If non-nil, the pointer shape to indicate that windows can be
153 dragged horizontally. */
154
155 Lisp_Object Vx_window_horizontal_drag_shape;
156
157 /* Color of chars displayed in cursor box. */
158
159 Lisp_Object Vx_cursor_fore_pixel;
160
161 /* Nonzero if using X. */
162
163 static int x_in_use;
164
165 /* Non nil if no window manager is in use. */
166
167 Lisp_Object Vx_no_window_manager;
168
169 /* Search path for bitmap files. */
170
171 Lisp_Object Vx_bitmap_file_path;
172
173 /* Regexp matching a font name whose width is the same as `PIXEL_SIZE'. */
174
175 Lisp_Object Vx_pixel_size_width_font_regexp;
176
177 /* Evaluate this expression to rebuild the section of syms_of_xfns
178 that initializes and staticpros the symbols declared below. Note
179 that Emacs 18 has a bug that keeps C-x C-e from being able to
180 evaluate this expression.
181
182 (progn
183 ;; Accumulate a list of the symbols we want to initialize from the
184 ;; declarations at the top of the file.
185 (goto-char (point-min))
186 (search-forward "/\*&&& symbols declared here &&&*\/\n")
187 (let (symbol-list)
188 (while (looking-at "Lisp_Object \\(Q[a-z_]+\\)")
189 (setq symbol-list
190 (cons (buffer-substring (match-beginning 1) (match-end 1))
191 symbol-list))
192 (forward-line 1))
193 (setq symbol-list (nreverse symbol-list))
194 ;; Delete the section of syms_of_... where we initialize the symbols.
195 (search-forward "\n /\*&&& init symbols here &&&*\/\n")
196 (let ((start (point)))
197 (while (looking-at "^ Q")
198 (forward-line 2))
199 (kill-region start (point)))
200 ;; Write a new symbol initialization section.
201 (while symbol-list
202 (insert (format " %s = intern (\"" (car symbol-list)))
203 (let ((start (point)))
204 (insert (substring (car symbol-list) 1))
205 (subst-char-in-region start (point) ?_ ?-))
206 (insert (format "\");\n staticpro (&%s);\n" (car symbol-list)))
207 (setq symbol-list (cdr symbol-list)))))
208
209 */
210
211 /*&&& symbols declared here &&&*/
212 Lisp_Object Qauto_raise;
213 Lisp_Object Qauto_lower;
214 Lisp_Object Qbar;
215 Lisp_Object Qborder_color;
216 Lisp_Object Qborder_width;
217 Lisp_Object Qbox;
218 Lisp_Object Qcursor_color;
219 Lisp_Object Qcursor_type;
220 Lisp_Object Qgeometry;
221 Lisp_Object Qicon_left;
222 Lisp_Object Qicon_top;
223 Lisp_Object Qicon_type;
224 Lisp_Object Qicon_name;
225 Lisp_Object Qinternal_border_width;
226 Lisp_Object Qleft;
227 Lisp_Object Qright;
228 Lisp_Object Qmouse_color;
229 Lisp_Object Qnone;
230 Lisp_Object Qouter_window_id;
231 Lisp_Object Qparent_id;
232 Lisp_Object Qscroll_bar_width;
233 Lisp_Object Qsuppress_icon;
234 extern Lisp_Object Qtop;
235 Lisp_Object Qundefined_color;
236 Lisp_Object Qvertical_scroll_bars;
237 Lisp_Object Qvisibility;
238 Lisp_Object Qwindow_id;
239 Lisp_Object Qx_frame_parameter;
240 Lisp_Object Qx_resource_name;
241 Lisp_Object Quser_position;
242 Lisp_Object Quser_size;
243 extern Lisp_Object Qdisplay;
244 Lisp_Object Qscroll_bar_foreground, Qscroll_bar_background;
245 Lisp_Object Qscreen_gamma, Qline_spacing, Qcenter;
246 Lisp_Object Qcompound_text;
247
248 /* The below are defined in frame.c. */
249
250 extern Lisp_Object Qheight, Qminibuffer, Qname, Qonly, Qwidth;
251 extern Lisp_Object Qunsplittable, Qmenu_bar_lines, Qbuffer_predicate, Qtitle;
252 extern Lisp_Object Qtool_bar_lines;
253
254 extern Lisp_Object Vwindow_system_version;
255
256 Lisp_Object Qface_set_after_frame_default;
257
258 \f
259 /* Error if we are not connected to X. */
260
261 void
262 check_x ()
263 {
264 if (! x_in_use)
265 error ("X windows are not in use or not initialized");
266 }
267
268 /* Nonzero if we can use mouse menus.
269 You should not call this unless HAVE_MENUS is defined. */
270
271 int
272 have_menus_p ()
273 {
274 return x_in_use;
275 }
276
277 /* Extract a frame as a FRAME_PTR, defaulting to the selected frame
278 and checking validity for X. */
279
280 FRAME_PTR
281 check_x_frame (frame)
282 Lisp_Object frame;
283 {
284 FRAME_PTR f;
285
286 if (NILP (frame))
287 frame = selected_frame;
288 CHECK_LIVE_FRAME (frame, 0);
289 f = XFRAME (frame);
290 if (! FRAME_X_P (f))
291 error ("Non-X frame used");
292 return f;
293 }
294
295 /* Let the user specify an X display with a frame.
296 nil stands for the selected frame--or, if that is not an X frame,
297 the first X display on the list. */
298
299 static struct x_display_info *
300 check_x_display_info (frame)
301 Lisp_Object frame;
302 {
303 struct x_display_info *dpyinfo = NULL;
304
305 if (NILP (frame))
306 {
307 struct frame *sf = XFRAME (selected_frame);
308
309 if (FRAME_X_P (sf) && FRAME_LIVE_P (sf))
310 dpyinfo = FRAME_X_DISPLAY_INFO (sf);
311 else if (x_display_list != 0)
312 dpyinfo = x_display_list;
313 else
314 error ("X windows are not in use or not initialized");
315 }
316 else if (STRINGP (frame))
317 dpyinfo = x_display_info_for_name (frame);
318 else
319 {
320 FRAME_PTR f;
321
322 CHECK_LIVE_FRAME (frame, 0);
323 f = XFRAME (frame);
324 if (! FRAME_X_P (f))
325 error ("Non-X frame used");
326 dpyinfo = FRAME_X_DISPLAY_INFO (f);
327 }
328
329 return dpyinfo;
330 }
331
332 \f
333 /* Return the Emacs frame-object corresponding to an X window.
334 It could be the frame's main window or an icon window. */
335
336 /* This function can be called during GC, so use GC_xxx type test macros. */
337
338 struct frame *
339 x_window_to_frame (dpyinfo, wdesc)
340 struct x_display_info *dpyinfo;
341 int wdesc;
342 {
343 Lisp_Object tail, frame;
344 struct frame *f;
345
346 for (tail = Vframe_list; GC_CONSP (tail); tail = XCDR (tail))
347 {
348 frame = XCAR (tail);
349 if (!GC_FRAMEP (frame))
350 continue;
351 f = XFRAME (frame);
352 if (!FRAME_X_P (f) || FRAME_X_DISPLAY_INFO (f) != dpyinfo)
353 continue;
354 if (f->output_data.x->busy_window == wdesc)
355 return f;
356 #ifdef USE_X_TOOLKIT
357 if ((f->output_data.x->edit_widget
358 && XtWindow (f->output_data.x->edit_widget) == wdesc)
359 /* A tooltip frame? */
360 || (!f->output_data.x->edit_widget
361 && FRAME_X_WINDOW (f) == wdesc)
362 || f->output_data.x->icon_desc == wdesc)
363 return f;
364 #else /* not USE_X_TOOLKIT */
365 if (FRAME_X_WINDOW (f) == wdesc
366 || f->output_data.x->icon_desc == wdesc)
367 return f;
368 #endif /* not USE_X_TOOLKIT */
369 }
370 return 0;
371 }
372
373 #ifdef USE_X_TOOLKIT
374 /* Like x_window_to_frame but also compares the window with the widget's
375 windows. */
376
377 struct frame *
378 x_any_window_to_frame (dpyinfo, wdesc)
379 struct x_display_info *dpyinfo;
380 int wdesc;
381 {
382 Lisp_Object tail, frame;
383 struct frame *f, *found;
384 struct x_output *x;
385
386 found = NULL;
387 for (tail = Vframe_list; GC_CONSP (tail) && !found; tail = XCDR (tail))
388 {
389 frame = XCAR (tail);
390 if (!GC_FRAMEP (frame))
391 continue;
392
393 f = XFRAME (frame);
394 if (FRAME_X_P (f) && FRAME_X_DISPLAY_INFO (f) == dpyinfo)
395 {
396 /* This frame matches if the window is any of its widgets. */
397 x = f->output_data.x;
398 if (x->busy_window == wdesc)
399 found = f;
400 else if (x->widget)
401 {
402 if (wdesc == XtWindow (x->widget)
403 || wdesc == XtWindow (x->column_widget)
404 || wdesc == XtWindow (x->edit_widget))
405 found = f;
406 /* Match if the window is this frame's menubar. */
407 else if (lw_window_is_in_menubar (wdesc, x->menubar_widget))
408 found = f;
409 }
410 else if (FRAME_X_WINDOW (f) == wdesc)
411 /* A tooltip frame. */
412 found = f;
413 }
414 }
415
416 return found;
417 }
418
419 /* Likewise, but exclude the menu bar widget. */
420
421 struct frame *
422 x_non_menubar_window_to_frame (dpyinfo, wdesc)
423 struct x_display_info *dpyinfo;
424 int wdesc;
425 {
426 Lisp_Object tail, frame;
427 struct frame *f;
428 struct x_output *x;
429
430 for (tail = Vframe_list; GC_CONSP (tail); tail = XCDR (tail))
431 {
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 /* This frame matches if the window is any of its widgets. */
440 if (x->busy_window == wdesc)
441 return f;
442 else if (x->widget)
443 {
444 if (wdesc == XtWindow (x->widget)
445 || wdesc == XtWindow (x->column_widget)
446 || wdesc == XtWindow (x->edit_widget))
447 return f;
448 }
449 else if (FRAME_X_WINDOW (f) == wdesc)
450 /* A tooltip frame. */
451 return f;
452 }
453 return 0;
454 }
455
456 /* Likewise, but consider only the menu bar widget. */
457
458 struct frame *
459 x_menubar_window_to_frame (dpyinfo, wdesc)
460 struct x_display_info *dpyinfo;
461 int wdesc;
462 {
463 Lisp_Object tail, frame;
464 struct frame *f;
465 struct x_output *x;
466
467 for (tail = Vframe_list; GC_CONSP (tail); tail = XCDR (tail))
468 {
469 frame = XCAR (tail);
470 if (!GC_FRAMEP (frame))
471 continue;
472 f = XFRAME (frame);
473 if (!FRAME_X_P (f) || FRAME_X_DISPLAY_INFO (f) != dpyinfo)
474 continue;
475 x = f->output_data.x;
476 /* Match if the window is this frame's menubar. */
477 if (x->menubar_widget
478 && lw_window_is_in_menubar (wdesc, x->menubar_widget))
479 return f;
480 }
481 return 0;
482 }
483
484 /* Return the frame whose principal (outermost) window is WDESC.
485 If WDESC is some other (smaller) window, we return 0. */
486
487 struct frame *
488 x_top_window_to_frame (dpyinfo, wdesc)
489 struct x_display_info *dpyinfo;
490 int wdesc;
491 {
492 Lisp_Object tail, frame;
493 struct frame *f;
494 struct x_output *x;
495
496 for (tail = Vframe_list; GC_CONSP (tail); tail = XCDR (tail))
497 {
498 frame = XCAR (tail);
499 if (!GC_FRAMEP (frame))
500 continue;
501 f = XFRAME (frame);
502 if (!FRAME_X_P (f) || FRAME_X_DISPLAY_INFO (f) != dpyinfo)
503 continue;
504 x = f->output_data.x;
505
506 if (x->widget)
507 {
508 /* This frame matches if the window is its topmost widget. */
509 if (wdesc == XtWindow (x->widget))
510 return f;
511 #if 0 /* I don't know why it did this,
512 but it seems logically wrong,
513 and it causes trouble for MapNotify events. */
514 /* Match if the window is this frame's menubar. */
515 if (x->menubar_widget
516 && wdesc == XtWindow (x->menubar_widget))
517 return f;
518 #endif
519 }
520 else if (FRAME_X_WINDOW (f) == wdesc)
521 /* Tooltip frame. */
522 return f;
523 }
524 return 0;
525 }
526 #endif /* USE_X_TOOLKIT */
527
528 \f
529
530 /* Code to deal with bitmaps. Bitmaps are referenced by their bitmap
531 id, which is just an int that this section returns. Bitmaps are
532 reference counted so they can be shared among frames.
533
534 Bitmap indices are guaranteed to be > 0, so a negative number can
535 be used to indicate no bitmap.
536
537 If you use x_create_bitmap_from_data, then you must keep track of
538 the bitmaps yourself. That is, creating a bitmap from the same
539 data more than once will not be caught. */
540
541
542 /* Functions to access the contents of a bitmap, given an id. */
543
544 int
545 x_bitmap_height (f, id)
546 FRAME_PTR f;
547 int id;
548 {
549 return FRAME_X_DISPLAY_INFO (f)->bitmaps[id - 1].height;
550 }
551
552 int
553 x_bitmap_width (f, id)
554 FRAME_PTR f;
555 int id;
556 {
557 return FRAME_X_DISPLAY_INFO (f)->bitmaps[id - 1].width;
558 }
559
560 int
561 x_bitmap_pixmap (f, id)
562 FRAME_PTR f;
563 int id;
564 {
565 return FRAME_X_DISPLAY_INFO (f)->bitmaps[id - 1].pixmap;
566 }
567
568
569 /* Allocate a new bitmap record. Returns index of new record. */
570
571 static int
572 x_allocate_bitmap_record (f)
573 FRAME_PTR f;
574 {
575 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
576 int i;
577
578 if (dpyinfo->bitmaps == NULL)
579 {
580 dpyinfo->bitmaps_size = 10;
581 dpyinfo->bitmaps
582 = (struct x_bitmap_record *) xmalloc (dpyinfo->bitmaps_size * sizeof (struct x_bitmap_record));
583 dpyinfo->bitmaps_last = 1;
584 return 1;
585 }
586
587 if (dpyinfo->bitmaps_last < dpyinfo->bitmaps_size)
588 return ++dpyinfo->bitmaps_last;
589
590 for (i = 0; i < dpyinfo->bitmaps_size; ++i)
591 if (dpyinfo->bitmaps[i].refcount == 0)
592 return i + 1;
593
594 dpyinfo->bitmaps_size *= 2;
595 dpyinfo->bitmaps
596 = (struct x_bitmap_record *) xrealloc (dpyinfo->bitmaps,
597 dpyinfo->bitmaps_size * sizeof (struct x_bitmap_record));
598 return ++dpyinfo->bitmaps_last;
599 }
600
601 /* Add one reference to the reference count of the bitmap with id ID. */
602
603 void
604 x_reference_bitmap (f, id)
605 FRAME_PTR f;
606 int id;
607 {
608 ++FRAME_X_DISPLAY_INFO (f)->bitmaps[id - 1].refcount;
609 }
610
611 /* Create a bitmap for frame F from a HEIGHT x WIDTH array of bits at BITS. */
612
613 int
614 x_create_bitmap_from_data (f, bits, width, height)
615 struct frame *f;
616 char *bits;
617 unsigned int width, height;
618 {
619 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
620 Pixmap bitmap;
621 int id;
622
623 bitmap = XCreateBitmapFromData (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
624 bits, width, height);
625
626 if (! bitmap)
627 return -1;
628
629 id = x_allocate_bitmap_record (f);
630 dpyinfo->bitmaps[id - 1].pixmap = bitmap;
631 dpyinfo->bitmaps[id - 1].file = NULL;
632 dpyinfo->bitmaps[id - 1].refcount = 1;
633 dpyinfo->bitmaps[id - 1].depth = 1;
634 dpyinfo->bitmaps[id - 1].height = height;
635 dpyinfo->bitmaps[id - 1].width = width;
636
637 return id;
638 }
639
640 /* Create bitmap from file FILE for frame F. */
641
642 int
643 x_create_bitmap_from_file (f, file)
644 struct frame *f;
645 Lisp_Object file;
646 {
647 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
648 unsigned int width, height;
649 Pixmap bitmap;
650 int xhot, yhot, result, id;
651 Lisp_Object found;
652 int fd;
653 char *filename;
654
655 /* Look for an existing bitmap with the same name. */
656 for (id = 0; id < dpyinfo->bitmaps_last; ++id)
657 {
658 if (dpyinfo->bitmaps[id].refcount
659 && dpyinfo->bitmaps[id].file
660 && !strcmp (dpyinfo->bitmaps[id].file, (char *) XSTRING (file)->data))
661 {
662 ++dpyinfo->bitmaps[id].refcount;
663 return id + 1;
664 }
665 }
666
667 /* Search bitmap-file-path for the file, if appropriate. */
668 fd = openp (Vx_bitmap_file_path, file, "", &found, 0);
669 if (fd < 0)
670 return -1;
671 emacs_close (fd);
672
673 filename = (char *) XSTRING (found)->data;
674
675 result = XReadBitmapFile (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
676 filename, &width, &height, &bitmap, &xhot, &yhot);
677 if (result != BitmapSuccess)
678 return -1;
679
680 id = x_allocate_bitmap_record (f);
681 dpyinfo->bitmaps[id - 1].pixmap = bitmap;
682 dpyinfo->bitmaps[id - 1].refcount = 1;
683 dpyinfo->bitmaps[id - 1].file
684 = (char *) xmalloc (STRING_BYTES (XSTRING (file)) + 1);
685 dpyinfo->bitmaps[id - 1].depth = 1;
686 dpyinfo->bitmaps[id - 1].height = height;
687 dpyinfo->bitmaps[id - 1].width = width;
688 strcpy (dpyinfo->bitmaps[id - 1].file, XSTRING (file)->data);
689
690 return id;
691 }
692
693 /* Remove reference to bitmap with id number ID. */
694
695 void
696 x_destroy_bitmap (f, id)
697 FRAME_PTR f;
698 int id;
699 {
700 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
701
702 if (id > 0)
703 {
704 --dpyinfo->bitmaps[id - 1].refcount;
705 if (dpyinfo->bitmaps[id - 1].refcount == 0)
706 {
707 BLOCK_INPUT;
708 XFreePixmap (FRAME_X_DISPLAY (f), dpyinfo->bitmaps[id - 1].pixmap);
709 if (dpyinfo->bitmaps[id - 1].file)
710 {
711 xfree (dpyinfo->bitmaps[id - 1].file);
712 dpyinfo->bitmaps[id - 1].file = NULL;
713 }
714 UNBLOCK_INPUT;
715 }
716 }
717 }
718
719 /* Free all the bitmaps for the display specified by DPYINFO. */
720
721 static void
722 x_destroy_all_bitmaps (dpyinfo)
723 struct x_display_info *dpyinfo;
724 {
725 int i;
726 for (i = 0; i < dpyinfo->bitmaps_last; i++)
727 if (dpyinfo->bitmaps[i].refcount > 0)
728 {
729 XFreePixmap (dpyinfo->display, dpyinfo->bitmaps[i].pixmap);
730 if (dpyinfo->bitmaps[i].file)
731 xfree (dpyinfo->bitmaps[i].file);
732 }
733 dpyinfo->bitmaps_last = 0;
734 }
735 \f
736 /* Connect the frame-parameter names for X frames
737 to the ways of passing the parameter values to the window system.
738
739 The name of a parameter, as a Lisp symbol,
740 has an `x-frame-parameter' property which is an integer in Lisp
741 that is an index in this table. */
742
743 struct x_frame_parm_table
744 {
745 char *name;
746 void (*setter) P_ ((struct frame *, Lisp_Object, Lisp_Object));
747 };
748
749 static void x_change_window_heights P_ ((Lisp_Object, int));
750 static void x_disable_image P_ ((struct frame *, struct image *));
751 static void x_create_im P_ ((struct frame *));
752 void x_set_foreground_color P_ ((struct frame *, Lisp_Object, Lisp_Object));
753 static void x_set_line_spacing P_ ((struct frame *, Lisp_Object, Lisp_Object));
754 void x_set_background_color P_ ((struct frame *, Lisp_Object, Lisp_Object));
755 void x_set_mouse_color P_ ((struct frame *, Lisp_Object, Lisp_Object));
756 void x_set_cursor_color P_ ((struct frame *, Lisp_Object, Lisp_Object));
757 void x_set_border_color P_ ((struct frame *, Lisp_Object, Lisp_Object));
758 void x_set_cursor_type P_ ((struct frame *, Lisp_Object, Lisp_Object));
759 void x_set_icon_type P_ ((struct frame *, Lisp_Object, Lisp_Object));
760 void x_set_icon_name P_ ((struct frame *, Lisp_Object, Lisp_Object));
761 void x_set_font P_ ((struct frame *, Lisp_Object, Lisp_Object));
762 void x_set_border_width P_ ((struct frame *, Lisp_Object, Lisp_Object));
763 void x_set_internal_border_width P_ ((struct frame *, Lisp_Object,
764 Lisp_Object));
765 void x_explicitly_set_name P_ ((struct frame *, Lisp_Object, Lisp_Object));
766 void x_set_autoraise P_ ((struct frame *, Lisp_Object, Lisp_Object));
767 void x_set_autolower P_ ((struct frame *, Lisp_Object, Lisp_Object));
768 void x_set_vertical_scroll_bars P_ ((struct frame *, Lisp_Object,
769 Lisp_Object));
770 void x_set_visibility P_ ((struct frame *, Lisp_Object, Lisp_Object));
771 void x_set_menu_bar_lines P_ ((struct frame *, Lisp_Object, Lisp_Object));
772 void x_set_scroll_bar_width P_ ((struct frame *, Lisp_Object, Lisp_Object));
773 void x_set_title P_ ((struct frame *, Lisp_Object, Lisp_Object));
774 void x_set_unsplittable P_ ((struct frame *, Lisp_Object, Lisp_Object));
775 void x_set_tool_bar_lines P_ ((struct frame *, Lisp_Object, Lisp_Object));
776 void x_set_scroll_bar_foreground P_ ((struct frame *, Lisp_Object,
777 Lisp_Object));
778 void x_set_scroll_bar_background P_ ((struct frame *, Lisp_Object,
779 Lisp_Object));
780 static Lisp_Object x_default_scroll_bar_color_parameter P_ ((struct frame *,
781 Lisp_Object,
782 Lisp_Object,
783 char *, char *,
784 int));
785 static void x_set_screen_gamma P_ ((struct frame *, Lisp_Object, Lisp_Object));
786 static void x_edge_detection P_ ((struct frame *, struct image *, Lisp_Object,
787 Lisp_Object));
788 static void init_color_table P_ ((void));
789 static void free_color_table P_ ((void));
790 static unsigned long *colors_in_color_table P_ ((int *n));
791 static unsigned long lookup_rgb_color P_ ((struct frame *f, int r, int g, int b));
792 static unsigned long lookup_pixel_color P_ ((struct frame *f, unsigned long p));
793
794
795
796 static struct x_frame_parm_table x_frame_parms[] =
797 {
798 "auto-raise", x_set_autoraise,
799 "auto-lower", x_set_autolower,
800 "background-color", x_set_background_color,
801 "border-color", x_set_border_color,
802 "border-width", x_set_border_width,
803 "cursor-color", x_set_cursor_color,
804 "cursor-type", x_set_cursor_type,
805 "font", x_set_font,
806 "foreground-color", x_set_foreground_color,
807 "icon-name", x_set_icon_name,
808 "icon-type", x_set_icon_type,
809 "internal-border-width", x_set_internal_border_width,
810 "menu-bar-lines", x_set_menu_bar_lines,
811 "mouse-color", x_set_mouse_color,
812 "name", x_explicitly_set_name,
813 "scroll-bar-width", x_set_scroll_bar_width,
814 "title", x_set_title,
815 "unsplittable", x_set_unsplittable,
816 "vertical-scroll-bars", x_set_vertical_scroll_bars,
817 "visibility", x_set_visibility,
818 "tool-bar-lines", x_set_tool_bar_lines,
819 "scroll-bar-foreground", x_set_scroll_bar_foreground,
820 "scroll-bar-background", x_set_scroll_bar_background,
821 "screen-gamma", x_set_screen_gamma,
822 "line-spacing", x_set_line_spacing
823 };
824
825 /* Attach the `x-frame-parameter' properties to
826 the Lisp symbol names of parameters relevant to X. */
827
828 void
829 init_x_parm_symbols ()
830 {
831 int i;
832
833 for (i = 0; i < sizeof (x_frame_parms) / sizeof (x_frame_parms[0]); i++)
834 Fput (intern (x_frame_parms[i].name), Qx_frame_parameter,
835 make_number (i));
836 }
837 \f
838 /* Change the parameters of frame F as specified by ALIST.
839 If a parameter is not specially recognized, do nothing special;
840 otherwise call the `x_set_...' function for that parameter.
841 Except for certain geometry properties, always call store_frame_param
842 to store the new value in the parameter alist. */
843
844 void
845 x_set_frame_parameters (f, alist)
846 FRAME_PTR f;
847 Lisp_Object alist;
848 {
849 Lisp_Object tail;
850
851 /* If both of these parameters are present, it's more efficient to
852 set them both at once. So we wait until we've looked at the
853 entire list before we set them. */
854 int width, height;
855
856 /* Same here. */
857 Lisp_Object left, top;
858
859 /* Same with these. */
860 Lisp_Object icon_left, icon_top;
861
862 /* Record in these vectors all the parms specified. */
863 Lisp_Object *parms;
864 Lisp_Object *values;
865 int i, p;
866 int left_no_change = 0, top_no_change = 0;
867 int icon_left_no_change = 0, icon_top_no_change = 0;
868
869 struct gcpro gcpro1, gcpro2;
870
871 i = 0;
872 for (tail = alist; CONSP (tail); tail = Fcdr (tail))
873 i++;
874
875 parms = (Lisp_Object *) alloca (i * sizeof (Lisp_Object));
876 values = (Lisp_Object *) alloca (i * sizeof (Lisp_Object));
877
878 /* Extract parm names and values into those vectors. */
879
880 i = 0;
881 for (tail = alist; CONSP (tail); tail = Fcdr (tail))
882 {
883 Lisp_Object elt;
884
885 elt = Fcar (tail);
886 parms[i] = Fcar (elt);
887 values[i] = Fcdr (elt);
888 i++;
889 }
890 /* TAIL and ALIST are not used again below here. */
891 alist = tail = Qnil;
892
893 GCPRO2 (*parms, *values);
894 gcpro1.nvars = i;
895 gcpro2.nvars = i;
896
897 /* There is no need to gcpro LEFT, TOP, ICON_LEFT, or ICON_TOP,
898 because their values appear in VALUES and strings are not valid. */
899 top = left = Qunbound;
900 icon_left = icon_top = Qunbound;
901
902 /* Provide default values for HEIGHT and WIDTH. */
903 if (FRAME_NEW_WIDTH (f))
904 width = FRAME_NEW_WIDTH (f);
905 else
906 width = FRAME_WIDTH (f);
907
908 if (FRAME_NEW_HEIGHT (f))
909 height = FRAME_NEW_HEIGHT (f);
910 else
911 height = FRAME_HEIGHT (f);
912
913 /* Process foreground_color and background_color before anything else.
914 They are independent of other properties, but other properties (e.g.,
915 cursor_color) are dependent upon them. */
916 for (p = 0; p < i; p++)
917 {
918 Lisp_Object prop, val;
919
920 prop = parms[p];
921 val = values[p];
922 if (EQ (prop, Qforeground_color) || EQ (prop, Qbackground_color))
923 {
924 register Lisp_Object param_index, old_value;
925
926 param_index = Fget (prop, Qx_frame_parameter);
927 old_value = get_frame_param (f, prop);
928 store_frame_param (f, prop, val);
929 if (NATNUMP (param_index)
930 && (XFASTINT (param_index)
931 < sizeof (x_frame_parms)/sizeof (x_frame_parms[0])))
932 (*x_frame_parms[XINT (param_index)].setter)(f, val, old_value);
933 }
934 }
935
936 /* Now process them in reverse of specified order. */
937 for (i--; i >= 0; i--)
938 {
939 Lisp_Object prop, val;
940
941 prop = parms[i];
942 val = values[i];
943
944 if (EQ (prop, Qwidth) && NUMBERP (val))
945 width = XFASTINT (val);
946 else if (EQ (prop, Qheight) && NUMBERP (val))
947 height = XFASTINT (val);
948 else if (EQ (prop, Qtop))
949 top = val;
950 else if (EQ (prop, Qleft))
951 left = val;
952 else if (EQ (prop, Qicon_top))
953 icon_top = val;
954 else if (EQ (prop, Qicon_left))
955 icon_left = val;
956 else if (EQ (prop, Qforeground_color) || EQ (prop, Qbackground_color))
957 /* Processed above. */
958 continue;
959 else
960 {
961 register Lisp_Object param_index, old_value;
962
963 param_index = Fget (prop, Qx_frame_parameter);
964 old_value = get_frame_param (f, prop);
965 store_frame_param (f, prop, val);
966 if (NATNUMP (param_index)
967 && (XFASTINT (param_index)
968 < sizeof (x_frame_parms)/sizeof (x_frame_parms[0])))
969 (*x_frame_parms[XINT (param_index)].setter)(f, val, old_value);
970 }
971 }
972
973 /* Don't die if just one of these was set. */
974 if (EQ (left, Qunbound))
975 {
976 left_no_change = 1;
977 if (f->output_data.x->left_pos < 0)
978 left = Fcons (Qplus, Fcons (make_number (f->output_data.x->left_pos), Qnil));
979 else
980 XSETINT (left, f->output_data.x->left_pos);
981 }
982 if (EQ (top, Qunbound))
983 {
984 top_no_change = 1;
985 if (f->output_data.x->top_pos < 0)
986 top = Fcons (Qplus, Fcons (make_number (f->output_data.x->top_pos), Qnil));
987 else
988 XSETINT (top, f->output_data.x->top_pos);
989 }
990
991 /* If one of the icon positions was not set, preserve or default it. */
992 if (EQ (icon_left, Qunbound) || ! INTEGERP (icon_left))
993 {
994 icon_left_no_change = 1;
995 icon_left = Fcdr (Fassq (Qicon_left, f->param_alist));
996 if (NILP (icon_left))
997 XSETINT (icon_left, 0);
998 }
999 if (EQ (icon_top, Qunbound) || ! INTEGERP (icon_top))
1000 {
1001 icon_top_no_change = 1;
1002 icon_top = Fcdr (Fassq (Qicon_top, f->param_alist));
1003 if (NILP (icon_top))
1004 XSETINT (icon_top, 0);
1005 }
1006
1007 /* Don't set these parameters unless they've been explicitly
1008 specified. The window might be mapped or resized while we're in
1009 this function, and we don't want to override that unless the lisp
1010 code has asked for it.
1011
1012 Don't set these parameters unless they actually differ from the
1013 window's current parameters; the window may not actually exist
1014 yet. */
1015 {
1016 Lisp_Object frame;
1017
1018 check_frame_size (f, &height, &width);
1019
1020 XSETFRAME (frame, f);
1021
1022 if (width != FRAME_WIDTH (f)
1023 || height != FRAME_HEIGHT (f)
1024 || FRAME_NEW_HEIGHT (f) || FRAME_NEW_WIDTH (f))
1025 Fset_frame_size (frame, make_number (width), make_number (height));
1026
1027 if ((!NILP (left) || !NILP (top))
1028 && ! (left_no_change && top_no_change)
1029 && ! (NUMBERP (left) && XINT (left) == f->output_data.x->left_pos
1030 && NUMBERP (top) && XINT (top) == f->output_data.x->top_pos))
1031 {
1032 int leftpos = 0;
1033 int toppos = 0;
1034
1035 /* Record the signs. */
1036 f->output_data.x->size_hint_flags &= ~ (XNegative | YNegative);
1037 if (EQ (left, Qminus))
1038 f->output_data.x->size_hint_flags |= XNegative;
1039 else if (INTEGERP (left))
1040 {
1041 leftpos = XINT (left);
1042 if (leftpos < 0)
1043 f->output_data.x->size_hint_flags |= XNegative;
1044 }
1045 else if (CONSP (left) && EQ (XCAR (left), Qminus)
1046 && CONSP (XCDR (left))
1047 && INTEGERP (XCAR (XCDR (left))))
1048 {
1049 leftpos = - XINT (XCAR (XCDR (left)));
1050 f->output_data.x->size_hint_flags |= XNegative;
1051 }
1052 else if (CONSP (left) && EQ (XCAR (left), Qplus)
1053 && CONSP (XCDR (left))
1054 && INTEGERP (XCAR (XCDR (left))))
1055 {
1056 leftpos = XINT (XCAR (XCDR (left)));
1057 }
1058
1059 if (EQ (top, Qminus))
1060 f->output_data.x->size_hint_flags |= YNegative;
1061 else if (INTEGERP (top))
1062 {
1063 toppos = XINT (top);
1064 if (toppos < 0)
1065 f->output_data.x->size_hint_flags |= YNegative;
1066 }
1067 else if (CONSP (top) && EQ (XCAR (top), Qminus)
1068 && CONSP (XCDR (top))
1069 && INTEGERP (XCAR (XCDR (top))))
1070 {
1071 toppos = - XINT (XCAR (XCDR (top)));
1072 f->output_data.x->size_hint_flags |= YNegative;
1073 }
1074 else if (CONSP (top) && EQ (XCAR (top), Qplus)
1075 && CONSP (XCDR (top))
1076 && INTEGERP (XCAR (XCDR (top))))
1077 {
1078 toppos = XINT (XCAR (XCDR (top)));
1079 }
1080
1081
1082 /* Store the numeric value of the position. */
1083 f->output_data.x->top_pos = toppos;
1084 f->output_data.x->left_pos = leftpos;
1085
1086 f->output_data.x->win_gravity = NorthWestGravity;
1087
1088 /* Actually set that position, and convert to absolute. */
1089 x_set_offset (f, leftpos, toppos, -1);
1090 }
1091
1092 if ((!NILP (icon_left) || !NILP (icon_top))
1093 && ! (icon_left_no_change && icon_top_no_change))
1094 x_wm_set_icon_position (f, XINT (icon_left), XINT (icon_top));
1095 }
1096
1097 UNGCPRO;
1098 }
1099
1100 /* Store the screen positions of frame F into XPTR and YPTR.
1101 These are the positions of the containing window manager window,
1102 not Emacs's own window. */
1103
1104 void
1105 x_real_positions (f, xptr, yptr)
1106 FRAME_PTR f;
1107 int *xptr, *yptr;
1108 {
1109 int win_x, win_y;
1110 Window child;
1111
1112 /* This is pretty gross, but seems to be the easiest way out of
1113 the problem that arises when restarting window-managers. */
1114
1115 #ifdef USE_X_TOOLKIT
1116 Window outer = (f->output_data.x->widget
1117 ? XtWindow (f->output_data.x->widget)
1118 : FRAME_X_WINDOW (f));
1119 #else
1120 Window outer = f->output_data.x->window_desc;
1121 #endif
1122 Window tmp_root_window;
1123 Window *tmp_children;
1124 unsigned int tmp_nchildren;
1125
1126 while (1)
1127 {
1128 int count = x_catch_errors (FRAME_X_DISPLAY (f));
1129 Window outer_window;
1130
1131 XQueryTree (FRAME_X_DISPLAY (f), outer, &tmp_root_window,
1132 &f->output_data.x->parent_desc,
1133 &tmp_children, &tmp_nchildren);
1134 XFree ((char *) tmp_children);
1135
1136 win_x = win_y = 0;
1137
1138 /* Find the position of the outside upper-left corner of
1139 the inner window, with respect to the outer window. */
1140 if (f->output_data.x->parent_desc != FRAME_X_DISPLAY_INFO (f)->root_window)
1141 outer_window = f->output_data.x->parent_desc;
1142 else
1143 outer_window = outer;
1144
1145 XTranslateCoordinates (FRAME_X_DISPLAY (f),
1146
1147 /* From-window, to-window. */
1148 outer_window,
1149 FRAME_X_DISPLAY_INFO (f)->root_window,
1150
1151 /* From-position, to-position. */
1152 0, 0, &win_x, &win_y,
1153
1154 /* Child of win. */
1155 &child);
1156
1157 /* It is possible for the window returned by the XQueryNotify
1158 to become invalid by the time we call XTranslateCoordinates.
1159 That can happen when you restart some window managers.
1160 If so, we get an error in XTranslateCoordinates.
1161 Detect that and try the whole thing over. */
1162 if (! x_had_errors_p (FRAME_X_DISPLAY (f)))
1163 {
1164 x_uncatch_errors (FRAME_X_DISPLAY (f), count);
1165 break;
1166 }
1167
1168 x_uncatch_errors (FRAME_X_DISPLAY (f), count);
1169 }
1170
1171 *xptr = win_x;
1172 *yptr = win_y;
1173 }
1174
1175 /* Insert a description of internally-recorded parameters of frame X
1176 into the parameter alist *ALISTPTR that is to be given to the user.
1177 Only parameters that are specific to the X window system
1178 and whose values are not correctly recorded in the frame's
1179 param_alist need to be considered here. */
1180
1181 void
1182 x_report_frame_params (f, alistptr)
1183 struct frame *f;
1184 Lisp_Object *alistptr;
1185 {
1186 char buf[16];
1187 Lisp_Object tem;
1188
1189 /* Represent negative positions (off the top or left screen edge)
1190 in a way that Fmodify_frame_parameters will understand correctly. */
1191 XSETINT (tem, f->output_data.x->left_pos);
1192 if (f->output_data.x->left_pos >= 0)
1193 store_in_alist (alistptr, Qleft, tem);
1194 else
1195 store_in_alist (alistptr, Qleft, Fcons (Qplus, Fcons (tem, Qnil)));
1196
1197 XSETINT (tem, f->output_data.x->top_pos);
1198 if (f->output_data.x->top_pos >= 0)
1199 store_in_alist (alistptr, Qtop, tem);
1200 else
1201 store_in_alist (alistptr, Qtop, Fcons (Qplus, Fcons (tem, Qnil)));
1202
1203 store_in_alist (alistptr, Qborder_width,
1204 make_number (f->output_data.x->border_width));
1205 store_in_alist (alistptr, Qinternal_border_width,
1206 make_number (f->output_data.x->internal_border_width));
1207 sprintf (buf, "%ld", (long) FRAME_X_WINDOW (f));
1208 store_in_alist (alistptr, Qwindow_id,
1209 build_string (buf));
1210 #ifdef USE_X_TOOLKIT
1211 /* Tooltip frame may not have this widget. */
1212 if (f->output_data.x->widget)
1213 #endif
1214 sprintf (buf, "%ld", (long) FRAME_OUTER_WINDOW (f));
1215 store_in_alist (alistptr, Qouter_window_id,
1216 build_string (buf));
1217 store_in_alist (alistptr, Qicon_name, f->icon_name);
1218 FRAME_SAMPLE_VISIBILITY (f);
1219 store_in_alist (alistptr, Qvisibility,
1220 (FRAME_VISIBLE_P (f) ? Qt
1221 : FRAME_ICONIFIED_P (f) ? Qicon : Qnil));
1222 store_in_alist (alistptr, Qdisplay,
1223 XCAR (FRAME_X_DISPLAY_INFO (f)->name_list_element));
1224
1225 if (f->output_data.x->parent_desc == FRAME_X_DISPLAY_INFO (f)->root_window)
1226 tem = Qnil;
1227 else
1228 XSETFASTINT (tem, f->output_data.x->parent_desc);
1229 store_in_alist (alistptr, Qparent_id, tem);
1230 }
1231 \f
1232
1233
1234 /* Gamma-correct COLOR on frame F. */
1235
1236 void
1237 gamma_correct (f, color)
1238 struct frame *f;
1239 XColor *color;
1240 {
1241 if (f->gamma)
1242 {
1243 color->red = pow (color->red / 65535.0, f->gamma) * 65535.0 + 0.5;
1244 color->green = pow (color->green / 65535.0, f->gamma) * 65535.0 + 0.5;
1245 color->blue = pow (color->blue / 65535.0, f->gamma) * 65535.0 + 0.5;
1246 }
1247 }
1248
1249
1250 /* Decide if color named COLOR_NAME is valid for use on frame F. If
1251 so, return the RGB values in COLOR. If ALLOC_P is non-zero,
1252 allocate the color. Value is zero if COLOR_NAME is invalid, or
1253 no color could be allocated. */
1254
1255 int
1256 x_defined_color (f, color_name, color, alloc_p)
1257 struct frame *f;
1258 char *color_name;
1259 XColor *color;
1260 int alloc_p;
1261 {
1262 int success_p;
1263 Display *dpy = FRAME_X_DISPLAY (f);
1264 Colormap cmap = FRAME_X_COLORMAP (f);
1265
1266 BLOCK_INPUT;
1267 success_p = XParseColor (dpy, cmap, color_name, color);
1268 if (success_p && alloc_p)
1269 success_p = x_alloc_nearest_color (f, cmap, color);
1270 UNBLOCK_INPUT;
1271
1272 return success_p;
1273 }
1274
1275
1276 /* Return the pixel color value for color COLOR_NAME on frame F. If F
1277 is a monochrome frame, return MONO_COLOR regardless of what ARG says.
1278 Signal an error if color can't be allocated. */
1279
1280 int
1281 x_decode_color (f, color_name, mono_color)
1282 FRAME_PTR f;
1283 Lisp_Object color_name;
1284 int mono_color;
1285 {
1286 XColor cdef;
1287
1288 CHECK_STRING (color_name, 0);
1289
1290 #if 0 /* Don't do this. It's wrong when we're not using the default
1291 colormap, it makes freeing difficult, and it's probably not
1292 an important optimization. */
1293 if (strcmp (XSTRING (color_name)->data, "black") == 0)
1294 return BLACK_PIX_DEFAULT (f);
1295 else if (strcmp (XSTRING (color_name)->data, "white") == 0)
1296 return WHITE_PIX_DEFAULT (f);
1297 #endif
1298
1299 /* Return MONO_COLOR for monochrome frames. */
1300 if (FRAME_X_DISPLAY_INFO (f)->n_planes == 1)
1301 return mono_color;
1302
1303 /* x_defined_color is responsible for coping with failures
1304 by looking for a near-miss. */
1305 if (x_defined_color (f, XSTRING (color_name)->data, &cdef, 1))
1306 return cdef.pixel;
1307
1308 Fsignal (Qerror, Fcons (build_string ("Undefined color"),
1309 Fcons (color_name, Qnil)));
1310 return 0;
1311 }
1312
1313
1314 \f
1315 /* Change the `line-spacing' frame parameter of frame F. OLD_VALUE is
1316 the previous value of that parameter, NEW_VALUE is the new value. */
1317
1318 static void
1319 x_set_line_spacing (f, new_value, old_value)
1320 struct frame *f;
1321 Lisp_Object new_value, old_value;
1322 {
1323 if (NILP (new_value))
1324 f->extra_line_spacing = 0;
1325 else if (NATNUMP (new_value))
1326 f->extra_line_spacing = XFASTINT (new_value);
1327 else
1328 Fsignal (Qerror, Fcons (build_string ("Invalid line-spacing"),
1329 Fcons (new_value, Qnil)));
1330 if (FRAME_VISIBLE_P (f))
1331 redraw_frame (f);
1332 }
1333
1334
1335 /* Change the `screen-gamma' frame parameter of frame F. OLD_VALUE is
1336 the previous value of that parameter, NEW_VALUE is the new value. */
1337
1338 static void
1339 x_set_screen_gamma (f, new_value, old_value)
1340 struct frame *f;
1341 Lisp_Object new_value, old_value;
1342 {
1343 if (NILP (new_value))
1344 f->gamma = 0;
1345 else if (NUMBERP (new_value) && XFLOATINT (new_value) > 0)
1346 /* The value 0.4545 is the normal viewing gamma. */
1347 f->gamma = 1.0 / (0.4545 * XFLOATINT (new_value));
1348 else
1349 Fsignal (Qerror, Fcons (build_string ("Invalid screen-gamma"),
1350 Fcons (new_value, Qnil)));
1351
1352 clear_face_cache (0);
1353 }
1354
1355
1356 /* Functions called only from `x_set_frame_param'
1357 to set individual parameters.
1358
1359 If FRAME_X_WINDOW (f) is 0,
1360 the frame is being created and its X-window does not exist yet.
1361 In that case, just record the parameter's new value
1362 in the standard place; do not attempt to change the window. */
1363
1364 void
1365 x_set_foreground_color (f, arg, oldval)
1366 struct frame *f;
1367 Lisp_Object arg, oldval;
1368 {
1369 unsigned long pixel
1370 = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f));
1371
1372 unload_color (f, f->output_data.x->foreground_pixel);
1373 f->output_data.x->foreground_pixel = pixel;
1374
1375 if (FRAME_X_WINDOW (f) != 0)
1376 {
1377 BLOCK_INPUT;
1378 XSetForeground (FRAME_X_DISPLAY (f), f->output_data.x->normal_gc,
1379 f->output_data.x->foreground_pixel);
1380 XSetBackground (FRAME_X_DISPLAY (f), f->output_data.x->reverse_gc,
1381 f->output_data.x->foreground_pixel);
1382 UNBLOCK_INPUT;
1383 update_face_from_frame_parameter (f, Qforeground_color, arg);
1384 if (FRAME_VISIBLE_P (f))
1385 redraw_frame (f);
1386 }
1387 }
1388
1389 void
1390 x_set_background_color (f, arg, oldval)
1391 struct frame *f;
1392 Lisp_Object arg, oldval;
1393 {
1394 unsigned long pixel
1395 = x_decode_color (f, arg, WHITE_PIX_DEFAULT (f));
1396
1397 unload_color (f, f->output_data.x->background_pixel);
1398 f->output_data.x->background_pixel = pixel;
1399
1400 if (FRAME_X_WINDOW (f) != 0)
1401 {
1402 BLOCK_INPUT;
1403 /* The main frame area. */
1404 XSetBackground (FRAME_X_DISPLAY (f), f->output_data.x->normal_gc,
1405 f->output_data.x->background_pixel);
1406 XSetForeground (FRAME_X_DISPLAY (f), f->output_data.x->reverse_gc,
1407 f->output_data.x->background_pixel);
1408 XSetForeground (FRAME_X_DISPLAY (f), f->output_data.x->cursor_gc,
1409 f->output_data.x->background_pixel);
1410 XSetWindowBackground (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
1411 f->output_data.x->background_pixel);
1412 {
1413 Lisp_Object bar;
1414 for (bar = FRAME_SCROLL_BARS (f); !NILP (bar);
1415 bar = XSCROLL_BAR (bar)->next)
1416 XSetWindowBackground (FRAME_X_DISPLAY (f),
1417 SCROLL_BAR_X_WINDOW (XSCROLL_BAR (bar)),
1418 f->output_data.x->background_pixel);
1419 }
1420 UNBLOCK_INPUT;
1421
1422 update_face_from_frame_parameter (f, Qbackground_color, arg);
1423
1424 if (FRAME_VISIBLE_P (f))
1425 redraw_frame (f);
1426 }
1427 }
1428
1429 void
1430 x_set_mouse_color (f, arg, oldval)
1431 struct frame *f;
1432 Lisp_Object arg, oldval;
1433 {
1434 Cursor cursor, nontext_cursor, mode_cursor, cross_cursor;
1435 Cursor busy_cursor, horizontal_drag_cursor;
1436 int count;
1437 unsigned long pixel = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f));
1438 unsigned long mask_color = f->output_data.x->background_pixel;
1439
1440 /* Don't let pointers be invisible. */
1441 if (mask_color == pixel
1442 && mask_color == f->output_data.x->background_pixel)
1443 pixel = f->output_data.x->foreground_pixel;
1444
1445 unload_color (f, f->output_data.x->mouse_pixel);
1446 f->output_data.x->mouse_pixel = pixel;
1447
1448 BLOCK_INPUT;
1449
1450 /* It's not okay to crash if the user selects a screwy cursor. */
1451 count = x_catch_errors (FRAME_X_DISPLAY (f));
1452
1453 if (!EQ (Qnil, Vx_pointer_shape))
1454 {
1455 CHECK_NUMBER (Vx_pointer_shape, 0);
1456 cursor = XCreateFontCursor (FRAME_X_DISPLAY (f), XINT (Vx_pointer_shape));
1457 }
1458 else
1459 cursor = XCreateFontCursor (FRAME_X_DISPLAY (f), XC_xterm);
1460 x_check_errors (FRAME_X_DISPLAY (f), "bad text pointer cursor: %s");
1461
1462 if (!EQ (Qnil, Vx_nontext_pointer_shape))
1463 {
1464 CHECK_NUMBER (Vx_nontext_pointer_shape, 0);
1465 nontext_cursor = XCreateFontCursor (FRAME_X_DISPLAY (f),
1466 XINT (Vx_nontext_pointer_shape));
1467 }
1468 else
1469 nontext_cursor = XCreateFontCursor (FRAME_X_DISPLAY (f), XC_left_ptr);
1470 x_check_errors (FRAME_X_DISPLAY (f), "bad nontext pointer cursor: %s");
1471
1472 if (!EQ (Qnil, Vx_busy_pointer_shape))
1473 {
1474 CHECK_NUMBER (Vx_busy_pointer_shape, 0);
1475 busy_cursor = XCreateFontCursor (FRAME_X_DISPLAY (f),
1476 XINT (Vx_busy_pointer_shape));
1477 }
1478 else
1479 busy_cursor = XCreateFontCursor (FRAME_X_DISPLAY (f), XC_watch);
1480 x_check_errors (FRAME_X_DISPLAY (f), "bad busy pointer cursor: %s");
1481
1482 x_check_errors (FRAME_X_DISPLAY (f), "bad nontext pointer cursor: %s");
1483 if (!EQ (Qnil, Vx_mode_pointer_shape))
1484 {
1485 CHECK_NUMBER (Vx_mode_pointer_shape, 0);
1486 mode_cursor = XCreateFontCursor (FRAME_X_DISPLAY (f),
1487 XINT (Vx_mode_pointer_shape));
1488 }
1489 else
1490 mode_cursor = XCreateFontCursor (FRAME_X_DISPLAY (f), XC_xterm);
1491 x_check_errors (FRAME_X_DISPLAY (f), "bad modeline pointer cursor: %s");
1492
1493 if (!EQ (Qnil, Vx_sensitive_text_pointer_shape))
1494 {
1495 CHECK_NUMBER (Vx_sensitive_text_pointer_shape, 0);
1496 cross_cursor
1497 = XCreateFontCursor (FRAME_X_DISPLAY (f),
1498 XINT (Vx_sensitive_text_pointer_shape));
1499 }
1500 else
1501 cross_cursor = XCreateFontCursor (FRAME_X_DISPLAY (f), XC_crosshair);
1502
1503 if (!NILP (Vx_window_horizontal_drag_shape))
1504 {
1505 CHECK_NUMBER (Vx_window_horizontal_drag_shape, 0);
1506 horizontal_drag_cursor
1507 = XCreateFontCursor (FRAME_X_DISPLAY (f),
1508 XINT (Vx_window_horizontal_drag_shape));
1509 }
1510 else
1511 horizontal_drag_cursor
1512 = XCreateFontCursor (FRAME_X_DISPLAY (f), XC_sb_h_double_arrow);
1513
1514 /* Check and report errors with the above calls. */
1515 x_check_errors (FRAME_X_DISPLAY (f), "can't set cursor shape: %s");
1516 x_uncatch_errors (FRAME_X_DISPLAY (f), count);
1517
1518 {
1519 XColor fore_color, back_color;
1520
1521 fore_color.pixel = f->output_data.x->mouse_pixel;
1522 x_query_color (f, &fore_color);
1523 back_color.pixel = mask_color;
1524 x_query_color (f, &back_color);
1525
1526 XRecolorCursor (FRAME_X_DISPLAY (f), cursor,
1527 &fore_color, &back_color);
1528 XRecolorCursor (FRAME_X_DISPLAY (f), nontext_cursor,
1529 &fore_color, &back_color);
1530 XRecolorCursor (FRAME_X_DISPLAY (f), mode_cursor,
1531 &fore_color, &back_color);
1532 XRecolorCursor (FRAME_X_DISPLAY (f), cross_cursor,
1533 &fore_color, &back_color);
1534 XRecolorCursor (FRAME_X_DISPLAY (f), busy_cursor,
1535 &fore_color, &back_color);
1536 XRecolorCursor (FRAME_X_DISPLAY (f), horizontal_drag_cursor,
1537 &fore_color, &back_color);
1538 }
1539
1540 if (FRAME_X_WINDOW (f) != 0)
1541 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), cursor);
1542
1543 if (cursor != f->output_data.x->text_cursor
1544 && f->output_data.x->text_cursor != 0)
1545 XFreeCursor (FRAME_X_DISPLAY (f), f->output_data.x->text_cursor);
1546 f->output_data.x->text_cursor = cursor;
1547
1548 if (nontext_cursor != f->output_data.x->nontext_cursor
1549 && f->output_data.x->nontext_cursor != 0)
1550 XFreeCursor (FRAME_X_DISPLAY (f), f->output_data.x->nontext_cursor);
1551 f->output_data.x->nontext_cursor = nontext_cursor;
1552
1553 if (busy_cursor != f->output_data.x->busy_cursor
1554 && f->output_data.x->busy_cursor != 0)
1555 XFreeCursor (FRAME_X_DISPLAY (f), f->output_data.x->busy_cursor);
1556 f->output_data.x->busy_cursor = busy_cursor;
1557
1558 if (mode_cursor != f->output_data.x->modeline_cursor
1559 && f->output_data.x->modeline_cursor != 0)
1560 XFreeCursor (FRAME_X_DISPLAY (f), f->output_data.x->modeline_cursor);
1561 f->output_data.x->modeline_cursor = mode_cursor;
1562
1563 if (cross_cursor != f->output_data.x->cross_cursor
1564 && f->output_data.x->cross_cursor != 0)
1565 XFreeCursor (FRAME_X_DISPLAY (f), f->output_data.x->cross_cursor);
1566 f->output_data.x->cross_cursor = cross_cursor;
1567
1568 if (horizontal_drag_cursor != f->output_data.x->horizontal_drag_cursor
1569 && f->output_data.x->horizontal_drag_cursor != 0)
1570 XFreeCursor (FRAME_X_DISPLAY (f), f->output_data.x->horizontal_drag_cursor);
1571 f->output_data.x->horizontal_drag_cursor = horizontal_drag_cursor;
1572
1573 XFlush (FRAME_X_DISPLAY (f));
1574 UNBLOCK_INPUT;
1575
1576 update_face_from_frame_parameter (f, Qmouse_color, arg);
1577 }
1578
1579 void
1580 x_set_cursor_color (f, arg, oldval)
1581 struct frame *f;
1582 Lisp_Object arg, oldval;
1583 {
1584 unsigned long fore_pixel, pixel;
1585 int fore_pixel_allocated_p = 0, pixel_allocated_p = 0;
1586
1587 if (!NILP (Vx_cursor_fore_pixel))
1588 {
1589 fore_pixel = x_decode_color (f, Vx_cursor_fore_pixel,
1590 WHITE_PIX_DEFAULT (f));
1591 fore_pixel_allocated_p = 1;
1592 }
1593 else
1594 fore_pixel = f->output_data.x->background_pixel;
1595
1596 pixel = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f));
1597 pixel_allocated_p = 1;
1598
1599 /* Make sure that the cursor color differs from the background color. */
1600 if (pixel == f->output_data.x->background_pixel)
1601 {
1602 if (pixel_allocated_p)
1603 {
1604 x_free_colors (f, &pixel, 1);
1605 pixel_allocated_p = 0;
1606 }
1607
1608 pixel = f->output_data.x->mouse_pixel;
1609 if (pixel == fore_pixel)
1610 {
1611 if (fore_pixel_allocated_p)
1612 {
1613 x_free_colors (f, &fore_pixel, 1);
1614 fore_pixel_allocated_p = 0;
1615 }
1616 fore_pixel = f->output_data.x->background_pixel;
1617 }
1618 }
1619
1620 unload_color (f, f->output_data.x->cursor_foreground_pixel);
1621 if (!fore_pixel_allocated_p)
1622 fore_pixel = x_copy_color (f, fore_pixel);
1623 f->output_data.x->cursor_foreground_pixel = fore_pixel;
1624
1625 unload_color (f, f->output_data.x->cursor_pixel);
1626 if (!pixel_allocated_p)
1627 pixel = x_copy_color (f, pixel);
1628 f->output_data.x->cursor_pixel = pixel;
1629
1630 if (FRAME_X_WINDOW (f) != 0)
1631 {
1632 BLOCK_INPUT;
1633 XSetBackground (FRAME_X_DISPLAY (f), f->output_data.x->cursor_gc,
1634 f->output_data.x->cursor_pixel);
1635 XSetForeground (FRAME_X_DISPLAY (f), f->output_data.x->cursor_gc,
1636 fore_pixel);
1637 UNBLOCK_INPUT;
1638
1639 if (FRAME_VISIBLE_P (f))
1640 {
1641 x_update_cursor (f, 0);
1642 x_update_cursor (f, 1);
1643 }
1644 }
1645
1646 update_face_from_frame_parameter (f, Qcursor_color, arg);
1647 }
1648 \f
1649 /* Set the border-color of frame F to value described by ARG.
1650 ARG can be a string naming a color.
1651 The border-color is used for the border that is drawn by the X server.
1652 Note that this does not fully take effect if done before
1653 F has an x-window; it must be redone when the window is created.
1654
1655 Note: this is done in two routines because of the way X10 works.
1656
1657 Note: under X11, this is normally the province of the window manager,
1658 and so emacs' border colors may be overridden. */
1659
1660 void
1661 x_set_border_color (f, arg, oldval)
1662 struct frame *f;
1663 Lisp_Object arg, oldval;
1664 {
1665 int pix;
1666
1667 CHECK_STRING (arg, 0);
1668 pix = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f));
1669 x_set_border_pixel (f, pix);
1670 update_face_from_frame_parameter (f, Qborder_color, arg);
1671 }
1672
1673 /* Set the border-color of frame F to pixel value PIX.
1674 Note that this does not fully take effect if done before
1675 F has an x-window. */
1676
1677 void
1678 x_set_border_pixel (f, pix)
1679 struct frame *f;
1680 int pix;
1681 {
1682 unload_color (f, f->output_data.x->border_pixel);
1683 f->output_data.x->border_pixel = pix;
1684
1685 if (FRAME_X_WINDOW (f) != 0 && f->output_data.x->border_width > 0)
1686 {
1687 BLOCK_INPUT;
1688 XSetWindowBorder (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
1689 (unsigned long)pix);
1690 UNBLOCK_INPUT;
1691
1692 if (FRAME_VISIBLE_P (f))
1693 redraw_frame (f);
1694 }
1695 }
1696
1697
1698 /* Value is the internal representation of the specified cursor type
1699 ARG. If type is BAR_CURSOR, return in *WIDTH the specified width
1700 of the bar cursor. */
1701
1702 enum text_cursor_kinds
1703 x_specified_cursor_type (arg, width)
1704 Lisp_Object arg;
1705 int *width;
1706 {
1707 enum text_cursor_kinds type;
1708
1709 if (EQ (arg, Qbar))
1710 {
1711 type = BAR_CURSOR;
1712 *width = 2;
1713 }
1714 else if (CONSP (arg)
1715 && EQ (XCAR (arg), Qbar)
1716 && INTEGERP (XCDR (arg))
1717 && XINT (XCDR (arg)) >= 0)
1718 {
1719 type = BAR_CURSOR;
1720 *width = XINT (XCDR (arg));
1721 }
1722 else if (NILP (arg))
1723 type = NO_CURSOR;
1724 else
1725 /* Treat anything unknown as "box cursor".
1726 It was bad to signal an error; people have trouble fixing
1727 .Xdefaults with Emacs, when it has something bad in it. */
1728 type = FILLED_BOX_CURSOR;
1729
1730 return type;
1731 }
1732
1733 void
1734 x_set_cursor_type (f, arg, oldval)
1735 FRAME_PTR f;
1736 Lisp_Object arg, oldval;
1737 {
1738 int width;
1739
1740 FRAME_DESIRED_CURSOR (f) = x_specified_cursor_type (arg, &width);
1741 f->output_data.x->cursor_width = width;
1742
1743 /* Make sure the cursor gets redrawn. This is overkill, but how
1744 often do people change cursor types? */
1745 update_mode_lines++;
1746 }
1747 \f
1748 void
1749 x_set_icon_type (f, arg, oldval)
1750 struct frame *f;
1751 Lisp_Object arg, oldval;
1752 {
1753 int result;
1754
1755 if (STRINGP (arg))
1756 {
1757 if (STRINGP (oldval) && EQ (Fstring_equal (oldval, arg), Qt))
1758 return;
1759 }
1760 else if (!STRINGP (oldval) && EQ (oldval, Qnil) == EQ (arg, Qnil))
1761 return;
1762
1763 BLOCK_INPUT;
1764 if (NILP (arg))
1765 result = x_text_icon (f,
1766 (char *) XSTRING ((!NILP (f->icon_name)
1767 ? f->icon_name
1768 : f->name))->data);
1769 else
1770 result = x_bitmap_icon (f, arg);
1771
1772 if (result)
1773 {
1774 UNBLOCK_INPUT;
1775 error ("No icon window available");
1776 }
1777
1778 XFlush (FRAME_X_DISPLAY (f));
1779 UNBLOCK_INPUT;
1780 }
1781
1782 /* Return non-nil if frame F wants a bitmap icon. */
1783
1784 Lisp_Object
1785 x_icon_type (f)
1786 FRAME_PTR f;
1787 {
1788 Lisp_Object tem;
1789
1790 tem = assq_no_quit (Qicon_type, f->param_alist);
1791 if (CONSP (tem))
1792 return XCDR (tem);
1793 else
1794 return Qnil;
1795 }
1796
1797 void
1798 x_set_icon_name (f, arg, oldval)
1799 struct frame *f;
1800 Lisp_Object arg, oldval;
1801 {
1802 int result;
1803
1804 if (STRINGP (arg))
1805 {
1806 if (STRINGP (oldval) && EQ (Fstring_equal (oldval, arg), Qt))
1807 return;
1808 }
1809 else if (!STRINGP (oldval) && EQ (oldval, Qnil) == EQ (arg, Qnil))
1810 return;
1811
1812 f->icon_name = arg;
1813
1814 if (f->output_data.x->icon_bitmap != 0)
1815 return;
1816
1817 BLOCK_INPUT;
1818
1819 result = x_text_icon (f,
1820 (char *) XSTRING ((!NILP (f->icon_name)
1821 ? f->icon_name
1822 : !NILP (f->title)
1823 ? f->title
1824 : f->name))->data);
1825
1826 if (result)
1827 {
1828 UNBLOCK_INPUT;
1829 error ("No icon window available");
1830 }
1831
1832 XFlush (FRAME_X_DISPLAY (f));
1833 UNBLOCK_INPUT;
1834 }
1835 \f
1836 void
1837 x_set_font (f, arg, oldval)
1838 struct frame *f;
1839 Lisp_Object arg, oldval;
1840 {
1841 Lisp_Object result;
1842 Lisp_Object fontset_name;
1843 Lisp_Object frame;
1844
1845 CHECK_STRING (arg, 1);
1846
1847 fontset_name = Fquery_fontset (arg, Qnil);
1848
1849 BLOCK_INPUT;
1850 result = (STRINGP (fontset_name)
1851 ? x_new_fontset (f, XSTRING (fontset_name)->data)
1852 : x_new_font (f, XSTRING (arg)->data));
1853 UNBLOCK_INPUT;
1854
1855 if (EQ (result, Qnil))
1856 error ("Font `%s' is not defined", XSTRING (arg)->data);
1857 else if (EQ (result, Qt))
1858 error ("The characters of the given font have varying widths");
1859 else if (STRINGP (result))
1860 {
1861 store_frame_param (f, Qfont, result);
1862 recompute_basic_faces (f);
1863 }
1864 else
1865 abort ();
1866
1867 do_pending_window_change (0);
1868
1869 /* Don't call `face-set-after-frame-default' when faces haven't been
1870 initialized yet. This is the case when called from
1871 Fx_create_frame. In that case, the X widget or window doesn't
1872 exist either, and we can end up in x_report_frame_params with a
1873 null widget which gives a segfault. */
1874 if (FRAME_FACE_CACHE (f))
1875 {
1876 XSETFRAME (frame, f);
1877 call1 (Qface_set_after_frame_default, frame);
1878 }
1879 }
1880
1881 void
1882 x_set_border_width (f, arg, oldval)
1883 struct frame *f;
1884 Lisp_Object arg, oldval;
1885 {
1886 CHECK_NUMBER (arg, 0);
1887
1888 if (XINT (arg) == f->output_data.x->border_width)
1889 return;
1890
1891 if (FRAME_X_WINDOW (f) != 0)
1892 error ("Cannot change the border width of a window");
1893
1894 f->output_data.x->border_width = XINT (arg);
1895 }
1896
1897 void
1898 x_set_internal_border_width (f, arg, oldval)
1899 struct frame *f;
1900 Lisp_Object arg, oldval;
1901 {
1902 int old = f->output_data.x->internal_border_width;
1903
1904 CHECK_NUMBER (arg, 0);
1905 f->output_data.x->internal_border_width = XINT (arg);
1906 if (f->output_data.x->internal_border_width < 0)
1907 f->output_data.x->internal_border_width = 0;
1908
1909 #ifdef USE_X_TOOLKIT
1910 if (f->output_data.x->edit_widget)
1911 widget_store_internal_border (f->output_data.x->edit_widget);
1912 #endif
1913
1914 if (f->output_data.x->internal_border_width == old)
1915 return;
1916
1917 if (FRAME_X_WINDOW (f) != 0)
1918 {
1919 x_set_window_size (f, 0, f->width, f->height);
1920 SET_FRAME_GARBAGED (f);
1921 do_pending_window_change (0);
1922 }
1923 }
1924
1925 void
1926 x_set_visibility (f, value, oldval)
1927 struct frame *f;
1928 Lisp_Object value, oldval;
1929 {
1930 Lisp_Object frame;
1931 XSETFRAME (frame, f);
1932
1933 if (NILP (value))
1934 Fmake_frame_invisible (frame, Qt);
1935 else if (EQ (value, Qicon))
1936 Ficonify_frame (frame);
1937 else
1938 Fmake_frame_visible (frame);
1939 }
1940
1941 \f
1942 /* Change window heights in windows rooted in WINDOW by N lines. */
1943
1944 static void
1945 x_change_window_heights (window, n)
1946 Lisp_Object window;
1947 int n;
1948 {
1949 struct window *w = XWINDOW (window);
1950
1951 XSETFASTINT (w->top, XFASTINT (w->top) + n);
1952 XSETFASTINT (w->height, XFASTINT (w->height) - n);
1953
1954 if (INTEGERP (w->orig_top))
1955 XSETFASTINT (w->orig_top, XFASTINT (w->orig_top) + n);
1956 if (INTEGERP (w->orig_height))
1957 XSETFASTINT (w->orig_height, XFASTINT (w->orig_height) - n);
1958
1959 /* Handle just the top child in a vertical split. */
1960 if (!NILP (w->vchild))
1961 x_change_window_heights (w->vchild, n);
1962
1963 /* Adjust all children in a horizontal split. */
1964 for (window = w->hchild; !NILP (window); window = w->next)
1965 {
1966 w = XWINDOW (window);
1967 x_change_window_heights (window, n);
1968 }
1969 }
1970
1971 void
1972 x_set_menu_bar_lines (f, value, oldval)
1973 struct frame *f;
1974 Lisp_Object value, oldval;
1975 {
1976 int nlines;
1977 #ifndef USE_X_TOOLKIT
1978 int olines = FRAME_MENU_BAR_LINES (f);
1979 #endif
1980
1981 /* Right now, menu bars don't work properly in minibuf-only frames;
1982 most of the commands try to apply themselves to the minibuffer
1983 frame itself, and get an error because you can't switch buffers
1984 in or split the minibuffer window. */
1985 if (FRAME_MINIBUF_ONLY_P (f))
1986 return;
1987
1988 if (INTEGERP (value))
1989 nlines = XINT (value);
1990 else
1991 nlines = 0;
1992
1993 /* Make sure we redisplay all windows in this frame. */
1994 windows_or_buffers_changed++;
1995
1996 #ifdef USE_X_TOOLKIT
1997 FRAME_MENU_BAR_LINES (f) = 0;
1998 if (nlines)
1999 {
2000 FRAME_EXTERNAL_MENU_BAR (f) = 1;
2001 if (FRAME_X_P (f) && f->output_data.x->menubar_widget == 0)
2002 /* Make sure next redisplay shows the menu bar. */
2003 XWINDOW (FRAME_SELECTED_WINDOW (f))->update_mode_line = Qt;
2004 }
2005 else
2006 {
2007 if (FRAME_EXTERNAL_MENU_BAR (f) == 1)
2008 free_frame_menubar (f);
2009 FRAME_EXTERNAL_MENU_BAR (f) = 0;
2010 if (FRAME_X_P (f))
2011 f->output_data.x->menubar_widget = 0;
2012 }
2013 #else /* not USE_X_TOOLKIT */
2014 FRAME_MENU_BAR_LINES (f) = nlines;
2015 x_change_window_heights (f->root_window, nlines - olines);
2016 #endif /* not USE_X_TOOLKIT */
2017 adjust_glyphs (f);
2018 }
2019
2020
2021 /* Set the number of lines used for the tool bar of frame F to VALUE.
2022 VALUE not an integer, or < 0 means set the lines to zero. OLDVAL
2023 is the old number of tool bar lines. This function changes the
2024 height of all windows on frame F to match the new tool bar height.
2025 The frame's height doesn't change. */
2026
2027 void
2028 x_set_tool_bar_lines (f, value, oldval)
2029 struct frame *f;
2030 Lisp_Object value, oldval;
2031 {
2032 int delta, nlines, root_height;
2033 Lisp_Object root_window;
2034
2035 /* Use VALUE only if an integer >= 0. */
2036 if (INTEGERP (value) && XINT (value) >= 0)
2037 nlines = XFASTINT (value);
2038 else
2039 nlines = 0;
2040
2041 /* Make sure we redisplay all windows in this frame. */
2042 ++windows_or_buffers_changed;
2043
2044 delta = nlines - FRAME_TOOL_BAR_LINES (f);
2045
2046 /* Don't resize the tool-bar to more than we have room for. */
2047 root_window = FRAME_ROOT_WINDOW (f);
2048 root_height = XINT (XWINDOW (root_window)->height);
2049 if (root_height - delta < 1)
2050 {
2051 delta = root_height - 1;
2052 nlines = FRAME_TOOL_BAR_LINES (f) + delta;
2053 }
2054
2055 FRAME_TOOL_BAR_LINES (f) = nlines;
2056 x_change_window_heights (root_window, delta);
2057 adjust_glyphs (f);
2058
2059 /* We also have to make sure that the internal border at the top of
2060 the frame, below the menu bar or tool bar, is redrawn when the
2061 tool bar disappears. This is so because the internal border is
2062 below the tool bar if one is displayed, but is below the menu bar
2063 if there isn't a tool bar. The tool bar draws into the area
2064 below the menu bar. */
2065 if (FRAME_X_WINDOW (f) && FRAME_TOOL_BAR_LINES (f) == 0)
2066 {
2067 updating_frame = f;
2068 clear_frame ();
2069 clear_current_matrices (f);
2070 updating_frame = NULL;
2071 }
2072
2073 /* If the tool bar gets smaller, the internal border below it
2074 has to be cleared. It was formerly part of the display
2075 of the larger tool bar, and updating windows won't clear it. */
2076 if (delta < 0)
2077 {
2078 int height = FRAME_INTERNAL_BORDER_WIDTH (f);
2079 int width = PIXEL_WIDTH (f);
2080 int y = nlines * CANON_Y_UNIT (f);
2081
2082 BLOCK_INPUT;
2083 XClearArea (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2084 0, y, width, height, False);
2085 UNBLOCK_INPUT;
2086 }
2087 }
2088
2089
2090 /* Set the foreground color for scroll bars on frame F to VALUE.
2091 VALUE should be a string, a color name. If it isn't a string or
2092 isn't a valid color name, do nothing. OLDVAL is the old value of
2093 the frame parameter. */
2094
2095 void
2096 x_set_scroll_bar_foreground (f, value, oldval)
2097 struct frame *f;
2098 Lisp_Object value, oldval;
2099 {
2100 unsigned long pixel;
2101
2102 if (STRINGP (value))
2103 pixel = x_decode_color (f, value, BLACK_PIX_DEFAULT (f));
2104 else
2105 pixel = -1;
2106
2107 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
2108 unload_color (f, f->output_data.x->scroll_bar_foreground_pixel);
2109
2110 f->output_data.x->scroll_bar_foreground_pixel = pixel;
2111 if (FRAME_X_WINDOW (f) && FRAME_VISIBLE_P (f))
2112 {
2113 /* Remove all scroll bars because they have wrong colors. */
2114 if (condemn_scroll_bars_hook)
2115 (*condemn_scroll_bars_hook) (f);
2116 if (judge_scroll_bars_hook)
2117 (*judge_scroll_bars_hook) (f);
2118
2119 update_face_from_frame_parameter (f, Qscroll_bar_foreground, value);
2120 redraw_frame (f);
2121 }
2122 }
2123
2124
2125 /* Set the background color for scroll bars on frame F to VALUE VALUE
2126 should be a string, a color name. If it isn't a string or isn't a
2127 valid color name, do nothing. OLDVAL is the old value of the frame
2128 parameter. */
2129
2130 void
2131 x_set_scroll_bar_background (f, value, oldval)
2132 struct frame *f;
2133 Lisp_Object value, oldval;
2134 {
2135 unsigned long pixel;
2136
2137 if (STRINGP (value))
2138 pixel = x_decode_color (f, value, WHITE_PIX_DEFAULT (f));
2139 else
2140 pixel = -1;
2141
2142 if (f->output_data.x->scroll_bar_background_pixel != -1)
2143 unload_color (f, f->output_data.x->scroll_bar_background_pixel);
2144
2145 f->output_data.x->scroll_bar_background_pixel = pixel;
2146 if (FRAME_X_WINDOW (f) && FRAME_VISIBLE_P (f))
2147 {
2148 /* Remove all scroll bars because they have wrong colors. */
2149 if (condemn_scroll_bars_hook)
2150 (*condemn_scroll_bars_hook) (f);
2151 if (judge_scroll_bars_hook)
2152 (*judge_scroll_bars_hook) (f);
2153
2154 update_face_from_frame_parameter (f, Qscroll_bar_background, value);
2155 redraw_frame (f);
2156 }
2157 }
2158
2159 \f
2160 /* Encode Lisp string STRING as a text in a format appropriate for
2161 XICCC (X Inter Client Communication Conventions).
2162
2163 If STRING contains only ASCII characters, do no conversion and
2164 return the string data of STRING. Otherwise, encode the text by
2165 CODING_SYSTEM, and return a newly allocated memory area which
2166 should be freed by `xfree' by a caller.
2167
2168 Store the byte length of resulting text in *TEXT_BYTES.
2169
2170 If the text contains only ASCII and Latin-1, store 1 in *STRING_P,
2171 which means that the `encoding' of the result can be `STRING'.
2172 Otherwise store 0 in *STRINGP, which means that the `encoding' of
2173 the result should be `COMPOUND_TEXT'. */
2174
2175 unsigned char *
2176 x_encode_text (string, coding_system, text_bytes, stringp)
2177 Lisp_Object string, coding_system;
2178 int *text_bytes, *stringp;
2179 {
2180 unsigned char *str = XSTRING (string)->data;
2181 int chars = XSTRING (string)->size;
2182 int bytes = STRING_BYTES (XSTRING (string));
2183 int charset_info;
2184 int bufsize;
2185 unsigned char *buf;
2186 struct coding_system coding;
2187
2188 charset_info = find_charset_in_text (str, chars, bytes, NULL, Qnil);
2189 if (charset_info == 0)
2190 {
2191 /* No multibyte character in OBJ. We need not encode it. */
2192 *text_bytes = bytes;
2193 *stringp = 1;
2194 return str;
2195 }
2196
2197 setup_coding_system (coding_system, &coding);
2198 coding.src_multibyte = 1;
2199 coding.dst_multibyte = 0;
2200 coding.mode |= CODING_MODE_LAST_BLOCK;
2201 if (coding.type == coding_type_iso2022)
2202 coding.flags |= CODING_FLAG_ISO_SAFE;
2203 /* We suppress producing escape sequences for composition. */
2204 coding.composing = COMPOSITION_DISABLED;
2205 bufsize = encoding_buffer_size (&coding, bytes);
2206 buf = (unsigned char *) xmalloc (bufsize);
2207 encode_coding (&coding, str, buf, bytes, bufsize);
2208 *text_bytes = coding.produced;
2209 *stringp = (charset_info == 1 || !EQ (coding_system, Qcompound_text));
2210 return buf;
2211 }
2212
2213 \f
2214 /* Change the name of frame F to NAME. If NAME is nil, set F's name to
2215 x_id_name.
2216
2217 If EXPLICIT is non-zero, that indicates that lisp code is setting the
2218 name; if NAME is a string, set F's name to NAME and set
2219 F->explicit_name; if NAME is Qnil, then clear F->explicit_name.
2220
2221 If EXPLICIT is zero, that indicates that Emacs redisplay code is
2222 suggesting a new name, which lisp code should override; if
2223 F->explicit_name is set, ignore the new name; otherwise, set it. */
2224
2225 void
2226 x_set_name (f, name, explicit)
2227 struct frame *f;
2228 Lisp_Object name;
2229 int explicit;
2230 {
2231 /* Make sure that requests from lisp code override requests from
2232 Emacs redisplay code. */
2233 if (explicit)
2234 {
2235 /* If we're switching from explicit to implicit, we had better
2236 update the mode lines and thereby update the title. */
2237 if (f->explicit_name && NILP (name))
2238 update_mode_lines = 1;
2239
2240 f->explicit_name = ! NILP (name);
2241 }
2242 else if (f->explicit_name)
2243 return;
2244
2245 /* If NAME is nil, set the name to the x_id_name. */
2246 if (NILP (name))
2247 {
2248 /* Check for no change needed in this very common case
2249 before we do any consing. */
2250 if (!strcmp (FRAME_X_DISPLAY_INFO (f)->x_id_name,
2251 XSTRING (f->name)->data))
2252 return;
2253 name = build_string (FRAME_X_DISPLAY_INFO (f)->x_id_name);
2254 }
2255 else
2256 CHECK_STRING (name, 0);
2257
2258 /* Don't change the name if it's already NAME. */
2259 if (! NILP (Fstring_equal (name, f->name)))
2260 return;
2261
2262 f->name = name;
2263
2264 /* For setting the frame title, the title parameter should override
2265 the name parameter. */
2266 if (! NILP (f->title))
2267 name = f->title;
2268
2269 if (FRAME_X_WINDOW (f))
2270 {
2271 BLOCK_INPUT;
2272 #ifdef HAVE_X11R4
2273 {
2274 XTextProperty text, icon;
2275 int bytes, stringp;
2276 Lisp_Object coding_system;
2277
2278 coding_system = Vlocale_coding_system;
2279 if (NILP (coding_system))
2280 coding_system = Qcompound_text;
2281 text.value = x_encode_text (name, coding_system, &bytes, &stringp);
2282 text.encoding = (stringp ? XA_STRING
2283 : FRAME_X_DISPLAY_INFO (f)->Xatom_COMPOUND_TEXT);
2284 text.format = 8;
2285 text.nitems = bytes;
2286
2287 if (NILP (f->icon_name))
2288 {
2289 icon = text;
2290 }
2291 else
2292 {
2293 icon.value = x_encode_text (f->icon_name, coding_system,
2294 &bytes, &stringp);
2295 icon.encoding = (stringp ? XA_STRING
2296 : FRAME_X_DISPLAY_INFO (f)->Xatom_COMPOUND_TEXT);
2297 icon.format = 8;
2298 icon.nitems = bytes;
2299 }
2300 #ifdef USE_X_TOOLKIT
2301 XSetWMName (FRAME_X_DISPLAY (f),
2302 XtWindow (f->output_data.x->widget), &text);
2303 XSetWMIconName (FRAME_X_DISPLAY (f), XtWindow (f->output_data.x->widget),
2304 &icon);
2305 #else /* not USE_X_TOOLKIT */
2306 XSetWMName (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), &text);
2307 XSetWMIconName (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), &icon);
2308 #endif /* not USE_X_TOOLKIT */
2309 if (!NILP (f->icon_name)
2310 && icon.value != XSTRING (f->icon_name)->data)
2311 xfree (icon.value);
2312 if (text.value != XSTRING (name)->data)
2313 xfree (text.value);
2314 }
2315 #else /* not HAVE_X11R4 */
2316 XSetIconName (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2317 XSTRING (name)->data);
2318 XStoreName (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2319 XSTRING (name)->data);
2320 #endif /* not HAVE_X11R4 */
2321 UNBLOCK_INPUT;
2322 }
2323 }
2324
2325 /* This function should be called when the user's lisp code has
2326 specified a name for the frame; the name will override any set by the
2327 redisplay code. */
2328 void
2329 x_explicitly_set_name (f, arg, oldval)
2330 FRAME_PTR f;
2331 Lisp_Object arg, oldval;
2332 {
2333 x_set_name (f, arg, 1);
2334 }
2335
2336 /* This function should be called by Emacs redisplay code to set the
2337 name; names set this way will never override names set by the user's
2338 lisp code. */
2339 void
2340 x_implicitly_set_name (f, arg, oldval)
2341 FRAME_PTR f;
2342 Lisp_Object arg, oldval;
2343 {
2344 x_set_name (f, arg, 0);
2345 }
2346 \f
2347 /* Change the title of frame F to NAME.
2348 If NAME is nil, use the frame name as the title.
2349
2350 If EXPLICIT is non-zero, that indicates that lisp code is setting the
2351 name; if NAME is a string, set F's name to NAME and set
2352 F->explicit_name; if NAME is Qnil, then clear F->explicit_name.
2353
2354 If EXPLICIT is zero, that indicates that Emacs redisplay code is
2355 suggesting a new name, which lisp code should override; if
2356 F->explicit_name is set, ignore the new name; otherwise, set it. */
2357
2358 void
2359 x_set_title (f, name, old_name)
2360 struct frame *f;
2361 Lisp_Object name, old_name;
2362 {
2363 /* Don't change the title if it's already NAME. */
2364 if (EQ (name, f->title))
2365 return;
2366
2367 update_mode_lines = 1;
2368
2369 f->title = name;
2370
2371 if (NILP (name))
2372 name = f->name;
2373 else
2374 CHECK_STRING (name, 0);
2375
2376 if (FRAME_X_WINDOW (f))
2377 {
2378 BLOCK_INPUT;
2379 #ifdef HAVE_X11R4
2380 {
2381 XTextProperty text, icon;
2382 int bytes, stringp;
2383 Lisp_Object coding_system;
2384
2385 coding_system = Vlocale_coding_system;
2386 if (NILP (coding_system))
2387 coding_system = Qcompound_text;
2388 text.value = x_encode_text (name, coding_system, &bytes, &stringp);
2389 text.encoding = (stringp ? XA_STRING
2390 : FRAME_X_DISPLAY_INFO (f)->Xatom_COMPOUND_TEXT);
2391 text.format = 8;
2392 text.nitems = bytes;
2393
2394 if (NILP (f->icon_name))
2395 {
2396 icon = text;
2397 }
2398 else
2399 {
2400 icon.value = x_encode_text (f->icon_name, coding_system,
2401 &bytes, &stringp);
2402 icon.encoding = (stringp ? XA_STRING
2403 : FRAME_X_DISPLAY_INFO (f)->Xatom_COMPOUND_TEXT);
2404 icon.format = 8;
2405 icon.nitems = bytes;
2406 }
2407 #ifdef USE_X_TOOLKIT
2408 XSetWMName (FRAME_X_DISPLAY (f),
2409 XtWindow (f->output_data.x->widget), &text);
2410 XSetWMIconName (FRAME_X_DISPLAY (f), XtWindow (f->output_data.x->widget),
2411 &icon);
2412 #else /* not USE_X_TOOLKIT */
2413 XSetWMName (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), &text);
2414 XSetWMIconName (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), &icon);
2415 #endif /* not USE_X_TOOLKIT */
2416 if (!NILP (f->icon_name)
2417 && icon.value != XSTRING (f->icon_name)->data)
2418 xfree (icon.value);
2419 if (text.value != XSTRING (name)->data)
2420 xfree (text.value);
2421 }
2422 #else /* not HAVE_X11R4 */
2423 XSetIconName (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2424 XSTRING (name)->data);
2425 XStoreName (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2426 XSTRING (name)->data);
2427 #endif /* not HAVE_X11R4 */
2428 UNBLOCK_INPUT;
2429 }
2430 }
2431 \f
2432 void
2433 x_set_autoraise (f, arg, oldval)
2434 struct frame *f;
2435 Lisp_Object arg, oldval;
2436 {
2437 f->auto_raise = !EQ (Qnil, arg);
2438 }
2439
2440 void
2441 x_set_autolower (f, arg, oldval)
2442 struct frame *f;
2443 Lisp_Object arg, oldval;
2444 {
2445 f->auto_lower = !EQ (Qnil, arg);
2446 }
2447
2448 void
2449 x_set_unsplittable (f, arg, oldval)
2450 struct frame *f;
2451 Lisp_Object arg, oldval;
2452 {
2453 f->no_split = !NILP (arg);
2454 }
2455
2456 void
2457 x_set_vertical_scroll_bars (f, arg, oldval)
2458 struct frame *f;
2459 Lisp_Object arg, oldval;
2460 {
2461 if ((EQ (arg, Qleft) && FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (f))
2462 || (EQ (arg, Qright) && FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (f))
2463 || (NILP (arg) && FRAME_HAS_VERTICAL_SCROLL_BARS (f))
2464 || (!NILP (arg) && ! FRAME_HAS_VERTICAL_SCROLL_BARS (f)))
2465 {
2466 FRAME_VERTICAL_SCROLL_BAR_TYPE (f)
2467 = (NILP (arg)
2468 ? vertical_scroll_bar_none
2469 : EQ (Qright, arg)
2470 ? vertical_scroll_bar_right
2471 : vertical_scroll_bar_left);
2472
2473 /* We set this parameter before creating the X window for the
2474 frame, so we can get the geometry right from the start.
2475 However, if the window hasn't been created yet, we shouldn't
2476 call x_set_window_size. */
2477 if (FRAME_X_WINDOW (f))
2478 x_set_window_size (f, 0, FRAME_WIDTH (f), FRAME_HEIGHT (f));
2479 do_pending_window_change (0);
2480 }
2481 }
2482
2483 void
2484 x_set_scroll_bar_width (f, arg, oldval)
2485 struct frame *f;
2486 Lisp_Object arg, oldval;
2487 {
2488 int wid = FONT_WIDTH (f->output_data.x->font);
2489
2490 if (NILP (arg))
2491 {
2492 #ifdef USE_TOOLKIT_SCROLL_BARS
2493 /* A minimum width of 14 doesn't look good for toolkit scroll bars. */
2494 int width = 16 + 2 * VERTICAL_SCROLL_BAR_WIDTH_TRIM;
2495 FRAME_SCROLL_BAR_COLS (f) = (width + wid - 1) / wid;
2496 FRAME_SCROLL_BAR_PIXEL_WIDTH (f) = width;
2497 #else
2498 /* Make the actual width at least 14 pixels and a multiple of a
2499 character width. */
2500 FRAME_SCROLL_BAR_COLS (f) = (14 + wid - 1) / wid;
2501
2502 /* Use all of that space (aside from required margins) for the
2503 scroll bar. */
2504 FRAME_SCROLL_BAR_PIXEL_WIDTH (f) = 0;
2505 #endif
2506
2507 if (FRAME_X_WINDOW (f))
2508 x_set_window_size (f, 0, FRAME_WIDTH (f), FRAME_HEIGHT (f));
2509 do_pending_window_change (0);
2510 }
2511 else if (INTEGERP (arg) && XINT (arg) > 0
2512 && XFASTINT (arg) != FRAME_SCROLL_BAR_PIXEL_WIDTH (f))
2513 {
2514 if (XFASTINT (arg) <= 2 * VERTICAL_SCROLL_BAR_WIDTH_TRIM)
2515 XSETINT (arg, 2 * VERTICAL_SCROLL_BAR_WIDTH_TRIM + 1);
2516
2517 FRAME_SCROLL_BAR_PIXEL_WIDTH (f) = XFASTINT (arg);
2518 FRAME_SCROLL_BAR_COLS (f) = (XFASTINT (arg) + wid-1) / wid;
2519 if (FRAME_X_WINDOW (f))
2520 x_set_window_size (f, 0, FRAME_WIDTH (f), FRAME_HEIGHT (f));
2521 }
2522
2523 change_frame_size (f, 0, FRAME_WIDTH (f), 0, 0, 0);
2524 XWINDOW (FRAME_SELECTED_WINDOW (f))->cursor.hpos = 0;
2525 XWINDOW (FRAME_SELECTED_WINDOW (f))->cursor.x = 0;
2526 }
2527
2528
2529 \f
2530 /* Subroutines of creating an X frame. */
2531
2532 /* Make sure that Vx_resource_name is set to a reasonable value.
2533 Fix it up, or set it to `emacs' if it is too hopeless. */
2534
2535 static void
2536 validate_x_resource_name ()
2537 {
2538 int len = 0;
2539 /* Number of valid characters in the resource name. */
2540 int good_count = 0;
2541 /* Number of invalid characters in the resource name. */
2542 int bad_count = 0;
2543 Lisp_Object new;
2544 int i;
2545
2546 if (!STRINGP (Vx_resource_class))
2547 Vx_resource_class = build_string (EMACS_CLASS);
2548
2549 if (STRINGP (Vx_resource_name))
2550 {
2551 unsigned char *p = XSTRING (Vx_resource_name)->data;
2552 int i;
2553
2554 len = STRING_BYTES (XSTRING (Vx_resource_name));
2555
2556 /* Only letters, digits, - and _ are valid in resource names.
2557 Count the valid characters and count the invalid ones. */
2558 for (i = 0; i < len; i++)
2559 {
2560 int c = p[i];
2561 if (! ((c >= 'a' && c <= 'z')
2562 || (c >= 'A' && c <= 'Z')
2563 || (c >= '0' && c <= '9')
2564 || c == '-' || c == '_'))
2565 bad_count++;
2566 else
2567 good_count++;
2568 }
2569 }
2570 else
2571 /* Not a string => completely invalid. */
2572 bad_count = 5, good_count = 0;
2573
2574 /* If name is valid already, return. */
2575 if (bad_count == 0)
2576 return;
2577
2578 /* If name is entirely invalid, or nearly so, use `emacs'. */
2579 if (good_count == 0
2580 || (good_count == 1 && bad_count > 0))
2581 {
2582 Vx_resource_name = build_string ("emacs");
2583 return;
2584 }
2585
2586 /* Name is partly valid. Copy it and replace the invalid characters
2587 with underscores. */
2588
2589 Vx_resource_name = new = Fcopy_sequence (Vx_resource_name);
2590
2591 for (i = 0; i < len; i++)
2592 {
2593 int c = XSTRING (new)->data[i];
2594 if (! ((c >= 'a' && c <= 'z')
2595 || (c >= 'A' && c <= 'Z')
2596 || (c >= '0' && c <= '9')
2597 || c == '-' || c == '_'))
2598 XSTRING (new)->data[i] = '_';
2599 }
2600 }
2601
2602
2603 extern char *x_get_string_resource ();
2604
2605 DEFUN ("x-get-resource", Fx_get_resource, Sx_get_resource, 2, 4, 0,
2606 "Return the value of ATTRIBUTE, of class CLASS, from the X defaults database.\n\
2607 This uses `INSTANCE.ATTRIBUTE' as the key and `Emacs.CLASS' as the\n\
2608 class, where INSTANCE is the name under which Emacs was invoked, or\n\
2609 the name specified by the `-name' or `-rn' command-line arguments.\n\
2610 \n\
2611 The optional arguments COMPONENT and SUBCLASS add to the key and the\n\
2612 class, respectively. You must specify both of them or neither.\n\
2613 If you specify them, the key is `INSTANCE.COMPONENT.ATTRIBUTE'\n\
2614 and the class is `Emacs.CLASS.SUBCLASS'.")
2615 (attribute, class, component, subclass)
2616 Lisp_Object attribute, class, component, subclass;
2617 {
2618 register char *value;
2619 char *name_key;
2620 char *class_key;
2621
2622 check_x ();
2623
2624 CHECK_STRING (attribute, 0);
2625 CHECK_STRING (class, 0);
2626
2627 if (!NILP (component))
2628 CHECK_STRING (component, 1);
2629 if (!NILP (subclass))
2630 CHECK_STRING (subclass, 2);
2631 if (NILP (component) != NILP (subclass))
2632 error ("x-get-resource: must specify both COMPONENT and SUBCLASS or neither");
2633
2634 validate_x_resource_name ();
2635
2636 /* Allocate space for the components, the dots which separate them,
2637 and the final '\0'. Make them big enough for the worst case. */
2638 name_key = (char *) alloca (STRING_BYTES (XSTRING (Vx_resource_name))
2639 + (STRINGP (component)
2640 ? STRING_BYTES (XSTRING (component)) : 0)
2641 + STRING_BYTES (XSTRING (attribute))
2642 + 3);
2643
2644 class_key = (char *) alloca (STRING_BYTES (XSTRING (Vx_resource_class))
2645 + STRING_BYTES (XSTRING (class))
2646 + (STRINGP (subclass)
2647 ? STRING_BYTES (XSTRING (subclass)) : 0)
2648 + 3);
2649
2650 /* Start with emacs.FRAMENAME for the name (the specific one)
2651 and with `Emacs' for the class key (the general one). */
2652 strcpy (name_key, XSTRING (Vx_resource_name)->data);
2653 strcpy (class_key, XSTRING (Vx_resource_class)->data);
2654
2655 strcat (class_key, ".");
2656 strcat (class_key, XSTRING (class)->data);
2657
2658 if (!NILP (component))
2659 {
2660 strcat (class_key, ".");
2661 strcat (class_key, XSTRING (subclass)->data);
2662
2663 strcat (name_key, ".");
2664 strcat (name_key, XSTRING (component)->data);
2665 }
2666
2667 strcat (name_key, ".");
2668 strcat (name_key, XSTRING (attribute)->data);
2669
2670 value = x_get_string_resource (check_x_display_info (Qnil)->xrdb,
2671 name_key, class_key);
2672
2673 if (value != (char *) 0)
2674 return build_string (value);
2675 else
2676 return Qnil;
2677 }
2678
2679 /* Get an X resource, like Fx_get_resource, but for display DPYINFO. */
2680
2681 Lisp_Object
2682 display_x_get_resource (dpyinfo, attribute, class, component, subclass)
2683 struct x_display_info *dpyinfo;
2684 Lisp_Object attribute, class, component, subclass;
2685 {
2686 register char *value;
2687 char *name_key;
2688 char *class_key;
2689
2690 CHECK_STRING (attribute, 0);
2691 CHECK_STRING (class, 0);
2692
2693 if (!NILP (component))
2694 CHECK_STRING (component, 1);
2695 if (!NILP (subclass))
2696 CHECK_STRING (subclass, 2);
2697 if (NILP (component) != NILP (subclass))
2698 error ("x-get-resource: must specify both COMPONENT and SUBCLASS or neither");
2699
2700 validate_x_resource_name ();
2701
2702 /* Allocate space for the components, the dots which separate them,
2703 and the final '\0'. Make them big enough for the worst case. */
2704 name_key = (char *) alloca (STRING_BYTES (XSTRING (Vx_resource_name))
2705 + (STRINGP (component)
2706 ? STRING_BYTES (XSTRING (component)) : 0)
2707 + STRING_BYTES (XSTRING (attribute))
2708 + 3);
2709
2710 class_key = (char *) alloca (STRING_BYTES (XSTRING (Vx_resource_class))
2711 + STRING_BYTES (XSTRING (class))
2712 + (STRINGP (subclass)
2713 ? STRING_BYTES (XSTRING (subclass)) : 0)
2714 + 3);
2715
2716 /* Start with emacs.FRAMENAME for the name (the specific one)
2717 and with `Emacs' for the class key (the general one). */
2718 strcpy (name_key, XSTRING (Vx_resource_name)->data);
2719 strcpy (class_key, XSTRING (Vx_resource_class)->data);
2720
2721 strcat (class_key, ".");
2722 strcat (class_key, XSTRING (class)->data);
2723
2724 if (!NILP (component))
2725 {
2726 strcat (class_key, ".");
2727 strcat (class_key, XSTRING (subclass)->data);
2728
2729 strcat (name_key, ".");
2730 strcat (name_key, XSTRING (component)->data);
2731 }
2732
2733 strcat (name_key, ".");
2734 strcat (name_key, XSTRING (attribute)->data);
2735
2736 value = x_get_string_resource (dpyinfo->xrdb, name_key, class_key);
2737
2738 if (value != (char *) 0)
2739 return build_string (value);
2740 else
2741 return Qnil;
2742 }
2743
2744 /* Used when C code wants a resource value. */
2745
2746 char *
2747 x_get_resource_string (attribute, class)
2748 char *attribute, *class;
2749 {
2750 char *name_key;
2751 char *class_key;
2752 struct frame *sf = SELECTED_FRAME ();
2753
2754 /* Allocate space for the components, the dots which separate them,
2755 and the final '\0'. */
2756 name_key = (char *) alloca (STRING_BYTES (XSTRING (Vinvocation_name))
2757 + strlen (attribute) + 2);
2758 class_key = (char *) alloca ((sizeof (EMACS_CLASS) - 1)
2759 + strlen (class) + 2);
2760
2761 sprintf (name_key, "%s.%s",
2762 XSTRING (Vinvocation_name)->data,
2763 attribute);
2764 sprintf (class_key, "%s.%s", EMACS_CLASS, class);
2765
2766 return x_get_string_resource (FRAME_X_DISPLAY_INFO (sf)->xrdb,
2767 name_key, class_key);
2768 }
2769
2770 /* Types we might convert a resource string into. */
2771 enum resource_types
2772 {
2773 RES_TYPE_NUMBER,
2774 RES_TYPE_FLOAT,
2775 RES_TYPE_BOOLEAN,
2776 RES_TYPE_STRING,
2777 RES_TYPE_SYMBOL
2778 };
2779
2780 /* Return the value of parameter PARAM.
2781
2782 First search ALIST, then Vdefault_frame_alist, then the X defaults
2783 database, using ATTRIBUTE as the attribute name and CLASS as its class.
2784
2785 Convert the resource to the type specified by desired_type.
2786
2787 If no default is specified, return Qunbound. If you call
2788 x_get_arg, make sure you deal with Qunbound in a reasonable way,
2789 and don't let it get stored in any Lisp-visible variables! */
2790
2791 static Lisp_Object
2792 x_get_arg (dpyinfo, alist, param, attribute, class, type)
2793 struct x_display_info *dpyinfo;
2794 Lisp_Object alist, param;
2795 char *attribute;
2796 char *class;
2797 enum resource_types type;
2798 {
2799 register Lisp_Object tem;
2800
2801 tem = Fassq (param, alist);
2802 if (EQ (tem, Qnil))
2803 tem = Fassq (param, Vdefault_frame_alist);
2804 if (EQ (tem, Qnil))
2805 {
2806
2807 if (attribute)
2808 {
2809 tem = display_x_get_resource (dpyinfo,
2810 build_string (attribute),
2811 build_string (class),
2812 Qnil, Qnil);
2813
2814 if (NILP (tem))
2815 return Qunbound;
2816
2817 switch (type)
2818 {
2819 case RES_TYPE_NUMBER:
2820 return make_number (atoi (XSTRING (tem)->data));
2821
2822 case RES_TYPE_FLOAT:
2823 return make_float (atof (XSTRING (tem)->data));
2824
2825 case RES_TYPE_BOOLEAN:
2826 tem = Fdowncase (tem);
2827 if (!strcmp (XSTRING (tem)->data, "on")
2828 || !strcmp (XSTRING (tem)->data, "true"))
2829 return Qt;
2830 else
2831 return Qnil;
2832
2833 case RES_TYPE_STRING:
2834 return tem;
2835
2836 case RES_TYPE_SYMBOL:
2837 /* As a special case, we map the values `true' and `on'
2838 to Qt, and `false' and `off' to Qnil. */
2839 {
2840 Lisp_Object lower;
2841 lower = Fdowncase (tem);
2842 if (!strcmp (XSTRING (lower)->data, "on")
2843 || !strcmp (XSTRING (lower)->data, "true"))
2844 return Qt;
2845 else if (!strcmp (XSTRING (lower)->data, "off")
2846 || !strcmp (XSTRING (lower)->data, "false"))
2847 return Qnil;
2848 else
2849 return Fintern (tem, Qnil);
2850 }
2851
2852 default:
2853 abort ();
2854 }
2855 }
2856 else
2857 return Qunbound;
2858 }
2859 return Fcdr (tem);
2860 }
2861
2862 /* Like x_get_arg, but also record the value in f->param_alist. */
2863
2864 static Lisp_Object
2865 x_get_and_record_arg (f, alist, param, attribute, class, type)
2866 struct frame *f;
2867 Lisp_Object alist, param;
2868 char *attribute;
2869 char *class;
2870 enum resource_types type;
2871 {
2872 Lisp_Object value;
2873
2874 value = x_get_arg (FRAME_X_DISPLAY_INFO (f), alist, param,
2875 attribute, class, type);
2876 if (! NILP (value))
2877 store_frame_param (f, param, value);
2878
2879 return value;
2880 }
2881
2882 /* Record in frame F the specified or default value according to ALIST
2883 of the parameter named PROP (a Lisp symbol).
2884 If no value is specified for PROP, look for an X default for XPROP
2885 on the frame named NAME.
2886 If that is not found either, use the value DEFLT. */
2887
2888 static Lisp_Object
2889 x_default_parameter (f, alist, prop, deflt, xprop, xclass, type)
2890 struct frame *f;
2891 Lisp_Object alist;
2892 Lisp_Object prop;
2893 Lisp_Object deflt;
2894 char *xprop;
2895 char *xclass;
2896 enum resource_types type;
2897 {
2898 Lisp_Object tem;
2899
2900 tem = x_get_arg (FRAME_X_DISPLAY_INFO (f), alist, prop, xprop, xclass, type);
2901 if (EQ (tem, Qunbound))
2902 tem = deflt;
2903 x_set_frame_parameters (f, Fcons (Fcons (prop, tem), Qnil));
2904 return tem;
2905 }
2906
2907
2908 /* Record in frame F the specified or default value according to ALIST
2909 of the parameter named PROP (a Lisp symbol). If no value is
2910 specified for PROP, look for an X default for XPROP on the frame
2911 named NAME. If that is not found either, use the value DEFLT. */
2912
2913 static Lisp_Object
2914 x_default_scroll_bar_color_parameter (f, alist, prop, xprop, xclass,
2915 foreground_p)
2916 struct frame *f;
2917 Lisp_Object alist;
2918 Lisp_Object prop;
2919 char *xprop;
2920 char *xclass;
2921 int foreground_p;
2922 {
2923 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
2924 Lisp_Object tem;
2925
2926 tem = x_get_arg (dpyinfo, alist, prop, xprop, xclass, RES_TYPE_STRING);
2927 if (EQ (tem, Qunbound))
2928 {
2929 #ifdef USE_TOOLKIT_SCROLL_BARS
2930
2931 /* See if an X resource for the scroll bar color has been
2932 specified. */
2933 tem = display_x_get_resource (dpyinfo,
2934 build_string (foreground_p
2935 ? "foreground"
2936 : "background"),
2937 build_string (""),
2938 build_string ("verticalScrollBar"),
2939 build_string (""));
2940 if (!STRINGP (tem))
2941 {
2942 /* If nothing has been specified, scroll bars will use a
2943 toolkit-dependent default. Because these defaults are
2944 difficult to get at without actually creating a scroll
2945 bar, use nil to indicate that no color has been
2946 specified. */
2947 tem = Qnil;
2948 }
2949
2950 #else /* not USE_TOOLKIT_SCROLL_BARS */
2951
2952 tem = Qnil;
2953
2954 #endif /* not USE_TOOLKIT_SCROLL_BARS */
2955 }
2956
2957 x_set_frame_parameters (f, Fcons (Fcons (prop, tem), Qnil));
2958 return tem;
2959 }
2960
2961
2962 \f
2963 DEFUN ("x-parse-geometry", Fx_parse_geometry, Sx_parse_geometry, 1, 1, 0,
2964 "Parse an X-style geometry string STRING.\n\
2965 Returns an alist of the form ((top . TOP), (left . LEFT) ... ).\n\
2966 The properties returned may include `top', `left', `height', and `width'.\n\
2967 The value of `left' or `top' may be an integer,\n\
2968 or a list (+ N) meaning N pixels relative to top/left corner,\n\
2969 or a list (- N) meaning -N pixels relative to bottom/right corner.")
2970 (string)
2971 Lisp_Object string;
2972 {
2973 int geometry, x, y;
2974 unsigned int width, height;
2975 Lisp_Object result;
2976
2977 CHECK_STRING (string, 0);
2978
2979 geometry = XParseGeometry ((char *) XSTRING (string)->data,
2980 &x, &y, &width, &height);
2981
2982 #if 0
2983 if (!!(geometry & XValue) != !!(geometry & YValue))
2984 error ("Must specify both x and y position, or neither");
2985 #endif
2986
2987 result = Qnil;
2988 if (geometry & XValue)
2989 {
2990 Lisp_Object element;
2991
2992 if (x >= 0 && (geometry & XNegative))
2993 element = Fcons (Qleft, Fcons (Qminus, Fcons (make_number (-x), Qnil)));
2994 else if (x < 0 && ! (geometry & XNegative))
2995 element = Fcons (Qleft, Fcons (Qplus, Fcons (make_number (x), Qnil)));
2996 else
2997 element = Fcons (Qleft, make_number (x));
2998 result = Fcons (element, result);
2999 }
3000
3001 if (geometry & YValue)
3002 {
3003 Lisp_Object element;
3004
3005 if (y >= 0 && (geometry & YNegative))
3006 element = Fcons (Qtop, Fcons (Qminus, Fcons (make_number (-y), Qnil)));
3007 else if (y < 0 && ! (geometry & YNegative))
3008 element = Fcons (Qtop, Fcons (Qplus, Fcons (make_number (y), Qnil)));
3009 else
3010 element = Fcons (Qtop, make_number (y));
3011 result = Fcons (element, result);
3012 }
3013
3014 if (geometry & WidthValue)
3015 result = Fcons (Fcons (Qwidth, make_number (width)), result);
3016 if (geometry & HeightValue)
3017 result = Fcons (Fcons (Qheight, make_number (height)), result);
3018
3019 return result;
3020 }
3021
3022 /* Calculate the desired size and position of this window,
3023 and return the flags saying which aspects were specified.
3024
3025 This function does not make the coordinates positive. */
3026
3027 #define DEFAULT_ROWS 40
3028 #define DEFAULT_COLS 80
3029
3030 static int
3031 x_figure_window_size (f, parms)
3032 struct frame *f;
3033 Lisp_Object parms;
3034 {
3035 register Lisp_Object tem0, tem1, tem2;
3036 long window_prompting = 0;
3037 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
3038
3039 /* Default values if we fall through.
3040 Actually, if that happens we should get
3041 window manager prompting. */
3042 SET_FRAME_WIDTH (f, DEFAULT_COLS);
3043 f->height = DEFAULT_ROWS;
3044 /* Window managers expect that if program-specified
3045 positions are not (0,0), they're intentional, not defaults. */
3046 f->output_data.x->top_pos = 0;
3047 f->output_data.x->left_pos = 0;
3048
3049 tem0 = x_get_arg (dpyinfo, parms, Qheight, 0, 0, RES_TYPE_NUMBER);
3050 tem1 = x_get_arg (dpyinfo, parms, Qwidth, 0, 0, RES_TYPE_NUMBER);
3051 tem2 = x_get_arg (dpyinfo, parms, Quser_size, 0, 0, RES_TYPE_NUMBER);
3052 if (! EQ (tem0, Qunbound) || ! EQ (tem1, Qunbound))
3053 {
3054 if (!EQ (tem0, Qunbound))
3055 {
3056 CHECK_NUMBER (tem0, 0);
3057 f->height = XINT (tem0);
3058 }
3059 if (!EQ (tem1, Qunbound))
3060 {
3061 CHECK_NUMBER (tem1, 0);
3062 SET_FRAME_WIDTH (f, XINT (tem1));
3063 }
3064 if (!NILP (tem2) && !EQ (tem2, Qunbound))
3065 window_prompting |= USSize;
3066 else
3067 window_prompting |= PSize;
3068 }
3069
3070 f->output_data.x->vertical_scroll_bar_extra
3071 = (!FRAME_HAS_VERTICAL_SCROLL_BARS (f)
3072 ? 0
3073 : (FRAME_SCROLL_BAR_COLS (f) * FONT_WIDTH (f->output_data.x->font)));
3074 f->output_data.x->flags_areas_extra
3075 = FRAME_FLAGS_AREA_WIDTH (f);
3076 f->output_data.x->pixel_width = CHAR_TO_PIXEL_WIDTH (f, f->width);
3077 f->output_data.x->pixel_height = CHAR_TO_PIXEL_HEIGHT (f, f->height);
3078
3079 tem0 = x_get_arg (dpyinfo, parms, Qtop, 0, 0, RES_TYPE_NUMBER);
3080 tem1 = x_get_arg (dpyinfo, parms, Qleft, 0, 0, RES_TYPE_NUMBER);
3081 tem2 = x_get_arg (dpyinfo, parms, Quser_position, 0, 0, RES_TYPE_NUMBER);
3082 if (! EQ (tem0, Qunbound) || ! EQ (tem1, Qunbound))
3083 {
3084 if (EQ (tem0, Qminus))
3085 {
3086 f->output_data.x->top_pos = 0;
3087 window_prompting |= YNegative;
3088 }
3089 else if (CONSP (tem0) && EQ (XCAR (tem0), Qminus)
3090 && CONSP (XCDR (tem0))
3091 && INTEGERP (XCAR (XCDR (tem0))))
3092 {
3093 f->output_data.x->top_pos = - XINT (XCAR (XCDR (tem0)));
3094 window_prompting |= YNegative;
3095 }
3096 else if (CONSP (tem0) && EQ (XCAR (tem0), Qplus)
3097 && CONSP (XCDR (tem0))
3098 && INTEGERP (XCAR (XCDR (tem0))))
3099 {
3100 f->output_data.x->top_pos = XINT (XCAR (XCDR (tem0)));
3101 }
3102 else if (EQ (tem0, Qunbound))
3103 f->output_data.x->top_pos = 0;
3104 else
3105 {
3106 CHECK_NUMBER (tem0, 0);
3107 f->output_data.x->top_pos = XINT (tem0);
3108 if (f->output_data.x->top_pos < 0)
3109 window_prompting |= YNegative;
3110 }
3111
3112 if (EQ (tem1, Qminus))
3113 {
3114 f->output_data.x->left_pos = 0;
3115 window_prompting |= XNegative;
3116 }
3117 else if (CONSP (tem1) && EQ (XCAR (tem1), Qminus)
3118 && CONSP (XCDR (tem1))
3119 && INTEGERP (XCAR (XCDR (tem1))))
3120 {
3121 f->output_data.x->left_pos = - XINT (XCAR (XCDR (tem1)));
3122 window_prompting |= XNegative;
3123 }
3124 else if (CONSP (tem1) && EQ (XCAR (tem1), Qplus)
3125 && CONSP (XCDR (tem1))
3126 && INTEGERP (XCAR (XCDR (tem1))))
3127 {
3128 f->output_data.x->left_pos = XINT (XCAR (XCDR (tem1)));
3129 }
3130 else if (EQ (tem1, Qunbound))
3131 f->output_data.x->left_pos = 0;
3132 else
3133 {
3134 CHECK_NUMBER (tem1, 0);
3135 f->output_data.x->left_pos = XINT (tem1);
3136 if (f->output_data.x->left_pos < 0)
3137 window_prompting |= XNegative;
3138 }
3139
3140 if (!NILP (tem2) && ! EQ (tem2, Qunbound))
3141 window_prompting |= USPosition;
3142 else
3143 window_prompting |= PPosition;
3144 }
3145
3146 return window_prompting;
3147 }
3148
3149 #if !defined (HAVE_X11R4) && !defined (HAVE_XSETWMPROTOCOLS)
3150
3151 Status
3152 XSetWMProtocols (dpy, w, protocols, count)
3153 Display *dpy;
3154 Window w;
3155 Atom *protocols;
3156 int count;
3157 {
3158 Atom prop;
3159 prop = XInternAtom (dpy, "WM_PROTOCOLS", False);
3160 if (prop == None) return False;
3161 XChangeProperty (dpy, w, prop, XA_ATOM, 32, PropModeReplace,
3162 (unsigned char *) protocols, count);
3163 return True;
3164 }
3165 #endif /* not HAVE_X11R4 && not HAVE_XSETWMPROTOCOLS */
3166 \f
3167 #ifdef USE_X_TOOLKIT
3168
3169 /* If the WM_PROTOCOLS property does not already contain WM_TAKE_FOCUS,
3170 WM_DELETE_WINDOW, and WM_SAVE_YOURSELF, then add them. (They may
3171 already be present because of the toolkit (Motif adds some of them,
3172 for example, but Xt doesn't). */
3173
3174 static void
3175 hack_wm_protocols (f, widget)
3176 FRAME_PTR f;
3177 Widget widget;
3178 {
3179 Display *dpy = XtDisplay (widget);
3180 Window w = XtWindow (widget);
3181 int need_delete = 1;
3182 int need_focus = 1;
3183 int need_save = 1;
3184
3185 BLOCK_INPUT;
3186 {
3187 Atom type, *atoms = 0;
3188 int format = 0;
3189 unsigned long nitems = 0;
3190 unsigned long bytes_after;
3191
3192 if ((XGetWindowProperty (dpy, w,
3193 FRAME_X_DISPLAY_INFO (f)->Xatom_wm_protocols,
3194 (long)0, (long)100, False, XA_ATOM,
3195 &type, &format, &nitems, &bytes_after,
3196 (unsigned char **) &atoms)
3197 == Success)
3198 && format == 32 && type == XA_ATOM)
3199 while (nitems > 0)
3200 {
3201 nitems--;
3202 if (atoms[nitems] == FRAME_X_DISPLAY_INFO (f)->Xatom_wm_delete_window)
3203 need_delete = 0;
3204 else if (atoms[nitems] == FRAME_X_DISPLAY_INFO (f)->Xatom_wm_take_focus)
3205 need_focus = 0;
3206 else if (atoms[nitems] == FRAME_X_DISPLAY_INFO (f)->Xatom_wm_save_yourself)
3207 need_save = 0;
3208 }
3209 if (atoms) XFree ((char *) atoms);
3210 }
3211 {
3212 Atom props [10];
3213 int count = 0;
3214 if (need_delete)
3215 props[count++] = FRAME_X_DISPLAY_INFO (f)->Xatom_wm_delete_window;
3216 if (need_focus)
3217 props[count++] = FRAME_X_DISPLAY_INFO (f)->Xatom_wm_take_focus;
3218 if (need_save)
3219 props[count++] = FRAME_X_DISPLAY_INFO (f)->Xatom_wm_save_yourself;
3220 if (count)
3221 XChangeProperty (dpy, w, FRAME_X_DISPLAY_INFO (f)->Xatom_wm_protocols,
3222 XA_ATOM, 32, PropModeAppend,
3223 (unsigned char *) props, count);
3224 }
3225 UNBLOCK_INPUT;
3226 }
3227 #endif
3228
3229
3230 \f
3231 /* Support routines for XIC (X Input Context). */
3232
3233 #ifdef HAVE_X_I18N
3234
3235 static XFontSet xic_create_xfontset P_ ((struct frame *, char *));
3236 static XIMStyle best_xim_style P_ ((XIMStyles *, XIMStyles *));
3237
3238
3239 /* Supported XIM styles, ordered by preferenc. */
3240
3241 static XIMStyle supported_xim_styles[] =
3242 {
3243 XIMPreeditPosition | XIMStatusArea,
3244 XIMPreeditPosition | XIMStatusNothing,
3245 XIMPreeditPosition | XIMStatusNone,
3246 XIMPreeditNothing | XIMStatusArea,
3247 XIMPreeditNothing | XIMStatusNothing,
3248 XIMPreeditNothing | XIMStatusNone,
3249 XIMPreeditNone | XIMStatusArea,
3250 XIMPreeditNone | XIMStatusNothing,
3251 XIMPreeditNone | XIMStatusNone,
3252 0,
3253 };
3254
3255
3256 /* Create an X fontset on frame F with base font name
3257 BASE_FONTNAME.. */
3258
3259 static XFontSet
3260 xic_create_xfontset (f, base_fontname)
3261 struct frame *f;
3262 char *base_fontname;
3263 {
3264 XFontSet xfs;
3265 char **missing_list;
3266 int missing_count;
3267 char *def_string;
3268
3269 xfs = XCreateFontSet (FRAME_X_DISPLAY (f),
3270 base_fontname, &missing_list,
3271 &missing_count, &def_string);
3272 if (missing_list)
3273 XFreeStringList (missing_list);
3274
3275 /* No need to free def_string. */
3276 return xfs;
3277 }
3278
3279
3280 /* Value is the best input style, given user preferences USER (already
3281 checked to be supported by Emacs), and styles supported by the
3282 input method XIM. */
3283
3284 static XIMStyle
3285 best_xim_style (user, xim)
3286 XIMStyles *user;
3287 XIMStyles *xim;
3288 {
3289 int i, j;
3290
3291 for (i = 0; i < user->count_styles; ++i)
3292 for (j = 0; j < xim->count_styles; ++j)
3293 if (user->supported_styles[i] == xim->supported_styles[j])
3294 return user->supported_styles[i];
3295
3296 /* Return the default style. */
3297 return XIMPreeditNothing | XIMStatusNothing;
3298 }
3299
3300 /* Create XIC for frame F. */
3301
3302 void
3303 create_frame_xic (f)
3304 struct frame *f;
3305 {
3306 XIM xim;
3307 XIC xic = NULL;
3308 XFontSet xfs = NULL;
3309 static XIMStyle xic_style;
3310
3311 if (FRAME_XIC (f))
3312 return;
3313
3314 xim = FRAME_X_XIM (f);
3315 if (xim)
3316 {
3317 XRectangle s_area;
3318 XPoint spot;
3319 XVaNestedList preedit_attr;
3320 XVaNestedList status_attr;
3321 char *base_fontname;
3322 int fontset;
3323
3324 s_area.x = 0; s_area.y = 0; s_area.width = 1; s_area.height = 1;
3325 spot.x = 0; spot.y = 1;
3326 /* Create X fontset. */
3327 fontset = FRAME_FONTSET (f);
3328 if (fontset < 0)
3329 base_fontname = "-*-*-*-r-normal--14-*-*-*-*-*-*-*";
3330 else
3331 {
3332 /* Determine the base fontname from the ASCII font name of
3333 FONTSET. */
3334 char *ascii_font = (char *) XSTRING (fontset_ascii (fontset))->data;
3335 char *p = ascii_font;
3336 int i;
3337
3338 for (i = 0; *p; p++)
3339 if (*p == '-') i++;
3340 if (i != 14)
3341 /* As the font name doesn't conform to XLFD, we can't
3342 modify it to get a suitable base fontname for the
3343 frame. */
3344 base_fontname = "-*-*-*-r-normal--14-*-*-*-*-*-*-*";
3345 else
3346 {
3347 int len = strlen (ascii_font) + 1;
3348 char *p1 = NULL;
3349
3350 for (i = 0, p = ascii_font; i < 8; p++)
3351 {
3352 if (*p == '-')
3353 {
3354 i++;
3355 if (i == 3)
3356 p1 = p + 1;
3357 }
3358 }
3359 base_fontname = (char *) alloca (len);
3360 bzero (base_fontname, len);
3361 strcpy (base_fontname, "-*-*-");
3362 bcopy (p1, base_fontname + 5, p - p1);
3363 strcat (base_fontname, "*-*-*-*-*-*-*");
3364 }
3365 }
3366 xfs = xic_create_xfontset (f, base_fontname);
3367
3368 /* Determine XIC style. */
3369 if (xic_style == 0)
3370 {
3371 XIMStyles supported_list;
3372 supported_list.count_styles = (sizeof supported_xim_styles
3373 / sizeof supported_xim_styles[0]);
3374 supported_list.supported_styles = supported_xim_styles;
3375 xic_style = best_xim_style (&supported_list,
3376 FRAME_X_XIM_STYLES (f));
3377 }
3378
3379 preedit_attr = XVaCreateNestedList (0,
3380 XNFontSet, xfs,
3381 XNForeground,
3382 FRAME_FOREGROUND_PIXEL (f),
3383 XNBackground,
3384 FRAME_BACKGROUND_PIXEL (f),
3385 (xic_style & XIMPreeditPosition
3386 ? XNSpotLocation
3387 : NULL),
3388 &spot,
3389 NULL);
3390 status_attr = XVaCreateNestedList (0,
3391 XNArea,
3392 &s_area,
3393 XNFontSet,
3394 xfs,
3395 XNForeground,
3396 FRAME_FOREGROUND_PIXEL (f),
3397 XNBackground,
3398 FRAME_BACKGROUND_PIXEL (f),
3399 NULL);
3400
3401 xic = XCreateIC (xim,
3402 XNInputStyle, xic_style,
3403 XNClientWindow, FRAME_X_WINDOW(f),
3404 XNFocusWindow, FRAME_X_WINDOW(f),
3405 XNStatusAttributes, status_attr,
3406 XNPreeditAttributes, preedit_attr,
3407 NULL);
3408 XFree (preedit_attr);
3409 XFree (status_attr);
3410 }
3411
3412 FRAME_XIC (f) = xic;
3413 FRAME_XIC_STYLE (f) = xic_style;
3414 FRAME_XIC_FONTSET (f) = xfs;
3415 }
3416
3417
3418 /* Destroy XIC and free XIC fontset of frame F, if any. */
3419
3420 void
3421 free_frame_xic (f)
3422 struct frame *f;
3423 {
3424 if (FRAME_XIC (f) == NULL)
3425 return;
3426
3427 XDestroyIC (FRAME_XIC (f));
3428 if (FRAME_XIC_FONTSET (f))
3429 XFreeFontSet (FRAME_X_DISPLAY (f), FRAME_XIC_FONTSET (f));
3430
3431 FRAME_XIC (f) = NULL;
3432 FRAME_XIC_FONTSET (f) = NULL;
3433 }
3434
3435
3436 /* Place preedit area for XIC of window W's frame to specified
3437 pixel position X/Y. X and Y are relative to window W. */
3438
3439 void
3440 xic_set_preeditarea (w, x, y)
3441 struct window *w;
3442 int x, y;
3443 {
3444 struct frame *f = XFRAME (w->frame);
3445 XVaNestedList attr;
3446 XPoint spot;
3447
3448 spot.x = WINDOW_TO_FRAME_PIXEL_X (w, x);
3449 spot.y = WINDOW_TO_FRAME_PIXEL_Y (w, y) + FONT_BASE (FRAME_FONT (f));
3450 attr = XVaCreateNestedList (0, XNSpotLocation, &spot, NULL);
3451 XSetICValues (FRAME_XIC (f), XNPreeditAttributes, attr, NULL);
3452 XFree (attr);
3453 }
3454
3455
3456 /* Place status area for XIC in bottom right corner of frame F.. */
3457
3458 void
3459 xic_set_statusarea (f)
3460 struct frame *f;
3461 {
3462 XIC xic = FRAME_XIC (f);
3463 XVaNestedList attr;
3464 XRectangle area;
3465 XRectangle *needed;
3466
3467 /* Negotiate geometry of status area. If input method has existing
3468 status area, use its current size. */
3469 area.x = area.y = area.width = area.height = 0;
3470 attr = XVaCreateNestedList (0, XNAreaNeeded, &area, NULL);
3471 XSetICValues (xic, XNStatusAttributes, attr, NULL);
3472 XFree (attr);
3473
3474 attr = XVaCreateNestedList (0, XNAreaNeeded, &needed, NULL);
3475 XGetICValues (xic, XNStatusAttributes, attr, NULL);
3476 XFree (attr);
3477
3478 if (needed->width == 0) /* Use XNArea instead of XNAreaNeeded */
3479 {
3480 attr = XVaCreateNestedList (0, XNArea, &needed, NULL);
3481 XGetICValues (xic, XNStatusAttributes, attr, NULL);
3482 XFree (attr);
3483 }
3484
3485 area.width = needed->width;
3486 area.height = needed->height;
3487 area.x = PIXEL_WIDTH (f) - area.width - FRAME_INTERNAL_BORDER_WIDTH (f);
3488 area.y = (PIXEL_HEIGHT (f) - area.height
3489 - FRAME_MENUBAR_HEIGHT (f) - FRAME_INTERNAL_BORDER_WIDTH (f));
3490 XFree (needed);
3491
3492 attr = XVaCreateNestedList (0, XNArea, &area, NULL);
3493 XSetICValues(xic, XNStatusAttributes, attr, NULL);
3494 XFree (attr);
3495 }
3496
3497
3498 /* Set X fontset for XIC of frame F, using base font name
3499 BASE_FONTNAME. Called when a new Emacs fontset is chosen. */
3500
3501 void
3502 xic_set_xfontset (f, base_fontname)
3503 struct frame *f;
3504 char *base_fontname;
3505 {
3506 XVaNestedList attr;
3507 XFontSet xfs;
3508
3509 xfs = xic_create_xfontset (f, base_fontname);
3510
3511 attr = XVaCreateNestedList (0, XNFontSet, xfs, NULL);
3512 if (FRAME_XIC_STYLE (f) & XIMPreeditPosition)
3513 XSetICValues (FRAME_XIC (f), XNPreeditAttributes, attr, NULL);
3514 if (FRAME_XIC_STYLE (f) & XIMStatusArea)
3515 XSetICValues (FRAME_XIC (f), XNStatusAttributes, attr, NULL);
3516 XFree (attr);
3517
3518 if (FRAME_XIC_FONTSET (f))
3519 XFreeFontSet (FRAME_X_DISPLAY (f), FRAME_XIC_FONTSET (f));
3520 FRAME_XIC_FONTSET (f) = xfs;
3521 }
3522
3523 #endif /* HAVE_X_I18N */
3524
3525
3526 \f
3527 #ifdef USE_X_TOOLKIT
3528
3529 /* Create and set up the X widget for frame F. */
3530
3531 static void
3532 x_window (f, window_prompting, minibuffer_only)
3533 struct frame *f;
3534 long window_prompting;
3535 int minibuffer_only;
3536 {
3537 XClassHint class_hints;
3538 XSetWindowAttributes attributes;
3539 unsigned long attribute_mask;
3540 Widget shell_widget;
3541 Widget pane_widget;
3542 Widget frame_widget;
3543 Arg al [25];
3544 int ac;
3545
3546 BLOCK_INPUT;
3547
3548 /* Use the resource name as the top-level widget name
3549 for looking up resources. Make a non-Lisp copy
3550 for the window manager, so GC relocation won't bother it.
3551
3552 Elsewhere we specify the window name for the window manager. */
3553
3554 {
3555 char *str = (char *) XSTRING (Vx_resource_name)->data;
3556 f->namebuf = (char *) xmalloc (strlen (str) + 1);
3557 strcpy (f->namebuf, str);
3558 }
3559
3560 ac = 0;
3561 XtSetArg (al[ac], XtNallowShellResize, 1); ac++;
3562 XtSetArg (al[ac], XtNinput, 1); ac++;
3563 XtSetArg (al[ac], XtNmappedWhenManaged, 0); ac++;
3564 XtSetArg (al[ac], XtNborderWidth, f->output_data.x->border_width); ac++;
3565 XtSetArg (al[ac], XtNvisual, FRAME_X_VISUAL (f)); ac++;
3566 XtSetArg (al[ac], XtNdepth, FRAME_X_DISPLAY_INFO (f)->n_planes); ac++;
3567 XtSetArg (al[ac], XtNcolormap, FRAME_X_COLORMAP (f)); ac++;
3568 shell_widget = XtAppCreateShell (f->namebuf, EMACS_CLASS,
3569 applicationShellWidgetClass,
3570 FRAME_X_DISPLAY (f), al, ac);
3571
3572 f->output_data.x->widget = shell_widget;
3573 /* maybe_set_screen_title_format (shell_widget); */
3574
3575 pane_widget = lw_create_widget ("main", "pane", widget_id_tick++,
3576 (widget_value *) NULL,
3577 shell_widget, False,
3578 (lw_callback) NULL,
3579 (lw_callback) NULL,
3580 (lw_callback) NULL,
3581 (lw_callback) NULL);
3582
3583 ac = 0;
3584 XtSetArg (al[ac], XtNvisual, FRAME_X_VISUAL (f)); ac++;
3585 XtSetArg (al[ac], XtNdepth, FRAME_X_DISPLAY_INFO (f)->n_planes); ac++;
3586 XtSetArg (al[ac], XtNcolormap, FRAME_X_COLORMAP (f)); ac++;
3587 XtSetValues (pane_widget, al, ac);
3588 f->output_data.x->column_widget = pane_widget;
3589
3590 /* mappedWhenManaged to false tells to the paned window to not map/unmap
3591 the emacs screen when changing menubar. This reduces flickering. */
3592
3593 ac = 0;
3594 XtSetArg (al[ac], XtNmappedWhenManaged, 0); ac++;
3595 XtSetArg (al[ac], XtNshowGrip, 0); ac++;
3596 XtSetArg (al[ac], XtNallowResize, 1); ac++;
3597 XtSetArg (al[ac], XtNresizeToPreferred, 1); ac++;
3598 XtSetArg (al[ac], XtNemacsFrame, f); ac++;
3599 XtSetArg (al[ac], XtNvisual, FRAME_X_VISUAL (f)); ac++;
3600 XtSetArg (al[ac], XtNdepth, FRAME_X_DISPLAY_INFO (f)->n_planes); ac++;
3601 XtSetArg (al[ac], XtNcolormap, FRAME_X_COLORMAP (f)); ac++;
3602 frame_widget = XtCreateWidget (f->namebuf, emacsFrameClass, pane_widget,
3603 al, ac);
3604
3605 f->output_data.x->edit_widget = frame_widget;
3606
3607 XtManageChild (frame_widget);
3608
3609 /* Do some needed geometry management. */
3610 {
3611 int len;
3612 char *tem, shell_position[32];
3613 Arg al[2];
3614 int ac = 0;
3615 int extra_borders = 0;
3616 int menubar_size
3617 = (f->output_data.x->menubar_widget
3618 ? (f->output_data.x->menubar_widget->core.height
3619 + f->output_data.x->menubar_widget->core.border_width)
3620 : 0);
3621
3622 #if 0 /* Experimentally, we now get the right results
3623 for -geometry -0-0 without this. 24 Aug 96, rms. */
3624 if (FRAME_EXTERNAL_MENU_BAR (f))
3625 {
3626 Dimension ibw = 0;
3627 XtVaGetValues (pane_widget, XtNinternalBorderWidth, &ibw, NULL);
3628 menubar_size += ibw;
3629 }
3630 #endif
3631
3632 f->output_data.x->menubar_height = menubar_size;
3633
3634 #ifndef USE_LUCID
3635 /* Motif seems to need this amount added to the sizes
3636 specified for the shell widget. The Athena/Lucid widgets don't.
3637 Both conclusions reached experimentally. -- rms. */
3638 XtVaGetValues (f->output_data.x->edit_widget, XtNinternalBorderWidth,
3639 &extra_borders, NULL);
3640 extra_borders *= 2;
3641 #endif
3642
3643 /* Convert our geometry parameters into a geometry string
3644 and specify it.
3645 Note that we do not specify here whether the position
3646 is a user-specified or program-specified one.
3647 We pass that information later, in x_wm_set_size_hints. */
3648 {
3649 int left = f->output_data.x->left_pos;
3650 int xneg = window_prompting & XNegative;
3651 int top = f->output_data.x->top_pos;
3652 int yneg = window_prompting & YNegative;
3653 if (xneg)
3654 left = -left;
3655 if (yneg)
3656 top = -top;
3657
3658 if (window_prompting & USPosition)
3659 sprintf (shell_position, "=%dx%d%c%d%c%d",
3660 PIXEL_WIDTH (f) + extra_borders,
3661 PIXEL_HEIGHT (f) + menubar_size + extra_borders,
3662 (xneg ? '-' : '+'), left,
3663 (yneg ? '-' : '+'), top);
3664 else
3665 sprintf (shell_position, "=%dx%d",
3666 PIXEL_WIDTH (f) + extra_borders,
3667 PIXEL_HEIGHT (f) + menubar_size + extra_borders);
3668 }
3669
3670 len = strlen (shell_position) + 1;
3671 /* We don't free this because we don't know whether
3672 it is safe to free it while the frame exists.
3673 It isn't worth the trouble of arranging to free it
3674 when the frame is deleted. */
3675 tem = (char *) xmalloc (len);
3676 strncpy (tem, shell_position, len);
3677 XtSetArg (al[ac], XtNgeometry, tem); ac++;
3678 XtSetValues (shell_widget, al, ac);
3679 }
3680
3681 XtManageChild (pane_widget);
3682 XtRealizeWidget (shell_widget);
3683
3684 FRAME_X_WINDOW (f) = XtWindow (frame_widget);
3685
3686 validate_x_resource_name ();
3687
3688 class_hints.res_name = (char *) XSTRING (Vx_resource_name)->data;
3689 class_hints.res_class = (char *) XSTRING (Vx_resource_class)->data;
3690 XSetClassHint (FRAME_X_DISPLAY (f), XtWindow (shell_widget), &class_hints);
3691
3692 #ifdef HAVE_X_I18N
3693 FRAME_XIC (f) = NULL;
3694 #ifdef USE_XIM
3695 create_frame_xic (f);
3696 #endif
3697 #endif
3698
3699 f->output_data.x->wm_hints.input = True;
3700 f->output_data.x->wm_hints.flags |= InputHint;
3701 XSetWMHints (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3702 &f->output_data.x->wm_hints);
3703
3704 hack_wm_protocols (f, shell_widget);
3705
3706 #ifdef HACK_EDITRES
3707 XtAddEventHandler (shell_widget, 0, True, _XEditResCheckMessages, 0);
3708 #endif
3709
3710 /* Do a stupid property change to force the server to generate a
3711 PropertyNotify event so that the event_stream server timestamp will
3712 be initialized to something relevant to the time we created the window.
3713 */
3714 XChangeProperty (XtDisplay (frame_widget), XtWindow (frame_widget),
3715 FRAME_X_DISPLAY_INFO (f)->Xatom_wm_protocols,
3716 XA_ATOM, 32, PropModeAppend,
3717 (unsigned char*) NULL, 0);
3718
3719 /* Make all the standard events reach the Emacs frame. */
3720 attributes.event_mask = STANDARD_EVENT_SET;
3721
3722 #ifdef HAVE_X_I18N
3723 if (FRAME_XIC (f))
3724 {
3725 /* XIM server might require some X events. */
3726 unsigned long fevent = NoEventMask;
3727 XGetICValues(FRAME_XIC (f), XNFilterEvents, &fevent, NULL);
3728 attributes.event_mask |= fevent;
3729 }
3730 #endif /* HAVE_X_I18N */
3731
3732 attribute_mask = CWEventMask;
3733 XChangeWindowAttributes (XtDisplay (shell_widget), XtWindow (shell_widget),
3734 attribute_mask, &attributes);
3735
3736 XtMapWidget (frame_widget);
3737
3738 /* x_set_name normally ignores requests to set the name if the
3739 requested name is the same as the current name. This is the one
3740 place where that assumption isn't correct; f->name is set, but
3741 the X server hasn't been told. */
3742 {
3743 Lisp_Object name;
3744 int explicit = f->explicit_name;
3745
3746 f->explicit_name = 0;
3747 name = f->name;
3748 f->name = Qnil;
3749 x_set_name (f, name, explicit);
3750 }
3751
3752 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3753 f->output_data.x->text_cursor);
3754
3755 UNBLOCK_INPUT;
3756
3757 /* This is a no-op, except under Motif. Make sure main areas are
3758 set to something reasonable, in case we get an error later. */
3759 lw_set_main_areas (pane_widget, 0, frame_widget);
3760 }
3761
3762 #else /* not USE_X_TOOLKIT */
3763
3764 /* Create and set up the X window for frame F. */
3765
3766 void
3767 x_window (f)
3768 struct frame *f;
3769
3770 {
3771 XClassHint class_hints;
3772 XSetWindowAttributes attributes;
3773 unsigned long attribute_mask;
3774
3775 attributes.background_pixel = f->output_data.x->background_pixel;
3776 attributes.border_pixel = f->output_data.x->border_pixel;
3777 attributes.bit_gravity = StaticGravity;
3778 attributes.backing_store = NotUseful;
3779 attributes.save_under = True;
3780 attributes.event_mask = STANDARD_EVENT_SET;
3781 attributes.colormap = FRAME_X_COLORMAP (f);
3782 attribute_mask = (CWBackPixel | CWBorderPixel | CWBitGravity | CWEventMask
3783 | CWColormap);
3784
3785 BLOCK_INPUT;
3786 FRAME_X_WINDOW (f)
3787 = XCreateWindow (FRAME_X_DISPLAY (f),
3788 f->output_data.x->parent_desc,
3789 f->output_data.x->left_pos,
3790 f->output_data.x->top_pos,
3791 PIXEL_WIDTH (f), PIXEL_HEIGHT (f),
3792 f->output_data.x->border_width,
3793 CopyFromParent, /* depth */
3794 InputOutput, /* class */
3795 FRAME_X_VISUAL (f),
3796 attribute_mask, &attributes);
3797
3798 #ifdef HAVE_X_I18N
3799 #ifdef USE_XIM
3800 create_frame_xic (f);
3801 if (FRAME_XIC (f))
3802 {
3803 /* XIM server might require some X events. */
3804 unsigned long fevent = NoEventMask;
3805 XGetICValues(FRAME_XIC (f), XNFilterEvents, &fevent, NULL);
3806 attributes.event_mask |= fevent;
3807 attribute_mask = CWEventMask;
3808 XChangeWindowAttributes (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3809 attribute_mask, &attributes);
3810 }
3811 #endif
3812 #endif /* HAVE_X_I18N */
3813
3814 validate_x_resource_name ();
3815
3816 class_hints.res_name = (char *) XSTRING (Vx_resource_name)->data;
3817 class_hints.res_class = (char *) XSTRING (Vx_resource_class)->data;
3818 XSetClassHint (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), &class_hints);
3819
3820 /* The menubar is part of the ordinary display;
3821 it does not count in addition to the height of the window. */
3822 f->output_data.x->menubar_height = 0;
3823
3824 /* This indicates that we use the "Passive Input" input model.
3825 Unless we do this, we don't get the Focus{In,Out} events that we
3826 need to draw the cursor correctly. Accursed bureaucrats.
3827 XWhipsAndChains (FRAME_X_DISPLAY (f), IronMaiden, &TheRack); */
3828
3829 f->output_data.x->wm_hints.input = True;
3830 f->output_data.x->wm_hints.flags |= InputHint;
3831 XSetWMHints (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3832 &f->output_data.x->wm_hints);
3833 f->output_data.x->wm_hints.icon_pixmap = None;
3834
3835 /* Request "save yourself" and "delete window" commands from wm. */
3836 {
3837 Atom protocols[2];
3838 protocols[0] = FRAME_X_DISPLAY_INFO (f)->Xatom_wm_delete_window;
3839 protocols[1] = FRAME_X_DISPLAY_INFO (f)->Xatom_wm_save_yourself;
3840 XSetWMProtocols (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), protocols, 2);
3841 }
3842
3843 /* x_set_name normally ignores requests to set the name if the
3844 requested name is the same as the current name. This is the one
3845 place where that assumption isn't correct; f->name is set, but
3846 the X server hasn't been told. */
3847 {
3848 Lisp_Object name;
3849 int explicit = f->explicit_name;
3850
3851 f->explicit_name = 0;
3852 name = f->name;
3853 f->name = Qnil;
3854 x_set_name (f, name, explicit);
3855 }
3856
3857 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3858 f->output_data.x->text_cursor);
3859
3860 UNBLOCK_INPUT;
3861
3862 if (FRAME_X_WINDOW (f) == 0)
3863 error ("Unable to create window");
3864 }
3865
3866 #endif /* not USE_X_TOOLKIT */
3867
3868 /* Handle the icon stuff for this window. Perhaps later we might
3869 want an x_set_icon_position which can be called interactively as
3870 well. */
3871
3872 static void
3873 x_icon (f, parms)
3874 struct frame *f;
3875 Lisp_Object parms;
3876 {
3877 Lisp_Object icon_x, icon_y;
3878 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
3879
3880 /* Set the position of the icon. Note that twm groups all
3881 icons in an icon window. */
3882 icon_x = x_get_and_record_arg (f, parms, Qicon_left, 0, 0, RES_TYPE_NUMBER);
3883 icon_y = x_get_and_record_arg (f, parms, Qicon_top, 0, 0, RES_TYPE_NUMBER);
3884 if (!EQ (icon_x, Qunbound) && !EQ (icon_y, Qunbound))
3885 {
3886 CHECK_NUMBER (icon_x, 0);
3887 CHECK_NUMBER (icon_y, 0);
3888 }
3889 else if (!EQ (icon_x, Qunbound) || !EQ (icon_y, Qunbound))
3890 error ("Both left and top icon corners of icon must be specified");
3891
3892 BLOCK_INPUT;
3893
3894 if (! EQ (icon_x, Qunbound))
3895 x_wm_set_icon_position (f, XINT (icon_x), XINT (icon_y));
3896
3897 /* Start up iconic or window? */
3898 x_wm_set_window_state
3899 (f, (EQ (x_get_arg (dpyinfo, parms, Qvisibility, 0, 0, RES_TYPE_SYMBOL),
3900 Qicon)
3901 ? IconicState
3902 : NormalState));
3903
3904 x_text_icon (f, (char *) XSTRING ((!NILP (f->icon_name)
3905 ? f->icon_name
3906 : f->name))->data);
3907
3908 UNBLOCK_INPUT;
3909 }
3910
3911 /* Make the GCs needed for this window, setting the
3912 background, border and mouse colors; also create the
3913 mouse cursor and the gray border tile. */
3914
3915 static char cursor_bits[] =
3916 {
3917 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
3918 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
3919 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
3920 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
3921 };
3922
3923 static void
3924 x_make_gc (f)
3925 struct frame *f;
3926 {
3927 XGCValues gc_values;
3928
3929 BLOCK_INPUT;
3930
3931 /* Create the GCs of this frame.
3932 Note that many default values are used. */
3933
3934 /* Normal video */
3935 gc_values.font = f->output_data.x->font->fid;
3936 gc_values.foreground = f->output_data.x->foreground_pixel;
3937 gc_values.background = f->output_data.x->background_pixel;
3938 gc_values.line_width = 0; /* Means 1 using fast algorithm. */
3939 f->output_data.x->normal_gc = XCreateGC (FRAME_X_DISPLAY (f),
3940 FRAME_X_WINDOW (f),
3941 GCLineWidth | GCFont
3942 | GCForeground | GCBackground,
3943 &gc_values);
3944
3945 /* Reverse video style. */
3946 gc_values.foreground = f->output_data.x->background_pixel;
3947 gc_values.background = f->output_data.x->foreground_pixel;
3948 f->output_data.x->reverse_gc = XCreateGC (FRAME_X_DISPLAY (f),
3949 FRAME_X_WINDOW (f),
3950 GCFont | GCForeground | GCBackground
3951 | GCLineWidth,
3952 &gc_values);
3953
3954 /* Cursor has cursor-color background, background-color foreground. */
3955 gc_values.foreground = f->output_data.x->background_pixel;
3956 gc_values.background = f->output_data.x->cursor_pixel;
3957 gc_values.fill_style = FillOpaqueStippled;
3958 gc_values.stipple
3959 = XCreateBitmapFromData (FRAME_X_DISPLAY (f),
3960 FRAME_X_DISPLAY_INFO (f)->root_window,
3961 cursor_bits, 16, 16);
3962 f->output_data.x->cursor_gc
3963 = XCreateGC (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3964 (GCFont | GCForeground | GCBackground
3965 | GCFillStyle /* | GCStipple */ | GCLineWidth),
3966 &gc_values);
3967
3968 /* Reliefs. */
3969 f->output_data.x->white_relief.gc = 0;
3970 f->output_data.x->black_relief.gc = 0;
3971
3972 /* Create the gray border tile used when the pointer is not in
3973 the frame. Since this depends on the frame's pixel values,
3974 this must be done on a per-frame basis. */
3975 f->output_data.x->border_tile
3976 = (XCreatePixmapFromBitmapData
3977 (FRAME_X_DISPLAY (f), FRAME_X_DISPLAY_INFO (f)->root_window,
3978 gray_bits, gray_width, gray_height,
3979 f->output_data.x->foreground_pixel,
3980 f->output_data.x->background_pixel,
3981 DefaultDepth (FRAME_X_DISPLAY (f),
3982 XScreenNumberOfScreen (FRAME_X_SCREEN (f)))));
3983
3984 UNBLOCK_INPUT;
3985 }
3986
3987 DEFUN ("x-create-frame", Fx_create_frame, Sx_create_frame,
3988 1, 1, 0,
3989 "Make a new X window, which is called a \"frame\" in Emacs terms.\n\
3990 Returns an Emacs frame object.\n\
3991 ALIST is an alist of frame parameters.\n\
3992 If the parameters specify that the frame should not have a minibuffer,\n\
3993 and do not specify a specific minibuffer window to use,\n\
3994 then `default-minibuffer-frame' must be a frame whose minibuffer can\n\
3995 be shared by the new frame.\n\
3996 \n\
3997 This function is an internal primitive--use `make-frame' instead.")
3998 (parms)
3999 Lisp_Object parms;
4000 {
4001 struct frame *f;
4002 Lisp_Object frame, tem;
4003 Lisp_Object name;
4004 int minibuffer_only = 0;
4005 long window_prompting = 0;
4006 int width, height;
4007 int count = specpdl_ptr - specpdl;
4008 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
4009 Lisp_Object display;
4010 struct x_display_info *dpyinfo = NULL;
4011 Lisp_Object parent;
4012 struct kboard *kb;
4013
4014 check_x ();
4015
4016 /* Use this general default value to start with
4017 until we know if this frame has a specified name. */
4018 Vx_resource_name = Vinvocation_name;
4019
4020 display = x_get_arg (dpyinfo, parms, Qdisplay, 0, 0, RES_TYPE_STRING);
4021 if (EQ (display, Qunbound))
4022 display = Qnil;
4023 dpyinfo = check_x_display_info (display);
4024 #ifdef MULTI_KBOARD
4025 kb = dpyinfo->kboard;
4026 #else
4027 kb = &the_only_kboard;
4028 #endif
4029
4030 name = x_get_arg (dpyinfo, parms, Qname, "name", "Name", RES_TYPE_STRING);
4031 if (!STRINGP (name)
4032 && ! EQ (name, Qunbound)
4033 && ! NILP (name))
4034 error ("Invalid frame name--not a string or nil");
4035
4036 if (STRINGP (name))
4037 Vx_resource_name = name;
4038
4039 /* See if parent window is specified. */
4040 parent = x_get_arg (dpyinfo, parms, Qparent_id, NULL, NULL, RES_TYPE_NUMBER);
4041 if (EQ (parent, Qunbound))
4042 parent = Qnil;
4043 if (! NILP (parent))
4044 CHECK_NUMBER (parent, 0);
4045
4046 /* make_frame_without_minibuffer can run Lisp code and garbage collect. */
4047 /* No need to protect DISPLAY because that's not used after passing
4048 it to make_frame_without_minibuffer. */
4049 frame = Qnil;
4050 GCPRO4 (parms, parent, name, frame);
4051 tem = x_get_arg (dpyinfo, parms, Qminibuffer, "minibuffer", "Minibuffer",
4052 RES_TYPE_SYMBOL);
4053 if (EQ (tem, Qnone) || NILP (tem))
4054 f = make_frame_without_minibuffer (Qnil, kb, display);
4055 else if (EQ (tem, Qonly))
4056 {
4057 f = make_minibuffer_frame ();
4058 minibuffer_only = 1;
4059 }
4060 else if (WINDOWP (tem))
4061 f = make_frame_without_minibuffer (tem, kb, display);
4062 else
4063 f = make_frame (1);
4064
4065 XSETFRAME (frame, f);
4066
4067 /* Note that X Windows does support scroll bars. */
4068 FRAME_CAN_HAVE_SCROLL_BARS (f) = 1;
4069
4070 f->output_method = output_x_window;
4071 f->output_data.x = (struct x_output *) xmalloc (sizeof (struct x_output));
4072 bzero (f->output_data.x, sizeof (struct x_output));
4073 f->output_data.x->icon_bitmap = -1;
4074 f->output_data.x->fontset = -1;
4075 f->output_data.x->scroll_bar_foreground_pixel = -1;
4076 f->output_data.x->scroll_bar_background_pixel = -1;
4077
4078 f->icon_name
4079 = x_get_arg (dpyinfo, parms, Qicon_name, "iconName", "Title",
4080 RES_TYPE_STRING);
4081 if (! STRINGP (f->icon_name))
4082 f->icon_name = Qnil;
4083
4084 FRAME_X_DISPLAY_INFO (f) = dpyinfo;
4085 #ifdef MULTI_KBOARD
4086 FRAME_KBOARD (f) = kb;
4087 #endif
4088
4089 /* These colors will be set anyway later, but it's important
4090 to get the color reference counts right, so initialize them! */
4091 {
4092 Lisp_Object black;
4093 struct gcpro gcpro1;
4094
4095 black = build_string ("black");
4096 GCPRO1 (black);
4097 f->output_data.x->foreground_pixel
4098 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
4099 f->output_data.x->background_pixel
4100 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
4101 f->output_data.x->cursor_pixel
4102 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
4103 f->output_data.x->cursor_foreground_pixel
4104 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
4105 f->output_data.x->border_pixel
4106 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
4107 f->output_data.x->mouse_pixel
4108 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
4109 UNGCPRO;
4110 }
4111
4112 /* Specify the parent under which to make this X window. */
4113
4114 if (!NILP (parent))
4115 {
4116 f->output_data.x->parent_desc = (Window) XFASTINT (parent);
4117 f->output_data.x->explicit_parent = 1;
4118 }
4119 else
4120 {
4121 f->output_data.x->parent_desc = FRAME_X_DISPLAY_INFO (f)->root_window;
4122 f->output_data.x->explicit_parent = 0;
4123 }
4124
4125 /* Set the name; the functions to which we pass f expect the name to
4126 be set. */
4127 if (EQ (name, Qunbound) || NILP (name))
4128 {
4129 f->name = build_string (dpyinfo->x_id_name);
4130 f->explicit_name = 0;
4131 }
4132 else
4133 {
4134 f->name = name;
4135 f->explicit_name = 1;
4136 /* use the frame's title when getting resources for this frame. */
4137 specbind (Qx_resource_name, name);
4138 }
4139
4140 /* Extract the window parameters from the supplied values
4141 that are needed to determine window geometry. */
4142 {
4143 Lisp_Object font;
4144
4145 font = x_get_arg (dpyinfo, parms, Qfont, "font", "Font", RES_TYPE_STRING);
4146
4147 BLOCK_INPUT;
4148 /* First, try whatever font the caller has specified. */
4149 if (STRINGP (font))
4150 {
4151 tem = Fquery_fontset (font, Qnil);
4152 if (STRINGP (tem))
4153 font = x_new_fontset (f, XSTRING (tem)->data);
4154 else
4155 font = x_new_font (f, XSTRING (font)->data);
4156 }
4157
4158 /* Try out a font which we hope has bold and italic variations. */
4159 if (!STRINGP (font))
4160 font = x_new_font (f, "-adobe-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-1");
4161 if (!STRINGP (font))
4162 font = x_new_font (f, "-misc-fixed-medium-r-normal-*-*-140-*-*-c-*-iso8859-1");
4163 if (! STRINGP (font))
4164 font = x_new_font (f, "-*-*-medium-r-normal-*-*-140-*-*-c-*-iso8859-1");
4165 if (! STRINGP (font))
4166 /* This was formerly the first thing tried, but it finds too many fonts
4167 and takes too long. */
4168 font = x_new_font (f, "-*-*-medium-r-*-*-*-*-*-*-c-*-iso8859-1");
4169 /* If those didn't work, look for something which will at least work. */
4170 if (! STRINGP (font))
4171 font = x_new_font (f, "-*-fixed-*-*-*-*-*-140-*-*-c-*-iso8859-1");
4172 UNBLOCK_INPUT;
4173 if (! STRINGP (font))
4174 font = build_string ("fixed");
4175
4176 x_default_parameter (f, parms, Qfont, font,
4177 "font", "Font", RES_TYPE_STRING);
4178 }
4179
4180 #ifdef USE_LUCID
4181 /* Prevent lwlib/xlwmenu.c from crashing because of a bug
4182 whereby it fails to get any font. */
4183 xlwmenu_default_font = f->output_data.x->font;
4184 #endif
4185
4186 x_default_parameter (f, parms, Qborder_width, make_number (2),
4187 "borderWidth", "BorderWidth", RES_TYPE_NUMBER);
4188
4189 /* This defaults to 2 in order to match xterm. We recognize either
4190 internalBorderWidth or internalBorder (which is what xterm calls
4191 it). */
4192 if (NILP (Fassq (Qinternal_border_width, parms)))
4193 {
4194 Lisp_Object value;
4195
4196 value = x_get_arg (dpyinfo, parms, Qinternal_border_width,
4197 "internalBorder", "internalBorder", RES_TYPE_NUMBER);
4198 if (! EQ (value, Qunbound))
4199 parms = Fcons (Fcons (Qinternal_border_width, value),
4200 parms);
4201 }
4202 x_default_parameter (f, parms, Qinternal_border_width, make_number (1),
4203 "internalBorderWidth", "internalBorderWidth",
4204 RES_TYPE_NUMBER);
4205 x_default_parameter (f, parms, Qvertical_scroll_bars, Qleft,
4206 "verticalScrollBars", "ScrollBars",
4207 RES_TYPE_SYMBOL);
4208
4209 /* Also do the stuff which must be set before the window exists. */
4210 x_default_parameter (f, parms, Qforeground_color, build_string ("black"),
4211 "foreground", "Foreground", RES_TYPE_STRING);
4212 x_default_parameter (f, parms, Qbackground_color, build_string ("white"),
4213 "background", "Background", RES_TYPE_STRING);
4214 x_default_parameter (f, parms, Qmouse_color, build_string ("black"),
4215 "pointerColor", "Foreground", RES_TYPE_STRING);
4216 x_default_parameter (f, parms, Qcursor_color, build_string ("black"),
4217 "cursorColor", "Foreground", RES_TYPE_STRING);
4218 x_default_parameter (f, parms, Qborder_color, build_string ("black"),
4219 "borderColor", "BorderColor", RES_TYPE_STRING);
4220 x_default_parameter (f, parms, Qscreen_gamma, Qnil,
4221 "screenGamma", "ScreenGamma", RES_TYPE_FLOAT);
4222 x_default_parameter (f, parms, Qline_spacing, Qnil,
4223 "lineSpacing", "LineSpacing", RES_TYPE_NUMBER);
4224
4225 x_default_scroll_bar_color_parameter (f, parms, Qscroll_bar_foreground,
4226 "scrollBarForeground",
4227 "ScrollBarForeground", 1);
4228 x_default_scroll_bar_color_parameter (f, parms, Qscroll_bar_background,
4229 "scrollBarBackground",
4230 "ScrollBarBackground", 0);
4231
4232 /* Init faces before x_default_parameter is called for scroll-bar
4233 parameters because that function calls x_set_scroll_bar_width,
4234 which calls change_frame_size, which calls Fset_window_buffer,
4235 which runs hooks, which call Fvertical_motion. At the end, we
4236 end up in init_iterator with a null face cache, which should not
4237 happen. */
4238 init_frame_faces (f);
4239
4240 x_default_parameter (f, parms, Qmenu_bar_lines, make_number (1),
4241 "menuBar", "MenuBar", RES_TYPE_NUMBER);
4242 x_default_parameter (f, parms, Qtool_bar_lines, make_number (1),
4243 "toolBar", "ToolBar", RES_TYPE_NUMBER);
4244 x_default_parameter (f, parms, Qbuffer_predicate, Qnil,
4245 "bufferPredicate", "BufferPredicate",
4246 RES_TYPE_SYMBOL);
4247 x_default_parameter (f, parms, Qtitle, Qnil,
4248 "title", "Title", RES_TYPE_STRING);
4249
4250 f->output_data.x->parent_desc = FRAME_X_DISPLAY_INFO (f)->root_window;
4251 window_prompting = x_figure_window_size (f, parms);
4252
4253 if (window_prompting & XNegative)
4254 {
4255 if (window_prompting & YNegative)
4256 f->output_data.x->win_gravity = SouthEastGravity;
4257 else
4258 f->output_data.x->win_gravity = NorthEastGravity;
4259 }
4260 else
4261 {
4262 if (window_prompting & YNegative)
4263 f->output_data.x->win_gravity = SouthWestGravity;
4264 else
4265 f->output_data.x->win_gravity = NorthWestGravity;
4266 }
4267
4268 f->output_data.x->size_hint_flags = window_prompting;
4269
4270 tem = x_get_arg (dpyinfo, parms, Qunsplittable, 0, 0, RES_TYPE_BOOLEAN);
4271 f->no_split = minibuffer_only || EQ (tem, Qt);
4272
4273 /* Create the X widget or window. Add the tool-bar height to the
4274 initial frame height so that the user gets a text display area of
4275 the size he specified with -g or via .Xdefaults. Later changes
4276 of the tool-bar height don't change the frame size. This is done
4277 so that users can create tall Emacs frames without having to
4278 guess how tall the tool-bar will get. */
4279 f->height += FRAME_TOOL_BAR_LINES (f);
4280
4281 #ifdef USE_X_TOOLKIT
4282 x_window (f, window_prompting, minibuffer_only);
4283 #else
4284 x_window (f);
4285 #endif
4286
4287 x_icon (f, parms);
4288 x_make_gc (f);
4289
4290 /* Now consider the frame official. */
4291 FRAME_X_DISPLAY_INFO (f)->reference_count++;
4292 Vframe_list = Fcons (frame, Vframe_list);
4293
4294 /* We need to do this after creating the X window, so that the
4295 icon-creation functions can say whose icon they're describing. */
4296 x_default_parameter (f, parms, Qicon_type, Qnil,
4297 "bitmapIcon", "BitmapIcon", RES_TYPE_SYMBOL);
4298
4299 x_default_parameter (f, parms, Qauto_raise, Qnil,
4300 "autoRaise", "AutoRaiseLower", RES_TYPE_BOOLEAN);
4301 x_default_parameter (f, parms, Qauto_lower, Qnil,
4302 "autoLower", "AutoRaiseLower", RES_TYPE_BOOLEAN);
4303 x_default_parameter (f, parms, Qcursor_type, Qbox,
4304 "cursorType", "CursorType", RES_TYPE_SYMBOL);
4305 x_default_parameter (f, parms, Qscroll_bar_width, Qnil,
4306 "scrollBarWidth", "ScrollBarWidth",
4307 RES_TYPE_NUMBER);
4308
4309 /* Dimensions, especially f->height, must be done via change_frame_size.
4310 Change will not be effected unless different from the current
4311 f->height. */
4312 width = f->width;
4313 height = f->height;
4314 f->height = 0;
4315 SET_FRAME_WIDTH (f, 0);
4316 change_frame_size (f, height, width, 1, 0, 0);
4317
4318 /* Set up faces after all frame parameters are known. This call
4319 also merges in face attributes specified for new frames. If we
4320 don't do this, the `menu' face for instance won't have the right
4321 colors, and the menu bar won't appear in the specified colors for
4322 new frames. */
4323 call1 (Qface_set_after_frame_default, frame);
4324
4325 #ifdef USE_X_TOOLKIT
4326 /* Create the menu bar. */
4327 if (!minibuffer_only && FRAME_EXTERNAL_MENU_BAR (f))
4328 {
4329 /* If this signals an error, we haven't set size hints for the
4330 frame and we didn't make it visible. */
4331 initialize_frame_menubar (f);
4332
4333 /* This is a no-op, except under Motif where it arranges the
4334 main window for the widgets on it. */
4335 lw_set_main_areas (f->output_data.x->column_widget,
4336 f->output_data.x->menubar_widget,
4337 f->output_data.x->edit_widget);
4338 }
4339 #endif /* USE_X_TOOLKIT */
4340
4341 /* Tell the server what size and position, etc, we want, and how
4342 badly we want them. This should be done after we have the menu
4343 bar so that its size can be taken into account. */
4344 BLOCK_INPUT;
4345 x_wm_set_size_hint (f, window_prompting, 0);
4346 UNBLOCK_INPUT;
4347
4348 /* Make the window appear on the frame and enable display, unless
4349 the caller says not to. However, with explicit parent, Emacs
4350 cannot control visibility, so don't try. */
4351 if (! f->output_data.x->explicit_parent)
4352 {
4353 Lisp_Object visibility;
4354
4355 visibility = x_get_arg (dpyinfo, parms, Qvisibility, 0, 0,
4356 RES_TYPE_SYMBOL);
4357 if (EQ (visibility, Qunbound))
4358 visibility = Qt;
4359
4360 if (EQ (visibility, Qicon))
4361 x_iconify_frame (f);
4362 else if (! NILP (visibility))
4363 x_make_frame_visible (f);
4364 else
4365 /* Must have been Qnil. */
4366 ;
4367 }
4368
4369 UNGCPRO;
4370 return unbind_to (count, frame);
4371 }
4372
4373 /* FRAME is used only to get a handle on the X display. We don't pass the
4374 display info directly because we're called from frame.c, which doesn't
4375 know about that structure. */
4376
4377 Lisp_Object
4378 x_get_focus_frame (frame)
4379 struct frame *frame;
4380 {
4381 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (frame);
4382 Lisp_Object xfocus;
4383 if (! dpyinfo->x_focus_frame)
4384 return Qnil;
4385
4386 XSETFRAME (xfocus, dpyinfo->x_focus_frame);
4387 return xfocus;
4388 }
4389
4390
4391 /* In certain situations, when the window manager follows a
4392 click-to-focus policy, there seems to be no way around calling
4393 XSetInputFocus to give another frame the input focus .
4394
4395 In an ideal world, XSetInputFocus should generally be avoided so
4396 that applications don't interfere with the window manager's focus
4397 policy. But I think it's okay to use when it's clearly done
4398 following a user-command. */
4399
4400 DEFUN ("x-focus-frame", Fx_focus_frame, Sx_focus_frame, 1, 1, 0,
4401 "Set the input focus to FRAME.\n\
4402 FRAME nil means use the selected frame.")
4403 (frame)
4404 Lisp_Object frame;
4405 {
4406 struct frame *f = check_x_frame (frame);
4407 Display *dpy = FRAME_X_DISPLAY (f);
4408 int count;
4409
4410 BLOCK_INPUT;
4411 count = x_catch_errors (dpy);
4412 XSetInputFocus (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
4413 RevertToParent, CurrentTime);
4414 x_uncatch_errors (dpy, count);
4415 UNBLOCK_INPUT;
4416
4417 return Qnil;
4418 }
4419
4420 \f
4421 DEFUN ("xw-color-defined-p", Fxw_color_defined_p, Sxw_color_defined_p, 1, 2, 0,
4422 "Internal function called by `color-defined-p', which see.")
4423 (color, frame)
4424 Lisp_Object color, frame;
4425 {
4426 XColor foo;
4427 FRAME_PTR f = check_x_frame (frame);
4428
4429 CHECK_STRING (color, 1);
4430
4431 if (x_defined_color (f, XSTRING (color)->data, &foo, 0))
4432 return Qt;
4433 else
4434 return Qnil;
4435 }
4436
4437 DEFUN ("xw-color-values", Fxw_color_values, Sxw_color_values, 1, 2, 0,
4438 "Internal function called by `color-values', which see.")
4439 (color, frame)
4440 Lisp_Object color, frame;
4441 {
4442 XColor foo;
4443 FRAME_PTR f = check_x_frame (frame);
4444
4445 CHECK_STRING (color, 1);
4446
4447 if (x_defined_color (f, XSTRING (color)->data, &foo, 0))
4448 {
4449 Lisp_Object rgb[3];
4450
4451 rgb[0] = make_number (foo.red);
4452 rgb[1] = make_number (foo.green);
4453 rgb[2] = make_number (foo.blue);
4454 return Flist (3, rgb);
4455 }
4456 else
4457 return Qnil;
4458 }
4459
4460 DEFUN ("xw-display-color-p", Fxw_display_color_p, Sxw_display_color_p, 0, 1, 0,
4461 "Internal function called by `display-color-p', which see.")
4462 (display)
4463 Lisp_Object display;
4464 {
4465 struct x_display_info *dpyinfo = check_x_display_info (display);
4466
4467 if (dpyinfo->n_planes <= 2)
4468 return Qnil;
4469
4470 switch (dpyinfo->visual->class)
4471 {
4472 case StaticColor:
4473 case PseudoColor:
4474 case TrueColor:
4475 case DirectColor:
4476 return Qt;
4477
4478 default:
4479 return Qnil;
4480 }
4481 }
4482
4483 DEFUN ("x-display-grayscale-p", Fx_display_grayscale_p, Sx_display_grayscale_p,
4484 0, 1, 0,
4485 "Return t if the X display supports shades of gray.\n\
4486 Note that color displays do support shades of gray.\n\
4487 The optional argument DISPLAY specifies which display to ask about.\n\
4488 DISPLAY should be either a frame or a display name (a string).\n\
4489 If omitted or nil, that stands for the selected frame's display.")
4490 (display)
4491 Lisp_Object display;
4492 {
4493 struct x_display_info *dpyinfo = check_x_display_info (display);
4494
4495 if (dpyinfo->n_planes <= 1)
4496 return Qnil;
4497
4498 switch (dpyinfo->visual->class)
4499 {
4500 case StaticColor:
4501 case PseudoColor:
4502 case TrueColor:
4503 case DirectColor:
4504 case StaticGray:
4505 case GrayScale:
4506 return Qt;
4507
4508 default:
4509 return Qnil;
4510 }
4511 }
4512
4513 DEFUN ("x-display-pixel-width", Fx_display_pixel_width, Sx_display_pixel_width,
4514 0, 1, 0,
4515 "Returns the width in pixels of the X display DISPLAY.\n\
4516 The optional argument DISPLAY specifies which display to ask about.\n\
4517 DISPLAY should be either a frame or a display name (a string).\n\
4518 If omitted or nil, that stands for the selected frame's display.")
4519 (display)
4520 Lisp_Object display;
4521 {
4522 struct x_display_info *dpyinfo = check_x_display_info (display);
4523
4524 return make_number (dpyinfo->width);
4525 }
4526
4527 DEFUN ("x-display-pixel-height", Fx_display_pixel_height,
4528 Sx_display_pixel_height, 0, 1, 0,
4529 "Returns the height in pixels of the X display DISPLAY.\n\
4530 The optional argument DISPLAY specifies which display to ask about.\n\
4531 DISPLAY should be either a frame or a display name (a string).\n\
4532 If omitted or nil, that stands for the selected frame's display.")
4533 (display)
4534 Lisp_Object display;
4535 {
4536 struct x_display_info *dpyinfo = check_x_display_info (display);
4537
4538 return make_number (dpyinfo->height);
4539 }
4540
4541 DEFUN ("x-display-planes", Fx_display_planes, Sx_display_planes,
4542 0, 1, 0,
4543 "Returns the number of bitplanes of the X display DISPLAY.\n\
4544 The optional argument DISPLAY specifies which display to ask about.\n\
4545 DISPLAY should be either a frame or a display name (a string).\n\
4546 If omitted or nil, that stands for the selected frame's display.")
4547 (display)
4548 Lisp_Object display;
4549 {
4550 struct x_display_info *dpyinfo = check_x_display_info (display);
4551
4552 return make_number (dpyinfo->n_planes);
4553 }
4554
4555 DEFUN ("x-display-color-cells", Fx_display_color_cells, Sx_display_color_cells,
4556 0, 1, 0,
4557 "Returns the number of color cells of the X display DISPLAY.\n\
4558 The optional argument DISPLAY specifies which display to ask about.\n\
4559 DISPLAY should be either a frame or a display name (a string).\n\
4560 If omitted or nil, that stands for the selected frame's display.")
4561 (display)
4562 Lisp_Object display;
4563 {
4564 struct x_display_info *dpyinfo = check_x_display_info (display);
4565
4566 return make_number (DisplayCells (dpyinfo->display,
4567 XScreenNumberOfScreen (dpyinfo->screen)));
4568 }
4569
4570 DEFUN ("x-server-max-request-size", Fx_server_max_request_size,
4571 Sx_server_max_request_size,
4572 0, 1, 0,
4573 "Returns the maximum request size of the X server of display DISPLAY.\n\
4574 The optional argument DISPLAY specifies which display to ask about.\n\
4575 DISPLAY should be either a frame or a display name (a string).\n\
4576 If omitted or nil, that stands for the selected frame's display.")
4577 (display)
4578 Lisp_Object display;
4579 {
4580 struct x_display_info *dpyinfo = check_x_display_info (display);
4581
4582 return make_number (MAXREQUEST (dpyinfo->display));
4583 }
4584
4585 DEFUN ("x-server-vendor", Fx_server_vendor, Sx_server_vendor, 0, 1, 0,
4586 "Returns the vendor ID string of the X server of display DISPLAY.\n\
4587 The optional argument DISPLAY specifies which display to ask about.\n\
4588 DISPLAY should be either a frame or a display name (a string).\n\
4589 If omitted or nil, that stands for the selected frame's display.")
4590 (display)
4591 Lisp_Object display;
4592 {
4593 struct x_display_info *dpyinfo = check_x_display_info (display);
4594 char *vendor = ServerVendor (dpyinfo->display);
4595
4596 if (! vendor) vendor = "";
4597 return build_string (vendor);
4598 }
4599
4600 DEFUN ("x-server-version", Fx_server_version, Sx_server_version, 0, 1, 0,
4601 "Returns the version numbers of the X server of display DISPLAY.\n\
4602 The value is a list of three integers: the major and minor\n\
4603 version numbers of the X Protocol in use, and the vendor-specific release\n\
4604 number. See also the function `x-server-vendor'.\n\n\
4605 The optional argument DISPLAY specifies which display to ask about.\n\
4606 DISPLAY should be either a frame or a display name (a string).\n\
4607 If omitted or nil, that stands for the selected frame's display.")
4608 (display)
4609 Lisp_Object display;
4610 {
4611 struct x_display_info *dpyinfo = check_x_display_info (display);
4612 Display *dpy = dpyinfo->display;
4613
4614 return Fcons (make_number (ProtocolVersion (dpy)),
4615 Fcons (make_number (ProtocolRevision (dpy)),
4616 Fcons (make_number (VendorRelease (dpy)), Qnil)));
4617 }
4618
4619 DEFUN ("x-display-screens", Fx_display_screens, Sx_display_screens, 0, 1, 0,
4620 "Returns the number of screens on the X server of display DISPLAY.\n\
4621 The optional argument DISPLAY specifies which display to ask about.\n\
4622 DISPLAY should be either a frame or a display name (a string).\n\
4623 If omitted or nil, that stands for the selected frame's display.")
4624 (display)
4625 Lisp_Object display;
4626 {
4627 struct x_display_info *dpyinfo = check_x_display_info (display);
4628
4629 return make_number (ScreenCount (dpyinfo->display));
4630 }
4631
4632 DEFUN ("x-display-mm-height", Fx_display_mm_height, Sx_display_mm_height, 0, 1, 0,
4633 "Returns the height in millimeters of the X display DISPLAY.\n\
4634 The optional argument DISPLAY specifies which display to ask about.\n\
4635 DISPLAY should be either a frame or a display name (a string).\n\
4636 If omitted or nil, that stands for the selected frame's display.")
4637 (display)
4638 Lisp_Object display;
4639 {
4640 struct x_display_info *dpyinfo = check_x_display_info (display);
4641
4642 return make_number (HeightMMOfScreen (dpyinfo->screen));
4643 }
4644
4645 DEFUN ("x-display-mm-width", Fx_display_mm_width, Sx_display_mm_width, 0, 1, 0,
4646 "Returns the width in millimeters of the X display DISPLAY.\n\
4647 The optional argument DISPLAY specifies which display to ask about.\n\
4648 DISPLAY should be either a frame or a display name (a string).\n\
4649 If omitted or nil, that stands for the selected frame's display.")
4650 (display)
4651 Lisp_Object display;
4652 {
4653 struct x_display_info *dpyinfo = check_x_display_info (display);
4654
4655 return make_number (WidthMMOfScreen (dpyinfo->screen));
4656 }
4657
4658 DEFUN ("x-display-backing-store", Fx_display_backing_store,
4659 Sx_display_backing_store, 0, 1, 0,
4660 "Returns an indication of whether X display DISPLAY does backing store.\n\
4661 The value may be `always', `when-mapped', or `not-useful'.\n\
4662 The optional argument DISPLAY specifies which display to ask about.\n\
4663 DISPLAY should be either a frame or a display name (a string).\n\
4664 If omitted or nil, that stands for the selected frame's display.")
4665 (display)
4666 Lisp_Object display;
4667 {
4668 struct x_display_info *dpyinfo = check_x_display_info (display);
4669 Lisp_Object result;
4670
4671 switch (DoesBackingStore (dpyinfo->screen))
4672 {
4673 case Always:
4674 result = intern ("always");
4675 break;
4676
4677 case WhenMapped:
4678 result = intern ("when-mapped");
4679 break;
4680
4681 case NotUseful:
4682 result = intern ("not-useful");
4683 break;
4684
4685 default:
4686 error ("Strange value for BackingStore parameter of screen");
4687 result = Qnil;
4688 }
4689
4690 return result;
4691 }
4692
4693 DEFUN ("x-display-visual-class", Fx_display_visual_class,
4694 Sx_display_visual_class, 0, 1, 0,
4695 "Returns the visual class of the X display DISPLAY.\n\
4696 The value is one of the symbols `static-gray', `gray-scale',\n\
4697 `static-color', `pseudo-color', `true-color', or `direct-color'.\n\n\
4698 The optional argument DISPLAY specifies which display to ask about.\n\
4699 DISPLAY should be either a frame or a display name (a string).\n\
4700 If omitted or nil, that stands for the selected frame's display.")
4701 (display)
4702 Lisp_Object display;
4703 {
4704 struct x_display_info *dpyinfo = check_x_display_info (display);
4705 Lisp_Object result;
4706
4707 switch (dpyinfo->visual->class)
4708 {
4709 case StaticGray:
4710 result = intern ("static-gray");
4711 break;
4712 case GrayScale:
4713 result = intern ("gray-scale");
4714 break;
4715 case StaticColor:
4716 result = intern ("static-color");
4717 break;
4718 case PseudoColor:
4719 result = intern ("pseudo-color");
4720 break;
4721 case TrueColor:
4722 result = intern ("true-color");
4723 break;
4724 case DirectColor:
4725 result = intern ("direct-color");
4726 break;
4727 default:
4728 error ("Display has an unknown visual class");
4729 result = Qnil;
4730 }
4731
4732 return result;
4733 }
4734
4735 DEFUN ("x-display-save-under", Fx_display_save_under,
4736 Sx_display_save_under, 0, 1, 0,
4737 "Returns t if the X display DISPLAY supports the save-under feature.\n\
4738 The optional argument DISPLAY specifies which display to ask about.\n\
4739 DISPLAY should be either a frame or a display name (a string).\n\
4740 If omitted or nil, that stands for the selected frame's display.")
4741 (display)
4742 Lisp_Object display;
4743 {
4744 struct x_display_info *dpyinfo = check_x_display_info (display);
4745
4746 if (DoesSaveUnders (dpyinfo->screen) == True)
4747 return Qt;
4748 else
4749 return Qnil;
4750 }
4751 \f
4752 int
4753 x_pixel_width (f)
4754 register struct frame *f;
4755 {
4756 return PIXEL_WIDTH (f);
4757 }
4758
4759 int
4760 x_pixel_height (f)
4761 register struct frame *f;
4762 {
4763 return PIXEL_HEIGHT (f);
4764 }
4765
4766 int
4767 x_char_width (f)
4768 register struct frame *f;
4769 {
4770 return FONT_WIDTH (f->output_data.x->font);
4771 }
4772
4773 int
4774 x_char_height (f)
4775 register struct frame *f;
4776 {
4777 return f->output_data.x->line_height;
4778 }
4779
4780 int
4781 x_screen_planes (f)
4782 register struct frame *f;
4783 {
4784 return FRAME_X_DISPLAY_INFO (f)->n_planes;
4785 }
4786
4787
4788 \f
4789 /************************************************************************
4790 X Displays
4791 ************************************************************************/
4792
4793 \f
4794 /* Mapping visual names to visuals. */
4795
4796 static struct visual_class
4797 {
4798 char *name;
4799 int class;
4800 }
4801 visual_classes[] =
4802 {
4803 {"StaticGray", StaticGray},
4804 {"GrayScale", GrayScale},
4805 {"StaticColor", StaticColor},
4806 {"PseudoColor", PseudoColor},
4807 {"TrueColor", TrueColor},
4808 {"DirectColor", DirectColor},
4809 NULL
4810 };
4811
4812
4813 #ifndef HAVE_XSCREENNUMBEROFSCREEN
4814
4815 /* Value is the screen number of screen SCR. This is a substitute for
4816 the X function with the same name when that doesn't exist. */
4817
4818 int
4819 XScreenNumberOfScreen (scr)
4820 register Screen *scr;
4821 {
4822 Display *dpy = scr->display;
4823 int i;
4824
4825 for (i = 0; i < dpy->nscreens; ++i)
4826 if (scr == dpy->screens[i])
4827 break;
4828
4829 return i;
4830 }
4831
4832 #endif /* not HAVE_XSCREENNUMBEROFSCREEN */
4833
4834
4835 /* Select the visual that should be used on display DPYINFO. Set
4836 members of DPYINFO appropriately. Called from x_term_init. */
4837
4838 void
4839 select_visual (dpyinfo)
4840 struct x_display_info *dpyinfo;
4841 {
4842 Display *dpy = dpyinfo->display;
4843 Screen *screen = dpyinfo->screen;
4844 Lisp_Object value;
4845
4846 /* See if a visual is specified. */
4847 value = display_x_get_resource (dpyinfo,
4848 build_string ("visualClass"),
4849 build_string ("VisualClass"),
4850 Qnil, Qnil);
4851 if (STRINGP (value))
4852 {
4853 /* VALUE should be of the form CLASS-DEPTH, where CLASS is one
4854 of `PseudoColor', `TrueColor' etc. and DEPTH is the color
4855 depth, a decimal number. NAME is compared with case ignored. */
4856 char *s = (char *) alloca (STRING_BYTES (XSTRING (value)) + 1);
4857 char *dash;
4858 int i, class = -1;
4859 XVisualInfo vinfo;
4860
4861 strcpy (s, XSTRING (value)->data);
4862 dash = index (s, '-');
4863 if (dash)
4864 {
4865 dpyinfo->n_planes = atoi (dash + 1);
4866 *dash = '\0';
4867 }
4868 else
4869 /* We won't find a matching visual with depth 0, so that
4870 an error will be printed below. */
4871 dpyinfo->n_planes = 0;
4872
4873 /* Determine the visual class. */
4874 for (i = 0; visual_classes[i].name; ++i)
4875 if (xstricmp (s, visual_classes[i].name) == 0)
4876 {
4877 class = visual_classes[i].class;
4878 break;
4879 }
4880
4881 /* Look up a matching visual for the specified class. */
4882 if (class == -1
4883 || !XMatchVisualInfo (dpy, XScreenNumberOfScreen (screen),
4884 dpyinfo->n_planes, class, &vinfo))
4885 fatal ("Invalid visual specification `%s'", XSTRING (value)->data);
4886
4887 dpyinfo->visual = vinfo.visual;
4888 }
4889 else
4890 {
4891 int n_visuals;
4892 XVisualInfo *vinfo, vinfo_template;
4893
4894 dpyinfo->visual = DefaultVisualOfScreen (screen);
4895
4896 #ifdef HAVE_X11R4
4897 vinfo_template.visualid = XVisualIDFromVisual (dpyinfo->visual);
4898 #else
4899 vinfo_template.visualid = dpyinfo->visual->visualid;
4900 #endif
4901 vinfo_template.screen = XScreenNumberOfScreen (screen);
4902 vinfo = XGetVisualInfo (dpy, VisualIDMask | VisualScreenMask,
4903 &vinfo_template, &n_visuals);
4904 if (n_visuals != 1)
4905 fatal ("Can't get proper X visual info");
4906
4907 dpyinfo->n_planes = vinfo->depth;
4908 XFree ((char *) vinfo);
4909 }
4910 }
4911
4912
4913 /* Return the X display structure for the display named NAME.
4914 Open a new connection if necessary. */
4915
4916 struct x_display_info *
4917 x_display_info_for_name (name)
4918 Lisp_Object name;
4919 {
4920 Lisp_Object names;
4921 struct x_display_info *dpyinfo;
4922
4923 CHECK_STRING (name, 0);
4924
4925 if (! EQ (Vwindow_system, intern ("x")))
4926 error ("Not using X Windows");
4927
4928 for (dpyinfo = x_display_list, names = x_display_name_list;
4929 dpyinfo;
4930 dpyinfo = dpyinfo->next, names = XCDR (names))
4931 {
4932 Lisp_Object tem;
4933 tem = Fstring_equal (XCAR (XCAR (names)), name);
4934 if (!NILP (tem))
4935 return dpyinfo;
4936 }
4937
4938 /* Use this general default value to start with. */
4939 Vx_resource_name = Vinvocation_name;
4940
4941 validate_x_resource_name ();
4942
4943 dpyinfo = x_term_init (name, (unsigned char *)0,
4944 (char *) XSTRING (Vx_resource_name)->data);
4945
4946 if (dpyinfo == 0)
4947 error ("Cannot connect to X server %s", XSTRING (name)->data);
4948
4949 x_in_use = 1;
4950 XSETFASTINT (Vwindow_system_version, 11);
4951
4952 return dpyinfo;
4953 }
4954
4955
4956 DEFUN ("x-open-connection", Fx_open_connection, Sx_open_connection,
4957 1, 3, 0, "Open a connection to an X server.\n\
4958 DISPLAY is the name of the display to connect to.\n\
4959 Optional second arg XRM-STRING is a string of resources in xrdb format.\n\
4960 If the optional third arg MUST-SUCCEED is non-nil,\n\
4961 terminate Emacs if we can't open the connection.")
4962 (display, xrm_string, must_succeed)
4963 Lisp_Object display, xrm_string, must_succeed;
4964 {
4965 unsigned char *xrm_option;
4966 struct x_display_info *dpyinfo;
4967
4968 CHECK_STRING (display, 0);
4969 if (! NILP (xrm_string))
4970 CHECK_STRING (xrm_string, 1);
4971
4972 if (! EQ (Vwindow_system, intern ("x")))
4973 error ("Not using X Windows");
4974
4975 if (! NILP (xrm_string))
4976 xrm_option = (unsigned char *) XSTRING (xrm_string)->data;
4977 else
4978 xrm_option = (unsigned char *) 0;
4979
4980 validate_x_resource_name ();
4981
4982 /* This is what opens the connection and sets x_current_display.
4983 This also initializes many symbols, such as those used for input. */
4984 dpyinfo = x_term_init (display, xrm_option,
4985 (char *) XSTRING (Vx_resource_name)->data);
4986
4987 if (dpyinfo == 0)
4988 {
4989 if (!NILP (must_succeed))
4990 fatal ("Cannot connect to X server %s.\n\
4991 Check the DISPLAY environment variable or use `-d'.\n\
4992 Also use the `xhost' program to verify that it is set to permit\n\
4993 connections from your machine.\n",
4994 XSTRING (display)->data);
4995 else
4996 error ("Cannot connect to X server %s", XSTRING (display)->data);
4997 }
4998
4999 x_in_use = 1;
5000
5001 XSETFASTINT (Vwindow_system_version, 11);
5002 return Qnil;
5003 }
5004
5005 DEFUN ("x-close-connection", Fx_close_connection,
5006 Sx_close_connection, 1, 1, 0,
5007 "Close the connection to DISPLAY's X server.\n\
5008 For DISPLAY, specify either a frame or a display name (a string).\n\
5009 If DISPLAY is nil, that stands for the selected frame's display.")
5010 (display)
5011 Lisp_Object display;
5012 {
5013 struct x_display_info *dpyinfo = check_x_display_info (display);
5014 int i;
5015
5016 if (dpyinfo->reference_count > 0)
5017 error ("Display still has frames on it");
5018
5019 BLOCK_INPUT;
5020 /* Free the fonts in the font table. */
5021 for (i = 0; i < dpyinfo->n_fonts; i++)
5022 if (dpyinfo->font_table[i].name)
5023 {
5024 if (dpyinfo->font_table[i].name != dpyinfo->font_table[i].full_name)
5025 xfree (dpyinfo->font_table[i].full_name);
5026 xfree (dpyinfo->font_table[i].name);
5027 XFreeFont (dpyinfo->display, dpyinfo->font_table[i].font);
5028 }
5029
5030 x_destroy_all_bitmaps (dpyinfo);
5031 XSetCloseDownMode (dpyinfo->display, DestroyAll);
5032
5033 #ifdef USE_X_TOOLKIT
5034 XtCloseDisplay (dpyinfo->display);
5035 #else
5036 XCloseDisplay (dpyinfo->display);
5037 #endif
5038
5039 x_delete_display (dpyinfo);
5040 UNBLOCK_INPUT;
5041
5042 return Qnil;
5043 }
5044
5045 DEFUN ("x-display-list", Fx_display_list, Sx_display_list, 0, 0, 0,
5046 "Return the list of display names that Emacs has connections to.")
5047 ()
5048 {
5049 Lisp_Object tail, result;
5050
5051 result = Qnil;
5052 for (tail = x_display_name_list; ! NILP (tail); tail = XCDR (tail))
5053 result = Fcons (XCAR (XCAR (tail)), result);
5054
5055 return result;
5056 }
5057
5058 DEFUN ("x-synchronize", Fx_synchronize, Sx_synchronize, 1, 2, 0,
5059 "If ON is non-nil, report X errors as soon as the erring request is made.\n\
5060 If ON is nil, allow buffering of requests.\n\
5061 Turning on synchronization prohibits the Xlib routines from buffering\n\
5062 requests and seriously degrades performance, but makes debugging much\n\
5063 easier.\n\
5064 The optional second argument DISPLAY specifies which display to act on.\n\
5065 DISPLAY should be either a frame or a display name (a string).\n\
5066 If DISPLAY is omitted or nil, that stands for the selected frame's display.")
5067 (on, display)
5068 Lisp_Object display, on;
5069 {
5070 struct x_display_info *dpyinfo = check_x_display_info (display);
5071
5072 XSynchronize (dpyinfo->display, !EQ (on, Qnil));
5073
5074 return Qnil;
5075 }
5076
5077 /* Wait for responses to all X commands issued so far for frame F. */
5078
5079 void
5080 x_sync (f)
5081 FRAME_PTR f;
5082 {
5083 BLOCK_INPUT;
5084 XSync (FRAME_X_DISPLAY (f), False);
5085 UNBLOCK_INPUT;
5086 }
5087
5088 \f
5089 /***********************************************************************
5090 Image types
5091 ***********************************************************************/
5092
5093 /* Value is the number of elements of vector VECTOR. */
5094
5095 #define DIM(VECTOR) (sizeof (VECTOR) / sizeof *(VECTOR))
5096
5097 /* List of supported image types. Use define_image_type to add new
5098 types. Use lookup_image_type to find a type for a given symbol. */
5099
5100 static struct image_type *image_types;
5101
5102 /* The symbol `image' which is the car of the lists used to represent
5103 images in Lisp. */
5104
5105 extern Lisp_Object Qimage;
5106
5107 /* The symbol `xbm' which is used as the type symbol for XBM images. */
5108
5109 Lisp_Object Qxbm;
5110
5111 /* Keywords. */
5112
5113 extern Lisp_Object QCwidth, QCheight, QCforeground, QCbackground, QCfile;
5114 extern Lisp_Object QCdata;
5115 Lisp_Object QCtype, QCascent, QCmargin, QCrelief;
5116 Lisp_Object QCalgorithm, QCcolor_symbols, QCheuristic_mask;
5117 Lisp_Object QCindex, QCmatrix, QCcolor_adjustment, QCmask;
5118
5119 /* Other symbols. */
5120
5121 Lisp_Object Qlaplace, Qemboss, Qedge_detection, Qheuristic;
5122
5123 /* Time in seconds after which images should be removed from the cache
5124 if not displayed. */
5125
5126 Lisp_Object Vimage_cache_eviction_delay;
5127
5128 /* Function prototypes. */
5129
5130 static void define_image_type P_ ((struct image_type *type));
5131 static struct image_type *lookup_image_type P_ ((Lisp_Object symbol));
5132 static void image_error P_ ((char *format, Lisp_Object, Lisp_Object));
5133 static void x_laplace P_ ((struct frame *, struct image *));
5134 static void x_emboss P_ ((struct frame *, struct image *));
5135 static int x_build_heuristic_mask P_ ((struct frame *, struct image *,
5136 Lisp_Object));
5137
5138
5139 /* Define a new image type from TYPE. This adds a copy of TYPE to
5140 image_types and adds the symbol *TYPE->type to Vimage_types. */
5141
5142 static void
5143 define_image_type (type)
5144 struct image_type *type;
5145 {
5146 /* Make a copy of TYPE to avoid a bus error in a dumped Emacs.
5147 The initialized data segment is read-only. */
5148 struct image_type *p = (struct image_type *) xmalloc (sizeof *p);
5149 bcopy (type, p, sizeof *p);
5150 p->next = image_types;
5151 image_types = p;
5152 Vimage_types = Fcons (*p->type, Vimage_types);
5153 }
5154
5155
5156 /* Look up image type SYMBOL, and return a pointer to its image_type
5157 structure. Value is null if SYMBOL is not a known image type. */
5158
5159 static INLINE struct image_type *
5160 lookup_image_type (symbol)
5161 Lisp_Object symbol;
5162 {
5163 struct image_type *type;
5164
5165 for (type = image_types; type; type = type->next)
5166 if (EQ (symbol, *type->type))
5167 break;
5168
5169 return type;
5170 }
5171
5172
5173 /* Value is non-zero if OBJECT is a valid Lisp image specification. A
5174 valid image specification is a list whose car is the symbol
5175 `image', and whose rest is a property list. The property list must
5176 contain a value for key `:type'. That value must be the name of a
5177 supported image type. The rest of the property list depends on the
5178 image type. */
5179
5180 int
5181 valid_image_p (object)
5182 Lisp_Object object;
5183 {
5184 int valid_p = 0;
5185
5186 if (CONSP (object) && EQ (XCAR (object), Qimage))
5187 {
5188 Lisp_Object symbol = Fplist_get (XCDR (object), QCtype);
5189 struct image_type *type = lookup_image_type (symbol);
5190
5191 if (type)
5192 valid_p = type->valid_p (object);
5193 }
5194
5195 return valid_p;
5196 }
5197
5198
5199 /* Log error message with format string FORMAT and argument ARG.
5200 Signaling an error, e.g. when an image cannot be loaded, is not a
5201 good idea because this would interrupt redisplay, and the error
5202 message display would lead to another redisplay. This function
5203 therefore simply displays a message. */
5204
5205 static void
5206 image_error (format, arg1, arg2)
5207 char *format;
5208 Lisp_Object arg1, arg2;
5209 {
5210 add_to_log (format, arg1, arg2);
5211 }
5212
5213
5214 \f
5215 /***********************************************************************
5216 Image specifications
5217 ***********************************************************************/
5218
5219 enum image_value_type
5220 {
5221 IMAGE_DONT_CHECK_VALUE_TYPE,
5222 IMAGE_STRING_VALUE,
5223 IMAGE_SYMBOL_VALUE,
5224 IMAGE_POSITIVE_INTEGER_VALUE,
5225 IMAGE_NON_NEGATIVE_INTEGER_VALUE,
5226 IMAGE_ASCENT_VALUE,
5227 IMAGE_INTEGER_VALUE,
5228 IMAGE_FUNCTION_VALUE,
5229 IMAGE_NUMBER_VALUE,
5230 IMAGE_BOOL_VALUE
5231 };
5232
5233 /* Structure used when parsing image specifications. */
5234
5235 struct image_keyword
5236 {
5237 /* Name of keyword. */
5238 char *name;
5239
5240 /* The type of value allowed. */
5241 enum image_value_type type;
5242
5243 /* Non-zero means key must be present. */
5244 int mandatory_p;
5245
5246 /* Used to recognize duplicate keywords in a property list. */
5247 int count;
5248
5249 /* The value that was found. */
5250 Lisp_Object value;
5251 };
5252
5253
5254 static int parse_image_spec P_ ((Lisp_Object, struct image_keyword *,
5255 int, Lisp_Object));
5256 static Lisp_Object image_spec_value P_ ((Lisp_Object, Lisp_Object, int *));
5257
5258
5259 /* Parse image spec SPEC according to KEYWORDS. A valid image spec
5260 has the format (image KEYWORD VALUE ...). One of the keyword/
5261 value pairs must be `:type TYPE'. KEYWORDS is a vector of
5262 image_keywords structures of size NKEYWORDS describing other
5263 allowed keyword/value pairs. Value is non-zero if SPEC is valid. */
5264
5265 static int
5266 parse_image_spec (spec, keywords, nkeywords, type)
5267 Lisp_Object spec;
5268 struct image_keyword *keywords;
5269 int nkeywords;
5270 Lisp_Object type;
5271 {
5272 int i;
5273 Lisp_Object plist;
5274
5275 if (!CONSP (spec) || !EQ (XCAR (spec), Qimage))
5276 return 0;
5277
5278 plist = XCDR (spec);
5279 while (CONSP (plist))
5280 {
5281 Lisp_Object key, value;
5282
5283 /* First element of a pair must be a symbol. */
5284 key = XCAR (plist);
5285 plist = XCDR (plist);
5286 if (!SYMBOLP (key))
5287 return 0;
5288
5289 /* There must follow a value. */
5290 if (!CONSP (plist))
5291 return 0;
5292 value = XCAR (plist);
5293 plist = XCDR (plist);
5294
5295 /* Find key in KEYWORDS. Error if not found. */
5296 for (i = 0; i < nkeywords; ++i)
5297 if (strcmp (keywords[i].name, XSYMBOL (key)->name->data) == 0)
5298 break;
5299
5300 if (i == nkeywords)
5301 continue;
5302
5303 /* Record that we recognized the keyword. If a keywords
5304 was found more than once, it's an error. */
5305 keywords[i].value = value;
5306 ++keywords[i].count;
5307
5308 if (keywords[i].count > 1)
5309 return 0;
5310
5311 /* Check type of value against allowed type. */
5312 switch (keywords[i].type)
5313 {
5314 case IMAGE_STRING_VALUE:
5315 if (!STRINGP (value))
5316 return 0;
5317 break;
5318
5319 case IMAGE_SYMBOL_VALUE:
5320 if (!SYMBOLP (value))
5321 return 0;
5322 break;
5323
5324 case IMAGE_POSITIVE_INTEGER_VALUE:
5325 if (!INTEGERP (value) || XINT (value) <= 0)
5326 return 0;
5327 break;
5328
5329 case IMAGE_ASCENT_VALUE:
5330 if (SYMBOLP (value) && EQ (value, Qcenter))
5331 break;
5332 else if (INTEGERP (value)
5333 && XINT (value) >= 0
5334 && XINT (value) <= 100)
5335 break;
5336 return 0;
5337
5338 case IMAGE_NON_NEGATIVE_INTEGER_VALUE:
5339 if (!INTEGERP (value) || XINT (value) < 0)
5340 return 0;
5341 break;
5342
5343 case IMAGE_DONT_CHECK_VALUE_TYPE:
5344 break;
5345
5346 case IMAGE_FUNCTION_VALUE:
5347 value = indirect_function (value);
5348 if (SUBRP (value)
5349 || COMPILEDP (value)
5350 || (CONSP (value) && EQ (XCAR (value), Qlambda)))
5351 break;
5352 return 0;
5353
5354 case IMAGE_NUMBER_VALUE:
5355 if (!INTEGERP (value) && !FLOATP (value))
5356 return 0;
5357 break;
5358
5359 case IMAGE_INTEGER_VALUE:
5360 if (!INTEGERP (value))
5361 return 0;
5362 break;
5363
5364 case IMAGE_BOOL_VALUE:
5365 if (!NILP (value) && !EQ (value, Qt))
5366 return 0;
5367 break;
5368
5369 default:
5370 abort ();
5371 break;
5372 }
5373
5374 if (EQ (key, QCtype) && !EQ (type, value))
5375 return 0;
5376 }
5377
5378 /* Check that all mandatory fields are present. */
5379 for (i = 0; i < nkeywords; ++i)
5380 if (keywords[i].mandatory_p && keywords[i].count == 0)
5381 return 0;
5382
5383 return NILP (plist);
5384 }
5385
5386
5387 /* Return the value of KEY in image specification SPEC. Value is nil
5388 if KEY is not present in SPEC. if FOUND is not null, set *FOUND
5389 to 1 if KEY was found in SPEC, set it to 0 otherwise. */
5390
5391 static Lisp_Object
5392 image_spec_value (spec, key, found)
5393 Lisp_Object spec, key;
5394 int *found;
5395 {
5396 Lisp_Object tail;
5397
5398 xassert (valid_image_p (spec));
5399
5400 for (tail = XCDR (spec);
5401 CONSP (tail) && CONSP (XCDR (tail));
5402 tail = XCDR (XCDR (tail)))
5403 {
5404 if (EQ (XCAR (tail), key))
5405 {
5406 if (found)
5407 *found = 1;
5408 return XCAR (XCDR (tail));
5409 }
5410 }
5411
5412 if (found)
5413 *found = 0;
5414 return Qnil;
5415 }
5416
5417
5418 DEFUN ("image-size", Fimage_size, Simage_size, 1, 3, 0,
5419 "Return the size of image SPEC as pair (WIDTH . HEIGHT).\n\
5420 PIXELS non-nil means return the size in pixels, otherwise return the\n\
5421 size in canonical character units.\n\
5422 FRAME is the frame on which the image will be displayed. FRAME nil\n\
5423 or omitted means use the selected frame.")
5424 (spec, pixels, frame)
5425 Lisp_Object spec, pixels, frame;
5426 {
5427 Lisp_Object size;
5428
5429 size = Qnil;
5430 if (valid_image_p (spec))
5431 {
5432 struct frame *f = check_x_frame (frame);
5433 int id = lookup_image (f, spec);
5434 struct image *img = IMAGE_FROM_ID (f, id);
5435 int width = img->width + 2 * img->margin;
5436 int height = img->height + 2 * img->margin;
5437
5438 if (NILP (pixels))
5439 size = Fcons (make_float ((double) width / CANON_X_UNIT (f)),
5440 make_float ((double) height / CANON_Y_UNIT (f)));
5441 else
5442 size = Fcons (make_number (width), make_number (height));
5443 }
5444 else
5445 error ("Invalid image specification");
5446
5447 return size;
5448 }
5449
5450
5451 DEFUN ("image-mask-p", Fimage_mask_p, Simage_mask_p, 1, 2, 0,
5452 "Return t if image SPEC has a mask bitmap.\n\
5453 FRAME is the frame on which the image will be displayed. FRAME nil\n\
5454 or omitted means use the selected frame.")
5455 (spec, frame)
5456 Lisp_Object spec, frame;
5457 {
5458 Lisp_Object mask;
5459
5460 mask = Qnil;
5461 if (valid_image_p (spec))
5462 {
5463 struct frame *f = check_x_frame (frame);
5464 int id = lookup_image (f, spec);
5465 struct image *img = IMAGE_FROM_ID (f, id);
5466 if (img->mask)
5467 mask = Qt;
5468 }
5469 else
5470 error ("Invalid image specification");
5471
5472 return mask;
5473 }
5474
5475
5476 \f
5477 /***********************************************************************
5478 Image type independent image structures
5479 ***********************************************************************/
5480
5481 static struct image *make_image P_ ((Lisp_Object spec, unsigned hash));
5482 static void free_image P_ ((struct frame *f, struct image *img));
5483
5484
5485 /* Allocate and return a new image structure for image specification
5486 SPEC. SPEC has a hash value of HASH. */
5487
5488 static struct image *
5489 make_image (spec, hash)
5490 Lisp_Object spec;
5491 unsigned hash;
5492 {
5493 struct image *img = (struct image *) xmalloc (sizeof *img);
5494
5495 xassert (valid_image_p (spec));
5496 bzero (img, sizeof *img);
5497 img->type = lookup_image_type (image_spec_value (spec, QCtype, NULL));
5498 xassert (img->type != NULL);
5499 img->spec = spec;
5500 img->data.lisp_val = Qnil;
5501 img->ascent = DEFAULT_IMAGE_ASCENT;
5502 img->hash = hash;
5503 return img;
5504 }
5505
5506
5507 /* Free image IMG which was used on frame F, including its resources. */
5508
5509 static void
5510 free_image (f, img)
5511 struct frame *f;
5512 struct image *img;
5513 {
5514 if (img)
5515 {
5516 struct image_cache *c = FRAME_X_IMAGE_CACHE (f);
5517
5518 /* Remove IMG from the hash table of its cache. */
5519 if (img->prev)
5520 img->prev->next = img->next;
5521 else
5522 c->buckets[img->hash % IMAGE_CACHE_BUCKETS_SIZE] = img->next;
5523
5524 if (img->next)
5525 img->next->prev = img->prev;
5526
5527 c->images[img->id] = NULL;
5528
5529 /* Free resources, then free IMG. */
5530 img->type->free (f, img);
5531 xfree (img);
5532 }
5533 }
5534
5535
5536 /* Prepare image IMG for display on frame F. Must be called before
5537 drawing an image. */
5538
5539 void
5540 prepare_image_for_display (f, img)
5541 struct frame *f;
5542 struct image *img;
5543 {
5544 EMACS_TIME t;
5545
5546 /* We're about to display IMG, so set its timestamp to `now'. */
5547 EMACS_GET_TIME (t);
5548 img->timestamp = EMACS_SECS (t);
5549
5550 /* If IMG doesn't have a pixmap yet, load it now, using the image
5551 type dependent loader function. */
5552 if (img->pixmap == None && !img->load_failed_p)
5553 img->load_failed_p = img->type->load (f, img) == 0;
5554 }
5555
5556
5557 /* Value is the number of pixels for the ascent of image IMG when
5558 drawn in face FACE. */
5559
5560 int
5561 image_ascent (img, face)
5562 struct image *img;
5563 struct face *face;
5564 {
5565 int height = img->height + img->margin;
5566 int ascent;
5567
5568 if (img->ascent == CENTERED_IMAGE_ASCENT)
5569 {
5570 if (face->font)
5571 /* This expression is arranged so that if the image can't be
5572 exactly centered, it will be moved slightly up. This is
5573 because a typical font is `top-heavy' (due to the presence
5574 uppercase letters), so the image placement should err towards
5575 being top-heavy too. It also just generally looks better. */
5576 ascent = (height + face->font->ascent - face->font->descent + 1) / 2;
5577 else
5578 ascent = height / 2;
5579 }
5580 else
5581 ascent = height * img->ascent / 100.0;
5582
5583 return ascent;
5584 }
5585
5586
5587 \f
5588 /***********************************************************************
5589 Helper functions for X image types
5590 ***********************************************************************/
5591
5592 static void x_clear_image_1 P_ ((struct frame *, struct image *, int,
5593 int, int));
5594 static void x_clear_image P_ ((struct frame *f, struct image *img));
5595 static unsigned long x_alloc_image_color P_ ((struct frame *f,
5596 struct image *img,
5597 Lisp_Object color_name,
5598 unsigned long dflt));
5599
5600
5601 /* Clear X resources of image IMG on frame F. PIXMAP_P non-zero means
5602 free the pixmap if any. MASK_P non-zero means clear the mask
5603 pixmap if any. COLORS_P non-zero means free colors allocated for
5604 the image, if any. */
5605
5606 static void
5607 x_clear_image_1 (f, img, pixmap_p, mask_p, colors_p)
5608 struct frame *f;
5609 struct image *img;
5610 int pixmap_p, mask_p, colors_p;
5611 {
5612 if (pixmap_p && img->pixmap)
5613 {
5614 XFreePixmap (FRAME_X_DISPLAY (f), img->pixmap);
5615 img->pixmap = None;
5616 }
5617
5618 if (mask_p && img->mask)
5619 {
5620 XFreePixmap (FRAME_X_DISPLAY (f), img->mask);
5621 img->mask = None;
5622 }
5623
5624 if (colors_p && img->ncolors)
5625 {
5626 x_free_colors (f, img->colors, img->ncolors);
5627 xfree (img->colors);
5628 img->colors = NULL;
5629 img->ncolors = 0;
5630 }
5631 }
5632
5633 /* Free X resources of image IMG which is used on frame F. */
5634
5635 static void
5636 x_clear_image (f, img)
5637 struct frame *f;
5638 struct image *img;
5639 {
5640 BLOCK_INPUT;
5641 x_clear_image_1 (f, img, 1, 1, 1);
5642 UNBLOCK_INPUT;
5643 }
5644
5645
5646 /* Allocate color COLOR_NAME for image IMG on frame F. If color
5647 cannot be allocated, use DFLT. Add a newly allocated color to
5648 IMG->colors, so that it can be freed again. Value is the pixel
5649 color. */
5650
5651 static unsigned long
5652 x_alloc_image_color (f, img, color_name, dflt)
5653 struct frame *f;
5654 struct image *img;
5655 Lisp_Object color_name;
5656 unsigned long dflt;
5657 {
5658 XColor color;
5659 unsigned long result;
5660
5661 xassert (STRINGP (color_name));
5662
5663 if (x_defined_color (f, XSTRING (color_name)->data, &color, 1))
5664 {
5665 /* This isn't called frequently so we get away with simply
5666 reallocating the color vector to the needed size, here. */
5667 ++img->ncolors;
5668 img->colors =
5669 (unsigned long *) xrealloc (img->colors,
5670 img->ncolors * sizeof *img->colors);
5671 img->colors[img->ncolors - 1] = color.pixel;
5672 result = color.pixel;
5673 }
5674 else
5675 result = dflt;
5676
5677 return result;
5678 }
5679
5680
5681 \f
5682 /***********************************************************************
5683 Image Cache
5684 ***********************************************************************/
5685
5686 static void cache_image P_ ((struct frame *f, struct image *img));
5687
5688
5689 /* Return a new, initialized image cache that is allocated from the
5690 heap. Call free_image_cache to free an image cache. */
5691
5692 struct image_cache *
5693 make_image_cache ()
5694 {
5695 struct image_cache *c = (struct image_cache *) xmalloc (sizeof *c);
5696 int size;
5697
5698 bzero (c, sizeof *c);
5699 c->size = 50;
5700 c->images = (struct image **) xmalloc (c->size * sizeof *c->images);
5701 size = IMAGE_CACHE_BUCKETS_SIZE * sizeof *c->buckets;
5702 c->buckets = (struct image **) xmalloc (size);
5703 bzero (c->buckets, size);
5704 return c;
5705 }
5706
5707
5708 /* Free image cache of frame F. Be aware that X frames share images
5709 caches. */
5710
5711 void
5712 free_image_cache (f)
5713 struct frame *f;
5714 {
5715 struct image_cache *c = FRAME_X_IMAGE_CACHE (f);
5716 if (c)
5717 {
5718 int i;
5719
5720 /* Cache should not be referenced by any frame when freed. */
5721 xassert (c->refcount == 0);
5722
5723 for (i = 0; i < c->used; ++i)
5724 free_image (f, c->images[i]);
5725 xfree (c->images);
5726 xfree (c->buckets);
5727 xfree (c);
5728 FRAME_X_IMAGE_CACHE (f) = NULL;
5729 }
5730 }
5731
5732
5733 /* Clear image cache of frame F. FORCE_P non-zero means free all
5734 images. FORCE_P zero means clear only images that haven't been
5735 displayed for some time. Should be called from time to time to
5736 reduce the number of loaded images. If image-eviction-seconds is
5737 non-nil, this frees images in the cache which weren't displayed for
5738 at least that many seconds. */
5739
5740 void
5741 clear_image_cache (f, force_p)
5742 struct frame *f;
5743 int force_p;
5744 {
5745 struct image_cache *c = FRAME_X_IMAGE_CACHE (f);
5746
5747 if (c && INTEGERP (Vimage_cache_eviction_delay))
5748 {
5749 EMACS_TIME t;
5750 unsigned long old;
5751 int i, nfreed;
5752
5753 EMACS_GET_TIME (t);
5754 old = EMACS_SECS (t) - XFASTINT (Vimage_cache_eviction_delay);
5755
5756 /* Block input so that we won't be interrupted by a SIGIO
5757 while being in an inconsistent state. */
5758 BLOCK_INPUT;
5759
5760 for (i = nfreed = 0; i < c->used; ++i)
5761 {
5762 struct image *img = c->images[i];
5763 if (img != NULL
5764 && (force_p || img->timestamp < old))
5765 {
5766 free_image (f, img);
5767 ++nfreed;
5768 }
5769 }
5770
5771 /* We may be clearing the image cache because, for example,
5772 Emacs was iconified for a longer period of time. In that
5773 case, current matrices may still contain references to
5774 images freed above. So, clear these matrices. */
5775 if (nfreed)
5776 {
5777 Lisp_Object tail, frame;
5778
5779 FOR_EACH_FRAME (tail, frame)
5780 {
5781 struct frame *f = XFRAME (frame);
5782 if (FRAME_X_P (f)
5783 && FRAME_X_IMAGE_CACHE (f) == c)
5784 clear_current_matrices (f);
5785 }
5786
5787 ++windows_or_buffers_changed;
5788 }
5789
5790 UNBLOCK_INPUT;
5791 }
5792 }
5793
5794
5795 DEFUN ("clear-image-cache", Fclear_image_cache, Sclear_image_cache,
5796 0, 1, 0,
5797 "Clear the image cache of FRAME.\n\
5798 FRAME nil or omitted means use the selected frame.\n\
5799 FRAME t means clear the image caches of all frames.")
5800 (frame)
5801 Lisp_Object frame;
5802 {
5803 if (EQ (frame, Qt))
5804 {
5805 Lisp_Object tail;
5806
5807 FOR_EACH_FRAME (tail, frame)
5808 if (FRAME_X_P (XFRAME (frame)))
5809 clear_image_cache (XFRAME (frame), 1);
5810 }
5811 else
5812 clear_image_cache (check_x_frame (frame), 1);
5813
5814 return Qnil;
5815 }
5816
5817
5818 /* Return the id of image with Lisp specification SPEC on frame F.
5819 SPEC must be a valid Lisp image specification (see valid_image_p). */
5820
5821 int
5822 lookup_image (f, spec)
5823 struct frame *f;
5824 Lisp_Object spec;
5825 {
5826 struct image_cache *c = FRAME_X_IMAGE_CACHE (f);
5827 struct image *img;
5828 int i;
5829 unsigned hash;
5830 struct gcpro gcpro1;
5831 EMACS_TIME now;
5832
5833 /* F must be a window-system frame, and SPEC must be a valid image
5834 specification. */
5835 xassert (FRAME_WINDOW_P (f));
5836 xassert (valid_image_p (spec));
5837
5838 GCPRO1 (spec);
5839
5840 /* Look up SPEC in the hash table of the image cache. */
5841 hash = sxhash (spec, 0);
5842 i = hash % IMAGE_CACHE_BUCKETS_SIZE;
5843
5844 for (img = c->buckets[i]; img; img = img->next)
5845 if (img->hash == hash && !NILP (Fequal (img->spec, spec)))
5846 break;
5847
5848 /* If not found, create a new image and cache it. */
5849 if (img == NULL)
5850 {
5851 BLOCK_INPUT;
5852 img = make_image (spec, hash);
5853 cache_image (f, img);
5854 img->load_failed_p = img->type->load (f, img) == 0;
5855
5856 /* If we can't load the image, and we don't have a width and
5857 height, use some arbitrary width and height so that we can
5858 draw a rectangle for it. */
5859 if (img->load_failed_p)
5860 {
5861 Lisp_Object value;
5862
5863 value = image_spec_value (spec, QCwidth, NULL);
5864 img->width = (INTEGERP (value)
5865 ? XFASTINT (value) : DEFAULT_IMAGE_WIDTH);
5866 value = image_spec_value (spec, QCheight, NULL);
5867 img->height = (INTEGERP (value)
5868 ? XFASTINT (value) : DEFAULT_IMAGE_HEIGHT);
5869 }
5870 else
5871 {
5872 /* Handle image type independent image attributes
5873 `:ascent ASCENT', `:margin MARGIN', `:relief RELIEF'. */
5874 Lisp_Object ascent, margin, relief;
5875 Lisp_Object file;
5876
5877 ascent = image_spec_value (spec, QCascent, NULL);
5878 if (INTEGERP (ascent))
5879 img->ascent = XFASTINT (ascent);
5880 else if (EQ (ascent, Qcenter))
5881 img->ascent = CENTERED_IMAGE_ASCENT;
5882
5883 margin = image_spec_value (spec, QCmargin, NULL);
5884 if (INTEGERP (margin) && XINT (margin) >= 0)
5885 img->margin = XFASTINT (margin);
5886
5887 relief = image_spec_value (spec, QCrelief, NULL);
5888 if (INTEGERP (relief))
5889 {
5890 img->relief = XINT (relief);
5891 img->margin += abs (img->relief);
5892 }
5893
5894 /* Manipulation of the image's mask. */
5895 if (img->pixmap)
5896 {
5897 /* `:heuristic-mask t'
5898 `:mask heuristic'
5899 means build a mask heuristically.
5900 `:heuristic-mask (R G B)'
5901 `:mask (heuristic (R G B))'
5902 means build a mask from color (R G B) in the
5903 image.
5904 `:mask nil'
5905 means remove a mask, if any. */
5906
5907 Lisp_Object mask;
5908
5909 mask = image_spec_value (spec, QCheuristic_mask, NULL);
5910 if (!NILP (mask))
5911 x_build_heuristic_mask (f, img, mask);
5912 else
5913 {
5914 int found_p;
5915
5916 mask = image_spec_value (spec, QCmask, &found_p);
5917
5918 if (EQ (mask, Qheuristic))
5919 x_build_heuristic_mask (f, img, Qt);
5920 else if (CONSP (mask)
5921 && EQ (XCAR (mask), Qheuristic))
5922 {
5923 if (CONSP (XCDR (mask)))
5924 x_build_heuristic_mask (f, img, XCAR (XCDR (mask)));
5925 else
5926 x_build_heuristic_mask (f, img, XCDR (mask));
5927 }
5928 else if (NILP (mask) && found_p && img->mask)
5929 {
5930 XFreePixmap (FRAME_X_DISPLAY (f), img->mask);
5931 img->mask = None;
5932 }
5933 }
5934 }
5935
5936 /* Should we apply an image transformation algorithm? */
5937 if (img->pixmap)
5938 {
5939 Lisp_Object algorithm;
5940
5941 algorithm = image_spec_value (spec, QCalgorithm, NULL);
5942 if (EQ (algorithm, Qdisabled))
5943 x_disable_image (f, img);
5944 else if (EQ (algorithm, Qlaplace))
5945 x_laplace (f, img);
5946 else if (EQ (algorithm, Qemboss))
5947 x_emboss (f, img);
5948 else if (CONSP (algorithm)
5949 && EQ (XCAR (algorithm), Qedge_detection))
5950 {
5951 Lisp_Object tem;
5952 tem = XCDR (algorithm);
5953 if (CONSP (tem))
5954 x_edge_detection (f, img,
5955 Fplist_get (tem, QCmatrix),
5956 Fplist_get (tem, QCcolor_adjustment));
5957 }
5958 }
5959 }
5960
5961 UNBLOCK_INPUT;
5962 xassert (!interrupt_input_blocked);
5963 }
5964
5965 /* We're using IMG, so set its timestamp to `now'. */
5966 EMACS_GET_TIME (now);
5967 img->timestamp = EMACS_SECS (now);
5968
5969 UNGCPRO;
5970
5971 /* Value is the image id. */
5972 return img->id;
5973 }
5974
5975
5976 /* Cache image IMG in the image cache of frame F. */
5977
5978 static void
5979 cache_image (f, img)
5980 struct frame *f;
5981 struct image *img;
5982 {
5983 struct image_cache *c = FRAME_X_IMAGE_CACHE (f);
5984 int i;
5985
5986 /* Find a free slot in c->images. */
5987 for (i = 0; i < c->used; ++i)
5988 if (c->images[i] == NULL)
5989 break;
5990
5991 /* If no free slot found, maybe enlarge c->images. */
5992 if (i == c->used && c->used == c->size)
5993 {
5994 c->size *= 2;
5995 c->images = (struct image **) xrealloc (c->images,
5996 c->size * sizeof *c->images);
5997 }
5998
5999 /* Add IMG to c->images, and assign IMG an id. */
6000 c->images[i] = img;
6001 img->id = i;
6002 if (i == c->used)
6003 ++c->used;
6004
6005 /* Add IMG to the cache's hash table. */
6006 i = img->hash % IMAGE_CACHE_BUCKETS_SIZE;
6007 img->next = c->buckets[i];
6008 if (img->next)
6009 img->next->prev = img;
6010 img->prev = NULL;
6011 c->buckets[i] = img;
6012 }
6013
6014
6015 /* Call FN on every image in the image cache of frame F. Used to mark
6016 Lisp Objects in the image cache. */
6017
6018 void
6019 forall_images_in_image_cache (f, fn)
6020 struct frame *f;
6021 void (*fn) P_ ((struct image *img));
6022 {
6023 if (FRAME_LIVE_P (f) && FRAME_X_P (f))
6024 {
6025 struct image_cache *c = FRAME_X_IMAGE_CACHE (f);
6026 if (c)
6027 {
6028 int i;
6029 for (i = 0; i < c->used; ++i)
6030 if (c->images[i])
6031 fn (c->images[i]);
6032 }
6033 }
6034 }
6035
6036
6037 \f
6038 /***********************************************************************
6039 X support code
6040 ***********************************************************************/
6041
6042 static int x_create_x_image_and_pixmap P_ ((struct frame *, int, int, int,
6043 XImage **, Pixmap *));
6044 static void x_destroy_x_image P_ ((XImage *));
6045 static void x_put_x_image P_ ((struct frame *, XImage *, Pixmap, int, int));
6046
6047
6048 /* Create an XImage and a pixmap of size WIDTH x HEIGHT for use on
6049 frame F. Set *XIMG and *PIXMAP to the XImage and Pixmap created.
6050 Set (*XIMG)->data to a raster of WIDTH x HEIGHT pixels allocated
6051 via xmalloc. Print error messages via image_error if an error
6052 occurs. Value is non-zero if successful. */
6053
6054 static int
6055 x_create_x_image_and_pixmap (f, width, height, depth, ximg, pixmap)
6056 struct frame *f;
6057 int width, height, depth;
6058 XImage **ximg;
6059 Pixmap *pixmap;
6060 {
6061 Display *display = FRAME_X_DISPLAY (f);
6062 Screen *screen = FRAME_X_SCREEN (f);
6063 Window window = FRAME_X_WINDOW (f);
6064
6065 xassert (interrupt_input_blocked);
6066
6067 if (depth <= 0)
6068 depth = DefaultDepthOfScreen (screen);
6069 *ximg = XCreateImage (display, DefaultVisualOfScreen (screen),
6070 depth, ZPixmap, 0, NULL, width, height,
6071 depth > 16 ? 32 : depth > 8 ? 16 : 8, 0);
6072 if (*ximg == NULL)
6073 {
6074 image_error ("Unable to allocate X image", Qnil, Qnil);
6075 return 0;
6076 }
6077
6078 /* Allocate image raster. */
6079 (*ximg)->data = (char *) xmalloc ((*ximg)->bytes_per_line * height);
6080
6081 /* Allocate a pixmap of the same size. */
6082 *pixmap = XCreatePixmap (display, window, width, height, depth);
6083 if (*pixmap == None)
6084 {
6085 x_destroy_x_image (*ximg);
6086 *ximg = NULL;
6087 image_error ("Unable to create X pixmap", Qnil, Qnil);
6088 return 0;
6089 }
6090
6091 return 1;
6092 }
6093
6094
6095 /* Destroy XImage XIMG. Free XIMG->data. */
6096
6097 static void
6098 x_destroy_x_image (ximg)
6099 XImage *ximg;
6100 {
6101 xassert (interrupt_input_blocked);
6102 if (ximg)
6103 {
6104 xfree (ximg->data);
6105 ximg->data = NULL;
6106 XDestroyImage (ximg);
6107 }
6108 }
6109
6110
6111 /* Put XImage XIMG into pixmap PIXMAP on frame F. WIDTH and HEIGHT
6112 are width and height of both the image and pixmap. */
6113
6114 static void
6115 x_put_x_image (f, ximg, pixmap, width, height)
6116 struct frame *f;
6117 XImage *ximg;
6118 Pixmap pixmap;
6119 {
6120 GC gc;
6121
6122 xassert (interrupt_input_blocked);
6123 gc = XCreateGC (FRAME_X_DISPLAY (f), pixmap, 0, NULL);
6124 XPutImage (FRAME_X_DISPLAY (f), pixmap, gc, ximg, 0, 0, 0, 0, width, height);
6125 XFreeGC (FRAME_X_DISPLAY (f), gc);
6126 }
6127
6128
6129 \f
6130 /***********************************************************************
6131 File Handling
6132 ***********************************************************************/
6133
6134 static Lisp_Object x_find_image_file P_ ((Lisp_Object));
6135 static char *slurp_file P_ ((char *, int *));
6136
6137
6138 /* Find image file FILE. Look in data-directory, then
6139 x-bitmap-file-path. Value is the full name of the file found, or
6140 nil if not found. */
6141
6142 static Lisp_Object
6143 x_find_image_file (file)
6144 Lisp_Object file;
6145 {
6146 Lisp_Object file_found, search_path;
6147 struct gcpro gcpro1, gcpro2;
6148 int fd;
6149
6150 file_found = Qnil;
6151 search_path = Fcons (Vdata_directory, Vx_bitmap_file_path);
6152 GCPRO2 (file_found, search_path);
6153
6154 /* Try to find FILE in data-directory, then x-bitmap-file-path. */
6155 fd = openp (search_path, file, "", &file_found, 0);
6156
6157 if (fd == -1)
6158 file_found = Qnil;
6159 else
6160 close (fd);
6161
6162 UNGCPRO;
6163 return file_found;
6164 }
6165
6166
6167 /* Read FILE into memory. Value is a pointer to a buffer allocated
6168 with xmalloc holding FILE's contents. Value is null if an error
6169 occurred. *SIZE is set to the size of the file. */
6170
6171 static char *
6172 slurp_file (file, size)
6173 char *file;
6174 int *size;
6175 {
6176 FILE *fp = NULL;
6177 char *buf = NULL;
6178 struct stat st;
6179
6180 if (stat (file, &st) == 0
6181 && (fp = fopen (file, "r")) != NULL
6182 && (buf = (char *) xmalloc (st.st_size),
6183 fread (buf, 1, st.st_size, fp) == st.st_size))
6184 {
6185 *size = st.st_size;
6186 fclose (fp);
6187 }
6188 else
6189 {
6190 if (fp)
6191 fclose (fp);
6192 if (buf)
6193 {
6194 xfree (buf);
6195 buf = NULL;
6196 }
6197 }
6198
6199 return buf;
6200 }
6201
6202
6203 \f
6204 /***********************************************************************
6205 XBM images
6206 ***********************************************************************/
6207
6208 static int xbm_scan P_ ((char **, char *, char *, int *));
6209 static int xbm_load P_ ((struct frame *f, struct image *img));
6210 static int xbm_load_image P_ ((struct frame *f, struct image *img,
6211 char *, char *));
6212 static int xbm_image_p P_ ((Lisp_Object object));
6213 static int xbm_read_bitmap_data P_ ((char *, char *, int *, int *,
6214 unsigned char **));
6215 static int xbm_file_p P_ ((Lisp_Object));
6216
6217
6218 /* Indices of image specification fields in xbm_format, below. */
6219
6220 enum xbm_keyword_index
6221 {
6222 XBM_TYPE,
6223 XBM_FILE,
6224 XBM_WIDTH,
6225 XBM_HEIGHT,
6226 XBM_DATA,
6227 XBM_FOREGROUND,
6228 XBM_BACKGROUND,
6229 XBM_ASCENT,
6230 XBM_MARGIN,
6231 XBM_RELIEF,
6232 XBM_ALGORITHM,
6233 XBM_HEURISTIC_MASK,
6234 XBM_MASK,
6235 XBM_LAST
6236 };
6237
6238 /* Vector of image_keyword structures describing the format
6239 of valid XBM image specifications. */
6240
6241 static struct image_keyword xbm_format[XBM_LAST] =
6242 {
6243 {":type", IMAGE_SYMBOL_VALUE, 1},
6244 {":file", IMAGE_STRING_VALUE, 0},
6245 {":width", IMAGE_POSITIVE_INTEGER_VALUE, 0},
6246 {":height", IMAGE_POSITIVE_INTEGER_VALUE, 0},
6247 {":data", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
6248 {":foreground", IMAGE_STRING_VALUE, 0},
6249 {":background", IMAGE_STRING_VALUE, 0},
6250 {":ascent", IMAGE_ASCENT_VALUE, 0},
6251 {":margin", IMAGE_POSITIVE_INTEGER_VALUE, 0},
6252 {":relief", IMAGE_INTEGER_VALUE, 0},
6253 {":algorithm", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
6254 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
6255 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0}
6256 };
6257
6258 /* Structure describing the image type XBM. */
6259
6260 static struct image_type xbm_type =
6261 {
6262 &Qxbm,
6263 xbm_image_p,
6264 xbm_load,
6265 x_clear_image,
6266 NULL
6267 };
6268
6269 /* Tokens returned from xbm_scan. */
6270
6271 enum xbm_token
6272 {
6273 XBM_TK_IDENT = 256,
6274 XBM_TK_NUMBER
6275 };
6276
6277
6278 /* Return non-zero if OBJECT is a valid XBM-type image specification.
6279 A valid specification is a list starting with the symbol `image'
6280 The rest of the list is a property list which must contain an
6281 entry `:type xbm..
6282
6283 If the specification specifies a file to load, it must contain
6284 an entry `:file FILENAME' where FILENAME is a string.
6285
6286 If the specification is for a bitmap loaded from memory it must
6287 contain `:width WIDTH', `:height HEIGHT', and `:data DATA', where
6288 WIDTH and HEIGHT are integers > 0. DATA may be:
6289
6290 1. a string large enough to hold the bitmap data, i.e. it must
6291 have a size >= (WIDTH + 7) / 8 * HEIGHT
6292
6293 2. a bool-vector of size >= WIDTH * HEIGHT
6294
6295 3. a vector of strings or bool-vectors, one for each line of the
6296 bitmap.
6297
6298 4. A string containing an in-memory XBM file. WIDTH and HEIGHT
6299 may not be specified in this case because they are defined in the
6300 XBM file.
6301
6302 Both the file and data forms may contain the additional entries
6303 `:background COLOR' and `:foreground COLOR'. If not present,
6304 foreground and background of the frame on which the image is
6305 displayed is used. */
6306
6307 static int
6308 xbm_image_p (object)
6309 Lisp_Object object;
6310 {
6311 struct image_keyword kw[XBM_LAST];
6312
6313 bcopy (xbm_format, kw, sizeof kw);
6314 if (!parse_image_spec (object, kw, XBM_LAST, Qxbm))
6315 return 0;
6316
6317 xassert (EQ (kw[XBM_TYPE].value, Qxbm));
6318
6319 if (kw[XBM_FILE].count)
6320 {
6321 if (kw[XBM_WIDTH].count || kw[XBM_HEIGHT].count || kw[XBM_DATA].count)
6322 return 0;
6323 }
6324 else if (kw[XBM_DATA].count && xbm_file_p (kw[XBM_DATA].value))
6325 {
6326 /* In-memory XBM file. */
6327 if (kw[XBM_WIDTH].count || kw[XBM_HEIGHT].count || kw[XBM_FILE].count)
6328 return 0;
6329 }
6330 else
6331 {
6332 Lisp_Object data;
6333 int width, height;
6334
6335 /* Entries for `:width', `:height' and `:data' must be present. */
6336 if (!kw[XBM_WIDTH].count
6337 || !kw[XBM_HEIGHT].count
6338 || !kw[XBM_DATA].count)
6339 return 0;
6340
6341 data = kw[XBM_DATA].value;
6342 width = XFASTINT (kw[XBM_WIDTH].value);
6343 height = XFASTINT (kw[XBM_HEIGHT].value);
6344
6345 /* Check type of data, and width and height against contents of
6346 data. */
6347 if (VECTORP (data))
6348 {
6349 int i;
6350
6351 /* Number of elements of the vector must be >= height. */
6352 if (XVECTOR (data)->size < height)
6353 return 0;
6354
6355 /* Each string or bool-vector in data must be large enough
6356 for one line of the image. */
6357 for (i = 0; i < height; ++i)
6358 {
6359 Lisp_Object elt = XVECTOR (data)->contents[i];
6360
6361 if (STRINGP (elt))
6362 {
6363 if (XSTRING (elt)->size
6364 < (width + BITS_PER_CHAR - 1) / BITS_PER_CHAR)
6365 return 0;
6366 }
6367 else if (BOOL_VECTOR_P (elt))
6368 {
6369 if (XBOOL_VECTOR (elt)->size < width)
6370 return 0;
6371 }
6372 else
6373 return 0;
6374 }
6375 }
6376 else if (STRINGP (data))
6377 {
6378 if (XSTRING (data)->size
6379 < (width + BITS_PER_CHAR - 1) / BITS_PER_CHAR * height)
6380 return 0;
6381 }
6382 else if (BOOL_VECTOR_P (data))
6383 {
6384 if (XBOOL_VECTOR (data)->size < width * height)
6385 return 0;
6386 }
6387 else
6388 return 0;
6389 }
6390
6391 return 1;
6392 }
6393
6394
6395 /* Scan a bitmap file. FP is the stream to read from. Value is
6396 either an enumerator from enum xbm_token, or a character for a
6397 single-character token, or 0 at end of file. If scanning an
6398 identifier, store the lexeme of the identifier in SVAL. If
6399 scanning a number, store its value in *IVAL. */
6400
6401 static int
6402 xbm_scan (s, end, sval, ival)
6403 char **s, *end;
6404 char *sval;
6405 int *ival;
6406 {
6407 int c;
6408
6409 loop:
6410
6411 /* Skip white space. */
6412 while (*s < end && (c = *(*s)++, isspace (c)))
6413 ;
6414
6415 if (*s >= end)
6416 c = 0;
6417 else if (isdigit (c))
6418 {
6419 int value = 0, digit;
6420
6421 if (c == '0' && *s < end)
6422 {
6423 c = *(*s)++;
6424 if (c == 'x' || c == 'X')
6425 {
6426 while (*s < end)
6427 {
6428 c = *(*s)++;
6429 if (isdigit (c))
6430 digit = c - '0';
6431 else if (c >= 'a' && c <= 'f')
6432 digit = c - 'a' + 10;
6433 else if (c >= 'A' && c <= 'F')
6434 digit = c - 'A' + 10;
6435 else
6436 break;
6437 value = 16 * value + digit;
6438 }
6439 }
6440 else if (isdigit (c))
6441 {
6442 value = c - '0';
6443 while (*s < end
6444 && (c = *(*s)++, isdigit (c)))
6445 value = 8 * value + c - '0';
6446 }
6447 }
6448 else
6449 {
6450 value = c - '0';
6451 while (*s < end
6452 && (c = *(*s)++, isdigit (c)))
6453 value = 10 * value + c - '0';
6454 }
6455
6456 if (*s < end)
6457 *s = *s - 1;
6458 *ival = value;
6459 c = XBM_TK_NUMBER;
6460 }
6461 else if (isalpha (c) || c == '_')
6462 {
6463 *sval++ = c;
6464 while (*s < end
6465 && (c = *(*s)++, (isalnum (c) || c == '_')))
6466 *sval++ = c;
6467 *sval = 0;
6468 if (*s < end)
6469 *s = *s - 1;
6470 c = XBM_TK_IDENT;
6471 }
6472 else if (c == '/' && **s == '*')
6473 {
6474 /* C-style comment. */
6475 ++*s;
6476 while (**s && (**s != '*' || *(*s + 1) != '/'))
6477 ++*s;
6478 if (**s)
6479 {
6480 *s += 2;
6481 goto loop;
6482 }
6483 }
6484
6485 return c;
6486 }
6487
6488
6489 /* Replacement for XReadBitmapFileData which isn't available under old
6490 X versions. CONTENTS is a pointer to a buffer to parse; END is the
6491 buffer's end. Set *WIDTH and *HEIGHT to the width and height of
6492 the image. Return in *DATA the bitmap data allocated with xmalloc.
6493 Value is non-zero if successful. DATA null means just test if
6494 CONTENTS looks like an in-memory XBM file. */
6495
6496 static int
6497 xbm_read_bitmap_data (contents, end, width, height, data)
6498 char *contents, *end;
6499 int *width, *height;
6500 unsigned char **data;
6501 {
6502 char *s = contents;
6503 char buffer[BUFSIZ];
6504 int padding_p = 0;
6505 int v10 = 0;
6506 int bytes_per_line, i, nbytes;
6507 unsigned char *p;
6508 int value;
6509 int LA1;
6510
6511 #define match() \
6512 LA1 = xbm_scan (&s, end, buffer, &value)
6513
6514 #define expect(TOKEN) \
6515 if (LA1 != (TOKEN)) \
6516 goto failure; \
6517 else \
6518 match ()
6519
6520 #define expect_ident(IDENT) \
6521 if (LA1 == XBM_TK_IDENT && strcmp (buffer, (IDENT)) == 0) \
6522 match (); \
6523 else \
6524 goto failure
6525
6526 *width = *height = -1;
6527 if (data)
6528 *data = NULL;
6529 LA1 = xbm_scan (&s, end, buffer, &value);
6530
6531 /* Parse defines for width, height and hot-spots. */
6532 while (LA1 == '#')
6533 {
6534 match ();
6535 expect_ident ("define");
6536 expect (XBM_TK_IDENT);
6537
6538 if (LA1 == XBM_TK_NUMBER);
6539 {
6540 char *p = strrchr (buffer, '_');
6541 p = p ? p + 1 : buffer;
6542 if (strcmp (p, "width") == 0)
6543 *width = value;
6544 else if (strcmp (p, "height") == 0)
6545 *height = value;
6546 }
6547 expect (XBM_TK_NUMBER);
6548 }
6549
6550 if (*width < 0 || *height < 0)
6551 goto failure;
6552 else if (data == NULL)
6553 goto success;
6554
6555 /* Parse bits. Must start with `static'. */
6556 expect_ident ("static");
6557 if (LA1 == XBM_TK_IDENT)
6558 {
6559 if (strcmp (buffer, "unsigned") == 0)
6560 {
6561 match ();
6562 expect_ident ("char");
6563 }
6564 else if (strcmp (buffer, "short") == 0)
6565 {
6566 match ();
6567 v10 = 1;
6568 if (*width % 16 && *width % 16 < 9)
6569 padding_p = 1;
6570 }
6571 else if (strcmp (buffer, "char") == 0)
6572 match ();
6573 else
6574 goto failure;
6575 }
6576 else
6577 goto failure;
6578
6579 expect (XBM_TK_IDENT);
6580 expect ('[');
6581 expect (']');
6582 expect ('=');
6583 expect ('{');
6584
6585 bytes_per_line = (*width + 7) / 8 + padding_p;
6586 nbytes = bytes_per_line * *height;
6587 p = *data = (char *) xmalloc (nbytes);
6588
6589 if (v10)
6590 {
6591 for (i = 0; i < nbytes; i += 2)
6592 {
6593 int val = value;
6594 expect (XBM_TK_NUMBER);
6595
6596 *p++ = val;
6597 if (!padding_p || ((i + 2) % bytes_per_line))
6598 *p++ = value >> 8;
6599
6600 if (LA1 == ',' || LA1 == '}')
6601 match ();
6602 else
6603 goto failure;
6604 }
6605 }
6606 else
6607 {
6608 for (i = 0; i < nbytes; ++i)
6609 {
6610 int val = value;
6611 expect (XBM_TK_NUMBER);
6612
6613 *p++ = val;
6614
6615 if (LA1 == ',' || LA1 == '}')
6616 match ();
6617 else
6618 goto failure;
6619 }
6620 }
6621
6622 success:
6623 return 1;
6624
6625 failure:
6626
6627 if (data && *data)
6628 {
6629 xfree (*data);
6630 *data = NULL;
6631 }
6632 return 0;
6633
6634 #undef match
6635 #undef expect
6636 #undef expect_ident
6637 }
6638
6639
6640 /* Load XBM image IMG which will be displayed on frame F from buffer
6641 CONTENTS. END is the end of the buffer. Value is non-zero if
6642 successful. */
6643
6644 static int
6645 xbm_load_image (f, img, contents, end)
6646 struct frame *f;
6647 struct image *img;
6648 char *contents, *end;
6649 {
6650 int rc;
6651 unsigned char *data;
6652 int success_p = 0;
6653
6654 rc = xbm_read_bitmap_data (contents, end, &img->width, &img->height, &data);
6655 if (rc)
6656 {
6657 int depth = DefaultDepthOfScreen (FRAME_X_SCREEN (f));
6658 unsigned long foreground = FRAME_FOREGROUND_PIXEL (f);
6659 unsigned long background = FRAME_BACKGROUND_PIXEL (f);
6660 Lisp_Object value;
6661
6662 xassert (img->width > 0 && img->height > 0);
6663
6664 /* Get foreground and background colors, maybe allocate colors. */
6665 value = image_spec_value (img->spec, QCforeground, NULL);
6666 if (!NILP (value))
6667 foreground = x_alloc_image_color (f, img, value, foreground);
6668
6669 value = image_spec_value (img->spec, QCbackground, NULL);
6670 if (!NILP (value))
6671 background = x_alloc_image_color (f, img, value, background);
6672
6673 img->pixmap
6674 = XCreatePixmapFromBitmapData (FRAME_X_DISPLAY (f),
6675 FRAME_X_WINDOW (f),
6676 data,
6677 img->width, img->height,
6678 foreground, background,
6679 depth);
6680 xfree (data);
6681
6682 if (img->pixmap == None)
6683 {
6684 x_clear_image (f, img);
6685 image_error ("Unable to create X pixmap for `%s'", img->spec, Qnil);
6686 }
6687 else
6688 success_p = 1;
6689 }
6690 else
6691 image_error ("Error loading XBM image `%s'", img->spec, Qnil);
6692
6693 return success_p;
6694 }
6695
6696
6697 /* Value is non-zero if DATA looks like an in-memory XBM file. */
6698
6699 static int
6700 xbm_file_p (data)
6701 Lisp_Object data;
6702 {
6703 int w, h;
6704 return (STRINGP (data)
6705 && xbm_read_bitmap_data (XSTRING (data)->data,
6706 (XSTRING (data)->data
6707 + STRING_BYTES (XSTRING (data))),
6708 &w, &h, NULL));
6709 }
6710
6711
6712 /* Fill image IMG which is used on frame F with pixmap data. Value is
6713 non-zero if successful. */
6714
6715 static int
6716 xbm_load (f, img)
6717 struct frame *f;
6718 struct image *img;
6719 {
6720 int success_p = 0;
6721 Lisp_Object file_name;
6722
6723 xassert (xbm_image_p (img->spec));
6724
6725 /* If IMG->spec specifies a file name, create a non-file spec from it. */
6726 file_name = image_spec_value (img->spec, QCfile, NULL);
6727 if (STRINGP (file_name))
6728 {
6729 Lisp_Object file;
6730 char *contents;
6731 int size;
6732 struct gcpro gcpro1;
6733
6734 file = x_find_image_file (file_name);
6735 GCPRO1 (file);
6736 if (!STRINGP (file))
6737 {
6738 image_error ("Cannot find image file `%s'", file_name, Qnil);
6739 UNGCPRO;
6740 return 0;
6741 }
6742
6743 contents = slurp_file (XSTRING (file)->data, &size);
6744 if (contents == NULL)
6745 {
6746 image_error ("Error loading XBM image `%s'", img->spec, Qnil);
6747 UNGCPRO;
6748 return 0;
6749 }
6750
6751 success_p = xbm_load_image (f, img, contents, contents + size);
6752 UNGCPRO;
6753 }
6754 else
6755 {
6756 struct image_keyword fmt[XBM_LAST];
6757 Lisp_Object data;
6758 unsigned char *bitmap_data;
6759 int depth;
6760 unsigned long foreground = FRAME_FOREGROUND_PIXEL (f);
6761 unsigned long background = FRAME_BACKGROUND_PIXEL (f);
6762 char *bits;
6763 int parsed_p, height, width;
6764 int in_memory_file_p = 0;
6765
6766 /* See if data looks like an in-memory XBM file. */
6767 data = image_spec_value (img->spec, QCdata, NULL);
6768 in_memory_file_p = xbm_file_p (data);
6769
6770 /* Parse the image specification. */
6771 bcopy (xbm_format, fmt, sizeof fmt);
6772 parsed_p = parse_image_spec (img->spec, fmt, XBM_LAST, Qxbm);
6773 xassert (parsed_p);
6774
6775 /* Get specified width, and height. */
6776 if (!in_memory_file_p)
6777 {
6778 img->width = XFASTINT (fmt[XBM_WIDTH].value);
6779 img->height = XFASTINT (fmt[XBM_HEIGHT].value);
6780 xassert (img->width > 0 && img->height > 0);
6781 }
6782
6783 /* Get foreground and background colors, maybe allocate colors. */
6784 if (fmt[XBM_FOREGROUND].count)
6785 foreground = x_alloc_image_color (f, img, fmt[XBM_FOREGROUND].value,
6786 foreground);
6787 if (fmt[XBM_BACKGROUND].count)
6788 background = x_alloc_image_color (f, img, fmt[XBM_BACKGROUND].value,
6789 background);
6790
6791 if (in_memory_file_p)
6792 success_p = xbm_load_image (f, img, XSTRING (data)->data,
6793 (XSTRING (data)->data
6794 + STRING_BYTES (XSTRING (data))));
6795 else
6796 {
6797 if (VECTORP (data))
6798 {
6799 int i;
6800 char *p;
6801 int nbytes = (img->width + BITS_PER_CHAR - 1) / BITS_PER_CHAR;
6802
6803 p = bits = (char *) alloca (nbytes * img->height);
6804 for (i = 0; i < img->height; ++i, p += nbytes)
6805 {
6806 Lisp_Object line = XVECTOR (data)->contents[i];
6807 if (STRINGP (line))
6808 bcopy (XSTRING (line)->data, p, nbytes);
6809 else
6810 bcopy (XBOOL_VECTOR (line)->data, p, nbytes);
6811 }
6812 }
6813 else if (STRINGP (data))
6814 bits = XSTRING (data)->data;
6815 else
6816 bits = XBOOL_VECTOR (data)->data;
6817
6818 /* Create the pixmap. */
6819 depth = DefaultDepthOfScreen (FRAME_X_SCREEN (f));
6820 img->pixmap
6821 = XCreatePixmapFromBitmapData (FRAME_X_DISPLAY (f),
6822 FRAME_X_WINDOW (f),
6823 bits,
6824 img->width, img->height,
6825 foreground, background,
6826 depth);
6827 if (img->pixmap)
6828 success_p = 1;
6829 else
6830 {
6831 image_error ("Unable to create pixmap for XBM image `%s'",
6832 img->spec, Qnil);
6833 x_clear_image (f, img);
6834 }
6835 }
6836 }
6837
6838 return success_p;
6839 }
6840
6841
6842 \f
6843 /***********************************************************************
6844 XPM images
6845 ***********************************************************************/
6846
6847 #if HAVE_XPM
6848
6849 static int xpm_image_p P_ ((Lisp_Object object));
6850 static int xpm_load P_ ((struct frame *f, struct image *img));
6851 static int xpm_valid_color_symbols_p P_ ((Lisp_Object));
6852
6853 #include "X11/xpm.h"
6854
6855 /* The symbol `xpm' identifying XPM-format images. */
6856
6857 Lisp_Object Qxpm;
6858
6859 /* Indices of image specification fields in xpm_format, below. */
6860
6861 enum xpm_keyword_index
6862 {
6863 XPM_TYPE,
6864 XPM_FILE,
6865 XPM_DATA,
6866 XPM_ASCENT,
6867 XPM_MARGIN,
6868 XPM_RELIEF,
6869 XPM_ALGORITHM,
6870 XPM_HEURISTIC_MASK,
6871 XPM_MASK,
6872 XPM_COLOR_SYMBOLS,
6873 XPM_LAST
6874 };
6875
6876 /* Vector of image_keyword structures describing the format
6877 of valid XPM image specifications. */
6878
6879 static struct image_keyword xpm_format[XPM_LAST] =
6880 {
6881 {":type", IMAGE_SYMBOL_VALUE, 1},
6882 {":file", IMAGE_STRING_VALUE, 0},
6883 {":data", IMAGE_STRING_VALUE, 0},
6884 {":ascent", IMAGE_ASCENT_VALUE, 0},
6885 {":margin", IMAGE_POSITIVE_INTEGER_VALUE, 0},
6886 {":relief", IMAGE_INTEGER_VALUE, 0},
6887 {":algorithm", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
6888 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
6889 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
6890 {":color-symbols", IMAGE_DONT_CHECK_VALUE_TYPE, 0}
6891 };
6892
6893 /* Structure describing the image type XBM. */
6894
6895 static struct image_type xpm_type =
6896 {
6897 &Qxpm,
6898 xpm_image_p,
6899 xpm_load,
6900 x_clear_image,
6901 NULL
6902 };
6903
6904
6905 /* Define ALLOC_XPM_COLORS if we can use Emacs' own color allocation
6906 functions for allocating image colors. Our own functions handle
6907 color allocation failures more gracefully than the ones on the XPM
6908 lib. */
6909
6910 #if defined XpmAllocColor && defined XpmFreeColors && defined XpmColorClosure
6911 #define ALLOC_XPM_COLORS
6912 #endif
6913
6914 #ifdef ALLOC_XPM_COLORS
6915
6916 static void xpm_init_color_cache P_ ((struct frame *, XpmAttributes *));
6917 static void xpm_free_color_cache P_ ((void));
6918 static int xpm_lookup_color P_ ((struct frame *, char *, XColor *));
6919 static int xpm_color_bucket P_ ((char *));
6920 static struct xpm_cached_color *xpm_cache_color P_ ((struct frame *, char *,
6921 XColor *, int));
6922
6923 /* An entry in a hash table used to cache color definitions of named
6924 colors. This cache is necessary to speed up XPM image loading in
6925 case we do color allocations ourselves. Without it, we would need
6926 a call to XParseColor per pixel in the image. */
6927
6928 struct xpm_cached_color
6929 {
6930 /* Next in collision chain. */
6931 struct xpm_cached_color *next;
6932
6933 /* Color definition (RGB and pixel color). */
6934 XColor color;
6935
6936 /* Color name. */
6937 char name[1];
6938 };
6939
6940 /* The hash table used for the color cache, and its bucket vector
6941 size. */
6942
6943 #define XPM_COLOR_CACHE_BUCKETS 1001
6944 struct xpm_cached_color **xpm_color_cache;
6945
6946 /* Initialize the color cache. */
6947
6948 static void
6949 xpm_init_color_cache (f, attrs)
6950 struct frame *f;
6951 XpmAttributes *attrs;
6952 {
6953 size_t nbytes = XPM_COLOR_CACHE_BUCKETS * sizeof *xpm_color_cache;
6954 xpm_color_cache = (struct xpm_cached_color **) xmalloc (nbytes);
6955 memset (xpm_color_cache, 0, nbytes);
6956 init_color_table ();
6957
6958 if (attrs->valuemask & XpmColorSymbols)
6959 {
6960 int i;
6961 XColor color;
6962
6963 for (i = 0; i < attrs->numsymbols; ++i)
6964 if (XParseColor (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f),
6965 attrs->colorsymbols[i].value, &color))
6966 {
6967 color.pixel = lookup_rgb_color (f, color.red, color.green,
6968 color.blue);
6969 xpm_cache_color (f, attrs->colorsymbols[i].name, &color, -1);
6970 }
6971 }
6972 }
6973
6974
6975 /* Free the color cache. */
6976
6977 static void
6978 xpm_free_color_cache ()
6979 {
6980 struct xpm_cached_color *p, *next;
6981 int i;
6982
6983 for (i = 0; i < XPM_COLOR_CACHE_BUCKETS; ++i)
6984 for (p = xpm_color_cache[i]; p; p = next)
6985 {
6986 next = p->next;
6987 xfree (p);
6988 }
6989
6990 xfree (xpm_color_cache);
6991 xpm_color_cache = NULL;
6992 free_color_table ();
6993 }
6994
6995
6996 /* Return the bucket index for color named COLOR_NAME in the color
6997 cache. */
6998
6999 static int
7000 xpm_color_bucket (color_name)
7001 char *color_name;
7002 {
7003 unsigned h = 0;
7004 char *s;
7005
7006 for (s = color_name; *s; ++s)
7007 h = (h << 2) ^ *s;
7008 return h %= XPM_COLOR_CACHE_BUCKETS;
7009 }
7010
7011
7012 /* On frame F, cache values COLOR for color with name COLOR_NAME.
7013 BUCKET, if >= 0, is a precomputed bucket index. Value is the cache
7014 entry added. */
7015
7016 static struct xpm_cached_color *
7017 xpm_cache_color (f, color_name, color, bucket)
7018 struct frame *f;
7019 char *color_name;
7020 XColor *color;
7021 int bucket;
7022 {
7023 size_t nbytes;
7024 struct xpm_cached_color *p;
7025
7026 if (bucket < 0)
7027 bucket = xpm_color_bucket (color_name);
7028
7029 nbytes = sizeof *p + strlen (color_name);
7030 p = (struct xpm_cached_color *) xmalloc (nbytes);
7031 strcpy (p->name, color_name);
7032 p->color = *color;
7033 p->next = xpm_color_cache[bucket];
7034 xpm_color_cache[bucket] = p;
7035 return p;
7036 }
7037
7038
7039 /* Look up color COLOR_NAME for frame F in the color cache. If found,
7040 return the cached definition in *COLOR. Otherwise, make a new
7041 entry in the cache and allocate the color. Value is zero if color
7042 allocation failed. */
7043
7044 static int
7045 xpm_lookup_color (f, color_name, color)
7046 struct frame *f;
7047 char *color_name;
7048 XColor *color;
7049 {
7050 struct xpm_cached_color *p;
7051 int h = xpm_color_bucket (color_name);
7052
7053 for (p = xpm_color_cache[h]; p; p = p->next)
7054 if (strcmp (p->name, color_name) == 0)
7055 break;
7056
7057 if (p != NULL)
7058 *color = p->color;
7059 else if (XParseColor (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f),
7060 color_name, color))
7061 {
7062 color->pixel = lookup_rgb_color (f, color->red, color->green,
7063 color->blue);
7064 p = xpm_cache_color (f, color_name, color, h);
7065 }
7066
7067 return p != NULL;
7068 }
7069
7070
7071 /* Callback for allocating color COLOR_NAME. Called from the XPM lib.
7072 CLOSURE is a pointer to the frame on which we allocate the
7073 color. Return in *COLOR the allocated color. Value is non-zero
7074 if successful. */
7075
7076 static int
7077 xpm_alloc_color (dpy, cmap, color_name, color, closure)
7078 Display *dpy;
7079 Colormap cmap;
7080 char *color_name;
7081 XColor *color;
7082 void *closure;
7083 {
7084 return xpm_lookup_color ((struct frame *) closure, color_name, color);
7085 }
7086
7087
7088 /* Callback for freeing NPIXELS colors contained in PIXELS. CLOSURE
7089 is a pointer to the frame on which we allocate the color. Value is
7090 non-zero if successful. */
7091
7092 static int
7093 xpm_free_colors (dpy, cmap, pixels, npixels, closure)
7094 Display *dpy;
7095 Colormap cmap;
7096 Pixel *pixels;
7097 int npixels;
7098 void *closure;
7099 {
7100 return 1;
7101 }
7102
7103 #endif /* ALLOC_XPM_COLORS */
7104
7105
7106 /* Value is non-zero if COLOR_SYMBOLS is a valid color symbols list
7107 for XPM images. Such a list must consist of conses whose car and
7108 cdr are strings. */
7109
7110 static int
7111 xpm_valid_color_symbols_p (color_symbols)
7112 Lisp_Object color_symbols;
7113 {
7114 while (CONSP (color_symbols))
7115 {
7116 Lisp_Object sym = XCAR (color_symbols);
7117 if (!CONSP (sym)
7118 || !STRINGP (XCAR (sym))
7119 || !STRINGP (XCDR (sym)))
7120 break;
7121 color_symbols = XCDR (color_symbols);
7122 }
7123
7124 return NILP (color_symbols);
7125 }
7126
7127
7128 /* Value is non-zero if OBJECT is a valid XPM image specification. */
7129
7130 static int
7131 xpm_image_p (object)
7132 Lisp_Object object;
7133 {
7134 struct image_keyword fmt[XPM_LAST];
7135 bcopy (xpm_format, fmt, sizeof fmt);
7136 return (parse_image_spec (object, fmt, XPM_LAST, Qxpm)
7137 /* Either `:file' or `:data' must be present. */
7138 && fmt[XPM_FILE].count + fmt[XPM_DATA].count == 1
7139 /* Either no `:color-symbols' or it's a list of conses
7140 whose car and cdr are strings. */
7141 && (fmt[XPM_COLOR_SYMBOLS].count == 0
7142 || xpm_valid_color_symbols_p (fmt[XPM_COLOR_SYMBOLS].value)));
7143 }
7144
7145
7146 /* Load image IMG which will be displayed on frame F. Value is
7147 non-zero if successful. */
7148
7149 static int
7150 xpm_load (f, img)
7151 struct frame *f;
7152 struct image *img;
7153 {
7154 int rc, i;
7155 XpmAttributes attrs;
7156 Lisp_Object specified_file, color_symbols;
7157
7158 /* Configure the XPM lib. Use the visual of frame F. Allocate
7159 close colors. Return colors allocated. */
7160 bzero (&attrs, sizeof attrs);
7161 attrs.visual = FRAME_X_VISUAL (f);
7162 attrs.colormap = FRAME_X_COLORMAP (f);
7163 attrs.valuemask |= XpmVisual;
7164 attrs.valuemask |= XpmColormap;
7165
7166 #ifdef ALLOC_XPM_COLORS
7167 /* Allocate colors with our own functions which handle
7168 failing color allocation more gracefully. */
7169 attrs.color_closure = f;
7170 attrs.alloc_color = xpm_alloc_color;
7171 attrs.free_colors = xpm_free_colors;
7172 attrs.valuemask |= XpmAllocColor | XpmFreeColors | XpmColorClosure;
7173 #else /* not ALLOC_XPM_COLORS */
7174 /* Let the XPM lib allocate colors. */
7175 attrs.valuemask |= XpmReturnAllocPixels;
7176 #ifdef XpmAllocCloseColors
7177 attrs.alloc_close_colors = 1;
7178 attrs.valuemask |= XpmAllocCloseColors;
7179 #else /* not XpmAllocCloseColors */
7180 attrs.closeness = 600;
7181 attrs.valuemask |= XpmCloseness;
7182 #endif /* not XpmAllocCloseColors */
7183 #endif /* ALLOC_XPM_COLORS */
7184
7185 /* If image specification contains symbolic color definitions, add
7186 these to `attrs'. */
7187 color_symbols = image_spec_value (img->spec, QCcolor_symbols, NULL);
7188 if (CONSP (color_symbols))
7189 {
7190 Lisp_Object tail;
7191 XpmColorSymbol *xpm_syms;
7192 int i, size;
7193
7194 attrs.valuemask |= XpmColorSymbols;
7195
7196 /* Count number of symbols. */
7197 attrs.numsymbols = 0;
7198 for (tail = color_symbols; CONSP (tail); tail = XCDR (tail))
7199 ++attrs.numsymbols;
7200
7201 /* Allocate an XpmColorSymbol array. */
7202 size = attrs.numsymbols * sizeof *xpm_syms;
7203 xpm_syms = (XpmColorSymbol *) alloca (size);
7204 bzero (xpm_syms, size);
7205 attrs.colorsymbols = xpm_syms;
7206
7207 /* Fill the color symbol array. */
7208 for (tail = color_symbols, i = 0;
7209 CONSP (tail);
7210 ++i, tail = XCDR (tail))
7211 {
7212 Lisp_Object name = XCAR (XCAR (tail));
7213 Lisp_Object color = XCDR (XCAR (tail));
7214 xpm_syms[i].name = (char *) alloca (XSTRING (name)->size + 1);
7215 strcpy (xpm_syms[i].name, XSTRING (name)->data);
7216 xpm_syms[i].value = (char *) alloca (XSTRING (color)->size + 1);
7217 strcpy (xpm_syms[i].value, XSTRING (color)->data);
7218 }
7219 }
7220
7221 /* Create a pixmap for the image, either from a file, or from a
7222 string buffer containing data in the same format as an XPM file. */
7223 #ifdef ALLOC_XPM_COLORS
7224 xpm_init_color_cache (f, &attrs);
7225 #endif
7226
7227 specified_file = image_spec_value (img->spec, QCfile, NULL);
7228 if (STRINGP (specified_file))
7229 {
7230 Lisp_Object file = x_find_image_file (specified_file);
7231 if (!STRINGP (file))
7232 {
7233 image_error ("Cannot find image file `%s'", specified_file, Qnil);
7234 return 0;
7235 }
7236
7237 rc = XpmReadFileToPixmap (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
7238 XSTRING (file)->data, &img->pixmap, &img->mask,
7239 &attrs);
7240 }
7241 else
7242 {
7243 Lisp_Object buffer = image_spec_value (img->spec, QCdata, NULL);
7244 rc = XpmCreatePixmapFromBuffer (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
7245 XSTRING (buffer)->data,
7246 &img->pixmap, &img->mask,
7247 &attrs);
7248 }
7249
7250 if (rc == XpmSuccess)
7251 {
7252 #ifdef ALLOC_XPM_COLORS
7253 img->colors = colors_in_color_table (&img->ncolors);
7254 #else /* not ALLOC_XPM_COLORS */
7255 img->ncolors = attrs.nalloc_pixels;
7256 img->colors = (unsigned long *) xmalloc (img->ncolors
7257 * sizeof *img->colors);
7258 for (i = 0; i < attrs.nalloc_pixels; ++i)
7259 {
7260 img->colors[i] = attrs.alloc_pixels[i];
7261 #ifdef DEBUG_X_COLORS
7262 register_color (img->colors[i]);
7263 #endif
7264 }
7265 #endif /* not ALLOC_XPM_COLORS */
7266
7267 img->width = attrs.width;
7268 img->height = attrs.height;
7269 xassert (img->width > 0 && img->height > 0);
7270
7271 /* The call to XpmFreeAttributes below frees attrs.alloc_pixels. */
7272 XpmFreeAttributes (&attrs);
7273 }
7274 else
7275 {
7276 switch (rc)
7277 {
7278 case XpmOpenFailed:
7279 image_error ("Error opening XPM file (%s)", img->spec, Qnil);
7280 break;
7281
7282 case XpmFileInvalid:
7283 image_error ("Invalid XPM file (%s)", img->spec, Qnil);
7284 break;
7285
7286 case XpmNoMemory:
7287 image_error ("Out of memory (%s)", img->spec, Qnil);
7288 break;
7289
7290 case XpmColorFailed:
7291 image_error ("Color allocation error (%s)", img->spec, Qnil);
7292 break;
7293
7294 default:
7295 image_error ("Unknown error (%s)", img->spec, Qnil);
7296 break;
7297 }
7298 }
7299
7300 #ifdef ALLOC_XPM_COLORS
7301 xpm_free_color_cache ();
7302 #endif
7303 return rc == XpmSuccess;
7304 }
7305
7306 #endif /* HAVE_XPM != 0 */
7307
7308 \f
7309 /***********************************************************************
7310 Color table
7311 ***********************************************************************/
7312
7313 /* An entry in the color table mapping an RGB color to a pixel color. */
7314
7315 struct ct_color
7316 {
7317 int r, g, b;
7318 unsigned long pixel;
7319
7320 /* Next in color table collision list. */
7321 struct ct_color *next;
7322 };
7323
7324 /* The bucket vector size to use. Must be prime. */
7325
7326 #define CT_SIZE 101
7327
7328 /* Value is a hash of the RGB color given by R, G, and B. */
7329
7330 #define CT_HASH_RGB(R, G, B) (((R) << 16) ^ ((G) << 8) ^ (B))
7331
7332 /* The color hash table. */
7333
7334 struct ct_color **ct_table;
7335
7336 /* Number of entries in the color table. */
7337
7338 int ct_colors_allocated;
7339
7340 /* Initialize the color table. */
7341
7342 static void
7343 init_color_table ()
7344 {
7345 int size = CT_SIZE * sizeof (*ct_table);
7346 ct_table = (struct ct_color **) xmalloc (size);
7347 bzero (ct_table, size);
7348 ct_colors_allocated = 0;
7349 }
7350
7351
7352 /* Free memory associated with the color table. */
7353
7354 static void
7355 free_color_table ()
7356 {
7357 int i;
7358 struct ct_color *p, *next;
7359
7360 for (i = 0; i < CT_SIZE; ++i)
7361 for (p = ct_table[i]; p; p = next)
7362 {
7363 next = p->next;
7364 xfree (p);
7365 }
7366
7367 xfree (ct_table);
7368 ct_table = NULL;
7369 }
7370
7371
7372 /* Value is a pixel color for RGB color R, G, B on frame F. If an
7373 entry for that color already is in the color table, return the
7374 pixel color of that entry. Otherwise, allocate a new color for R,
7375 G, B, and make an entry in the color table. */
7376
7377 static unsigned long
7378 lookup_rgb_color (f, r, g, b)
7379 struct frame *f;
7380 int r, g, b;
7381 {
7382 unsigned hash = CT_HASH_RGB (r, g, b);
7383 int i = hash % CT_SIZE;
7384 struct ct_color *p;
7385
7386 for (p = ct_table[i]; p; p = p->next)
7387 if (p->r == r && p->g == g && p->b == b)
7388 break;
7389
7390 if (p == NULL)
7391 {
7392 XColor color;
7393 Colormap cmap;
7394 int rc;
7395
7396 color.red = r;
7397 color.green = g;
7398 color.blue = b;
7399
7400 cmap = FRAME_X_COLORMAP (f);
7401 rc = x_alloc_nearest_color (f, cmap, &color);
7402
7403 if (rc)
7404 {
7405 ++ct_colors_allocated;
7406
7407 p = (struct ct_color *) xmalloc (sizeof *p);
7408 p->r = r;
7409 p->g = g;
7410 p->b = b;
7411 p->pixel = color.pixel;
7412 p->next = ct_table[i];
7413 ct_table[i] = p;
7414 }
7415 else
7416 return FRAME_FOREGROUND_PIXEL (f);
7417 }
7418
7419 return p->pixel;
7420 }
7421
7422
7423 /* Look up pixel color PIXEL which is used on frame F in the color
7424 table. If not already present, allocate it. Value is PIXEL. */
7425
7426 static unsigned long
7427 lookup_pixel_color (f, pixel)
7428 struct frame *f;
7429 unsigned long pixel;
7430 {
7431 int i = pixel % CT_SIZE;
7432 struct ct_color *p;
7433
7434 for (p = ct_table[i]; p; p = p->next)
7435 if (p->pixel == pixel)
7436 break;
7437
7438 if (p == NULL)
7439 {
7440 XColor color;
7441 Colormap cmap;
7442 int rc;
7443
7444 cmap = FRAME_X_COLORMAP (f);
7445 color.pixel = pixel;
7446 x_query_color (f, &color);
7447 rc = x_alloc_nearest_color (f, cmap, &color);
7448
7449 if (rc)
7450 {
7451 ++ct_colors_allocated;
7452
7453 p = (struct ct_color *) xmalloc (sizeof *p);
7454 p->r = color.red;
7455 p->g = color.green;
7456 p->b = color.blue;
7457 p->pixel = pixel;
7458 p->next = ct_table[i];
7459 ct_table[i] = p;
7460 }
7461 else
7462 return FRAME_FOREGROUND_PIXEL (f);
7463 }
7464
7465 return p->pixel;
7466 }
7467
7468
7469 /* Value is a vector of all pixel colors contained in the color table,
7470 allocated via xmalloc. Set *N to the number of colors. */
7471
7472 static unsigned long *
7473 colors_in_color_table (n)
7474 int *n;
7475 {
7476 int i, j;
7477 struct ct_color *p;
7478 unsigned long *colors;
7479
7480 if (ct_colors_allocated == 0)
7481 {
7482 *n = 0;
7483 colors = NULL;
7484 }
7485 else
7486 {
7487 colors = (unsigned long *) xmalloc (ct_colors_allocated
7488 * sizeof *colors);
7489 *n = ct_colors_allocated;
7490
7491 for (i = j = 0; i < CT_SIZE; ++i)
7492 for (p = ct_table[i]; p; p = p->next)
7493 colors[j++] = p->pixel;
7494 }
7495
7496 return colors;
7497 }
7498
7499
7500 \f
7501 /***********************************************************************
7502 Algorithms
7503 ***********************************************************************/
7504
7505 static void x_laplace_write_row P_ ((struct frame *, long *,
7506 int, XImage *, int));
7507 static void x_laplace_read_row P_ ((struct frame *, Colormap,
7508 XColor *, int, XImage *, int));
7509 static XColor *x_to_xcolors P_ ((struct frame *, struct image *, int));
7510 static void x_from_xcolors P_ ((struct frame *, struct image *, XColor *));
7511 static void x_detect_edges P_ ((struct frame *, struct image *, int[9], int));
7512
7513 /* Non-zero means draw a cross on images having `:algorithm
7514 disabled'. */
7515
7516 int cross_disabled_images;
7517
7518 /* Edge detection matrices for different edge-detection
7519 strategies. */
7520
7521 static int emboss_matrix[9] = {
7522 /* x - 1 x x + 1 */
7523 2, -1, 0, /* y - 1 */
7524 -1, 0, 1, /* y */
7525 0, 1, -2 /* y + 1 */
7526 };
7527
7528 static int laplace_matrix[9] = {
7529 /* x - 1 x x + 1 */
7530 1, 0, 0, /* y - 1 */
7531 0, 0, 0, /* y */
7532 0, 0, -1 /* y + 1 */
7533 };
7534
7535 /* Value is the intensity of the color whose red/green/blue values
7536 are R, G, and B. */
7537
7538 #define COLOR_INTENSITY(R, G, B) ((2 * (R) + 3 * (G) + (B)) / 6)
7539
7540
7541 /* On frame F, return an array of XColor structures describing image
7542 IMG->pixmap. Each XColor structure has its pixel color set. RGB_P
7543 non-zero means also fill the red/green/blue members of the XColor
7544 structures. Value is a pointer to the array of XColors structures,
7545 allocated with xmalloc; it must be freed by the caller. */
7546
7547 static XColor *
7548 x_to_xcolors (f, img, rgb_p)
7549 struct frame *f;
7550 struct image *img;
7551 int rgb_p;
7552 {
7553 int x, y;
7554 XColor *colors, *p;
7555 XImage *ximg;
7556
7557 colors = (XColor *) xmalloc (img->width * img->height * sizeof *colors);
7558
7559 /* Get the X image IMG->pixmap. */
7560 ximg = XGetImage (FRAME_X_DISPLAY (f), img->pixmap,
7561 0, 0, img->width, img->height, ~0, ZPixmap);
7562
7563 /* Fill the `pixel' members of the XColor array. I wished there
7564 were an easy and portable way to circumvent XGetPixel. */
7565 p = colors;
7566 for (y = 0; y < img->height; ++y)
7567 {
7568 XColor *row = p;
7569
7570 for (x = 0; x < img->width; ++x, ++p)
7571 p->pixel = XGetPixel (ximg, x, y);
7572
7573 if (rgb_p)
7574 x_query_colors (f, row, img->width);
7575 }
7576
7577 XDestroyImage (ximg);
7578 return colors;
7579 }
7580
7581
7582 /* Create IMG->pixmap from an array COLORS of XColor structures, whose
7583 RGB members are set. F is the frame on which this all happens.
7584 COLORS will be freed; an existing IMG->pixmap will be freed, too. */
7585
7586 static void
7587 x_from_xcolors (f, img, colors)
7588 struct frame *f;
7589 struct image *img;
7590 XColor *colors;
7591 {
7592 int x, y;
7593 XImage *oimg;
7594 Pixmap pixmap;
7595 XColor *p;
7596
7597 init_color_table ();
7598
7599 x_create_x_image_and_pixmap (f, img->width, img->height, 0,
7600 &oimg, &pixmap);
7601 p = colors;
7602 for (y = 0; y < img->height; ++y)
7603 for (x = 0; x < img->width; ++x, ++p)
7604 {
7605 unsigned long pixel;
7606 pixel = lookup_rgb_color (f, p->red, p->green, p->blue);
7607 XPutPixel (oimg, x, y, pixel);
7608 }
7609
7610 xfree (colors);
7611 x_clear_image_1 (f, img, 1, 0, 1);
7612
7613 x_put_x_image (f, oimg, pixmap, img->width, img->height);
7614 x_destroy_x_image (oimg);
7615 img->pixmap = pixmap;
7616 img->colors = colors_in_color_table (&img->ncolors);
7617 free_color_table ();
7618 }
7619
7620
7621 /* On frame F, perform edge-detection on image IMG.
7622
7623 MATRIX is a nine-element array specifying the transformation
7624 matrix. See emboss_matrix for an example.
7625
7626 COLOR_ADJUST is a color adjustment added to each pixel of the
7627 outgoing image. */
7628
7629 static void
7630 x_detect_edges (f, img, matrix, color_adjust)
7631 struct frame *f;
7632 struct image *img;
7633 int matrix[9], color_adjust;
7634 {
7635 XColor *colors = x_to_xcolors (f, img, 1);
7636 XColor *new, *p;
7637 int x, y, i, sum;
7638
7639 for (i = sum = 0; i < 9; ++i)
7640 sum += abs (matrix[i]);
7641
7642 #define COLOR(A, X, Y) ((A) + (Y) * img->width + (X))
7643
7644 new = (XColor *) xmalloc (img->width * img->height * sizeof *new);
7645
7646 for (y = 0; y < img->height; ++y)
7647 {
7648 p = COLOR (new, 0, y);
7649 p->red = p->green = p->blue = 0xffff/2;
7650 p = COLOR (new, img->width - 1, y);
7651 p->red = p->green = p->blue = 0xffff/2;
7652 }
7653
7654 for (x = 1; x < img->width - 1; ++x)
7655 {
7656 p = COLOR (new, x, 0);
7657 p->red = p->green = p->blue = 0xffff/2;
7658 p = COLOR (new, x, img->height - 1);
7659 p->red = p->green = p->blue = 0xffff/2;
7660 }
7661
7662 for (y = 1; y < img->height - 1; ++y)
7663 {
7664 p = COLOR (new, 1, y);
7665
7666 for (x = 1; x < img->width - 1; ++x, ++p)
7667 {
7668 int r, g, b, y1, x1;
7669
7670 r = g = b = i = 0;
7671 for (y1 = y - 1; y1 < y + 2; ++y1)
7672 for (x1 = x - 1; x1 < x + 2; ++x1, ++i)
7673 if (matrix[i])
7674 {
7675 XColor *t = COLOR (colors, x1, y1);
7676 r += matrix[i] * t->red;
7677 g += matrix[i] * t->green;
7678 b += matrix[i] * t->blue;
7679 }
7680
7681 r = (r / sum + color_adjust) & 0xffff;
7682 g = (g / sum + color_adjust) & 0xffff;
7683 b = (b / sum + color_adjust) & 0xffff;
7684 p->red = p->green = p->blue = COLOR_INTENSITY (r, g, b);
7685 }
7686 }
7687
7688 xfree (colors);
7689 x_from_xcolors (f, img, new);
7690
7691 #undef COLOR
7692 }
7693
7694
7695 /* Perform the pre-defined `emboss' edge-detection on image IMG
7696 on frame F. */
7697
7698 static void
7699 x_emboss (f, img)
7700 struct frame *f;
7701 struct image *img;
7702 {
7703 x_detect_edges (f, img, emboss_matrix, 0xffff / 2);
7704 }
7705
7706
7707 /* Perform the pre-defined `laplace' edge-detection on image IMG
7708 on frame F. */
7709
7710 static void
7711 x_laplace (f, img)
7712 struct frame *f;
7713 struct image *img;
7714 {
7715 x_detect_edges (f, img, laplace_matrix, 45000);
7716 }
7717
7718
7719 /* Perform edge-detection on image IMG on frame F, with specified
7720 transformation matrix MATRIX and color-adjustment COLOR_ADJUST.
7721
7722 MATRIX must be either
7723
7724 - a list of at least 9 numbers in row-major form
7725 - a vector of at least 9 numbers
7726
7727 COLOR_ADJUST nil means use a default; otherwise it must be a
7728 number. */
7729
7730 static void
7731 x_edge_detection (f, img, matrix, color_adjust)
7732 struct frame *f;
7733 struct image *img;
7734 Lisp_Object matrix, color_adjust;
7735 {
7736 int i = 0;
7737 int trans[9];
7738
7739 if (CONSP (matrix))
7740 {
7741 for (i = 0;
7742 i < 9 && CONSP (matrix) && NUMBERP (XCAR (matrix));
7743 ++i, matrix = XCDR (matrix))
7744 trans[i] = XFLOATINT (XCAR (matrix));
7745 }
7746 else if (VECTORP (matrix) && ASIZE (matrix) >= 9)
7747 {
7748 for (i = 0; i < 9 && NUMBERP (AREF (matrix, i)); ++i)
7749 trans[i] = XFLOATINT (AREF (matrix, i));
7750 }
7751
7752 if (NILP (color_adjust))
7753 color_adjust = make_number (0xffff / 2);
7754
7755 if (i == 9 && NUMBERP (color_adjust))
7756 x_detect_edges (f, img, trans, (int) XFLOATINT (color_adjust));
7757 }
7758
7759
7760 /* Transform image IMG on frame F so that it looks disabled. */
7761
7762 static void
7763 x_disable_image (f, img)
7764 struct frame *f;
7765 struct image *img;
7766 {
7767 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
7768
7769 if (dpyinfo->n_planes >= 2)
7770 {
7771 /* Color (or grayscale). Convert to gray, and equalize. Just
7772 drawing such images with a stipple can look very odd, so
7773 we're using this method instead. */
7774 XColor *colors = x_to_xcolors (f, img, 1);
7775 XColor *p, *end;
7776 const int h = 15000;
7777 const int l = 30000;
7778
7779 for (p = colors, end = colors + img->width * img->height;
7780 p < end;
7781 ++p)
7782 {
7783 int i = COLOR_INTENSITY (p->red, p->green, p->blue);
7784 int i2 = (0xffff - h - l) * i / 0xffff + l;
7785 p->red = p->green = p->blue = i2;
7786 }
7787
7788 x_from_xcolors (f, img, colors);
7789 }
7790
7791 /* Draw a cross over the disabled image, if we must or if we
7792 should. */
7793 if (dpyinfo->n_planes < 2 || cross_disabled_images)
7794 {
7795 Display *dpy = FRAME_X_DISPLAY (f);
7796 GC gc;
7797
7798 gc = XCreateGC (dpy, img->pixmap, 0, NULL);
7799 XSetForeground (dpy, gc, BLACK_PIX_DEFAULT (f));
7800 XDrawLine (dpy, img->pixmap, gc, 0, 0,
7801 img->width - 1, img->height - 1);
7802 XDrawLine (dpy, img->pixmap, gc, 0, img->height - 1,
7803 img->width - 1, 0);
7804 XFreeGC (dpy, gc);
7805
7806 if (img->mask)
7807 {
7808 gc = XCreateGC (dpy, img->mask, 0, NULL);
7809 XSetForeground (dpy, gc, WHITE_PIX_DEFAULT (f));
7810 XDrawLine (dpy, img->mask, gc, 0, 0,
7811 img->width - 1, img->height - 1);
7812 XDrawLine (dpy, img->mask, gc, 0, img->height - 1,
7813 img->width - 1, 0);
7814 XFreeGC (dpy, gc);
7815 }
7816 }
7817 }
7818
7819
7820 /* Build a mask for image IMG which is used on frame F. FILE is the
7821 name of an image file, for error messages. HOW determines how to
7822 determine the background color of IMG. If it is a list '(R G B)',
7823 with R, G, and B being integers >= 0, take that as the color of the
7824 background. Otherwise, determine the background color of IMG
7825 heuristically. Value is non-zero if successful. */
7826
7827 static int
7828 x_build_heuristic_mask (f, img, how)
7829 struct frame *f;
7830 struct image *img;
7831 Lisp_Object how;
7832 {
7833 Display *dpy = FRAME_X_DISPLAY (f);
7834 XImage *ximg, *mask_img;
7835 int x, y, rc, look_at_corners_p;
7836 unsigned long bg = 0;
7837
7838 if (img->mask)
7839 {
7840 XFreePixmap (FRAME_X_DISPLAY (f), img->mask);
7841 img->mask = None;
7842 }
7843
7844 /* Create an image and pixmap serving as mask. */
7845 rc = x_create_x_image_and_pixmap (f, img->width, img->height, 1,
7846 &mask_img, &img->mask);
7847 if (!rc)
7848 return 0;
7849
7850 /* Get the X image of IMG->pixmap. */
7851 ximg = XGetImage (dpy, img->pixmap, 0, 0, img->width, img->height,
7852 ~0, ZPixmap);
7853
7854 /* Determine the background color of ximg. If HOW is `(R G B)'
7855 take that as color. Otherwise, try to determine the color
7856 heuristically. */
7857 look_at_corners_p = 1;
7858
7859 if (CONSP (how))
7860 {
7861 int rgb[3], i = 0;
7862
7863 while (i < 3
7864 && CONSP (how)
7865 && NATNUMP (XCAR (how)))
7866 {
7867 rgb[i] = XFASTINT (XCAR (how)) & 0xffff;
7868 how = XCDR (how);
7869 }
7870
7871 if (i == 3 && NILP (how))
7872 {
7873 char color_name[30];
7874 XColor exact, color;
7875 Colormap cmap;
7876
7877 sprintf (color_name, "#%04x%04x%04x", rgb[0], rgb[1], rgb[2]);
7878
7879 cmap = FRAME_X_COLORMAP (f);
7880 if (XLookupColor (dpy, cmap, color_name, &exact, &color))
7881 {
7882 bg = color.pixel;
7883 look_at_corners_p = 0;
7884 }
7885 }
7886 }
7887
7888 if (look_at_corners_p)
7889 {
7890 unsigned long corners[4];
7891 int i, best_count;
7892
7893 /* Get the colors at the corners of ximg. */
7894 corners[0] = XGetPixel (ximg, 0, 0);
7895 corners[1] = XGetPixel (ximg, img->width - 1, 0);
7896 corners[2] = XGetPixel (ximg, img->width - 1, img->height - 1);
7897 corners[3] = XGetPixel (ximg, 0, img->height - 1);
7898
7899 /* Choose the most frequently found color as background. */
7900 for (i = best_count = 0; i < 4; ++i)
7901 {
7902 int j, n;
7903
7904 for (j = n = 0; j < 4; ++j)
7905 if (corners[i] == corners[j])
7906 ++n;
7907
7908 if (n > best_count)
7909 bg = corners[i], best_count = n;
7910 }
7911 }
7912
7913 /* Set all bits in mask_img to 1 whose color in ximg is different
7914 from the background color bg. */
7915 for (y = 0; y < img->height; ++y)
7916 for (x = 0; x < img->width; ++x)
7917 XPutPixel (mask_img, x, y, XGetPixel (ximg, x, y) != bg);
7918
7919 /* Put mask_img into img->mask. */
7920 x_put_x_image (f, mask_img, img->mask, img->width, img->height);
7921 x_destroy_x_image (mask_img);
7922 XDestroyImage (ximg);
7923
7924 return 1;
7925 }
7926
7927
7928 \f
7929 /***********************************************************************
7930 PBM (mono, gray, color)
7931 ***********************************************************************/
7932
7933 static int pbm_image_p P_ ((Lisp_Object object));
7934 static int pbm_load P_ ((struct frame *f, struct image *img));
7935 static int pbm_scan_number P_ ((unsigned char **, unsigned char *));
7936
7937 /* The symbol `pbm' identifying images of this type. */
7938
7939 Lisp_Object Qpbm;
7940
7941 /* Indices of image specification fields in gs_format, below. */
7942
7943 enum pbm_keyword_index
7944 {
7945 PBM_TYPE,
7946 PBM_FILE,
7947 PBM_DATA,
7948 PBM_ASCENT,
7949 PBM_MARGIN,
7950 PBM_RELIEF,
7951 PBM_ALGORITHM,
7952 PBM_HEURISTIC_MASK,
7953 PBM_MASK,
7954 PBM_FOREGROUND,
7955 PBM_BACKGROUND,
7956 PBM_LAST
7957 };
7958
7959 /* Vector of image_keyword structures describing the format
7960 of valid user-defined image specifications. */
7961
7962 static struct image_keyword pbm_format[PBM_LAST] =
7963 {
7964 {":type", IMAGE_SYMBOL_VALUE, 1},
7965 {":file", IMAGE_STRING_VALUE, 0},
7966 {":data", IMAGE_STRING_VALUE, 0},
7967 {":ascent", IMAGE_ASCENT_VALUE, 0},
7968 {":margin", IMAGE_POSITIVE_INTEGER_VALUE, 0},
7969 {":relief", IMAGE_INTEGER_VALUE, 0},
7970 {":algorithm", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
7971 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
7972 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
7973 {":foreground", IMAGE_STRING_VALUE, 0},
7974 {":background", IMAGE_STRING_VALUE, 0}
7975 };
7976
7977 /* Structure describing the image type `pbm'. */
7978
7979 static struct image_type pbm_type =
7980 {
7981 &Qpbm,
7982 pbm_image_p,
7983 pbm_load,
7984 x_clear_image,
7985 NULL
7986 };
7987
7988
7989 /* Return non-zero if OBJECT is a valid PBM image specification. */
7990
7991 static int
7992 pbm_image_p (object)
7993 Lisp_Object object;
7994 {
7995 struct image_keyword fmt[PBM_LAST];
7996
7997 bcopy (pbm_format, fmt, sizeof fmt);
7998
7999 if (!parse_image_spec (object, fmt, PBM_LAST, Qpbm))
8000 return 0;
8001
8002 /* Must specify either :data or :file. */
8003 return fmt[PBM_DATA].count + fmt[PBM_FILE].count == 1;
8004 }
8005
8006
8007 /* Scan a decimal number from *S and return it. Advance *S while
8008 reading the number. END is the end of the string. Value is -1 at
8009 end of input. */
8010
8011 static int
8012 pbm_scan_number (s, end)
8013 unsigned char **s, *end;
8014 {
8015 int c = 0, val = -1;
8016
8017 while (*s < end)
8018 {
8019 /* Skip white-space. */
8020 while (*s < end && (c = *(*s)++, isspace (c)))
8021 ;
8022
8023 if (c == '#')
8024 {
8025 /* Skip comment to end of line. */
8026 while (*s < end && (c = *(*s)++, c != '\n'))
8027 ;
8028 }
8029 else if (isdigit (c))
8030 {
8031 /* Read decimal number. */
8032 val = c - '0';
8033 while (*s < end && (c = *(*s)++, isdigit (c)))
8034 val = 10 * val + c - '0';
8035 break;
8036 }
8037 else
8038 break;
8039 }
8040
8041 return val;
8042 }
8043
8044
8045 /* Load PBM image IMG for use on frame F. */
8046
8047 static int
8048 pbm_load (f, img)
8049 struct frame *f;
8050 struct image *img;
8051 {
8052 int raw_p, x, y;
8053 int width, height, max_color_idx = 0;
8054 XImage *ximg;
8055 Lisp_Object file, specified_file;
8056 enum {PBM_MONO, PBM_GRAY, PBM_COLOR} type;
8057 struct gcpro gcpro1;
8058 unsigned char *contents = NULL;
8059 unsigned char *end, *p;
8060 int size;
8061
8062 specified_file = image_spec_value (img->spec, QCfile, NULL);
8063 file = Qnil;
8064 GCPRO1 (file);
8065
8066 if (STRINGP (specified_file))
8067 {
8068 file = x_find_image_file (specified_file);
8069 if (!STRINGP (file))
8070 {
8071 image_error ("Cannot find image file `%s'", specified_file, Qnil);
8072 UNGCPRO;
8073 return 0;
8074 }
8075
8076 contents = slurp_file (XSTRING (file)->data, &size);
8077 if (contents == NULL)
8078 {
8079 image_error ("Error reading `%s'", file, Qnil);
8080 UNGCPRO;
8081 return 0;
8082 }
8083
8084 p = contents;
8085 end = contents + size;
8086 }
8087 else
8088 {
8089 Lisp_Object data;
8090 data = image_spec_value (img->spec, QCdata, NULL);
8091 p = XSTRING (data)->data;
8092 end = p + STRING_BYTES (XSTRING (data));
8093 }
8094
8095 /* Check magic number. */
8096 if (end - p < 2 || *p++ != 'P')
8097 {
8098 image_error ("Not a PBM image: `%s'", img->spec, Qnil);
8099 error:
8100 xfree (contents);
8101 UNGCPRO;
8102 return 0;
8103 }
8104
8105 switch (*p++)
8106 {
8107 case '1':
8108 raw_p = 0, type = PBM_MONO;
8109 break;
8110
8111 case '2':
8112 raw_p = 0, type = PBM_GRAY;
8113 break;
8114
8115 case '3':
8116 raw_p = 0, type = PBM_COLOR;
8117 break;
8118
8119 case '4':
8120 raw_p = 1, type = PBM_MONO;
8121 break;
8122
8123 case '5':
8124 raw_p = 1, type = PBM_GRAY;
8125 break;
8126
8127 case '6':
8128 raw_p = 1, type = PBM_COLOR;
8129 break;
8130
8131 default:
8132 image_error ("Not a PBM image: `%s'", img->spec, Qnil);
8133 goto error;
8134 }
8135
8136 /* Read width, height, maximum color-component. Characters
8137 starting with `#' up to the end of a line are ignored. */
8138 width = pbm_scan_number (&p, end);
8139 height = pbm_scan_number (&p, end);
8140
8141 if (type != PBM_MONO)
8142 {
8143 max_color_idx = pbm_scan_number (&p, end);
8144 if (raw_p && max_color_idx > 255)
8145 max_color_idx = 255;
8146 }
8147
8148 if (width < 0
8149 || height < 0
8150 || (type != PBM_MONO && max_color_idx < 0))
8151 goto error;
8152
8153 if (!x_create_x_image_and_pixmap (f, width, height, 0,
8154 &ximg, &img->pixmap))
8155 goto error;
8156
8157 /* Initialize the color hash table. */
8158 init_color_table ();
8159
8160 if (type == PBM_MONO)
8161 {
8162 int c = 0, g;
8163 struct image_keyword fmt[PBM_LAST];
8164 unsigned long fg = FRAME_FOREGROUND_PIXEL (f);
8165 unsigned long bg = FRAME_BACKGROUND_PIXEL (f);
8166
8167 /* Parse the image specification. */
8168 bcopy (pbm_format, fmt, sizeof fmt);
8169 parse_image_spec (img->spec, fmt, PBM_LAST, Qpbm);
8170
8171 /* Get foreground and background colors, maybe allocate colors. */
8172 if (fmt[PBM_FOREGROUND].count)
8173 fg = x_alloc_image_color (f, img, fmt[PBM_FOREGROUND].value, fg);
8174 if (fmt[PBM_BACKGROUND].count)
8175 bg = x_alloc_image_color (f, img, fmt[PBM_BACKGROUND].value, bg);
8176
8177 for (y = 0; y < height; ++y)
8178 for (x = 0; x < width; ++x)
8179 {
8180 if (raw_p)
8181 {
8182 if ((x & 7) == 0)
8183 c = *p++;
8184 g = c & 0x80;
8185 c <<= 1;
8186 }
8187 else
8188 g = pbm_scan_number (&p, end);
8189
8190 XPutPixel (ximg, x, y, g ? fg : bg);
8191 }
8192 }
8193 else
8194 {
8195 for (y = 0; y < height; ++y)
8196 for (x = 0; x < width; ++x)
8197 {
8198 int r, g, b;
8199
8200 if (type == PBM_GRAY)
8201 r = g = b = raw_p ? *p++ : pbm_scan_number (&p, end);
8202 else if (raw_p)
8203 {
8204 r = *p++;
8205 g = *p++;
8206 b = *p++;
8207 }
8208 else
8209 {
8210 r = pbm_scan_number (&p, end);
8211 g = pbm_scan_number (&p, end);
8212 b = pbm_scan_number (&p, end);
8213 }
8214
8215 if (r < 0 || g < 0 || b < 0)
8216 {
8217 xfree (ximg->data);
8218 ximg->data = NULL;
8219 XDestroyImage (ximg);
8220 image_error ("Invalid pixel value in image `%s'",
8221 img->spec, Qnil);
8222 goto error;
8223 }
8224
8225 /* RGB values are now in the range 0..max_color_idx.
8226 Scale this to the range 0..0xffff supported by X. */
8227 r = (double) r * 65535 / max_color_idx;
8228 g = (double) g * 65535 / max_color_idx;
8229 b = (double) b * 65535 / max_color_idx;
8230 XPutPixel (ximg, x, y, lookup_rgb_color (f, r, g, b));
8231 }
8232 }
8233
8234 /* Store in IMG->colors the colors allocated for the image, and
8235 free the color table. */
8236 img->colors = colors_in_color_table (&img->ncolors);
8237 free_color_table ();
8238
8239 /* Put the image into a pixmap. */
8240 x_put_x_image (f, ximg, img->pixmap, width, height);
8241 x_destroy_x_image (ximg);
8242
8243 img->width = width;
8244 img->height = height;
8245
8246 UNGCPRO;
8247 xfree (contents);
8248 return 1;
8249 }
8250
8251
8252 \f
8253 /***********************************************************************
8254 PNG
8255 ***********************************************************************/
8256
8257 #if HAVE_PNG
8258
8259 #include <png.h>
8260
8261 /* Function prototypes. */
8262
8263 static int png_image_p P_ ((Lisp_Object object));
8264 static int png_load P_ ((struct frame *f, struct image *img));
8265
8266 /* The symbol `png' identifying images of this type. */
8267
8268 Lisp_Object Qpng;
8269
8270 /* Indices of image specification fields in png_format, below. */
8271
8272 enum png_keyword_index
8273 {
8274 PNG_TYPE,
8275 PNG_DATA,
8276 PNG_FILE,
8277 PNG_ASCENT,
8278 PNG_MARGIN,
8279 PNG_RELIEF,
8280 PNG_ALGORITHM,
8281 PNG_HEURISTIC_MASK,
8282 PNG_MASK,
8283 PNG_LAST
8284 };
8285
8286 /* Vector of image_keyword structures describing the format
8287 of valid user-defined image specifications. */
8288
8289 static struct image_keyword png_format[PNG_LAST] =
8290 {
8291 {":type", IMAGE_SYMBOL_VALUE, 1},
8292 {":data", IMAGE_STRING_VALUE, 0},
8293 {":file", IMAGE_STRING_VALUE, 0},
8294 {":ascent", IMAGE_ASCENT_VALUE, 0},
8295 {":margin", IMAGE_POSITIVE_INTEGER_VALUE, 0},
8296 {":relief", IMAGE_INTEGER_VALUE, 0},
8297 {":algorithm", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
8298 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
8299 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0}
8300 };
8301
8302 /* Structure describing the image type `png'. */
8303
8304 static struct image_type png_type =
8305 {
8306 &Qpng,
8307 png_image_p,
8308 png_load,
8309 x_clear_image,
8310 NULL
8311 };
8312
8313
8314 /* Return non-zero if OBJECT is a valid PNG image specification. */
8315
8316 static int
8317 png_image_p (object)
8318 Lisp_Object object;
8319 {
8320 struct image_keyword fmt[PNG_LAST];
8321 bcopy (png_format, fmt, sizeof fmt);
8322
8323 if (!parse_image_spec (object, fmt, PNG_LAST, Qpng))
8324 return 0;
8325
8326 /* Must specify either the :data or :file keyword. */
8327 return fmt[PNG_FILE].count + fmt[PNG_DATA].count == 1;
8328 }
8329
8330
8331 /* Error and warning handlers installed when the PNG library
8332 is initialized. */
8333
8334 static void
8335 my_png_error (png_ptr, msg)
8336 png_struct *png_ptr;
8337 char *msg;
8338 {
8339 xassert (png_ptr != NULL);
8340 image_error ("PNG error: %s", build_string (msg), Qnil);
8341 longjmp (png_ptr->jmpbuf, 1);
8342 }
8343
8344
8345 static void
8346 my_png_warning (png_ptr, msg)
8347 png_struct *png_ptr;
8348 char *msg;
8349 {
8350 xassert (png_ptr != NULL);
8351 image_error ("PNG warning: %s", build_string (msg), Qnil);
8352 }
8353
8354 /* Memory source for PNG decoding. */
8355
8356 struct png_memory_storage
8357 {
8358 unsigned char *bytes; /* The data */
8359 size_t len; /* How big is it? */
8360 int index; /* Where are we? */
8361 };
8362
8363
8364 /* Function set as reader function when reading PNG image from memory.
8365 PNG_PTR is a pointer to the PNG control structure. Copy LENGTH
8366 bytes from the input to DATA. */
8367
8368 static void
8369 png_read_from_memory (png_ptr, data, length)
8370 png_structp png_ptr;
8371 png_bytep data;
8372 png_size_t length;
8373 {
8374 struct png_memory_storage *tbr
8375 = (struct png_memory_storage *) png_get_io_ptr (png_ptr);
8376
8377 if (length > tbr->len - tbr->index)
8378 png_error (png_ptr, "Read error");
8379
8380 bcopy (tbr->bytes + tbr->index, data, length);
8381 tbr->index = tbr->index + length;
8382 }
8383
8384 /* Load PNG image IMG for use on frame F. Value is non-zero if
8385 successful. */
8386
8387 static int
8388 png_load (f, img)
8389 struct frame *f;
8390 struct image *img;
8391 {
8392 Lisp_Object file, specified_file;
8393 Lisp_Object specified_data;
8394 int x, y, i;
8395 XImage *ximg, *mask_img = NULL;
8396 struct gcpro gcpro1;
8397 png_struct *png_ptr = NULL;
8398 png_info *info_ptr = NULL, *end_info = NULL;
8399 FILE *volatile fp = NULL;
8400 png_byte sig[8];
8401 png_byte * volatile pixels = NULL;
8402 png_byte ** volatile rows = NULL;
8403 png_uint_32 width, height;
8404 int bit_depth, color_type, interlace_type;
8405 png_byte channels;
8406 png_uint_32 row_bytes;
8407 int transparent_p;
8408 char *gamma_str;
8409 double screen_gamma, image_gamma;
8410 int intent;
8411 struct png_memory_storage tbr; /* Data to be read */
8412
8413 /* Find out what file to load. */
8414 specified_file = image_spec_value (img->spec, QCfile, NULL);
8415 specified_data = image_spec_value (img->spec, QCdata, NULL);
8416 file = Qnil;
8417 GCPRO1 (file);
8418
8419 if (NILP (specified_data))
8420 {
8421 file = x_find_image_file (specified_file);
8422 if (!STRINGP (file))
8423 {
8424 image_error ("Cannot find image file `%s'", specified_file, Qnil);
8425 UNGCPRO;
8426 return 0;
8427 }
8428
8429 /* Open the image file. */
8430 fp = fopen (XSTRING (file)->data, "rb");
8431 if (!fp)
8432 {
8433 image_error ("Cannot open image file `%s'", file, Qnil);
8434 UNGCPRO;
8435 fclose (fp);
8436 return 0;
8437 }
8438
8439 /* Check PNG signature. */
8440 if (fread (sig, 1, sizeof sig, fp) != sizeof sig
8441 || !png_check_sig (sig, sizeof sig))
8442 {
8443 image_error ("Not a PNG file: `%s'", file, Qnil);
8444 UNGCPRO;
8445 fclose (fp);
8446 return 0;
8447 }
8448 }
8449 else
8450 {
8451 /* Read from memory. */
8452 tbr.bytes = XSTRING (specified_data)->data;
8453 tbr.len = STRING_BYTES (XSTRING (specified_data));
8454 tbr.index = 0;
8455
8456 /* Check PNG signature. */
8457 if (tbr.len < sizeof sig
8458 || !png_check_sig (tbr.bytes, sizeof sig))
8459 {
8460 image_error ("Not a PNG image: `%s'", img->spec, Qnil);
8461 UNGCPRO;
8462 return 0;
8463 }
8464
8465 /* Need to skip past the signature. */
8466 tbr.bytes += sizeof (sig);
8467 }
8468
8469 /* Initialize read and info structs for PNG lib. */
8470 png_ptr = png_create_read_struct (PNG_LIBPNG_VER_STRING, NULL,
8471 my_png_error, my_png_warning);
8472 if (!png_ptr)
8473 {
8474 if (fp) fclose (fp);
8475 UNGCPRO;
8476 return 0;
8477 }
8478
8479 info_ptr = png_create_info_struct (png_ptr);
8480 if (!info_ptr)
8481 {
8482 png_destroy_read_struct (&png_ptr, NULL, NULL);
8483 if (fp) fclose (fp);
8484 UNGCPRO;
8485 return 0;
8486 }
8487
8488 end_info = png_create_info_struct (png_ptr);
8489 if (!end_info)
8490 {
8491 png_destroy_read_struct (&png_ptr, &info_ptr, NULL);
8492 if (fp) fclose (fp);
8493 UNGCPRO;
8494 return 0;
8495 }
8496
8497 /* Set error jump-back. We come back here when the PNG library
8498 detects an error. */
8499 if (setjmp (png_ptr->jmpbuf))
8500 {
8501 error:
8502 if (png_ptr)
8503 png_destroy_read_struct (&png_ptr, &info_ptr, &end_info);
8504 xfree (pixels);
8505 xfree (rows);
8506 if (fp) fclose (fp);
8507 UNGCPRO;
8508 return 0;
8509 }
8510
8511 /* Read image info. */
8512 if (!NILP (specified_data))
8513 png_set_read_fn (png_ptr, (void *) &tbr, png_read_from_memory);
8514 else
8515 png_init_io (png_ptr, fp);
8516
8517 png_set_sig_bytes (png_ptr, sizeof sig);
8518 png_read_info (png_ptr, info_ptr);
8519 png_get_IHDR (png_ptr, info_ptr, &width, &height, &bit_depth, &color_type,
8520 &interlace_type, NULL, NULL);
8521
8522 /* If image contains simply transparency data, we prefer to
8523 construct a clipping mask. */
8524 if (png_get_valid (png_ptr, info_ptr, PNG_INFO_tRNS))
8525 transparent_p = 1;
8526 else
8527 transparent_p = 0;
8528
8529 /* This function is easier to write if we only have to handle
8530 one data format: RGB or RGBA with 8 bits per channel. Let's
8531 transform other formats into that format. */
8532
8533 /* Strip more than 8 bits per channel. */
8534 if (bit_depth == 16)
8535 png_set_strip_16 (png_ptr);
8536
8537 /* Expand data to 24 bit RGB, or 8 bit grayscale, with alpha channel
8538 if available. */
8539 png_set_expand (png_ptr);
8540
8541 /* Convert grayscale images to RGB. */
8542 if (color_type == PNG_COLOR_TYPE_GRAY
8543 || color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
8544 png_set_gray_to_rgb (png_ptr);
8545
8546 /* The value 2.2 is a guess for PC monitors from PNG example.c. */
8547 gamma_str = getenv ("SCREEN_GAMMA");
8548 screen_gamma = gamma_str ? atof (gamma_str) : 2.2;
8549
8550 /* Tell the PNG lib to handle gamma correction for us. */
8551
8552 #if defined(PNG_READ_sRGB_SUPPORTED) || defined(PNG_WRITE_sRGB_SUPPORTED)
8553 if (png_get_sRGB (png_ptr, info_ptr, &intent))
8554 /* There is a special chunk in the image specifying the gamma. */
8555 png_set_sRGB (png_ptr, info_ptr, intent);
8556 else
8557 #endif
8558 if (png_get_gAMA (png_ptr, info_ptr, &image_gamma))
8559 /* Image contains gamma information. */
8560 png_set_gamma (png_ptr, screen_gamma, image_gamma);
8561 else
8562 /* Use a default of 0.5 for the image gamma. */
8563 png_set_gamma (png_ptr, screen_gamma, 0.5);
8564
8565 /* Handle alpha channel by combining the image with a background
8566 color. Do this only if a real alpha channel is supplied. For
8567 simple transparency, we prefer a clipping mask. */
8568 if (!transparent_p)
8569 {
8570 png_color_16 *image_background;
8571
8572 if (png_get_bKGD (png_ptr, info_ptr, &image_background))
8573 /* Image contains a background color with which to
8574 combine the image. */
8575 png_set_background (png_ptr, image_background,
8576 PNG_BACKGROUND_GAMMA_FILE, 1, 1.0);
8577 else
8578 {
8579 /* Image does not contain a background color with which
8580 to combine the image data via an alpha channel. Use
8581 the frame's background instead. */
8582 XColor color;
8583 Colormap cmap;
8584 png_color_16 frame_background;
8585
8586 cmap = FRAME_X_COLORMAP (f);
8587 color.pixel = FRAME_BACKGROUND_PIXEL (f);
8588 x_query_color (f, &color);
8589
8590 bzero (&frame_background, sizeof frame_background);
8591 frame_background.red = color.red;
8592 frame_background.green = color.green;
8593 frame_background.blue = color.blue;
8594
8595 png_set_background (png_ptr, &frame_background,
8596 PNG_BACKGROUND_GAMMA_SCREEN, 0, 1.0);
8597 }
8598 }
8599
8600 /* Update info structure. */
8601 png_read_update_info (png_ptr, info_ptr);
8602
8603 /* Get number of channels. Valid values are 1 for grayscale images
8604 and images with a palette, 2 for grayscale images with transparency
8605 information (alpha channel), 3 for RGB images, and 4 for RGB
8606 images with alpha channel, i.e. RGBA. If conversions above were
8607 sufficient we should only have 3 or 4 channels here. */
8608 channels = png_get_channels (png_ptr, info_ptr);
8609 xassert (channels == 3 || channels == 4);
8610
8611 /* Number of bytes needed for one row of the image. */
8612 row_bytes = png_get_rowbytes (png_ptr, info_ptr);
8613
8614 /* Allocate memory for the image. */
8615 pixels = (png_byte *) xmalloc (row_bytes * height * sizeof *pixels);
8616 rows = (png_byte **) xmalloc (height * sizeof *rows);
8617 for (i = 0; i < height; ++i)
8618 rows[i] = pixels + i * row_bytes;
8619
8620 /* Read the entire image. */
8621 png_read_image (png_ptr, rows);
8622 png_read_end (png_ptr, info_ptr);
8623 if (fp)
8624 {
8625 fclose (fp);
8626 fp = NULL;
8627 }
8628
8629 /* Create the X image and pixmap. */
8630 if (!x_create_x_image_and_pixmap (f, width, height, 0, &ximg,
8631 &img->pixmap))
8632 goto error;
8633
8634 /* Create an image and pixmap serving as mask if the PNG image
8635 contains an alpha channel. */
8636 if (channels == 4
8637 && !transparent_p
8638 && !x_create_x_image_and_pixmap (f, width, height, 1,
8639 &mask_img, &img->mask))
8640 {
8641 x_destroy_x_image (ximg);
8642 XFreePixmap (FRAME_X_DISPLAY (f), img->pixmap);
8643 img->pixmap = None;
8644 goto error;
8645 }
8646
8647 /* Fill the X image and mask from PNG data. */
8648 init_color_table ();
8649
8650 for (y = 0; y < height; ++y)
8651 {
8652 png_byte *p = rows[y];
8653
8654 for (x = 0; x < width; ++x)
8655 {
8656 unsigned r, g, b;
8657
8658 r = *p++ << 8;
8659 g = *p++ << 8;
8660 b = *p++ << 8;
8661 XPutPixel (ximg, x, y, lookup_rgb_color (f, r, g, b));
8662
8663 /* An alpha channel, aka mask channel, associates variable
8664 transparency with an image. Where other image formats
8665 support binary transparency---fully transparent or fully
8666 opaque---PNG allows up to 254 levels of partial transparency.
8667 The PNG library implements partial transparency by combining
8668 the image with a specified background color.
8669
8670 I'm not sure how to handle this here nicely: because the
8671 background on which the image is displayed may change, for
8672 real alpha channel support, it would be necessary to create
8673 a new image for each possible background.
8674
8675 What I'm doing now is that a mask is created if we have
8676 boolean transparency information. Otherwise I'm using
8677 the frame's background color to combine the image with. */
8678
8679 if (channels == 4)
8680 {
8681 if (mask_img)
8682 XPutPixel (mask_img, x, y, *p > 0);
8683 ++p;
8684 }
8685 }
8686 }
8687
8688 /* Remember colors allocated for this image. */
8689 img->colors = colors_in_color_table (&img->ncolors);
8690 free_color_table ();
8691
8692 /* Clean up. */
8693 png_destroy_read_struct (&png_ptr, &info_ptr, &end_info);
8694 xfree (rows);
8695 xfree (pixels);
8696
8697 img->width = width;
8698 img->height = height;
8699
8700 /* Put the image into the pixmap, then free the X image and its buffer. */
8701 x_put_x_image (f, ximg, img->pixmap, width, height);
8702 x_destroy_x_image (ximg);
8703
8704 /* Same for the mask. */
8705 if (mask_img)
8706 {
8707 x_put_x_image (f, mask_img, img->mask, img->width, img->height);
8708 x_destroy_x_image (mask_img);
8709 }
8710
8711 UNGCPRO;
8712 return 1;
8713 }
8714
8715 #endif /* HAVE_PNG != 0 */
8716
8717
8718 \f
8719 /***********************************************************************
8720 JPEG
8721 ***********************************************************************/
8722
8723 #if HAVE_JPEG
8724
8725 /* Work around a warning about HAVE_STDLIB_H being redefined in
8726 jconfig.h. */
8727 #ifdef HAVE_STDLIB_H
8728 #define HAVE_STDLIB_H_1
8729 #undef HAVE_STDLIB_H
8730 #endif /* HAVE_STLIB_H */
8731
8732 #include <jpeglib.h>
8733 #include <jerror.h>
8734 #include <setjmp.h>
8735
8736 #ifdef HAVE_STLIB_H_1
8737 #define HAVE_STDLIB_H 1
8738 #endif
8739
8740 static int jpeg_image_p P_ ((Lisp_Object object));
8741 static int jpeg_load P_ ((struct frame *f, struct image *img));
8742
8743 /* The symbol `jpeg' identifying images of this type. */
8744
8745 Lisp_Object Qjpeg;
8746
8747 /* Indices of image specification fields in gs_format, below. */
8748
8749 enum jpeg_keyword_index
8750 {
8751 JPEG_TYPE,
8752 JPEG_DATA,
8753 JPEG_FILE,
8754 JPEG_ASCENT,
8755 JPEG_MARGIN,
8756 JPEG_RELIEF,
8757 JPEG_ALGORITHM,
8758 JPEG_HEURISTIC_MASK,
8759 JPEG_MASK,
8760 JPEG_LAST
8761 };
8762
8763 /* Vector of image_keyword structures describing the format
8764 of valid user-defined image specifications. */
8765
8766 static struct image_keyword jpeg_format[JPEG_LAST] =
8767 {
8768 {":type", IMAGE_SYMBOL_VALUE, 1},
8769 {":data", IMAGE_STRING_VALUE, 0},
8770 {":file", IMAGE_STRING_VALUE, 0},
8771 {":ascent", IMAGE_ASCENT_VALUE, 0},
8772 {":margin", IMAGE_POSITIVE_INTEGER_VALUE, 0},
8773 {":relief", IMAGE_INTEGER_VALUE, 0},
8774 {":algorithm", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
8775 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
8776 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0}
8777 };
8778
8779 /* Structure describing the image type `jpeg'. */
8780
8781 static struct image_type jpeg_type =
8782 {
8783 &Qjpeg,
8784 jpeg_image_p,
8785 jpeg_load,
8786 x_clear_image,
8787 NULL
8788 };
8789
8790
8791 /* Return non-zero if OBJECT is a valid JPEG image specification. */
8792
8793 static int
8794 jpeg_image_p (object)
8795 Lisp_Object object;
8796 {
8797 struct image_keyword fmt[JPEG_LAST];
8798
8799 bcopy (jpeg_format, fmt, sizeof fmt);
8800
8801 if (!parse_image_spec (object, fmt, JPEG_LAST, Qjpeg))
8802 return 0;
8803
8804 /* Must specify either the :data or :file keyword. */
8805 return fmt[JPEG_FILE].count + fmt[JPEG_DATA].count == 1;
8806 }
8807
8808
8809 struct my_jpeg_error_mgr
8810 {
8811 struct jpeg_error_mgr pub;
8812 jmp_buf setjmp_buffer;
8813 };
8814
8815
8816 static void
8817 my_error_exit (cinfo)
8818 j_common_ptr cinfo;
8819 {
8820 struct my_jpeg_error_mgr *mgr = (struct my_jpeg_error_mgr *) cinfo->err;
8821 longjmp (mgr->setjmp_buffer, 1);
8822 }
8823
8824
8825 /* Init source method for JPEG data source manager. Called by
8826 jpeg_read_header() before any data is actually read. See
8827 libjpeg.doc from the JPEG lib distribution. */
8828
8829 static void
8830 our_init_source (cinfo)
8831 j_decompress_ptr cinfo;
8832 {
8833 }
8834
8835
8836 /* Fill input buffer method for JPEG data source manager. Called
8837 whenever more data is needed. We read the whole image in one step,
8838 so this only adds a fake end of input marker at the end. */
8839
8840 static boolean
8841 our_fill_input_buffer (cinfo)
8842 j_decompress_ptr cinfo;
8843 {
8844 /* Insert a fake EOI marker. */
8845 struct jpeg_source_mgr *src = cinfo->src;
8846 static JOCTET buffer[2];
8847
8848 buffer[0] = (JOCTET) 0xFF;
8849 buffer[1] = (JOCTET) JPEG_EOI;
8850
8851 src->next_input_byte = buffer;
8852 src->bytes_in_buffer = 2;
8853 return TRUE;
8854 }
8855
8856
8857 /* Method to skip over NUM_BYTES bytes in the image data. CINFO->src
8858 is the JPEG data source manager. */
8859
8860 static void
8861 our_skip_input_data (cinfo, num_bytes)
8862 j_decompress_ptr cinfo;
8863 long num_bytes;
8864 {
8865 struct jpeg_source_mgr *src = (struct jpeg_source_mgr *) cinfo->src;
8866
8867 if (src)
8868 {
8869 if (num_bytes > src->bytes_in_buffer)
8870 ERREXIT (cinfo, JERR_INPUT_EOF);
8871
8872 src->bytes_in_buffer -= num_bytes;
8873 src->next_input_byte += num_bytes;
8874 }
8875 }
8876
8877
8878 /* Method to terminate data source. Called by
8879 jpeg_finish_decompress() after all data has been processed. */
8880
8881 static void
8882 our_term_source (cinfo)
8883 j_decompress_ptr cinfo;
8884 {
8885 }
8886
8887
8888 /* Set up the JPEG lib for reading an image from DATA which contains
8889 LEN bytes. CINFO is the decompression info structure created for
8890 reading the image. */
8891
8892 static void
8893 jpeg_memory_src (cinfo, data, len)
8894 j_decompress_ptr cinfo;
8895 JOCTET *data;
8896 unsigned int len;
8897 {
8898 struct jpeg_source_mgr *src;
8899
8900 if (cinfo->src == NULL)
8901 {
8902 /* First time for this JPEG object? */
8903 cinfo->src = (struct jpeg_source_mgr *)
8904 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_PERMANENT,
8905 sizeof (struct jpeg_source_mgr));
8906 src = (struct jpeg_source_mgr *) cinfo->src;
8907 src->next_input_byte = data;
8908 }
8909
8910 src = (struct jpeg_source_mgr *) cinfo->src;
8911 src->init_source = our_init_source;
8912 src->fill_input_buffer = our_fill_input_buffer;
8913 src->skip_input_data = our_skip_input_data;
8914 src->resync_to_restart = jpeg_resync_to_restart; /* Use default method. */
8915 src->term_source = our_term_source;
8916 src->bytes_in_buffer = len;
8917 src->next_input_byte = data;
8918 }
8919
8920
8921 /* Load image IMG for use on frame F. Patterned after example.c
8922 from the JPEG lib. */
8923
8924 static int
8925 jpeg_load (f, img)
8926 struct frame *f;
8927 struct image *img;
8928 {
8929 struct jpeg_decompress_struct cinfo;
8930 struct my_jpeg_error_mgr mgr;
8931 Lisp_Object file, specified_file;
8932 Lisp_Object specified_data;
8933 FILE * volatile fp = NULL;
8934 JSAMPARRAY buffer;
8935 int row_stride, x, y;
8936 XImage *ximg = NULL;
8937 int rc;
8938 unsigned long *colors;
8939 int width, height;
8940 struct gcpro gcpro1;
8941
8942 /* Open the JPEG file. */
8943 specified_file = image_spec_value (img->spec, QCfile, NULL);
8944 specified_data = image_spec_value (img->spec, QCdata, NULL);
8945 file = Qnil;
8946 GCPRO1 (file);
8947
8948 if (NILP (specified_data))
8949 {
8950 file = x_find_image_file (specified_file);
8951 if (!STRINGP (file))
8952 {
8953 image_error ("Cannot find image file `%s'", specified_file, Qnil);
8954 UNGCPRO;
8955 return 0;
8956 }
8957
8958 fp = fopen (XSTRING (file)->data, "r");
8959 if (fp == NULL)
8960 {
8961 image_error ("Cannot open `%s'", file, Qnil);
8962 UNGCPRO;
8963 return 0;
8964 }
8965 }
8966
8967 /* Customize libjpeg's error handling to call my_error_exit when an
8968 error is detected. This function will perform a longjmp. */
8969 cinfo.err = jpeg_std_error (&mgr.pub);
8970 mgr.pub.error_exit = my_error_exit;
8971
8972 if ((rc = setjmp (mgr.setjmp_buffer)) != 0)
8973 {
8974 if (rc == 1)
8975 {
8976 /* Called from my_error_exit. Display a JPEG error. */
8977 char buffer[JMSG_LENGTH_MAX];
8978 cinfo.err->format_message ((j_common_ptr) &cinfo, buffer);
8979 image_error ("Error reading JPEG image `%s': %s", img->spec,
8980 build_string (buffer));
8981 }
8982
8983 /* Close the input file and destroy the JPEG object. */
8984 if (fp)
8985 fclose ((FILE *) fp);
8986 jpeg_destroy_decompress (&cinfo);
8987
8988 /* If we already have an XImage, free that. */
8989 x_destroy_x_image (ximg);
8990
8991 /* Free pixmap and colors. */
8992 x_clear_image (f, img);
8993
8994 UNGCPRO;
8995 return 0;
8996 }
8997
8998 /* Create the JPEG decompression object. Let it read from fp.
8999 Read the JPEG image header. */
9000 jpeg_create_decompress (&cinfo);
9001
9002 if (NILP (specified_data))
9003 jpeg_stdio_src (&cinfo, (FILE *) fp);
9004 else
9005 jpeg_memory_src (&cinfo, XSTRING (specified_data)->data,
9006 STRING_BYTES (XSTRING (specified_data)));
9007
9008 jpeg_read_header (&cinfo, TRUE);
9009
9010 /* Customize decompression so that color quantization will be used.
9011 Start decompression. */
9012 cinfo.quantize_colors = TRUE;
9013 jpeg_start_decompress (&cinfo);
9014 width = img->width = cinfo.output_width;
9015 height = img->height = cinfo.output_height;
9016
9017 /* Create X image and pixmap. */
9018 if (!x_create_x_image_and_pixmap (f, width, height, 0, &ximg, &img->pixmap))
9019 longjmp (mgr.setjmp_buffer, 2);
9020
9021 /* Allocate colors. When color quantization is used,
9022 cinfo.actual_number_of_colors has been set with the number of
9023 colors generated, and cinfo.colormap is a two-dimensional array
9024 of color indices in the range 0..cinfo.actual_number_of_colors.
9025 No more than 255 colors will be generated. */
9026 {
9027 int i, ir, ig, ib;
9028
9029 if (cinfo.out_color_components > 2)
9030 ir = 0, ig = 1, ib = 2;
9031 else if (cinfo.out_color_components > 1)
9032 ir = 0, ig = 1, ib = 0;
9033 else
9034 ir = 0, ig = 0, ib = 0;
9035
9036 /* Use the color table mechanism because it handles colors that
9037 cannot be allocated nicely. Such colors will be replaced with
9038 a default color, and we don't have to care about which colors
9039 can be freed safely, and which can't. */
9040 init_color_table ();
9041 colors = (unsigned long *) alloca (cinfo.actual_number_of_colors
9042 * sizeof *colors);
9043
9044 for (i = 0; i < cinfo.actual_number_of_colors; ++i)
9045 {
9046 /* Multiply RGB values with 255 because X expects RGB values
9047 in the range 0..0xffff. */
9048 int r = cinfo.colormap[ir][i] << 8;
9049 int g = cinfo.colormap[ig][i] << 8;
9050 int b = cinfo.colormap[ib][i] << 8;
9051 colors[i] = lookup_rgb_color (f, r, g, b);
9052 }
9053
9054 /* Remember those colors actually allocated. */
9055 img->colors = colors_in_color_table (&img->ncolors);
9056 free_color_table ();
9057 }
9058
9059 /* Read pixels. */
9060 row_stride = width * cinfo.output_components;
9061 buffer = cinfo.mem->alloc_sarray ((j_common_ptr) &cinfo, JPOOL_IMAGE,
9062 row_stride, 1);
9063 for (y = 0; y < height; ++y)
9064 {
9065 jpeg_read_scanlines (&cinfo, buffer, 1);
9066 for (x = 0; x < cinfo.output_width; ++x)
9067 XPutPixel (ximg, x, y, colors[buffer[0][x]]);
9068 }
9069
9070 /* Clean up. */
9071 jpeg_finish_decompress (&cinfo);
9072 jpeg_destroy_decompress (&cinfo);
9073 if (fp)
9074 fclose ((FILE *) fp);
9075
9076 /* Put the image into the pixmap. */
9077 x_put_x_image (f, ximg, img->pixmap, width, height);
9078 x_destroy_x_image (ximg);
9079 UNGCPRO;
9080 return 1;
9081 }
9082
9083 #endif /* HAVE_JPEG */
9084
9085
9086 \f
9087 /***********************************************************************
9088 TIFF
9089 ***********************************************************************/
9090
9091 #if HAVE_TIFF
9092
9093 #include <tiffio.h>
9094
9095 static int tiff_image_p P_ ((Lisp_Object object));
9096 static int tiff_load P_ ((struct frame *f, struct image *img));
9097
9098 /* The symbol `tiff' identifying images of this type. */
9099
9100 Lisp_Object Qtiff;
9101
9102 /* Indices of image specification fields in tiff_format, below. */
9103
9104 enum tiff_keyword_index
9105 {
9106 TIFF_TYPE,
9107 TIFF_DATA,
9108 TIFF_FILE,
9109 TIFF_ASCENT,
9110 TIFF_MARGIN,
9111 TIFF_RELIEF,
9112 TIFF_ALGORITHM,
9113 TIFF_HEURISTIC_MASK,
9114 TIFF_MASK,
9115 TIFF_LAST
9116 };
9117
9118 /* Vector of image_keyword structures describing the format
9119 of valid user-defined image specifications. */
9120
9121 static struct image_keyword tiff_format[TIFF_LAST] =
9122 {
9123 {":type", IMAGE_SYMBOL_VALUE, 1},
9124 {":data", IMAGE_STRING_VALUE, 0},
9125 {":file", IMAGE_STRING_VALUE, 0},
9126 {":ascent", IMAGE_ASCENT_VALUE, 0},
9127 {":margin", IMAGE_POSITIVE_INTEGER_VALUE, 0},
9128 {":relief", IMAGE_INTEGER_VALUE, 0},
9129 {":algorithm", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
9130 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
9131 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0}
9132 };
9133
9134 /* Structure describing the image type `tiff'. */
9135
9136 static struct image_type tiff_type =
9137 {
9138 &Qtiff,
9139 tiff_image_p,
9140 tiff_load,
9141 x_clear_image,
9142 NULL
9143 };
9144
9145
9146 /* Return non-zero if OBJECT is a valid TIFF image specification. */
9147
9148 static int
9149 tiff_image_p (object)
9150 Lisp_Object object;
9151 {
9152 struct image_keyword fmt[TIFF_LAST];
9153 bcopy (tiff_format, fmt, sizeof fmt);
9154
9155 if (!parse_image_spec (object, fmt, TIFF_LAST, Qtiff))
9156 return 0;
9157
9158 /* Must specify either the :data or :file keyword. */
9159 return fmt[TIFF_FILE].count + fmt[TIFF_DATA].count == 1;
9160 }
9161
9162
9163 /* Reading from a memory buffer for TIFF images Based on the PNG
9164 memory source, but we have to provide a lot of extra functions.
9165 Blah.
9166
9167 We really only need to implement read and seek, but I am not
9168 convinced that the TIFF library is smart enough not to destroy
9169 itself if we only hand it the function pointers we need to
9170 override. */
9171
9172 typedef struct
9173 {
9174 unsigned char *bytes;
9175 size_t len;
9176 int index;
9177 }
9178 tiff_memory_source;
9179
9180
9181 static size_t
9182 tiff_read_from_memory (data, buf, size)
9183 thandle_t data;
9184 tdata_t buf;
9185 tsize_t size;
9186 {
9187 tiff_memory_source *src = (tiff_memory_source *) data;
9188
9189 if (size > src->len - src->index)
9190 return (size_t) -1;
9191 bcopy (src->bytes + src->index, buf, size);
9192 src->index += size;
9193 return size;
9194 }
9195
9196
9197 static size_t
9198 tiff_write_from_memory (data, buf, size)
9199 thandle_t data;
9200 tdata_t buf;
9201 tsize_t size;
9202 {
9203 return (size_t) -1;
9204 }
9205
9206
9207 static toff_t
9208 tiff_seek_in_memory (data, off, whence)
9209 thandle_t data;
9210 toff_t off;
9211 int whence;
9212 {
9213 tiff_memory_source *src = (tiff_memory_source *) data;
9214 int idx;
9215
9216 switch (whence)
9217 {
9218 case SEEK_SET: /* Go from beginning of source. */
9219 idx = off;
9220 break;
9221
9222 case SEEK_END: /* Go from end of source. */
9223 idx = src->len + off;
9224 break;
9225
9226 case SEEK_CUR: /* Go from current position. */
9227 idx = src->index + off;
9228 break;
9229
9230 default: /* Invalid `whence'. */
9231 return -1;
9232 }
9233
9234 if (idx > src->len || idx < 0)
9235 return -1;
9236
9237 src->index = idx;
9238 return src->index;
9239 }
9240
9241
9242 static int
9243 tiff_close_memory (data)
9244 thandle_t data;
9245 {
9246 /* NOOP */
9247 return 0;
9248 }
9249
9250
9251 static int
9252 tiff_mmap_memory (data, pbase, psize)
9253 thandle_t data;
9254 tdata_t *pbase;
9255 toff_t *psize;
9256 {
9257 /* It is already _IN_ memory. */
9258 return 0;
9259 }
9260
9261
9262 static void
9263 tiff_unmap_memory (data, base, size)
9264 thandle_t data;
9265 tdata_t base;
9266 toff_t size;
9267 {
9268 /* We don't need to do this. */
9269 }
9270
9271
9272 static toff_t
9273 tiff_size_of_memory (data)
9274 thandle_t data;
9275 {
9276 return ((tiff_memory_source *) data)->len;
9277 }
9278
9279
9280 /* Load TIFF image IMG for use on frame F. Value is non-zero if
9281 successful. */
9282
9283 static int
9284 tiff_load (f, img)
9285 struct frame *f;
9286 struct image *img;
9287 {
9288 Lisp_Object file, specified_file;
9289 Lisp_Object specified_data;
9290 TIFF *tiff;
9291 int width, height, x, y;
9292 uint32 *buf;
9293 int rc;
9294 XImage *ximg;
9295 struct gcpro gcpro1;
9296 tiff_memory_source memsrc;
9297
9298 specified_file = image_spec_value (img->spec, QCfile, NULL);
9299 specified_data = image_spec_value (img->spec, QCdata, NULL);
9300 file = Qnil;
9301 GCPRO1 (file);
9302
9303 if (NILP (specified_data))
9304 {
9305 /* Read from a file */
9306 file = x_find_image_file (specified_file);
9307 if (!STRINGP (file))
9308 {
9309 image_error ("Cannot find image file `%s'", file, Qnil);
9310 UNGCPRO;
9311 return 0;
9312 }
9313
9314 /* Try to open the image file. */
9315 tiff = TIFFOpen (XSTRING (file)->data, "r");
9316 if (tiff == NULL)
9317 {
9318 image_error ("Cannot open `%s'", file, Qnil);
9319 UNGCPRO;
9320 return 0;
9321 }
9322 }
9323 else
9324 {
9325 /* Memory source! */
9326 memsrc.bytes = XSTRING (specified_data)->data;
9327 memsrc.len = STRING_BYTES (XSTRING (specified_data));
9328 memsrc.index = 0;
9329
9330 tiff = TIFFClientOpen ("memory_source", "r", &memsrc,
9331 (TIFFReadWriteProc) tiff_read_from_memory,
9332 (TIFFReadWriteProc) tiff_write_from_memory,
9333 tiff_seek_in_memory,
9334 tiff_close_memory,
9335 tiff_size_of_memory,
9336 tiff_mmap_memory,
9337 tiff_unmap_memory);
9338
9339 if (!tiff)
9340 {
9341 image_error ("Cannot open memory source for `%s'", img->spec, Qnil);
9342 UNGCPRO;
9343 return 0;
9344 }
9345 }
9346
9347 /* Get width and height of the image, and allocate a raster buffer
9348 of width x height 32-bit values. */
9349 TIFFGetField (tiff, TIFFTAG_IMAGEWIDTH, &width);
9350 TIFFGetField (tiff, TIFFTAG_IMAGELENGTH, &height);
9351 buf = (uint32 *) xmalloc (width * height * sizeof *buf);
9352
9353 rc = TIFFReadRGBAImage (tiff, width, height, buf, 0);
9354 TIFFClose (tiff);
9355 if (!rc)
9356 {
9357 image_error ("Error reading TIFF image `%s'", img->spec, Qnil);
9358 xfree (buf);
9359 UNGCPRO;
9360 return 0;
9361 }
9362
9363 /* Create the X image and pixmap. */
9364 if (!x_create_x_image_and_pixmap (f, width, height, 0, &ximg, &img->pixmap))
9365 {
9366 xfree (buf);
9367 UNGCPRO;
9368 return 0;
9369 }
9370
9371 /* Initialize the color table. */
9372 init_color_table ();
9373
9374 /* Process the pixel raster. Origin is in the lower-left corner. */
9375 for (y = 0; y < height; ++y)
9376 {
9377 uint32 *row = buf + y * width;
9378
9379 for (x = 0; x < width; ++x)
9380 {
9381 uint32 abgr = row[x];
9382 int r = TIFFGetR (abgr) << 8;
9383 int g = TIFFGetG (abgr) << 8;
9384 int b = TIFFGetB (abgr) << 8;
9385 XPutPixel (ximg, x, height - 1 - y, lookup_rgb_color (f, r, g, b));
9386 }
9387 }
9388
9389 /* Remember the colors allocated for the image. Free the color table. */
9390 img->colors = colors_in_color_table (&img->ncolors);
9391 free_color_table ();
9392
9393 /* Put the image into the pixmap, then free the X image and its buffer. */
9394 x_put_x_image (f, ximg, img->pixmap, width, height);
9395 x_destroy_x_image (ximg);
9396 xfree (buf);
9397
9398 img->width = width;
9399 img->height = height;
9400
9401 UNGCPRO;
9402 return 1;
9403 }
9404
9405 #endif /* HAVE_TIFF != 0 */
9406
9407
9408 \f
9409 /***********************************************************************
9410 GIF
9411 ***********************************************************************/
9412
9413 #if HAVE_GIF
9414
9415 #include <gif_lib.h>
9416
9417 static int gif_image_p P_ ((Lisp_Object object));
9418 static int gif_load P_ ((struct frame *f, struct image *img));
9419
9420 /* The symbol `gif' identifying images of this type. */
9421
9422 Lisp_Object Qgif;
9423
9424 /* Indices of image specification fields in gif_format, below. */
9425
9426 enum gif_keyword_index
9427 {
9428 GIF_TYPE,
9429 GIF_DATA,
9430 GIF_FILE,
9431 GIF_ASCENT,
9432 GIF_MARGIN,
9433 GIF_RELIEF,
9434 GIF_ALGORITHM,
9435 GIF_HEURISTIC_MASK,
9436 GIF_MASK,
9437 GIF_IMAGE,
9438 GIF_LAST
9439 };
9440
9441 /* Vector of image_keyword structures describing the format
9442 of valid user-defined image specifications. */
9443
9444 static struct image_keyword gif_format[GIF_LAST] =
9445 {
9446 {":type", IMAGE_SYMBOL_VALUE, 1},
9447 {":data", IMAGE_STRING_VALUE, 0},
9448 {":file", IMAGE_STRING_VALUE, 0},
9449 {":ascent", IMAGE_ASCENT_VALUE, 0},
9450 {":margin", IMAGE_POSITIVE_INTEGER_VALUE, 0},
9451 {":relief", IMAGE_INTEGER_VALUE, 0},
9452 {":algorithm", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
9453 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
9454 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
9455 {":image", IMAGE_NON_NEGATIVE_INTEGER_VALUE, 0}
9456 };
9457
9458 /* Structure describing the image type `gif'. */
9459
9460 static struct image_type gif_type =
9461 {
9462 &Qgif,
9463 gif_image_p,
9464 gif_load,
9465 x_clear_image,
9466 NULL
9467 };
9468
9469
9470 /* Return non-zero if OBJECT is a valid GIF image specification. */
9471
9472 static int
9473 gif_image_p (object)
9474 Lisp_Object object;
9475 {
9476 struct image_keyword fmt[GIF_LAST];
9477 bcopy (gif_format, fmt, sizeof fmt);
9478
9479 if (!parse_image_spec (object, fmt, GIF_LAST, Qgif))
9480 return 0;
9481
9482 /* Must specify either the :data or :file keyword. */
9483 return fmt[GIF_FILE].count + fmt[GIF_DATA].count == 1;
9484 }
9485
9486
9487 /* Reading a GIF image from memory
9488 Based on the PNG memory stuff to a certain extent. */
9489
9490 typedef struct
9491 {
9492 unsigned char *bytes;
9493 size_t len;
9494 int index;
9495 }
9496 gif_memory_source;
9497
9498
9499 /* Make the current memory source available to gif_read_from_memory.
9500 It's done this way because not all versions of libungif support
9501 a UserData field in the GifFileType structure. */
9502 static gif_memory_source *current_gif_memory_src;
9503
9504 static int
9505 gif_read_from_memory (file, buf, len)
9506 GifFileType *file;
9507 GifByteType *buf;
9508 int len;
9509 {
9510 gif_memory_source *src = current_gif_memory_src;
9511
9512 if (len > src->len - src->index)
9513 return -1;
9514
9515 bcopy (src->bytes + src->index, buf, len);
9516 src->index += len;
9517 return len;
9518 }
9519
9520
9521 /* Load GIF image IMG for use on frame F. Value is non-zero if
9522 successful. */
9523
9524 static int
9525 gif_load (f, img)
9526 struct frame *f;
9527 struct image *img;
9528 {
9529 Lisp_Object file, specified_file;
9530 Lisp_Object specified_data;
9531 int rc, width, height, x, y, i;
9532 XImage *ximg;
9533 ColorMapObject *gif_color_map;
9534 unsigned long pixel_colors[256];
9535 GifFileType *gif;
9536 struct gcpro gcpro1;
9537 Lisp_Object image;
9538 int ino, image_left, image_top, image_width, image_height;
9539 gif_memory_source memsrc;
9540 unsigned char *raster;
9541
9542 specified_file = image_spec_value (img->spec, QCfile, NULL);
9543 specified_data = image_spec_value (img->spec, QCdata, NULL);
9544 file = Qnil;
9545 GCPRO1 (file);
9546
9547 if (NILP (specified_data))
9548 {
9549 file = x_find_image_file (specified_file);
9550 if (!STRINGP (file))
9551 {
9552 image_error ("Cannot find image file `%s'", specified_file, Qnil);
9553 UNGCPRO;
9554 return 0;
9555 }
9556
9557 /* Open the GIF file. */
9558 gif = DGifOpenFileName (XSTRING (file)->data);
9559 if (gif == NULL)
9560 {
9561 image_error ("Cannot open `%s'", file, Qnil);
9562 UNGCPRO;
9563 return 0;
9564 }
9565 }
9566 else
9567 {
9568 /* Read from memory! */
9569 current_gif_memory_src = &memsrc;
9570 memsrc.bytes = XSTRING (specified_data)->data;
9571 memsrc.len = STRING_BYTES (XSTRING (specified_data));
9572 memsrc.index = 0;
9573
9574 gif = DGifOpen(&memsrc, gif_read_from_memory);
9575 if (!gif)
9576 {
9577 image_error ("Cannot open memory source `%s'", img->spec, Qnil);
9578 UNGCPRO;
9579 return 0;
9580 }
9581 }
9582
9583 /* Read entire contents. */
9584 rc = DGifSlurp (gif);
9585 if (rc == GIF_ERROR)
9586 {
9587 image_error ("Error reading `%s'", img->spec, Qnil);
9588 DGifCloseFile (gif);
9589 UNGCPRO;
9590 return 0;
9591 }
9592
9593 image = image_spec_value (img->spec, QCindex, NULL);
9594 ino = INTEGERP (image) ? XFASTINT (image) : 0;
9595 if (ino >= gif->ImageCount)
9596 {
9597 image_error ("Invalid image number `%s' in image `%s'",
9598 image, img->spec);
9599 DGifCloseFile (gif);
9600 UNGCPRO;
9601 return 0;
9602 }
9603
9604 width = img->width = gif->SWidth;
9605 height = img->height = gif->SHeight;
9606
9607 /* Create the X image and pixmap. */
9608 if (!x_create_x_image_and_pixmap (f, width, height, 0, &ximg, &img->pixmap))
9609 {
9610 DGifCloseFile (gif);
9611 UNGCPRO;
9612 return 0;
9613 }
9614
9615 /* Allocate colors. */
9616 gif_color_map = gif->SavedImages[ino].ImageDesc.ColorMap;
9617 if (!gif_color_map)
9618 gif_color_map = gif->SColorMap;
9619 init_color_table ();
9620 bzero (pixel_colors, sizeof pixel_colors);
9621
9622 for (i = 0; i < gif_color_map->ColorCount; ++i)
9623 {
9624 int r = gif_color_map->Colors[i].Red << 8;
9625 int g = gif_color_map->Colors[i].Green << 8;
9626 int b = gif_color_map->Colors[i].Blue << 8;
9627 pixel_colors[i] = lookup_rgb_color (f, r, g, b);
9628 }
9629
9630 img->colors = colors_in_color_table (&img->ncolors);
9631 free_color_table ();
9632
9633 /* Clear the part of the screen image that are not covered by
9634 the image from the GIF file. Full animated GIF support
9635 requires more than can be done here (see the gif89 spec,
9636 disposal methods). Let's simply assume that the part
9637 not covered by a sub-image is in the frame's background color. */
9638 image_top = gif->SavedImages[ino].ImageDesc.Top;
9639 image_left = gif->SavedImages[ino].ImageDesc.Left;
9640 image_width = gif->SavedImages[ino].ImageDesc.Width;
9641 image_height = gif->SavedImages[ino].ImageDesc.Height;
9642
9643 for (y = 0; y < image_top; ++y)
9644 for (x = 0; x < width; ++x)
9645 XPutPixel (ximg, x, y, FRAME_BACKGROUND_PIXEL (f));
9646
9647 for (y = image_top + image_height; y < height; ++y)
9648 for (x = 0; x < width; ++x)
9649 XPutPixel (ximg, x, y, FRAME_BACKGROUND_PIXEL (f));
9650
9651 for (y = image_top; y < image_top + image_height; ++y)
9652 {
9653 for (x = 0; x < image_left; ++x)
9654 XPutPixel (ximg, x, y, FRAME_BACKGROUND_PIXEL (f));
9655 for (x = image_left + image_width; x < width; ++x)
9656 XPutPixel (ximg, x, y, FRAME_BACKGROUND_PIXEL (f));
9657 }
9658
9659 /* Read the GIF image into the X image. We use a local variable
9660 `raster' here because RasterBits below is a char *, and invites
9661 problems with bytes >= 0x80. */
9662 raster = (unsigned char *) gif->SavedImages[ino].RasterBits;
9663
9664 if (gif->SavedImages[ino].ImageDesc.Interlace)
9665 {
9666 static int interlace_start[] = {0, 4, 2, 1};
9667 static int interlace_increment[] = {8, 8, 4, 2};
9668 int pass, inc;
9669 int row = interlace_start[0];
9670
9671 pass = 0;
9672
9673 for (y = 0; y < image_height; y++)
9674 {
9675 if (row >= image_height)
9676 {
9677 row = interlace_start[++pass];
9678 while (row >= image_height)
9679 row = interlace_start[++pass];
9680 }
9681
9682 for (x = 0; x < image_width; x++)
9683 {
9684 int i = raster[(y * image_width) + x];
9685 XPutPixel (ximg, x + image_left, row + image_top,
9686 pixel_colors[i]);
9687 }
9688
9689 row += interlace_increment[pass];
9690 }
9691 }
9692 else
9693 {
9694 for (y = 0; y < image_height; ++y)
9695 for (x = 0; x < image_width; ++x)
9696 {
9697 int i = raster[y * image_width + x];
9698 XPutPixel (ximg, x + image_left, y + image_top, pixel_colors[i]);
9699 }
9700 }
9701
9702 DGifCloseFile (gif);
9703
9704 /* Put the image into the pixmap, then free the X image and its buffer. */
9705 x_put_x_image (f, ximg, img->pixmap, width, height);
9706 x_destroy_x_image (ximg);
9707
9708 UNGCPRO;
9709 return 1;
9710 }
9711
9712 #endif /* HAVE_GIF != 0 */
9713
9714
9715 \f
9716 /***********************************************************************
9717 Ghostscript
9718 ***********************************************************************/
9719
9720 static int gs_image_p P_ ((Lisp_Object object));
9721 static int gs_load P_ ((struct frame *f, struct image *img));
9722 static void gs_clear_image P_ ((struct frame *f, struct image *img));
9723
9724 /* The symbol `postscript' identifying images of this type. */
9725
9726 Lisp_Object Qpostscript;
9727
9728 /* Keyword symbols. */
9729
9730 Lisp_Object QCloader, QCbounding_box, QCpt_width, QCpt_height;
9731
9732 /* Indices of image specification fields in gs_format, below. */
9733
9734 enum gs_keyword_index
9735 {
9736 GS_TYPE,
9737 GS_PT_WIDTH,
9738 GS_PT_HEIGHT,
9739 GS_FILE,
9740 GS_LOADER,
9741 GS_BOUNDING_BOX,
9742 GS_ASCENT,
9743 GS_MARGIN,
9744 GS_RELIEF,
9745 GS_ALGORITHM,
9746 GS_HEURISTIC_MASK,
9747 GS_MASK,
9748 GS_LAST
9749 };
9750
9751 /* Vector of image_keyword structures describing the format
9752 of valid user-defined image specifications. */
9753
9754 static struct image_keyword gs_format[GS_LAST] =
9755 {
9756 {":type", IMAGE_SYMBOL_VALUE, 1},
9757 {":pt-width", IMAGE_POSITIVE_INTEGER_VALUE, 1},
9758 {":pt-height", IMAGE_POSITIVE_INTEGER_VALUE, 1},
9759 {":file", IMAGE_STRING_VALUE, 1},
9760 {":loader", IMAGE_FUNCTION_VALUE, 0},
9761 {":bounding-box", IMAGE_DONT_CHECK_VALUE_TYPE, 1},
9762 {":ascent", IMAGE_ASCENT_VALUE, 0},
9763 {":margin", IMAGE_POSITIVE_INTEGER_VALUE, 0},
9764 {":relief", IMAGE_INTEGER_VALUE, 0},
9765 {":algorithm", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
9766 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
9767 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0}
9768 };
9769
9770 /* Structure describing the image type `ghostscript'. */
9771
9772 static struct image_type gs_type =
9773 {
9774 &Qpostscript,
9775 gs_image_p,
9776 gs_load,
9777 gs_clear_image,
9778 NULL
9779 };
9780
9781
9782 /* Free X resources of Ghostscript image IMG which is used on frame F. */
9783
9784 static void
9785 gs_clear_image (f, img)
9786 struct frame *f;
9787 struct image *img;
9788 {
9789 /* IMG->data.ptr_val may contain a recorded colormap. */
9790 xfree (img->data.ptr_val);
9791 x_clear_image (f, img);
9792 }
9793
9794
9795 /* Return non-zero if OBJECT is a valid Ghostscript image
9796 specification. */
9797
9798 static int
9799 gs_image_p (object)
9800 Lisp_Object object;
9801 {
9802 struct image_keyword fmt[GS_LAST];
9803 Lisp_Object tem;
9804 int i;
9805
9806 bcopy (gs_format, fmt, sizeof fmt);
9807
9808 if (!parse_image_spec (object, fmt, GS_LAST, Qpostscript))
9809 return 0;
9810
9811 /* Bounding box must be a list or vector containing 4 integers. */
9812 tem = fmt[GS_BOUNDING_BOX].value;
9813 if (CONSP (tem))
9814 {
9815 for (i = 0; i < 4; ++i, tem = XCDR (tem))
9816 if (!CONSP (tem) || !INTEGERP (XCAR (tem)))
9817 return 0;
9818 if (!NILP (tem))
9819 return 0;
9820 }
9821 else if (VECTORP (tem))
9822 {
9823 if (XVECTOR (tem)->size != 4)
9824 return 0;
9825 for (i = 0; i < 4; ++i)
9826 if (!INTEGERP (XVECTOR (tem)->contents[i]))
9827 return 0;
9828 }
9829 else
9830 return 0;
9831
9832 return 1;
9833 }
9834
9835
9836 /* Load Ghostscript image IMG for use on frame F. Value is non-zero
9837 if successful. */
9838
9839 static int
9840 gs_load (f, img)
9841 struct frame *f;
9842 struct image *img;
9843 {
9844 char buffer[100];
9845 Lisp_Object window_and_pixmap_id = Qnil, loader, pt_height, pt_width;
9846 struct gcpro gcpro1, gcpro2;
9847 Lisp_Object frame;
9848 double in_width, in_height;
9849 Lisp_Object pixel_colors = Qnil;
9850
9851 /* Compute pixel size of pixmap needed from the given size in the
9852 image specification. Sizes in the specification are in pt. 1 pt
9853 = 1/72 in, xdpi and ydpi are stored in the frame's X display
9854 info. */
9855 pt_width = image_spec_value (img->spec, QCpt_width, NULL);
9856 in_width = XFASTINT (pt_width) / 72.0;
9857 img->width = in_width * FRAME_X_DISPLAY_INFO (f)->resx;
9858 pt_height = image_spec_value (img->spec, QCpt_height, NULL);
9859 in_height = XFASTINT (pt_height) / 72.0;
9860 img->height = in_height * FRAME_X_DISPLAY_INFO (f)->resy;
9861
9862 /* Create the pixmap. */
9863 xassert (img->pixmap == None);
9864 img->pixmap = XCreatePixmap (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
9865 img->width, img->height,
9866 DefaultDepthOfScreen (FRAME_X_SCREEN (f)));
9867
9868 if (!img->pixmap)
9869 {
9870 image_error ("Unable to create pixmap for `%s'", img->spec, Qnil);
9871 return 0;
9872 }
9873
9874 /* Call the loader to fill the pixmap. It returns a process object
9875 if successful. We do not record_unwind_protect here because
9876 other places in redisplay like calling window scroll functions
9877 don't either. Let the Lisp loader use `unwind-protect' instead. */
9878 GCPRO2 (window_and_pixmap_id, pixel_colors);
9879
9880 sprintf (buffer, "%lu %lu",
9881 (unsigned long) FRAME_X_WINDOW (f),
9882 (unsigned long) img->pixmap);
9883 window_and_pixmap_id = build_string (buffer);
9884
9885 sprintf (buffer, "%lu %lu",
9886 FRAME_FOREGROUND_PIXEL (f),
9887 FRAME_BACKGROUND_PIXEL (f));
9888 pixel_colors = build_string (buffer);
9889
9890 XSETFRAME (frame, f);
9891 loader = image_spec_value (img->spec, QCloader, NULL);
9892 if (NILP (loader))
9893 loader = intern ("gs-load-image");
9894
9895 img->data.lisp_val = call6 (loader, frame, img->spec,
9896 make_number (img->width),
9897 make_number (img->height),
9898 window_and_pixmap_id,
9899 pixel_colors);
9900 UNGCPRO;
9901 return PROCESSP (img->data.lisp_val);
9902 }
9903
9904
9905 /* Kill the Ghostscript process that was started to fill PIXMAP on
9906 frame F. Called from XTread_socket when receiving an event
9907 telling Emacs that Ghostscript has finished drawing. */
9908
9909 void
9910 x_kill_gs_process (pixmap, f)
9911 Pixmap pixmap;
9912 struct frame *f;
9913 {
9914 struct image_cache *c = FRAME_X_IMAGE_CACHE (f);
9915 int class, i;
9916 struct image *img;
9917
9918 /* Find the image containing PIXMAP. */
9919 for (i = 0; i < c->used; ++i)
9920 if (c->images[i]->pixmap == pixmap)
9921 break;
9922
9923 /* Kill the GS process. We should have found PIXMAP in the image
9924 cache and its image should contain a process object. */
9925 xassert (i < c->used);
9926 img = c->images[i];
9927 xassert (PROCESSP (img->data.lisp_val));
9928 Fkill_process (img->data.lisp_val, Qnil);
9929 img->data.lisp_val = Qnil;
9930
9931 /* On displays with a mutable colormap, figure out the colors
9932 allocated for the image by looking at the pixels of an XImage for
9933 img->pixmap. */
9934 class = FRAME_X_VISUAL (f)->class;
9935 if (class != StaticColor && class != StaticGray && class != TrueColor)
9936 {
9937 XImage *ximg;
9938
9939 BLOCK_INPUT;
9940
9941 /* Try to get an XImage for img->pixmep. */
9942 ximg = XGetImage (FRAME_X_DISPLAY (f), img->pixmap,
9943 0, 0, img->width, img->height, ~0, ZPixmap);
9944 if (ximg)
9945 {
9946 int x, y;
9947
9948 /* Initialize the color table. */
9949 init_color_table ();
9950
9951 /* For each pixel of the image, look its color up in the
9952 color table. After having done so, the color table will
9953 contain an entry for each color used by the image. */
9954 for (y = 0; y < img->height; ++y)
9955 for (x = 0; x < img->width; ++x)
9956 {
9957 unsigned long pixel = XGetPixel (ximg, x, y);
9958 lookup_pixel_color (f, pixel);
9959 }
9960
9961 /* Record colors in the image. Free color table and XImage. */
9962 img->colors = colors_in_color_table (&img->ncolors);
9963 free_color_table ();
9964 XDestroyImage (ximg);
9965
9966 #if 0 /* This doesn't seem to be the case. If we free the colors
9967 here, we get a BadAccess later in x_clear_image when
9968 freeing the colors. */
9969 /* We have allocated colors once, but Ghostscript has also
9970 allocated colors on behalf of us. So, to get the
9971 reference counts right, free them once. */
9972 if (img->ncolors)
9973 x_free_colors (f, img->colors, img->ncolors);
9974 #endif
9975 }
9976 else
9977 image_error ("Cannot get X image of `%s'; colors will not be freed",
9978 img->spec, Qnil);
9979
9980 UNBLOCK_INPUT;
9981 }
9982 }
9983
9984
9985 \f
9986 /***********************************************************************
9987 Window properties
9988 ***********************************************************************/
9989
9990 DEFUN ("x-change-window-property", Fx_change_window_property,
9991 Sx_change_window_property, 2, 3, 0,
9992 "Change window property PROP to VALUE on the X window of FRAME.\n\
9993 PROP and VALUE must be strings. FRAME nil or omitted means use the\n\
9994 selected frame. Value is VALUE.")
9995 (prop, value, frame)
9996 Lisp_Object frame, prop, value;
9997 {
9998 struct frame *f = check_x_frame (frame);
9999 Atom prop_atom;
10000
10001 CHECK_STRING (prop, 1);
10002 CHECK_STRING (value, 2);
10003
10004 BLOCK_INPUT;
10005 prop_atom = XInternAtom (FRAME_X_DISPLAY (f), XSTRING (prop)->data, False);
10006 XChangeProperty (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
10007 prop_atom, XA_STRING, 8, PropModeReplace,
10008 XSTRING (value)->data, XSTRING (value)->size);
10009
10010 /* Make sure the property is set when we return. */
10011 XFlush (FRAME_X_DISPLAY (f));
10012 UNBLOCK_INPUT;
10013
10014 return value;
10015 }
10016
10017
10018 DEFUN ("x-delete-window-property", Fx_delete_window_property,
10019 Sx_delete_window_property, 1, 2, 0,
10020 "Remove window property PROP from X window of FRAME.\n\
10021 FRAME nil or omitted means use the selected frame. Value is PROP.")
10022 (prop, frame)
10023 Lisp_Object prop, frame;
10024 {
10025 struct frame *f = check_x_frame (frame);
10026 Atom prop_atom;
10027
10028 CHECK_STRING (prop, 1);
10029 BLOCK_INPUT;
10030 prop_atom = XInternAtom (FRAME_X_DISPLAY (f), XSTRING (prop)->data, False);
10031 XDeleteProperty (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), prop_atom);
10032
10033 /* Make sure the property is removed when we return. */
10034 XFlush (FRAME_X_DISPLAY (f));
10035 UNBLOCK_INPUT;
10036
10037 return prop;
10038 }
10039
10040
10041 DEFUN ("x-window-property", Fx_window_property, Sx_window_property,
10042 1, 2, 0,
10043 "Value is the value of window property PROP on FRAME.\n\
10044 If FRAME is nil or omitted, use the selected frame. Value is nil\n\
10045 if FRAME hasn't a property with name PROP or if PROP has no string\n\
10046 value.")
10047 (prop, frame)
10048 Lisp_Object prop, frame;
10049 {
10050 struct frame *f = check_x_frame (frame);
10051 Atom prop_atom;
10052 int rc;
10053 Lisp_Object prop_value = Qnil;
10054 char *tmp_data = NULL;
10055 Atom actual_type;
10056 int actual_format;
10057 unsigned long actual_size, bytes_remaining;
10058
10059 CHECK_STRING (prop, 1);
10060 BLOCK_INPUT;
10061 prop_atom = XInternAtom (FRAME_X_DISPLAY (f), XSTRING (prop)->data, False);
10062 rc = XGetWindowProperty (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
10063 prop_atom, 0, 0, False, XA_STRING,
10064 &actual_type, &actual_format, &actual_size,
10065 &bytes_remaining, (unsigned char **) &tmp_data);
10066 if (rc == Success)
10067 {
10068 int size = bytes_remaining;
10069
10070 XFree (tmp_data);
10071 tmp_data = NULL;
10072
10073 rc = XGetWindowProperty (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
10074 prop_atom, 0, bytes_remaining,
10075 False, XA_STRING,
10076 &actual_type, &actual_format,
10077 &actual_size, &bytes_remaining,
10078 (unsigned char **) &tmp_data);
10079 if (rc == Success)
10080 prop_value = make_string (tmp_data, size);
10081
10082 XFree (tmp_data);
10083 }
10084
10085 UNBLOCK_INPUT;
10086 return prop_value;
10087 }
10088
10089
10090 \f
10091 /***********************************************************************
10092 Busy cursor
10093 ***********************************************************************/
10094
10095 /* If non-null, an asynchronous timer that, when it expires, displays
10096 a busy cursor on all frames. */
10097
10098 static struct atimer *busy_cursor_atimer;
10099
10100 /* Non-zero means a busy cursor is currently shown. */
10101
10102 static int busy_cursor_shown_p;
10103
10104 /* Number of seconds to wait before displaying a busy cursor. */
10105
10106 static Lisp_Object Vbusy_cursor_delay;
10107
10108 /* Default number of seconds to wait before displaying a busy
10109 cursor. */
10110
10111 #define DEFAULT_BUSY_CURSOR_DELAY 1
10112
10113 /* Function prototypes. */
10114
10115 static void show_busy_cursor P_ ((struct atimer *));
10116 static void hide_busy_cursor P_ ((void));
10117
10118
10119 /* Cancel a currently active busy-cursor timer, and start a new one. */
10120
10121 void
10122 start_busy_cursor ()
10123 {
10124 EMACS_TIME delay;
10125 int secs, usecs = 0;
10126
10127 cancel_busy_cursor ();
10128
10129 if (INTEGERP (Vbusy_cursor_delay)
10130 && XINT (Vbusy_cursor_delay) > 0)
10131 secs = XFASTINT (Vbusy_cursor_delay);
10132 else if (FLOATP (Vbusy_cursor_delay)
10133 && XFLOAT_DATA (Vbusy_cursor_delay) > 0)
10134 {
10135 Lisp_Object tem;
10136 tem = Ftruncate (Vbusy_cursor_delay, Qnil);
10137 secs = XFASTINT (tem);
10138 usecs = (XFLOAT_DATA (Vbusy_cursor_delay) - secs) * 1000000;
10139 }
10140 else
10141 secs = DEFAULT_BUSY_CURSOR_DELAY;
10142
10143 EMACS_SET_SECS_USECS (delay, secs, usecs);
10144 busy_cursor_atimer = start_atimer (ATIMER_RELATIVE, delay,
10145 show_busy_cursor, NULL);
10146 }
10147
10148
10149 /* Cancel the busy cursor timer if active, hide a busy cursor if
10150 shown. */
10151
10152 void
10153 cancel_busy_cursor ()
10154 {
10155 if (busy_cursor_atimer)
10156 {
10157 cancel_atimer (busy_cursor_atimer);
10158 busy_cursor_atimer = NULL;
10159 }
10160
10161 if (busy_cursor_shown_p)
10162 hide_busy_cursor ();
10163 }
10164
10165
10166 /* Timer function of busy_cursor_atimer. TIMER is equal to
10167 busy_cursor_atimer.
10168
10169 Display a busy cursor on all frames by mapping the frames'
10170 busy_window. Set the busy_p flag in the frames' output_data.x
10171 structure to indicate that a busy cursor is shown on the
10172 frames. */
10173
10174 static void
10175 show_busy_cursor (timer)
10176 struct atimer *timer;
10177 {
10178 /* The timer implementation will cancel this timer automatically
10179 after this function has run. Set busy_cursor_atimer to null
10180 so that we know the timer doesn't have to be canceled. */
10181 busy_cursor_atimer = NULL;
10182
10183 if (!busy_cursor_shown_p)
10184 {
10185 Lisp_Object rest, frame;
10186
10187 BLOCK_INPUT;
10188
10189 FOR_EACH_FRAME (rest, frame)
10190 if (FRAME_X_P (XFRAME (frame)))
10191 {
10192 struct frame *f = XFRAME (frame);
10193
10194 f->output_data.x->busy_p = 1;
10195
10196 if (!f->output_data.x->busy_window)
10197 {
10198 unsigned long mask = CWCursor;
10199 XSetWindowAttributes attrs;
10200
10201 attrs.cursor = f->output_data.x->busy_cursor;
10202
10203 f->output_data.x->busy_window
10204 = XCreateWindow (FRAME_X_DISPLAY (f),
10205 FRAME_OUTER_WINDOW (f),
10206 0, 0, 32000, 32000, 0, 0,
10207 InputOnly,
10208 CopyFromParent,
10209 mask, &attrs);
10210 }
10211
10212 XMapRaised (FRAME_X_DISPLAY (f), f->output_data.x->busy_window);
10213 XFlush (FRAME_X_DISPLAY (f));
10214 }
10215
10216 busy_cursor_shown_p = 1;
10217 UNBLOCK_INPUT;
10218 }
10219 }
10220
10221
10222 /* Hide the busy cursor on all frames, if it is currently shown. */
10223
10224 static void
10225 hide_busy_cursor ()
10226 {
10227 if (busy_cursor_shown_p)
10228 {
10229 Lisp_Object rest, frame;
10230
10231 BLOCK_INPUT;
10232 FOR_EACH_FRAME (rest, frame)
10233 {
10234 struct frame *f = XFRAME (frame);
10235
10236 if (FRAME_X_P (f)
10237 /* Watch out for newly created frames. */
10238 && f->output_data.x->busy_window)
10239 {
10240 XUnmapWindow (FRAME_X_DISPLAY (f), f->output_data.x->busy_window);
10241 /* Sync here because XTread_socket looks at the busy_p flag
10242 that is reset to zero below. */
10243 XSync (FRAME_X_DISPLAY (f), False);
10244 f->output_data.x->busy_p = 0;
10245 }
10246 }
10247
10248 busy_cursor_shown_p = 0;
10249 UNBLOCK_INPUT;
10250 }
10251 }
10252
10253
10254 \f
10255 /***********************************************************************
10256 Tool tips
10257 ***********************************************************************/
10258
10259 static Lisp_Object x_create_tip_frame P_ ((struct x_display_info *,
10260 Lisp_Object));
10261
10262 /* The frame of a currently visible tooltip, or null. */
10263
10264 struct frame *tip_frame;
10265
10266 /* If non-nil, a timer started that hides the last tooltip when it
10267 fires. */
10268
10269 Lisp_Object tip_timer;
10270 Window tip_window;
10271
10272 /* Create a frame for a tooltip on the display described by DPYINFO.
10273 PARMS is a list of frame parameters. Value is the frame. */
10274
10275 static Lisp_Object
10276 x_create_tip_frame (dpyinfo, parms)
10277 struct x_display_info *dpyinfo;
10278 Lisp_Object parms;
10279 {
10280 struct frame *f;
10281 Lisp_Object frame, tem;
10282 Lisp_Object name;
10283 long window_prompting = 0;
10284 int width, height;
10285 int count = specpdl_ptr - specpdl;
10286 struct gcpro gcpro1, gcpro2, gcpro3;
10287 struct kboard *kb;
10288
10289 check_x ();
10290
10291 /* Use this general default value to start with until we know if
10292 this frame has a specified name. */
10293 Vx_resource_name = Vinvocation_name;
10294
10295 #ifdef MULTI_KBOARD
10296 kb = dpyinfo->kboard;
10297 #else
10298 kb = &the_only_kboard;
10299 #endif
10300
10301 /* Get the name of the frame to use for resource lookup. */
10302 name = x_get_arg (dpyinfo, parms, Qname, "name", "Name", RES_TYPE_STRING);
10303 if (!STRINGP (name)
10304 && !EQ (name, Qunbound)
10305 && !NILP (name))
10306 error ("Invalid frame name--not a string or nil");
10307 Vx_resource_name = name;
10308
10309 frame = Qnil;
10310 GCPRO3 (parms, name, frame);
10311 tip_frame = f = make_frame (1);
10312 XSETFRAME (frame, f);
10313 FRAME_CAN_HAVE_SCROLL_BARS (f) = 0;
10314
10315 f->output_method = output_x_window;
10316 f->output_data.x = (struct x_output *) xmalloc (sizeof (struct x_output));
10317 bzero (f->output_data.x, sizeof (struct x_output));
10318 f->output_data.x->icon_bitmap = -1;
10319 f->output_data.x->fontset = -1;
10320 f->output_data.x->scroll_bar_foreground_pixel = -1;
10321 f->output_data.x->scroll_bar_background_pixel = -1;
10322 f->icon_name = Qnil;
10323 FRAME_X_DISPLAY_INFO (f) = dpyinfo;
10324 #ifdef MULTI_KBOARD
10325 FRAME_KBOARD (f) = kb;
10326 #endif
10327 f->output_data.x->parent_desc = FRAME_X_DISPLAY_INFO (f)->root_window;
10328 f->output_data.x->explicit_parent = 0;
10329
10330 /* These colors will be set anyway later, but it's important
10331 to get the color reference counts right, so initialize them! */
10332 {
10333 Lisp_Object black;
10334 struct gcpro gcpro1;
10335
10336 black = build_string ("black");
10337 GCPRO1 (black);
10338 f->output_data.x->foreground_pixel
10339 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
10340 f->output_data.x->background_pixel
10341 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
10342 f->output_data.x->cursor_pixel
10343 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
10344 f->output_data.x->cursor_foreground_pixel
10345 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
10346 f->output_data.x->border_pixel
10347 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
10348 f->output_data.x->mouse_pixel
10349 = x_decode_color (f, black, BLACK_PIX_DEFAULT (f));
10350 UNGCPRO;
10351 }
10352
10353 /* Set the name; the functions to which we pass f expect the name to
10354 be set. */
10355 if (EQ (name, Qunbound) || NILP (name))
10356 {
10357 f->name = build_string (dpyinfo->x_id_name);
10358 f->explicit_name = 0;
10359 }
10360 else
10361 {
10362 f->name = name;
10363 f->explicit_name = 1;
10364 /* use the frame's title when getting resources for this frame. */
10365 specbind (Qx_resource_name, name);
10366 }
10367
10368 /* Extract the window parameters from the supplied values
10369 that are needed to determine window geometry. */
10370 {
10371 Lisp_Object font;
10372
10373 font = x_get_arg (dpyinfo, parms, Qfont, "font", "Font", RES_TYPE_STRING);
10374
10375 BLOCK_INPUT;
10376 /* First, try whatever font the caller has specified. */
10377 if (STRINGP (font))
10378 {
10379 tem = Fquery_fontset (font, Qnil);
10380 if (STRINGP (tem))
10381 font = x_new_fontset (f, XSTRING (tem)->data);
10382 else
10383 font = x_new_font (f, XSTRING (font)->data);
10384 }
10385
10386 /* Try out a font which we hope has bold and italic variations. */
10387 if (!STRINGP (font))
10388 font = x_new_font (f, "-adobe-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-1");
10389 if (!STRINGP (font))
10390 font = x_new_font (f, "-misc-fixed-medium-r-normal-*-*-140-*-*-c-*-iso8859-1");
10391 if (! STRINGP (font))
10392 font = x_new_font (f, "-*-*-medium-r-normal-*-*-140-*-*-c-*-iso8859-1");
10393 if (! STRINGP (font))
10394 /* This was formerly the first thing tried, but it finds too many fonts
10395 and takes too long. */
10396 font = x_new_font (f, "-*-*-medium-r-*-*-*-*-*-*-c-*-iso8859-1");
10397 /* If those didn't work, look for something which will at least work. */
10398 if (! STRINGP (font))
10399 font = x_new_font (f, "-*-fixed-*-*-*-*-*-140-*-*-c-*-iso8859-1");
10400 UNBLOCK_INPUT;
10401 if (! STRINGP (font))
10402 font = build_string ("fixed");
10403
10404 x_default_parameter (f, parms, Qfont, font,
10405 "font", "Font", RES_TYPE_STRING);
10406 }
10407
10408 x_default_parameter (f, parms, Qborder_width, make_number (2),
10409 "borderWidth", "BorderWidth", RES_TYPE_NUMBER);
10410
10411 /* This defaults to 2 in order to match xterm. We recognize either
10412 internalBorderWidth or internalBorder (which is what xterm calls
10413 it). */
10414 if (NILP (Fassq (Qinternal_border_width, parms)))
10415 {
10416 Lisp_Object value;
10417
10418 value = x_get_arg (dpyinfo, parms, Qinternal_border_width,
10419 "internalBorder", "internalBorder", RES_TYPE_NUMBER);
10420 if (! EQ (value, Qunbound))
10421 parms = Fcons (Fcons (Qinternal_border_width, value),
10422 parms);
10423 }
10424
10425 x_default_parameter (f, parms, Qinternal_border_width, make_number (1),
10426 "internalBorderWidth", "internalBorderWidth",
10427 RES_TYPE_NUMBER);
10428
10429 /* Also do the stuff which must be set before the window exists. */
10430 x_default_parameter (f, parms, Qforeground_color, build_string ("black"),
10431 "foreground", "Foreground", RES_TYPE_STRING);
10432 x_default_parameter (f, parms, Qbackground_color, build_string ("white"),
10433 "background", "Background", RES_TYPE_STRING);
10434 x_default_parameter (f, parms, Qmouse_color, build_string ("black"),
10435 "pointerColor", "Foreground", RES_TYPE_STRING);
10436 x_default_parameter (f, parms, Qcursor_color, build_string ("black"),
10437 "cursorColor", "Foreground", RES_TYPE_STRING);
10438 x_default_parameter (f, parms, Qborder_color, build_string ("black"),
10439 "borderColor", "BorderColor", RES_TYPE_STRING);
10440
10441 /* Init faces before x_default_parameter is called for scroll-bar
10442 parameters because that function calls x_set_scroll_bar_width,
10443 which calls change_frame_size, which calls Fset_window_buffer,
10444 which runs hooks, which call Fvertical_motion. At the end, we
10445 end up in init_iterator with a null face cache, which should not
10446 happen. */
10447 init_frame_faces (f);
10448
10449 f->output_data.x->parent_desc = FRAME_X_DISPLAY_INFO (f)->root_window;
10450 window_prompting = x_figure_window_size (f, parms);
10451
10452 if (window_prompting & XNegative)
10453 {
10454 if (window_prompting & YNegative)
10455 f->output_data.x->win_gravity = SouthEastGravity;
10456 else
10457 f->output_data.x->win_gravity = NorthEastGravity;
10458 }
10459 else
10460 {
10461 if (window_prompting & YNegative)
10462 f->output_data.x->win_gravity = SouthWestGravity;
10463 else
10464 f->output_data.x->win_gravity = NorthWestGravity;
10465 }
10466
10467 f->output_data.x->size_hint_flags = window_prompting;
10468 {
10469 XSetWindowAttributes attrs;
10470 unsigned long mask;
10471
10472 BLOCK_INPUT;
10473 mask = CWBackPixel | CWOverrideRedirect | CWEventMask;
10474 if (DoesSaveUnders (dpyinfo->screen))
10475 mask |= CWSaveUnder;
10476
10477 /* Window managers look at the override-redirect flag to determine
10478 whether or net to give windows a decoration (Xlib spec, chapter
10479 3.2.8). */
10480 attrs.override_redirect = True;
10481 attrs.save_under = True;
10482 attrs.background_pixel = FRAME_BACKGROUND_PIXEL (f);
10483 /* Arrange for getting MapNotify and UnmapNotify events. */
10484 attrs.event_mask = StructureNotifyMask;
10485 tip_window
10486 = FRAME_X_WINDOW (f)
10487 = XCreateWindow (FRAME_X_DISPLAY (f),
10488 FRAME_X_DISPLAY_INFO (f)->root_window,
10489 /* x, y, width, height */
10490 0, 0, 1, 1,
10491 /* Border. */
10492 1,
10493 CopyFromParent, InputOutput, CopyFromParent,
10494 mask, &attrs);
10495 UNBLOCK_INPUT;
10496 }
10497
10498 x_make_gc (f);
10499
10500 x_default_parameter (f, parms, Qauto_raise, Qnil,
10501 "autoRaise", "AutoRaiseLower", RES_TYPE_BOOLEAN);
10502 x_default_parameter (f, parms, Qauto_lower, Qnil,
10503 "autoLower", "AutoRaiseLower", RES_TYPE_BOOLEAN);
10504 x_default_parameter (f, parms, Qcursor_type, Qbox,
10505 "cursorType", "CursorType", RES_TYPE_SYMBOL);
10506
10507 /* Dimensions, especially f->height, must be done via change_frame_size.
10508 Change will not be effected unless different from the current
10509 f->height. */
10510 width = f->width;
10511 height = f->height;
10512 f->height = 0;
10513 SET_FRAME_WIDTH (f, 0);
10514 change_frame_size (f, height, width, 1, 0, 0);
10515
10516 f->no_split = 1;
10517
10518 UNGCPRO;
10519
10520 /* It is now ok to make the frame official even if we get an error
10521 below. And the frame needs to be on Vframe_list or making it
10522 visible won't work. */
10523 Vframe_list = Fcons (frame, Vframe_list);
10524
10525 /* Now that the frame is official, it counts as a reference to
10526 its display. */
10527 FRAME_X_DISPLAY_INFO (f)->reference_count++;
10528
10529 return unbind_to (count, frame);
10530 }
10531
10532
10533 DEFUN ("x-show-tip", Fx_show_tip, Sx_show_tip, 1, 6, 0,
10534 "Show STRING in a \"tooltip\" window on frame FRAME.\n\
10535 A tooltip window is a small X window displaying a string.\n\
10536 \n\
10537 FRAME nil or omitted means use the selected frame.\n\
10538 \n\
10539 PARMS is an optional list of frame parameters which can be\n\
10540 used to change the tooltip's appearance.\n\
10541 \n\
10542 Automatically hide the tooltip after TIMEOUT seconds.\n\
10543 TIMEOUT nil means use the default timeout of 5 seconds.\n\
10544 \n\
10545 If the list of frame parameters PARAMS contains a `left' parameters,\n\
10546 the tooltip is displayed at that x-position. Otherwise it is\n\
10547 displayed at the mouse position, with offset DX added (default is 5 if\n\
10548 DX isn't specified). Likewise for the y-position; if a `top' frame\n\
10549 parameter is specified, it determines the y-position of the tooltip\n\
10550 window, otherwise it is displayed at the mouse position, with offset\n\
10551 DY added (default is -10).")
10552 (string, frame, parms, timeout, dx, dy)
10553 Lisp_Object string, frame, parms, timeout, dx, dy;
10554 {
10555 struct frame *f;
10556 struct window *w;
10557 Window root, child;
10558 Lisp_Object buffer, top, left;
10559 struct buffer *old_buffer;
10560 struct text_pos pos;
10561 int i, width, height;
10562 int root_x, root_y, win_x, win_y;
10563 unsigned pmask;
10564 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
10565 int old_windows_or_buffers_changed = windows_or_buffers_changed;
10566 int count = specpdl_ptr - specpdl;
10567
10568 specbind (Qinhibit_redisplay, Qt);
10569
10570 GCPRO4 (string, parms, frame, timeout);
10571
10572 CHECK_STRING (string, 0);
10573 f = check_x_frame (frame);
10574 if (NILP (timeout))
10575 timeout = make_number (5);
10576 else
10577 CHECK_NATNUM (timeout, 2);
10578
10579 if (NILP (dx))
10580 dx = make_number (5);
10581 else
10582 CHECK_NUMBER (dx, 5);
10583
10584 if (NILP (dy))
10585 dy = make_number (-10);
10586 else
10587 CHECK_NUMBER (dy, 6);
10588
10589 /* Hide a previous tip, if any. */
10590 Fx_hide_tip ();
10591
10592 /* Add default values to frame parameters. */
10593 if (NILP (Fassq (Qname, parms)))
10594 parms = Fcons (Fcons (Qname, build_string ("tooltip")), parms);
10595 if (NILP (Fassq (Qinternal_border_width, parms)))
10596 parms = Fcons (Fcons (Qinternal_border_width, make_number (3)), parms);
10597 if (NILP (Fassq (Qborder_width, parms)))
10598 parms = Fcons (Fcons (Qborder_width, make_number (1)), parms);
10599 if (NILP (Fassq (Qborder_color, parms)))
10600 parms = Fcons (Fcons (Qborder_color, build_string ("lightyellow")), parms);
10601 if (NILP (Fassq (Qbackground_color, parms)))
10602 parms = Fcons (Fcons (Qbackground_color, build_string ("lightyellow")),
10603 parms);
10604
10605 /* Create a frame for the tooltip, and record it in the global
10606 variable tip_frame. */
10607 frame = x_create_tip_frame (FRAME_X_DISPLAY_INFO (f), parms);
10608 tip_frame = f = XFRAME (frame);
10609
10610 /* Set up the frame's root window. Currently we use a size of 80
10611 columns x 40 lines. If someone wants to show a larger tip, he
10612 will loose. I don't think this is a realistic case. */
10613 w = XWINDOW (FRAME_ROOT_WINDOW (f));
10614 w->left = w->top = make_number (0);
10615 w->width = make_number (80);
10616 w->height = make_number (40);
10617 adjust_glyphs (f);
10618 w->pseudo_window_p = 1;
10619
10620 /* Display the tooltip text in a temporary buffer. */
10621 buffer = Fget_buffer_create (build_string (" *tip*"));
10622 Fset_window_buffer (FRAME_ROOT_WINDOW (f), buffer);
10623 old_buffer = current_buffer;
10624 set_buffer_internal_1 (XBUFFER (buffer));
10625 Ferase_buffer ();
10626 Finsert (1, &string);
10627 clear_glyph_matrix (w->desired_matrix);
10628 clear_glyph_matrix (w->current_matrix);
10629 SET_TEXT_POS (pos, BEGV, BEGV_BYTE);
10630 try_window (FRAME_ROOT_WINDOW (f), pos);
10631
10632 /* Compute width and height of the tooltip. */
10633 width = height = 0;
10634 for (i = 0; i < w->desired_matrix->nrows; ++i)
10635 {
10636 struct glyph_row *row = &w->desired_matrix->rows[i];
10637 struct glyph *last;
10638 int row_width;
10639
10640 /* Stop at the first empty row at the end. */
10641 if (!row->enabled_p || !row->displays_text_p)
10642 break;
10643
10644 /* Let the row go over the full width of the frame. */
10645 row->full_width_p = 1;
10646
10647 /* There's a glyph at the end of rows that is used to place
10648 the cursor there. Don't include the width of this glyph. */
10649 if (row->used[TEXT_AREA])
10650 {
10651 last = &row->glyphs[TEXT_AREA][row->used[TEXT_AREA] - 1];
10652 row_width = row->pixel_width - last->pixel_width;
10653 }
10654 else
10655 row_width = row->pixel_width;
10656
10657 height += row->height;
10658 width = max (width, row_width);
10659 }
10660
10661 /* Add the frame's internal border to the width and height the X
10662 window should have. */
10663 height += 2 * FRAME_INTERNAL_BORDER_WIDTH (f);
10664 width += 2 * FRAME_INTERNAL_BORDER_WIDTH (f);
10665
10666 /* User-specified position? */
10667 left = Fcdr (Fassq (Qleft, parms));
10668 top = Fcdr (Fassq (Qtop, parms));
10669
10670 /* Move the tooltip window where the mouse pointer is. Resize and
10671 show it. */
10672 BLOCK_INPUT;
10673 XQueryPointer (FRAME_X_DISPLAY (f), FRAME_X_DISPLAY_INFO (f)->root_window,
10674 &root, &child, &root_x, &root_y, &win_x, &win_y, &pmask);
10675 UNBLOCK_INPUT;
10676
10677 root_x += XINT (dx);
10678 root_y += XINT (dy);
10679
10680 if (INTEGERP (left))
10681 root_x = XINT (left);
10682 if (INTEGERP (top))
10683 root_y = XINT (top);
10684
10685 BLOCK_INPUT;
10686 XMoveResizeWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
10687 root_x, root_y - height, width, height);
10688 XMapRaised (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
10689 UNBLOCK_INPUT;
10690
10691 /* Draw into the window. */
10692 w->must_be_updated_p = 1;
10693 update_single_window (w, 1);
10694
10695 /* Restore original current buffer. */
10696 set_buffer_internal_1 (old_buffer);
10697 windows_or_buffers_changed = old_windows_or_buffers_changed;
10698
10699 /* Let the tip disappear after timeout seconds. */
10700 tip_timer = call3 (intern ("run-at-time"), timeout, Qnil,
10701 intern ("x-hide-tip"));
10702
10703 UNGCPRO;
10704 return unbind_to (count, Qnil);
10705 }
10706
10707
10708 DEFUN ("x-hide-tip", Fx_hide_tip, Sx_hide_tip, 0, 0, 0,
10709 "Hide the current tooltip window, if there is any.\n\
10710 Value is t is tooltip was open, nil otherwise.")
10711 ()
10712 {
10713 int count = specpdl_ptr - specpdl;
10714 int deleted_p = 0;
10715
10716 specbind (Qinhibit_redisplay, Qt);
10717
10718 if (!NILP (tip_timer))
10719 {
10720 call1 (intern ("cancel-timer"), tip_timer);
10721 tip_timer = Qnil;
10722 }
10723
10724 if (tip_frame)
10725 {
10726 Lisp_Object frame;
10727
10728 XSETFRAME (frame, tip_frame);
10729 Fdelete_frame (frame, Qt);
10730 tip_frame = NULL;
10731 deleted_p = 1;
10732
10733 #ifdef USE_LUCID
10734 /* Bloodcurdling hack alert: The Lucid menu bar widget's
10735 redisplay procedure is not called when a tip frame over menu
10736 items is unmapped. Redisplay the menu manually... */
10737 {
10738 struct frame *f = SELECTED_FRAME ();
10739 Widget w = f->output_data.x->menubar_widget;
10740 extern void xlwmenu_redisplay P_ ((Widget));
10741
10742 if (!DoesSaveUnders (FRAME_X_DISPLAY_INFO (f)->screen)
10743 && w != None)
10744 {
10745 BLOCK_INPUT;
10746 xlwmenu_redisplay (w);
10747 UNBLOCK_INPUT;
10748 }
10749 }
10750 #endif /* USE_LUCID */
10751 }
10752
10753 return unbind_to (count, deleted_p ? Qt : Qnil);
10754 }
10755
10756
10757 \f
10758 /***********************************************************************
10759 File selection dialog
10760 ***********************************************************************/
10761
10762 #ifdef USE_MOTIF
10763
10764 /* Callback for "OK" and "Cancel" on file selection dialog. */
10765
10766 static void
10767 file_dialog_cb (widget, client_data, call_data)
10768 Widget widget;
10769 XtPointer call_data, client_data;
10770 {
10771 int *result = (int *) client_data;
10772 XmAnyCallbackStruct *cb = (XmAnyCallbackStruct *) call_data;
10773 *result = cb->reason;
10774 }
10775
10776
10777 DEFUN ("x-file-dialog", Fx_file_dialog, Sx_file_dialog, 2, 4, 0,
10778 "Read file name, prompting with PROMPT in directory DIR.\n\
10779 Use a file selection dialog.\n\
10780 Select DEFAULT-FILENAME in the dialog's file selection box, if\n\
10781 specified. Don't let the user enter a file name in the file\n\
10782 selection dialog's entry field, if MUSTMATCH is non-nil.")
10783 (prompt, dir, default_filename, mustmatch)
10784 Lisp_Object prompt, dir, default_filename, mustmatch;
10785 {
10786 int result;
10787 struct frame *f = SELECTED_FRAME ();
10788 Lisp_Object file = Qnil;
10789 Widget dialog, text, list, help;
10790 Arg al[10];
10791 int ac = 0;
10792 extern XtAppContext Xt_app_con;
10793 char *title;
10794 XmString dir_xmstring, pattern_xmstring;
10795 int popup_activated_flag;
10796 int count = specpdl_ptr - specpdl;
10797 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
10798
10799 GCPRO5 (prompt, dir, default_filename, mustmatch, file);
10800 CHECK_STRING (prompt, 0);
10801 CHECK_STRING (dir, 1);
10802
10803 /* Prevent redisplay. */
10804 specbind (Qinhibit_redisplay, Qt);
10805
10806 BLOCK_INPUT;
10807
10808 /* Create the dialog with PROMPT as title, using DIR as initial
10809 directory and using "*" as pattern. */
10810 dir = Fexpand_file_name (dir, Qnil);
10811 dir_xmstring = XmStringCreateLocalized (XSTRING (dir)->data);
10812 pattern_xmstring = XmStringCreateLocalized ("*");
10813
10814 XtSetArg (al[ac], XmNtitle, XSTRING (prompt)->data); ++ac;
10815 XtSetArg (al[ac], XmNdirectory, dir_xmstring); ++ac;
10816 XtSetArg (al[ac], XmNpattern, pattern_xmstring); ++ac;
10817 XtSetArg (al[ac], XmNresizePolicy, XmRESIZE_GROW); ++ac;
10818 XtSetArg (al[ac], XmNdialogStyle, XmDIALOG_APPLICATION_MODAL); ++ac;
10819 dialog = XmCreateFileSelectionDialog (f->output_data.x->widget,
10820 "fsb", al, ac);
10821 XmStringFree (dir_xmstring);
10822 XmStringFree (pattern_xmstring);
10823
10824 /* Add callbacks for OK and Cancel. */
10825 XtAddCallback (dialog, XmNokCallback, file_dialog_cb,
10826 (XtPointer) &result);
10827 XtAddCallback (dialog, XmNcancelCallback, file_dialog_cb,
10828 (XtPointer) &result);
10829
10830 /* Disable the help button since we can't display help. */
10831 help = XmFileSelectionBoxGetChild (dialog, XmDIALOG_HELP_BUTTON);
10832 XtSetSensitive (help, False);
10833
10834 /* Mark OK button as default. */
10835 XtVaSetValues (XmFileSelectionBoxGetChild (dialog, XmDIALOG_OK_BUTTON),
10836 XmNshowAsDefault, True, NULL);
10837
10838 /* If MUSTMATCH is non-nil, disable the file entry field of the
10839 dialog, so that the user must select a file from the files list
10840 box. We can't remove it because we wouldn't have a way to get at
10841 the result file name, then. */
10842 text = XmFileSelectionBoxGetChild (dialog, XmDIALOG_TEXT);
10843 if (!NILP (mustmatch))
10844 {
10845 Widget label;
10846 label = XmFileSelectionBoxGetChild (dialog, XmDIALOG_SELECTION_LABEL);
10847 XtSetSensitive (text, False);
10848 XtSetSensitive (label, False);
10849 }
10850
10851 /* Manage the dialog, so that list boxes get filled. */
10852 XtManageChild (dialog);
10853
10854 /* Select DEFAULT_FILENAME in the files list box. DEFAULT_FILENAME
10855 must include the path for this to work. */
10856 list = XmFileSelectionBoxGetChild (dialog, XmDIALOG_LIST);
10857 if (STRINGP (default_filename))
10858 {
10859 XmString default_xmstring;
10860 int item_pos;
10861
10862 default_xmstring
10863 = XmStringCreateLocalized (XSTRING (default_filename)->data);
10864
10865 if (!XmListItemExists (list, default_xmstring))
10866 {
10867 /* Add a new item if DEFAULT_FILENAME is not in the list. */
10868 XmListAddItem (list, default_xmstring, 0);
10869 item_pos = 0;
10870 }
10871 else
10872 item_pos = XmListItemPos (list, default_xmstring);
10873 XmStringFree (default_xmstring);
10874
10875 /* Select the item and scroll it into view. */
10876 XmListSelectPos (list, item_pos, True);
10877 XmListSetPos (list, item_pos);
10878 }
10879
10880 #ifdef HAVE_MOTIF_2_1
10881
10882 /* Process events until the user presses Cancel or OK. */
10883 result = 0;
10884 while (result == 0 || XtAppPending (Xt_app_con))
10885 XtAppProcessEvent (Xt_app_con, XtIMAll);
10886
10887 #else /* not HAVE_MOTIF_2_1 */
10888
10889 /* Process all events until the user presses Cancel or OK. */
10890 for (result = 0; result == 0;)
10891 {
10892 XEvent event;
10893 Widget widget, parent;
10894
10895 XtAppNextEvent (Xt_app_con, &event);
10896
10897 /* See if the receiver of the event is one of the widgets of
10898 the file selection dialog. If so, dispatch it. If not,
10899 discard it. */
10900 widget = XtWindowToWidget (event.xany.display, event.xany.window);
10901 parent = widget;
10902 while (parent && parent != dialog)
10903 parent = XtParent (parent);
10904
10905 if (parent == dialog
10906 || (event.type == Expose
10907 && !process_expose_from_menu (event)))
10908 XtDispatchEvent (&event);
10909 }
10910
10911 #endif /* not HAVE_MOTIF_2_1 */
10912
10913 /* Get the result. */
10914 if (result == XmCR_OK)
10915 {
10916 XmString text;
10917 String data;
10918
10919 XtVaGetValues (dialog, XmNtextString, &text, NULL);
10920 XmStringGetLtoR (text, XmFONTLIST_DEFAULT_TAG, &data);
10921 XmStringFree (text);
10922 file = build_string (data);
10923 XtFree (data);
10924 }
10925 else
10926 file = Qnil;
10927
10928 /* Clean up. */
10929 XtUnmanageChild (dialog);
10930 XtDestroyWidget (dialog);
10931 UNBLOCK_INPUT;
10932 UNGCPRO;
10933
10934 /* Make "Cancel" equivalent to C-g. */
10935 if (NILP (file))
10936 Fsignal (Qquit, Qnil);
10937
10938 return unbind_to (count, file);
10939 }
10940
10941 #endif /* USE_MOTIF */
10942
10943
10944 \f
10945 /***********************************************************************
10946 Initialization
10947 ***********************************************************************/
10948
10949 void
10950 syms_of_xfns ()
10951 {
10952 /* This is zero if not using X windows. */
10953 x_in_use = 0;
10954
10955 /* The section below is built by the lisp expression at the top of the file,
10956 just above where these variables are declared. */
10957 /*&&& init symbols here &&&*/
10958 Qauto_raise = intern ("auto-raise");
10959 staticpro (&Qauto_raise);
10960 Qauto_lower = intern ("auto-lower");
10961 staticpro (&Qauto_lower);
10962 Qbar = intern ("bar");
10963 staticpro (&Qbar);
10964 Qborder_color = intern ("border-color");
10965 staticpro (&Qborder_color);
10966 Qborder_width = intern ("border-width");
10967 staticpro (&Qborder_width);
10968 Qbox = intern ("box");
10969 staticpro (&Qbox);
10970 Qcursor_color = intern ("cursor-color");
10971 staticpro (&Qcursor_color);
10972 Qcursor_type = intern ("cursor-type");
10973 staticpro (&Qcursor_type);
10974 Qgeometry = intern ("geometry");
10975 staticpro (&Qgeometry);
10976 Qicon_left = intern ("icon-left");
10977 staticpro (&Qicon_left);
10978 Qicon_top = intern ("icon-top");
10979 staticpro (&Qicon_top);
10980 Qicon_type = intern ("icon-type");
10981 staticpro (&Qicon_type);
10982 Qicon_name = intern ("icon-name");
10983 staticpro (&Qicon_name);
10984 Qinternal_border_width = intern ("internal-border-width");
10985 staticpro (&Qinternal_border_width);
10986 Qleft = intern ("left");
10987 staticpro (&Qleft);
10988 Qright = intern ("right");
10989 staticpro (&Qright);
10990 Qmouse_color = intern ("mouse-color");
10991 staticpro (&Qmouse_color);
10992 Qnone = intern ("none");
10993 staticpro (&Qnone);
10994 Qparent_id = intern ("parent-id");
10995 staticpro (&Qparent_id);
10996 Qscroll_bar_width = intern ("scroll-bar-width");
10997 staticpro (&Qscroll_bar_width);
10998 Qsuppress_icon = intern ("suppress-icon");
10999 staticpro (&Qsuppress_icon);
11000 Qundefined_color = intern ("undefined-color");
11001 staticpro (&Qundefined_color);
11002 Qvertical_scroll_bars = intern ("vertical-scroll-bars");
11003 staticpro (&Qvertical_scroll_bars);
11004 Qvisibility = intern ("visibility");
11005 staticpro (&Qvisibility);
11006 Qwindow_id = intern ("window-id");
11007 staticpro (&Qwindow_id);
11008 Qouter_window_id = intern ("outer-window-id");
11009 staticpro (&Qouter_window_id);
11010 Qx_frame_parameter = intern ("x-frame-parameter");
11011 staticpro (&Qx_frame_parameter);
11012 Qx_resource_name = intern ("x-resource-name");
11013 staticpro (&Qx_resource_name);
11014 Quser_position = intern ("user-position");
11015 staticpro (&Quser_position);
11016 Quser_size = intern ("user-size");
11017 staticpro (&Quser_size);
11018 Qscroll_bar_foreground = intern ("scroll-bar-foreground");
11019 staticpro (&Qscroll_bar_foreground);
11020 Qscroll_bar_background = intern ("scroll-bar-background");
11021 staticpro (&Qscroll_bar_background);
11022 Qscreen_gamma = intern ("screen-gamma");
11023 staticpro (&Qscreen_gamma);
11024 Qline_spacing = intern ("line-spacing");
11025 staticpro (&Qline_spacing);
11026 Qcenter = intern ("center");
11027 staticpro (&Qcenter);
11028 Qcompound_text = intern ("compound-text");
11029 staticpro (&Qcompound_text);
11030 /* This is the end of symbol initialization. */
11031
11032 /* Text property `display' should be nonsticky by default. */
11033 Vtext_property_default_nonsticky
11034 = Fcons (Fcons (Qdisplay, Qt), Vtext_property_default_nonsticky);
11035
11036
11037 Qlaplace = intern ("laplace");
11038 staticpro (&Qlaplace);
11039 Qemboss = intern ("emboss");
11040 staticpro (&Qemboss);
11041 Qedge_detection = intern ("edge-detection");
11042 staticpro (&Qedge_detection);
11043 Qheuristic = intern ("heuristic");
11044 staticpro (&Qheuristic);
11045 QCmatrix = intern (":matrix");
11046 staticpro (&QCmatrix);
11047 QCcolor_adjustment = intern (":color-adjustment");
11048 staticpro (&QCcolor_adjustment);
11049 QCmask = intern (":mask");
11050 staticpro (&QCmask);
11051
11052 Qface_set_after_frame_default = intern ("face-set-after-frame-default");
11053 staticpro (&Qface_set_after_frame_default);
11054
11055 Fput (Qundefined_color, Qerror_conditions,
11056 Fcons (Qundefined_color, Fcons (Qerror, Qnil)));
11057 Fput (Qundefined_color, Qerror_message,
11058 build_string ("Undefined color"));
11059
11060 init_x_parm_symbols ();
11061
11062 DEFVAR_BOOL ("cross-disabled-images", &cross_disabled_images,
11063 "Non-nil means always draw a cross over disabled images.\n\
11064 Disabled images are those having an `:algorithm disabled' property.\n\
11065 A cross is always drawn on black & white displays.");
11066 cross_disabled_images = 0;
11067
11068 DEFVAR_LISP ("x-bitmap-file-path", &Vx_bitmap_file_path,
11069 "List of directories to search for bitmap files for X.");
11070 Vx_bitmap_file_path = decode_env_path ((char *) 0, PATH_BITMAPS);
11071
11072 DEFVAR_LISP ("x-pointer-shape", &Vx_pointer_shape,
11073 "The shape of the pointer when over text.\n\
11074 Changing the value does not affect existing frames\n\
11075 unless you set the mouse color.");
11076 Vx_pointer_shape = Qnil;
11077
11078 DEFVAR_LISP ("x-resource-name", &Vx_resource_name,
11079 "The name Emacs uses to look up X resources.\n\
11080 `x-get-resource' uses this as the first component of the instance name\n\
11081 when requesting resource values.\n\
11082 Emacs initially sets `x-resource-name' to the name under which Emacs\n\
11083 was invoked, or to the value specified with the `-name' or `-rn'\n\
11084 switches, if present.\n\
11085 \n\
11086 It may be useful to bind this variable locally around a call\n\
11087 to `x-get-resource'. See also the variable `x-resource-class'.");
11088 Vx_resource_name = Qnil;
11089
11090 DEFVAR_LISP ("x-resource-class", &Vx_resource_class,
11091 "The class Emacs uses to look up X resources.\n\
11092 `x-get-resource' uses this as the first component of the instance class\n\
11093 when requesting resource values.\n\
11094 Emacs initially sets `x-resource-class' to \"Emacs\".\n\
11095 \n\
11096 Setting this variable permanently is not a reasonable thing to do,\n\
11097 but binding this variable locally around a call to `x-get-resource'\n\
11098 is a reasonable practice. See also the variable `x-resource-name'.");
11099 Vx_resource_class = build_string (EMACS_CLASS);
11100
11101 #if 0 /* This doesn't really do anything. */
11102 DEFVAR_LISP ("x-nontext-pointer-shape", &Vx_nontext_pointer_shape,
11103 "The shape of the pointer when not over text.\n\
11104 This variable takes effect when you create a new frame\n\
11105 or when you set the mouse color.");
11106 #endif
11107 Vx_nontext_pointer_shape = Qnil;
11108
11109 DEFVAR_LISP ("x-busy-pointer-shape", &Vx_busy_pointer_shape,
11110 "The shape of the pointer when Emacs is busy.\n\
11111 This variable takes effect when you create a new frame\n\
11112 or when you set the mouse color.");
11113 Vx_busy_pointer_shape = Qnil;
11114
11115 DEFVAR_BOOL ("display-busy-cursor", &display_busy_cursor_p,
11116 "Non-zero means Emacs displays a busy cursor on window systems.");
11117 display_busy_cursor_p = 1;
11118
11119 DEFVAR_LISP ("busy-cursor-delay", &Vbusy_cursor_delay,
11120 "*Seconds to wait before displaying a busy-cursor.\n\
11121 Value must be an integer or float.");
11122 Vbusy_cursor_delay = make_number (DEFAULT_BUSY_CURSOR_DELAY);
11123
11124 #if 0 /* This doesn't really do anything. */
11125 DEFVAR_LISP ("x-mode-pointer-shape", &Vx_mode_pointer_shape,
11126 "The shape of the pointer when over the mode line.\n\
11127 This variable takes effect when you create a new frame\n\
11128 or when you set the mouse color.");
11129 #endif
11130 Vx_mode_pointer_shape = Qnil;
11131
11132 DEFVAR_LISP ("x-sensitive-text-pointer-shape",
11133 &Vx_sensitive_text_pointer_shape,
11134 "The shape of the pointer when over mouse-sensitive text.\n\
11135 This variable takes effect when you create a new frame\n\
11136 or when you set the mouse color.");
11137 Vx_sensitive_text_pointer_shape = Qnil;
11138
11139 DEFVAR_LISP ("x-window-horizontal-drag-cursor",
11140 &Vx_window_horizontal_drag_shape,
11141 "Pointer shape to use for indicating a window can be dragged horizontally.\n\
11142 This variable takes effect when you create a new frame\n\
11143 or when you set the mouse color.");
11144 Vx_window_horizontal_drag_shape = Qnil;
11145
11146 DEFVAR_LISP ("x-cursor-fore-pixel", &Vx_cursor_fore_pixel,
11147 "A string indicating the foreground color of the cursor box.");
11148 Vx_cursor_fore_pixel = Qnil;
11149
11150 DEFVAR_LISP ("x-no-window-manager", &Vx_no_window_manager,
11151 "Non-nil if no X window manager is in use.\n\
11152 Emacs doesn't try to figure this out; this is always nil\n\
11153 unless you set it to something else.");
11154 /* We don't have any way to find this out, so set it to nil
11155 and maybe the user would like to set it to t. */
11156 Vx_no_window_manager = Qnil;
11157
11158 DEFVAR_LISP ("x-pixel-size-width-font-regexp",
11159 &Vx_pixel_size_width_font_regexp,
11160 "Regexp matching a font name whose width is the same as `PIXEL_SIZE'.\n\
11161 \n\
11162 Since Emacs gets width of a font matching with this regexp from\n\
11163 PIXEL_SIZE field of the name, font finding mechanism gets faster for\n\
11164 such a font. This is especially effective for such large fonts as\n\
11165 Chinese, Japanese, and Korean.");
11166 Vx_pixel_size_width_font_regexp = Qnil;
11167
11168 DEFVAR_LISP ("image-cache-eviction-delay", &Vimage_cache_eviction_delay,
11169 "Time after which cached images are removed from the cache.\n\
11170 When an image has not been displayed this many seconds, remove it\n\
11171 from the image cache. Value must be an integer or nil with nil\n\
11172 meaning don't clear the cache.");
11173 Vimage_cache_eviction_delay = make_number (30 * 60);
11174
11175 #ifdef USE_X_TOOLKIT
11176 Fprovide (intern ("x-toolkit"));
11177 #endif
11178 #ifdef USE_MOTIF
11179 Fprovide (intern ("motif"));
11180 #endif
11181
11182 defsubr (&Sx_get_resource);
11183
11184 /* X window properties. */
11185 defsubr (&Sx_change_window_property);
11186 defsubr (&Sx_delete_window_property);
11187 defsubr (&Sx_window_property);
11188
11189 defsubr (&Sxw_display_color_p);
11190 defsubr (&Sx_display_grayscale_p);
11191 defsubr (&Sxw_color_defined_p);
11192 defsubr (&Sxw_color_values);
11193 defsubr (&Sx_server_max_request_size);
11194 defsubr (&Sx_server_vendor);
11195 defsubr (&Sx_server_version);
11196 defsubr (&Sx_display_pixel_width);
11197 defsubr (&Sx_display_pixel_height);
11198 defsubr (&Sx_display_mm_width);
11199 defsubr (&Sx_display_mm_height);
11200 defsubr (&Sx_display_screens);
11201 defsubr (&Sx_display_planes);
11202 defsubr (&Sx_display_color_cells);
11203 defsubr (&Sx_display_visual_class);
11204 defsubr (&Sx_display_backing_store);
11205 defsubr (&Sx_display_save_under);
11206 defsubr (&Sx_parse_geometry);
11207 defsubr (&Sx_create_frame);
11208 defsubr (&Sx_open_connection);
11209 defsubr (&Sx_close_connection);
11210 defsubr (&Sx_display_list);
11211 defsubr (&Sx_synchronize);
11212 defsubr (&Sx_focus_frame);
11213
11214 /* Setting callback functions for fontset handler. */
11215 get_font_info_func = x_get_font_info;
11216
11217 #if 0 /* This function pointer doesn't seem to be used anywhere.
11218 And the pointer assigned has the wrong type, anyway. */
11219 list_fonts_func = x_list_fonts;
11220 #endif
11221
11222 load_font_func = x_load_font;
11223 find_ccl_program_func = x_find_ccl_program;
11224 query_font_func = x_query_font;
11225 set_frame_fontset_func = x_set_font;
11226 check_window_system_func = check_x;
11227
11228 /* Images. */
11229 Qxbm = intern ("xbm");
11230 staticpro (&Qxbm);
11231 QCtype = intern (":type");
11232 staticpro (&QCtype);
11233 QCalgorithm = intern (":algorithm");
11234 staticpro (&QCalgorithm);
11235 QCheuristic_mask = intern (":heuristic-mask");
11236 staticpro (&QCheuristic_mask);
11237 QCcolor_symbols = intern (":color-symbols");
11238 staticpro (&QCcolor_symbols);
11239 QCascent = intern (":ascent");
11240 staticpro (&QCascent);
11241 QCmargin = intern (":margin");
11242 staticpro (&QCmargin);
11243 QCrelief = intern (":relief");
11244 staticpro (&QCrelief);
11245 Qpostscript = intern ("postscript");
11246 staticpro (&Qpostscript);
11247 QCloader = intern (":loader");
11248 staticpro (&QCloader);
11249 QCbounding_box = intern (":bounding-box");
11250 staticpro (&QCbounding_box);
11251 QCpt_width = intern (":pt-width");
11252 staticpro (&QCpt_width);
11253 QCpt_height = intern (":pt-height");
11254 staticpro (&QCpt_height);
11255 QCindex = intern (":index");
11256 staticpro (&QCindex);
11257 Qpbm = intern ("pbm");
11258 staticpro (&Qpbm);
11259
11260 #if HAVE_XPM
11261 Qxpm = intern ("xpm");
11262 staticpro (&Qxpm);
11263 #endif
11264
11265 #if HAVE_JPEG
11266 Qjpeg = intern ("jpeg");
11267 staticpro (&Qjpeg);
11268 #endif
11269
11270 #if HAVE_TIFF
11271 Qtiff = intern ("tiff");
11272 staticpro (&Qtiff);
11273 #endif
11274
11275 #if HAVE_GIF
11276 Qgif = intern ("gif");
11277 staticpro (&Qgif);
11278 #endif
11279
11280 #if HAVE_PNG
11281 Qpng = intern ("png");
11282 staticpro (&Qpng);
11283 #endif
11284
11285 defsubr (&Sclear_image_cache);
11286 defsubr (&Simage_size);
11287 defsubr (&Simage_mask_p);
11288
11289 busy_cursor_atimer = NULL;
11290 busy_cursor_shown_p = 0;
11291
11292 defsubr (&Sx_show_tip);
11293 defsubr (&Sx_hide_tip);
11294 staticpro (&tip_timer);
11295 tip_timer = Qnil;
11296
11297 #ifdef USE_MOTIF
11298 defsubr (&Sx_file_dialog);
11299 #endif
11300 }
11301
11302
11303 void
11304 init_xfns ()
11305 {
11306 image_types = NULL;
11307 Vimage_types = Qnil;
11308
11309 define_image_type (&xbm_type);
11310 define_image_type (&gs_type);
11311 define_image_type (&pbm_type);
11312
11313 #if HAVE_XPM
11314 define_image_type (&xpm_type);
11315 #endif
11316
11317 #if HAVE_JPEG
11318 define_image_type (&jpeg_type);
11319 #endif
11320
11321 #if HAVE_TIFF
11322 define_image_type (&tiff_type);
11323 #endif
11324
11325 #if HAVE_GIF
11326 define_image_type (&gif_type);
11327 #endif
11328
11329 #if HAVE_PNG
11330 define_image_type (&png_type);
11331 #endif
11332 }
11333
11334 #endif /* HAVE_X_WINDOWS */