1 /* Functions for the X window system.
2 Copyright (C) 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3 2001, 2002, 2003, 2004, 2005 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. */
30 /* This makes the fields of a Display accessible, in Xlib header files. */
32 #define XLIB_ILLEGAL_ACCESS
39 #include "intervals.h"
40 #include "dispextern.h"
42 #include "blockinput.h"
48 #include "termhooks.h"
54 #include <sys/types.h>
58 #if 1 /* Used to be #ifdef EMACS_BITMAP_FILES, but this should always work. */
59 #include "bitmaps/gray.xbm"
61 #include <X11/bitmaps/gray>
64 #include "[.bitmaps]gray.xbm"
72 #include <X11/Shell.h>
75 #include <X11/Xaw/Paned.h>
76 #include <X11/Xaw/Label.h>
77 #endif /* USE_MOTIF */
80 #undef USG /* ####KLUDGE for Solaris 2.2 and up */
89 #include "../lwlib/lwlib.h"
93 #include <Xm/DialogS.h>
94 #include <Xm/FileSB.h>
97 /* Do the EDITRES protocol if running X11R5
98 Exception: HP-UX (at least version A.09.05) has X11R5 without EditRes */
100 #if (XtSpecificationRelease >= 5) && !defined(NO_EDITRES)
102 extern void _XEditResCheckMessages ();
103 #endif /* R5 + Athena */
105 /* Unique id counter for widgets created by the Lucid Widget Library. */
107 extern LWLIB_ID widget_id_tick
;
110 /* This is part of a kludge--see lwlib/xlwmenu.c. */
111 extern XFontStruct
*xlwmenu_default_font
;
114 extern void free_frame_menubar ();
115 extern double atof ();
119 /* LessTif/Motif version info. */
121 static Lisp_Object Vmotif_version_string
;
123 #endif /* USE_MOTIF */
125 #endif /* USE_X_TOOLKIT */
129 /* GTK+ version info */
131 static Lisp_Object Vgtk_version_string
;
136 #define MAXREQUEST(dpy) (XMaxRequestSize (dpy))
138 #define MAXREQUEST(dpy) ((dpy)->max_request_size)
141 /* The gray bitmap `bitmaps/gray'. This is done because xterm.c uses
142 it, and including `bitmaps/gray' more than once is a problem when
143 config.h defines `static' as an empty replacement string. */
145 int gray_bitmap_width
= gray_width
;
146 int gray_bitmap_height
= gray_height
;
147 char *gray_bitmap_bits
= gray_bits
;
149 /* Non-zero means we're allowed to display an hourglass cursor. */
151 int display_hourglass_p
;
153 /* Non-zero means prompt with the old GTK file selection dialog. */
155 int x_use_old_gtk_file_dialog
;
157 /* The background and shape of the mouse pointer, and shape when not
158 over text or in the modeline. */
160 Lisp_Object Vx_pointer_shape
, Vx_nontext_pointer_shape
, Vx_mode_pointer_shape
;
161 Lisp_Object Vx_hourglass_pointer_shape
;
163 /* The shape when over mouse-sensitive text. */
165 Lisp_Object Vx_sensitive_text_pointer_shape
;
167 /* If non-nil, the pointer shape to indicate that windows can be
168 dragged horizontally. */
170 Lisp_Object Vx_window_horizontal_drag_shape
;
172 /* Color of chars displayed in cursor box. */
174 Lisp_Object Vx_cursor_fore_pixel
;
176 /* Nonzero if using X. */
180 /* Non nil if no window manager is in use. */
182 Lisp_Object Vx_no_window_manager
;
184 /* Regexp matching a font name whose width is the same as `PIXEL_SIZE'. */
186 Lisp_Object Vx_pixel_size_width_font_regexp
;
189 Lisp_Object Qsuppress_icon
;
190 Lisp_Object Qundefined_color
;
191 Lisp_Object Qcompound_text
, Qcancel_timer
;
195 extern Lisp_Object Vwindow_system_version
;
197 /* The below are defined in frame.c. */
200 int image_cache_refcount
, dpyinfo_refcount
;
205 /* Error if we are not connected to X. */
211 error ("X windows are not in use or not initialized");
214 /* Nonzero if we can use mouse menus.
215 You should not call this unless HAVE_MENUS is defined. */
223 /* Extract a frame as a FRAME_PTR, defaulting to the selected frame
224 and checking validity for X. */
227 check_x_frame (frame
)
233 frame
= selected_frame
;
234 CHECK_LIVE_FRAME (frame
);
237 error ("Non-X frame used");
241 /* Let the user specify an X display with a frame.
242 nil stands for the selected frame--or, if that is not an X frame,
243 the first X display on the list. */
245 struct x_display_info
*
246 check_x_display_info (frame
)
249 struct x_display_info
*dpyinfo
= NULL
;
253 struct frame
*sf
= XFRAME (selected_frame
);
255 if (FRAME_X_P (sf
) && FRAME_LIVE_P (sf
))
256 dpyinfo
= FRAME_X_DISPLAY_INFO (sf
);
257 else if (x_display_list
!= 0)
258 dpyinfo
= x_display_list
;
260 error ("X windows are not in use or not initialized");
262 else if (STRINGP (frame
))
263 dpyinfo
= x_display_info_for_name (frame
);
266 FRAME_PTR f
= check_x_frame (frame
);
267 dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
274 /* Return the Emacs frame-object corresponding to an X window.
275 It could be the frame's main window or an icon window. */
277 /* This function can be called during GC, so use GC_xxx type test macros. */
280 x_window_to_frame (dpyinfo
, wdesc
)
281 struct x_display_info
*dpyinfo
;
284 Lisp_Object tail
, frame
;
287 if (wdesc
== None
) return 0;
289 for (tail
= Vframe_list
; GC_CONSP (tail
); tail
= XCDR (tail
))
292 if (!GC_FRAMEP (frame
))
295 if (!FRAME_X_P (f
) || FRAME_X_DISPLAY_INFO (f
) != dpyinfo
)
297 if (f
->output_data
.x
->hourglass_window
== wdesc
)
300 if ((f
->output_data
.x
->edit_widget
301 && XtWindow (f
->output_data
.x
->edit_widget
) == wdesc
)
302 /* A tooltip frame? */
303 || (!f
->output_data
.x
->edit_widget
304 && FRAME_X_WINDOW (f
) == wdesc
)
305 || f
->output_data
.x
->icon_desc
== wdesc
)
307 #else /* not USE_X_TOOLKIT */
309 if (f
->output_data
.x
->edit_widget
)
311 GtkWidget
*gwdesc
= xg_win_to_widget (dpyinfo
->display
, wdesc
);
312 struct x_output
*x
= f
->output_data
.x
;
313 if (gwdesc
!= 0 && gwdesc
== x
->edit_widget
)
317 if (FRAME_X_WINDOW (f
) == wdesc
318 || f
->output_data
.x
->icon_desc
== wdesc
)
320 #endif /* not USE_X_TOOLKIT */
325 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
326 /* Like x_window_to_frame but also compares the window with the widget's
330 x_any_window_to_frame (dpyinfo
, wdesc
)
331 struct x_display_info
*dpyinfo
;
334 Lisp_Object tail
, frame
;
335 struct frame
*f
, *found
;
338 if (wdesc
== None
) return NULL
;
341 for (tail
= Vframe_list
; GC_CONSP (tail
) && !found
; tail
= XCDR (tail
))
344 if (!GC_FRAMEP (frame
))
348 if (FRAME_X_P (f
) && FRAME_X_DISPLAY_INFO (f
) == dpyinfo
)
350 /* This frame matches if the window is any of its widgets. */
351 x
= f
->output_data
.x
;
352 if (x
->hourglass_window
== wdesc
)
357 GtkWidget
*gwdesc
= xg_win_to_widget (dpyinfo
->display
, wdesc
);
359 && (gwdesc
== x
->widget
360 || gwdesc
== x
->edit_widget
361 || gwdesc
== x
->vbox_widget
362 || gwdesc
== x
->menubar_widget
))
365 if (wdesc
== XtWindow (x
->widget
)
366 || wdesc
== XtWindow (x
->column_widget
)
367 || wdesc
== XtWindow (x
->edit_widget
))
369 /* Match if the window is this frame's menubar. */
370 else if (lw_window_is_in_menubar (wdesc
, x
->menubar_widget
))
374 else if (FRAME_X_WINDOW (f
) == wdesc
)
375 /* A tooltip frame. */
383 /* Likewise, but exclude the menu bar widget. */
386 x_non_menubar_window_to_frame (dpyinfo
, wdesc
)
387 struct x_display_info
*dpyinfo
;
390 Lisp_Object tail
, frame
;
394 if (wdesc
== None
) return 0;
396 for (tail
= Vframe_list
; GC_CONSP (tail
); tail
= XCDR (tail
))
399 if (!GC_FRAMEP (frame
))
402 if (!FRAME_X_P (f
) || FRAME_X_DISPLAY_INFO (f
) != dpyinfo
)
404 x
= f
->output_data
.x
;
405 /* This frame matches if the window is any of its widgets. */
406 if (x
->hourglass_window
== wdesc
)
411 GtkWidget
*gwdesc
= xg_win_to_widget (dpyinfo
->display
, wdesc
);
413 && (gwdesc
== x
->widget
414 || gwdesc
== x
->edit_widget
415 || gwdesc
== x
->vbox_widget
))
418 if (wdesc
== XtWindow (x
->widget
)
419 || wdesc
== XtWindow (x
->column_widget
)
420 || wdesc
== XtWindow (x
->edit_widget
))
424 else if (FRAME_X_WINDOW (f
) == wdesc
)
425 /* A tooltip frame. */
431 /* Likewise, but consider only the menu bar widget. */
434 x_menubar_window_to_frame (dpyinfo
, wdesc
)
435 struct x_display_info
*dpyinfo
;
438 Lisp_Object tail
, frame
;
442 if (wdesc
== None
) return 0;
444 for (tail
= Vframe_list
; GC_CONSP (tail
); tail
= XCDR (tail
))
447 if (!GC_FRAMEP (frame
))
450 if (!FRAME_X_P (f
) || FRAME_X_DISPLAY_INFO (f
) != dpyinfo
)
452 x
= f
->output_data
.x
;
453 /* Match if the window is this frame's menubar. */
455 if (x
->menubar_widget
)
457 GtkWidget
*gwdesc
= xg_win_to_widget (dpyinfo
->display
, wdesc
);
462 && (gwdesc
== x
->menubar_widget
463 || gtk_widget_get_parent (gwdesc
) == x
->menubar_widget
))
469 if (x
->menubar_widget
470 && lw_window_is_in_menubar (wdesc
, x
->menubar_widget
))
477 /* Return the frame whose principal (outermost) window is WDESC.
478 If WDESC is some other (smaller) window, we return 0. */
481 x_top_window_to_frame (dpyinfo
, wdesc
)
482 struct x_display_info
*dpyinfo
;
485 Lisp_Object tail
, frame
;
489 if (wdesc
== None
) return 0;
491 for (tail
= Vframe_list
; GC_CONSP (tail
); tail
= XCDR (tail
))
494 if (!GC_FRAMEP (frame
))
497 if (!FRAME_X_P (f
) || FRAME_X_DISPLAY_INFO (f
) != dpyinfo
)
499 x
= f
->output_data
.x
;
503 /* This frame matches if the window is its topmost widget. */
505 GtkWidget
*gwdesc
= xg_win_to_widget (dpyinfo
->display
, wdesc
);
506 if (gwdesc
== x
->widget
)
509 if (wdesc
== XtWindow (x
->widget
))
511 #if 0 /* I don't know why it did this,
512 but it seems logically wrong,
513 and it causes trouble for MapNotify events. */
514 /* Match if the window is this frame's menubar. */
515 if (x
->menubar_widget
516 && wdesc
== XtWindow (x
->menubar_widget
))
521 else if (FRAME_X_WINDOW (f
) == wdesc
)
527 #endif /* USE_X_TOOLKIT || USE_GTK */
531 static Lisp_Object unwind_create_frame
P_ ((Lisp_Object
));
532 static Lisp_Object unwind_create_tip_frame
P_ ((Lisp_Object
));
534 void x_set_foreground_color
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
535 static void x_set_wait_for_wm
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
536 void x_set_background_color
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
537 void x_set_mouse_color
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
538 void x_set_cursor_color
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
539 void x_set_border_color
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
540 void x_set_cursor_type
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
541 void x_set_icon_type
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
542 void x_set_icon_name
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
543 void x_explicitly_set_name
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
544 void x_set_menu_bar_lines
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
545 void x_set_title
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
546 void x_set_tool_bar_lines
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
547 void x_set_scroll_bar_foreground
P_ ((struct frame
*, Lisp_Object
,
549 void x_set_scroll_bar_background
P_ ((struct frame
*, Lisp_Object
,
551 static Lisp_Object x_default_scroll_bar_color_parameter
P_ ((struct frame
*,
558 /* Store the screen positions of frame F into XPTR and YPTR.
559 These are the positions of the containing window manager window,
560 not Emacs's own window. */
563 x_real_positions (f
, xptr
, yptr
)
567 int win_x
, win_y
, outer_x
, outer_y
;
568 int real_x
= 0, real_y
= 0;
570 Window win
= f
->output_data
.x
->parent_desc
;
576 count
= x_catch_errors (FRAME_X_DISPLAY (f
));
578 if (win
== FRAME_X_DISPLAY_INFO (f
)->root_window
)
579 win
= FRAME_OUTER_WINDOW (f
);
581 /* This loop traverses up the containment tree until we hit the root
582 window. Window managers may intersect many windows between our window
583 and the root window. The window we find just before the root window
584 should be the outer WM window. */
587 Window wm_window
, rootw
;
588 Window
*tmp_children
;
589 unsigned int tmp_nchildren
;
592 success
= XQueryTree (FRAME_X_DISPLAY (f
), win
, &rootw
,
593 &wm_window
, &tmp_children
, &tmp_nchildren
);
595 had_errors
= x_had_errors_p (FRAME_X_DISPLAY (f
));
597 /* Don't free tmp_children if XQueryTree failed. */
601 XFree ((char *) tmp_children
);
603 if (wm_window
== rootw
|| had_errors
)
614 /* Get the real coordinates for the WM window upper left corner */
615 XGetGeometry (FRAME_X_DISPLAY (f
), win
,
616 &rootw
, &real_x
, &real_y
, &ign
, &ign
, &ign
, &ign
);
618 /* Translate real coordinates to coordinates relative to our
619 window. For our window, the upper left corner is 0, 0.
620 Since the upper left corner of the WM window is outside
621 our window, win_x and win_y will be negative:
623 ------------------ ---> x
625 | ----------------- v y
628 XTranslateCoordinates (FRAME_X_DISPLAY (f
),
630 /* From-window, to-window. */
631 FRAME_X_DISPLAY_INFO (f
)->root_window
,
634 /* From-position, to-position. */
635 real_x
, real_y
, &win_x
, &win_y
,
640 if (FRAME_X_WINDOW (f
) == FRAME_OUTER_WINDOW (f
))
647 XTranslateCoordinates (FRAME_X_DISPLAY (f
),
649 /* From-window, to-window. */
650 FRAME_X_DISPLAY_INFO (f
)->root_window
,
651 FRAME_OUTER_WINDOW (f
),
653 /* From-position, to-position. */
654 real_x
, real_y
, &outer_x
, &outer_y
,
660 had_errors
= x_had_errors_p (FRAME_X_DISPLAY (f
));
663 x_uncatch_errors (FRAME_X_DISPLAY (f
), count
);
667 if (had_errors
) return;
669 f
->x_pixels_diff
= -win_x
;
670 f
->y_pixels_diff
= -win_y
;
672 FRAME_X_OUTPUT (f
)->x_pixels_outer_diff
= -outer_x
;
673 FRAME_X_OUTPUT (f
)->y_pixels_outer_diff
= -outer_y
;
682 /* Gamma-correct COLOR on frame F. */
685 gamma_correct (f
, color
)
691 color
->red
= pow (color
->red
/ 65535.0, f
->gamma
) * 65535.0 + 0.5;
692 color
->green
= pow (color
->green
/ 65535.0, f
->gamma
) * 65535.0 + 0.5;
693 color
->blue
= pow (color
->blue
/ 65535.0, f
->gamma
) * 65535.0 + 0.5;
698 /* Decide if color named COLOR_NAME is valid for use on frame F. If
699 so, return the RGB values in COLOR. If ALLOC_P is non-zero,
700 allocate the color. Value is zero if COLOR_NAME is invalid, or
701 no color could be allocated. */
704 x_defined_color (f
, color_name
, color
, alloc_p
)
711 Display
*dpy
= FRAME_X_DISPLAY (f
);
712 Colormap cmap
= FRAME_X_COLORMAP (f
);
715 success_p
= XParseColor (dpy
, cmap
, color_name
, color
);
716 if (success_p
&& alloc_p
)
717 success_p
= x_alloc_nearest_color (f
, cmap
, color
);
724 /* Return the pixel color value for color COLOR_NAME on frame F. If F
725 is a monochrome frame, return MONO_COLOR regardless of what ARG says.
726 Signal an error if color can't be allocated. */
729 x_decode_color (f
, color_name
, mono_color
)
731 Lisp_Object color_name
;
736 CHECK_STRING (color_name
);
738 #if 0 /* Don't do this. It's wrong when we're not using the default
739 colormap, it makes freeing difficult, and it's probably not
740 an important optimization. */
741 if (strcmp (SDATA (color_name
), "black") == 0)
742 return BLACK_PIX_DEFAULT (f
);
743 else if (strcmp (SDATA (color_name
), "white") == 0)
744 return WHITE_PIX_DEFAULT (f
);
747 /* Return MONO_COLOR for monochrome frames. */
748 if (FRAME_X_DISPLAY_INFO (f
)->n_planes
== 1)
751 /* x_defined_color is responsible for coping with failures
752 by looking for a near-miss. */
753 if (x_defined_color (f
, SDATA (color_name
), &cdef
, 1))
756 Fsignal (Qerror
, Fcons (build_string ("Undefined color"),
757 Fcons (color_name
, Qnil
)));
763 /* Change the `wait-for-wm' frame parameter of frame F. OLD_VALUE is
764 the previous value of that parameter, NEW_VALUE is the new value.
765 See also the comment of wait_for_wm in struct x_output. */
768 x_set_wait_for_wm (f
, new_value
, old_value
)
770 Lisp_Object new_value
, old_value
;
772 f
->output_data
.x
->wait_for_wm
= !NILP (new_value
);
777 /* Set icon from FILE for frame F. By using GTK functions the icon
778 may be any format that GdkPixbuf knows about, i.e. not just bitmaps. */
781 xg_set_icon (f
, file
)
791 found
= x_find_image_file (file
);
799 filename
= SDATA (found
);
802 pixbuf
= gdk_pixbuf_new_from_file (filename
, &err
);
806 gtk_window_set_icon (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)),
808 g_object_unref (pixbuf
);
824 /* Functions called only from `x_set_frame_param'
825 to set individual parameters.
827 If FRAME_X_WINDOW (f) is 0,
828 the frame is being created and its X-window does not exist yet.
829 In that case, just record the parameter's new value
830 in the standard place; do not attempt to change the window. */
833 x_set_foreground_color (f
, arg
, oldval
)
835 Lisp_Object arg
, oldval
;
837 struct x_output
*x
= f
->output_data
.x
;
838 unsigned long fg
, old_fg
;
840 fg
= x_decode_color (f
, arg
, BLACK_PIX_DEFAULT (f
));
841 old_fg
= x
->foreground_pixel
;
842 x
->foreground_pixel
= fg
;
844 if (FRAME_X_WINDOW (f
) != 0)
846 Display
*dpy
= FRAME_X_DISPLAY (f
);
849 XSetForeground (dpy
, x
->normal_gc
, fg
);
850 XSetBackground (dpy
, x
->reverse_gc
, fg
);
852 if (x
->cursor_pixel
== old_fg
)
854 unload_color (f
, x
->cursor_pixel
);
855 x
->cursor_pixel
= x_copy_color (f
, fg
);
856 XSetBackground (dpy
, x
->cursor_gc
, x
->cursor_pixel
);
861 update_face_from_frame_parameter (f
, Qforeground_color
, arg
);
863 if (FRAME_VISIBLE_P (f
))
867 unload_color (f
, old_fg
);
871 x_set_background_color (f
, arg
, oldval
)
873 Lisp_Object arg
, oldval
;
875 struct x_output
*x
= f
->output_data
.x
;
878 bg
= x_decode_color (f
, arg
, WHITE_PIX_DEFAULT (f
));
879 unload_color (f
, x
->background_pixel
);
880 x
->background_pixel
= bg
;
882 if (FRAME_X_WINDOW (f
) != 0)
884 Display
*dpy
= FRAME_X_DISPLAY (f
);
887 XSetBackground (dpy
, x
->normal_gc
, bg
);
888 XSetForeground (dpy
, x
->reverse_gc
, bg
);
889 XSetWindowBackground (dpy
, FRAME_X_WINDOW (f
), bg
);
890 XSetForeground (dpy
, x
->cursor_gc
, bg
);
893 xg_set_background_color (f
, bg
);
896 #ifndef USE_TOOLKIT_SCROLL_BARS /* Turns out to be annoying with
897 toolkit scroll bars. */
900 for (bar
= FRAME_SCROLL_BARS (f
);
902 bar
= XSCROLL_BAR (bar
)->next
)
904 Window window
= SCROLL_BAR_X_WINDOW (XSCROLL_BAR (bar
));
905 XSetWindowBackground (dpy
, window
, bg
);
908 #endif /* USE_TOOLKIT_SCROLL_BARS */
911 update_face_from_frame_parameter (f
, Qbackground_color
, arg
);
913 if (FRAME_VISIBLE_P (f
))
919 x_set_mouse_color (f
, arg
, oldval
)
921 Lisp_Object arg
, oldval
;
923 struct x_output
*x
= f
->output_data
.x
;
924 Display
*dpy
= FRAME_X_DISPLAY (f
);
925 Cursor cursor
, nontext_cursor
, mode_cursor
, hand_cursor
;
926 Cursor hourglass_cursor
, horizontal_drag_cursor
;
928 unsigned long pixel
= x_decode_color (f
, arg
, BLACK_PIX_DEFAULT (f
));
929 unsigned long mask_color
= x
->background_pixel
;
931 /* Don't let pointers be invisible. */
932 if (mask_color
== pixel
)
934 x_free_colors (f
, &pixel
, 1);
935 pixel
= x_copy_color (f
, x
->foreground_pixel
);
938 unload_color (f
, x
->mouse_pixel
);
939 x
->mouse_pixel
= pixel
;
943 /* It's not okay to crash if the user selects a screwy cursor. */
944 count
= x_catch_errors (dpy
);
946 if (!NILP (Vx_pointer_shape
))
948 CHECK_NUMBER (Vx_pointer_shape
);
949 cursor
= XCreateFontCursor (dpy
, XINT (Vx_pointer_shape
));
952 cursor
= XCreateFontCursor (dpy
, XC_xterm
);
953 x_check_errors (dpy
, "bad text pointer cursor: %s");
955 if (!NILP (Vx_nontext_pointer_shape
))
957 CHECK_NUMBER (Vx_nontext_pointer_shape
);
959 = XCreateFontCursor (dpy
, XINT (Vx_nontext_pointer_shape
));
962 nontext_cursor
= XCreateFontCursor (dpy
, XC_left_ptr
);
963 x_check_errors (dpy
, "bad nontext pointer cursor: %s");
965 if (!NILP (Vx_hourglass_pointer_shape
))
967 CHECK_NUMBER (Vx_hourglass_pointer_shape
);
969 = XCreateFontCursor (dpy
, XINT (Vx_hourglass_pointer_shape
));
972 hourglass_cursor
= XCreateFontCursor (dpy
, XC_watch
);
973 x_check_errors (dpy
, "bad hourglass pointer cursor: %s");
975 if (!NILP (Vx_mode_pointer_shape
))
977 CHECK_NUMBER (Vx_mode_pointer_shape
);
978 mode_cursor
= XCreateFontCursor (dpy
, XINT (Vx_mode_pointer_shape
));
981 mode_cursor
= XCreateFontCursor (dpy
, XC_xterm
);
982 x_check_errors (dpy
, "bad modeline pointer cursor: %s");
984 if (!NILP (Vx_sensitive_text_pointer_shape
))
986 CHECK_NUMBER (Vx_sensitive_text_pointer_shape
);
988 = XCreateFontCursor (dpy
, XINT (Vx_sensitive_text_pointer_shape
));
991 hand_cursor
= XCreateFontCursor (dpy
, XC_hand2
);
993 if (!NILP (Vx_window_horizontal_drag_shape
))
995 CHECK_NUMBER (Vx_window_horizontal_drag_shape
);
996 horizontal_drag_cursor
997 = XCreateFontCursor (dpy
, XINT (Vx_window_horizontal_drag_shape
));
1000 horizontal_drag_cursor
1001 = XCreateFontCursor (dpy
, XC_sb_h_double_arrow
);
1003 /* Check and report errors with the above calls. */
1004 x_check_errors (dpy
, "can't set cursor shape: %s");
1005 x_uncatch_errors (dpy
, count
);
1008 XColor fore_color
, back_color
;
1010 fore_color
.pixel
= x
->mouse_pixel
;
1011 x_query_color (f
, &fore_color
);
1012 back_color
.pixel
= mask_color
;
1013 x_query_color (f
, &back_color
);
1015 XRecolorCursor (dpy
, cursor
, &fore_color
, &back_color
);
1016 XRecolorCursor (dpy
, nontext_cursor
, &fore_color
, &back_color
);
1017 XRecolorCursor (dpy
, mode_cursor
, &fore_color
, &back_color
);
1018 XRecolorCursor (dpy
, hand_cursor
, &fore_color
, &back_color
);
1019 XRecolorCursor (dpy
, hourglass_cursor
, &fore_color
, &back_color
);
1020 XRecolorCursor (dpy
, horizontal_drag_cursor
, &fore_color
, &back_color
);
1023 if (FRAME_X_WINDOW (f
) != 0)
1024 XDefineCursor (dpy
, FRAME_X_WINDOW (f
), cursor
);
1026 if (cursor
!= x
->text_cursor
1027 && x
->text_cursor
!= 0)
1028 XFreeCursor (dpy
, x
->text_cursor
);
1029 x
->text_cursor
= cursor
;
1031 if (nontext_cursor
!= x
->nontext_cursor
1032 && x
->nontext_cursor
!= 0)
1033 XFreeCursor (dpy
, x
->nontext_cursor
);
1034 x
->nontext_cursor
= nontext_cursor
;
1036 if (hourglass_cursor
!= x
->hourglass_cursor
1037 && x
->hourglass_cursor
!= 0)
1038 XFreeCursor (dpy
, x
->hourglass_cursor
);
1039 x
->hourglass_cursor
= hourglass_cursor
;
1041 if (mode_cursor
!= x
->modeline_cursor
1042 && x
->modeline_cursor
!= 0)
1043 XFreeCursor (dpy
, f
->output_data
.x
->modeline_cursor
);
1044 x
->modeline_cursor
= mode_cursor
;
1046 if (hand_cursor
!= x
->hand_cursor
1047 && x
->hand_cursor
!= 0)
1048 XFreeCursor (dpy
, x
->hand_cursor
);
1049 x
->hand_cursor
= hand_cursor
;
1051 if (horizontal_drag_cursor
!= x
->horizontal_drag_cursor
1052 && x
->horizontal_drag_cursor
!= 0)
1053 XFreeCursor (dpy
, x
->horizontal_drag_cursor
);
1054 x
->horizontal_drag_cursor
= horizontal_drag_cursor
;
1059 update_face_from_frame_parameter (f
, Qmouse_color
, arg
);
1063 x_set_cursor_color (f
, arg
, oldval
)
1065 Lisp_Object arg
, oldval
;
1067 unsigned long fore_pixel
, pixel
;
1068 int fore_pixel_allocated_p
= 0, pixel_allocated_p
= 0;
1069 struct x_output
*x
= f
->output_data
.x
;
1071 if (!NILP (Vx_cursor_fore_pixel
))
1073 fore_pixel
= x_decode_color (f
, Vx_cursor_fore_pixel
,
1074 WHITE_PIX_DEFAULT (f
));
1075 fore_pixel_allocated_p
= 1;
1078 fore_pixel
= x
->background_pixel
;
1080 pixel
= x_decode_color (f
, arg
, BLACK_PIX_DEFAULT (f
));
1081 pixel_allocated_p
= 1;
1083 /* Make sure that the cursor color differs from the background color. */
1084 if (pixel
== x
->background_pixel
)
1086 if (pixel_allocated_p
)
1088 x_free_colors (f
, &pixel
, 1);
1089 pixel_allocated_p
= 0;
1092 pixel
= x
->mouse_pixel
;
1093 if (pixel
== fore_pixel
)
1095 if (fore_pixel_allocated_p
)
1097 x_free_colors (f
, &fore_pixel
, 1);
1098 fore_pixel_allocated_p
= 0;
1100 fore_pixel
= x
->background_pixel
;
1104 unload_color (f
, x
->cursor_foreground_pixel
);
1105 if (!fore_pixel_allocated_p
)
1106 fore_pixel
= x_copy_color (f
, fore_pixel
);
1107 x
->cursor_foreground_pixel
= fore_pixel
;
1109 unload_color (f
, x
->cursor_pixel
);
1110 if (!pixel_allocated_p
)
1111 pixel
= x_copy_color (f
, pixel
);
1112 x
->cursor_pixel
= pixel
;
1114 if (FRAME_X_WINDOW (f
) != 0)
1117 XSetBackground (FRAME_X_DISPLAY (f
), x
->cursor_gc
, x
->cursor_pixel
);
1118 XSetForeground (FRAME_X_DISPLAY (f
), x
->cursor_gc
, fore_pixel
);
1121 if (FRAME_VISIBLE_P (f
))
1123 x_update_cursor (f
, 0);
1124 x_update_cursor (f
, 1);
1128 update_face_from_frame_parameter (f
, Qcursor_color
, arg
);
1131 /* Set the border-color of frame F to pixel value PIX.
1132 Note that this does not fully take effect if done before
1133 F has an x-window. */
1136 x_set_border_pixel (f
, pix
)
1140 unload_color (f
, f
->output_data
.x
->border_pixel
);
1141 f
->output_data
.x
->border_pixel
= pix
;
1143 if (FRAME_X_WINDOW (f
) != 0 && f
->border_width
> 0)
1146 XSetWindowBorder (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
1147 (unsigned long)pix
);
1150 if (FRAME_VISIBLE_P (f
))
1155 /* Set the border-color of frame F to value described by ARG.
1156 ARG can be a string naming a color.
1157 The border-color is used for the border that is drawn by the X server.
1158 Note that this does not fully take effect if done before
1159 F has an x-window; it must be redone when the window is created.
1161 Note: this is done in two routines because of the way X10 works.
1163 Note: under X11, this is normally the province of the window manager,
1164 and so emacs' border colors may be overridden. */
1167 x_set_border_color (f
, arg
, oldval
)
1169 Lisp_Object arg
, oldval
;
1174 pix
= x_decode_color (f
, arg
, BLACK_PIX_DEFAULT (f
));
1175 x_set_border_pixel (f
, pix
);
1176 update_face_from_frame_parameter (f
, Qborder_color
, arg
);
1181 x_set_cursor_type (f
, arg
, oldval
)
1183 Lisp_Object arg
, oldval
;
1185 set_frame_cursor_types (f
, arg
);
1187 /* Make sure the cursor gets redrawn. */
1188 cursor_type_changed
= 1;
1192 x_set_icon_type (f
, arg
, oldval
)
1194 Lisp_Object arg
, oldval
;
1200 if (STRINGP (oldval
) && EQ (Fstring_equal (oldval
, arg
), Qt
))
1203 else if (!STRINGP (oldval
) && EQ (oldval
, Qnil
) == EQ (arg
, Qnil
))
1208 result
= x_text_icon (f
,
1209 (char *) SDATA ((!NILP (f
->icon_name
)
1213 result
= x_bitmap_icon (f
, arg
);
1218 error ("No icon window available");
1221 XFlush (FRAME_X_DISPLAY (f
));
1226 x_set_icon_name (f
, arg
, oldval
)
1228 Lisp_Object arg
, oldval
;
1234 if (STRINGP (oldval
) && EQ (Fstring_equal (oldval
, arg
), Qt
))
1237 else if (!STRINGP (oldval
) && EQ (oldval
, Qnil
) == EQ (arg
, Qnil
))
1242 if (f
->output_data
.x
->icon_bitmap
!= 0)
1247 result
= x_text_icon (f
,
1248 (char *) SDATA ((!NILP (f
->icon_name
)
1257 error ("No icon window available");
1260 XFlush (FRAME_X_DISPLAY (f
));
1266 x_set_menu_bar_lines (f
, value
, oldval
)
1268 Lisp_Object value
, oldval
;
1271 #if ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK)
1272 int olines
= FRAME_MENU_BAR_LINES (f
);
1275 /* Right now, menu bars don't work properly in minibuf-only frames;
1276 most of the commands try to apply themselves to the minibuffer
1277 frame itself, and get an error because you can't switch buffers
1278 in or split the minibuffer window. */
1279 if (FRAME_MINIBUF_ONLY_P (f
))
1282 if (INTEGERP (value
))
1283 nlines
= XINT (value
);
1287 /* Make sure we redisplay all windows in this frame. */
1288 windows_or_buffers_changed
++;
1290 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
1291 FRAME_MENU_BAR_LINES (f
) = 0;
1294 FRAME_EXTERNAL_MENU_BAR (f
) = 1;
1295 if (FRAME_X_P (f
) && f
->output_data
.x
->menubar_widget
== 0)
1296 /* Make sure next redisplay shows the menu bar. */
1297 XWINDOW (FRAME_SELECTED_WINDOW (f
))->update_mode_line
= Qt
;
1301 if (FRAME_EXTERNAL_MENU_BAR (f
) == 1)
1302 free_frame_menubar (f
);
1303 FRAME_EXTERNAL_MENU_BAR (f
) = 0;
1305 f
->output_data
.x
->menubar_widget
= 0;
1307 #else /* not USE_X_TOOLKIT && not USE_GTK */
1308 FRAME_MENU_BAR_LINES (f
) = nlines
;
1309 change_window_heights (f
->root_window
, nlines
- olines
);
1310 #endif /* not USE_X_TOOLKIT */
1315 /* Set the number of lines used for the tool bar of frame F to VALUE.
1316 VALUE not an integer, or < 0 means set the lines to zero. OLDVAL
1317 is the old number of tool bar lines. This function changes the
1318 height of all windows on frame F to match the new tool bar height.
1319 The frame's height doesn't change. */
1322 x_set_tool_bar_lines (f
, value
, oldval
)
1324 Lisp_Object value
, oldval
;
1326 int delta
, nlines
, root_height
;
1327 Lisp_Object root_window
;
1329 /* Treat tool bars like menu bars. */
1330 if (FRAME_MINIBUF_ONLY_P (f
))
1333 /* Use VALUE only if an integer >= 0. */
1334 if (INTEGERP (value
) && XINT (value
) >= 0)
1335 nlines
= XFASTINT (value
);
1340 FRAME_TOOL_BAR_LINES (f
) = 0;
1343 FRAME_EXTERNAL_TOOL_BAR (f
) = 1;
1344 if (FRAME_X_P (f
) && f
->output_data
.x
->toolbar_widget
== 0)
1345 /* Make sure next redisplay shows the tool bar. */
1346 XWINDOW (FRAME_SELECTED_WINDOW (f
))->update_mode_line
= Qt
;
1347 update_frame_tool_bar (f
);
1351 if (FRAME_EXTERNAL_TOOL_BAR (f
))
1352 free_frame_tool_bar (f
);
1353 FRAME_EXTERNAL_TOOL_BAR (f
) = 0;
1359 /* Make sure we redisplay all windows in this frame. */
1360 ++windows_or_buffers_changed
;
1362 delta
= nlines
- FRAME_TOOL_BAR_LINES (f
);
1364 /* Don't resize the tool-bar to more than we have room for. */
1365 root_window
= FRAME_ROOT_WINDOW (f
);
1366 root_height
= WINDOW_TOTAL_LINES (XWINDOW (root_window
));
1367 if (root_height
- delta
< 1)
1369 delta
= root_height
- 1;
1370 nlines
= FRAME_TOOL_BAR_LINES (f
) + delta
;
1373 FRAME_TOOL_BAR_LINES (f
) = nlines
;
1374 change_window_heights (root_window
, delta
);
1377 /* We also have to make sure that the internal border at the top of
1378 the frame, below the menu bar or tool bar, is redrawn when the
1379 tool bar disappears. This is so because the internal border is
1380 below the tool bar if one is displayed, but is below the menu bar
1381 if there isn't a tool bar. The tool bar draws into the area
1382 below the menu bar. */
1383 if (FRAME_X_WINDOW (f
) && FRAME_TOOL_BAR_LINES (f
) == 0)
1387 clear_current_matrices (f
);
1388 updating_frame
= NULL
;
1391 /* If the tool bar gets smaller, the internal border below it
1392 has to be cleared. It was formerly part of the display
1393 of the larger tool bar, and updating windows won't clear it. */
1396 int height
= FRAME_INTERNAL_BORDER_WIDTH (f
);
1397 int width
= FRAME_PIXEL_WIDTH (f
);
1398 int y
= nlines
* FRAME_LINE_HEIGHT (f
);
1400 /* height can be zero here. */
1401 if (height
> 0 && width
> 0)
1404 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
1405 0, y
, width
, height
, False
);
1409 if (WINDOWP (f
->tool_bar_window
))
1410 clear_glyph_matrix (XWINDOW (f
->tool_bar_window
)->current_matrix
);
1415 /* Set the foreground color for scroll bars on frame F to VALUE.
1416 VALUE should be a string, a color name. If it isn't a string or
1417 isn't a valid color name, do nothing. OLDVAL is the old value of
1418 the frame parameter. */
1421 x_set_scroll_bar_foreground (f
, value
, oldval
)
1423 Lisp_Object value
, oldval
;
1425 unsigned long pixel
;
1427 if (STRINGP (value
))
1428 pixel
= x_decode_color (f
, value
, BLACK_PIX_DEFAULT (f
));
1432 if (f
->output_data
.x
->scroll_bar_foreground_pixel
!= -1)
1433 unload_color (f
, f
->output_data
.x
->scroll_bar_foreground_pixel
);
1435 f
->output_data
.x
->scroll_bar_foreground_pixel
= pixel
;
1436 if (FRAME_X_WINDOW (f
) && FRAME_VISIBLE_P (f
))
1438 /* Remove all scroll bars because they have wrong colors. */
1439 if (condemn_scroll_bars_hook
)
1440 (*condemn_scroll_bars_hook
) (f
);
1441 if (judge_scroll_bars_hook
)
1442 (*judge_scroll_bars_hook
) (f
);
1444 update_face_from_frame_parameter (f
, Qscroll_bar_foreground
, value
);
1450 /* Set the background color for scroll bars on frame F to VALUE VALUE
1451 should be a string, a color name. If it isn't a string or isn't a
1452 valid color name, do nothing. OLDVAL is the old value of the frame
1456 x_set_scroll_bar_background (f
, value
, oldval
)
1458 Lisp_Object value
, oldval
;
1460 unsigned long pixel
;
1462 if (STRINGP (value
))
1463 pixel
= x_decode_color (f
, value
, WHITE_PIX_DEFAULT (f
));
1467 if (f
->output_data
.x
->scroll_bar_background_pixel
!= -1)
1468 unload_color (f
, f
->output_data
.x
->scroll_bar_background_pixel
);
1470 #ifdef USE_TOOLKIT_SCROLL_BARS
1471 /* Scrollbar shadow colors. */
1472 if (f
->output_data
.x
->scroll_bar_top_shadow_pixel
!= -1)
1474 unload_color (f
, f
->output_data
.x
->scroll_bar_top_shadow_pixel
);
1475 f
->output_data
.x
->scroll_bar_top_shadow_pixel
= -1;
1477 if (f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
!= -1)
1479 unload_color (f
, f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
);
1480 f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
= -1;
1482 #endif /* USE_TOOLKIT_SCROLL_BARS */
1484 f
->output_data
.x
->scroll_bar_background_pixel
= pixel
;
1485 if (FRAME_X_WINDOW (f
) && FRAME_VISIBLE_P (f
))
1487 /* Remove all scroll bars because they have wrong colors. */
1488 if (condemn_scroll_bars_hook
)
1489 (*condemn_scroll_bars_hook
) (f
);
1490 if (judge_scroll_bars_hook
)
1491 (*judge_scroll_bars_hook
) (f
);
1493 update_face_from_frame_parameter (f
, Qscroll_bar_background
, value
);
1499 /* Encode Lisp string STRING as a text in a format appropriate for
1500 XICCC (X Inter Client Communication Conventions).
1502 If STRING contains only ASCII characters, do no conversion and
1503 return the string data of STRING. Otherwise, encode the text by
1504 CODING_SYSTEM, and return a newly allocated memory area which
1505 should be freed by `xfree' by a caller.
1507 SELECTIONP non-zero means the string is being encoded for an X
1508 selection, so it is safe to run pre-write conversions (which
1511 Store the byte length of resulting text in *TEXT_BYTES.
1513 If the text contains only ASCII and Latin-1, store 1 in *STRING_P,
1514 which means that the `encoding' of the result can be `STRING'.
1515 Otherwise store 0 in *STRINGP, which means that the `encoding' of
1516 the result should be `COMPOUND_TEXT'. */
1519 x_encode_text (string
, coding_system
, selectionp
, text_bytes
, stringp
)
1520 Lisp_Object string
, coding_system
;
1521 int *text_bytes
, *stringp
;
1524 unsigned char *str
= SDATA (string
);
1525 int chars
= SCHARS (string
);
1526 int bytes
= SBYTES (string
);
1530 struct coding_system coding
;
1531 extern Lisp_Object Qcompound_text_with_extensions
;
1533 charset_info
= find_charset_in_text (str
, chars
, bytes
, NULL
, Qnil
);
1534 if (charset_info
== 0)
1536 /* No multibyte character in OBJ. We need not encode it. */
1537 *text_bytes
= bytes
;
1542 setup_coding_system (coding_system
, &coding
);
1544 && SYMBOLP (coding
.pre_write_conversion
)
1545 && !NILP (Ffboundp (coding
.pre_write_conversion
)))
1547 string
= run_pre_post_conversion_on_str (string
, &coding
, 1);
1548 str
= SDATA (string
);
1549 chars
= SCHARS (string
);
1550 bytes
= SBYTES (string
);
1552 coding
.src_multibyte
= 1;
1553 coding
.dst_multibyte
= 0;
1554 coding
.mode
|= CODING_MODE_LAST_BLOCK
;
1555 if (coding
.type
== coding_type_iso2022
)
1556 coding
.flags
|= CODING_FLAG_ISO_SAFE
;
1557 /* We suppress producing escape sequences for composition. */
1558 coding
.composing
= COMPOSITION_DISABLED
;
1559 bufsize
= encoding_buffer_size (&coding
, bytes
);
1560 buf
= (unsigned char *) xmalloc (bufsize
);
1561 encode_coding (&coding
, str
, buf
, bytes
, bufsize
);
1562 *text_bytes
= coding
.produced
;
1563 *stringp
= (charset_info
== 1
1564 || (!EQ (coding_system
, Qcompound_text
)
1565 && !EQ (coding_system
, Qcompound_text_with_extensions
)));
1570 /* Set the WM name to NAME for frame F. Also set the icon name.
1571 If the frame already has an icon name, use that, otherwise set the
1572 icon name to NAME. */
1575 x_set_name_internal (f
, name
)
1579 if (FRAME_X_WINDOW (f
))
1584 XTextProperty text
, icon
;
1586 int do_free_icon_value
= 0, do_free_text_value
= 0;
1587 Lisp_Object coding_system
;
1589 coding_system
= Qcompound_text
;
1590 /* Note: Encoding strategy
1592 We encode NAME by compound-text and use "COMPOUND-TEXT" in
1593 text.encoding. But, there are non-internationalized window
1594 managers which don't support that encoding. So, if NAME
1595 contains only ASCII and 8859-1 characters, encode it by
1596 iso-latin-1, and use "STRING" in text.encoding hoping that
1597 such window managers at least analyze this format correctly,
1598 i.e. treat 8-bit bytes as 8859-1 characters.
1600 We may also be able to use "UTF8_STRING" in text.encoding
1601 in the future which can encode all Unicode characters.
1602 But, for the moment, there's no way to know that the
1603 current window manager supports it or not. */
1604 text
.value
= x_encode_text (name
, coding_system
, 0, &bytes
, &stringp
);
1605 text
.encoding
= (stringp
? XA_STRING
1606 : FRAME_X_DISPLAY_INFO (f
)->Xatom_COMPOUND_TEXT
);
1608 text
.nitems
= bytes
;
1610 /* Check early, because ENCODE_UTF_8 below may GC and name may be
1612 do_free_text_value
= text
.value
!= SDATA (name
);
1614 if (NILP (f
->icon_name
))
1620 /* See the above comment "Note: Encoding strategy". */
1621 icon
.value
= x_encode_text (f
->icon_name
, coding_system
, 0,
1623 icon
.encoding
= (stringp
? XA_STRING
1624 : FRAME_X_DISPLAY_INFO (f
)->Xatom_COMPOUND_TEXT
);
1626 icon
.nitems
= bytes
;
1627 do_free_icon_value
= icon
.value
!= SDATA (f
->icon_name
);
1631 gtk_window_set_title (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)),
1632 SDATA (ENCODE_UTF_8 (name
)));
1633 #else /* not USE_GTK */
1634 XSetWMName (FRAME_X_DISPLAY (f
), FRAME_OUTER_WINDOW (f
), &text
);
1635 #endif /* not USE_GTK */
1637 XSetWMIconName (FRAME_X_DISPLAY (f
), FRAME_OUTER_WINDOW (f
), &icon
);
1639 if (do_free_icon_value
)
1641 if (do_free_text_value
)
1644 #else /* not HAVE_X11R4 */
1645 XSetIconName (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
1647 XStoreName (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
1649 #endif /* not HAVE_X11R4 */
1654 /* Change the name of frame F to NAME. If NAME is nil, set F's name to
1657 If EXPLICIT is non-zero, that indicates that lisp code is setting the
1658 name; if NAME is a string, set F's name to NAME and set
1659 F->explicit_name; if NAME is Qnil, then clear F->explicit_name.
1661 If EXPLICIT is zero, that indicates that Emacs redisplay code is
1662 suggesting a new name, which lisp code should override; if
1663 F->explicit_name is set, ignore the new name; otherwise, set it. */
1666 x_set_name (f
, name
, explicit)
1671 /* Make sure that requests from lisp code override requests from
1672 Emacs redisplay code. */
1675 /* If we're switching from explicit to implicit, we had better
1676 update the mode lines and thereby update the title. */
1677 if (f
->explicit_name
&& NILP (name
))
1678 update_mode_lines
= 1;
1680 f
->explicit_name
= ! NILP (name
);
1682 else if (f
->explicit_name
)
1685 /* If NAME is nil, set the name to the x_id_name. */
1688 /* Check for no change needed in this very common case
1689 before we do any consing. */
1690 if (!strcmp (FRAME_X_DISPLAY_INFO (f
)->x_id_name
,
1693 name
= build_string (FRAME_X_DISPLAY_INFO (f
)->x_id_name
);
1696 CHECK_STRING (name
);
1698 /* Don't change the name if it's already NAME. */
1699 if (! NILP (Fstring_equal (name
, f
->name
)))
1704 /* For setting the frame title, the title parameter should override
1705 the name parameter. */
1706 if (! NILP (f
->title
))
1709 x_set_name_internal (f
, name
);
1712 /* This function should be called when the user's lisp code has
1713 specified a name for the frame; the name will override any set by the
1716 x_explicitly_set_name (f
, arg
, oldval
)
1718 Lisp_Object arg
, oldval
;
1720 x_set_name (f
, arg
, 1);
1723 /* This function should be called by Emacs redisplay code to set the
1724 name; names set this way will never override names set by the user's
1727 x_implicitly_set_name (f
, arg
, oldval
)
1729 Lisp_Object arg
, oldval
;
1731 x_set_name (f
, arg
, 0);
1734 /* Change the title of frame F to NAME.
1735 If NAME is nil, use the frame name as the title.
1737 If EXPLICIT is non-zero, that indicates that lisp code is setting the
1738 name; if NAME is a string, set F's name to NAME and set
1739 F->explicit_name; if NAME is Qnil, then clear F->explicit_name.
1741 If EXPLICIT is zero, that indicates that Emacs redisplay code is
1742 suggesting a new name, which lisp code should override; if
1743 F->explicit_name is set, ignore the new name; otherwise, set it. */
1746 x_set_title (f
, name
, old_name
)
1748 Lisp_Object name
, old_name
;
1750 /* Don't change the title if it's already NAME. */
1751 if (EQ (name
, f
->title
))
1754 update_mode_lines
= 1;
1761 CHECK_STRING (name
);
1763 x_set_name_internal (f
, name
);
1767 x_set_scroll_bar_default_width (f
)
1770 int wid
= FRAME_COLUMN_WIDTH (f
);
1772 #ifdef USE_TOOLKIT_SCROLL_BARS
1773 /* A minimum width of 14 doesn't look good for toolkit scroll bars. */
1774 int width
= 16 + 2 * VERTICAL_SCROLL_BAR_WIDTH_TRIM
;
1775 FRAME_CONFIG_SCROLL_BAR_COLS (f
) = (width
+ wid
- 1) / wid
;
1776 FRAME_CONFIG_SCROLL_BAR_WIDTH (f
) = width
;
1778 /* Make the actual width at least 14 pixels and a multiple of a
1780 FRAME_CONFIG_SCROLL_BAR_COLS (f
) = (14 + wid
- 1) / wid
;
1782 /* Use all of that space (aside from required margins) for the
1784 FRAME_CONFIG_SCROLL_BAR_WIDTH (f
) = 0;
1789 /* Record in frame F the specified or default value according to ALIST
1790 of the parameter named PROP (a Lisp symbol). If no value is
1791 specified for PROP, look for an X default for XPROP on the frame
1792 named NAME. If that is not found either, use the value DEFLT. */
1795 x_default_scroll_bar_color_parameter (f
, alist
, prop
, xprop
, xclass
,
1804 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
1807 tem
= x_get_arg (dpyinfo
, alist
, prop
, xprop
, xclass
, RES_TYPE_STRING
);
1808 if (EQ (tem
, Qunbound
))
1810 #ifdef USE_TOOLKIT_SCROLL_BARS
1812 /* See if an X resource for the scroll bar color has been
1814 tem
= display_x_get_resource (dpyinfo
,
1815 build_string (foreground_p
1819 build_string ("verticalScrollBar"),
1823 /* If nothing has been specified, scroll bars will use a
1824 toolkit-dependent default. Because these defaults are
1825 difficult to get at without actually creating a scroll
1826 bar, use nil to indicate that no color has been
1831 #else /* not USE_TOOLKIT_SCROLL_BARS */
1835 #endif /* not USE_TOOLKIT_SCROLL_BARS */
1838 x_set_frame_parameters (f
, Fcons (Fcons (prop
, tem
), Qnil
));
1844 #if !defined (HAVE_X11R4) && !defined (HAVE_XSETWMPROTOCOLS)
1847 XSetWMProtocols (dpy
, w
, protocols
, count
)
1854 prop
= XInternAtom (dpy
, "WM_PROTOCOLS", False
);
1855 if (prop
== None
) return False
;
1856 XChangeProperty (dpy
, w
, prop
, XA_ATOM
, 32, PropModeReplace
,
1857 (unsigned char *) protocols
, count
);
1860 #endif /* not HAVE_X11R4 && not HAVE_XSETWMPROTOCOLS */
1862 #ifdef USE_X_TOOLKIT
1864 /* If the WM_PROTOCOLS property does not already contain WM_TAKE_FOCUS,
1865 WM_DELETE_WINDOW, and WM_SAVE_YOURSELF, then add them. (They may
1866 already be present because of the toolkit (Motif adds some of them,
1867 for example, but Xt doesn't). */
1870 hack_wm_protocols (f
, widget
)
1874 Display
*dpy
= XtDisplay (widget
);
1875 Window w
= XtWindow (widget
);
1876 int need_delete
= 1;
1883 unsigned char *catoms
;
1885 unsigned long nitems
= 0;
1886 unsigned long bytes_after
;
1888 if ((XGetWindowProperty (dpy
, w
,
1889 FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_protocols
,
1890 (long)0, (long)100, False
, XA_ATOM
,
1891 &type
, &format
, &nitems
, &bytes_after
,
1894 && format
== 32 && type
== XA_ATOM
)
1896 Atom
*atoms
= (Atom
*) catoms
;
1901 == FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_delete_window
)
1903 else if (atoms
[nitems
]
1904 == FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_take_focus
)
1906 else if (atoms
[nitems
]
1907 == FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_save_yourself
)
1918 props
[count
++] = FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_delete_window
;
1920 props
[count
++] = FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_take_focus
;
1922 props
[count
++] = FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_save_yourself
;
1924 XChangeProperty (dpy
, w
, FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_protocols
,
1925 XA_ATOM
, 32, PropModeAppend
,
1926 (unsigned char *) props
, count
);
1934 /* Support routines for XIC (X Input Context). */
1938 static XFontSet xic_create_xfontset
P_ ((struct frame
*, char *));
1939 static XIMStyle best_xim_style
P_ ((XIMStyles
*, XIMStyles
*));
1942 /* Supported XIM styles, ordered by preference. */
1944 static XIMStyle supported_xim_styles
[] =
1946 XIMPreeditPosition
| XIMStatusArea
,
1947 XIMPreeditPosition
| XIMStatusNothing
,
1948 XIMPreeditPosition
| XIMStatusNone
,
1949 XIMPreeditNothing
| XIMStatusArea
,
1950 XIMPreeditNothing
| XIMStatusNothing
,
1951 XIMPreeditNothing
| XIMStatusNone
,
1952 XIMPreeditNone
| XIMStatusArea
,
1953 XIMPreeditNone
| XIMStatusNothing
,
1954 XIMPreeditNone
| XIMStatusNone
,
1959 /* Create an X fontset on frame F with base font name BASE_FONTNAME. */
1961 char xic_defaut_fontset
[] = "-*-*-*-r-normal--14-*-*-*-*-*-*-*";
1963 /* Create an Xt fontset spec from the name of a base font.
1964 If `motif' is True use the Motif syntax. */
1966 xic_create_fontsetname (base_fontname
, motif
)
1967 char *base_fontname
;
1970 const char *sep
= motif
? ";" : ",";
1973 /* Make a fontset name from the base font name. */
1974 if (xic_defaut_fontset
== base_fontname
)
1975 { /* There is no base font name, use the default. */
1976 int len
= strlen (base_fontname
) + 2;
1977 fontsetname
= xmalloc (len
);
1978 bzero (fontsetname
, len
);
1979 strcpy (fontsetname
, base_fontname
);
1983 /* Make a fontset name from the base font name.
1984 The font set will be made of the following elements:
1986 - the base font where the charset spec is replaced by -*-*.
1987 - the same but with the family also replaced with -*-*-. */
1988 char *p
= base_fontname
;
1991 for (i
= 0; *p
; p
++)
1994 { /* As the font name doesn't conform to XLFD, we can't
1995 modify it to generalize it to allcs and allfamilies.
1996 Use the specified font plus the default. */
1997 int len
= strlen (base_fontname
) + strlen (xic_defaut_fontset
) + 3;
1998 fontsetname
= xmalloc (len
);
1999 bzero (fontsetname
, len
);
2000 strcpy (fontsetname
, base_fontname
);
2001 strcat (fontsetname
, sep
);
2002 strcat (fontsetname
, xic_defaut_fontset
);
2007 char *p1
= NULL
, *p2
= NULL
;
2008 char *font_allcs
= NULL
;
2009 char *font_allfamilies
= NULL
;
2010 char *font_all
= NULL
;
2011 char *allcs
= "*-*-*-*-*-*-*";
2012 char *allfamilies
= "-*-*-";
2013 char *all
= "*-*-*-*-";
2015 for (i
= 0, p
= base_fontname
; i
< 8; p
++)
2026 /* Build the font spec that matches all charsets. */
2027 len
= p
- base_fontname
+ strlen (allcs
) + 1;
2028 font_allcs
= (char *) alloca (len
);
2029 bzero (font_allcs
, len
);
2030 bcopy (base_fontname
, font_allcs
, p
- base_fontname
);
2031 strcat (font_allcs
, allcs
);
2033 /* Build the font spec that matches all families. */
2034 len
= p
- p1
+ strlen (allcs
) + strlen (allfamilies
) + 1;
2035 font_allfamilies
= (char *) alloca (len
);
2036 bzero (font_allfamilies
, len
);
2037 strcpy (font_allfamilies
, allfamilies
);
2038 bcopy (p1
, font_allfamilies
+ strlen (allfamilies
), p
- p1
);
2039 strcat (font_allfamilies
, allcs
);
2041 /* Build the font spec that matches all. */
2042 len
= p
- p2
+ strlen (allcs
) + strlen (all
) + strlen (allfamilies
) + 1;
2043 font_all
= (char *) alloca (len
);
2044 bzero (font_all
, len
);
2045 strcpy (font_all
, allfamilies
);
2046 strcat (font_all
, all
);
2047 bcopy (p2
, font_all
+ strlen (all
) + strlen (allfamilies
), p
- p2
);
2048 strcat (font_all
, allcs
);
2050 /* Build the actual font set name. */
2051 len
= strlen (base_fontname
) + strlen (font_allcs
)
2052 + strlen (font_allfamilies
) + strlen (font_all
) + 5;
2053 fontsetname
= xmalloc (len
);
2054 bzero (fontsetname
, len
);
2055 strcpy (fontsetname
, base_fontname
);
2056 strcat (fontsetname
, sep
);
2057 strcat (fontsetname
, font_allcs
);
2058 strcat (fontsetname
, sep
);
2059 strcat (fontsetname
, font_allfamilies
);
2060 strcat (fontsetname
, sep
);
2061 strcat (fontsetname
, font_all
);
2065 strcat (fontsetname
, ":");
2070 xic_create_xfontset (f
, base_fontname
)
2072 char *base_fontname
;
2074 XFontSet xfs
= NULL
;
2075 char **missing_list
= NULL
;
2078 Lisp_Object rest
, frame
;
2081 base_fontname
= xic_defaut_fontset
;
2083 /* See if there is another frame already using same fontset. */
2084 FOR_EACH_FRAME (rest
, frame
)
2086 struct frame
*cf
= XFRAME (frame
);
2087 if (cf
!= f
&& FRAME_LIVE_P (f
) && FRAME_X_P (cf
)
2088 && FRAME_X_DISPLAY_INFO (cf
) == FRAME_X_DISPLAY_INFO (f
)
2089 && FRAME_XIC_BASE_FONTNAME (cf
)
2090 && !strcmp (FRAME_XIC_BASE_FONTNAME (cf
), base_fontname
))
2092 xfs
= FRAME_XIC_FONTSET (cf
);
2099 char *fontsetname
= xic_create_fontsetname (base_fontname
, False
);
2102 xfs
= XCreateFontSet (FRAME_X_DISPLAY (f
),
2103 fontsetname
, &missing_list
,
2104 &missing_count
, &def_string
);
2106 XFreeStringList (missing_list
);
2107 xfree (fontsetname
);
2110 if (FRAME_XIC_BASE_FONTNAME (f
))
2111 xfree (FRAME_XIC_BASE_FONTNAME (f
));
2112 FRAME_XIC_BASE_FONTNAME (f
) = xstrdup (base_fontname
);
2114 /* No need to free def_string. */
2118 /* Free the X fontset of frame F if it is the last frame using it. */
2121 xic_free_xfontset (f
)
2124 Lisp_Object rest
, frame
;
2127 if (!FRAME_XIC_FONTSET (f
))
2130 /* See if there is another frame sharing the same fontset. */
2131 FOR_EACH_FRAME (rest
, frame
)
2133 struct frame
*cf
= XFRAME (frame
);
2134 if (cf
!= f
&& FRAME_LIVE_P (f
) && FRAME_X_P (cf
)
2135 && FRAME_X_DISPLAY_INFO (cf
) == FRAME_X_DISPLAY_INFO (f
)
2136 && FRAME_XIC_FONTSET (cf
) == FRAME_XIC_FONTSET (f
))
2144 /* The fontset is not used anymore. It is safe to free it. */
2145 XFreeFontSet (FRAME_X_DISPLAY (f
), FRAME_XIC_FONTSET (f
));
2147 if (FRAME_XIC_BASE_FONTNAME (f
))
2148 xfree (FRAME_XIC_BASE_FONTNAME (f
));
2149 FRAME_XIC_BASE_FONTNAME (f
) = NULL
;
2150 FRAME_XIC_FONTSET (f
) = NULL
;
2154 /* Value is the best input style, given user preferences USER (already
2155 checked to be supported by Emacs), and styles supported by the
2156 input method XIM. */
2159 best_xim_style (user
, xim
)
2165 for (i
= 0; i
< user
->count_styles
; ++i
)
2166 for (j
= 0; j
< xim
->count_styles
; ++j
)
2167 if (user
->supported_styles
[i
] == xim
->supported_styles
[j
])
2168 return user
->supported_styles
[i
];
2170 /* Return the default style. */
2171 return XIMPreeditNothing
| XIMStatusNothing
;
2174 /* Create XIC for frame F. */
2176 static XIMStyle xic_style
;
2179 create_frame_xic (f
)
2184 XFontSet xfs
= NULL
;
2189 /* Create X fontset. */
2190 xfs
= xic_create_xfontset
2191 (f
, (FRAME_FONTSET (f
) < 0) ? NULL
2192 : (char *) SDATA (fontset_ascii (FRAME_FONTSET (f
))));
2194 xim
= FRAME_X_XIM (f
);
2199 XVaNestedList preedit_attr
;
2200 XVaNestedList status_attr
;
2202 s_area
.x
= 0; s_area
.y
= 0; s_area
.width
= 1; s_area
.height
= 1;
2203 spot
.x
= 0; spot
.y
= 1;
2205 /* Determine XIC style. */
2208 XIMStyles supported_list
;
2209 supported_list
.count_styles
= (sizeof supported_xim_styles
2210 / sizeof supported_xim_styles
[0]);
2211 supported_list
.supported_styles
= supported_xim_styles
;
2212 xic_style
= best_xim_style (&supported_list
,
2213 FRAME_X_XIM_STYLES (f
));
2216 preedit_attr
= XVaCreateNestedList (0,
2219 FRAME_FOREGROUND_PIXEL (f
),
2221 FRAME_BACKGROUND_PIXEL (f
),
2222 (xic_style
& XIMPreeditPosition
2227 status_attr
= XVaCreateNestedList (0,
2233 FRAME_FOREGROUND_PIXEL (f
),
2235 FRAME_BACKGROUND_PIXEL (f
),
2238 xic
= XCreateIC (xim
,
2239 XNInputStyle
, xic_style
,
2240 XNClientWindow
, FRAME_X_WINDOW (f
),
2241 XNFocusWindow
, FRAME_X_WINDOW (f
),
2242 XNStatusAttributes
, status_attr
,
2243 XNPreeditAttributes
, preedit_attr
,
2245 XFree (preedit_attr
);
2246 XFree (status_attr
);
2249 FRAME_XIC (f
) = xic
;
2250 FRAME_XIC_STYLE (f
) = xic_style
;
2251 FRAME_XIC_FONTSET (f
) = xfs
;
2255 /* Destroy XIC and free XIC fontset of frame F, if any. */
2261 if (FRAME_XIC (f
) == NULL
)
2264 XDestroyIC (FRAME_XIC (f
));
2265 xic_free_xfontset (f
);
2267 FRAME_XIC (f
) = NULL
;
2271 /* Place preedit area for XIC of window W's frame to specified
2272 pixel position X/Y. X and Y are relative to window W. */
2275 xic_set_preeditarea (w
, x
, y
)
2279 struct frame
*f
= XFRAME (w
->frame
);
2283 spot
.x
= WINDOW_TO_FRAME_PIXEL_X (w
, x
) + WINDOW_LEFT_FRINGE_WIDTH (w
);
2284 spot
.y
= WINDOW_TO_FRAME_PIXEL_Y (w
, y
) + FONT_BASE (FRAME_FONT (f
));
2285 attr
= XVaCreateNestedList (0, XNSpotLocation
, &spot
, NULL
);
2286 XSetICValues (FRAME_XIC (f
), XNPreeditAttributes
, attr
, NULL
);
2291 /* Place status area for XIC in bottom right corner of frame F.. */
2294 xic_set_statusarea (f
)
2297 XIC xic
= FRAME_XIC (f
);
2302 /* Negotiate geometry of status area. If input method has existing
2303 status area, use its current size. */
2304 area
.x
= area
.y
= area
.width
= area
.height
= 0;
2305 attr
= XVaCreateNestedList (0, XNAreaNeeded
, &area
, NULL
);
2306 XSetICValues (xic
, XNStatusAttributes
, attr
, NULL
);
2309 attr
= XVaCreateNestedList (0, XNAreaNeeded
, &needed
, NULL
);
2310 XGetICValues (xic
, XNStatusAttributes
, attr
, NULL
);
2313 if (needed
->width
== 0) /* Use XNArea instead of XNAreaNeeded */
2315 attr
= XVaCreateNestedList (0, XNArea
, &needed
, NULL
);
2316 XGetICValues (xic
, XNStatusAttributes
, attr
, NULL
);
2320 area
.width
= needed
->width
;
2321 area
.height
= needed
->height
;
2322 area
.x
= FRAME_PIXEL_WIDTH (f
) - area
.width
- FRAME_INTERNAL_BORDER_WIDTH (f
);
2323 area
.y
= (FRAME_PIXEL_HEIGHT (f
) - area
.height
2324 - FRAME_MENUBAR_HEIGHT (f
)
2325 - FRAME_TOOLBAR_HEIGHT (f
)
2326 - FRAME_INTERNAL_BORDER_WIDTH (f
));
2329 attr
= XVaCreateNestedList (0, XNArea
, &area
, NULL
);
2330 XSetICValues (xic
, XNStatusAttributes
, attr
, NULL
);
2335 /* Set X fontset for XIC of frame F, using base font name
2336 BASE_FONTNAME. Called when a new Emacs fontset is chosen. */
2339 xic_set_xfontset (f
, base_fontname
)
2341 char *base_fontname
;
2346 xic_free_xfontset (f
);
2348 xfs
= xic_create_xfontset (f
, base_fontname
);
2350 attr
= XVaCreateNestedList (0, XNFontSet
, xfs
, NULL
);
2351 if (FRAME_XIC_STYLE (f
) & XIMPreeditPosition
)
2352 XSetICValues (FRAME_XIC (f
), XNPreeditAttributes
, attr
, NULL
);
2353 if (FRAME_XIC_STYLE (f
) & XIMStatusArea
)
2354 XSetICValues (FRAME_XIC (f
), XNStatusAttributes
, attr
, NULL
);
2357 FRAME_XIC_FONTSET (f
) = xfs
;
2360 #endif /* HAVE_X_I18N */
2364 #ifdef USE_X_TOOLKIT
2366 /* Create and set up the X widget for frame F. */
2369 x_window (f
, window_prompting
, minibuffer_only
)
2371 long window_prompting
;
2372 int minibuffer_only
;
2374 XClassHint class_hints
;
2375 XSetWindowAttributes attributes
;
2376 unsigned long attribute_mask
;
2377 Widget shell_widget
;
2379 Widget frame_widget
;
2385 /* Use the resource name as the top-level widget name
2386 for looking up resources. Make a non-Lisp copy
2387 for the window manager, so GC relocation won't bother it.
2389 Elsewhere we specify the window name for the window manager. */
2392 char *str
= (char *) SDATA (Vx_resource_name
);
2393 f
->namebuf
= (char *) xmalloc (strlen (str
) + 1);
2394 strcpy (f
->namebuf
, str
);
2398 XtSetArg (al
[ac
], XtNallowShellResize
, 1); ac
++;
2399 XtSetArg (al
[ac
], XtNinput
, 1); ac
++;
2400 XtSetArg (al
[ac
], XtNmappedWhenManaged
, 0); ac
++;
2401 XtSetArg (al
[ac
], XtNborderWidth
, f
->border_width
); ac
++;
2402 XtSetArg (al
[ac
], XtNvisual
, FRAME_X_VISUAL (f
)); ac
++;
2403 XtSetArg (al
[ac
], XtNdepth
, FRAME_X_DISPLAY_INFO (f
)->n_planes
); ac
++;
2404 XtSetArg (al
[ac
], XtNcolormap
, FRAME_X_COLORMAP (f
)); ac
++;
2405 shell_widget
= XtAppCreateShell (f
->namebuf
, EMACS_CLASS
,
2406 applicationShellWidgetClass
,
2407 FRAME_X_DISPLAY (f
), al
, ac
);
2409 f
->output_data
.x
->widget
= shell_widget
;
2410 /* maybe_set_screen_title_format (shell_widget); */
2412 pane_widget
= lw_create_widget ("main", "pane", widget_id_tick
++,
2413 (widget_value
*) NULL
,
2414 shell_widget
, False
,
2418 (lw_callback
) NULL
);
2421 XtSetArg (al
[ac
], XtNvisual
, FRAME_X_VISUAL (f
)); ac
++;
2422 XtSetArg (al
[ac
], XtNdepth
, FRAME_X_DISPLAY_INFO (f
)->n_planes
); ac
++;
2423 XtSetArg (al
[ac
], XtNcolormap
, FRAME_X_COLORMAP (f
)); ac
++;
2424 XtSetValues (pane_widget
, al
, ac
);
2425 f
->output_data
.x
->column_widget
= pane_widget
;
2427 /* mappedWhenManaged to false tells to the paned window to not map/unmap
2428 the emacs screen when changing menubar. This reduces flickering. */
2431 XtSetArg (al
[ac
], XtNmappedWhenManaged
, 0); ac
++;
2432 XtSetArg (al
[ac
], XtNshowGrip
, 0); ac
++;
2433 XtSetArg (al
[ac
], XtNallowResize
, 1); ac
++;
2434 XtSetArg (al
[ac
], XtNresizeToPreferred
, 1); ac
++;
2435 XtSetArg (al
[ac
], XtNemacsFrame
, f
); ac
++;
2436 XtSetArg (al
[ac
], XtNvisual
, FRAME_X_VISUAL (f
)); ac
++;
2437 XtSetArg (al
[ac
], XtNdepth
, FRAME_X_DISPLAY_INFO (f
)->n_planes
); ac
++;
2438 XtSetArg (al
[ac
], XtNcolormap
, FRAME_X_COLORMAP (f
)); ac
++;
2439 frame_widget
= XtCreateWidget (f
->namebuf
, emacsFrameClass
, pane_widget
,
2442 f
->output_data
.x
->edit_widget
= frame_widget
;
2444 XtManageChild (frame_widget
);
2446 /* Do some needed geometry management. */
2449 char *tem
, shell_position
[32];
2452 int extra_borders
= 0;
2454 = (f
->output_data
.x
->menubar_widget
2455 ? (f
->output_data
.x
->menubar_widget
->core
.height
2456 + f
->output_data
.x
->menubar_widget
->core
.border_width
)
2459 #if 0 /* Experimentally, we now get the right results
2460 for -geometry -0-0 without this. 24 Aug 96, rms. */
2461 if (FRAME_EXTERNAL_MENU_BAR (f
))
2464 XtVaGetValues (pane_widget
, XtNinternalBorderWidth
, &ibw
, NULL
);
2465 menubar_size
+= ibw
;
2469 f
->output_data
.x
->menubar_height
= menubar_size
;
2472 /* Motif seems to need this amount added to the sizes
2473 specified for the shell widget. The Athena/Lucid widgets don't.
2474 Both conclusions reached experimentally. -- rms. */
2475 XtVaGetValues (f
->output_data
.x
->edit_widget
, XtNinternalBorderWidth
,
2476 &extra_borders
, NULL
);
2480 /* Convert our geometry parameters into a geometry string
2482 Note that we do not specify here whether the position
2483 is a user-specified or program-specified one.
2484 We pass that information later, in x_wm_set_size_hints. */
2486 int left
= f
->left_pos
;
2487 int xneg
= window_prompting
& XNegative
;
2488 int top
= f
->top_pos
;
2489 int yneg
= window_prompting
& YNegative
;
2495 if (window_prompting
& USPosition
)
2496 sprintf (shell_position
, "=%dx%d%c%d%c%d",
2497 FRAME_PIXEL_WIDTH (f
) + extra_borders
,
2498 FRAME_PIXEL_HEIGHT (f
) + menubar_size
+ extra_borders
,
2499 (xneg
? '-' : '+'), left
,
2500 (yneg
? '-' : '+'), top
);
2503 sprintf (shell_position
, "=%dx%d",
2504 FRAME_PIXEL_WIDTH (f
) + extra_borders
,
2505 FRAME_PIXEL_HEIGHT (f
) + menubar_size
+ extra_borders
);
2507 /* Setting x and y when the position is not specified in
2508 the geometry string will set program position in the WM hints.
2509 If Emacs had just one program position, we could set it in
2510 fallback resources, but since each make-frame call can specify
2511 different program positions, this is easier. */
2512 XtSetArg (al
[ac
], XtNx
, left
); ac
++;
2513 XtSetArg (al
[ac
], XtNy
, top
); ac
++;
2517 len
= strlen (shell_position
) + 1;
2518 /* We don't free this because we don't know whether
2519 it is safe to free it while the frame exists.
2520 It isn't worth the trouble of arranging to free it
2521 when the frame is deleted. */
2522 tem
= (char *) xmalloc (len
);
2523 strncpy (tem
, shell_position
, len
);
2524 XtSetArg (al
[ac
], XtNgeometry
, tem
); ac
++;
2525 XtSetValues (shell_widget
, al
, ac
);
2528 XtManageChild (pane_widget
);
2529 XtRealizeWidget (shell_widget
);
2531 FRAME_X_WINDOW (f
) = XtWindow (frame_widget
);
2533 validate_x_resource_name ();
2535 class_hints
.res_name
= (char *) SDATA (Vx_resource_name
);
2536 class_hints
.res_class
= (char *) SDATA (Vx_resource_class
);
2537 XSetClassHint (FRAME_X_DISPLAY (f
), XtWindow (shell_widget
), &class_hints
);
2540 FRAME_XIC (f
) = NULL
;
2542 create_frame_xic (f
);
2545 f
->output_data
.x
->wm_hints
.input
= True
;
2546 f
->output_data
.x
->wm_hints
.flags
|= InputHint
;
2547 XSetWMHints (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2548 &f
->output_data
.x
->wm_hints
);
2550 hack_wm_protocols (f
, shell_widget
);
2553 XtAddEventHandler (shell_widget
, 0, True
, _XEditResCheckMessages
, 0);
2556 /* Do a stupid property change to force the server to generate a
2557 PropertyNotify event so that the event_stream server timestamp will
2558 be initialized to something relevant to the time we created the window.
2560 XChangeProperty (XtDisplay (frame_widget
), XtWindow (frame_widget
),
2561 FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_protocols
,
2562 XA_ATOM
, 32, PropModeAppend
,
2563 (unsigned char*) NULL
, 0);
2565 /* Make all the standard events reach the Emacs frame. */
2566 attributes
.event_mask
= STANDARD_EVENT_SET
;
2571 /* XIM server might require some X events. */
2572 unsigned long fevent
= NoEventMask
;
2573 XGetICValues (FRAME_XIC (f
), XNFilterEvents
, &fevent
, NULL
);
2574 attributes
.event_mask
|= fevent
;
2576 #endif /* HAVE_X_I18N */
2578 attribute_mask
= CWEventMask
;
2579 XChangeWindowAttributes (XtDisplay (shell_widget
), XtWindow (shell_widget
),
2580 attribute_mask
, &attributes
);
2582 XtMapWidget (frame_widget
);
2584 /* x_set_name normally ignores requests to set the name if the
2585 requested name is the same as the current name. This is the one
2586 place where that assumption isn't correct; f->name is set, but
2587 the X server hasn't been told. */
2590 int explicit = f
->explicit_name
;
2592 f
->explicit_name
= 0;
2595 x_set_name (f
, name
, explicit);
2598 XDefineCursor (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2599 f
->output_data
.x
->text_cursor
);
2603 /* This is a no-op, except under Motif. Make sure main areas are
2604 set to something reasonable, in case we get an error later. */
2605 lw_set_main_areas (pane_widget
, 0, frame_widget
);
2608 #else /* not USE_X_TOOLKIT */
2614 if (! xg_create_frame_widgets (f
))
2615 error ("Unable to create window");
2618 FRAME_XIC (f
) = NULL
;
2622 create_frame_xic (f
);
2625 /* XIM server might require some X events. */
2626 unsigned long fevent
= NoEventMask
;
2627 XGetICValues (FRAME_XIC (f
), XNFilterEvents
, &fevent
, NULL
);
2629 if (fevent
!= NoEventMask
)
2631 XSetWindowAttributes attributes
;
2632 XWindowAttributes wattr
;
2633 unsigned long attribute_mask
;
2635 XGetWindowAttributes (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2637 attributes
.event_mask
= wattr
.your_event_mask
| fevent
;
2638 attribute_mask
= CWEventMask
;
2639 XChangeWindowAttributes (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2640 attribute_mask
, &attributes
);
2648 #else /*! USE_GTK */
2649 /* Create and set up the X window for frame F. */
2656 XClassHint class_hints
;
2657 XSetWindowAttributes attributes
;
2658 unsigned long attribute_mask
;
2660 attributes
.background_pixel
= f
->output_data
.x
->background_pixel
;
2661 attributes
.border_pixel
= f
->output_data
.x
->border_pixel
;
2662 attributes
.bit_gravity
= StaticGravity
;
2663 attributes
.backing_store
= NotUseful
;
2664 attributes
.save_under
= True
;
2665 attributes
.event_mask
= STANDARD_EVENT_SET
;
2666 attributes
.colormap
= FRAME_X_COLORMAP (f
);
2667 attribute_mask
= (CWBackPixel
| CWBorderPixel
| CWBitGravity
| CWEventMask
2672 = XCreateWindow (FRAME_X_DISPLAY (f
),
2673 f
->output_data
.x
->parent_desc
,
2676 FRAME_PIXEL_WIDTH (f
), FRAME_PIXEL_HEIGHT (f
),
2678 CopyFromParent
, /* depth */
2679 InputOutput
, /* class */
2681 attribute_mask
, &attributes
);
2686 create_frame_xic (f
);
2689 /* XIM server might require some X events. */
2690 unsigned long fevent
= NoEventMask
;
2691 XGetICValues (FRAME_XIC (f
), XNFilterEvents
, &fevent
, NULL
);
2692 attributes
.event_mask
|= fevent
;
2693 attribute_mask
= CWEventMask
;
2694 XChangeWindowAttributes (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2695 attribute_mask
, &attributes
);
2698 #endif /* HAVE_X_I18N */
2700 validate_x_resource_name ();
2702 class_hints
.res_name
= (char *) SDATA (Vx_resource_name
);
2703 class_hints
.res_class
= (char *) SDATA (Vx_resource_class
);
2704 XSetClassHint (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), &class_hints
);
2706 /* The menubar is part of the ordinary display;
2707 it does not count in addition to the height of the window. */
2708 f
->output_data
.x
->menubar_height
= 0;
2710 /* This indicates that we use the "Passive Input" input model.
2711 Unless we do this, we don't get the Focus{In,Out} events that we
2712 need to draw the cursor correctly. Accursed bureaucrats.
2713 XWhipsAndChains (FRAME_X_DISPLAY (f), IronMaiden, &TheRack); */
2715 f
->output_data
.x
->wm_hints
.input
= True
;
2716 f
->output_data
.x
->wm_hints
.flags
|= InputHint
;
2717 XSetWMHints (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2718 &f
->output_data
.x
->wm_hints
);
2719 f
->output_data
.x
->wm_hints
.icon_pixmap
= None
;
2721 /* Request "save yourself" and "delete window" commands from wm. */
2724 protocols
[0] = FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_delete_window
;
2725 protocols
[1] = FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_save_yourself
;
2726 XSetWMProtocols (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), protocols
, 2);
2729 /* x_set_name normally ignores requests to set the name if the
2730 requested name is the same as the current name. This is the one
2731 place where that assumption isn't correct; f->name is set, but
2732 the X server hasn't been told. */
2735 int explicit = f
->explicit_name
;
2737 f
->explicit_name
= 0;
2740 x_set_name (f
, name
, explicit);
2743 XDefineCursor (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2744 f
->output_data
.x
->text_cursor
);
2748 if (FRAME_X_WINDOW (f
) == 0)
2749 error ("Unable to create window");
2752 #endif /* not USE_GTK */
2753 #endif /* not USE_X_TOOLKIT */
2755 /* Verify that the icon position args for this window are valid. */
2758 x_icon_verify (f
, parms
)
2762 Lisp_Object icon_x
, icon_y
;
2764 /* Set the position of the icon. Note that twm groups all
2765 icons in an icon window. */
2766 icon_x
= x_frame_get_and_record_arg (f
, parms
, Qicon_left
, 0, 0, RES_TYPE_NUMBER
);
2767 icon_y
= x_frame_get_and_record_arg (f
, parms
, Qicon_top
, 0, 0, RES_TYPE_NUMBER
);
2768 if (!EQ (icon_x
, Qunbound
) && !EQ (icon_y
, Qunbound
))
2770 CHECK_NUMBER (icon_x
);
2771 CHECK_NUMBER (icon_y
);
2773 else if (!EQ (icon_x
, Qunbound
) || !EQ (icon_y
, Qunbound
))
2774 error ("Both left and top icon corners of icon must be specified");
2777 /* Handle the icon stuff for this window. Perhaps later we might
2778 want an x_set_icon_position which can be called interactively as
2786 Lisp_Object icon_x
, icon_y
;
2787 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
2789 /* Set the position of the icon. Note that twm groups all
2790 icons in an icon window. */
2791 icon_x
= x_frame_get_and_record_arg (f
, parms
, Qicon_left
, 0, 0, RES_TYPE_NUMBER
);
2792 icon_y
= x_frame_get_and_record_arg (f
, parms
, Qicon_top
, 0, 0, RES_TYPE_NUMBER
);
2793 if (!EQ (icon_x
, Qunbound
) && !EQ (icon_y
, Qunbound
))
2795 CHECK_NUMBER (icon_x
);
2796 CHECK_NUMBER (icon_y
);
2798 else if (!EQ (icon_x
, Qunbound
) || !EQ (icon_y
, Qunbound
))
2799 error ("Both left and top icon corners of icon must be specified");
2803 if (! EQ (icon_x
, Qunbound
))
2804 x_wm_set_icon_position (f
, XINT (icon_x
), XINT (icon_y
));
2806 /* Start up iconic or window? */
2807 x_wm_set_window_state
2808 (f
, (EQ (x_get_arg (dpyinfo
, parms
, Qvisibility
, 0, 0, RES_TYPE_SYMBOL
),
2813 x_text_icon (f
, (char *) SDATA ((!NILP (f
->icon_name
)
2820 /* Make the GCs needed for this window, setting the
2821 background, border and mouse colors; also create the
2822 mouse cursor and the gray border tile. */
2824 static char cursor_bits
[] =
2826 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
2827 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
2828 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
2829 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
2836 XGCValues gc_values
;
2840 /* Create the GCs of this frame.
2841 Note that many default values are used. */
2844 gc_values
.font
= FRAME_FONT (f
)->fid
;
2845 gc_values
.foreground
= f
->output_data
.x
->foreground_pixel
;
2846 gc_values
.background
= f
->output_data
.x
->background_pixel
;
2847 gc_values
.line_width
= 0; /* Means 1 using fast algorithm. */
2848 f
->output_data
.x
->normal_gc
2849 = XCreateGC (FRAME_X_DISPLAY (f
),
2851 GCLineWidth
| GCFont
| GCForeground
| GCBackground
,
2854 /* Reverse video style. */
2855 gc_values
.foreground
= f
->output_data
.x
->background_pixel
;
2856 gc_values
.background
= f
->output_data
.x
->foreground_pixel
;
2857 f
->output_data
.x
->reverse_gc
2858 = XCreateGC (FRAME_X_DISPLAY (f
),
2860 GCFont
| GCForeground
| GCBackground
| GCLineWidth
,
2863 /* Cursor has cursor-color background, background-color foreground. */
2864 gc_values
.foreground
= f
->output_data
.x
->background_pixel
;
2865 gc_values
.background
= f
->output_data
.x
->cursor_pixel
;
2866 gc_values
.fill_style
= FillOpaqueStippled
;
2868 = XCreateBitmapFromData (FRAME_X_DISPLAY (f
),
2869 FRAME_X_DISPLAY_INFO (f
)->root_window
,
2870 cursor_bits
, 16, 16);
2871 f
->output_data
.x
->cursor_gc
2872 = XCreateGC (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2873 (GCFont
| GCForeground
| GCBackground
2874 | GCFillStyle
/* | GCStipple */ | GCLineWidth
),
2878 f
->output_data
.x
->white_relief
.gc
= 0;
2879 f
->output_data
.x
->black_relief
.gc
= 0;
2881 /* Create the gray border tile used when the pointer is not in
2882 the frame. Since this depends on the frame's pixel values,
2883 this must be done on a per-frame basis. */
2884 f
->output_data
.x
->border_tile
2885 = (XCreatePixmapFromBitmapData
2886 (FRAME_X_DISPLAY (f
), FRAME_X_DISPLAY_INFO (f
)->root_window
,
2887 gray_bits
, gray_width
, gray_height
,
2888 f
->output_data
.x
->foreground_pixel
,
2889 f
->output_data
.x
->background_pixel
,
2890 DefaultDepth (FRAME_X_DISPLAY (f
), FRAME_X_SCREEN_NUMBER (f
))));
2896 /* Free what was was allocated in x_make_gc. */
2902 Display
*dpy
= FRAME_X_DISPLAY (f
);
2906 if (f
->output_data
.x
->normal_gc
)
2908 XFreeGC (dpy
, f
->output_data
.x
->normal_gc
);
2909 f
->output_data
.x
->normal_gc
= 0;
2912 if (f
->output_data
.x
->reverse_gc
)
2914 XFreeGC (dpy
, f
->output_data
.x
->reverse_gc
);
2915 f
->output_data
.x
->reverse_gc
= 0;
2918 if (f
->output_data
.x
->cursor_gc
)
2920 XFreeGC (dpy
, f
->output_data
.x
->cursor_gc
);
2921 f
->output_data
.x
->cursor_gc
= 0;
2924 if (f
->output_data
.x
->border_tile
)
2926 XFreePixmap (dpy
, f
->output_data
.x
->border_tile
);
2927 f
->output_data
.x
->border_tile
= 0;
2934 /* Handler for signals raised during x_create_frame and
2935 x_create_top_frame. FRAME is the frame which is partially
2939 unwind_create_frame (frame
)
2942 struct frame
*f
= XFRAME (frame
);
2944 /* If frame is ``official'', nothing to do. */
2945 if (!CONSP (Vframe_list
) || !EQ (XCAR (Vframe_list
), frame
))
2948 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
2951 x_free_frame_resources (f
);
2954 /* Check that reference counts are indeed correct. */
2955 xassert (dpyinfo
->reference_count
== dpyinfo_refcount
);
2956 xassert (dpyinfo
->image_cache
->refcount
== image_cache_refcount
);
2965 DEFUN ("x-create-frame", Fx_create_frame
, Sx_create_frame
,
2967 doc
: /* Make a new X window, which is called a "frame" in Emacs terms.
2968 Returns an Emacs frame object.
2969 ALIST is an alist of frame parameters.
2970 If the parameters specify that the frame should not have a minibuffer,
2971 and do not specify a specific minibuffer window to use,
2972 then `default-minibuffer-frame' must be a frame whose minibuffer can
2973 be shared by the new frame.
2975 This function is an internal primitive--use `make-frame' instead. */)
2980 Lisp_Object frame
, tem
;
2982 int minibuffer_only
= 0;
2983 long window_prompting
= 0;
2985 int count
= SPECPDL_INDEX ();
2986 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
2987 Lisp_Object display
;
2988 struct x_display_info
*dpyinfo
= NULL
;
2994 /* Use this general default value to start with
2995 until we know if this frame has a specified name. */
2996 Vx_resource_name
= Vinvocation_name
;
2998 display
= x_get_arg (dpyinfo
, parms
, Qdisplay
, 0, 0, RES_TYPE_STRING
);
2999 if (EQ (display
, Qunbound
))
3001 dpyinfo
= check_x_display_info (display
);
3003 kb
= dpyinfo
->kboard
;
3005 kb
= &the_only_kboard
;
3008 name
= x_get_arg (dpyinfo
, parms
, Qname
, "name", "Name", RES_TYPE_STRING
);
3010 && ! EQ (name
, Qunbound
)
3012 error ("Invalid frame name--not a string or nil");
3015 Vx_resource_name
= name
;
3017 /* See if parent window is specified. */
3018 parent
= x_get_arg (dpyinfo
, parms
, Qparent_id
, NULL
, NULL
, RES_TYPE_NUMBER
);
3019 if (EQ (parent
, Qunbound
))
3021 if (! NILP (parent
))
3022 CHECK_NUMBER (parent
);
3024 /* make_frame_without_minibuffer can run Lisp code and garbage collect. */
3025 /* No need to protect DISPLAY because that's not used after passing
3026 it to make_frame_without_minibuffer. */
3028 GCPRO4 (parms
, parent
, name
, frame
);
3029 tem
= x_get_arg (dpyinfo
, parms
, Qminibuffer
, "minibuffer", "Minibuffer",
3031 if (EQ (tem
, Qnone
) || NILP (tem
))
3032 f
= make_frame_without_minibuffer (Qnil
, kb
, display
);
3033 else if (EQ (tem
, Qonly
))
3035 f
= make_minibuffer_frame ();
3036 minibuffer_only
= 1;
3038 else if (WINDOWP (tem
))
3039 f
= make_frame_without_minibuffer (tem
, kb
, display
);
3043 XSETFRAME (frame
, f
);
3045 /* Note that X Windows does support scroll bars. */
3046 FRAME_CAN_HAVE_SCROLL_BARS (f
) = 1;
3048 f
->output_method
= output_x_window
;
3049 f
->output_data
.x
= (struct x_output
*) xmalloc (sizeof (struct x_output
));
3050 bzero (f
->output_data
.x
, sizeof (struct x_output
));
3051 f
->output_data
.x
->icon_bitmap
= -1;
3052 FRAME_FONTSET (f
) = -1;
3053 f
->output_data
.x
->scroll_bar_foreground_pixel
= -1;
3054 f
->output_data
.x
->scroll_bar_background_pixel
= -1;
3055 #ifdef USE_TOOLKIT_SCROLL_BARS
3056 f
->output_data
.x
->scroll_bar_top_shadow_pixel
= -1;
3057 f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
= -1;
3058 #endif /* USE_TOOLKIT_SCROLL_BARS */
3059 record_unwind_protect (unwind_create_frame
, frame
);
3062 = x_get_arg (dpyinfo
, parms
, Qicon_name
, "iconName", "Title",
3064 if (! STRINGP (f
->icon_name
))
3065 f
->icon_name
= Qnil
;
3067 FRAME_X_DISPLAY_INFO (f
) = dpyinfo
;
3069 image_cache_refcount
= FRAME_X_IMAGE_CACHE (f
)->refcount
;
3070 dpyinfo_refcount
= dpyinfo
->reference_count
;
3071 #endif /* GLYPH_DEBUG */
3073 FRAME_KBOARD (f
) = kb
;
3076 /* These colors will be set anyway later, but it's important
3077 to get the color reference counts right, so initialize them! */
3080 struct gcpro gcpro1
;
3082 /* Function x_decode_color can signal an error. Make
3083 sure to initialize color slots so that we won't try
3084 to free colors we haven't allocated. */
3085 f
->output_data
.x
->foreground_pixel
= -1;
3086 f
->output_data
.x
->background_pixel
= -1;
3087 f
->output_data
.x
->cursor_pixel
= -1;
3088 f
->output_data
.x
->cursor_foreground_pixel
= -1;
3089 f
->output_data
.x
->border_pixel
= -1;
3090 f
->output_data
.x
->mouse_pixel
= -1;
3092 black
= build_string ("black");
3094 f
->output_data
.x
->foreground_pixel
3095 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
3096 f
->output_data
.x
->background_pixel
3097 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
3098 f
->output_data
.x
->cursor_pixel
3099 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
3100 f
->output_data
.x
->cursor_foreground_pixel
3101 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
3102 f
->output_data
.x
->border_pixel
3103 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
3104 f
->output_data
.x
->mouse_pixel
3105 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
3109 /* Specify the parent under which to make this X window. */
3113 f
->output_data
.x
->parent_desc
= (Window
) XFASTINT (parent
);
3114 f
->output_data
.x
->explicit_parent
= 1;
3118 f
->output_data
.x
->parent_desc
= FRAME_X_DISPLAY_INFO (f
)->root_window
;
3119 f
->output_data
.x
->explicit_parent
= 0;
3122 /* Set the name; the functions to which we pass f expect the name to
3124 if (EQ (name
, Qunbound
) || NILP (name
))
3126 f
->name
= build_string (dpyinfo
->x_id_name
);
3127 f
->explicit_name
= 0;
3132 f
->explicit_name
= 1;
3133 /* use the frame's title when getting resources for this frame. */
3134 specbind (Qx_resource_name
, name
);
3137 /* Extract the window parameters from the supplied values
3138 that are needed to determine window geometry. */
3142 font
= x_get_arg (dpyinfo
, parms
, Qfont
, "font", "Font", RES_TYPE_STRING
);
3145 /* First, try whatever font the caller has specified. */
3148 tem
= Fquery_fontset (font
, Qnil
);
3150 font
= x_new_fontset (f
, SDATA (tem
));
3152 font
= x_new_font (f
, SDATA (font
));
3155 /* Try out a font which we hope has bold and italic variations. */
3156 if (!STRINGP (font
))
3157 font
= x_new_font (f
, "-adobe-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-1");
3158 if (!STRINGP (font
))
3159 font
= x_new_font (f
, "-misc-fixed-medium-r-normal-*-*-140-*-*-c-*-iso8859-1");
3160 if (! STRINGP (font
))
3161 font
= x_new_font (f
, "-*-*-medium-r-normal-*-*-140-*-*-c-*-iso8859-1");
3162 if (! STRINGP (font
))
3163 /* This was formerly the first thing tried, but it finds too many fonts
3164 and takes too long. */
3165 font
= x_new_font (f
, "-*-*-medium-r-*-*-*-*-*-*-c-*-iso8859-1");
3166 /* If those didn't work, look for something which will at least work. */
3167 if (! STRINGP (font
))
3168 font
= x_new_font (f
, "-*-fixed-*-*-*-*-*-140-*-*-c-*-iso8859-1");
3170 if (! STRINGP (font
))
3171 font
= build_string ("fixed");
3173 x_default_parameter (f
, parms
, Qfont
, font
,
3174 "font", "Font", RES_TYPE_STRING
);
3178 /* Prevent lwlib/xlwmenu.c from crashing because of a bug
3179 whereby it fails to get any font. */
3180 xlwmenu_default_font
= FRAME_FONT (f
);
3183 x_default_parameter (f
, parms
, Qborder_width
, make_number (2),
3184 "borderWidth", "BorderWidth", RES_TYPE_NUMBER
);
3186 /* This defaults to 1 in order to match xterm. We recognize either
3187 internalBorderWidth or internalBorder (which is what xterm calls
3189 if (NILP (Fassq (Qinternal_border_width
, parms
)))
3193 value
= x_get_arg (dpyinfo
, parms
, Qinternal_border_width
,
3194 "internalBorder", "internalBorder", RES_TYPE_NUMBER
);
3195 if (! EQ (value
, Qunbound
))
3196 parms
= Fcons (Fcons (Qinternal_border_width
, value
),
3199 x_default_parameter (f
, parms
, Qinternal_border_width
, make_number (1),
3200 "internalBorderWidth", "internalBorderWidth",
3202 x_default_parameter (f
, parms
, Qvertical_scroll_bars
, Qleft
,
3203 "verticalScrollBars", "ScrollBars",
3206 /* Also do the stuff which must be set before the window exists. */
3207 x_default_parameter (f
, parms
, Qforeground_color
, build_string ("black"),
3208 "foreground", "Foreground", RES_TYPE_STRING
);
3209 x_default_parameter (f
, parms
, Qbackground_color
, build_string ("white"),
3210 "background", "Background", RES_TYPE_STRING
);
3211 x_default_parameter (f
, parms
, Qmouse_color
, build_string ("black"),
3212 "pointerColor", "Foreground", RES_TYPE_STRING
);
3213 x_default_parameter (f
, parms
, Qcursor_color
, build_string ("black"),
3214 "cursorColor", "Foreground", RES_TYPE_STRING
);
3215 x_default_parameter (f
, parms
, Qborder_color
, build_string ("black"),
3216 "borderColor", "BorderColor", RES_TYPE_STRING
);
3217 x_default_parameter (f
, parms
, Qscreen_gamma
, Qnil
,
3218 "screenGamma", "ScreenGamma", RES_TYPE_FLOAT
);
3219 x_default_parameter (f
, parms
, Qline_spacing
, Qnil
,
3220 "lineSpacing", "LineSpacing", RES_TYPE_NUMBER
);
3221 x_default_parameter (f
, parms
, Qleft_fringe
, Qnil
,
3222 "leftFringe", "LeftFringe", RES_TYPE_NUMBER
);
3223 x_default_parameter (f
, parms
, Qright_fringe
, Qnil
,
3224 "rightFringe", "RightFringe", RES_TYPE_NUMBER
);
3226 x_default_scroll_bar_color_parameter (f
, parms
, Qscroll_bar_foreground
,
3227 "scrollBarForeground",
3228 "ScrollBarForeground", 1);
3229 x_default_scroll_bar_color_parameter (f
, parms
, Qscroll_bar_background
,
3230 "scrollBarBackground",
3231 "ScrollBarBackground", 0);
3233 /* Init faces before x_default_parameter is called for scroll-bar
3234 parameters because that function calls x_set_scroll_bar_width,
3235 which calls change_frame_size, which calls Fset_window_buffer,
3236 which runs hooks, which call Fvertical_motion. At the end, we
3237 end up in init_iterator with a null face cache, which should not
3239 init_frame_faces (f
);
3241 x_default_parameter (f
, parms
, Qmenu_bar_lines
, make_number (1),
3242 "menuBar", "MenuBar", RES_TYPE_NUMBER
);
3243 x_default_parameter (f
, parms
, Qtool_bar_lines
, make_number (1),
3244 "toolBar", "ToolBar", RES_TYPE_NUMBER
);
3245 x_default_parameter (f
, parms
, Qbuffer_predicate
, Qnil
,
3246 "bufferPredicate", "BufferPredicate",
3248 x_default_parameter (f
, parms
, Qtitle
, Qnil
,
3249 "title", "Title", RES_TYPE_STRING
);
3250 x_default_parameter (f
, parms
, Qwait_for_wm
, Qt
,
3251 "waitForWM", "WaitForWM", RES_TYPE_BOOLEAN
);
3252 x_default_parameter (f
, parms
, Qfullscreen
, Qnil
,
3253 "fullscreen", "Fullscreen", RES_TYPE_SYMBOL
);
3255 f
->output_data
.x
->parent_desc
= FRAME_X_DISPLAY_INFO (f
)->root_window
;
3257 /* Compute the size of the X window. */
3258 window_prompting
= x_figure_window_size (f
, parms
, 1);
3260 tem
= x_get_arg (dpyinfo
, parms
, Qunsplittable
, 0, 0, RES_TYPE_BOOLEAN
);
3261 f
->no_split
= minibuffer_only
|| EQ (tem
, Qt
);
3263 x_icon_verify (f
, parms
);
3265 /* Create the X widget or window. */
3266 #ifdef USE_X_TOOLKIT
3267 x_window (f
, window_prompting
, minibuffer_only
);
3275 /* Now consider the frame official. */
3276 FRAME_X_DISPLAY_INFO (f
)->reference_count
++;
3277 Vframe_list
= Fcons (frame
, Vframe_list
);
3279 /* We need to do this after creating the X window, so that the
3280 icon-creation functions can say whose icon they're describing. */
3281 x_default_parameter (f
, parms
, Qicon_type
, Qnil
,
3282 "bitmapIcon", "BitmapIcon", RES_TYPE_SYMBOL
);
3284 x_default_parameter (f
, parms
, Qauto_raise
, Qnil
,
3285 "autoRaise", "AutoRaiseLower", RES_TYPE_BOOLEAN
);
3286 x_default_parameter (f
, parms
, Qauto_lower
, Qnil
,
3287 "autoLower", "AutoRaiseLower", RES_TYPE_BOOLEAN
);
3288 x_default_parameter (f
, parms
, Qcursor_type
, Qbox
,
3289 "cursorType", "CursorType", RES_TYPE_SYMBOL
);
3290 x_default_parameter (f
, parms
, Qscroll_bar_width
, Qnil
,
3291 "scrollBarWidth", "ScrollBarWidth",
3294 /* Dimensions, especially FRAME_LINES (f), must be done via change_frame_size.
3295 Change will not be effected unless different from the current
3297 width
= FRAME_COLS (f
);
3298 height
= FRAME_LINES (f
);
3300 SET_FRAME_COLS (f
, 0);
3301 FRAME_LINES (f
) = 0;
3302 change_frame_size (f
, height
, width
, 1, 0, 0);
3304 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
3305 /* Create the menu bar. */
3306 if (!minibuffer_only
&& FRAME_EXTERNAL_MENU_BAR (f
))
3308 /* If this signals an error, we haven't set size hints for the
3309 frame and we didn't make it visible. */
3310 initialize_frame_menubar (f
);
3313 /* This is a no-op, except under Motif where it arranges the
3314 main window for the widgets on it. */
3315 lw_set_main_areas (f
->output_data
.x
->column_widget
,
3316 f
->output_data
.x
->menubar_widget
,
3317 f
->output_data
.x
->edit_widget
);
3318 #endif /* not USE_GTK */
3320 #endif /* USE_X_TOOLKIT || USE_GTK */
3322 /* Tell the server what size and position, etc, we want, and how
3323 badly we want them. This should be done after we have the menu
3324 bar so that its size can be taken into account. */
3326 x_wm_set_size_hint (f
, window_prompting
, 0);
3329 /* Make the window appear on the frame and enable display, unless
3330 the caller says not to. However, with explicit parent, Emacs
3331 cannot control visibility, so don't try. */
3332 if (! f
->output_data
.x
->explicit_parent
)
3334 Lisp_Object visibility
;
3336 visibility
= x_get_arg (dpyinfo
, parms
, Qvisibility
, 0, 0,
3338 if (EQ (visibility
, Qunbound
))
3341 if (EQ (visibility
, Qicon
))
3342 x_iconify_frame (f
);
3343 else if (! NILP (visibility
))
3344 x_make_frame_visible (f
);
3346 /* Must have been Qnil. */
3350 /* Set the WM leader property. GTK does this itself, so this is not
3351 needed when using GTK. */
3352 if (dpyinfo
->client_leader_window
!= 0)
3355 XChangeProperty (FRAME_X_DISPLAY (f
),
3356 FRAME_OUTER_WINDOW (f
),
3357 dpyinfo
->Xatom_wm_client_leader
,
3358 XA_WINDOW
, 32, PropModeReplace
,
3359 (char *) &dpyinfo
->client_leader_window
, 1);
3365 /* Make sure windows on this frame appear in calls to next-window
3366 and similar functions. */
3367 Vwindow_list
= Qnil
;
3369 return unbind_to (count
, frame
);
3373 /* FRAME is used only to get a handle on the X display. We don't pass the
3374 display info directly because we're called from frame.c, which doesn't
3375 know about that structure. */
3378 x_get_focus_frame (frame
)
3379 struct frame
*frame
;
3381 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (frame
);
3383 if (! dpyinfo
->x_focus_frame
)
3386 XSETFRAME (xfocus
, dpyinfo
->x_focus_frame
);
3391 /* In certain situations, when the window manager follows a
3392 click-to-focus policy, there seems to be no way around calling
3393 XSetInputFocus to give another frame the input focus .
3395 In an ideal world, XSetInputFocus should generally be avoided so
3396 that applications don't interfere with the window manager's focus
3397 policy. But I think it's okay to use when it's clearly done
3398 following a user-command. */
3400 DEFUN ("x-focus-frame", Fx_focus_frame
, Sx_focus_frame
, 1, 1, 0,
3401 doc
: /* Set the input focus to FRAME.
3402 FRAME nil means use the selected frame. */)
3406 struct frame
*f
= check_x_frame (frame
);
3407 Display
*dpy
= FRAME_X_DISPLAY (f
);
3411 count
= x_catch_errors (dpy
);
3412 XSetInputFocus (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
3413 RevertToParent
, CurrentTime
);
3414 x_uncatch_errors (dpy
, count
);
3421 DEFUN ("xw-color-defined-p", Fxw_color_defined_p
, Sxw_color_defined_p
, 1, 2, 0,
3422 doc
: /* Internal function called by `color-defined-p', which see. */)
3424 Lisp_Object color
, frame
;
3427 FRAME_PTR f
= check_x_frame (frame
);
3429 CHECK_STRING (color
);
3431 if (x_defined_color (f
, SDATA (color
), &foo
, 0))
3437 DEFUN ("xw-color-values", Fxw_color_values
, Sxw_color_values
, 1, 2, 0,
3438 doc
: /* Internal function called by `color-values', which see. */)
3440 Lisp_Object color
, frame
;
3443 FRAME_PTR f
= check_x_frame (frame
);
3445 CHECK_STRING (color
);
3447 if (x_defined_color (f
, SDATA (color
), &foo
, 0))
3451 rgb
[0] = make_number (foo
.red
);
3452 rgb
[1] = make_number (foo
.green
);
3453 rgb
[2] = make_number (foo
.blue
);
3454 return Flist (3, rgb
);
3460 DEFUN ("xw-display-color-p", Fxw_display_color_p
, Sxw_display_color_p
, 0, 1, 0,
3461 doc
: /* Internal function called by `display-color-p', which see. */)
3463 Lisp_Object display
;
3465 struct x_display_info
*dpyinfo
= check_x_display_info (display
);
3467 if (dpyinfo
->n_planes
<= 2)
3470 switch (dpyinfo
->visual
->class)
3483 DEFUN ("x-display-grayscale-p", Fx_display_grayscale_p
, Sx_display_grayscale_p
,
3485 doc
: /* Return t if the X display supports shades of gray.
3486 Note that color displays do support shades of gray.
3487 The optional argument DISPLAY specifies which display to ask about.
3488 DISPLAY should be either a frame or a display name (a string).
3489 If omitted or nil, that stands for the selected frame's display. */)
3491 Lisp_Object display
;
3493 struct x_display_info
*dpyinfo
= check_x_display_info (display
);
3495 if (dpyinfo
->n_planes
<= 1)
3498 switch (dpyinfo
->visual
->class)
3513 DEFUN ("x-display-pixel-width", Fx_display_pixel_width
, Sx_display_pixel_width
,
3515 doc
: /* Returns the width in pixels of the X display DISPLAY.
3516 The optional argument DISPLAY specifies which display to ask about.
3517 DISPLAY should be either a frame or a display name (a string).
3518 If omitted or nil, that stands for the selected frame's display. */)
3520 Lisp_Object display
;
3522 struct x_display_info
*dpyinfo
= check_x_display_info (display
);
3524 return make_number (dpyinfo
->width
);
3527 DEFUN ("x-display-pixel-height", Fx_display_pixel_height
,
3528 Sx_display_pixel_height
, 0, 1, 0,
3529 doc
: /* Returns the height in pixels of the X display DISPLAY.
3530 The optional argument DISPLAY specifies which display to ask about.
3531 DISPLAY should be either a frame or a display name (a string).
3532 If omitted or nil, that stands for the selected frame's display. */)
3534 Lisp_Object display
;
3536 struct x_display_info
*dpyinfo
= check_x_display_info (display
);
3538 return make_number (dpyinfo
->height
);
3541 DEFUN ("x-display-planes", Fx_display_planes
, Sx_display_planes
,
3543 doc
: /* Returns the number of bitplanes of the X display DISPLAY.
3544 The optional argument DISPLAY specifies which display to ask about.
3545 DISPLAY should be either a frame or a display name (a string).
3546 If omitted or nil, that stands for the selected frame's display. */)
3548 Lisp_Object display
;
3550 struct x_display_info
*dpyinfo
= check_x_display_info (display
);
3552 return make_number (dpyinfo
->n_planes
);
3555 DEFUN ("x-display-color-cells", Fx_display_color_cells
, Sx_display_color_cells
,
3557 doc
: /* Returns the number of color cells of the X display DISPLAY.
3558 The optional argument DISPLAY specifies which display to ask about.
3559 DISPLAY should be either a frame or a display name (a string).
3560 If omitted or nil, that stands for the selected frame's display. */)
3562 Lisp_Object display
;
3564 struct x_display_info
*dpyinfo
= check_x_display_info (display
);
3566 int nr_planes
= DisplayPlanes (dpyinfo
->display
,
3567 XScreenNumberOfScreen (dpyinfo
->screen
));
3569 /* Truncate nr_planes to 24 to avoid integer overflow.
3570 Some displays says 32, but only 24 bits are actually significant.
3571 There are only very few and rare video cards that have more than
3572 24 significant bits. Also 24 bits is more than 16 million colors,
3573 it "should be enough for everyone". */
3574 if (nr_planes
> 24) nr_planes
= 24;
3576 return make_number (1 << nr_planes
);
3579 DEFUN ("x-server-max-request-size", Fx_server_max_request_size
,
3580 Sx_server_max_request_size
,
3582 doc
: /* Returns the maximum request size of the X server of display DISPLAY.
3583 The optional argument DISPLAY specifies which display to ask about.
3584 DISPLAY should be either a frame or a display name (a string).
3585 If omitted or nil, that stands for the selected frame's display. */)
3587 Lisp_Object display
;
3589 struct x_display_info
*dpyinfo
= check_x_display_info (display
);
3591 return make_number (MAXREQUEST (dpyinfo
->display
));
3594 DEFUN ("x-server-vendor", Fx_server_vendor
, Sx_server_vendor
, 0, 1, 0,
3595 doc
: /* Returns the "vendor ID" string of the X server of display DISPLAY.
3596 \(Labelling every distributor as a "vendor" embodies the false assumption
3597 that operating systems cannot be developed and distributed noncommercially.)
3598 The optional argument DISPLAY specifies which display to ask about.
3599 DISPLAY should be either a frame or a display name (a string).
3600 If omitted or nil, that stands for the selected frame's display. */)
3602 Lisp_Object display
;
3604 struct x_display_info
*dpyinfo
= check_x_display_info (display
);
3605 char *vendor
= ServerVendor (dpyinfo
->display
);
3607 if (! vendor
) vendor
= "";
3608 return build_string (vendor
);
3611 DEFUN ("x-server-version", Fx_server_version
, Sx_server_version
, 0, 1, 0,
3612 doc
: /* Returns the version numbers of the X server of display DISPLAY.
3613 The value is a list of three integers: the major and minor
3614 version numbers of the X Protocol in use, and the distributor-specific release
3615 number. See also the function `x-server-vendor'.
3617 The optional argument DISPLAY specifies which display to ask about.
3618 DISPLAY should be either a frame or a display name (a string).
3619 If omitted or nil, that stands for the selected frame's display. */)
3621 Lisp_Object display
;
3623 struct x_display_info
*dpyinfo
= check_x_display_info (display
);
3624 Display
*dpy
= dpyinfo
->display
;
3626 return Fcons (make_number (ProtocolVersion (dpy
)),
3627 Fcons (make_number (ProtocolRevision (dpy
)),
3628 Fcons (make_number (VendorRelease (dpy
)), Qnil
)));
3631 DEFUN ("x-display-screens", Fx_display_screens
, Sx_display_screens
, 0, 1, 0,
3632 doc
: /* Return the number of screens on the X server of display DISPLAY.
3633 The optional argument DISPLAY specifies which display to ask about.
3634 DISPLAY should be either a frame or a display name (a string).
3635 If omitted or nil, that stands for the selected frame's display. */)
3637 Lisp_Object display
;
3639 struct x_display_info
*dpyinfo
= check_x_display_info (display
);
3641 return make_number (ScreenCount (dpyinfo
->display
));
3644 DEFUN ("x-display-mm-height", Fx_display_mm_height
, Sx_display_mm_height
, 0, 1, 0,
3645 doc
: /* Return the height in millimeters of the X display DISPLAY.
3646 The optional argument DISPLAY specifies which display to ask about.
3647 DISPLAY should be either a frame or a display name (a string).
3648 If omitted or nil, that stands for the selected frame's display. */)
3650 Lisp_Object display
;
3652 struct x_display_info
*dpyinfo
= check_x_display_info (display
);
3654 return make_number (HeightMMOfScreen (dpyinfo
->screen
));
3657 DEFUN ("x-display-mm-width", Fx_display_mm_width
, Sx_display_mm_width
, 0, 1, 0,
3658 doc
: /* Return the width in millimeters of the X display DISPLAY.
3659 The optional argument DISPLAY specifies which display to ask about.
3660 DISPLAY should be either a frame or a display name (a string).
3661 If omitted or nil, that stands for the selected frame's display. */)
3663 Lisp_Object display
;
3665 struct x_display_info
*dpyinfo
= check_x_display_info (display
);
3667 return make_number (WidthMMOfScreen (dpyinfo
->screen
));
3670 DEFUN ("x-display-backing-store", Fx_display_backing_store
,
3671 Sx_display_backing_store
, 0, 1, 0,
3672 doc
: /* Returns an indication of whether X display DISPLAY does backing store.
3673 The value may be `always', `when-mapped', or `not-useful'.
3674 The optional argument DISPLAY specifies which display to ask about.
3675 DISPLAY should be either a frame or a display name (a string).
3676 If omitted or nil, that stands for the selected frame's display. */)
3678 Lisp_Object display
;
3680 struct x_display_info
*dpyinfo
= check_x_display_info (display
);
3683 switch (DoesBackingStore (dpyinfo
->screen
))
3686 result
= intern ("always");
3690 result
= intern ("when-mapped");
3694 result
= intern ("not-useful");
3698 error ("Strange value for BackingStore parameter of screen");
3705 DEFUN ("x-display-visual-class", Fx_display_visual_class
,
3706 Sx_display_visual_class
, 0, 1, 0,
3707 doc
: /* Return the visual class of the X display DISPLAY.
3708 The value is one of the symbols `static-gray', `gray-scale',
3709 `static-color', `pseudo-color', `true-color', or `direct-color'.
3711 The optional argument DISPLAY specifies which display to ask about.
3712 DISPLAY should be either a frame or a display name (a string).
3713 If omitted or nil, that stands for the selected frame's display. */)
3715 Lisp_Object display
;
3717 struct x_display_info
*dpyinfo
= check_x_display_info (display
);
3720 switch (dpyinfo
->visual
->class)
3723 result
= intern ("static-gray");
3726 result
= intern ("gray-scale");
3729 result
= intern ("static-color");
3732 result
= intern ("pseudo-color");
3735 result
= intern ("true-color");
3738 result
= intern ("direct-color");
3741 error ("Display has an unknown visual class");
3748 DEFUN ("x-display-save-under", Fx_display_save_under
,
3749 Sx_display_save_under
, 0, 1, 0,
3750 doc
: /* Returns t if the X display DISPLAY supports the save-under feature.
3751 The optional argument DISPLAY specifies which display to ask about.
3752 DISPLAY should be either a frame or a display name (a string).
3753 If omitted or nil, that stands for the selected frame's display. */)
3755 Lisp_Object display
;
3757 struct x_display_info
*dpyinfo
= check_x_display_info (display
);
3759 if (DoesSaveUnders (dpyinfo
->screen
) == True
)
3767 register struct frame
*f
;
3769 return FRAME_PIXEL_WIDTH (f
);
3774 register struct frame
*f
;
3776 return FRAME_PIXEL_HEIGHT (f
);
3781 register struct frame
*f
;
3783 return FRAME_COLUMN_WIDTH (f
);
3788 register struct frame
*f
;
3790 return FRAME_LINE_HEIGHT (f
);
3795 register struct frame
*f
;
3797 return FRAME_X_DISPLAY_INFO (f
)->n_planes
;
3802 /************************************************************************
3804 ************************************************************************/
3807 /* Mapping visual names to visuals. */
3809 static struct visual_class
3816 {"StaticGray", StaticGray
},
3817 {"GrayScale", GrayScale
},
3818 {"StaticColor", StaticColor
},
3819 {"PseudoColor", PseudoColor
},
3820 {"TrueColor", TrueColor
},
3821 {"DirectColor", DirectColor
},
3826 #ifndef HAVE_XSCREENNUMBEROFSCREEN
3828 /* Value is the screen number of screen SCR. This is a substitute for
3829 the X function with the same name when that doesn't exist. */
3832 XScreenNumberOfScreen (scr
)
3833 register Screen
*scr
;
3835 Display
*dpy
= scr
->display
;
3838 for (i
= 0; i
< dpy
->nscreens
; ++i
)
3839 if (scr
== dpy
->screens
+ i
)
3845 #endif /* not HAVE_XSCREENNUMBEROFSCREEN */
3848 /* Select the visual that should be used on display DPYINFO. Set
3849 members of DPYINFO appropriately. Called from x_term_init. */
3852 select_visual (dpyinfo
)
3853 struct x_display_info
*dpyinfo
;
3855 Display
*dpy
= dpyinfo
->display
;
3856 Screen
*screen
= dpyinfo
->screen
;
3859 /* See if a visual is specified. */
3860 value
= display_x_get_resource (dpyinfo
,
3861 build_string ("visualClass"),
3862 build_string ("VisualClass"),
3864 if (STRINGP (value
))
3866 /* VALUE should be of the form CLASS-DEPTH, where CLASS is one
3867 of `PseudoColor', `TrueColor' etc. and DEPTH is the color
3868 depth, a decimal number. NAME is compared with case ignored. */
3869 char *s
= (char *) alloca (SBYTES (value
) + 1);
3874 strcpy (s
, SDATA (value
));
3875 dash
= index (s
, '-');
3878 dpyinfo
->n_planes
= atoi (dash
+ 1);
3882 /* We won't find a matching visual with depth 0, so that
3883 an error will be printed below. */
3884 dpyinfo
->n_planes
= 0;
3886 /* Determine the visual class. */
3887 for (i
= 0; visual_classes
[i
].name
; ++i
)
3888 if (xstricmp (s
, visual_classes
[i
].name
) == 0)
3890 class = visual_classes
[i
].class;
3894 /* Look up a matching visual for the specified class. */
3896 || !XMatchVisualInfo (dpy
, XScreenNumberOfScreen (screen
),
3897 dpyinfo
->n_planes
, class, &vinfo
))
3898 fatal ("Invalid visual specification `%s'", SDATA (value
));
3900 dpyinfo
->visual
= vinfo
.visual
;
3905 XVisualInfo
*vinfo
, vinfo_template
;
3907 dpyinfo
->visual
= DefaultVisualOfScreen (screen
);
3910 vinfo_template
.visualid
= XVisualIDFromVisual (dpyinfo
->visual
);
3912 vinfo_template
.visualid
= dpyinfo
->visual
->visualid
;
3914 vinfo_template
.screen
= XScreenNumberOfScreen (screen
);
3915 vinfo
= XGetVisualInfo (dpy
, VisualIDMask
| VisualScreenMask
,
3916 &vinfo_template
, &n_visuals
);
3918 fatal ("Can't get proper X visual info");
3920 dpyinfo
->n_planes
= vinfo
->depth
;
3921 XFree ((char *) vinfo
);
3926 /* Return the X display structure for the display named NAME.
3927 Open a new connection if necessary. */
3929 struct x_display_info
*
3930 x_display_info_for_name (name
)
3934 struct x_display_info
*dpyinfo
;
3936 CHECK_STRING (name
);
3938 if (! EQ (Vwindow_system
, intern ("x")))
3939 error ("Not using X Windows");
3941 for (dpyinfo
= x_display_list
, names
= x_display_name_list
;
3943 dpyinfo
= dpyinfo
->next
, names
= XCDR (names
))
3946 tem
= Fstring_equal (XCAR (XCAR (names
)), name
);
3951 /* Use this general default value to start with. */
3952 Vx_resource_name
= Vinvocation_name
;
3954 validate_x_resource_name ();
3956 dpyinfo
= x_term_init (name
, (char *)0,
3957 (char *) SDATA (Vx_resource_name
));
3960 error ("Cannot connect to X server %s", SDATA (name
));
3963 XSETFASTINT (Vwindow_system_version
, 11);
3969 DEFUN ("x-open-connection", Fx_open_connection
, Sx_open_connection
,
3971 doc
: /* Open a connection to an X server.
3972 DISPLAY is the name of the display to connect to.
3973 Optional second arg XRM-STRING is a string of resources in xrdb format.
3974 If the optional third arg MUST-SUCCEED is non-nil,
3975 terminate Emacs if we can't open the connection. */)
3976 (display
, xrm_string
, must_succeed
)
3977 Lisp_Object display
, xrm_string
, must_succeed
;
3979 unsigned char *xrm_option
;
3980 struct x_display_info
*dpyinfo
;
3982 CHECK_STRING (display
);
3983 if (! NILP (xrm_string
))
3984 CHECK_STRING (xrm_string
);
3986 if (! EQ (Vwindow_system
, intern ("x")))
3987 error ("Not using X Windows");
3989 if (! NILP (xrm_string
))
3990 xrm_option
= (unsigned char *) SDATA (xrm_string
);
3992 xrm_option
= (unsigned char *) 0;
3994 validate_x_resource_name ();
3996 /* This is what opens the connection and sets x_current_display.
3997 This also initializes many symbols, such as those used for input. */
3998 dpyinfo
= x_term_init (display
, xrm_option
,
3999 (char *) SDATA (Vx_resource_name
));
4003 if (!NILP (must_succeed
))
4004 fatal ("Cannot connect to X server %s.\n\
4005 Check the DISPLAY environment variable or use `-d'.\n\
4006 Also use the `xauth' program to verify that you have the proper\n\
4007 authorization information needed to connect the X server.\n\
4008 An insecure way to solve the problem may be to use `xhost'.\n",
4011 error ("Cannot connect to X server %s", SDATA (display
));
4016 XSETFASTINT (Vwindow_system_version
, 11);
4020 DEFUN ("x-close-connection", Fx_close_connection
,
4021 Sx_close_connection
, 1, 1, 0,
4022 doc
: /* Close the connection to DISPLAY's X server.
4023 For DISPLAY, specify either a frame or a display name (a string).
4024 If DISPLAY is nil, that stands for the selected frame's display. */)
4026 Lisp_Object display
;
4028 struct x_display_info
*dpyinfo
= check_x_display_info (display
);
4031 if (dpyinfo
->reference_count
> 0)
4032 error ("Display still has frames on it");
4035 /* Free the fonts in the font table. */
4036 for (i
= 0; i
< dpyinfo
->n_fonts
; i
++)
4037 if (dpyinfo
->font_table
[i
].name
)
4039 XFreeFont (dpyinfo
->display
, dpyinfo
->font_table
[i
].font
);
4042 x_destroy_all_bitmaps (dpyinfo
);
4043 XSetCloseDownMode (dpyinfo
->display
, DestroyAll
);
4045 #ifdef USE_X_TOOLKIT
4046 XtCloseDisplay (dpyinfo
->display
);
4048 XCloseDisplay (dpyinfo
->display
);
4051 x_delete_display (dpyinfo
);
4057 DEFUN ("x-display-list", Fx_display_list
, Sx_display_list
, 0, 0, 0,
4058 doc
: /* Return the list of display names that Emacs has connections to. */)
4061 Lisp_Object tail
, result
;
4064 for (tail
= x_display_name_list
; ! NILP (tail
); tail
= XCDR (tail
))
4065 result
= Fcons (XCAR (XCAR (tail
)), result
);
4070 DEFUN ("x-synchronize", Fx_synchronize
, Sx_synchronize
, 1, 2, 0,
4071 doc
: /* If ON is non-nil, report X errors as soon as the erring request is made.
4072 If ON is nil, allow buffering of requests.
4073 Turning on synchronization prohibits the Xlib routines from buffering
4074 requests and seriously degrades performance, but makes debugging much
4076 The optional second argument DISPLAY specifies which display to act on.
4077 DISPLAY should be either a frame or a display name (a string).
4078 If DISPLAY is omitted or nil, that stands for the selected frame's display. */)
4080 Lisp_Object display
, on
;
4082 struct x_display_info
*dpyinfo
= check_x_display_info (display
);
4084 XSynchronize (dpyinfo
->display
, !EQ (on
, Qnil
));
4089 /* Wait for responses to all X commands issued so far for frame F. */
4096 XSync (FRAME_X_DISPLAY (f
), False
);
4101 /***********************************************************************
4103 ***********************************************************************/
4105 DEFUN ("x-change-window-property", Fx_change_window_property
,
4106 Sx_change_window_property
, 2, 6, 0,
4107 doc
: /* Change window property PROP to VALUE on the X window of FRAME.
4108 PROP must be a string.
4109 VALUE may be a string or a list of conses, numbers and/or strings.
4110 If an element in the list is a string, it is converted to
4111 an Atom and the value of the Atom is used. If an element is a cons,
4112 it is converted to a 32 bit number where the car is the 16 top bits and the
4113 cdr is the lower 16 bits.
4114 FRAME nil or omitted means use the selected frame.
4115 If TYPE is given and non-nil, it is the name of the type of VALUE.
4116 If TYPE is not given or nil, the type is STRING.
4117 FORMAT gives the size in bits of each element if VALUE is a list.
4118 It must be one of 8, 16 or 32.
4119 If VALUE is a string or FORMAT is nil or not given, FORMAT defaults to 8.
4120 If OUTER_P is non-nil, the property is changed for the outer X window of
4121 FRAME. Default is to change on the edit X window.
4124 (prop
, value
, frame
, type
, format
, outer_p
)
4125 Lisp_Object prop
, value
, frame
, type
, format
, outer_p
;
4127 struct frame
*f
= check_x_frame (frame
);
4129 Atom target_type
= XA_STRING
;
4130 int element_format
= 8;
4131 unsigned char *data
;
4135 CHECK_STRING (prop
);
4137 if (! NILP (format
))
4139 CHECK_NUMBER (format
);
4140 element_format
= XFASTINT (format
);
4142 if (element_format
!= 8 && element_format
!= 16
4143 && element_format
!= 32)
4144 error ("FORMAT must be one of 8, 16 or 32");
4149 nelements
= x_check_property_data (value
);
4150 if (nelements
== -1)
4151 error ("Bad data in VALUE, must be number, string or cons");
4153 if (element_format
== 8)
4154 data
= (unsigned char *) xmalloc (nelements
);
4155 else if (element_format
== 16)
4156 data
= (unsigned char *) xmalloc (nelements
*2);
4157 else /* format == 32 */
4158 /* The man page for XChangeProperty:
4159 "If the specified format is 32, the property data must be a
4161 This applies even if long is more than 64 bits. The X library
4162 converts to 32 bits before sending to the X server. */
4163 data
= (unsigned char *) xmalloc (nelements
* sizeof(long));
4165 x_fill_property_data (FRAME_X_DISPLAY (f
), value
, data
, element_format
);
4169 CHECK_STRING (value
);
4170 data
= SDATA (value
);
4171 nelements
= SCHARS (value
);
4175 prop_atom
= XInternAtom (FRAME_X_DISPLAY (f
), SDATA (prop
), False
);
4178 CHECK_STRING (type
);
4179 target_type
= XInternAtom (FRAME_X_DISPLAY (f
), SDATA (type
), False
);
4182 if (! NILP (outer_p
)) w
= FRAME_OUTER_WINDOW (f
);
4183 else w
= FRAME_X_WINDOW (f
);
4185 XChangeProperty (FRAME_X_DISPLAY (f
), w
,
4186 prop_atom
, target_type
, element_format
, PropModeReplace
,
4189 if (CONSP (value
)) xfree (data
);
4191 /* Make sure the property is set when we return. */
4192 XFlush (FRAME_X_DISPLAY (f
));
4199 DEFUN ("x-delete-window-property", Fx_delete_window_property
,
4200 Sx_delete_window_property
, 1, 2, 0,
4201 doc
: /* Remove window property PROP from X window of FRAME.
4202 FRAME nil or omitted means use the selected frame. Value is PROP. */)
4204 Lisp_Object prop
, frame
;
4206 struct frame
*f
= check_x_frame (frame
);
4209 CHECK_STRING (prop
);
4211 prop_atom
= XInternAtom (FRAME_X_DISPLAY (f
), SDATA (prop
), False
);
4212 XDeleteProperty (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), prop_atom
);
4214 /* Make sure the property is removed when we return. */
4215 XFlush (FRAME_X_DISPLAY (f
));
4222 DEFUN ("x-window-property", Fx_window_property
, Sx_window_property
,
4224 doc
: /* Value is the value of window property PROP on FRAME.
4225 If FRAME is nil or omitted, use the selected frame.
4226 If TYPE is nil or omitted, get the property as a string. Otherwise TYPE
4227 is the name of the Atom that denotes the type expected.
4228 If SOURCE is non-nil, get the property on that window instead of from
4229 FRAME. The number 0 denotes the root window.
4230 If DELETE_P is non-nil, delete the property after retreiving it.
4231 If VECTOR_RET_P is non-nil, don't return a string but a vector of values.
4233 Value is nil if FRAME hasn't a property with name PROP or if PROP has
4234 no value of TYPE. */)
4235 (prop
, frame
, type
, source
, delete_p
, vector_ret_p
)
4236 Lisp_Object prop
, frame
, type
, source
, delete_p
, vector_ret_p
;
4238 struct frame
*f
= check_x_frame (frame
);
4241 Lisp_Object prop_value
= Qnil
;
4242 unsigned char *tmp_data
= NULL
;
4244 Atom target_type
= XA_STRING
;
4246 unsigned long actual_size
, bytes_remaining
;
4247 Window target_window
= FRAME_X_WINDOW (f
);
4248 struct gcpro gcpro1
;
4250 GCPRO1 (prop_value
);
4251 CHECK_STRING (prop
);
4253 if (! NILP (source
))
4255 if (NUMBERP (source
))
4257 if (FLOATP (source
))
4258 target_window
= (Window
) XFLOAT (source
);
4260 target_window
= XFASTINT (source
);
4262 if (target_window
== 0)
4263 target_window
= FRAME_X_DISPLAY_INFO (f
)->root_window
;
4265 else if (CONSP (source
))
4266 target_window
= cons_to_long (source
);
4272 if (strcmp ("AnyPropertyType", SDATA (type
)) == 0)
4273 target_type
= AnyPropertyType
;
4275 target_type
= XInternAtom (FRAME_X_DISPLAY (f
), SDATA (type
), False
);
4278 prop_atom
= XInternAtom (FRAME_X_DISPLAY (f
), SDATA (prop
), False
);
4279 rc
= XGetWindowProperty (FRAME_X_DISPLAY (f
), target_window
,
4280 prop_atom
, 0, 0, False
, target_type
,
4281 &actual_type
, &actual_format
, &actual_size
,
4282 &bytes_remaining
, &tmp_data
);
4285 int size
= bytes_remaining
;
4290 rc
= XGetWindowProperty (FRAME_X_DISPLAY (f
), target_window
,
4291 prop_atom
, 0, bytes_remaining
,
4292 ! NILP (delete_p
), target_type
,
4293 &actual_type
, &actual_format
,
4294 &actual_size
, &bytes_remaining
,
4296 if (rc
== Success
&& tmp_data
)
4298 /* The man page for XGetWindowProperty says:
4299 "If the returned format is 32, the returned data is represented
4300 as a long array and should be cast to that type to obtain the
4302 This applies even if long is more than 32 bits, the X library
4303 converts from 32 bit elements received from the X server to long
4304 and passes the long array to us. Thus, for that case bcopy can not
4305 be used. We convert to a 32 bit type here, because so much code
4308 The bytes and offsets passed to XGetWindowProperty refers to the
4309 property and those are indeed in 32 bit quantities if format is
4312 if (actual_format
== 32 && actual_format
< BITS_PER_LONG
)
4315 int *idata
= (int *) tmp_data
;
4316 long *ldata
= (long *) tmp_data
;
4318 for (i
= 0; i
< actual_size
; ++i
)
4319 idata
[i
] = (int) ldata
[i
];
4322 if (NILP (vector_ret_p
))
4323 prop_value
= make_string (tmp_data
, size
);
4325 prop_value
= x_property_data_to_lisp (f
,
4332 if (tmp_data
) XFree (tmp_data
);
4342 /***********************************************************************
4344 ***********************************************************************/
4346 /* If non-null, an asynchronous timer that, when it expires, displays
4347 an hourglass cursor on all frames. */
4349 static struct atimer
*hourglass_atimer
;
4351 /* Non-zero means an hourglass cursor is currently shown. */
4353 static int hourglass_shown_p
;
4355 /* Number of seconds to wait before displaying an hourglass cursor. */
4357 static Lisp_Object Vhourglass_delay
;
4359 /* Default number of seconds to wait before displaying an hourglass
4362 #define DEFAULT_HOURGLASS_DELAY 1
4364 /* Function prototypes. */
4366 static void show_hourglass
P_ ((struct atimer
*));
4367 static void hide_hourglass
P_ ((void));
4369 /* Return non-zero if houglass timer has been started or hourglass is shown. */
4372 hourglass_started ()
4374 return hourglass_shown_p
|| hourglass_atimer
!= NULL
;
4378 /* Cancel a currently active hourglass timer, and start a new one. */
4384 int secs
, usecs
= 0;
4386 /* Don't bother for ttys. */
4387 if (NILP (Vwindow_system
))
4390 cancel_hourglass ();
4392 if (INTEGERP (Vhourglass_delay
)
4393 && XINT (Vhourglass_delay
) > 0)
4394 secs
= XFASTINT (Vhourglass_delay
);
4395 else if (FLOATP (Vhourglass_delay
)
4396 && XFLOAT_DATA (Vhourglass_delay
) > 0)
4399 tem
= Ftruncate (Vhourglass_delay
, Qnil
);
4400 secs
= XFASTINT (tem
);
4401 usecs
= (XFLOAT_DATA (Vhourglass_delay
) - secs
) * 1000000;
4404 secs
= DEFAULT_HOURGLASS_DELAY
;
4406 EMACS_SET_SECS_USECS (delay
, secs
, usecs
);
4407 hourglass_atimer
= start_atimer (ATIMER_RELATIVE
, delay
,
4408 show_hourglass
, NULL
);
4412 /* Cancel the hourglass cursor timer if active, hide a busy cursor if
4418 if (hourglass_atimer
)
4420 cancel_atimer (hourglass_atimer
);
4421 hourglass_atimer
= NULL
;
4424 if (hourglass_shown_p
)
4429 /* Timer function of hourglass_atimer. TIMER is equal to
4432 Display an hourglass pointer on all frames by mapping the frames'
4433 hourglass_window. Set the hourglass_p flag in the frames'
4434 output_data.x structure to indicate that an hourglass cursor is
4435 shown on the frames. */
4438 show_hourglass (timer
)
4439 struct atimer
*timer
;
4441 /* The timer implementation will cancel this timer automatically
4442 after this function has run. Set hourglass_atimer to null
4443 so that we know the timer doesn't have to be canceled. */
4444 hourglass_atimer
= NULL
;
4446 if (!hourglass_shown_p
)
4448 Lisp_Object rest
, frame
;
4452 FOR_EACH_FRAME (rest
, frame
)
4454 struct frame
*f
= XFRAME (frame
);
4456 if (FRAME_LIVE_P (f
) && FRAME_X_P (f
) && FRAME_X_DISPLAY (f
))
4458 Display
*dpy
= FRAME_X_DISPLAY (f
);
4460 #ifdef USE_X_TOOLKIT
4461 if (f
->output_data
.x
->widget
)
4463 if (FRAME_OUTER_WINDOW (f
))
4466 f
->output_data
.x
->hourglass_p
= 1;
4468 if (!f
->output_data
.x
->hourglass_window
)
4470 unsigned long mask
= CWCursor
;
4471 XSetWindowAttributes attrs
;
4473 Window parent
= FRAME_X_WINDOW (f
);
4475 Window parent
= FRAME_OUTER_WINDOW (f
);
4477 attrs
.cursor
= f
->output_data
.x
->hourglass_cursor
;
4479 f
->output_data
.x
->hourglass_window
4480 = XCreateWindow (dpy
, parent
,
4481 0, 0, 32000, 32000, 0, 0,
4487 XMapRaised (dpy
, f
->output_data
.x
->hourglass_window
);
4493 hourglass_shown_p
= 1;
4499 /* Hide the hourglass pointer on all frames, if it is currently
4505 if (hourglass_shown_p
)
4507 Lisp_Object rest
, frame
;
4510 FOR_EACH_FRAME (rest
, frame
)
4512 struct frame
*f
= XFRAME (frame
);
4515 /* Watch out for newly created frames. */
4516 && f
->output_data
.x
->hourglass_window
)
4518 XUnmapWindow (FRAME_X_DISPLAY (f
),
4519 f
->output_data
.x
->hourglass_window
);
4520 /* Sync here because XTread_socket looks at the
4521 hourglass_p flag that is reset to zero below. */
4522 XSync (FRAME_X_DISPLAY (f
), False
);
4523 f
->output_data
.x
->hourglass_p
= 0;
4527 hourglass_shown_p
= 0;
4534 /***********************************************************************
4536 ***********************************************************************/
4538 static Lisp_Object x_create_tip_frame
P_ ((struct x_display_info
*,
4539 Lisp_Object
, Lisp_Object
));
4540 static void compute_tip_xy
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
,
4541 Lisp_Object
, int, int, int *, int *));
4543 /* The frame of a currently visible tooltip. */
4545 Lisp_Object tip_frame
;
4547 /* If non-nil, a timer started that hides the last tooltip when it
4550 Lisp_Object tip_timer
;
4553 /* If non-nil, a vector of 3 elements containing the last args
4554 with which x-show-tip was called. See there. */
4556 Lisp_Object last_show_tip_args
;
4558 /* Maximum size for tooltips; a cons (COLUMNS . ROWS). */
4560 Lisp_Object Vx_max_tooltip_size
;
4564 unwind_create_tip_frame (frame
)
4567 Lisp_Object deleted
;
4569 deleted
= unwind_create_frame (frame
);
4570 if (EQ (deleted
, Qt
))
4580 /* Create a frame for a tooltip on the display described by DPYINFO.
4581 PARMS is a list of frame parameters. TEXT is the string to
4582 display in the tip frame. Value is the frame.
4584 Note that functions called here, esp. x_default_parameter can
4585 signal errors, for instance when a specified color name is
4586 undefined. We have to make sure that we're in a consistent state
4587 when this happens. */
4590 x_create_tip_frame (dpyinfo
, parms
, text
)
4591 struct x_display_info
*dpyinfo
;
4592 Lisp_Object parms
, text
;
4595 Lisp_Object frame
, tem
;
4597 long window_prompting
= 0;
4599 int count
= SPECPDL_INDEX ();
4600 struct gcpro gcpro1
, gcpro2
, gcpro3
;
4602 int face_change_count_before
= face_change_count
;
4604 struct buffer
*old_buffer
;
4610 kb
= dpyinfo
->kboard
;
4612 kb
= &the_only_kboard
;
4615 /* Get the name of the frame to use for resource lookup. */
4616 name
= x_get_arg (dpyinfo
, parms
, Qname
, "name", "Name", RES_TYPE_STRING
);
4618 && !EQ (name
, Qunbound
)
4620 error ("Invalid frame name--not a string or nil");
4623 GCPRO3 (parms
, name
, frame
);
4625 XSETFRAME (frame
, f
);
4627 buffer
= Fget_buffer_create (build_string (" *tip*"));
4628 Fset_window_buffer (FRAME_ROOT_WINDOW (f
), buffer
, Qnil
);
4629 old_buffer
= current_buffer
;
4630 set_buffer_internal_1 (XBUFFER (buffer
));
4631 current_buffer
->truncate_lines
= Qnil
;
4632 specbind (Qinhibit_read_only
, Qt
);
4633 specbind (Qinhibit_modification_hooks
, Qt
);
4636 set_buffer_internal_1 (old_buffer
);
4638 FRAME_CAN_HAVE_SCROLL_BARS (f
) = 0;
4639 record_unwind_protect (unwind_create_tip_frame
, frame
);
4641 /* By setting the output method, we're essentially saying that
4642 the frame is live, as per FRAME_LIVE_P. If we get a signal
4643 from this point on, x_destroy_window might screw up reference
4645 f
->output_method
= output_x_window
;
4646 f
->output_data
.x
= (struct x_output
*) xmalloc (sizeof (struct x_output
));
4647 bzero (f
->output_data
.x
, sizeof (struct x_output
));
4648 f
->output_data
.x
->icon_bitmap
= -1;
4649 FRAME_FONTSET (f
) = -1;
4650 f
->output_data
.x
->scroll_bar_foreground_pixel
= -1;
4651 f
->output_data
.x
->scroll_bar_background_pixel
= -1;
4652 #ifdef USE_TOOLKIT_SCROLL_BARS
4653 f
->output_data
.x
->scroll_bar_top_shadow_pixel
= -1;
4654 f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
= -1;
4655 #endif /* USE_TOOLKIT_SCROLL_BARS */
4656 f
->icon_name
= Qnil
;
4657 FRAME_X_DISPLAY_INFO (f
) = dpyinfo
;
4659 image_cache_refcount
= FRAME_X_IMAGE_CACHE (f
)->refcount
;
4660 dpyinfo_refcount
= dpyinfo
->reference_count
;
4661 #endif /* GLYPH_DEBUG */
4663 FRAME_KBOARD (f
) = kb
;
4665 f
->output_data
.x
->parent_desc
= FRAME_X_DISPLAY_INFO (f
)->root_window
;
4666 f
->output_data
.x
->explicit_parent
= 0;
4668 /* These colors will be set anyway later, but it's important
4669 to get the color reference counts right, so initialize them! */
4672 struct gcpro gcpro1
;
4674 black
= build_string ("black");
4676 f
->output_data
.x
->foreground_pixel
4677 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
4678 f
->output_data
.x
->background_pixel
4679 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
4680 f
->output_data
.x
->cursor_pixel
4681 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
4682 f
->output_data
.x
->cursor_foreground_pixel
4683 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
4684 f
->output_data
.x
->border_pixel
4685 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
4686 f
->output_data
.x
->mouse_pixel
4687 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
4691 /* Set the name; the functions to which we pass f expect the name to
4693 if (EQ (name
, Qunbound
) || NILP (name
))
4695 f
->name
= build_string (dpyinfo
->x_id_name
);
4696 f
->explicit_name
= 0;
4701 f
->explicit_name
= 1;
4702 /* use the frame's title when getting resources for this frame. */
4703 specbind (Qx_resource_name
, name
);
4706 /* Extract the window parameters from the supplied values that are
4707 needed to determine window geometry. */
4711 font
= x_get_arg (dpyinfo
, parms
, Qfont
, "font", "Font", RES_TYPE_STRING
);
4714 /* First, try whatever font the caller has specified. */
4717 tem
= Fquery_fontset (font
, Qnil
);
4719 font
= x_new_fontset (f
, SDATA (tem
));
4721 font
= x_new_font (f
, SDATA (font
));
4724 /* Try out a font which we hope has bold and italic variations. */
4725 if (!STRINGP (font
))
4726 font
= x_new_font (f
, "-adobe-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-1");
4727 if (!STRINGP (font
))
4728 font
= x_new_font (f
, "-misc-fixed-medium-r-normal-*-*-140-*-*-c-*-iso8859-1");
4729 if (! STRINGP (font
))
4730 font
= x_new_font (f
, "-*-*-medium-r-normal-*-*-140-*-*-c-*-iso8859-1");
4731 if (! STRINGP (font
))
4732 /* This was formerly the first thing tried, but it finds too many fonts
4733 and takes too long. */
4734 font
= x_new_font (f
, "-*-*-medium-r-*-*-*-*-*-*-c-*-iso8859-1");
4735 /* If those didn't work, look for something which will at least work. */
4736 if (! STRINGP (font
))
4737 font
= x_new_font (f
, "-*-fixed-*-*-*-*-*-140-*-*-c-*-iso8859-1");
4739 if (! STRINGP (font
))
4740 font
= build_string ("fixed");
4742 x_default_parameter (f
, parms
, Qfont
, font
,
4743 "font", "Font", RES_TYPE_STRING
);
4746 x_default_parameter (f
, parms
, Qborder_width
, make_number (2),
4747 "borderWidth", "BorderWidth", RES_TYPE_NUMBER
);
4749 /* This defaults to 2 in order to match xterm. We recognize either
4750 internalBorderWidth or internalBorder (which is what xterm calls
4752 if (NILP (Fassq (Qinternal_border_width
, parms
)))
4756 value
= x_get_arg (dpyinfo
, parms
, Qinternal_border_width
,
4757 "internalBorder", "internalBorder", RES_TYPE_NUMBER
);
4758 if (! EQ (value
, Qunbound
))
4759 parms
= Fcons (Fcons (Qinternal_border_width
, value
),
4763 x_default_parameter (f
, parms
, Qinternal_border_width
, make_number (1),
4764 "internalBorderWidth", "internalBorderWidth",
4767 /* Also do the stuff which must be set before the window exists. */
4768 x_default_parameter (f
, parms
, Qforeground_color
, build_string ("black"),
4769 "foreground", "Foreground", RES_TYPE_STRING
);
4770 x_default_parameter (f
, parms
, Qbackground_color
, build_string ("white"),
4771 "background", "Background", RES_TYPE_STRING
);
4772 x_default_parameter (f
, parms
, Qmouse_color
, build_string ("black"),
4773 "pointerColor", "Foreground", RES_TYPE_STRING
);
4774 x_default_parameter (f
, parms
, Qcursor_color
, build_string ("black"),
4775 "cursorColor", "Foreground", RES_TYPE_STRING
);
4776 x_default_parameter (f
, parms
, Qborder_color
, build_string ("black"),
4777 "borderColor", "BorderColor", RES_TYPE_STRING
);
4779 /* Init faces before x_default_parameter is called for scroll-bar
4780 parameters because that function calls x_set_scroll_bar_width,
4781 which calls change_frame_size, which calls Fset_window_buffer,
4782 which runs hooks, which call Fvertical_motion. At the end, we
4783 end up in init_iterator with a null face cache, which should not
4785 init_frame_faces (f
);
4787 f
->output_data
.x
->parent_desc
= FRAME_X_DISPLAY_INFO (f
)->root_window
;
4789 window_prompting
= x_figure_window_size (f
, parms
, 0);
4792 XSetWindowAttributes attrs
;
4796 mask
= CWBackPixel
| CWOverrideRedirect
| CWEventMask
;
4797 if (DoesSaveUnders (dpyinfo
->screen
))
4798 mask
|= CWSaveUnder
;
4800 /* Window managers look at the override-redirect flag to determine
4801 whether or net to give windows a decoration (Xlib spec, chapter
4803 attrs
.override_redirect
= True
;
4804 attrs
.save_under
= True
;
4805 attrs
.background_pixel
= FRAME_BACKGROUND_PIXEL (f
);
4806 /* Arrange for getting MapNotify and UnmapNotify events. */
4807 attrs
.event_mask
= StructureNotifyMask
;
4809 = FRAME_X_WINDOW (f
)
4810 = XCreateWindow (FRAME_X_DISPLAY (f
),
4811 FRAME_X_DISPLAY_INFO (f
)->root_window
,
4812 /* x, y, width, height */
4816 CopyFromParent
, InputOutput
, CopyFromParent
,
4823 x_default_parameter (f
, parms
, Qauto_raise
, Qnil
,
4824 "autoRaise", "AutoRaiseLower", RES_TYPE_BOOLEAN
);
4825 x_default_parameter (f
, parms
, Qauto_lower
, Qnil
,
4826 "autoLower", "AutoRaiseLower", RES_TYPE_BOOLEAN
);
4827 x_default_parameter (f
, parms
, Qcursor_type
, Qbox
,
4828 "cursorType", "CursorType", RES_TYPE_SYMBOL
);
4830 /* Dimensions, especially FRAME_LINES (f), must be done via change_frame_size.
4831 Change will not be effected unless different from the current
4833 width
= FRAME_COLS (f
);
4834 height
= FRAME_LINES (f
);
4835 SET_FRAME_COLS (f
, 0);
4836 FRAME_LINES (f
) = 0;
4837 change_frame_size (f
, height
, width
, 1, 0, 0);
4839 /* Add `tooltip' frame parameter's default value. */
4840 if (NILP (Fframe_parameter (frame
, intern ("tooltip"))))
4841 Fmodify_frame_parameters (frame
, Fcons (Fcons (intern ("tooltip"), Qt
),
4844 /* Set up faces after all frame parameters are known. This call
4845 also merges in face attributes specified for new frames.
4847 Frame parameters may be changed if .Xdefaults contains
4848 specifications for the default font. For example, if there is an
4849 `Emacs.default.attributeBackground: pink', the `background-color'
4850 attribute of the frame get's set, which let's the internal border
4851 of the tooltip frame appear in pink. Prevent this. */
4853 Lisp_Object bg
= Fframe_parameter (frame
, Qbackground_color
);
4855 /* Set tip_frame here, so that */
4857 call1 (Qface_set_after_frame_default
, frame
);
4859 if (!EQ (bg
, Fframe_parameter (frame
, Qbackground_color
)))
4860 Fmodify_frame_parameters (frame
, Fcons (Fcons (Qbackground_color
, bg
),
4868 /* It is now ok to make the frame official even if we get an error
4869 below. And the frame needs to be on Vframe_list or making it
4870 visible won't work. */
4871 Vframe_list
= Fcons (frame
, Vframe_list
);
4873 /* Now that the frame is official, it counts as a reference to
4875 FRAME_X_DISPLAY_INFO (f
)->reference_count
++;
4877 /* Setting attributes of faces of the tooltip frame from resources
4878 and similar will increment face_change_count, which leads to the
4879 clearing of all current matrices. Since this isn't necessary
4880 here, avoid it by resetting face_change_count to the value it
4881 had before we created the tip frame. */
4882 face_change_count
= face_change_count_before
;
4884 /* Discard the unwind_protect. */
4885 return unbind_to (count
, frame
);
4889 /* Compute where to display tip frame F. PARMS is the list of frame
4890 parameters for F. DX and DY are specified offsets from the current
4891 location of the mouse. WIDTH and HEIGHT are the width and height
4892 of the tooltip. Return coordinates relative to the root window of
4893 the display in *ROOT_X, and *ROOT_Y. */
4896 compute_tip_xy (f
, parms
, dx
, dy
, width
, height
, root_x
, root_y
)
4898 Lisp_Object parms
, dx
, dy
;
4900 int *root_x
, *root_y
;
4902 Lisp_Object left
, top
;
4907 /* User-specified position? */
4908 left
= Fcdr (Fassq (Qleft
, parms
));
4909 top
= Fcdr (Fassq (Qtop
, parms
));
4911 /* Move the tooltip window where the mouse pointer is. Resize and
4913 if (!INTEGERP (left
) || !INTEGERP (top
))
4916 XQueryPointer (FRAME_X_DISPLAY (f
), FRAME_X_DISPLAY_INFO (f
)->root_window
,
4917 &root
, &child
, root_x
, root_y
, &win_x
, &win_y
, &pmask
);
4922 *root_y
= XINT (top
);
4923 else if (*root_y
+ XINT (dy
) - height
< 0)
4924 *root_y
-= XINT (dy
);
4928 *root_y
+= XINT (dy
);
4931 if (INTEGERP (left
))
4932 *root_x
= XINT (left
);
4933 else if (*root_x
+ XINT (dx
) + width
<= FRAME_X_DISPLAY_INFO (f
)->width
)
4934 /* It fits to the right of the pointer. */
4935 *root_x
+= XINT (dx
);
4936 else if (width
+ XINT (dx
) <= *root_x
)
4937 /* It fits to the left of the pointer. */
4938 *root_x
-= width
+ XINT (dx
);
4940 /* Put it left-justified on the screen--it ought to fit that way. */
4945 DEFUN ("x-show-tip", Fx_show_tip
, Sx_show_tip
, 1, 6, 0,
4946 doc
: /* Show STRING in a "tooltip" window on frame FRAME.
4947 A tooltip window is a small X window displaying a string.
4949 FRAME nil or omitted means use the selected frame.
4951 PARMS is an optional list of frame parameters which can be used to
4952 change the tooltip's appearance.
4954 Automatically hide the tooltip after TIMEOUT seconds. TIMEOUT nil
4955 means use the default timeout of 5 seconds.
4957 If the list of frame parameters PARAMS contains a `left' parameters,
4958 the tooltip is displayed at that x-position. Otherwise it is
4959 displayed at the mouse position, with offset DX added (default is 5 if
4960 DX isn't specified). Likewise for the y-position; if a `top' frame
4961 parameter is specified, it determines the y-position of the tooltip
4962 window, otherwise it is displayed at the mouse position, with offset
4963 DY added (default is -10).
4965 A tooltip's maximum size is specified by `x-max-tooltip-size'.
4966 Text larger than the specified size is clipped. */)
4967 (string
, frame
, parms
, timeout
, dx
, dy
)
4968 Lisp_Object string
, frame
, parms
, timeout
, dx
, dy
;
4973 struct buffer
*old_buffer
;
4974 struct text_pos pos
;
4975 int i
, width
, height
;
4976 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
4977 int old_windows_or_buffers_changed
= windows_or_buffers_changed
;
4978 int count
= SPECPDL_INDEX ();
4980 specbind (Qinhibit_redisplay
, Qt
);
4982 GCPRO4 (string
, parms
, frame
, timeout
);
4984 CHECK_STRING (string
);
4985 f
= check_x_frame (frame
);
4987 timeout
= make_number (5);
4989 CHECK_NATNUM (timeout
);
4992 dx
= make_number (5);
4997 dy
= make_number (-10);
5001 if (NILP (last_show_tip_args
))
5002 last_show_tip_args
= Fmake_vector (make_number (3), Qnil
);
5004 if (!NILP (tip_frame
))
5006 Lisp_Object last_string
= AREF (last_show_tip_args
, 0);
5007 Lisp_Object last_frame
= AREF (last_show_tip_args
, 1);
5008 Lisp_Object last_parms
= AREF (last_show_tip_args
, 2);
5010 if (EQ (frame
, last_frame
)
5011 && !NILP (Fequal (last_string
, string
))
5012 && !NILP (Fequal (last_parms
, parms
)))
5014 struct frame
*f
= XFRAME (tip_frame
);
5016 /* Only DX and DY have changed. */
5017 if (!NILP (tip_timer
))
5019 Lisp_Object timer
= tip_timer
;
5021 call1 (Qcancel_timer
, timer
);
5025 compute_tip_xy (f
, parms
, dx
, dy
, FRAME_PIXEL_WIDTH (f
),
5026 FRAME_PIXEL_HEIGHT (f
), &root_x
, &root_y
);
5027 XMoveWindow (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
5034 /* Hide a previous tip, if any. */
5037 ASET (last_show_tip_args
, 0, string
);
5038 ASET (last_show_tip_args
, 1, frame
);
5039 ASET (last_show_tip_args
, 2, parms
);
5041 /* Add default values to frame parameters. */
5042 if (NILP (Fassq (Qname
, parms
)))
5043 parms
= Fcons (Fcons (Qname
, build_string ("tooltip")), parms
);
5044 if (NILP (Fassq (Qinternal_border_width
, parms
)))
5045 parms
= Fcons (Fcons (Qinternal_border_width
, make_number (3)), parms
);
5046 if (NILP (Fassq (Qborder_width
, parms
)))
5047 parms
= Fcons (Fcons (Qborder_width
, make_number (1)), parms
);
5048 if (NILP (Fassq (Qborder_color
, parms
)))
5049 parms
= Fcons (Fcons (Qborder_color
, build_string ("lightyellow")), parms
);
5050 if (NILP (Fassq (Qbackground_color
, parms
)))
5051 parms
= Fcons (Fcons (Qbackground_color
, build_string ("lightyellow")),
5054 /* Create a frame for the tooltip, and record it in the global
5055 variable tip_frame. */
5056 frame
= x_create_tip_frame (FRAME_X_DISPLAY_INFO (f
), parms
, string
);
5059 /* Set up the frame's root window. */
5060 w
= XWINDOW (FRAME_ROOT_WINDOW (f
));
5061 w
->left_col
= w
->top_line
= make_number (0);
5063 if (CONSP (Vx_max_tooltip_size
)
5064 && INTEGERP (XCAR (Vx_max_tooltip_size
))
5065 && XINT (XCAR (Vx_max_tooltip_size
)) > 0
5066 && INTEGERP (XCDR (Vx_max_tooltip_size
))
5067 && XINT (XCDR (Vx_max_tooltip_size
)) > 0)
5069 w
->total_cols
= XCAR (Vx_max_tooltip_size
);
5070 w
->total_lines
= XCDR (Vx_max_tooltip_size
);
5074 w
->total_cols
= make_number (80);
5075 w
->total_lines
= make_number (40);
5078 FRAME_TOTAL_COLS (f
) = XINT (w
->total_cols
);
5080 w
->pseudo_window_p
= 1;
5082 /* Display the tooltip text in a temporary buffer. */
5083 old_buffer
= current_buffer
;
5084 set_buffer_internal_1 (XBUFFER (XWINDOW (FRAME_ROOT_WINDOW (f
))->buffer
));
5085 current_buffer
->truncate_lines
= Qnil
;
5086 clear_glyph_matrix (w
->desired_matrix
);
5087 clear_glyph_matrix (w
->current_matrix
);
5088 SET_TEXT_POS (pos
, BEGV
, BEGV_BYTE
);
5089 try_window (FRAME_ROOT_WINDOW (f
), pos
);
5091 /* Compute width and height of the tooltip. */
5093 for (i
= 0; i
< w
->desired_matrix
->nrows
; ++i
)
5095 struct glyph_row
*row
= &w
->desired_matrix
->rows
[i
];
5099 /* Stop at the first empty row at the end. */
5100 if (!row
->enabled_p
|| !row
->displays_text_p
)
5103 /* Let the row go over the full width of the frame. */
5104 row
->full_width_p
= 1;
5106 /* There's a glyph at the end of rows that is used to place
5107 the cursor there. Don't include the width of this glyph. */
5108 if (row
->used
[TEXT_AREA
])
5110 last
= &row
->glyphs
[TEXT_AREA
][row
->used
[TEXT_AREA
] - 1];
5111 row_width
= row
->pixel_width
- last
->pixel_width
;
5114 row_width
= row
->pixel_width
;
5116 height
+= row
->height
;
5117 width
= max (width
, row_width
);
5120 /* Add the frame's internal border to the width and height the X
5121 window should have. */
5122 height
+= 2 * FRAME_INTERNAL_BORDER_WIDTH (f
);
5123 width
+= 2 * FRAME_INTERNAL_BORDER_WIDTH (f
);
5125 /* Move the tooltip window where the mouse pointer is. Resize and
5127 compute_tip_xy (f
, parms
, dx
, dy
, width
, height
, &root_x
, &root_y
);
5130 XMoveResizeWindow (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
5131 root_x
, root_y
, width
, height
);
5132 XMapRaised (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
));
5135 /* Draw into the window. */
5136 w
->must_be_updated_p
= 1;
5137 update_single_window (w
, 1);
5139 /* Restore original current buffer. */
5140 set_buffer_internal_1 (old_buffer
);
5141 windows_or_buffers_changed
= old_windows_or_buffers_changed
;
5144 /* Let the tip disappear after timeout seconds. */
5145 tip_timer
= call3 (intern ("run-at-time"), timeout
, Qnil
,
5146 intern ("x-hide-tip"));
5149 return unbind_to (count
, Qnil
);
5153 DEFUN ("x-hide-tip", Fx_hide_tip
, Sx_hide_tip
, 0, 0, 0,
5154 doc
: /* Hide the current tooltip window, if there is any.
5155 Value is t if tooltip was open, nil otherwise. */)
5159 Lisp_Object deleted
, frame
, timer
;
5160 struct gcpro gcpro1
, gcpro2
;
5162 /* Return quickly if nothing to do. */
5163 if (NILP (tip_timer
) && NILP (tip_frame
))
5168 GCPRO2 (frame
, timer
);
5169 tip_frame
= tip_timer
= deleted
= Qnil
;
5171 count
= SPECPDL_INDEX ();
5172 specbind (Qinhibit_redisplay
, Qt
);
5173 specbind (Qinhibit_quit
, Qt
);
5176 call1 (Qcancel_timer
, timer
);
5180 Fdelete_frame (frame
, Qnil
);
5184 /* Bloodcurdling hack alert: The Lucid menu bar widget's
5185 redisplay procedure is not called when a tip frame over menu
5186 items is unmapped. Redisplay the menu manually... */
5188 struct frame
*f
= SELECTED_FRAME ();
5189 Widget w
= f
->output_data
.x
->menubar_widget
;
5190 extern void xlwmenu_redisplay
P_ ((Widget
));
5192 if (!DoesSaveUnders (FRAME_X_DISPLAY_INFO (f
)->screen
)
5196 xlwmenu_redisplay (w
);
5200 #endif /* USE_LUCID */
5204 return unbind_to (count
, deleted
);
5209 /***********************************************************************
5210 File selection dialog
5211 ***********************************************************************/
5215 /* Callback for "OK" and "Cancel" on file selection dialog. */
5218 file_dialog_cb (widget
, client_data
, call_data
)
5220 XtPointer call_data
, client_data
;
5222 int *result
= (int *) client_data
;
5223 XmAnyCallbackStruct
*cb
= (XmAnyCallbackStruct
*) call_data
;
5224 *result
= cb
->reason
;
5228 /* Callback for unmapping a file selection dialog. This is used to
5229 capture the case where a dialog is closed via a window manager's
5230 closer button, for example. Using a XmNdestroyCallback didn't work
5234 file_dialog_unmap_cb (widget
, client_data
, call_data
)
5236 XtPointer call_data
, client_data
;
5238 int *result
= (int *) client_data
;
5239 *result
= XmCR_CANCEL
;
5243 clean_up_file_dialog (arg
)
5246 struct Lisp_Save_Value
*p
= XSAVE_VALUE (arg
);
5247 Widget dialog
= (Widget
) p
->pointer
;
5251 XtUnmanageChild (dialog
);
5252 XtDestroyWidget (dialog
);
5253 x_menu_set_in_use (0);
5260 DEFUN ("x-file-dialog", Fx_file_dialog
, Sx_file_dialog
, 2, 5, 0,
5261 doc
: /* Read file name, prompting with PROMPT in directory DIR.
5262 Use a file selection dialog. Select DEFAULT-FILENAME in the dialog's file
5263 selection box, if specified. If MUSTMATCH is non-nil, the returned file
5264 or directory must exist. ONLY-DIR-P is ignored." */)
5265 (prompt
, dir
, default_filename
, mustmatch
, only_dir_p
)
5266 Lisp_Object prompt
, dir
, default_filename
, mustmatch
, only_dir_p
;
5269 struct frame
*f
= SELECTED_FRAME ();
5270 Lisp_Object file
= Qnil
;
5271 Widget dialog
, text
, help
;
5274 extern XtAppContext Xt_app_con
;
5275 XmString dir_xmstring
, pattern_xmstring
;
5276 int count
= SPECPDL_INDEX ();
5277 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
, gcpro5
, gcpro6
;
5279 GCPRO6 (prompt
, dir
, default_filename
, mustmatch
, only_dir_p
, file
);
5281 if (popup_activated ())
5282 error ("Trying to use a menu from within a menu-entry");
5284 CHECK_STRING (prompt
);
5287 /* Prevent redisplay. */
5288 specbind (Qinhibit_redisplay
, Qt
);
5292 /* Create the dialog with PROMPT as title, using DIR as initial
5293 directory and using "*" as pattern. */
5294 dir
= Fexpand_file_name (dir
, Qnil
);
5295 dir_xmstring
= XmStringCreateLocalized (SDATA (dir
));
5296 pattern_xmstring
= XmStringCreateLocalized ("*");
5298 XtSetArg (al
[ac
], XmNtitle
, SDATA (prompt
)); ++ac
;
5299 XtSetArg (al
[ac
], XmNdirectory
, dir_xmstring
); ++ac
;
5300 XtSetArg (al
[ac
], XmNpattern
, pattern_xmstring
); ++ac
;
5301 XtSetArg (al
[ac
], XmNresizePolicy
, XmRESIZE_GROW
); ++ac
;
5302 XtSetArg (al
[ac
], XmNdialogStyle
, XmDIALOG_APPLICATION_MODAL
); ++ac
;
5303 dialog
= XmCreateFileSelectionDialog (f
->output_data
.x
->widget
,
5305 XmStringFree (dir_xmstring
);
5306 XmStringFree (pattern_xmstring
);
5308 /* Add callbacks for OK and Cancel. */
5309 XtAddCallback (dialog
, XmNokCallback
, file_dialog_cb
,
5310 (XtPointer
) &result
);
5311 XtAddCallback (dialog
, XmNcancelCallback
, file_dialog_cb
,
5312 (XtPointer
) &result
);
5313 XtAddCallback (dialog
, XmNunmapCallback
, file_dialog_unmap_cb
,
5314 (XtPointer
) &result
);
5316 /* Remove the help button since we can't display help. */
5317 help
= XmFileSelectionBoxGetChild (dialog
, XmDIALOG_HELP_BUTTON
);
5318 XtUnmanageChild (help
);
5320 /* Mark OK button as default. */
5321 XtVaSetValues (XmFileSelectionBoxGetChild (dialog
, XmDIALOG_OK_BUTTON
),
5322 XmNshowAsDefault
, True
, NULL
);
5324 /* If MUSTMATCH is non-nil, disable the file entry field of the
5325 dialog, so that the user must select a file from the files list
5326 box. We can't remove it because we wouldn't have a way to get at
5327 the result file name, then. */
5328 text
= XmFileSelectionBoxGetChild (dialog
, XmDIALOG_TEXT
);
5329 if (!NILP (mustmatch
))
5332 label
= XmFileSelectionBoxGetChild (dialog
, XmDIALOG_SELECTION_LABEL
);
5333 XtSetSensitive (text
, False
);
5334 XtSetSensitive (label
, False
);
5337 /* Manage the dialog, so that list boxes get filled. */
5338 XtManageChild (dialog
);
5340 if (STRINGP (default_filename
))
5342 XmString default_xmstring
;
5343 Widget wtext
= XmFileSelectionBoxGetChild (dialog
, XmDIALOG_TEXT
);
5344 Widget list
= XmFileSelectionBoxGetChild (dialog
, XmDIALOG_LIST
);
5346 XmTextPosition last_pos
= XmTextFieldGetLastPosition (wtext
);
5347 XmTextFieldReplace (wtext
, 0, last_pos
,
5348 (SDATA (Ffile_name_nondirectory (default_filename
))));
5350 /* Select DEFAULT_FILENAME in the files list box. DEFAULT_FILENAME
5351 must include the path for this to work. */
5353 default_xmstring
= XmStringCreateLocalized (SDATA (default_filename
));
5355 if (XmListItemExists (list
, default_xmstring
))
5357 int item_pos
= XmListItemPos (list
, default_xmstring
);
5358 /* Select the item and scroll it into view. */
5359 XmListSelectPos (list
, item_pos
, True
);
5360 XmListSetPos (list
, item_pos
);
5363 XmStringFree (default_xmstring
);
5366 record_unwind_protect (clean_up_file_dialog
, make_save_value (dialog
, 0));
5368 /* Process events until the user presses Cancel or OK. */
5369 x_menu_set_in_use (1);
5374 x_menu_wait_for_event (0);
5375 XtAppNextEvent (Xt_app_con
, &event
);
5376 if (event
.type
== KeyPress
5377 && FRAME_X_DISPLAY (f
) == event
.xkey
.display
)
5379 KeySym keysym
= XLookupKeysym (&event
.xkey
, 0);
5381 /* Pop down on C-g. */
5382 if (keysym
== XK_g
&& (event
.xkey
.state
& ControlMask
) != 0)
5383 XtUnmanageChild (dialog
);
5386 (void) x_dispatch_event (&event
, FRAME_X_DISPLAY (f
));
5389 /* Get the result. */
5390 if (result
== XmCR_OK
)
5395 XtVaGetValues (dialog
, XmNtextString
, &text
, NULL
);
5396 XmStringGetLtoR (text
, XmFONTLIST_DEFAULT_TAG
, &data
);
5397 XmStringFree (text
);
5398 file
= build_string (data
);
5407 /* Make "Cancel" equivalent to C-g. */
5409 Fsignal (Qquit
, Qnil
);
5411 return unbind_to (count
, file
);
5414 #endif /* USE_MOTIF */
5419 clean_up_dialog (arg
)
5422 x_menu_set_in_use (0);
5427 DEFUN ("x-file-dialog", Fx_file_dialog
, Sx_file_dialog
, 2, 5, 0,
5428 doc
: /* Read file name, prompting with PROMPT in directory DIR.
5429 Use a file selection dialog. Select DEFAULT-FILENAME in the dialog's file
5430 selection box, if specified. If MUSTMATCH is non-nil, the returned file
5431 or directory must exist. If ONLY-DIR-P is non-nil, the user can only select
5433 (prompt
, dir
, default_filename
, mustmatch
, only_dir_p
)
5434 Lisp_Object prompt
, dir
, default_filename
, mustmatch
, only_dir_p
;
5436 FRAME_PTR f
= SELECTED_FRAME ();
5438 Lisp_Object file
= Qnil
;
5439 int count
= SPECPDL_INDEX ();
5440 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
, gcpro5
, gcpro6
;
5443 GCPRO6 (prompt
, dir
, default_filename
, mustmatch
, only_dir_p
, file
);
5445 if (popup_activated ())
5446 error ("Trying to use a menu from within a menu-entry");
5448 CHECK_STRING (prompt
);
5451 /* Prevent redisplay. */
5452 specbind (Qinhibit_redisplay
, Qt
);
5453 record_unwind_protect (clean_up_dialog
, Qnil
);
5457 if (STRINGP (default_filename
))
5458 cdef_file
= SDATA (default_filename
);
5460 cdef_file
= SDATA (dir
);
5462 fn
= xg_get_file_name (f
, SDATA (prompt
), cdef_file
,
5464 ! NILP (only_dir_p
));
5468 file
= build_string (fn
);
5475 /* Make "Cancel" equivalent to C-g. */
5477 Fsignal (Qquit
, Qnil
);
5479 return unbind_to (count
, file
);
5482 #endif /* USE_GTK */
5485 /***********************************************************************
5487 ***********************************************************************/
5489 #ifdef HAVE_XKBGETKEYBOARD
5490 #include <X11/XKBlib.h>
5491 #include <X11/keysym.h>
5494 DEFUN ("x-backspace-delete-keys-p", Fx_backspace_delete_keys_p
,
5495 Sx_backspace_delete_keys_p
, 0, 1, 0,
5496 doc
: /* Check if both Backspace and Delete keys are on the keyboard of FRAME.
5497 FRAME nil means use the selected frame.
5498 Value is t if we know that both keys are present, and are mapped to the
5499 usual X keysyms. */)
5503 #ifdef HAVE_XKBGETKEYBOARD
5505 struct frame
*f
= check_x_frame (frame
);
5506 Display
*dpy
= FRAME_X_DISPLAY (f
);
5507 Lisp_Object have_keys
;
5508 int major
, minor
, op
, event
, error
;
5512 /* Check library version in case we're dynamically linked. */
5513 major
= XkbMajorVersion
;
5514 minor
= XkbMinorVersion
;
5515 if (!XkbLibraryVersion (&major
, &minor
))
5521 /* Check that the server supports XKB. */
5522 major
= XkbMajorVersion
;
5523 minor
= XkbMinorVersion
;
5524 if (!XkbQueryExtension (dpy
, &op
, &event
, &error
, &major
, &minor
))
5530 /* In this code we check that the keyboard has physical keys with names
5531 that start with BKSP (Backspace) and DELE (Delete), and that they
5532 generate keysym XK_BackSpace and XK_Delete respectively.
5533 This function is used to test if normal-erase-is-backspace should be
5535 An alternative approach would be to just check if XK_BackSpace and
5536 XK_Delete are mapped to any key. But if any of those are mapped to
5537 some non-intuitive key combination (Meta-Shift-Ctrl-whatever) and the
5538 user doesn't know about it, it is better to return false here.
5539 It is more obvious to the user what to do if she/he has two keys
5540 clearly marked with names/symbols and one key does something not
5541 expected (i.e. she/he then tries the other).
5542 The cases where Backspace/Delete is mapped to some other key combination
5543 are rare, and in those cases, normal-erase-is-backspace can be turned on
5547 kb
= XkbGetMap (dpy
, XkbAllMapComponentsMask
, XkbUseCoreKbd
);
5550 int delete_keycode
= 0, backspace_keycode
= 0, i
;
5552 if (XkbGetNames (dpy
, XkbAllNamesMask
, kb
) == Success
)
5554 for (i
= kb
->min_key_code
;
5555 (i
< kb
->max_key_code
5556 && (delete_keycode
== 0 || backspace_keycode
== 0));
5559 /* The XKB symbolic key names can be seen most easily in
5560 the PS file generated by `xkbprint -label name
5562 if (bcmp ("DELE", kb
->names
->keys
[i
].name
, 4) == 0)
5564 else if (bcmp ("BKSP", kb
->names
->keys
[i
].name
, 4) == 0)
5565 backspace_keycode
= i
;
5568 XkbFreeNames (kb
, 0, True
);
5571 XkbFreeClientMap (kb
, 0, True
);
5574 && backspace_keycode
5575 && XKeysymToKeycode (dpy
, XK_Delete
) == delete_keycode
5576 && XKeysymToKeycode (dpy
, XK_BackSpace
) == backspace_keycode
)
5581 #else /* not HAVE_XKBGETKEYBOARD */
5583 #endif /* not HAVE_XKBGETKEYBOARD */
5588 /***********************************************************************
5590 ***********************************************************************/
5592 /* Keep this list in the same order as frame_parms in frame.c.
5593 Use 0 for unsupported frame parameters. */
5595 frame_parm_handler x_frame_parm_handlers
[] =
5599 x_set_background_color
,
5605 x_set_foreground_color
,
5608 x_set_internal_border_width
,
5609 x_set_menu_bar_lines
,
5611 x_explicitly_set_name
,
5612 x_set_scroll_bar_width
,
5615 x_set_vertical_scroll_bars
,
5617 x_set_tool_bar_lines
,
5618 x_set_scroll_bar_foreground
,
5619 x_set_scroll_bar_background
,
5631 /* This is zero if not using X windows. */
5634 /* The section below is built by the lisp expression at the top of the file,
5635 just above where these variables are declared. */
5636 /*&&& init symbols here &&&*/
5637 Qnone
= intern ("none");
5639 Qsuppress_icon
= intern ("suppress-icon");
5640 staticpro (&Qsuppress_icon
);
5641 Qundefined_color
= intern ("undefined-color");
5642 staticpro (&Qundefined_color
);
5643 Qcompound_text
= intern ("compound-text");
5644 staticpro (&Qcompound_text
);
5645 Qcancel_timer
= intern ("cancel-timer");
5646 staticpro (&Qcancel_timer
);
5647 /* This is the end of symbol initialization. */
5649 /* Text property `display' should be nonsticky by default. */
5650 Vtext_property_default_nonsticky
5651 = Fcons (Fcons (Qdisplay
, Qt
), Vtext_property_default_nonsticky
);
5654 Fput (Qundefined_color
, Qerror_conditions
,
5655 Fcons (Qundefined_color
, Fcons (Qerror
, Qnil
)));
5656 Fput (Qundefined_color
, Qerror_message
,
5657 build_string ("Undefined color"));
5659 DEFVAR_LISP ("x-pointer-shape", &Vx_pointer_shape
,
5660 doc
: /* The shape of the pointer when over text.
5661 Changing the value does not affect existing frames
5662 unless you set the mouse color. */);
5663 Vx_pointer_shape
= Qnil
;
5665 #if 0 /* This doesn't really do anything. */
5666 DEFVAR_LISP ("x-nontext-pointer-shape", &Vx_nontext_pointer_shape
,
5667 doc
: /* The shape of the pointer when not over text.
5668 This variable takes effect when you create a new frame
5669 or when you set the mouse color. */);
5671 Vx_nontext_pointer_shape
= Qnil
;
5673 DEFVAR_LISP ("x-hourglass-pointer-shape", &Vx_hourglass_pointer_shape
,
5674 doc
: /* The shape of the pointer when Emacs is busy.
5675 This variable takes effect when you create a new frame
5676 or when you set the mouse color. */);
5677 Vx_hourglass_pointer_shape
= Qnil
;
5679 DEFVAR_BOOL ("display-hourglass", &display_hourglass_p
,
5680 doc
: /* Non-zero means Emacs displays an hourglass pointer on window systems. */);
5681 display_hourglass_p
= 1;
5683 DEFVAR_LISP ("hourglass-delay", &Vhourglass_delay
,
5684 doc
: /* *Seconds to wait before displaying an hourglass pointer.
5685 Value must be an integer or float. */);
5686 Vhourglass_delay
= make_number (DEFAULT_HOURGLASS_DELAY
);
5688 #if 0 /* This doesn't really do anything. */
5689 DEFVAR_LISP ("x-mode-pointer-shape", &Vx_mode_pointer_shape
,
5690 doc
: /* The shape of the pointer when over the mode line.
5691 This variable takes effect when you create a new frame
5692 or when you set the mouse color. */);
5694 Vx_mode_pointer_shape
= Qnil
;
5696 DEFVAR_LISP ("x-sensitive-text-pointer-shape",
5697 &Vx_sensitive_text_pointer_shape
,
5698 doc
: /* The shape of the pointer when over mouse-sensitive text.
5699 This variable takes effect when you create a new frame
5700 or when you set the mouse color. */);
5701 Vx_sensitive_text_pointer_shape
= Qnil
;
5703 DEFVAR_LISP ("x-window-horizontal-drag-cursor",
5704 &Vx_window_horizontal_drag_shape
,
5705 doc
: /* Pointer shape to use for indicating a window can be dragged horizontally.
5706 This variable takes effect when you create a new frame
5707 or when you set the mouse color. */);
5708 Vx_window_horizontal_drag_shape
= Qnil
;
5710 DEFVAR_LISP ("x-cursor-fore-pixel", &Vx_cursor_fore_pixel
,
5711 doc
: /* A string indicating the foreground color of the cursor box. */);
5712 Vx_cursor_fore_pixel
= Qnil
;
5714 DEFVAR_LISP ("x-max-tooltip-size", &Vx_max_tooltip_size
,
5715 doc
: /* Maximum size for tooltips. Value is a pair (COLUMNS . ROWS).
5716 Text larger than this is clipped. */);
5717 Vx_max_tooltip_size
= Fcons (make_number (80), make_number (40));
5719 DEFVAR_LISP ("x-no-window-manager", &Vx_no_window_manager
,
5720 doc
: /* Non-nil if no X window manager is in use.
5721 Emacs doesn't try to figure this out; this is always nil
5722 unless you set it to something else. */);
5723 /* We don't have any way to find this out, so set it to nil
5724 and maybe the user would like to set it to t. */
5725 Vx_no_window_manager
= Qnil
;
5727 DEFVAR_LISP ("x-pixel-size-width-font-regexp",
5728 &Vx_pixel_size_width_font_regexp
,
5729 doc
: /* Regexp matching a font name whose width is the same as `PIXEL_SIZE'.
5731 Since Emacs gets width of a font matching with this regexp from
5732 PIXEL_SIZE field of the name, font finding mechanism gets faster for
5733 such a font. This is especially effective for such large fonts as
5734 Chinese, Japanese, and Korean. */);
5735 Vx_pixel_size_width_font_regexp
= Qnil
;
5737 /* This is not ifdef:ed, so other builds than GTK can customize it. */
5738 DEFVAR_BOOL ("x-use-old-gtk-file-dialog", &x_use_old_gtk_file_dialog
,
5739 doc
: /* *Non-nil means prompt with the old GTK file selection dialog.
5740 If nil or if the file selection dialog is not available, the new GTK file
5741 chooser is used instead. To turn off all file dialogs set the
5742 variable `use-file-dialog'. */);
5743 x_use_old_gtk_file_dialog
= 0;
5745 #ifdef USE_X_TOOLKIT
5746 Fprovide (intern ("x-toolkit"), Qnil
);
5748 Fprovide (intern ("motif"), Qnil
);
5750 DEFVAR_LISP ("motif-version-string", &Vmotif_version_string
,
5751 doc
: /* Version info for LessTif/Motif. */);
5752 Vmotif_version_string
= build_string (XmVERSION_STRING
);
5753 #endif /* USE_MOTIF */
5754 #endif /* USE_X_TOOLKIT */
5757 /* Provide x-toolkit also for GTK. Internally GTK does not use Xt so it
5758 is not an X toolkit in that sense (USE_X_TOOLKIT is not defined).
5759 But for a user it is a toolkit for X, and indeed, configure
5760 accepts --with-x-toolkit=gtk. */
5761 Fprovide (intern ("x-toolkit"), Qnil
);
5762 Fprovide (intern ("gtk"), Qnil
);
5764 DEFVAR_LISP ("gtk-version-string", &Vgtk_version_string
,
5765 doc
: /* Version info for GTK+. */);
5767 char gtk_version
[40];
5768 g_snprintf (gtk_version
, sizeof (gtk_version
), "%u.%u.%u",
5769 GTK_MAJOR_VERSION
, GTK_MINOR_VERSION
, GTK_MICRO_VERSION
);
5770 Vgtk_version_string
= build_string (gtk_version
);
5772 #endif /* USE_GTK */
5774 /* X window properties. */
5775 defsubr (&Sx_change_window_property
);
5776 defsubr (&Sx_delete_window_property
);
5777 defsubr (&Sx_window_property
);
5779 defsubr (&Sxw_display_color_p
);
5780 defsubr (&Sx_display_grayscale_p
);
5781 defsubr (&Sxw_color_defined_p
);
5782 defsubr (&Sxw_color_values
);
5783 defsubr (&Sx_server_max_request_size
);
5784 defsubr (&Sx_server_vendor
);
5785 defsubr (&Sx_server_version
);
5786 defsubr (&Sx_display_pixel_width
);
5787 defsubr (&Sx_display_pixel_height
);
5788 defsubr (&Sx_display_mm_width
);
5789 defsubr (&Sx_display_mm_height
);
5790 defsubr (&Sx_display_screens
);
5791 defsubr (&Sx_display_planes
);
5792 defsubr (&Sx_display_color_cells
);
5793 defsubr (&Sx_display_visual_class
);
5794 defsubr (&Sx_display_backing_store
);
5795 defsubr (&Sx_display_save_under
);
5796 defsubr (&Sx_create_frame
);
5797 defsubr (&Sx_open_connection
);
5798 defsubr (&Sx_close_connection
);
5799 defsubr (&Sx_display_list
);
5800 defsubr (&Sx_synchronize
);
5801 defsubr (&Sx_focus_frame
);
5802 defsubr (&Sx_backspace_delete_keys_p
);
5804 /* Setting callback functions for fontset handler. */
5805 get_font_info_func
= x_get_font_info
;
5807 #if 0 /* This function pointer doesn't seem to be used anywhere.
5808 And the pointer assigned has the wrong type, anyway. */
5809 list_fonts_func
= x_list_fonts
;
5812 load_font_func
= x_load_font
;
5813 find_ccl_program_func
= x_find_ccl_program
;
5814 query_font_func
= x_query_font
;
5815 set_frame_fontset_func
= x_set_font
;
5816 check_window_system_func
= check_x
;
5818 hourglass_atimer
= NULL
;
5819 hourglass_shown_p
= 0;
5821 defsubr (&Sx_show_tip
);
5822 defsubr (&Sx_hide_tip
);
5824 staticpro (&tip_timer
);
5826 staticpro (&tip_frame
);
5828 last_show_tip_args
= Qnil
;
5829 staticpro (&last_show_tip_args
);
5831 #if defined (USE_MOTIF) || defined (USE_GTK)
5832 defsubr (&Sx_file_dialog
);
5836 #endif /* HAVE_X_WINDOWS */
5838 /* arch-tag: 55040d02-5485-4d58-8b22-95a7a05f3288
5839 (do not change this comment) */