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, 2006, 2007, 2008
4 Free Software Foundation, Inc.
6 This file is part of GNU Emacs.
8 GNU Emacs is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
29 /* This makes the fields of a Display accessible, in Xlib header files. */
31 #define XLIB_ILLEGAL_ACCESS
38 #include "intervals.h"
39 #include "dispextern.h"
41 #include "blockinput.h"
43 #include "character.h"
48 #include "termhooks.h"
56 #include <sys/types.h>
60 #if 1 /* Used to be #ifdef EMACS_BITMAP_FILES, but this should always work. */
61 #include "bitmaps/gray.xbm"
63 #include <X11/bitmaps/gray>
66 #include "[.bitmaps]gray.xbm"
74 #include <X11/Shell.h>
78 #include <X11/Xaw3d/Paned.h>
79 #include <X11/Xaw3d/Label.h>
80 #else /* !HAVE_XAW3D */
81 #include <X11/Xaw/Paned.h>
82 #include <X11/Xaw/Label.h>
83 #endif /* HAVE_XAW3D */
84 #endif /* USE_MOTIF */
87 #undef USG /* ####KLUDGE for Solaris 2.2 and up */
96 #include "../lwlib/lwlib.h"
100 #include <Xm/DialogS.h>
101 #include <Xm/FileSB.h>
104 /* Do the EDITRES protocol if running X11R5
105 Exception: HP-UX (at least version A.09.05) has X11R5 without EditRes */
107 #if (XtSpecificationRelease >= 5) && !defined(NO_EDITRES)
109 extern void _XEditResCheckMessages ();
110 #endif /* R5 + Athena */
112 /* Unique id counter for widgets created by the Lucid Widget Library. */
114 extern LWLIB_ID widget_id_tick
;
117 /* This is part of a kludge--see lwlib/xlwmenu.c. */
118 extern XFontStruct
*xlwmenu_default_font
;
121 extern void free_frame_menubar ();
122 extern double atof ();
126 /* LessTif/Motif version info. */
128 static Lisp_Object Vmotif_version_string
;
130 #endif /* USE_MOTIF */
132 #endif /* USE_X_TOOLKIT */
136 /* GTK+ version info */
138 static Lisp_Object Vgtk_version_string
;
142 #define MAXREQUEST(dpy) (XMaxRequestSize (dpy))
144 /* The gray bitmap `bitmaps/gray'. This is done because xterm.c uses
145 it, and including `bitmaps/gray' more than once is a problem when
146 config.h defines `static' as an empty replacement string. */
148 int gray_bitmap_width
= gray_width
;
149 int gray_bitmap_height
= gray_height
;
150 char *gray_bitmap_bits
= gray_bits
;
152 /* Non-zero means we're allowed to display an hourglass cursor. */
154 int display_hourglass_p
;
156 /* Non-zero means prompt with the old GTK file selection dialog. */
158 int x_gtk_use_old_file_dialog
;
160 /* If non-zero, by default show hidden files in the GTK file chooser. */
162 int x_gtk_show_hidden_files
;
164 /* If non-zero, don't show additional help text in the GTK file chooser. */
166 int x_gtk_file_dialog_help_text
;
168 /* If non-zero, don't collapse to tool bar when it is detached. */
170 int x_gtk_whole_detached_tool_bar
;
172 /* The background and shape of the mouse pointer, and shape when not
173 over text or in the modeline. */
175 Lisp_Object Vx_pointer_shape
, Vx_nontext_pointer_shape
, Vx_mode_pointer_shape
;
176 Lisp_Object Vx_hourglass_pointer_shape
;
178 /* The shape when over mouse-sensitive text. */
180 Lisp_Object Vx_sensitive_text_pointer_shape
;
182 /* If non-nil, the pointer shape to indicate that windows can be
183 dragged horizontally. */
185 Lisp_Object Vx_window_horizontal_drag_shape
;
187 /* Color of chars displayed in cursor box. */
189 Lisp_Object Vx_cursor_fore_pixel
;
191 /* Nonzero if using X. */
195 /* Non nil if no window manager is in use. */
197 Lisp_Object Vx_no_window_manager
;
199 /* Regexp matching a font name whose width is the same as `PIXEL_SIZE'. */
201 Lisp_Object Vx_pixel_size_width_font_regexp
;
204 Lisp_Object Qsuppress_icon
;
205 Lisp_Object Qundefined_color
;
206 Lisp_Object Qcompound_text
, Qcancel_timer
;
207 static Lisp_Object Qfont_param
;
211 extern Lisp_Object Vwindow_system_version
;
213 /* The below are defined in frame.c. */
216 int image_cache_refcount
, dpyinfo_refcount
;
221 /* Error if we are not connected to X. */
227 error ("X windows are not in use or not initialized");
230 /* Nonzero if we can use mouse menus.
231 You should not call this unless HAVE_MENUS is defined. */
239 /* Extract a frame as a FRAME_PTR, defaulting to the selected frame
240 and checking validity for X. */
243 check_x_frame (frame
)
249 frame
= selected_frame
;
250 CHECK_LIVE_FRAME (frame
);
253 error ("Non-X frame used");
257 /* Let the user specify an X display with a Lisp object.
258 OBJECT may be nil, a frame or a terminal id.
259 nil stands for the selected frame--or, if that is not an X frame,
260 the first X display on the list. */
262 struct x_display_info
*
263 check_x_display_info (object
)
266 struct x_display_info
*dpyinfo
= NULL
;
270 struct frame
*sf
= XFRAME (selected_frame
);
272 if (FRAME_X_P (sf
) && FRAME_LIVE_P (sf
))
273 dpyinfo
= FRAME_X_DISPLAY_INFO (sf
);
274 else if (x_display_list
!= 0)
275 dpyinfo
= x_display_list
;
277 error ("X windows are not in use or not initialized");
279 else if (INTEGERP (object
))
281 struct terminal
*t
= get_terminal (object
, 1);
283 if (t
->type
!= output_x_window
)
284 error ("Terminal %d is not an X display", XINT (object
));
286 dpyinfo
= t
->display_info
.x
;
288 else if (STRINGP (object
))
289 dpyinfo
= x_display_info_for_name (object
);
292 FRAME_PTR f
= check_x_frame (object
);
293 dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
300 /* Return the Emacs frame-object corresponding to an X window.
301 It could be the frame's main window or an icon window. */
303 /* This function can be called during GC, so use GC_xxx type test macros. */
306 x_window_to_frame (dpyinfo
, wdesc
)
307 struct x_display_info
*dpyinfo
;
310 Lisp_Object tail
, frame
;
313 if (wdesc
== None
) return 0;
315 for (tail
= Vframe_list
; CONSP (tail
); tail
= XCDR (tail
))
321 if (!FRAME_X_P (f
) || FRAME_X_DISPLAY_INFO (f
) != dpyinfo
)
323 if (f
->output_data
.x
->hourglass_window
== wdesc
)
326 if ((f
->output_data
.x
->edit_widget
327 && XtWindow (f
->output_data
.x
->edit_widget
) == wdesc
)
328 /* A tooltip frame? */
329 || (!f
->output_data
.x
->edit_widget
330 && FRAME_X_WINDOW (f
) == wdesc
)
331 || f
->output_data
.x
->icon_desc
== wdesc
)
333 #else /* not USE_X_TOOLKIT */
335 if (f
->output_data
.x
->edit_widget
)
337 GtkWidget
*gwdesc
= xg_win_to_widget (dpyinfo
->display
, wdesc
);
338 struct x_output
*x
= f
->output_data
.x
;
339 if (gwdesc
!= 0 && gwdesc
== x
->edit_widget
)
343 if (FRAME_X_WINDOW (f
) == wdesc
344 || f
->output_data
.x
->icon_desc
== wdesc
)
346 #endif /* not USE_X_TOOLKIT */
351 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
352 /* Like x_window_to_frame but also compares the window with the widget's
356 x_any_window_to_frame (dpyinfo
, wdesc
)
357 struct x_display_info
*dpyinfo
;
360 Lisp_Object tail
, frame
;
361 struct frame
*f
, *found
;
364 if (wdesc
== None
) return NULL
;
367 for (tail
= Vframe_list
; CONSP (tail
) && !found
; tail
= XCDR (tail
))
374 if (FRAME_X_P (f
) && FRAME_X_DISPLAY_INFO (f
) == dpyinfo
)
376 /* This frame matches if the window is any of its widgets. */
377 x
= f
->output_data
.x
;
378 if (x
->hourglass_window
== wdesc
)
383 GtkWidget
*gwdesc
= xg_win_to_widget (dpyinfo
->display
, wdesc
);
385 && (gwdesc
== x
->widget
386 || gwdesc
== x
->edit_widget
387 || gwdesc
== x
->vbox_widget
388 || gwdesc
== x
->menubar_widget
))
391 if (wdesc
== XtWindow (x
->widget
)
392 || wdesc
== XtWindow (x
->column_widget
)
393 || wdesc
== XtWindow (x
->edit_widget
))
395 /* Match if the window is this frame's menubar. */
396 else if (lw_window_is_in_menubar (wdesc
, x
->menubar_widget
))
400 else if (FRAME_X_WINDOW (f
) == wdesc
)
401 /* A tooltip frame. */
409 /* Likewise, but exclude the menu bar widget. */
412 x_non_menubar_window_to_frame (dpyinfo
, wdesc
)
413 struct x_display_info
*dpyinfo
;
416 Lisp_Object tail
, frame
;
420 if (wdesc
== None
) return 0;
422 for (tail
= Vframe_list
; CONSP (tail
); tail
= XCDR (tail
))
428 if (!FRAME_X_P (f
) || FRAME_X_DISPLAY_INFO (f
) != dpyinfo
)
430 x
= f
->output_data
.x
;
431 /* This frame matches if the window is any of its widgets. */
432 if (x
->hourglass_window
== wdesc
)
437 GtkWidget
*gwdesc
= xg_win_to_widget (dpyinfo
->display
, wdesc
);
439 && (gwdesc
== x
->widget
440 || gwdesc
== x
->edit_widget
441 || gwdesc
== x
->vbox_widget
))
444 if (wdesc
== XtWindow (x
->widget
)
445 || wdesc
== XtWindow (x
->column_widget
)
446 || wdesc
== XtWindow (x
->edit_widget
))
450 else if (FRAME_X_WINDOW (f
) == wdesc
)
451 /* A tooltip frame. */
457 /* Likewise, but consider only the menu bar widget. */
460 x_menubar_window_to_frame (dpyinfo
, wdesc
)
461 struct x_display_info
*dpyinfo
;
464 Lisp_Object tail
, frame
;
468 if (wdesc
== None
) return 0;
470 for (tail
= Vframe_list
; CONSP (tail
); tail
= XCDR (tail
))
476 if (!FRAME_X_P (f
) || FRAME_X_DISPLAY_INFO (f
) != dpyinfo
)
478 x
= f
->output_data
.x
;
479 /* Match if the window is this frame's menubar. */
481 if (x
->menubar_widget
)
483 GtkWidget
*gwdesc
= xg_win_to_widget (dpyinfo
->display
, wdesc
);
488 && (gwdesc
== x
->menubar_widget
489 || gtk_widget_get_parent (gwdesc
) == x
->menubar_widget
))
495 if (x
->menubar_widget
496 && lw_window_is_in_menubar (wdesc
, x
->menubar_widget
))
503 /* Return the frame whose principal (outermost) window is WDESC.
504 If WDESC is some other (smaller) window, we return 0. */
507 x_top_window_to_frame (dpyinfo
, wdesc
)
508 struct x_display_info
*dpyinfo
;
511 Lisp_Object tail
, frame
;
515 if (wdesc
== None
) return 0;
517 for (tail
= Vframe_list
; CONSP (tail
); tail
= XCDR (tail
))
523 if (!FRAME_X_P (f
) || FRAME_X_DISPLAY_INFO (f
) != dpyinfo
)
525 x
= f
->output_data
.x
;
529 /* This frame matches if the window is its topmost widget. */
531 GtkWidget
*gwdesc
= xg_win_to_widget (dpyinfo
->display
, wdesc
);
532 if (gwdesc
== x
->widget
)
535 if (wdesc
== XtWindow (x
->widget
))
537 #if 0 /* I don't know why it did this,
538 but it seems logically wrong,
539 and it causes trouble for MapNotify events. */
540 /* Match if the window is this frame's menubar. */
541 if (x
->menubar_widget
542 && wdesc
== XtWindow (x
->menubar_widget
))
547 else if (FRAME_X_WINDOW (f
) == wdesc
)
553 #endif /* USE_X_TOOLKIT || USE_GTK */
557 static void x_default_font_parameter
P_ ((struct frame
*, Lisp_Object
));
559 static Lisp_Object unwind_create_frame
P_ ((Lisp_Object
));
560 static Lisp_Object unwind_create_tip_frame
P_ ((Lisp_Object
));
562 void x_set_foreground_color
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
563 static void x_set_wait_for_wm
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
564 void x_set_background_color
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
565 void x_set_mouse_color
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
566 void x_set_cursor_color
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
567 void x_set_border_color
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
568 void x_set_cursor_type
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
569 void x_set_icon_type
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
570 void x_set_icon_name
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
571 void x_explicitly_set_name
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
572 void x_set_menu_bar_lines
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
573 void x_set_title
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
574 void x_set_tool_bar_lines
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
575 void x_set_scroll_bar_foreground
P_ ((struct frame
*, Lisp_Object
,
577 void x_set_scroll_bar_background
P_ ((struct frame
*, Lisp_Object
,
579 static Lisp_Object x_default_scroll_bar_color_parameter
P_ ((struct frame
*,
586 /* Store the screen positions of frame F into XPTR and YPTR.
587 These are the positions of the containing window manager window,
588 not Emacs's own window. */
591 x_real_positions (f
, xptr
, yptr
)
595 int win_x
, win_y
, outer_x
, outer_y
;
596 int real_x
= 0, real_y
= 0;
598 Window win
= f
->output_data
.x
->parent_desc
;
602 x_catch_errors (FRAME_X_DISPLAY (f
));
604 if (win
== FRAME_X_DISPLAY_INFO (f
)->root_window
)
605 win
= FRAME_OUTER_WINDOW (f
);
607 /* This loop traverses up the containment tree until we hit the root
608 window. Window managers may intersect many windows between our window
609 and the root window. The window we find just before the root window
610 should be the outer WM window. */
613 Window wm_window
, rootw
;
614 Window
*tmp_children
;
615 unsigned int tmp_nchildren
;
618 success
= XQueryTree (FRAME_X_DISPLAY (f
), win
, &rootw
,
619 &wm_window
, &tmp_children
, &tmp_nchildren
);
621 had_errors
= x_had_errors_p (FRAME_X_DISPLAY (f
));
623 /* Don't free tmp_children if XQueryTree failed. */
627 XFree ((char *) tmp_children
);
629 if (wm_window
== rootw
|| had_errors
)
640 /* Get the real coordinates for the WM window upper left corner */
641 XGetGeometry (FRAME_X_DISPLAY (f
), win
,
642 &rootw
, &real_x
, &real_y
, &ign
, &ign
, &ign
, &ign
);
644 /* Translate real coordinates to coordinates relative to our
645 window. For our window, the upper left corner is 0, 0.
646 Since the upper left corner of the WM window is outside
647 our window, win_x and win_y will be negative:
649 ------------------ ---> x
651 | ----------------- v y
654 XTranslateCoordinates (FRAME_X_DISPLAY (f
),
656 /* From-window, to-window. */
657 FRAME_X_DISPLAY_INFO (f
)->root_window
,
660 /* From-position, to-position. */
661 real_x
, real_y
, &win_x
, &win_y
,
666 if (FRAME_X_WINDOW (f
) == FRAME_OUTER_WINDOW (f
))
673 XTranslateCoordinates (FRAME_X_DISPLAY (f
),
675 /* From-window, to-window. */
676 FRAME_X_DISPLAY_INFO (f
)->root_window
,
677 FRAME_OUTER_WINDOW (f
),
679 /* From-position, to-position. */
680 real_x
, real_y
, &outer_x
, &outer_y
,
686 had_errors
= x_had_errors_p (FRAME_X_DISPLAY (f
));
693 if (had_errors
) return;
695 f
->x_pixels_diff
= -win_x
;
696 f
->y_pixels_diff
= -win_y
;
698 FRAME_X_OUTPUT (f
)->x_pixels_outer_diff
= -outer_x
;
699 FRAME_X_OUTPUT (f
)->y_pixels_outer_diff
= -outer_y
;
708 /* Gamma-correct COLOR on frame F. */
711 gamma_correct (f
, color
)
717 color
->red
= pow (color
->red
/ 65535.0, f
->gamma
) * 65535.0 + 0.5;
718 color
->green
= pow (color
->green
/ 65535.0, f
->gamma
) * 65535.0 + 0.5;
719 color
->blue
= pow (color
->blue
/ 65535.0, f
->gamma
) * 65535.0 + 0.5;
724 /* Decide if color named COLOR_NAME is valid for use on frame F. If
725 so, return the RGB values in COLOR. If ALLOC_P is non-zero,
726 allocate the color. Value is zero if COLOR_NAME is invalid, or
727 no color could be allocated. */
730 x_defined_color (f
, color_name
, color
, alloc_p
)
737 Display
*dpy
= FRAME_X_DISPLAY (f
);
738 Colormap cmap
= FRAME_X_COLORMAP (f
);
741 success_p
= XParseColor (dpy
, cmap
, color_name
, color
);
742 if (success_p
&& alloc_p
)
743 success_p
= x_alloc_nearest_color (f
, cmap
, color
);
750 /* Return the pixel color value for color COLOR_NAME on frame F. If F
751 is a monochrome frame, return MONO_COLOR regardless of what ARG says.
752 Signal an error if color can't be allocated. */
755 x_decode_color (f
, color_name
, mono_color
)
757 Lisp_Object color_name
;
762 CHECK_STRING (color_name
);
764 #if 0 /* Don't do this. It's wrong when we're not using the default
765 colormap, it makes freeing difficult, and it's probably not
766 an important optimization. */
767 if (strcmp (SDATA (color_name
), "black") == 0)
768 return BLACK_PIX_DEFAULT (f
);
769 else if (strcmp (SDATA (color_name
), "white") == 0)
770 return WHITE_PIX_DEFAULT (f
);
773 /* Return MONO_COLOR for monochrome frames. */
774 if (FRAME_X_DISPLAY_INFO (f
)->n_planes
== 1)
777 /* x_defined_color is responsible for coping with failures
778 by looking for a near-miss. */
779 if (x_defined_color (f
, SDATA (color_name
), &cdef
, 1))
782 signal_error ("Undefined color", color_name
);
787 /* Change the `wait-for-wm' frame parameter of frame F. OLD_VALUE is
788 the previous value of that parameter, NEW_VALUE is the new value.
789 See also the comment of wait_for_wm in struct x_output. */
792 x_set_wait_for_wm (f
, new_value
, old_value
)
794 Lisp_Object new_value
, old_value
;
796 f
->output_data
.x
->wait_for_wm
= !NILP (new_value
);
801 /* Set icon from FILE for frame F. By using GTK functions the icon
802 may be any format that GdkPixbuf knows about, i.e. not just bitmaps. */
805 xg_set_icon (f
, file
)
812 found
= x_find_image_file (file
);
818 char *filename
= (char *) SDATA (found
);
821 pixbuf
= gdk_pixbuf_new_from_file (filename
, &err
);
825 gtk_window_set_icon (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)),
827 g_object_unref (pixbuf
);
841 xg_set_icon_from_xpm_data (f
, data
)
846 GdkPixbuf
*pixbuf
= gdk_pixbuf_new_from_xpm_data ((const char **) data
);
851 gtk_window_set_icon (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)), pixbuf
);
852 g_object_unref (pixbuf
);
858 /* Functions called only from `x_set_frame_param'
859 to set individual parameters.
861 If FRAME_X_WINDOW (f) is 0,
862 the frame is being created and its X-window does not exist yet.
863 In that case, just record the parameter's new value
864 in the standard place; do not attempt to change the window. */
867 x_set_foreground_color (f
, arg
, oldval
)
869 Lisp_Object arg
, oldval
;
871 struct x_output
*x
= f
->output_data
.x
;
872 unsigned long fg
, old_fg
;
874 fg
= x_decode_color (f
, arg
, BLACK_PIX_DEFAULT (f
));
875 old_fg
= FRAME_FOREGROUND_PIXEL (f
);
876 FRAME_FOREGROUND_PIXEL (f
) = fg
;
878 if (FRAME_X_WINDOW (f
) != 0)
880 Display
*dpy
= FRAME_X_DISPLAY (f
);
883 XSetForeground (dpy
, x
->normal_gc
, fg
);
884 XSetBackground (dpy
, x
->reverse_gc
, fg
);
886 if (x
->cursor_pixel
== old_fg
)
888 unload_color (f
, x
->cursor_pixel
);
889 x
->cursor_pixel
= x_copy_color (f
, fg
);
890 XSetBackground (dpy
, x
->cursor_gc
, x
->cursor_pixel
);
895 update_face_from_frame_parameter (f
, Qforeground_color
, arg
);
897 if (FRAME_VISIBLE_P (f
))
901 unload_color (f
, old_fg
);
905 x_set_background_color (f
, arg
, oldval
)
907 Lisp_Object arg
, oldval
;
909 struct x_output
*x
= f
->output_data
.x
;
912 bg
= x_decode_color (f
, arg
, WHITE_PIX_DEFAULT (f
));
913 unload_color (f
, FRAME_BACKGROUND_PIXEL (f
));
914 FRAME_BACKGROUND_PIXEL (f
) = bg
;
916 if (FRAME_X_WINDOW (f
) != 0)
918 Display
*dpy
= FRAME_X_DISPLAY (f
);
921 XSetBackground (dpy
, x
->normal_gc
, bg
);
922 XSetForeground (dpy
, x
->reverse_gc
, bg
);
923 XSetWindowBackground (dpy
, FRAME_X_WINDOW (f
), bg
);
924 XSetForeground (dpy
, x
->cursor_gc
, bg
);
927 xg_set_background_color (f
, bg
);
930 #ifndef USE_TOOLKIT_SCROLL_BARS /* Turns out to be annoying with
931 toolkit scroll bars. */
934 for (bar
= FRAME_SCROLL_BARS (f
);
936 bar
= XSCROLL_BAR (bar
)->next
)
938 Window window
= XSCROLL_BAR (bar
)->x_window
;
939 XSetWindowBackground (dpy
, window
, bg
);
942 #endif /* USE_TOOLKIT_SCROLL_BARS */
945 update_face_from_frame_parameter (f
, Qbackground_color
, arg
);
947 if (FRAME_VISIBLE_P (f
))
953 x_set_mouse_color (f
, arg
, oldval
)
955 Lisp_Object arg
, oldval
;
957 struct x_output
*x
= f
->output_data
.x
;
958 Display
*dpy
= FRAME_X_DISPLAY (f
);
959 Cursor cursor
, nontext_cursor
, mode_cursor
, hand_cursor
;
960 Cursor hourglass_cursor
, horizontal_drag_cursor
;
961 unsigned long pixel
= x_decode_color (f
, arg
, BLACK_PIX_DEFAULT (f
));
962 unsigned long mask_color
= FRAME_BACKGROUND_PIXEL (f
);
964 /* Don't let pointers be invisible. */
965 if (mask_color
== pixel
)
967 x_free_colors (f
, &pixel
, 1);
968 pixel
= x_copy_color (f
, FRAME_FOREGROUND_PIXEL (f
));
971 unload_color (f
, x
->mouse_pixel
);
972 x
->mouse_pixel
= pixel
;
976 /* It's not okay to crash if the user selects a screwy cursor. */
977 x_catch_errors (dpy
);
979 if (!NILP (Vx_pointer_shape
))
981 CHECK_NUMBER (Vx_pointer_shape
);
982 cursor
= XCreateFontCursor (dpy
, XINT (Vx_pointer_shape
));
985 cursor
= XCreateFontCursor (dpy
, XC_xterm
);
986 x_check_errors (dpy
, "bad text pointer cursor: %s");
988 if (!NILP (Vx_nontext_pointer_shape
))
990 CHECK_NUMBER (Vx_nontext_pointer_shape
);
992 = XCreateFontCursor (dpy
, XINT (Vx_nontext_pointer_shape
));
995 nontext_cursor
= XCreateFontCursor (dpy
, XC_left_ptr
);
996 x_check_errors (dpy
, "bad nontext pointer cursor: %s");
998 if (!NILP (Vx_hourglass_pointer_shape
))
1000 CHECK_NUMBER (Vx_hourglass_pointer_shape
);
1002 = XCreateFontCursor (dpy
, XINT (Vx_hourglass_pointer_shape
));
1005 hourglass_cursor
= XCreateFontCursor (dpy
, XC_watch
);
1006 x_check_errors (dpy
, "bad hourglass pointer cursor: %s");
1008 if (!NILP (Vx_mode_pointer_shape
))
1010 CHECK_NUMBER (Vx_mode_pointer_shape
);
1011 mode_cursor
= XCreateFontCursor (dpy
, XINT (Vx_mode_pointer_shape
));
1014 mode_cursor
= XCreateFontCursor (dpy
, XC_xterm
);
1015 x_check_errors (dpy
, "bad modeline pointer cursor: %s");
1017 if (!NILP (Vx_sensitive_text_pointer_shape
))
1019 CHECK_NUMBER (Vx_sensitive_text_pointer_shape
);
1021 = XCreateFontCursor (dpy
, XINT (Vx_sensitive_text_pointer_shape
));
1024 hand_cursor
= XCreateFontCursor (dpy
, XC_hand2
);
1026 if (!NILP (Vx_window_horizontal_drag_shape
))
1028 CHECK_NUMBER (Vx_window_horizontal_drag_shape
);
1029 horizontal_drag_cursor
1030 = XCreateFontCursor (dpy
, XINT (Vx_window_horizontal_drag_shape
));
1033 horizontal_drag_cursor
1034 = XCreateFontCursor (dpy
, XC_sb_h_double_arrow
);
1036 /* Check and report errors with the above calls. */
1037 x_check_errors (dpy
, "can't set cursor shape: %s");
1038 x_uncatch_errors ();
1041 XColor fore_color
, back_color
;
1043 fore_color
.pixel
= x
->mouse_pixel
;
1044 x_query_color (f
, &fore_color
);
1045 back_color
.pixel
= mask_color
;
1046 x_query_color (f
, &back_color
);
1048 XRecolorCursor (dpy
, cursor
, &fore_color
, &back_color
);
1049 XRecolorCursor (dpy
, nontext_cursor
, &fore_color
, &back_color
);
1050 XRecolorCursor (dpy
, mode_cursor
, &fore_color
, &back_color
);
1051 XRecolorCursor (dpy
, hand_cursor
, &fore_color
, &back_color
);
1052 XRecolorCursor (dpy
, hourglass_cursor
, &fore_color
, &back_color
);
1053 XRecolorCursor (dpy
, horizontal_drag_cursor
, &fore_color
, &back_color
);
1056 if (FRAME_X_WINDOW (f
) != 0)
1057 XDefineCursor (dpy
, FRAME_X_WINDOW (f
), cursor
);
1059 if (cursor
!= x
->text_cursor
1060 && x
->text_cursor
!= 0)
1061 XFreeCursor (dpy
, x
->text_cursor
);
1062 x
->text_cursor
= cursor
;
1064 if (nontext_cursor
!= x
->nontext_cursor
1065 && x
->nontext_cursor
!= 0)
1066 XFreeCursor (dpy
, x
->nontext_cursor
);
1067 x
->nontext_cursor
= nontext_cursor
;
1069 if (hourglass_cursor
!= x
->hourglass_cursor
1070 && x
->hourglass_cursor
!= 0)
1071 XFreeCursor (dpy
, x
->hourglass_cursor
);
1072 x
->hourglass_cursor
= hourglass_cursor
;
1074 if (mode_cursor
!= x
->modeline_cursor
1075 && x
->modeline_cursor
!= 0)
1076 XFreeCursor (dpy
, f
->output_data
.x
->modeline_cursor
);
1077 x
->modeline_cursor
= mode_cursor
;
1079 if (hand_cursor
!= x
->hand_cursor
1080 && x
->hand_cursor
!= 0)
1081 XFreeCursor (dpy
, x
->hand_cursor
);
1082 x
->hand_cursor
= hand_cursor
;
1084 if (horizontal_drag_cursor
!= x
->horizontal_drag_cursor
1085 && x
->horizontal_drag_cursor
!= 0)
1086 XFreeCursor (dpy
, x
->horizontal_drag_cursor
);
1087 x
->horizontal_drag_cursor
= horizontal_drag_cursor
;
1092 update_face_from_frame_parameter (f
, Qmouse_color
, arg
);
1096 x_set_cursor_color (f
, arg
, oldval
)
1098 Lisp_Object arg
, oldval
;
1100 unsigned long fore_pixel
, pixel
;
1101 int fore_pixel_allocated_p
= 0, pixel_allocated_p
= 0;
1102 struct x_output
*x
= f
->output_data
.x
;
1104 if (!NILP (Vx_cursor_fore_pixel
))
1106 fore_pixel
= x_decode_color (f
, Vx_cursor_fore_pixel
,
1107 WHITE_PIX_DEFAULT (f
));
1108 fore_pixel_allocated_p
= 1;
1111 fore_pixel
= FRAME_BACKGROUND_PIXEL (f
);
1113 pixel
= x_decode_color (f
, arg
, BLACK_PIX_DEFAULT (f
));
1114 pixel_allocated_p
= 1;
1116 /* Make sure that the cursor color differs from the background color. */
1117 if (pixel
== FRAME_BACKGROUND_PIXEL (f
))
1119 if (pixel_allocated_p
)
1121 x_free_colors (f
, &pixel
, 1);
1122 pixel_allocated_p
= 0;
1125 pixel
= x
->mouse_pixel
;
1126 if (pixel
== fore_pixel
)
1128 if (fore_pixel_allocated_p
)
1130 x_free_colors (f
, &fore_pixel
, 1);
1131 fore_pixel_allocated_p
= 0;
1133 fore_pixel
= FRAME_BACKGROUND_PIXEL (f
);
1137 unload_color (f
, x
->cursor_foreground_pixel
);
1138 if (!fore_pixel_allocated_p
)
1139 fore_pixel
= x_copy_color (f
, fore_pixel
);
1140 x
->cursor_foreground_pixel
= fore_pixel
;
1142 unload_color (f
, x
->cursor_pixel
);
1143 if (!pixel_allocated_p
)
1144 pixel
= x_copy_color (f
, pixel
);
1145 x
->cursor_pixel
= pixel
;
1147 if (FRAME_X_WINDOW (f
) != 0)
1150 XSetBackground (FRAME_X_DISPLAY (f
), x
->cursor_gc
, x
->cursor_pixel
);
1151 XSetForeground (FRAME_X_DISPLAY (f
), x
->cursor_gc
, fore_pixel
);
1154 if (FRAME_VISIBLE_P (f
))
1156 x_update_cursor (f
, 0);
1157 x_update_cursor (f
, 1);
1161 update_face_from_frame_parameter (f
, Qcursor_color
, arg
);
1164 /* Set the border-color of frame F to pixel value PIX.
1165 Note that this does not fully take effect if done before
1166 F has an x-window. */
1169 x_set_border_pixel (f
, pix
)
1173 unload_color (f
, f
->output_data
.x
->border_pixel
);
1174 f
->output_data
.x
->border_pixel
= pix
;
1176 if (FRAME_X_WINDOW (f
) != 0 && f
->border_width
> 0)
1179 XSetWindowBorder (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
1180 (unsigned long)pix
);
1183 if (FRAME_VISIBLE_P (f
))
1188 /* Set the border-color of frame F to value described by ARG.
1189 ARG can be a string naming a color.
1190 The border-color is used for the border that is drawn by the X server.
1191 Note that this does not fully take effect if done before
1192 F has an x-window; it must be redone when the window is created.
1194 Note: this is done in two routines because of the way X10 works.
1196 Note: under X11, this is normally the province of the window manager,
1197 and so emacs' border colors may be overridden. */
1200 x_set_border_color (f
, arg
, oldval
)
1202 Lisp_Object arg
, oldval
;
1207 pix
= x_decode_color (f
, arg
, BLACK_PIX_DEFAULT (f
));
1208 x_set_border_pixel (f
, pix
);
1209 update_face_from_frame_parameter (f
, Qborder_color
, arg
);
1214 x_set_cursor_type (f
, arg
, oldval
)
1216 Lisp_Object arg
, oldval
;
1218 set_frame_cursor_types (f
, arg
);
1220 /* Make sure the cursor gets redrawn. */
1221 cursor_type_changed
= 1;
1225 x_set_icon_type (f
, arg
, oldval
)
1227 Lisp_Object arg
, oldval
;
1233 if (STRINGP (oldval
) && EQ (Fstring_equal (oldval
, arg
), Qt
))
1236 else if (!STRINGP (oldval
) && EQ (oldval
, Qnil
) == EQ (arg
, Qnil
))
1241 result
= x_text_icon (f
,
1242 (char *) SDATA ((!NILP (f
->icon_name
)
1246 result
= x_bitmap_icon (f
, arg
);
1251 error ("No icon window available");
1254 XFlush (FRAME_X_DISPLAY (f
));
1259 x_set_icon_name (f
, arg
, oldval
)
1261 Lisp_Object arg
, oldval
;
1267 if (STRINGP (oldval
) && EQ (Fstring_equal (oldval
, arg
), Qt
))
1270 else if (!NILP (arg
) || NILP (oldval
))
1275 if (f
->output_data
.x
->icon_bitmap
!= 0)
1280 result
= x_text_icon (f
,
1281 (char *) SDATA ((!NILP (f
->icon_name
)
1290 error ("No icon window available");
1293 XFlush (FRAME_X_DISPLAY (f
));
1299 x_set_menu_bar_lines (f
, value
, oldval
)
1301 Lisp_Object value
, oldval
;
1304 #if ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK)
1305 int olines
= FRAME_MENU_BAR_LINES (f
);
1308 /* Right now, menu bars don't work properly in minibuf-only frames;
1309 most of the commands try to apply themselves to the minibuffer
1310 frame itself, and get an error because you can't switch buffers
1311 in or split the minibuffer window. */
1312 if (FRAME_MINIBUF_ONLY_P (f
))
1315 if (INTEGERP (value
))
1316 nlines
= XINT (value
);
1320 /* Make sure we redisplay all windows in this frame. */
1321 windows_or_buffers_changed
++;
1323 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
1324 FRAME_MENU_BAR_LINES (f
) = 0;
1327 FRAME_EXTERNAL_MENU_BAR (f
) = 1;
1328 if (FRAME_X_P (f
) && f
->output_data
.x
->menubar_widget
== 0)
1329 /* Make sure next redisplay shows the menu bar. */
1330 XWINDOW (FRAME_SELECTED_WINDOW (f
))->update_mode_line
= Qt
;
1334 if (FRAME_EXTERNAL_MENU_BAR (f
) == 1)
1335 free_frame_menubar (f
);
1336 FRAME_EXTERNAL_MENU_BAR (f
) = 0;
1338 f
->output_data
.x
->menubar_widget
= 0;
1340 #else /* not USE_X_TOOLKIT && not USE_GTK */
1341 FRAME_MENU_BAR_LINES (f
) = nlines
;
1342 change_window_heights (f
->root_window
, nlines
- olines
);
1343 #endif /* not USE_X_TOOLKIT */
1348 /* Set the number of lines used for the tool bar of frame F to VALUE.
1349 VALUE not an integer, or < 0 means set the lines to zero. OLDVAL
1350 is the old number of tool bar lines. This function changes the
1351 height of all windows on frame F to match the new tool bar height.
1352 The frame's height doesn't change. */
1355 x_set_tool_bar_lines (f
, value
, oldval
)
1357 Lisp_Object value
, oldval
;
1359 int delta
, nlines
, root_height
;
1360 Lisp_Object root_window
;
1362 /* Treat tool bars like menu bars. */
1363 if (FRAME_MINIBUF_ONLY_P (f
))
1366 /* Use VALUE only if an integer >= 0. */
1367 if (INTEGERP (value
) && XINT (value
) >= 0)
1368 nlines
= XFASTINT (value
);
1373 FRAME_TOOL_BAR_LINES (f
) = 0;
1376 FRAME_EXTERNAL_TOOL_BAR (f
) = 1;
1377 if (FRAME_X_P (f
) && f
->output_data
.x
->toolbar_widget
== 0)
1378 /* Make sure next redisplay shows the tool bar. */
1379 XWINDOW (FRAME_SELECTED_WINDOW (f
))->update_mode_line
= Qt
;
1380 update_frame_tool_bar (f
);
1384 if (FRAME_EXTERNAL_TOOL_BAR (f
))
1385 free_frame_tool_bar (f
);
1386 FRAME_EXTERNAL_TOOL_BAR (f
) = 0;
1392 /* Make sure we redisplay all windows in this frame. */
1393 ++windows_or_buffers_changed
;
1395 delta
= nlines
- FRAME_TOOL_BAR_LINES (f
);
1397 /* Don't resize the tool-bar to more than we have room for. */
1398 root_window
= FRAME_ROOT_WINDOW (f
);
1399 root_height
= WINDOW_TOTAL_LINES (XWINDOW (root_window
));
1400 if (root_height
- delta
< 1)
1402 delta
= root_height
- 1;
1403 nlines
= FRAME_TOOL_BAR_LINES (f
) + delta
;
1406 FRAME_TOOL_BAR_LINES (f
) = nlines
;
1407 change_window_heights (root_window
, delta
);
1410 /* We also have to make sure that the internal border at the top of
1411 the frame, below the menu bar or tool bar, is redrawn when the
1412 tool bar disappears. This is so because the internal border is
1413 below the tool bar if one is displayed, but is below the menu bar
1414 if there isn't a tool bar. The tool bar draws into the area
1415 below the menu bar. */
1416 if (FRAME_X_WINDOW (f
) && FRAME_TOOL_BAR_LINES (f
) == 0)
1419 clear_current_matrices (f
);
1422 /* If the tool bar gets smaller, the internal border below it
1423 has to be cleared. It was formerly part of the display
1424 of the larger tool bar, and updating windows won't clear it. */
1427 int height
= FRAME_INTERNAL_BORDER_WIDTH (f
);
1428 int width
= FRAME_PIXEL_WIDTH (f
);
1429 int y
= nlines
* FRAME_LINE_HEIGHT (f
);
1431 /* height can be zero here. */
1432 if (height
> 0 && width
> 0)
1435 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
1436 0, y
, width
, height
, False
);
1440 if (WINDOWP (f
->tool_bar_window
))
1441 clear_glyph_matrix (XWINDOW (f
->tool_bar_window
)->current_matrix
);
1446 /* Set the foreground color for scroll bars on frame F to VALUE.
1447 VALUE should be a string, a color name. If it isn't a string or
1448 isn't a valid color name, do nothing. OLDVAL is the old value of
1449 the frame parameter. */
1452 x_set_scroll_bar_foreground (f
, value
, oldval
)
1454 Lisp_Object value
, oldval
;
1456 unsigned long pixel
;
1458 if (STRINGP (value
))
1459 pixel
= x_decode_color (f
, value
, BLACK_PIX_DEFAULT (f
));
1463 if (f
->output_data
.x
->scroll_bar_foreground_pixel
!= -1)
1464 unload_color (f
, f
->output_data
.x
->scroll_bar_foreground_pixel
);
1466 f
->output_data
.x
->scroll_bar_foreground_pixel
= pixel
;
1467 if (FRAME_X_WINDOW (f
) && FRAME_VISIBLE_P (f
))
1469 /* Remove all scroll bars because they have wrong colors. */
1470 if (FRAME_TERMINAL (f
)->condemn_scroll_bars_hook
)
1471 (*FRAME_TERMINAL (f
)->condemn_scroll_bars_hook
) (f
);
1472 if (FRAME_TERMINAL (f
)->judge_scroll_bars_hook
)
1473 (*FRAME_TERMINAL (f
)->judge_scroll_bars_hook
) (f
);
1475 update_face_from_frame_parameter (f
, Qscroll_bar_foreground
, value
);
1481 /* Set the background color for scroll bars on frame F to VALUE VALUE
1482 should be a string, a color name. If it isn't a string or isn't a
1483 valid color name, do nothing. OLDVAL is the old value of the frame
1487 x_set_scroll_bar_background (f
, value
, oldval
)
1489 Lisp_Object value
, oldval
;
1491 unsigned long pixel
;
1493 if (STRINGP (value
))
1494 pixel
= x_decode_color (f
, value
, WHITE_PIX_DEFAULT (f
));
1498 if (f
->output_data
.x
->scroll_bar_background_pixel
!= -1)
1499 unload_color (f
, f
->output_data
.x
->scroll_bar_background_pixel
);
1501 #ifdef USE_TOOLKIT_SCROLL_BARS
1502 /* Scrollbar shadow colors. */
1503 if (f
->output_data
.x
->scroll_bar_top_shadow_pixel
!= -1)
1505 unload_color (f
, f
->output_data
.x
->scroll_bar_top_shadow_pixel
);
1506 f
->output_data
.x
->scroll_bar_top_shadow_pixel
= -1;
1508 if (f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
!= -1)
1510 unload_color (f
, f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
);
1511 f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
= -1;
1513 #endif /* USE_TOOLKIT_SCROLL_BARS */
1515 f
->output_data
.x
->scroll_bar_background_pixel
= pixel
;
1516 if (FRAME_X_WINDOW (f
) && FRAME_VISIBLE_P (f
))
1518 /* Remove all scroll bars because they have wrong colors. */
1519 if (FRAME_TERMINAL (f
)->condemn_scroll_bars_hook
)
1520 (*FRAME_TERMINAL (f
)->condemn_scroll_bars_hook
) (f
);
1521 if (FRAME_TERMINAL (f
)->judge_scroll_bars_hook
)
1522 (*FRAME_TERMINAL (f
)->judge_scroll_bars_hook
) (f
);
1524 update_face_from_frame_parameter (f
, Qscroll_bar_background
, value
);
1530 /* Encode Lisp string STRING as a text in a format appropriate for
1531 XICCC (X Inter Client Communication Conventions).
1533 This can call Lisp code, so callers must GCPRO.
1535 If STRING contains only ASCII characters, do no conversion and
1536 return the string data of STRING. Otherwise, encode the text by
1537 CODING_SYSTEM, and return a newly allocated memory area which
1538 should be freed by `xfree' by a caller.
1540 SELECTIONP non-zero means the string is being encoded for an X
1541 selection, so it is safe to run pre-write conversions (which
1544 Store the byte length of resulting text in *TEXT_BYTES.
1546 If the text contains only ASCII and Latin-1, store 1 in *STRING_P,
1547 which means that the `encoding' of the result can be `STRING'.
1548 Otherwise store 0 in *STRINGP, which means that the `encoding' of
1549 the result should be `COMPOUND_TEXT'. */
1551 static unsigned char *
1552 x_encode_text (string
, coding_system
, selectionp
, text_bytes
, stringp
, freep
)
1553 Lisp_Object string
, coding_system
;
1554 int *text_bytes
, *stringp
;
1558 int result
= string_xstring_p (string
);
1559 struct coding_system coding
;
1563 /* No multibyte character in OBJ. We need not encode it. */
1564 *text_bytes
= SBYTES (string
);
1567 return SDATA (string
);
1570 setup_coding_system (coding_system
, &coding
);
1571 coding
.mode
|= (CODING_MODE_SAFE_ENCODING
| CODING_MODE_LAST_BLOCK
);
1572 /* We suppress producing escape sequences for composition. */
1573 coding
.common_flags
&= ~CODING_ANNOTATION_MASK
;
1574 coding
.dst_bytes
= SCHARS (string
) * 2;
1575 coding
.destination
= (unsigned char *) xmalloc (coding
.dst_bytes
);
1576 encode_coding_object (&coding
, string
, 0, 0,
1577 SCHARS (string
), SBYTES (string
), Qnil
);
1578 *text_bytes
= coding
.produced
;
1579 *stringp
= (result
== 1 || !EQ (coding_system
, Qcompound_text
));
1581 return coding
.destination
;
1585 /* Set the WM name to NAME for frame F. Also set the icon name.
1586 If the frame already has an icon name, use that, otherwise set the
1587 icon name to NAME. */
1590 x_set_name_internal (f
, name
)
1594 if (FRAME_X_WINDOW (f
))
1598 XTextProperty text
, icon
;
1600 int do_free_icon_value
= 0, do_free_text_value
= 0;
1601 Lisp_Object coding_system
;
1603 Lisp_Object encoded_name
;
1604 struct gcpro gcpro1
;
1606 /* As ENCODE_UTF_8 may cause GC and relocation of string data,
1607 we use it before x_encode_text that may return string data. */
1609 encoded_name
= ENCODE_UTF_8 (name
);
1613 coding_system
= Qcompound_text
;
1614 /* Note: Encoding strategy
1616 We encode NAME by compound-text and use "COMPOUND-TEXT" in
1617 text.encoding. But, there are non-internationalized window
1618 managers which don't support that encoding. So, if NAME
1619 contains only ASCII and 8859-1 characters, encode it by
1620 iso-latin-1, and use "STRING" in text.encoding hoping that
1621 such window managers at least analyze this format correctly,
1622 i.e. treat 8-bit bytes as 8859-1 characters.
1624 We may also be able to use "UTF8_STRING" in text.encoding
1625 in the future which can encode all Unicode characters.
1626 But, for the moment, there's no way to know that the
1627 current window manager supports it or not. */
1628 text
.value
= x_encode_text (name
, coding_system
, 0, &bytes
, &stringp
,
1629 &do_free_text_value
);
1630 text
.encoding
= (stringp
? XA_STRING
1631 : FRAME_X_DISPLAY_INFO (f
)->Xatom_COMPOUND_TEXT
);
1633 text
.nitems
= bytes
;
1635 if (!STRINGP (f
->icon_name
))
1641 /* See the above comment "Note: Encoding strategy". */
1642 icon
.value
= x_encode_text (f
->icon_name
, coding_system
, 0,
1643 &bytes
, &stringp
, &do_free_icon_value
);
1644 icon
.encoding
= (stringp
? XA_STRING
1645 : FRAME_X_DISPLAY_INFO (f
)->Xatom_COMPOUND_TEXT
);
1647 icon
.nitems
= bytes
;
1651 gtk_window_set_title (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)),
1652 (char *) SDATA (encoded_name
));
1653 #else /* not USE_GTK */
1654 XSetWMName (FRAME_X_DISPLAY (f
), FRAME_OUTER_WINDOW (f
), &text
);
1655 #endif /* not USE_GTK */
1657 XSetWMIconName (FRAME_X_DISPLAY (f
), FRAME_OUTER_WINDOW (f
), &icon
);
1659 if (do_free_icon_value
)
1661 if (do_free_text_value
)
1668 /* Change the name of frame F to NAME. If NAME is nil, set F's name to
1671 If EXPLICIT is non-zero, that indicates that lisp code is setting the
1672 name; if NAME is a string, set F's name to NAME and set
1673 F->explicit_name; if NAME is Qnil, then clear F->explicit_name.
1675 If EXPLICIT is zero, that indicates that Emacs redisplay code is
1676 suggesting a new name, which lisp code should override; if
1677 F->explicit_name is set, ignore the new name; otherwise, set it. */
1680 x_set_name (f
, name
, explicit)
1685 /* Make sure that requests from lisp code override requests from
1686 Emacs redisplay code. */
1689 /* If we're switching from explicit to implicit, we had better
1690 update the mode lines and thereby update the title. */
1691 if (f
->explicit_name
&& NILP (name
))
1692 update_mode_lines
= 1;
1694 f
->explicit_name
= ! NILP (name
);
1696 else if (f
->explicit_name
)
1699 /* If NAME is nil, set the name to the x_id_name. */
1702 /* Check for no change needed in this very common case
1703 before we do any consing. */
1704 if (!strcmp (FRAME_X_DISPLAY_INFO (f
)->x_id_name
,
1707 name
= build_string (FRAME_X_DISPLAY_INFO (f
)->x_id_name
);
1710 CHECK_STRING (name
);
1712 /* Don't change the name if it's already NAME. */
1713 if (! NILP (Fstring_equal (name
, f
->name
)))
1718 /* For setting the frame title, the title parameter should override
1719 the name parameter. */
1720 if (! NILP (f
->title
))
1723 x_set_name_internal (f
, name
);
1726 /* This function should be called when the user's lisp code has
1727 specified a name for the frame; the name will override any set by the
1730 x_explicitly_set_name (f
, arg
, oldval
)
1732 Lisp_Object arg
, oldval
;
1734 x_set_name (f
, arg
, 1);
1737 /* This function should be called by Emacs redisplay code to set the
1738 name; names set this way will never override names set by the user's
1741 x_implicitly_set_name (f
, arg
, oldval
)
1743 Lisp_Object arg
, oldval
;
1745 x_set_name (f
, arg
, 0);
1748 /* Change the title of frame F to NAME.
1749 If NAME is nil, use the frame name as the title. */
1752 x_set_title (f
, name
, old_name
)
1754 Lisp_Object name
, old_name
;
1756 /* Don't change the title if it's already NAME. */
1757 if (EQ (name
, f
->title
))
1760 update_mode_lines
= 1;
1767 CHECK_STRING (name
);
1769 x_set_name_internal (f
, name
);
1773 x_set_scroll_bar_default_width (f
)
1776 int wid
= FRAME_COLUMN_WIDTH (f
);
1778 #ifdef USE_TOOLKIT_SCROLL_BARS
1779 /* A minimum width of 14 doesn't look good for toolkit scroll bars. */
1780 int width
= 16 + 2 * VERTICAL_SCROLL_BAR_WIDTH_TRIM
;
1781 FRAME_CONFIG_SCROLL_BAR_COLS (f
) = (width
+ wid
- 1) / wid
;
1782 FRAME_CONFIG_SCROLL_BAR_WIDTH (f
) = width
;
1784 /* Make the actual width at least 14 pixels and a multiple of a
1786 FRAME_CONFIG_SCROLL_BAR_COLS (f
) = (14 + wid
- 1) / wid
;
1788 /* Use all of that space (aside from required margins) for the
1790 FRAME_CONFIG_SCROLL_BAR_WIDTH (f
) = 0;
1795 /* Record in frame F the specified or default value according to ALIST
1796 of the parameter named PROP (a Lisp symbol). If no value is
1797 specified for PROP, look for an X default for XPROP on the frame
1798 named NAME. If that is not found either, use the value DEFLT. */
1801 x_default_scroll_bar_color_parameter (f
, alist
, prop
, xprop
, xclass
,
1810 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
1813 tem
= x_get_arg (dpyinfo
, alist
, prop
, xprop
, xclass
, RES_TYPE_STRING
);
1814 if (EQ (tem
, Qunbound
))
1816 #ifdef USE_TOOLKIT_SCROLL_BARS
1818 /* See if an X resource for the scroll bar color has been
1820 tem
= display_x_get_resource (dpyinfo
,
1821 build_string (foreground_p
1824 empty_unibyte_string
,
1825 build_string ("verticalScrollBar"),
1826 empty_unibyte_string
);
1829 /* If nothing has been specified, scroll bars will use a
1830 toolkit-dependent default. Because these defaults are
1831 difficult to get at without actually creating a scroll
1832 bar, use nil to indicate that no color has been
1837 #else /* not USE_TOOLKIT_SCROLL_BARS */
1841 #endif /* not USE_TOOLKIT_SCROLL_BARS */
1844 x_set_frame_parameters (f
, Fcons (Fcons (prop
, tem
), Qnil
));
1851 #ifdef USE_X_TOOLKIT
1853 /* If the WM_PROTOCOLS property does not already contain WM_TAKE_FOCUS,
1854 WM_DELETE_WINDOW, and WM_SAVE_YOURSELF, then add them. (They may
1855 already be present because of the toolkit (Motif adds some of them,
1856 for example, but Xt doesn't). */
1859 hack_wm_protocols (f
, widget
)
1863 Display
*dpy
= XtDisplay (widget
);
1864 Window w
= XtWindow (widget
);
1865 int need_delete
= 1;
1872 unsigned char *catoms
;
1874 unsigned long nitems
= 0;
1875 unsigned long bytes_after
;
1877 if ((XGetWindowProperty (dpy
, w
,
1878 FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_protocols
,
1879 (long)0, (long)100, False
, XA_ATOM
,
1880 &type
, &format
, &nitems
, &bytes_after
,
1883 && format
== 32 && type
== XA_ATOM
)
1885 Atom
*atoms
= (Atom
*) catoms
;
1890 == FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_delete_window
)
1892 else if (atoms
[nitems
]
1893 == FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_take_focus
)
1895 else if (atoms
[nitems
]
1896 == FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_save_yourself
)
1907 props
[count
++] = FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_delete_window
;
1909 props
[count
++] = FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_take_focus
;
1911 props
[count
++] = FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_save_yourself
;
1913 XChangeProperty (dpy
, w
, FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_protocols
,
1914 XA_ATOM
, 32, PropModeAppend
,
1915 (unsigned char *) props
, count
);
1923 /* Support routines for XIC (X Input Context). */
1927 static XFontSet xic_create_xfontset
P_ ((struct frame
*));
1928 static XIMStyle best_xim_style
P_ ((XIMStyles
*, XIMStyles
*));
1931 /* Supported XIM styles, ordered by preference. */
1933 static XIMStyle supported_xim_styles
[] =
1935 XIMPreeditPosition
| XIMStatusArea
,
1936 XIMPreeditPosition
| XIMStatusNothing
,
1937 XIMPreeditPosition
| XIMStatusNone
,
1938 XIMPreeditNothing
| XIMStatusArea
,
1939 XIMPreeditNothing
| XIMStatusNothing
,
1940 XIMPreeditNothing
| XIMStatusNone
,
1941 XIMPreeditNone
| XIMStatusArea
,
1942 XIMPreeditNone
| XIMStatusNothing
,
1943 XIMPreeditNone
| XIMStatusNone
,
1948 /* Create an X fontset on frame F with base font name BASE_FONTNAME. */
1950 char xic_defaut_fontset
[] = "-*-*-*-r-normal--14-*-*-*-*-*-*-*";
1952 /* Create an Xt fontset spec from the name of a base font.
1953 If `motif' is True use the Motif syntax. */
1955 xic_create_fontsetname (base_fontname
, motif
)
1956 char *base_fontname
;
1959 const char *sep
= motif
? ";" : ",";
1962 /* Make a fontset name from the base font name. */
1963 if (xic_defaut_fontset
== base_fontname
)
1964 { /* There is no base font name, use the default. */
1965 int len
= strlen (base_fontname
) + 2;
1966 fontsetname
= xmalloc (len
);
1967 bzero (fontsetname
, len
);
1968 strcpy (fontsetname
, base_fontname
);
1972 /* Make a fontset name from the base font name.
1973 The font set will be made of the following elements:
1975 - the base font where the charset spec is replaced by -*-*.
1976 - the same but with the family also replaced with -*-*-. */
1977 char *p
= base_fontname
;
1980 for (i
= 0; *p
; p
++)
1983 { /* As the font name doesn't conform to XLFD, we can't
1984 modify it to generalize it to allcs and allfamilies.
1985 Use the specified font plus the default. */
1986 int len
= strlen (base_fontname
) + strlen (xic_defaut_fontset
) + 3;
1987 fontsetname
= xmalloc (len
);
1988 bzero (fontsetname
, len
);
1989 strcpy (fontsetname
, base_fontname
);
1990 strcat (fontsetname
, sep
);
1991 strcat (fontsetname
, xic_defaut_fontset
);
1996 char *p1
= NULL
, *p2
= NULL
, *p3
= NULL
;
1997 char *font_allcs
= NULL
;
1998 char *font_allfamilies
= NULL
;
1999 char *font_all
= NULL
;
2000 char *allcs
= "*-*-*-*-*-*-*";
2001 char *allfamilies
= "-*-*-";
2002 char *all
= "*-*-*-*-";
2005 for (i
= 0, p
= base_fontname
; i
< 8; p
++)
2018 /* If base_fontname specifies ADSTYLE, make it a
2022 int diff
= (p2
- p3
) - 2;
2024 base
= alloca (strlen (base_fontname
) + 1);
2025 bcopy (base_fontname
, base
, p3
- base_fontname
);
2026 base
[p3
- base_fontname
] = '*';
2027 base
[(p3
- base_fontname
) + 1] = '-';
2028 strcpy (base
+ (p3
- base_fontname
) + 2, p2
);
2029 p
= base
+ (p
- base_fontname
) - diff
;
2030 p1
= base
+ (p1
- base_fontname
);
2031 p2
= base
+ (p2
- base_fontname
) - diff
;
2032 base_fontname
= base
;
2035 /* Build the font spec that matches all charsets. */
2036 len
= p
- base_fontname
+ strlen (allcs
) + 1;
2037 font_allcs
= (char *) alloca (len
);
2038 bzero (font_allcs
, len
);
2039 bcopy (base_fontname
, font_allcs
, p
- base_fontname
);
2040 strcat (font_allcs
, allcs
);
2042 /* Build the font spec that matches all families and
2044 len
= p
- p1
+ strlen (allcs
) + strlen (allfamilies
) + 1;
2045 font_allfamilies
= (char *) alloca (len
);
2046 bzero (font_allfamilies
, len
);
2047 strcpy (font_allfamilies
, allfamilies
);
2048 bcopy (p1
, font_allfamilies
+ strlen (allfamilies
), p
- p1
);
2049 strcat (font_allfamilies
, allcs
);
2051 /* Build the font spec that matches all. */
2052 len
= p
- p2
+ strlen (allcs
) + strlen (all
) + strlen (allfamilies
) + 1;
2053 font_all
= (char *) alloca (len
);
2054 bzero (font_all
, len
);
2055 strcpy (font_all
, allfamilies
);
2056 strcat (font_all
, all
);
2057 bcopy (p2
, font_all
+ strlen (all
) + strlen (allfamilies
), p
- p2
);
2058 strcat (font_all
, allcs
);
2060 /* Build the actual font set name. */
2061 len
= strlen (base_fontname
) + strlen (font_allcs
)
2062 + strlen (font_allfamilies
) + strlen (font_all
) + 5;
2063 fontsetname
= xmalloc (len
);
2064 bzero (fontsetname
, len
);
2065 strcpy (fontsetname
, base_fontname
);
2066 strcat (fontsetname
, sep
);
2067 strcat (fontsetname
, font_allcs
);
2068 strcat (fontsetname
, sep
);
2069 strcat (fontsetname
, font_allfamilies
);
2070 strcat (fontsetname
, sep
);
2071 strcat (fontsetname
, font_all
);
2075 strcat (fontsetname
, ":");
2079 #ifdef DEBUG_XIC_FONTSET
2081 print_fontset_result (xfs
, name
, missing_list
, missing_count
)
2084 char **missing_list
;
2088 fprintf (stderr
, "XIC Fontset created: %s\n", name
);
2091 fprintf (stderr
, "XIC Fontset failed: %s\n", name
);
2092 while (missing_count
-- > 0)
2094 fprintf (stderr
, " missing: %s\n", *missing_list
);
2103 xic_create_xfontset (f
)
2106 XFontSet xfs
= NULL
;
2107 struct font
*font
= FRAME_FONT (f
);
2108 int pixel_size
= font
->pixel_size
;
2109 Lisp_Object rest
, frame
;
2111 /* See if there is another frame already using same fontset. */
2112 FOR_EACH_FRAME (rest
, frame
)
2114 struct frame
*cf
= XFRAME (frame
);
2116 if (cf
!= f
&& FRAME_LIVE_P (f
) && FRAME_X_P (cf
)
2117 && FRAME_X_DISPLAY_INFO (cf
) == FRAME_X_DISPLAY_INFO (f
)
2119 && FRAME_FONT (f
)->pixel_size
== pixel_size
)
2121 xfs
= FRAME_XIC_FONTSET (cf
);
2129 char **missing_list
;
2132 char *xlfd_format
= "-*-*-medium-r-normal--%d-*-*-*-*-*";
2134 sprintf (buf
, xlfd_format
, pixel_size
);
2135 missing_list
= NULL
;
2136 xfs
= XCreateFontSet (FRAME_X_DISPLAY (f
), buf
,
2137 &missing_list
, &missing_count
, &def_string
);
2138 #ifdef DEBUG_XIC_FONTSET
2139 print_fontset_result (xfs
, buf
, missing_list
, missing_count
);
2142 XFreeStringList (missing_list
);
2145 /* List of pixel sizes most likely available. Find one that
2146 is closest to pixel_size. */
2147 int sizes
[] = {0, 8, 10, 11, 12, 14, 17, 18, 20, 24, 26, 34, 0};
2148 int *smaller
, *larger
;
2150 for (smaller
= sizes
; smaller
[1]; smaller
++)
2151 if (smaller
[1] >= pixel_size
)
2153 larger
= smaller
+ 1;
2154 if (*larger
== pixel_size
)
2156 while (*smaller
|| *larger
)
2161 this_size
= *smaller
--;
2162 else if (! *smaller
)
2163 this_size
= *larger
++;
2164 else if (pixel_size
- *smaller
< *larger
- pixel_size
)
2165 this_size
= *smaller
--;
2167 this_size
= *larger
++;
2168 sprintf (buf
, xlfd_format
, this_size
);
2169 missing_list
= NULL
;
2170 xfs
= XCreateFontSet (FRAME_X_DISPLAY (f
), buf
,
2171 &missing_list
, &missing_count
, &def_string
);
2172 #ifdef DEBUG_XIC_FONTSET
2173 print_fontset_result (xfs
, buf
, missing_list
, missing_count
);
2176 XFreeStringList (missing_list
);
2183 char *last_resort
= "-*-*-*-r-normal--*-*-*-*-*-*";
2185 missing_list
= NULL
;
2186 xfs
= XCreateFontSet (FRAME_X_DISPLAY (f
), last_resort
,
2187 &missing_list
, &missing_count
, &def_string
);
2188 #ifdef DEBUG_XIC_FONTSET
2189 print_fontset_result (xfs
, last_resort
, missing_list
, missing_count
);
2192 XFreeStringList (missing_list
);
2200 /* Free the X fontset of frame F if it is the last frame using it. */
2203 xic_free_xfontset (f
)
2206 Lisp_Object rest
, frame
;
2209 if (!FRAME_XIC_FONTSET (f
))
2212 /* See if there is another frame sharing the same fontset. */
2213 FOR_EACH_FRAME (rest
, frame
)
2215 struct frame
*cf
= XFRAME (frame
);
2216 if (cf
!= f
&& FRAME_LIVE_P (f
) && FRAME_X_P (cf
)
2217 && FRAME_X_DISPLAY_INFO (cf
) == FRAME_X_DISPLAY_INFO (f
)
2218 && FRAME_XIC_FONTSET (cf
) == FRAME_XIC_FONTSET (f
))
2226 /* The fontset is not used anymore. It is safe to free it. */
2227 XFreeFontSet (FRAME_X_DISPLAY (f
), FRAME_XIC_FONTSET (f
));
2229 if (FRAME_XIC_BASE_FONTNAME (f
))
2230 xfree (FRAME_XIC_BASE_FONTNAME (f
));
2231 FRAME_XIC_BASE_FONTNAME (f
) = NULL
;
2232 FRAME_XIC_FONTSET (f
) = NULL
;
2236 /* Value is the best input style, given user preferences USER (already
2237 checked to be supported by Emacs), and styles supported by the
2238 input method XIM. */
2241 best_xim_style (user
, xim
)
2247 for (i
= 0; i
< user
->count_styles
; ++i
)
2248 for (j
= 0; j
< xim
->count_styles
; ++j
)
2249 if (user
->supported_styles
[i
] == xim
->supported_styles
[j
])
2250 return user
->supported_styles
[i
];
2252 /* Return the default style. */
2253 return XIMPreeditNothing
| XIMStatusNothing
;
2256 /* Create XIC for frame F. */
2258 static XIMStyle xic_style
;
2261 create_frame_xic (f
)
2266 XFontSet xfs
= NULL
;
2271 /* Create X fontset. */
2272 xfs
= xic_create_xfontset (f
);
2273 xim
= FRAME_X_XIM (f
);
2278 XVaNestedList preedit_attr
;
2279 XVaNestedList status_attr
;
2281 s_area
.x
= 0; s_area
.y
= 0; s_area
.width
= 1; s_area
.height
= 1;
2282 spot
.x
= 0; spot
.y
= 1;
2284 /* Determine XIC style. */
2287 XIMStyles supported_list
;
2288 supported_list
.count_styles
= (sizeof supported_xim_styles
2289 / sizeof supported_xim_styles
[0]);
2290 supported_list
.supported_styles
= supported_xim_styles
;
2291 xic_style
= best_xim_style (&supported_list
,
2292 FRAME_X_XIM_STYLES (f
));
2295 preedit_attr
= XVaCreateNestedList (0,
2298 FRAME_FOREGROUND_PIXEL (f
),
2300 FRAME_BACKGROUND_PIXEL (f
),
2301 (xic_style
& XIMPreeditPosition
2306 status_attr
= XVaCreateNestedList (0,
2312 FRAME_FOREGROUND_PIXEL (f
),
2314 FRAME_BACKGROUND_PIXEL (f
),
2317 xic
= XCreateIC (xim
,
2318 XNInputStyle
, xic_style
,
2319 XNClientWindow
, FRAME_X_WINDOW (f
),
2320 XNFocusWindow
, FRAME_X_WINDOW (f
),
2321 XNStatusAttributes
, status_attr
,
2322 XNPreeditAttributes
, preedit_attr
,
2324 XFree (preedit_attr
);
2325 XFree (status_attr
);
2328 FRAME_XIC (f
) = xic
;
2329 FRAME_XIC_STYLE (f
) = xic_style
;
2330 FRAME_XIC_FONTSET (f
) = xfs
;
2334 /* Destroy XIC and free XIC fontset of frame F, if any. */
2340 if (FRAME_XIC (f
) == NULL
)
2343 XDestroyIC (FRAME_XIC (f
));
2344 xic_free_xfontset (f
);
2346 FRAME_XIC (f
) = NULL
;
2350 /* Place preedit area for XIC of window W's frame to specified
2351 pixel position X/Y. X and Y are relative to window W. */
2354 xic_set_preeditarea (w
, x
, y
)
2358 struct frame
*f
= XFRAME (w
->frame
);
2362 spot
.x
= WINDOW_TO_FRAME_PIXEL_X (w
, x
) + WINDOW_LEFT_FRINGE_WIDTH (w
);
2363 spot
.y
= WINDOW_TO_FRAME_PIXEL_Y (w
, y
) + FONT_BASE (FRAME_FONT (f
));
2364 attr
= XVaCreateNestedList (0, XNSpotLocation
, &spot
, NULL
);
2365 XSetICValues (FRAME_XIC (f
), XNPreeditAttributes
, attr
, NULL
);
2370 /* Place status area for XIC in bottom right corner of frame F.. */
2373 xic_set_statusarea (f
)
2376 XIC xic
= FRAME_XIC (f
);
2381 /* Negotiate geometry of status area. If input method has existing
2382 status area, use its current size. */
2383 area
.x
= area
.y
= area
.width
= area
.height
= 0;
2384 attr
= XVaCreateNestedList (0, XNAreaNeeded
, &area
, NULL
);
2385 XSetICValues (xic
, XNStatusAttributes
, attr
, NULL
);
2388 attr
= XVaCreateNestedList (0, XNAreaNeeded
, &needed
, NULL
);
2389 XGetICValues (xic
, XNStatusAttributes
, attr
, NULL
);
2392 if (needed
->width
== 0) /* Use XNArea instead of XNAreaNeeded */
2394 attr
= XVaCreateNestedList (0, XNArea
, &needed
, NULL
);
2395 XGetICValues (xic
, XNStatusAttributes
, attr
, NULL
);
2399 area
.width
= needed
->width
;
2400 area
.height
= needed
->height
;
2401 area
.x
= FRAME_PIXEL_WIDTH (f
) - area
.width
- FRAME_INTERNAL_BORDER_WIDTH (f
);
2402 area
.y
= (FRAME_PIXEL_HEIGHT (f
) - area
.height
2403 - FRAME_MENUBAR_HEIGHT (f
)
2404 - FRAME_TOOLBAR_HEIGHT (f
)
2405 - FRAME_INTERNAL_BORDER_WIDTH (f
));
2408 attr
= XVaCreateNestedList (0, XNArea
, &area
, NULL
);
2409 XSetICValues (xic
, XNStatusAttributes
, attr
, NULL
);
2414 /* Set X fontset for XIC of frame F, using base font name
2415 BASE_FONTNAME. Called when a new Emacs fontset is chosen. */
2418 xic_set_xfontset (f
, base_fontname
)
2420 char *base_fontname
;
2425 xic_free_xfontset (f
);
2427 xfs
= xic_create_xfontset (f
);
2429 attr
= XVaCreateNestedList (0, XNFontSet
, xfs
, NULL
);
2430 if (FRAME_XIC_STYLE (f
) & XIMPreeditPosition
)
2431 XSetICValues (FRAME_XIC (f
), XNPreeditAttributes
, attr
, NULL
);
2432 if (FRAME_XIC_STYLE (f
) & XIMStatusArea
)
2433 XSetICValues (FRAME_XIC (f
), XNStatusAttributes
, attr
, NULL
);
2436 FRAME_XIC_FONTSET (f
) = xfs
;
2439 #endif /* HAVE_X_I18N */
2443 #ifdef USE_X_TOOLKIT
2445 /* Create and set up the X widget for frame F. */
2448 x_window (f
, window_prompting
, minibuffer_only
)
2450 long window_prompting
;
2451 int minibuffer_only
;
2453 XClassHint class_hints
;
2454 XSetWindowAttributes attributes
;
2455 unsigned long attribute_mask
;
2456 Widget shell_widget
;
2458 Widget frame_widget
;
2464 /* Use the resource name as the top-level widget name
2465 for looking up resources. Make a non-Lisp copy
2466 for the window manager, so GC relocation won't bother it.
2468 Elsewhere we specify the window name for the window manager. */
2471 char *str
= (char *) SDATA (Vx_resource_name
);
2472 f
->namebuf
= (char *) xmalloc (strlen (str
) + 1);
2473 strcpy (f
->namebuf
, str
);
2477 XtSetArg (al
[ac
], XtNallowShellResize
, 1); ac
++;
2478 XtSetArg (al
[ac
], XtNinput
, 1); ac
++;
2479 XtSetArg (al
[ac
], XtNmappedWhenManaged
, 0); ac
++;
2480 XtSetArg (al
[ac
], XtNborderWidth
, f
->border_width
); ac
++;
2481 XtSetArg (al
[ac
], XtNvisual
, FRAME_X_VISUAL (f
)); ac
++;
2482 XtSetArg (al
[ac
], XtNdepth
, FRAME_X_DISPLAY_INFO (f
)->n_planes
); ac
++;
2483 XtSetArg (al
[ac
], XtNcolormap
, FRAME_X_COLORMAP (f
)); ac
++;
2484 shell_widget
= XtAppCreateShell (f
->namebuf
, EMACS_CLASS
,
2485 applicationShellWidgetClass
,
2486 FRAME_X_DISPLAY (f
), al
, ac
);
2488 f
->output_data
.x
->widget
= shell_widget
;
2489 /* maybe_set_screen_title_format (shell_widget); */
2491 pane_widget
= lw_create_widget ("main", "pane", widget_id_tick
++,
2492 (widget_value
*) NULL
,
2493 shell_widget
, False
,
2497 (lw_callback
) NULL
);
2500 XtSetArg (al
[ac
], XtNvisual
, FRAME_X_VISUAL (f
)); ac
++;
2501 XtSetArg (al
[ac
], XtNdepth
, FRAME_X_DISPLAY_INFO (f
)->n_planes
); ac
++;
2502 XtSetArg (al
[ac
], XtNcolormap
, FRAME_X_COLORMAP (f
)); ac
++;
2503 XtSetValues (pane_widget
, al
, ac
);
2504 f
->output_data
.x
->column_widget
= pane_widget
;
2506 /* mappedWhenManaged to false tells to the paned window to not map/unmap
2507 the emacs screen when changing menubar. This reduces flickering. */
2510 XtSetArg (al
[ac
], XtNmappedWhenManaged
, 0); ac
++;
2511 XtSetArg (al
[ac
], XtNshowGrip
, 0); ac
++;
2512 XtSetArg (al
[ac
], XtNallowResize
, 1); ac
++;
2513 XtSetArg (al
[ac
], XtNresizeToPreferred
, 1); ac
++;
2514 XtSetArg (al
[ac
], XtNemacsFrame
, f
); ac
++;
2515 XtSetArg (al
[ac
], XtNvisual
, FRAME_X_VISUAL (f
)); ac
++;
2516 XtSetArg (al
[ac
], XtNdepth
, FRAME_X_DISPLAY_INFO (f
)->n_planes
); ac
++;
2517 XtSetArg (al
[ac
], XtNcolormap
, FRAME_X_COLORMAP (f
)); ac
++;
2518 frame_widget
= XtCreateWidget (f
->namebuf
, emacsFrameClass
, pane_widget
,
2521 f
->output_data
.x
->edit_widget
= frame_widget
;
2523 XtManageChild (frame_widget
);
2525 /* Do some needed geometry management. */
2528 char *tem
, shell_position
[32];
2531 int extra_borders
= 0;
2533 = (f
->output_data
.x
->menubar_widget
2534 ? (f
->output_data
.x
->menubar_widget
->core
.height
2535 + f
->output_data
.x
->menubar_widget
->core
.border_width
)
2538 #if 0 /* Experimentally, we now get the right results
2539 for -geometry -0-0 without this. 24 Aug 96, rms. */
2540 if (FRAME_EXTERNAL_MENU_BAR (f
))
2543 XtVaGetValues (pane_widget
, XtNinternalBorderWidth
, &ibw
, NULL
);
2544 menubar_size
+= ibw
;
2548 f
->output_data
.x
->menubar_height
= menubar_size
;
2551 /* Motif seems to need this amount added to the sizes
2552 specified for the shell widget. The Athena/Lucid widgets don't.
2553 Both conclusions reached experimentally. -- rms. */
2554 XtVaGetValues (f
->output_data
.x
->edit_widget
, XtNinternalBorderWidth
,
2555 &extra_borders
, NULL
);
2559 /* Convert our geometry parameters into a geometry string
2561 Note that we do not specify here whether the position
2562 is a user-specified or program-specified one.
2563 We pass that information later, in x_wm_set_size_hints. */
2565 int left
= f
->left_pos
;
2566 int xneg
= window_prompting
& XNegative
;
2567 int top
= f
->top_pos
;
2568 int yneg
= window_prompting
& YNegative
;
2574 if (window_prompting
& USPosition
)
2575 sprintf (shell_position
, "=%dx%d%c%d%c%d",
2576 FRAME_PIXEL_WIDTH (f
) + extra_borders
,
2577 FRAME_PIXEL_HEIGHT (f
) + menubar_size
+ extra_borders
,
2578 (xneg
? '-' : '+'), left
,
2579 (yneg
? '-' : '+'), top
);
2582 sprintf (shell_position
, "=%dx%d",
2583 FRAME_PIXEL_WIDTH (f
) + extra_borders
,
2584 FRAME_PIXEL_HEIGHT (f
) + menubar_size
+ extra_borders
);
2586 /* Setting x and y when the position is not specified in
2587 the geometry string will set program position in the WM hints.
2588 If Emacs had just one program position, we could set it in
2589 fallback resources, but since each make-frame call can specify
2590 different program positions, this is easier. */
2591 XtSetArg (al
[ac
], XtNx
, left
); ac
++;
2592 XtSetArg (al
[ac
], XtNy
, top
); ac
++;
2596 len
= strlen (shell_position
) + 1;
2597 /* We don't free this because we don't know whether
2598 it is safe to free it while the frame exists.
2599 It isn't worth the trouble of arranging to free it
2600 when the frame is deleted. */
2601 tem
= (char *) xmalloc (len
);
2602 strncpy (tem
, shell_position
, len
);
2603 XtSetArg (al
[ac
], XtNgeometry
, tem
); ac
++;
2604 XtSetValues (shell_widget
, al
, ac
);
2607 XtManageChild (pane_widget
);
2608 XtRealizeWidget (shell_widget
);
2610 if (FRAME_X_EMBEDDED_P (f
))
2611 XReparentWindow (FRAME_X_DISPLAY (f
), XtWindow (shell_widget
),
2612 f
->output_data
.x
->parent_desc
, 0, 0);
2614 FRAME_X_WINDOW (f
) = XtWindow (frame_widget
);
2616 validate_x_resource_name ();
2618 class_hints
.res_name
= (char *) SDATA (Vx_resource_name
);
2619 class_hints
.res_class
= (char *) SDATA (Vx_resource_class
);
2620 XSetClassHint (FRAME_X_DISPLAY (f
), XtWindow (shell_widget
), &class_hints
);
2623 FRAME_XIC (f
) = NULL
;
2625 create_frame_xic (f
);
2628 f
->output_data
.x
->wm_hints
.input
= True
;
2629 f
->output_data
.x
->wm_hints
.flags
|= InputHint
;
2630 XSetWMHints (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2631 &f
->output_data
.x
->wm_hints
);
2633 hack_wm_protocols (f
, shell_widget
);
2636 XtAddEventHandler (shell_widget
, 0, True
, _XEditResCheckMessages
, 0);
2639 /* Do a stupid property change to force the server to generate a
2640 PropertyNotify event so that the event_stream server timestamp will
2641 be initialized to something relevant to the time we created the window.
2643 XChangeProperty (XtDisplay (frame_widget
), XtWindow (frame_widget
),
2644 FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_protocols
,
2645 XA_ATOM
, 32, PropModeAppend
,
2646 (unsigned char*) NULL
, 0);
2648 /* Make all the standard events reach the Emacs frame. */
2649 attributes
.event_mask
= STANDARD_EVENT_SET
;
2654 /* XIM server might require some X events. */
2655 unsigned long fevent
= NoEventMask
;
2656 XGetICValues (FRAME_XIC (f
), XNFilterEvents
, &fevent
, NULL
);
2657 attributes
.event_mask
|= fevent
;
2659 #endif /* HAVE_X_I18N */
2661 attribute_mask
= CWEventMask
;
2662 XChangeWindowAttributes (XtDisplay (shell_widget
), XtWindow (shell_widget
),
2663 attribute_mask
, &attributes
);
2665 XtMapWidget (frame_widget
);
2667 /* x_set_name normally ignores requests to set the name if the
2668 requested name is the same as the current name. This is the one
2669 place where that assumption isn't correct; f->name is set, but
2670 the X server hasn't been told. */
2673 int explicit = f
->explicit_name
;
2675 f
->explicit_name
= 0;
2678 x_set_name (f
, name
, explicit);
2681 XDefineCursor (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2682 f
->output_data
.x
->text_cursor
);
2686 /* This is a no-op, except under Motif. Make sure main areas are
2687 set to something reasonable, in case we get an error later. */
2688 lw_set_main_areas (pane_widget
, 0, frame_widget
);
2691 #else /* not USE_X_TOOLKIT */
2697 if (! xg_create_frame_widgets (f
))
2698 error ("Unable to create window");
2701 FRAME_XIC (f
) = NULL
;
2705 create_frame_xic (f
);
2708 /* XIM server might require some X events. */
2709 unsigned long fevent
= NoEventMask
;
2710 XGetICValues (FRAME_XIC (f
), XNFilterEvents
, &fevent
, NULL
);
2712 if (fevent
!= NoEventMask
)
2714 XSetWindowAttributes attributes
;
2715 XWindowAttributes wattr
;
2716 unsigned long attribute_mask
;
2718 XGetWindowAttributes (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2720 attributes
.event_mask
= wattr
.your_event_mask
| fevent
;
2721 attribute_mask
= CWEventMask
;
2722 XChangeWindowAttributes (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2723 attribute_mask
, &attributes
);
2731 #else /*! USE_GTK */
2732 /* Create and set up the X window for frame F. */
2739 XClassHint class_hints
;
2740 XSetWindowAttributes attributes
;
2741 unsigned long attribute_mask
;
2743 attributes
.background_pixel
= FRAME_BACKGROUND_PIXEL (f
);
2744 attributes
.border_pixel
= f
->output_data
.x
->border_pixel
;
2745 attributes
.bit_gravity
= StaticGravity
;
2746 attributes
.backing_store
= NotUseful
;
2747 attributes
.save_under
= True
;
2748 attributes
.event_mask
= STANDARD_EVENT_SET
;
2749 attributes
.colormap
= FRAME_X_COLORMAP (f
);
2750 attribute_mask
= (CWBackPixel
| CWBorderPixel
| CWBitGravity
| CWEventMask
2755 = XCreateWindow (FRAME_X_DISPLAY (f
),
2756 f
->output_data
.x
->parent_desc
,
2759 FRAME_PIXEL_WIDTH (f
), FRAME_PIXEL_HEIGHT (f
),
2761 CopyFromParent
, /* depth */
2762 InputOutput
, /* class */
2764 attribute_mask
, &attributes
);
2769 create_frame_xic (f
);
2772 /* XIM server might require some X events. */
2773 unsigned long fevent
= NoEventMask
;
2774 XGetICValues (FRAME_XIC (f
), XNFilterEvents
, &fevent
, NULL
);
2775 attributes
.event_mask
|= fevent
;
2776 attribute_mask
= CWEventMask
;
2777 XChangeWindowAttributes (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2778 attribute_mask
, &attributes
);
2781 #endif /* HAVE_X_I18N */
2783 validate_x_resource_name ();
2785 class_hints
.res_name
= (char *) SDATA (Vx_resource_name
);
2786 class_hints
.res_class
= (char *) SDATA (Vx_resource_class
);
2787 XSetClassHint (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), &class_hints
);
2789 /* The menubar is part of the ordinary display;
2790 it does not count in addition to the height of the window. */
2791 f
->output_data
.x
->menubar_height
= 0;
2793 /* This indicates that we use the "Passive Input" input model.
2794 Unless we do this, we don't get the Focus{In,Out} events that we
2795 need to draw the cursor correctly. Accursed bureaucrats.
2796 XWhipsAndChains (FRAME_X_DISPLAY (f), IronMaiden, &TheRack); */
2798 f
->output_data
.x
->wm_hints
.input
= True
;
2799 f
->output_data
.x
->wm_hints
.flags
|= InputHint
;
2800 XSetWMHints (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2801 &f
->output_data
.x
->wm_hints
);
2802 f
->output_data
.x
->wm_hints
.icon_pixmap
= None
;
2804 /* Request "save yourself" and "delete window" commands from wm. */
2807 protocols
[0] = FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_delete_window
;
2808 protocols
[1] = FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_save_yourself
;
2809 XSetWMProtocols (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), protocols
, 2);
2812 /* x_set_name normally ignores requests to set the name if the
2813 requested name is the same as the current name. This is the one
2814 place where that assumption isn't correct; f->name is set, but
2815 the X server hasn't been told. */
2818 int explicit = f
->explicit_name
;
2820 f
->explicit_name
= 0;
2823 x_set_name (f
, name
, explicit);
2826 XDefineCursor (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2827 f
->output_data
.x
->text_cursor
);
2831 if (FRAME_X_WINDOW (f
) == 0)
2832 error ("Unable to create window");
2835 #endif /* not USE_GTK */
2836 #endif /* not USE_X_TOOLKIT */
2838 /* Verify that the icon position args for this window are valid. */
2841 x_icon_verify (f
, parms
)
2845 Lisp_Object icon_x
, icon_y
;
2847 /* Set the position of the icon. Note that twm groups all
2848 icons in an icon window. */
2849 icon_x
= x_frame_get_and_record_arg (f
, parms
, Qicon_left
, 0, 0, RES_TYPE_NUMBER
);
2850 icon_y
= x_frame_get_and_record_arg (f
, parms
, Qicon_top
, 0, 0, RES_TYPE_NUMBER
);
2851 if (!EQ (icon_x
, Qunbound
) && !EQ (icon_y
, Qunbound
))
2853 CHECK_NUMBER (icon_x
);
2854 CHECK_NUMBER (icon_y
);
2856 else if (!EQ (icon_x
, Qunbound
) || !EQ (icon_y
, Qunbound
))
2857 error ("Both left and top icon corners of icon must be specified");
2860 /* Handle the icon stuff for this window. Perhaps later we might
2861 want an x_set_icon_position which can be called interactively as
2869 Lisp_Object icon_x
, icon_y
;
2871 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
2874 /* Set the position of the icon. Note that twm groups all
2875 icons in an icon window. */
2876 icon_x
= x_frame_get_and_record_arg (f
, parms
, Qicon_left
, 0, 0, RES_TYPE_NUMBER
);
2877 icon_y
= x_frame_get_and_record_arg (f
, parms
, Qicon_top
, 0, 0, RES_TYPE_NUMBER
);
2878 if (!EQ (icon_x
, Qunbound
) && !EQ (icon_y
, Qunbound
))
2880 CHECK_NUMBER (icon_x
);
2881 CHECK_NUMBER (icon_y
);
2883 else if (!EQ (icon_x
, Qunbound
) || !EQ (icon_y
, Qunbound
))
2884 error ("Both left and top icon corners of icon must be specified");
2888 if (! EQ (icon_x
, Qunbound
))
2889 x_wm_set_icon_position (f
, XINT (icon_x
), XINT (icon_y
));
2891 #if 0 /* x_get_arg removes the visibility parameter as a side effect,
2892 but x_create_frame still needs it. */
2893 /* Start up iconic or window? */
2894 x_wm_set_window_state
2895 (f
, (EQ (x_get_arg (dpyinfo
, parms
, Qvisibility
, 0, 0, RES_TYPE_SYMBOL
),
2901 x_text_icon (f
, (char *) SDATA ((!NILP (f
->icon_name
)
2908 /* Make the GCs needed for this window, setting the
2909 background, border and mouse colors; also create the
2910 mouse cursor and the gray border tile. */
2912 static char cursor_bits
[] =
2914 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
2915 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
2916 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
2917 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
2924 XGCValues gc_values
;
2928 /* Create the GCs of this frame.
2929 Note that many default values are used. */
2931 gc_values
.foreground
= FRAME_FOREGROUND_PIXEL (f
);
2932 gc_values
.background
= FRAME_BACKGROUND_PIXEL (f
);
2933 gc_values
.line_width
= 0; /* Means 1 using fast algorithm. */
2934 f
->output_data
.x
->normal_gc
2935 = XCreateGC (FRAME_X_DISPLAY (f
),
2937 GCLineWidth
| GCForeground
| GCBackground
,
2940 /* Reverse video style. */
2941 gc_values
.foreground
= FRAME_BACKGROUND_PIXEL (f
);
2942 gc_values
.background
= FRAME_FOREGROUND_PIXEL (f
);
2943 f
->output_data
.x
->reverse_gc
2944 = XCreateGC (FRAME_X_DISPLAY (f
),
2946 GCForeground
| GCBackground
| GCLineWidth
,
2949 /* Cursor has cursor-color background, background-color foreground. */
2950 gc_values
.foreground
= FRAME_BACKGROUND_PIXEL (f
);
2951 gc_values
.background
= f
->output_data
.x
->cursor_pixel
;
2952 gc_values
.fill_style
= FillOpaqueStippled
;
2954 = XCreateBitmapFromData (FRAME_X_DISPLAY (f
),
2955 FRAME_X_DISPLAY_INFO (f
)->root_window
,
2956 cursor_bits
, 16, 16);
2957 f
->output_data
.x
->cursor_gc
2958 = XCreateGC (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2959 (GCForeground
| GCBackground
2960 | GCFillStyle
/* | GCStipple */ | GCLineWidth
),
2964 f
->output_data
.x
->white_relief
.gc
= 0;
2965 f
->output_data
.x
->black_relief
.gc
= 0;
2967 /* Create the gray border tile used when the pointer is not in
2968 the frame. Since this depends on the frame's pixel values,
2969 this must be done on a per-frame basis. */
2970 f
->output_data
.x
->border_tile
2971 = (XCreatePixmapFromBitmapData
2972 (FRAME_X_DISPLAY (f
), FRAME_X_DISPLAY_INFO (f
)->root_window
,
2973 gray_bits
, gray_width
, gray_height
,
2974 FRAME_FOREGROUND_PIXEL (f
),
2975 FRAME_BACKGROUND_PIXEL (f
),
2976 DefaultDepth (FRAME_X_DISPLAY (f
), FRAME_X_SCREEN_NUMBER (f
))));
2982 /* Free what was was allocated in x_make_gc. */
2988 Display
*dpy
= FRAME_X_DISPLAY (f
);
2992 if (f
->output_data
.x
->normal_gc
)
2994 XFreeGC (dpy
, f
->output_data
.x
->normal_gc
);
2995 f
->output_data
.x
->normal_gc
= 0;
2998 if (f
->output_data
.x
->reverse_gc
)
3000 XFreeGC (dpy
, f
->output_data
.x
->reverse_gc
);
3001 f
->output_data
.x
->reverse_gc
= 0;
3004 if (f
->output_data
.x
->cursor_gc
)
3006 XFreeGC (dpy
, f
->output_data
.x
->cursor_gc
);
3007 f
->output_data
.x
->cursor_gc
= 0;
3010 if (f
->output_data
.x
->border_tile
)
3012 XFreePixmap (dpy
, f
->output_data
.x
->border_tile
);
3013 f
->output_data
.x
->border_tile
= 0;
3020 /* Handler for signals raised during x_create_frame and
3021 x_create_top_frame. FRAME is the frame which is partially
3025 unwind_create_frame (frame
)
3028 struct frame
*f
= XFRAME (frame
);
3030 /* If frame is already dead, nothing to do. This can happen if the
3031 display is disconnected after the frame has become official, but
3032 before x_create_frame removes the unwind protect. */
3033 if (!FRAME_LIVE_P (f
))
3036 /* If frame is ``official'', nothing to do. */
3037 if (!CONSP (Vframe_list
) || !EQ (XCAR (Vframe_list
), frame
))
3040 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
3043 x_free_frame_resources (f
);
3046 /* Check that reference counts are indeed correct. */
3047 xassert (dpyinfo
->reference_count
== dpyinfo_refcount
);
3048 xassert (dpyinfo
->image_cache
->refcount
== image_cache_refcount
);
3058 x_default_font_parameter (f
, parms
)
3062 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
3063 Lisp_Object font_param
= x_get_arg (dpyinfo
, parms
, Qfont
, NULL
, NULL
,
3066 if (EQ (font_param
, Qunbound
))
3068 font
= !NILP (font_param
) ? font_param
3069 : x_get_arg (dpyinfo
, parms
, Qfont
, "font", "Font", RES_TYPE_STRING
);
3071 if (! STRINGP (font
))
3076 /* This will find the normal Xft font. */
3079 "-adobe-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-1",
3080 "-misc-fixed-medium-r-normal-*-*-140-*-*-c-*-iso8859-1",
3081 "-*-*-medium-r-normal-*-*-140-*-*-c-*-iso8859-1",
3082 /* This was formerly the first thing tried, but it finds
3083 too many fonts and takes too long. */
3084 "-*-*-medium-r-*-*-*-*-*-*-c-*-iso8859-1",
3085 /* If those didn't work, look for something which will
3087 "-*-fixed-*-*-*-*-*-140-*-*-c-*-iso8859-1",
3092 for (i
= 0; names
[i
]; i
++)
3094 font
= font_open_by_name (f
, names
[i
]);
3099 error ("No suitable font was found");
3101 else if (!NILP (font_param
))
3103 /* Remember the explicit font parameter, so we can re-apply it after
3104 we've applied the `default' face settings. */
3105 x_set_frame_parameters (f
, Fcons (Fcons (Qfont_param
, font_param
), Qnil
));
3107 x_default_parameter (f
, parms
, Qfont
, font
, "font", "Font", RES_TYPE_STRING
);
3111 DEFUN ("x-create-frame", Fx_create_frame
, Sx_create_frame
,
3113 doc
: /* Make a new X window, which is called a "frame" in Emacs terms.
3114 Return an Emacs frame object.
3115 ALIST is an alist of frame parameters.
3116 If the parameters specify that the frame should not have a minibuffer,
3117 and do not specify a specific minibuffer window to use,
3118 then `default-minibuffer-frame' must be a frame whose minibuffer can
3119 be shared by the new frame.
3121 This function is an internal primitive--use `make-frame' instead. */)
3126 Lisp_Object frame
, tem
;
3128 int minibuffer_only
= 0;
3129 long window_prompting
= 0;
3131 int count
= SPECPDL_INDEX ();
3132 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
3133 Lisp_Object display
;
3134 struct x_display_info
*dpyinfo
= NULL
;
3138 parms
= Fcopy_alist (parms
);
3140 /* Use this general default value to start with
3141 until we know if this frame has a specified name. */
3142 Vx_resource_name
= Vinvocation_name
;
3144 display
= x_get_arg (dpyinfo
, parms
, Qterminal
, 0, 0, RES_TYPE_NUMBER
);
3145 if (EQ (display
, Qunbound
))
3146 display
= x_get_arg (dpyinfo
, parms
, Qdisplay
, 0, 0, RES_TYPE_STRING
);
3147 if (EQ (display
, Qunbound
))
3149 dpyinfo
= check_x_display_info (display
);
3151 kb
= dpyinfo
->terminal
->kboard
;
3153 kb
= &the_only_kboard
;
3156 if (!dpyinfo
->terminal
->name
)
3157 error ("Terminal is not live, can't create new frames on it");
3159 name
= x_get_arg (dpyinfo
, parms
, Qname
, "name", "Name", RES_TYPE_STRING
);
3161 && ! EQ (name
, Qunbound
)
3163 error ("Invalid frame name--not a string or nil");
3166 Vx_resource_name
= name
;
3168 /* See if parent window is specified. */
3169 parent
= x_get_arg (dpyinfo
, parms
, Qparent_id
, NULL
, NULL
, RES_TYPE_NUMBER
);
3170 if (EQ (parent
, Qunbound
))
3172 if (! NILP (parent
))
3173 CHECK_NUMBER (parent
);
3175 /* make_frame_without_minibuffer can run Lisp code and garbage collect. */
3176 /* No need to protect DISPLAY because that's not used after passing
3177 it to make_frame_without_minibuffer. */
3179 GCPRO4 (parms
, parent
, name
, frame
);
3180 tem
= x_get_arg (dpyinfo
, parms
, Qminibuffer
, "minibuffer", "Minibuffer",
3182 if (EQ (tem
, Qnone
) || NILP (tem
))
3183 f
= make_frame_without_minibuffer (Qnil
, kb
, display
);
3184 else if (EQ (tem
, Qonly
))
3186 f
= make_minibuffer_frame ();
3187 minibuffer_only
= 1;
3189 else if (WINDOWP (tem
))
3190 f
= make_frame_without_minibuffer (tem
, kb
, display
);
3194 XSETFRAME (frame
, f
);
3196 /* Note that X Windows does support scroll bars. */
3197 FRAME_CAN_HAVE_SCROLL_BARS (f
) = 1;
3199 f
->terminal
= dpyinfo
->terminal
;
3200 f
->terminal
->reference_count
++;
3202 f
->output_method
= output_x_window
;
3203 f
->output_data
.x
= (struct x_output
*) xmalloc (sizeof (struct x_output
));
3204 bzero (f
->output_data
.x
, sizeof (struct x_output
));
3205 f
->output_data
.x
->icon_bitmap
= -1;
3206 FRAME_FONTSET (f
) = -1;
3207 f
->output_data
.x
->scroll_bar_foreground_pixel
= -1;
3208 f
->output_data
.x
->scroll_bar_background_pixel
= -1;
3209 #ifdef USE_TOOLKIT_SCROLL_BARS
3210 f
->output_data
.x
->scroll_bar_top_shadow_pixel
= -1;
3211 f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
= -1;
3212 #endif /* USE_TOOLKIT_SCROLL_BARS */
3215 = x_get_arg (dpyinfo
, parms
, Qicon_name
, "iconName", "Title",
3217 if (! STRINGP (f
->icon_name
))
3218 f
->icon_name
= Qnil
;
3220 FRAME_X_DISPLAY_INFO (f
) = dpyinfo
;
3222 /* With FRAME_X_DISPLAY_INFO set up, this unwind-protect is safe. */
3223 record_unwind_protect (unwind_create_frame
, frame
);
3225 image_cache_refcount
= FRAME_IMAGE_CACHE (f
)->refcount
;
3226 dpyinfo_refcount
= dpyinfo
->reference_count
;
3227 #endif /* GLYPH_DEBUG */
3229 /* These colors will be set anyway later, but it's important
3230 to get the color reference counts right, so initialize them! */
3233 struct gcpro gcpro1
;
3235 /* Function x_decode_color can signal an error. Make
3236 sure to initialize color slots so that we won't try
3237 to free colors we haven't allocated. */
3238 FRAME_FOREGROUND_PIXEL (f
) = -1;
3239 FRAME_BACKGROUND_PIXEL (f
) = -1;
3240 f
->output_data
.x
->cursor_pixel
= -1;
3241 f
->output_data
.x
->cursor_foreground_pixel
= -1;
3242 f
->output_data
.x
->border_pixel
= -1;
3243 f
->output_data
.x
->mouse_pixel
= -1;
3245 black
= build_string ("black");
3247 FRAME_FOREGROUND_PIXEL (f
)
3248 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
3249 FRAME_BACKGROUND_PIXEL (f
)
3250 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
3251 f
->output_data
.x
->cursor_pixel
3252 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
3253 f
->output_data
.x
->cursor_foreground_pixel
3254 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
3255 f
->output_data
.x
->border_pixel
3256 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
3257 f
->output_data
.x
->mouse_pixel
3258 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
3262 /* Specify the parent under which to make this X window. */
3266 f
->output_data
.x
->parent_desc
= (Window
) XFASTINT (parent
);
3267 f
->output_data
.x
->explicit_parent
= 1;
3271 f
->output_data
.x
->parent_desc
= FRAME_X_DISPLAY_INFO (f
)->root_window
;
3272 f
->output_data
.x
->explicit_parent
= 0;
3275 /* Set the name; the functions to which we pass f expect the name to
3277 if (EQ (name
, Qunbound
) || NILP (name
))
3279 f
->name
= build_string (dpyinfo
->x_id_name
);
3280 f
->explicit_name
= 0;
3285 f
->explicit_name
= 1;
3286 /* use the frame's title when getting resources for this frame. */
3287 specbind (Qx_resource_name
, name
);
3290 f
->resx
= dpyinfo
->resx
;
3291 f
->resy
= dpyinfo
->resy
;
3293 register_font_driver (&xfont_driver
, f
);
3294 #ifdef HAVE_FREETYPE
3296 register_font_driver (&xftfont_driver
, f
);
3297 #else /* not HAVE_XFT */
3298 register_font_driver (&ftxfont_driver
, f
);
3299 #endif /* not HAVE_XFT */
3300 #endif /* HAVE_FREETYPE */
3302 x_default_parameter (f
, parms
, Qfont_backend
, Qnil
,
3303 "fontBackend", "FontBackend", RES_TYPE_STRING
);
3305 /* Extract the window parameters from the supplied values
3306 that are needed to determine window geometry. */
3307 x_default_font_parameter (f
, parms
);
3310 /* Prevent lwlib/xlwmenu.c from crashing because of a bug
3311 whereby it fails to get any font. */
3312 xlwmenu_default_font
= XLoadQueryFont (FRAME_X_DISPLAY (f
), "fixed");
3315 /* Frame contents get displaced if an embedded X window has a border. */
3316 if (! FRAME_X_EMBEDDED_P (f
))
3317 x_default_parameter (f
, parms
, Qborder_width
, make_number (2),
3318 "borderWidth", "BorderWidth", RES_TYPE_NUMBER
);
3320 /* This defaults to 1 in order to match xterm. We recognize either
3321 internalBorderWidth or internalBorder (which is what xterm calls
3323 if (NILP (Fassq (Qinternal_border_width
, parms
)))
3327 value
= x_get_arg (dpyinfo
, parms
, Qinternal_border_width
,
3328 "internalBorder", "internalBorder", RES_TYPE_NUMBER
);
3329 if (! EQ (value
, Qunbound
))
3330 parms
= Fcons (Fcons (Qinternal_border_width
, value
),
3333 x_default_parameter (f
, parms
, Qinternal_border_width
,
3334 #ifdef USE_GTK /* We used to impose 0 in xg_create_frame_widgets. */
3339 "internalBorderWidth", "internalBorderWidth",
3341 x_default_parameter (f
, parms
, Qvertical_scroll_bars
, Qleft
,
3342 "verticalScrollBars", "ScrollBars",
3345 /* Also do the stuff which must be set before the window exists. */
3346 x_default_parameter (f
, parms
, Qforeground_color
, build_string ("black"),
3347 "foreground", "Foreground", RES_TYPE_STRING
);
3348 x_default_parameter (f
, parms
, Qbackground_color
, build_string ("white"),
3349 "background", "Background", RES_TYPE_STRING
);
3350 x_default_parameter (f
, parms
, Qmouse_color
, build_string ("black"),
3351 "pointerColor", "Foreground", RES_TYPE_STRING
);
3352 x_default_parameter (f
, parms
, Qcursor_color
, build_string ("black"),
3353 "cursorColor", "Foreground", RES_TYPE_STRING
);
3354 x_default_parameter (f
, parms
, Qborder_color
, build_string ("black"),
3355 "borderColor", "BorderColor", RES_TYPE_STRING
);
3356 x_default_parameter (f
, parms
, Qscreen_gamma
, Qnil
,
3357 "screenGamma", "ScreenGamma", RES_TYPE_FLOAT
);
3358 x_default_parameter (f
, parms
, Qline_spacing
, Qnil
,
3359 "lineSpacing", "LineSpacing", RES_TYPE_NUMBER
);
3360 x_default_parameter (f
, parms
, Qleft_fringe
, Qnil
,
3361 "leftFringe", "LeftFringe", RES_TYPE_NUMBER
);
3362 x_default_parameter (f
, parms
, Qright_fringe
, Qnil
,
3363 "rightFringe", "RightFringe", RES_TYPE_NUMBER
);
3365 x_default_scroll_bar_color_parameter (f
, parms
, Qscroll_bar_foreground
,
3366 "scrollBarForeground",
3367 "ScrollBarForeground", 1);
3368 x_default_scroll_bar_color_parameter (f
, parms
, Qscroll_bar_background
,
3369 "scrollBarBackground",
3370 "ScrollBarBackground", 0);
3372 /* Init faces before x_default_parameter is called for scroll-bar
3373 parameters because that function calls x_set_scroll_bar_width,
3374 which calls change_frame_size, which calls Fset_window_buffer,
3375 which runs hooks, which call Fvertical_motion. At the end, we
3376 end up in init_iterator with a null face cache, which should not
3378 init_frame_faces (f
);
3380 x_default_parameter (f
, parms
, Qmenu_bar_lines
, make_number (1),
3381 "menuBar", "MenuBar", RES_TYPE_NUMBER
);
3382 x_default_parameter (f
, parms
, Qtool_bar_lines
, make_number (1),
3383 "toolBar", "ToolBar", RES_TYPE_NUMBER
);
3384 x_default_parameter (f
, parms
, Qbuffer_predicate
, Qnil
,
3385 "bufferPredicate", "BufferPredicate",
3387 x_default_parameter (f
, parms
, Qtitle
, Qnil
,
3388 "title", "Title", RES_TYPE_STRING
);
3389 x_default_parameter (f
, parms
, Qwait_for_wm
, Qt
,
3390 "waitForWM", "WaitForWM", RES_TYPE_BOOLEAN
);
3391 x_default_parameter (f
, parms
, Qfullscreen
, Qnil
,
3392 "fullscreen", "Fullscreen", RES_TYPE_SYMBOL
);
3394 /* Compute the size of the X window. */
3395 window_prompting
= x_figure_window_size (f
, parms
, 1);
3397 tem
= x_get_arg (dpyinfo
, parms
, Qunsplittable
, 0, 0, RES_TYPE_BOOLEAN
);
3398 f
->no_split
= minibuffer_only
|| EQ (tem
, Qt
);
3400 x_icon_verify (f
, parms
);
3402 /* Create the X widget or window. */
3403 #ifdef USE_X_TOOLKIT
3404 x_window (f
, window_prompting
, minibuffer_only
);
3412 /* Now consider the frame official. */
3413 FRAME_X_DISPLAY_INFO (f
)->reference_count
++;
3414 Vframe_list
= Fcons (frame
, Vframe_list
);
3416 /* We need to do this after creating the X window, so that the
3417 icon-creation functions can say whose icon they're describing. */
3418 x_default_parameter (f
, parms
, Qicon_type
, Qt
,
3419 "bitmapIcon", "BitmapIcon", RES_TYPE_SYMBOL
);
3421 x_default_parameter (f
, parms
, Qauto_raise
, Qnil
,
3422 "autoRaise", "AutoRaiseLower", RES_TYPE_BOOLEAN
);
3423 x_default_parameter (f
, parms
, Qauto_lower
, Qnil
,
3424 "autoLower", "AutoRaiseLower", RES_TYPE_BOOLEAN
);
3425 x_default_parameter (f
, parms
, Qcursor_type
, Qbox
,
3426 "cursorType", "CursorType", RES_TYPE_SYMBOL
);
3427 x_default_parameter (f
, parms
, Qscroll_bar_width
, Qnil
,
3428 "scrollBarWidth", "ScrollBarWidth",
3430 x_default_parameter (f
, parms
, Qalpha
, Qnil
,
3431 "alpha", "Alpha", RES_TYPE_NUMBER
);
3433 /* Dimensions, especially FRAME_LINES (f), must be done via change_frame_size.
3434 Change will not be effected unless different from the current
3436 width
= FRAME_COLS (f
);
3437 height
= FRAME_LINES (f
);
3439 SET_FRAME_COLS (f
, 0);
3440 FRAME_LINES (f
) = 0;
3441 change_frame_size (f
, height
, width
, 1, 0, 0);
3443 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
3444 /* Create the menu bar. */
3445 if (!minibuffer_only
&& FRAME_EXTERNAL_MENU_BAR (f
))
3447 /* If this signals an error, we haven't set size hints for the
3448 frame and we didn't make it visible. */
3449 initialize_frame_menubar (f
);
3452 /* This is a no-op, except under Motif where it arranges the
3453 main window for the widgets on it. */
3454 lw_set_main_areas (f
->output_data
.x
->column_widget
,
3455 f
->output_data
.x
->menubar_widget
,
3456 f
->output_data
.x
->edit_widget
);
3457 #endif /* not USE_GTK */
3459 #endif /* USE_X_TOOLKIT || USE_GTK */
3461 /* Tell the server what size and position, etc, we want, and how
3462 badly we want them. This should be done after we have the menu
3463 bar so that its size can be taken into account. */
3465 x_wm_set_size_hint (f
, window_prompting
, 0);
3468 /* Make the window appear on the frame and enable display, unless
3469 the caller says not to. However, with explicit parent, Emacs
3470 cannot control visibility, so don't try. */
3471 if (! f
->output_data
.x
->explicit_parent
)
3473 Lisp_Object visibility
;
3475 visibility
= x_get_arg (dpyinfo
, parms
, Qvisibility
, 0, 0,
3477 if (EQ (visibility
, Qunbound
))
3480 if (EQ (visibility
, Qicon
))
3481 x_iconify_frame (f
);
3482 else if (! NILP (visibility
))
3483 x_make_frame_visible (f
);
3485 /* Must have been Qnil. */
3489 /* Set the WM leader property. GTK does this itself, so this is not
3490 needed when using GTK. */
3491 if (dpyinfo
->client_leader_window
!= 0)
3494 XChangeProperty (FRAME_X_DISPLAY (f
),
3495 FRAME_OUTER_WINDOW (f
),
3496 dpyinfo
->Xatom_wm_client_leader
,
3497 XA_WINDOW
, 32, PropModeReplace
,
3498 (unsigned char *) &dpyinfo
->client_leader_window
, 1);
3502 /* Initialize `default-minibuffer-frame' in case this is the first
3503 frame on this terminal. */
3504 if (FRAME_HAS_MINIBUF_P (f
)
3505 && (!FRAMEP (kb
->Vdefault_minibuffer_frame
)
3506 || !FRAME_LIVE_P (XFRAME (kb
->Vdefault_minibuffer_frame
))))
3507 kb
->Vdefault_minibuffer_frame
= frame
;
3509 /* All remaining specified parameters, which have not been "used"
3510 by x_get_arg and friends, now go in the misc. alist of the frame. */
3511 for (tem
= parms
; CONSP (tem
); tem
= XCDR (tem
))
3512 if (CONSP (XCAR (tem
)) && !NILP (XCAR (XCAR (tem
))))
3513 f
->param_alist
= Fcons (XCAR (tem
), f
->param_alist
);
3517 /* Make sure windows on this frame appear in calls to next-window
3518 and similar functions. */
3519 Vwindow_list
= Qnil
;
3521 return unbind_to (count
, frame
);
3525 /* FRAME is used only to get a handle on the X display. We don't pass the
3526 display info directly because we're called from frame.c, which doesn't
3527 know about that structure. */
3530 x_get_focus_frame (frame
)
3531 struct frame
*frame
;
3533 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (frame
);
3535 if (! dpyinfo
->x_focus_frame
)
3538 XSETFRAME (xfocus
, dpyinfo
->x_focus_frame
);
3543 /* In certain situations, when the window manager follows a
3544 click-to-focus policy, there seems to be no way around calling
3545 XSetInputFocus to give another frame the input focus .
3547 In an ideal world, XSetInputFocus should generally be avoided so
3548 that applications don't interfere with the window manager's focus
3549 policy. But I think it's okay to use when it's clearly done
3550 following a user-command. */
3552 DEFUN ("x-focus-frame", Fx_focus_frame
, Sx_focus_frame
, 1, 1, 0,
3553 doc
: /* Set the input focus to FRAME.
3554 FRAME nil means use the selected frame. */)
3558 struct frame
*f
= check_x_frame (frame
);
3559 Display
*dpy
= FRAME_X_DISPLAY (f
);
3562 x_catch_errors (dpy
);
3563 XSetInputFocus (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
3564 RevertToParent
, CurrentTime
);
3565 x_ewmh_activate_frame (f
);
3566 x_uncatch_errors ();
3573 DEFUN ("xw-color-defined-p", Fxw_color_defined_p
, Sxw_color_defined_p
, 1, 2, 0,
3574 doc
: /* Internal function called by `color-defined-p', which see. */)
3576 Lisp_Object color
, frame
;
3579 FRAME_PTR f
= check_x_frame (frame
);
3581 CHECK_STRING (color
);
3583 if (x_defined_color (f
, SDATA (color
), &foo
, 0))
3589 DEFUN ("xw-color-values", Fxw_color_values
, Sxw_color_values
, 1, 2, 0,
3590 doc
: /* Internal function called by `color-values', which see. */)
3592 Lisp_Object color
, frame
;
3595 FRAME_PTR f
= check_x_frame (frame
);
3597 CHECK_STRING (color
);
3599 if (x_defined_color (f
, SDATA (color
), &foo
, 0))
3600 return list3 (make_number (foo
.red
),
3601 make_number (foo
.green
),
3602 make_number (foo
.blue
));
3607 DEFUN ("xw-display-color-p", Fxw_display_color_p
, Sxw_display_color_p
, 0, 1, 0,
3608 doc
: /* Internal function called by `display-color-p', which see. */)
3610 Lisp_Object terminal
;
3612 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3614 if (dpyinfo
->n_planes
<= 2)
3617 switch (dpyinfo
->visual
->class)
3630 DEFUN ("x-display-grayscale-p", Fx_display_grayscale_p
, Sx_display_grayscale_p
,
3632 doc
: /* Return t if the X display supports shades of gray.
3633 Note that color displays do support shades of gray.
3634 The optional argument TERMINAL specifies which display to ask about.
3635 TERMINAL should be a terminal id, a frame or a display name (a string).
3636 If omitted or nil, that stands for the selected frame's display. */)
3638 Lisp_Object terminal
;
3640 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3642 if (dpyinfo
->n_planes
<= 1)
3645 switch (dpyinfo
->visual
->class)
3660 DEFUN ("x-display-pixel-width", Fx_display_pixel_width
, Sx_display_pixel_width
,
3662 doc
: /* Return the width in pixels of the X display TERMINAL.
3663 The optional argument TERMINAL specifies which display to ask about.
3664 TERMINAL should be a terminal id, a frame or a display name (a string).
3665 If omitted or nil, that stands for the selected frame's display. */)
3667 Lisp_Object terminal
;
3669 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3671 return make_number (dpyinfo
->width
);
3674 DEFUN ("x-display-pixel-height", Fx_display_pixel_height
,
3675 Sx_display_pixel_height
, 0, 1, 0,
3676 doc
: /* Return the height in pixels of the X display TERMINAL.
3677 The optional argument TERMINAL specifies which display to ask about.
3678 TERMINAL should be a terminal id, a frame or a display name (a string).
3679 If omitted or nil, that stands for the selected frame's display. */)
3681 Lisp_Object terminal
;
3683 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3685 return make_number (dpyinfo
->height
);
3688 DEFUN ("x-display-planes", Fx_display_planes
, Sx_display_planes
,
3690 doc
: /* Return the number of bitplanes of the X display TERMINAL.
3691 The optional argument TERMINAL specifies which display to ask about.
3692 TERMINAL should be a terminal id, a frame or a display name (a string).
3693 If omitted or nil, that stands for the selected frame's display. */)
3695 Lisp_Object terminal
;
3697 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3699 return make_number (dpyinfo
->n_planes
);
3702 DEFUN ("x-display-color-cells", Fx_display_color_cells
, Sx_display_color_cells
,
3704 doc
: /* Return the number of color cells of the X display TERMINAL.
3705 The optional argument TERMINAL specifies which display to ask about.
3706 TERMINAL should be a terminal id, a frame or a display name (a string).
3707 If omitted or nil, that stands for the selected frame's display. */)
3709 Lisp_Object terminal
;
3711 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3713 int nr_planes
= DisplayPlanes (dpyinfo
->display
,
3714 XScreenNumberOfScreen (dpyinfo
->screen
));
3716 /* Truncate nr_planes to 24 to avoid integer overflow.
3717 Some displays says 32, but only 24 bits are actually significant.
3718 There are only very few and rare video cards that have more than
3719 24 significant bits. Also 24 bits is more than 16 million colors,
3720 it "should be enough for everyone". */
3721 if (nr_planes
> 24) nr_planes
= 24;
3723 return make_number (1 << nr_planes
);
3726 DEFUN ("x-server-max-request-size", Fx_server_max_request_size
,
3727 Sx_server_max_request_size
,
3729 doc
: /* Return the maximum request size of the X server of display TERMINAL.
3730 The optional argument TERMINAL specifies which display to ask about.
3731 TERMINAL should be a terminal id, a frame or a display name (a string).
3732 If omitted or nil, that stands for the selected frame's display. */)
3734 Lisp_Object terminal
;
3736 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3738 return make_number (MAXREQUEST (dpyinfo
->display
));
3741 DEFUN ("x-server-vendor", Fx_server_vendor
, Sx_server_vendor
, 0, 1, 0,
3742 doc
: /* Return the "vendor ID" string of the X server of display TERMINAL.
3743 \(Labelling every distributor as a "vendor" embodies the false assumption
3744 that operating systems cannot be developed and distributed noncommercially.)
3745 The optional argument TERMINAL specifies which display to ask about.
3746 TERMINAL should be a terminal id, a frame or a display name (a string).
3747 If omitted or nil, that stands for the selected frame's display. */)
3749 Lisp_Object terminal
;
3751 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3752 char *vendor
= ServerVendor (dpyinfo
->display
);
3754 if (! vendor
) vendor
= "";
3755 return build_string (vendor
);
3758 DEFUN ("x-server-version", Fx_server_version
, Sx_server_version
, 0, 1, 0,
3759 doc
: /* Return the version numbers of the X server of display TERMINAL.
3760 The value is a list of three integers: the major and minor
3761 version numbers of the X Protocol in use, and the distributor-specific release
3762 number. See also the function `x-server-vendor'.
3764 The optional argument TERMINAL specifies which display to ask about.
3765 TERMINAL should be a terminal id, a frame or a display name (a string).
3766 If omitted or nil, that stands for the selected frame's display. */)
3768 Lisp_Object terminal
;
3770 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3771 Display
*dpy
= dpyinfo
->display
;
3773 return Fcons (make_number (ProtocolVersion (dpy
)),
3774 Fcons (make_number (ProtocolRevision (dpy
)),
3775 Fcons (make_number (VendorRelease (dpy
)), Qnil
)));
3778 DEFUN ("x-display-screens", Fx_display_screens
, Sx_display_screens
, 0, 1, 0,
3779 doc
: /* Return the number of screens on the X server of display TERMINAL.
3780 The optional argument TERMINAL specifies which display to ask about.
3781 TERMINAL should be a terminal id, a frame or a display name (a string).
3782 If omitted or nil, that stands for the selected frame's display. */)
3784 Lisp_Object terminal
;
3786 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3788 return make_number (ScreenCount (dpyinfo
->display
));
3791 DEFUN ("x-display-mm-height", Fx_display_mm_height
, Sx_display_mm_height
, 0, 1, 0,
3792 doc
: /* Return the height in millimeters of the X display TERMINAL.
3793 The optional argument TERMINAL specifies which display to ask about.
3794 TERMINAL should be a terminal id, a frame or a display name (a string).
3795 If omitted or nil, that stands for the selected frame's display. */)
3797 Lisp_Object terminal
;
3799 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3801 return make_number (HeightMMOfScreen (dpyinfo
->screen
));
3804 DEFUN ("x-display-mm-width", Fx_display_mm_width
, Sx_display_mm_width
, 0, 1, 0,
3805 doc
: /* Return the width in millimeters of the X display TERMINAL.
3806 The optional argument TERMINAL specifies which display to ask about.
3807 TERMINAL should be a terminal id, a frame or a display name (a string).
3808 If omitted or nil, that stands for the selected frame's display. */)
3810 Lisp_Object terminal
;
3812 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3814 return make_number (WidthMMOfScreen (dpyinfo
->screen
));
3817 DEFUN ("x-display-backing-store", Fx_display_backing_store
,
3818 Sx_display_backing_store
, 0, 1, 0,
3819 doc
: /* Return an indication of whether X display TERMINAL does backing store.
3820 The value may be `always', `when-mapped', or `not-useful'.
3821 The optional argument TERMINAL specifies which display to ask about.
3822 TERMINAL should be a terminal id, a frame or a display name (a string).
3823 If omitted or nil, that stands for the selected frame's display. */)
3825 Lisp_Object terminal
;
3827 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3830 switch (DoesBackingStore (dpyinfo
->screen
))
3833 result
= intern ("always");
3837 result
= intern ("when-mapped");
3841 result
= intern ("not-useful");
3845 error ("Strange value for BackingStore parameter of screen");
3852 DEFUN ("x-display-visual-class", Fx_display_visual_class
,
3853 Sx_display_visual_class
, 0, 1, 0,
3854 doc
: /* Return the visual class of the X display TERMINAL.
3855 The value is one of the symbols `static-gray', `gray-scale',
3856 `static-color', `pseudo-color', `true-color', or `direct-color'.
3858 The optional argument TERMINAL specifies which display to ask about.
3859 TERMINAL should a terminal id, a frame or a display name (a string).
3860 If omitted or nil, that stands for the selected frame's display. */)
3862 Lisp_Object terminal
;
3864 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3867 switch (dpyinfo
->visual
->class)
3870 result
= intern ("static-gray");
3873 result
= intern ("gray-scale");
3876 result
= intern ("static-color");
3879 result
= intern ("pseudo-color");
3882 result
= intern ("true-color");
3885 result
= intern ("direct-color");
3888 error ("Display has an unknown visual class");
3895 DEFUN ("x-display-save-under", Fx_display_save_under
,
3896 Sx_display_save_under
, 0, 1, 0,
3897 doc
: /* Return t if the X display TERMINAL supports the save-under feature.
3898 The optional argument TERMINAL specifies which display to ask about.
3899 TERMINAL should be a terminal id, a frame or a display name (a string).
3900 If omitted or nil, that stands for the selected frame's display. */)
3902 Lisp_Object terminal
;
3904 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3906 if (DoesSaveUnders (dpyinfo
->screen
) == True
)
3914 register struct frame
*f
;
3916 return FRAME_PIXEL_WIDTH (f
);
3921 register struct frame
*f
;
3923 return FRAME_PIXEL_HEIGHT (f
);
3928 register struct frame
*f
;
3930 return FRAME_COLUMN_WIDTH (f
);
3935 register struct frame
*f
;
3937 return FRAME_LINE_HEIGHT (f
);
3942 register struct frame
*f
;
3944 return FRAME_X_DISPLAY_INFO (f
)->n_planes
;
3949 /************************************************************************
3951 ************************************************************************/
3954 /* Mapping visual names to visuals. */
3956 static struct visual_class
3963 {"StaticGray", StaticGray
},
3964 {"GrayScale", GrayScale
},
3965 {"StaticColor", StaticColor
},
3966 {"PseudoColor", PseudoColor
},
3967 {"TrueColor", TrueColor
},
3968 {"DirectColor", DirectColor
},
3973 #ifndef HAVE_XSCREENNUMBEROFSCREEN
3975 /* Value is the screen number of screen SCR. This is a substitute for
3976 the X function with the same name when that doesn't exist. */
3979 XScreenNumberOfScreen (scr
)
3980 register Screen
*scr
;
3982 Display
*dpy
= scr
->display
;
3985 for (i
= 0; i
< dpy
->nscreens
; ++i
)
3986 if (scr
== dpy
->screens
+ i
)
3992 #endif /* not HAVE_XSCREENNUMBEROFSCREEN */
3995 /* Select the visual that should be used on display DPYINFO. Set
3996 members of DPYINFO appropriately. Called from x_term_init. */
3999 select_visual (dpyinfo
)
4000 struct x_display_info
*dpyinfo
;
4002 Display
*dpy
= dpyinfo
->display
;
4003 Screen
*screen
= dpyinfo
->screen
;
4006 /* See if a visual is specified. */
4007 value
= display_x_get_resource (dpyinfo
,
4008 build_string ("visualClass"),
4009 build_string ("VisualClass"),
4011 if (STRINGP (value
))
4013 /* VALUE should be of the form CLASS-DEPTH, where CLASS is one
4014 of `PseudoColor', `TrueColor' etc. and DEPTH is the color
4015 depth, a decimal number. NAME is compared with case ignored. */
4016 char *s
= (char *) alloca (SBYTES (value
) + 1);
4021 strcpy (s
, SDATA (value
));
4022 dash
= index (s
, '-');
4025 dpyinfo
->n_planes
= atoi (dash
+ 1);
4029 /* We won't find a matching visual with depth 0, so that
4030 an error will be printed below. */
4031 dpyinfo
->n_planes
= 0;
4033 /* Determine the visual class. */
4034 for (i
= 0; visual_classes
[i
].name
; ++i
)
4035 if (xstrcasecmp (s
, visual_classes
[i
].name
) == 0)
4037 class = visual_classes
[i
].class;
4041 /* Look up a matching visual for the specified class. */
4043 || !XMatchVisualInfo (dpy
, XScreenNumberOfScreen (screen
),
4044 dpyinfo
->n_planes
, class, &vinfo
))
4045 fatal ("Invalid visual specification `%s'", SDATA (value
));
4047 dpyinfo
->visual
= vinfo
.visual
;
4052 XVisualInfo
*vinfo
, vinfo_template
;
4054 dpyinfo
->visual
= DefaultVisualOfScreen (screen
);
4056 vinfo_template
.visualid
= XVisualIDFromVisual (dpyinfo
->visual
);
4057 vinfo_template
.screen
= XScreenNumberOfScreen (screen
);
4058 vinfo
= XGetVisualInfo (dpy
, VisualIDMask
| VisualScreenMask
,
4059 &vinfo_template
, &n_visuals
);
4061 fatal ("Can't get proper X visual info");
4063 dpyinfo
->n_planes
= vinfo
->depth
;
4064 XFree ((char *) vinfo
);
4069 /* Return the X display structure for the display named NAME.
4070 Open a new connection if necessary. */
4072 struct x_display_info
*
4073 x_display_info_for_name (name
)
4077 struct x_display_info
*dpyinfo
;
4079 CHECK_STRING (name
);
4082 if (! EQ (Vinitial_window_system
, intern ("x")))
4083 error ("Not using X Windows"); /* That doesn't stop us anymore. */
4086 for (dpyinfo
= x_display_list
, names
= x_display_name_list
;
4088 dpyinfo
= dpyinfo
->next
, names
= XCDR (names
))
4091 tem
= Fstring_equal (XCAR (XCAR (names
)), name
);
4096 /* Use this general default value to start with. */
4097 Vx_resource_name
= Vinvocation_name
;
4099 validate_x_resource_name ();
4101 dpyinfo
= x_term_init (name
, (char *)0,
4102 (char *) SDATA (Vx_resource_name
));
4105 error ("Cannot connect to X server %s", SDATA (name
));
4108 XSETFASTINT (Vwindow_system_version
, 11);
4114 DEFUN ("x-open-connection", Fx_open_connection
, Sx_open_connection
,
4116 doc
: /* Open a connection to an X server.
4117 DISPLAY is the name of the display to connect to.
4118 Optional second arg XRM-STRING is a string of resources in xrdb format.
4119 If the optional third arg MUST-SUCCEED is non-nil,
4120 terminate Emacs if we can't open the connection. */)
4121 (display
, xrm_string
, must_succeed
)
4122 Lisp_Object display
, xrm_string
, must_succeed
;
4124 unsigned char *xrm_option
;
4125 struct x_display_info
*dpyinfo
;
4127 CHECK_STRING (display
);
4128 if (! NILP (xrm_string
))
4129 CHECK_STRING (xrm_string
);
4132 if (! EQ (Vinitial_window_system
, intern ("x")))
4133 error ("Not using X Windows"); /* That doesn't stop us anymore. */
4136 if (! NILP (xrm_string
))
4137 xrm_option
= (unsigned char *) SDATA (xrm_string
);
4139 xrm_option
= (unsigned char *) 0;
4141 validate_x_resource_name ();
4143 /* This is what opens the connection and sets x_current_display.
4144 This also initializes many symbols, such as those used for input. */
4145 dpyinfo
= x_term_init (display
, xrm_option
,
4146 (char *) SDATA (Vx_resource_name
));
4150 if (!NILP (must_succeed
))
4151 fatal ("Cannot connect to X server %s.\n\
4152 Check the DISPLAY environment variable or use `-d'.\n\
4153 Also use the `xauth' program to verify that you have the proper\n\
4154 authorization information needed to connect the X server.\n\
4155 An insecure way to solve the problem may be to use `xhost'.\n",
4158 error ("Cannot connect to X server %s", SDATA (display
));
4163 XSETFASTINT (Vwindow_system_version
, 11);
4167 DEFUN ("x-close-connection", Fx_close_connection
,
4168 Sx_close_connection
, 1, 1, 0,
4169 doc
: /* Close the connection to TERMINAL's X server.
4170 For TERMINAL, specify a terminal id, a frame or a display name (a
4171 string). If TERMINAL is nil, that stands for the selected frame's
4174 Lisp_Object terminal
;
4176 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
4178 if (dpyinfo
->reference_count
> 0)
4179 error ("Display still has frames on it");
4181 x_delete_terminal (dpyinfo
->terminal
);
4186 DEFUN ("x-display-list", Fx_display_list
, Sx_display_list
, 0, 0, 0,
4187 doc
: /* Return the list of display names that Emacs has connections to. */)
4190 Lisp_Object tail
, result
;
4193 for (tail
= x_display_name_list
; CONSP (tail
); tail
= XCDR (tail
))
4194 result
= Fcons (XCAR (XCAR (tail
)), result
);
4199 DEFUN ("x-synchronize", Fx_synchronize
, Sx_synchronize
, 1, 2, 0,
4200 doc
: /* If ON is non-nil, report X errors as soon as the erring request is made.
4201 If ON is nil, allow buffering of requests.
4202 Turning on synchronization prohibits the Xlib routines from buffering
4203 requests and seriously degrades performance, but makes debugging much
4205 The optional second argument TERMINAL specifies which display to act on.
4206 TERMINAL should be a terminal id, a frame or a display name (a string).
4207 If TERMINAL is omitted or nil, that stands for the selected frame's display. */)
4209 Lisp_Object terminal
, on
;
4211 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
4213 XSynchronize (dpyinfo
->display
, !EQ (on
, Qnil
));
4218 /* Wait for responses to all X commands issued so far for frame F. */
4225 XSync (FRAME_X_DISPLAY (f
), False
);
4230 /***********************************************************************
4232 ***********************************************************************/
4234 DEFUN ("x-change-window-property", Fx_change_window_property
,
4235 Sx_change_window_property
, 2, 6, 0,
4236 doc
: /* Change window property PROP to VALUE on the X window of FRAME.
4237 PROP must be a string.
4238 VALUE may be a string or a list of conses, numbers and/or strings.
4239 If an element in the list is a string, it is converted to
4240 an Atom and the value of the Atom is used. If an element is a cons,
4241 it is converted to a 32 bit number where the car is the 16 top bits and the
4242 cdr is the lower 16 bits.
4243 FRAME nil or omitted means use the selected frame.
4244 If TYPE is given and non-nil, it is the name of the type of VALUE.
4245 If TYPE is not given or nil, the type is STRING.
4246 FORMAT gives the size in bits of each element if VALUE is a list.
4247 It must be one of 8, 16 or 32.
4248 If VALUE is a string or FORMAT is nil or not given, FORMAT defaults to 8.
4249 If OUTER_P is non-nil, the property is changed for the outer X window of
4250 FRAME. Default is to change on the edit X window.
4253 (prop
, value
, frame
, type
, format
, outer_p
)
4254 Lisp_Object prop
, value
, frame
, type
, format
, outer_p
;
4256 struct frame
*f
= check_x_frame (frame
);
4258 Atom target_type
= XA_STRING
;
4259 int element_format
= 8;
4260 unsigned char *data
;
4264 CHECK_STRING (prop
);
4266 if (! NILP (format
))
4268 CHECK_NUMBER (format
);
4269 element_format
= XFASTINT (format
);
4271 if (element_format
!= 8 && element_format
!= 16
4272 && element_format
!= 32)
4273 error ("FORMAT must be one of 8, 16 or 32");
4278 nelements
= x_check_property_data (value
);
4279 if (nelements
== -1)
4280 error ("Bad data in VALUE, must be number, string or cons");
4282 if (element_format
== 8)
4283 data
= (unsigned char *) xmalloc (nelements
);
4284 else if (element_format
== 16)
4285 data
= (unsigned char *) xmalloc (nelements
*2);
4286 else /* format == 32 */
4287 /* The man page for XChangeProperty:
4288 "If the specified format is 32, the property data must be a
4290 This applies even if long is more than 64 bits. The X library
4291 converts to 32 bits before sending to the X server. */
4292 data
= (unsigned char *) xmalloc (nelements
* sizeof(long));
4294 x_fill_property_data (FRAME_X_DISPLAY (f
), value
, data
, element_format
);
4298 CHECK_STRING (value
);
4299 data
= SDATA (value
);
4300 nelements
= SCHARS (value
);
4304 prop_atom
= XInternAtom (FRAME_X_DISPLAY (f
), SDATA (prop
), False
);
4307 CHECK_STRING (type
);
4308 target_type
= XInternAtom (FRAME_X_DISPLAY (f
), SDATA (type
), False
);
4311 if (! NILP (outer_p
)) w
= FRAME_OUTER_WINDOW (f
);
4312 else w
= FRAME_X_WINDOW (f
);
4314 XChangeProperty (FRAME_X_DISPLAY (f
), w
,
4315 prop_atom
, target_type
, element_format
, PropModeReplace
,
4318 if (CONSP (value
)) xfree (data
);
4320 /* Make sure the property is set when we return. */
4321 XFlush (FRAME_X_DISPLAY (f
));
4328 DEFUN ("x-delete-window-property", Fx_delete_window_property
,
4329 Sx_delete_window_property
, 1, 2, 0,
4330 doc
: /* Remove window property PROP from X window of FRAME.
4331 FRAME nil or omitted means use the selected frame. Value is PROP. */)
4333 Lisp_Object prop
, frame
;
4335 struct frame
*f
= check_x_frame (frame
);
4338 CHECK_STRING (prop
);
4340 prop_atom
= XInternAtom (FRAME_X_DISPLAY (f
), SDATA (prop
), False
);
4341 XDeleteProperty (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), prop_atom
);
4343 /* Make sure the property is removed when we return. */
4344 XFlush (FRAME_X_DISPLAY (f
));
4351 DEFUN ("x-window-property", Fx_window_property
, Sx_window_property
,
4353 doc
: /* Value is the value of window property PROP on FRAME.
4354 If FRAME is nil or omitted, use the selected frame.
4355 If TYPE is nil or omitted, get the property as a string. Otherwise TYPE
4356 is the name of the Atom that denotes the type expected.
4357 If SOURCE is non-nil, get the property on that window instead of from
4358 FRAME. The number 0 denotes the root window.
4359 If DELETE_P is non-nil, delete the property after retreiving it.
4360 If VECTOR_RET_P is non-nil, don't return a string but a vector of values.
4362 Value is nil if FRAME hasn't a property with name PROP or if PROP has
4363 no value of TYPE. */)
4364 (prop
, frame
, type
, source
, delete_p
, vector_ret_p
)
4365 Lisp_Object prop
, frame
, type
, source
, delete_p
, vector_ret_p
;
4367 struct frame
*f
= check_x_frame (frame
);
4370 Lisp_Object prop_value
= Qnil
;
4371 unsigned char *tmp_data
= NULL
;
4373 Atom target_type
= XA_STRING
;
4375 unsigned long actual_size
, bytes_remaining
;
4376 Window target_window
= FRAME_X_WINDOW (f
);
4377 struct gcpro gcpro1
;
4379 GCPRO1 (prop_value
);
4380 CHECK_STRING (prop
);
4382 if (! NILP (source
))
4384 if (NUMBERP (source
))
4386 if (FLOATP (source
))
4387 target_window
= (Window
) XFLOAT (source
);
4389 target_window
= XFASTINT (source
);
4391 if (target_window
== 0)
4392 target_window
= FRAME_X_DISPLAY_INFO (f
)->root_window
;
4394 else if (CONSP (source
))
4395 target_window
= cons_to_long (source
);
4401 if (strcmp ("AnyPropertyType", SDATA (type
)) == 0)
4402 target_type
= AnyPropertyType
;
4404 target_type
= XInternAtom (FRAME_X_DISPLAY (f
), SDATA (type
), False
);
4407 prop_atom
= XInternAtom (FRAME_X_DISPLAY (f
), SDATA (prop
), False
);
4408 rc
= XGetWindowProperty (FRAME_X_DISPLAY (f
), target_window
,
4409 prop_atom
, 0, 0, False
, target_type
,
4410 &actual_type
, &actual_format
, &actual_size
,
4411 &bytes_remaining
, &tmp_data
);
4414 int size
= bytes_remaining
;
4419 rc
= XGetWindowProperty (FRAME_X_DISPLAY (f
), target_window
,
4420 prop_atom
, 0, bytes_remaining
,
4421 ! NILP (delete_p
), target_type
,
4422 &actual_type
, &actual_format
,
4423 &actual_size
, &bytes_remaining
,
4425 if (rc
== Success
&& tmp_data
)
4427 /* The man page for XGetWindowProperty says:
4428 "If the returned format is 32, the returned data is represented
4429 as a long array and should be cast to that type to obtain the
4431 This applies even if long is more than 32 bits, the X library
4432 converts from 32 bit elements received from the X server to long
4433 and passes the long array to us. Thus, for that case bcopy can not
4434 be used. We convert to a 32 bit type here, because so much code
4437 The bytes and offsets passed to XGetWindowProperty refers to the
4438 property and those are indeed in 32 bit quantities if format is
4441 if (actual_format
== 32 && actual_format
< BITS_PER_LONG
)
4444 int *idata
= (int *) tmp_data
;
4445 long *ldata
= (long *) tmp_data
;
4447 for (i
= 0; i
< actual_size
; ++i
)
4448 idata
[i
] = (int) ldata
[i
];
4451 if (NILP (vector_ret_p
))
4452 prop_value
= make_string (tmp_data
, size
);
4454 prop_value
= x_property_data_to_lisp (f
,
4461 if (tmp_data
) XFree (tmp_data
);
4471 /***********************************************************************
4473 ***********************************************************************/
4475 /* If non-null, an asynchronous timer that, when it expires, displays
4476 an hourglass cursor on all frames. */
4478 static struct atimer
*hourglass_atimer
;
4480 /* Non-zero means an hourglass cursor is currently shown. */
4482 static int hourglass_shown_p
;
4484 /* Number of seconds to wait before displaying an hourglass cursor. */
4486 static Lisp_Object Vhourglass_delay
;
4488 /* Default number of seconds to wait before displaying an hourglass
4491 #define DEFAULT_HOURGLASS_DELAY 1
4493 /* Function prototypes. */
4495 static void show_hourglass
P_ ((struct atimer
*));
4496 static void hide_hourglass
P_ ((void));
4498 /* Return non-zero if houglass timer has been started or hourglass is shown. */
4501 hourglass_started ()
4503 return hourglass_shown_p
|| hourglass_atimer
!= NULL
;
4507 /* Cancel a currently active hourglass timer, and start a new one. */
4513 int secs
, usecs
= 0;
4515 cancel_hourglass ();
4517 if (INTEGERP (Vhourglass_delay
)
4518 && XINT (Vhourglass_delay
) > 0)
4519 secs
= XFASTINT (Vhourglass_delay
);
4520 else if (FLOATP (Vhourglass_delay
)
4521 && XFLOAT_DATA (Vhourglass_delay
) > 0)
4524 tem
= Ftruncate (Vhourglass_delay
, Qnil
);
4525 secs
= XFASTINT (tem
);
4526 usecs
= (XFLOAT_DATA (Vhourglass_delay
) - secs
) * 1000000;
4529 secs
= DEFAULT_HOURGLASS_DELAY
;
4531 EMACS_SET_SECS_USECS (delay
, secs
, usecs
);
4532 hourglass_atimer
= start_atimer (ATIMER_RELATIVE
, delay
,
4533 show_hourglass
, NULL
);
4537 /* Cancel the hourglass cursor timer if active, hide a busy cursor if
4543 if (hourglass_atimer
)
4545 cancel_atimer (hourglass_atimer
);
4546 hourglass_atimer
= NULL
;
4549 if (hourglass_shown_p
)
4554 /* Timer function of hourglass_atimer. TIMER is equal to
4557 Display an hourglass pointer on all frames by mapping the frames'
4558 hourglass_window. Set the hourglass_p flag in the frames'
4559 output_data.x structure to indicate that an hourglass cursor is
4560 shown on the frames. */
4563 show_hourglass (timer
)
4564 struct atimer
*timer
;
4566 /* The timer implementation will cancel this timer automatically
4567 after this function has run. Set hourglass_atimer to null
4568 so that we know the timer doesn't have to be canceled. */
4569 hourglass_atimer
= NULL
;
4571 if (!hourglass_shown_p
)
4573 Lisp_Object rest
, frame
;
4577 FOR_EACH_FRAME (rest
, frame
)
4579 struct frame
*f
= XFRAME (frame
);
4581 if (FRAME_LIVE_P (f
) && FRAME_X_P (f
) && FRAME_X_DISPLAY (f
))
4583 Display
*dpy
= FRAME_X_DISPLAY (f
);
4585 #ifdef USE_X_TOOLKIT
4586 if (f
->output_data
.x
->widget
)
4588 if (FRAME_OUTER_WINDOW (f
))
4591 f
->output_data
.x
->hourglass_p
= 1;
4593 if (!f
->output_data
.x
->hourglass_window
)
4595 unsigned long mask
= CWCursor
;
4596 XSetWindowAttributes attrs
;
4598 Window parent
= FRAME_X_WINDOW (f
);
4600 Window parent
= FRAME_OUTER_WINDOW (f
);
4602 attrs
.cursor
= f
->output_data
.x
->hourglass_cursor
;
4604 f
->output_data
.x
->hourglass_window
4605 = XCreateWindow (dpy
, parent
,
4606 0, 0, 32000, 32000, 0, 0,
4612 XMapRaised (dpy
, f
->output_data
.x
->hourglass_window
);
4618 hourglass_shown_p
= 1;
4624 /* Hide the hourglass pointer on all frames, if it is currently
4630 if (hourglass_shown_p
)
4632 Lisp_Object rest
, frame
;
4635 FOR_EACH_FRAME (rest
, frame
)
4637 struct frame
*f
= XFRAME (frame
);
4640 /* Watch out for newly created frames. */
4641 && f
->output_data
.x
->hourglass_window
)
4643 XUnmapWindow (FRAME_X_DISPLAY (f
),
4644 f
->output_data
.x
->hourglass_window
);
4645 /* Sync here because XTread_socket looks at the
4646 hourglass_p flag that is reset to zero below. */
4647 XSync (FRAME_X_DISPLAY (f
), False
);
4648 f
->output_data
.x
->hourglass_p
= 0;
4652 hourglass_shown_p
= 0;
4659 /***********************************************************************
4661 ***********************************************************************/
4663 static Lisp_Object x_create_tip_frame
P_ ((struct x_display_info
*,
4664 Lisp_Object
, Lisp_Object
));
4665 static void compute_tip_xy
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
,
4666 Lisp_Object
, int, int, int *, int *));
4668 /* The frame of a currently visible tooltip. */
4670 Lisp_Object tip_frame
;
4672 /* If non-nil, a timer started that hides the last tooltip when it
4675 Lisp_Object tip_timer
;
4678 /* If non-nil, a vector of 3 elements containing the last args
4679 with which x-show-tip was called. See there. */
4681 Lisp_Object last_show_tip_args
;
4683 /* Maximum size for tooltips; a cons (COLUMNS . ROWS). */
4685 Lisp_Object Vx_max_tooltip_size
;
4689 unwind_create_tip_frame (frame
)
4692 Lisp_Object deleted
;
4694 deleted
= unwind_create_frame (frame
);
4695 if (EQ (deleted
, Qt
))
4705 /* Create a frame for a tooltip on the display described by DPYINFO.
4706 PARMS is a list of frame parameters. TEXT is the string to
4707 display in the tip frame. Value is the frame.
4709 Note that functions called here, esp. x_default_parameter can
4710 signal errors, for instance when a specified color name is
4711 undefined. We have to make sure that we're in a consistent state
4712 when this happens. */
4715 x_create_tip_frame (dpyinfo
, parms
, text
)
4716 struct x_display_info
*dpyinfo
;
4717 Lisp_Object parms
, text
;
4720 Lisp_Object frame
, tem
;
4722 long window_prompting
= 0;
4724 int count
= SPECPDL_INDEX ();
4725 struct gcpro gcpro1
, gcpro2
, gcpro3
;
4726 int face_change_count_before
= face_change_count
;
4728 struct buffer
*old_buffer
;
4732 if (!dpyinfo
->terminal
->name
)
4733 error ("Terminal is not live, can't create new frames on it");
4735 parms
= Fcopy_alist (parms
);
4737 /* Get the name of the frame to use for resource lookup. */
4738 name
= x_get_arg (dpyinfo
, parms
, Qname
, "name", "Name", RES_TYPE_STRING
);
4740 && !EQ (name
, Qunbound
)
4742 error ("Invalid frame name--not a string or nil");
4745 GCPRO3 (parms
, name
, frame
);
4747 XSETFRAME (frame
, f
);
4749 buffer
= Fget_buffer_create (build_string (" *tip*"));
4750 Fset_window_buffer (FRAME_ROOT_WINDOW (f
), buffer
, Qnil
);
4751 old_buffer
= current_buffer
;
4752 set_buffer_internal_1 (XBUFFER (buffer
));
4753 current_buffer
->truncate_lines
= Qnil
;
4754 specbind (Qinhibit_read_only
, Qt
);
4755 specbind (Qinhibit_modification_hooks
, Qt
);
4758 set_buffer_internal_1 (old_buffer
);
4760 FRAME_CAN_HAVE_SCROLL_BARS (f
) = 0;
4761 record_unwind_protect (unwind_create_tip_frame
, frame
);
4763 f
->terminal
= dpyinfo
->terminal
;
4764 f
->terminal
->reference_count
++;
4766 /* By setting the output method, we're essentially saying that
4767 the frame is live, as per FRAME_LIVE_P. If we get a signal
4768 from this point on, x_destroy_window might screw up reference
4770 f
->output_method
= output_x_window
;
4771 f
->output_data
.x
= (struct x_output
*) xmalloc (sizeof (struct x_output
));
4772 bzero (f
->output_data
.x
, sizeof (struct x_output
));
4773 f
->output_data
.x
->icon_bitmap
= -1;
4774 FRAME_FONTSET (f
) = -1;
4775 f
->output_data
.x
->scroll_bar_foreground_pixel
= -1;
4776 f
->output_data
.x
->scroll_bar_background_pixel
= -1;
4777 #ifdef USE_TOOLKIT_SCROLL_BARS
4778 f
->output_data
.x
->scroll_bar_top_shadow_pixel
= -1;
4779 f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
= -1;
4780 #endif /* USE_TOOLKIT_SCROLL_BARS */
4781 f
->icon_name
= Qnil
;
4782 FRAME_X_DISPLAY_INFO (f
) = dpyinfo
;
4784 image_cache_refcount
= FRAME_IMAGE_CACHE (f
)->refcount
;
4785 dpyinfo_refcount
= dpyinfo
->reference_count
;
4786 #endif /* GLYPH_DEBUG */
4787 f
->output_data
.x
->parent_desc
= FRAME_X_DISPLAY_INFO (f
)->root_window
;
4788 f
->output_data
.x
->explicit_parent
= 0;
4790 /* These colors will be set anyway later, but it's important
4791 to get the color reference counts right, so initialize them! */
4794 struct gcpro gcpro1
;
4796 /* Function x_decode_color can signal an error. Make
4797 sure to initialize color slots so that we won't try
4798 to free colors we haven't allocated. */
4799 FRAME_FOREGROUND_PIXEL (f
) = -1;
4800 FRAME_BACKGROUND_PIXEL (f
) = -1;
4801 f
->output_data
.x
->cursor_pixel
= -1;
4802 f
->output_data
.x
->cursor_foreground_pixel
= -1;
4803 f
->output_data
.x
->border_pixel
= -1;
4804 f
->output_data
.x
->mouse_pixel
= -1;
4806 black
= build_string ("black");
4808 FRAME_FOREGROUND_PIXEL (f
)
4809 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
4810 FRAME_BACKGROUND_PIXEL (f
)
4811 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
4812 f
->output_data
.x
->cursor_pixel
4813 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
4814 f
->output_data
.x
->cursor_foreground_pixel
4815 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
4816 f
->output_data
.x
->border_pixel
4817 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
4818 f
->output_data
.x
->mouse_pixel
4819 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
4823 /* Set the name; the functions to which we pass f expect the name to
4825 if (EQ (name
, Qunbound
) || NILP (name
))
4827 f
->name
= build_string (dpyinfo
->x_id_name
);
4828 f
->explicit_name
= 0;
4833 f
->explicit_name
= 1;
4834 /* use the frame's title when getting resources for this frame. */
4835 specbind (Qx_resource_name
, name
);
4838 f
->resx
= dpyinfo
->resx
;
4839 f
->resy
= dpyinfo
->resy
;
4841 register_font_driver (&xfont_driver
, f
);
4842 #ifdef HAVE_FREETYPE
4844 register_font_driver (&xftfont_driver
, f
);
4845 #else /* not HAVE_XFT */
4846 register_font_driver (&ftxfont_driver
, f
);
4847 #endif /* not HAVE_XFT */
4848 #endif /* HAVE_FREETYPE */
4850 x_default_parameter (f
, parms
, Qfont_backend
, Qnil
,
4851 "fontBackend", "FontBackend", RES_TYPE_STRING
);
4853 /* Extract the window parameters from the supplied values that are
4854 needed to determine window geometry. */
4855 x_default_font_parameter (f
, parms
);
4857 x_default_parameter (f
, parms
, Qborder_width
, make_number (2),
4858 "borderWidth", "BorderWidth", RES_TYPE_NUMBER
);
4860 /* This defaults to 2 in order to match xterm. We recognize either
4861 internalBorderWidth or internalBorder (which is what xterm calls
4863 if (NILP (Fassq (Qinternal_border_width
, parms
)))
4867 value
= x_get_arg (dpyinfo
, parms
, Qinternal_border_width
,
4868 "internalBorder", "internalBorder", RES_TYPE_NUMBER
);
4869 if (! EQ (value
, Qunbound
))
4870 parms
= Fcons (Fcons (Qinternal_border_width
, value
),
4874 x_default_parameter (f
, parms
, Qinternal_border_width
, make_number (1),
4875 "internalBorderWidth", "internalBorderWidth",
4878 /* Also do the stuff which must be set before the window exists. */
4879 x_default_parameter (f
, parms
, Qforeground_color
, build_string ("black"),
4880 "foreground", "Foreground", RES_TYPE_STRING
);
4881 x_default_parameter (f
, parms
, Qbackground_color
, build_string ("white"),
4882 "background", "Background", RES_TYPE_STRING
);
4883 x_default_parameter (f
, parms
, Qmouse_color
, build_string ("black"),
4884 "pointerColor", "Foreground", RES_TYPE_STRING
);
4885 x_default_parameter (f
, parms
, Qcursor_color
, build_string ("black"),
4886 "cursorColor", "Foreground", RES_TYPE_STRING
);
4887 x_default_parameter (f
, parms
, Qborder_color
, build_string ("black"),
4888 "borderColor", "BorderColor", RES_TYPE_STRING
);
4890 /* Init faces before x_default_parameter is called for scroll-bar
4891 parameters because that function calls x_set_scroll_bar_width,
4892 which calls change_frame_size, which calls Fset_window_buffer,
4893 which runs hooks, which call Fvertical_motion. At the end, we
4894 end up in init_iterator with a null face cache, which should not
4896 init_frame_faces (f
);
4898 f
->output_data
.x
->parent_desc
= FRAME_X_DISPLAY_INFO (f
)->root_window
;
4900 window_prompting
= x_figure_window_size (f
, parms
, 0);
4903 XSetWindowAttributes attrs
;
4907 mask
= CWBackPixel
| CWOverrideRedirect
| CWEventMask
;
4908 if (DoesSaveUnders (dpyinfo
->screen
))
4909 mask
|= CWSaveUnder
;
4911 /* Window managers look at the override-redirect flag to determine
4912 whether or net to give windows a decoration (Xlib spec, chapter
4914 attrs
.override_redirect
= True
;
4915 attrs
.save_under
= True
;
4916 attrs
.background_pixel
= FRAME_BACKGROUND_PIXEL (f
);
4917 /* Arrange for getting MapNotify and UnmapNotify events. */
4918 attrs
.event_mask
= StructureNotifyMask
;
4920 = FRAME_X_WINDOW (f
)
4921 = XCreateWindow (FRAME_X_DISPLAY (f
),
4922 FRAME_X_DISPLAY_INFO (f
)->root_window
,
4923 /* x, y, width, height */
4927 CopyFromParent
, InputOutput
, CopyFromParent
,
4934 x_default_parameter (f
, parms
, Qauto_raise
, Qnil
,
4935 "autoRaise", "AutoRaiseLower", RES_TYPE_BOOLEAN
);
4936 x_default_parameter (f
, parms
, Qauto_lower
, Qnil
,
4937 "autoLower", "AutoRaiseLower", RES_TYPE_BOOLEAN
);
4938 x_default_parameter (f
, parms
, Qcursor_type
, Qbox
,
4939 "cursorType", "CursorType", RES_TYPE_SYMBOL
);
4941 /* Dimensions, especially FRAME_LINES (f), must be done via change_frame_size.
4942 Change will not be effected unless different from the current
4944 width
= FRAME_COLS (f
);
4945 height
= FRAME_LINES (f
);
4946 SET_FRAME_COLS (f
, 0);
4947 FRAME_LINES (f
) = 0;
4948 change_frame_size (f
, height
, width
, 1, 0, 0);
4950 /* Add `tooltip' frame parameter's default value. */
4951 if (NILP (Fframe_parameter (frame
, intern ("tooltip"))))
4952 Fmodify_frame_parameters (frame
, Fcons (Fcons (intern ("tooltip"), Qt
),
4955 /* FIXME - can this be done in a similar way to normal frames?
4956 http://lists.gnu.org/archive/html/emacs-devel/2007-10/msg00641.html */
4958 /* Set the `display-type' frame parameter before setting up faces. */
4960 Lisp_Object disptype
;
4962 if (FRAME_X_DISPLAY_INFO (f
)->n_planes
== 1)
4963 disptype
= intern ("mono");
4964 else if (FRAME_X_DISPLAY_INFO (f
)->visual
->class == GrayScale
4965 || FRAME_X_DISPLAY_INFO (f
)->visual
->class == StaticGray
)
4966 disptype
= intern ("grayscale");
4968 disptype
= intern ("color");
4970 if (NILP (Fframe_parameter (frame
, Qdisplay_type
)))
4971 Fmodify_frame_parameters (frame
, Fcons (Fcons (Qdisplay_type
, disptype
),
4975 /* Set up faces after all frame parameters are known. This call
4976 also merges in face attributes specified for new frames.
4978 Frame parameters may be changed if .Xdefaults contains
4979 specifications for the default font. For example, if there is an
4980 `Emacs.default.attributeBackground: pink', the `background-color'
4981 attribute of the frame get's set, which let's the internal border
4982 of the tooltip frame appear in pink. Prevent this. */
4984 Lisp_Object bg
= Fframe_parameter (frame
, Qbackground_color
);
4986 /* Set tip_frame here, so that */
4988 call1 (Qface_set_after_frame_default
, frame
);
4990 if (!EQ (bg
, Fframe_parameter (frame
, Qbackground_color
)))
4991 Fmodify_frame_parameters (frame
, Fcons (Fcons (Qbackground_color
, bg
),
4999 /* It is now ok to make the frame official even if we get an error
5000 below. And the frame needs to be on Vframe_list or making it
5001 visible won't work. */
5002 Vframe_list
= Fcons (frame
, Vframe_list
);
5004 /* Now that the frame is official, it counts as a reference to
5006 FRAME_X_DISPLAY_INFO (f
)->reference_count
++;
5008 /* Setting attributes of faces of the tooltip frame from resources
5009 and similar will increment face_change_count, which leads to the
5010 clearing of all current matrices. Since this isn't necessary
5011 here, avoid it by resetting face_change_count to the value it
5012 had before we created the tip frame. */
5013 face_change_count
= face_change_count_before
;
5015 /* Discard the unwind_protect. */
5016 return unbind_to (count
, frame
);
5020 /* Compute where to display tip frame F. PARMS is the list of frame
5021 parameters for F. DX and DY are specified offsets from the current
5022 location of the mouse. WIDTH and HEIGHT are the width and height
5023 of the tooltip. Return coordinates relative to the root window of
5024 the display in *ROOT_X, and *ROOT_Y. */
5027 compute_tip_xy (f
, parms
, dx
, dy
, width
, height
, root_x
, root_y
)
5029 Lisp_Object parms
, dx
, dy
;
5031 int *root_x
, *root_y
;
5033 Lisp_Object left
, top
;
5038 /* User-specified position? */
5039 left
= Fcdr (Fassq (Qleft
, parms
));
5040 top
= Fcdr (Fassq (Qtop
, parms
));
5042 /* Move the tooltip window where the mouse pointer is. Resize and
5044 if (!INTEGERP (left
) || !INTEGERP (top
))
5047 XQueryPointer (FRAME_X_DISPLAY (f
), FRAME_X_DISPLAY_INFO (f
)->root_window
,
5048 &root
, &child
, root_x
, root_y
, &win_x
, &win_y
, &pmask
);
5053 *root_y
= XINT (top
);
5054 else if (*root_y
+ XINT (dy
) <= 0)
5055 *root_y
= 0; /* Can happen for negative dy */
5056 else if (*root_y
+ XINT (dy
) + height
<= FRAME_X_DISPLAY_INFO (f
)->height
)
5057 /* It fits below the pointer */
5058 *root_y
+= XINT (dy
);
5059 else if (height
+ XINT (dy
) <= *root_y
)
5060 /* It fits above the pointer. */
5061 *root_y
-= height
+ XINT (dy
);
5063 /* Put it on the top. */
5066 if (INTEGERP (left
))
5067 *root_x
= XINT (left
);
5068 else if (*root_x
+ XINT (dx
) <= 0)
5069 *root_x
= 0; /* Can happen for negative dx */
5070 else if (*root_x
+ XINT (dx
) + width
<= FRAME_X_DISPLAY_INFO (f
)->width
)
5071 /* It fits to the right of the pointer. */
5072 *root_x
+= XINT (dx
);
5073 else if (width
+ XINT (dx
) <= *root_x
)
5074 /* It fits to the left of the pointer. */
5075 *root_x
-= width
+ XINT (dx
);
5077 /* Put it left-justified on the screen--it ought to fit that way. */
5082 DEFUN ("x-show-tip", Fx_show_tip
, Sx_show_tip
, 1, 6, 0,
5083 doc
: /* Show STRING in a "tooltip" window on frame FRAME.
5084 A tooltip window is a small X window displaying a string.
5086 This is an internal function; Lisp code should call `tooltip-show'.
5088 FRAME nil or omitted means use the selected frame.
5090 PARMS is an optional list of frame parameters which can be used to
5091 change the tooltip's appearance.
5093 Automatically hide the tooltip after TIMEOUT seconds. TIMEOUT nil
5094 means use the default timeout of 5 seconds.
5096 If the list of frame parameters PARAMS contains a `left' parameters,
5097 the tooltip is displayed at that x-position. Otherwise it is
5098 displayed at the mouse position, with offset DX added (default is 5 if
5099 DX isn't specified). Likewise for the y-position; if a `top' frame
5100 parameter is specified, it determines the y-position of the tooltip
5101 window, otherwise it is displayed at the mouse position, with offset
5102 DY added (default is -10).
5104 A tooltip's maximum size is specified by `x-max-tooltip-size'.
5105 Text larger than the specified size is clipped. */)
5106 (string
, frame
, parms
, timeout
, dx
, dy
)
5107 Lisp_Object string
, frame
, parms
, timeout
, dx
, dy
;
5112 struct buffer
*old_buffer
;
5113 struct text_pos pos
;
5114 int i
, width
, height
;
5115 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
5116 int old_windows_or_buffers_changed
= windows_or_buffers_changed
;
5117 int count
= SPECPDL_INDEX ();
5119 specbind (Qinhibit_redisplay
, Qt
);
5121 GCPRO4 (string
, parms
, frame
, timeout
);
5123 CHECK_STRING (string
);
5124 if (SCHARS (string
) == 0)
5125 string
= make_unibyte_string (" ", 1);
5127 f
= check_x_frame (frame
);
5129 timeout
= make_number (5);
5131 CHECK_NATNUM (timeout
);
5134 dx
= make_number (5);
5139 dy
= make_number (-10);
5143 if (NILP (last_show_tip_args
))
5144 last_show_tip_args
= Fmake_vector (make_number (3), Qnil
);
5146 if (!NILP (tip_frame
))
5148 Lisp_Object last_string
= AREF (last_show_tip_args
, 0);
5149 Lisp_Object last_frame
= AREF (last_show_tip_args
, 1);
5150 Lisp_Object last_parms
= AREF (last_show_tip_args
, 2);
5152 if (EQ (frame
, last_frame
)
5153 && !NILP (Fequal (last_string
, string
))
5154 && !NILP (Fequal (last_parms
, parms
)))
5156 struct frame
*f
= XFRAME (tip_frame
);
5158 /* Only DX and DY have changed. */
5159 if (!NILP (tip_timer
))
5161 Lisp_Object timer
= tip_timer
;
5163 call1 (Qcancel_timer
, timer
);
5167 compute_tip_xy (f
, parms
, dx
, dy
, FRAME_PIXEL_WIDTH (f
),
5168 FRAME_PIXEL_HEIGHT (f
), &root_x
, &root_y
);
5169 XMoveWindow (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
5176 /* Hide a previous tip, if any. */
5179 ASET (last_show_tip_args
, 0, string
);
5180 ASET (last_show_tip_args
, 1, frame
);
5181 ASET (last_show_tip_args
, 2, parms
);
5183 /* Add default values to frame parameters. */
5184 if (NILP (Fassq (Qname
, parms
)))
5185 parms
= Fcons (Fcons (Qname
, build_string ("tooltip")), parms
);
5186 if (NILP (Fassq (Qinternal_border_width
, parms
)))
5187 parms
= Fcons (Fcons (Qinternal_border_width
, make_number (3)), parms
);
5188 if (NILP (Fassq (Qborder_width
, parms
)))
5189 parms
= Fcons (Fcons (Qborder_width
, make_number (1)), parms
);
5190 if (NILP (Fassq (Qborder_color
, parms
)))
5191 parms
= Fcons (Fcons (Qborder_color
, build_string ("lightyellow")), parms
);
5192 if (NILP (Fassq (Qbackground_color
, parms
)))
5193 parms
= Fcons (Fcons (Qbackground_color
, build_string ("lightyellow")),
5196 /* Create a frame for the tooltip, and record it in the global
5197 variable tip_frame. */
5198 frame
= x_create_tip_frame (FRAME_X_DISPLAY_INFO (f
), parms
, string
);
5201 /* Set up the frame's root window. */
5202 w
= XWINDOW (FRAME_ROOT_WINDOW (f
));
5203 w
->left_col
= w
->top_line
= make_number (0);
5205 if (CONSP (Vx_max_tooltip_size
)
5206 && INTEGERP (XCAR (Vx_max_tooltip_size
))
5207 && XINT (XCAR (Vx_max_tooltip_size
)) > 0
5208 && INTEGERP (XCDR (Vx_max_tooltip_size
))
5209 && XINT (XCDR (Vx_max_tooltip_size
)) > 0)
5211 w
->total_cols
= XCAR (Vx_max_tooltip_size
);
5212 w
->total_lines
= XCDR (Vx_max_tooltip_size
);
5216 w
->total_cols
= make_number (80);
5217 w
->total_lines
= make_number (40);
5220 FRAME_TOTAL_COLS (f
) = XINT (w
->total_cols
);
5222 w
->pseudo_window_p
= 1;
5224 /* Display the tooltip text in a temporary buffer. */
5225 old_buffer
= current_buffer
;
5226 set_buffer_internal_1 (XBUFFER (XWINDOW (FRAME_ROOT_WINDOW (f
))->buffer
));
5227 current_buffer
->truncate_lines
= Qnil
;
5228 clear_glyph_matrix (w
->desired_matrix
);
5229 clear_glyph_matrix (w
->current_matrix
);
5230 SET_TEXT_POS (pos
, BEGV
, BEGV_BYTE
);
5231 try_window (FRAME_ROOT_WINDOW (f
), pos
, 0);
5233 /* Compute width and height of the tooltip. */
5235 for (i
= 0; i
< w
->desired_matrix
->nrows
; ++i
)
5237 struct glyph_row
*row
= &w
->desired_matrix
->rows
[i
];
5241 /* Stop at the first empty row at the end. */
5242 if (!row
->enabled_p
|| !row
->displays_text_p
)
5245 /* Let the row go over the full width of the frame. */
5246 row
->full_width_p
= 1;
5248 /* There's a glyph at the end of rows that is used to place
5249 the cursor there. Don't include the width of this glyph. */
5250 if (row
->used
[TEXT_AREA
])
5252 last
= &row
->glyphs
[TEXT_AREA
][row
->used
[TEXT_AREA
] - 1];
5253 row_width
= row
->pixel_width
- last
->pixel_width
;
5256 row_width
= row
->pixel_width
;
5258 height
+= row
->height
;
5259 width
= max (width
, row_width
);
5262 /* Add the frame's internal border to the width and height the X
5263 window should have. */
5264 height
+= 2 * FRAME_INTERNAL_BORDER_WIDTH (f
);
5265 width
+= 2 * FRAME_INTERNAL_BORDER_WIDTH (f
);
5267 /* Move the tooltip window where the mouse pointer is. Resize and
5269 compute_tip_xy (f
, parms
, dx
, dy
, width
, height
, &root_x
, &root_y
);
5272 XMoveResizeWindow (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
5273 root_x
, root_y
, width
, height
);
5274 XMapRaised (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
));
5277 /* Draw into the window. */
5278 w
->must_be_updated_p
= 1;
5279 update_single_window (w
, 1);
5281 /* Restore original current buffer. */
5282 set_buffer_internal_1 (old_buffer
);
5283 windows_or_buffers_changed
= old_windows_or_buffers_changed
;
5286 /* Let the tip disappear after timeout seconds. */
5287 tip_timer
= call3 (intern ("run-at-time"), timeout
, Qnil
,
5288 intern ("x-hide-tip"));
5291 return unbind_to (count
, Qnil
);
5295 DEFUN ("x-hide-tip", Fx_hide_tip
, Sx_hide_tip
, 0, 0, 0,
5296 doc
: /* Hide the current tooltip window, if there is any.
5297 Value is t if tooltip was open, nil otherwise. */)
5301 Lisp_Object deleted
, frame
, timer
;
5302 struct gcpro gcpro1
, gcpro2
;
5304 /* Return quickly if nothing to do. */
5305 if (NILP (tip_timer
) && NILP (tip_frame
))
5310 GCPRO2 (frame
, timer
);
5311 tip_frame
= tip_timer
= deleted
= Qnil
;
5313 count
= SPECPDL_INDEX ();
5314 specbind (Qinhibit_redisplay
, Qt
);
5315 specbind (Qinhibit_quit
, Qt
);
5318 call1 (Qcancel_timer
, timer
);
5322 Fdelete_frame (frame
, Qnil
);
5326 /* Bloodcurdling hack alert: The Lucid menu bar widget's
5327 redisplay procedure is not called when a tip frame over menu
5328 items is unmapped. Redisplay the menu manually... */
5330 struct frame
*f
= SELECTED_FRAME ();
5331 Widget w
= f
->output_data
.x
->menubar_widget
;
5332 extern void xlwmenu_redisplay
P_ ((Widget
));
5334 if (!DoesSaveUnders (FRAME_X_DISPLAY_INFO (f
)->screen
)
5338 xlwmenu_redisplay (w
);
5342 #endif /* USE_LUCID */
5346 return unbind_to (count
, deleted
);
5351 /***********************************************************************
5352 File selection dialog
5353 ***********************************************************************/
5355 DEFUN ("x-uses-old-gtk-dialog", Fx_uses_old_gtk_dialog
,
5356 Sx_uses_old_gtk_dialog
,
5358 doc
: /* Return t if the old Gtk+ file selection dialog is used. */)
5362 extern int use_dialog_box
;
5363 extern int use_file_dialog
;
5368 && xg_uses_old_file_dialog ())
5376 /* Callback for "OK" and "Cancel" on file selection dialog. */
5379 file_dialog_cb (widget
, client_data
, call_data
)
5381 XtPointer call_data
, client_data
;
5383 int *result
= (int *) client_data
;
5384 XmAnyCallbackStruct
*cb
= (XmAnyCallbackStruct
*) call_data
;
5385 *result
= cb
->reason
;
5389 /* Callback for unmapping a file selection dialog. This is used to
5390 capture the case where a dialog is closed via a window manager's
5391 closer button, for example. Using a XmNdestroyCallback didn't work
5395 file_dialog_unmap_cb (widget
, client_data
, call_data
)
5397 XtPointer call_data
, client_data
;
5399 int *result
= (int *) client_data
;
5400 *result
= XmCR_CANCEL
;
5404 clean_up_file_dialog (arg
)
5407 struct Lisp_Save_Value
*p
= XSAVE_VALUE (arg
);
5408 Widget dialog
= (Widget
) p
->pointer
;
5412 XtUnmanageChild (dialog
);
5413 XtDestroyWidget (dialog
);
5414 x_menu_set_in_use (0);
5421 DEFUN ("x-file-dialog", Fx_file_dialog
, Sx_file_dialog
, 2, 5, 0,
5422 doc
: /* Read file name, prompting with PROMPT in directory DIR.
5423 Use a file selection dialog. Select DEFAULT-FILENAME in the dialog's file
5424 selection box, if specified. If MUSTMATCH is non-nil, the returned file
5425 or directory must exist. ONLY-DIR-P is ignored." */)
5426 (prompt
, dir
, default_filename
, mustmatch
, only_dir_p
)
5427 Lisp_Object prompt
, dir
, default_filename
, mustmatch
, only_dir_p
;
5430 struct frame
*f
= SELECTED_FRAME ();
5431 Lisp_Object file
= Qnil
;
5432 Lisp_Object decoded_file
;
5433 Widget dialog
, text
, help
;
5436 extern XtAppContext Xt_app_con
;
5437 XmString dir_xmstring
, pattern_xmstring
;
5438 int count
= SPECPDL_INDEX ();
5439 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
);
5456 /* Create the dialog with PROMPT as title, using DIR as initial
5457 directory and using "*" as pattern. */
5458 dir
= Fexpand_file_name (dir
, Qnil
);
5459 dir_xmstring
= XmStringCreateLocalized (SDATA (dir
));
5460 pattern_xmstring
= XmStringCreateLocalized ("*");
5462 XtSetArg (al
[ac
], XmNtitle
, SDATA (prompt
)); ++ac
;
5463 XtSetArg (al
[ac
], XmNdirectory
, dir_xmstring
); ++ac
;
5464 XtSetArg (al
[ac
], XmNpattern
, pattern_xmstring
); ++ac
;
5465 XtSetArg (al
[ac
], XmNresizePolicy
, XmRESIZE_GROW
); ++ac
;
5466 XtSetArg (al
[ac
], XmNdialogStyle
, XmDIALOG_APPLICATION_MODAL
); ++ac
;
5467 dialog
= XmCreateFileSelectionDialog (f
->output_data
.x
->widget
,
5469 XmStringFree (dir_xmstring
);
5470 XmStringFree (pattern_xmstring
);
5472 /* Add callbacks for OK and Cancel. */
5473 XtAddCallback (dialog
, XmNokCallback
, file_dialog_cb
,
5474 (XtPointer
) &result
);
5475 XtAddCallback (dialog
, XmNcancelCallback
, file_dialog_cb
,
5476 (XtPointer
) &result
);
5477 XtAddCallback (dialog
, XmNunmapCallback
, file_dialog_unmap_cb
,
5478 (XtPointer
) &result
);
5480 /* Remove the help button since we can't display help. */
5481 help
= XmFileSelectionBoxGetChild (dialog
, XmDIALOG_HELP_BUTTON
);
5482 XtUnmanageChild (help
);
5484 /* Mark OK button as default. */
5485 XtVaSetValues (XmFileSelectionBoxGetChild (dialog
, XmDIALOG_OK_BUTTON
),
5486 XmNshowAsDefault
, True
, NULL
);
5488 /* If MUSTMATCH is non-nil, disable the file entry field of the
5489 dialog, so that the user must select a file from the files list
5490 box. We can't remove it because we wouldn't have a way to get at
5491 the result file name, then. */
5492 text
= XmFileSelectionBoxGetChild (dialog
, XmDIALOG_TEXT
);
5493 if (!NILP (mustmatch
))
5496 label
= XmFileSelectionBoxGetChild (dialog
, XmDIALOG_SELECTION_LABEL
);
5497 XtSetSensitive (text
, False
);
5498 XtSetSensitive (label
, False
);
5501 /* Manage the dialog, so that list boxes get filled. */
5502 XtManageChild (dialog
);
5504 if (STRINGP (default_filename
))
5506 XmString default_xmstring
;
5507 Widget wtext
= XmFileSelectionBoxGetChild (dialog
, XmDIALOG_TEXT
);
5508 Widget list
= XmFileSelectionBoxGetChild (dialog
, XmDIALOG_LIST
);
5510 XmTextPosition last_pos
= XmTextFieldGetLastPosition (wtext
);
5511 XmTextFieldReplace (wtext
, 0, last_pos
,
5512 (SDATA (Ffile_name_nondirectory (default_filename
))));
5514 /* Select DEFAULT_FILENAME in the files list box. DEFAULT_FILENAME
5515 must include the path for this to work. */
5517 default_xmstring
= XmStringCreateLocalized (SDATA (default_filename
));
5519 if (XmListItemExists (list
, default_xmstring
))
5521 int item_pos
= XmListItemPos (list
, default_xmstring
);
5522 /* Select the item and scroll it into view. */
5523 XmListSelectPos (list
, item_pos
, True
);
5524 XmListSetPos (list
, item_pos
);
5527 XmStringFree (default_xmstring
);
5530 record_unwind_protect (clean_up_file_dialog
, make_save_value (dialog
, 0));
5532 /* Process events until the user presses Cancel or OK. */
5533 x_menu_set_in_use (1);
5538 x_menu_wait_for_event (0);
5539 XtAppNextEvent (Xt_app_con
, &event
);
5540 if (event
.type
== KeyPress
5541 && FRAME_X_DISPLAY (f
) == event
.xkey
.display
)
5543 KeySym keysym
= XLookupKeysym (&event
.xkey
, 0);
5545 /* Pop down on C-g. */
5546 if (keysym
== XK_g
&& (event
.xkey
.state
& ControlMask
) != 0)
5547 XtUnmanageChild (dialog
);
5550 (void) x_dispatch_event (&event
, FRAME_X_DISPLAY (f
));
5553 /* Get the result. */
5554 if (result
== XmCR_OK
)
5559 XtVaGetValues (dialog
, XmNtextString
, &text
, NULL
);
5560 XmStringGetLtoR (text
, XmFONTLIST_DEFAULT_TAG
, &data
);
5561 XmStringFree (text
);
5562 file
= build_string (data
);
5571 /* Make "Cancel" equivalent to C-g. */
5573 Fsignal (Qquit
, Qnil
);
5575 decoded_file
= DECODE_FILE (file
);
5577 return unbind_to (count
, decoded_file
);
5580 #endif /* USE_MOTIF */
5585 clean_up_dialog (arg
)
5588 x_menu_set_in_use (0);
5593 DEFUN ("x-file-dialog", Fx_file_dialog
, Sx_file_dialog
, 2, 5, 0,
5594 doc
: /* Read file name, prompting with PROMPT in directory DIR.
5595 Use a file selection dialog. Select DEFAULT-FILENAME in the dialog's file
5596 selection box, if specified. If MUSTMATCH is non-nil, the returned file
5597 or directory must exist. If ONLY-DIR-P is non-nil, the user can only select
5599 (prompt
, dir
, default_filename
, mustmatch
, only_dir_p
)
5600 Lisp_Object prompt
, dir
, default_filename
, mustmatch
, only_dir_p
;
5602 FRAME_PTR f
= SELECTED_FRAME ();
5604 Lisp_Object file
= Qnil
;
5605 Lisp_Object decoded_file
;
5606 int count
= SPECPDL_INDEX ();
5607 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
, gcpro5
, gcpro6
;
5612 GCPRO6 (prompt
, dir
, default_filename
, mustmatch
, only_dir_p
, file
);
5614 if (popup_activated ())
5615 error ("Trying to use a menu from within a menu-entry");
5617 CHECK_STRING (prompt
);
5620 /* Prevent redisplay. */
5621 specbind (Qinhibit_redisplay
, Qt
);
5622 record_unwind_protect (clean_up_dialog
, Qnil
);
5626 if (STRINGP (default_filename
))
5627 cdef_file
= SDATA (default_filename
);
5629 cdef_file
= SDATA (dir
);
5631 fn
= xg_get_file_name (f
, SDATA (prompt
), cdef_file
,
5633 ! NILP (only_dir_p
));
5637 file
= build_string (fn
);
5644 /* Make "Cancel" equivalent to C-g. */
5646 Fsignal (Qquit
, Qnil
);
5648 decoded_file
= DECODE_FILE (file
);
5650 return unbind_to (count
, decoded_file
);
5654 #ifdef HAVE_FREETYPE
5656 DEFUN ("x-select-font", Fx_select_font
, Sx_select_font
, 0, 2, 0,
5657 doc
: /* Read a font name using a GTK font selection dialog.
5658 Return a GTK-style font string corresponding to the selection.
5660 If FRAME is omitted or nil, it defaults to the selected frame. */)
5662 Lisp_Object frame
, ignored
;
5664 FRAME_PTR f
= check_x_frame (frame
);
5666 Lisp_Object default_font
, font
= Qnil
;
5667 int count
= SPECPDL_INDEX ();
5671 if (popup_activated ())
5672 error ("Trying to use a menu from within a menu-entry");
5674 /* Prevent redisplay. */
5675 specbind (Qinhibit_redisplay
, Qt
);
5676 record_unwind_protect (clean_up_dialog
, Qnil
);
5680 XSETFONT (default_font
, FRAME_FONT (f
));
5681 if (FONTP (default_font
))
5683 char *default_name
= alloca (256);
5684 if (font_unparse_gtkname (default_font
, f
, default_name
, 256) < 0)
5685 default_name
= NULL
;
5686 name
= xg_get_font_name (f
, default_name
);
5689 name
= xg_get_font_name (f
, NULL
);
5693 font
= build_string (name
);
5700 Fsignal (Qquit
, Qnil
);
5702 return unbind_to (count
, font
);
5704 #endif /* HAVE_FREETYPE */
5706 #endif /* USE_GTK */
5709 /***********************************************************************
5711 ***********************************************************************/
5713 #ifdef HAVE_XKBGETKEYBOARD
5714 #include <X11/XKBlib.h>
5715 #include <X11/keysym.h>
5718 DEFUN ("x-backspace-delete-keys-p", Fx_backspace_delete_keys_p
,
5719 Sx_backspace_delete_keys_p
, 0, 1, 0,
5720 doc
: /* Check if both Backspace and Delete keys are on the keyboard of FRAME.
5721 FRAME nil means use the selected frame.
5722 Value is t if we know that both keys are present, and are mapped to the
5723 usual X keysyms. Value is `lambda' if we cannot determine if both keys are
5724 present and mapped to the usual X keysyms. */)
5728 #ifdef HAVE_XKBGETKEYBOARD
5730 struct frame
*f
= check_x_frame (frame
);
5731 Display
*dpy
= FRAME_X_DISPLAY (f
);
5732 Lisp_Object have_keys
;
5733 int major
, minor
, op
, event
, error
;
5737 /* Check library version in case we're dynamically linked. */
5738 major
= XkbMajorVersion
;
5739 minor
= XkbMinorVersion
;
5740 if (!XkbLibraryVersion (&major
, &minor
))
5746 /* Check that the server supports XKB. */
5747 major
= XkbMajorVersion
;
5748 minor
= XkbMinorVersion
;
5749 if (!XkbQueryExtension (dpy
, &op
, &event
, &error
, &major
, &minor
))
5755 /* In this code we check that the keyboard has physical keys with names
5756 that start with BKSP (Backspace) and DELE (Delete), and that they
5757 generate keysym XK_BackSpace and XK_Delete respectively.
5758 This function is used to test if normal-erase-is-backspace should be
5760 An alternative approach would be to just check if XK_BackSpace and
5761 XK_Delete are mapped to any key. But if any of those are mapped to
5762 some non-intuitive key combination (Meta-Shift-Ctrl-whatever) and the
5763 user doesn't know about it, it is better to return false here.
5764 It is more obvious to the user what to do if she/he has two keys
5765 clearly marked with names/symbols and one key does something not
5766 expected (i.e. she/he then tries the other).
5767 The cases where Backspace/Delete is mapped to some other key combination
5768 are rare, and in those cases, normal-erase-is-backspace can be turned on
5772 kb
= XkbGetMap (dpy
, XkbAllMapComponentsMask
, XkbUseCoreKbd
);
5775 int delete_keycode
= 0, backspace_keycode
= 0, i
;
5777 if (XkbGetNames (dpy
, XkbAllNamesMask
, kb
) == Success
)
5779 for (i
= kb
->min_key_code
;
5780 (i
< kb
->max_key_code
5781 && (delete_keycode
== 0 || backspace_keycode
== 0));
5784 /* The XKB symbolic key names can be seen most easily in
5785 the PS file generated by `xkbprint -label name
5787 if (bcmp ("DELE", kb
->names
->keys
[i
].name
, 4) == 0)
5789 else if (bcmp ("BKSP", kb
->names
->keys
[i
].name
, 4) == 0)
5790 backspace_keycode
= i
;
5793 XkbFreeNames (kb
, 0, True
);
5796 XkbFreeClientMap (kb
, 0, True
);
5799 && backspace_keycode
5800 && XKeysymToKeycode (dpy
, XK_Delete
) == delete_keycode
5801 && XKeysymToKeycode (dpy
, XK_BackSpace
) == backspace_keycode
)
5806 #else /* not HAVE_XKBGETKEYBOARD */
5808 #endif /* not HAVE_XKBGETKEYBOARD */
5813 /***********************************************************************
5815 ***********************************************************************/
5817 /* Keep this list in the same order as frame_parms in frame.c.
5818 Use 0 for unsupported frame parameters. */
5820 frame_parm_handler x_frame_parm_handlers
[] =
5824 x_set_background_color
,
5830 x_set_foreground_color
,
5833 x_set_internal_border_width
,
5834 x_set_menu_bar_lines
,
5836 x_explicitly_set_name
,
5837 x_set_scroll_bar_width
,
5840 x_set_vertical_scroll_bars
,
5842 x_set_tool_bar_lines
,
5843 x_set_scroll_bar_foreground
,
5844 x_set_scroll_bar_background
,
5858 /* This is zero if not using X windows. */
5861 /* The section below is built by the lisp expression at the top of the file,
5862 just above where these variables are declared. */
5863 /*&&& init symbols here &&&*/
5864 Qnone
= intern ("none");
5866 Qsuppress_icon
= intern ("suppress-icon");
5867 staticpro (&Qsuppress_icon
);
5868 Qundefined_color
= intern ("undefined-color");
5869 staticpro (&Qundefined_color
);
5870 Qcompound_text
= intern ("compound-text");
5871 staticpro (&Qcompound_text
);
5872 Qcancel_timer
= intern ("cancel-timer");
5873 staticpro (&Qcancel_timer
);
5874 Qfont_param
= intern ("font-parameter");
5875 staticpro (&Qfont_param
);
5876 /* This is the end of symbol initialization. */
5878 /* Text property `display' should be nonsticky by default. */
5879 Vtext_property_default_nonsticky
5880 = Fcons (Fcons (Qdisplay
, Qt
), Vtext_property_default_nonsticky
);
5883 Fput (Qundefined_color
, Qerror_conditions
,
5884 Fcons (Qundefined_color
, Fcons (Qerror
, Qnil
)));
5885 Fput (Qundefined_color
, Qerror_message
,
5886 build_string ("Undefined color"));
5888 DEFVAR_LISP ("x-pointer-shape", &Vx_pointer_shape
,
5889 doc
: /* The shape of the pointer when over text.
5890 Changing the value does not affect existing frames
5891 unless you set the mouse color. */);
5892 Vx_pointer_shape
= Qnil
;
5894 #if 0 /* This doesn't really do anything. */
5895 DEFVAR_LISP ("x-nontext-pointer-shape", &Vx_nontext_pointer_shape
,
5896 doc
: /* The shape of the pointer when not over text.
5897 This variable takes effect when you create a new frame
5898 or when you set the mouse color. */);
5900 Vx_nontext_pointer_shape
= Qnil
;
5902 DEFVAR_LISP ("x-hourglass-pointer-shape", &Vx_hourglass_pointer_shape
,
5903 doc
: /* The shape of the pointer when Emacs is busy.
5904 This variable takes effect when you create a new frame
5905 or when you set the mouse color. */);
5906 Vx_hourglass_pointer_shape
= Qnil
;
5908 DEFVAR_BOOL ("display-hourglass", &display_hourglass_p
,
5909 doc
: /* Non-zero means Emacs displays an hourglass pointer on window systems. */);
5910 display_hourglass_p
= 1;
5912 DEFVAR_LISP ("hourglass-delay", &Vhourglass_delay
,
5913 doc
: /* *Seconds to wait before displaying an hourglass pointer.
5914 Value must be an integer or float. */);
5915 Vhourglass_delay
= make_number (DEFAULT_HOURGLASS_DELAY
);
5917 #if 0 /* This doesn't really do anything. */
5918 DEFVAR_LISP ("x-mode-pointer-shape", &Vx_mode_pointer_shape
,
5919 doc
: /* The shape of the pointer when over the mode line.
5920 This variable takes effect when you create a new frame
5921 or when you set the mouse color. */);
5923 Vx_mode_pointer_shape
= Qnil
;
5925 DEFVAR_LISP ("x-sensitive-text-pointer-shape",
5926 &Vx_sensitive_text_pointer_shape
,
5927 doc
: /* The shape of the pointer when over mouse-sensitive text.
5928 This variable takes effect when you create a new frame
5929 or when you set the mouse color. */);
5930 Vx_sensitive_text_pointer_shape
= Qnil
;
5932 DEFVAR_LISP ("x-window-horizontal-drag-cursor",
5933 &Vx_window_horizontal_drag_shape
,
5934 doc
: /* Pointer shape to use for indicating a window can be dragged horizontally.
5935 This variable takes effect when you create a new frame
5936 or when you set the mouse color. */);
5937 Vx_window_horizontal_drag_shape
= Qnil
;
5939 DEFVAR_LISP ("x-cursor-fore-pixel", &Vx_cursor_fore_pixel
,
5940 doc
: /* A string indicating the foreground color of the cursor box. */);
5941 Vx_cursor_fore_pixel
= Qnil
;
5943 DEFVAR_LISP ("x-max-tooltip-size", &Vx_max_tooltip_size
,
5944 doc
: /* Maximum size for tooltips. Value is a pair (COLUMNS . ROWS).
5945 Text larger than this is clipped. */);
5946 Vx_max_tooltip_size
= Fcons (make_number (80), make_number (40));
5948 DEFVAR_LISP ("x-no-window-manager", &Vx_no_window_manager
,
5949 doc
: /* Non-nil if no X window manager is in use.
5950 Emacs doesn't try to figure this out; this is always nil
5951 unless you set it to something else. */);
5952 /* We don't have any way to find this out, so set it to nil
5953 and maybe the user would like to set it to t. */
5954 Vx_no_window_manager
= Qnil
;
5956 DEFVAR_LISP ("x-pixel-size-width-font-regexp",
5957 &Vx_pixel_size_width_font_regexp
,
5958 doc
: /* Regexp matching a font name whose width is the same as `PIXEL_SIZE'.
5960 Since Emacs gets width of a font matching with this regexp from
5961 PIXEL_SIZE field of the name, font finding mechanism gets faster for
5962 such a font. This is especially effective for such large fonts as
5963 Chinese, Japanese, and Korean. */);
5964 Vx_pixel_size_width_font_regexp
= Qnil
;
5966 /* This is not ifdef:ed, so other builds than GTK can customize it. */
5967 DEFVAR_BOOL ("x-gtk-use-old-file-dialog", &x_gtk_use_old_file_dialog
,
5968 doc
: /* *Non-nil means prompt with the old GTK file selection dialog.
5969 If nil or if the file selection dialog is not available, the new GTK file
5970 chooser is used instead. To turn off all file dialogs set the
5971 variable `use-file-dialog'. */);
5972 x_gtk_use_old_file_dialog
= 0;
5974 DEFVAR_BOOL ("x-gtk-show-hidden-files", &x_gtk_show_hidden_files
,
5975 doc
: /* *If non-nil, the GTK file chooser will by default show hidden files.
5976 Note that this is just the default, there is a toggle button on the file
5977 chooser to show or not show hidden files on a case by case basis. */);
5978 x_gtk_show_hidden_files
= 0;
5980 DEFVAR_BOOL ("x-gtk-file-dialog-help-text", &x_gtk_file_dialog_help_text
,
5981 doc
: /* *If non-nil, the GTK file chooser will show additional help text.
5982 If more space for files in the file chooser dialog is wanted, set this to nil
5983 to turn the additional text off. */);
5984 x_gtk_file_dialog_help_text
= 1;
5986 DEFVAR_BOOL ("x-gtk-whole-detached-tool-bar", &x_gtk_whole_detached_tool_bar
,
5987 doc
: /* *If non-nil, a detached tool bar is shown in full.
5988 The default is to just show an arrow and pressing on that arrow shows
5989 the tool bar buttons. */);
5990 x_gtk_whole_detached_tool_bar
= 0;
5992 Fprovide (intern ("x"), Qnil
);
5994 #ifdef USE_X_TOOLKIT
5995 Fprovide (intern ("x-toolkit"), Qnil
);
5997 Fprovide (intern ("motif"), Qnil
);
5999 DEFVAR_LISP ("motif-version-string", &Vmotif_version_string
,
6000 doc
: /* Version info for LessTif/Motif. */);
6001 Vmotif_version_string
= build_string (XmVERSION_STRING
);
6002 #endif /* USE_MOTIF */
6003 #endif /* USE_X_TOOLKIT */
6006 /* Provide x-toolkit also for GTK. Internally GTK does not use Xt so it
6007 is not an X toolkit in that sense (USE_X_TOOLKIT is not defined).
6008 But for a user it is a toolkit for X, and indeed, configure
6009 accepts --with-x-toolkit=gtk. */
6010 Fprovide (intern ("x-toolkit"), Qnil
);
6011 Fprovide (intern ("gtk"), Qnil
);
6013 DEFVAR_LISP ("gtk-version-string", &Vgtk_version_string
,
6014 doc
: /* Version info for GTK+. */);
6016 char gtk_version
[40];
6017 g_snprintf (gtk_version
, sizeof (gtk_version
), "%u.%u.%u",
6018 GTK_MAJOR_VERSION
, GTK_MINOR_VERSION
, GTK_MICRO_VERSION
);
6019 Vgtk_version_string
= build_string (gtk_version
);
6021 #endif /* USE_GTK */
6023 /* X window properties. */
6024 defsubr (&Sx_change_window_property
);
6025 defsubr (&Sx_delete_window_property
);
6026 defsubr (&Sx_window_property
);
6028 defsubr (&Sxw_display_color_p
);
6029 defsubr (&Sx_display_grayscale_p
);
6030 defsubr (&Sxw_color_defined_p
);
6031 defsubr (&Sxw_color_values
);
6032 defsubr (&Sx_server_max_request_size
);
6033 defsubr (&Sx_server_vendor
);
6034 defsubr (&Sx_server_version
);
6035 defsubr (&Sx_display_pixel_width
);
6036 defsubr (&Sx_display_pixel_height
);
6037 defsubr (&Sx_display_mm_width
);
6038 defsubr (&Sx_display_mm_height
);
6039 defsubr (&Sx_display_screens
);
6040 defsubr (&Sx_display_planes
);
6041 defsubr (&Sx_display_color_cells
);
6042 defsubr (&Sx_display_visual_class
);
6043 defsubr (&Sx_display_backing_store
);
6044 defsubr (&Sx_display_save_under
);
6045 defsubr (&Sx_create_frame
);
6046 defsubr (&Sx_open_connection
);
6047 defsubr (&Sx_close_connection
);
6048 defsubr (&Sx_display_list
);
6049 defsubr (&Sx_synchronize
);
6050 defsubr (&Sx_focus_frame
);
6051 defsubr (&Sx_backspace_delete_keys_p
);
6053 /* Setting callback functions for fontset handler. */
6054 check_window_system_func
= check_x
;
6056 hourglass_atimer
= NULL
;
6057 hourglass_shown_p
= 0;
6059 defsubr (&Sx_show_tip
);
6060 defsubr (&Sx_hide_tip
);
6062 staticpro (&tip_timer
);
6064 staticpro (&tip_frame
);
6066 last_show_tip_args
= Qnil
;
6067 staticpro (&last_show_tip_args
);
6069 defsubr (&Sx_uses_old_gtk_dialog
);
6070 #if defined (USE_MOTIF) || defined (USE_GTK)
6071 defsubr (&Sx_file_dialog
);
6075 defsubr (&Sx_select_font
);
6079 #endif /* HAVE_X_WINDOWS */
6081 /* arch-tag: 55040d02-5485-4d58-8b22-95a7a05f3288
6082 (do not change this comment) */