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, 2009
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/>. */
31 /* This makes the fields of a Display accessible, in Xlib header files. */
33 #define XLIB_ILLEGAL_ACCESS
40 #include "intervals.h"
41 #include "dispextern.h"
43 #include "blockinput.h"
45 #include "character.h"
50 #include "termhooks.h"
58 #include <sys/types.h>
61 #if 1 /* Used to be #ifdef EMACS_BITMAP_FILES, but this should always work. */
62 #include "bitmaps/gray.xbm"
64 #include <X11/bitmaps/gray>
67 #include "xsettings.h"
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 #if !defined(NO_EDITRES)
106 extern void _XEditResCheckMessages ();
107 #endif /* not defined NO_EDITRES */
109 /* Unique id counter for widgets created by the Lucid Widget Library. */
111 extern LWLIB_ID widget_id_tick
;
114 /* This is part of a kludge--see lwlib/xlwmenu.c. */
115 extern XFontStruct
*xlwmenu_default_font
;
118 extern void free_frame_menubar ();
119 extern double atof ();
123 /* LessTif/Motif version info. */
125 static Lisp_Object Vmotif_version_string
;
127 #endif /* USE_MOTIF */
129 #endif /* USE_X_TOOLKIT */
133 /* GTK+ version info */
135 static Lisp_Object Vgtk_version_string
;
139 #define MAXREQUEST(dpy) (XMaxRequestSize (dpy))
141 /* The gray bitmap `bitmaps/gray'. This is done because xterm.c uses
142 it, and including `bitmaps/gray' more than once is a problem when
143 config.h defines `static' as an empty replacement string. */
145 int gray_bitmap_width
= gray_width
;
146 int gray_bitmap_height
= gray_height
;
147 char *gray_bitmap_bits
= gray_bits
;
149 /* Non-zero means prompt with the old GTK file selection dialog. */
151 int x_gtk_use_old_file_dialog
;
153 /* If non-zero, by default show hidden files in the GTK file chooser. */
155 int x_gtk_show_hidden_files
;
157 /* If non-zero, don't show additional help text in the GTK file chooser. */
159 int x_gtk_file_dialog_help_text
;
161 /* If non-zero, don't collapse to tool bar when it is detached. */
163 int x_gtk_whole_detached_tool_bar
;
165 /* The background and shape of the mouse pointer, and shape when not
166 over text or in the modeline. */
168 Lisp_Object Vx_pointer_shape
, Vx_nontext_pointer_shape
, Vx_mode_pointer_shape
;
169 Lisp_Object Vx_hourglass_pointer_shape
;
171 /* The shape when over mouse-sensitive text. */
173 Lisp_Object Vx_sensitive_text_pointer_shape
;
175 /* If non-nil, the pointer shape to indicate that windows can be
176 dragged horizontally. */
178 Lisp_Object Vx_window_horizontal_drag_shape
;
180 /* Color of chars displayed in cursor box. */
182 Lisp_Object Vx_cursor_fore_pixel
;
184 /* Nonzero if using X. */
188 /* Non nil if no window manager is in use. */
190 Lisp_Object Vx_no_window_manager
;
192 /* Regexp matching a font name whose width is the same as `PIXEL_SIZE'. */
194 Lisp_Object Vx_pixel_size_width_font_regexp
;
197 Lisp_Object Qsuppress_icon
;
198 Lisp_Object Qundefined_color
;
199 Lisp_Object Qcompound_text
, Qcancel_timer
;
200 Lisp_Object Qfont_param
;
204 extern Lisp_Object Vwindow_system_version
;
206 /* The below are defined in frame.c. */
209 int image_cache_refcount
, dpyinfo_refcount
;
212 #if defined (USE_GTK) && defined (HAVE_FREETYPE)
213 char *x_last_font_name
;
217 /* Error if we are not connected to X. */
223 error ("X windows are not in use or not initialized");
226 /* Nonzero if we can use mouse menus.
227 You should not call this unless HAVE_MENUS is defined. */
235 /* Extract a frame as a FRAME_PTR, defaulting to the selected frame
236 and checking validity for X. */
239 check_x_frame (frame
)
245 frame
= selected_frame
;
246 CHECK_LIVE_FRAME (frame
);
249 error ("Non-X frame used");
253 /* Let the user specify an X display with a Lisp object.
254 OBJECT may be nil, a frame or a terminal object.
255 nil stands for the selected frame--or, if that is not an X frame,
256 the first X display on the list. */
258 struct x_display_info
*
259 check_x_display_info (object
)
262 struct x_display_info
*dpyinfo
= NULL
;
266 struct frame
*sf
= XFRAME (selected_frame
);
268 if (FRAME_X_P (sf
) && FRAME_LIVE_P (sf
))
269 dpyinfo
= FRAME_X_DISPLAY_INFO (sf
);
270 else if (x_display_list
!= 0)
271 dpyinfo
= x_display_list
;
273 error ("X windows are not in use or not initialized");
275 else if (TERMINALP (object
))
277 struct terminal
*t
= get_terminal (object
, 1);
279 if (t
->type
!= output_x_window
)
280 error ("Terminal %d is not an X display", XINT (object
));
282 dpyinfo
= t
->display_info
.x
;
284 else if (STRINGP (object
))
285 dpyinfo
= x_display_info_for_name (object
);
288 FRAME_PTR f
= check_x_frame (object
);
289 dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
296 /* Return the Emacs frame-object corresponding to an X window.
297 It could be the frame's main window or an icon window. */
299 /* This function can be called during GC, so use GC_xxx type test macros. */
302 x_window_to_frame (dpyinfo
, wdesc
)
303 struct x_display_info
*dpyinfo
;
306 Lisp_Object tail
, frame
;
309 if (wdesc
== None
) return 0;
311 for (tail
= Vframe_list
; CONSP (tail
); tail
= XCDR (tail
))
317 if (!FRAME_X_P (f
) || FRAME_X_DISPLAY_INFO (f
) != dpyinfo
)
319 if (f
->output_data
.x
->hourglass_window
== wdesc
)
322 if ((f
->output_data
.x
->edit_widget
323 && XtWindow (f
->output_data
.x
->edit_widget
) == wdesc
)
324 /* A tooltip frame? */
325 || (!f
->output_data
.x
->edit_widget
326 && FRAME_X_WINDOW (f
) == wdesc
)
327 || f
->output_data
.x
->icon_desc
== wdesc
)
329 #else /* not USE_X_TOOLKIT */
331 if (f
->output_data
.x
->edit_widget
)
333 GtkWidget
*gwdesc
= xg_win_to_widget (dpyinfo
->display
, wdesc
);
334 struct x_output
*x
= f
->output_data
.x
;
335 if (gwdesc
!= 0 && gwdesc
== x
->edit_widget
)
339 if (FRAME_X_WINDOW (f
) == wdesc
340 || f
->output_data
.x
->icon_desc
== wdesc
)
342 #endif /* not USE_X_TOOLKIT */
347 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
348 /* Like x_window_to_frame but also compares the window with the widget's
352 x_any_window_to_frame (dpyinfo
, wdesc
)
353 struct x_display_info
*dpyinfo
;
356 Lisp_Object tail
, frame
;
357 struct frame
*f
, *found
;
360 if (wdesc
== None
) return NULL
;
363 for (tail
= Vframe_list
; CONSP (tail
) && !found
; tail
= XCDR (tail
))
370 if (FRAME_X_P (f
) && FRAME_X_DISPLAY_INFO (f
) == dpyinfo
)
372 /* This frame matches if the window is any of its widgets. */
373 x
= f
->output_data
.x
;
374 if (x
->hourglass_window
== wdesc
)
379 GtkWidget
*gwdesc
= xg_win_to_widget (dpyinfo
->display
, wdesc
);
381 && gtk_widget_get_toplevel (gwdesc
) == x
->widget
)
384 if (wdesc
== XtWindow (x
->widget
)
385 || wdesc
== XtWindow (x
->column_widget
)
386 || wdesc
== XtWindow (x
->edit_widget
))
388 /* Match if the window is this frame's menubar. */
389 else if (lw_window_is_in_menubar (wdesc
, x
->menubar_widget
))
393 else if (FRAME_X_WINDOW (f
) == wdesc
)
394 /* A tooltip frame. */
402 /* Likewise, but consider only the menu bar widget. */
405 x_menubar_window_to_frame (dpyinfo
, wdesc
)
406 struct x_display_info
*dpyinfo
;
409 Lisp_Object tail
, frame
;
413 if (wdesc
== None
) return 0;
415 for (tail
= Vframe_list
; CONSP (tail
); tail
= XCDR (tail
))
421 if (!FRAME_X_P (f
) || FRAME_X_DISPLAY_INFO (f
) != dpyinfo
)
423 x
= f
->output_data
.x
;
424 /* Match if the window is this frame's menubar. */
426 if (x
->menubar_widget
)
428 GtkWidget
*gwdesc
= xg_win_to_widget (dpyinfo
->display
, wdesc
);
430 /* This gives false positives, but the rectangle check in xterm.c
431 where this is called takes care of that. */
433 && (gwdesc
== x
->menubar_widget
434 || gtk_widget_is_ancestor (x
->menubar_widget
, gwdesc
)
435 || gtk_widget_is_ancestor (gwdesc
, x
->menubar_widget
)))
439 if (x
->menubar_widget
440 && lw_window_is_in_menubar (wdesc
, x
->menubar_widget
))
447 /* Return the frame whose principal (outermost) window is WDESC.
448 If WDESC is some other (smaller) window, we return 0. */
451 x_top_window_to_frame (dpyinfo
, wdesc
)
452 struct x_display_info
*dpyinfo
;
455 Lisp_Object tail
, frame
;
459 if (wdesc
== None
) return 0;
461 for (tail
= Vframe_list
; CONSP (tail
); tail
= XCDR (tail
))
467 if (!FRAME_X_P (f
) || FRAME_X_DISPLAY_INFO (f
) != dpyinfo
)
469 x
= f
->output_data
.x
;
473 /* This frame matches if the window is its topmost widget. */
475 GtkWidget
*gwdesc
= xg_win_to_widget (dpyinfo
->display
, wdesc
);
476 if (gwdesc
== x
->widget
)
479 if (wdesc
== XtWindow (x
->widget
))
481 #if 0 /* I don't know why it did this,
482 but it seems logically wrong,
483 and it causes trouble for MapNotify events. */
484 /* Match if the window is this frame's menubar. */
485 if (x
->menubar_widget
486 && wdesc
== XtWindow (x
->menubar_widget
))
491 else if (FRAME_X_WINDOW (f
) == wdesc
)
497 #endif /* USE_X_TOOLKIT || USE_GTK */
501 static void x_default_font_parameter
P_ ((struct frame
*, Lisp_Object
));
503 static Lisp_Object unwind_create_frame
P_ ((Lisp_Object
));
504 static Lisp_Object unwind_create_tip_frame
P_ ((Lisp_Object
));
506 void x_set_foreground_color
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
507 static void x_set_wait_for_wm
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
508 void x_set_background_color
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
509 void x_set_mouse_color
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
510 void x_set_cursor_color
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
511 void x_set_border_color
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
512 void x_set_cursor_type
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
513 void x_set_icon_type
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
514 void x_set_icon_name
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
515 void x_explicitly_set_name
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
516 void x_set_menu_bar_lines
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
517 void x_set_title
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
518 void x_set_tool_bar_lines
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
519 void x_set_scroll_bar_foreground
P_ ((struct frame
*, Lisp_Object
,
521 void x_set_scroll_bar_background
P_ ((struct frame
*, Lisp_Object
,
523 static Lisp_Object x_default_scroll_bar_color_parameter
P_ ((struct frame
*,
530 /* Store the screen positions of frame F into XPTR and YPTR.
531 These are the positions of the containing window manager window,
532 not Emacs's own window. */
535 x_real_positions (f
, xptr
, yptr
)
539 int win_x
, win_y
, outer_x
, outer_y
;
540 int real_x
= 0, real_y
= 0;
542 Window win
= f
->output_data
.x
->parent_desc
;
546 x_catch_errors (FRAME_X_DISPLAY (f
));
548 if (win
== FRAME_X_DISPLAY_INFO (f
)->root_window
)
549 win
= FRAME_OUTER_WINDOW (f
);
551 /* This loop traverses up the containment tree until we hit the root
552 window. Window managers may intersect many windows between our window
553 and the root window. The window we find just before the root window
554 should be the outer WM window. */
557 Window wm_window
, rootw
;
558 Window
*tmp_children
;
559 unsigned int tmp_nchildren
;
562 success
= XQueryTree (FRAME_X_DISPLAY (f
), win
, &rootw
,
563 &wm_window
, &tmp_children
, &tmp_nchildren
);
565 had_errors
= x_had_errors_p (FRAME_X_DISPLAY (f
));
567 /* Don't free tmp_children if XQueryTree failed. */
571 XFree ((char *) tmp_children
);
573 if (wm_window
== rootw
|| had_errors
)
584 /* Get the real coordinates for the WM window upper left corner */
585 XGetGeometry (FRAME_X_DISPLAY (f
), win
,
586 &rootw
, &real_x
, &real_y
, &ign
, &ign
, &ign
, &ign
);
588 /* Translate real coordinates to coordinates relative to our
589 window. For our window, the upper left corner is 0, 0.
590 Since the upper left corner of the WM window is outside
591 our window, win_x and win_y will be negative:
593 ------------------ ---> x
595 | ----------------- v y
598 XTranslateCoordinates (FRAME_X_DISPLAY (f
),
600 /* From-window, to-window. */
601 FRAME_X_DISPLAY_INFO (f
)->root_window
,
604 /* From-position, to-position. */
605 real_x
, real_y
, &win_x
, &win_y
,
610 if (FRAME_X_WINDOW (f
) == FRAME_OUTER_WINDOW (f
))
617 XTranslateCoordinates (FRAME_X_DISPLAY (f
),
619 /* From-window, to-window. */
620 FRAME_X_DISPLAY_INFO (f
)->root_window
,
621 FRAME_OUTER_WINDOW (f
),
623 /* From-position, to-position. */
624 real_x
, real_y
, &outer_x
, &outer_y
,
630 had_errors
= x_had_errors_p (FRAME_X_DISPLAY (f
));
637 if (had_errors
) return;
639 f
->x_pixels_diff
= -win_x
;
640 f
->y_pixels_diff
= -win_y
;
642 FRAME_X_OUTPUT (f
)->x_pixels_outer_diff
= -outer_x
;
643 FRAME_X_OUTPUT (f
)->y_pixels_outer_diff
= -outer_y
;
652 /* Gamma-correct COLOR on frame F. */
655 gamma_correct (f
, color
)
661 color
->red
= pow (color
->red
/ 65535.0, f
->gamma
) * 65535.0 + 0.5;
662 color
->green
= pow (color
->green
/ 65535.0, f
->gamma
) * 65535.0 + 0.5;
663 color
->blue
= pow (color
->blue
/ 65535.0, f
->gamma
) * 65535.0 + 0.5;
668 /* Decide if color named COLOR_NAME is valid for use on frame F. If
669 so, return the RGB values in COLOR. If ALLOC_P is non-zero,
670 allocate the color. Value is zero if COLOR_NAME is invalid, or
671 no color could be allocated. */
674 x_defined_color (f
, color_name
, color
, alloc_p
)
681 Display
*dpy
= FRAME_X_DISPLAY (f
);
682 Colormap cmap
= FRAME_X_COLORMAP (f
);
685 success_p
= XParseColor (dpy
, cmap
, color_name
, color
);
686 if (success_p
&& alloc_p
)
687 success_p
= x_alloc_nearest_color (f
, cmap
, color
);
694 /* Return the pixel color value for color COLOR_NAME on frame F. If F
695 is a monochrome frame, return MONO_COLOR regardless of what ARG says.
696 Signal an error if color can't be allocated. */
699 x_decode_color (f
, color_name
, mono_color
)
701 Lisp_Object color_name
;
706 CHECK_STRING (color_name
);
708 #if 0 /* Don't do this. It's wrong when we're not using the default
709 colormap, it makes freeing difficult, and it's probably not
710 an important optimization. */
711 if (strcmp (SDATA (color_name
), "black") == 0)
712 return BLACK_PIX_DEFAULT (f
);
713 else if (strcmp (SDATA (color_name
), "white") == 0)
714 return WHITE_PIX_DEFAULT (f
);
717 /* Return MONO_COLOR for monochrome frames. */
718 if (FRAME_X_DISPLAY_INFO (f
)->n_planes
== 1)
721 /* x_defined_color is responsible for coping with failures
722 by looking for a near-miss. */
723 if (x_defined_color (f
, SDATA (color_name
), &cdef
, 1))
726 signal_error ("Undefined color", color_name
);
731 /* Change the `wait-for-wm' frame parameter of frame F. OLD_VALUE is
732 the previous value of that parameter, NEW_VALUE is the new value.
733 See also the comment of wait_for_wm in struct x_output. */
736 x_set_wait_for_wm (f
, new_value
, old_value
)
738 Lisp_Object new_value
, old_value
;
740 f
->output_data
.x
->wait_for_wm
= !NILP (new_value
);
745 /* Set icon from FILE for frame F. By using GTK functions the icon
746 may be any format that GdkPixbuf knows about, i.e. not just bitmaps. */
749 xg_set_icon (f
, file
)
756 found
= x_find_image_file (file
);
762 char *filename
= (char *) SDATA (found
);
765 pixbuf
= gdk_pixbuf_new_from_file (filename
, &err
);
769 gtk_window_set_icon (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)),
771 g_object_unref (pixbuf
);
785 xg_set_icon_from_xpm_data (f
, data
)
790 GdkPixbuf
*pixbuf
= gdk_pixbuf_new_from_xpm_data ((const char **) data
);
795 gtk_window_set_icon (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)), pixbuf
);
796 g_object_unref (pixbuf
);
802 /* Functions called only from `x_set_frame_param'
803 to set individual parameters.
805 If FRAME_X_WINDOW (f) is 0,
806 the frame is being created and its X-window does not exist yet.
807 In that case, just record the parameter's new value
808 in the standard place; do not attempt to change the window. */
811 x_set_foreground_color (f
, arg
, oldval
)
813 Lisp_Object arg
, oldval
;
815 struct x_output
*x
= f
->output_data
.x
;
816 unsigned long fg
, old_fg
;
818 fg
= x_decode_color (f
, arg
, BLACK_PIX_DEFAULT (f
));
819 old_fg
= FRAME_FOREGROUND_PIXEL (f
);
820 FRAME_FOREGROUND_PIXEL (f
) = fg
;
822 if (FRAME_X_WINDOW (f
) != 0)
824 Display
*dpy
= FRAME_X_DISPLAY (f
);
827 XSetForeground (dpy
, x
->normal_gc
, fg
);
828 XSetBackground (dpy
, x
->reverse_gc
, fg
);
830 if (x
->cursor_pixel
== old_fg
)
832 unload_color (f
, x
->cursor_pixel
);
833 x
->cursor_pixel
= x_copy_color (f
, fg
);
834 XSetBackground (dpy
, x
->cursor_gc
, x
->cursor_pixel
);
839 update_face_from_frame_parameter (f
, Qforeground_color
, arg
);
841 if (FRAME_VISIBLE_P (f
))
845 unload_color (f
, old_fg
);
849 x_set_background_color (f
, arg
, oldval
)
851 Lisp_Object arg
, oldval
;
853 struct x_output
*x
= f
->output_data
.x
;
856 bg
= x_decode_color (f
, arg
, WHITE_PIX_DEFAULT (f
));
857 unload_color (f
, FRAME_BACKGROUND_PIXEL (f
));
858 FRAME_BACKGROUND_PIXEL (f
) = bg
;
860 if (FRAME_X_WINDOW (f
) != 0)
862 Display
*dpy
= FRAME_X_DISPLAY (f
);
865 XSetBackground (dpy
, x
->normal_gc
, bg
);
866 XSetForeground (dpy
, x
->reverse_gc
, bg
);
867 XSetWindowBackground (dpy
, FRAME_X_WINDOW (f
), bg
);
868 XSetForeground (dpy
, x
->cursor_gc
, bg
);
871 xg_set_background_color (f
, bg
);
874 #ifndef USE_TOOLKIT_SCROLL_BARS /* Turns out to be annoying with
875 toolkit scroll bars. */
878 for (bar
= FRAME_SCROLL_BARS (f
);
880 bar
= XSCROLL_BAR (bar
)->next
)
882 Window window
= XSCROLL_BAR (bar
)->x_window
;
883 XSetWindowBackground (dpy
, window
, bg
);
886 #endif /* USE_TOOLKIT_SCROLL_BARS */
889 update_face_from_frame_parameter (f
, Qbackground_color
, arg
);
891 if (FRAME_VISIBLE_P (f
))
897 make_invisible_cursor (f
)
900 Display
*dpy
= FRAME_X_DISPLAY (f
);
901 static char const no_data
[] = { 0 };
906 x_catch_errors (dpy
);
907 pix
= XCreateBitmapFromData (dpy
, FRAME_X_DISPLAY_INFO (f
)->root_window
,
909 if (! x_had_errors_p (dpy
) && pix
!= None
)
912 col
.red
= col
.green
= col
.blue
= 0;
913 col
.flags
= DoRed
| DoGreen
| DoBlue
;
914 c
= XCreatePixmapCursor (dpy
, pix
, pix
, &col
, &col
, 0, 0);
915 if (x_had_errors_p (dpy
) || c
== None
)
917 XFreePixmap (dpy
, pix
);
926 x_set_mouse_color (f
, arg
, oldval
)
928 Lisp_Object arg
, oldval
;
930 struct x_output
*x
= f
->output_data
.x
;
931 Display
*dpy
= FRAME_X_DISPLAY (f
);
932 Cursor cursor
, nontext_cursor
, mode_cursor
, hand_cursor
;
933 Cursor hourglass_cursor
, horizontal_drag_cursor
;
934 unsigned long pixel
= x_decode_color (f
, arg
, BLACK_PIX_DEFAULT (f
));
935 unsigned long mask_color
= FRAME_BACKGROUND_PIXEL (f
);
937 /* Don't let pointers be invisible. */
938 if (mask_color
== pixel
)
940 x_free_colors (f
, &pixel
, 1);
941 pixel
= x_copy_color (f
, FRAME_FOREGROUND_PIXEL (f
));
944 unload_color (f
, x
->mouse_pixel
);
945 x
->mouse_pixel
= pixel
;
949 /* It's not okay to crash if the user selects a screwy cursor. */
950 x_catch_errors (dpy
);
952 if (!NILP (Vx_pointer_shape
))
954 CHECK_NUMBER (Vx_pointer_shape
);
955 cursor
= XCreateFontCursor (dpy
, XINT (Vx_pointer_shape
));
958 cursor
= XCreateFontCursor (dpy
, XC_xterm
);
959 x_check_errors (dpy
, "bad text pointer cursor: %s");
961 if (!NILP (Vx_nontext_pointer_shape
))
963 CHECK_NUMBER (Vx_nontext_pointer_shape
);
965 = XCreateFontCursor (dpy
, XINT (Vx_nontext_pointer_shape
));
968 nontext_cursor
= XCreateFontCursor (dpy
, XC_left_ptr
);
969 x_check_errors (dpy
, "bad nontext pointer cursor: %s");
971 if (!NILP (Vx_hourglass_pointer_shape
))
973 CHECK_NUMBER (Vx_hourglass_pointer_shape
);
975 = XCreateFontCursor (dpy
, XINT (Vx_hourglass_pointer_shape
));
978 hourglass_cursor
= XCreateFontCursor (dpy
, XC_watch
);
979 x_check_errors (dpy
, "bad hourglass pointer cursor: %s");
981 if (!NILP (Vx_mode_pointer_shape
))
983 CHECK_NUMBER (Vx_mode_pointer_shape
);
984 mode_cursor
= XCreateFontCursor (dpy
, XINT (Vx_mode_pointer_shape
));
987 mode_cursor
= XCreateFontCursor (dpy
, XC_xterm
);
988 x_check_errors (dpy
, "bad modeline pointer cursor: %s");
990 if (!NILP (Vx_sensitive_text_pointer_shape
))
992 CHECK_NUMBER (Vx_sensitive_text_pointer_shape
);
994 = XCreateFontCursor (dpy
, XINT (Vx_sensitive_text_pointer_shape
));
997 hand_cursor
= XCreateFontCursor (dpy
, XC_hand2
);
999 if (!NILP (Vx_window_horizontal_drag_shape
))
1001 CHECK_NUMBER (Vx_window_horizontal_drag_shape
);
1002 horizontal_drag_cursor
1003 = XCreateFontCursor (dpy
, XINT (Vx_window_horizontal_drag_shape
));
1006 horizontal_drag_cursor
1007 = XCreateFontCursor (dpy
, XC_sb_h_double_arrow
);
1009 /* Check and report errors with the above calls. */
1010 x_check_errors (dpy
, "can't set cursor shape: %s");
1011 x_uncatch_errors ();
1014 XColor fore_color
, back_color
;
1016 fore_color
.pixel
= x
->mouse_pixel
;
1017 x_query_color (f
, &fore_color
);
1018 back_color
.pixel
= mask_color
;
1019 x_query_color (f
, &back_color
);
1021 XRecolorCursor (dpy
, cursor
, &fore_color
, &back_color
);
1022 XRecolorCursor (dpy
, nontext_cursor
, &fore_color
, &back_color
);
1023 XRecolorCursor (dpy
, mode_cursor
, &fore_color
, &back_color
);
1024 XRecolorCursor (dpy
, hand_cursor
, &fore_color
, &back_color
);
1025 XRecolorCursor (dpy
, hourglass_cursor
, &fore_color
, &back_color
);
1026 XRecolorCursor (dpy
, horizontal_drag_cursor
, &fore_color
, &back_color
);
1029 if (FRAME_X_WINDOW (f
) != 0)
1030 XDefineCursor (dpy
, FRAME_X_WINDOW (f
),
1031 f
->output_data
.x
->current_cursor
= cursor
);
1033 if (FRAME_X_DISPLAY_INFO (f
)->invisible_cursor
== 0)
1034 FRAME_X_DISPLAY_INFO (f
)->invisible_cursor
= make_invisible_cursor (f
);
1036 if (cursor
!= x
->text_cursor
1037 && x
->text_cursor
!= 0)
1038 XFreeCursor (dpy
, x
->text_cursor
);
1039 x
->text_cursor
= cursor
;
1041 if (nontext_cursor
!= x
->nontext_cursor
1042 && x
->nontext_cursor
!= 0)
1043 XFreeCursor (dpy
, x
->nontext_cursor
);
1044 x
->nontext_cursor
= nontext_cursor
;
1046 if (hourglass_cursor
!= x
->hourglass_cursor
1047 && x
->hourglass_cursor
!= 0)
1048 XFreeCursor (dpy
, x
->hourglass_cursor
);
1049 x
->hourglass_cursor
= hourglass_cursor
;
1051 if (mode_cursor
!= x
->modeline_cursor
1052 && x
->modeline_cursor
!= 0)
1053 XFreeCursor (dpy
, f
->output_data
.x
->modeline_cursor
);
1054 x
->modeline_cursor
= mode_cursor
;
1056 if (hand_cursor
!= x
->hand_cursor
1057 && x
->hand_cursor
!= 0)
1058 XFreeCursor (dpy
, x
->hand_cursor
);
1059 x
->hand_cursor
= hand_cursor
;
1061 if (horizontal_drag_cursor
!= x
->horizontal_drag_cursor
1062 && x
->horizontal_drag_cursor
!= 0)
1063 XFreeCursor (dpy
, x
->horizontal_drag_cursor
);
1064 x
->horizontal_drag_cursor
= horizontal_drag_cursor
;
1069 update_face_from_frame_parameter (f
, Qmouse_color
, arg
);
1073 x_set_cursor_color (f
, arg
, oldval
)
1075 Lisp_Object arg
, oldval
;
1077 unsigned long fore_pixel
, pixel
;
1078 int fore_pixel_allocated_p
= 0, pixel_allocated_p
= 0;
1079 struct x_output
*x
= f
->output_data
.x
;
1081 if (!NILP (Vx_cursor_fore_pixel
))
1083 fore_pixel
= x_decode_color (f
, Vx_cursor_fore_pixel
,
1084 WHITE_PIX_DEFAULT (f
));
1085 fore_pixel_allocated_p
= 1;
1088 fore_pixel
= FRAME_BACKGROUND_PIXEL (f
);
1090 pixel
= x_decode_color (f
, arg
, BLACK_PIX_DEFAULT (f
));
1091 pixel_allocated_p
= 1;
1093 /* Make sure that the cursor color differs from the background color. */
1094 if (pixel
== FRAME_BACKGROUND_PIXEL (f
))
1096 if (pixel_allocated_p
)
1098 x_free_colors (f
, &pixel
, 1);
1099 pixel_allocated_p
= 0;
1102 pixel
= x
->mouse_pixel
;
1103 if (pixel
== fore_pixel
)
1105 if (fore_pixel_allocated_p
)
1107 x_free_colors (f
, &fore_pixel
, 1);
1108 fore_pixel_allocated_p
= 0;
1110 fore_pixel
= FRAME_BACKGROUND_PIXEL (f
);
1114 unload_color (f
, x
->cursor_foreground_pixel
);
1115 if (!fore_pixel_allocated_p
)
1116 fore_pixel
= x_copy_color (f
, fore_pixel
);
1117 x
->cursor_foreground_pixel
= fore_pixel
;
1119 unload_color (f
, x
->cursor_pixel
);
1120 if (!pixel_allocated_p
)
1121 pixel
= x_copy_color (f
, pixel
);
1122 x
->cursor_pixel
= pixel
;
1124 if (FRAME_X_WINDOW (f
) != 0)
1127 XSetBackground (FRAME_X_DISPLAY (f
), x
->cursor_gc
, x
->cursor_pixel
);
1128 XSetForeground (FRAME_X_DISPLAY (f
), x
->cursor_gc
, fore_pixel
);
1131 if (FRAME_VISIBLE_P (f
))
1133 x_update_cursor (f
, 0);
1134 x_update_cursor (f
, 1);
1138 update_face_from_frame_parameter (f
, Qcursor_color
, arg
);
1141 /* Set the border-color of frame F to pixel value PIX.
1142 Note that this does not fully take effect if done before
1143 F has an x-window. */
1146 x_set_border_pixel (f
, pix
)
1150 unload_color (f
, f
->output_data
.x
->border_pixel
);
1151 f
->output_data
.x
->border_pixel
= pix
;
1153 if (FRAME_X_WINDOW (f
) != 0 && f
->border_width
> 0)
1156 XSetWindowBorder (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
1157 (unsigned long)pix
);
1160 if (FRAME_VISIBLE_P (f
))
1165 /* Set the border-color of frame F to value described by ARG.
1166 ARG can be a string naming a color.
1167 The border-color is used for the border that is drawn by the X server.
1168 Note that this does not fully take effect if done before
1169 F has an x-window; it must be redone when the window is created.
1171 Note: this is done in two routines because of the way X10 works.
1173 Note: under X11, this is normally the province of the window manager,
1174 and so emacs' border colors may be overridden. */
1177 x_set_border_color (f
, arg
, oldval
)
1179 Lisp_Object arg
, oldval
;
1184 pix
= x_decode_color (f
, arg
, BLACK_PIX_DEFAULT (f
));
1185 x_set_border_pixel (f
, pix
);
1186 update_face_from_frame_parameter (f
, Qborder_color
, arg
);
1191 x_set_cursor_type (f
, arg
, oldval
)
1193 Lisp_Object arg
, oldval
;
1195 set_frame_cursor_types (f
, arg
);
1197 /* Make sure the cursor gets redrawn. */
1198 cursor_type_changed
= 1;
1202 x_set_icon_type (f
, arg
, oldval
)
1204 Lisp_Object arg
, oldval
;
1210 if (STRINGP (oldval
) && EQ (Fstring_equal (oldval
, arg
), Qt
))
1213 else if (!STRINGP (oldval
) && EQ (oldval
, Qnil
) == EQ (arg
, Qnil
))
1218 result
= x_text_icon (f
,
1219 (char *) SDATA ((!NILP (f
->icon_name
)
1223 result
= x_bitmap_icon (f
, arg
);
1228 error ("No icon window available");
1231 XFlush (FRAME_X_DISPLAY (f
));
1236 x_set_icon_name (f
, arg
, oldval
)
1238 Lisp_Object arg
, oldval
;
1244 if (STRINGP (oldval
) && EQ (Fstring_equal (oldval
, arg
), Qt
))
1247 else if (!NILP (arg
) || NILP (oldval
))
1252 if (f
->output_data
.x
->icon_bitmap
!= 0)
1257 result
= x_text_icon (f
,
1258 (char *) SDATA ((!NILP (f
->icon_name
)
1267 error ("No icon window available");
1270 XFlush (FRAME_X_DISPLAY (f
));
1276 x_set_menu_bar_lines (f
, value
, oldval
)
1278 Lisp_Object value
, oldval
;
1281 #if ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK)
1282 int olines
= FRAME_MENU_BAR_LINES (f
);
1285 /* Right now, menu bars don't work properly in minibuf-only frames;
1286 most of the commands try to apply themselves to the minibuffer
1287 frame itself, and get an error because you can't switch buffers
1288 in or split the minibuffer window. */
1289 if (FRAME_MINIBUF_ONLY_P (f
))
1292 if (INTEGERP (value
))
1293 nlines
= XINT (value
);
1297 /* Make sure we redisplay all windows in this frame. */
1298 windows_or_buffers_changed
++;
1300 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
1301 FRAME_MENU_BAR_LINES (f
) = 0;
1304 FRAME_EXTERNAL_MENU_BAR (f
) = 1;
1305 if (FRAME_X_P (f
) && f
->output_data
.x
->menubar_widget
== 0)
1306 /* Make sure next redisplay shows the menu bar. */
1307 XWINDOW (FRAME_SELECTED_WINDOW (f
))->update_mode_line
= Qt
;
1311 if (FRAME_EXTERNAL_MENU_BAR (f
) == 1)
1312 free_frame_menubar (f
);
1313 FRAME_EXTERNAL_MENU_BAR (f
) = 0;
1315 f
->output_data
.x
->menubar_widget
= 0;
1317 #else /* not USE_X_TOOLKIT && not USE_GTK */
1318 FRAME_MENU_BAR_LINES (f
) = nlines
;
1319 change_window_heights (f
->root_window
, nlines
- olines
);
1320 #endif /* not USE_X_TOOLKIT */
1325 /* Set the number of lines used for the tool bar of frame F to VALUE.
1326 VALUE not an integer, or < 0 means set the lines to zero. OLDVAL
1327 is the old number of tool bar lines. This function changes the
1328 height of all windows on frame F to match the new tool bar height.
1329 The frame's height doesn't change. */
1332 x_set_tool_bar_lines (f
, value
, oldval
)
1334 Lisp_Object value
, oldval
;
1336 int delta
, nlines
, root_height
;
1337 Lisp_Object root_window
;
1339 /* Treat tool bars like menu bars. */
1340 if (FRAME_MINIBUF_ONLY_P (f
))
1343 /* Use VALUE only if an integer >= 0. */
1344 if (INTEGERP (value
) && XINT (value
) >= 0)
1345 nlines
= XFASTINT (value
);
1350 FRAME_TOOL_BAR_LINES (f
) = 0;
1353 FRAME_EXTERNAL_TOOL_BAR (f
) = 1;
1354 if (FRAME_X_P (f
) && f
->output_data
.x
->toolbar_widget
== 0)
1355 /* Make sure next redisplay shows the tool bar. */
1356 XWINDOW (FRAME_SELECTED_WINDOW (f
))->update_mode_line
= Qt
;
1357 update_frame_tool_bar (f
);
1361 if (FRAME_EXTERNAL_TOOL_BAR (f
))
1362 free_frame_tool_bar (f
);
1363 FRAME_EXTERNAL_TOOL_BAR (f
) = 0;
1369 /* Make sure we redisplay all windows in this frame. */
1370 ++windows_or_buffers_changed
;
1372 delta
= nlines
- FRAME_TOOL_BAR_LINES (f
);
1374 /* Don't resize the tool-bar to more than we have room for. */
1375 root_window
= FRAME_ROOT_WINDOW (f
);
1376 root_height
= WINDOW_TOTAL_LINES (XWINDOW (root_window
));
1377 if (root_height
- delta
< 1)
1379 delta
= root_height
- 1;
1380 nlines
= FRAME_TOOL_BAR_LINES (f
) + delta
;
1383 FRAME_TOOL_BAR_LINES (f
) = nlines
;
1384 change_window_heights (root_window
, delta
);
1387 /* We also have to make sure that the internal border at the top of
1388 the frame, below the menu bar or tool bar, is redrawn when the
1389 tool bar disappears. This is so because the internal border is
1390 below the tool bar if one is displayed, but is below the menu bar
1391 if there isn't a tool bar. The tool bar draws into the area
1392 below the menu bar. */
1393 if (FRAME_X_WINDOW (f
) && FRAME_TOOL_BAR_LINES (f
) == 0)
1396 clear_current_matrices (f
);
1399 /* If the tool bar gets smaller, the internal border below it
1400 has to be cleared. It was formerly part of the display
1401 of the larger tool bar, and updating windows won't clear it. */
1404 int height
= FRAME_INTERNAL_BORDER_WIDTH (f
);
1405 int width
= FRAME_PIXEL_WIDTH (f
);
1406 int y
= nlines
* FRAME_LINE_HEIGHT (f
);
1408 /* height can be zero here. */
1409 if (height
> 0 && width
> 0)
1412 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
1413 0, y
, width
, height
, False
);
1417 if (WINDOWP (f
->tool_bar_window
))
1418 clear_glyph_matrix (XWINDOW (f
->tool_bar_window
)->current_matrix
);
1423 /* Set the foreground color for scroll bars on frame F to VALUE.
1424 VALUE should be a string, a color name. If it isn't a string or
1425 isn't a valid color name, do nothing. OLDVAL is the old value of
1426 the frame parameter. */
1429 x_set_scroll_bar_foreground (f
, value
, oldval
)
1431 Lisp_Object value
, oldval
;
1433 unsigned long pixel
;
1435 if (STRINGP (value
))
1436 pixel
= x_decode_color (f
, value
, BLACK_PIX_DEFAULT (f
));
1440 if (f
->output_data
.x
->scroll_bar_foreground_pixel
!= -1)
1441 unload_color (f
, f
->output_data
.x
->scroll_bar_foreground_pixel
);
1443 f
->output_data
.x
->scroll_bar_foreground_pixel
= pixel
;
1444 if (FRAME_X_WINDOW (f
) && FRAME_VISIBLE_P (f
))
1446 /* Remove all scroll bars because they have wrong colors. */
1447 if (FRAME_TERMINAL (f
)->condemn_scroll_bars_hook
)
1448 (*FRAME_TERMINAL (f
)->condemn_scroll_bars_hook
) (f
);
1449 if (FRAME_TERMINAL (f
)->judge_scroll_bars_hook
)
1450 (*FRAME_TERMINAL (f
)->judge_scroll_bars_hook
) (f
);
1452 update_face_from_frame_parameter (f
, Qscroll_bar_foreground
, value
);
1458 /* Set the background color for scroll bars on frame F to VALUE VALUE
1459 should be a string, a color name. If it isn't a string or isn't a
1460 valid color name, do nothing. OLDVAL is the old value of the frame
1464 x_set_scroll_bar_background (f
, value
, oldval
)
1466 Lisp_Object value
, oldval
;
1468 unsigned long pixel
;
1470 if (STRINGP (value
))
1471 pixel
= x_decode_color (f
, value
, WHITE_PIX_DEFAULT (f
));
1475 if (f
->output_data
.x
->scroll_bar_background_pixel
!= -1)
1476 unload_color (f
, f
->output_data
.x
->scroll_bar_background_pixel
);
1478 #ifdef USE_TOOLKIT_SCROLL_BARS
1479 /* Scrollbar shadow colors. */
1480 if (f
->output_data
.x
->scroll_bar_top_shadow_pixel
!= -1)
1482 unload_color (f
, f
->output_data
.x
->scroll_bar_top_shadow_pixel
);
1483 f
->output_data
.x
->scroll_bar_top_shadow_pixel
= -1;
1485 if (f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
!= -1)
1487 unload_color (f
, f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
);
1488 f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
= -1;
1490 #endif /* USE_TOOLKIT_SCROLL_BARS */
1492 f
->output_data
.x
->scroll_bar_background_pixel
= pixel
;
1493 if (FRAME_X_WINDOW (f
) && FRAME_VISIBLE_P (f
))
1495 /* Remove all scroll bars because they have wrong colors. */
1496 if (FRAME_TERMINAL (f
)->condemn_scroll_bars_hook
)
1497 (*FRAME_TERMINAL (f
)->condemn_scroll_bars_hook
) (f
);
1498 if (FRAME_TERMINAL (f
)->judge_scroll_bars_hook
)
1499 (*FRAME_TERMINAL (f
)->judge_scroll_bars_hook
) (f
);
1501 update_face_from_frame_parameter (f
, Qscroll_bar_background
, value
);
1507 /* Encode Lisp string STRING as a text in a format appropriate for
1508 XICCC (X Inter Client Communication Conventions).
1510 This can call Lisp code, so callers must GCPRO.
1512 If STRING contains only ASCII characters, do no conversion and
1513 return the string data of STRING. Otherwise, encode the text by
1514 CODING_SYSTEM, and return a newly allocated memory area which
1515 should be freed by `xfree' by a caller.
1517 SELECTIONP non-zero means the string is being encoded for an X
1518 selection, so it is safe to run pre-write conversions (which
1521 Store the byte length of resulting text in *TEXT_BYTES.
1523 If the text contains only ASCII and Latin-1, store 1 in *STRING_P,
1524 which means that the `encoding' of the result can be `STRING'.
1525 Otherwise store 0 in *STRINGP, which means that the `encoding' of
1526 the result should be `COMPOUND_TEXT'. */
1528 static unsigned char *
1529 x_encode_text (string
, coding_system
, selectionp
, text_bytes
, stringp
, freep
)
1530 Lisp_Object string
, coding_system
;
1531 int *text_bytes
, *stringp
;
1535 int result
= string_xstring_p (string
);
1536 struct coding_system coding
;
1540 /* No multibyte character in OBJ. We need not encode it. */
1541 *text_bytes
= SBYTES (string
);
1544 return SDATA (string
);
1547 setup_coding_system (coding_system
, &coding
);
1548 coding
.mode
|= (CODING_MODE_SAFE_ENCODING
| CODING_MODE_LAST_BLOCK
);
1549 /* We suppress producing escape sequences for composition. */
1550 coding
.common_flags
&= ~CODING_ANNOTATION_MASK
;
1551 coding
.dst_bytes
= SCHARS (string
) * 2;
1552 coding
.destination
= (unsigned char *) xmalloc (coding
.dst_bytes
);
1553 encode_coding_object (&coding
, string
, 0, 0,
1554 SCHARS (string
), SBYTES (string
), Qnil
);
1555 *text_bytes
= coding
.produced
;
1556 *stringp
= (result
== 1 || !EQ (coding_system
, Qcompound_text
));
1558 return coding
.destination
;
1562 /* Set the WM name to NAME for frame F. Also set the icon name.
1563 If the frame already has an icon name, use that, otherwise set the
1564 icon name to NAME. */
1567 x_set_name_internal (f
, name
)
1571 if (FRAME_X_WINDOW (f
))
1575 XTextProperty text
, icon
;
1577 int do_free_icon_value
= 0, do_free_text_value
= 0;
1578 Lisp_Object coding_system
;
1580 Lisp_Object encoded_name
;
1581 struct gcpro gcpro1
;
1583 /* As ENCODE_UTF_8 may cause GC and relocation of string data,
1584 we use it before x_encode_text that may return string data. */
1586 encoded_name
= ENCODE_UTF_8 (name
);
1590 coding_system
= Qcompound_text
;
1591 /* Note: Encoding strategy
1593 We encode NAME by compound-text and use "COMPOUND-TEXT" in
1594 text.encoding. But, there are non-internationalized window
1595 managers which don't support that encoding. So, if NAME
1596 contains only ASCII and 8859-1 characters, encode it by
1597 iso-latin-1, and use "STRING" in text.encoding hoping that
1598 such window managers at least analyze this format correctly,
1599 i.e. treat 8-bit bytes as 8859-1 characters.
1601 We may also be able to use "UTF8_STRING" in text.encoding
1602 in the future which can encode all Unicode characters.
1603 But, for the moment, there's no way to know that the
1604 current window manager supports it or not. */
1605 text
.value
= x_encode_text (name
, coding_system
, 0, &bytes
, &stringp
,
1606 &do_free_text_value
);
1607 text
.encoding
= (stringp
? XA_STRING
1608 : FRAME_X_DISPLAY_INFO (f
)->Xatom_COMPOUND_TEXT
);
1610 text
.nitems
= bytes
;
1612 if (!STRINGP (f
->icon_name
))
1618 /* See the above comment "Note: Encoding strategy". */
1619 icon
.value
= x_encode_text (f
->icon_name
, coding_system
, 0,
1620 &bytes
, &stringp
, &do_free_icon_value
);
1621 icon
.encoding
= (stringp
? XA_STRING
1622 : FRAME_X_DISPLAY_INFO (f
)->Xatom_COMPOUND_TEXT
);
1624 icon
.nitems
= bytes
;
1628 gtk_window_set_title (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)),
1629 (char *) SDATA (encoded_name
));
1630 #else /* not USE_GTK */
1631 XSetWMName (FRAME_X_DISPLAY (f
), FRAME_OUTER_WINDOW (f
), &text
);
1632 #endif /* not USE_GTK */
1634 XSetWMIconName (FRAME_X_DISPLAY (f
), FRAME_OUTER_WINDOW (f
), &icon
);
1636 if (do_free_icon_value
)
1638 if (do_free_text_value
)
1645 /* Change the name of frame F to NAME. If NAME is nil, set F's name to
1648 If EXPLICIT is non-zero, that indicates that lisp code is setting the
1649 name; if NAME is a string, set F's name to NAME and set
1650 F->explicit_name; if NAME is Qnil, then clear F->explicit_name.
1652 If EXPLICIT is zero, that indicates that Emacs redisplay code is
1653 suggesting a new name, which lisp code should override; if
1654 F->explicit_name is set, ignore the new name; otherwise, set it. */
1657 x_set_name (f
, name
, explicit)
1662 /* Make sure that requests from lisp code override requests from
1663 Emacs redisplay code. */
1666 /* If we're switching from explicit to implicit, we had better
1667 update the mode lines and thereby update the title. */
1668 if (f
->explicit_name
&& NILP (name
))
1669 update_mode_lines
= 1;
1671 f
->explicit_name
= ! NILP (name
);
1673 else if (f
->explicit_name
)
1676 /* If NAME is nil, set the name to the x_id_name. */
1679 /* Check for no change needed in this very common case
1680 before we do any consing. */
1681 if (!strcmp (FRAME_X_DISPLAY_INFO (f
)->x_id_name
,
1684 name
= build_string (FRAME_X_DISPLAY_INFO (f
)->x_id_name
);
1687 CHECK_STRING (name
);
1689 /* Don't change the name if it's already NAME. */
1690 if (! NILP (Fstring_equal (name
, f
->name
)))
1695 /* For setting the frame title, the title parameter should override
1696 the name parameter. */
1697 if (! NILP (f
->title
))
1700 x_set_name_internal (f
, name
);
1703 /* This function should be called when the user's lisp code has
1704 specified a name for the frame; the name will override any set by the
1707 x_explicitly_set_name (f
, arg
, oldval
)
1709 Lisp_Object arg
, oldval
;
1711 x_set_name (f
, arg
, 1);
1714 /* This function should be called by Emacs redisplay code to set the
1715 name; names set this way will never override names set by the user's
1718 x_implicitly_set_name (f
, arg
, oldval
)
1720 Lisp_Object arg
, oldval
;
1722 x_set_name (f
, arg
, 0);
1725 /* Change the title of frame F to NAME.
1726 If NAME is nil, use the frame name as the title. */
1729 x_set_title (f
, name
, old_name
)
1731 Lisp_Object name
, old_name
;
1733 /* Don't change the title if it's already NAME. */
1734 if (EQ (name
, f
->title
))
1737 update_mode_lines
= 1;
1744 CHECK_STRING (name
);
1746 x_set_name_internal (f
, name
);
1750 x_set_scroll_bar_default_width (f
)
1753 int wid
= FRAME_COLUMN_WIDTH (f
);
1755 #ifdef USE_TOOLKIT_SCROLL_BARS
1756 /* A minimum width of 14 doesn't look good for toolkit scroll bars. */
1757 int width
= 16 + 2 * VERTICAL_SCROLL_BAR_WIDTH_TRIM
;
1758 FRAME_CONFIG_SCROLL_BAR_COLS (f
) = (width
+ wid
- 1) / wid
;
1759 FRAME_CONFIG_SCROLL_BAR_WIDTH (f
) = width
;
1761 /* Make the actual width at least 14 pixels and a multiple of a
1763 FRAME_CONFIG_SCROLL_BAR_COLS (f
) = (14 + wid
- 1) / wid
;
1765 /* Use all of that space (aside from required margins) for the
1767 FRAME_CONFIG_SCROLL_BAR_WIDTH (f
) = 0;
1772 /* Record in frame F the specified or default value according to ALIST
1773 of the parameter named PROP (a Lisp symbol). If no value is
1774 specified for PROP, look for an X default for XPROP on the frame
1775 named NAME. If that is not found either, use the value DEFLT. */
1778 x_default_scroll_bar_color_parameter (f
, alist
, prop
, xprop
, xclass
,
1787 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
1790 tem
= x_get_arg (dpyinfo
, alist
, prop
, xprop
, xclass
, RES_TYPE_STRING
);
1791 if (EQ (tem
, Qunbound
))
1793 #ifdef USE_TOOLKIT_SCROLL_BARS
1795 /* See if an X resource for the scroll bar color has been
1797 tem
= display_x_get_resource (dpyinfo
,
1798 build_string (foreground_p
1801 empty_unibyte_string
,
1802 build_string ("verticalScrollBar"),
1803 empty_unibyte_string
);
1806 /* If nothing has been specified, scroll bars will use a
1807 toolkit-dependent default. Because these defaults are
1808 difficult to get at without actually creating a scroll
1809 bar, use nil to indicate that no color has been
1814 #else /* not USE_TOOLKIT_SCROLL_BARS */
1818 #endif /* not USE_TOOLKIT_SCROLL_BARS */
1821 x_set_frame_parameters (f
, Fcons (Fcons (prop
, tem
), Qnil
));
1828 #ifdef USE_X_TOOLKIT
1830 /* If the WM_PROTOCOLS property does not already contain WM_TAKE_FOCUS,
1831 WM_DELETE_WINDOW, and WM_SAVE_YOURSELF, then add them. (They may
1832 already be present because of the toolkit (Motif adds some of them,
1833 for example, but Xt doesn't). */
1836 hack_wm_protocols (f
, widget
)
1840 Display
*dpy
= XtDisplay (widget
);
1841 Window w
= XtWindow (widget
);
1842 int need_delete
= 1;
1849 unsigned char *catoms
;
1851 unsigned long nitems
= 0;
1852 unsigned long bytes_after
;
1854 if ((XGetWindowProperty (dpy
, w
,
1855 FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_protocols
,
1856 (long)0, (long)100, False
, XA_ATOM
,
1857 &type
, &format
, &nitems
, &bytes_after
,
1860 && format
== 32 && type
== XA_ATOM
)
1862 Atom
*atoms
= (Atom
*) catoms
;
1867 == FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_delete_window
)
1869 else if (atoms
[nitems
]
1870 == FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_take_focus
)
1872 else if (atoms
[nitems
]
1873 == FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_save_yourself
)
1884 props
[count
++] = FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_delete_window
;
1886 props
[count
++] = FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_take_focus
;
1888 props
[count
++] = FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_save_yourself
;
1890 XChangeProperty (dpy
, w
, FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_protocols
,
1891 XA_ATOM
, 32, PropModeAppend
,
1892 (unsigned char *) props
, count
);
1900 /* Support routines for XIC (X Input Context). */
1904 static XFontSet xic_create_xfontset
P_ ((struct frame
*));
1905 static XIMStyle best_xim_style
P_ ((XIMStyles
*, XIMStyles
*));
1908 /* Supported XIM styles, ordered by preference. */
1910 static XIMStyle supported_xim_styles
[] =
1912 XIMPreeditPosition
| XIMStatusArea
,
1913 XIMPreeditPosition
| XIMStatusNothing
,
1914 XIMPreeditPosition
| XIMStatusNone
,
1915 XIMPreeditNothing
| XIMStatusArea
,
1916 XIMPreeditNothing
| XIMStatusNothing
,
1917 XIMPreeditNothing
| XIMStatusNone
,
1918 XIMPreeditNone
| XIMStatusArea
,
1919 XIMPreeditNone
| XIMStatusNothing
,
1920 XIMPreeditNone
| XIMStatusNone
,
1925 /* Create an X fontset on frame F with base font name BASE_FONTNAME. */
1927 char xic_defaut_fontset
[] = "-*-*-*-r-normal--14-*-*-*-*-*-*-*";
1929 /* Create an Xt fontset spec from the name of a base font.
1930 If `motif' is True use the Motif syntax. */
1932 xic_create_fontsetname (base_fontname
, motif
)
1933 char *base_fontname
;
1936 const char *sep
= motif
? ";" : ",";
1939 /* Make a fontset name from the base font name. */
1940 if (xic_defaut_fontset
== base_fontname
)
1941 { /* There is no base font name, use the default. */
1942 int len
= strlen (base_fontname
) + 2;
1943 fontsetname
= xmalloc (len
);
1944 bzero (fontsetname
, len
);
1945 strcpy (fontsetname
, base_fontname
);
1949 /* Make a fontset name from the base font name.
1950 The font set will be made of the following elements:
1952 - the base font where the charset spec is replaced by -*-*.
1953 - the same but with the family also replaced with -*-*-. */
1954 char *p
= base_fontname
;
1957 for (i
= 0; *p
; p
++)
1960 { /* As the font name doesn't conform to XLFD, we can't
1961 modify it to generalize it to allcs and allfamilies.
1962 Use the specified font plus the default. */
1963 int len
= strlen (base_fontname
) + strlen (xic_defaut_fontset
) + 3;
1964 fontsetname
= xmalloc (len
);
1965 bzero (fontsetname
, len
);
1966 strcpy (fontsetname
, base_fontname
);
1967 strcat (fontsetname
, sep
);
1968 strcat (fontsetname
, xic_defaut_fontset
);
1973 char *p1
= NULL
, *p2
= NULL
, *p3
= NULL
;
1974 char *font_allcs
= NULL
;
1975 char *font_allfamilies
= NULL
;
1976 char *font_all
= NULL
;
1977 char *allcs
= "*-*-*-*-*-*-*";
1978 char *allfamilies
= "-*-*-";
1979 char *all
= "*-*-*-*-";
1982 for (i
= 0, p
= base_fontname
; i
< 8; p
++)
1995 /* If base_fontname specifies ADSTYLE, make it a
1999 int diff
= (p2
- p3
) - 2;
2001 base
= alloca (strlen (base_fontname
) + 1);
2002 bcopy (base_fontname
, base
, p3
- base_fontname
);
2003 base
[p3
- base_fontname
] = '*';
2004 base
[(p3
- base_fontname
) + 1] = '-';
2005 strcpy (base
+ (p3
- base_fontname
) + 2, p2
);
2006 p
= base
+ (p
- base_fontname
) - diff
;
2007 p1
= base
+ (p1
- base_fontname
);
2008 p2
= base
+ (p2
- base_fontname
) - diff
;
2009 base_fontname
= base
;
2012 /* Build the font spec that matches all charsets. */
2013 len
= p
- base_fontname
+ strlen (allcs
) + 1;
2014 font_allcs
= (char *) alloca (len
);
2015 bzero (font_allcs
, len
);
2016 bcopy (base_fontname
, font_allcs
, p
- base_fontname
);
2017 strcat (font_allcs
, allcs
);
2019 /* Build the font spec that matches all families and
2021 len
= p
- p1
+ strlen (allcs
) + strlen (allfamilies
) + 1;
2022 font_allfamilies
= (char *) alloca (len
);
2023 bzero (font_allfamilies
, len
);
2024 strcpy (font_allfamilies
, allfamilies
);
2025 bcopy (p1
, font_allfamilies
+ strlen (allfamilies
), p
- p1
);
2026 strcat (font_allfamilies
, allcs
);
2028 /* Build the font spec that matches all. */
2029 len
= p
- p2
+ strlen (allcs
) + strlen (all
) + strlen (allfamilies
) + 1;
2030 font_all
= (char *) alloca (len
);
2031 bzero (font_all
, len
);
2032 strcpy (font_all
, allfamilies
);
2033 strcat (font_all
, all
);
2034 bcopy (p2
, font_all
+ strlen (all
) + strlen (allfamilies
), p
- p2
);
2035 strcat (font_all
, allcs
);
2037 /* Build the actual font set name. */
2038 len
= strlen (base_fontname
) + strlen (font_allcs
)
2039 + strlen (font_allfamilies
) + strlen (font_all
) + 5;
2040 fontsetname
= xmalloc (len
);
2041 bzero (fontsetname
, len
);
2042 strcpy (fontsetname
, base_fontname
);
2043 strcat (fontsetname
, sep
);
2044 strcat (fontsetname
, font_allcs
);
2045 strcat (fontsetname
, sep
);
2046 strcat (fontsetname
, font_allfamilies
);
2047 strcat (fontsetname
, sep
);
2048 strcat (fontsetname
, font_all
);
2052 strcat (fontsetname
, ":");
2056 #ifdef DEBUG_XIC_FONTSET
2058 print_fontset_result (xfs
, name
, missing_list
, missing_count
)
2061 char **missing_list
;
2065 fprintf (stderr
, "XIC Fontset created: %s\n", name
);
2068 fprintf (stderr
, "XIC Fontset failed: %s\n", name
);
2069 while (missing_count
-- > 0)
2071 fprintf (stderr
, " missing: %s\n", *missing_list
);
2080 xic_create_xfontset (f
)
2083 XFontSet xfs
= NULL
;
2084 struct font
*font
= FRAME_FONT (f
);
2085 int pixel_size
= font
->pixel_size
;
2086 Lisp_Object rest
, frame
;
2088 /* See if there is another frame already using same fontset. */
2089 FOR_EACH_FRAME (rest
, frame
)
2091 struct frame
*cf
= XFRAME (frame
);
2093 if (cf
!= f
&& FRAME_LIVE_P (f
) && FRAME_X_P (cf
)
2094 && FRAME_X_DISPLAY_INFO (cf
) == FRAME_X_DISPLAY_INFO (f
)
2096 && FRAME_FONT (f
)->pixel_size
== pixel_size
)
2098 xfs
= FRAME_XIC_FONTSET (cf
);
2106 char **missing_list
;
2109 char *xlfd_format
= "-*-*-medium-r-normal--%d-*-*-*-*-*";
2111 sprintf (buf
, xlfd_format
, pixel_size
);
2112 missing_list
= NULL
;
2113 xfs
= XCreateFontSet (FRAME_X_DISPLAY (f
), buf
,
2114 &missing_list
, &missing_count
, &def_string
);
2115 #ifdef DEBUG_XIC_FONTSET
2116 print_fontset_result (xfs
, buf
, missing_list
, missing_count
);
2119 XFreeStringList (missing_list
);
2122 /* List of pixel sizes most likely available. Find one that
2123 is closest to pixel_size. */
2124 int sizes
[] = {0, 8, 10, 11, 12, 14, 17, 18, 20, 24, 26, 34, 0};
2125 int *smaller
, *larger
;
2127 for (smaller
= sizes
; smaller
[1]; smaller
++)
2128 if (smaller
[1] >= pixel_size
)
2130 larger
= smaller
+ 1;
2131 if (*larger
== pixel_size
)
2133 while (*smaller
|| *larger
)
2138 this_size
= *smaller
--;
2139 else if (! *smaller
)
2140 this_size
= *larger
++;
2141 else if (pixel_size
- *smaller
< *larger
- pixel_size
)
2142 this_size
= *smaller
--;
2144 this_size
= *larger
++;
2145 sprintf (buf
, xlfd_format
, this_size
);
2146 missing_list
= NULL
;
2147 xfs
= XCreateFontSet (FRAME_X_DISPLAY (f
), buf
,
2148 &missing_list
, &missing_count
, &def_string
);
2149 #ifdef DEBUG_XIC_FONTSET
2150 print_fontset_result (xfs
, buf
, missing_list
, missing_count
);
2153 XFreeStringList (missing_list
);
2160 char *last_resort
= "-*-*-*-r-normal--*-*-*-*-*-*";
2162 missing_list
= NULL
;
2163 xfs
= XCreateFontSet (FRAME_X_DISPLAY (f
), last_resort
,
2164 &missing_list
, &missing_count
, &def_string
);
2165 #ifdef DEBUG_XIC_FONTSET
2166 print_fontset_result (xfs
, last_resort
, missing_list
, missing_count
);
2169 XFreeStringList (missing_list
);
2177 /* Free the X fontset of frame F if it is the last frame using it. */
2180 xic_free_xfontset (f
)
2183 Lisp_Object rest
, frame
;
2186 if (!FRAME_XIC_FONTSET (f
))
2189 /* See if there is another frame sharing the same fontset. */
2190 FOR_EACH_FRAME (rest
, frame
)
2192 struct frame
*cf
= XFRAME (frame
);
2193 if (cf
!= f
&& FRAME_LIVE_P (f
) && FRAME_X_P (cf
)
2194 && FRAME_X_DISPLAY_INFO (cf
) == FRAME_X_DISPLAY_INFO (f
)
2195 && FRAME_XIC_FONTSET (cf
) == FRAME_XIC_FONTSET (f
))
2203 /* The fontset is not used anymore. It is safe to free it. */
2204 XFreeFontSet (FRAME_X_DISPLAY (f
), FRAME_XIC_FONTSET (f
));
2206 if (FRAME_XIC_BASE_FONTNAME (f
))
2207 xfree (FRAME_XIC_BASE_FONTNAME (f
));
2208 FRAME_XIC_BASE_FONTNAME (f
) = NULL
;
2209 FRAME_XIC_FONTSET (f
) = NULL
;
2213 /* Value is the best input style, given user preferences USER (already
2214 checked to be supported by Emacs), and styles supported by the
2215 input method XIM. */
2218 best_xim_style (user
, xim
)
2224 for (i
= 0; i
< user
->count_styles
; ++i
)
2225 for (j
= 0; j
< xim
->count_styles
; ++j
)
2226 if (user
->supported_styles
[i
] == xim
->supported_styles
[j
])
2227 return user
->supported_styles
[i
];
2229 /* Return the default style. */
2230 return XIMPreeditNothing
| XIMStatusNothing
;
2233 /* Create XIC for frame F. */
2235 static XIMStyle xic_style
;
2238 create_frame_xic (f
)
2243 XFontSet xfs
= NULL
;
2248 /* Create X fontset. */
2249 xfs
= xic_create_xfontset (f
);
2250 xim
= FRAME_X_XIM (f
);
2255 XVaNestedList preedit_attr
;
2256 XVaNestedList status_attr
;
2258 s_area
.x
= 0; s_area
.y
= 0; s_area
.width
= 1; s_area
.height
= 1;
2259 spot
.x
= 0; spot
.y
= 1;
2261 /* Determine XIC style. */
2264 XIMStyles supported_list
;
2265 supported_list
.count_styles
= (sizeof supported_xim_styles
2266 / sizeof supported_xim_styles
[0]);
2267 supported_list
.supported_styles
= supported_xim_styles
;
2268 xic_style
= best_xim_style (&supported_list
,
2269 FRAME_X_XIM_STYLES (f
));
2272 preedit_attr
= XVaCreateNestedList (0,
2275 FRAME_FOREGROUND_PIXEL (f
),
2277 FRAME_BACKGROUND_PIXEL (f
),
2278 (xic_style
& XIMPreeditPosition
2283 status_attr
= XVaCreateNestedList (0,
2289 FRAME_FOREGROUND_PIXEL (f
),
2291 FRAME_BACKGROUND_PIXEL (f
),
2294 xic
= XCreateIC (xim
,
2295 XNInputStyle
, xic_style
,
2296 XNClientWindow
, FRAME_X_WINDOW (f
),
2297 XNFocusWindow
, FRAME_X_WINDOW (f
),
2298 XNStatusAttributes
, status_attr
,
2299 XNPreeditAttributes
, preedit_attr
,
2301 XFree (preedit_attr
);
2302 XFree (status_attr
);
2305 FRAME_XIC (f
) = xic
;
2306 FRAME_XIC_STYLE (f
) = xic_style
;
2307 FRAME_XIC_FONTSET (f
) = xfs
;
2311 /* Destroy XIC and free XIC fontset of frame F, if any. */
2317 if (FRAME_XIC (f
) == NULL
)
2320 XDestroyIC (FRAME_XIC (f
));
2321 xic_free_xfontset (f
);
2323 FRAME_XIC (f
) = NULL
;
2327 /* Place preedit area for XIC of window W's frame to specified
2328 pixel position X/Y. X and Y are relative to window W. */
2331 xic_set_preeditarea (w
, x
, y
)
2335 struct frame
*f
= XFRAME (w
->frame
);
2339 spot
.x
= WINDOW_TO_FRAME_PIXEL_X (w
, x
) + WINDOW_LEFT_FRINGE_WIDTH (w
);
2340 spot
.y
= WINDOW_TO_FRAME_PIXEL_Y (w
, y
) + FONT_BASE (FRAME_FONT (f
));
2341 attr
= XVaCreateNestedList (0, XNSpotLocation
, &spot
, NULL
);
2342 XSetICValues (FRAME_XIC (f
), XNPreeditAttributes
, attr
, NULL
);
2347 /* Place status area for XIC in bottom right corner of frame F.. */
2350 xic_set_statusarea (f
)
2353 XIC xic
= FRAME_XIC (f
);
2358 /* Negotiate geometry of status area. If input method has existing
2359 status area, use its current size. */
2360 area
.x
= area
.y
= area
.width
= area
.height
= 0;
2361 attr
= XVaCreateNestedList (0, XNAreaNeeded
, &area
, NULL
);
2362 XSetICValues (xic
, XNStatusAttributes
, attr
, NULL
);
2365 attr
= XVaCreateNestedList (0, XNAreaNeeded
, &needed
, NULL
);
2366 XGetICValues (xic
, XNStatusAttributes
, attr
, NULL
);
2369 if (needed
->width
== 0) /* Use XNArea instead of XNAreaNeeded */
2371 attr
= XVaCreateNestedList (0, XNArea
, &needed
, NULL
);
2372 XGetICValues (xic
, XNStatusAttributes
, attr
, NULL
);
2376 area
.width
= needed
->width
;
2377 area
.height
= needed
->height
;
2378 area
.x
= FRAME_PIXEL_WIDTH (f
) - area
.width
- FRAME_INTERNAL_BORDER_WIDTH (f
);
2379 area
.y
= (FRAME_PIXEL_HEIGHT (f
) - area
.height
2380 - FRAME_MENUBAR_HEIGHT (f
)
2381 - FRAME_TOOLBAR_HEIGHT (f
)
2382 - FRAME_INTERNAL_BORDER_WIDTH (f
));
2385 attr
= XVaCreateNestedList (0, XNArea
, &area
, NULL
);
2386 XSetICValues (xic
, XNStatusAttributes
, attr
, NULL
);
2391 /* Set X fontset for XIC of frame F, using base font name
2392 BASE_FONTNAME. Called when a new Emacs fontset is chosen. */
2395 xic_set_xfontset (f
, base_fontname
)
2397 char *base_fontname
;
2402 xic_free_xfontset (f
);
2404 xfs
= xic_create_xfontset (f
);
2406 attr
= XVaCreateNestedList (0, XNFontSet
, xfs
, NULL
);
2407 if (FRAME_XIC_STYLE (f
) & XIMPreeditPosition
)
2408 XSetICValues (FRAME_XIC (f
), XNPreeditAttributes
, attr
, NULL
);
2409 if (FRAME_XIC_STYLE (f
) & XIMStatusArea
)
2410 XSetICValues (FRAME_XIC (f
), XNStatusAttributes
, attr
, NULL
);
2413 FRAME_XIC_FONTSET (f
) = xfs
;
2416 #endif /* HAVE_X_I18N */
2420 #ifdef USE_X_TOOLKIT
2422 /* Create and set up the X widget for frame F. */
2425 x_window (f
, window_prompting
, minibuffer_only
)
2427 long window_prompting
;
2428 int minibuffer_only
;
2430 XClassHint class_hints
;
2431 XSetWindowAttributes attributes
;
2432 unsigned long attribute_mask
;
2433 Widget shell_widget
;
2435 Widget frame_widget
;
2441 /* Use the resource name as the top-level widget name
2442 for looking up resources. Make a non-Lisp copy
2443 for the window manager, so GC relocation won't bother it.
2445 Elsewhere we specify the window name for the window manager. */
2448 char *str
= (char *) SDATA (Vx_resource_name
);
2449 f
->namebuf
= (char *) xmalloc (strlen (str
) + 1);
2450 strcpy (f
->namebuf
, str
);
2454 XtSetArg (al
[ac
], XtNallowShellResize
, 1); ac
++;
2455 XtSetArg (al
[ac
], XtNinput
, 1); ac
++;
2456 XtSetArg (al
[ac
], XtNmappedWhenManaged
, 0); ac
++;
2457 XtSetArg (al
[ac
], XtNborderWidth
, f
->border_width
); ac
++;
2458 XtSetArg (al
[ac
], XtNvisual
, FRAME_X_VISUAL (f
)); ac
++;
2459 XtSetArg (al
[ac
], XtNdepth
, FRAME_X_DISPLAY_INFO (f
)->n_planes
); ac
++;
2460 XtSetArg (al
[ac
], XtNcolormap
, FRAME_X_COLORMAP (f
)); ac
++;
2461 shell_widget
= XtAppCreateShell (f
->namebuf
, EMACS_CLASS
,
2462 applicationShellWidgetClass
,
2463 FRAME_X_DISPLAY (f
), al
, ac
);
2465 f
->output_data
.x
->widget
= shell_widget
;
2466 /* maybe_set_screen_title_format (shell_widget); */
2468 pane_widget
= lw_create_widget ("main", "pane", widget_id_tick
++,
2469 (widget_value
*) NULL
,
2470 shell_widget
, False
,
2474 (lw_callback
) NULL
);
2477 XtSetArg (al
[ac
], XtNvisual
, FRAME_X_VISUAL (f
)); ac
++;
2478 XtSetArg (al
[ac
], XtNdepth
, FRAME_X_DISPLAY_INFO (f
)->n_planes
); ac
++;
2479 XtSetArg (al
[ac
], XtNcolormap
, FRAME_X_COLORMAP (f
)); ac
++;
2480 XtSetValues (pane_widget
, al
, ac
);
2481 f
->output_data
.x
->column_widget
= pane_widget
;
2483 /* mappedWhenManaged to false tells to the paned window to not map/unmap
2484 the emacs screen when changing menubar. This reduces flickering. */
2487 XtSetArg (al
[ac
], XtNmappedWhenManaged
, 0); ac
++;
2488 XtSetArg (al
[ac
], XtNshowGrip
, 0); ac
++;
2489 XtSetArg (al
[ac
], XtNallowResize
, 1); ac
++;
2490 XtSetArg (al
[ac
], XtNresizeToPreferred
, 1); ac
++;
2491 XtSetArg (al
[ac
], XtNemacsFrame
, f
); ac
++;
2492 XtSetArg (al
[ac
], XtNvisual
, FRAME_X_VISUAL (f
)); ac
++;
2493 XtSetArg (al
[ac
], XtNdepth
, FRAME_X_DISPLAY_INFO (f
)->n_planes
); ac
++;
2494 XtSetArg (al
[ac
], XtNcolormap
, FRAME_X_COLORMAP (f
)); ac
++;
2495 frame_widget
= XtCreateWidget (f
->namebuf
, emacsFrameClass
, pane_widget
,
2498 f
->output_data
.x
->edit_widget
= frame_widget
;
2500 XtManageChild (frame_widget
);
2502 /* Do some needed geometry management. */
2505 char *tem
, shell_position
[32];
2508 int extra_borders
= 0;
2510 = (f
->output_data
.x
->menubar_widget
2511 ? (f
->output_data
.x
->menubar_widget
->core
.height
2512 + f
->output_data
.x
->menubar_widget
->core
.border_width
)
2515 #if 0 /* Experimentally, we now get the right results
2516 for -geometry -0-0 without this. 24 Aug 96, rms. */
2517 if (FRAME_EXTERNAL_MENU_BAR (f
))
2520 XtVaGetValues (pane_widget
, XtNinternalBorderWidth
, &ibw
, NULL
);
2521 menubar_size
+= ibw
;
2525 f
->output_data
.x
->menubar_height
= menubar_size
;
2528 /* Motif seems to need this amount added to the sizes
2529 specified for the shell widget. The Athena/Lucid widgets don't.
2530 Both conclusions reached experimentally. -- rms. */
2531 XtVaGetValues (f
->output_data
.x
->edit_widget
, XtNinternalBorderWidth
,
2532 &extra_borders
, NULL
);
2536 /* Convert our geometry parameters into a geometry string
2538 Note that we do not specify here whether the position
2539 is a user-specified or program-specified one.
2540 We pass that information later, in x_wm_set_size_hints. */
2542 int left
= f
->left_pos
;
2543 int xneg
= window_prompting
& XNegative
;
2544 int top
= f
->top_pos
;
2545 int yneg
= window_prompting
& YNegative
;
2551 if (window_prompting
& USPosition
)
2552 sprintf (shell_position
, "=%dx%d%c%d%c%d",
2553 FRAME_PIXEL_WIDTH (f
) + extra_borders
,
2554 FRAME_PIXEL_HEIGHT (f
) + menubar_size
+ extra_borders
,
2555 (xneg
? '-' : '+'), left
,
2556 (yneg
? '-' : '+'), top
);
2559 sprintf (shell_position
, "=%dx%d",
2560 FRAME_PIXEL_WIDTH (f
) + extra_borders
,
2561 FRAME_PIXEL_HEIGHT (f
) + menubar_size
+ extra_borders
);
2563 /* Setting x and y when the position is not specified in
2564 the geometry string will set program position in the WM hints.
2565 If Emacs had just one program position, we could set it in
2566 fallback resources, but since each make-frame call can specify
2567 different program positions, this is easier. */
2568 XtSetArg (al
[ac
], XtNx
, left
); ac
++;
2569 XtSetArg (al
[ac
], XtNy
, top
); ac
++;
2573 len
= strlen (shell_position
) + 1;
2574 /* We don't free this because we don't know whether
2575 it is safe to free it while the frame exists.
2576 It isn't worth the trouble of arranging to free it
2577 when the frame is deleted. */
2578 tem
= (char *) xmalloc (len
);
2579 strncpy (tem
, shell_position
, len
);
2580 XtSetArg (al
[ac
], XtNgeometry
, tem
); ac
++;
2581 XtSetValues (shell_widget
, al
, ac
);
2584 XtManageChild (pane_widget
);
2585 XtRealizeWidget (shell_widget
);
2587 if (FRAME_X_EMBEDDED_P (f
))
2588 XReparentWindow (FRAME_X_DISPLAY (f
), XtWindow (shell_widget
),
2589 f
->output_data
.x
->parent_desc
, 0, 0);
2591 FRAME_X_WINDOW (f
) = XtWindow (frame_widget
);
2593 validate_x_resource_name ();
2595 class_hints
.res_name
= (char *) SDATA (Vx_resource_name
);
2596 class_hints
.res_class
= (char *) SDATA (Vx_resource_class
);
2597 XSetClassHint (FRAME_X_DISPLAY (f
), XtWindow (shell_widget
), &class_hints
);
2600 FRAME_XIC (f
) = NULL
;
2602 create_frame_xic (f
);
2605 f
->output_data
.x
->wm_hints
.input
= True
;
2606 f
->output_data
.x
->wm_hints
.flags
|= InputHint
;
2607 XSetWMHints (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2608 &f
->output_data
.x
->wm_hints
);
2610 hack_wm_protocols (f
, shell_widget
);
2613 XtAddEventHandler (shell_widget
, 0, True
, _XEditResCheckMessages
, 0);
2616 /* Do a stupid property change to force the server to generate a
2617 PropertyNotify event so that the event_stream server timestamp will
2618 be initialized to something relevant to the time we created the window.
2620 XChangeProperty (XtDisplay (frame_widget
), XtWindow (frame_widget
),
2621 FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_protocols
,
2622 XA_ATOM
, 32, PropModeAppend
,
2623 (unsigned char*) NULL
, 0);
2625 /* Make all the standard events reach the Emacs frame. */
2626 attributes
.event_mask
= STANDARD_EVENT_SET
;
2631 /* XIM server might require some X events. */
2632 unsigned long fevent
= NoEventMask
;
2633 XGetICValues (FRAME_XIC (f
), XNFilterEvents
, &fevent
, NULL
);
2634 attributes
.event_mask
|= fevent
;
2636 #endif /* HAVE_X_I18N */
2638 attribute_mask
= CWEventMask
;
2639 XChangeWindowAttributes (XtDisplay (shell_widget
), XtWindow (shell_widget
),
2640 attribute_mask
, &attributes
);
2642 XtMapWidget (frame_widget
);
2644 /* x_set_name normally ignores requests to set the name if the
2645 requested name is the same as the current name. This is the one
2646 place where that assumption isn't correct; f->name is set, but
2647 the X server hasn't been told. */
2650 int explicit = f
->explicit_name
;
2652 f
->explicit_name
= 0;
2655 x_set_name (f
, name
, explicit);
2658 XDefineCursor (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2659 f
->output_data
.x
->current_cursor
2660 = f
->output_data
.x
->text_cursor
);
2664 /* This is a no-op, except under Motif. Make sure main areas are
2665 set to something reasonable, in case we get an error later. */
2666 lw_set_main_areas (pane_widget
, 0, frame_widget
);
2669 #else /* not USE_X_TOOLKIT */
2675 if (! xg_create_frame_widgets (f
))
2676 error ("Unable to create window");
2679 FRAME_XIC (f
) = NULL
;
2683 create_frame_xic (f
);
2686 /* XIM server might require some X events. */
2687 unsigned long fevent
= NoEventMask
;
2688 XGetICValues (FRAME_XIC (f
), XNFilterEvents
, &fevent
, NULL
);
2690 if (fevent
!= NoEventMask
)
2692 XSetWindowAttributes attributes
;
2693 XWindowAttributes wattr
;
2694 unsigned long attribute_mask
;
2696 XGetWindowAttributes (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2698 attributes
.event_mask
= wattr
.your_event_mask
| fevent
;
2699 attribute_mask
= CWEventMask
;
2700 XChangeWindowAttributes (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2701 attribute_mask
, &attributes
);
2709 #else /*! USE_GTK */
2710 /* Create and set up the X window for frame F. */
2717 XClassHint class_hints
;
2718 XSetWindowAttributes attributes
;
2719 unsigned long attribute_mask
;
2721 attributes
.background_pixel
= FRAME_BACKGROUND_PIXEL (f
);
2722 attributes
.border_pixel
= f
->output_data
.x
->border_pixel
;
2723 attributes
.bit_gravity
= StaticGravity
;
2724 attributes
.backing_store
= NotUseful
;
2725 attributes
.save_under
= True
;
2726 attributes
.event_mask
= STANDARD_EVENT_SET
;
2727 attributes
.colormap
= FRAME_X_COLORMAP (f
);
2728 attribute_mask
= (CWBackPixel
| CWBorderPixel
| CWBitGravity
| CWEventMask
2733 = XCreateWindow (FRAME_X_DISPLAY (f
),
2734 f
->output_data
.x
->parent_desc
,
2737 FRAME_PIXEL_WIDTH (f
), FRAME_PIXEL_HEIGHT (f
),
2739 CopyFromParent
, /* depth */
2740 InputOutput
, /* class */
2742 attribute_mask
, &attributes
);
2747 create_frame_xic (f
);
2750 /* XIM server might require some X events. */
2751 unsigned long fevent
= NoEventMask
;
2752 XGetICValues (FRAME_XIC (f
), XNFilterEvents
, &fevent
, NULL
);
2753 attributes
.event_mask
|= fevent
;
2754 attribute_mask
= CWEventMask
;
2755 XChangeWindowAttributes (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2756 attribute_mask
, &attributes
);
2759 #endif /* HAVE_X_I18N */
2761 validate_x_resource_name ();
2763 class_hints
.res_name
= (char *) SDATA (Vx_resource_name
);
2764 class_hints
.res_class
= (char *) SDATA (Vx_resource_class
);
2765 XSetClassHint (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), &class_hints
);
2767 /* The menubar is part of the ordinary display;
2768 it does not count in addition to the height of the window. */
2769 f
->output_data
.x
->menubar_height
= 0;
2771 /* This indicates that we use the "Passive Input" input model.
2772 Unless we do this, we don't get the Focus{In,Out} events that we
2773 need to draw the cursor correctly. Accursed bureaucrats.
2774 XWhipsAndChains (FRAME_X_DISPLAY (f), IronMaiden, &TheRack); */
2776 f
->output_data
.x
->wm_hints
.input
= True
;
2777 f
->output_data
.x
->wm_hints
.flags
|= InputHint
;
2778 XSetWMHints (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2779 &f
->output_data
.x
->wm_hints
);
2780 f
->output_data
.x
->wm_hints
.icon_pixmap
= None
;
2782 /* Request "save yourself" and "delete window" commands from wm. */
2785 protocols
[0] = FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_delete_window
;
2786 protocols
[1] = FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_save_yourself
;
2787 XSetWMProtocols (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), protocols
, 2);
2790 /* x_set_name normally ignores requests to set the name if the
2791 requested name is the same as the current name. This is the one
2792 place where that assumption isn't correct; f->name is set, but
2793 the X server hasn't been told. */
2796 int explicit = f
->explicit_name
;
2798 f
->explicit_name
= 0;
2801 x_set_name (f
, name
, explicit);
2804 XDefineCursor (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2805 f
->output_data
.x
->current_cursor
2806 = f
->output_data
.x
->text_cursor
);
2810 if (FRAME_X_WINDOW (f
) == 0)
2811 error ("Unable to create window");
2814 #endif /* not USE_GTK */
2815 #endif /* not USE_X_TOOLKIT */
2817 /* Verify that the icon position args for this window are valid. */
2820 x_icon_verify (f
, parms
)
2824 Lisp_Object icon_x
, icon_y
;
2826 /* Set the position of the icon. Note that twm groups all
2827 icons in an icon window. */
2828 icon_x
= x_frame_get_and_record_arg (f
, parms
, Qicon_left
, 0, 0, RES_TYPE_NUMBER
);
2829 icon_y
= x_frame_get_and_record_arg (f
, parms
, Qicon_top
, 0, 0, RES_TYPE_NUMBER
);
2830 if (!EQ (icon_x
, Qunbound
) && !EQ (icon_y
, Qunbound
))
2832 CHECK_NUMBER (icon_x
);
2833 CHECK_NUMBER (icon_y
);
2835 else if (!EQ (icon_x
, Qunbound
) || !EQ (icon_y
, Qunbound
))
2836 error ("Both left and top icon corners of icon must be specified");
2839 /* Handle the icon stuff for this window. Perhaps later we might
2840 want an x_set_icon_position which can be called interactively as
2848 Lisp_Object icon_x
, icon_y
;
2850 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
2853 /* Set the position of the icon. Note that twm groups all
2854 icons in an icon window. */
2855 icon_x
= x_frame_get_and_record_arg (f
, parms
, Qicon_left
, 0, 0, RES_TYPE_NUMBER
);
2856 icon_y
= x_frame_get_and_record_arg (f
, parms
, Qicon_top
, 0, 0, RES_TYPE_NUMBER
);
2857 if (!EQ (icon_x
, Qunbound
) && !EQ (icon_y
, Qunbound
))
2859 CHECK_NUMBER (icon_x
);
2860 CHECK_NUMBER (icon_y
);
2862 else if (!EQ (icon_x
, Qunbound
) || !EQ (icon_y
, Qunbound
))
2863 error ("Both left and top icon corners of icon must be specified");
2867 if (! EQ (icon_x
, Qunbound
))
2868 x_wm_set_icon_position (f
, XINT (icon_x
), XINT (icon_y
));
2870 #if 0 /* x_get_arg removes the visibility parameter as a side effect,
2871 but x_create_frame still needs it. */
2872 /* Start up iconic or window? */
2873 x_wm_set_window_state
2874 (f
, (EQ (x_get_arg (dpyinfo
, parms
, Qvisibility
, 0, 0, RES_TYPE_SYMBOL
),
2880 x_text_icon (f
, (char *) SDATA ((!NILP (f
->icon_name
)
2887 /* Make the GCs needed for this window, setting the
2888 background, border and mouse colors; also create the
2889 mouse cursor and the gray border tile. */
2895 XGCValues gc_values
;
2899 /* Create the GCs of this frame.
2900 Note that many default values are used. */
2902 gc_values
.foreground
= FRAME_FOREGROUND_PIXEL (f
);
2903 gc_values
.background
= FRAME_BACKGROUND_PIXEL (f
);
2904 gc_values
.line_width
= 0; /* Means 1 using fast algorithm. */
2905 f
->output_data
.x
->normal_gc
2906 = XCreateGC (FRAME_X_DISPLAY (f
),
2908 GCLineWidth
| GCForeground
| GCBackground
,
2911 /* Reverse video style. */
2912 gc_values
.foreground
= FRAME_BACKGROUND_PIXEL (f
);
2913 gc_values
.background
= FRAME_FOREGROUND_PIXEL (f
);
2914 f
->output_data
.x
->reverse_gc
2915 = XCreateGC (FRAME_X_DISPLAY (f
),
2917 GCForeground
| GCBackground
| GCLineWidth
,
2920 /* Cursor has cursor-color background, background-color foreground. */
2921 gc_values
.foreground
= FRAME_BACKGROUND_PIXEL (f
);
2922 gc_values
.background
= f
->output_data
.x
->cursor_pixel
;
2923 gc_values
.fill_style
= FillOpaqueStippled
;
2924 f
->output_data
.x
->cursor_gc
2925 = XCreateGC (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2926 (GCForeground
| GCBackground
2927 | GCFillStyle
| GCLineWidth
),
2931 f
->output_data
.x
->white_relief
.gc
= 0;
2932 f
->output_data
.x
->black_relief
.gc
= 0;
2934 /* Create the gray border tile used when the pointer is not in
2935 the frame. Since this depends on the frame's pixel values,
2936 this must be done on a per-frame basis. */
2937 f
->output_data
.x
->border_tile
2938 = (XCreatePixmapFromBitmapData
2939 (FRAME_X_DISPLAY (f
), FRAME_X_DISPLAY_INFO (f
)->root_window
,
2940 gray_bits
, gray_width
, gray_height
,
2941 FRAME_FOREGROUND_PIXEL (f
),
2942 FRAME_BACKGROUND_PIXEL (f
),
2943 DefaultDepth (FRAME_X_DISPLAY (f
), FRAME_X_SCREEN_NUMBER (f
))));
2949 /* Free what was allocated in x_make_gc. */
2955 Display
*dpy
= FRAME_X_DISPLAY (f
);
2959 if (f
->output_data
.x
->normal_gc
)
2961 XFreeGC (dpy
, f
->output_data
.x
->normal_gc
);
2962 f
->output_data
.x
->normal_gc
= 0;
2965 if (f
->output_data
.x
->reverse_gc
)
2967 XFreeGC (dpy
, f
->output_data
.x
->reverse_gc
);
2968 f
->output_data
.x
->reverse_gc
= 0;
2971 if (f
->output_data
.x
->cursor_gc
)
2973 XFreeGC (dpy
, f
->output_data
.x
->cursor_gc
);
2974 f
->output_data
.x
->cursor_gc
= 0;
2977 if (f
->output_data
.x
->border_tile
)
2979 XFreePixmap (dpy
, f
->output_data
.x
->border_tile
);
2980 f
->output_data
.x
->border_tile
= 0;
2987 /* Handler for signals raised during x_create_frame and
2988 x_create_top_frame. FRAME is the frame which is partially
2992 unwind_create_frame (frame
)
2995 struct frame
*f
= XFRAME (frame
);
2997 /* If frame is already dead, nothing to do. This can happen if the
2998 display is disconnected after the frame has become official, but
2999 before x_create_frame removes the unwind protect. */
3000 if (!FRAME_LIVE_P (f
))
3003 /* If frame is ``official'', nothing to do. */
3004 if (!CONSP (Vframe_list
) || !EQ (XCAR (Vframe_list
), frame
))
3007 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
3010 x_free_frame_resources (f
);
3013 /* Check that reference counts are indeed correct. */
3014 xassert (dpyinfo
->reference_count
== dpyinfo_refcount
);
3015 xassert (dpyinfo
->image_cache
->refcount
== image_cache_refcount
);
3025 x_default_font_parameter (f
, parms
)
3029 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
3030 Lisp_Object font_param
= x_get_arg (dpyinfo
, parms
, Qfont
, NULL
, NULL
,
3033 int got_from_gconf
= 0;
3034 if (EQ (font_param
, Qunbound
))
3037 if (NILP (font_param
))
3039 /* System font takes precedendce over X resources. We must suggest this
3040 regardless of font-use-system-font because .emacs may not have been
3042 const char *system_font
= xsettings_get_system_font ();
3043 if (system_font
) font_param
= make_string (system_font
,
3044 strlen (system_font
));
3047 font
= !NILP (font_param
) ? font_param
3048 : x_get_arg (dpyinfo
, parms
, Qfont
, "font", "Font", RES_TYPE_STRING
);
3050 if (! STRINGP (font
))
3055 /* This will find the normal Xft font. */
3058 "-adobe-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-1",
3059 "-misc-fixed-medium-r-normal-*-*-140-*-*-c-*-iso8859-1",
3060 "-*-*-medium-r-normal-*-*-140-*-*-c-*-iso8859-1",
3061 /* This was formerly the first thing tried, but it finds
3062 too many fonts and takes too long. */
3063 "-*-*-medium-r-*-*-*-*-*-*-c-*-iso8859-1",
3064 /* If those didn't work, look for something which will
3066 "-*-fixed-*-*-*-*-*-140-*-*-c-*-iso8859-1",
3071 for (i
= 0; names
[i
]; i
++)
3073 font
= font_open_by_name (f
, names
[i
]);
3078 error ("No suitable font was found");
3080 else if (!NILP (font_param
))
3082 /* Remember the explicit font parameter, so we can re-apply it after
3083 we've applied the `default' face settings. */
3084 x_set_frame_parameters (f
, Fcons (Fcons (Qfont_param
, font_param
), Qnil
));
3087 x_default_parameter (f
, parms
, Qfont
, font
,
3088 got_from_gconf
? NULL
: "font",
3089 got_from_gconf
? NULL
: "Font",
3094 DEFUN ("x-wm-set-size-hint", Fx_wm_set_size_hint
, Sx_wm_set_size_hint
,
3096 doc
: /* Send the size hints for frame FRAME to the window manager.
3097 If FRAME is nil, use the selected frame. */)
3103 frame
= selected_frame
;
3107 x_wm_set_size_hint (f
, 0, 0);
3112 DEFUN ("x-create-frame", Fx_create_frame
, Sx_create_frame
,
3114 doc
: /* Make a new X window, which is called a "frame" in Emacs terms.
3115 Return an Emacs frame object.
3116 PARMS is an alist of frame parameters.
3117 If the parameters specify that the frame should not have a minibuffer,
3118 and do not specify a specific minibuffer window to use,
3119 then `default-minibuffer-frame' must be a frame whose minibuffer can
3120 be shared by the new frame.
3122 This function is an internal primitive--use `make-frame' instead. */)
3127 Lisp_Object frame
, tem
;
3129 int minibuffer_only
= 0;
3130 long window_prompting
= 0;
3132 int count
= SPECPDL_INDEX ();
3133 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
3134 Lisp_Object display
;
3135 struct x_display_info
*dpyinfo
= NULL
;
3139 parms
= Fcopy_alist (parms
);
3141 /* Use this general default value to start with
3142 until we know if this frame has a specified name. */
3143 Vx_resource_name
= Vinvocation_name
;
3145 display
= x_get_arg (dpyinfo
, parms
, Qterminal
, 0, 0, RES_TYPE_NUMBER
);
3146 if (EQ (display
, Qunbound
))
3147 display
= x_get_arg (dpyinfo
, parms
, Qdisplay
, 0, 0, RES_TYPE_STRING
);
3148 if (EQ (display
, Qunbound
))
3150 dpyinfo
= check_x_display_info (display
);
3151 kb
= dpyinfo
->terminal
->kboard
;
3153 if (!dpyinfo
->terminal
->name
)
3154 error ("Terminal is not live, can't create new frames on it");
3156 name
= x_get_arg (dpyinfo
, parms
, Qname
, "name", "Name", RES_TYPE_STRING
);
3158 && ! EQ (name
, Qunbound
)
3160 error ("Invalid frame name--not a string or nil");
3163 Vx_resource_name
= name
;
3165 /* See if parent window is specified. */
3166 parent
= x_get_arg (dpyinfo
, parms
, Qparent_id
, NULL
, NULL
, RES_TYPE_NUMBER
);
3167 if (EQ (parent
, Qunbound
))
3169 if (! NILP (parent
))
3170 CHECK_NUMBER (parent
);
3172 /* make_frame_without_minibuffer can run Lisp code and garbage collect. */
3173 /* No need to protect DISPLAY because that's not used after passing
3174 it to make_frame_without_minibuffer. */
3176 GCPRO4 (parms
, parent
, name
, frame
);
3177 tem
= x_get_arg (dpyinfo
, parms
, Qminibuffer
, "minibuffer", "Minibuffer",
3179 if (EQ (tem
, Qnone
) || NILP (tem
))
3180 f
= make_frame_without_minibuffer (Qnil
, kb
, display
);
3181 else if (EQ (tem
, Qonly
))
3183 f
= make_minibuffer_frame ();
3184 minibuffer_only
= 1;
3186 else if (WINDOWP (tem
))
3187 f
= make_frame_without_minibuffer (tem
, kb
, display
);
3191 XSETFRAME (frame
, f
);
3193 /* Note that X Windows does support scroll bars. */
3194 FRAME_CAN_HAVE_SCROLL_BARS (f
) = 1;
3196 f
->terminal
= dpyinfo
->terminal
;
3197 f
->terminal
->reference_count
++;
3199 f
->output_method
= output_x_window
;
3200 f
->output_data
.x
= (struct x_output
*) xmalloc (sizeof (struct x_output
));
3201 bzero (f
->output_data
.x
, sizeof (struct x_output
));
3202 f
->output_data
.x
->icon_bitmap
= -1;
3203 FRAME_FONTSET (f
) = -1;
3204 f
->output_data
.x
->scroll_bar_foreground_pixel
= -1;
3205 f
->output_data
.x
->scroll_bar_background_pixel
= -1;
3206 #ifdef USE_TOOLKIT_SCROLL_BARS
3207 f
->output_data
.x
->scroll_bar_top_shadow_pixel
= -1;
3208 f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
= -1;
3209 #endif /* USE_TOOLKIT_SCROLL_BARS */
3212 = x_get_arg (dpyinfo
, parms
, Qicon_name
, "iconName", "Title",
3214 if (! STRINGP (f
->icon_name
))
3215 f
->icon_name
= Qnil
;
3217 FRAME_X_DISPLAY_INFO (f
) = dpyinfo
;
3219 /* With FRAME_X_DISPLAY_INFO set up, this unwind-protect is safe. */
3220 record_unwind_protect (unwind_create_frame
, frame
);
3222 image_cache_refcount
= FRAME_IMAGE_CACHE (f
)->refcount
;
3223 dpyinfo_refcount
= dpyinfo
->reference_count
;
3224 #endif /* GLYPH_DEBUG */
3226 /* These colors will be set anyway later, but it's important
3227 to get the color reference counts right, so initialize them! */
3230 struct gcpro gcpro1
;
3232 /* Function x_decode_color can signal an error. Make
3233 sure to initialize color slots so that we won't try
3234 to free colors we haven't allocated. */
3235 FRAME_FOREGROUND_PIXEL (f
) = -1;
3236 FRAME_BACKGROUND_PIXEL (f
) = -1;
3237 f
->output_data
.x
->cursor_pixel
= -1;
3238 f
->output_data
.x
->cursor_foreground_pixel
= -1;
3239 f
->output_data
.x
->border_pixel
= -1;
3240 f
->output_data
.x
->mouse_pixel
= -1;
3242 black
= build_string ("black");
3244 FRAME_FOREGROUND_PIXEL (f
)
3245 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
3246 FRAME_BACKGROUND_PIXEL (f
)
3247 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
3248 f
->output_data
.x
->cursor_pixel
3249 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
3250 f
->output_data
.x
->cursor_foreground_pixel
3251 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
3252 f
->output_data
.x
->border_pixel
3253 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
3254 f
->output_data
.x
->mouse_pixel
3255 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
3259 /* Specify the parent under which to make this X window. */
3263 f
->output_data
.x
->parent_desc
= (Window
) XFASTINT (parent
);
3264 f
->output_data
.x
->explicit_parent
= 1;
3268 f
->output_data
.x
->parent_desc
= FRAME_X_DISPLAY_INFO (f
)->root_window
;
3269 f
->output_data
.x
->explicit_parent
= 0;
3272 /* Set the name; the functions to which we pass f expect the name to
3274 if (EQ (name
, Qunbound
) || NILP (name
))
3276 f
->name
= build_string (dpyinfo
->x_id_name
);
3277 f
->explicit_name
= 0;
3282 f
->explicit_name
= 1;
3283 /* use the frame's title when getting resources for this frame. */
3284 specbind (Qx_resource_name
, name
);
3287 f
->resx
= dpyinfo
->resx
;
3288 f
->resy
= dpyinfo
->resy
;
3290 #ifdef HAVE_FREETYPE
3292 register_font_driver (&xftfont_driver
, f
);
3293 #else /* not HAVE_XFT */
3294 register_font_driver (&ftxfont_driver
, f
);
3295 #endif /* not HAVE_XFT */
3296 #endif /* HAVE_FREETYPE */
3297 register_font_driver (&xfont_driver
, f
);
3299 x_default_parameter (f
, parms
, Qfont_backend
, Qnil
,
3300 "fontBackend", "FontBackend", RES_TYPE_STRING
);
3302 /* Extract the window parameters from the supplied values
3303 that are needed to determine window geometry. */
3304 x_default_font_parameter (f
, parms
);
3305 if (!FRAME_FONT (f
))
3307 delete_frame (frame
, Qnoelisp
);
3308 error ("Invalid frame font");
3312 /* Prevent lwlib/xlwmenu.c from crashing because of a bug
3313 whereby it fails to get any font. */
3314 xlwmenu_default_font
= XLoadQueryFont (FRAME_X_DISPLAY (f
), "fixed");
3317 /* Frame contents get displaced if an embedded X window has a border. */
3318 if (! FRAME_X_EMBEDDED_P (f
))
3319 x_default_parameter (f
, parms
, Qborder_width
, make_number (2),
3320 "borderWidth", "BorderWidth", RES_TYPE_NUMBER
);
3322 /* This defaults to 1 in order to match xterm. We recognize either
3323 internalBorderWidth or internalBorder (which is what xterm calls
3325 if (NILP (Fassq (Qinternal_border_width
, parms
)))
3329 value
= x_get_arg (dpyinfo
, parms
, Qinternal_border_width
,
3330 "internalBorder", "internalBorder", RES_TYPE_NUMBER
);
3331 if (! EQ (value
, Qunbound
))
3332 parms
= Fcons (Fcons (Qinternal_border_width
, value
),
3335 x_default_parameter (f
, parms
, Qinternal_border_width
,
3336 #ifdef USE_GTK /* We used to impose 0 in xg_create_frame_widgets. */
3341 "internalBorderWidth", "internalBorderWidth",
3343 x_default_parameter (f
, parms
, Qvertical_scroll_bars
, Qleft
,
3344 "verticalScrollBars", "ScrollBars",
3347 /* Also do the stuff which must be set before the window exists. */
3348 x_default_parameter (f
, parms
, Qforeground_color
, build_string ("black"),
3349 "foreground", "Foreground", RES_TYPE_STRING
);
3350 x_default_parameter (f
, parms
, Qbackground_color
, build_string ("white"),
3351 "background", "Background", RES_TYPE_STRING
);
3352 x_default_parameter (f
, parms
, Qmouse_color
, build_string ("black"),
3353 "pointerColor", "Foreground", RES_TYPE_STRING
);
3354 x_default_parameter (f
, parms
, Qcursor_color
, build_string ("black"),
3355 "cursorColor", "Foreground", RES_TYPE_STRING
);
3356 x_default_parameter (f
, parms
, Qborder_color
, build_string ("black"),
3357 "borderColor", "BorderColor", RES_TYPE_STRING
);
3358 x_default_parameter (f
, parms
, Qscreen_gamma
, Qnil
,
3359 "screenGamma", "ScreenGamma", RES_TYPE_FLOAT
);
3360 x_default_parameter (f
, parms
, Qline_spacing
, Qnil
,
3361 "lineSpacing", "LineSpacing", RES_TYPE_NUMBER
);
3362 x_default_parameter (f
, parms
, Qleft_fringe
, Qnil
,
3363 "leftFringe", "LeftFringe", RES_TYPE_NUMBER
);
3364 x_default_parameter (f
, parms
, Qright_fringe
, Qnil
,
3365 "rightFringe", "RightFringe", RES_TYPE_NUMBER
);
3367 x_default_scroll_bar_color_parameter (f
, parms
, Qscroll_bar_foreground
,
3368 "scrollBarForeground",
3369 "ScrollBarForeground", 1);
3370 x_default_scroll_bar_color_parameter (f
, parms
, Qscroll_bar_background
,
3371 "scrollBarBackground",
3372 "ScrollBarBackground", 0);
3374 /* Init faces before x_default_parameter is called for scroll-bar
3375 parameters because that function calls x_set_scroll_bar_width,
3376 which calls change_frame_size, which calls Fset_window_buffer,
3377 which runs hooks, which call Fvertical_motion. At the end, we
3378 end up in init_iterator with a null face cache, which should not
3380 init_frame_faces (f
);
3382 x_default_parameter (f
, parms
, Qmenu_bar_lines
, make_number (1),
3383 "menuBar", "MenuBar", RES_TYPE_NUMBER
);
3384 x_default_parameter (f
, parms
, Qtool_bar_lines
, make_number (1),
3385 "toolBar", "ToolBar", RES_TYPE_NUMBER
);
3386 x_default_parameter (f
, parms
, Qbuffer_predicate
, Qnil
,
3387 "bufferPredicate", "BufferPredicate",
3389 x_default_parameter (f
, parms
, Qtitle
, Qnil
,
3390 "title", "Title", RES_TYPE_STRING
);
3391 x_default_parameter (f
, parms
, Qwait_for_wm
, Qt
,
3392 "waitForWM", "WaitForWM", RES_TYPE_BOOLEAN
);
3393 x_default_parameter (f
, parms
, Qfullscreen
, Qnil
,
3394 "fullscreen", "Fullscreen", RES_TYPE_SYMBOL
);
3396 /* Compute the size of the X window. */
3397 window_prompting
= x_figure_window_size (f
, parms
, 1);
3399 tem
= x_get_arg (dpyinfo
, parms
, Qunsplittable
, 0, 0, RES_TYPE_BOOLEAN
);
3400 f
->no_split
= minibuffer_only
|| EQ (tem
, Qt
);
3402 x_icon_verify (f
, parms
);
3404 /* Create the X widget or window. */
3405 #ifdef USE_X_TOOLKIT
3406 x_window (f
, window_prompting
, minibuffer_only
);
3414 /* Now consider the frame official. */
3415 FRAME_X_DISPLAY_INFO (f
)->reference_count
++;
3416 Vframe_list
= Fcons (frame
, Vframe_list
);
3418 /* We need to do this after creating the X window, so that the
3419 icon-creation functions can say whose icon they're describing. */
3420 x_default_parameter (f
, parms
, Qicon_type
, Qt
,
3421 "bitmapIcon", "BitmapIcon", RES_TYPE_SYMBOL
);
3423 x_default_parameter (f
, parms
, Qauto_raise
, Qnil
,
3424 "autoRaise", "AutoRaiseLower", RES_TYPE_BOOLEAN
);
3425 x_default_parameter (f
, parms
, Qauto_lower
, Qnil
,
3426 "autoLower", "AutoRaiseLower", RES_TYPE_BOOLEAN
);
3427 x_default_parameter (f
, parms
, Qcursor_type
, Qbox
,
3428 "cursorType", "CursorType", RES_TYPE_SYMBOL
);
3429 x_default_parameter (f
, parms
, Qscroll_bar_width
, Qnil
,
3430 "scrollBarWidth", "ScrollBarWidth",
3432 x_default_parameter (f
, parms
, Qalpha
, Qnil
,
3433 "alpha", "Alpha", RES_TYPE_NUMBER
);
3435 /* Dimensions, especially FRAME_LINES (f), must be done via change_frame_size.
3436 Change will not be effected unless different from the current
3438 width
= FRAME_COLS (f
);
3439 height
= FRAME_LINES (f
);
3441 SET_FRAME_COLS (f
, 0);
3442 FRAME_LINES (f
) = 0;
3443 change_frame_size (f
, height
, width
, 1, 0, 0);
3445 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
3446 /* Create the menu bar. */
3447 if (!minibuffer_only
&& FRAME_EXTERNAL_MENU_BAR (f
))
3449 /* If this signals an error, we haven't set size hints for the
3450 frame and we didn't make it visible. */
3451 initialize_frame_menubar (f
);
3454 /* This is a no-op, except under Motif where it arranges the
3455 main window for the widgets on it. */
3456 lw_set_main_areas (f
->output_data
.x
->column_widget
,
3457 f
->output_data
.x
->menubar_widget
,
3458 f
->output_data
.x
->edit_widget
);
3459 #endif /* not USE_GTK */
3461 #endif /* USE_X_TOOLKIT || USE_GTK */
3463 /* Tell the server what size and position, etc, we want, and how
3464 badly we want them. This should be done after we have the menu
3465 bar so that its size can be taken into account. */
3467 x_wm_set_size_hint (f
, window_prompting
, 0);
3470 /* Make the window appear on the frame and enable display, unless
3471 the caller says not to. However, with explicit parent, Emacs
3472 cannot control visibility, so don't try. */
3473 if (! f
->output_data
.x
->explicit_parent
)
3475 Lisp_Object visibility
;
3477 visibility
= x_get_arg (dpyinfo
, parms
, Qvisibility
, 0, 0,
3479 if (EQ (visibility
, Qunbound
))
3482 if (EQ (visibility
, Qicon
))
3483 x_iconify_frame (f
);
3484 else if (! NILP (visibility
))
3485 x_make_frame_visible (f
);
3487 /* Must have been Qnil. */
3491 /* Set the WM leader property. GTK does this itself, so this is not
3492 needed when using GTK. */
3493 if (dpyinfo
->client_leader_window
!= 0)
3496 XChangeProperty (FRAME_X_DISPLAY (f
),
3497 FRAME_OUTER_WINDOW (f
),
3498 dpyinfo
->Xatom_wm_client_leader
,
3499 XA_WINDOW
, 32, PropModeReplace
,
3500 (unsigned char *) &dpyinfo
->client_leader_window
, 1);
3504 /* Initialize `default-minibuffer-frame' in case this is the first
3505 frame on this terminal. */
3506 if (FRAME_HAS_MINIBUF_P (f
)
3507 && (!FRAMEP (kb
->Vdefault_minibuffer_frame
)
3508 || !FRAME_LIVE_P (XFRAME (kb
->Vdefault_minibuffer_frame
))))
3509 kb
->Vdefault_minibuffer_frame
= frame
;
3511 /* All remaining specified parameters, which have not been "used"
3512 by x_get_arg and friends, now go in the misc. alist of the frame. */
3513 for (tem
= parms
; CONSP (tem
); tem
= XCDR (tem
))
3514 if (CONSP (XCAR (tem
)) && !NILP (XCAR (XCAR (tem
))))
3515 f
->param_alist
= Fcons (XCAR (tem
), f
->param_alist
);
3519 /* Make sure windows on this frame appear in calls to next-window
3520 and similar functions. */
3521 Vwindow_list
= Qnil
;
3523 return unbind_to (count
, frame
);
3527 /* FRAME is used only to get a handle on the X display. We don't pass the
3528 display info directly because we're called from frame.c, which doesn't
3529 know about that structure. */
3532 x_get_focus_frame (frame
)
3533 struct frame
*frame
;
3535 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (frame
);
3537 if (! dpyinfo
->x_focus_frame
)
3540 XSETFRAME (xfocus
, dpyinfo
->x_focus_frame
);
3545 /* In certain situations, when the window manager follows a
3546 click-to-focus policy, there seems to be no way around calling
3547 XSetInputFocus to give another frame the input focus .
3549 In an ideal world, XSetInputFocus should generally be avoided so
3550 that applications don't interfere with the window manager's focus
3551 policy. But I think it's okay to use when it's clearly done
3552 following a user-command. */
3554 DEFUN ("x-focus-frame", Fx_focus_frame
, Sx_focus_frame
, 1, 1, 0,
3555 doc
: /* Set the input focus to FRAME.
3556 FRAME nil means use the selected frame. */)
3560 struct frame
*f
= check_x_frame (frame
);
3561 Display
*dpy
= FRAME_X_DISPLAY (f
);
3564 x_catch_errors (dpy
);
3565 XSetInputFocus (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
3566 RevertToParent
, CurrentTime
);
3567 x_ewmh_activate_frame (f
);
3568 x_uncatch_errors ();
3575 DEFUN ("xw-color-defined-p", Fxw_color_defined_p
, Sxw_color_defined_p
, 1, 2, 0,
3576 doc
: /* Internal function called by `color-defined-p', which see. */)
3578 Lisp_Object color
, frame
;
3581 FRAME_PTR f
= check_x_frame (frame
);
3583 CHECK_STRING (color
);
3585 if (x_defined_color (f
, SDATA (color
), &foo
, 0))
3591 DEFUN ("xw-color-values", Fxw_color_values
, Sxw_color_values
, 1, 2, 0,
3592 doc
: /* Internal function called by `color-values', which see. */)
3594 Lisp_Object color
, frame
;
3597 FRAME_PTR f
= check_x_frame (frame
);
3599 CHECK_STRING (color
);
3601 if (x_defined_color (f
, SDATA (color
), &foo
, 0))
3602 return list3 (make_number (foo
.red
),
3603 make_number (foo
.green
),
3604 make_number (foo
.blue
));
3609 DEFUN ("xw-display-color-p", Fxw_display_color_p
, Sxw_display_color_p
, 0, 1, 0,
3610 doc
: /* Internal function called by `display-color-p', which see. */)
3612 Lisp_Object terminal
;
3614 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3616 if (dpyinfo
->n_planes
<= 2)
3619 switch (dpyinfo
->visual
->class)
3632 DEFUN ("x-display-grayscale-p", Fx_display_grayscale_p
, Sx_display_grayscale_p
,
3634 doc
: /* Return t if the X display supports shades of gray.
3635 Note that color displays do support shades of gray.
3636 The optional argument TERMINAL specifies which display to ask about.
3637 TERMINAL should be a terminal object, a frame or a display name (a string).
3638 If omitted or nil, that stands for the selected frame's display. */)
3640 Lisp_Object terminal
;
3642 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3644 if (dpyinfo
->n_planes
<= 1)
3647 switch (dpyinfo
->visual
->class)
3662 DEFUN ("x-display-pixel-width", Fx_display_pixel_width
, Sx_display_pixel_width
,
3664 doc
: /* Return the width in pixels of the X display TERMINAL.
3665 The optional argument TERMINAL specifies which display to ask about.
3666 TERMINAL should be a terminal object, a frame or a display name (a string).
3667 If omitted or nil, that stands for the selected frame's display. */)
3669 Lisp_Object terminal
;
3671 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3673 return make_number (x_display_pixel_width (dpyinfo
));
3676 DEFUN ("x-display-pixel-height", Fx_display_pixel_height
,
3677 Sx_display_pixel_height
, 0, 1, 0,
3678 doc
: /* Return the height in pixels of the X display TERMINAL.
3679 The optional argument TERMINAL specifies which display to ask about.
3680 TERMINAL should be a terminal object, a frame or a display name (a string).
3681 If omitted or nil, that stands for the selected frame's display. */)
3683 Lisp_Object terminal
;
3685 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3687 return make_number (x_display_pixel_height (dpyinfo
));
3690 DEFUN ("x-display-planes", Fx_display_planes
, Sx_display_planes
,
3692 doc
: /* Return the number of bitplanes of the X display TERMINAL.
3693 The optional argument TERMINAL specifies which display to ask about.
3694 TERMINAL should be a terminal object, a frame or a display name (a string).
3695 If omitted or nil, that stands for the selected frame's display. */)
3697 Lisp_Object terminal
;
3699 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3701 return make_number (dpyinfo
->n_planes
);
3704 DEFUN ("x-display-color-cells", Fx_display_color_cells
, Sx_display_color_cells
,
3706 doc
: /* Return the number of color cells of the X display TERMINAL.
3707 The optional argument TERMINAL specifies which display to ask about.
3708 TERMINAL should be a terminal object, a frame or a display name (a string).
3709 If omitted or nil, that stands for the selected frame's display. */)
3711 Lisp_Object terminal
;
3713 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3715 int nr_planes
= DisplayPlanes (dpyinfo
->display
,
3716 XScreenNumberOfScreen (dpyinfo
->screen
));
3718 /* Truncate nr_planes to 24 to avoid integer overflow.
3719 Some displays says 32, but only 24 bits are actually significant.
3720 There are only very few and rare video cards that have more than
3721 24 significant bits. Also 24 bits is more than 16 million colors,
3722 it "should be enough for everyone". */
3723 if (nr_planes
> 24) nr_planes
= 24;
3725 return make_number (1 << nr_planes
);
3728 DEFUN ("x-server-max-request-size", Fx_server_max_request_size
,
3729 Sx_server_max_request_size
,
3731 doc
: /* Return the maximum request size of the X server of display TERMINAL.
3732 The optional argument TERMINAL specifies which display to ask about.
3733 TERMINAL should be a terminal object, a frame or a display name (a string).
3734 If omitted or nil, that stands for the selected frame's display. */)
3736 Lisp_Object terminal
;
3738 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3740 return make_number (MAXREQUEST (dpyinfo
->display
));
3743 DEFUN ("x-server-vendor", Fx_server_vendor
, Sx_server_vendor
, 0, 1, 0,
3744 doc
: /* Return the "vendor ID" string of the X server of display TERMINAL.
3745 \(Labelling every distributor as a "vendor" embodies the false assumption
3746 that operating systems cannot be developed and distributed noncommercially.)
3747 The optional argument TERMINAL specifies which display to ask about.
3748 TERMINAL should be a terminal object, a frame or a display name (a string).
3749 If omitted or nil, that stands for the selected frame's display. */)
3751 Lisp_Object terminal
;
3753 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3754 char *vendor
= ServerVendor (dpyinfo
->display
);
3756 if (! vendor
) vendor
= "";
3757 return build_string (vendor
);
3760 DEFUN ("x-server-version", Fx_server_version
, Sx_server_version
, 0, 1, 0,
3761 doc
: /* Return the version numbers of the X server of display TERMINAL.
3762 The value is a list of three integers: the major and minor
3763 version numbers of the X Protocol in use, and the distributor-specific release
3764 number. See also the function `x-server-vendor'.
3766 The optional argument TERMINAL specifies which display to ask about.
3767 TERMINAL should be a terminal object, a frame or a display name (a string).
3768 If omitted or nil, that stands for the selected frame's display. */)
3770 Lisp_Object terminal
;
3772 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3773 Display
*dpy
= dpyinfo
->display
;
3775 return Fcons (make_number (ProtocolVersion (dpy
)),
3776 Fcons (make_number (ProtocolRevision (dpy
)),
3777 Fcons (make_number (VendorRelease (dpy
)), Qnil
)));
3780 DEFUN ("x-display-screens", Fx_display_screens
, Sx_display_screens
, 0, 1, 0,
3781 doc
: /* Return the number of screens on the X server of display TERMINAL.
3782 The optional argument TERMINAL specifies which display to ask about.
3783 TERMINAL should be a terminal object, a frame or a display name (a string).
3784 If omitted or nil, that stands for the selected frame's display. */)
3786 Lisp_Object terminal
;
3788 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3790 return make_number (ScreenCount (dpyinfo
->display
));
3793 DEFUN ("x-display-mm-height", Fx_display_mm_height
, Sx_display_mm_height
, 0, 1, 0,
3794 doc
: /* Return the height in millimeters of the X display TERMINAL.
3795 The optional argument TERMINAL specifies which display to ask about.
3796 TERMINAL should be a terminal object, a frame or a display name (a string).
3797 If omitted or nil, that stands for the selected frame's display. */)
3799 Lisp_Object terminal
;
3801 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3803 return make_number (HeightMMOfScreen (dpyinfo
->screen
));
3806 DEFUN ("x-display-mm-width", Fx_display_mm_width
, Sx_display_mm_width
, 0, 1, 0,
3807 doc
: /* Return the width in millimeters of the X display TERMINAL.
3808 The optional argument TERMINAL specifies which display to ask about.
3809 TERMINAL should be a terminal object, a frame or a display name (a string).
3810 If omitted or nil, that stands for the selected frame's display. */)
3812 Lisp_Object terminal
;
3814 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3816 return make_number (WidthMMOfScreen (dpyinfo
->screen
));
3819 DEFUN ("x-display-backing-store", Fx_display_backing_store
,
3820 Sx_display_backing_store
, 0, 1, 0,
3821 doc
: /* Return an indication of whether X display TERMINAL does backing store.
3822 The value may be `always', `when-mapped', or `not-useful'.
3823 The optional argument TERMINAL specifies which display to ask about.
3824 TERMINAL should be a terminal object, a frame or a display name (a string).
3825 If omitted or nil, that stands for the selected frame's display. */)
3827 Lisp_Object terminal
;
3829 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3832 switch (DoesBackingStore (dpyinfo
->screen
))
3835 result
= intern ("always");
3839 result
= intern ("when-mapped");
3843 result
= intern ("not-useful");
3847 error ("Strange value for BackingStore parameter of screen");
3854 DEFUN ("x-display-visual-class", Fx_display_visual_class
,
3855 Sx_display_visual_class
, 0, 1, 0,
3856 doc
: /* Return the visual class of the X display TERMINAL.
3857 The value is one of the symbols `static-gray', `gray-scale',
3858 `static-color', `pseudo-color', `true-color', or `direct-color'.
3860 The optional argument TERMINAL specifies which display to ask about.
3861 TERMINAL should a terminal object, a frame or a display name (a string).
3862 If omitted or nil, that stands for the selected frame's display. */)
3864 Lisp_Object terminal
;
3866 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3869 switch (dpyinfo
->visual
->class)
3872 result
= intern ("static-gray");
3875 result
= intern ("gray-scale");
3878 result
= intern ("static-color");
3881 result
= intern ("pseudo-color");
3884 result
= intern ("true-color");
3887 result
= intern ("direct-color");
3890 error ("Display has an unknown visual class");
3897 DEFUN ("x-display-save-under", Fx_display_save_under
,
3898 Sx_display_save_under
, 0, 1, 0,
3899 doc
: /* Return t if the X display TERMINAL supports the save-under feature.
3900 The optional argument TERMINAL specifies which display to ask about.
3901 TERMINAL should be a terminal object, a frame or a display name (a string).
3902 If omitted or nil, that stands for the selected frame's display. */)
3904 Lisp_Object terminal
;
3906 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3908 if (DoesSaveUnders (dpyinfo
->screen
) == True
)
3916 register struct frame
*f
;
3918 return FRAME_PIXEL_WIDTH (f
);
3923 register struct frame
*f
;
3925 return FRAME_PIXEL_HEIGHT (f
);
3930 register struct frame
*f
;
3932 return FRAME_COLUMN_WIDTH (f
);
3937 register struct frame
*f
;
3939 return FRAME_LINE_HEIGHT (f
);
3944 register struct frame
*f
;
3946 return FRAME_X_DISPLAY_INFO (f
)->n_planes
;
3951 /************************************************************************
3953 ************************************************************************/
3956 /* Mapping visual names to visuals. */
3958 static struct visual_class
3965 {"StaticGray", StaticGray
},
3966 {"GrayScale", GrayScale
},
3967 {"StaticColor", StaticColor
},
3968 {"PseudoColor", PseudoColor
},
3969 {"TrueColor", TrueColor
},
3970 {"DirectColor", DirectColor
},
3975 #ifndef HAVE_XSCREENNUMBEROFSCREEN
3977 /* Value is the screen number of screen SCR. This is a substitute for
3978 the X function with the same name when that doesn't exist. */
3981 XScreenNumberOfScreen (scr
)
3982 register Screen
*scr
;
3984 Display
*dpy
= scr
->display
;
3987 for (i
= 0; i
< dpy
->nscreens
; ++i
)
3988 if (scr
== dpy
->screens
+ i
)
3994 #endif /* not HAVE_XSCREENNUMBEROFSCREEN */
3997 /* Select the visual that should be used on display DPYINFO. Set
3998 members of DPYINFO appropriately. Called from x_term_init. */
4001 select_visual (dpyinfo
)
4002 struct x_display_info
*dpyinfo
;
4004 Display
*dpy
= dpyinfo
->display
;
4005 Screen
*screen
= dpyinfo
->screen
;
4008 /* See if a visual is specified. */
4009 value
= display_x_get_resource (dpyinfo
,
4010 build_string ("visualClass"),
4011 build_string ("VisualClass"),
4013 if (STRINGP (value
))
4015 /* VALUE should be of the form CLASS-DEPTH, where CLASS is one
4016 of `PseudoColor', `TrueColor' etc. and DEPTH is the color
4017 depth, a decimal number. NAME is compared with case ignored. */
4018 char *s
= (char *) alloca (SBYTES (value
) + 1);
4023 strcpy (s
, SDATA (value
));
4024 dash
= index (s
, '-');
4027 dpyinfo
->n_planes
= atoi (dash
+ 1);
4031 /* We won't find a matching visual with depth 0, so that
4032 an error will be printed below. */
4033 dpyinfo
->n_planes
= 0;
4035 /* Determine the visual class. */
4036 for (i
= 0; visual_classes
[i
].name
; ++i
)
4037 if (xstrcasecmp (s
, visual_classes
[i
].name
) == 0)
4039 class = visual_classes
[i
].class;
4043 /* Look up a matching visual for the specified class. */
4045 || !XMatchVisualInfo (dpy
, XScreenNumberOfScreen (screen
),
4046 dpyinfo
->n_planes
, class, &vinfo
))
4047 fatal ("Invalid visual specification `%s'", SDATA (value
));
4049 dpyinfo
->visual
= vinfo
.visual
;
4054 XVisualInfo
*vinfo
, vinfo_template
;
4056 dpyinfo
->visual
= DefaultVisualOfScreen (screen
);
4058 vinfo_template
.visualid
= XVisualIDFromVisual (dpyinfo
->visual
);
4059 vinfo_template
.screen
= XScreenNumberOfScreen (screen
);
4060 vinfo
= XGetVisualInfo (dpy
, VisualIDMask
| VisualScreenMask
,
4061 &vinfo_template
, &n_visuals
);
4063 fatal ("Can't get proper X visual info");
4065 dpyinfo
->n_planes
= vinfo
->depth
;
4066 XFree ((char *) vinfo
);
4071 /* Return the X display structure for the display named NAME.
4072 Open a new connection if necessary. */
4074 struct x_display_info
*
4075 x_display_info_for_name (name
)
4079 struct x_display_info
*dpyinfo
;
4081 CHECK_STRING (name
);
4084 if (! EQ (Vinitial_window_system
, intern ("x")))
4085 error ("Not using X Windows"); /* That doesn't stop us anymore. */
4088 for (dpyinfo
= x_display_list
, names
= x_display_name_list
;
4090 dpyinfo
= dpyinfo
->next
, names
= XCDR (names
))
4093 tem
= Fstring_equal (XCAR (XCAR (names
)), name
);
4098 /* Use this general default value to start with. */
4099 Vx_resource_name
= Vinvocation_name
;
4101 validate_x_resource_name ();
4103 dpyinfo
= x_term_init (name
, (char *)0,
4104 (char *) SDATA (Vx_resource_name
));
4107 error ("Cannot connect to X server %s", SDATA (name
));
4110 XSETFASTINT (Vwindow_system_version
, 11);
4116 DEFUN ("x-open-connection", Fx_open_connection
, Sx_open_connection
,
4118 doc
: /* Open a connection to an X server.
4119 DISPLAY is the name of the display to connect to.
4120 Optional second arg XRM-STRING is a string of resources in xrdb format.
4121 If the optional third arg MUST-SUCCEED is non-nil,
4122 terminate Emacs if we can't open the connection. */)
4123 (display
, xrm_string
, must_succeed
)
4124 Lisp_Object display
, xrm_string
, must_succeed
;
4126 unsigned char *xrm_option
;
4127 struct x_display_info
*dpyinfo
;
4129 CHECK_STRING (display
);
4130 if (! NILP (xrm_string
))
4131 CHECK_STRING (xrm_string
);
4134 if (! EQ (Vinitial_window_system
, intern ("x")))
4135 error ("Not using X Windows"); /* That doesn't stop us anymore. */
4138 if (! NILP (xrm_string
))
4139 xrm_option
= (unsigned char *) SDATA (xrm_string
);
4141 xrm_option
= (unsigned char *) 0;
4143 validate_x_resource_name ();
4145 /* This is what opens the connection and sets x_current_display.
4146 This also initializes many symbols, such as those used for input. */
4147 dpyinfo
= x_term_init (display
, xrm_option
,
4148 (char *) SDATA (Vx_resource_name
));
4152 if (!NILP (must_succeed
))
4153 fatal ("Cannot connect to X server %s.\n\
4154 Check the DISPLAY environment variable or use `-d'.\n\
4155 Also use the `xauth' program to verify that you have the proper\n\
4156 authorization information needed to connect the X server.\n\
4157 An insecure way to solve the problem may be to use `xhost'.\n",
4160 error ("Cannot connect to X server %s", SDATA (display
));
4165 XSETFASTINT (Vwindow_system_version
, 11);
4169 DEFUN ("x-close-connection", Fx_close_connection
,
4170 Sx_close_connection
, 1, 1, 0,
4171 doc
: /* Close the connection to TERMINAL's X server.
4172 For TERMINAL, specify a terminal object, a frame or a display name (a
4173 string). If TERMINAL is nil, that stands for the selected frame's
4176 Lisp_Object terminal
;
4178 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
4180 if (dpyinfo
->reference_count
> 0)
4181 error ("Display still has frames on it");
4183 x_delete_terminal (dpyinfo
->terminal
);
4188 DEFUN ("x-display-list", Fx_display_list
, Sx_display_list
, 0, 0, 0,
4189 doc
: /* Return the list of display names that Emacs has connections to. */)
4192 Lisp_Object tail
, result
;
4195 for (tail
= x_display_name_list
; CONSP (tail
); tail
= XCDR (tail
))
4196 result
= Fcons (XCAR (XCAR (tail
)), result
);
4201 DEFUN ("x-synchronize", Fx_synchronize
, Sx_synchronize
, 1, 2, 0,
4202 doc
: /* If ON is non-nil, report X errors as soon as the erring request is made.
4203 If ON is nil, allow buffering of requests.
4204 Turning on synchronization prohibits the Xlib routines from buffering
4205 requests and seriously degrades performance, but makes debugging much
4207 The optional second argument TERMINAL specifies which display to act on.
4208 TERMINAL should be a terminal object, a frame or a display name (a string).
4209 If TERMINAL is omitted or nil, that stands for the selected frame's display. */)
4211 Lisp_Object terminal
, on
;
4213 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
4215 XSynchronize (dpyinfo
->display
, !EQ (on
, Qnil
));
4220 /* Wait for responses to all X commands issued so far for frame F. */
4227 XSync (FRAME_X_DISPLAY (f
), False
);
4232 /***********************************************************************
4234 ***********************************************************************/
4236 DEFUN ("x-change-window-property", Fx_change_window_property
,
4237 Sx_change_window_property
, 2, 6, 0,
4238 doc
: /* Change window property PROP to VALUE on the X window of FRAME.
4239 PROP must be a string.
4240 VALUE may be a string or a list of conses, numbers and/or strings.
4241 If an element in the list is a string, it is converted to
4242 an Atom and the value of the Atom is used. If an element is a cons,
4243 it is converted to a 32 bit number where the car is the 16 top bits and the
4244 cdr is the lower 16 bits.
4245 FRAME nil or omitted means use the selected frame.
4246 If TYPE is given and non-nil, it is the name of the type of VALUE.
4247 If TYPE is not given or nil, the type is STRING.
4248 FORMAT gives the size in bits of each element if VALUE is a list.
4249 It must be one of 8, 16 or 32.
4250 If VALUE is a string or FORMAT is nil or not given, FORMAT defaults to 8.
4251 If OUTER_P is non-nil, the property is changed for the outer X window of
4252 FRAME. Default is to change on the edit X window.
4255 (prop
, value
, frame
, type
, format
, outer_p
)
4256 Lisp_Object prop
, value
, frame
, type
, format
, outer_p
;
4258 struct frame
*f
= check_x_frame (frame
);
4260 Atom target_type
= XA_STRING
;
4261 int element_format
= 8;
4262 unsigned char *data
;
4266 CHECK_STRING (prop
);
4268 if (! NILP (format
))
4270 CHECK_NUMBER (format
);
4271 element_format
= XFASTINT (format
);
4273 if (element_format
!= 8 && element_format
!= 16
4274 && element_format
!= 32)
4275 error ("FORMAT must be one of 8, 16 or 32");
4280 nelements
= x_check_property_data (value
);
4281 if (nelements
== -1)
4282 error ("Bad data in VALUE, must be number, string or cons");
4284 if (element_format
== 8)
4285 data
= (unsigned char *) xmalloc (nelements
);
4286 else if (element_format
== 16)
4287 data
= (unsigned char *) xmalloc (nelements
*2);
4288 else /* format == 32 */
4289 /* The man page for XChangeProperty:
4290 "If the specified format is 32, the property data must be a
4292 This applies even if long is more than 64 bits. The X library
4293 converts to 32 bits before sending to the X server. */
4294 data
= (unsigned char *) xmalloc (nelements
* sizeof(long));
4296 x_fill_property_data (FRAME_X_DISPLAY (f
), value
, data
, element_format
);
4300 CHECK_STRING (value
);
4301 data
= SDATA (value
);
4302 nelements
= SCHARS (value
);
4306 prop_atom
= XInternAtom (FRAME_X_DISPLAY (f
), SDATA (prop
), False
);
4309 CHECK_STRING (type
);
4310 target_type
= XInternAtom (FRAME_X_DISPLAY (f
), SDATA (type
), False
);
4313 if (! NILP (outer_p
)) w
= FRAME_OUTER_WINDOW (f
);
4314 else w
= FRAME_X_WINDOW (f
);
4316 XChangeProperty (FRAME_X_DISPLAY (f
), w
,
4317 prop_atom
, target_type
, element_format
, PropModeReplace
,
4320 if (CONSP (value
)) xfree (data
);
4322 /* Make sure the property is set when we return. */
4323 XFlush (FRAME_X_DISPLAY (f
));
4330 DEFUN ("x-delete-window-property", Fx_delete_window_property
,
4331 Sx_delete_window_property
, 1, 2, 0,
4332 doc
: /* Remove window property PROP from X window of FRAME.
4333 FRAME nil or omitted means use the selected frame. Value is PROP. */)
4335 Lisp_Object prop
, frame
;
4337 struct frame
*f
= check_x_frame (frame
);
4340 CHECK_STRING (prop
);
4342 prop_atom
= XInternAtom (FRAME_X_DISPLAY (f
), SDATA (prop
), False
);
4343 XDeleteProperty (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), prop_atom
);
4345 /* Make sure the property is removed when we return. */
4346 XFlush (FRAME_X_DISPLAY (f
));
4353 DEFUN ("x-window-property", Fx_window_property
, Sx_window_property
,
4355 doc
: /* Value is the value of window property PROP on FRAME.
4356 If FRAME is nil or omitted, use the selected frame.
4357 If TYPE is nil or omitted, get the property as a string. Otherwise TYPE
4358 is the name of the Atom that denotes the type expected.
4359 If SOURCE is non-nil, get the property on that window instead of from
4360 FRAME. The number 0 denotes the root window.
4361 If DELETE_P is non-nil, delete the property after retreiving it.
4362 If VECTOR_RET_P is non-nil, don't return a string but a vector of values.
4364 Value is nil if FRAME hasn't a property with name PROP or if PROP has
4365 no value of TYPE. */)
4366 (prop
, frame
, type
, source
, delete_p
, vector_ret_p
)
4367 Lisp_Object prop
, frame
, type
, source
, delete_p
, vector_ret_p
;
4369 struct frame
*f
= check_x_frame (frame
);
4372 Lisp_Object prop_value
= Qnil
;
4373 unsigned char *tmp_data
= NULL
;
4375 Atom target_type
= XA_STRING
;
4377 unsigned long actual_size
, bytes_remaining
;
4378 Window target_window
= FRAME_X_WINDOW (f
);
4379 struct gcpro gcpro1
;
4381 GCPRO1 (prop_value
);
4382 CHECK_STRING (prop
);
4384 if (! NILP (source
))
4386 if (NUMBERP (source
))
4388 if (FLOATP (source
))
4389 target_window
= (Window
) XFLOAT (source
);
4391 target_window
= XFASTINT (source
);
4393 if (target_window
== 0)
4394 target_window
= FRAME_X_DISPLAY_INFO (f
)->root_window
;
4396 else if (CONSP (source
))
4397 target_window
= cons_to_long (source
);
4403 if (strcmp ("AnyPropertyType", SDATA (type
)) == 0)
4404 target_type
= AnyPropertyType
;
4406 target_type
= XInternAtom (FRAME_X_DISPLAY (f
), SDATA (type
), False
);
4409 prop_atom
= XInternAtom (FRAME_X_DISPLAY (f
), SDATA (prop
), False
);
4410 rc
= XGetWindowProperty (FRAME_X_DISPLAY (f
), target_window
,
4411 prop_atom
, 0, 0, False
, target_type
,
4412 &actual_type
, &actual_format
, &actual_size
,
4413 &bytes_remaining
, &tmp_data
);
4416 int size
= bytes_remaining
;
4421 rc
= XGetWindowProperty (FRAME_X_DISPLAY (f
), target_window
,
4422 prop_atom
, 0, bytes_remaining
,
4423 ! NILP (delete_p
), target_type
,
4424 &actual_type
, &actual_format
,
4425 &actual_size
, &bytes_remaining
,
4427 if (rc
== Success
&& tmp_data
)
4429 /* The man page for XGetWindowProperty says:
4430 "If the returned format is 32, the returned data is represented
4431 as a long array and should be cast to that type to obtain the
4433 This applies even if long is more than 32 bits, the X library
4434 converts from 32 bit elements received from the X server to long
4435 and passes the long array to us. Thus, for that case bcopy can not
4436 be used. We convert to a 32 bit type here, because so much code
4439 The bytes and offsets passed to XGetWindowProperty refers to the
4440 property and those are indeed in 32 bit quantities if format is
4443 if (actual_format
== 32 && actual_format
< BITS_PER_LONG
)
4446 int *idata
= (int *) tmp_data
;
4447 long *ldata
= (long *) tmp_data
;
4449 for (i
= 0; i
< actual_size
; ++i
)
4450 idata
[i
] = (int) ldata
[i
];
4453 if (NILP (vector_ret_p
))
4454 prop_value
= make_string (tmp_data
, size
);
4456 prop_value
= x_property_data_to_lisp (f
,
4463 if (tmp_data
) XFree (tmp_data
);
4473 /***********************************************************************
4475 ***********************************************************************/
4477 /* Timer function of hourglass_atimer. TIMER is equal to
4480 Display an hourglass pointer on all frames by mapping the frames'
4481 hourglass_window. Set the hourglass_p flag in the frames'
4482 output_data.x structure to indicate that an hourglass cursor is
4483 shown on the frames. */
4486 show_hourglass (timer
)
4487 struct atimer
*timer
;
4489 /* The timer implementation will cancel this timer automatically
4490 after this function has run. Set hourglass_atimer to null
4491 so that we know the timer doesn't have to be canceled. */
4492 hourglass_atimer
= NULL
;
4494 if (!hourglass_shown_p
)
4496 Lisp_Object rest
, frame
;
4500 FOR_EACH_FRAME (rest
, frame
)
4502 struct frame
*f
= XFRAME (frame
);
4504 if (FRAME_LIVE_P (f
) && FRAME_X_P (f
) && FRAME_X_DISPLAY (f
))
4506 Display
*dpy
= FRAME_X_DISPLAY (f
);
4508 #ifdef USE_X_TOOLKIT
4509 if (f
->output_data
.x
->widget
)
4511 if (FRAME_OUTER_WINDOW (f
))
4514 f
->output_data
.x
->hourglass_p
= 1;
4516 if (!f
->output_data
.x
->hourglass_window
)
4518 unsigned long mask
= CWCursor
;
4519 XSetWindowAttributes attrs
;
4521 Window parent
= FRAME_X_WINDOW (f
);
4523 Window parent
= FRAME_OUTER_WINDOW (f
);
4525 attrs
.cursor
= f
->output_data
.x
->hourglass_cursor
;
4527 f
->output_data
.x
->hourglass_window
4528 = XCreateWindow (dpy
, parent
,
4529 0, 0, 32000, 32000, 0, 0,
4535 XMapRaised (dpy
, f
->output_data
.x
->hourglass_window
);
4541 hourglass_shown_p
= 1;
4547 /* Hide the hourglass pointer on all frames, if it is currently
4553 if (hourglass_shown_p
)
4555 Lisp_Object rest
, frame
;
4558 FOR_EACH_FRAME (rest
, frame
)
4560 struct frame
*f
= XFRAME (frame
);
4563 /* Watch out for newly created frames. */
4564 && f
->output_data
.x
->hourglass_window
)
4566 XUnmapWindow (FRAME_X_DISPLAY (f
),
4567 f
->output_data
.x
->hourglass_window
);
4568 /* Sync here because XTread_socket looks at the
4569 hourglass_p flag that is reset to zero below. */
4570 XSync (FRAME_X_DISPLAY (f
), False
);
4571 f
->output_data
.x
->hourglass_p
= 0;
4575 hourglass_shown_p
= 0;
4582 /***********************************************************************
4584 ***********************************************************************/
4586 static Lisp_Object x_create_tip_frame
P_ ((struct x_display_info
*,
4587 Lisp_Object
, Lisp_Object
));
4588 static void compute_tip_xy
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
,
4589 Lisp_Object
, int, int, int *, int *));
4591 /* The frame of a currently visible tooltip. */
4593 Lisp_Object tip_frame
;
4595 /* If non-nil, a timer started that hides the last tooltip when it
4598 Lisp_Object tip_timer
;
4601 /* If non-nil, a vector of 3 elements containing the last args
4602 with which x-show-tip was called. See there. */
4604 Lisp_Object last_show_tip_args
;
4606 /* Maximum size for tooltips; a cons (COLUMNS . ROWS). */
4608 Lisp_Object Vx_max_tooltip_size
;
4612 unwind_create_tip_frame (frame
)
4615 Lisp_Object deleted
;
4617 deleted
= unwind_create_frame (frame
);
4618 if (EQ (deleted
, Qt
))
4628 /* Create a frame for a tooltip on the display described by DPYINFO.
4629 PARMS is a list of frame parameters. TEXT is the string to
4630 display in the tip frame. Value is the frame.
4632 Note that functions called here, esp. x_default_parameter can
4633 signal errors, for instance when a specified color name is
4634 undefined. We have to make sure that we're in a consistent state
4635 when this happens. */
4638 x_create_tip_frame (dpyinfo
, parms
, text
)
4639 struct x_display_info
*dpyinfo
;
4640 Lisp_Object parms
, text
;
4643 Lisp_Object frame
, tem
;
4645 long window_prompting
= 0;
4647 int count
= SPECPDL_INDEX ();
4648 struct gcpro gcpro1
, gcpro2
, gcpro3
;
4649 int face_change_count_before
= face_change_count
;
4651 struct buffer
*old_buffer
;
4655 if (!dpyinfo
->terminal
->name
)
4656 error ("Terminal is not live, can't create new frames on it");
4658 parms
= Fcopy_alist (parms
);
4660 /* Get the name of the frame to use for resource lookup. */
4661 name
= x_get_arg (dpyinfo
, parms
, Qname
, "name", "Name", RES_TYPE_STRING
);
4663 && !EQ (name
, Qunbound
)
4665 error ("Invalid frame name--not a string or nil");
4668 GCPRO3 (parms
, name
, frame
);
4670 XSETFRAME (frame
, f
);
4672 buffer
= Fget_buffer_create (build_string (" *tip*"));
4673 Fset_window_buffer (FRAME_ROOT_WINDOW (f
), buffer
, Qnil
);
4674 old_buffer
= current_buffer
;
4675 set_buffer_internal_1 (XBUFFER (buffer
));
4676 current_buffer
->truncate_lines
= Qnil
;
4677 specbind (Qinhibit_read_only
, Qt
);
4678 specbind (Qinhibit_modification_hooks
, Qt
);
4681 set_buffer_internal_1 (old_buffer
);
4683 FRAME_CAN_HAVE_SCROLL_BARS (f
) = 0;
4684 record_unwind_protect (unwind_create_tip_frame
, frame
);
4686 f
->terminal
= dpyinfo
->terminal
;
4687 f
->terminal
->reference_count
++;
4689 /* By setting the output method, we're essentially saying that
4690 the frame is live, as per FRAME_LIVE_P. If we get a signal
4691 from this point on, x_destroy_window might screw up reference
4693 f
->output_method
= output_x_window
;
4694 f
->output_data
.x
= (struct x_output
*) xmalloc (sizeof (struct x_output
));
4695 bzero (f
->output_data
.x
, sizeof (struct x_output
));
4696 f
->output_data
.x
->icon_bitmap
= -1;
4697 FRAME_FONTSET (f
) = -1;
4698 f
->output_data
.x
->scroll_bar_foreground_pixel
= -1;
4699 f
->output_data
.x
->scroll_bar_background_pixel
= -1;
4700 #ifdef USE_TOOLKIT_SCROLL_BARS
4701 f
->output_data
.x
->scroll_bar_top_shadow_pixel
= -1;
4702 f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
= -1;
4703 #endif /* USE_TOOLKIT_SCROLL_BARS */
4704 f
->icon_name
= Qnil
;
4705 FRAME_X_DISPLAY_INFO (f
) = dpyinfo
;
4707 image_cache_refcount
= FRAME_IMAGE_CACHE (f
)->refcount
;
4708 dpyinfo_refcount
= dpyinfo
->reference_count
;
4709 #endif /* GLYPH_DEBUG */
4710 f
->output_data
.x
->parent_desc
= FRAME_X_DISPLAY_INFO (f
)->root_window
;
4711 f
->output_data
.x
->explicit_parent
= 0;
4713 /* These colors will be set anyway later, but it's important
4714 to get the color reference counts right, so initialize them! */
4717 struct gcpro gcpro1
;
4719 /* Function x_decode_color can signal an error. Make
4720 sure to initialize color slots so that we won't try
4721 to free colors we haven't allocated. */
4722 FRAME_FOREGROUND_PIXEL (f
) = -1;
4723 FRAME_BACKGROUND_PIXEL (f
) = -1;
4724 f
->output_data
.x
->cursor_pixel
= -1;
4725 f
->output_data
.x
->cursor_foreground_pixel
= -1;
4726 f
->output_data
.x
->border_pixel
= -1;
4727 f
->output_data
.x
->mouse_pixel
= -1;
4729 black
= build_string ("black");
4731 FRAME_FOREGROUND_PIXEL (f
)
4732 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
4733 FRAME_BACKGROUND_PIXEL (f
)
4734 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
4735 f
->output_data
.x
->cursor_pixel
4736 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
4737 f
->output_data
.x
->cursor_foreground_pixel
4738 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
4739 f
->output_data
.x
->border_pixel
4740 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
4741 f
->output_data
.x
->mouse_pixel
4742 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
4746 /* Set the name; the functions to which we pass f expect the name to
4748 if (EQ (name
, Qunbound
) || NILP (name
))
4750 f
->name
= build_string (dpyinfo
->x_id_name
);
4751 f
->explicit_name
= 0;
4756 f
->explicit_name
= 1;
4757 /* use the frame's title when getting resources for this frame. */
4758 specbind (Qx_resource_name
, name
);
4761 f
->resx
= dpyinfo
->resx
;
4762 f
->resy
= dpyinfo
->resy
;
4764 register_font_driver (&xfont_driver
, f
);
4765 #ifdef HAVE_FREETYPE
4767 register_font_driver (&xftfont_driver
, f
);
4768 #else /* not HAVE_XFT */
4769 register_font_driver (&ftxfont_driver
, f
);
4770 #endif /* not HAVE_XFT */
4771 #endif /* HAVE_FREETYPE */
4773 x_default_parameter (f
, parms
, Qfont_backend
, Qnil
,
4774 "fontBackend", "FontBackend", RES_TYPE_STRING
);
4776 /* Extract the window parameters from the supplied values that are
4777 needed to determine window geometry. */
4778 x_default_font_parameter (f
, parms
);
4780 x_default_parameter (f
, parms
, Qborder_width
, make_number (2),
4781 "borderWidth", "BorderWidth", RES_TYPE_NUMBER
);
4783 /* This defaults to 2 in order to match xterm. We recognize either
4784 internalBorderWidth or internalBorder (which is what xterm calls
4786 if (NILP (Fassq (Qinternal_border_width
, parms
)))
4790 value
= x_get_arg (dpyinfo
, parms
, Qinternal_border_width
,
4791 "internalBorder", "internalBorder", RES_TYPE_NUMBER
);
4792 if (! EQ (value
, Qunbound
))
4793 parms
= Fcons (Fcons (Qinternal_border_width
, value
),
4797 x_default_parameter (f
, parms
, Qinternal_border_width
, make_number (1),
4798 "internalBorderWidth", "internalBorderWidth",
4801 /* Also do the stuff which must be set before the window exists. */
4802 x_default_parameter (f
, parms
, Qforeground_color
, build_string ("black"),
4803 "foreground", "Foreground", RES_TYPE_STRING
);
4804 x_default_parameter (f
, parms
, Qbackground_color
, build_string ("white"),
4805 "background", "Background", RES_TYPE_STRING
);
4806 x_default_parameter (f
, parms
, Qmouse_color
, build_string ("black"),
4807 "pointerColor", "Foreground", RES_TYPE_STRING
);
4808 x_default_parameter (f
, parms
, Qcursor_color
, build_string ("black"),
4809 "cursorColor", "Foreground", RES_TYPE_STRING
);
4810 x_default_parameter (f
, parms
, Qborder_color
, build_string ("black"),
4811 "borderColor", "BorderColor", RES_TYPE_STRING
);
4813 /* Init faces before x_default_parameter is called for scroll-bar
4814 parameters because that function calls x_set_scroll_bar_width,
4815 which calls change_frame_size, which calls Fset_window_buffer,
4816 which runs hooks, which call Fvertical_motion. At the end, we
4817 end up in init_iterator with a null face cache, which should not
4819 init_frame_faces (f
);
4821 f
->output_data
.x
->parent_desc
= FRAME_X_DISPLAY_INFO (f
)->root_window
;
4823 window_prompting
= x_figure_window_size (f
, parms
, 0);
4826 XSetWindowAttributes attrs
;
4830 mask
= CWBackPixel
| CWOverrideRedirect
| CWEventMask
;
4831 if (DoesSaveUnders (dpyinfo
->screen
))
4832 mask
|= CWSaveUnder
;
4834 /* Window managers look at the override-redirect flag to determine
4835 whether or net to give windows a decoration (Xlib spec, chapter
4837 attrs
.override_redirect
= True
;
4838 attrs
.save_under
= True
;
4839 attrs
.background_pixel
= FRAME_BACKGROUND_PIXEL (f
);
4840 /* Arrange for getting MapNotify and UnmapNotify events. */
4841 attrs
.event_mask
= StructureNotifyMask
;
4843 = FRAME_X_WINDOW (f
)
4844 = XCreateWindow (FRAME_X_DISPLAY (f
),
4845 FRAME_X_DISPLAY_INFO (f
)->root_window
,
4846 /* x, y, width, height */
4850 CopyFromParent
, InputOutput
, CopyFromParent
,
4857 x_default_parameter (f
, parms
, Qauto_raise
, Qnil
,
4858 "autoRaise", "AutoRaiseLower", RES_TYPE_BOOLEAN
);
4859 x_default_parameter (f
, parms
, Qauto_lower
, Qnil
,
4860 "autoLower", "AutoRaiseLower", RES_TYPE_BOOLEAN
);
4861 x_default_parameter (f
, parms
, Qcursor_type
, Qbox
,
4862 "cursorType", "CursorType", RES_TYPE_SYMBOL
);
4864 /* Dimensions, especially FRAME_LINES (f), must be done via change_frame_size.
4865 Change will not be effected unless different from the current
4867 width
= FRAME_COLS (f
);
4868 height
= FRAME_LINES (f
);
4869 SET_FRAME_COLS (f
, 0);
4870 FRAME_LINES (f
) = 0;
4871 change_frame_size (f
, height
, width
, 1, 0, 0);
4873 /* Add `tooltip' frame parameter's default value. */
4874 if (NILP (Fframe_parameter (frame
, intern ("tooltip"))))
4875 Fmodify_frame_parameters (frame
, Fcons (Fcons (intern ("tooltip"), Qt
),
4878 /* FIXME - can this be done in a similar way to normal frames?
4879 http://lists.gnu.org/archive/html/emacs-devel/2007-10/msg00641.html */
4881 /* Set the `display-type' frame parameter before setting up faces. */
4883 Lisp_Object disptype
;
4885 if (FRAME_X_DISPLAY_INFO (f
)->n_planes
== 1)
4886 disptype
= intern ("mono");
4887 else if (FRAME_X_DISPLAY_INFO (f
)->visual
->class == GrayScale
4888 || FRAME_X_DISPLAY_INFO (f
)->visual
->class == StaticGray
)
4889 disptype
= intern ("grayscale");
4891 disptype
= intern ("color");
4893 if (NILP (Fframe_parameter (frame
, Qdisplay_type
)))
4894 Fmodify_frame_parameters (frame
, Fcons (Fcons (Qdisplay_type
, disptype
),
4898 /* Set up faces after all frame parameters are known. This call
4899 also merges in face attributes specified for new frames.
4901 Frame parameters may be changed if .Xdefaults contains
4902 specifications for the default font. For example, if there is an
4903 `Emacs.default.attributeBackground: pink', the `background-color'
4904 attribute of the frame get's set, which let's the internal border
4905 of the tooltip frame appear in pink. Prevent this. */
4907 Lisp_Object bg
= Fframe_parameter (frame
, Qbackground_color
);
4909 /* Set tip_frame here, so that */
4911 call2 (Qface_set_after_frame_default
, frame
, Qnil
);
4913 if (!EQ (bg
, Fframe_parameter (frame
, Qbackground_color
)))
4914 Fmodify_frame_parameters (frame
, Fcons (Fcons (Qbackground_color
, bg
),
4922 /* It is now ok to make the frame official even if we get an error
4923 below. And the frame needs to be on Vframe_list or making it
4924 visible won't work. */
4925 Vframe_list
= Fcons (frame
, Vframe_list
);
4927 /* Now that the frame is official, it counts as a reference to
4929 FRAME_X_DISPLAY_INFO (f
)->reference_count
++;
4931 /* Setting attributes of faces of the tooltip frame from resources
4932 and similar will increment face_change_count, which leads to the
4933 clearing of all current matrices. Since this isn't necessary
4934 here, avoid it by resetting face_change_count to the value it
4935 had before we created the tip frame. */
4936 face_change_count
= face_change_count_before
;
4938 /* Discard the unwind_protect. */
4939 return unbind_to (count
, frame
);
4943 /* Compute where to display tip frame F. PARMS is the list of frame
4944 parameters for F. DX and DY are specified offsets from the current
4945 location of the mouse. WIDTH and HEIGHT are the width and height
4946 of the tooltip. Return coordinates relative to the root window of
4947 the display in *ROOT_X, and *ROOT_Y. */
4950 compute_tip_xy (f
, parms
, dx
, dy
, width
, height
, root_x
, root_y
)
4952 Lisp_Object parms
, dx
, dy
;
4954 int *root_x
, *root_y
;
4956 Lisp_Object left
, top
;
4961 /* User-specified position? */
4962 left
= Fcdr (Fassq (Qleft
, parms
));
4963 top
= Fcdr (Fassq (Qtop
, parms
));
4965 /* Move the tooltip window where the mouse pointer is. Resize and
4967 if (!INTEGERP (left
) || !INTEGERP (top
))
4970 XQueryPointer (FRAME_X_DISPLAY (f
), FRAME_X_DISPLAY_INFO (f
)->root_window
,
4971 &root
, &child
, root_x
, root_y
, &win_x
, &win_y
, &pmask
);
4976 *root_y
= XINT (top
);
4977 else if (*root_y
+ XINT (dy
) <= 0)
4978 *root_y
= 0; /* Can happen for negative dy */
4979 else if (*root_y
+ XINT (dy
) + height
4980 <= x_display_pixel_height (FRAME_X_DISPLAY_INFO (f
)))
4981 /* It fits below the pointer */
4982 *root_y
+= XINT (dy
);
4983 else if (height
+ XINT (dy
) <= *root_y
)
4984 /* It fits above the pointer. */
4985 *root_y
-= height
+ XINT (dy
);
4987 /* Put it on the top. */
4990 if (INTEGERP (left
))
4991 *root_x
= XINT (left
);
4992 else if (*root_x
+ XINT (dx
) <= 0)
4993 *root_x
= 0; /* Can happen for negative dx */
4994 else if (*root_x
+ XINT (dx
) + width
4995 <= x_display_pixel_width (FRAME_X_DISPLAY_INFO (f
)))
4996 /* It fits to the right of the pointer. */
4997 *root_x
+= XINT (dx
);
4998 else if (width
+ XINT (dx
) <= *root_x
)
4999 /* It fits to the left of the pointer. */
5000 *root_x
-= width
+ XINT (dx
);
5002 /* Put it left-justified on the screen--it ought to fit that way. */
5007 DEFUN ("x-show-tip", Fx_show_tip
, Sx_show_tip
, 1, 6, 0,
5008 doc
: /* Show STRING in a "tooltip" window on frame FRAME.
5009 A tooltip window is a small X window displaying a string.
5011 This is an internal function; Lisp code should call `tooltip-show'.
5013 FRAME nil or omitted means use the selected frame.
5015 PARMS is an optional list of frame parameters which can be used to
5016 change the tooltip's appearance.
5018 Automatically hide the tooltip after TIMEOUT seconds. TIMEOUT nil
5019 means use the default timeout of 5 seconds.
5021 If the list of frame parameters PARAMS contains a `left' parameters,
5022 the tooltip is displayed at that x-position. Otherwise it is
5023 displayed at the mouse position, with offset DX added (default is 5 if
5024 DX isn't specified). Likewise for the y-position; if a `top' frame
5025 parameter is specified, it determines the y-position of the tooltip
5026 window, otherwise it is displayed at the mouse position, with offset
5027 DY added (default is -10).
5029 A tooltip's maximum size is specified by `x-max-tooltip-size'.
5030 Text larger than the specified size is clipped. */)
5031 (string
, frame
, parms
, timeout
, dx
, dy
)
5032 Lisp_Object string
, frame
, parms
, timeout
, dx
, dy
;
5037 struct buffer
*old_buffer
;
5038 struct text_pos pos
;
5039 int i
, width
, height
;
5040 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
5041 int old_windows_or_buffers_changed
= windows_or_buffers_changed
;
5042 int count
= SPECPDL_INDEX ();
5044 specbind (Qinhibit_redisplay
, Qt
);
5046 GCPRO4 (string
, parms
, frame
, timeout
);
5048 CHECK_STRING (string
);
5049 if (SCHARS (string
) == 0)
5050 string
= make_unibyte_string (" ", 1);
5052 f
= check_x_frame (frame
);
5054 timeout
= make_number (5);
5056 CHECK_NATNUM (timeout
);
5059 dx
= make_number (5);
5064 dy
= make_number (-10);
5068 if (NILP (last_show_tip_args
))
5069 last_show_tip_args
= Fmake_vector (make_number (3), Qnil
);
5071 if (!NILP (tip_frame
))
5073 Lisp_Object last_string
= AREF (last_show_tip_args
, 0);
5074 Lisp_Object last_frame
= AREF (last_show_tip_args
, 1);
5075 Lisp_Object last_parms
= AREF (last_show_tip_args
, 2);
5077 if (EQ (frame
, last_frame
)
5078 && !NILP (Fequal (last_string
, string
))
5079 && !NILP (Fequal (last_parms
, parms
)))
5081 struct frame
*f
= XFRAME (tip_frame
);
5083 /* Only DX and DY have changed. */
5084 if (!NILP (tip_timer
))
5086 Lisp_Object timer
= tip_timer
;
5088 call1 (Qcancel_timer
, timer
);
5092 compute_tip_xy (f
, parms
, dx
, dy
, FRAME_PIXEL_WIDTH (f
),
5093 FRAME_PIXEL_HEIGHT (f
), &root_x
, &root_y
);
5094 XMoveWindow (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
5101 /* Hide a previous tip, if any. */
5104 ASET (last_show_tip_args
, 0, string
);
5105 ASET (last_show_tip_args
, 1, frame
);
5106 ASET (last_show_tip_args
, 2, parms
);
5108 /* Add default values to frame parameters. */
5109 if (NILP (Fassq (Qname
, parms
)))
5110 parms
= Fcons (Fcons (Qname
, build_string ("tooltip")), parms
);
5111 if (NILP (Fassq (Qinternal_border_width
, parms
)))
5112 parms
= Fcons (Fcons (Qinternal_border_width
, make_number (3)), parms
);
5113 if (NILP (Fassq (Qborder_width
, parms
)))
5114 parms
= Fcons (Fcons (Qborder_width
, make_number (1)), parms
);
5115 if (NILP (Fassq (Qborder_color
, parms
)))
5116 parms
= Fcons (Fcons (Qborder_color
, build_string ("lightyellow")), parms
);
5117 if (NILP (Fassq (Qbackground_color
, parms
)))
5118 parms
= Fcons (Fcons (Qbackground_color
, build_string ("lightyellow")),
5121 /* Create a frame for the tooltip, and record it in the global
5122 variable tip_frame. */
5123 frame
= x_create_tip_frame (FRAME_X_DISPLAY_INFO (f
), parms
, string
);
5126 /* Set up the frame's root window. */
5127 w
= XWINDOW (FRAME_ROOT_WINDOW (f
));
5128 w
->left_col
= w
->top_line
= make_number (0);
5130 if (CONSP (Vx_max_tooltip_size
)
5131 && INTEGERP (XCAR (Vx_max_tooltip_size
))
5132 && XINT (XCAR (Vx_max_tooltip_size
)) > 0
5133 && INTEGERP (XCDR (Vx_max_tooltip_size
))
5134 && XINT (XCDR (Vx_max_tooltip_size
)) > 0)
5136 w
->total_cols
= XCAR (Vx_max_tooltip_size
);
5137 w
->total_lines
= XCDR (Vx_max_tooltip_size
);
5141 w
->total_cols
= make_number (80);
5142 w
->total_lines
= make_number (40);
5145 FRAME_TOTAL_COLS (f
) = XINT (w
->total_cols
);
5147 w
->pseudo_window_p
= 1;
5149 /* Display the tooltip text in a temporary buffer. */
5150 old_buffer
= current_buffer
;
5151 set_buffer_internal_1 (XBUFFER (XWINDOW (FRAME_ROOT_WINDOW (f
))->buffer
));
5152 current_buffer
->truncate_lines
= Qnil
;
5153 clear_glyph_matrix (w
->desired_matrix
);
5154 clear_glyph_matrix (w
->current_matrix
);
5155 SET_TEXT_POS (pos
, BEGV
, BEGV_BYTE
);
5156 try_window (FRAME_ROOT_WINDOW (f
), pos
, 0);
5158 /* Compute width and height of the tooltip. */
5160 for (i
= 0; i
< w
->desired_matrix
->nrows
; ++i
)
5162 struct glyph_row
*row
= &w
->desired_matrix
->rows
[i
];
5166 /* Stop at the first empty row at the end. */
5167 if (!row
->enabled_p
|| !row
->displays_text_p
)
5170 /* Let the row go over the full width of the frame. */
5171 row
->full_width_p
= 1;
5173 /* There's a glyph at the end of rows that is used to place
5174 the cursor there. Don't include the width of this glyph. */
5175 if (row
->used
[TEXT_AREA
])
5177 last
= &row
->glyphs
[TEXT_AREA
][row
->used
[TEXT_AREA
] - 1];
5178 row_width
= row
->pixel_width
- last
->pixel_width
;
5181 row_width
= row
->pixel_width
;
5183 height
+= row
->height
;
5184 width
= max (width
, row_width
);
5187 /* Add the frame's internal border to the width and height the X
5188 window should have. */
5189 height
+= 2 * FRAME_INTERNAL_BORDER_WIDTH (f
);
5190 width
+= 2 * FRAME_INTERNAL_BORDER_WIDTH (f
);
5192 /* Move the tooltip window where the mouse pointer is. Resize and
5194 compute_tip_xy (f
, parms
, dx
, dy
, width
, height
, &root_x
, &root_y
);
5197 XMoveResizeWindow (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
5198 root_x
, root_y
, width
, height
);
5199 XMapRaised (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
));
5202 /* Draw into the window. */
5203 w
->must_be_updated_p
= 1;
5204 update_single_window (w
, 1);
5206 /* Restore original current buffer. */
5207 set_buffer_internal_1 (old_buffer
);
5208 windows_or_buffers_changed
= old_windows_or_buffers_changed
;
5211 /* Let the tip disappear after timeout seconds. */
5212 tip_timer
= call3 (intern ("run-at-time"), timeout
, Qnil
,
5213 intern ("x-hide-tip"));
5216 return unbind_to (count
, Qnil
);
5220 DEFUN ("x-hide-tip", Fx_hide_tip
, Sx_hide_tip
, 0, 0, 0,
5221 doc
: /* Hide the current tooltip window, if there is any.
5222 Value is t if tooltip was open, nil otherwise. */)
5226 Lisp_Object deleted
, frame
, timer
;
5227 struct gcpro gcpro1
, gcpro2
;
5229 /* Return quickly if nothing to do. */
5230 if (NILP (tip_timer
) && NILP (tip_frame
))
5235 GCPRO2 (frame
, timer
);
5236 tip_frame
= tip_timer
= deleted
= Qnil
;
5238 count
= SPECPDL_INDEX ();
5239 specbind (Qinhibit_redisplay
, Qt
);
5240 specbind (Qinhibit_quit
, Qt
);
5243 call1 (Qcancel_timer
, timer
);
5247 delete_frame (frame
, Qnil
);
5251 /* Bloodcurdling hack alert: The Lucid menu bar widget's
5252 redisplay procedure is not called when a tip frame over menu
5253 items is unmapped. Redisplay the menu manually... */
5255 struct frame
*f
= SELECTED_FRAME ();
5256 Widget w
= f
->output_data
.x
->menubar_widget
;
5257 extern void xlwmenu_redisplay
P_ ((Widget
));
5259 if (!DoesSaveUnders (FRAME_X_DISPLAY_INFO (f
)->screen
)
5263 xlwmenu_redisplay (w
);
5267 #endif /* USE_LUCID */
5271 return unbind_to (count
, deleted
);
5276 /***********************************************************************
5277 File selection dialog
5278 ***********************************************************************/
5280 DEFUN ("x-uses-old-gtk-dialog", Fx_uses_old_gtk_dialog
,
5281 Sx_uses_old_gtk_dialog
,
5283 doc
: /* Return t if the old Gtk+ file selection dialog is used. */)
5287 extern int use_dialog_box
;
5288 extern int use_file_dialog
;
5293 && xg_uses_old_file_dialog ())
5301 /* Callback for "OK" and "Cancel" on file selection dialog. */
5304 file_dialog_cb (widget
, client_data
, call_data
)
5306 XtPointer call_data
, client_data
;
5308 int *result
= (int *) client_data
;
5309 XmAnyCallbackStruct
*cb
= (XmAnyCallbackStruct
*) call_data
;
5310 *result
= cb
->reason
;
5314 /* Callback for unmapping a file selection dialog. This is used to
5315 capture the case where a dialog is closed via a window manager's
5316 closer button, for example. Using a XmNdestroyCallback didn't work
5320 file_dialog_unmap_cb (widget
, client_data
, call_data
)
5322 XtPointer call_data
, client_data
;
5324 int *result
= (int *) client_data
;
5325 *result
= XmCR_CANCEL
;
5329 clean_up_file_dialog (arg
)
5332 struct Lisp_Save_Value
*p
= XSAVE_VALUE (arg
);
5333 Widget dialog
= (Widget
) p
->pointer
;
5337 XtUnmanageChild (dialog
);
5338 XtDestroyWidget (dialog
);
5339 x_menu_set_in_use (0);
5346 DEFUN ("x-file-dialog", Fx_file_dialog
, Sx_file_dialog
, 2, 5, 0,
5347 doc
: /* Read file name, prompting with PROMPT in directory DIR.
5348 Use a file selection dialog. Select DEFAULT-FILENAME in the dialog's file
5349 selection box, if specified. If MUSTMATCH is non-nil, the returned file
5350 or directory must exist. ONLY-DIR-P is ignored." */)
5351 (prompt
, dir
, default_filename
, mustmatch
, only_dir_p
)
5352 Lisp_Object prompt
, dir
, default_filename
, mustmatch
, only_dir_p
;
5355 struct frame
*f
= SELECTED_FRAME ();
5356 Lisp_Object file
= Qnil
;
5357 Lisp_Object decoded_file
;
5358 Widget dialog
, text
, help
;
5361 extern XtAppContext Xt_app_con
;
5362 XmString dir_xmstring
, pattern_xmstring
;
5363 int count
= SPECPDL_INDEX ();
5364 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
, gcpro5
, gcpro6
;
5368 GCPRO6 (prompt
, dir
, default_filename
, mustmatch
, only_dir_p
, file
);
5370 if (popup_activated ())
5371 error ("Trying to use a menu from within a menu-entry");
5373 CHECK_STRING (prompt
);
5376 /* Prevent redisplay. */
5377 specbind (Qinhibit_redisplay
, Qt
);
5381 /* Create the dialog with PROMPT as title, using DIR as initial
5382 directory and using "*" as pattern. */
5383 dir
= Fexpand_file_name (dir
, Qnil
);
5384 dir_xmstring
= XmStringCreateLocalized (SDATA (dir
));
5385 pattern_xmstring
= XmStringCreateLocalized ("*");
5387 XtSetArg (al
[ac
], XmNtitle
, SDATA (prompt
)); ++ac
;
5388 XtSetArg (al
[ac
], XmNdirectory
, dir_xmstring
); ++ac
;
5389 XtSetArg (al
[ac
], XmNpattern
, pattern_xmstring
); ++ac
;
5390 XtSetArg (al
[ac
], XmNresizePolicy
, XmRESIZE_GROW
); ++ac
;
5391 XtSetArg (al
[ac
], XmNdialogStyle
, XmDIALOG_APPLICATION_MODAL
); ++ac
;
5392 dialog
= XmCreateFileSelectionDialog (f
->output_data
.x
->widget
,
5394 XmStringFree (dir_xmstring
);
5395 XmStringFree (pattern_xmstring
);
5397 /* Add callbacks for OK and Cancel. */
5398 XtAddCallback (dialog
, XmNokCallback
, file_dialog_cb
,
5399 (XtPointer
) &result
);
5400 XtAddCallback (dialog
, XmNcancelCallback
, file_dialog_cb
,
5401 (XtPointer
) &result
);
5402 XtAddCallback (dialog
, XmNunmapCallback
, file_dialog_unmap_cb
,
5403 (XtPointer
) &result
);
5405 /* Remove the help button since we can't display help. */
5406 help
= XmFileSelectionBoxGetChild (dialog
, XmDIALOG_HELP_BUTTON
);
5407 XtUnmanageChild (help
);
5409 /* Mark OK button as default. */
5410 XtVaSetValues (XmFileSelectionBoxGetChild (dialog
, XmDIALOG_OK_BUTTON
),
5411 XmNshowAsDefault
, True
, NULL
);
5413 /* If MUSTMATCH is non-nil, disable the file entry field of the
5414 dialog, so that the user must select a file from the files list
5415 box. We can't remove it because we wouldn't have a way to get at
5416 the result file name, then. */
5417 text
= XmFileSelectionBoxGetChild (dialog
, XmDIALOG_TEXT
);
5418 if (!NILP (mustmatch
))
5421 label
= XmFileSelectionBoxGetChild (dialog
, XmDIALOG_SELECTION_LABEL
);
5422 XtSetSensitive (text
, False
);
5423 XtSetSensitive (label
, False
);
5426 /* Manage the dialog, so that list boxes get filled. */
5427 XtManageChild (dialog
);
5429 if (STRINGP (default_filename
))
5431 XmString default_xmstring
;
5432 Widget wtext
= XmFileSelectionBoxGetChild (dialog
, XmDIALOG_TEXT
);
5433 Widget list
= XmFileSelectionBoxGetChild (dialog
, XmDIALOG_LIST
);
5435 XmTextPosition last_pos
= XmTextFieldGetLastPosition (wtext
);
5436 XmTextFieldReplace (wtext
, 0, last_pos
,
5437 (SDATA (Ffile_name_nondirectory (default_filename
))));
5439 /* Select DEFAULT_FILENAME in the files list box. DEFAULT_FILENAME
5440 must include the path for this to work. */
5442 default_xmstring
= XmStringCreateLocalized (SDATA (default_filename
));
5444 if (XmListItemExists (list
, default_xmstring
))
5446 int item_pos
= XmListItemPos (list
, default_xmstring
);
5447 /* Select the item and scroll it into view. */
5448 XmListSelectPos (list
, item_pos
, True
);
5449 XmListSetPos (list
, item_pos
);
5452 XmStringFree (default_xmstring
);
5455 record_unwind_protect (clean_up_file_dialog
, make_save_value (dialog
, 0));
5457 /* Process events until the user presses Cancel or OK. */
5458 x_menu_set_in_use (1);
5463 x_menu_wait_for_event (0);
5464 XtAppNextEvent (Xt_app_con
, &event
);
5465 if (event
.type
== KeyPress
5466 && FRAME_X_DISPLAY (f
) == event
.xkey
.display
)
5468 KeySym keysym
= XLookupKeysym (&event
.xkey
, 0);
5470 /* Pop down on C-g. */
5471 if (keysym
== XK_g
&& (event
.xkey
.state
& ControlMask
) != 0)
5472 XtUnmanageChild (dialog
);
5475 (void) x_dispatch_event (&event
, FRAME_X_DISPLAY (f
));
5478 /* Get the result. */
5479 if (result
== XmCR_OK
)
5484 XtVaGetValues (dialog
, XmNtextString
, &text
, NULL
);
5485 XmStringGetLtoR (text
, XmFONTLIST_DEFAULT_TAG
, &data
);
5486 XmStringFree (text
);
5487 file
= build_string (data
);
5496 /* Make "Cancel" equivalent to C-g. */
5498 Fsignal (Qquit
, Qnil
);
5500 decoded_file
= DECODE_FILE (file
);
5502 return unbind_to (count
, decoded_file
);
5505 #endif /* USE_MOTIF */
5510 clean_up_dialog (arg
)
5513 x_menu_set_in_use (0);
5518 DEFUN ("x-file-dialog", Fx_file_dialog
, Sx_file_dialog
, 2, 5, 0,
5519 doc
: /* Read file name, prompting with PROMPT in directory DIR.
5520 Use a file selection dialog. Select DEFAULT-FILENAME in the dialog's file
5521 selection box, if specified. If MUSTMATCH is non-nil, the returned file
5522 or directory must exist. If ONLY-DIR-P is non-nil, the user can only select
5524 (prompt
, dir
, default_filename
, mustmatch
, only_dir_p
)
5525 Lisp_Object prompt
, dir
, default_filename
, mustmatch
, only_dir_p
;
5527 FRAME_PTR f
= SELECTED_FRAME ();
5529 Lisp_Object file
= Qnil
;
5530 Lisp_Object decoded_file
;
5531 int count
= SPECPDL_INDEX ();
5532 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
, gcpro5
, gcpro6
;
5537 GCPRO6 (prompt
, dir
, default_filename
, mustmatch
, only_dir_p
, file
);
5539 if (popup_activated ())
5540 error ("Trying to use a menu from within a menu-entry");
5542 CHECK_STRING (prompt
);
5545 /* Prevent redisplay. */
5546 specbind (Qinhibit_redisplay
, Qt
);
5547 record_unwind_protect (clean_up_dialog
, Qnil
);
5551 if (STRINGP (default_filename
))
5552 cdef_file
= SDATA (default_filename
);
5554 cdef_file
= SDATA (dir
);
5556 fn
= xg_get_file_name (f
, SDATA (prompt
), cdef_file
,
5558 ! NILP (only_dir_p
));
5562 file
= build_string (fn
);
5569 /* Make "Cancel" equivalent to C-g. */
5571 Fsignal (Qquit
, Qnil
);
5573 decoded_file
= DECODE_FILE (file
);
5575 return unbind_to (count
, decoded_file
);
5579 #ifdef HAVE_FREETYPE
5581 DEFUN ("x-select-font", Fx_select_font
, Sx_select_font
, 0, 2, 0,
5582 doc
: /* Read a font name using a GTK font selection dialog.
5583 Return a GTK-style font string corresponding to the selection.
5585 If FRAME is omitted or nil, it defaults to the selected frame. */)
5587 Lisp_Object frame
, ignored
;
5589 FRAME_PTR f
= check_x_frame (frame
);
5592 Lisp_Object font_param
;
5593 char *default_name
= NULL
;
5594 struct gcpro gcpro1
, gcpro2
;
5595 int count
= SPECPDL_INDEX ();
5599 if (popup_activated ())
5600 error ("Trying to use a menu from within a menu-entry");
5602 /* Prevent redisplay. */
5603 specbind (Qinhibit_redisplay
, Qt
);
5604 record_unwind_protect (clean_up_dialog
, Qnil
);
5608 GCPRO2(font_param
, font
);
5610 XSETFONT (font
, FRAME_FONT (f
));
5611 font_param
= Ffont_get (font
, intern (":name"));
5612 if (STRINGP (font_param
))
5613 default_name
= xstrdup (SDATA (font_param
));
5616 font_param
= Fframe_parameter (frame
, Qfont_param
);
5617 if (STRINGP (font_param
))
5618 default_name
= xstrdup (SDATA (font_param
));
5621 if (default_name
== NULL
&& x_last_font_name
!= NULL
)
5622 default_name
= xstrdup (x_last_font_name
);
5624 /* Convert fontconfig names to Gtk names, i.e. remove - before number */
5627 char *p
= strrchr (default_name
, '-');
5631 while (isdigit (*ep
))
5633 if (*ep
== '\0') *p
= ' ';
5637 name
= xg_get_font_name (f
, default_name
);
5638 xfree (default_name
);
5642 font
= build_string (name
);
5643 g_free (x_last_font_name
);
5644 x_last_font_name
= name
;
5650 Fsignal (Qquit
, Qnil
);
5652 return unbind_to (count
, font
);
5654 #endif /* HAVE_FREETYPE */
5656 #endif /* USE_GTK */
5659 /***********************************************************************
5661 ***********************************************************************/
5663 #ifdef HAVE_XKBGETKEYBOARD
5664 #include <X11/XKBlib.h>
5665 #include <X11/keysym.h>
5668 DEFUN ("x-backspace-delete-keys-p", Fx_backspace_delete_keys_p
,
5669 Sx_backspace_delete_keys_p
, 0, 1, 0,
5670 doc
: /* Check if both Backspace and Delete keys are on the keyboard of FRAME.
5671 FRAME nil means use the selected frame.
5672 Value is t if we know that both keys are present, and are mapped to the
5673 usual X keysyms. Value is `lambda' if we cannot determine if both keys are
5674 present and mapped to the usual X keysyms. */)
5678 #ifdef HAVE_XKBGETKEYBOARD
5680 struct frame
*f
= check_x_frame (frame
);
5681 Display
*dpy
= FRAME_X_DISPLAY (f
);
5682 Lisp_Object have_keys
;
5683 int major
, minor
, op
, event
, error
;
5687 /* Check library version in case we're dynamically linked. */
5688 major
= XkbMajorVersion
;
5689 minor
= XkbMinorVersion
;
5690 if (!XkbLibraryVersion (&major
, &minor
))
5696 /* Check that the server supports XKB. */
5697 major
= XkbMajorVersion
;
5698 minor
= XkbMinorVersion
;
5699 if (!XkbQueryExtension (dpy
, &op
, &event
, &error
, &major
, &minor
))
5705 /* In this code we check that the keyboard has physical keys with names
5706 that start with BKSP (Backspace) and DELE (Delete), and that they
5707 generate keysym XK_BackSpace and XK_Delete respectively.
5708 This function is used to test if normal-erase-is-backspace should be
5710 An alternative approach would be to just check if XK_BackSpace and
5711 XK_Delete are mapped to any key. But if any of those are mapped to
5712 some non-intuitive key combination (Meta-Shift-Ctrl-whatever) and the
5713 user doesn't know about it, it is better to return false here.
5714 It is more obvious to the user what to do if she/he has two keys
5715 clearly marked with names/symbols and one key does something not
5716 expected (i.e. she/he then tries the other).
5717 The cases where Backspace/Delete is mapped to some other key combination
5718 are rare, and in those cases, normal-erase-is-backspace can be turned on
5722 kb
= XkbGetMap (dpy
, XkbAllMapComponentsMask
, XkbUseCoreKbd
);
5725 int delete_keycode
= 0, backspace_keycode
= 0, i
;
5727 if (XkbGetNames (dpy
, XkbAllNamesMask
, kb
) == Success
)
5729 for (i
= kb
->min_key_code
;
5730 (i
< kb
->max_key_code
5731 && (delete_keycode
== 0 || backspace_keycode
== 0));
5734 /* The XKB symbolic key names can be seen most easily in
5735 the PS file generated by `xkbprint -label name
5737 if (bcmp ("DELE", kb
->names
->keys
[i
].name
, 4) == 0)
5739 else if (bcmp ("BKSP", kb
->names
->keys
[i
].name
, 4) == 0)
5740 backspace_keycode
= i
;
5743 XkbFreeNames (kb
, 0, True
);
5746 XkbFreeClientMap (kb
, 0, True
);
5749 && backspace_keycode
5750 && XKeysymToKeycode (dpy
, XK_Delete
) == delete_keycode
5751 && XKeysymToKeycode (dpy
, XK_BackSpace
) == backspace_keycode
)
5756 #else /* not HAVE_XKBGETKEYBOARD */
5758 #endif /* not HAVE_XKBGETKEYBOARD */
5763 /***********************************************************************
5765 ***********************************************************************/
5767 /* Keep this list in the same order as frame_parms in frame.c.
5768 Use 0 for unsupported frame parameters. */
5770 frame_parm_handler x_frame_parm_handlers
[] =
5774 x_set_background_color
,
5780 x_set_foreground_color
,
5783 x_set_internal_border_width
,
5784 x_set_menu_bar_lines
,
5786 x_explicitly_set_name
,
5787 x_set_scroll_bar_width
,
5790 x_set_vertical_scroll_bars
,
5792 x_set_tool_bar_lines
,
5793 x_set_scroll_bar_foreground
,
5794 x_set_scroll_bar_background
,
5809 /* This is zero if not using X windows. */
5812 /* The section below is built by the lisp expression at the top of the file,
5813 just above where these variables are declared. */
5814 /*&&& init symbols here &&&*/
5815 Qnone
= intern_c_string ("none");
5817 Qsuppress_icon
= intern_c_string ("suppress-icon");
5818 staticpro (&Qsuppress_icon
);
5819 Qundefined_color
= intern_c_string ("undefined-color");
5820 staticpro (&Qundefined_color
);
5821 Qcompound_text
= intern_c_string ("compound-text");
5822 staticpro (&Qcompound_text
);
5823 Qcancel_timer
= intern_c_string ("cancel-timer");
5824 staticpro (&Qcancel_timer
);
5825 Qfont_param
= intern_c_string ("font-parameter");
5826 staticpro (&Qfont_param
);
5827 /* This is the end of symbol initialization. */
5829 /* Text property `display' should be nonsticky by default. */
5830 Vtext_property_default_nonsticky
5831 = Fcons (Fcons (Qdisplay
, Qt
), Vtext_property_default_nonsticky
);
5834 Fput (Qundefined_color
, Qerror_conditions
,
5835 pure_cons (Qundefined_color
, pure_cons (Qerror
, Qnil
)));
5836 Fput (Qundefined_color
, Qerror_message
,
5837 make_pure_c_string ("Undefined color"));
5839 DEFVAR_LISP ("x-pointer-shape", &Vx_pointer_shape
,
5840 doc
: /* The shape of the pointer when over text.
5841 Changing the value does not affect existing frames
5842 unless you set the mouse color. */);
5843 Vx_pointer_shape
= Qnil
;
5845 #if 0 /* This doesn't really do anything. */
5846 DEFVAR_LISP ("x-nontext-pointer-shape", &Vx_nontext_pointer_shape
,
5847 doc
: /* The shape of the pointer when not over text.
5848 This variable takes effect when you create a new frame
5849 or when you set the mouse color. */);
5851 Vx_nontext_pointer_shape
= Qnil
;
5853 DEFVAR_LISP ("x-hourglass-pointer-shape", &Vx_hourglass_pointer_shape
,
5854 doc
: /* The shape of the pointer when Emacs is busy.
5855 This variable takes effect when you create a new frame
5856 or when you set the mouse color. */);
5857 Vx_hourglass_pointer_shape
= Qnil
;
5859 #if 0 /* This doesn't really do anything. */
5860 DEFVAR_LISP ("x-mode-pointer-shape", &Vx_mode_pointer_shape
,
5861 doc
: /* The shape of the pointer when over the mode line.
5862 This variable takes effect when you create a new frame
5863 or when you set the mouse color. */);
5865 Vx_mode_pointer_shape
= Qnil
;
5867 DEFVAR_LISP ("x-sensitive-text-pointer-shape",
5868 &Vx_sensitive_text_pointer_shape
,
5869 doc
: /* The shape of the pointer when over mouse-sensitive text.
5870 This variable takes effect when you create a new frame
5871 or when you set the mouse color. */);
5872 Vx_sensitive_text_pointer_shape
= Qnil
;
5874 DEFVAR_LISP ("x-window-horizontal-drag-cursor",
5875 &Vx_window_horizontal_drag_shape
,
5876 doc
: /* Pointer shape to use for indicating a window can be dragged horizontally.
5877 This variable takes effect when you create a new frame
5878 or when you set the mouse color. */);
5879 Vx_window_horizontal_drag_shape
= Qnil
;
5881 DEFVAR_LISP ("x-cursor-fore-pixel", &Vx_cursor_fore_pixel
,
5882 doc
: /* A string indicating the foreground color of the cursor box. */);
5883 Vx_cursor_fore_pixel
= Qnil
;
5885 DEFVAR_LISP ("x-max-tooltip-size", &Vx_max_tooltip_size
,
5886 doc
: /* Maximum size for tooltips. Value is a pair (COLUMNS . ROWS).
5887 Text larger than this is clipped. */);
5888 Vx_max_tooltip_size
= Fcons (make_number (80), make_number (40));
5890 DEFVAR_LISP ("x-no-window-manager", &Vx_no_window_manager
,
5891 doc
: /* Non-nil if no X window manager is in use.
5892 Emacs doesn't try to figure this out; this is always nil
5893 unless you set it to something else. */);
5894 /* We don't have any way to find this out, so set it to nil
5895 and maybe the user would like to set it to t. */
5896 Vx_no_window_manager
= Qnil
;
5898 DEFVAR_LISP ("x-pixel-size-width-font-regexp",
5899 &Vx_pixel_size_width_font_regexp
,
5900 doc
: /* Regexp matching a font name whose width is the same as `PIXEL_SIZE'.
5902 Since Emacs gets width of a font matching with this regexp from
5903 PIXEL_SIZE field of the name, font finding mechanism gets faster for
5904 such a font. This is especially effective for such large fonts as
5905 Chinese, Japanese, and Korean. */);
5906 Vx_pixel_size_width_font_regexp
= Qnil
;
5908 /* This is not ifdef:ed, so other builds than GTK can customize it. */
5909 DEFVAR_BOOL ("x-gtk-use-old-file-dialog", &x_gtk_use_old_file_dialog
,
5910 doc
: /* *Non-nil means prompt with the old GTK file selection dialog.
5911 If nil or if the file selection dialog is not available, the new GTK file
5912 chooser is used instead. To turn off all file dialogs set the
5913 variable `use-file-dialog'. */);
5914 x_gtk_use_old_file_dialog
= 0;
5916 DEFVAR_BOOL ("x-gtk-show-hidden-files", &x_gtk_show_hidden_files
,
5917 doc
: /* *If non-nil, the GTK file chooser will by default show hidden files.
5918 Note that this is just the default, there is a toggle button on the file
5919 chooser to show or not show hidden files on a case by case basis. */);
5920 x_gtk_show_hidden_files
= 0;
5922 DEFVAR_BOOL ("x-gtk-file-dialog-help-text", &x_gtk_file_dialog_help_text
,
5923 doc
: /* *If non-nil, the GTK file chooser will show additional help text.
5924 If more space for files in the file chooser dialog is wanted, set this to nil
5925 to turn the additional text off. */);
5926 x_gtk_file_dialog_help_text
= 1;
5928 DEFVAR_BOOL ("x-gtk-whole-detached-tool-bar", &x_gtk_whole_detached_tool_bar
,
5929 doc
: /* *If non-nil, a detached tool bar is shown in full.
5930 The default is to just show an arrow and pressing on that arrow shows
5931 the tool bar buttons. */);
5932 x_gtk_whole_detached_tool_bar
= 0;
5934 Fprovide (intern_c_string ("x"), Qnil
);
5936 #ifdef USE_X_TOOLKIT
5937 Fprovide (intern_c_string ("x-toolkit"), Qnil
);
5939 Fprovide (intern_c_string ("motif"), Qnil
);
5941 DEFVAR_LISP ("motif-version-string", &Vmotif_version_string
,
5942 doc
: /* Version info for LessTif/Motif. */);
5943 Vmotif_version_string
= build_string (XmVERSION_STRING
);
5944 #endif /* USE_MOTIF */
5945 #endif /* USE_X_TOOLKIT */
5948 /* Provide x-toolkit also for GTK. Internally GTK does not use Xt so it
5949 is not an X toolkit in that sense (USE_X_TOOLKIT is not defined).
5950 But for a user it is a toolkit for X, and indeed, configure
5951 accepts --with-x-toolkit=gtk. */
5952 Fprovide (intern_c_string ("x-toolkit"), Qnil
);
5953 Fprovide (intern_c_string ("gtk"), Qnil
);
5955 DEFVAR_LISP ("gtk-version-string", &Vgtk_version_string
,
5956 doc
: /* Version info for GTK+. */);
5958 char gtk_version
[40];
5959 g_snprintf (gtk_version
, sizeof (gtk_version
), "%u.%u.%u",
5960 GTK_MAJOR_VERSION
, GTK_MINOR_VERSION
, GTK_MICRO_VERSION
);
5961 Vgtk_version_string
= make_pure_string (gtk_version
, strlen (gtk_version
), strlen (gtk_version
), 0);
5963 #endif /* USE_GTK */
5965 /* X window properties. */
5966 defsubr (&Sx_change_window_property
);
5967 defsubr (&Sx_delete_window_property
);
5968 defsubr (&Sx_window_property
);
5970 defsubr (&Sxw_display_color_p
);
5971 defsubr (&Sx_display_grayscale_p
);
5972 defsubr (&Sxw_color_defined_p
);
5973 defsubr (&Sxw_color_values
);
5974 defsubr (&Sx_server_max_request_size
);
5975 defsubr (&Sx_server_vendor
);
5976 defsubr (&Sx_server_version
);
5977 defsubr (&Sx_display_pixel_width
);
5978 defsubr (&Sx_display_pixel_height
);
5979 defsubr (&Sx_display_mm_width
);
5980 defsubr (&Sx_display_mm_height
);
5981 defsubr (&Sx_display_screens
);
5982 defsubr (&Sx_display_planes
);
5983 defsubr (&Sx_display_color_cells
);
5984 defsubr (&Sx_display_visual_class
);
5985 defsubr (&Sx_display_backing_store
);
5986 defsubr (&Sx_display_save_under
);
5987 defsubr (&Sx_wm_set_size_hint
);
5988 defsubr (&Sx_create_frame
);
5989 defsubr (&Sx_open_connection
);
5990 defsubr (&Sx_close_connection
);
5991 defsubr (&Sx_display_list
);
5992 defsubr (&Sx_synchronize
);
5993 defsubr (&Sx_focus_frame
);
5994 defsubr (&Sx_backspace_delete_keys_p
);
5996 /* Setting callback functions for fontset handler. */
5997 check_window_system_func
= check_x
;
5999 defsubr (&Sx_show_tip
);
6000 defsubr (&Sx_hide_tip
);
6002 staticpro (&tip_timer
);
6004 staticpro (&tip_frame
);
6006 last_show_tip_args
= Qnil
;
6007 staticpro (&last_show_tip_args
);
6009 defsubr (&Sx_uses_old_gtk_dialog
);
6010 #if defined (USE_MOTIF) || defined (USE_GTK)
6011 defsubr (&Sx_file_dialog
);
6014 #if defined (USE_GTK) && defined (HAVE_FREETYPE)
6015 defsubr (&Sx_select_font
);
6016 x_last_font_name
= NULL
;
6020 #endif /* HAVE_X_WINDOWS */
6022 /* arch-tag: 55040d02-5485-4d58-8b22-95a7a05f3288
6023 (do not change this comment) */