1 /* Functions for the X window system.
2 Copyright (C) 1989, 92, 93, 94, 95, 96, 1997, 1998, 1999, 2000, 2001
3 Free Software Foundation.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
27 /* This makes the fields of a Display accessible, in Xlib header files. */
29 #define XLIB_ILLEGAL_ACCESS
36 #include "intervals.h"
37 #include "dispextern.h"
39 #include "blockinput.h"
45 #include "termhooks.h"
51 #include <sys/types.h>
55 #if 1 /* Used to be #ifdef EMACS_BITMAP_FILES, but this should always work. */
56 #include "bitmaps/gray.xbm"
58 #include <X11/bitmaps/gray>
61 #include "[.bitmaps]gray.xbm"
65 #include <X11/Shell.h>
68 #include <X11/Xaw/Paned.h>
69 #include <X11/Xaw/Label.h>
70 #endif /* USE_MOTIF */
73 #undef USG /* ####KLUDGE for Solaris 2.2 and up */
82 #include "../lwlib/lwlib.h"
86 #include <Xm/DialogS.h>
87 #include <Xm/FileSB.h>
90 /* Do the EDITRES protocol if running X11R5
91 Exception: HP-UX (at least version A.09.05) has X11R5 without EditRes */
93 #if (XtSpecificationRelease >= 5) && !defined(NO_EDITRES)
95 extern void _XEditResCheckMessages ();
96 #endif /* R5 + Athena */
98 /* Unique id counter for widgets created by the Lucid Widget Library. */
100 extern LWLIB_ID widget_id_tick
;
103 /* This is part of a kludge--see lwlib/xlwmenu.c. */
104 extern XFontStruct
*xlwmenu_default_font
;
107 extern void free_frame_menubar ();
108 extern double atof ();
110 #endif /* USE_X_TOOLKIT */
112 #define min(a,b) ((a) < (b) ? (a) : (b))
113 #define max(a,b) ((a) > (b) ? (a) : (b))
116 #define MAXREQUEST(dpy) (XMaxRequestSize (dpy))
118 #define MAXREQUEST(dpy) ((dpy)->max_request_size)
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. */
125 int gray_bitmap_width
= gray_width
;
126 int gray_bitmap_height
= gray_height
;
127 char *gray_bitmap_bits
= gray_bits
;
129 /* The name we're using in resource queries. Most often "emacs". */
131 Lisp_Object Vx_resource_name
;
133 /* The application class we're using in resource queries.
136 Lisp_Object Vx_resource_class
;
138 /* Non-zero means we're allowed to display a busy cursor. */
140 int display_busy_cursor_p
;
142 /* The background and shape of the mouse pointer, and shape when not
143 over text or in the modeline. */
145 Lisp_Object Vx_pointer_shape
, Vx_nontext_pointer_shape
, Vx_mode_pointer_shape
;
146 Lisp_Object Vx_busy_pointer_shape
;
148 /* The shape when over mouse-sensitive text. */
150 Lisp_Object Vx_sensitive_text_pointer_shape
;
152 /* If non-nil, the pointer shape to indicate that windows can be
153 dragged horizontally. */
155 Lisp_Object Vx_window_horizontal_drag_shape
;
157 /* Color of chars displayed in cursor box. */
159 Lisp_Object Vx_cursor_fore_pixel
;
161 /* Nonzero if using X. */
165 /* Non nil if no window manager is in use. */
167 Lisp_Object Vx_no_window_manager
;
169 /* Search path for bitmap files. */
171 Lisp_Object Vx_bitmap_file_path
;
173 /* Regexp matching a font name whose width is the same as `PIXEL_SIZE'. */
175 Lisp_Object Vx_pixel_size_width_font_regexp
;
177 Lisp_Object Qauto_raise
;
178 Lisp_Object Qauto_lower
;
180 Lisp_Object Qborder_color
;
181 Lisp_Object Qborder_width
;
183 Lisp_Object Qcursor_color
;
184 Lisp_Object Qcursor_type
;
185 Lisp_Object Qgeometry
;
186 Lisp_Object Qicon_left
;
187 Lisp_Object Qicon_top
;
188 Lisp_Object Qicon_type
;
189 Lisp_Object Qicon_name
;
190 Lisp_Object Qinternal_border_width
;
193 Lisp_Object Qmouse_color
;
195 Lisp_Object Qouter_window_id
;
196 Lisp_Object Qparent_id
;
197 Lisp_Object Qscroll_bar_width
;
198 Lisp_Object Qsuppress_icon
;
199 extern Lisp_Object Qtop
;
200 Lisp_Object Qundefined_color
;
201 Lisp_Object Qvertical_scroll_bars
;
202 Lisp_Object Qvisibility
;
203 Lisp_Object Qwindow_id
;
204 Lisp_Object Qx_frame_parameter
;
205 Lisp_Object Qx_resource_name
;
206 Lisp_Object Quser_position
;
207 Lisp_Object Quser_size
;
208 extern Lisp_Object Qdisplay
;
209 Lisp_Object Qscroll_bar_foreground
, Qscroll_bar_background
;
210 Lisp_Object Qscreen_gamma
, Qline_spacing
, Qcenter
;
211 Lisp_Object Qcompound_text
, Qcancel_timer
;
213 /* The below are defined in frame.c. */
215 extern Lisp_Object Qheight
, Qminibuffer
, Qname
, Qonly
, Qwidth
;
216 extern Lisp_Object Qunsplittable
, Qmenu_bar_lines
, Qbuffer_predicate
, Qtitle
;
217 extern Lisp_Object Qtool_bar_lines
;
219 extern Lisp_Object Vwindow_system_version
;
221 Lisp_Object Qface_set_after_frame_default
;
224 int image_cache_refcount
, dpyinfo_refcount
;
229 /* Error if we are not connected to X. */
235 error ("X windows are not in use or not initialized");
238 /* Nonzero if we can use mouse menus.
239 You should not call this unless HAVE_MENUS is defined. */
247 /* Extract a frame as a FRAME_PTR, defaulting to the selected frame
248 and checking validity for X. */
251 check_x_frame (frame
)
257 frame
= selected_frame
;
258 CHECK_LIVE_FRAME (frame
, 0);
261 error ("Non-X frame used");
265 /* Let the user specify an X display with a frame.
266 nil stands for the selected frame--or, if that is not an X frame,
267 the first X display on the list. */
269 static struct x_display_info
*
270 check_x_display_info (frame
)
273 struct x_display_info
*dpyinfo
= NULL
;
277 struct frame
*sf
= XFRAME (selected_frame
);
279 if (FRAME_X_P (sf
) && FRAME_LIVE_P (sf
))
280 dpyinfo
= FRAME_X_DISPLAY_INFO (sf
);
281 else if (x_display_list
!= 0)
282 dpyinfo
= x_display_list
;
284 error ("X windows are not in use or not initialized");
286 else if (STRINGP (frame
))
287 dpyinfo
= x_display_info_for_name (frame
);
292 CHECK_LIVE_FRAME (frame
, 0);
295 error ("Non-X frame used");
296 dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
303 /* Return the Emacs frame-object corresponding to an X window.
304 It could be the frame's main window or an icon window. */
306 /* This function can be called during GC, so use GC_xxx type test macros. */
309 x_window_to_frame (dpyinfo
, wdesc
)
310 struct x_display_info
*dpyinfo
;
313 Lisp_Object tail
, frame
;
316 for (tail
= Vframe_list
; GC_CONSP (tail
); tail
= XCDR (tail
))
319 if (!GC_FRAMEP (frame
))
322 if (!FRAME_X_P (f
) || FRAME_X_DISPLAY_INFO (f
) != dpyinfo
)
324 if (f
->output_data
.x
->busy_window
== wdesc
)
327 if ((f
->output_data
.x
->edit_widget
328 && XtWindow (f
->output_data
.x
->edit_widget
) == wdesc
)
329 /* A tooltip frame? */
330 || (!f
->output_data
.x
->edit_widget
331 && FRAME_X_WINDOW (f
) == wdesc
)
332 || f
->output_data
.x
->icon_desc
== wdesc
)
334 #else /* not USE_X_TOOLKIT */
335 if (FRAME_X_WINDOW (f
) == wdesc
336 || f
->output_data
.x
->icon_desc
== wdesc
)
338 #endif /* not USE_X_TOOLKIT */
344 /* Like x_window_to_frame but also compares the window with the widget's
348 x_any_window_to_frame (dpyinfo
, wdesc
)
349 struct x_display_info
*dpyinfo
;
352 Lisp_Object tail
, frame
;
353 struct frame
*f
, *found
;
357 for (tail
= Vframe_list
; GC_CONSP (tail
) && !found
; tail
= XCDR (tail
))
360 if (!GC_FRAMEP (frame
))
364 if (FRAME_X_P (f
) && FRAME_X_DISPLAY_INFO (f
) == dpyinfo
)
366 /* This frame matches if the window is any of its widgets. */
367 x
= f
->output_data
.x
;
368 if (x
->busy_window
== wdesc
)
372 if (wdesc
== XtWindow (x
->widget
)
373 || wdesc
== XtWindow (x
->column_widget
)
374 || wdesc
== XtWindow (x
->edit_widget
))
376 /* Match if the window is this frame's menubar. */
377 else if (lw_window_is_in_menubar (wdesc
, x
->menubar_widget
))
380 else if (FRAME_X_WINDOW (f
) == wdesc
)
381 /* A tooltip frame. */
389 /* Likewise, but exclude the menu bar widget. */
392 x_non_menubar_window_to_frame (dpyinfo
, wdesc
)
393 struct x_display_info
*dpyinfo
;
396 Lisp_Object tail
, frame
;
400 for (tail
= Vframe_list
; GC_CONSP (tail
); tail
= XCDR (tail
))
403 if (!GC_FRAMEP (frame
))
406 if (!FRAME_X_P (f
) || FRAME_X_DISPLAY_INFO (f
) != dpyinfo
)
408 x
= f
->output_data
.x
;
409 /* This frame matches if the window is any of its widgets. */
410 if (x
->busy_window
== wdesc
)
414 if (wdesc
== XtWindow (x
->widget
)
415 || wdesc
== XtWindow (x
->column_widget
)
416 || wdesc
== XtWindow (x
->edit_widget
))
419 else if (FRAME_X_WINDOW (f
) == wdesc
)
420 /* A tooltip frame. */
426 /* Likewise, but consider only the menu bar widget. */
429 x_menubar_window_to_frame (dpyinfo
, wdesc
)
430 struct x_display_info
*dpyinfo
;
433 Lisp_Object tail
, frame
;
437 for (tail
= Vframe_list
; GC_CONSP (tail
); tail
= XCDR (tail
))
440 if (!GC_FRAMEP (frame
))
443 if (!FRAME_X_P (f
) || FRAME_X_DISPLAY_INFO (f
) != dpyinfo
)
445 x
= f
->output_data
.x
;
446 /* Match if the window is this frame's menubar. */
447 if (x
->menubar_widget
448 && lw_window_is_in_menubar (wdesc
, x
->menubar_widget
))
454 /* Return the frame whose principal (outermost) window is WDESC.
455 If WDESC is some other (smaller) window, we return 0. */
458 x_top_window_to_frame (dpyinfo
, wdesc
)
459 struct x_display_info
*dpyinfo
;
462 Lisp_Object tail
, frame
;
466 for (tail
= Vframe_list
; GC_CONSP (tail
); tail
= XCDR (tail
))
469 if (!GC_FRAMEP (frame
))
472 if (!FRAME_X_P (f
) || FRAME_X_DISPLAY_INFO (f
) != dpyinfo
)
474 x
= f
->output_data
.x
;
478 /* This frame matches if the window is its topmost widget. */
479 if (wdesc
== XtWindow (x
->widget
))
481 #if 0 /* I don't know why it did this,
482 but it seems logically wrong,
483 and it causes trouble for MapNotify events. */
484 /* Match if the window is this frame's menubar. */
485 if (x
->menubar_widget
486 && wdesc
== XtWindow (x
->menubar_widget
))
490 else if (FRAME_X_WINDOW (f
) == wdesc
)
496 #endif /* USE_X_TOOLKIT */
500 /* Code to deal with bitmaps. Bitmaps are referenced by their bitmap
501 id, which is just an int that this section returns. Bitmaps are
502 reference counted so they can be shared among frames.
504 Bitmap indices are guaranteed to be > 0, so a negative number can
505 be used to indicate no bitmap.
507 If you use x_create_bitmap_from_data, then you must keep track of
508 the bitmaps yourself. That is, creating a bitmap from the same
509 data more than once will not be caught. */
512 /* Functions to access the contents of a bitmap, given an id. */
515 x_bitmap_height (f
, id
)
519 return FRAME_X_DISPLAY_INFO (f
)->bitmaps
[id
- 1].height
;
523 x_bitmap_width (f
, id
)
527 return FRAME_X_DISPLAY_INFO (f
)->bitmaps
[id
- 1].width
;
531 x_bitmap_pixmap (f
, id
)
535 return FRAME_X_DISPLAY_INFO (f
)->bitmaps
[id
- 1].pixmap
;
539 /* Allocate a new bitmap record. Returns index of new record. */
542 x_allocate_bitmap_record (f
)
545 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
548 if (dpyinfo
->bitmaps
== NULL
)
550 dpyinfo
->bitmaps_size
= 10;
552 = (struct x_bitmap_record
*) xmalloc (dpyinfo
->bitmaps_size
* sizeof (struct x_bitmap_record
));
553 dpyinfo
->bitmaps_last
= 1;
557 if (dpyinfo
->bitmaps_last
< dpyinfo
->bitmaps_size
)
558 return ++dpyinfo
->bitmaps_last
;
560 for (i
= 0; i
< dpyinfo
->bitmaps_size
; ++i
)
561 if (dpyinfo
->bitmaps
[i
].refcount
== 0)
564 dpyinfo
->bitmaps_size
*= 2;
566 = (struct x_bitmap_record
*) xrealloc (dpyinfo
->bitmaps
,
567 dpyinfo
->bitmaps_size
* sizeof (struct x_bitmap_record
));
568 return ++dpyinfo
->bitmaps_last
;
571 /* Add one reference to the reference count of the bitmap with id ID. */
574 x_reference_bitmap (f
, id
)
578 ++FRAME_X_DISPLAY_INFO (f
)->bitmaps
[id
- 1].refcount
;
581 /* Create a bitmap for frame F from a HEIGHT x WIDTH array of bits at BITS. */
584 x_create_bitmap_from_data (f
, bits
, width
, height
)
587 unsigned int width
, height
;
589 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
593 bitmap
= XCreateBitmapFromData (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
594 bits
, width
, height
);
599 id
= x_allocate_bitmap_record (f
);
600 dpyinfo
->bitmaps
[id
- 1].pixmap
= bitmap
;
601 dpyinfo
->bitmaps
[id
- 1].file
= NULL
;
602 dpyinfo
->bitmaps
[id
- 1].refcount
= 1;
603 dpyinfo
->bitmaps
[id
- 1].depth
= 1;
604 dpyinfo
->bitmaps
[id
- 1].height
= height
;
605 dpyinfo
->bitmaps
[id
- 1].width
= width
;
610 /* Create bitmap from file FILE for frame F. */
613 x_create_bitmap_from_file (f
, file
)
617 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
618 unsigned int width
, height
;
620 int xhot
, yhot
, result
, id
;
625 /* Look for an existing bitmap with the same name. */
626 for (id
= 0; id
< dpyinfo
->bitmaps_last
; ++id
)
628 if (dpyinfo
->bitmaps
[id
].refcount
629 && dpyinfo
->bitmaps
[id
].file
630 && !strcmp (dpyinfo
->bitmaps
[id
].file
, (char *) XSTRING (file
)->data
))
632 ++dpyinfo
->bitmaps
[id
].refcount
;
637 /* Search bitmap-file-path for the file, if appropriate. */
638 fd
= openp (Vx_bitmap_file_path
, file
, "", &found
, 0);
643 filename
= (char *) XSTRING (found
)->data
;
645 result
= XReadBitmapFile (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
646 filename
, &width
, &height
, &bitmap
, &xhot
, &yhot
);
647 if (result
!= BitmapSuccess
)
650 id
= x_allocate_bitmap_record (f
);
651 dpyinfo
->bitmaps
[id
- 1].pixmap
= bitmap
;
652 dpyinfo
->bitmaps
[id
- 1].refcount
= 1;
653 dpyinfo
->bitmaps
[id
- 1].file
654 = (char *) xmalloc (STRING_BYTES (XSTRING (file
)) + 1);
655 dpyinfo
->bitmaps
[id
- 1].depth
= 1;
656 dpyinfo
->bitmaps
[id
- 1].height
= height
;
657 dpyinfo
->bitmaps
[id
- 1].width
= width
;
658 strcpy (dpyinfo
->bitmaps
[id
- 1].file
, XSTRING (file
)->data
);
663 /* Remove reference to bitmap with id number ID. */
666 x_destroy_bitmap (f
, id
)
670 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
674 --dpyinfo
->bitmaps
[id
- 1].refcount
;
675 if (dpyinfo
->bitmaps
[id
- 1].refcount
== 0)
678 XFreePixmap (FRAME_X_DISPLAY (f
), dpyinfo
->bitmaps
[id
- 1].pixmap
);
679 if (dpyinfo
->bitmaps
[id
- 1].file
)
681 xfree (dpyinfo
->bitmaps
[id
- 1].file
);
682 dpyinfo
->bitmaps
[id
- 1].file
= NULL
;
689 /* Free all the bitmaps for the display specified by DPYINFO. */
692 x_destroy_all_bitmaps (dpyinfo
)
693 struct x_display_info
*dpyinfo
;
696 for (i
= 0; i
< dpyinfo
->bitmaps_last
; i
++)
697 if (dpyinfo
->bitmaps
[i
].refcount
> 0)
699 XFreePixmap (dpyinfo
->display
, dpyinfo
->bitmaps
[i
].pixmap
);
700 if (dpyinfo
->bitmaps
[i
].file
)
701 xfree (dpyinfo
->bitmaps
[i
].file
);
703 dpyinfo
->bitmaps_last
= 0;
706 /* Connect the frame-parameter names for X frames
707 to the ways of passing the parameter values to the window system.
709 The name of a parameter, as a Lisp symbol,
710 has an `x-frame-parameter' property which is an integer in Lisp
711 that is an index in this table. */
713 struct x_frame_parm_table
716 void (*setter
) P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
719 static Lisp_Object unwind_create_frame
P_ ((Lisp_Object
));
720 static Lisp_Object unwind_create_tip_frame
P_ ((Lisp_Object
));
721 static void x_change_window_heights
P_ ((Lisp_Object
, int));
722 static void x_disable_image
P_ ((struct frame
*, struct image
*));
723 static void x_create_im
P_ ((struct frame
*));
724 void x_set_foreground_color
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
725 static void x_set_line_spacing
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
726 void x_set_background_color
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
727 void x_set_mouse_color
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
728 void x_set_cursor_color
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
729 void x_set_border_color
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
730 void x_set_cursor_type
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
731 void x_set_icon_type
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
732 void x_set_icon_name
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
733 void x_set_font
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
734 void x_set_border_width
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
735 void x_set_internal_border_width
P_ ((struct frame
*, Lisp_Object
,
737 void x_explicitly_set_name
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
738 void x_set_autoraise
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
739 void x_set_autolower
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
740 void x_set_vertical_scroll_bars
P_ ((struct frame
*, Lisp_Object
,
742 void x_set_visibility
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
743 void x_set_menu_bar_lines
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
744 void x_set_scroll_bar_width
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
745 void x_set_title
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
746 void x_set_unsplittable
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
747 void x_set_tool_bar_lines
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
748 void x_set_scroll_bar_foreground
P_ ((struct frame
*, Lisp_Object
,
750 void x_set_scroll_bar_background
P_ ((struct frame
*, Lisp_Object
,
752 static Lisp_Object x_default_scroll_bar_color_parameter
P_ ((struct frame
*,
757 static void x_set_screen_gamma
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
758 static void x_edge_detection
P_ ((struct frame
*, struct image
*, Lisp_Object
,
760 static void init_color_table
P_ ((void));
761 static void free_color_table
P_ ((void));
762 static unsigned long *colors_in_color_table
P_ ((int *n
));
763 static unsigned long lookup_rgb_color
P_ ((struct frame
*f
, int r
, int g
, int b
));
764 static unsigned long lookup_pixel_color
P_ ((struct frame
*f
, unsigned long p
));
768 static struct x_frame_parm_table x_frame_parms
[] =
770 "auto-raise", x_set_autoraise
,
771 "auto-lower", x_set_autolower
,
772 "background-color", x_set_background_color
,
773 "border-color", x_set_border_color
,
774 "border-width", x_set_border_width
,
775 "cursor-color", x_set_cursor_color
,
776 "cursor-type", x_set_cursor_type
,
778 "foreground-color", x_set_foreground_color
,
779 "icon-name", x_set_icon_name
,
780 "icon-type", x_set_icon_type
,
781 "internal-border-width", x_set_internal_border_width
,
782 "menu-bar-lines", x_set_menu_bar_lines
,
783 "mouse-color", x_set_mouse_color
,
784 "name", x_explicitly_set_name
,
785 "scroll-bar-width", x_set_scroll_bar_width
,
786 "title", x_set_title
,
787 "unsplittable", x_set_unsplittable
,
788 "vertical-scroll-bars", x_set_vertical_scroll_bars
,
789 "visibility", x_set_visibility
,
790 "tool-bar-lines", x_set_tool_bar_lines
,
791 "scroll-bar-foreground", x_set_scroll_bar_foreground
,
792 "scroll-bar-background", x_set_scroll_bar_background
,
793 "screen-gamma", x_set_screen_gamma
,
794 "line-spacing", x_set_line_spacing
797 /* Attach the `x-frame-parameter' properties to
798 the Lisp symbol names of parameters relevant to X. */
801 init_x_parm_symbols ()
805 for (i
= 0; i
< sizeof (x_frame_parms
) / sizeof (x_frame_parms
[0]); i
++)
806 Fput (intern (x_frame_parms
[i
].name
), Qx_frame_parameter
,
810 /* Change the parameters of frame F as specified by ALIST.
811 If a parameter is not specially recognized, do nothing special;
812 otherwise call the `x_set_...' function for that parameter.
813 Except for certain geometry properties, always call store_frame_param
814 to store the new value in the parameter alist. */
817 x_set_frame_parameters (f
, alist
)
823 /* If both of these parameters are present, it's more efficient to
824 set them both at once. So we wait until we've looked at the
825 entire list before we set them. */
829 Lisp_Object left
, top
;
831 /* Same with these. */
832 Lisp_Object icon_left
, icon_top
;
834 /* Record in these vectors all the parms specified. */
838 int left_no_change
= 0, top_no_change
= 0;
839 int icon_left_no_change
= 0, icon_top_no_change
= 0;
841 struct gcpro gcpro1
, gcpro2
;
844 for (tail
= alist
; CONSP (tail
); tail
= Fcdr (tail
))
847 parms
= (Lisp_Object
*) alloca (i
* sizeof (Lisp_Object
));
848 values
= (Lisp_Object
*) alloca (i
* sizeof (Lisp_Object
));
850 /* Extract parm names and values into those vectors. */
853 for (tail
= alist
; CONSP (tail
); tail
= Fcdr (tail
))
858 parms
[i
] = Fcar (elt
);
859 values
[i
] = Fcdr (elt
);
862 /* TAIL and ALIST are not used again below here. */
865 GCPRO2 (*parms
, *values
);
869 /* There is no need to gcpro LEFT, TOP, ICON_LEFT, or ICON_TOP,
870 because their values appear in VALUES and strings are not valid. */
871 top
= left
= Qunbound
;
872 icon_left
= icon_top
= Qunbound
;
874 /* Provide default values for HEIGHT and WIDTH. */
875 if (FRAME_NEW_WIDTH (f
))
876 width
= FRAME_NEW_WIDTH (f
);
878 width
= FRAME_WIDTH (f
);
880 if (FRAME_NEW_HEIGHT (f
))
881 height
= FRAME_NEW_HEIGHT (f
);
883 height
= FRAME_HEIGHT (f
);
885 /* Process foreground_color and background_color before anything else.
886 They are independent of other properties, but other properties (e.g.,
887 cursor_color) are dependent upon them. */
888 for (p
= 0; p
< i
; p
++)
890 Lisp_Object prop
, val
;
894 if (EQ (prop
, Qforeground_color
) || EQ (prop
, Qbackground_color
))
896 register Lisp_Object param_index
, old_value
;
898 param_index
= Fget (prop
, Qx_frame_parameter
);
899 old_value
= get_frame_param (f
, prop
);
900 store_frame_param (f
, prop
, val
);
901 if (NATNUMP (param_index
)
902 && (XFASTINT (param_index
)
903 < sizeof (x_frame_parms
)/sizeof (x_frame_parms
[0])))
904 (*x_frame_parms
[XINT (param_index
)].setter
)(f
, val
, old_value
);
908 /* Now process them in reverse of specified order. */
909 for (i
--; i
>= 0; i
--)
911 Lisp_Object prop
, val
;
916 if (EQ (prop
, Qwidth
) && NUMBERP (val
))
917 width
= XFASTINT (val
);
918 else if (EQ (prop
, Qheight
) && NUMBERP (val
))
919 height
= XFASTINT (val
);
920 else if (EQ (prop
, Qtop
))
922 else if (EQ (prop
, Qleft
))
924 else if (EQ (prop
, Qicon_top
))
926 else if (EQ (prop
, Qicon_left
))
928 else if (EQ (prop
, Qforeground_color
) || EQ (prop
, Qbackground_color
))
929 /* Processed above. */
933 register Lisp_Object param_index
, old_value
;
935 param_index
= Fget (prop
, Qx_frame_parameter
);
936 old_value
= get_frame_param (f
, prop
);
937 store_frame_param (f
, prop
, val
);
938 if (NATNUMP (param_index
)
939 && (XFASTINT (param_index
)
940 < sizeof (x_frame_parms
)/sizeof (x_frame_parms
[0])))
941 (*x_frame_parms
[XINT (param_index
)].setter
)(f
, val
, old_value
);
945 /* Don't die if just one of these was set. */
946 if (EQ (left
, Qunbound
))
949 if (f
->output_data
.x
->left_pos
< 0)
950 left
= Fcons (Qplus
, Fcons (make_number (f
->output_data
.x
->left_pos
), Qnil
));
952 XSETINT (left
, f
->output_data
.x
->left_pos
);
954 if (EQ (top
, Qunbound
))
957 if (f
->output_data
.x
->top_pos
< 0)
958 top
= Fcons (Qplus
, Fcons (make_number (f
->output_data
.x
->top_pos
), Qnil
));
960 XSETINT (top
, f
->output_data
.x
->top_pos
);
963 /* If one of the icon positions was not set, preserve or default it. */
964 if (EQ (icon_left
, Qunbound
) || ! INTEGERP (icon_left
))
966 icon_left_no_change
= 1;
967 icon_left
= Fcdr (Fassq (Qicon_left
, f
->param_alist
));
968 if (NILP (icon_left
))
969 XSETINT (icon_left
, 0);
971 if (EQ (icon_top
, Qunbound
) || ! INTEGERP (icon_top
))
973 icon_top_no_change
= 1;
974 icon_top
= Fcdr (Fassq (Qicon_top
, f
->param_alist
));
976 XSETINT (icon_top
, 0);
979 /* Don't set these parameters unless they've been explicitly
980 specified. The window might be mapped or resized while we're in
981 this function, and we don't want to override that unless the lisp
982 code has asked for it.
984 Don't set these parameters unless they actually differ from the
985 window's current parameters; the window may not actually exist
990 check_frame_size (f
, &height
, &width
);
992 XSETFRAME (frame
, f
);
994 if (width
!= FRAME_WIDTH (f
)
995 || height
!= FRAME_HEIGHT (f
)
996 || FRAME_NEW_HEIGHT (f
) || FRAME_NEW_WIDTH (f
))
997 Fset_frame_size (frame
, make_number (width
), make_number (height
));
999 if ((!NILP (left
) || !NILP (top
))
1000 && ! (left_no_change
&& top_no_change
)
1001 && ! (NUMBERP (left
) && XINT (left
) == f
->output_data
.x
->left_pos
1002 && NUMBERP (top
) && XINT (top
) == f
->output_data
.x
->top_pos
))
1007 /* Record the signs. */
1008 f
->output_data
.x
->size_hint_flags
&= ~ (XNegative
| YNegative
);
1009 if (EQ (left
, Qminus
))
1010 f
->output_data
.x
->size_hint_flags
|= XNegative
;
1011 else if (INTEGERP (left
))
1013 leftpos
= XINT (left
);
1015 f
->output_data
.x
->size_hint_flags
|= XNegative
;
1017 else if (CONSP (left
) && EQ (XCAR (left
), Qminus
)
1018 && CONSP (XCDR (left
))
1019 && INTEGERP (XCAR (XCDR (left
))))
1021 leftpos
= - XINT (XCAR (XCDR (left
)));
1022 f
->output_data
.x
->size_hint_flags
|= XNegative
;
1024 else if (CONSP (left
) && EQ (XCAR (left
), Qplus
)
1025 && CONSP (XCDR (left
))
1026 && INTEGERP (XCAR (XCDR (left
))))
1028 leftpos
= XINT (XCAR (XCDR (left
)));
1031 if (EQ (top
, Qminus
))
1032 f
->output_data
.x
->size_hint_flags
|= YNegative
;
1033 else if (INTEGERP (top
))
1035 toppos
= XINT (top
);
1037 f
->output_data
.x
->size_hint_flags
|= YNegative
;
1039 else if (CONSP (top
) && EQ (XCAR (top
), Qminus
)
1040 && CONSP (XCDR (top
))
1041 && INTEGERP (XCAR (XCDR (top
))))
1043 toppos
= - XINT (XCAR (XCDR (top
)));
1044 f
->output_data
.x
->size_hint_flags
|= YNegative
;
1046 else if (CONSP (top
) && EQ (XCAR (top
), Qplus
)
1047 && CONSP (XCDR (top
))
1048 && INTEGERP (XCAR (XCDR (top
))))
1050 toppos
= XINT (XCAR (XCDR (top
)));
1054 /* Store the numeric value of the position. */
1055 f
->output_data
.x
->top_pos
= toppos
;
1056 f
->output_data
.x
->left_pos
= leftpos
;
1058 f
->output_data
.x
->win_gravity
= NorthWestGravity
;
1060 /* Actually set that position, and convert to absolute. */
1061 x_set_offset (f
, leftpos
, toppos
, -1);
1064 if ((!NILP (icon_left
) || !NILP (icon_top
))
1065 && ! (icon_left_no_change
&& icon_top_no_change
))
1066 x_wm_set_icon_position (f
, XINT (icon_left
), XINT (icon_top
));
1072 /* Store the screen positions of frame F into XPTR and YPTR.
1073 These are the positions of the containing window manager window,
1074 not Emacs's own window. */
1077 x_real_positions (f
, xptr
, yptr
)
1084 /* This is pretty gross, but seems to be the easiest way out of
1085 the problem that arises when restarting window-managers. */
1087 #ifdef USE_X_TOOLKIT
1088 Window outer
= (f
->output_data
.x
->widget
1089 ? XtWindow (f
->output_data
.x
->widget
)
1090 : FRAME_X_WINDOW (f
));
1092 Window outer
= f
->output_data
.x
->window_desc
;
1094 Window tmp_root_window
;
1095 Window
*tmp_children
;
1096 unsigned int tmp_nchildren
;
1100 int count
= x_catch_errors (FRAME_X_DISPLAY (f
));
1101 Window outer_window
;
1103 XQueryTree (FRAME_X_DISPLAY (f
), outer
, &tmp_root_window
,
1104 &f
->output_data
.x
->parent_desc
,
1105 &tmp_children
, &tmp_nchildren
);
1106 XFree ((char *) tmp_children
);
1110 /* Find the position of the outside upper-left corner of
1111 the inner window, with respect to the outer window. */
1112 if (f
->output_data
.x
->parent_desc
!= FRAME_X_DISPLAY_INFO (f
)->root_window
)
1113 outer_window
= f
->output_data
.x
->parent_desc
;
1115 outer_window
= outer
;
1117 XTranslateCoordinates (FRAME_X_DISPLAY (f
),
1119 /* From-window, to-window. */
1121 FRAME_X_DISPLAY_INFO (f
)->root_window
,
1123 /* From-position, to-position. */
1124 0, 0, &win_x
, &win_y
,
1129 /* It is possible for the window returned by the XQueryNotify
1130 to become invalid by the time we call XTranslateCoordinates.
1131 That can happen when you restart some window managers.
1132 If so, we get an error in XTranslateCoordinates.
1133 Detect that and try the whole thing over. */
1134 if (! x_had_errors_p (FRAME_X_DISPLAY (f
)))
1136 x_uncatch_errors (FRAME_X_DISPLAY (f
), count
);
1140 x_uncatch_errors (FRAME_X_DISPLAY (f
), count
);
1147 /* Insert a description of internally-recorded parameters of frame X
1148 into the parameter alist *ALISTPTR that is to be given to the user.
1149 Only parameters that are specific to the X window system
1150 and whose values are not correctly recorded in the frame's
1151 param_alist need to be considered here. */
1154 x_report_frame_params (f
, alistptr
)
1156 Lisp_Object
*alistptr
;
1161 /* Represent negative positions (off the top or left screen edge)
1162 in a way that Fmodify_frame_parameters will understand correctly. */
1163 XSETINT (tem
, f
->output_data
.x
->left_pos
);
1164 if (f
->output_data
.x
->left_pos
>= 0)
1165 store_in_alist (alistptr
, Qleft
, tem
);
1167 store_in_alist (alistptr
, Qleft
, Fcons (Qplus
, Fcons (tem
, Qnil
)));
1169 XSETINT (tem
, f
->output_data
.x
->top_pos
);
1170 if (f
->output_data
.x
->top_pos
>= 0)
1171 store_in_alist (alistptr
, Qtop
, tem
);
1173 store_in_alist (alistptr
, Qtop
, Fcons (Qplus
, Fcons (tem
, Qnil
)));
1175 store_in_alist (alistptr
, Qborder_width
,
1176 make_number (f
->output_data
.x
->border_width
));
1177 store_in_alist (alistptr
, Qinternal_border_width
,
1178 make_number (f
->output_data
.x
->internal_border_width
));
1179 sprintf (buf
, "%ld", (long) FRAME_X_WINDOW (f
));
1180 store_in_alist (alistptr
, Qwindow_id
,
1181 build_string (buf
));
1182 #ifdef USE_X_TOOLKIT
1183 /* Tooltip frame may not have this widget. */
1184 if (f
->output_data
.x
->widget
)
1186 sprintf (buf
, "%ld", (long) FRAME_OUTER_WINDOW (f
));
1187 store_in_alist (alistptr
, Qouter_window_id
,
1188 build_string (buf
));
1189 store_in_alist (alistptr
, Qicon_name
, f
->icon_name
);
1190 FRAME_SAMPLE_VISIBILITY (f
);
1191 store_in_alist (alistptr
, Qvisibility
,
1192 (FRAME_VISIBLE_P (f
) ? Qt
1193 : FRAME_ICONIFIED_P (f
) ? Qicon
: Qnil
));
1194 store_in_alist (alistptr
, Qdisplay
,
1195 XCAR (FRAME_X_DISPLAY_INFO (f
)->name_list_element
));
1197 if (f
->output_data
.x
->parent_desc
== FRAME_X_DISPLAY_INFO (f
)->root_window
)
1200 XSETFASTINT (tem
, f
->output_data
.x
->parent_desc
);
1201 store_in_alist (alistptr
, Qparent_id
, tem
);
1206 /* Gamma-correct COLOR on frame F. */
1209 gamma_correct (f
, color
)
1215 color
->red
= pow (color
->red
/ 65535.0, f
->gamma
) * 65535.0 + 0.5;
1216 color
->green
= pow (color
->green
/ 65535.0, f
->gamma
) * 65535.0 + 0.5;
1217 color
->blue
= pow (color
->blue
/ 65535.0, f
->gamma
) * 65535.0 + 0.5;
1222 /* Decide if color named COLOR_NAME is valid for use on frame F. If
1223 so, return the RGB values in COLOR. If ALLOC_P is non-zero,
1224 allocate the color. Value is zero if COLOR_NAME is invalid, or
1225 no color could be allocated. */
1228 x_defined_color (f
, color_name
, color
, alloc_p
)
1235 Display
*dpy
= FRAME_X_DISPLAY (f
);
1236 Colormap cmap
= FRAME_X_COLORMAP (f
);
1239 success_p
= XParseColor (dpy
, cmap
, color_name
, color
);
1240 if (success_p
&& alloc_p
)
1241 success_p
= x_alloc_nearest_color (f
, cmap
, color
);
1248 /* Return the pixel color value for color COLOR_NAME on frame F. If F
1249 is a monochrome frame, return MONO_COLOR regardless of what ARG says.
1250 Signal an error if color can't be allocated. */
1253 x_decode_color (f
, color_name
, mono_color
)
1255 Lisp_Object color_name
;
1260 CHECK_STRING (color_name
, 0);
1262 #if 0 /* Don't do this. It's wrong when we're not using the default
1263 colormap, it makes freeing difficult, and it's probably not
1264 an important optimization. */
1265 if (strcmp (XSTRING (color_name
)->data
, "black") == 0)
1266 return BLACK_PIX_DEFAULT (f
);
1267 else if (strcmp (XSTRING (color_name
)->data
, "white") == 0)
1268 return WHITE_PIX_DEFAULT (f
);
1271 /* Return MONO_COLOR for monochrome frames. */
1272 if (FRAME_X_DISPLAY_INFO (f
)->n_planes
== 1)
1275 /* x_defined_color is responsible for coping with failures
1276 by looking for a near-miss. */
1277 if (x_defined_color (f
, XSTRING (color_name
)->data
, &cdef
, 1))
1280 Fsignal (Qerror
, Fcons (build_string ("Undefined color"),
1281 Fcons (color_name
, Qnil
)));
1287 /* Change the `line-spacing' frame parameter of frame F. OLD_VALUE is
1288 the previous value of that parameter, NEW_VALUE is the new value. */
1291 x_set_line_spacing (f
, new_value
, old_value
)
1293 Lisp_Object new_value
, old_value
;
1295 if (NILP (new_value
))
1296 f
->extra_line_spacing
= 0;
1297 else if (NATNUMP (new_value
))
1298 f
->extra_line_spacing
= XFASTINT (new_value
);
1300 Fsignal (Qerror
, Fcons (build_string ("Invalid line-spacing"),
1301 Fcons (new_value
, Qnil
)));
1302 if (FRAME_VISIBLE_P (f
))
1307 /* Change the `screen-gamma' frame parameter of frame F. OLD_VALUE is
1308 the previous value of that parameter, NEW_VALUE is the new value. */
1311 x_set_screen_gamma (f
, new_value
, old_value
)
1313 Lisp_Object new_value
, old_value
;
1315 if (NILP (new_value
))
1317 else if (NUMBERP (new_value
) && XFLOATINT (new_value
) > 0)
1318 /* The value 0.4545 is the normal viewing gamma. */
1319 f
->gamma
= 1.0 / (0.4545 * XFLOATINT (new_value
));
1321 Fsignal (Qerror
, Fcons (build_string ("Invalid screen-gamma"),
1322 Fcons (new_value
, Qnil
)));
1324 clear_face_cache (0);
1328 /* Functions called only from `x_set_frame_param'
1329 to set individual parameters.
1331 If FRAME_X_WINDOW (f) is 0,
1332 the frame is being created and its X-window does not exist yet.
1333 In that case, just record the parameter's new value
1334 in the standard place; do not attempt to change the window. */
1337 x_set_foreground_color (f
, arg
, oldval
)
1339 Lisp_Object arg
, oldval
;
1341 unsigned long pixel
= x_decode_color (f
, arg
, BLACK_PIX_DEFAULT (f
));
1343 unload_color (f
, f
->output_data
.x
->foreground_pixel
);
1344 f
->output_data
.x
->foreground_pixel
= pixel
;
1346 if (FRAME_X_WINDOW (f
) != 0)
1349 XSetForeground (FRAME_X_DISPLAY (f
), f
->output_data
.x
->normal_gc
,
1350 f
->output_data
.x
->foreground_pixel
);
1351 XSetBackground (FRAME_X_DISPLAY (f
), f
->output_data
.x
->reverse_gc
,
1352 f
->output_data
.x
->foreground_pixel
);
1354 update_face_from_frame_parameter (f
, Qforeground_color
, arg
);
1355 if (FRAME_VISIBLE_P (f
))
1361 x_set_background_color (f
, arg
, oldval
)
1363 Lisp_Object arg
, oldval
;
1365 unsigned long pixel
= x_decode_color (f
, arg
, WHITE_PIX_DEFAULT (f
));
1367 unload_color (f
, f
->output_data
.x
->background_pixel
);
1368 f
->output_data
.x
->background_pixel
= pixel
;
1370 if (FRAME_X_WINDOW (f
) != 0)
1373 /* The main frame area. */
1374 XSetBackground (FRAME_X_DISPLAY (f
), f
->output_data
.x
->normal_gc
,
1375 f
->output_data
.x
->background_pixel
);
1376 XSetForeground (FRAME_X_DISPLAY (f
), f
->output_data
.x
->reverse_gc
,
1377 f
->output_data
.x
->background_pixel
);
1378 XSetForeground (FRAME_X_DISPLAY (f
), f
->output_data
.x
->cursor_gc
,
1379 f
->output_data
.x
->background_pixel
);
1380 XSetWindowBackground (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
1381 f
->output_data
.x
->background_pixel
);
1384 for (bar
= FRAME_SCROLL_BARS (f
); !NILP (bar
);
1385 bar
= XSCROLL_BAR (bar
)->next
)
1386 XSetWindowBackground (FRAME_X_DISPLAY (f
),
1387 SCROLL_BAR_X_WINDOW (XSCROLL_BAR (bar
)),
1388 f
->output_data
.x
->background_pixel
);
1392 update_face_from_frame_parameter (f
, Qbackground_color
, arg
);
1394 if (FRAME_VISIBLE_P (f
))
1400 x_set_mouse_color (f
, arg
, oldval
)
1402 Lisp_Object arg
, oldval
;
1404 Cursor cursor
, nontext_cursor
, mode_cursor
, cross_cursor
;
1405 Cursor busy_cursor
, horizontal_drag_cursor
;
1407 unsigned long pixel
= x_decode_color (f
, arg
, BLACK_PIX_DEFAULT (f
));
1408 unsigned long mask_color
= f
->output_data
.x
->background_pixel
;
1410 /* Don't let pointers be invisible. */
1411 if (mask_color
== pixel
1412 && mask_color
== f
->output_data
.x
->background_pixel
)
1414 x_free_colors (f
, &pixel
, 1);
1415 pixel
= x_copy_color (f
, f
->output_data
.x
->foreground_pixel
);
1418 unload_color (f
, f
->output_data
.x
->mouse_pixel
);
1419 f
->output_data
.x
->mouse_pixel
= pixel
;
1423 /* It's not okay to crash if the user selects a screwy cursor. */
1424 count
= x_catch_errors (FRAME_X_DISPLAY (f
));
1426 if (!EQ (Qnil
, Vx_pointer_shape
))
1428 CHECK_NUMBER (Vx_pointer_shape
, 0);
1429 cursor
= XCreateFontCursor (FRAME_X_DISPLAY (f
), XINT (Vx_pointer_shape
));
1432 cursor
= XCreateFontCursor (FRAME_X_DISPLAY (f
), XC_xterm
);
1433 x_check_errors (FRAME_X_DISPLAY (f
), "bad text pointer cursor: %s");
1435 if (!EQ (Qnil
, Vx_nontext_pointer_shape
))
1437 CHECK_NUMBER (Vx_nontext_pointer_shape
, 0);
1438 nontext_cursor
= XCreateFontCursor (FRAME_X_DISPLAY (f
),
1439 XINT (Vx_nontext_pointer_shape
));
1442 nontext_cursor
= XCreateFontCursor (FRAME_X_DISPLAY (f
), XC_left_ptr
);
1443 x_check_errors (FRAME_X_DISPLAY (f
), "bad nontext pointer cursor: %s");
1445 if (!EQ (Qnil
, Vx_busy_pointer_shape
))
1447 CHECK_NUMBER (Vx_busy_pointer_shape
, 0);
1448 busy_cursor
= XCreateFontCursor (FRAME_X_DISPLAY (f
),
1449 XINT (Vx_busy_pointer_shape
));
1452 busy_cursor
= XCreateFontCursor (FRAME_X_DISPLAY (f
), XC_watch
);
1453 x_check_errors (FRAME_X_DISPLAY (f
), "bad busy pointer cursor: %s");
1455 x_check_errors (FRAME_X_DISPLAY (f
), "bad nontext pointer cursor: %s");
1456 if (!EQ (Qnil
, Vx_mode_pointer_shape
))
1458 CHECK_NUMBER (Vx_mode_pointer_shape
, 0);
1459 mode_cursor
= XCreateFontCursor (FRAME_X_DISPLAY (f
),
1460 XINT (Vx_mode_pointer_shape
));
1463 mode_cursor
= XCreateFontCursor (FRAME_X_DISPLAY (f
), XC_xterm
);
1464 x_check_errors (FRAME_X_DISPLAY (f
), "bad modeline pointer cursor: %s");
1466 if (!EQ (Qnil
, Vx_sensitive_text_pointer_shape
))
1468 CHECK_NUMBER (Vx_sensitive_text_pointer_shape
, 0);
1470 = XCreateFontCursor (FRAME_X_DISPLAY (f
),
1471 XINT (Vx_sensitive_text_pointer_shape
));
1474 cross_cursor
= XCreateFontCursor (FRAME_X_DISPLAY (f
), XC_crosshair
);
1476 if (!NILP (Vx_window_horizontal_drag_shape
))
1478 CHECK_NUMBER (Vx_window_horizontal_drag_shape
, 0);
1479 horizontal_drag_cursor
1480 = XCreateFontCursor (FRAME_X_DISPLAY (f
),
1481 XINT (Vx_window_horizontal_drag_shape
));
1484 horizontal_drag_cursor
1485 = XCreateFontCursor (FRAME_X_DISPLAY (f
), XC_sb_h_double_arrow
);
1487 /* Check and report errors with the above calls. */
1488 x_check_errors (FRAME_X_DISPLAY (f
), "can't set cursor shape: %s");
1489 x_uncatch_errors (FRAME_X_DISPLAY (f
), count
);
1492 XColor fore_color
, back_color
;
1494 fore_color
.pixel
= f
->output_data
.x
->mouse_pixel
;
1495 x_query_color (f
, &fore_color
);
1496 back_color
.pixel
= mask_color
;
1497 x_query_color (f
, &back_color
);
1499 XRecolorCursor (FRAME_X_DISPLAY (f
), cursor
,
1500 &fore_color
, &back_color
);
1501 XRecolorCursor (FRAME_X_DISPLAY (f
), nontext_cursor
,
1502 &fore_color
, &back_color
);
1503 XRecolorCursor (FRAME_X_DISPLAY (f
), mode_cursor
,
1504 &fore_color
, &back_color
);
1505 XRecolorCursor (FRAME_X_DISPLAY (f
), cross_cursor
,
1506 &fore_color
, &back_color
);
1507 XRecolorCursor (FRAME_X_DISPLAY (f
), busy_cursor
,
1508 &fore_color
, &back_color
);
1509 XRecolorCursor (FRAME_X_DISPLAY (f
), horizontal_drag_cursor
,
1510 &fore_color
, &back_color
);
1513 if (FRAME_X_WINDOW (f
) != 0)
1514 XDefineCursor (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), cursor
);
1516 if (cursor
!= f
->output_data
.x
->text_cursor
1517 && f
->output_data
.x
->text_cursor
!= 0)
1518 XFreeCursor (FRAME_X_DISPLAY (f
), f
->output_data
.x
->text_cursor
);
1519 f
->output_data
.x
->text_cursor
= cursor
;
1521 if (nontext_cursor
!= f
->output_data
.x
->nontext_cursor
1522 && f
->output_data
.x
->nontext_cursor
!= 0)
1523 XFreeCursor (FRAME_X_DISPLAY (f
), f
->output_data
.x
->nontext_cursor
);
1524 f
->output_data
.x
->nontext_cursor
= nontext_cursor
;
1526 if (busy_cursor
!= f
->output_data
.x
->busy_cursor
1527 && f
->output_data
.x
->busy_cursor
!= 0)
1528 XFreeCursor (FRAME_X_DISPLAY (f
), f
->output_data
.x
->busy_cursor
);
1529 f
->output_data
.x
->busy_cursor
= busy_cursor
;
1531 if (mode_cursor
!= f
->output_data
.x
->modeline_cursor
1532 && f
->output_data
.x
->modeline_cursor
!= 0)
1533 XFreeCursor (FRAME_X_DISPLAY (f
), f
->output_data
.x
->modeline_cursor
);
1534 f
->output_data
.x
->modeline_cursor
= mode_cursor
;
1536 if (cross_cursor
!= f
->output_data
.x
->cross_cursor
1537 && f
->output_data
.x
->cross_cursor
!= 0)
1538 XFreeCursor (FRAME_X_DISPLAY (f
), f
->output_data
.x
->cross_cursor
);
1539 f
->output_data
.x
->cross_cursor
= cross_cursor
;
1541 if (horizontal_drag_cursor
!= f
->output_data
.x
->horizontal_drag_cursor
1542 && f
->output_data
.x
->horizontal_drag_cursor
!= 0)
1543 XFreeCursor (FRAME_X_DISPLAY (f
), f
->output_data
.x
->horizontal_drag_cursor
);
1544 f
->output_data
.x
->horizontal_drag_cursor
= horizontal_drag_cursor
;
1546 XFlush (FRAME_X_DISPLAY (f
));
1549 update_face_from_frame_parameter (f
, Qmouse_color
, arg
);
1553 x_set_cursor_color (f
, arg
, oldval
)
1555 Lisp_Object arg
, oldval
;
1557 unsigned long fore_pixel
, pixel
;
1558 int fore_pixel_allocated_p
= 0, pixel_allocated_p
= 0;
1560 if (!NILP (Vx_cursor_fore_pixel
))
1562 fore_pixel
= x_decode_color (f
, Vx_cursor_fore_pixel
,
1563 WHITE_PIX_DEFAULT (f
));
1564 fore_pixel_allocated_p
= 1;
1567 fore_pixel
= f
->output_data
.x
->background_pixel
;
1569 pixel
= x_decode_color (f
, arg
, BLACK_PIX_DEFAULT (f
));
1570 pixel_allocated_p
= 1;
1572 /* Make sure that the cursor color differs from the background color. */
1573 if (pixel
== f
->output_data
.x
->background_pixel
)
1575 if (pixel_allocated_p
)
1577 x_free_colors (f
, &pixel
, 1);
1578 pixel_allocated_p
= 0;
1581 pixel
= f
->output_data
.x
->mouse_pixel
;
1582 if (pixel
== fore_pixel
)
1584 if (fore_pixel_allocated_p
)
1586 x_free_colors (f
, &fore_pixel
, 1);
1587 fore_pixel_allocated_p
= 0;
1589 fore_pixel
= f
->output_data
.x
->background_pixel
;
1593 unload_color (f
, f
->output_data
.x
->cursor_foreground_pixel
);
1594 if (!fore_pixel_allocated_p
)
1595 fore_pixel
= x_copy_color (f
, fore_pixel
);
1596 f
->output_data
.x
->cursor_foreground_pixel
= fore_pixel
;
1598 unload_color (f
, f
->output_data
.x
->cursor_pixel
);
1599 if (!pixel_allocated_p
)
1600 pixel
= x_copy_color (f
, pixel
);
1601 f
->output_data
.x
->cursor_pixel
= pixel
;
1603 if (FRAME_X_WINDOW (f
) != 0)
1606 XSetBackground (FRAME_X_DISPLAY (f
), f
->output_data
.x
->cursor_gc
,
1607 f
->output_data
.x
->cursor_pixel
);
1608 XSetForeground (FRAME_X_DISPLAY (f
), f
->output_data
.x
->cursor_gc
,
1612 if (FRAME_VISIBLE_P (f
))
1614 x_update_cursor (f
, 0);
1615 x_update_cursor (f
, 1);
1619 update_face_from_frame_parameter (f
, Qcursor_color
, arg
);
1622 /* Set the border-color of frame F to value described by ARG.
1623 ARG can be a string naming a color.
1624 The border-color is used for the border that is drawn by the X server.
1625 Note that this does not fully take effect if done before
1626 F has an x-window; it must be redone when the window is created.
1628 Note: this is done in two routines because of the way X10 works.
1630 Note: under X11, this is normally the province of the window manager,
1631 and so emacs' border colors may be overridden. */
1634 x_set_border_color (f
, arg
, oldval
)
1636 Lisp_Object arg
, oldval
;
1640 CHECK_STRING (arg
, 0);
1641 pix
= x_decode_color (f
, arg
, BLACK_PIX_DEFAULT (f
));
1642 x_set_border_pixel (f
, pix
);
1643 update_face_from_frame_parameter (f
, Qborder_color
, arg
);
1646 /* Set the border-color of frame F to pixel value PIX.
1647 Note that this does not fully take effect if done before
1648 F has an x-window. */
1651 x_set_border_pixel (f
, pix
)
1655 unload_color (f
, f
->output_data
.x
->border_pixel
);
1656 f
->output_data
.x
->border_pixel
= pix
;
1658 if (FRAME_X_WINDOW (f
) != 0 && f
->output_data
.x
->border_width
> 0)
1661 XSetWindowBorder (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
1662 (unsigned long)pix
);
1665 if (FRAME_VISIBLE_P (f
))
1671 /* Value is the internal representation of the specified cursor type
1672 ARG. If type is BAR_CURSOR, return in *WIDTH the specified width
1673 of the bar cursor. */
1675 enum text_cursor_kinds
1676 x_specified_cursor_type (arg
, width
)
1680 enum text_cursor_kinds type
;
1687 else if (CONSP (arg
)
1688 && EQ (XCAR (arg
), Qbar
)
1689 && INTEGERP (XCDR (arg
))
1690 && XINT (XCDR (arg
)) >= 0)
1693 *width
= XINT (XCDR (arg
));
1695 else if (NILP (arg
))
1698 /* Treat anything unknown as "box cursor".
1699 It was bad to signal an error; people have trouble fixing
1700 .Xdefaults with Emacs, when it has something bad in it. */
1701 type
= FILLED_BOX_CURSOR
;
1707 x_set_cursor_type (f
, arg
, oldval
)
1709 Lisp_Object arg
, oldval
;
1713 FRAME_DESIRED_CURSOR (f
) = x_specified_cursor_type (arg
, &width
);
1714 f
->output_data
.x
->cursor_width
= width
;
1716 /* Make sure the cursor gets redrawn. This is overkill, but how
1717 often do people change cursor types? */
1718 update_mode_lines
++;
1722 x_set_icon_type (f
, arg
, oldval
)
1724 Lisp_Object arg
, oldval
;
1730 if (STRINGP (oldval
) && EQ (Fstring_equal (oldval
, arg
), Qt
))
1733 else if (!STRINGP (oldval
) && EQ (oldval
, Qnil
) == EQ (arg
, Qnil
))
1738 result
= x_text_icon (f
,
1739 (char *) XSTRING ((!NILP (f
->icon_name
)
1743 result
= x_bitmap_icon (f
, arg
);
1748 error ("No icon window available");
1751 XFlush (FRAME_X_DISPLAY (f
));
1755 /* Return non-nil if frame F wants a bitmap icon. */
1763 tem
= assq_no_quit (Qicon_type
, f
->param_alist
);
1771 x_set_icon_name (f
, arg
, oldval
)
1773 Lisp_Object arg
, oldval
;
1779 if (STRINGP (oldval
) && EQ (Fstring_equal (oldval
, arg
), Qt
))
1782 else if (!STRINGP (oldval
) && EQ (oldval
, Qnil
) == EQ (arg
, Qnil
))
1787 if (f
->output_data
.x
->icon_bitmap
!= 0)
1792 result
= x_text_icon (f
,
1793 (char *) XSTRING ((!NILP (f
->icon_name
)
1802 error ("No icon window available");
1805 XFlush (FRAME_X_DISPLAY (f
));
1810 x_set_font (f
, arg
, oldval
)
1812 Lisp_Object arg
, oldval
;
1815 Lisp_Object fontset_name
;
1818 CHECK_STRING (arg
, 1);
1820 fontset_name
= Fquery_fontset (arg
, Qnil
);
1823 result
= (STRINGP (fontset_name
)
1824 ? x_new_fontset (f
, XSTRING (fontset_name
)->data
)
1825 : x_new_font (f
, XSTRING (arg
)->data
));
1828 if (EQ (result
, Qnil
))
1829 error ("Font `%s' is not defined", XSTRING (arg
)->data
);
1830 else if (EQ (result
, Qt
))
1831 error ("The characters of the given font have varying widths");
1832 else if (STRINGP (result
))
1834 if (!NILP (Fequal (result
, oldval
)))
1836 store_frame_param (f
, Qfont
, result
);
1837 recompute_basic_faces (f
);
1842 do_pending_window_change (0);
1844 /* Don't call `face-set-after-frame-default' when faces haven't been
1845 initialized yet. This is the case when called from
1846 Fx_create_frame. In that case, the X widget or window doesn't
1847 exist either, and we can end up in x_report_frame_params with a
1848 null widget which gives a segfault. */
1849 if (FRAME_FACE_CACHE (f
))
1851 XSETFRAME (frame
, f
);
1852 call1 (Qface_set_after_frame_default
, frame
);
1857 x_set_border_width (f
, arg
, oldval
)
1859 Lisp_Object arg
, oldval
;
1861 CHECK_NUMBER (arg
, 0);
1863 if (XINT (arg
) == f
->output_data
.x
->border_width
)
1866 if (FRAME_X_WINDOW (f
) != 0)
1867 error ("Cannot change the border width of a window");
1869 f
->output_data
.x
->border_width
= XINT (arg
);
1873 x_set_internal_border_width (f
, arg
, oldval
)
1875 Lisp_Object arg
, oldval
;
1877 int old
= f
->output_data
.x
->internal_border_width
;
1879 CHECK_NUMBER (arg
, 0);
1880 f
->output_data
.x
->internal_border_width
= XINT (arg
);
1881 if (f
->output_data
.x
->internal_border_width
< 0)
1882 f
->output_data
.x
->internal_border_width
= 0;
1884 #ifdef USE_X_TOOLKIT
1885 if (f
->output_data
.x
->edit_widget
)
1886 widget_store_internal_border (f
->output_data
.x
->edit_widget
);
1889 if (f
->output_data
.x
->internal_border_width
== old
)
1892 if (FRAME_X_WINDOW (f
) != 0)
1894 x_set_window_size (f
, 0, f
->width
, f
->height
);
1895 SET_FRAME_GARBAGED (f
);
1896 do_pending_window_change (0);
1901 x_set_visibility (f
, value
, oldval
)
1903 Lisp_Object value
, oldval
;
1906 XSETFRAME (frame
, f
);
1909 Fmake_frame_invisible (frame
, Qt
);
1910 else if (EQ (value
, Qicon
))
1911 Ficonify_frame (frame
);
1913 Fmake_frame_visible (frame
);
1917 /* Change window heights in windows rooted in WINDOW by N lines. */
1920 x_change_window_heights (window
, n
)
1924 struct window
*w
= XWINDOW (window
);
1926 XSETFASTINT (w
->top
, XFASTINT (w
->top
) + n
);
1927 XSETFASTINT (w
->height
, XFASTINT (w
->height
) - n
);
1929 if (INTEGERP (w
->orig_top
))
1930 XSETFASTINT (w
->orig_top
, XFASTINT (w
->orig_top
) + n
);
1931 if (INTEGERP (w
->orig_height
))
1932 XSETFASTINT (w
->orig_height
, XFASTINT (w
->orig_height
) - n
);
1934 /* Handle just the top child in a vertical split. */
1935 if (!NILP (w
->vchild
))
1936 x_change_window_heights (w
->vchild
, n
);
1938 /* Adjust all children in a horizontal split. */
1939 for (window
= w
->hchild
; !NILP (window
); window
= w
->next
)
1941 w
= XWINDOW (window
);
1942 x_change_window_heights (window
, n
);
1947 x_set_menu_bar_lines (f
, value
, oldval
)
1949 Lisp_Object value
, oldval
;
1952 #ifndef USE_X_TOOLKIT
1953 int olines
= FRAME_MENU_BAR_LINES (f
);
1956 /* Right now, menu bars don't work properly in minibuf-only frames;
1957 most of the commands try to apply themselves to the minibuffer
1958 frame itself, and get an error because you can't switch buffers
1959 in or split the minibuffer window. */
1960 if (FRAME_MINIBUF_ONLY_P (f
))
1963 if (INTEGERP (value
))
1964 nlines
= XINT (value
);
1968 /* Make sure we redisplay all windows in this frame. */
1969 windows_or_buffers_changed
++;
1971 #ifdef USE_X_TOOLKIT
1972 FRAME_MENU_BAR_LINES (f
) = 0;
1975 FRAME_EXTERNAL_MENU_BAR (f
) = 1;
1976 if (FRAME_X_P (f
) && f
->output_data
.x
->menubar_widget
== 0)
1977 /* Make sure next redisplay shows the menu bar. */
1978 XWINDOW (FRAME_SELECTED_WINDOW (f
))->update_mode_line
= Qt
;
1982 if (FRAME_EXTERNAL_MENU_BAR (f
) == 1)
1983 free_frame_menubar (f
);
1984 FRAME_EXTERNAL_MENU_BAR (f
) = 0;
1986 f
->output_data
.x
->menubar_widget
= 0;
1988 #else /* not USE_X_TOOLKIT */
1989 FRAME_MENU_BAR_LINES (f
) = nlines
;
1990 x_change_window_heights (f
->root_window
, nlines
- olines
);
1991 #endif /* not USE_X_TOOLKIT */
1996 /* Set the number of lines used for the tool bar of frame F to VALUE.
1997 VALUE not an integer, or < 0 means set the lines to zero. OLDVAL
1998 is the old number of tool bar lines. This function changes the
1999 height of all windows on frame F to match the new tool bar height.
2000 The frame's height doesn't change. */
2003 x_set_tool_bar_lines (f
, value
, oldval
)
2005 Lisp_Object value
, oldval
;
2007 int delta
, nlines
, root_height
;
2008 Lisp_Object root_window
;
2010 /* Treat tool bars like menu bars. */
2011 if (FRAME_MINIBUF_ONLY_P (f
))
2014 /* Use VALUE only if an integer >= 0. */
2015 if (INTEGERP (value
) && XINT (value
) >= 0)
2016 nlines
= XFASTINT (value
);
2020 /* Make sure we redisplay all windows in this frame. */
2021 ++windows_or_buffers_changed
;
2023 delta
= nlines
- FRAME_TOOL_BAR_LINES (f
);
2025 /* Don't resize the tool-bar to more than we have room for. */
2026 root_window
= FRAME_ROOT_WINDOW (f
);
2027 root_height
= XINT (XWINDOW (root_window
)->height
);
2028 if (root_height
- delta
< 1)
2030 delta
= root_height
- 1;
2031 nlines
= FRAME_TOOL_BAR_LINES (f
) + delta
;
2034 FRAME_TOOL_BAR_LINES (f
) = nlines
;
2035 x_change_window_heights (root_window
, delta
);
2038 /* We also have to make sure that the internal border at the top of
2039 the frame, below the menu bar or tool bar, is redrawn when the
2040 tool bar disappears. This is so because the internal border is
2041 below the tool bar if one is displayed, but is below the menu bar
2042 if there isn't a tool bar. The tool bar draws into the area
2043 below the menu bar. */
2044 if (FRAME_X_WINDOW (f
) && FRAME_TOOL_BAR_LINES (f
) == 0)
2048 clear_current_matrices (f
);
2049 updating_frame
= NULL
;
2052 /* If the tool bar gets smaller, the internal border below it
2053 has to be cleared. It was formerly part of the display
2054 of the larger tool bar, and updating windows won't clear it. */
2057 int height
= FRAME_INTERNAL_BORDER_WIDTH (f
);
2058 int width
= PIXEL_WIDTH (f
);
2059 int y
= nlines
* CANON_Y_UNIT (f
);
2062 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2063 0, y
, width
, height
, False
);
2069 /* Set the foreground color for scroll bars on frame F to VALUE.
2070 VALUE should be a string, a color name. If it isn't a string or
2071 isn't a valid color name, do nothing. OLDVAL is the old value of
2072 the frame parameter. */
2075 x_set_scroll_bar_foreground (f
, value
, oldval
)
2077 Lisp_Object value
, oldval
;
2079 unsigned long pixel
;
2081 if (STRINGP (value
))
2082 pixel
= x_decode_color (f
, value
, BLACK_PIX_DEFAULT (f
));
2086 if (f
->output_data
.x
->scroll_bar_foreground_pixel
!= -1)
2087 unload_color (f
, f
->output_data
.x
->scroll_bar_foreground_pixel
);
2089 f
->output_data
.x
->scroll_bar_foreground_pixel
= pixel
;
2090 if (FRAME_X_WINDOW (f
) && FRAME_VISIBLE_P (f
))
2092 /* Remove all scroll bars because they have wrong colors. */
2093 if (condemn_scroll_bars_hook
)
2094 (*condemn_scroll_bars_hook
) (f
);
2095 if (judge_scroll_bars_hook
)
2096 (*judge_scroll_bars_hook
) (f
);
2098 update_face_from_frame_parameter (f
, Qscroll_bar_foreground
, value
);
2104 /* Set the background color for scroll bars on frame F to VALUE VALUE
2105 should be a string, a color name. If it isn't a string or isn't a
2106 valid color name, do nothing. OLDVAL is the old value of the frame
2110 x_set_scroll_bar_background (f
, value
, oldval
)
2112 Lisp_Object value
, oldval
;
2114 unsigned long pixel
;
2116 if (STRINGP (value
))
2117 pixel
= x_decode_color (f
, value
, WHITE_PIX_DEFAULT (f
));
2121 if (f
->output_data
.x
->scroll_bar_background_pixel
!= -1)
2122 unload_color (f
, f
->output_data
.x
->scroll_bar_background_pixel
);
2124 f
->output_data
.x
->scroll_bar_background_pixel
= pixel
;
2125 if (FRAME_X_WINDOW (f
) && FRAME_VISIBLE_P (f
))
2127 /* Remove all scroll bars because they have wrong colors. */
2128 if (condemn_scroll_bars_hook
)
2129 (*condemn_scroll_bars_hook
) (f
);
2130 if (judge_scroll_bars_hook
)
2131 (*judge_scroll_bars_hook
) (f
);
2133 update_face_from_frame_parameter (f
, Qscroll_bar_background
, value
);
2139 /* Encode Lisp string STRING as a text in a format appropriate for
2140 XICCC (X Inter Client Communication Conventions).
2142 If STRING contains only ASCII characters, do no conversion and
2143 return the string data of STRING. Otherwise, encode the text by
2144 CODING_SYSTEM, and return a newly allocated memory area which
2145 should be freed by `xfree' by a caller.
2147 Store the byte length of resulting text in *TEXT_BYTES.
2149 If the text contains only ASCII and Latin-1, store 1 in *STRING_P,
2150 which means that the `encoding' of the result can be `STRING'.
2151 Otherwise store 0 in *STRINGP, which means that the `encoding' of
2152 the result should be `COMPOUND_TEXT'. */
2155 x_encode_text (string
, coding_system
, text_bytes
, stringp
)
2156 Lisp_Object string
, coding_system
;
2157 int *text_bytes
, *stringp
;
2159 unsigned char *str
= XSTRING (string
)->data
;
2160 int chars
= XSTRING (string
)->size
;
2161 int bytes
= STRING_BYTES (XSTRING (string
));
2165 struct coding_system coding
;
2167 charset_info
= find_charset_in_text (str
, chars
, bytes
, NULL
, Qnil
);
2168 if (charset_info
== 0)
2170 /* No multibyte character in OBJ. We need not encode it. */
2171 *text_bytes
= bytes
;
2176 setup_coding_system (coding_system
, &coding
);
2177 coding
.src_multibyte
= 1;
2178 coding
.dst_multibyte
= 0;
2179 coding
.mode
|= CODING_MODE_LAST_BLOCK
;
2180 if (coding
.type
== coding_type_iso2022
)
2181 coding
.flags
|= CODING_FLAG_ISO_SAFE
;
2182 /* We suppress producing escape sequences for composition. */
2183 coding
.composing
= COMPOSITION_DISABLED
;
2184 bufsize
= encoding_buffer_size (&coding
, bytes
);
2185 buf
= (unsigned char *) xmalloc (bufsize
);
2186 encode_coding (&coding
, str
, buf
, bytes
, bufsize
);
2187 *text_bytes
= coding
.produced
;
2188 *stringp
= (charset_info
== 1 || !EQ (coding_system
, Qcompound_text
));
2193 /* Change the name of frame F to NAME. If NAME is nil, set F's name to
2196 If EXPLICIT is non-zero, that indicates that lisp code is setting the
2197 name; if NAME is a string, set F's name to NAME and set
2198 F->explicit_name; if NAME is Qnil, then clear F->explicit_name.
2200 If EXPLICIT is zero, that indicates that Emacs redisplay code is
2201 suggesting a new name, which lisp code should override; if
2202 F->explicit_name is set, ignore the new name; otherwise, set it. */
2205 x_set_name (f
, name
, explicit)
2210 /* Make sure that requests from lisp code override requests from
2211 Emacs redisplay code. */
2214 /* If we're switching from explicit to implicit, we had better
2215 update the mode lines and thereby update the title. */
2216 if (f
->explicit_name
&& NILP (name
))
2217 update_mode_lines
= 1;
2219 f
->explicit_name
= ! NILP (name
);
2221 else if (f
->explicit_name
)
2224 /* If NAME is nil, set the name to the x_id_name. */
2227 /* Check for no change needed in this very common case
2228 before we do any consing. */
2229 if (!strcmp (FRAME_X_DISPLAY_INFO (f
)->x_id_name
,
2230 XSTRING (f
->name
)->data
))
2232 name
= build_string (FRAME_X_DISPLAY_INFO (f
)->x_id_name
);
2235 CHECK_STRING (name
, 0);
2237 /* Don't change the name if it's already NAME. */
2238 if (! NILP (Fstring_equal (name
, f
->name
)))
2243 /* For setting the frame title, the title parameter should override
2244 the name parameter. */
2245 if (! NILP (f
->title
))
2248 if (FRAME_X_WINDOW (f
))
2253 XTextProperty text
, icon
;
2255 Lisp_Object coding_system
;
2257 coding_system
= Vlocale_coding_system
;
2258 if (NILP (coding_system
))
2259 coding_system
= Qcompound_text
;
2260 text
.value
= x_encode_text (name
, coding_system
, &bytes
, &stringp
);
2261 text
.encoding
= (stringp
? XA_STRING
2262 : FRAME_X_DISPLAY_INFO (f
)->Xatom_COMPOUND_TEXT
);
2264 text
.nitems
= bytes
;
2266 if (NILP (f
->icon_name
))
2272 icon
.value
= x_encode_text (f
->icon_name
, coding_system
,
2274 icon
.encoding
= (stringp
? XA_STRING
2275 : FRAME_X_DISPLAY_INFO (f
)->Xatom_COMPOUND_TEXT
);
2277 icon
.nitems
= bytes
;
2279 #ifdef USE_X_TOOLKIT
2280 XSetWMName (FRAME_X_DISPLAY (f
),
2281 XtWindow (f
->output_data
.x
->widget
), &text
);
2282 XSetWMIconName (FRAME_X_DISPLAY (f
), XtWindow (f
->output_data
.x
->widget
),
2284 #else /* not USE_X_TOOLKIT */
2285 XSetWMName (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), &text
);
2286 XSetWMIconName (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), &icon
);
2287 #endif /* not USE_X_TOOLKIT */
2288 if (!NILP (f
->icon_name
)
2289 && icon
.value
!= XSTRING (f
->icon_name
)->data
)
2291 if (text
.value
!= XSTRING (name
)->data
)
2294 #else /* not HAVE_X11R4 */
2295 XSetIconName (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2296 XSTRING (name
)->data
);
2297 XStoreName (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2298 XSTRING (name
)->data
);
2299 #endif /* not HAVE_X11R4 */
2304 /* This function should be called when the user's lisp code has
2305 specified a name for the frame; the name will override any set by the
2308 x_explicitly_set_name (f
, arg
, oldval
)
2310 Lisp_Object arg
, oldval
;
2312 x_set_name (f
, arg
, 1);
2315 /* This function should be called by Emacs redisplay code to set the
2316 name; names set this way will never override names set by the user's
2319 x_implicitly_set_name (f
, arg
, oldval
)
2321 Lisp_Object arg
, oldval
;
2323 x_set_name (f
, arg
, 0);
2326 /* Change the title of frame F to NAME.
2327 If NAME is nil, use the frame name as the title.
2329 If EXPLICIT is non-zero, that indicates that lisp code is setting the
2330 name; if NAME is a string, set F's name to NAME and set
2331 F->explicit_name; if NAME is Qnil, then clear F->explicit_name.
2333 If EXPLICIT is zero, that indicates that Emacs redisplay code is
2334 suggesting a new name, which lisp code should override; if
2335 F->explicit_name is set, ignore the new name; otherwise, set it. */
2338 x_set_title (f
, name
, old_name
)
2340 Lisp_Object name
, old_name
;
2342 /* Don't change the title if it's already NAME. */
2343 if (EQ (name
, f
->title
))
2346 update_mode_lines
= 1;
2353 CHECK_STRING (name
, 0);
2355 if (FRAME_X_WINDOW (f
))
2360 XTextProperty text
, icon
;
2362 Lisp_Object coding_system
;
2364 coding_system
= Vlocale_coding_system
;
2365 if (NILP (coding_system
))
2366 coding_system
= Qcompound_text
;
2367 text
.value
= x_encode_text (name
, coding_system
, &bytes
, &stringp
);
2368 text
.encoding
= (stringp
? XA_STRING
2369 : FRAME_X_DISPLAY_INFO (f
)->Xatom_COMPOUND_TEXT
);
2371 text
.nitems
= bytes
;
2373 if (NILP (f
->icon_name
))
2379 icon
.value
= x_encode_text (f
->icon_name
, coding_system
,
2381 icon
.encoding
= (stringp
? XA_STRING
2382 : FRAME_X_DISPLAY_INFO (f
)->Xatom_COMPOUND_TEXT
);
2384 icon
.nitems
= bytes
;
2386 #ifdef USE_X_TOOLKIT
2387 XSetWMName (FRAME_X_DISPLAY (f
),
2388 XtWindow (f
->output_data
.x
->widget
), &text
);
2389 XSetWMIconName (FRAME_X_DISPLAY (f
), XtWindow (f
->output_data
.x
->widget
),
2391 #else /* not USE_X_TOOLKIT */
2392 XSetWMName (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), &text
);
2393 XSetWMIconName (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), &icon
);
2394 #endif /* not USE_X_TOOLKIT */
2395 if (!NILP (f
->icon_name
)
2396 && icon
.value
!= XSTRING (f
->icon_name
)->data
)
2398 if (text
.value
!= XSTRING (name
)->data
)
2401 #else /* not HAVE_X11R4 */
2402 XSetIconName (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2403 XSTRING (name
)->data
);
2404 XStoreName (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2405 XSTRING (name
)->data
);
2406 #endif /* not HAVE_X11R4 */
2412 x_set_autoraise (f
, arg
, oldval
)
2414 Lisp_Object arg
, oldval
;
2416 f
->auto_raise
= !EQ (Qnil
, arg
);
2420 x_set_autolower (f
, arg
, oldval
)
2422 Lisp_Object arg
, oldval
;
2424 f
->auto_lower
= !EQ (Qnil
, arg
);
2428 x_set_unsplittable (f
, arg
, oldval
)
2430 Lisp_Object arg
, oldval
;
2432 f
->no_split
= !NILP (arg
);
2436 x_set_vertical_scroll_bars (f
, arg
, oldval
)
2438 Lisp_Object arg
, oldval
;
2440 if ((EQ (arg
, Qleft
) && FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (f
))
2441 || (EQ (arg
, Qright
) && FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (f
))
2442 || (NILP (arg
) && FRAME_HAS_VERTICAL_SCROLL_BARS (f
))
2443 || (!NILP (arg
) && ! FRAME_HAS_VERTICAL_SCROLL_BARS (f
)))
2445 FRAME_VERTICAL_SCROLL_BAR_TYPE (f
)
2447 ? vertical_scroll_bar_none
2449 ? vertical_scroll_bar_right
2450 : vertical_scroll_bar_left
);
2452 /* We set this parameter before creating the X window for the
2453 frame, so we can get the geometry right from the start.
2454 However, if the window hasn't been created yet, we shouldn't
2455 call x_set_window_size. */
2456 if (FRAME_X_WINDOW (f
))
2457 x_set_window_size (f
, 0, FRAME_WIDTH (f
), FRAME_HEIGHT (f
));
2458 do_pending_window_change (0);
2463 x_set_scroll_bar_width (f
, arg
, oldval
)
2465 Lisp_Object arg
, oldval
;
2467 int wid
= FONT_WIDTH (f
->output_data
.x
->font
);
2471 #ifdef USE_TOOLKIT_SCROLL_BARS
2472 /* A minimum width of 14 doesn't look good for toolkit scroll bars. */
2473 int width
= 16 + 2 * VERTICAL_SCROLL_BAR_WIDTH_TRIM
;
2474 FRAME_SCROLL_BAR_COLS (f
) = (width
+ wid
- 1) / wid
;
2475 FRAME_SCROLL_BAR_PIXEL_WIDTH (f
) = width
;
2477 /* Make the actual width at least 14 pixels and a multiple of a
2479 FRAME_SCROLL_BAR_COLS (f
) = (14 + wid
- 1) / wid
;
2481 /* Use all of that space (aside from required margins) for the
2483 FRAME_SCROLL_BAR_PIXEL_WIDTH (f
) = 0;
2486 if (FRAME_X_WINDOW (f
))
2487 x_set_window_size (f
, 0, FRAME_WIDTH (f
), FRAME_HEIGHT (f
));
2488 do_pending_window_change (0);
2490 else if (INTEGERP (arg
) && XINT (arg
) > 0
2491 && XFASTINT (arg
) != FRAME_SCROLL_BAR_PIXEL_WIDTH (f
))
2493 if (XFASTINT (arg
) <= 2 * VERTICAL_SCROLL_BAR_WIDTH_TRIM
)
2494 XSETINT (arg
, 2 * VERTICAL_SCROLL_BAR_WIDTH_TRIM
+ 1);
2496 FRAME_SCROLL_BAR_PIXEL_WIDTH (f
) = XFASTINT (arg
);
2497 FRAME_SCROLL_BAR_COLS (f
) = (XFASTINT (arg
) + wid
-1) / wid
;
2498 if (FRAME_X_WINDOW (f
))
2499 x_set_window_size (f
, 0, FRAME_WIDTH (f
), FRAME_HEIGHT (f
));
2502 change_frame_size (f
, 0, FRAME_WIDTH (f
), 0, 0, 0);
2503 XWINDOW (FRAME_SELECTED_WINDOW (f
))->cursor
.hpos
= 0;
2504 XWINDOW (FRAME_SELECTED_WINDOW (f
))->cursor
.x
= 0;
2509 /* Subroutines of creating an X frame. */
2511 /* Make sure that Vx_resource_name is set to a reasonable value.
2512 Fix it up, or set it to `emacs' if it is too hopeless. */
2515 validate_x_resource_name ()
2518 /* Number of valid characters in the resource name. */
2520 /* Number of invalid characters in the resource name. */
2525 if (!STRINGP (Vx_resource_class
))
2526 Vx_resource_class
= build_string (EMACS_CLASS
);
2528 if (STRINGP (Vx_resource_name
))
2530 unsigned char *p
= XSTRING (Vx_resource_name
)->data
;
2533 len
= STRING_BYTES (XSTRING (Vx_resource_name
));
2535 /* Only letters, digits, - and _ are valid in resource names.
2536 Count the valid characters and count the invalid ones. */
2537 for (i
= 0; i
< len
; i
++)
2540 if (! ((c
>= 'a' && c
<= 'z')
2541 || (c
>= 'A' && c
<= 'Z')
2542 || (c
>= '0' && c
<= '9')
2543 || c
== '-' || c
== '_'))
2550 /* Not a string => completely invalid. */
2551 bad_count
= 5, good_count
= 0;
2553 /* If name is valid already, return. */
2557 /* If name is entirely invalid, or nearly so, use `emacs'. */
2559 || (good_count
== 1 && bad_count
> 0))
2561 Vx_resource_name
= build_string ("emacs");
2565 /* Name is partly valid. Copy it and replace the invalid characters
2566 with underscores. */
2568 Vx_resource_name
= new = Fcopy_sequence (Vx_resource_name
);
2570 for (i
= 0; i
< len
; i
++)
2572 int c
= XSTRING (new)->data
[i
];
2573 if (! ((c
>= 'a' && c
<= 'z')
2574 || (c
>= 'A' && c
<= 'Z')
2575 || (c
>= '0' && c
<= '9')
2576 || c
== '-' || c
== '_'))
2577 XSTRING (new)->data
[i
] = '_';
2582 extern char *x_get_string_resource ();
2584 DEFUN ("x-get-resource", Fx_get_resource
, Sx_get_resource
, 2, 4, 0,
2585 "Return the value of ATTRIBUTE, of class CLASS, from the X defaults database.\n\
2586 This uses `INSTANCE.ATTRIBUTE' as the key and `Emacs.CLASS' as the\n\
2587 class, where INSTANCE is the name under which Emacs was invoked, or\n\
2588 the name specified by the `-name' or `-rn' command-line arguments.\n\
2590 The optional arguments COMPONENT and SUBCLASS add to the key and the\n\
2591 class, respectively. You must specify both of them or neither.\n\
2592 If you specify them, the key is `INSTANCE.COMPONENT.ATTRIBUTE'\n\
2593 and the class is `Emacs.CLASS.SUBCLASS'.")
2594 (attribute
, class, component
, subclass
)
2595 Lisp_Object attribute
, class, component
, subclass
;
2597 register char *value
;
2603 CHECK_STRING (attribute
, 0);
2604 CHECK_STRING (class, 0);
2606 if (!NILP (component
))
2607 CHECK_STRING (component
, 1);
2608 if (!NILP (subclass
))
2609 CHECK_STRING (subclass
, 2);
2610 if (NILP (component
) != NILP (subclass
))
2611 error ("x-get-resource: must specify both COMPONENT and SUBCLASS or neither");
2613 validate_x_resource_name ();
2615 /* Allocate space for the components, the dots which separate them,
2616 and the final '\0'. Make them big enough for the worst case. */
2617 name_key
= (char *) alloca (STRING_BYTES (XSTRING (Vx_resource_name
))
2618 + (STRINGP (component
)
2619 ? STRING_BYTES (XSTRING (component
)) : 0)
2620 + STRING_BYTES (XSTRING (attribute
))
2623 class_key
= (char *) alloca (STRING_BYTES (XSTRING (Vx_resource_class
))
2624 + STRING_BYTES (XSTRING (class))
2625 + (STRINGP (subclass
)
2626 ? STRING_BYTES (XSTRING (subclass
)) : 0)
2629 /* Start with emacs.FRAMENAME for the name (the specific one)
2630 and with `Emacs' for the class key (the general one). */
2631 strcpy (name_key
, XSTRING (Vx_resource_name
)->data
);
2632 strcpy (class_key
, XSTRING (Vx_resource_class
)->data
);
2634 strcat (class_key
, ".");
2635 strcat (class_key
, XSTRING (class)->data
);
2637 if (!NILP (component
))
2639 strcat (class_key
, ".");
2640 strcat (class_key
, XSTRING (subclass
)->data
);
2642 strcat (name_key
, ".");
2643 strcat (name_key
, XSTRING (component
)->data
);
2646 strcat (name_key
, ".");
2647 strcat (name_key
, XSTRING (attribute
)->data
);
2649 value
= x_get_string_resource (check_x_display_info (Qnil
)->xrdb
,
2650 name_key
, class_key
);
2652 if (value
!= (char *) 0)
2653 return build_string (value
);
2658 /* Get an X resource, like Fx_get_resource, but for display DPYINFO. */
2661 display_x_get_resource (dpyinfo
, attribute
, class, component
, subclass
)
2662 struct x_display_info
*dpyinfo
;
2663 Lisp_Object attribute
, class, component
, subclass
;
2665 register char *value
;
2669 CHECK_STRING (attribute
, 0);
2670 CHECK_STRING (class, 0);
2672 if (!NILP (component
))
2673 CHECK_STRING (component
, 1);
2674 if (!NILP (subclass
))
2675 CHECK_STRING (subclass
, 2);
2676 if (NILP (component
) != NILP (subclass
))
2677 error ("x-get-resource: must specify both COMPONENT and SUBCLASS or neither");
2679 validate_x_resource_name ();
2681 /* Allocate space for the components, the dots which separate them,
2682 and the final '\0'. Make them big enough for the worst case. */
2683 name_key
= (char *) alloca (STRING_BYTES (XSTRING (Vx_resource_name
))
2684 + (STRINGP (component
)
2685 ? STRING_BYTES (XSTRING (component
)) : 0)
2686 + STRING_BYTES (XSTRING (attribute
))
2689 class_key
= (char *) alloca (STRING_BYTES (XSTRING (Vx_resource_class
))
2690 + STRING_BYTES (XSTRING (class))
2691 + (STRINGP (subclass
)
2692 ? STRING_BYTES (XSTRING (subclass
)) : 0)
2695 /* Start with emacs.FRAMENAME for the name (the specific one)
2696 and with `Emacs' for the class key (the general one). */
2697 strcpy (name_key
, XSTRING (Vx_resource_name
)->data
);
2698 strcpy (class_key
, XSTRING (Vx_resource_class
)->data
);
2700 strcat (class_key
, ".");
2701 strcat (class_key
, XSTRING (class)->data
);
2703 if (!NILP (component
))
2705 strcat (class_key
, ".");
2706 strcat (class_key
, XSTRING (subclass
)->data
);
2708 strcat (name_key
, ".");
2709 strcat (name_key
, XSTRING (component
)->data
);
2712 strcat (name_key
, ".");
2713 strcat (name_key
, XSTRING (attribute
)->data
);
2715 value
= x_get_string_resource (dpyinfo
->xrdb
, name_key
, class_key
);
2717 if (value
!= (char *) 0)
2718 return build_string (value
);
2723 /* Used when C code wants a resource value. */
2726 x_get_resource_string (attribute
, class)
2727 char *attribute
, *class;
2731 struct frame
*sf
= SELECTED_FRAME ();
2733 /* Allocate space for the components, the dots which separate them,
2734 and the final '\0'. */
2735 name_key
= (char *) alloca (STRING_BYTES (XSTRING (Vinvocation_name
))
2736 + strlen (attribute
) + 2);
2737 class_key
= (char *) alloca ((sizeof (EMACS_CLASS
) - 1)
2738 + strlen (class) + 2);
2740 sprintf (name_key
, "%s.%s",
2741 XSTRING (Vinvocation_name
)->data
,
2743 sprintf (class_key
, "%s.%s", EMACS_CLASS
, class);
2745 return x_get_string_resource (FRAME_X_DISPLAY_INFO (sf
)->xrdb
,
2746 name_key
, class_key
);
2749 /* Types we might convert a resource string into. */
2759 /* Return the value of parameter PARAM.
2761 First search ALIST, then Vdefault_frame_alist, then the X defaults
2762 database, using ATTRIBUTE as the attribute name and CLASS as its class.
2764 Convert the resource to the type specified by desired_type.
2766 If no default is specified, return Qunbound. If you call
2767 x_get_arg, make sure you deal with Qunbound in a reasonable way,
2768 and don't let it get stored in any Lisp-visible variables! */
2771 x_get_arg (dpyinfo
, alist
, param
, attribute
, class, type
)
2772 struct x_display_info
*dpyinfo
;
2773 Lisp_Object alist
, param
;
2776 enum resource_types type
;
2778 register Lisp_Object tem
;
2780 tem
= Fassq (param
, alist
);
2782 tem
= Fassq (param
, Vdefault_frame_alist
);
2788 tem
= display_x_get_resource (dpyinfo
,
2789 build_string (attribute
),
2790 build_string (class),
2798 case RES_TYPE_NUMBER
:
2799 return make_number (atoi (XSTRING (tem
)->data
));
2801 case RES_TYPE_FLOAT
:
2802 return make_float (atof (XSTRING (tem
)->data
));
2804 case RES_TYPE_BOOLEAN
:
2805 tem
= Fdowncase (tem
);
2806 if (!strcmp (XSTRING (tem
)->data
, "on")
2807 || !strcmp (XSTRING (tem
)->data
, "true"))
2812 case RES_TYPE_STRING
:
2815 case RES_TYPE_SYMBOL
:
2816 /* As a special case, we map the values `true' and `on'
2817 to Qt, and `false' and `off' to Qnil. */
2820 lower
= Fdowncase (tem
);
2821 if (!strcmp (XSTRING (lower
)->data
, "on")
2822 || !strcmp (XSTRING (lower
)->data
, "true"))
2824 else if (!strcmp (XSTRING (lower
)->data
, "off")
2825 || !strcmp (XSTRING (lower
)->data
, "false"))
2828 return Fintern (tem
, Qnil
);
2841 /* Like x_get_arg, but also record the value in f->param_alist. */
2844 x_get_and_record_arg (f
, alist
, param
, attribute
, class, type
)
2846 Lisp_Object alist
, param
;
2849 enum resource_types type
;
2853 value
= x_get_arg (FRAME_X_DISPLAY_INFO (f
), alist
, param
,
2854 attribute
, class, type
);
2856 store_frame_param (f
, param
, value
);
2861 /* Record in frame F the specified or default value according to ALIST
2862 of the parameter named PROP (a Lisp symbol).
2863 If no value is specified for PROP, look for an X default for XPROP
2864 on the frame named NAME.
2865 If that is not found either, use the value DEFLT. */
2868 x_default_parameter (f
, alist
, prop
, deflt
, xprop
, xclass
, type
)
2875 enum resource_types type
;
2879 tem
= x_get_arg (FRAME_X_DISPLAY_INFO (f
), alist
, prop
, xprop
, xclass
, type
);
2880 if (EQ (tem
, Qunbound
))
2882 x_set_frame_parameters (f
, Fcons (Fcons (prop
, tem
), Qnil
));
2887 /* Record in frame F the specified or default value according to ALIST
2888 of the parameter named PROP (a Lisp symbol). If no value is
2889 specified for PROP, look for an X default for XPROP on the frame
2890 named NAME. If that is not found either, use the value DEFLT. */
2893 x_default_scroll_bar_color_parameter (f
, alist
, prop
, xprop
, xclass
,
2902 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
2905 tem
= x_get_arg (dpyinfo
, alist
, prop
, xprop
, xclass
, RES_TYPE_STRING
);
2906 if (EQ (tem
, Qunbound
))
2908 #ifdef USE_TOOLKIT_SCROLL_BARS
2910 /* See if an X resource for the scroll bar color has been
2912 tem
= display_x_get_resource (dpyinfo
,
2913 build_string (foreground_p
2917 build_string ("verticalScrollBar"),
2921 /* If nothing has been specified, scroll bars will use a
2922 toolkit-dependent default. Because these defaults are
2923 difficult to get at without actually creating a scroll
2924 bar, use nil to indicate that no color has been
2929 #else /* not USE_TOOLKIT_SCROLL_BARS */
2933 #endif /* not USE_TOOLKIT_SCROLL_BARS */
2936 x_set_frame_parameters (f
, Fcons (Fcons (prop
, tem
), Qnil
));
2942 DEFUN ("x-parse-geometry", Fx_parse_geometry
, Sx_parse_geometry
, 1, 1, 0,
2943 "Parse an X-style geometry string STRING.\n\
2944 Returns an alist of the form ((top . TOP), (left . LEFT) ... ).\n\
2945 The properties returned may include `top', `left', `height', and `width'.\n\
2946 The value of `left' or `top' may be an integer,\n\
2947 or a list (+ N) meaning N pixels relative to top/left corner,\n\
2948 or a list (- N) meaning -N pixels relative to bottom/right corner.")
2953 unsigned int width
, height
;
2956 CHECK_STRING (string
, 0);
2958 geometry
= XParseGeometry ((char *) XSTRING (string
)->data
,
2959 &x
, &y
, &width
, &height
);
2962 if (!!(geometry
& XValue
) != !!(geometry
& YValue
))
2963 error ("Must specify both x and y position, or neither");
2967 if (geometry
& XValue
)
2969 Lisp_Object element
;
2971 if (x
>= 0 && (geometry
& XNegative
))
2972 element
= Fcons (Qleft
, Fcons (Qminus
, Fcons (make_number (-x
), Qnil
)));
2973 else if (x
< 0 && ! (geometry
& XNegative
))
2974 element
= Fcons (Qleft
, Fcons (Qplus
, Fcons (make_number (x
), Qnil
)));
2976 element
= Fcons (Qleft
, make_number (x
));
2977 result
= Fcons (element
, result
);
2980 if (geometry
& YValue
)
2982 Lisp_Object element
;
2984 if (y
>= 0 && (geometry
& YNegative
))
2985 element
= Fcons (Qtop
, Fcons (Qminus
, Fcons (make_number (-y
), Qnil
)));
2986 else if (y
< 0 && ! (geometry
& YNegative
))
2987 element
= Fcons (Qtop
, Fcons (Qplus
, Fcons (make_number (y
), Qnil
)));
2989 element
= Fcons (Qtop
, make_number (y
));
2990 result
= Fcons (element
, result
);
2993 if (geometry
& WidthValue
)
2994 result
= Fcons (Fcons (Qwidth
, make_number (width
)), result
);
2995 if (geometry
& HeightValue
)
2996 result
= Fcons (Fcons (Qheight
, make_number (height
)), result
);
3001 /* Calculate the desired size and position of this window,
3002 and return the flags saying which aspects were specified.
3004 This function does not make the coordinates positive. */
3006 #define DEFAULT_ROWS 40
3007 #define DEFAULT_COLS 80
3010 x_figure_window_size (f
, parms
)
3014 register Lisp_Object tem0
, tem1
, tem2
;
3015 long window_prompting
= 0;
3016 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
3018 /* Default values if we fall through.
3019 Actually, if that happens we should get
3020 window manager prompting. */
3021 SET_FRAME_WIDTH (f
, DEFAULT_COLS
);
3022 f
->height
= DEFAULT_ROWS
;
3023 /* Window managers expect that if program-specified
3024 positions are not (0,0), they're intentional, not defaults. */
3025 f
->output_data
.x
->top_pos
= 0;
3026 f
->output_data
.x
->left_pos
= 0;
3028 tem0
= x_get_arg (dpyinfo
, parms
, Qheight
, 0, 0, RES_TYPE_NUMBER
);
3029 tem1
= x_get_arg (dpyinfo
, parms
, Qwidth
, 0, 0, RES_TYPE_NUMBER
);
3030 tem2
= x_get_arg (dpyinfo
, parms
, Quser_size
, 0, 0, RES_TYPE_NUMBER
);
3031 if (! EQ (tem0
, Qunbound
) || ! EQ (tem1
, Qunbound
))
3033 if (!EQ (tem0
, Qunbound
))
3035 CHECK_NUMBER (tem0
, 0);
3036 f
->height
= XINT (tem0
);
3038 if (!EQ (tem1
, Qunbound
))
3040 CHECK_NUMBER (tem1
, 0);
3041 SET_FRAME_WIDTH (f
, XINT (tem1
));
3043 if (!NILP (tem2
) && !EQ (tem2
, Qunbound
))
3044 window_prompting
|= USSize
;
3046 window_prompting
|= PSize
;
3049 f
->output_data
.x
->vertical_scroll_bar_extra
3050 = (!FRAME_HAS_VERTICAL_SCROLL_BARS (f
)
3052 : (FRAME_SCROLL_BAR_COLS (f
) * FONT_WIDTH (f
->output_data
.x
->font
)));
3053 f
->output_data
.x
->flags_areas_extra
3054 = FRAME_FLAGS_AREA_WIDTH (f
);
3055 f
->output_data
.x
->pixel_width
= CHAR_TO_PIXEL_WIDTH (f
, f
->width
);
3056 f
->output_data
.x
->pixel_height
= CHAR_TO_PIXEL_HEIGHT (f
, f
->height
);
3058 tem0
= x_get_arg (dpyinfo
, parms
, Qtop
, 0, 0, RES_TYPE_NUMBER
);
3059 tem1
= x_get_arg (dpyinfo
, parms
, Qleft
, 0, 0, RES_TYPE_NUMBER
);
3060 tem2
= x_get_arg (dpyinfo
, parms
, Quser_position
, 0, 0, RES_TYPE_NUMBER
);
3061 if (! EQ (tem0
, Qunbound
) || ! EQ (tem1
, Qunbound
))
3063 if (EQ (tem0
, Qminus
))
3065 f
->output_data
.x
->top_pos
= 0;
3066 window_prompting
|= YNegative
;
3068 else if (CONSP (tem0
) && EQ (XCAR (tem0
), Qminus
)
3069 && CONSP (XCDR (tem0
))
3070 && INTEGERP (XCAR (XCDR (tem0
))))
3072 f
->output_data
.x
->top_pos
= - XINT (XCAR (XCDR (tem0
)));
3073 window_prompting
|= YNegative
;
3075 else if (CONSP (tem0
) && EQ (XCAR (tem0
), Qplus
)
3076 && CONSP (XCDR (tem0
))
3077 && INTEGERP (XCAR (XCDR (tem0
))))
3079 f
->output_data
.x
->top_pos
= XINT (XCAR (XCDR (tem0
)));
3081 else if (EQ (tem0
, Qunbound
))
3082 f
->output_data
.x
->top_pos
= 0;
3085 CHECK_NUMBER (tem0
, 0);
3086 f
->output_data
.x
->top_pos
= XINT (tem0
);
3087 if (f
->output_data
.x
->top_pos
< 0)
3088 window_prompting
|= YNegative
;
3091 if (EQ (tem1
, Qminus
))
3093 f
->output_data
.x
->left_pos
= 0;
3094 window_prompting
|= XNegative
;
3096 else if (CONSP (tem1
) && EQ (XCAR (tem1
), Qminus
)
3097 && CONSP (XCDR (tem1
))
3098 && INTEGERP (XCAR (XCDR (tem1
))))
3100 f
->output_data
.x
->left_pos
= - XINT (XCAR (XCDR (tem1
)));
3101 window_prompting
|= XNegative
;
3103 else if (CONSP (tem1
) && EQ (XCAR (tem1
), Qplus
)
3104 && CONSP (XCDR (tem1
))
3105 && INTEGERP (XCAR (XCDR (tem1
))))
3107 f
->output_data
.x
->left_pos
= XINT (XCAR (XCDR (tem1
)));
3109 else if (EQ (tem1
, Qunbound
))
3110 f
->output_data
.x
->left_pos
= 0;
3113 CHECK_NUMBER (tem1
, 0);
3114 f
->output_data
.x
->left_pos
= XINT (tem1
);
3115 if (f
->output_data
.x
->left_pos
< 0)
3116 window_prompting
|= XNegative
;
3119 if (!NILP (tem2
) && ! EQ (tem2
, Qunbound
))
3120 window_prompting
|= USPosition
;
3122 window_prompting
|= PPosition
;
3125 return window_prompting
;
3128 #if !defined (HAVE_X11R4) && !defined (HAVE_XSETWMPROTOCOLS)
3131 XSetWMProtocols (dpy
, w
, protocols
, count
)
3138 prop
= XInternAtom (dpy
, "WM_PROTOCOLS", False
);
3139 if (prop
== None
) return False
;
3140 XChangeProperty (dpy
, w
, prop
, XA_ATOM
, 32, PropModeReplace
,
3141 (unsigned char *) protocols
, count
);
3144 #endif /* not HAVE_X11R4 && not HAVE_XSETWMPROTOCOLS */
3146 #ifdef USE_X_TOOLKIT
3148 /* If the WM_PROTOCOLS property does not already contain WM_TAKE_FOCUS,
3149 WM_DELETE_WINDOW, and WM_SAVE_YOURSELF, then add them. (They may
3150 already be present because of the toolkit (Motif adds some of them,
3151 for example, but Xt doesn't). */
3154 hack_wm_protocols (f
, widget
)
3158 Display
*dpy
= XtDisplay (widget
);
3159 Window w
= XtWindow (widget
);
3160 int need_delete
= 1;
3166 Atom type
, *atoms
= 0;
3168 unsigned long nitems
= 0;
3169 unsigned long bytes_after
;
3171 if ((XGetWindowProperty (dpy
, w
,
3172 FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_protocols
,
3173 (long)0, (long)100, False
, XA_ATOM
,
3174 &type
, &format
, &nitems
, &bytes_after
,
3175 (unsigned char **) &atoms
)
3177 && format
== 32 && type
== XA_ATOM
)
3181 if (atoms
[nitems
] == FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_delete_window
)
3183 else if (atoms
[nitems
] == FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_take_focus
)
3185 else if (atoms
[nitems
] == FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_save_yourself
)
3188 if (atoms
) XFree ((char *) atoms
);
3194 props
[count
++] = FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_delete_window
;
3196 props
[count
++] = FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_take_focus
;
3198 props
[count
++] = FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_save_yourself
;
3200 XChangeProperty (dpy
, w
, FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_protocols
,
3201 XA_ATOM
, 32, PropModeAppend
,
3202 (unsigned char *) props
, count
);
3210 /* Support routines for XIC (X Input Context). */
3214 static XFontSet xic_create_xfontset
P_ ((struct frame
*, char *));
3215 static XIMStyle best_xim_style
P_ ((XIMStyles
*, XIMStyles
*));
3218 /* Supported XIM styles, ordered by preferenc. */
3220 static XIMStyle supported_xim_styles
[] =
3222 XIMPreeditPosition
| XIMStatusArea
,
3223 XIMPreeditPosition
| XIMStatusNothing
,
3224 XIMPreeditPosition
| XIMStatusNone
,
3225 XIMPreeditNothing
| XIMStatusArea
,
3226 XIMPreeditNothing
| XIMStatusNothing
,
3227 XIMPreeditNothing
| XIMStatusNone
,
3228 XIMPreeditNone
| XIMStatusArea
,
3229 XIMPreeditNone
| XIMStatusNothing
,
3230 XIMPreeditNone
| XIMStatusNone
,
3235 /* Create an X fontset on frame F with base font name
3239 xic_create_xfontset (f
, base_fontname
)
3241 char *base_fontname
;
3244 char **missing_list
;
3248 xfs
= XCreateFontSet (FRAME_X_DISPLAY (f
),
3249 base_fontname
, &missing_list
,
3250 &missing_count
, &def_string
);
3252 XFreeStringList (missing_list
);
3254 /* No need to free def_string. */
3259 /* Value is the best input style, given user preferences USER (already
3260 checked to be supported by Emacs), and styles supported by the
3261 input method XIM. */
3264 best_xim_style (user
, xim
)
3270 for (i
= 0; i
< user
->count_styles
; ++i
)
3271 for (j
= 0; j
< xim
->count_styles
; ++j
)
3272 if (user
->supported_styles
[i
] == xim
->supported_styles
[j
])
3273 return user
->supported_styles
[i
];
3275 /* Return the default style. */
3276 return XIMPreeditNothing
| XIMStatusNothing
;
3279 /* Create XIC for frame F. */
3281 static XIMStyle xic_style
;
3284 create_frame_xic (f
)
3289 XFontSet xfs
= NULL
;
3294 xim
= FRAME_X_XIM (f
);
3299 XVaNestedList preedit_attr
;
3300 XVaNestedList status_attr
;
3301 char *base_fontname
;
3304 s_area
.x
= 0; s_area
.y
= 0; s_area
.width
= 1; s_area
.height
= 1;
3305 spot
.x
= 0; spot
.y
= 1;
3306 /* Create X fontset. */
3307 fontset
= FRAME_FONTSET (f
);
3309 base_fontname
= "-*-*-*-r-normal--14-*-*-*-*-*-*-*";
3312 /* Determine the base fontname from the ASCII font name of
3314 char *ascii_font
= (char *) XSTRING (fontset_ascii (fontset
))->data
;
3315 char *p
= ascii_font
;
3318 for (i
= 0; *p
; p
++)
3321 /* As the font name doesn't conform to XLFD, we can't
3322 modify it to get a suitable base fontname for the
3324 base_fontname
= "-*-*-*-r-normal--14-*-*-*-*-*-*-*";
3327 int len
= strlen (ascii_font
) + 1;
3330 for (i
= 0, p
= ascii_font
; i
< 8; p
++)
3339 base_fontname
= (char *) alloca (len
);
3340 bzero (base_fontname
, len
);
3341 strcpy (base_fontname
, "-*-*-");
3342 bcopy (p1
, base_fontname
+ 5, p
- p1
);
3343 strcat (base_fontname
, "*-*-*-*-*-*-*");
3346 xfs
= xic_create_xfontset (f
, base_fontname
);
3348 /* Determine XIC style. */
3351 XIMStyles supported_list
;
3352 supported_list
.count_styles
= (sizeof supported_xim_styles
3353 / sizeof supported_xim_styles
[0]);
3354 supported_list
.supported_styles
= supported_xim_styles
;
3355 xic_style
= best_xim_style (&supported_list
,
3356 FRAME_X_XIM_STYLES (f
));
3359 preedit_attr
= XVaCreateNestedList (0,
3362 FRAME_FOREGROUND_PIXEL (f
),
3364 FRAME_BACKGROUND_PIXEL (f
),
3365 (xic_style
& XIMPreeditPosition
3370 status_attr
= XVaCreateNestedList (0,
3376 FRAME_FOREGROUND_PIXEL (f
),
3378 FRAME_BACKGROUND_PIXEL (f
),
3381 xic
= XCreateIC (xim
,
3382 XNInputStyle
, xic_style
,
3383 XNClientWindow
, FRAME_X_WINDOW(f
),
3384 XNFocusWindow
, FRAME_X_WINDOW(f
),
3385 XNStatusAttributes
, status_attr
,
3386 XNPreeditAttributes
, preedit_attr
,
3388 XFree (preedit_attr
);
3389 XFree (status_attr
);
3392 FRAME_XIC (f
) = xic
;
3393 FRAME_XIC_STYLE (f
) = xic_style
;
3394 FRAME_XIC_FONTSET (f
) = xfs
;
3398 /* Destroy XIC and free XIC fontset of frame F, if any. */
3404 if (FRAME_XIC (f
) == NULL
)
3407 XDestroyIC (FRAME_XIC (f
));
3408 if (FRAME_XIC_FONTSET (f
))
3409 XFreeFontSet (FRAME_X_DISPLAY (f
), FRAME_XIC_FONTSET (f
));
3411 FRAME_XIC (f
) = NULL
;
3412 FRAME_XIC_FONTSET (f
) = NULL
;
3416 /* Place preedit area for XIC of window W's frame to specified
3417 pixel position X/Y. X and Y are relative to window W. */
3420 xic_set_preeditarea (w
, x
, y
)
3424 struct frame
*f
= XFRAME (w
->frame
);
3428 spot
.x
= WINDOW_TO_FRAME_PIXEL_X (w
, x
);
3429 spot
.y
= WINDOW_TO_FRAME_PIXEL_Y (w
, y
) + FONT_BASE (FRAME_FONT (f
));
3430 attr
= XVaCreateNestedList (0, XNSpotLocation
, &spot
, NULL
);
3431 XSetICValues (FRAME_XIC (f
), XNPreeditAttributes
, attr
, NULL
);
3436 /* Place status area for XIC in bottom right corner of frame F.. */
3439 xic_set_statusarea (f
)
3442 XIC xic
= FRAME_XIC (f
);
3447 /* Negotiate geometry of status area. If input method has existing
3448 status area, use its current size. */
3449 area
.x
= area
.y
= area
.width
= area
.height
= 0;
3450 attr
= XVaCreateNestedList (0, XNAreaNeeded
, &area
, NULL
);
3451 XSetICValues (xic
, XNStatusAttributes
, attr
, NULL
);
3454 attr
= XVaCreateNestedList (0, XNAreaNeeded
, &needed
, NULL
);
3455 XGetICValues (xic
, XNStatusAttributes
, attr
, NULL
);
3458 if (needed
->width
== 0) /* Use XNArea instead of XNAreaNeeded */
3460 attr
= XVaCreateNestedList (0, XNArea
, &needed
, NULL
);
3461 XGetICValues (xic
, XNStatusAttributes
, attr
, NULL
);
3465 area
.width
= needed
->width
;
3466 area
.height
= needed
->height
;
3467 area
.x
= PIXEL_WIDTH (f
) - area
.width
- FRAME_INTERNAL_BORDER_WIDTH (f
);
3468 area
.y
= (PIXEL_HEIGHT (f
) - area
.height
3469 - FRAME_MENUBAR_HEIGHT (f
) - FRAME_INTERNAL_BORDER_WIDTH (f
));
3472 attr
= XVaCreateNestedList (0, XNArea
, &area
, NULL
);
3473 XSetICValues(xic
, XNStatusAttributes
, attr
, NULL
);
3478 /* Set X fontset for XIC of frame F, using base font name
3479 BASE_FONTNAME. Called when a new Emacs fontset is chosen. */
3482 xic_set_xfontset (f
, base_fontname
)
3484 char *base_fontname
;
3489 xfs
= xic_create_xfontset (f
, base_fontname
);
3491 attr
= XVaCreateNestedList (0, XNFontSet
, xfs
, NULL
);
3492 if (FRAME_XIC_STYLE (f
) & XIMPreeditPosition
)
3493 XSetICValues (FRAME_XIC (f
), XNPreeditAttributes
, attr
, NULL
);
3494 if (FRAME_XIC_STYLE (f
) & XIMStatusArea
)
3495 XSetICValues (FRAME_XIC (f
), XNStatusAttributes
, attr
, NULL
);
3498 if (FRAME_XIC_FONTSET (f
))
3499 XFreeFontSet (FRAME_X_DISPLAY (f
), FRAME_XIC_FONTSET (f
));
3500 FRAME_XIC_FONTSET (f
) = xfs
;
3503 #endif /* HAVE_X_I18N */
3507 #ifdef USE_X_TOOLKIT
3509 /* Create and set up the X widget for frame F. */
3512 x_window (f
, window_prompting
, minibuffer_only
)
3514 long window_prompting
;
3515 int minibuffer_only
;
3517 XClassHint class_hints
;
3518 XSetWindowAttributes attributes
;
3519 unsigned long attribute_mask
;
3520 Widget shell_widget
;
3522 Widget frame_widget
;
3528 /* Use the resource name as the top-level widget name
3529 for looking up resources. Make a non-Lisp copy
3530 for the window manager, so GC relocation won't bother it.
3532 Elsewhere we specify the window name for the window manager. */
3535 char *str
= (char *) XSTRING (Vx_resource_name
)->data
;
3536 f
->namebuf
= (char *) xmalloc (strlen (str
) + 1);
3537 strcpy (f
->namebuf
, str
);
3541 XtSetArg (al
[ac
], XtNallowShellResize
, 1); ac
++;
3542 XtSetArg (al
[ac
], XtNinput
, 1); ac
++;
3543 XtSetArg (al
[ac
], XtNmappedWhenManaged
, 0); ac
++;
3544 XtSetArg (al
[ac
], XtNborderWidth
, f
->output_data
.x
->border_width
); ac
++;
3545 XtSetArg (al
[ac
], XtNvisual
, FRAME_X_VISUAL (f
)); ac
++;
3546 XtSetArg (al
[ac
], XtNdepth
, FRAME_X_DISPLAY_INFO (f
)->n_planes
); ac
++;
3547 XtSetArg (al
[ac
], XtNcolormap
, FRAME_X_COLORMAP (f
)); ac
++;
3548 shell_widget
= XtAppCreateShell (f
->namebuf
, EMACS_CLASS
,
3549 applicationShellWidgetClass
,
3550 FRAME_X_DISPLAY (f
), al
, ac
);
3552 f
->output_data
.x
->widget
= shell_widget
;
3553 /* maybe_set_screen_title_format (shell_widget); */
3555 pane_widget
= lw_create_widget ("main", "pane", widget_id_tick
++,
3556 (widget_value
*) NULL
,
3557 shell_widget
, False
,
3561 (lw_callback
) NULL
);
3564 XtSetArg (al
[ac
], XtNvisual
, FRAME_X_VISUAL (f
)); ac
++;
3565 XtSetArg (al
[ac
], XtNdepth
, FRAME_X_DISPLAY_INFO (f
)->n_planes
); ac
++;
3566 XtSetArg (al
[ac
], XtNcolormap
, FRAME_X_COLORMAP (f
)); ac
++;
3567 XtSetValues (pane_widget
, al
, ac
);
3568 f
->output_data
.x
->column_widget
= pane_widget
;
3570 /* mappedWhenManaged to false tells to the paned window to not map/unmap
3571 the emacs screen when changing menubar. This reduces flickering. */
3574 XtSetArg (al
[ac
], XtNmappedWhenManaged
, 0); ac
++;
3575 XtSetArg (al
[ac
], XtNshowGrip
, 0); ac
++;
3576 XtSetArg (al
[ac
], XtNallowResize
, 1); ac
++;
3577 XtSetArg (al
[ac
], XtNresizeToPreferred
, 1); ac
++;
3578 XtSetArg (al
[ac
], XtNemacsFrame
, f
); ac
++;
3579 XtSetArg (al
[ac
], XtNvisual
, FRAME_X_VISUAL (f
)); ac
++;
3580 XtSetArg (al
[ac
], XtNdepth
, FRAME_X_DISPLAY_INFO (f
)->n_planes
); ac
++;
3581 XtSetArg (al
[ac
], XtNcolormap
, FRAME_X_COLORMAP (f
)); ac
++;
3582 frame_widget
= XtCreateWidget (f
->namebuf
, emacsFrameClass
, pane_widget
,
3585 f
->output_data
.x
->edit_widget
= frame_widget
;
3587 XtManageChild (frame_widget
);
3589 /* Do some needed geometry management. */
3592 char *tem
, shell_position
[32];
3595 int extra_borders
= 0;
3597 = (f
->output_data
.x
->menubar_widget
3598 ? (f
->output_data
.x
->menubar_widget
->core
.height
3599 + f
->output_data
.x
->menubar_widget
->core
.border_width
)
3602 #if 0 /* Experimentally, we now get the right results
3603 for -geometry -0-0 without this. 24 Aug 96, rms. */
3604 if (FRAME_EXTERNAL_MENU_BAR (f
))
3607 XtVaGetValues (pane_widget
, XtNinternalBorderWidth
, &ibw
, NULL
);
3608 menubar_size
+= ibw
;
3612 f
->output_data
.x
->menubar_height
= menubar_size
;
3615 /* Motif seems to need this amount added to the sizes
3616 specified for the shell widget. The Athena/Lucid widgets don't.
3617 Both conclusions reached experimentally. -- rms. */
3618 XtVaGetValues (f
->output_data
.x
->edit_widget
, XtNinternalBorderWidth
,
3619 &extra_borders
, NULL
);
3623 /* Convert our geometry parameters into a geometry string
3625 Note that we do not specify here whether the position
3626 is a user-specified or program-specified one.
3627 We pass that information later, in x_wm_set_size_hints. */
3629 int left
= f
->output_data
.x
->left_pos
;
3630 int xneg
= window_prompting
& XNegative
;
3631 int top
= f
->output_data
.x
->top_pos
;
3632 int yneg
= window_prompting
& YNegative
;
3638 if (window_prompting
& USPosition
)
3639 sprintf (shell_position
, "=%dx%d%c%d%c%d",
3640 PIXEL_WIDTH (f
) + extra_borders
,
3641 PIXEL_HEIGHT (f
) + menubar_size
+ extra_borders
,
3642 (xneg
? '-' : '+'), left
,
3643 (yneg
? '-' : '+'), top
);
3645 sprintf (shell_position
, "=%dx%d",
3646 PIXEL_WIDTH (f
) + extra_borders
,
3647 PIXEL_HEIGHT (f
) + menubar_size
+ extra_borders
);
3650 len
= strlen (shell_position
) + 1;
3651 /* We don't free this because we don't know whether
3652 it is safe to free it while the frame exists.
3653 It isn't worth the trouble of arranging to free it
3654 when the frame is deleted. */
3655 tem
= (char *) xmalloc (len
);
3656 strncpy (tem
, shell_position
, len
);
3657 XtSetArg (al
[ac
], XtNgeometry
, tem
); ac
++;
3658 XtSetValues (shell_widget
, al
, ac
);
3661 XtManageChild (pane_widget
);
3662 XtRealizeWidget (shell_widget
);
3664 FRAME_X_WINDOW (f
) = XtWindow (frame_widget
);
3666 validate_x_resource_name ();
3668 class_hints
.res_name
= (char *) XSTRING (Vx_resource_name
)->data
;
3669 class_hints
.res_class
= (char *) XSTRING (Vx_resource_class
)->data
;
3670 XSetClassHint (FRAME_X_DISPLAY (f
), XtWindow (shell_widget
), &class_hints
);
3673 FRAME_XIC (f
) = NULL
;
3675 create_frame_xic (f
);
3679 f
->output_data
.x
->wm_hints
.input
= True
;
3680 f
->output_data
.x
->wm_hints
.flags
|= InputHint
;
3681 XSetWMHints (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
3682 &f
->output_data
.x
->wm_hints
);
3684 hack_wm_protocols (f
, shell_widget
);
3687 XtAddEventHandler (shell_widget
, 0, True
, _XEditResCheckMessages
, 0);
3690 /* Do a stupid property change to force the server to generate a
3691 PropertyNotify event so that the event_stream server timestamp will
3692 be initialized to something relevant to the time we created the window.
3694 XChangeProperty (XtDisplay (frame_widget
), XtWindow (frame_widget
),
3695 FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_protocols
,
3696 XA_ATOM
, 32, PropModeAppend
,
3697 (unsigned char*) NULL
, 0);
3699 /* Make all the standard events reach the Emacs frame. */
3700 attributes
.event_mask
= STANDARD_EVENT_SET
;
3705 /* XIM server might require some X events. */
3706 unsigned long fevent
= NoEventMask
;
3707 XGetICValues(FRAME_XIC (f
), XNFilterEvents
, &fevent
, NULL
);
3708 attributes
.event_mask
|= fevent
;
3710 #endif /* HAVE_X_I18N */
3712 attribute_mask
= CWEventMask
;
3713 XChangeWindowAttributes (XtDisplay (shell_widget
), XtWindow (shell_widget
),
3714 attribute_mask
, &attributes
);
3716 XtMapWidget (frame_widget
);
3718 /* x_set_name normally ignores requests to set the name if the
3719 requested name is the same as the current name. This is the one
3720 place where that assumption isn't correct; f->name is set, but
3721 the X server hasn't been told. */
3724 int explicit = f
->explicit_name
;
3726 f
->explicit_name
= 0;
3729 x_set_name (f
, name
, explicit);
3732 XDefineCursor (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
3733 f
->output_data
.x
->text_cursor
);
3737 /* This is a no-op, except under Motif. Make sure main areas are
3738 set to something reasonable, in case we get an error later. */
3739 lw_set_main_areas (pane_widget
, 0, frame_widget
);
3742 #else /* not USE_X_TOOLKIT */
3744 /* Create and set up the X window for frame F. */
3751 XClassHint class_hints
;
3752 XSetWindowAttributes attributes
;
3753 unsigned long attribute_mask
;
3755 attributes
.background_pixel
= f
->output_data
.x
->background_pixel
;
3756 attributes
.border_pixel
= f
->output_data
.x
->border_pixel
;
3757 attributes
.bit_gravity
= StaticGravity
;
3758 attributes
.backing_store
= NotUseful
;
3759 attributes
.save_under
= True
;
3760 attributes
.event_mask
= STANDARD_EVENT_SET
;
3761 attributes
.colormap
= FRAME_X_COLORMAP (f
);
3762 attribute_mask
= (CWBackPixel
| CWBorderPixel
| CWBitGravity
| CWEventMask
3767 = XCreateWindow (FRAME_X_DISPLAY (f
),
3768 f
->output_data
.x
->parent_desc
,
3769 f
->output_data
.x
->left_pos
,
3770 f
->output_data
.x
->top_pos
,
3771 PIXEL_WIDTH (f
), PIXEL_HEIGHT (f
),
3772 f
->output_data
.x
->border_width
,
3773 CopyFromParent
, /* depth */
3774 InputOutput
, /* class */
3776 attribute_mask
, &attributes
);
3780 create_frame_xic (f
);
3783 /* XIM server might require some X events. */
3784 unsigned long fevent
= NoEventMask
;
3785 XGetICValues(FRAME_XIC (f
), XNFilterEvents
, &fevent
, NULL
);
3786 attributes
.event_mask
|= fevent
;
3787 attribute_mask
= CWEventMask
;
3788 XChangeWindowAttributes (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
3789 attribute_mask
, &attributes
);
3792 #endif /* HAVE_X_I18N */
3794 validate_x_resource_name ();
3796 class_hints
.res_name
= (char *) XSTRING (Vx_resource_name
)->data
;
3797 class_hints
.res_class
= (char *) XSTRING (Vx_resource_class
)->data
;
3798 XSetClassHint (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), &class_hints
);
3800 /* The menubar is part of the ordinary display;
3801 it does not count in addition to the height of the window. */
3802 f
->output_data
.x
->menubar_height
= 0;
3804 /* This indicates that we use the "Passive Input" input model.
3805 Unless we do this, we don't get the Focus{In,Out} events that we
3806 need to draw the cursor correctly. Accursed bureaucrats.
3807 XWhipsAndChains (FRAME_X_DISPLAY (f), IronMaiden, &TheRack); */
3809 f
->output_data
.x
->wm_hints
.input
= True
;
3810 f
->output_data
.x
->wm_hints
.flags
|= InputHint
;
3811 XSetWMHints (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
3812 &f
->output_data
.x
->wm_hints
);
3813 f
->output_data
.x
->wm_hints
.icon_pixmap
= None
;
3815 /* Request "save yourself" and "delete window" commands from wm. */
3818 protocols
[0] = FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_delete_window
;
3819 protocols
[1] = FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_save_yourself
;
3820 XSetWMProtocols (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), protocols
, 2);
3823 /* x_set_name normally ignores requests to set the name if the
3824 requested name is the same as the current name. This is the one
3825 place where that assumption isn't correct; f->name is set, but
3826 the X server hasn't been told. */
3829 int explicit = f
->explicit_name
;
3831 f
->explicit_name
= 0;
3834 x_set_name (f
, name
, explicit);
3837 XDefineCursor (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
3838 f
->output_data
.x
->text_cursor
);
3842 if (FRAME_X_WINDOW (f
) == 0)
3843 error ("Unable to create window");
3846 #endif /* not USE_X_TOOLKIT */
3848 /* Handle the icon stuff for this window. Perhaps later we might
3849 want an x_set_icon_position which can be called interactively as
3857 Lisp_Object icon_x
, icon_y
;
3858 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
3860 /* Set the position of the icon. Note that twm groups all
3861 icons in an icon window. */
3862 icon_x
= x_get_and_record_arg (f
, parms
, Qicon_left
, 0, 0, RES_TYPE_NUMBER
);
3863 icon_y
= x_get_and_record_arg (f
, parms
, Qicon_top
, 0, 0, RES_TYPE_NUMBER
);
3864 if (!EQ (icon_x
, Qunbound
) && !EQ (icon_y
, Qunbound
))
3866 CHECK_NUMBER (icon_x
, 0);
3867 CHECK_NUMBER (icon_y
, 0);
3869 else if (!EQ (icon_x
, Qunbound
) || !EQ (icon_y
, Qunbound
))
3870 error ("Both left and top icon corners of icon must be specified");
3874 if (! EQ (icon_x
, Qunbound
))
3875 x_wm_set_icon_position (f
, XINT (icon_x
), XINT (icon_y
));
3877 /* Start up iconic or window? */
3878 x_wm_set_window_state
3879 (f
, (EQ (x_get_arg (dpyinfo
, parms
, Qvisibility
, 0, 0, RES_TYPE_SYMBOL
),
3884 x_text_icon (f
, (char *) XSTRING ((!NILP (f
->icon_name
)
3891 /* Make the GCs needed for this window, setting the
3892 background, border and mouse colors; also create the
3893 mouse cursor and the gray border tile. */
3895 static char cursor_bits
[] =
3897 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
3898 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
3899 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
3900 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
3907 XGCValues gc_values
;
3911 /* Create the GCs of this frame.
3912 Note that many default values are used. */
3915 gc_values
.font
= f
->output_data
.x
->font
->fid
;
3916 gc_values
.foreground
= f
->output_data
.x
->foreground_pixel
;
3917 gc_values
.background
= f
->output_data
.x
->background_pixel
;
3918 gc_values
.line_width
= 0; /* Means 1 using fast algorithm. */
3919 f
->output_data
.x
->normal_gc
3920 = XCreateGC (FRAME_X_DISPLAY (f
),
3922 GCLineWidth
| GCFont
| GCForeground
| GCBackground
,
3925 /* Reverse video style. */
3926 gc_values
.foreground
= f
->output_data
.x
->background_pixel
;
3927 gc_values
.background
= f
->output_data
.x
->foreground_pixel
;
3928 f
->output_data
.x
->reverse_gc
3929 = XCreateGC (FRAME_X_DISPLAY (f
),
3931 GCFont
| GCForeground
| GCBackground
| GCLineWidth
,
3934 /* Cursor has cursor-color background, background-color foreground. */
3935 gc_values
.foreground
= f
->output_data
.x
->background_pixel
;
3936 gc_values
.background
= f
->output_data
.x
->cursor_pixel
;
3937 gc_values
.fill_style
= FillOpaqueStippled
;
3939 = XCreateBitmapFromData (FRAME_X_DISPLAY (f
),
3940 FRAME_X_DISPLAY_INFO (f
)->root_window
,
3941 cursor_bits
, 16, 16);
3942 f
->output_data
.x
->cursor_gc
3943 = XCreateGC (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
3944 (GCFont
| GCForeground
| GCBackground
3945 | GCFillStyle
/* | GCStipple */ | GCLineWidth
),
3949 f
->output_data
.x
->white_relief
.gc
= 0;
3950 f
->output_data
.x
->black_relief
.gc
= 0;
3952 /* Create the gray border tile used when the pointer is not in
3953 the frame. Since this depends on the frame's pixel values,
3954 this must be done on a per-frame basis. */
3955 f
->output_data
.x
->border_tile
3956 = (XCreatePixmapFromBitmapData
3957 (FRAME_X_DISPLAY (f
), FRAME_X_DISPLAY_INFO (f
)->root_window
,
3958 gray_bits
, gray_width
, gray_height
,
3959 f
->output_data
.x
->foreground_pixel
,
3960 f
->output_data
.x
->background_pixel
,
3961 DefaultDepth (FRAME_X_DISPLAY (f
),
3962 XScreenNumberOfScreen (FRAME_X_SCREEN (f
)))));
3968 /* Free what was was allocated in x_make_gc. */
3974 Display
*dpy
= FRAME_X_DISPLAY (f
);
3978 if (f
->output_data
.x
->normal_gc
)
3980 XFreeGC (dpy
, f
->output_data
.x
->normal_gc
);
3981 f
->output_data
.x
->normal_gc
= 0;
3984 if (f
->output_data
.x
->reverse_gc
)
3986 XFreeGC (dpy
, f
->output_data
.x
->reverse_gc
);
3987 f
->output_data
.x
->reverse_gc
= 0;
3990 if (f
->output_data
.x
->cursor_gc
)
3992 XFreeGC (dpy
, f
->output_data
.x
->cursor_gc
);
3993 f
->output_data
.x
->cursor_gc
= 0;
3996 if (f
->output_data
.x
->border_tile
)
3998 XFreePixmap (dpy
, f
->output_data
.x
->border_tile
);
3999 f
->output_data
.x
->border_tile
= 0;
4006 /* Handler for signals raised during x_create_frame and
4007 x_create_top_frame. FRAME is the frame which is partially
4011 unwind_create_frame (frame
)
4014 struct frame
*f
= XFRAME (frame
);
4016 /* If frame is ``official'', nothing to do. */
4017 if (!CONSP (Vframe_list
) || !EQ (XCAR (Vframe_list
), frame
))
4020 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
4023 x_free_frame_resources (f
);
4025 /* Check that reference counts are indeed correct. */
4026 xassert (dpyinfo
->reference_count
== dpyinfo_refcount
);
4027 xassert (dpyinfo
->image_cache
->refcount
== image_cache_refcount
);
4035 DEFUN ("x-create-frame", Fx_create_frame
, Sx_create_frame
,
4037 "Make a new X window, which is called a \"frame\" in Emacs terms.\n\
4038 Returns an Emacs frame object.\n\
4039 ALIST is an alist of frame parameters.\n\
4040 If the parameters specify that the frame should not have a minibuffer,\n\
4041 and do not specify a specific minibuffer window to use,\n\
4042 then `default-minibuffer-frame' must be a frame whose minibuffer can\n\
4043 be shared by the new frame.\n\
4045 This function is an internal primitive--use `make-frame' instead.")
4050 Lisp_Object frame
, tem
;
4052 int minibuffer_only
= 0;
4053 long window_prompting
= 0;
4055 int count
= BINDING_STACK_SIZE ();
4056 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
4057 Lisp_Object display
;
4058 struct x_display_info
*dpyinfo
= NULL
;
4064 /* Use this general default value to start with
4065 until we know if this frame has a specified name. */
4066 Vx_resource_name
= Vinvocation_name
;
4068 display
= x_get_arg (dpyinfo
, parms
, Qdisplay
, 0, 0, RES_TYPE_STRING
);
4069 if (EQ (display
, Qunbound
))
4071 dpyinfo
= check_x_display_info (display
);
4073 kb
= dpyinfo
->kboard
;
4075 kb
= &the_only_kboard
;
4078 name
= x_get_arg (dpyinfo
, parms
, Qname
, "name", "Name", RES_TYPE_STRING
);
4080 && ! EQ (name
, Qunbound
)
4082 error ("Invalid frame name--not a string or nil");
4085 Vx_resource_name
= name
;
4087 /* See if parent window is specified. */
4088 parent
= x_get_arg (dpyinfo
, parms
, Qparent_id
, NULL
, NULL
, RES_TYPE_NUMBER
);
4089 if (EQ (parent
, Qunbound
))
4091 if (! NILP (parent
))
4092 CHECK_NUMBER (parent
, 0);
4094 /* make_frame_without_minibuffer can run Lisp code and garbage collect. */
4095 /* No need to protect DISPLAY because that's not used after passing
4096 it to make_frame_without_minibuffer. */
4098 GCPRO4 (parms
, parent
, name
, frame
);
4099 tem
= x_get_arg (dpyinfo
, parms
, Qminibuffer
, "minibuffer", "Minibuffer",
4101 if (EQ (tem
, Qnone
) || NILP (tem
))
4102 f
= make_frame_without_minibuffer (Qnil
, kb
, display
);
4103 else if (EQ (tem
, Qonly
))
4105 f
= make_minibuffer_frame ();
4106 minibuffer_only
= 1;
4108 else if (WINDOWP (tem
))
4109 f
= make_frame_without_minibuffer (tem
, kb
, display
);
4113 XSETFRAME (frame
, f
);
4115 /* Note that X Windows does support scroll bars. */
4116 FRAME_CAN_HAVE_SCROLL_BARS (f
) = 1;
4118 f
->output_method
= output_x_window
;
4119 f
->output_data
.x
= (struct x_output
*) xmalloc (sizeof (struct x_output
));
4120 bzero (f
->output_data
.x
, sizeof (struct x_output
));
4121 f
->output_data
.x
->icon_bitmap
= -1;
4122 f
->output_data
.x
->fontset
= -1;
4123 f
->output_data
.x
->scroll_bar_foreground_pixel
= -1;
4124 f
->output_data
.x
->scroll_bar_background_pixel
= -1;
4125 record_unwind_protect (unwind_create_frame
, frame
);
4128 = x_get_arg (dpyinfo
, parms
, Qicon_name
, "iconName", "Title",
4130 if (! STRINGP (f
->icon_name
))
4131 f
->icon_name
= Qnil
;
4133 FRAME_X_DISPLAY_INFO (f
) = dpyinfo
;
4135 image_cache_refcount
= FRAME_X_IMAGE_CACHE (f
)->refcount
;
4136 dpyinfo_refcount
= dpyinfo
->reference_count
;
4137 #endif /* GLYPH_DEBUG */
4139 FRAME_KBOARD (f
) = kb
;
4142 /* These colors will be set anyway later, but it's important
4143 to get the color reference counts right, so initialize them! */
4146 struct gcpro gcpro1
;
4148 black
= build_string ("black");
4150 f
->output_data
.x
->foreground_pixel
4151 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
4152 f
->output_data
.x
->background_pixel
4153 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
4154 f
->output_data
.x
->cursor_pixel
4155 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
4156 f
->output_data
.x
->cursor_foreground_pixel
4157 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
4158 f
->output_data
.x
->border_pixel
4159 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
4160 f
->output_data
.x
->mouse_pixel
4161 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
4165 /* Specify the parent under which to make this X window. */
4169 f
->output_data
.x
->parent_desc
= (Window
) XFASTINT (parent
);
4170 f
->output_data
.x
->explicit_parent
= 1;
4174 f
->output_data
.x
->parent_desc
= FRAME_X_DISPLAY_INFO (f
)->root_window
;
4175 f
->output_data
.x
->explicit_parent
= 0;
4178 /* Set the name; the functions to which we pass f expect the name to
4180 if (EQ (name
, Qunbound
) || NILP (name
))
4182 f
->name
= build_string (dpyinfo
->x_id_name
);
4183 f
->explicit_name
= 0;
4188 f
->explicit_name
= 1;
4189 /* use the frame's title when getting resources for this frame. */
4190 specbind (Qx_resource_name
, name
);
4193 /* Extract the window parameters from the supplied values
4194 that are needed to determine window geometry. */
4198 font
= x_get_arg (dpyinfo
, parms
, Qfont
, "font", "Font", RES_TYPE_STRING
);
4201 /* First, try whatever font the caller has specified. */
4204 tem
= Fquery_fontset (font
, Qnil
);
4206 font
= x_new_fontset (f
, XSTRING (tem
)->data
);
4208 font
= x_new_font (f
, XSTRING (font
)->data
);
4211 /* Try out a font which we hope has bold and italic variations. */
4212 if (!STRINGP (font
))
4213 font
= x_new_font (f
, "-adobe-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-1");
4214 if (!STRINGP (font
))
4215 font
= x_new_font (f
, "-misc-fixed-medium-r-normal-*-*-140-*-*-c-*-iso8859-1");
4216 if (! STRINGP (font
))
4217 font
= x_new_font (f
, "-*-*-medium-r-normal-*-*-140-*-*-c-*-iso8859-1");
4218 if (! STRINGP (font
))
4219 /* This was formerly the first thing tried, but it finds too many fonts
4220 and takes too long. */
4221 font
= x_new_font (f
, "-*-*-medium-r-*-*-*-*-*-*-c-*-iso8859-1");
4222 /* If those didn't work, look for something which will at least work. */
4223 if (! STRINGP (font
))
4224 font
= x_new_font (f
, "-*-fixed-*-*-*-*-*-140-*-*-c-*-iso8859-1");
4226 if (! STRINGP (font
))
4227 font
= build_string ("fixed");
4229 x_default_parameter (f
, parms
, Qfont
, font
,
4230 "font", "Font", RES_TYPE_STRING
);
4234 /* Prevent lwlib/xlwmenu.c from crashing because of a bug
4235 whereby it fails to get any font. */
4236 xlwmenu_default_font
= f
->output_data
.x
->font
;
4239 x_default_parameter (f
, parms
, Qborder_width
, make_number (2),
4240 "borderWidth", "BorderWidth", RES_TYPE_NUMBER
);
4242 /* This defaults to 2 in order to match xterm. We recognize either
4243 internalBorderWidth or internalBorder (which is what xterm calls
4245 if (NILP (Fassq (Qinternal_border_width
, parms
)))
4249 value
= x_get_arg (dpyinfo
, parms
, Qinternal_border_width
,
4250 "internalBorder", "internalBorder", RES_TYPE_NUMBER
);
4251 if (! EQ (value
, Qunbound
))
4252 parms
= Fcons (Fcons (Qinternal_border_width
, value
),
4255 x_default_parameter (f
, parms
, Qinternal_border_width
, make_number (1),
4256 "internalBorderWidth", "internalBorderWidth",
4258 x_default_parameter (f
, parms
, Qvertical_scroll_bars
, Qleft
,
4259 "verticalScrollBars", "ScrollBars",
4262 /* Also do the stuff which must be set before the window exists. */
4263 x_default_parameter (f
, parms
, Qforeground_color
, build_string ("black"),
4264 "foreground", "Foreground", RES_TYPE_STRING
);
4265 x_default_parameter (f
, parms
, Qbackground_color
, build_string ("white"),
4266 "background", "Background", RES_TYPE_STRING
);
4267 x_default_parameter (f
, parms
, Qmouse_color
, build_string ("black"),
4268 "pointerColor", "Foreground", RES_TYPE_STRING
);
4269 x_default_parameter (f
, parms
, Qcursor_color
, build_string ("black"),
4270 "cursorColor", "Foreground", RES_TYPE_STRING
);
4271 x_default_parameter (f
, parms
, Qborder_color
, build_string ("black"),
4272 "borderColor", "BorderColor", RES_TYPE_STRING
);
4273 x_default_parameter (f
, parms
, Qscreen_gamma
, Qnil
,
4274 "screenGamma", "ScreenGamma", RES_TYPE_FLOAT
);
4275 x_default_parameter (f
, parms
, Qline_spacing
, Qnil
,
4276 "lineSpacing", "LineSpacing", RES_TYPE_NUMBER
);
4278 x_default_scroll_bar_color_parameter (f
, parms
, Qscroll_bar_foreground
,
4279 "scrollBarForeground",
4280 "ScrollBarForeground", 1);
4281 x_default_scroll_bar_color_parameter (f
, parms
, Qscroll_bar_background
,
4282 "scrollBarBackground",
4283 "ScrollBarBackground", 0);
4285 /* Init faces before x_default_parameter is called for scroll-bar
4286 parameters because that function calls x_set_scroll_bar_width,
4287 which calls change_frame_size, which calls Fset_window_buffer,
4288 which runs hooks, which call Fvertical_motion. At the end, we
4289 end up in init_iterator with a null face cache, which should not
4291 init_frame_faces (f
);
4293 x_default_parameter (f
, parms
, Qmenu_bar_lines
, make_number (1),
4294 "menuBar", "MenuBar", RES_TYPE_NUMBER
);
4295 x_default_parameter (f
, parms
, Qtool_bar_lines
, make_number (1),
4296 "toolBar", "ToolBar", RES_TYPE_NUMBER
);
4297 x_default_parameter (f
, parms
, Qbuffer_predicate
, Qnil
,
4298 "bufferPredicate", "BufferPredicate",
4300 x_default_parameter (f
, parms
, Qtitle
, Qnil
,
4301 "title", "Title", RES_TYPE_STRING
);
4303 f
->output_data
.x
->parent_desc
= FRAME_X_DISPLAY_INFO (f
)->root_window
;
4304 window_prompting
= x_figure_window_size (f
, parms
);
4306 if (window_prompting
& XNegative
)
4308 if (window_prompting
& YNegative
)
4309 f
->output_data
.x
->win_gravity
= SouthEastGravity
;
4311 f
->output_data
.x
->win_gravity
= NorthEastGravity
;
4315 if (window_prompting
& YNegative
)
4316 f
->output_data
.x
->win_gravity
= SouthWestGravity
;
4318 f
->output_data
.x
->win_gravity
= NorthWestGravity
;
4321 f
->output_data
.x
->size_hint_flags
= window_prompting
;
4323 tem
= x_get_arg (dpyinfo
, parms
, Qunsplittable
, 0, 0, RES_TYPE_BOOLEAN
);
4324 f
->no_split
= minibuffer_only
|| EQ (tem
, Qt
);
4326 /* Create the X widget or window. */
4327 #ifdef USE_X_TOOLKIT
4328 x_window (f
, window_prompting
, minibuffer_only
);
4336 /* Now consider the frame official. */
4337 FRAME_X_DISPLAY_INFO (f
)->reference_count
++;
4338 Vframe_list
= Fcons (frame
, Vframe_list
);
4340 /* We need to do this after creating the X window, so that the
4341 icon-creation functions can say whose icon they're describing. */
4342 x_default_parameter (f
, parms
, Qicon_type
, Qnil
,
4343 "bitmapIcon", "BitmapIcon", RES_TYPE_SYMBOL
);
4345 x_default_parameter (f
, parms
, Qauto_raise
, Qnil
,
4346 "autoRaise", "AutoRaiseLower", RES_TYPE_BOOLEAN
);
4347 x_default_parameter (f
, parms
, Qauto_lower
, Qnil
,
4348 "autoLower", "AutoRaiseLower", RES_TYPE_BOOLEAN
);
4349 x_default_parameter (f
, parms
, Qcursor_type
, Qbox
,
4350 "cursorType", "CursorType", RES_TYPE_SYMBOL
);
4351 x_default_parameter (f
, parms
, Qscroll_bar_width
, Qnil
,
4352 "scrollBarWidth", "ScrollBarWidth",
4355 /* Dimensions, especially f->height, must be done via change_frame_size.
4356 Change will not be effected unless different from the current
4361 /* Add the tool-bar height to the initial frame height so that the
4362 user gets a text display area of the size he specified with -g or
4363 via .Xdefaults. Later changes of the tool-bar height don't
4364 change the frame size. This is done so that users can create
4365 tall Emacs frames without having to guess how tall the tool-bar
4367 if (FRAME_TOOL_BAR_LINES (f
))
4369 int margin
, relief
, bar_height
;
4371 relief
= (tool_bar_button_relief
> 0
4372 ? tool_bar_button_relief
4373 : DEFAULT_TOOL_BAR_BUTTON_RELIEF
);
4375 if (INTEGERP (Vtool_bar_button_margin
)
4376 && XINT (Vtool_bar_button_margin
) > 0)
4377 margin
= XFASTINT (Vtool_bar_button_margin
);
4378 else if (CONSP (Vtool_bar_button_margin
)
4379 && INTEGERP (XCDR (Vtool_bar_button_margin
))
4380 && XINT (XCDR (Vtool_bar_button_margin
)) > 0)
4381 margin
= XFASTINT (XCDR (Vtool_bar_button_margin
));
4385 bar_height
= DEFAULT_TOOL_BAR_IMAGE_HEIGHT
+ 2 * margin
+ 2 * relief
;
4386 height
+= (bar_height
+ CANON_Y_UNIT (f
) - 1) / CANON_Y_UNIT (f
);
4390 SET_FRAME_WIDTH (f
, 0);
4391 change_frame_size (f
, height
, width
, 1, 0, 0);
4393 /* Set up faces after all frame parameters are known. This call
4394 also merges in face attributes specified for new frames. If we
4395 don't do this, the `menu' face for instance won't have the right
4396 colors, and the menu bar won't appear in the specified colors for
4398 call1 (Qface_set_after_frame_default
, frame
);
4400 #ifdef USE_X_TOOLKIT
4401 /* Create the menu bar. */
4402 if (!minibuffer_only
&& FRAME_EXTERNAL_MENU_BAR (f
))
4404 /* If this signals an error, we haven't set size hints for the
4405 frame and we didn't make it visible. */
4406 initialize_frame_menubar (f
);
4408 /* This is a no-op, except under Motif where it arranges the
4409 main window for the widgets on it. */
4410 lw_set_main_areas (f
->output_data
.x
->column_widget
,
4411 f
->output_data
.x
->menubar_widget
,
4412 f
->output_data
.x
->edit_widget
);
4414 #endif /* USE_X_TOOLKIT */
4416 /* Tell the server what size and position, etc, we want, and how
4417 badly we want them. This should be done after we have the menu
4418 bar so that its size can be taken into account. */
4420 x_wm_set_size_hint (f
, window_prompting
, 0);
4423 /* Make the window appear on the frame and enable display, unless
4424 the caller says not to. However, with explicit parent, Emacs
4425 cannot control visibility, so don't try. */
4426 if (! f
->output_data
.x
->explicit_parent
)
4428 Lisp_Object visibility
;
4430 visibility
= x_get_arg (dpyinfo
, parms
, Qvisibility
, 0, 0,
4432 if (EQ (visibility
, Qunbound
))
4435 if (EQ (visibility
, Qicon
))
4436 x_iconify_frame (f
);
4437 else if (! NILP (visibility
))
4438 x_make_frame_visible (f
);
4440 /* Must have been Qnil. */
4445 return unbind_to (count
, frame
);
4449 /* FRAME is used only to get a handle on the X display. We don't pass the
4450 display info directly because we're called from frame.c, which doesn't
4451 know about that structure. */
4454 x_get_focus_frame (frame
)
4455 struct frame
*frame
;
4457 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (frame
);
4459 if (! dpyinfo
->x_focus_frame
)
4462 XSETFRAME (xfocus
, dpyinfo
->x_focus_frame
);
4467 /* In certain situations, when the window manager follows a
4468 click-to-focus policy, there seems to be no way around calling
4469 XSetInputFocus to give another frame the input focus .
4471 In an ideal world, XSetInputFocus should generally be avoided so
4472 that applications don't interfere with the window manager's focus
4473 policy. But I think it's okay to use when it's clearly done
4474 following a user-command. */
4476 DEFUN ("x-focus-frame", Fx_focus_frame
, Sx_focus_frame
, 1, 1, 0,
4477 "Set the input focus to FRAME.\n\
4478 FRAME nil means use the selected frame.")
4482 struct frame
*f
= check_x_frame (frame
);
4483 Display
*dpy
= FRAME_X_DISPLAY (f
);
4487 count
= x_catch_errors (dpy
);
4488 XSetInputFocus (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
4489 RevertToParent
, CurrentTime
);
4490 x_uncatch_errors (dpy
, count
);
4497 DEFUN ("xw-color-defined-p", Fxw_color_defined_p
, Sxw_color_defined_p
, 1, 2, 0,
4498 "Internal function called by `color-defined-p', which see.")
4500 Lisp_Object color
, frame
;
4503 FRAME_PTR f
= check_x_frame (frame
);
4505 CHECK_STRING (color
, 1);
4507 if (x_defined_color (f
, XSTRING (color
)->data
, &foo
, 0))
4513 DEFUN ("xw-color-values", Fxw_color_values
, Sxw_color_values
, 1, 2, 0,
4514 "Internal function called by `color-values', which see.")
4516 Lisp_Object color
, frame
;
4519 FRAME_PTR f
= check_x_frame (frame
);
4521 CHECK_STRING (color
, 1);
4523 if (x_defined_color (f
, XSTRING (color
)->data
, &foo
, 0))
4527 rgb
[0] = make_number (foo
.red
);
4528 rgb
[1] = make_number (foo
.green
);
4529 rgb
[2] = make_number (foo
.blue
);
4530 return Flist (3, rgb
);
4536 DEFUN ("xw-display-color-p", Fxw_display_color_p
, Sxw_display_color_p
, 0, 1, 0,
4537 "Internal function called by `display-color-p', which see.")
4539 Lisp_Object display
;
4541 struct x_display_info
*dpyinfo
= check_x_display_info (display
);
4543 if (dpyinfo
->n_planes
<= 2)
4546 switch (dpyinfo
->visual
->class)
4559 DEFUN ("x-display-grayscale-p", Fx_display_grayscale_p
, Sx_display_grayscale_p
,
4561 "Return t if the X display supports shades of gray.\n\
4562 Note that color displays do support shades of gray.\n\
4563 The optional argument DISPLAY specifies which display to ask about.\n\
4564 DISPLAY should be either a frame or a display name (a string).\n\
4565 If omitted or nil, that stands for the selected frame's display.")
4567 Lisp_Object display
;
4569 struct x_display_info
*dpyinfo
= check_x_display_info (display
);
4571 if (dpyinfo
->n_planes
<= 1)
4574 switch (dpyinfo
->visual
->class)
4589 DEFUN ("x-display-pixel-width", Fx_display_pixel_width
, Sx_display_pixel_width
,
4591 "Returns the width in pixels of the X display DISPLAY.\n\
4592 The optional argument DISPLAY specifies which display to ask about.\n\
4593 DISPLAY should be either a frame or a display name (a string).\n\
4594 If omitted or nil, that stands for the selected frame's display.")
4596 Lisp_Object display
;
4598 struct x_display_info
*dpyinfo
= check_x_display_info (display
);
4600 return make_number (dpyinfo
->width
);
4603 DEFUN ("x-display-pixel-height", Fx_display_pixel_height
,
4604 Sx_display_pixel_height
, 0, 1, 0,
4605 "Returns the height in pixels of the X display DISPLAY.\n\
4606 The optional argument DISPLAY specifies which display to ask about.\n\
4607 DISPLAY should be either a frame or a display name (a string).\n\
4608 If omitted or nil, that stands for the selected frame's display.")
4610 Lisp_Object display
;
4612 struct x_display_info
*dpyinfo
= check_x_display_info (display
);
4614 return make_number (dpyinfo
->height
);
4617 DEFUN ("x-display-planes", Fx_display_planes
, Sx_display_planes
,
4619 "Returns the number of bitplanes of the X display DISPLAY.\n\
4620 The optional argument DISPLAY specifies which display to ask about.\n\
4621 DISPLAY should be either a frame or a display name (a string).\n\
4622 If omitted or nil, that stands for the selected frame's display.")
4624 Lisp_Object display
;
4626 struct x_display_info
*dpyinfo
= check_x_display_info (display
);
4628 return make_number (dpyinfo
->n_planes
);
4631 DEFUN ("x-display-color-cells", Fx_display_color_cells
, Sx_display_color_cells
,
4633 "Returns the number of color cells 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.")
4638 Lisp_Object display
;
4640 struct x_display_info
*dpyinfo
= check_x_display_info (display
);
4642 return make_number (DisplayCells (dpyinfo
->display
,
4643 XScreenNumberOfScreen (dpyinfo
->screen
)));
4646 DEFUN ("x-server-max-request-size", Fx_server_max_request_size
,
4647 Sx_server_max_request_size
,
4649 "Returns the maximum request size of the X server of display DISPLAY.\n\
4650 The optional argument DISPLAY specifies which display to ask about.\n\
4651 DISPLAY should be either a frame or a display name (a string).\n\
4652 If omitted or nil, that stands for the selected frame's display.")
4654 Lisp_Object display
;
4656 struct x_display_info
*dpyinfo
= check_x_display_info (display
);
4658 return make_number (MAXREQUEST (dpyinfo
->display
));
4661 DEFUN ("x-server-vendor", Fx_server_vendor
, Sx_server_vendor
, 0, 1, 0,
4662 "Returns the vendor ID string of the X server of display DISPLAY.\n\
4663 The optional argument DISPLAY specifies which display to ask about.\n\
4664 DISPLAY should be either a frame or a display name (a string).\n\
4665 If omitted or nil, that stands for the selected frame's display.")
4667 Lisp_Object display
;
4669 struct x_display_info
*dpyinfo
= check_x_display_info (display
);
4670 char *vendor
= ServerVendor (dpyinfo
->display
);
4672 if (! vendor
) vendor
= "";
4673 return build_string (vendor
);
4676 DEFUN ("x-server-version", Fx_server_version
, Sx_server_version
, 0, 1, 0,
4677 "Returns the version numbers of the X server of display DISPLAY.\n\
4678 The value is a list of three integers: the major and minor\n\
4679 version numbers of the X Protocol in use, and the vendor-specific release\n\
4680 number. See also the function `x-server-vendor'.\n\n\
4681 The optional argument DISPLAY specifies which display to ask about.\n\
4682 DISPLAY should be either a frame or a display name (a string).\n\
4683 If omitted or nil, that stands for the selected frame's display.")
4685 Lisp_Object display
;
4687 struct x_display_info
*dpyinfo
= check_x_display_info (display
);
4688 Display
*dpy
= dpyinfo
->display
;
4690 return Fcons (make_number (ProtocolVersion (dpy
)),
4691 Fcons (make_number (ProtocolRevision (dpy
)),
4692 Fcons (make_number (VendorRelease (dpy
)), Qnil
)));
4695 DEFUN ("x-display-screens", Fx_display_screens
, Sx_display_screens
, 0, 1, 0,
4696 "Returns the number of screens on the X server of display DISPLAY.\n\
4697 The optional argument DISPLAY specifies which display to ask about.\n\
4698 DISPLAY should be either a frame or a display name (a string).\n\
4699 If omitted or nil, that stands for the selected frame's display.")
4701 Lisp_Object display
;
4703 struct x_display_info
*dpyinfo
= check_x_display_info (display
);
4705 return make_number (ScreenCount (dpyinfo
->display
));
4708 DEFUN ("x-display-mm-height", Fx_display_mm_height
, Sx_display_mm_height
, 0, 1, 0,
4709 "Returns the height in millimeters of the X display DISPLAY.\n\
4710 The optional argument DISPLAY specifies which display to ask about.\n\
4711 DISPLAY should be either a frame or a display name (a string).\n\
4712 If omitted or nil, that stands for the selected frame's display.")
4714 Lisp_Object display
;
4716 struct x_display_info
*dpyinfo
= check_x_display_info (display
);
4718 return make_number (HeightMMOfScreen (dpyinfo
->screen
));
4721 DEFUN ("x-display-mm-width", Fx_display_mm_width
, Sx_display_mm_width
, 0, 1, 0,
4722 "Returns the width in millimeters of the X display DISPLAY.\n\
4723 The optional argument DISPLAY specifies which display to ask about.\n\
4724 DISPLAY should be either a frame or a display name (a string).\n\
4725 If omitted or nil, that stands for the selected frame's display.")
4727 Lisp_Object display
;
4729 struct x_display_info
*dpyinfo
= check_x_display_info (display
);
4731 return make_number (WidthMMOfScreen (dpyinfo
->screen
));
4734 DEFUN ("x-display-backing-store", Fx_display_backing_store
,
4735 Sx_display_backing_store
, 0, 1, 0,
4736 "Returns an indication of whether X display DISPLAY does backing store.\n\
4737 The value may be `always', `when-mapped', or `not-useful'.\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.")
4742 Lisp_Object display
;
4744 struct x_display_info
*dpyinfo
= check_x_display_info (display
);
4747 switch (DoesBackingStore (dpyinfo
->screen
))
4750 result
= intern ("always");
4754 result
= intern ("when-mapped");
4758 result
= intern ("not-useful");
4762 error ("Strange value for BackingStore parameter of screen");
4769 DEFUN ("x-display-visual-class", Fx_display_visual_class
,
4770 Sx_display_visual_class
, 0, 1, 0,
4771 "Returns the visual class of the X display DISPLAY.\n\
4772 The value is one of the symbols `static-gray', `gray-scale',\n\
4773 `static-color', `pseudo-color', `true-color', or `direct-color'.\n\n\
4774 The optional argument DISPLAY specifies which display to ask about.\n\
4775 DISPLAY should be either a frame or a display name (a string).\n\
4776 If omitted or nil, that stands for the selected frame's display.")
4778 Lisp_Object display
;
4780 struct x_display_info
*dpyinfo
= check_x_display_info (display
);
4783 switch (dpyinfo
->visual
->class)
4786 result
= intern ("static-gray");
4789 result
= intern ("gray-scale");
4792 result
= intern ("static-color");
4795 result
= intern ("pseudo-color");
4798 result
= intern ("true-color");
4801 result
= intern ("direct-color");
4804 error ("Display has an unknown visual class");
4811 DEFUN ("x-display-save-under", Fx_display_save_under
,
4812 Sx_display_save_under
, 0, 1, 0,
4813 "Returns t if the X display DISPLAY supports the save-under feature.\n\
4814 The optional argument DISPLAY specifies which display to ask about.\n\
4815 DISPLAY should be either a frame or a display name (a string).\n\
4816 If omitted or nil, that stands for the selected frame's display.")
4818 Lisp_Object display
;
4820 struct x_display_info
*dpyinfo
= check_x_display_info (display
);
4822 if (DoesSaveUnders (dpyinfo
->screen
) == True
)
4830 register struct frame
*f
;
4832 return PIXEL_WIDTH (f
);
4837 register struct frame
*f
;
4839 return PIXEL_HEIGHT (f
);
4844 register struct frame
*f
;
4846 return FONT_WIDTH (f
->output_data
.x
->font
);
4851 register struct frame
*f
;
4853 return f
->output_data
.x
->line_height
;
4858 register struct frame
*f
;
4860 return FRAME_X_DISPLAY_INFO (f
)->n_planes
;
4865 /************************************************************************
4867 ************************************************************************/
4870 /* Mapping visual names to visuals. */
4872 static struct visual_class
4879 {"StaticGray", StaticGray
},
4880 {"GrayScale", GrayScale
},
4881 {"StaticColor", StaticColor
},
4882 {"PseudoColor", PseudoColor
},
4883 {"TrueColor", TrueColor
},
4884 {"DirectColor", DirectColor
},
4889 #ifndef HAVE_XSCREENNUMBEROFSCREEN
4891 /* Value is the screen number of screen SCR. This is a substitute for
4892 the X function with the same name when that doesn't exist. */
4895 XScreenNumberOfScreen (scr
)
4896 register Screen
*scr
;
4898 Display
*dpy
= scr
->display
;
4901 for (i
= 0; i
< dpy
->nscreens
; ++i
)
4902 if (scr
== dpy
->screens
[i
])
4908 #endif /* not HAVE_XSCREENNUMBEROFSCREEN */
4911 /* Select the visual that should be used on display DPYINFO. Set
4912 members of DPYINFO appropriately. Called from x_term_init. */
4915 select_visual (dpyinfo
)
4916 struct x_display_info
*dpyinfo
;
4918 Display
*dpy
= dpyinfo
->display
;
4919 Screen
*screen
= dpyinfo
->screen
;
4922 /* See if a visual is specified. */
4923 value
= display_x_get_resource (dpyinfo
,
4924 build_string ("visualClass"),
4925 build_string ("VisualClass"),
4927 if (STRINGP (value
))
4929 /* VALUE should be of the form CLASS-DEPTH, where CLASS is one
4930 of `PseudoColor', `TrueColor' etc. and DEPTH is the color
4931 depth, a decimal number. NAME is compared with case ignored. */
4932 char *s
= (char *) alloca (STRING_BYTES (XSTRING (value
)) + 1);
4937 strcpy (s
, XSTRING (value
)->data
);
4938 dash
= index (s
, '-');
4941 dpyinfo
->n_planes
= atoi (dash
+ 1);
4945 /* We won't find a matching visual with depth 0, so that
4946 an error will be printed below. */
4947 dpyinfo
->n_planes
= 0;
4949 /* Determine the visual class. */
4950 for (i
= 0; visual_classes
[i
].name
; ++i
)
4951 if (xstricmp (s
, visual_classes
[i
].name
) == 0)
4953 class = visual_classes
[i
].class;
4957 /* Look up a matching visual for the specified class. */
4959 || !XMatchVisualInfo (dpy
, XScreenNumberOfScreen (screen
),
4960 dpyinfo
->n_planes
, class, &vinfo
))
4961 fatal ("Invalid visual specification `%s'", XSTRING (value
)->data
);
4963 dpyinfo
->visual
= vinfo
.visual
;
4968 XVisualInfo
*vinfo
, vinfo_template
;
4970 dpyinfo
->visual
= DefaultVisualOfScreen (screen
);
4973 vinfo_template
.visualid
= XVisualIDFromVisual (dpyinfo
->visual
);
4975 vinfo_template
.visualid
= dpyinfo
->visual
->visualid
;
4977 vinfo_template
.screen
= XScreenNumberOfScreen (screen
);
4978 vinfo
= XGetVisualInfo (dpy
, VisualIDMask
| VisualScreenMask
,
4979 &vinfo_template
, &n_visuals
);
4981 fatal ("Can't get proper X visual info");
4983 dpyinfo
->n_planes
= vinfo
->depth
;
4984 XFree ((char *) vinfo
);
4989 /* Return the X display structure for the display named NAME.
4990 Open a new connection if necessary. */
4992 struct x_display_info
*
4993 x_display_info_for_name (name
)
4997 struct x_display_info
*dpyinfo
;
4999 CHECK_STRING (name
, 0);
5001 if (! EQ (Vwindow_system
, intern ("x")))
5002 error ("Not using X Windows");
5004 for (dpyinfo
= x_display_list
, names
= x_display_name_list
;
5006 dpyinfo
= dpyinfo
->next
, names
= XCDR (names
))
5009 tem
= Fstring_equal (XCAR (XCAR (names
)), name
);
5014 /* Use this general default value to start with. */
5015 Vx_resource_name
= Vinvocation_name
;
5017 validate_x_resource_name ();
5019 dpyinfo
= x_term_init (name
, (char *)0,
5020 (char *) XSTRING (Vx_resource_name
)->data
);
5023 error ("Cannot connect to X server %s", XSTRING (name
)->data
);
5026 XSETFASTINT (Vwindow_system_version
, 11);
5032 DEFUN ("x-open-connection", Fx_open_connection
, Sx_open_connection
,
5033 1, 3, 0, "Open a connection to an X server.\n\
5034 DISPLAY is the name of the display to connect to.\n\
5035 Optional second arg XRM-STRING is a string of resources in xrdb format.\n\
5036 If the optional third arg MUST-SUCCEED is non-nil,\n\
5037 terminate Emacs if we can't open the connection.")
5038 (display
, xrm_string
, must_succeed
)
5039 Lisp_Object display
, xrm_string
, must_succeed
;
5041 unsigned char *xrm_option
;
5042 struct x_display_info
*dpyinfo
;
5044 CHECK_STRING (display
, 0);
5045 if (! NILP (xrm_string
))
5046 CHECK_STRING (xrm_string
, 1);
5048 if (! EQ (Vwindow_system
, intern ("x")))
5049 error ("Not using X Windows");
5051 if (! NILP (xrm_string
))
5052 xrm_option
= (unsigned char *) XSTRING (xrm_string
)->data
;
5054 xrm_option
= (unsigned char *) 0;
5056 validate_x_resource_name ();
5058 /* This is what opens the connection and sets x_current_display.
5059 This also initializes many symbols, such as those used for input. */
5060 dpyinfo
= x_term_init (display
, xrm_option
,
5061 (char *) XSTRING (Vx_resource_name
)->data
);
5065 if (!NILP (must_succeed
))
5066 fatal ("Cannot connect to X server %s.\n\
5067 Check the DISPLAY environment variable or use `-d'.\n\
5068 Also use the `xhost' program to verify that it is set to permit\n\
5069 connections from your machine.\n",
5070 XSTRING (display
)->data
);
5072 error ("Cannot connect to X server %s", XSTRING (display
)->data
);
5077 XSETFASTINT (Vwindow_system_version
, 11);
5081 DEFUN ("x-close-connection", Fx_close_connection
,
5082 Sx_close_connection
, 1, 1, 0,
5083 "Close the connection to DISPLAY's X server.\n\
5084 For DISPLAY, specify either a frame or a display name (a string).\n\
5085 If DISPLAY is nil, that stands for the selected frame's display.")
5087 Lisp_Object display
;
5089 struct x_display_info
*dpyinfo
= check_x_display_info (display
);
5092 if (dpyinfo
->reference_count
> 0)
5093 error ("Display still has frames on it");
5096 /* Free the fonts in the font table. */
5097 for (i
= 0; i
< dpyinfo
->n_fonts
; i
++)
5098 if (dpyinfo
->font_table
[i
].name
)
5100 if (dpyinfo
->font_table
[i
].name
!= dpyinfo
->font_table
[i
].full_name
)
5101 xfree (dpyinfo
->font_table
[i
].full_name
);
5102 xfree (dpyinfo
->font_table
[i
].name
);
5103 XFreeFont (dpyinfo
->display
, dpyinfo
->font_table
[i
].font
);
5106 x_destroy_all_bitmaps (dpyinfo
);
5107 XSetCloseDownMode (dpyinfo
->display
, DestroyAll
);
5109 #ifdef USE_X_TOOLKIT
5110 XtCloseDisplay (dpyinfo
->display
);
5112 XCloseDisplay (dpyinfo
->display
);
5115 x_delete_display (dpyinfo
);
5121 DEFUN ("x-display-list", Fx_display_list
, Sx_display_list
, 0, 0, 0,
5122 "Return the list of display names that Emacs has connections to.")
5125 Lisp_Object tail
, result
;
5128 for (tail
= x_display_name_list
; ! NILP (tail
); tail
= XCDR (tail
))
5129 result
= Fcons (XCAR (XCAR (tail
)), result
);
5134 DEFUN ("x-synchronize", Fx_synchronize
, Sx_synchronize
, 1, 2, 0,
5135 "If ON is non-nil, report X errors as soon as the erring request is made.\n\
5136 If ON is nil, allow buffering of requests.\n\
5137 Turning on synchronization prohibits the Xlib routines from buffering\n\
5138 requests and seriously degrades performance, but makes debugging much\n\
5140 The optional second argument DISPLAY specifies which display to act on.\n\
5141 DISPLAY should be either a frame or a display name (a string).\n\
5142 If DISPLAY is omitted or nil, that stands for the selected frame's display.")
5144 Lisp_Object display
, on
;
5146 struct x_display_info
*dpyinfo
= check_x_display_info (display
);
5148 XSynchronize (dpyinfo
->display
, !EQ (on
, Qnil
));
5153 /* Wait for responses to all X commands issued so far for frame F. */
5160 XSync (FRAME_X_DISPLAY (f
), False
);
5165 /***********************************************************************
5167 ***********************************************************************/
5169 /* Value is the number of elements of vector VECTOR. */
5171 #define DIM(VECTOR) (sizeof (VECTOR) / sizeof *(VECTOR))
5173 /* List of supported image types. Use define_image_type to add new
5174 types. Use lookup_image_type to find a type for a given symbol. */
5176 static struct image_type
*image_types
;
5178 /* The symbol `image' which is the car of the lists used to represent
5181 extern Lisp_Object Qimage
;
5183 /* The symbol `xbm' which is used as the type symbol for XBM images. */
5189 extern Lisp_Object QCwidth
, QCheight
, QCforeground
, QCbackground
, QCfile
;
5190 extern Lisp_Object QCdata
;
5191 Lisp_Object QCtype
, QCascent
, QCmargin
, QCrelief
;
5192 Lisp_Object QCconversion
, QCcolor_symbols
, QCheuristic_mask
;
5193 Lisp_Object QCindex
, QCmatrix
, QCcolor_adjustment
, QCmask
;
5195 /* Other symbols. */
5197 Lisp_Object Qlaplace
, Qemboss
, Qedge_detection
, Qheuristic
;
5199 /* Time in seconds after which images should be removed from the cache
5200 if not displayed. */
5202 Lisp_Object Vimage_cache_eviction_delay
;
5204 /* Function prototypes. */
5206 static void define_image_type
P_ ((struct image_type
*type
));
5207 static struct image_type
*lookup_image_type
P_ ((Lisp_Object symbol
));
5208 static void image_error
P_ ((char *format
, Lisp_Object
, Lisp_Object
));
5209 static void x_laplace
P_ ((struct frame
*, struct image
*));
5210 static void x_emboss
P_ ((struct frame
*, struct image
*));
5211 static int x_build_heuristic_mask
P_ ((struct frame
*, struct image
*,
5215 /* Define a new image type from TYPE. This adds a copy of TYPE to
5216 image_types and adds the symbol *TYPE->type to Vimage_types. */
5219 define_image_type (type
)
5220 struct image_type
*type
;
5222 /* Make a copy of TYPE to avoid a bus error in a dumped Emacs.
5223 The initialized data segment is read-only. */
5224 struct image_type
*p
= (struct image_type
*) xmalloc (sizeof *p
);
5225 bcopy (type
, p
, sizeof *p
);
5226 p
->next
= image_types
;
5228 Vimage_types
= Fcons (*p
->type
, Vimage_types
);
5232 /* Look up image type SYMBOL, and return a pointer to its image_type
5233 structure. Value is null if SYMBOL is not a known image type. */
5235 static INLINE
struct image_type
*
5236 lookup_image_type (symbol
)
5239 struct image_type
*type
;
5241 for (type
= image_types
; type
; type
= type
->next
)
5242 if (EQ (symbol
, *type
->type
))
5249 /* Value is non-zero if OBJECT is a valid Lisp image specification. A
5250 valid image specification is a list whose car is the symbol
5251 `image', and whose rest is a property list. The property list must
5252 contain a value for key `:type'. That value must be the name of a
5253 supported image type. The rest of the property list depends on the
5257 valid_image_p (object
)
5262 if (CONSP (object
) && EQ (XCAR (object
), Qimage
))
5264 Lisp_Object symbol
= Fplist_get (XCDR (object
), QCtype
);
5265 struct image_type
*type
= lookup_image_type (symbol
);
5268 valid_p
= type
->valid_p (object
);
5275 /* Log error message with format string FORMAT and argument ARG.
5276 Signaling an error, e.g. when an image cannot be loaded, is not a
5277 good idea because this would interrupt redisplay, and the error
5278 message display would lead to another redisplay. This function
5279 therefore simply displays a message. */
5282 image_error (format
, arg1
, arg2
)
5284 Lisp_Object arg1
, arg2
;
5286 add_to_log (format
, arg1
, arg2
);
5291 /***********************************************************************
5292 Image specifications
5293 ***********************************************************************/
5295 enum image_value_type
5297 IMAGE_DONT_CHECK_VALUE_TYPE
,
5300 IMAGE_POSITIVE_INTEGER_VALUE
,
5301 IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR
,
5302 IMAGE_NON_NEGATIVE_INTEGER_VALUE
,
5304 IMAGE_INTEGER_VALUE
,
5305 IMAGE_FUNCTION_VALUE
,
5310 /* Structure used when parsing image specifications. */
5312 struct image_keyword
5314 /* Name of keyword. */
5317 /* The type of value allowed. */
5318 enum image_value_type type
;
5320 /* Non-zero means key must be present. */
5323 /* Used to recognize duplicate keywords in a property list. */
5326 /* The value that was found. */
5331 static int parse_image_spec
P_ ((Lisp_Object
, struct image_keyword
*,
5333 static Lisp_Object image_spec_value
P_ ((Lisp_Object
, Lisp_Object
, int *));
5336 /* Parse image spec SPEC according to KEYWORDS. A valid image spec
5337 has the format (image KEYWORD VALUE ...). One of the keyword/
5338 value pairs must be `:type TYPE'. KEYWORDS is a vector of
5339 image_keywords structures of size NKEYWORDS describing other
5340 allowed keyword/value pairs. Value is non-zero if SPEC is valid. */
5343 parse_image_spec (spec
, keywords
, nkeywords
, type
)
5345 struct image_keyword
*keywords
;
5352 if (!CONSP (spec
) || !EQ (XCAR (spec
), Qimage
))
5355 plist
= XCDR (spec
);
5356 while (CONSP (plist
))
5358 Lisp_Object key
, value
;
5360 /* First element of a pair must be a symbol. */
5362 plist
= XCDR (plist
);
5366 /* There must follow a value. */
5369 value
= XCAR (plist
);
5370 plist
= XCDR (plist
);
5372 /* Find key in KEYWORDS. Error if not found. */
5373 for (i
= 0; i
< nkeywords
; ++i
)
5374 if (strcmp (keywords
[i
].name
, XSYMBOL (key
)->name
->data
) == 0)
5380 /* Record that we recognized the keyword. If a keywords
5381 was found more than once, it's an error. */
5382 keywords
[i
].value
= value
;
5383 ++keywords
[i
].count
;
5385 if (keywords
[i
].count
> 1)
5388 /* Check type of value against allowed type. */
5389 switch (keywords
[i
].type
)
5391 case IMAGE_STRING_VALUE
:
5392 if (!STRINGP (value
))
5396 case IMAGE_SYMBOL_VALUE
:
5397 if (!SYMBOLP (value
))
5401 case IMAGE_POSITIVE_INTEGER_VALUE
:
5402 if (!INTEGERP (value
) || XINT (value
) <= 0)
5406 case IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR
:
5407 if (INTEGERP (value
) && XINT (value
) >= 0)
5410 && INTEGERP (XCAR (value
)) && INTEGERP (XCDR (value
))
5411 && XINT (XCAR (value
)) >= 0 && XINT (XCDR (value
)) >= 0)
5415 case IMAGE_ASCENT_VALUE
:
5416 if (SYMBOLP (value
) && EQ (value
, Qcenter
))
5418 else if (INTEGERP (value
)
5419 && XINT (value
) >= 0
5420 && XINT (value
) <= 100)
5424 case IMAGE_NON_NEGATIVE_INTEGER_VALUE
:
5425 if (!INTEGERP (value
) || XINT (value
) < 0)
5429 case IMAGE_DONT_CHECK_VALUE_TYPE
:
5432 case IMAGE_FUNCTION_VALUE
:
5433 value
= indirect_function (value
);
5435 || COMPILEDP (value
)
5436 || (CONSP (value
) && EQ (XCAR (value
), Qlambda
)))
5440 case IMAGE_NUMBER_VALUE
:
5441 if (!INTEGERP (value
) && !FLOATP (value
))
5445 case IMAGE_INTEGER_VALUE
:
5446 if (!INTEGERP (value
))
5450 case IMAGE_BOOL_VALUE
:
5451 if (!NILP (value
) && !EQ (value
, Qt
))
5460 if (EQ (key
, QCtype
) && !EQ (type
, value
))
5464 /* Check that all mandatory fields are present. */
5465 for (i
= 0; i
< nkeywords
; ++i
)
5466 if (keywords
[i
].mandatory_p
&& keywords
[i
].count
== 0)
5469 return NILP (plist
);
5473 /* Return the value of KEY in image specification SPEC. Value is nil
5474 if KEY is not present in SPEC. if FOUND is not null, set *FOUND
5475 to 1 if KEY was found in SPEC, set it to 0 otherwise. */
5478 image_spec_value (spec
, key
, found
)
5479 Lisp_Object spec
, key
;
5484 xassert (valid_image_p (spec
));
5486 for (tail
= XCDR (spec
);
5487 CONSP (tail
) && CONSP (XCDR (tail
));
5488 tail
= XCDR (XCDR (tail
)))
5490 if (EQ (XCAR (tail
), key
))
5494 return XCAR (XCDR (tail
));
5504 DEFUN ("image-size", Fimage_size
, Simage_size
, 1, 3, 0,
5505 "Return the size of image SPEC as pair (WIDTH . HEIGHT).\n\
5506 PIXELS non-nil means return the size in pixels, otherwise return the\n\
5507 size in canonical character units.\n\
5508 FRAME is the frame on which the image will be displayed. FRAME nil\n\
5509 or omitted means use the selected frame.")
5510 (spec
, pixels
, frame
)
5511 Lisp_Object spec
, pixels
, frame
;
5516 if (valid_image_p (spec
))
5518 struct frame
*f
= check_x_frame (frame
);
5519 int id
= lookup_image (f
, spec
);
5520 struct image
*img
= IMAGE_FROM_ID (f
, id
);
5521 int width
= img
->width
+ 2 * img
->hmargin
;
5522 int height
= img
->height
+ 2 * img
->vmargin
;
5525 size
= Fcons (make_float ((double) width
/ CANON_X_UNIT (f
)),
5526 make_float ((double) height
/ CANON_Y_UNIT (f
)));
5528 size
= Fcons (make_number (width
), make_number (height
));
5531 error ("Invalid image specification");
5537 DEFUN ("image-mask-p", Fimage_mask_p
, Simage_mask_p
, 1, 2, 0,
5538 "Return t if image SPEC has a mask bitmap.\n\
5539 FRAME is the frame on which the image will be displayed. FRAME nil\n\
5540 or omitted means use the selected frame.")
5542 Lisp_Object spec
, frame
;
5547 if (valid_image_p (spec
))
5549 struct frame
*f
= check_x_frame (frame
);
5550 int id
= lookup_image (f
, spec
);
5551 struct image
*img
= IMAGE_FROM_ID (f
, id
);
5556 error ("Invalid image specification");
5563 /***********************************************************************
5564 Image type independent image structures
5565 ***********************************************************************/
5567 static struct image
*make_image
P_ ((Lisp_Object spec
, unsigned hash
));
5568 static void free_image
P_ ((struct frame
*f
, struct image
*img
));
5571 /* Allocate and return a new image structure for image specification
5572 SPEC. SPEC has a hash value of HASH. */
5574 static struct image
*
5575 make_image (spec
, hash
)
5579 struct image
*img
= (struct image
*) xmalloc (sizeof *img
);
5581 xassert (valid_image_p (spec
));
5582 bzero (img
, sizeof *img
);
5583 img
->type
= lookup_image_type (image_spec_value (spec
, QCtype
, NULL
));
5584 xassert (img
->type
!= NULL
);
5586 img
->data
.lisp_val
= Qnil
;
5587 img
->ascent
= DEFAULT_IMAGE_ASCENT
;
5593 /* Free image IMG which was used on frame F, including its resources. */
5602 struct image_cache
*c
= FRAME_X_IMAGE_CACHE (f
);
5604 /* Remove IMG from the hash table of its cache. */
5606 img
->prev
->next
= img
->next
;
5608 c
->buckets
[img
->hash
% IMAGE_CACHE_BUCKETS_SIZE
] = img
->next
;
5611 img
->next
->prev
= img
->prev
;
5613 c
->images
[img
->id
] = NULL
;
5615 /* Free resources, then free IMG. */
5616 img
->type
->free (f
, img
);
5622 /* Prepare image IMG for display on frame F. Must be called before
5623 drawing an image. */
5626 prepare_image_for_display (f
, img
)
5632 /* We're about to display IMG, so set its timestamp to `now'. */
5634 img
->timestamp
= EMACS_SECS (t
);
5636 /* If IMG doesn't have a pixmap yet, load it now, using the image
5637 type dependent loader function. */
5638 if (img
->pixmap
== None
&& !img
->load_failed_p
)
5639 img
->load_failed_p
= img
->type
->load (f
, img
) == 0;
5643 /* Value is the number of pixels for the ascent of image IMG when
5644 drawn in face FACE. */
5647 image_ascent (img
, face
)
5651 int height
= img
->height
+ img
->vmargin
;
5654 if (img
->ascent
== CENTERED_IMAGE_ASCENT
)
5657 /* This expression is arranged so that if the image can't be
5658 exactly centered, it will be moved slightly up. This is
5659 because a typical font is `top-heavy' (due to the presence
5660 uppercase letters), so the image placement should err towards
5661 being top-heavy too. It also just generally looks better. */
5662 ascent
= (height
+ face
->font
->ascent
- face
->font
->descent
+ 1) / 2;
5664 ascent
= height
/ 2;
5667 ascent
= height
* img
->ascent
/ 100.0;
5674 /***********************************************************************
5675 Helper functions for X image types
5676 ***********************************************************************/
5678 static void x_clear_image_1
P_ ((struct frame
*, struct image
*, int,
5680 static void x_clear_image
P_ ((struct frame
*f
, struct image
*img
));
5681 static unsigned long x_alloc_image_color
P_ ((struct frame
*f
,
5683 Lisp_Object color_name
,
5684 unsigned long dflt
));
5687 /* Clear X resources of image IMG on frame F. PIXMAP_P non-zero means
5688 free the pixmap if any. MASK_P non-zero means clear the mask
5689 pixmap if any. COLORS_P non-zero means free colors allocated for
5690 the image, if any. */
5693 x_clear_image_1 (f
, img
, pixmap_p
, mask_p
, colors_p
)
5696 int pixmap_p
, mask_p
, colors_p
;
5698 if (pixmap_p
&& img
->pixmap
)
5700 XFreePixmap (FRAME_X_DISPLAY (f
), img
->pixmap
);
5704 if (mask_p
&& img
->mask
)
5706 XFreePixmap (FRAME_X_DISPLAY (f
), img
->mask
);
5710 if (colors_p
&& img
->ncolors
)
5712 x_free_colors (f
, img
->colors
, img
->ncolors
);
5713 xfree (img
->colors
);
5719 /* Free X resources of image IMG which is used on frame F. */
5722 x_clear_image (f
, img
)
5727 x_clear_image_1 (f
, img
, 1, 1, 1);
5732 /* Allocate color COLOR_NAME for image IMG on frame F. If color
5733 cannot be allocated, use DFLT. Add a newly allocated color to
5734 IMG->colors, so that it can be freed again. Value is the pixel
5737 static unsigned long
5738 x_alloc_image_color (f
, img
, color_name
, dflt
)
5741 Lisp_Object color_name
;
5745 unsigned long result
;
5747 xassert (STRINGP (color_name
));
5749 if (x_defined_color (f
, XSTRING (color_name
)->data
, &color
, 1))
5751 /* This isn't called frequently so we get away with simply
5752 reallocating the color vector to the needed size, here. */
5755 (unsigned long *) xrealloc (img
->colors
,
5756 img
->ncolors
* sizeof *img
->colors
);
5757 img
->colors
[img
->ncolors
- 1] = color
.pixel
;
5758 result
= color
.pixel
;
5768 /***********************************************************************
5770 ***********************************************************************/
5772 static void cache_image
P_ ((struct frame
*f
, struct image
*img
));
5775 /* Return a new, initialized image cache that is allocated from the
5776 heap. Call free_image_cache to free an image cache. */
5778 struct image_cache
*
5781 struct image_cache
*c
= (struct image_cache
*) xmalloc (sizeof *c
);
5784 bzero (c
, sizeof *c
);
5786 c
->images
= (struct image
**) xmalloc (c
->size
* sizeof *c
->images
);
5787 size
= IMAGE_CACHE_BUCKETS_SIZE
* sizeof *c
->buckets
;
5788 c
->buckets
= (struct image
**) xmalloc (size
);
5789 bzero (c
->buckets
, size
);
5794 /* Free image cache of frame F. Be aware that X frames share images
5798 free_image_cache (f
)
5801 struct image_cache
*c
= FRAME_X_IMAGE_CACHE (f
);
5806 /* Cache should not be referenced by any frame when freed. */
5807 xassert (c
->refcount
== 0);
5809 for (i
= 0; i
< c
->used
; ++i
)
5810 free_image (f
, c
->images
[i
]);
5814 FRAME_X_IMAGE_CACHE (f
) = NULL
;
5819 /* Clear image cache of frame F. FORCE_P non-zero means free all
5820 images. FORCE_P zero means clear only images that haven't been
5821 displayed for some time. Should be called from time to time to
5822 reduce the number of loaded images. If image-eviction-seconds is
5823 non-nil, this frees images in the cache which weren't displayed for
5824 at least that many seconds. */
5827 clear_image_cache (f
, force_p
)
5831 struct image_cache
*c
= FRAME_X_IMAGE_CACHE (f
);
5833 if (c
&& INTEGERP (Vimage_cache_eviction_delay
))
5840 old
= EMACS_SECS (t
) - XFASTINT (Vimage_cache_eviction_delay
);
5842 /* Block input so that we won't be interrupted by a SIGIO
5843 while being in an inconsistent state. */
5846 for (i
= nfreed
= 0; i
< c
->used
; ++i
)
5848 struct image
*img
= c
->images
[i
];
5850 && (force_p
|| img
->timestamp
< old
))
5852 free_image (f
, img
);
5857 /* We may be clearing the image cache because, for example,
5858 Emacs was iconified for a longer period of time. In that
5859 case, current matrices may still contain references to
5860 images freed above. So, clear these matrices. */
5863 Lisp_Object tail
, frame
;
5865 FOR_EACH_FRAME (tail
, frame
)
5867 struct frame
*f
= XFRAME (frame
);
5869 && FRAME_X_IMAGE_CACHE (f
) == c
)
5870 clear_current_matrices (f
);
5873 ++windows_or_buffers_changed
;
5881 DEFUN ("clear-image-cache", Fclear_image_cache
, Sclear_image_cache
,
5883 "Clear the image cache of FRAME.\n\
5884 FRAME nil or omitted means use the selected frame.\n\
5885 FRAME t means clear the image caches of all frames.")
5893 FOR_EACH_FRAME (tail
, frame
)
5894 if (FRAME_X_P (XFRAME (frame
)))
5895 clear_image_cache (XFRAME (frame
), 1);
5898 clear_image_cache (check_x_frame (frame
), 1);
5904 /* Return the id of image with Lisp specification SPEC on frame F.
5905 SPEC must be a valid Lisp image specification (see valid_image_p). */
5908 lookup_image (f
, spec
)
5912 struct image_cache
*c
= FRAME_X_IMAGE_CACHE (f
);
5916 struct gcpro gcpro1
;
5919 /* F must be a window-system frame, and SPEC must be a valid image
5921 xassert (FRAME_WINDOW_P (f
));
5922 xassert (valid_image_p (spec
));
5926 /* Look up SPEC in the hash table of the image cache. */
5927 hash
= sxhash (spec
, 0);
5928 i
= hash
% IMAGE_CACHE_BUCKETS_SIZE
;
5930 for (img
= c
->buckets
[i
]; img
; img
= img
->next
)
5931 if (img
->hash
== hash
&& !NILP (Fequal (img
->spec
, spec
)))
5934 /* If not found, create a new image and cache it. */
5938 img
= make_image (spec
, hash
);
5939 cache_image (f
, img
);
5940 img
->load_failed_p
= img
->type
->load (f
, img
) == 0;
5942 /* If we can't load the image, and we don't have a width and
5943 height, use some arbitrary width and height so that we can
5944 draw a rectangle for it. */
5945 if (img
->load_failed_p
)
5949 value
= image_spec_value (spec
, QCwidth
, NULL
);
5950 img
->width
= (INTEGERP (value
)
5951 ? XFASTINT (value
) : DEFAULT_IMAGE_WIDTH
);
5952 value
= image_spec_value (spec
, QCheight
, NULL
);
5953 img
->height
= (INTEGERP (value
)
5954 ? XFASTINT (value
) : DEFAULT_IMAGE_HEIGHT
);
5958 /* Handle image type independent image attributes
5959 `:ascent ASCENT', `:margin MARGIN', `:relief RELIEF'. */
5960 Lisp_Object ascent
, margin
, relief
;
5962 ascent
= image_spec_value (spec
, QCascent
, NULL
);
5963 if (INTEGERP (ascent
))
5964 img
->ascent
= XFASTINT (ascent
);
5965 else if (EQ (ascent
, Qcenter
))
5966 img
->ascent
= CENTERED_IMAGE_ASCENT
;
5968 margin
= image_spec_value (spec
, QCmargin
, NULL
);
5969 if (INTEGERP (margin
) && XINT (margin
) >= 0)
5970 img
->vmargin
= img
->hmargin
= XFASTINT (margin
);
5971 else if (CONSP (margin
) && INTEGERP (XCAR (margin
))
5972 && INTEGERP (XCDR (margin
)))
5974 if (XINT (XCAR (margin
)) > 0)
5975 img
->hmargin
= XFASTINT (XCAR (margin
));
5976 if (XINT (XCDR (margin
)) > 0)
5977 img
->vmargin
= XFASTINT (XCDR (margin
));
5980 relief
= image_spec_value (spec
, QCrelief
, NULL
);
5981 if (INTEGERP (relief
))
5983 img
->relief
= XINT (relief
);
5984 img
->hmargin
+= abs (img
->relief
);
5985 img
->vmargin
+= abs (img
->relief
);
5988 /* Manipulation of the image's mask. */
5991 /* `:heuristic-mask t'
5993 means build a mask heuristically.
5994 `:heuristic-mask (R G B)'
5995 `:mask (heuristic (R G B))'
5996 means build a mask from color (R G B) in the
5999 means remove a mask, if any. */
6003 mask
= image_spec_value (spec
, QCheuristic_mask
, NULL
);
6005 x_build_heuristic_mask (f
, img
, mask
);
6010 mask
= image_spec_value (spec
, QCmask
, &found_p
);
6012 if (EQ (mask
, Qheuristic
))
6013 x_build_heuristic_mask (f
, img
, Qt
);
6014 else if (CONSP (mask
)
6015 && EQ (XCAR (mask
), Qheuristic
))
6017 if (CONSP (XCDR (mask
)))
6018 x_build_heuristic_mask (f
, img
, XCAR (XCDR (mask
)));
6020 x_build_heuristic_mask (f
, img
, XCDR (mask
));
6022 else if (NILP (mask
) && found_p
&& img
->mask
)
6024 XFreePixmap (FRAME_X_DISPLAY (f
), img
->mask
);
6030 /* Should we apply an image transformation algorithm? */
6033 Lisp_Object conversion
;
6035 conversion
= image_spec_value (spec
, QCconversion
, NULL
);
6036 if (EQ (conversion
, Qdisabled
))
6037 x_disable_image (f
, img
);
6038 else if (EQ (conversion
, Qlaplace
))
6040 else if (EQ (conversion
, Qemboss
))
6042 else if (CONSP (conversion
)
6043 && EQ (XCAR (conversion
), Qedge_detection
))
6046 tem
= XCDR (conversion
);
6048 x_edge_detection (f
, img
,
6049 Fplist_get (tem
, QCmatrix
),
6050 Fplist_get (tem
, QCcolor_adjustment
));
6056 xassert (!interrupt_input_blocked
);
6059 /* We're using IMG, so set its timestamp to `now'. */
6060 EMACS_GET_TIME (now
);
6061 img
->timestamp
= EMACS_SECS (now
);
6065 /* Value is the image id. */
6070 /* Cache image IMG in the image cache of frame F. */
6073 cache_image (f
, img
)
6077 struct image_cache
*c
= FRAME_X_IMAGE_CACHE (f
);
6080 /* Find a free slot in c->images. */
6081 for (i
= 0; i
< c
->used
; ++i
)
6082 if (c
->images
[i
] == NULL
)
6085 /* If no free slot found, maybe enlarge c->images. */
6086 if (i
== c
->used
&& c
->used
== c
->size
)
6089 c
->images
= (struct image
**) xrealloc (c
->images
,
6090 c
->size
* sizeof *c
->images
);
6093 /* Add IMG to c->images, and assign IMG an id. */
6099 /* Add IMG to the cache's hash table. */
6100 i
= img
->hash
% IMAGE_CACHE_BUCKETS_SIZE
;
6101 img
->next
= c
->buckets
[i
];
6103 img
->next
->prev
= img
;
6105 c
->buckets
[i
] = img
;
6109 /* Call FN on every image in the image cache of frame F. Used to mark
6110 Lisp Objects in the image cache. */
6113 forall_images_in_image_cache (f
, fn
)
6115 void (*fn
) P_ ((struct image
*img
));
6117 if (FRAME_LIVE_P (f
) && FRAME_X_P (f
))
6119 struct image_cache
*c
= FRAME_X_IMAGE_CACHE (f
);
6123 for (i
= 0; i
< c
->used
; ++i
)
6132 /***********************************************************************
6134 ***********************************************************************/
6136 static int x_create_x_image_and_pixmap
P_ ((struct frame
*, int, int, int,
6137 XImage
**, Pixmap
*));
6138 static void x_destroy_x_image
P_ ((XImage
*));
6139 static void x_put_x_image
P_ ((struct frame
*, XImage
*, Pixmap
, int, int));
6142 /* Create an XImage and a pixmap of size WIDTH x HEIGHT for use on
6143 frame F. Set *XIMG and *PIXMAP to the XImage and Pixmap created.
6144 Set (*XIMG)->data to a raster of WIDTH x HEIGHT pixels allocated
6145 via xmalloc. Print error messages via image_error if an error
6146 occurs. Value is non-zero if successful. */
6149 x_create_x_image_and_pixmap (f
, width
, height
, depth
, ximg
, pixmap
)
6151 int width
, height
, depth
;
6155 Display
*display
= FRAME_X_DISPLAY (f
);
6156 Screen
*screen
= FRAME_X_SCREEN (f
);
6157 Window window
= FRAME_X_WINDOW (f
);
6159 xassert (interrupt_input_blocked
);
6162 depth
= DefaultDepthOfScreen (screen
);
6163 *ximg
= XCreateImage (display
, DefaultVisualOfScreen (screen
),
6164 depth
, ZPixmap
, 0, NULL
, width
, height
,
6165 depth
> 16 ? 32 : depth
> 8 ? 16 : 8, 0);
6168 image_error ("Unable to allocate X image", Qnil
, Qnil
);
6172 /* Allocate image raster. */
6173 (*ximg
)->data
= (char *) xmalloc ((*ximg
)->bytes_per_line
* height
);
6175 /* Allocate a pixmap of the same size. */
6176 *pixmap
= XCreatePixmap (display
, window
, width
, height
, depth
);
6177 if (*pixmap
== None
)
6179 x_destroy_x_image (*ximg
);
6181 image_error ("Unable to create X pixmap", Qnil
, Qnil
);
6189 /* Destroy XImage XIMG. Free XIMG->data. */
6192 x_destroy_x_image (ximg
)
6195 xassert (interrupt_input_blocked
);
6200 XDestroyImage (ximg
);
6205 /* Put XImage XIMG into pixmap PIXMAP on frame F. WIDTH and HEIGHT
6206 are width and height of both the image and pixmap. */
6209 x_put_x_image (f
, ximg
, pixmap
, width
, height
)
6216 xassert (interrupt_input_blocked
);
6217 gc
= XCreateGC (FRAME_X_DISPLAY (f
), pixmap
, 0, NULL
);
6218 XPutImage (FRAME_X_DISPLAY (f
), pixmap
, gc
, ximg
, 0, 0, 0, 0, width
, height
);
6219 XFreeGC (FRAME_X_DISPLAY (f
), gc
);
6224 /***********************************************************************
6226 ***********************************************************************/
6228 static Lisp_Object x_find_image_file
P_ ((Lisp_Object
));
6229 static char *slurp_file
P_ ((char *, int *));
6232 /* Find image file FILE. Look in data-directory, then
6233 x-bitmap-file-path. Value is the full name of the file found, or
6234 nil if not found. */
6237 x_find_image_file (file
)
6240 Lisp_Object file_found
, search_path
;
6241 struct gcpro gcpro1
, gcpro2
;
6245 search_path
= Fcons (Vdata_directory
, Vx_bitmap_file_path
);
6246 GCPRO2 (file_found
, search_path
);
6248 /* Try to find FILE in data-directory, then x-bitmap-file-path. */
6249 fd
= openp (search_path
, file
, "", &file_found
, 0);
6261 /* Read FILE into memory. Value is a pointer to a buffer allocated
6262 with xmalloc holding FILE's contents. Value is null if an error
6263 occurred. *SIZE is set to the size of the file. */
6266 slurp_file (file
, size
)
6274 if (stat (file
, &st
) == 0
6275 && (fp
= fopen (file
, "r")) != NULL
6276 && (buf
= (char *) xmalloc (st
.st_size
),
6277 fread (buf
, 1, st
.st_size
, fp
) == st
.st_size
))
6298 /***********************************************************************
6300 ***********************************************************************/
6302 static int xbm_scan
P_ ((char **, char *, char *, int *));
6303 static int xbm_load
P_ ((struct frame
*f
, struct image
*img
));
6304 static int xbm_load_image
P_ ((struct frame
*f
, struct image
*img
,
6306 static int xbm_image_p
P_ ((Lisp_Object object
));
6307 static int xbm_read_bitmap_data
P_ ((char *, char *, int *, int *,
6309 static int xbm_file_p
P_ ((Lisp_Object
));
6312 /* Indices of image specification fields in xbm_format, below. */
6314 enum xbm_keyword_index
6332 /* Vector of image_keyword structures describing the format
6333 of valid XBM image specifications. */
6335 static struct image_keyword xbm_format
[XBM_LAST
] =
6337 {":type", IMAGE_SYMBOL_VALUE
, 1},
6338 {":file", IMAGE_STRING_VALUE
, 0},
6339 {":width", IMAGE_POSITIVE_INTEGER_VALUE
, 0},
6340 {":height", IMAGE_POSITIVE_INTEGER_VALUE
, 0},
6341 {":data", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
6342 {":foreground", IMAGE_STRING_VALUE
, 0},
6343 {":background", IMAGE_STRING_VALUE
, 0},
6344 {":ascent", IMAGE_ASCENT_VALUE
, 0},
6345 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR
, 0},
6346 {":relief", IMAGE_INTEGER_VALUE
, 0},
6347 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
6348 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
6349 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0}
6352 /* Structure describing the image type XBM. */
6354 static struct image_type xbm_type
=
6363 /* Tokens returned from xbm_scan. */
6372 /* Return non-zero if OBJECT is a valid XBM-type image specification.
6373 A valid specification is a list starting with the symbol `image'
6374 The rest of the list is a property list which must contain an
6377 If the specification specifies a file to load, it must contain
6378 an entry `:file FILENAME' where FILENAME is a string.
6380 If the specification is for a bitmap loaded from memory it must
6381 contain `:width WIDTH', `:height HEIGHT', and `:data DATA', where
6382 WIDTH and HEIGHT are integers > 0. DATA may be:
6384 1. a string large enough to hold the bitmap data, i.e. it must
6385 have a size >= (WIDTH + 7) / 8 * HEIGHT
6387 2. a bool-vector of size >= WIDTH * HEIGHT
6389 3. a vector of strings or bool-vectors, one for each line of the
6392 4. A string containing an in-memory XBM file. WIDTH and HEIGHT
6393 may not be specified in this case because they are defined in the
6396 Both the file and data forms may contain the additional entries
6397 `:background COLOR' and `:foreground COLOR'. If not present,
6398 foreground and background of the frame on which the image is
6399 displayed is used. */
6402 xbm_image_p (object
)
6405 struct image_keyword kw
[XBM_LAST
];
6407 bcopy (xbm_format
, kw
, sizeof kw
);
6408 if (!parse_image_spec (object
, kw
, XBM_LAST
, Qxbm
))
6411 xassert (EQ (kw
[XBM_TYPE
].value
, Qxbm
));
6413 if (kw
[XBM_FILE
].count
)
6415 if (kw
[XBM_WIDTH
].count
|| kw
[XBM_HEIGHT
].count
|| kw
[XBM_DATA
].count
)
6418 else if (kw
[XBM_DATA
].count
&& xbm_file_p (kw
[XBM_DATA
].value
))
6420 /* In-memory XBM file. */
6421 if (kw
[XBM_WIDTH
].count
|| kw
[XBM_HEIGHT
].count
|| kw
[XBM_FILE
].count
)
6429 /* Entries for `:width', `:height' and `:data' must be present. */
6430 if (!kw
[XBM_WIDTH
].count
6431 || !kw
[XBM_HEIGHT
].count
6432 || !kw
[XBM_DATA
].count
)
6435 data
= kw
[XBM_DATA
].value
;
6436 width
= XFASTINT (kw
[XBM_WIDTH
].value
);
6437 height
= XFASTINT (kw
[XBM_HEIGHT
].value
);
6439 /* Check type of data, and width and height against contents of
6445 /* Number of elements of the vector must be >= height. */
6446 if (XVECTOR (data
)->size
< height
)
6449 /* Each string or bool-vector in data must be large enough
6450 for one line of the image. */
6451 for (i
= 0; i
< height
; ++i
)
6453 Lisp_Object elt
= XVECTOR (data
)->contents
[i
];
6457 if (XSTRING (elt
)->size
6458 < (width
+ BITS_PER_CHAR
- 1) / BITS_PER_CHAR
)
6461 else if (BOOL_VECTOR_P (elt
))
6463 if (XBOOL_VECTOR (elt
)->size
< width
)
6470 else if (STRINGP (data
))
6472 if (XSTRING (data
)->size
6473 < (width
+ BITS_PER_CHAR
- 1) / BITS_PER_CHAR
* height
)
6476 else if (BOOL_VECTOR_P (data
))
6478 if (XBOOL_VECTOR (data
)->size
< width
* height
)
6489 /* Scan a bitmap file. FP is the stream to read from. Value is
6490 either an enumerator from enum xbm_token, or a character for a
6491 single-character token, or 0 at end of file. If scanning an
6492 identifier, store the lexeme of the identifier in SVAL. If
6493 scanning a number, store its value in *IVAL. */
6496 xbm_scan (s
, end
, sval
, ival
)
6505 /* Skip white space. */
6506 while (*s
< end
&& (c
= *(*s
)++, isspace (c
)))
6511 else if (isdigit (c
))
6513 int value
= 0, digit
;
6515 if (c
== '0' && *s
< end
)
6518 if (c
== 'x' || c
== 'X')
6525 else if (c
>= 'a' && c
<= 'f')
6526 digit
= c
- 'a' + 10;
6527 else if (c
>= 'A' && c
<= 'F')
6528 digit
= c
- 'A' + 10;
6531 value
= 16 * value
+ digit
;
6534 else if (isdigit (c
))
6538 && (c
= *(*s
)++, isdigit (c
)))
6539 value
= 8 * value
+ c
- '0';
6546 && (c
= *(*s
)++, isdigit (c
)))
6547 value
= 10 * value
+ c
- '0';
6555 else if (isalpha (c
) || c
== '_')
6559 && (c
= *(*s
)++, (isalnum (c
) || c
== '_')))
6566 else if (c
== '/' && **s
== '*')
6568 /* C-style comment. */
6570 while (**s
&& (**s
!= '*' || *(*s
+ 1) != '/'))
6583 /* Replacement for XReadBitmapFileData which isn't available under old
6584 X versions. CONTENTS is a pointer to a buffer to parse; END is the
6585 buffer's end. Set *WIDTH and *HEIGHT to the width and height of
6586 the image. Return in *DATA the bitmap data allocated with xmalloc.
6587 Value is non-zero if successful. DATA null means just test if
6588 CONTENTS looks like an in-memory XBM file. */
6591 xbm_read_bitmap_data (contents
, end
, width
, height
, data
)
6592 char *contents
, *end
;
6593 int *width
, *height
;
6594 unsigned char **data
;
6597 char buffer
[BUFSIZ
];
6600 int bytes_per_line
, i
, nbytes
;
6606 LA1 = xbm_scan (&s, end, buffer, &value)
6608 #define expect(TOKEN) \
6609 if (LA1 != (TOKEN)) \
6614 #define expect_ident(IDENT) \
6615 if (LA1 == XBM_TK_IDENT && strcmp (buffer, (IDENT)) == 0) \
6620 *width
= *height
= -1;
6623 LA1
= xbm_scan (&s
, end
, buffer
, &value
);
6625 /* Parse defines for width, height and hot-spots. */
6629 expect_ident ("define");
6630 expect (XBM_TK_IDENT
);
6632 if (LA1
== XBM_TK_NUMBER
);
6634 char *p
= strrchr (buffer
, '_');
6635 p
= p
? p
+ 1 : buffer
;
6636 if (strcmp (p
, "width") == 0)
6638 else if (strcmp (p
, "height") == 0)
6641 expect (XBM_TK_NUMBER
);
6644 if (*width
< 0 || *height
< 0)
6646 else if (data
== NULL
)
6649 /* Parse bits. Must start with `static'. */
6650 expect_ident ("static");
6651 if (LA1
== XBM_TK_IDENT
)
6653 if (strcmp (buffer
, "unsigned") == 0)
6656 expect_ident ("char");
6658 else if (strcmp (buffer
, "short") == 0)
6662 if (*width
% 16 && *width
% 16 < 9)
6665 else if (strcmp (buffer
, "char") == 0)
6673 expect (XBM_TK_IDENT
);
6679 bytes_per_line
= (*width
+ 7) / 8 + padding_p
;
6680 nbytes
= bytes_per_line
* *height
;
6681 p
= *data
= (char *) xmalloc (nbytes
);
6685 for (i
= 0; i
< nbytes
; i
+= 2)
6688 expect (XBM_TK_NUMBER
);
6691 if (!padding_p
|| ((i
+ 2) % bytes_per_line
))
6694 if (LA1
== ',' || LA1
== '}')
6702 for (i
= 0; i
< nbytes
; ++i
)
6705 expect (XBM_TK_NUMBER
);
6709 if (LA1
== ',' || LA1
== '}')
6734 /* Load XBM image IMG which will be displayed on frame F from buffer
6735 CONTENTS. END is the end of the buffer. Value is non-zero if
6739 xbm_load_image (f
, img
, contents
, end
)
6742 char *contents
, *end
;
6745 unsigned char *data
;
6748 rc
= xbm_read_bitmap_data (contents
, end
, &img
->width
, &img
->height
, &data
);
6751 int depth
= DefaultDepthOfScreen (FRAME_X_SCREEN (f
));
6752 unsigned long foreground
= FRAME_FOREGROUND_PIXEL (f
);
6753 unsigned long background
= FRAME_BACKGROUND_PIXEL (f
);
6756 xassert (img
->width
> 0 && img
->height
> 0);
6758 /* Get foreground and background colors, maybe allocate colors. */
6759 value
= image_spec_value (img
->spec
, QCforeground
, NULL
);
6761 foreground
= x_alloc_image_color (f
, img
, value
, foreground
);
6763 value
= image_spec_value (img
->spec
, QCbackground
, NULL
);
6765 background
= x_alloc_image_color (f
, img
, value
, background
);
6768 = XCreatePixmapFromBitmapData (FRAME_X_DISPLAY (f
),
6771 img
->width
, img
->height
,
6772 foreground
, background
,
6776 if (img
->pixmap
== None
)
6778 x_clear_image (f
, img
);
6779 image_error ("Unable to create X pixmap for `%s'", img
->spec
, Qnil
);
6785 image_error ("Error loading XBM image `%s'", img
->spec
, Qnil
);
6791 /* Value is non-zero if DATA looks like an in-memory XBM file. */
6798 return (STRINGP (data
)
6799 && xbm_read_bitmap_data (XSTRING (data
)->data
,
6800 (XSTRING (data
)->data
6801 + STRING_BYTES (XSTRING (data
))),
6806 /* Fill image IMG which is used on frame F with pixmap data. Value is
6807 non-zero if successful. */
6815 Lisp_Object file_name
;
6817 xassert (xbm_image_p (img
->spec
));
6819 /* If IMG->spec specifies a file name, create a non-file spec from it. */
6820 file_name
= image_spec_value (img
->spec
, QCfile
, NULL
);
6821 if (STRINGP (file_name
))
6826 struct gcpro gcpro1
;
6828 file
= x_find_image_file (file_name
);
6830 if (!STRINGP (file
))
6832 image_error ("Cannot find image file `%s'", file_name
, Qnil
);
6837 contents
= slurp_file (XSTRING (file
)->data
, &size
);
6838 if (contents
== NULL
)
6840 image_error ("Error loading XBM image `%s'", img
->spec
, Qnil
);
6845 success_p
= xbm_load_image (f
, img
, contents
, contents
+ size
);
6850 struct image_keyword fmt
[XBM_LAST
];
6853 unsigned long foreground
= FRAME_FOREGROUND_PIXEL (f
);
6854 unsigned long background
= FRAME_BACKGROUND_PIXEL (f
);
6857 int in_memory_file_p
= 0;
6859 /* See if data looks like an in-memory XBM file. */
6860 data
= image_spec_value (img
->spec
, QCdata
, NULL
);
6861 in_memory_file_p
= xbm_file_p (data
);
6863 /* Parse the image specification. */
6864 bcopy (xbm_format
, fmt
, sizeof fmt
);
6865 parsed_p
= parse_image_spec (img
->spec
, fmt
, XBM_LAST
, Qxbm
);
6868 /* Get specified width, and height. */
6869 if (!in_memory_file_p
)
6871 img
->width
= XFASTINT (fmt
[XBM_WIDTH
].value
);
6872 img
->height
= XFASTINT (fmt
[XBM_HEIGHT
].value
);
6873 xassert (img
->width
> 0 && img
->height
> 0);
6876 /* Get foreground and background colors, maybe allocate colors. */
6877 if (fmt
[XBM_FOREGROUND
].count
)
6878 foreground
= x_alloc_image_color (f
, img
, fmt
[XBM_FOREGROUND
].value
,
6880 if (fmt
[XBM_BACKGROUND
].count
)
6881 background
= x_alloc_image_color (f
, img
, fmt
[XBM_BACKGROUND
].value
,
6884 if (in_memory_file_p
)
6885 success_p
= xbm_load_image (f
, img
, XSTRING (data
)->data
,
6886 (XSTRING (data
)->data
6887 + STRING_BYTES (XSTRING (data
))));
6894 int nbytes
= (img
->width
+ BITS_PER_CHAR
- 1) / BITS_PER_CHAR
;
6896 p
= bits
= (char *) alloca (nbytes
* img
->height
);
6897 for (i
= 0; i
< img
->height
; ++i
, p
+= nbytes
)
6899 Lisp_Object line
= XVECTOR (data
)->contents
[i
];
6901 bcopy (XSTRING (line
)->data
, p
, nbytes
);
6903 bcopy (XBOOL_VECTOR (line
)->data
, p
, nbytes
);
6906 else if (STRINGP (data
))
6907 bits
= XSTRING (data
)->data
;
6909 bits
= XBOOL_VECTOR (data
)->data
;
6911 /* Create the pixmap. */
6912 depth
= DefaultDepthOfScreen (FRAME_X_SCREEN (f
));
6914 = XCreatePixmapFromBitmapData (FRAME_X_DISPLAY (f
),
6917 img
->width
, img
->height
,
6918 foreground
, background
,
6924 image_error ("Unable to create pixmap for XBM image `%s'",
6926 x_clear_image (f
, img
);
6936 /***********************************************************************
6938 ***********************************************************************/
6942 static int xpm_image_p
P_ ((Lisp_Object object
));
6943 static int xpm_load
P_ ((struct frame
*f
, struct image
*img
));
6944 static int xpm_valid_color_symbols_p
P_ ((Lisp_Object
));
6946 #include "X11/xpm.h"
6948 /* The symbol `xpm' identifying XPM-format images. */
6952 /* Indices of image specification fields in xpm_format, below. */
6954 enum xpm_keyword_index
6969 /* Vector of image_keyword structures describing the format
6970 of valid XPM image specifications. */
6972 static struct image_keyword xpm_format
[XPM_LAST
] =
6974 {":type", IMAGE_SYMBOL_VALUE
, 1},
6975 {":file", IMAGE_STRING_VALUE
, 0},
6976 {":data", IMAGE_STRING_VALUE
, 0},
6977 {":ascent", IMAGE_ASCENT_VALUE
, 0},
6978 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR
, 0},
6979 {":relief", IMAGE_INTEGER_VALUE
, 0},
6980 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
6981 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
6982 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
6983 {":color-symbols", IMAGE_DONT_CHECK_VALUE_TYPE
, 0}
6986 /* Structure describing the image type XBM. */
6988 static struct image_type xpm_type
=
6998 /* Define ALLOC_XPM_COLORS if we can use Emacs' own color allocation
6999 functions for allocating image colors. Our own functions handle
7000 color allocation failures more gracefully than the ones on the XPM
7003 #if defined XpmAllocColor && defined XpmFreeColors && defined XpmColorClosure
7004 #define ALLOC_XPM_COLORS
7007 #ifdef ALLOC_XPM_COLORS
7009 static void xpm_init_color_cache
P_ ((struct frame
*, XpmAttributes
*));
7010 static void xpm_free_color_cache
P_ ((void));
7011 static int xpm_lookup_color
P_ ((struct frame
*, char *, XColor
*));
7012 static int xpm_color_bucket
P_ ((char *));
7013 static struct xpm_cached_color
*xpm_cache_color
P_ ((struct frame
*, char *,
7016 /* An entry in a hash table used to cache color definitions of named
7017 colors. This cache is necessary to speed up XPM image loading in
7018 case we do color allocations ourselves. Without it, we would need
7019 a call to XParseColor per pixel in the image. */
7021 struct xpm_cached_color
7023 /* Next in collision chain. */
7024 struct xpm_cached_color
*next
;
7026 /* Color definition (RGB and pixel color). */
7033 /* The hash table used for the color cache, and its bucket vector
7036 #define XPM_COLOR_CACHE_BUCKETS 1001
7037 struct xpm_cached_color
**xpm_color_cache
;
7039 /* Initialize the color cache. */
7042 xpm_init_color_cache (f
, attrs
)
7044 XpmAttributes
*attrs
;
7046 size_t nbytes
= XPM_COLOR_CACHE_BUCKETS
* sizeof *xpm_color_cache
;
7047 xpm_color_cache
= (struct xpm_cached_color
**) xmalloc (nbytes
);
7048 memset (xpm_color_cache
, 0, nbytes
);
7049 init_color_table ();
7051 if (attrs
->valuemask
& XpmColorSymbols
)
7056 for (i
= 0; i
< attrs
->numsymbols
; ++i
)
7057 if (XParseColor (FRAME_X_DISPLAY (f
), FRAME_X_COLORMAP (f
),
7058 attrs
->colorsymbols
[i
].value
, &color
))
7060 color
.pixel
= lookup_rgb_color (f
, color
.red
, color
.green
,
7062 xpm_cache_color (f
, attrs
->colorsymbols
[i
].name
, &color
, -1);
7068 /* Free the color cache. */
7071 xpm_free_color_cache ()
7073 struct xpm_cached_color
*p
, *next
;
7076 for (i
= 0; i
< XPM_COLOR_CACHE_BUCKETS
; ++i
)
7077 for (p
= xpm_color_cache
[i
]; p
; p
= next
)
7083 xfree (xpm_color_cache
);
7084 xpm_color_cache
= NULL
;
7085 free_color_table ();
7089 /* Return the bucket index for color named COLOR_NAME in the color
7093 xpm_color_bucket (color_name
)
7099 for (s
= color_name
; *s
; ++s
)
7101 return h
%= XPM_COLOR_CACHE_BUCKETS
;
7105 /* On frame F, cache values COLOR for color with name COLOR_NAME.
7106 BUCKET, if >= 0, is a precomputed bucket index. Value is the cache
7109 static struct xpm_cached_color
*
7110 xpm_cache_color (f
, color_name
, color
, bucket
)
7117 struct xpm_cached_color
*p
;
7120 bucket
= xpm_color_bucket (color_name
);
7122 nbytes
= sizeof *p
+ strlen (color_name
);
7123 p
= (struct xpm_cached_color
*) xmalloc (nbytes
);
7124 strcpy (p
->name
, color_name
);
7126 p
->next
= xpm_color_cache
[bucket
];
7127 xpm_color_cache
[bucket
] = p
;
7132 /* Look up color COLOR_NAME for frame F in the color cache. If found,
7133 return the cached definition in *COLOR. Otherwise, make a new
7134 entry in the cache and allocate the color. Value is zero if color
7135 allocation failed. */
7138 xpm_lookup_color (f
, color_name
, color
)
7143 struct xpm_cached_color
*p
;
7144 int h
= xpm_color_bucket (color_name
);
7146 for (p
= xpm_color_cache
[h
]; p
; p
= p
->next
)
7147 if (strcmp (p
->name
, color_name
) == 0)
7152 else if (XParseColor (FRAME_X_DISPLAY (f
), FRAME_X_COLORMAP (f
),
7155 color
->pixel
= lookup_rgb_color (f
, color
->red
, color
->green
,
7157 p
= xpm_cache_color (f
, color_name
, color
, h
);
7164 /* Callback for allocating color COLOR_NAME. Called from the XPM lib.
7165 CLOSURE is a pointer to the frame on which we allocate the
7166 color. Return in *COLOR the allocated color. Value is non-zero
7170 xpm_alloc_color (dpy
, cmap
, color_name
, color
, closure
)
7177 return xpm_lookup_color ((struct frame
*) closure
, color_name
, color
);
7181 /* Callback for freeing NPIXELS colors contained in PIXELS. CLOSURE
7182 is a pointer to the frame on which we allocate the color. Value is
7183 non-zero if successful. */
7186 xpm_free_colors (dpy
, cmap
, pixels
, npixels
, closure
)
7196 #endif /* ALLOC_XPM_COLORS */
7199 /* Value is non-zero if COLOR_SYMBOLS is a valid color symbols list
7200 for XPM images. Such a list must consist of conses whose car and
7204 xpm_valid_color_symbols_p (color_symbols
)
7205 Lisp_Object color_symbols
;
7207 while (CONSP (color_symbols
))
7209 Lisp_Object sym
= XCAR (color_symbols
);
7211 || !STRINGP (XCAR (sym
))
7212 || !STRINGP (XCDR (sym
)))
7214 color_symbols
= XCDR (color_symbols
);
7217 return NILP (color_symbols
);
7221 /* Value is non-zero if OBJECT is a valid XPM image specification. */
7224 xpm_image_p (object
)
7227 struct image_keyword fmt
[XPM_LAST
];
7228 bcopy (xpm_format
, fmt
, sizeof fmt
);
7229 return (parse_image_spec (object
, fmt
, XPM_LAST
, Qxpm
)
7230 /* Either `:file' or `:data' must be present. */
7231 && fmt
[XPM_FILE
].count
+ fmt
[XPM_DATA
].count
== 1
7232 /* Either no `:color-symbols' or it's a list of conses
7233 whose car and cdr are strings. */
7234 && (fmt
[XPM_COLOR_SYMBOLS
].count
== 0
7235 || xpm_valid_color_symbols_p (fmt
[XPM_COLOR_SYMBOLS
].value
)));
7239 /* Load image IMG which will be displayed on frame F. Value is
7240 non-zero if successful. */
7248 XpmAttributes attrs
;
7249 Lisp_Object specified_file
, color_symbols
;
7251 /* Configure the XPM lib. Use the visual of frame F. Allocate
7252 close colors. Return colors allocated. */
7253 bzero (&attrs
, sizeof attrs
);
7254 attrs
.visual
= FRAME_X_VISUAL (f
);
7255 attrs
.colormap
= FRAME_X_COLORMAP (f
);
7256 attrs
.valuemask
|= XpmVisual
;
7257 attrs
.valuemask
|= XpmColormap
;
7259 #ifdef ALLOC_XPM_COLORS
7260 /* Allocate colors with our own functions which handle
7261 failing color allocation more gracefully. */
7262 attrs
.color_closure
= f
;
7263 attrs
.alloc_color
= xpm_alloc_color
;
7264 attrs
.free_colors
= xpm_free_colors
;
7265 attrs
.valuemask
|= XpmAllocColor
| XpmFreeColors
| XpmColorClosure
;
7266 #else /* not ALLOC_XPM_COLORS */
7267 /* Let the XPM lib allocate colors. */
7268 attrs
.valuemask
|= XpmReturnAllocPixels
;
7269 #ifdef XpmAllocCloseColors
7270 attrs
.alloc_close_colors
= 1;
7271 attrs
.valuemask
|= XpmAllocCloseColors
;
7272 #else /* not XpmAllocCloseColors */
7273 attrs
.closeness
= 600;
7274 attrs
.valuemask
|= XpmCloseness
;
7275 #endif /* not XpmAllocCloseColors */
7276 #endif /* ALLOC_XPM_COLORS */
7278 /* If image specification contains symbolic color definitions, add
7279 these to `attrs'. */
7280 color_symbols
= image_spec_value (img
->spec
, QCcolor_symbols
, NULL
);
7281 if (CONSP (color_symbols
))
7284 XpmColorSymbol
*xpm_syms
;
7287 attrs
.valuemask
|= XpmColorSymbols
;
7289 /* Count number of symbols. */
7290 attrs
.numsymbols
= 0;
7291 for (tail
= color_symbols
; CONSP (tail
); tail
= XCDR (tail
))
7294 /* Allocate an XpmColorSymbol array. */
7295 size
= attrs
.numsymbols
* sizeof *xpm_syms
;
7296 xpm_syms
= (XpmColorSymbol
*) alloca (size
);
7297 bzero (xpm_syms
, size
);
7298 attrs
.colorsymbols
= xpm_syms
;
7300 /* Fill the color symbol array. */
7301 for (tail
= color_symbols
, i
= 0;
7303 ++i
, tail
= XCDR (tail
))
7305 Lisp_Object name
= XCAR (XCAR (tail
));
7306 Lisp_Object color
= XCDR (XCAR (tail
));
7307 xpm_syms
[i
].name
= (char *) alloca (XSTRING (name
)->size
+ 1);
7308 strcpy (xpm_syms
[i
].name
, XSTRING (name
)->data
);
7309 xpm_syms
[i
].value
= (char *) alloca (XSTRING (color
)->size
+ 1);
7310 strcpy (xpm_syms
[i
].value
, XSTRING (color
)->data
);
7314 /* Create a pixmap for the image, either from a file, or from a
7315 string buffer containing data in the same format as an XPM file. */
7316 #ifdef ALLOC_XPM_COLORS
7317 xpm_init_color_cache (f
, &attrs
);
7320 specified_file
= image_spec_value (img
->spec
, QCfile
, NULL
);
7321 if (STRINGP (specified_file
))
7323 Lisp_Object file
= x_find_image_file (specified_file
);
7324 if (!STRINGP (file
))
7326 image_error ("Cannot find image file `%s'", specified_file
, Qnil
);
7330 rc
= XpmReadFileToPixmap (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
7331 XSTRING (file
)->data
, &img
->pixmap
, &img
->mask
,
7336 Lisp_Object buffer
= image_spec_value (img
->spec
, QCdata
, NULL
);
7337 rc
= XpmCreatePixmapFromBuffer (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
7338 XSTRING (buffer
)->data
,
7339 &img
->pixmap
, &img
->mask
,
7343 if (rc
== XpmSuccess
)
7345 #ifdef ALLOC_XPM_COLORS
7346 img
->colors
= colors_in_color_table (&img
->ncolors
);
7347 #else /* not ALLOC_XPM_COLORS */
7350 img
->ncolors
= attrs
.nalloc_pixels
;
7351 img
->colors
= (unsigned long *) xmalloc (img
->ncolors
7352 * sizeof *img
->colors
);
7353 for (i
= 0; i
< attrs
.nalloc_pixels
; ++i
)
7355 img
->colors
[i
] = attrs
.alloc_pixels
[i
];
7356 #ifdef DEBUG_X_COLORS
7357 register_color (img
->colors
[i
]);
7360 #endif /* not ALLOC_XPM_COLORS */
7362 img
->width
= attrs
.width
;
7363 img
->height
= attrs
.height
;
7364 xassert (img
->width
> 0 && img
->height
> 0);
7366 /* The call to XpmFreeAttributes below frees attrs.alloc_pixels. */
7367 XpmFreeAttributes (&attrs
);
7374 image_error ("Error opening XPM file (%s)", img
->spec
, Qnil
);
7377 case XpmFileInvalid
:
7378 image_error ("Invalid XPM file (%s)", img
->spec
, Qnil
);
7382 image_error ("Out of memory (%s)", img
->spec
, Qnil
);
7385 case XpmColorFailed
:
7386 image_error ("Color allocation error (%s)", img
->spec
, Qnil
);
7390 image_error ("Unknown error (%s)", img
->spec
, Qnil
);
7395 #ifdef ALLOC_XPM_COLORS
7396 xpm_free_color_cache ();
7398 return rc
== XpmSuccess
;
7401 #endif /* HAVE_XPM != 0 */
7404 /***********************************************************************
7406 ***********************************************************************/
7408 /* An entry in the color table mapping an RGB color to a pixel color. */
7413 unsigned long pixel
;
7415 /* Next in color table collision list. */
7416 struct ct_color
*next
;
7419 /* The bucket vector size to use. Must be prime. */
7423 /* Value is a hash of the RGB color given by R, G, and B. */
7425 #define CT_HASH_RGB(R, G, B) (((R) << 16) ^ ((G) << 8) ^ (B))
7427 /* The color hash table. */
7429 struct ct_color
**ct_table
;
7431 /* Number of entries in the color table. */
7433 int ct_colors_allocated
;
7435 /* Initialize the color table. */
7440 int size
= CT_SIZE
* sizeof (*ct_table
);
7441 ct_table
= (struct ct_color
**) xmalloc (size
);
7442 bzero (ct_table
, size
);
7443 ct_colors_allocated
= 0;
7447 /* Free memory associated with the color table. */
7453 struct ct_color
*p
, *next
;
7455 for (i
= 0; i
< CT_SIZE
; ++i
)
7456 for (p
= ct_table
[i
]; p
; p
= next
)
7467 /* Value is a pixel color for RGB color R, G, B on frame F. If an
7468 entry for that color already is in the color table, return the
7469 pixel color of that entry. Otherwise, allocate a new color for R,
7470 G, B, and make an entry in the color table. */
7472 static unsigned long
7473 lookup_rgb_color (f
, r
, g
, b
)
7477 unsigned hash
= CT_HASH_RGB (r
, g
, b
);
7478 int i
= hash
% CT_SIZE
;
7481 for (p
= ct_table
[i
]; p
; p
= p
->next
)
7482 if (p
->r
== r
&& p
->g
== g
&& p
->b
== b
)
7495 cmap
= FRAME_X_COLORMAP (f
);
7496 rc
= x_alloc_nearest_color (f
, cmap
, &color
);
7500 ++ct_colors_allocated
;
7502 p
= (struct ct_color
*) xmalloc (sizeof *p
);
7506 p
->pixel
= color
.pixel
;
7507 p
->next
= ct_table
[i
];
7511 return FRAME_FOREGROUND_PIXEL (f
);
7518 /* Look up pixel color PIXEL which is used on frame F in the color
7519 table. If not already present, allocate it. Value is PIXEL. */
7521 static unsigned long
7522 lookup_pixel_color (f
, pixel
)
7524 unsigned long pixel
;
7526 int i
= pixel
% CT_SIZE
;
7529 for (p
= ct_table
[i
]; p
; p
= p
->next
)
7530 if (p
->pixel
== pixel
)
7539 cmap
= FRAME_X_COLORMAP (f
);
7540 color
.pixel
= pixel
;
7541 x_query_color (f
, &color
);
7542 rc
= x_alloc_nearest_color (f
, cmap
, &color
);
7546 ++ct_colors_allocated
;
7548 p
= (struct ct_color
*) xmalloc (sizeof *p
);
7553 p
->next
= ct_table
[i
];
7557 return FRAME_FOREGROUND_PIXEL (f
);
7564 /* Value is a vector of all pixel colors contained in the color table,
7565 allocated via xmalloc. Set *N to the number of colors. */
7567 static unsigned long *
7568 colors_in_color_table (n
)
7573 unsigned long *colors
;
7575 if (ct_colors_allocated
== 0)
7582 colors
= (unsigned long *) xmalloc (ct_colors_allocated
7584 *n
= ct_colors_allocated
;
7586 for (i
= j
= 0; i
< CT_SIZE
; ++i
)
7587 for (p
= ct_table
[i
]; p
; p
= p
->next
)
7588 colors
[j
++] = p
->pixel
;
7596 /***********************************************************************
7598 ***********************************************************************/
7600 static void x_laplace_write_row
P_ ((struct frame
*, long *,
7601 int, XImage
*, int));
7602 static void x_laplace_read_row
P_ ((struct frame
*, Colormap
,
7603 XColor
*, int, XImage
*, int));
7604 static XColor
*x_to_xcolors
P_ ((struct frame
*, struct image
*, int));
7605 static void x_from_xcolors
P_ ((struct frame
*, struct image
*, XColor
*));
7606 static void x_detect_edges
P_ ((struct frame
*, struct image
*, int[9], int));
7608 /* Non-zero means draw a cross on images having `:conversion
7611 int cross_disabled_images
;
7613 /* Edge detection matrices for different edge-detection
7616 static int emboss_matrix
[9] = {
7618 2, -1, 0, /* y - 1 */
7620 0, 1, -2 /* y + 1 */
7623 static int laplace_matrix
[9] = {
7625 1, 0, 0, /* y - 1 */
7627 0, 0, -1 /* y + 1 */
7630 /* Value is the intensity of the color whose red/green/blue values
7633 #define COLOR_INTENSITY(R, G, B) ((2 * (R) + 3 * (G) + (B)) / 6)
7636 /* On frame F, return an array of XColor structures describing image
7637 IMG->pixmap. Each XColor structure has its pixel color set. RGB_P
7638 non-zero means also fill the red/green/blue members of the XColor
7639 structures. Value is a pointer to the array of XColors structures,
7640 allocated with xmalloc; it must be freed by the caller. */
7643 x_to_xcolors (f
, img
, rgb_p
)
7652 colors
= (XColor
*) xmalloc (img
->width
* img
->height
* sizeof *colors
);
7654 /* Get the X image IMG->pixmap. */
7655 ximg
= XGetImage (FRAME_X_DISPLAY (f
), img
->pixmap
,
7656 0, 0, img
->width
, img
->height
, ~0, ZPixmap
);
7658 /* Fill the `pixel' members of the XColor array. I wished there
7659 were an easy and portable way to circumvent XGetPixel. */
7661 for (y
= 0; y
< img
->height
; ++y
)
7665 for (x
= 0; x
< img
->width
; ++x
, ++p
)
7666 p
->pixel
= XGetPixel (ximg
, x
, y
);
7669 x_query_colors (f
, row
, img
->width
);
7672 XDestroyImage (ximg
);
7677 /* Create IMG->pixmap from an array COLORS of XColor structures, whose
7678 RGB members are set. F is the frame on which this all happens.
7679 COLORS will be freed; an existing IMG->pixmap will be freed, too. */
7682 x_from_xcolors (f
, img
, colors
)
7692 init_color_table ();
7694 x_create_x_image_and_pixmap (f
, img
->width
, img
->height
, 0,
7697 for (y
= 0; y
< img
->height
; ++y
)
7698 for (x
= 0; x
< img
->width
; ++x
, ++p
)
7700 unsigned long pixel
;
7701 pixel
= lookup_rgb_color (f
, p
->red
, p
->green
, p
->blue
);
7702 XPutPixel (oimg
, x
, y
, pixel
);
7706 x_clear_image_1 (f
, img
, 1, 0, 1);
7708 x_put_x_image (f
, oimg
, pixmap
, img
->width
, img
->height
);
7709 x_destroy_x_image (oimg
);
7710 img
->pixmap
= pixmap
;
7711 img
->colors
= colors_in_color_table (&img
->ncolors
);
7712 free_color_table ();
7716 /* On frame F, perform edge-detection on image IMG.
7718 MATRIX is a nine-element array specifying the transformation
7719 matrix. See emboss_matrix for an example.
7721 COLOR_ADJUST is a color adjustment added to each pixel of the
7725 x_detect_edges (f
, img
, matrix
, color_adjust
)
7728 int matrix
[9], color_adjust
;
7730 XColor
*colors
= x_to_xcolors (f
, img
, 1);
7734 for (i
= sum
= 0; i
< 9; ++i
)
7735 sum
+= abs (matrix
[i
]);
7737 #define COLOR(A, X, Y) ((A) + (Y) * img->width + (X))
7739 new = (XColor
*) xmalloc (img
->width
* img
->height
* sizeof *new);
7741 for (y
= 0; y
< img
->height
; ++y
)
7743 p
= COLOR (new, 0, y
);
7744 p
->red
= p
->green
= p
->blue
= 0xffff/2;
7745 p
= COLOR (new, img
->width
- 1, y
);
7746 p
->red
= p
->green
= p
->blue
= 0xffff/2;
7749 for (x
= 1; x
< img
->width
- 1; ++x
)
7751 p
= COLOR (new, x
, 0);
7752 p
->red
= p
->green
= p
->blue
= 0xffff/2;
7753 p
= COLOR (new, x
, img
->height
- 1);
7754 p
->red
= p
->green
= p
->blue
= 0xffff/2;
7757 for (y
= 1; y
< img
->height
- 1; ++y
)
7759 p
= COLOR (new, 1, y
);
7761 for (x
= 1; x
< img
->width
- 1; ++x
, ++p
)
7763 int r
, g
, b
, y1
, x1
;
7766 for (y1
= y
- 1; y1
< y
+ 2; ++y1
)
7767 for (x1
= x
- 1; x1
< x
+ 2; ++x1
, ++i
)
7770 XColor
*t
= COLOR (colors
, x1
, y1
);
7771 r
+= matrix
[i
] * t
->red
;
7772 g
+= matrix
[i
] * t
->green
;
7773 b
+= matrix
[i
] * t
->blue
;
7776 r
= (r
/ sum
+ color_adjust
) & 0xffff;
7777 g
= (g
/ sum
+ color_adjust
) & 0xffff;
7778 b
= (b
/ sum
+ color_adjust
) & 0xffff;
7779 p
->red
= p
->green
= p
->blue
= COLOR_INTENSITY (r
, g
, b
);
7784 x_from_xcolors (f
, img
, new);
7790 /* Perform the pre-defined `emboss' edge-detection on image IMG
7798 x_detect_edges (f
, img
, emboss_matrix
, 0xffff / 2);
7802 /* Perform the pre-defined `laplace' edge-detection on image IMG
7810 x_detect_edges (f
, img
, laplace_matrix
, 45000);
7814 /* Perform edge-detection on image IMG on frame F, with specified
7815 transformation matrix MATRIX and color-adjustment COLOR_ADJUST.
7817 MATRIX must be either
7819 - a list of at least 9 numbers in row-major form
7820 - a vector of at least 9 numbers
7822 COLOR_ADJUST nil means use a default; otherwise it must be a
7826 x_edge_detection (f
, img
, matrix
, color_adjust
)
7829 Lisp_Object matrix
, color_adjust
;
7837 i
< 9 && CONSP (matrix
) && NUMBERP (XCAR (matrix
));
7838 ++i
, matrix
= XCDR (matrix
))
7839 trans
[i
] = XFLOATINT (XCAR (matrix
));
7841 else if (VECTORP (matrix
) && ASIZE (matrix
) >= 9)
7843 for (i
= 0; i
< 9 && NUMBERP (AREF (matrix
, i
)); ++i
)
7844 trans
[i
] = XFLOATINT (AREF (matrix
, i
));
7847 if (NILP (color_adjust
))
7848 color_adjust
= make_number (0xffff / 2);
7850 if (i
== 9 && NUMBERP (color_adjust
))
7851 x_detect_edges (f
, img
, trans
, (int) XFLOATINT (color_adjust
));
7855 /* Transform image IMG on frame F so that it looks disabled. */
7858 x_disable_image (f
, img
)
7862 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
7864 if (dpyinfo
->n_planes
>= 2)
7866 /* Color (or grayscale). Convert to gray, and equalize. Just
7867 drawing such images with a stipple can look very odd, so
7868 we're using this method instead. */
7869 XColor
*colors
= x_to_xcolors (f
, img
, 1);
7871 const int h
= 15000;
7872 const int l
= 30000;
7874 for (p
= colors
, end
= colors
+ img
->width
* img
->height
;
7878 int i
= COLOR_INTENSITY (p
->red
, p
->green
, p
->blue
);
7879 int i2
= (0xffff - h
- l
) * i
/ 0xffff + l
;
7880 p
->red
= p
->green
= p
->blue
= i2
;
7883 x_from_xcolors (f
, img
, colors
);
7886 /* Draw a cross over the disabled image, if we must or if we
7888 if (dpyinfo
->n_planes
< 2 || cross_disabled_images
)
7890 Display
*dpy
= FRAME_X_DISPLAY (f
);
7893 gc
= XCreateGC (dpy
, img
->pixmap
, 0, NULL
);
7894 XSetForeground (dpy
, gc
, BLACK_PIX_DEFAULT (f
));
7895 XDrawLine (dpy
, img
->pixmap
, gc
, 0, 0,
7896 img
->width
- 1, img
->height
- 1);
7897 XDrawLine (dpy
, img
->pixmap
, gc
, 0, img
->height
- 1,
7903 gc
= XCreateGC (dpy
, img
->mask
, 0, NULL
);
7904 XSetForeground (dpy
, gc
, WHITE_PIX_DEFAULT (f
));
7905 XDrawLine (dpy
, img
->mask
, gc
, 0, 0,
7906 img
->width
- 1, img
->height
- 1);
7907 XDrawLine (dpy
, img
->mask
, gc
, 0, img
->height
- 1,
7915 /* Build a mask for image IMG which is used on frame F. FILE is the
7916 name of an image file, for error messages. HOW determines how to
7917 determine the background color of IMG. If it is a list '(R G B)',
7918 with R, G, and B being integers >= 0, take that as the color of the
7919 background. Otherwise, determine the background color of IMG
7920 heuristically. Value is non-zero if successful. */
7923 x_build_heuristic_mask (f
, img
, how
)
7928 Display
*dpy
= FRAME_X_DISPLAY (f
);
7929 XImage
*ximg
, *mask_img
;
7930 int x
, y
, rc
, look_at_corners_p
;
7931 unsigned long bg
= 0;
7935 XFreePixmap (FRAME_X_DISPLAY (f
), img
->mask
);
7939 /* Create an image and pixmap serving as mask. */
7940 rc
= x_create_x_image_and_pixmap (f
, img
->width
, img
->height
, 1,
7941 &mask_img
, &img
->mask
);
7945 /* Get the X image of IMG->pixmap. */
7946 ximg
= XGetImage (dpy
, img
->pixmap
, 0, 0, img
->width
, img
->height
,
7949 /* Determine the background color of ximg. If HOW is `(R G B)'
7950 take that as color. Otherwise, try to determine the color
7952 look_at_corners_p
= 1;
7960 && NATNUMP (XCAR (how
)))
7962 rgb
[i
] = XFASTINT (XCAR (how
)) & 0xffff;
7966 if (i
== 3 && NILP (how
))
7968 char color_name
[30];
7969 XColor exact
, color
;
7972 sprintf (color_name
, "#%04x%04x%04x", rgb
[0], rgb
[1], rgb
[2]);
7974 cmap
= FRAME_X_COLORMAP (f
);
7975 if (XLookupColor (dpy
, cmap
, color_name
, &exact
, &color
))
7978 look_at_corners_p
= 0;
7983 if (look_at_corners_p
)
7985 unsigned long corners
[4];
7988 /* Get the colors at the corners of ximg. */
7989 corners
[0] = XGetPixel (ximg
, 0, 0);
7990 corners
[1] = XGetPixel (ximg
, img
->width
- 1, 0);
7991 corners
[2] = XGetPixel (ximg
, img
->width
- 1, img
->height
- 1);
7992 corners
[3] = XGetPixel (ximg
, 0, img
->height
- 1);
7994 /* Choose the most frequently found color as background. */
7995 for (i
= best_count
= 0; i
< 4; ++i
)
7999 for (j
= n
= 0; j
< 4; ++j
)
8000 if (corners
[i
] == corners
[j
])
8004 bg
= corners
[i
], best_count
= n
;
8008 /* Set all bits in mask_img to 1 whose color in ximg is different
8009 from the background color bg. */
8010 for (y
= 0; y
< img
->height
; ++y
)
8011 for (x
= 0; x
< img
->width
; ++x
)
8012 XPutPixel (mask_img
, x
, y
, XGetPixel (ximg
, x
, y
) != bg
);
8014 /* Put mask_img into img->mask. */
8015 x_put_x_image (f
, mask_img
, img
->mask
, img
->width
, img
->height
);
8016 x_destroy_x_image (mask_img
);
8017 XDestroyImage (ximg
);
8024 /***********************************************************************
8025 PBM (mono, gray, color)
8026 ***********************************************************************/
8028 static int pbm_image_p
P_ ((Lisp_Object object
));
8029 static int pbm_load
P_ ((struct frame
*f
, struct image
*img
));
8030 static int pbm_scan_number
P_ ((unsigned char **, unsigned char *));
8032 /* The symbol `pbm' identifying images of this type. */
8036 /* Indices of image specification fields in gs_format, below. */
8038 enum pbm_keyword_index
8054 /* Vector of image_keyword structures describing the format
8055 of valid user-defined image specifications. */
8057 static struct image_keyword pbm_format
[PBM_LAST
] =
8059 {":type", IMAGE_SYMBOL_VALUE
, 1},
8060 {":file", IMAGE_STRING_VALUE
, 0},
8061 {":data", IMAGE_STRING_VALUE
, 0},
8062 {":ascent", IMAGE_ASCENT_VALUE
, 0},
8063 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR
, 0},
8064 {":relief", IMAGE_INTEGER_VALUE
, 0},
8065 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
8066 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
8067 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
8068 {":foreground", IMAGE_STRING_VALUE
, 0},
8069 {":background", IMAGE_STRING_VALUE
, 0}
8072 /* Structure describing the image type `pbm'. */
8074 static struct image_type pbm_type
=
8084 /* Return non-zero if OBJECT is a valid PBM image specification. */
8087 pbm_image_p (object
)
8090 struct image_keyword fmt
[PBM_LAST
];
8092 bcopy (pbm_format
, fmt
, sizeof fmt
);
8094 if (!parse_image_spec (object
, fmt
, PBM_LAST
, Qpbm
))
8097 /* Must specify either :data or :file. */
8098 return fmt
[PBM_DATA
].count
+ fmt
[PBM_FILE
].count
== 1;
8102 /* Scan a decimal number from *S and return it. Advance *S while
8103 reading the number. END is the end of the string. Value is -1 at
8107 pbm_scan_number (s
, end
)
8108 unsigned char **s
, *end
;
8110 int c
= 0, val
= -1;
8114 /* Skip white-space. */
8115 while (*s
< end
&& (c
= *(*s
)++, isspace (c
)))
8120 /* Skip comment to end of line. */
8121 while (*s
< end
&& (c
= *(*s
)++, c
!= '\n'))
8124 else if (isdigit (c
))
8126 /* Read decimal number. */
8128 while (*s
< end
&& (c
= *(*s
)++, isdigit (c
)))
8129 val
= 10 * val
+ c
- '0';
8140 /* Load PBM image IMG for use on frame F. */
8148 int width
, height
, max_color_idx
= 0;
8150 Lisp_Object file
, specified_file
;
8151 enum {PBM_MONO
, PBM_GRAY
, PBM_COLOR
} type
;
8152 struct gcpro gcpro1
;
8153 unsigned char *contents
= NULL
;
8154 unsigned char *end
, *p
;
8157 specified_file
= image_spec_value (img
->spec
, QCfile
, NULL
);
8161 if (STRINGP (specified_file
))
8163 file
= x_find_image_file (specified_file
);
8164 if (!STRINGP (file
))
8166 image_error ("Cannot find image file `%s'", specified_file
, Qnil
);
8171 contents
= slurp_file (XSTRING (file
)->data
, &size
);
8172 if (contents
== NULL
)
8174 image_error ("Error reading `%s'", file
, Qnil
);
8180 end
= contents
+ size
;
8185 data
= image_spec_value (img
->spec
, QCdata
, NULL
);
8186 p
= XSTRING (data
)->data
;
8187 end
= p
+ STRING_BYTES (XSTRING (data
));
8190 /* Check magic number. */
8191 if (end
- p
< 2 || *p
++ != 'P')
8193 image_error ("Not a PBM image: `%s'", img
->spec
, Qnil
);
8203 raw_p
= 0, type
= PBM_MONO
;
8207 raw_p
= 0, type
= PBM_GRAY
;
8211 raw_p
= 0, type
= PBM_COLOR
;
8215 raw_p
= 1, type
= PBM_MONO
;
8219 raw_p
= 1, type
= PBM_GRAY
;
8223 raw_p
= 1, type
= PBM_COLOR
;
8227 image_error ("Not a PBM image: `%s'", img
->spec
, Qnil
);
8231 /* Read width, height, maximum color-component. Characters
8232 starting with `#' up to the end of a line are ignored. */
8233 width
= pbm_scan_number (&p
, end
);
8234 height
= pbm_scan_number (&p
, end
);
8236 if (type
!= PBM_MONO
)
8238 max_color_idx
= pbm_scan_number (&p
, end
);
8239 if (raw_p
&& max_color_idx
> 255)
8240 max_color_idx
= 255;
8245 || (type
!= PBM_MONO
&& max_color_idx
< 0))
8248 if (!x_create_x_image_and_pixmap (f
, width
, height
, 0,
8249 &ximg
, &img
->pixmap
))
8252 /* Initialize the color hash table. */
8253 init_color_table ();
8255 if (type
== PBM_MONO
)
8258 struct image_keyword fmt
[PBM_LAST
];
8259 unsigned long fg
= FRAME_FOREGROUND_PIXEL (f
);
8260 unsigned long bg
= FRAME_BACKGROUND_PIXEL (f
);
8262 /* Parse the image specification. */
8263 bcopy (pbm_format
, fmt
, sizeof fmt
);
8264 parse_image_spec (img
->spec
, fmt
, PBM_LAST
, Qpbm
);
8266 /* Get foreground and background colors, maybe allocate colors. */
8267 if (fmt
[PBM_FOREGROUND
].count
)
8268 fg
= x_alloc_image_color (f
, img
, fmt
[PBM_FOREGROUND
].value
, fg
);
8269 if (fmt
[PBM_BACKGROUND
].count
)
8270 bg
= x_alloc_image_color (f
, img
, fmt
[PBM_BACKGROUND
].value
, bg
);
8272 for (y
= 0; y
< height
; ++y
)
8273 for (x
= 0; x
< width
; ++x
)
8283 g
= pbm_scan_number (&p
, end
);
8285 XPutPixel (ximg
, x
, y
, g
? fg
: bg
);
8290 for (y
= 0; y
< height
; ++y
)
8291 for (x
= 0; x
< width
; ++x
)
8295 if (type
== PBM_GRAY
)
8296 r
= g
= b
= raw_p
? *p
++ : pbm_scan_number (&p
, end
);
8305 r
= pbm_scan_number (&p
, end
);
8306 g
= pbm_scan_number (&p
, end
);
8307 b
= pbm_scan_number (&p
, end
);
8310 if (r
< 0 || g
< 0 || b
< 0)
8314 XDestroyImage (ximg
);
8315 image_error ("Invalid pixel value in image `%s'",
8320 /* RGB values are now in the range 0..max_color_idx.
8321 Scale this to the range 0..0xffff supported by X. */
8322 r
= (double) r
* 65535 / max_color_idx
;
8323 g
= (double) g
* 65535 / max_color_idx
;
8324 b
= (double) b
* 65535 / max_color_idx
;
8325 XPutPixel (ximg
, x
, y
, lookup_rgb_color (f
, r
, g
, b
));
8329 /* Store in IMG->colors the colors allocated for the image, and
8330 free the color table. */
8331 img
->colors
= colors_in_color_table (&img
->ncolors
);
8332 free_color_table ();
8334 /* Put the image into a pixmap. */
8335 x_put_x_image (f
, ximg
, img
->pixmap
, width
, height
);
8336 x_destroy_x_image (ximg
);
8339 img
->height
= height
;
8348 /***********************************************************************
8350 ***********************************************************************/
8356 /* Function prototypes. */
8358 static int png_image_p
P_ ((Lisp_Object object
));
8359 static int png_load
P_ ((struct frame
*f
, struct image
*img
));
8361 /* The symbol `png' identifying images of this type. */
8365 /* Indices of image specification fields in png_format, below. */
8367 enum png_keyword_index
8381 /* Vector of image_keyword structures describing the format
8382 of valid user-defined image specifications. */
8384 static struct image_keyword png_format
[PNG_LAST
] =
8386 {":type", IMAGE_SYMBOL_VALUE
, 1},
8387 {":data", IMAGE_STRING_VALUE
, 0},
8388 {":file", IMAGE_STRING_VALUE
, 0},
8389 {":ascent", IMAGE_ASCENT_VALUE
, 0},
8390 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR
, 0},
8391 {":relief", IMAGE_INTEGER_VALUE
, 0},
8392 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
8393 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
8394 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0}
8397 /* Structure describing the image type `png'. */
8399 static struct image_type png_type
=
8409 /* Return non-zero if OBJECT is a valid PNG image specification. */
8412 png_image_p (object
)
8415 struct image_keyword fmt
[PNG_LAST
];
8416 bcopy (png_format
, fmt
, sizeof fmt
);
8418 if (!parse_image_spec (object
, fmt
, PNG_LAST
, Qpng
))
8421 /* Must specify either the :data or :file keyword. */
8422 return fmt
[PNG_FILE
].count
+ fmt
[PNG_DATA
].count
== 1;
8426 /* Error and warning handlers installed when the PNG library
8430 my_png_error (png_ptr
, msg
)
8431 png_struct
*png_ptr
;
8434 xassert (png_ptr
!= NULL
);
8435 image_error ("PNG error: %s", build_string (msg
), Qnil
);
8436 longjmp (png_ptr
->jmpbuf
, 1);
8441 my_png_warning (png_ptr
, msg
)
8442 png_struct
*png_ptr
;
8445 xassert (png_ptr
!= NULL
);
8446 image_error ("PNG warning: %s", build_string (msg
), Qnil
);
8449 /* Memory source for PNG decoding. */
8451 struct png_memory_storage
8453 unsigned char *bytes
; /* The data */
8454 size_t len
; /* How big is it? */
8455 int index
; /* Where are we? */
8459 /* Function set as reader function when reading PNG image from memory.
8460 PNG_PTR is a pointer to the PNG control structure. Copy LENGTH
8461 bytes from the input to DATA. */
8464 png_read_from_memory (png_ptr
, data
, length
)
8465 png_structp png_ptr
;
8469 struct png_memory_storage
*tbr
8470 = (struct png_memory_storage
*) png_get_io_ptr (png_ptr
);
8472 if (length
> tbr
->len
- tbr
->index
)
8473 png_error (png_ptr
, "Read error");
8475 bcopy (tbr
->bytes
+ tbr
->index
, data
, length
);
8476 tbr
->index
= tbr
->index
+ length
;
8479 /* Load PNG image IMG for use on frame F. Value is non-zero if
8487 Lisp_Object file
, specified_file
;
8488 Lisp_Object specified_data
;
8490 XImage
*ximg
, *mask_img
= NULL
;
8491 struct gcpro gcpro1
;
8492 png_struct
*png_ptr
= NULL
;
8493 png_info
*info_ptr
= NULL
, *end_info
= NULL
;
8494 FILE *volatile fp
= NULL
;
8496 png_byte
* volatile pixels
= NULL
;
8497 png_byte
** volatile rows
= NULL
;
8498 png_uint_32 width
, height
;
8499 int bit_depth
, color_type
, interlace_type
;
8501 png_uint_32 row_bytes
;
8504 double screen_gamma
, image_gamma
;
8506 struct png_memory_storage tbr
; /* Data to be read */
8508 /* Find out what file to load. */
8509 specified_file
= image_spec_value (img
->spec
, QCfile
, NULL
);
8510 specified_data
= image_spec_value (img
->spec
, QCdata
, NULL
);
8514 if (NILP (specified_data
))
8516 file
= x_find_image_file (specified_file
);
8517 if (!STRINGP (file
))
8519 image_error ("Cannot find image file `%s'", specified_file
, Qnil
);
8524 /* Open the image file. */
8525 fp
= fopen (XSTRING (file
)->data
, "rb");
8528 image_error ("Cannot open image file `%s'", file
, Qnil
);
8534 /* Check PNG signature. */
8535 if (fread (sig
, 1, sizeof sig
, fp
) != sizeof sig
8536 || !png_check_sig (sig
, sizeof sig
))
8538 image_error ("Not a PNG file: `%s'", file
, Qnil
);
8546 /* Read from memory. */
8547 tbr
.bytes
= XSTRING (specified_data
)->data
;
8548 tbr
.len
= STRING_BYTES (XSTRING (specified_data
));
8551 /* Check PNG signature. */
8552 if (tbr
.len
< sizeof sig
8553 || !png_check_sig (tbr
.bytes
, sizeof sig
))
8555 image_error ("Not a PNG image: `%s'", img
->spec
, Qnil
);
8560 /* Need to skip past the signature. */
8561 tbr
.bytes
+= sizeof (sig
);
8564 /* Initialize read and info structs for PNG lib. */
8565 png_ptr
= png_create_read_struct (PNG_LIBPNG_VER_STRING
, NULL
,
8566 my_png_error
, my_png_warning
);
8569 if (fp
) fclose (fp
);
8574 info_ptr
= png_create_info_struct (png_ptr
);
8577 png_destroy_read_struct (&png_ptr
, NULL
, NULL
);
8578 if (fp
) fclose (fp
);
8583 end_info
= png_create_info_struct (png_ptr
);
8586 png_destroy_read_struct (&png_ptr
, &info_ptr
, NULL
);
8587 if (fp
) fclose (fp
);
8592 /* Set error jump-back. We come back here when the PNG library
8593 detects an error. */
8594 if (setjmp (png_ptr
->jmpbuf
))
8598 png_destroy_read_struct (&png_ptr
, &info_ptr
, &end_info
);
8601 if (fp
) fclose (fp
);
8606 /* Read image info. */
8607 if (!NILP (specified_data
))
8608 png_set_read_fn (png_ptr
, (void *) &tbr
, png_read_from_memory
);
8610 png_init_io (png_ptr
, fp
);
8612 png_set_sig_bytes (png_ptr
, sizeof sig
);
8613 png_read_info (png_ptr
, info_ptr
);
8614 png_get_IHDR (png_ptr
, info_ptr
, &width
, &height
, &bit_depth
, &color_type
,
8615 &interlace_type
, NULL
, NULL
);
8617 /* If image contains simply transparency data, we prefer to
8618 construct a clipping mask. */
8619 if (png_get_valid (png_ptr
, info_ptr
, PNG_INFO_tRNS
))
8624 /* This function is easier to write if we only have to handle
8625 one data format: RGB or RGBA with 8 bits per channel. Let's
8626 transform other formats into that format. */
8628 /* Strip more than 8 bits per channel. */
8629 if (bit_depth
== 16)
8630 png_set_strip_16 (png_ptr
);
8632 /* Expand data to 24 bit RGB, or 8 bit grayscale, with alpha channel
8634 png_set_expand (png_ptr
);
8636 /* Convert grayscale images to RGB. */
8637 if (color_type
== PNG_COLOR_TYPE_GRAY
8638 || color_type
== PNG_COLOR_TYPE_GRAY_ALPHA
)
8639 png_set_gray_to_rgb (png_ptr
);
8641 /* The value 2.2 is a guess for PC monitors from PNG example.c. */
8642 gamma_str
= getenv ("SCREEN_GAMMA");
8643 screen_gamma
= gamma_str
? atof (gamma_str
) : 2.2;
8645 /* Tell the PNG lib to handle gamma correction for us. */
8647 #if defined(PNG_READ_sRGB_SUPPORTED) || defined(PNG_WRITE_sRGB_SUPPORTED)
8648 if (png_get_sRGB (png_ptr
, info_ptr
, &intent
))
8649 /* There is a special chunk in the image specifying the gamma. */
8650 png_set_sRGB (png_ptr
, info_ptr
, intent
);
8653 if (png_get_gAMA (png_ptr
, info_ptr
, &image_gamma
))
8654 /* Image contains gamma information. */
8655 png_set_gamma (png_ptr
, screen_gamma
, image_gamma
);
8657 /* Use a default of 0.5 for the image gamma. */
8658 png_set_gamma (png_ptr
, screen_gamma
, 0.5);
8660 /* Handle alpha channel by combining the image with a background
8661 color. Do this only if a real alpha channel is supplied. For
8662 simple transparency, we prefer a clipping mask. */
8665 png_color_16
*image_background
;
8667 if (png_get_bKGD (png_ptr
, info_ptr
, &image_background
))
8668 /* Image contains a background color with which to
8669 combine the image. */
8670 png_set_background (png_ptr
, image_background
,
8671 PNG_BACKGROUND_GAMMA_FILE
, 1, 1.0);
8674 /* Image does not contain a background color with which
8675 to combine the image data via an alpha channel. Use
8676 the frame's background instead. */
8679 png_color_16 frame_background
;
8681 cmap
= FRAME_X_COLORMAP (f
);
8682 color
.pixel
= FRAME_BACKGROUND_PIXEL (f
);
8683 x_query_color (f
, &color
);
8685 bzero (&frame_background
, sizeof frame_background
);
8686 frame_background
.red
= color
.red
;
8687 frame_background
.green
= color
.green
;
8688 frame_background
.blue
= color
.blue
;
8690 png_set_background (png_ptr
, &frame_background
,
8691 PNG_BACKGROUND_GAMMA_SCREEN
, 0, 1.0);
8695 /* Update info structure. */
8696 png_read_update_info (png_ptr
, info_ptr
);
8698 /* Get number of channels. Valid values are 1 for grayscale images
8699 and images with a palette, 2 for grayscale images with transparency
8700 information (alpha channel), 3 for RGB images, and 4 for RGB
8701 images with alpha channel, i.e. RGBA. If conversions above were
8702 sufficient we should only have 3 or 4 channels here. */
8703 channels
= png_get_channels (png_ptr
, info_ptr
);
8704 xassert (channels
== 3 || channels
== 4);
8706 /* Number of bytes needed for one row of the image. */
8707 row_bytes
= png_get_rowbytes (png_ptr
, info_ptr
);
8709 /* Allocate memory for the image. */
8710 pixels
= (png_byte
*) xmalloc (row_bytes
* height
* sizeof *pixels
);
8711 rows
= (png_byte
**) xmalloc (height
* sizeof *rows
);
8712 for (i
= 0; i
< height
; ++i
)
8713 rows
[i
] = pixels
+ i
* row_bytes
;
8715 /* Read the entire image. */
8716 png_read_image (png_ptr
, rows
);
8717 png_read_end (png_ptr
, info_ptr
);
8724 /* Create the X image and pixmap. */
8725 if (!x_create_x_image_and_pixmap (f
, width
, height
, 0, &ximg
,
8729 /* Create an image and pixmap serving as mask if the PNG image
8730 contains an alpha channel. */
8733 && !x_create_x_image_and_pixmap (f
, width
, height
, 1,
8734 &mask_img
, &img
->mask
))
8736 x_destroy_x_image (ximg
);
8737 XFreePixmap (FRAME_X_DISPLAY (f
), img
->pixmap
);
8742 /* Fill the X image and mask from PNG data. */
8743 init_color_table ();
8745 for (y
= 0; y
< height
; ++y
)
8747 png_byte
*p
= rows
[y
];
8749 for (x
= 0; x
< width
; ++x
)
8756 XPutPixel (ximg
, x
, y
, lookup_rgb_color (f
, r
, g
, b
));
8758 /* An alpha channel, aka mask channel, associates variable
8759 transparency with an image. Where other image formats
8760 support binary transparency---fully transparent or fully
8761 opaque---PNG allows up to 254 levels of partial transparency.
8762 The PNG library implements partial transparency by combining
8763 the image with a specified background color.
8765 I'm not sure how to handle this here nicely: because the
8766 background on which the image is displayed may change, for
8767 real alpha channel support, it would be necessary to create
8768 a new image for each possible background.
8770 What I'm doing now is that a mask is created if we have
8771 boolean transparency information. Otherwise I'm using
8772 the frame's background color to combine the image with. */
8777 XPutPixel (mask_img
, x
, y
, *p
> 0);
8783 /* Remember colors allocated for this image. */
8784 img
->colors
= colors_in_color_table (&img
->ncolors
);
8785 free_color_table ();
8788 png_destroy_read_struct (&png_ptr
, &info_ptr
, &end_info
);
8793 img
->height
= height
;
8795 /* Put the image into the pixmap, then free the X image and its buffer. */
8796 x_put_x_image (f
, ximg
, img
->pixmap
, width
, height
);
8797 x_destroy_x_image (ximg
);
8799 /* Same for the mask. */
8802 x_put_x_image (f
, mask_img
, img
->mask
, img
->width
, img
->height
);
8803 x_destroy_x_image (mask_img
);
8810 #endif /* HAVE_PNG != 0 */
8814 /***********************************************************************
8816 ***********************************************************************/
8820 /* Work around a warning about HAVE_STDLIB_H being redefined in
8822 #ifdef HAVE_STDLIB_H
8823 #define HAVE_STDLIB_H_1
8824 #undef HAVE_STDLIB_H
8825 #endif /* HAVE_STLIB_H */
8827 #include <jpeglib.h>
8831 #ifdef HAVE_STLIB_H_1
8832 #define HAVE_STDLIB_H 1
8835 static int jpeg_image_p
P_ ((Lisp_Object object
));
8836 static int jpeg_load
P_ ((struct frame
*f
, struct image
*img
));
8838 /* The symbol `jpeg' identifying images of this type. */
8842 /* Indices of image specification fields in gs_format, below. */
8844 enum jpeg_keyword_index
8853 JPEG_HEURISTIC_MASK
,
8858 /* Vector of image_keyword structures describing the format
8859 of valid user-defined image specifications. */
8861 static struct image_keyword jpeg_format
[JPEG_LAST
] =
8863 {":type", IMAGE_SYMBOL_VALUE
, 1},
8864 {":data", IMAGE_STRING_VALUE
, 0},
8865 {":file", IMAGE_STRING_VALUE
, 0},
8866 {":ascent", IMAGE_ASCENT_VALUE
, 0},
8867 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR
, 0},
8868 {":relief", IMAGE_INTEGER_VALUE
, 0},
8869 {":conversions", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
8870 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
8871 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0}
8874 /* Structure describing the image type `jpeg'. */
8876 static struct image_type jpeg_type
=
8886 /* Return non-zero if OBJECT is a valid JPEG image specification. */
8889 jpeg_image_p (object
)
8892 struct image_keyword fmt
[JPEG_LAST
];
8894 bcopy (jpeg_format
, fmt
, sizeof fmt
);
8896 if (!parse_image_spec (object
, fmt
, JPEG_LAST
, Qjpeg
))
8899 /* Must specify either the :data or :file keyword. */
8900 return fmt
[JPEG_FILE
].count
+ fmt
[JPEG_DATA
].count
== 1;
8904 struct my_jpeg_error_mgr
8906 struct jpeg_error_mgr pub
;
8907 jmp_buf setjmp_buffer
;
8912 my_error_exit (cinfo
)
8915 struct my_jpeg_error_mgr
*mgr
= (struct my_jpeg_error_mgr
*) cinfo
->err
;
8916 longjmp (mgr
->setjmp_buffer
, 1);
8920 /* Init source method for JPEG data source manager. Called by
8921 jpeg_read_header() before any data is actually read. See
8922 libjpeg.doc from the JPEG lib distribution. */
8925 our_init_source (cinfo
)
8926 j_decompress_ptr cinfo
;
8931 /* Fill input buffer method for JPEG data source manager. Called
8932 whenever more data is needed. We read the whole image in one step,
8933 so this only adds a fake end of input marker at the end. */
8936 our_fill_input_buffer (cinfo
)
8937 j_decompress_ptr cinfo
;
8939 /* Insert a fake EOI marker. */
8940 struct jpeg_source_mgr
*src
= cinfo
->src
;
8941 static JOCTET buffer
[2];
8943 buffer
[0] = (JOCTET
) 0xFF;
8944 buffer
[1] = (JOCTET
) JPEG_EOI
;
8946 src
->next_input_byte
= buffer
;
8947 src
->bytes_in_buffer
= 2;
8952 /* Method to skip over NUM_BYTES bytes in the image data. CINFO->src
8953 is the JPEG data source manager. */
8956 our_skip_input_data (cinfo
, num_bytes
)
8957 j_decompress_ptr cinfo
;
8960 struct jpeg_source_mgr
*src
= (struct jpeg_source_mgr
*) cinfo
->src
;
8964 if (num_bytes
> src
->bytes_in_buffer
)
8965 ERREXIT (cinfo
, JERR_INPUT_EOF
);
8967 src
->bytes_in_buffer
-= num_bytes
;
8968 src
->next_input_byte
+= num_bytes
;
8973 /* Method to terminate data source. Called by
8974 jpeg_finish_decompress() after all data has been processed. */
8977 our_term_source (cinfo
)
8978 j_decompress_ptr cinfo
;
8983 /* Set up the JPEG lib for reading an image from DATA which contains
8984 LEN bytes. CINFO is the decompression info structure created for
8985 reading the image. */
8988 jpeg_memory_src (cinfo
, data
, len
)
8989 j_decompress_ptr cinfo
;
8993 struct jpeg_source_mgr
*src
;
8995 if (cinfo
->src
== NULL
)
8997 /* First time for this JPEG object? */
8998 cinfo
->src
= (struct jpeg_source_mgr
*)
8999 (*cinfo
->mem
->alloc_small
) ((j_common_ptr
) cinfo
, JPOOL_PERMANENT
,
9000 sizeof (struct jpeg_source_mgr
));
9001 src
= (struct jpeg_source_mgr
*) cinfo
->src
;
9002 src
->next_input_byte
= data
;
9005 src
= (struct jpeg_source_mgr
*) cinfo
->src
;
9006 src
->init_source
= our_init_source
;
9007 src
->fill_input_buffer
= our_fill_input_buffer
;
9008 src
->skip_input_data
= our_skip_input_data
;
9009 src
->resync_to_restart
= jpeg_resync_to_restart
; /* Use default method. */
9010 src
->term_source
= our_term_source
;
9011 src
->bytes_in_buffer
= len
;
9012 src
->next_input_byte
= data
;
9016 /* Load image IMG for use on frame F. Patterned after example.c
9017 from the JPEG lib. */
9024 struct jpeg_decompress_struct cinfo
;
9025 struct my_jpeg_error_mgr mgr
;
9026 Lisp_Object file
, specified_file
;
9027 Lisp_Object specified_data
;
9028 FILE * volatile fp
= NULL
;
9030 int row_stride
, x
, y
;
9031 XImage
*ximg
= NULL
;
9033 unsigned long *colors
;
9035 struct gcpro gcpro1
;
9037 /* Open the JPEG file. */
9038 specified_file
= image_spec_value (img
->spec
, QCfile
, NULL
);
9039 specified_data
= image_spec_value (img
->spec
, QCdata
, NULL
);
9043 if (NILP (specified_data
))
9045 file
= x_find_image_file (specified_file
);
9046 if (!STRINGP (file
))
9048 image_error ("Cannot find image file `%s'", specified_file
, Qnil
);
9053 fp
= fopen (XSTRING (file
)->data
, "r");
9056 image_error ("Cannot open `%s'", file
, Qnil
);
9062 /* Customize libjpeg's error handling to call my_error_exit when an
9063 error is detected. This function will perform a longjmp. */
9064 cinfo
.err
= jpeg_std_error (&mgr
.pub
);
9065 mgr
.pub
.error_exit
= my_error_exit
;
9067 if ((rc
= setjmp (mgr
.setjmp_buffer
)) != 0)
9071 /* Called from my_error_exit. Display a JPEG error. */
9072 char buffer
[JMSG_LENGTH_MAX
];
9073 cinfo
.err
->format_message ((j_common_ptr
) &cinfo
, buffer
);
9074 image_error ("Error reading JPEG image `%s': %s", img
->spec
,
9075 build_string (buffer
));
9078 /* Close the input file and destroy the JPEG object. */
9080 fclose ((FILE *) fp
);
9081 jpeg_destroy_decompress (&cinfo
);
9083 /* If we already have an XImage, free that. */
9084 x_destroy_x_image (ximg
);
9086 /* Free pixmap and colors. */
9087 x_clear_image (f
, img
);
9093 /* Create the JPEG decompression object. Let it read from fp.
9094 Read the JPEG image header. */
9095 jpeg_create_decompress (&cinfo
);
9097 if (NILP (specified_data
))
9098 jpeg_stdio_src (&cinfo
, (FILE *) fp
);
9100 jpeg_memory_src (&cinfo
, XSTRING (specified_data
)->data
,
9101 STRING_BYTES (XSTRING (specified_data
)));
9103 jpeg_read_header (&cinfo
, TRUE
);
9105 /* Customize decompression so that color quantization will be used.
9106 Start decompression. */
9107 cinfo
.quantize_colors
= TRUE
;
9108 jpeg_start_decompress (&cinfo
);
9109 width
= img
->width
= cinfo
.output_width
;
9110 height
= img
->height
= cinfo
.output_height
;
9112 /* Create X image and pixmap. */
9113 if (!x_create_x_image_and_pixmap (f
, width
, height
, 0, &ximg
, &img
->pixmap
))
9114 longjmp (mgr
.setjmp_buffer
, 2);
9116 /* Allocate colors. When color quantization is used,
9117 cinfo.actual_number_of_colors has been set with the number of
9118 colors generated, and cinfo.colormap is a two-dimensional array
9119 of color indices in the range 0..cinfo.actual_number_of_colors.
9120 No more than 255 colors will be generated. */
9124 if (cinfo
.out_color_components
> 2)
9125 ir
= 0, ig
= 1, ib
= 2;
9126 else if (cinfo
.out_color_components
> 1)
9127 ir
= 0, ig
= 1, ib
= 0;
9129 ir
= 0, ig
= 0, ib
= 0;
9131 /* Use the color table mechanism because it handles colors that
9132 cannot be allocated nicely. Such colors will be replaced with
9133 a default color, and we don't have to care about which colors
9134 can be freed safely, and which can't. */
9135 init_color_table ();
9136 colors
= (unsigned long *) alloca (cinfo
.actual_number_of_colors
9139 for (i
= 0; i
< cinfo
.actual_number_of_colors
; ++i
)
9141 /* Multiply RGB values with 255 because X expects RGB values
9142 in the range 0..0xffff. */
9143 int r
= cinfo
.colormap
[ir
][i
] << 8;
9144 int g
= cinfo
.colormap
[ig
][i
] << 8;
9145 int b
= cinfo
.colormap
[ib
][i
] << 8;
9146 colors
[i
] = lookup_rgb_color (f
, r
, g
, b
);
9149 /* Remember those colors actually allocated. */
9150 img
->colors
= colors_in_color_table (&img
->ncolors
);
9151 free_color_table ();
9155 row_stride
= width
* cinfo
.output_components
;
9156 buffer
= cinfo
.mem
->alloc_sarray ((j_common_ptr
) &cinfo
, JPOOL_IMAGE
,
9158 for (y
= 0; y
< height
; ++y
)
9160 jpeg_read_scanlines (&cinfo
, buffer
, 1);
9161 for (x
= 0; x
< cinfo
.output_width
; ++x
)
9162 XPutPixel (ximg
, x
, y
, colors
[buffer
[0][x
]]);
9166 jpeg_finish_decompress (&cinfo
);
9167 jpeg_destroy_decompress (&cinfo
);
9169 fclose ((FILE *) fp
);
9171 /* Put the image into the pixmap. */
9172 x_put_x_image (f
, ximg
, img
->pixmap
, width
, height
);
9173 x_destroy_x_image (ximg
);
9178 #endif /* HAVE_JPEG */
9182 /***********************************************************************
9184 ***********************************************************************/
9190 static int tiff_image_p
P_ ((Lisp_Object object
));
9191 static int tiff_load
P_ ((struct frame
*f
, struct image
*img
));
9193 /* The symbol `tiff' identifying images of this type. */
9197 /* Indices of image specification fields in tiff_format, below. */
9199 enum tiff_keyword_index
9208 TIFF_HEURISTIC_MASK
,
9213 /* Vector of image_keyword structures describing the format
9214 of valid user-defined image specifications. */
9216 static struct image_keyword tiff_format
[TIFF_LAST
] =
9218 {":type", IMAGE_SYMBOL_VALUE
, 1},
9219 {":data", IMAGE_STRING_VALUE
, 0},
9220 {":file", IMAGE_STRING_VALUE
, 0},
9221 {":ascent", IMAGE_ASCENT_VALUE
, 0},
9222 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR
, 0},
9223 {":relief", IMAGE_INTEGER_VALUE
, 0},
9224 {":conversions", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
9225 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
9226 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0}
9229 /* Structure describing the image type `tiff'. */
9231 static struct image_type tiff_type
=
9241 /* Return non-zero if OBJECT is a valid TIFF image specification. */
9244 tiff_image_p (object
)
9247 struct image_keyword fmt
[TIFF_LAST
];
9248 bcopy (tiff_format
, fmt
, sizeof fmt
);
9250 if (!parse_image_spec (object
, fmt
, TIFF_LAST
, Qtiff
))
9253 /* Must specify either the :data or :file keyword. */
9254 return fmt
[TIFF_FILE
].count
+ fmt
[TIFF_DATA
].count
== 1;
9258 /* Reading from a memory buffer for TIFF images Based on the PNG
9259 memory source, but we have to provide a lot of extra functions.
9262 We really only need to implement read and seek, but I am not
9263 convinced that the TIFF library is smart enough not to destroy
9264 itself if we only hand it the function pointers we need to
9269 unsigned char *bytes
;
9277 tiff_read_from_memory (data
, buf
, size
)
9282 tiff_memory_source
*src
= (tiff_memory_source
*) data
;
9284 if (size
> src
->len
- src
->index
)
9286 bcopy (src
->bytes
+ src
->index
, buf
, size
);
9293 tiff_write_from_memory (data
, buf
, size
)
9303 tiff_seek_in_memory (data
, off
, whence
)
9308 tiff_memory_source
*src
= (tiff_memory_source
*) data
;
9313 case SEEK_SET
: /* Go from beginning of source. */
9317 case SEEK_END
: /* Go from end of source. */
9318 idx
= src
->len
+ off
;
9321 case SEEK_CUR
: /* Go from current position. */
9322 idx
= src
->index
+ off
;
9325 default: /* Invalid `whence'. */
9329 if (idx
> src
->len
|| idx
< 0)
9338 tiff_close_memory (data
)
9347 tiff_mmap_memory (data
, pbase
, psize
)
9352 /* It is already _IN_ memory. */
9358 tiff_unmap_memory (data
, base
, size
)
9363 /* We don't need to do this. */
9368 tiff_size_of_memory (data
)
9371 return ((tiff_memory_source
*) data
)->len
;
9375 /* Load TIFF image IMG for use on frame F. Value is non-zero if
9383 Lisp_Object file
, specified_file
;
9384 Lisp_Object specified_data
;
9386 int width
, height
, x
, y
;
9390 struct gcpro gcpro1
;
9391 tiff_memory_source memsrc
;
9393 specified_file
= image_spec_value (img
->spec
, QCfile
, NULL
);
9394 specified_data
= image_spec_value (img
->spec
, QCdata
, NULL
);
9398 if (NILP (specified_data
))
9400 /* Read from a file */
9401 file
= x_find_image_file (specified_file
);
9402 if (!STRINGP (file
))
9404 image_error ("Cannot find image file `%s'", file
, Qnil
);
9409 /* Try to open the image file. */
9410 tiff
= TIFFOpen (XSTRING (file
)->data
, "r");
9413 image_error ("Cannot open `%s'", file
, Qnil
);
9420 /* Memory source! */
9421 memsrc
.bytes
= XSTRING (specified_data
)->data
;
9422 memsrc
.len
= STRING_BYTES (XSTRING (specified_data
));
9425 tiff
= TIFFClientOpen ("memory_source", "r", &memsrc
,
9426 (TIFFReadWriteProc
) tiff_read_from_memory
,
9427 (TIFFReadWriteProc
) tiff_write_from_memory
,
9428 tiff_seek_in_memory
,
9430 tiff_size_of_memory
,
9436 image_error ("Cannot open memory source for `%s'", img
->spec
, Qnil
);
9442 /* Get width and height of the image, and allocate a raster buffer
9443 of width x height 32-bit values. */
9444 TIFFGetField (tiff
, TIFFTAG_IMAGEWIDTH
, &width
);
9445 TIFFGetField (tiff
, TIFFTAG_IMAGELENGTH
, &height
);
9446 buf
= (uint32
*) xmalloc (width
* height
* sizeof *buf
);
9448 rc
= TIFFReadRGBAImage (tiff
, width
, height
, buf
, 0);
9452 image_error ("Error reading TIFF image `%s'", img
->spec
, Qnil
);
9458 /* Create the X image and pixmap. */
9459 if (!x_create_x_image_and_pixmap (f
, width
, height
, 0, &ximg
, &img
->pixmap
))
9466 /* Initialize the color table. */
9467 init_color_table ();
9469 /* Process the pixel raster. Origin is in the lower-left corner. */
9470 for (y
= 0; y
< height
; ++y
)
9472 uint32
*row
= buf
+ y
* width
;
9474 for (x
= 0; x
< width
; ++x
)
9476 uint32 abgr
= row
[x
];
9477 int r
= TIFFGetR (abgr
) << 8;
9478 int g
= TIFFGetG (abgr
) << 8;
9479 int b
= TIFFGetB (abgr
) << 8;
9480 XPutPixel (ximg
, x
, height
- 1 - y
, lookup_rgb_color (f
, r
, g
, b
));
9484 /* Remember the colors allocated for the image. Free the color table. */
9485 img
->colors
= colors_in_color_table (&img
->ncolors
);
9486 free_color_table ();
9488 /* Put the image into the pixmap, then free the X image and its buffer. */
9489 x_put_x_image (f
, ximg
, img
->pixmap
, width
, height
);
9490 x_destroy_x_image (ximg
);
9494 img
->height
= height
;
9500 #endif /* HAVE_TIFF != 0 */
9504 /***********************************************************************
9506 ***********************************************************************/
9510 #include <gif_lib.h>
9512 static int gif_image_p
P_ ((Lisp_Object object
));
9513 static int gif_load
P_ ((struct frame
*f
, struct image
*img
));
9515 /* The symbol `gif' identifying images of this type. */
9519 /* Indices of image specification fields in gif_format, below. */
9521 enum gif_keyword_index
9536 /* Vector of image_keyword structures describing the format
9537 of valid user-defined image specifications. */
9539 static struct image_keyword gif_format
[GIF_LAST
] =
9541 {":type", IMAGE_SYMBOL_VALUE
, 1},
9542 {":data", IMAGE_STRING_VALUE
, 0},
9543 {":file", IMAGE_STRING_VALUE
, 0},
9544 {":ascent", IMAGE_ASCENT_VALUE
, 0},
9545 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR
, 0},
9546 {":relief", IMAGE_INTEGER_VALUE
, 0},
9547 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
9548 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
9549 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
9550 {":image", IMAGE_NON_NEGATIVE_INTEGER_VALUE
, 0}
9553 /* Structure describing the image type `gif'. */
9555 static struct image_type gif_type
=
9565 /* Return non-zero if OBJECT is a valid GIF image specification. */
9568 gif_image_p (object
)
9571 struct image_keyword fmt
[GIF_LAST
];
9572 bcopy (gif_format
, fmt
, sizeof fmt
);
9574 if (!parse_image_spec (object
, fmt
, GIF_LAST
, Qgif
))
9577 /* Must specify either the :data or :file keyword. */
9578 return fmt
[GIF_FILE
].count
+ fmt
[GIF_DATA
].count
== 1;
9582 /* Reading a GIF image from memory
9583 Based on the PNG memory stuff to a certain extent. */
9587 unsigned char *bytes
;
9594 /* Make the current memory source available to gif_read_from_memory.
9595 It's done this way because not all versions of libungif support
9596 a UserData field in the GifFileType structure. */
9597 static gif_memory_source
*current_gif_memory_src
;
9600 gif_read_from_memory (file
, buf
, len
)
9605 gif_memory_source
*src
= current_gif_memory_src
;
9607 if (len
> src
->len
- src
->index
)
9610 bcopy (src
->bytes
+ src
->index
, buf
, len
);
9616 /* Load GIF image IMG for use on frame F. Value is non-zero if
9624 Lisp_Object file
, specified_file
;
9625 Lisp_Object specified_data
;
9626 int rc
, width
, height
, x
, y
, i
;
9628 ColorMapObject
*gif_color_map
;
9629 unsigned long pixel_colors
[256];
9631 struct gcpro gcpro1
;
9633 int ino
, image_left
, image_top
, image_width
, image_height
;
9634 gif_memory_source memsrc
;
9635 unsigned char *raster
;
9637 specified_file
= image_spec_value (img
->spec
, QCfile
, NULL
);
9638 specified_data
= image_spec_value (img
->spec
, QCdata
, NULL
);
9642 if (NILP (specified_data
))
9644 file
= x_find_image_file (specified_file
);
9645 if (!STRINGP (file
))
9647 image_error ("Cannot find image file `%s'", specified_file
, Qnil
);
9652 /* Open the GIF file. */
9653 gif
= DGifOpenFileName (XSTRING (file
)->data
);
9656 image_error ("Cannot open `%s'", file
, Qnil
);
9663 /* Read from memory! */
9664 current_gif_memory_src
= &memsrc
;
9665 memsrc
.bytes
= XSTRING (specified_data
)->data
;
9666 memsrc
.len
= STRING_BYTES (XSTRING (specified_data
));
9669 gif
= DGifOpen(&memsrc
, gif_read_from_memory
);
9672 image_error ("Cannot open memory source `%s'", img
->spec
, Qnil
);
9678 /* Read entire contents. */
9679 rc
= DGifSlurp (gif
);
9680 if (rc
== GIF_ERROR
)
9682 image_error ("Error reading `%s'", img
->spec
, Qnil
);
9683 DGifCloseFile (gif
);
9688 image
= image_spec_value (img
->spec
, QCindex
, NULL
);
9689 ino
= INTEGERP (image
) ? XFASTINT (image
) : 0;
9690 if (ino
>= gif
->ImageCount
)
9692 image_error ("Invalid image number `%s' in image `%s'",
9694 DGifCloseFile (gif
);
9699 width
= img
->width
= gif
->SWidth
;
9700 height
= img
->height
= gif
->SHeight
;
9702 /* Create the X image and pixmap. */
9703 if (!x_create_x_image_and_pixmap (f
, width
, height
, 0, &ximg
, &img
->pixmap
))
9705 DGifCloseFile (gif
);
9710 /* Allocate colors. */
9711 gif_color_map
= gif
->SavedImages
[ino
].ImageDesc
.ColorMap
;
9713 gif_color_map
= gif
->SColorMap
;
9714 init_color_table ();
9715 bzero (pixel_colors
, sizeof pixel_colors
);
9717 for (i
= 0; i
< gif_color_map
->ColorCount
; ++i
)
9719 int r
= gif_color_map
->Colors
[i
].Red
<< 8;
9720 int g
= gif_color_map
->Colors
[i
].Green
<< 8;
9721 int b
= gif_color_map
->Colors
[i
].Blue
<< 8;
9722 pixel_colors
[i
] = lookup_rgb_color (f
, r
, g
, b
);
9725 img
->colors
= colors_in_color_table (&img
->ncolors
);
9726 free_color_table ();
9728 /* Clear the part of the screen image that are not covered by
9729 the image from the GIF file. Full animated GIF support
9730 requires more than can be done here (see the gif89 spec,
9731 disposal methods). Let's simply assume that the part
9732 not covered by a sub-image is in the frame's background color. */
9733 image_top
= gif
->SavedImages
[ino
].ImageDesc
.Top
;
9734 image_left
= gif
->SavedImages
[ino
].ImageDesc
.Left
;
9735 image_width
= gif
->SavedImages
[ino
].ImageDesc
.Width
;
9736 image_height
= gif
->SavedImages
[ino
].ImageDesc
.Height
;
9738 for (y
= 0; y
< image_top
; ++y
)
9739 for (x
= 0; x
< width
; ++x
)
9740 XPutPixel (ximg
, x
, y
, FRAME_BACKGROUND_PIXEL (f
));
9742 for (y
= image_top
+ image_height
; y
< height
; ++y
)
9743 for (x
= 0; x
< width
; ++x
)
9744 XPutPixel (ximg
, x
, y
, FRAME_BACKGROUND_PIXEL (f
));
9746 for (y
= image_top
; y
< image_top
+ image_height
; ++y
)
9748 for (x
= 0; x
< image_left
; ++x
)
9749 XPutPixel (ximg
, x
, y
, FRAME_BACKGROUND_PIXEL (f
));
9750 for (x
= image_left
+ image_width
; x
< width
; ++x
)
9751 XPutPixel (ximg
, x
, y
, FRAME_BACKGROUND_PIXEL (f
));
9754 /* Read the GIF image into the X image. We use a local variable
9755 `raster' here because RasterBits below is a char *, and invites
9756 problems with bytes >= 0x80. */
9757 raster
= (unsigned char *) gif
->SavedImages
[ino
].RasterBits
;
9759 if (gif
->SavedImages
[ino
].ImageDesc
.Interlace
)
9761 static int interlace_start
[] = {0, 4, 2, 1};
9762 static int interlace_increment
[] = {8, 8, 4, 2};
9764 int row
= interlace_start
[0];
9768 for (y
= 0; y
< image_height
; y
++)
9770 if (row
>= image_height
)
9772 row
= interlace_start
[++pass
];
9773 while (row
>= image_height
)
9774 row
= interlace_start
[++pass
];
9777 for (x
= 0; x
< image_width
; x
++)
9779 int i
= raster
[(y
* image_width
) + x
];
9780 XPutPixel (ximg
, x
+ image_left
, row
+ image_top
,
9784 row
+= interlace_increment
[pass
];
9789 for (y
= 0; y
< image_height
; ++y
)
9790 for (x
= 0; x
< image_width
; ++x
)
9792 int i
= raster
[y
* image_width
+ x
];
9793 XPutPixel (ximg
, x
+ image_left
, y
+ image_top
, pixel_colors
[i
]);
9797 DGifCloseFile (gif
);
9799 /* Put the image into the pixmap, then free the X image and its buffer. */
9800 x_put_x_image (f
, ximg
, img
->pixmap
, width
, height
);
9801 x_destroy_x_image (ximg
);
9807 #endif /* HAVE_GIF != 0 */
9811 /***********************************************************************
9813 ***********************************************************************/
9815 static int gs_image_p
P_ ((Lisp_Object object
));
9816 static int gs_load
P_ ((struct frame
*f
, struct image
*img
));
9817 static void gs_clear_image
P_ ((struct frame
*f
, struct image
*img
));
9819 /* The symbol `postscript' identifying images of this type. */
9821 Lisp_Object Qpostscript
;
9823 /* Keyword symbols. */
9825 Lisp_Object QCloader
, QCbounding_box
, QCpt_width
, QCpt_height
;
9827 /* Indices of image specification fields in gs_format, below. */
9829 enum gs_keyword_index
9846 /* Vector of image_keyword structures describing the format
9847 of valid user-defined image specifications. */
9849 static struct image_keyword gs_format
[GS_LAST
] =
9851 {":type", IMAGE_SYMBOL_VALUE
, 1},
9852 {":pt-width", IMAGE_POSITIVE_INTEGER_VALUE
, 1},
9853 {":pt-height", IMAGE_POSITIVE_INTEGER_VALUE
, 1},
9854 {":file", IMAGE_STRING_VALUE
, 1},
9855 {":loader", IMAGE_FUNCTION_VALUE
, 0},
9856 {":bounding-box", IMAGE_DONT_CHECK_VALUE_TYPE
, 1},
9857 {":ascent", IMAGE_ASCENT_VALUE
, 0},
9858 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR
, 0},
9859 {":relief", IMAGE_INTEGER_VALUE
, 0},
9860 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
9861 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
9862 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0}
9865 /* Structure describing the image type `ghostscript'. */
9867 static struct image_type gs_type
=
9877 /* Free X resources of Ghostscript image IMG which is used on frame F. */
9880 gs_clear_image (f
, img
)
9884 /* IMG->data.ptr_val may contain a recorded colormap. */
9885 xfree (img
->data
.ptr_val
);
9886 x_clear_image (f
, img
);
9890 /* Return non-zero if OBJECT is a valid Ghostscript image
9897 struct image_keyword fmt
[GS_LAST
];
9901 bcopy (gs_format
, fmt
, sizeof fmt
);
9903 if (!parse_image_spec (object
, fmt
, GS_LAST
, Qpostscript
))
9906 /* Bounding box must be a list or vector containing 4 integers. */
9907 tem
= fmt
[GS_BOUNDING_BOX
].value
;
9910 for (i
= 0; i
< 4; ++i
, tem
= XCDR (tem
))
9911 if (!CONSP (tem
) || !INTEGERP (XCAR (tem
)))
9916 else if (VECTORP (tem
))
9918 if (XVECTOR (tem
)->size
!= 4)
9920 for (i
= 0; i
< 4; ++i
)
9921 if (!INTEGERP (XVECTOR (tem
)->contents
[i
]))
9931 /* Load Ghostscript image IMG for use on frame F. Value is non-zero
9940 Lisp_Object window_and_pixmap_id
= Qnil
, loader
, pt_height
, pt_width
;
9941 struct gcpro gcpro1
, gcpro2
;
9943 double in_width
, in_height
;
9944 Lisp_Object pixel_colors
= Qnil
;
9946 /* Compute pixel size of pixmap needed from the given size in the
9947 image specification. Sizes in the specification are in pt. 1 pt
9948 = 1/72 in, xdpi and ydpi are stored in the frame's X display
9950 pt_width
= image_spec_value (img
->spec
, QCpt_width
, NULL
);
9951 in_width
= XFASTINT (pt_width
) / 72.0;
9952 img
->width
= in_width
* FRAME_X_DISPLAY_INFO (f
)->resx
;
9953 pt_height
= image_spec_value (img
->spec
, QCpt_height
, NULL
);
9954 in_height
= XFASTINT (pt_height
) / 72.0;
9955 img
->height
= in_height
* FRAME_X_DISPLAY_INFO (f
)->resy
;
9957 /* Create the pixmap. */
9958 xassert (img
->pixmap
== None
);
9959 img
->pixmap
= XCreatePixmap (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
9960 img
->width
, img
->height
,
9961 DefaultDepthOfScreen (FRAME_X_SCREEN (f
)));
9965 image_error ("Unable to create pixmap for `%s'", img
->spec
, Qnil
);
9969 /* Call the loader to fill the pixmap. It returns a process object
9970 if successful. We do not record_unwind_protect here because
9971 other places in redisplay like calling window scroll functions
9972 don't either. Let the Lisp loader use `unwind-protect' instead. */
9973 GCPRO2 (window_and_pixmap_id
, pixel_colors
);
9975 sprintf (buffer
, "%lu %lu",
9976 (unsigned long) FRAME_X_WINDOW (f
),
9977 (unsigned long) img
->pixmap
);
9978 window_and_pixmap_id
= build_string (buffer
);
9980 sprintf (buffer
, "%lu %lu",
9981 FRAME_FOREGROUND_PIXEL (f
),
9982 FRAME_BACKGROUND_PIXEL (f
));
9983 pixel_colors
= build_string (buffer
);
9985 XSETFRAME (frame
, f
);
9986 loader
= image_spec_value (img
->spec
, QCloader
, NULL
);
9988 loader
= intern ("gs-load-image");
9990 img
->data
.lisp_val
= call6 (loader
, frame
, img
->spec
,
9991 make_number (img
->width
),
9992 make_number (img
->height
),
9993 window_and_pixmap_id
,
9996 return PROCESSP (img
->data
.lisp_val
);
10000 /* Kill the Ghostscript process that was started to fill PIXMAP on
10001 frame F. Called from XTread_socket when receiving an event
10002 telling Emacs that Ghostscript has finished drawing. */
10005 x_kill_gs_process (pixmap
, f
)
10009 struct image_cache
*c
= FRAME_X_IMAGE_CACHE (f
);
10013 /* Find the image containing PIXMAP. */
10014 for (i
= 0; i
< c
->used
; ++i
)
10015 if (c
->images
[i
]->pixmap
== pixmap
)
10018 /* Kill the GS process. We should have found PIXMAP in the image
10019 cache and its image should contain a process object. */
10020 xassert (i
< c
->used
);
10021 img
= c
->images
[i
];
10022 xassert (PROCESSP (img
->data
.lisp_val
));
10023 Fkill_process (img
->data
.lisp_val
, Qnil
);
10024 img
->data
.lisp_val
= Qnil
;
10026 /* On displays with a mutable colormap, figure out the colors
10027 allocated for the image by looking at the pixels of an XImage for
10029 class = FRAME_X_VISUAL (f
)->class;
10030 if (class != StaticColor
&& class != StaticGray
&& class != TrueColor
)
10036 /* Try to get an XImage for img->pixmep. */
10037 ximg
= XGetImage (FRAME_X_DISPLAY (f
), img
->pixmap
,
10038 0, 0, img
->width
, img
->height
, ~0, ZPixmap
);
10043 /* Initialize the color table. */
10044 init_color_table ();
10046 /* For each pixel of the image, look its color up in the
10047 color table. After having done so, the color table will
10048 contain an entry for each color used by the image. */
10049 for (y
= 0; y
< img
->height
; ++y
)
10050 for (x
= 0; x
< img
->width
; ++x
)
10052 unsigned long pixel
= XGetPixel (ximg
, x
, y
);
10053 lookup_pixel_color (f
, pixel
);
10056 /* Record colors in the image. Free color table and XImage. */
10057 img
->colors
= colors_in_color_table (&img
->ncolors
);
10058 free_color_table ();
10059 XDestroyImage (ximg
);
10061 #if 0 /* This doesn't seem to be the case. If we free the colors
10062 here, we get a BadAccess later in x_clear_image when
10063 freeing the colors. */
10064 /* We have allocated colors once, but Ghostscript has also
10065 allocated colors on behalf of us. So, to get the
10066 reference counts right, free them once. */
10068 x_free_colors (f
, img
->colors
, img
->ncolors
);
10072 image_error ("Cannot get X image of `%s'; colors will not be freed",
10081 /***********************************************************************
10083 ***********************************************************************/
10085 DEFUN ("x-change-window-property", Fx_change_window_property
,
10086 Sx_change_window_property
, 2, 3, 0,
10087 "Change window property PROP to VALUE on the X window of FRAME.\n\
10088 PROP and VALUE must be strings. FRAME nil or omitted means use the\n\
10089 selected frame. Value is VALUE.")
10090 (prop
, value
, frame
)
10091 Lisp_Object frame
, prop
, value
;
10093 struct frame
*f
= check_x_frame (frame
);
10096 CHECK_STRING (prop
, 1);
10097 CHECK_STRING (value
, 2);
10100 prop_atom
= XInternAtom (FRAME_X_DISPLAY (f
), XSTRING (prop
)->data
, False
);
10101 XChangeProperty (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
10102 prop_atom
, XA_STRING
, 8, PropModeReplace
,
10103 XSTRING (value
)->data
, XSTRING (value
)->size
);
10105 /* Make sure the property is set when we return. */
10106 XFlush (FRAME_X_DISPLAY (f
));
10113 DEFUN ("x-delete-window-property", Fx_delete_window_property
,
10114 Sx_delete_window_property
, 1, 2, 0,
10115 "Remove window property PROP from X window of FRAME.\n\
10116 FRAME nil or omitted means use the selected frame. Value is PROP.")
10118 Lisp_Object prop
, frame
;
10120 struct frame
*f
= check_x_frame (frame
);
10123 CHECK_STRING (prop
, 1);
10125 prop_atom
= XInternAtom (FRAME_X_DISPLAY (f
), XSTRING (prop
)->data
, False
);
10126 XDeleteProperty (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), prop_atom
);
10128 /* Make sure the property is removed when we return. */
10129 XFlush (FRAME_X_DISPLAY (f
));
10136 DEFUN ("x-window-property", Fx_window_property
, Sx_window_property
,
10138 "Value is the value of window property PROP on FRAME.\n\
10139 If FRAME is nil or omitted, use the selected frame. Value is nil\n\
10140 if FRAME hasn't a property with name PROP or if PROP has no string\n\
10143 Lisp_Object prop
, frame
;
10145 struct frame
*f
= check_x_frame (frame
);
10148 Lisp_Object prop_value
= Qnil
;
10149 char *tmp_data
= NULL
;
10152 unsigned long actual_size
, bytes_remaining
;
10154 CHECK_STRING (prop
, 1);
10156 prop_atom
= XInternAtom (FRAME_X_DISPLAY (f
), XSTRING (prop
)->data
, False
);
10157 rc
= XGetWindowProperty (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
10158 prop_atom
, 0, 0, False
, XA_STRING
,
10159 &actual_type
, &actual_format
, &actual_size
,
10160 &bytes_remaining
, (unsigned char **) &tmp_data
);
10163 int size
= bytes_remaining
;
10168 rc
= XGetWindowProperty (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
10169 prop_atom
, 0, bytes_remaining
,
10171 &actual_type
, &actual_format
,
10172 &actual_size
, &bytes_remaining
,
10173 (unsigned char **) &tmp_data
);
10175 prop_value
= make_string (tmp_data
, size
);
10186 /***********************************************************************
10188 ***********************************************************************/
10190 /* If non-null, an asynchronous timer that, when it expires, displays
10191 a busy cursor on all frames. */
10193 static struct atimer
*busy_cursor_atimer
;
10195 /* Non-zero means a busy cursor is currently shown. */
10197 static int busy_cursor_shown_p
;
10199 /* Number of seconds to wait before displaying a busy cursor. */
10201 static Lisp_Object Vbusy_cursor_delay
;
10203 /* Default number of seconds to wait before displaying a busy
10206 #define DEFAULT_BUSY_CURSOR_DELAY 1
10208 /* Function prototypes. */
10210 static void show_busy_cursor
P_ ((struct atimer
*));
10211 static void hide_busy_cursor
P_ ((void));
10214 /* Cancel a currently active busy-cursor timer, and start a new one. */
10217 start_busy_cursor ()
10220 int secs
, usecs
= 0;
10222 cancel_busy_cursor ();
10224 if (INTEGERP (Vbusy_cursor_delay
)
10225 && XINT (Vbusy_cursor_delay
) > 0)
10226 secs
= XFASTINT (Vbusy_cursor_delay
);
10227 else if (FLOATP (Vbusy_cursor_delay
)
10228 && XFLOAT_DATA (Vbusy_cursor_delay
) > 0)
10231 tem
= Ftruncate (Vbusy_cursor_delay
, Qnil
);
10232 secs
= XFASTINT (tem
);
10233 usecs
= (XFLOAT_DATA (Vbusy_cursor_delay
) - secs
) * 1000000;
10236 secs
= DEFAULT_BUSY_CURSOR_DELAY
;
10238 EMACS_SET_SECS_USECS (delay
, secs
, usecs
);
10239 busy_cursor_atimer
= start_atimer (ATIMER_RELATIVE
, delay
,
10240 show_busy_cursor
, NULL
);
10244 /* Cancel the busy cursor timer if active, hide a busy cursor if
10248 cancel_busy_cursor ()
10250 if (busy_cursor_atimer
)
10252 cancel_atimer (busy_cursor_atimer
);
10253 busy_cursor_atimer
= NULL
;
10256 if (busy_cursor_shown_p
)
10257 hide_busy_cursor ();
10261 /* Timer function of busy_cursor_atimer. TIMER is equal to
10262 busy_cursor_atimer.
10264 Display a busy cursor on all frames by mapping the frames'
10265 busy_window. Set the busy_p flag in the frames' output_data.x
10266 structure to indicate that a busy cursor is shown on the
10270 show_busy_cursor (timer
)
10271 struct atimer
*timer
;
10273 /* The timer implementation will cancel this timer automatically
10274 after this function has run. Set busy_cursor_atimer to null
10275 so that we know the timer doesn't have to be canceled. */
10276 busy_cursor_atimer
= NULL
;
10278 if (!busy_cursor_shown_p
)
10280 Lisp_Object rest
, frame
;
10284 FOR_EACH_FRAME (rest
, frame
)
10286 struct frame
*f
= XFRAME (frame
);
10288 if (FRAME_LIVE_P (f
) && FRAME_X_P (f
) && FRAME_X_DISPLAY (f
))
10290 Display
*dpy
= FRAME_X_DISPLAY (f
);
10292 #ifdef USE_X_TOOLKIT
10293 if (f
->output_data
.x
->widget
)
10295 if (FRAME_OUTER_WINDOW (f
))
10298 f
->output_data
.x
->busy_p
= 1;
10300 if (!f
->output_data
.x
->busy_window
)
10302 unsigned long mask
= CWCursor
;
10303 XSetWindowAttributes attrs
;
10305 attrs
.cursor
= f
->output_data
.x
->busy_cursor
;
10307 f
->output_data
.x
->busy_window
10308 = XCreateWindow (dpy
, FRAME_OUTER_WINDOW (f
),
10309 0, 0, 32000, 32000, 0, 0,
10315 XMapRaised (dpy
, f
->output_data
.x
->busy_window
);
10321 busy_cursor_shown_p
= 1;
10327 /* Hide the busy cursor on all frames, if it is currently shown. */
10330 hide_busy_cursor ()
10332 if (busy_cursor_shown_p
)
10334 Lisp_Object rest
, frame
;
10337 FOR_EACH_FRAME (rest
, frame
)
10339 struct frame
*f
= XFRAME (frame
);
10342 /* Watch out for newly created frames. */
10343 && f
->output_data
.x
->busy_window
)
10345 XUnmapWindow (FRAME_X_DISPLAY (f
), f
->output_data
.x
->busy_window
);
10346 /* Sync here because XTread_socket looks at the busy_p flag
10347 that is reset to zero below. */
10348 XSync (FRAME_X_DISPLAY (f
), False
);
10349 f
->output_data
.x
->busy_p
= 0;
10353 busy_cursor_shown_p
= 0;
10360 /***********************************************************************
10362 ***********************************************************************/
10364 static Lisp_Object x_create_tip_frame
P_ ((struct x_display_info
*,
10366 static void compute_tip_xy
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
,
10367 Lisp_Object
, int *, int *));
10369 /* The frame of a currently visible tooltip. */
10371 Lisp_Object tip_frame
;
10373 /* If non-nil, a timer started that hides the last tooltip when it
10376 Lisp_Object tip_timer
;
10379 /* If non-nil, a vector of 3 elements containing the last args
10380 with which x-show-tip was called. See there. */
10382 Lisp_Object last_show_tip_args
;
10386 unwind_create_tip_frame (frame
)
10389 Lisp_Object deleted
;
10391 deleted
= unwind_create_frame (frame
);
10392 if (EQ (deleted
, Qt
))
10402 /* Create a frame for a tooltip on the display described by DPYINFO.
10403 PARMS is a list of frame parameters. Value is the frame.
10405 Note that functions called here, esp. x_default_parameter can
10406 signal errors, for instance when a specified color name is
10407 undefined. We have to make sure that we're in a consistent state
10408 when this happens. */
10411 x_create_tip_frame (dpyinfo
, parms
)
10412 struct x_display_info
*dpyinfo
;
10416 Lisp_Object frame
, tem
;
10418 long window_prompting
= 0;
10420 int count
= BINDING_STACK_SIZE ();
10421 struct gcpro gcpro1
, gcpro2
, gcpro3
;
10423 int face_change_count_before
= face_change_count
;
10427 /* Use this general default value to start with until we know if
10428 this frame has a specified name. */
10429 Vx_resource_name
= Vinvocation_name
;
10431 #ifdef MULTI_KBOARD
10432 kb
= dpyinfo
->kboard
;
10434 kb
= &the_only_kboard
;
10437 /* Get the name of the frame to use for resource lookup. */
10438 name
= x_get_arg (dpyinfo
, parms
, Qname
, "name", "Name", RES_TYPE_STRING
);
10439 if (!STRINGP (name
)
10440 && !EQ (name
, Qunbound
)
10442 error ("Invalid frame name--not a string or nil");
10443 Vx_resource_name
= name
;
10446 GCPRO3 (parms
, name
, frame
);
10447 f
= make_frame (1);
10448 XSETFRAME (frame
, f
);
10449 FRAME_CAN_HAVE_SCROLL_BARS (f
) = 0;
10450 record_unwind_protect (unwind_create_tip_frame
, frame
);
10452 /* By setting the output method, we're essentially saying that
10453 the frame is live, as per FRAME_LIVE_P. If we get a signal
10454 from this point on, x_destroy_window might screw up reference
10456 f
->output_method
= output_x_window
;
10457 f
->output_data
.x
= (struct x_output
*) xmalloc (sizeof (struct x_output
));
10458 bzero (f
->output_data
.x
, sizeof (struct x_output
));
10459 f
->output_data
.x
->icon_bitmap
= -1;
10460 f
->output_data
.x
->fontset
= -1;
10461 f
->output_data
.x
->scroll_bar_foreground_pixel
= -1;
10462 f
->output_data
.x
->scroll_bar_background_pixel
= -1;
10463 f
->icon_name
= Qnil
;
10464 FRAME_X_DISPLAY_INFO (f
) = dpyinfo
;
10466 image_cache_refcount
= FRAME_X_IMAGE_CACHE (f
)->refcount
;
10467 dpyinfo_refcount
= dpyinfo
->reference_count
;
10468 #endif /* GLYPH_DEBUG */
10469 #ifdef MULTI_KBOARD
10470 FRAME_KBOARD (f
) = kb
;
10472 f
->output_data
.x
->parent_desc
= FRAME_X_DISPLAY_INFO (f
)->root_window
;
10473 f
->output_data
.x
->explicit_parent
= 0;
10475 /* These colors will be set anyway later, but it's important
10476 to get the color reference counts right, so initialize them! */
10479 struct gcpro gcpro1
;
10481 black
= build_string ("black");
10483 f
->output_data
.x
->foreground_pixel
10484 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
10485 f
->output_data
.x
->background_pixel
10486 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
10487 f
->output_data
.x
->cursor_pixel
10488 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
10489 f
->output_data
.x
->cursor_foreground_pixel
10490 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
10491 f
->output_data
.x
->border_pixel
10492 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
10493 f
->output_data
.x
->mouse_pixel
10494 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
10498 /* Set the name; the functions to which we pass f expect the name to
10500 if (EQ (name
, Qunbound
) || NILP (name
))
10502 f
->name
= build_string (dpyinfo
->x_id_name
);
10503 f
->explicit_name
= 0;
10508 f
->explicit_name
= 1;
10509 /* use the frame's title when getting resources for this frame. */
10510 specbind (Qx_resource_name
, name
);
10513 /* Extract the window parameters from the supplied values that are
10514 needed to determine window geometry. */
10518 font
= x_get_arg (dpyinfo
, parms
, Qfont
, "font", "Font", RES_TYPE_STRING
);
10521 /* First, try whatever font the caller has specified. */
10522 if (STRINGP (font
))
10524 tem
= Fquery_fontset (font
, Qnil
);
10526 font
= x_new_fontset (f
, XSTRING (tem
)->data
);
10528 font
= x_new_font (f
, XSTRING (font
)->data
);
10531 /* Try out a font which we hope has bold and italic variations. */
10532 if (!STRINGP (font
))
10533 font
= x_new_font (f
, "-adobe-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-1");
10534 if (!STRINGP (font
))
10535 font
= x_new_font (f
, "-misc-fixed-medium-r-normal-*-*-140-*-*-c-*-iso8859-1");
10536 if (! STRINGP (font
))
10537 font
= x_new_font (f
, "-*-*-medium-r-normal-*-*-140-*-*-c-*-iso8859-1");
10538 if (! STRINGP (font
))
10539 /* This was formerly the first thing tried, but it finds too many fonts
10540 and takes too long. */
10541 font
= x_new_font (f
, "-*-*-medium-r-*-*-*-*-*-*-c-*-iso8859-1");
10542 /* If those didn't work, look for something which will at least work. */
10543 if (! STRINGP (font
))
10544 font
= x_new_font (f
, "-*-fixed-*-*-*-*-*-140-*-*-c-*-iso8859-1");
10546 if (! STRINGP (font
))
10547 font
= build_string ("fixed");
10549 x_default_parameter (f
, parms
, Qfont
, font
,
10550 "font", "Font", RES_TYPE_STRING
);
10553 x_default_parameter (f
, parms
, Qborder_width
, make_number (2),
10554 "borderWidth", "BorderWidth", RES_TYPE_NUMBER
);
10556 /* This defaults to 2 in order to match xterm. We recognize either
10557 internalBorderWidth or internalBorder (which is what xterm calls
10559 if (NILP (Fassq (Qinternal_border_width
, parms
)))
10563 value
= x_get_arg (dpyinfo
, parms
, Qinternal_border_width
,
10564 "internalBorder", "internalBorder", RES_TYPE_NUMBER
);
10565 if (! EQ (value
, Qunbound
))
10566 parms
= Fcons (Fcons (Qinternal_border_width
, value
),
10570 x_default_parameter (f
, parms
, Qinternal_border_width
, make_number (1),
10571 "internalBorderWidth", "internalBorderWidth",
10574 /* Also do the stuff which must be set before the window exists. */
10575 x_default_parameter (f
, parms
, Qforeground_color
, build_string ("black"),
10576 "foreground", "Foreground", RES_TYPE_STRING
);
10577 x_default_parameter (f
, parms
, Qbackground_color
, build_string ("white"),
10578 "background", "Background", RES_TYPE_STRING
);
10579 x_default_parameter (f
, parms
, Qmouse_color
, build_string ("black"),
10580 "pointerColor", "Foreground", RES_TYPE_STRING
);
10581 x_default_parameter (f
, parms
, Qcursor_color
, build_string ("black"),
10582 "cursorColor", "Foreground", RES_TYPE_STRING
);
10583 x_default_parameter (f
, parms
, Qborder_color
, build_string ("black"),
10584 "borderColor", "BorderColor", RES_TYPE_STRING
);
10586 /* Init faces before x_default_parameter is called for scroll-bar
10587 parameters because that function calls x_set_scroll_bar_width,
10588 which calls change_frame_size, which calls Fset_window_buffer,
10589 which runs hooks, which call Fvertical_motion. At the end, we
10590 end up in init_iterator with a null face cache, which should not
10592 init_frame_faces (f
);
10594 f
->output_data
.x
->parent_desc
= FRAME_X_DISPLAY_INFO (f
)->root_window
;
10595 window_prompting
= x_figure_window_size (f
, parms
);
10597 if (window_prompting
& XNegative
)
10599 if (window_prompting
& YNegative
)
10600 f
->output_data
.x
->win_gravity
= SouthEastGravity
;
10602 f
->output_data
.x
->win_gravity
= NorthEastGravity
;
10606 if (window_prompting
& YNegative
)
10607 f
->output_data
.x
->win_gravity
= SouthWestGravity
;
10609 f
->output_data
.x
->win_gravity
= NorthWestGravity
;
10612 f
->output_data
.x
->size_hint_flags
= window_prompting
;
10614 XSetWindowAttributes attrs
;
10615 unsigned long mask
;
10618 mask
= CWBackPixel
| CWOverrideRedirect
| CWEventMask
;
10619 if (DoesSaveUnders (dpyinfo
->screen
))
10620 mask
|= CWSaveUnder
;
10622 /* Window managers look at the override-redirect flag to determine
10623 whether or net to give windows a decoration (Xlib spec, chapter
10625 attrs
.override_redirect
= True
;
10626 attrs
.save_under
= True
;
10627 attrs
.background_pixel
= FRAME_BACKGROUND_PIXEL (f
);
10628 /* Arrange for getting MapNotify and UnmapNotify events. */
10629 attrs
.event_mask
= StructureNotifyMask
;
10631 = FRAME_X_WINDOW (f
)
10632 = XCreateWindow (FRAME_X_DISPLAY (f
),
10633 FRAME_X_DISPLAY_INFO (f
)->root_window
,
10634 /* x, y, width, height */
10638 CopyFromParent
, InputOutput
, CopyFromParent
,
10645 x_default_parameter (f
, parms
, Qauto_raise
, Qnil
,
10646 "autoRaise", "AutoRaiseLower", RES_TYPE_BOOLEAN
);
10647 x_default_parameter (f
, parms
, Qauto_lower
, Qnil
,
10648 "autoLower", "AutoRaiseLower", RES_TYPE_BOOLEAN
);
10649 x_default_parameter (f
, parms
, Qcursor_type
, Qbox
,
10650 "cursorType", "CursorType", RES_TYPE_SYMBOL
);
10652 /* Dimensions, especially f->height, must be done via change_frame_size.
10653 Change will not be effected unless different from the current
10656 height
= f
->height
;
10658 SET_FRAME_WIDTH (f
, 0);
10659 change_frame_size (f
, height
, width
, 1, 0, 0);
10661 /* Set up faces after all frame parameters are known. This call
10662 also merges in face attributes specified for new frames.
10664 Frame parameters may be changed if .Xdefaults contains
10665 specifications for the default font. For example, if there is an
10666 `Emacs.default.attributeBackground: pink', the `background-color'
10667 attribute of the frame get's set, which let's the internal border
10668 of the tooltip frame appear in pink. Prevent this. */
10670 Lisp_Object bg
= Fframe_parameter (frame
, Qbackground_color
);
10672 /* Set tip_frame here, so that */
10674 call1 (Qface_set_after_frame_default
, frame
);
10676 if (!EQ (bg
, Fframe_parameter (frame
, Qbackground_color
)))
10677 Fmodify_frame_parameters (frame
, Fcons (Fcons (Qbackground_color
, bg
),
10685 /* It is now ok to make the frame official even if we get an error
10686 below. And the frame needs to be on Vframe_list or making it
10687 visible won't work. */
10688 Vframe_list
= Fcons (frame
, Vframe_list
);
10690 /* Now that the frame is official, it counts as a reference to
10692 FRAME_X_DISPLAY_INFO (f
)->reference_count
++;
10694 /* Setting attributes of faces of the tooltip frame from resources
10695 and similar will increment face_change_count, which leads to the
10696 clearing of all current matrices. Since this isn't necessary
10697 here, avoid it by resetting face_change_count to the value it
10698 had before we created the tip frame. */
10699 face_change_count
= face_change_count_before
;
10701 /* Discard the unwind_protect. */
10702 return unbind_to (count
, frame
);
10706 /* Compute where to display tip frame F. PARMS is the list of frame
10707 parameters for F. DX and DY are specified offsets from the current
10708 location of the mouse. Return coordinates relative to the root
10709 window of the display in *ROOT_X, and *ROOT_Y. */
10712 compute_tip_xy (f
, parms
, dx
, dy
, root_x
, root_y
)
10714 Lisp_Object parms
, dx
, dy
;
10715 int *root_x
, *root_y
;
10717 Lisp_Object left
, top
;
10719 Window root
, child
;
10722 /* User-specified position? */
10723 left
= Fcdr (Fassq (Qleft
, parms
));
10724 top
= Fcdr (Fassq (Qtop
, parms
));
10726 /* Move the tooltip window where the mouse pointer is. Resize and
10729 XQueryPointer (FRAME_X_DISPLAY (f
), FRAME_X_DISPLAY_INFO (f
)->root_window
,
10730 &root
, &child
, root_x
, root_y
, &win_x
, &win_y
, &pmask
);
10733 *root_x
+= XINT (dx
);
10734 *root_y
+= XINT (dy
);
10736 if (INTEGERP (left
))
10737 *root_x
= XINT (left
);
10738 if (INTEGERP (top
))
10739 *root_y
= XINT (top
);
10743 DEFUN ("x-show-tip", Fx_show_tip
, Sx_show_tip
, 1, 6, 0,
10744 "Show STRING in a \"tooltip\" window on frame FRAME.\n\
10745 A tooltip window is a small X window displaying a string.\n\
10747 FRAME nil or omitted means use the selected frame.\n\
10749 PARMS is an optional list of frame parameters which can be\n\
10750 used to change the tooltip's appearance.\n\
10752 Automatically hide the tooltip after TIMEOUT seconds.\n\
10753 TIMEOUT nil means use the default timeout of 5 seconds.\n\
10755 If the list of frame parameters PARAMS contains a `left' parameters,\n\
10756 the tooltip is displayed at that x-position. Otherwise it is\n\
10757 displayed at the mouse position, with offset DX added (default is 5 if\n\
10758 DX isn't specified). Likewise for the y-position; if a `top' frame\n\
10759 parameter is specified, it determines the y-position of the tooltip\n\
10760 window, otherwise it is displayed at the mouse position, with offset\n\
10761 DY added (default is -10).")
10762 (string
, frame
, parms
, timeout
, dx
, dy
)
10763 Lisp_Object string
, frame
, parms
, timeout
, dx
, dy
;
10767 Lisp_Object buffer
, top
, left
;
10768 int root_x
, root_y
;
10769 struct buffer
*old_buffer
;
10770 struct text_pos pos
;
10771 int i
, width
, height
;
10772 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
10773 int old_windows_or_buffers_changed
= windows_or_buffers_changed
;
10774 int count
= BINDING_STACK_SIZE ();
10776 specbind (Qinhibit_redisplay
, Qt
);
10778 GCPRO4 (string
, parms
, frame
, timeout
);
10780 CHECK_STRING (string
, 0);
10781 f
= check_x_frame (frame
);
10782 if (NILP (timeout
))
10783 timeout
= make_number (5);
10785 CHECK_NATNUM (timeout
, 2);
10788 dx
= make_number (5);
10790 CHECK_NUMBER (dx
, 5);
10793 dy
= make_number (-10);
10795 CHECK_NUMBER (dy
, 6);
10797 if (NILP (last_show_tip_args
))
10798 last_show_tip_args
= Fmake_vector (make_number (3), Qnil
);
10800 if (!NILP (tip_frame
))
10802 Lisp_Object last_string
= AREF (last_show_tip_args
, 0);
10803 Lisp_Object last_frame
= AREF (last_show_tip_args
, 1);
10804 Lisp_Object last_parms
= AREF (last_show_tip_args
, 2);
10806 if (EQ (frame
, last_frame
)
10807 && !NILP (Fequal (last_string
, string
))
10808 && !NILP (Fequal (last_parms
, parms
)))
10810 struct frame
*f
= XFRAME (tip_frame
);
10812 /* Only DX and DY have changed. */
10813 if (!NILP (tip_timer
))
10815 Lisp_Object timer
= tip_timer
;
10817 call1 (Qcancel_timer
, timer
);
10821 compute_tip_xy (f
, parms
, dx
, dy
, &root_x
, &root_y
);
10822 XMoveWindow (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
10823 root_x
, root_y
- PIXEL_HEIGHT (f
));
10829 /* Hide a previous tip, if any. */
10832 ASET (last_show_tip_args
, 0, string
);
10833 ASET (last_show_tip_args
, 1, frame
);
10834 ASET (last_show_tip_args
, 2, parms
);
10836 /* Add default values to frame parameters. */
10837 if (NILP (Fassq (Qname
, parms
)))
10838 parms
= Fcons (Fcons (Qname
, build_string ("tooltip")), parms
);
10839 if (NILP (Fassq (Qinternal_border_width
, parms
)))
10840 parms
= Fcons (Fcons (Qinternal_border_width
, make_number (3)), parms
);
10841 if (NILP (Fassq (Qborder_width
, parms
)))
10842 parms
= Fcons (Fcons (Qborder_width
, make_number (1)), parms
);
10843 if (NILP (Fassq (Qborder_color
, parms
)))
10844 parms
= Fcons (Fcons (Qborder_color
, build_string ("lightyellow")), parms
);
10845 if (NILP (Fassq (Qbackground_color
, parms
)))
10846 parms
= Fcons (Fcons (Qbackground_color
, build_string ("lightyellow")),
10849 /* Create a frame for the tooltip, and record it in the global
10850 variable tip_frame. */
10851 frame
= x_create_tip_frame (FRAME_X_DISPLAY_INFO (f
), parms
);
10852 f
= XFRAME (frame
);
10854 /* Set up the frame's root window. Currently we use a size of 80
10855 columns x 40 lines. If someone wants to show a larger tip, he
10856 will loose. I don't think this is a realistic case. */
10857 w
= XWINDOW (FRAME_ROOT_WINDOW (f
));
10858 w
->left
= w
->top
= make_number (0);
10859 w
->width
= make_number (80);
10860 w
->height
= make_number (40);
10862 w
->pseudo_window_p
= 1;
10864 /* Display the tooltip text in a temporary buffer. */
10865 buffer
= Fget_buffer_create (build_string (" *tip*"));
10866 Fset_window_buffer (FRAME_ROOT_WINDOW (f
), buffer
);
10867 old_buffer
= current_buffer
;
10868 set_buffer_internal_1 (XBUFFER (buffer
));
10870 Finsert (1, &string
);
10871 clear_glyph_matrix (w
->desired_matrix
);
10872 clear_glyph_matrix (w
->current_matrix
);
10873 SET_TEXT_POS (pos
, BEGV
, BEGV_BYTE
);
10874 try_window (FRAME_ROOT_WINDOW (f
), pos
);
10876 /* Compute width and height of the tooltip. */
10877 width
= height
= 0;
10878 for (i
= 0; i
< w
->desired_matrix
->nrows
; ++i
)
10880 struct glyph_row
*row
= &w
->desired_matrix
->rows
[i
];
10881 struct glyph
*last
;
10884 /* Stop at the first empty row at the end. */
10885 if (!row
->enabled_p
|| !row
->displays_text_p
)
10888 /* Let the row go over the full width of the frame. */
10889 row
->full_width_p
= 1;
10891 /* There's a glyph at the end of rows that is used to place
10892 the cursor there. Don't include the width of this glyph. */
10893 if (row
->used
[TEXT_AREA
])
10895 last
= &row
->glyphs
[TEXT_AREA
][row
->used
[TEXT_AREA
] - 1];
10896 row_width
= row
->pixel_width
- last
->pixel_width
;
10899 row_width
= row
->pixel_width
;
10901 height
+= row
->height
;
10902 width
= max (width
, row_width
);
10905 /* Add the frame's internal border to the width and height the X
10906 window should have. */
10907 height
+= 2 * FRAME_INTERNAL_BORDER_WIDTH (f
);
10908 width
+= 2 * FRAME_INTERNAL_BORDER_WIDTH (f
);
10910 /* Move the tooltip window where the mouse pointer is. Resize and
10912 compute_tip_xy (f
, parms
, dx
, dy
, &root_x
, &root_y
);
10915 XMoveResizeWindow (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
10916 root_x
, root_y
- height
, width
, height
);
10917 XMapRaised (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
));
10920 /* Draw into the window. */
10921 w
->must_be_updated_p
= 1;
10922 update_single_window (w
, 1);
10924 /* Restore original current buffer. */
10925 set_buffer_internal_1 (old_buffer
);
10926 windows_or_buffers_changed
= old_windows_or_buffers_changed
;
10929 /* Let the tip disappear after timeout seconds. */
10930 tip_timer
= call3 (intern ("run-at-time"), timeout
, Qnil
,
10931 intern ("x-hide-tip"));
10934 return unbind_to (count
, Qnil
);
10938 DEFUN ("x-hide-tip", Fx_hide_tip
, Sx_hide_tip
, 0, 0, 0,
10939 "Hide the current tooltip window, if there is any.\n\
10940 Value is t is tooltip was open, nil otherwise.")
10944 Lisp_Object deleted
, frame
, timer
;
10945 struct gcpro gcpro1
, gcpro2
;
10947 /* Return quickly if nothing to do. */
10948 if (NILP (tip_timer
) && NILP (tip_frame
))
10953 GCPRO2 (frame
, timer
);
10954 tip_frame
= tip_timer
= deleted
= Qnil
;
10956 count
= BINDING_STACK_SIZE ();
10957 specbind (Qinhibit_redisplay
, Qt
);
10958 specbind (Qinhibit_quit
, Qt
);
10961 call1 (Qcancel_timer
, timer
);
10963 if (FRAMEP (frame
))
10965 Fdelete_frame (frame
, Qnil
);
10969 /* Bloodcurdling hack alert: The Lucid menu bar widget's
10970 redisplay procedure is not called when a tip frame over menu
10971 items is unmapped. Redisplay the menu manually... */
10973 struct frame
*f
= SELECTED_FRAME ();
10974 Widget w
= f
->output_data
.x
->menubar_widget
;
10975 extern void xlwmenu_redisplay
P_ ((Widget
));
10977 if (!DoesSaveUnders (FRAME_X_DISPLAY_INFO (f
)->screen
)
10981 xlwmenu_redisplay (w
);
10985 #endif /* USE_LUCID */
10989 return unbind_to (count
, deleted
);
10994 /***********************************************************************
10995 File selection dialog
10996 ***********************************************************************/
11000 /* Callback for "OK" and "Cancel" on file selection dialog. */
11003 file_dialog_cb (widget
, client_data
, call_data
)
11005 XtPointer call_data
, client_data
;
11007 int *result
= (int *) client_data
;
11008 XmAnyCallbackStruct
*cb
= (XmAnyCallbackStruct
*) call_data
;
11009 *result
= cb
->reason
;
11013 DEFUN ("x-file-dialog", Fx_file_dialog
, Sx_file_dialog
, 2, 4, 0,
11014 "Read file name, prompting with PROMPT in directory DIR.\n\
11015 Use a file selection dialog.\n\
11016 Select DEFAULT-FILENAME in the dialog's file selection box, if\n\
11017 specified. Don't let the user enter a file name in the file\n\
11018 selection dialog's entry field, if MUSTMATCH is non-nil.")
11019 (prompt
, dir
, default_filename
, mustmatch
)
11020 Lisp_Object prompt
, dir
, default_filename
, mustmatch
;
11023 struct frame
*f
= SELECTED_FRAME ();
11024 Lisp_Object file
= Qnil
;
11025 Widget dialog
, text
, list
, help
;
11028 extern XtAppContext Xt_app_con
;
11030 XmString dir_xmstring
, pattern_xmstring
;
11031 int popup_activated_flag
;
11032 int count
= specpdl_ptr
- specpdl
;
11033 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
, gcpro5
;
11035 GCPRO5 (prompt
, dir
, default_filename
, mustmatch
, file
);
11036 CHECK_STRING (prompt
, 0);
11037 CHECK_STRING (dir
, 1);
11039 /* Prevent redisplay. */
11040 specbind (Qinhibit_redisplay
, Qt
);
11044 /* Create the dialog with PROMPT as title, using DIR as initial
11045 directory and using "*" as pattern. */
11046 dir
= Fexpand_file_name (dir
, Qnil
);
11047 dir_xmstring
= XmStringCreateLocalized (XSTRING (dir
)->data
);
11048 pattern_xmstring
= XmStringCreateLocalized ("*");
11050 XtSetArg (al
[ac
], XmNtitle
, XSTRING (prompt
)->data
); ++ac
;
11051 XtSetArg (al
[ac
], XmNdirectory
, dir_xmstring
); ++ac
;
11052 XtSetArg (al
[ac
], XmNpattern
, pattern_xmstring
); ++ac
;
11053 XtSetArg (al
[ac
], XmNresizePolicy
, XmRESIZE_GROW
); ++ac
;
11054 XtSetArg (al
[ac
], XmNdialogStyle
, XmDIALOG_APPLICATION_MODAL
); ++ac
;
11055 dialog
= XmCreateFileSelectionDialog (f
->output_data
.x
->widget
,
11057 XmStringFree (dir_xmstring
);
11058 XmStringFree (pattern_xmstring
);
11060 /* Add callbacks for OK and Cancel. */
11061 XtAddCallback (dialog
, XmNokCallback
, file_dialog_cb
,
11062 (XtPointer
) &result
);
11063 XtAddCallback (dialog
, XmNcancelCallback
, file_dialog_cb
,
11064 (XtPointer
) &result
);
11066 /* Disable the help button since we can't display help. */
11067 help
= XmFileSelectionBoxGetChild (dialog
, XmDIALOG_HELP_BUTTON
);
11068 XtSetSensitive (help
, False
);
11070 /* Mark OK button as default. */
11071 XtVaSetValues (XmFileSelectionBoxGetChild (dialog
, XmDIALOG_OK_BUTTON
),
11072 XmNshowAsDefault
, True
, NULL
);
11074 /* If MUSTMATCH is non-nil, disable the file entry field of the
11075 dialog, so that the user must select a file from the files list
11076 box. We can't remove it because we wouldn't have a way to get at
11077 the result file name, then. */
11078 text
= XmFileSelectionBoxGetChild (dialog
, XmDIALOG_TEXT
);
11079 if (!NILP (mustmatch
))
11082 label
= XmFileSelectionBoxGetChild (dialog
, XmDIALOG_SELECTION_LABEL
);
11083 XtSetSensitive (text
, False
);
11084 XtSetSensitive (label
, False
);
11087 /* Manage the dialog, so that list boxes get filled. */
11088 XtManageChild (dialog
);
11090 /* Select DEFAULT_FILENAME in the files list box. DEFAULT_FILENAME
11091 must include the path for this to work. */
11092 list
= XmFileSelectionBoxGetChild (dialog
, XmDIALOG_LIST
);
11093 if (STRINGP (default_filename
))
11095 XmString default_xmstring
;
11099 = XmStringCreateLocalized (XSTRING (default_filename
)->data
);
11101 if (!XmListItemExists (list
, default_xmstring
))
11103 /* Add a new item if DEFAULT_FILENAME is not in the list. */
11104 XmListAddItem (list
, default_xmstring
, 0);
11108 item_pos
= XmListItemPos (list
, default_xmstring
);
11109 XmStringFree (default_xmstring
);
11111 /* Select the item and scroll it into view. */
11112 XmListSelectPos (list
, item_pos
, True
);
11113 XmListSetPos (list
, item_pos
);
11116 /* Process events until the user presses Cancel or OK. */
11118 while (result
== 0 || XtAppPending (Xt_app_con
))
11119 XtAppProcessEvent (Xt_app_con
, XtIMAll
);
11121 /* Get the result. */
11122 if (result
== XmCR_OK
)
11127 XtVaGetValues (dialog
, XmNtextString
, &text
, NULL
);
11128 XmStringGetLtoR (text
, XmFONTLIST_DEFAULT_TAG
, &data
);
11129 XmStringFree (text
);
11130 file
= build_string (data
);
11137 XtUnmanageChild (dialog
);
11138 XtDestroyWidget (dialog
);
11142 /* Make "Cancel" equivalent to C-g. */
11144 Fsignal (Qquit
, Qnil
);
11146 return unbind_to (count
, file
);
11149 #endif /* USE_MOTIF */
11153 /***********************************************************************
11155 ***********************************************************************/
11157 #ifdef HAVE_XKBGETKEYBOARD
11158 #include <X11/XKBlib.h>
11159 #include <X11/keysym.h>
11162 DEFUN ("x-backspace-delete-keys-p", Fx_backspace_delete_keys_p
,
11163 Sx_backspace_delete_keys_p
, 0, 1, 0,
11164 "Check if both Backspace and Delete keys are on the keyboard of FRAME.\n\
11165 FRAME nil means use the selected frame.\n\
11166 Value is t if we know that both keys are present, and are mapped to the\n\
11171 #ifdef HAVE_XKBGETKEYBOARD
11173 struct frame
*f
= check_x_frame (frame
);
11174 Display
*dpy
= FRAME_X_DISPLAY (f
);
11175 Lisp_Object have_keys
;
11176 int major
, minor
, op
, event
, error
;
11180 /* Check library version in case we're dynamically linked. */
11181 major
= XkbMajorVersion
;
11182 minor
= XkbMinorVersion
;
11183 if (!XkbLibraryVersion (&major
, &minor
))
11189 /* Check that the server supports XKB. */
11190 major
= XkbMajorVersion
;
11191 minor
= XkbMinorVersion
;
11192 if (!XkbQueryExtension (dpy
, &op
, &event
, &error
, &major
, &minor
))
11199 kb
= XkbGetMap (dpy
, XkbAllMapComponentsMask
, XkbUseCoreKbd
);
11202 int delete_keycode
= 0, backspace_keycode
= 0, i
;
11204 if (XkbGetNames (dpy
, XkbAllNamesMask
, kb
) == Success
)
11206 for (i
= kb
->min_key_code
;
11207 (i
< kb
->max_key_code
11208 && (delete_keycode
== 0 || backspace_keycode
== 0));
11211 /* The XKB symbolic key names can be seen most easily
11212 in the PS file generated by `xkbprint -label name $DISPLAY'. */
11213 if (bcmp ("DELE", kb
->names
->keys
[i
].name
, 4) == 0)
11214 delete_keycode
= i
;
11215 else if (bcmp ("BKSP", kb
->names
->keys
[i
].name
, 4) == 0)
11216 backspace_keycode
= i
;
11219 XkbFreeNames (kb
, 0, True
);
11222 XkbFreeClientMap (kb
, 0, True
);
11225 && backspace_keycode
11226 && XKeysymToKeycode (dpy
, XK_Delete
) == delete_keycode
11227 && XKeysymToKeycode (dpy
, XK_BackSpace
) == backspace_keycode
)
11232 #else /* not HAVE_XKBGETKEYBOARD */
11234 #endif /* not HAVE_XKBGETKEYBOARD */
11239 /***********************************************************************
11241 ***********************************************************************/
11246 /* This is zero if not using X windows. */
11249 /* The section below is built by the lisp expression at the top of the file,
11250 just above where these variables are declared. */
11251 /*&&& init symbols here &&&*/
11252 Qauto_raise
= intern ("auto-raise");
11253 staticpro (&Qauto_raise
);
11254 Qauto_lower
= intern ("auto-lower");
11255 staticpro (&Qauto_lower
);
11256 Qbar
= intern ("bar");
11258 Qborder_color
= intern ("border-color");
11259 staticpro (&Qborder_color
);
11260 Qborder_width
= intern ("border-width");
11261 staticpro (&Qborder_width
);
11262 Qbox
= intern ("box");
11264 Qcursor_color
= intern ("cursor-color");
11265 staticpro (&Qcursor_color
);
11266 Qcursor_type
= intern ("cursor-type");
11267 staticpro (&Qcursor_type
);
11268 Qgeometry
= intern ("geometry");
11269 staticpro (&Qgeometry
);
11270 Qicon_left
= intern ("icon-left");
11271 staticpro (&Qicon_left
);
11272 Qicon_top
= intern ("icon-top");
11273 staticpro (&Qicon_top
);
11274 Qicon_type
= intern ("icon-type");
11275 staticpro (&Qicon_type
);
11276 Qicon_name
= intern ("icon-name");
11277 staticpro (&Qicon_name
);
11278 Qinternal_border_width
= intern ("internal-border-width");
11279 staticpro (&Qinternal_border_width
);
11280 Qleft
= intern ("left");
11281 staticpro (&Qleft
);
11282 Qright
= intern ("right");
11283 staticpro (&Qright
);
11284 Qmouse_color
= intern ("mouse-color");
11285 staticpro (&Qmouse_color
);
11286 Qnone
= intern ("none");
11287 staticpro (&Qnone
);
11288 Qparent_id
= intern ("parent-id");
11289 staticpro (&Qparent_id
);
11290 Qscroll_bar_width
= intern ("scroll-bar-width");
11291 staticpro (&Qscroll_bar_width
);
11292 Qsuppress_icon
= intern ("suppress-icon");
11293 staticpro (&Qsuppress_icon
);
11294 Qundefined_color
= intern ("undefined-color");
11295 staticpro (&Qundefined_color
);
11296 Qvertical_scroll_bars
= intern ("vertical-scroll-bars");
11297 staticpro (&Qvertical_scroll_bars
);
11298 Qvisibility
= intern ("visibility");
11299 staticpro (&Qvisibility
);
11300 Qwindow_id
= intern ("window-id");
11301 staticpro (&Qwindow_id
);
11302 Qouter_window_id
= intern ("outer-window-id");
11303 staticpro (&Qouter_window_id
);
11304 Qx_frame_parameter
= intern ("x-frame-parameter");
11305 staticpro (&Qx_frame_parameter
);
11306 Qx_resource_name
= intern ("x-resource-name");
11307 staticpro (&Qx_resource_name
);
11308 Quser_position
= intern ("user-position");
11309 staticpro (&Quser_position
);
11310 Quser_size
= intern ("user-size");
11311 staticpro (&Quser_size
);
11312 Qscroll_bar_foreground
= intern ("scroll-bar-foreground");
11313 staticpro (&Qscroll_bar_foreground
);
11314 Qscroll_bar_background
= intern ("scroll-bar-background");
11315 staticpro (&Qscroll_bar_background
);
11316 Qscreen_gamma
= intern ("screen-gamma");
11317 staticpro (&Qscreen_gamma
);
11318 Qline_spacing
= intern ("line-spacing");
11319 staticpro (&Qline_spacing
);
11320 Qcenter
= intern ("center");
11321 staticpro (&Qcenter
);
11322 Qcompound_text
= intern ("compound-text");
11323 staticpro (&Qcompound_text
);
11324 Qcancel_timer
= intern ("cancel-timer");
11325 staticpro (&Qcancel_timer
);
11326 /* This is the end of symbol initialization. */
11328 /* Text property `display' should be nonsticky by default. */
11329 Vtext_property_default_nonsticky
11330 = Fcons (Fcons (Qdisplay
, Qt
), Vtext_property_default_nonsticky
);
11333 Qlaplace
= intern ("laplace");
11334 staticpro (&Qlaplace
);
11335 Qemboss
= intern ("emboss");
11336 staticpro (&Qemboss
);
11337 Qedge_detection
= intern ("edge-detection");
11338 staticpro (&Qedge_detection
);
11339 Qheuristic
= intern ("heuristic");
11340 staticpro (&Qheuristic
);
11341 QCmatrix
= intern (":matrix");
11342 staticpro (&QCmatrix
);
11343 QCcolor_adjustment
= intern (":color-adjustment");
11344 staticpro (&QCcolor_adjustment
);
11345 QCmask
= intern (":mask");
11346 staticpro (&QCmask
);
11348 Qface_set_after_frame_default
= intern ("face-set-after-frame-default");
11349 staticpro (&Qface_set_after_frame_default
);
11351 Fput (Qundefined_color
, Qerror_conditions
,
11352 Fcons (Qundefined_color
, Fcons (Qerror
, Qnil
)));
11353 Fput (Qundefined_color
, Qerror_message
,
11354 build_string ("Undefined color"));
11356 init_x_parm_symbols ();
11358 DEFVAR_BOOL ("cross-disabled-images", &cross_disabled_images
,
11359 "Non-nil means always draw a cross over disabled images.\n\
11360 Disabled images are those having an `:conversion disabled' property.\n\
11361 A cross is always drawn on black & white displays.");
11362 cross_disabled_images
= 0;
11364 DEFVAR_LISP ("x-bitmap-file-path", &Vx_bitmap_file_path
,
11365 "List of directories to search for bitmap files for X.");
11366 Vx_bitmap_file_path
= decode_env_path ((char *) 0, PATH_BITMAPS
);
11368 DEFVAR_LISP ("x-pointer-shape", &Vx_pointer_shape
,
11369 "The shape of the pointer when over text.\n\
11370 Changing the value does not affect existing frames\n\
11371 unless you set the mouse color.");
11372 Vx_pointer_shape
= Qnil
;
11374 DEFVAR_LISP ("x-resource-name", &Vx_resource_name
,
11375 "The name Emacs uses to look up X resources.\n\
11376 `x-get-resource' uses this as the first component of the instance name\n\
11377 when requesting resource values.\n\
11378 Emacs initially sets `x-resource-name' to the name under which Emacs\n\
11379 was invoked, or to the value specified with the `-name' or `-rn'\n\
11380 switches, if present.\n\
11382 It may be useful to bind this variable locally around a call\n\
11383 to `x-get-resource'. See also the variable `x-resource-class'.");
11384 Vx_resource_name
= Qnil
;
11386 DEFVAR_LISP ("x-resource-class", &Vx_resource_class
,
11387 "The class Emacs uses to look up X resources.\n\
11388 `x-get-resource' uses this as the first component of the instance class\n\
11389 when requesting resource values.\n\
11390 Emacs initially sets `x-resource-class' to \"Emacs\".\n\
11392 Setting this variable permanently is not a reasonable thing to do,\n\
11393 but binding this variable locally around a call to `x-get-resource'\n\
11394 is a reasonable practice. See also the variable `x-resource-name'.");
11395 Vx_resource_class
= build_string (EMACS_CLASS
);
11397 #if 0 /* This doesn't really do anything. */
11398 DEFVAR_LISP ("x-nontext-pointer-shape", &Vx_nontext_pointer_shape
,
11399 "The shape of the pointer when not over text.\n\
11400 This variable takes effect when you create a new frame\n\
11401 or when you set the mouse color.");
11403 Vx_nontext_pointer_shape
= Qnil
;
11405 DEFVAR_LISP ("x-busy-pointer-shape", &Vx_busy_pointer_shape
,
11406 "The shape of the pointer when Emacs is busy.\n\
11407 This variable takes effect when you create a new frame\n\
11408 or when you set the mouse color.");
11409 Vx_busy_pointer_shape
= Qnil
;
11411 DEFVAR_BOOL ("display-busy-cursor", &display_busy_cursor_p
,
11412 "Non-zero means Emacs displays a busy cursor on window systems.");
11413 display_busy_cursor_p
= 1;
11415 DEFVAR_LISP ("busy-cursor-delay", &Vbusy_cursor_delay
,
11416 "*Seconds to wait before displaying a busy-cursor.\n\
11417 Value must be an integer or float.");
11418 Vbusy_cursor_delay
= make_number (DEFAULT_BUSY_CURSOR_DELAY
);
11420 #if 0 /* This doesn't really do anything. */
11421 DEFVAR_LISP ("x-mode-pointer-shape", &Vx_mode_pointer_shape
,
11422 "The shape of the pointer when over the mode line.\n\
11423 This variable takes effect when you create a new frame\n\
11424 or when you set the mouse color.");
11426 Vx_mode_pointer_shape
= Qnil
;
11428 DEFVAR_LISP ("x-sensitive-text-pointer-shape",
11429 &Vx_sensitive_text_pointer_shape
,
11430 "The shape of the pointer when over mouse-sensitive text.\n\
11431 This variable takes effect when you create a new frame\n\
11432 or when you set the mouse color.");
11433 Vx_sensitive_text_pointer_shape
= Qnil
;
11435 DEFVAR_LISP ("x-window-horizontal-drag-cursor",
11436 &Vx_window_horizontal_drag_shape
,
11437 "Pointer shape to use for indicating a window can be dragged horizontally.\n\
11438 This variable takes effect when you create a new frame\n\
11439 or when you set the mouse color.");
11440 Vx_window_horizontal_drag_shape
= Qnil
;
11442 DEFVAR_LISP ("x-cursor-fore-pixel", &Vx_cursor_fore_pixel
,
11443 "A string indicating the foreground color of the cursor box.");
11444 Vx_cursor_fore_pixel
= Qnil
;
11446 DEFVAR_LISP ("x-no-window-manager", &Vx_no_window_manager
,
11447 "Non-nil if no X window manager is in use.\n\
11448 Emacs doesn't try to figure this out; this is always nil\n\
11449 unless you set it to something else.");
11450 /* We don't have any way to find this out, so set it to nil
11451 and maybe the user would like to set it to t. */
11452 Vx_no_window_manager
= Qnil
;
11454 DEFVAR_LISP ("x-pixel-size-width-font-regexp",
11455 &Vx_pixel_size_width_font_regexp
,
11456 "Regexp matching a font name whose width is the same as `PIXEL_SIZE'.\n\
11458 Since Emacs gets width of a font matching with this regexp from\n\
11459 PIXEL_SIZE field of the name, font finding mechanism gets faster for\n\
11460 such a font. This is especially effective for such large fonts as\n\
11461 Chinese, Japanese, and Korean.");
11462 Vx_pixel_size_width_font_regexp
= Qnil
;
11464 DEFVAR_LISP ("image-cache-eviction-delay", &Vimage_cache_eviction_delay
,
11465 "Time after which cached images are removed from the cache.\n\
11466 When an image has not been displayed this many seconds, remove it\n\
11467 from the image cache. Value must be an integer or nil with nil\n\
11468 meaning don't clear the cache.");
11469 Vimage_cache_eviction_delay
= make_number (30 * 60);
11471 #ifdef USE_X_TOOLKIT
11472 Fprovide (intern ("x-toolkit"));
11475 Fprovide (intern ("motif"));
11478 defsubr (&Sx_get_resource
);
11480 /* X window properties. */
11481 defsubr (&Sx_change_window_property
);
11482 defsubr (&Sx_delete_window_property
);
11483 defsubr (&Sx_window_property
);
11485 defsubr (&Sxw_display_color_p
);
11486 defsubr (&Sx_display_grayscale_p
);
11487 defsubr (&Sxw_color_defined_p
);
11488 defsubr (&Sxw_color_values
);
11489 defsubr (&Sx_server_max_request_size
);
11490 defsubr (&Sx_server_vendor
);
11491 defsubr (&Sx_server_version
);
11492 defsubr (&Sx_display_pixel_width
);
11493 defsubr (&Sx_display_pixel_height
);
11494 defsubr (&Sx_display_mm_width
);
11495 defsubr (&Sx_display_mm_height
);
11496 defsubr (&Sx_display_screens
);
11497 defsubr (&Sx_display_planes
);
11498 defsubr (&Sx_display_color_cells
);
11499 defsubr (&Sx_display_visual_class
);
11500 defsubr (&Sx_display_backing_store
);
11501 defsubr (&Sx_display_save_under
);
11502 defsubr (&Sx_parse_geometry
);
11503 defsubr (&Sx_create_frame
);
11504 defsubr (&Sx_open_connection
);
11505 defsubr (&Sx_close_connection
);
11506 defsubr (&Sx_display_list
);
11507 defsubr (&Sx_synchronize
);
11508 defsubr (&Sx_focus_frame
);
11509 defsubr (&Sx_backspace_delete_keys_p
);
11511 /* Setting callback functions for fontset handler. */
11512 get_font_info_func
= x_get_font_info
;
11514 #if 0 /* This function pointer doesn't seem to be used anywhere.
11515 And the pointer assigned has the wrong type, anyway. */
11516 list_fonts_func
= x_list_fonts
;
11519 load_font_func
= x_load_font
;
11520 find_ccl_program_func
= x_find_ccl_program
;
11521 query_font_func
= x_query_font
;
11522 set_frame_fontset_func
= x_set_font
;
11523 check_window_system_func
= check_x
;
11526 Qxbm
= intern ("xbm");
11528 QCtype
= intern (":type");
11529 staticpro (&QCtype
);
11530 QCconversion
= intern (":conversion");
11531 staticpro (&QCconversion
);
11532 QCheuristic_mask
= intern (":heuristic-mask");
11533 staticpro (&QCheuristic_mask
);
11534 QCcolor_symbols
= intern (":color-symbols");
11535 staticpro (&QCcolor_symbols
);
11536 QCascent
= intern (":ascent");
11537 staticpro (&QCascent
);
11538 QCmargin
= intern (":margin");
11539 staticpro (&QCmargin
);
11540 QCrelief
= intern (":relief");
11541 staticpro (&QCrelief
);
11542 Qpostscript
= intern ("postscript");
11543 staticpro (&Qpostscript
);
11544 QCloader
= intern (":loader");
11545 staticpro (&QCloader
);
11546 QCbounding_box
= intern (":bounding-box");
11547 staticpro (&QCbounding_box
);
11548 QCpt_width
= intern (":pt-width");
11549 staticpro (&QCpt_width
);
11550 QCpt_height
= intern (":pt-height");
11551 staticpro (&QCpt_height
);
11552 QCindex
= intern (":index");
11553 staticpro (&QCindex
);
11554 Qpbm
= intern ("pbm");
11558 Qxpm
= intern ("xpm");
11563 Qjpeg
= intern ("jpeg");
11564 staticpro (&Qjpeg
);
11568 Qtiff
= intern ("tiff");
11569 staticpro (&Qtiff
);
11573 Qgif
= intern ("gif");
11578 Qpng
= intern ("png");
11582 defsubr (&Sclear_image_cache
);
11583 defsubr (&Simage_size
);
11584 defsubr (&Simage_mask_p
);
11586 busy_cursor_atimer
= NULL
;
11587 busy_cursor_shown_p
= 0;
11589 defsubr (&Sx_show_tip
);
11590 defsubr (&Sx_hide_tip
);
11592 staticpro (&tip_timer
);
11594 staticpro (&tip_frame
);
11596 last_show_tip_args
= Qnil
;
11597 staticpro (&last_show_tip_args
);
11600 defsubr (&Sx_file_dialog
);
11608 image_types
= NULL
;
11609 Vimage_types
= Qnil
;
11611 define_image_type (&xbm_type
);
11612 define_image_type (&gs_type
);
11613 define_image_type (&pbm_type
);
11616 define_image_type (&xpm_type
);
11620 define_image_type (&jpeg_type
);
11624 define_image_type (&tiff_type
);
11628 define_image_type (&gif_type
);
11632 define_image_type (&png_type
);
11636 #endif /* HAVE_X_WINDOWS */