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, 2010
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>
105 #include "../lwlib/xlwmenu.h"
108 #if !defined(NO_EDITRES)
110 extern void _XEditResCheckMessages ();
111 #endif /* not defined NO_EDITRES */
113 /* Unique id counter for widgets created by the Lucid Widget Library. */
115 extern LWLIB_ID widget_id_tick
;
117 extern void free_frame_menubar ();
118 extern double atof ();
122 /* LessTif/Motif version info. */
124 static Lisp_Object Vmotif_version_string
;
126 #endif /* USE_MOTIF */
128 #endif /* USE_X_TOOLKIT */
132 /* GTK+ version info */
134 static Lisp_Object Vgtk_version_string
;
138 #define MAXREQUEST(dpy) (XMaxRequestSize (dpy))
140 /* The gray bitmap `bitmaps/gray'. This is done because xterm.c uses
141 it, and including `bitmaps/gray' more than once is a problem when
142 config.h defines `static' as an empty replacement string. */
144 int gray_bitmap_width
= gray_width
;
145 int gray_bitmap_height
= gray_height
;
146 char *gray_bitmap_bits
= gray_bits
;
148 /* Non-zero means prompt with the old GTK file selection dialog. */
150 int x_gtk_use_old_file_dialog
;
152 /* If non-zero, by default show hidden files in the GTK file chooser. */
154 int x_gtk_show_hidden_files
;
156 /* If non-zero, don't show additional help text in the GTK file chooser. */
158 int x_gtk_file_dialog_help_text
;
160 /* If non-zero, don't collapse to tool bar when it is detached. */
162 int x_gtk_whole_detached_tool_bar
;
164 /* The background and shape of the mouse pointer, and shape when not
165 over text or in the modeline. */
167 Lisp_Object Vx_pointer_shape
, Vx_nontext_pointer_shape
, Vx_mode_pointer_shape
;
168 Lisp_Object Vx_hourglass_pointer_shape
;
170 /* The shape when over mouse-sensitive text. */
172 Lisp_Object Vx_sensitive_text_pointer_shape
;
174 /* If non-nil, the pointer shape to indicate that windows can be
175 dragged horizontally. */
177 Lisp_Object Vx_window_horizontal_drag_shape
;
179 /* Color of chars displayed in cursor box. */
181 Lisp_Object Vx_cursor_fore_pixel
;
183 /* Nonzero if using X. */
187 /* Non nil if no window manager is in use. */
189 Lisp_Object Vx_no_window_manager
;
191 /* Regexp matching a font name whose width is the same as `PIXEL_SIZE'. */
193 Lisp_Object Vx_pixel_size_width_font_regexp
;
196 Lisp_Object Qsuppress_icon
;
197 Lisp_Object Qundefined_color
;
198 Lisp_Object Qcompound_text
, Qcancel_timer
;
199 Lisp_Object Qfont_param
;
203 extern Lisp_Object Vwindow_system_version
;
207 extern Lisp_Object Vsystem_name
;
209 /* The below are defined in frame.c. */
211 extern Lisp_Object Vmenu_bar_mode
, Vtool_bar_mode
;
212 extern Lisp_Object Qtooltip
;
215 int image_cache_refcount
, dpyinfo_refcount
;
218 #if defined (USE_GTK) && defined (HAVE_FREETYPE)
219 char *x_last_font_name
;
223 /* Error if we are not connected to X. */
229 error ("X windows are not in use or not initialized");
232 /* Nonzero if we can use mouse menus.
233 You should not call this unless HAVE_MENUS is defined. */
241 /* Extract a frame as a FRAME_PTR, defaulting to the selected frame
242 and checking validity for X. */
245 check_x_frame (Lisp_Object frame
)
250 frame
= selected_frame
;
251 CHECK_LIVE_FRAME (frame
);
254 error ("Non-X frame used");
258 /* Let the user specify an X display with a Lisp object.
259 OBJECT may be nil, a frame or a terminal object.
260 nil stands for the selected frame--or, if that is not an X frame,
261 the first X display on the list. */
263 struct x_display_info
*
264 check_x_display_info (Lisp_Object object
)
266 struct x_display_info
*dpyinfo
= NULL
;
270 struct frame
*sf
= XFRAME (selected_frame
);
272 if (FRAME_X_P (sf
) && FRAME_LIVE_P (sf
))
273 dpyinfo
= FRAME_X_DISPLAY_INFO (sf
);
274 else if (x_display_list
!= 0)
275 dpyinfo
= x_display_list
;
277 error ("X windows are not in use or not initialized");
279 else if (TERMINALP (object
))
281 struct terminal
*t
= get_terminal (object
, 1);
283 if (t
->type
!= output_x_window
)
284 error ("Terminal %d is not an X display", XINT (object
));
286 dpyinfo
= t
->display_info
.x
;
288 else if (STRINGP (object
))
289 dpyinfo
= x_display_info_for_name (object
);
292 FRAME_PTR f
= check_x_frame (object
);
293 dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
300 /* Return the Emacs frame-object corresponding to an X window.
301 It could be the frame's main window or an icon window. */
303 /* This function can be called during GC, so use GC_xxx type test macros. */
306 x_window_to_frame (struct x_display_info
*dpyinfo
, int wdesc
)
308 Lisp_Object tail
, frame
;
311 if (wdesc
== None
) return 0;
313 for (tail
= Vframe_list
; CONSP (tail
); tail
= XCDR (tail
))
319 if (!FRAME_X_P (f
) || FRAME_X_DISPLAY_INFO (f
) != dpyinfo
)
321 if (f
->output_data
.x
->hourglass_window
== wdesc
)
324 if ((f
->output_data
.x
->edit_widget
325 && XtWindow (f
->output_data
.x
->edit_widget
) == wdesc
)
326 /* A tooltip frame? */
327 || (!f
->output_data
.x
->edit_widget
328 && FRAME_X_WINDOW (f
) == wdesc
)
329 || f
->output_data
.x
->icon_desc
== wdesc
)
331 #else /* not USE_X_TOOLKIT */
333 if (f
->output_data
.x
->edit_widget
)
335 GtkWidget
*gwdesc
= xg_win_to_widget (dpyinfo
->display
, wdesc
);
336 struct x_output
*x
= f
->output_data
.x
;
337 if (gwdesc
!= 0 && gwdesc
== x
->edit_widget
)
341 if (FRAME_X_WINDOW (f
) == wdesc
342 || f
->output_data
.x
->icon_desc
== wdesc
)
344 #endif /* not USE_X_TOOLKIT */
349 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
350 /* Like x_window_to_frame but also compares the window with the widget's
354 x_any_window_to_frame (struct x_display_info
*dpyinfo
, int wdesc
)
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 (struct x_display_info
*dpyinfo
, XEvent
*event
)
407 Window wdesc
= event
->xany
.window
;
408 Lisp_Object tail
, frame
;
412 if (wdesc
== None
) return 0;
414 for (tail
= Vframe_list
; CONSP (tail
); tail
= XCDR (tail
))
420 if (!FRAME_X_P (f
) || FRAME_X_DISPLAY_INFO (f
) != dpyinfo
)
422 x
= f
->output_data
.x
;
424 if (x
->menubar_widget
&& xg_event_is_for_menubar (f
, event
))
427 /* Match if the window is this frame's menubar. */
428 if (x
->menubar_widget
429 && lw_window_is_in_menubar (wdesc
, x
->menubar_widget
))
436 /* Return the frame whose principal (outermost) window is WDESC.
437 If WDESC is some other (smaller) window, we return 0. */
440 x_top_window_to_frame (struct x_display_info
*dpyinfo
, int wdesc
)
442 Lisp_Object tail
, frame
;
446 if (wdesc
== None
) return 0;
448 for (tail
= Vframe_list
; CONSP (tail
); tail
= XCDR (tail
))
454 if (!FRAME_X_P (f
) || FRAME_X_DISPLAY_INFO (f
) != dpyinfo
)
456 x
= f
->output_data
.x
;
460 /* This frame matches if the window is its topmost widget. */
462 GtkWidget
*gwdesc
= xg_win_to_widget (dpyinfo
->display
, wdesc
);
463 if (gwdesc
== x
->widget
)
466 if (wdesc
== XtWindow (x
->widget
))
468 #if 0 /* I don't know why it did this,
469 but it seems logically wrong,
470 and it causes trouble for MapNotify events. */
471 /* Match if the window is this frame's menubar. */
472 if (x
->menubar_widget
473 && wdesc
== XtWindow (x
->menubar_widget
))
478 else if (FRAME_X_WINDOW (f
) == wdesc
)
484 #endif /* USE_X_TOOLKIT || USE_GTK */
488 static void x_default_font_parameter (struct frame
*, Lisp_Object
);
490 static Lisp_Object
unwind_create_frame (Lisp_Object
);
491 static Lisp_Object
unwind_create_tip_frame (Lisp_Object
);
493 void x_set_foreground_color (struct frame
*, Lisp_Object
, Lisp_Object
);
494 static void x_set_wait_for_wm (struct frame
*, Lisp_Object
, Lisp_Object
);
495 void x_set_background_color (struct frame
*, Lisp_Object
, Lisp_Object
);
496 void x_set_mouse_color (struct frame
*, Lisp_Object
, Lisp_Object
);
497 void x_set_cursor_color (struct frame
*, Lisp_Object
, Lisp_Object
);
498 void x_set_border_color (struct frame
*, Lisp_Object
, Lisp_Object
);
499 void x_set_cursor_type (struct frame
*, Lisp_Object
, Lisp_Object
);
500 void x_set_icon_type (struct frame
*, Lisp_Object
, Lisp_Object
);
501 void x_set_icon_name (struct frame
*, Lisp_Object
, Lisp_Object
);
502 void x_explicitly_set_name (struct frame
*, Lisp_Object
, Lisp_Object
);
503 void x_set_menu_bar_lines (struct frame
*, Lisp_Object
, Lisp_Object
);
504 void x_set_title (struct frame
*, Lisp_Object
, Lisp_Object
);
505 void x_set_tool_bar_lines (struct frame
*, Lisp_Object
, Lisp_Object
);
506 void x_set_scroll_bar_foreground (struct frame
*, Lisp_Object
,
508 void x_set_scroll_bar_background (struct frame
*, Lisp_Object
,
510 static Lisp_Object
x_default_scroll_bar_color_parameter (struct frame
*,
517 /* Store the screen positions of frame F into XPTR and YPTR.
518 These are the positions of the containing window manager window,
519 not Emacs's own window. */
522 x_real_positions (FRAME_PTR f
, int *xptr
, int *yptr
)
524 int win_x
, win_y
, outer_x
, outer_y
;
525 int real_x
= 0, real_y
= 0;
527 Window win
= f
->output_data
.x
->parent_desc
;
531 x_catch_errors (FRAME_X_DISPLAY (f
));
533 if (win
== FRAME_X_DISPLAY_INFO (f
)->root_window
)
534 win
= FRAME_OUTER_WINDOW (f
);
536 /* This loop traverses up the containment tree until we hit the root
537 window. Window managers may intersect many windows between our window
538 and the root window. The window we find just before the root window
539 should be the outer WM window. */
542 Window wm_window
, rootw
;
543 Window
*tmp_children
;
544 unsigned int tmp_nchildren
;
547 success
= XQueryTree (FRAME_X_DISPLAY (f
), win
, &rootw
,
548 &wm_window
, &tmp_children
, &tmp_nchildren
);
550 had_errors
= x_had_errors_p (FRAME_X_DISPLAY (f
));
552 /* Don't free tmp_children if XQueryTree failed. */
556 XFree ((char *) tmp_children
);
558 if (wm_window
== rootw
|| had_errors
)
569 /* Get the real coordinates for the WM window upper left corner */
570 XGetGeometry (FRAME_X_DISPLAY (f
), win
,
571 &rootw
, &real_x
, &real_y
, &ign
, &ign
, &ign
, &ign
);
573 /* Translate real coordinates to coordinates relative to our
574 window. For our window, the upper left corner is 0, 0.
575 Since the upper left corner of the WM window is outside
576 our window, win_x and win_y will be negative:
578 ------------------ ---> x
580 | ----------------- v y
583 XTranslateCoordinates (FRAME_X_DISPLAY (f
),
585 /* From-window, to-window. */
586 FRAME_X_DISPLAY_INFO (f
)->root_window
,
589 /* From-position, to-position. */
590 real_x
, real_y
, &win_x
, &win_y
,
595 if (FRAME_X_WINDOW (f
) == FRAME_OUTER_WINDOW (f
))
602 XTranslateCoordinates (FRAME_X_DISPLAY (f
),
604 /* From-window, to-window. */
605 FRAME_X_DISPLAY_INFO (f
)->root_window
,
606 FRAME_OUTER_WINDOW (f
),
608 /* From-position, to-position. */
609 real_x
, real_y
, &outer_x
, &outer_y
,
615 had_errors
= x_had_errors_p (FRAME_X_DISPLAY (f
));
622 if (had_errors
) return;
624 f
->x_pixels_diff
= -win_x
;
625 f
->y_pixels_diff
= -win_y
;
627 FRAME_X_OUTPUT (f
)->x_pixels_outer_diff
= -outer_x
;
628 FRAME_X_OUTPUT (f
)->y_pixels_outer_diff
= -outer_y
;
637 /* Gamma-correct COLOR on frame F. */
640 gamma_correct (struct frame
*f
, XColor
*color
)
644 color
->red
= pow (color
->red
/ 65535.0, f
->gamma
) * 65535.0 + 0.5;
645 color
->green
= pow (color
->green
/ 65535.0, f
->gamma
) * 65535.0 + 0.5;
646 color
->blue
= pow (color
->blue
/ 65535.0, f
->gamma
) * 65535.0 + 0.5;
651 /* Decide if color named COLOR_NAME is valid for use on frame F. If
652 so, return the RGB values in COLOR. If ALLOC_P is non-zero,
653 allocate the color. Value is zero if COLOR_NAME is invalid, or
654 no color could be allocated. */
657 x_defined_color (struct frame
*f
, const char *color_name
,
658 XColor
*color
, int alloc_p
)
661 Display
*dpy
= FRAME_X_DISPLAY (f
);
662 Colormap cmap
= FRAME_X_COLORMAP (f
);
665 success_p
= XParseColor (dpy
, cmap
, color_name
, color
);
666 if (success_p
&& alloc_p
)
667 success_p
= x_alloc_nearest_color (f
, cmap
, color
);
674 /* Return the pixel color value for color COLOR_NAME on frame F. If F
675 is a monochrome frame, return MONO_COLOR regardless of what ARG says.
676 Signal an error if color can't be allocated. */
679 x_decode_color (FRAME_PTR f
, Lisp_Object color_name
, int mono_color
)
683 CHECK_STRING (color_name
);
685 #if 0 /* Don't do this. It's wrong when we're not using the default
686 colormap, it makes freeing difficult, and it's probably not
687 an important optimization. */
688 if (strcmp (SDATA (color_name
), "black") == 0)
689 return BLACK_PIX_DEFAULT (f
);
690 else if (strcmp (SDATA (color_name
), "white") == 0)
691 return WHITE_PIX_DEFAULT (f
);
694 /* Return MONO_COLOR for monochrome frames. */
695 if (FRAME_X_DISPLAY_INFO (f
)->n_planes
== 1)
698 /* x_defined_color is responsible for coping with failures
699 by looking for a near-miss. */
700 if (x_defined_color (f
, SDATA (color_name
), &cdef
, 1))
703 signal_error ("Undefined color", color_name
);
708 /* Change the `wait-for-wm' frame parameter of frame F. OLD_VALUE is
709 the previous value of that parameter, NEW_VALUE is the new value.
710 See also the comment of wait_for_wm in struct x_output. */
713 x_set_wait_for_wm (struct frame
*f
, Lisp_Object new_value
, Lisp_Object old_value
)
715 f
->output_data
.x
->wait_for_wm
= !NILP (new_value
);
720 /* Set icon from FILE for frame F. By using GTK functions the icon
721 may be any format that GdkPixbuf knows about, i.e. not just bitmaps. */
724 xg_set_icon (FRAME_PTR f
, Lisp_Object file
)
729 found
= x_find_image_file (file
);
735 char *filename
= (char *) SDATA (found
);
738 pixbuf
= gdk_pixbuf_new_from_file (filename
, &err
);
742 gtk_window_set_icon (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)),
744 g_object_unref (pixbuf
);
758 xg_set_icon_from_xpm_data (FRAME_PTR f
, char **data
)
761 GdkPixbuf
*pixbuf
= gdk_pixbuf_new_from_xpm_data ((const char **) data
);
766 gtk_window_set_icon (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)), pixbuf
);
767 g_object_unref (pixbuf
);
773 /* Functions called only from `x_set_frame_param'
774 to set individual parameters.
776 If FRAME_X_WINDOW (f) is 0,
777 the frame is being created and its X-window does not exist yet.
778 In that case, just record the parameter's new value
779 in the standard place; do not attempt to change the window. */
782 x_set_foreground_color (struct frame
*f
, Lisp_Object arg
, Lisp_Object oldval
)
784 struct x_output
*x
= f
->output_data
.x
;
785 unsigned long fg
, old_fg
;
787 fg
= x_decode_color (f
, arg
, BLACK_PIX_DEFAULT (f
));
788 old_fg
= FRAME_FOREGROUND_PIXEL (f
);
789 FRAME_FOREGROUND_PIXEL (f
) = fg
;
791 if (FRAME_X_WINDOW (f
) != 0)
793 Display
*dpy
= FRAME_X_DISPLAY (f
);
796 XSetForeground (dpy
, x
->normal_gc
, fg
);
797 XSetBackground (dpy
, x
->reverse_gc
, fg
);
799 if (x
->cursor_pixel
== old_fg
)
801 unload_color (f
, x
->cursor_pixel
);
802 x
->cursor_pixel
= x_copy_color (f
, fg
);
803 XSetBackground (dpy
, x
->cursor_gc
, x
->cursor_pixel
);
808 update_face_from_frame_parameter (f
, Qforeground_color
, arg
);
810 if (FRAME_VISIBLE_P (f
))
814 unload_color (f
, old_fg
);
818 x_set_background_color (struct frame
*f
, Lisp_Object arg
, Lisp_Object oldval
)
820 struct x_output
*x
= f
->output_data
.x
;
823 bg
= x_decode_color (f
, arg
, WHITE_PIX_DEFAULT (f
));
824 unload_color (f
, FRAME_BACKGROUND_PIXEL (f
));
825 FRAME_BACKGROUND_PIXEL (f
) = bg
;
827 if (FRAME_X_WINDOW (f
) != 0)
829 Display
*dpy
= FRAME_X_DISPLAY (f
);
832 XSetBackground (dpy
, x
->normal_gc
, bg
);
833 XSetForeground (dpy
, x
->reverse_gc
, bg
);
834 XSetWindowBackground (dpy
, FRAME_X_WINDOW (f
), bg
);
835 XSetForeground (dpy
, x
->cursor_gc
, bg
);
838 xg_set_background_color (f
, bg
);
841 #ifndef USE_TOOLKIT_SCROLL_BARS /* Turns out to be annoying with
842 toolkit scroll bars. */
845 for (bar
= FRAME_SCROLL_BARS (f
);
847 bar
= XSCROLL_BAR (bar
)->next
)
849 Window window
= XSCROLL_BAR (bar
)->x_window
;
850 XSetWindowBackground (dpy
, window
, bg
);
853 #endif /* USE_TOOLKIT_SCROLL_BARS */
856 update_face_from_frame_parameter (f
, Qbackground_color
, arg
);
858 if (FRAME_VISIBLE_P (f
))
864 make_invisible_cursor (struct frame
*f
)
866 Display
*dpy
= FRAME_X_DISPLAY (f
);
867 static char const no_data
[] = { 0 };
872 x_catch_errors (dpy
);
873 pix
= XCreateBitmapFromData (dpy
, FRAME_X_DISPLAY_INFO (f
)->root_window
,
875 if (! x_had_errors_p (dpy
) && pix
!= None
)
878 col
.red
= col
.green
= col
.blue
= 0;
879 col
.flags
= DoRed
| DoGreen
| DoBlue
;
880 c
= XCreatePixmapCursor (dpy
, pix
, pix
, &col
, &col
, 0, 0);
881 if (x_had_errors_p (dpy
) || c
== None
)
883 XFreePixmap (dpy
, pix
);
892 x_set_mouse_color (struct frame
*f
, Lisp_Object arg
, Lisp_Object oldval
)
894 struct x_output
*x
= f
->output_data
.x
;
895 Display
*dpy
= FRAME_X_DISPLAY (f
);
896 Cursor cursor
, nontext_cursor
, mode_cursor
, hand_cursor
;
897 Cursor hourglass_cursor
, horizontal_drag_cursor
;
898 unsigned long pixel
= x_decode_color (f
, arg
, BLACK_PIX_DEFAULT (f
));
899 unsigned long mask_color
= FRAME_BACKGROUND_PIXEL (f
);
901 /* Don't let pointers be invisible. */
902 if (mask_color
== pixel
)
904 x_free_colors (f
, &pixel
, 1);
905 pixel
= x_copy_color (f
, FRAME_FOREGROUND_PIXEL (f
));
908 unload_color (f
, x
->mouse_pixel
);
909 x
->mouse_pixel
= pixel
;
913 /* It's not okay to crash if the user selects a screwy cursor. */
914 x_catch_errors (dpy
);
916 if (!NILP (Vx_pointer_shape
))
918 CHECK_NUMBER (Vx_pointer_shape
);
919 cursor
= XCreateFontCursor (dpy
, XINT (Vx_pointer_shape
));
922 cursor
= XCreateFontCursor (dpy
, XC_xterm
);
923 x_check_errors (dpy
, "bad text pointer cursor: %s");
925 if (!NILP (Vx_nontext_pointer_shape
))
927 CHECK_NUMBER (Vx_nontext_pointer_shape
);
929 = XCreateFontCursor (dpy
, XINT (Vx_nontext_pointer_shape
));
932 nontext_cursor
= XCreateFontCursor (dpy
, XC_left_ptr
);
933 x_check_errors (dpy
, "bad nontext pointer cursor: %s");
935 if (!NILP (Vx_hourglass_pointer_shape
))
937 CHECK_NUMBER (Vx_hourglass_pointer_shape
);
939 = XCreateFontCursor (dpy
, XINT (Vx_hourglass_pointer_shape
));
942 hourglass_cursor
= XCreateFontCursor (dpy
, XC_watch
);
943 x_check_errors (dpy
, "bad hourglass pointer cursor: %s");
945 if (!NILP (Vx_mode_pointer_shape
))
947 CHECK_NUMBER (Vx_mode_pointer_shape
);
948 mode_cursor
= XCreateFontCursor (dpy
, XINT (Vx_mode_pointer_shape
));
951 mode_cursor
= XCreateFontCursor (dpy
, XC_xterm
);
952 x_check_errors (dpy
, "bad modeline pointer cursor: %s");
954 if (!NILP (Vx_sensitive_text_pointer_shape
))
956 CHECK_NUMBER (Vx_sensitive_text_pointer_shape
);
958 = XCreateFontCursor (dpy
, XINT (Vx_sensitive_text_pointer_shape
));
961 hand_cursor
= XCreateFontCursor (dpy
, XC_hand2
);
963 if (!NILP (Vx_window_horizontal_drag_shape
))
965 CHECK_NUMBER (Vx_window_horizontal_drag_shape
);
966 horizontal_drag_cursor
967 = XCreateFontCursor (dpy
, XINT (Vx_window_horizontal_drag_shape
));
970 horizontal_drag_cursor
971 = XCreateFontCursor (dpy
, XC_sb_h_double_arrow
);
973 /* Check and report errors with the above calls. */
974 x_check_errors (dpy
, "can't set cursor shape: %s");
978 XColor fore_color
, back_color
;
980 fore_color
.pixel
= x
->mouse_pixel
;
981 x_query_color (f
, &fore_color
);
982 back_color
.pixel
= mask_color
;
983 x_query_color (f
, &back_color
);
985 XRecolorCursor (dpy
, cursor
, &fore_color
, &back_color
);
986 XRecolorCursor (dpy
, nontext_cursor
, &fore_color
, &back_color
);
987 XRecolorCursor (dpy
, mode_cursor
, &fore_color
, &back_color
);
988 XRecolorCursor (dpy
, hand_cursor
, &fore_color
, &back_color
);
989 XRecolorCursor (dpy
, hourglass_cursor
, &fore_color
, &back_color
);
990 XRecolorCursor (dpy
, horizontal_drag_cursor
, &fore_color
, &back_color
);
993 if (FRAME_X_WINDOW (f
) != 0)
994 XDefineCursor (dpy
, FRAME_X_WINDOW (f
),
995 f
->output_data
.x
->current_cursor
= cursor
);
997 if (FRAME_X_DISPLAY_INFO (f
)->invisible_cursor
== 0)
998 FRAME_X_DISPLAY_INFO (f
)->invisible_cursor
= make_invisible_cursor (f
);
1000 if (cursor
!= x
->text_cursor
1001 && x
->text_cursor
!= 0)
1002 XFreeCursor (dpy
, x
->text_cursor
);
1003 x
->text_cursor
= cursor
;
1005 if (nontext_cursor
!= x
->nontext_cursor
1006 && x
->nontext_cursor
!= 0)
1007 XFreeCursor (dpy
, x
->nontext_cursor
);
1008 x
->nontext_cursor
= nontext_cursor
;
1010 if (hourglass_cursor
!= x
->hourglass_cursor
1011 && x
->hourglass_cursor
!= 0)
1012 XFreeCursor (dpy
, x
->hourglass_cursor
);
1013 x
->hourglass_cursor
= hourglass_cursor
;
1015 if (mode_cursor
!= x
->modeline_cursor
1016 && x
->modeline_cursor
!= 0)
1017 XFreeCursor (dpy
, f
->output_data
.x
->modeline_cursor
);
1018 x
->modeline_cursor
= mode_cursor
;
1020 if (hand_cursor
!= x
->hand_cursor
1021 && x
->hand_cursor
!= 0)
1022 XFreeCursor (dpy
, x
->hand_cursor
);
1023 x
->hand_cursor
= hand_cursor
;
1025 if (horizontal_drag_cursor
!= x
->horizontal_drag_cursor
1026 && x
->horizontal_drag_cursor
!= 0)
1027 XFreeCursor (dpy
, x
->horizontal_drag_cursor
);
1028 x
->horizontal_drag_cursor
= horizontal_drag_cursor
;
1033 update_face_from_frame_parameter (f
, Qmouse_color
, arg
);
1037 x_set_cursor_color (struct frame
*f
, Lisp_Object arg
, Lisp_Object oldval
)
1039 unsigned long fore_pixel
, pixel
;
1040 int fore_pixel_allocated_p
= 0, pixel_allocated_p
= 0;
1041 struct x_output
*x
= f
->output_data
.x
;
1043 if (!NILP (Vx_cursor_fore_pixel
))
1045 fore_pixel
= x_decode_color (f
, Vx_cursor_fore_pixel
,
1046 WHITE_PIX_DEFAULT (f
));
1047 fore_pixel_allocated_p
= 1;
1050 fore_pixel
= FRAME_BACKGROUND_PIXEL (f
);
1052 pixel
= x_decode_color (f
, arg
, BLACK_PIX_DEFAULT (f
));
1053 pixel_allocated_p
= 1;
1055 /* Make sure that the cursor color differs from the background color. */
1056 if (pixel
== FRAME_BACKGROUND_PIXEL (f
))
1058 if (pixel_allocated_p
)
1060 x_free_colors (f
, &pixel
, 1);
1061 pixel_allocated_p
= 0;
1064 pixel
= x
->mouse_pixel
;
1065 if (pixel
== fore_pixel
)
1067 if (fore_pixel_allocated_p
)
1069 x_free_colors (f
, &fore_pixel
, 1);
1070 fore_pixel_allocated_p
= 0;
1072 fore_pixel
= FRAME_BACKGROUND_PIXEL (f
);
1076 unload_color (f
, x
->cursor_foreground_pixel
);
1077 if (!fore_pixel_allocated_p
)
1078 fore_pixel
= x_copy_color (f
, fore_pixel
);
1079 x
->cursor_foreground_pixel
= fore_pixel
;
1081 unload_color (f
, x
->cursor_pixel
);
1082 if (!pixel_allocated_p
)
1083 pixel
= x_copy_color (f
, pixel
);
1084 x
->cursor_pixel
= pixel
;
1086 if (FRAME_X_WINDOW (f
) != 0)
1089 XSetBackground (FRAME_X_DISPLAY (f
), x
->cursor_gc
, x
->cursor_pixel
);
1090 XSetForeground (FRAME_X_DISPLAY (f
), x
->cursor_gc
, fore_pixel
);
1093 if (FRAME_VISIBLE_P (f
))
1095 x_update_cursor (f
, 0);
1096 x_update_cursor (f
, 1);
1100 update_face_from_frame_parameter (f
, Qcursor_color
, arg
);
1103 /* Set the border-color of frame F to pixel value PIX.
1104 Note that this does not fully take effect if done before
1105 F has an x-window. */
1108 x_set_border_pixel (struct frame
*f
, int pix
)
1110 unload_color (f
, f
->output_data
.x
->border_pixel
);
1111 f
->output_data
.x
->border_pixel
= pix
;
1113 if (FRAME_X_WINDOW (f
) != 0 && f
->border_width
> 0)
1116 XSetWindowBorder (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
1117 (unsigned long)pix
);
1120 if (FRAME_VISIBLE_P (f
))
1125 /* Set the border-color of frame F to value described by ARG.
1126 ARG can be a string naming a color.
1127 The border-color is used for the border that is drawn by the X server.
1128 Note that this does not fully take effect if done before
1129 F has an x-window; it must be redone when the window is created.
1131 Note: this is done in two routines because of the way X10 works.
1133 Note: under X11, this is normally the province of the window manager,
1134 and so emacs' border colors may be overridden. */
1137 x_set_border_color (struct frame
*f
, Lisp_Object arg
, Lisp_Object oldval
)
1142 pix
= x_decode_color (f
, arg
, BLACK_PIX_DEFAULT (f
));
1143 x_set_border_pixel (f
, pix
);
1144 update_face_from_frame_parameter (f
, Qborder_color
, arg
);
1149 x_set_cursor_type (FRAME_PTR f
, Lisp_Object arg
, Lisp_Object oldval
)
1151 set_frame_cursor_types (f
, arg
);
1153 /* Make sure the cursor gets redrawn. */
1154 cursor_type_changed
= 1;
1158 x_set_icon_type (struct frame
*f
, Lisp_Object arg
, Lisp_Object oldval
)
1164 if (STRINGP (oldval
) && EQ (Fstring_equal (oldval
, arg
), Qt
))
1167 else if (!STRINGP (oldval
) && EQ (oldval
, Qnil
) == EQ (arg
, Qnil
))
1172 result
= x_text_icon (f
,
1173 (char *) SDATA ((!NILP (f
->icon_name
)
1177 result
= x_bitmap_icon (f
, arg
);
1182 error ("No icon window available");
1185 XFlush (FRAME_X_DISPLAY (f
));
1190 x_set_icon_name (struct frame
*f
, Lisp_Object arg
, Lisp_Object oldval
)
1196 if (STRINGP (oldval
) && EQ (Fstring_equal (oldval
, arg
), Qt
))
1199 else if (!NILP (arg
) || NILP (oldval
))
1204 if (f
->output_data
.x
->icon_bitmap
!= 0)
1209 result
= x_text_icon (f
,
1210 (char *) SDATA ((!NILP (f
->icon_name
)
1219 error ("No icon window available");
1222 XFlush (FRAME_X_DISPLAY (f
));
1228 x_set_menu_bar_lines (struct frame
*f
, Lisp_Object value
, Lisp_Object oldval
)
1231 #if ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK)
1232 int olines
= FRAME_MENU_BAR_LINES (f
);
1235 /* Right now, menu bars don't work properly in minibuf-only frames;
1236 most of the commands try to apply themselves to the minibuffer
1237 frame itself, and get an error because you can't switch buffers
1238 in or split the minibuffer window. */
1239 if (FRAME_MINIBUF_ONLY_P (f
))
1242 if (INTEGERP (value
))
1243 nlines
= XINT (value
);
1247 /* Make sure we redisplay all windows in this frame. */
1248 windows_or_buffers_changed
++;
1250 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
1251 FRAME_MENU_BAR_LINES (f
) = 0;
1254 FRAME_EXTERNAL_MENU_BAR (f
) = 1;
1255 if (FRAME_X_P (f
) && f
->output_data
.x
->menubar_widget
== 0)
1256 /* Make sure next redisplay shows the menu bar. */
1257 XWINDOW (FRAME_SELECTED_WINDOW (f
))->update_mode_line
= Qt
;
1261 if (FRAME_EXTERNAL_MENU_BAR (f
) == 1)
1262 free_frame_menubar (f
);
1263 FRAME_EXTERNAL_MENU_BAR (f
) = 0;
1265 f
->output_data
.x
->menubar_widget
= 0;
1267 #else /* not USE_X_TOOLKIT && not USE_GTK */
1268 FRAME_MENU_BAR_LINES (f
) = nlines
;
1269 resize_frame_windows (f
, FRAME_LINES (f
), 0);
1271 /* If the menu bar height gets changed, the internal border below
1272 the top margin has to be cleared. Also, if the menu bar gets
1273 larger, the area for the added lines has to be cleared except for
1274 the first menu bar line that is to be drawn later. */
1275 if (nlines
!= olines
)
1277 int height
= FRAME_INTERNAL_BORDER_WIDTH (f
);
1278 int width
= FRAME_PIXEL_WIDTH (f
);
1281 /* height can be zero here. */
1282 if (height
> 0 && width
> 0)
1284 y
= FRAME_TOP_MARGIN_HEIGHT (f
);
1287 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
1288 0, y
, width
, height
, False
);
1292 if (nlines
> 1 && nlines
> olines
)
1294 y
= (olines
== 0 ? 1 : olines
) * FRAME_LINE_HEIGHT (f
);
1295 height
= nlines
* FRAME_LINE_HEIGHT (f
) - y
;
1298 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
1299 0, y
, width
, height
, False
);
1303 if (nlines
== 0 && WINDOWP (f
->menu_bar_window
))
1304 clear_glyph_matrix (XWINDOW (f
->menu_bar_window
)->current_matrix
);
1306 #endif /* not USE_X_TOOLKIT && not USE_GTK */
1308 run_window_configuration_change_hook (f
);
1312 /* Set the number of lines used for the tool bar of frame F to VALUE.
1313 VALUE not an integer, or < 0 means set the lines to zero. OLDVAL
1314 is the old number of tool bar lines. This function changes the
1315 height of all windows on frame F to match the new tool bar height.
1316 The frame's height doesn't change. */
1319 x_set_tool_bar_lines (struct frame
*f
, Lisp_Object value
, Lisp_Object oldval
)
1321 int delta
, nlines
, root_height
;
1322 Lisp_Object root_window
;
1324 /* Treat tool bars like menu bars. */
1325 if (FRAME_MINIBUF_ONLY_P (f
))
1328 /* Use VALUE only if an integer >= 0. */
1329 if (INTEGERP (value
) && XINT (value
) >= 0)
1330 nlines
= XFASTINT (value
);
1335 FRAME_TOOL_BAR_LINES (f
) = 0;
1338 FRAME_EXTERNAL_TOOL_BAR (f
) = 1;
1339 if (FRAME_X_P (f
) && f
->output_data
.x
->toolbar_widget
== 0)
1340 /* Make sure next redisplay shows the tool bar. */
1341 XWINDOW (FRAME_SELECTED_WINDOW (f
))->update_mode_line
= Qt
;
1342 update_frame_tool_bar (f
);
1346 if (FRAME_EXTERNAL_TOOL_BAR (f
))
1347 free_frame_tool_bar (f
);
1348 FRAME_EXTERNAL_TOOL_BAR (f
) = 0;
1354 /* Make sure we redisplay all windows in this frame. */
1355 ++windows_or_buffers_changed
;
1357 delta
= nlines
- FRAME_TOOL_BAR_LINES (f
);
1359 /* Don't resize the tool-bar to more than we have room for. */
1360 root_window
= FRAME_ROOT_WINDOW (f
);
1361 root_height
= WINDOW_TOTAL_LINES (XWINDOW (root_window
));
1362 if (root_height
- delta
< 1)
1364 delta
= root_height
- 1;
1365 nlines
= FRAME_TOOL_BAR_LINES (f
) + delta
;
1368 FRAME_TOOL_BAR_LINES (f
) = nlines
;
1369 resize_frame_windows (f
, FRAME_LINES (f
), 0);
1372 /* We also have to make sure that the internal border at the top of
1373 the frame, below the menu bar or tool bar, is redrawn when the
1374 tool bar disappears. This is so because the internal border is
1375 below the tool bar if one is displayed, but is below the menu bar
1376 if there isn't a tool bar. The tool bar draws into the area
1377 below the menu bar. */
1378 if (FRAME_X_WINDOW (f
) && FRAME_TOOL_BAR_LINES (f
) == 0)
1381 clear_current_matrices (f
);
1384 /* If the tool bar gets smaller, the internal border below it
1385 has to be cleared. It was formerly part of the display
1386 of the larger tool bar, and updating windows won't clear it. */
1389 int height
= FRAME_INTERNAL_BORDER_WIDTH (f
);
1390 int width
= FRAME_PIXEL_WIDTH (f
);
1391 int y
= (FRAME_MENU_BAR_LINES (f
) + nlines
) * FRAME_LINE_HEIGHT (f
);
1393 /* height can be zero here. */
1394 if (height
> 0 && width
> 0)
1397 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
1398 0, y
, width
, height
, False
);
1402 if (WINDOWP (f
->tool_bar_window
))
1403 clear_glyph_matrix (XWINDOW (f
->tool_bar_window
)->current_matrix
);
1406 run_window_configuration_change_hook (f
);
1411 /* Set the foreground color for scroll bars on frame F to VALUE.
1412 VALUE should be a string, a color name. If it isn't a string or
1413 isn't a valid color name, do nothing. OLDVAL is the old value of
1414 the frame parameter. */
1417 x_set_scroll_bar_foreground (struct frame
*f
, Lisp_Object value
, Lisp_Object oldval
)
1419 unsigned long pixel
;
1421 if (STRINGP (value
))
1422 pixel
= x_decode_color (f
, value
, BLACK_PIX_DEFAULT (f
));
1426 if (f
->output_data
.x
->scroll_bar_foreground_pixel
!= -1)
1427 unload_color (f
, f
->output_data
.x
->scroll_bar_foreground_pixel
);
1429 f
->output_data
.x
->scroll_bar_foreground_pixel
= pixel
;
1430 if (FRAME_X_WINDOW (f
) && FRAME_VISIBLE_P (f
))
1432 /* Remove all scroll bars because they have wrong colors. */
1433 if (FRAME_TERMINAL (f
)->condemn_scroll_bars_hook
)
1434 (*FRAME_TERMINAL (f
)->condemn_scroll_bars_hook
) (f
);
1435 if (FRAME_TERMINAL (f
)->judge_scroll_bars_hook
)
1436 (*FRAME_TERMINAL (f
)->judge_scroll_bars_hook
) (f
);
1438 update_face_from_frame_parameter (f
, Qscroll_bar_foreground
, value
);
1444 /* Set the background color for scroll bars on frame F to VALUE VALUE
1445 should be a string, a color name. If it isn't a string or isn't a
1446 valid color name, do nothing. OLDVAL is the old value of the frame
1450 x_set_scroll_bar_background (struct frame
*f
, Lisp_Object value
, Lisp_Object oldval
)
1452 unsigned long pixel
;
1454 if (STRINGP (value
))
1455 pixel
= x_decode_color (f
, value
, WHITE_PIX_DEFAULT (f
));
1459 if (f
->output_data
.x
->scroll_bar_background_pixel
!= -1)
1460 unload_color (f
, f
->output_data
.x
->scroll_bar_background_pixel
);
1462 #ifdef USE_TOOLKIT_SCROLL_BARS
1463 /* Scrollbar shadow colors. */
1464 if (f
->output_data
.x
->scroll_bar_top_shadow_pixel
!= -1)
1466 unload_color (f
, f
->output_data
.x
->scroll_bar_top_shadow_pixel
);
1467 f
->output_data
.x
->scroll_bar_top_shadow_pixel
= -1;
1469 if (f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
!= -1)
1471 unload_color (f
, f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
);
1472 f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
= -1;
1474 #endif /* USE_TOOLKIT_SCROLL_BARS */
1476 f
->output_data
.x
->scroll_bar_background_pixel
= pixel
;
1477 if (FRAME_X_WINDOW (f
) && FRAME_VISIBLE_P (f
))
1479 /* Remove all scroll bars because they have wrong colors. */
1480 if (FRAME_TERMINAL (f
)->condemn_scroll_bars_hook
)
1481 (*FRAME_TERMINAL (f
)->condemn_scroll_bars_hook
) (f
);
1482 if (FRAME_TERMINAL (f
)->judge_scroll_bars_hook
)
1483 (*FRAME_TERMINAL (f
)->judge_scroll_bars_hook
) (f
);
1485 update_face_from_frame_parameter (f
, Qscroll_bar_background
, value
);
1491 /* Encode Lisp string STRING as a text in a format appropriate for
1492 XICCC (X Inter Client Communication Conventions).
1494 This can call Lisp code, so callers must GCPRO.
1496 If STRING contains only ASCII characters, do no conversion and
1497 return the string data of STRING. Otherwise, encode the text by
1498 CODING_SYSTEM, and return a newly allocated memory area which
1499 should be freed by `xfree' by a caller.
1501 SELECTIONP non-zero means the string is being encoded for an X
1502 selection, so it is safe to run pre-write conversions (which
1505 Store the byte length of resulting text in *TEXT_BYTES.
1507 If the text contains only ASCII and Latin-1, store 1 in *STRING_P,
1508 which means that the `encoding' of the result can be `STRING'.
1509 Otherwise store 0 in *STRINGP, which means that the `encoding' of
1510 the result should be `COMPOUND_TEXT'. */
1512 static unsigned char *
1513 x_encode_text (Lisp_Object string
, Lisp_Object coding_system
, int selectionp
, int *text_bytes
, int *stringp
, int *freep
)
1515 int result
= string_xstring_p (string
);
1516 struct coding_system coding
;
1520 /* No multibyte character in OBJ. We need not encode it. */
1521 *text_bytes
= SBYTES (string
);
1524 return SDATA (string
);
1527 setup_coding_system (coding_system
, &coding
);
1528 coding
.mode
|= (CODING_MODE_SAFE_ENCODING
| CODING_MODE_LAST_BLOCK
);
1529 /* We suppress producing escape sequences for composition. */
1530 coding
.common_flags
&= ~CODING_ANNOTATION_MASK
;
1531 coding
.dst_bytes
= SCHARS (string
) * 2;
1532 coding
.destination
= (unsigned char *) xmalloc (coding
.dst_bytes
);
1533 encode_coding_object (&coding
, string
, 0, 0,
1534 SCHARS (string
), SBYTES (string
), Qnil
);
1535 *text_bytes
= coding
.produced
;
1536 *stringp
= (result
== 1 || !EQ (coding_system
, Qcompound_text
));
1538 return coding
.destination
;
1542 /* Set the WM name to NAME for frame F. Also set the icon name.
1543 If the frame already has an icon name, use that, otherwise set the
1544 icon name to NAME. */
1547 x_set_name_internal (FRAME_PTR f
, Lisp_Object name
)
1549 if (FRAME_X_WINDOW (f
))
1553 XTextProperty text
, icon
;
1555 int do_free_icon_value
= 0, do_free_text_value
= 0;
1556 Lisp_Object coding_system
;
1557 Lisp_Object encoded_name
;
1558 Lisp_Object encoded_icon_name
;
1559 struct gcpro gcpro1
;
1561 /* As ENCODE_UTF_8 may cause GC and relocation of string data,
1562 we use it before x_encode_text that may return string data. */
1564 encoded_name
= ENCODE_UTF_8 (name
);
1567 coding_system
= Qcompound_text
;
1568 /* Note: Encoding strategy
1570 We encode NAME by compound-text and use "COMPOUND-TEXT" in
1571 text.encoding. But, there are non-internationalized window
1572 managers which don't support that encoding. So, if NAME
1573 contains only ASCII and 8859-1 characters, encode it by
1574 iso-latin-1, and use "STRING" in text.encoding hoping that
1575 such window managers at least analyze this format correctly,
1576 i.e. treat 8-bit bytes as 8859-1 characters.
1578 We may also be able to use "UTF8_STRING" in text.encoding
1579 in the future which can encode all Unicode characters.
1580 But, for the moment, there's no way to know that the
1581 current window manager supports it or not.
1583 Either way, we also set the _NET_WM_NAME and _NET_WM_ICON_NAME
1584 properties. Per the EWMH specification, those two properties
1585 are always UTF8_STRING. This matches what gtk_window_set_title()
1586 does in the USE_GTK case. */
1587 text
.value
= x_encode_text (name
, coding_system
, 0, &bytes
, &stringp
,
1588 &do_free_text_value
);
1589 text
.encoding
= (stringp
? XA_STRING
1590 : FRAME_X_DISPLAY_INFO (f
)->Xatom_COMPOUND_TEXT
);
1592 text
.nitems
= bytes
;
1594 if (!STRINGP (f
->icon_name
))
1597 encoded_icon_name
= encoded_name
;
1601 /* See the above comment "Note: Encoding strategy". */
1602 icon
.value
= x_encode_text (f
->icon_name
, coding_system
, 0,
1603 &bytes
, &stringp
, &do_free_icon_value
);
1604 icon
.encoding
= (stringp
? XA_STRING
1605 : FRAME_X_DISPLAY_INFO (f
)->Xatom_COMPOUND_TEXT
);
1607 icon
.nitems
= bytes
;
1609 encoded_icon_name
= ENCODE_UTF_8 (f
->icon_name
);
1613 gtk_window_set_title (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)),
1614 (char *) SDATA (encoded_name
));
1615 #else /* not USE_GTK */
1616 XSetWMName (FRAME_X_DISPLAY (f
), FRAME_OUTER_WINDOW (f
), &text
);
1617 XChangeProperty (FRAME_X_DISPLAY (f
), FRAME_OUTER_WINDOW (f
),
1618 FRAME_X_DISPLAY_INFO (f
)->Xatom_net_wm_name
,
1619 FRAME_X_DISPLAY_INFO (f
)->Xatom_UTF8_STRING
,
1621 (char *) SDATA (encoded_name
),
1622 SBYTES (encoded_name
));
1623 #endif /* not USE_GTK */
1625 XSetWMIconName (FRAME_X_DISPLAY (f
), FRAME_OUTER_WINDOW (f
), &icon
);
1626 XChangeProperty (FRAME_X_DISPLAY (f
), FRAME_OUTER_WINDOW (f
),
1627 FRAME_X_DISPLAY_INFO (f
)->Xatom_net_wm_icon_name
,
1628 FRAME_X_DISPLAY_INFO (f
)->Xatom_UTF8_STRING
,
1630 (char *) SDATA (encoded_icon_name
),
1631 SBYTES (encoded_icon_name
));
1633 if (do_free_icon_value
)
1635 if (do_free_text_value
)
1642 /* Change the name of frame F to NAME. If NAME is nil, set F's name to
1645 If EXPLICIT is non-zero, that indicates that lisp code is setting the
1646 name; if NAME is a string, set F's name to NAME and set
1647 F->explicit_name; if NAME is Qnil, then clear F->explicit_name.
1649 If EXPLICIT is zero, that indicates that Emacs redisplay code is
1650 suggesting a new name, which lisp code should override; if
1651 F->explicit_name is set, ignore the new name; otherwise, set it. */
1654 x_set_name (struct frame
*f
, Lisp_Object name
, int explicit)
1656 /* Make sure that requests from lisp code override requests from
1657 Emacs redisplay code. */
1660 /* If we're switching from explicit to implicit, we had better
1661 update the mode lines and thereby update the title. */
1662 if (f
->explicit_name
&& NILP (name
))
1663 update_mode_lines
= 1;
1665 f
->explicit_name
= ! NILP (name
);
1667 else if (f
->explicit_name
)
1670 /* If NAME is nil, set the name to the x_id_name. */
1673 /* Check for no change needed in this very common case
1674 before we do any consing. */
1675 if (!strcmp (FRAME_X_DISPLAY_INFO (f
)->x_id_name
,
1678 name
= build_string (FRAME_X_DISPLAY_INFO (f
)->x_id_name
);
1681 CHECK_STRING (name
);
1683 /* Don't change the name if it's already NAME. */
1684 if (! NILP (Fstring_equal (name
, f
->name
)))
1689 /* For setting the frame title, the title parameter should override
1690 the name parameter. */
1691 if (! NILP (f
->title
))
1694 x_set_name_internal (f
, name
);
1697 /* This function should be called when the user's lisp code has
1698 specified a name for the frame; the name will override any set by the
1701 x_explicitly_set_name (FRAME_PTR f
, Lisp_Object arg
, Lisp_Object oldval
)
1703 x_set_name (f
, arg
, 1);
1706 /* This function should be called by Emacs redisplay code to set the
1707 name; names set this way will never override names set by the user's
1710 x_implicitly_set_name (FRAME_PTR f
, Lisp_Object arg
, Lisp_Object oldval
)
1712 x_set_name (f
, arg
, 0);
1715 /* Change the title of frame F to NAME.
1716 If NAME is nil, use the frame name as the title. */
1719 x_set_title (struct frame
*f
, Lisp_Object name
, Lisp_Object old_name
)
1721 /* Don't change the title if it's already NAME. */
1722 if (EQ (name
, f
->title
))
1725 update_mode_lines
= 1;
1732 CHECK_STRING (name
);
1734 x_set_name_internal (f
, name
);
1738 x_set_scroll_bar_default_width (struct frame
*f
)
1740 int wid
= FRAME_COLUMN_WIDTH (f
);
1742 #ifdef USE_TOOLKIT_SCROLL_BARS
1743 /* A minimum width of 14 doesn't look good for toolkit scroll bars. */
1744 int width
= 16 + 2 * VERTICAL_SCROLL_BAR_WIDTH_TRIM
;
1745 FRAME_CONFIG_SCROLL_BAR_COLS (f
) = (width
+ wid
- 1) / wid
;
1746 FRAME_CONFIG_SCROLL_BAR_WIDTH (f
) = width
;
1748 /* Make the actual width at least 14 pixels and a multiple of a
1750 FRAME_CONFIG_SCROLL_BAR_COLS (f
) = (14 + wid
- 1) / wid
;
1752 /* Use all of that space (aside from required margins) for the
1754 FRAME_CONFIG_SCROLL_BAR_WIDTH (f
) = 0;
1759 /* Record in frame F the specified or default value according to ALIST
1760 of the parameter named PROP (a Lisp symbol). If no value is
1761 specified for PROP, look for an X default for XPROP on the frame
1762 named NAME. If that is not found either, use the value DEFLT. */
1765 x_default_scroll_bar_color_parameter (struct frame
*f
,
1766 Lisp_Object alist
, Lisp_Object prop
,
1767 char *xprop
, char *xclass
,
1770 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
1773 tem
= x_get_arg (dpyinfo
, alist
, prop
, xprop
, xclass
, RES_TYPE_STRING
);
1774 if (EQ (tem
, Qunbound
))
1776 #ifdef USE_TOOLKIT_SCROLL_BARS
1778 /* See if an X resource for the scroll bar color has been
1780 tem
= display_x_get_resource (dpyinfo
,
1781 build_string (foreground_p
1784 empty_unibyte_string
,
1785 build_string ("verticalScrollBar"),
1786 empty_unibyte_string
);
1789 /* If nothing has been specified, scroll bars will use a
1790 toolkit-dependent default. Because these defaults are
1791 difficult to get at without actually creating a scroll
1792 bar, use nil to indicate that no color has been
1797 #else /* not USE_TOOLKIT_SCROLL_BARS */
1801 #endif /* not USE_TOOLKIT_SCROLL_BARS */
1804 x_set_frame_parameters (f
, Fcons (Fcons (prop
, tem
), Qnil
));
1811 #ifdef USE_X_TOOLKIT
1813 /* If the WM_PROTOCOLS property does not already contain WM_TAKE_FOCUS,
1814 WM_DELETE_WINDOW, and WM_SAVE_YOURSELF, then add them. (They may
1815 already be present because of the toolkit (Motif adds some of them,
1816 for example, but Xt doesn't). */
1819 hack_wm_protocols (FRAME_PTR f
, Widget widget
)
1821 Display
*dpy
= XtDisplay (widget
);
1822 Window w
= XtWindow (widget
);
1823 int need_delete
= 1;
1830 unsigned char *catoms
;
1832 unsigned long nitems
= 0;
1833 unsigned long bytes_after
;
1835 if ((XGetWindowProperty (dpy
, w
,
1836 FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_protocols
,
1837 (long)0, (long)100, False
, XA_ATOM
,
1838 &type
, &format
, &nitems
, &bytes_after
,
1841 && format
== 32 && type
== XA_ATOM
)
1843 Atom
*atoms
= (Atom
*) catoms
;
1848 == FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_delete_window
)
1850 else if (atoms
[nitems
]
1851 == FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_take_focus
)
1853 else if (atoms
[nitems
]
1854 == FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_save_yourself
)
1865 props
[count
++] = FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_delete_window
;
1867 props
[count
++] = FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_take_focus
;
1869 props
[count
++] = FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_save_yourself
;
1871 XChangeProperty (dpy
, w
, FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_protocols
,
1872 XA_ATOM
, 32, PropModeAppend
,
1873 (unsigned char *) props
, count
);
1881 /* Support routines for XIC (X Input Context). */
1885 static XFontSet
xic_create_xfontset (struct frame
*);
1886 static XIMStyle
best_xim_style (XIMStyles
*, XIMStyles
*);
1889 /* Supported XIM styles, ordered by preference. */
1891 static XIMStyle supported_xim_styles
[] =
1893 XIMPreeditPosition
| XIMStatusArea
,
1894 XIMPreeditPosition
| XIMStatusNothing
,
1895 XIMPreeditPosition
| XIMStatusNone
,
1896 XIMPreeditNothing
| XIMStatusArea
,
1897 XIMPreeditNothing
| XIMStatusNothing
,
1898 XIMPreeditNothing
| XIMStatusNone
,
1899 XIMPreeditNone
| XIMStatusArea
,
1900 XIMPreeditNone
| XIMStatusNothing
,
1901 XIMPreeditNone
| XIMStatusNone
,
1906 /* Create an X fontset on frame F with base font name BASE_FONTNAME. */
1908 const char xic_defaut_fontset
[] = "-*-*-*-r-normal--14-*-*-*-*-*-*-*";
1910 /* Create an Xt fontset spec from the name of a base font.
1911 If `motif' is True use the Motif syntax. */
1913 xic_create_fontsetname (const char *base_fontname
, int motif
)
1915 const char *sep
= motif
? ";" : ",";
1918 /* Make a fontset name from the base font name. */
1919 if (xic_defaut_fontset
== base_fontname
)
1920 { /* There is no base font name, use the default. */
1921 int len
= strlen (base_fontname
) + 2;
1922 fontsetname
= xmalloc (len
);
1923 memset (fontsetname
, 0, len
);
1924 strcpy (fontsetname
, base_fontname
);
1928 /* Make a fontset name from the base font name.
1929 The font set will be made of the following elements:
1931 - the base font where the charset spec is replaced by -*-*.
1932 - the same but with the family also replaced with -*-*-. */
1933 const char *p
= base_fontname
;
1936 for (i
= 0; *p
; p
++)
1939 { /* As the font name doesn't conform to XLFD, we can't
1940 modify it to generalize it to allcs and allfamilies.
1941 Use the specified font plus the default. */
1942 int len
= strlen (base_fontname
) + strlen (xic_defaut_fontset
) + 3;
1943 fontsetname
= xmalloc (len
);
1944 memset (fontsetname
, 0, len
);
1945 strcpy (fontsetname
, base_fontname
);
1946 strcat (fontsetname
, sep
);
1947 strcat (fontsetname
, xic_defaut_fontset
);
1952 const char *p1
= NULL
, *p2
= NULL
, *p3
= NULL
;
1953 char *font_allcs
= NULL
;
1954 char *font_allfamilies
= NULL
;
1955 char *font_all
= NULL
;
1956 const char *allcs
= "*-*-*-*-*-*-*";
1957 const char *allfamilies
= "-*-*-";
1958 const char *all
= "*-*-*-*-";
1961 for (i
= 0, p
= base_fontname
; i
< 8; p
++)
1974 /* If base_fontname specifies ADSTYLE, make it a
1978 int diff
= (p2
- p3
) - 2;
1980 base
= alloca (strlen (base_fontname
) + 1);
1981 memcpy (base
, base_fontname
, p3
- base_fontname
);
1982 base
[p3
- base_fontname
] = '*';
1983 base
[(p3
- base_fontname
) + 1] = '-';
1984 strcpy (base
+ (p3
- base_fontname
) + 2, p2
);
1985 p
= base
+ (p
- base_fontname
) - diff
;
1986 p1
= base
+ (p1
- base_fontname
);
1987 p2
= base
+ (p2
- base_fontname
) - diff
;
1988 base_fontname
= base
;
1991 /* Build the font spec that matches all charsets. */
1992 len
= p
- base_fontname
+ strlen (allcs
) + 1;
1993 font_allcs
= (char *) alloca (len
);
1994 memset (font_allcs
, 0, len
);
1995 memcpy (font_allcs
, base_fontname
, p
- base_fontname
);
1996 strcat (font_allcs
, allcs
);
1998 /* Build the font spec that matches all families and
2000 len
= p
- p1
+ strlen (allcs
) + strlen (allfamilies
) + 1;
2001 font_allfamilies
= (char *) alloca (len
);
2002 memset (font_allfamilies
, 0, len
);
2003 strcpy (font_allfamilies
, allfamilies
);
2004 memcpy (font_allfamilies
+ strlen (allfamilies
), p1
, p
- p1
);
2005 strcat (font_allfamilies
, allcs
);
2007 /* Build the font spec that matches all. */
2008 len
= p
- p2
+ strlen (allcs
) + strlen (all
) + strlen (allfamilies
) + 1;
2009 font_all
= (char *) alloca (len
);
2010 memset (font_all
, 0, len
);
2011 strcpy (font_all
, allfamilies
);
2012 strcat (font_all
, all
);
2013 memcpy (font_all
+ strlen (all
) + strlen (allfamilies
), p2
, p
- p2
);
2014 strcat (font_all
, allcs
);
2016 /* Build the actual font set name. */
2017 len
= strlen (base_fontname
) + strlen (font_allcs
)
2018 + strlen (font_allfamilies
) + strlen (font_all
) + 5;
2019 fontsetname
= xmalloc (len
);
2020 memset (fontsetname
, 0, len
);
2021 strcpy (fontsetname
, base_fontname
);
2022 strcat (fontsetname
, sep
);
2023 strcat (fontsetname
, font_allcs
);
2024 strcat (fontsetname
, sep
);
2025 strcat (fontsetname
, font_allfamilies
);
2026 strcat (fontsetname
, sep
);
2027 strcat (fontsetname
, font_all
);
2031 strcat (fontsetname
, ":");
2035 #ifdef DEBUG_XIC_FONTSET
2037 print_fontset_result (xfs
, name
, missing_list
, missing_count
)
2040 char **missing_list
;
2044 fprintf (stderr
, "XIC Fontset created: %s\n", name
);
2047 fprintf (stderr
, "XIC Fontset failed: %s\n", name
);
2048 while (missing_count
-- > 0)
2050 fprintf (stderr
, " missing: %s\n", *missing_list
);
2059 xic_create_xfontset (struct frame
*f
)
2061 XFontSet xfs
= NULL
;
2062 struct font
*font
= FRAME_FONT (f
);
2063 int pixel_size
= font
->pixel_size
;
2064 Lisp_Object rest
, frame
;
2066 /* See if there is another frame already using same fontset. */
2067 FOR_EACH_FRAME (rest
, frame
)
2069 struct frame
*cf
= XFRAME (frame
);
2071 if (cf
!= f
&& FRAME_LIVE_P (f
) && FRAME_X_P (cf
)
2072 && FRAME_X_DISPLAY_INFO (cf
) == FRAME_X_DISPLAY_INFO (f
)
2074 && FRAME_FONT (f
)->pixel_size
== pixel_size
)
2076 xfs
= FRAME_XIC_FONTSET (cf
);
2084 char **missing_list
;
2087 const char *xlfd_format
= "-*-*-medium-r-normal--%d-*-*-*-*-*";
2089 sprintf (buf
, xlfd_format
, pixel_size
);
2090 missing_list
= NULL
;
2091 xfs
= XCreateFontSet (FRAME_X_DISPLAY (f
), buf
,
2092 &missing_list
, &missing_count
, &def_string
);
2093 #ifdef DEBUG_XIC_FONTSET
2094 print_fontset_result (xfs
, buf
, missing_list
, missing_count
);
2097 XFreeStringList (missing_list
);
2100 /* List of pixel sizes most likely available. Find one that
2101 is closest to pixel_size. */
2102 int sizes
[] = {0, 8, 10, 11, 12, 14, 17, 18, 20, 24, 26, 34, 0};
2103 int *smaller
, *larger
;
2105 for (smaller
= sizes
; smaller
[1]; smaller
++)
2106 if (smaller
[1] >= pixel_size
)
2108 larger
= smaller
+ 1;
2109 if (*larger
== pixel_size
)
2111 while (*smaller
|| *larger
)
2116 this_size
= *smaller
--;
2117 else if (! *smaller
)
2118 this_size
= *larger
++;
2119 else if (pixel_size
- *smaller
< *larger
- pixel_size
)
2120 this_size
= *smaller
--;
2122 this_size
= *larger
++;
2123 sprintf (buf
, xlfd_format
, this_size
);
2124 missing_list
= NULL
;
2125 xfs
= XCreateFontSet (FRAME_X_DISPLAY (f
), buf
,
2126 &missing_list
, &missing_count
, &def_string
);
2127 #ifdef DEBUG_XIC_FONTSET
2128 print_fontset_result (xfs
, buf
, missing_list
, missing_count
);
2131 XFreeStringList (missing_list
);
2138 char *last_resort
= "-*-*-*-r-normal--*-*-*-*-*-*";
2140 missing_list
= NULL
;
2141 xfs
= XCreateFontSet (FRAME_X_DISPLAY (f
), last_resort
,
2142 &missing_list
, &missing_count
, &def_string
);
2143 #ifdef DEBUG_XIC_FONTSET
2144 print_fontset_result (xfs
, last_resort
, missing_list
, missing_count
);
2147 XFreeStringList (missing_list
);
2155 /* Free the X fontset of frame F if it is the last frame using it. */
2158 xic_free_xfontset (struct frame
*f
)
2160 Lisp_Object rest
, frame
;
2163 if (!FRAME_XIC_FONTSET (f
))
2166 /* See if there is another frame sharing the same fontset. */
2167 FOR_EACH_FRAME (rest
, frame
)
2169 struct frame
*cf
= XFRAME (frame
);
2170 if (cf
!= f
&& FRAME_LIVE_P (f
) && FRAME_X_P (cf
)
2171 && FRAME_X_DISPLAY_INFO (cf
) == FRAME_X_DISPLAY_INFO (f
)
2172 && FRAME_XIC_FONTSET (cf
) == FRAME_XIC_FONTSET (f
))
2180 /* The fontset is not used anymore. It is safe to free it. */
2181 XFreeFontSet (FRAME_X_DISPLAY (f
), FRAME_XIC_FONTSET (f
));
2183 if (FRAME_XIC_BASE_FONTNAME (f
))
2184 xfree (FRAME_XIC_BASE_FONTNAME (f
));
2185 FRAME_XIC_BASE_FONTNAME (f
) = NULL
;
2186 FRAME_XIC_FONTSET (f
) = NULL
;
2190 /* Value is the best input style, given user preferences USER (already
2191 checked to be supported by Emacs), and styles supported by the
2192 input method XIM. */
2195 best_xim_style (XIMStyles
*user
, XIMStyles
*xim
)
2199 for (i
= 0; i
< user
->count_styles
; ++i
)
2200 for (j
= 0; j
< xim
->count_styles
; ++j
)
2201 if (user
->supported_styles
[i
] == xim
->supported_styles
[j
])
2202 return user
->supported_styles
[i
];
2204 /* Return the default style. */
2205 return XIMPreeditNothing
| XIMStatusNothing
;
2208 /* Create XIC for frame F. */
2210 static XIMStyle xic_style
;
2213 create_frame_xic (struct frame
*f
)
2217 XFontSet xfs
= NULL
;
2222 /* Create X fontset. */
2223 xfs
= xic_create_xfontset (f
);
2224 xim
= FRAME_X_XIM (f
);
2229 XVaNestedList preedit_attr
;
2230 XVaNestedList status_attr
;
2232 s_area
.x
= 0; s_area
.y
= 0; s_area
.width
= 1; s_area
.height
= 1;
2233 spot
.x
= 0; spot
.y
= 1;
2235 /* Determine XIC style. */
2238 XIMStyles supported_list
;
2239 supported_list
.count_styles
= (sizeof supported_xim_styles
2240 / sizeof supported_xim_styles
[0]);
2241 supported_list
.supported_styles
= supported_xim_styles
;
2242 xic_style
= best_xim_style (&supported_list
,
2243 FRAME_X_XIM_STYLES (f
));
2246 preedit_attr
= XVaCreateNestedList (0,
2249 FRAME_FOREGROUND_PIXEL (f
),
2251 FRAME_BACKGROUND_PIXEL (f
),
2252 (xic_style
& XIMPreeditPosition
2257 status_attr
= XVaCreateNestedList (0,
2263 FRAME_FOREGROUND_PIXEL (f
),
2265 FRAME_BACKGROUND_PIXEL (f
),
2268 xic
= XCreateIC (xim
,
2269 XNInputStyle
, xic_style
,
2270 XNClientWindow
, FRAME_X_WINDOW (f
),
2271 XNFocusWindow
, FRAME_X_WINDOW (f
),
2272 XNStatusAttributes
, status_attr
,
2273 XNPreeditAttributes
, preedit_attr
,
2275 XFree (preedit_attr
);
2276 XFree (status_attr
);
2279 FRAME_XIC (f
) = xic
;
2280 FRAME_XIC_STYLE (f
) = xic_style
;
2281 FRAME_XIC_FONTSET (f
) = xfs
;
2285 /* Destroy XIC and free XIC fontset of frame F, if any. */
2288 free_frame_xic (struct frame
*f
)
2290 if (FRAME_XIC (f
) == NULL
)
2293 XDestroyIC (FRAME_XIC (f
));
2294 xic_free_xfontset (f
);
2296 FRAME_XIC (f
) = NULL
;
2300 /* Place preedit area for XIC of window W's frame to specified
2301 pixel position X/Y. X and Y are relative to window W. */
2304 xic_set_preeditarea (struct window
*w
, int x
, int y
)
2306 struct frame
*f
= XFRAME (w
->frame
);
2310 spot
.x
= WINDOW_TO_FRAME_PIXEL_X (w
, x
) + WINDOW_LEFT_FRINGE_WIDTH (w
);
2311 spot
.y
= WINDOW_TO_FRAME_PIXEL_Y (w
, y
) + FONT_BASE (FRAME_FONT (f
));
2312 attr
= XVaCreateNestedList (0, XNSpotLocation
, &spot
, NULL
);
2313 XSetICValues (FRAME_XIC (f
), XNPreeditAttributes
, attr
, NULL
);
2318 /* Place status area for XIC in bottom right corner of frame F.. */
2321 xic_set_statusarea (struct frame
*f
)
2323 XIC xic
= FRAME_XIC (f
);
2328 /* Negotiate geometry of status area. If input method has existing
2329 status area, use its current size. */
2330 area
.x
= area
.y
= area
.width
= area
.height
= 0;
2331 attr
= XVaCreateNestedList (0, XNAreaNeeded
, &area
, NULL
);
2332 XSetICValues (xic
, XNStatusAttributes
, attr
, NULL
);
2335 attr
= XVaCreateNestedList (0, XNAreaNeeded
, &needed
, NULL
);
2336 XGetICValues (xic
, XNStatusAttributes
, attr
, NULL
);
2339 if (needed
->width
== 0) /* Use XNArea instead of XNAreaNeeded */
2341 attr
= XVaCreateNestedList (0, XNArea
, &needed
, NULL
);
2342 XGetICValues (xic
, XNStatusAttributes
, attr
, NULL
);
2346 area
.width
= needed
->width
;
2347 area
.height
= needed
->height
;
2348 area
.x
= FRAME_PIXEL_WIDTH (f
) - area
.width
- FRAME_INTERNAL_BORDER_WIDTH (f
);
2349 area
.y
= (FRAME_PIXEL_HEIGHT (f
) - area
.height
2350 - FRAME_MENUBAR_HEIGHT (f
)
2351 - FRAME_TOOLBAR_HEIGHT (f
)
2352 - FRAME_INTERNAL_BORDER_WIDTH (f
));
2355 attr
= XVaCreateNestedList (0, XNArea
, &area
, NULL
);
2356 XSetICValues (xic
, XNStatusAttributes
, attr
, NULL
);
2361 /* Set X fontset for XIC of frame F, using base font name
2362 BASE_FONTNAME. Called when a new Emacs fontset is chosen. */
2365 xic_set_xfontset (struct frame
*f
, const char *base_fontname
)
2370 xic_free_xfontset (f
);
2372 xfs
= xic_create_xfontset (f
);
2374 attr
= XVaCreateNestedList (0, XNFontSet
, xfs
, NULL
);
2375 if (FRAME_XIC_STYLE (f
) & XIMPreeditPosition
)
2376 XSetICValues (FRAME_XIC (f
), XNPreeditAttributes
, attr
, NULL
);
2377 if (FRAME_XIC_STYLE (f
) & XIMStatusArea
)
2378 XSetICValues (FRAME_XIC (f
), XNStatusAttributes
, attr
, NULL
);
2381 FRAME_XIC_FONTSET (f
) = xfs
;
2384 #endif /* HAVE_X_I18N */
2388 #ifdef USE_X_TOOLKIT
2390 /* Create and set up the X widget for frame F. */
2393 x_window (struct frame
*f
, long window_prompting
, int minibuffer_only
)
2395 XClassHint class_hints
;
2396 XSetWindowAttributes attributes
;
2397 unsigned long attribute_mask
;
2398 Widget shell_widget
;
2400 Widget frame_widget
;
2406 /* Use the resource name as the top-level widget name
2407 for looking up resources. Make a non-Lisp copy
2408 for the window manager, so GC relocation won't bother it.
2410 Elsewhere we specify the window name for the window manager. */
2413 char *str
= (char *) SDATA (Vx_resource_name
);
2414 f
->namebuf
= (char *) xmalloc (strlen (str
) + 1);
2415 strcpy (f
->namebuf
, str
);
2419 XtSetArg (al
[ac
], XtNallowShellResize
, 1); ac
++;
2420 XtSetArg (al
[ac
], XtNinput
, 1); ac
++;
2421 XtSetArg (al
[ac
], XtNmappedWhenManaged
, 0); ac
++;
2422 XtSetArg (al
[ac
], XtNborderWidth
, f
->border_width
); ac
++;
2423 XtSetArg (al
[ac
], XtNvisual
, FRAME_X_VISUAL (f
)); ac
++;
2424 XtSetArg (al
[ac
], XtNdepth
, FRAME_X_DISPLAY_INFO (f
)->n_planes
); ac
++;
2425 XtSetArg (al
[ac
], XtNcolormap
, FRAME_X_COLORMAP (f
)); ac
++;
2426 shell_widget
= XtAppCreateShell (f
->namebuf
, EMACS_CLASS
,
2427 applicationShellWidgetClass
,
2428 FRAME_X_DISPLAY (f
), al
, ac
);
2430 f
->output_data
.x
->widget
= shell_widget
;
2431 /* maybe_set_screen_title_format (shell_widget); */
2433 pane_widget
= lw_create_widget ("main", "pane", widget_id_tick
++,
2434 (widget_value
*) NULL
,
2435 shell_widget
, False
,
2439 (lw_callback
) NULL
);
2442 XtSetArg (al
[ac
], XtNvisual
, FRAME_X_VISUAL (f
)); ac
++;
2443 XtSetArg (al
[ac
], XtNdepth
, FRAME_X_DISPLAY_INFO (f
)->n_planes
); ac
++;
2444 XtSetArg (al
[ac
], XtNcolormap
, FRAME_X_COLORMAP (f
)); ac
++;
2445 XtSetArg (al
[ac
], XtNborderWidth
, 0); ac
++;
2446 XtSetValues (pane_widget
, al
, ac
);
2447 f
->output_data
.x
->column_widget
= pane_widget
;
2449 /* mappedWhenManaged to false tells to the paned window to not map/unmap
2450 the emacs screen when changing menubar. This reduces flickering. */
2453 XtSetArg (al
[ac
], XtNmappedWhenManaged
, 0); ac
++;
2454 XtSetArg (al
[ac
], XtNshowGrip
, 0); ac
++;
2455 XtSetArg (al
[ac
], XtNallowResize
, 1); ac
++;
2456 XtSetArg (al
[ac
], XtNresizeToPreferred
, 1); ac
++;
2457 XtSetArg (al
[ac
], XtNemacsFrame
, f
); 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 XtSetArg (al
[ac
], XtNborderWidth
, 0); ac
++;
2462 frame_widget
= XtCreateWidget (f
->namebuf
, emacsFrameClass
, pane_widget
,
2465 f
->output_data
.x
->edit_widget
= frame_widget
;
2467 XtManageChild (frame_widget
);
2469 /* Do some needed geometry management. */
2472 char *tem
, shell_position
[32];
2475 int extra_borders
= 0;
2477 = (f
->output_data
.x
->menubar_widget
2478 ? (f
->output_data
.x
->menubar_widget
->core
.height
2479 + f
->output_data
.x
->menubar_widget
->core
.border_width
)
2482 #if 0 /* Experimentally, we now get the right results
2483 for -geometry -0-0 without this. 24 Aug 96, rms. */
2484 if (FRAME_EXTERNAL_MENU_BAR (f
))
2487 XtVaGetValues (pane_widget
, XtNinternalBorderWidth
, &ibw
, NULL
);
2488 menubar_size
+= ibw
;
2492 f
->output_data
.x
->menubar_height
= menubar_size
;
2495 /* Motif seems to need this amount added to the sizes
2496 specified for the shell widget. The Athena/Lucid widgets don't.
2497 Both conclusions reached experimentally. -- rms. */
2498 XtVaGetValues (f
->output_data
.x
->edit_widget
, XtNinternalBorderWidth
,
2499 &extra_borders
, NULL
);
2503 /* Convert our geometry parameters into a geometry string
2505 Note that we do not specify here whether the position
2506 is a user-specified or program-specified one.
2507 We pass that information later, in x_wm_set_size_hints. */
2509 int left
= f
->left_pos
;
2510 int xneg
= window_prompting
& XNegative
;
2511 int top
= f
->top_pos
;
2512 int yneg
= window_prompting
& YNegative
;
2518 if (window_prompting
& USPosition
)
2519 sprintf (shell_position
, "=%dx%d%c%d%c%d",
2520 FRAME_PIXEL_WIDTH (f
) + extra_borders
,
2521 FRAME_PIXEL_HEIGHT (f
) + menubar_size
+ extra_borders
,
2522 (xneg
? '-' : '+'), left
,
2523 (yneg
? '-' : '+'), top
);
2526 sprintf (shell_position
, "=%dx%d",
2527 FRAME_PIXEL_WIDTH (f
) + extra_borders
,
2528 FRAME_PIXEL_HEIGHT (f
) + menubar_size
+ extra_borders
);
2530 /* Setting x and y when the position is not specified in
2531 the geometry string will set program position in the WM hints.
2532 If Emacs had just one program position, we could set it in
2533 fallback resources, but since each make-frame call can specify
2534 different program positions, this is easier. */
2535 XtSetArg (al
[ac
], XtNx
, left
); ac
++;
2536 XtSetArg (al
[ac
], XtNy
, top
); ac
++;
2540 len
= strlen (shell_position
) + 1;
2541 /* We don't free this because we don't know whether
2542 it is safe to free it while the frame exists.
2543 It isn't worth the trouble of arranging to free it
2544 when the frame is deleted. */
2545 tem
= (char *) xmalloc (len
);
2546 strncpy (tem
, shell_position
, len
);
2547 XtSetArg (al
[ac
], XtNgeometry
, tem
); ac
++;
2548 XtSetValues (shell_widget
, al
, ac
);
2551 XtManageChild (pane_widget
);
2552 XtRealizeWidget (shell_widget
);
2554 if (FRAME_X_EMBEDDED_P (f
))
2555 XReparentWindow (FRAME_X_DISPLAY (f
), XtWindow (shell_widget
),
2556 f
->output_data
.x
->parent_desc
, 0, 0);
2558 FRAME_X_WINDOW (f
) = XtWindow (frame_widget
);
2560 validate_x_resource_name ();
2562 class_hints
.res_name
= (char *) SDATA (Vx_resource_name
);
2563 class_hints
.res_class
= (char *) SDATA (Vx_resource_class
);
2564 XSetClassHint (FRAME_X_DISPLAY (f
), XtWindow (shell_widget
), &class_hints
);
2567 FRAME_XIC (f
) = NULL
;
2569 create_frame_xic (f
);
2572 f
->output_data
.x
->wm_hints
.input
= True
;
2573 f
->output_data
.x
->wm_hints
.flags
|= InputHint
;
2574 XSetWMHints (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2575 &f
->output_data
.x
->wm_hints
);
2577 hack_wm_protocols (f
, shell_widget
);
2580 XtAddEventHandler (shell_widget
, 0, True
, _XEditResCheckMessages
, 0);
2583 /* Do a stupid property change to force the server to generate a
2584 PropertyNotify event so that the event_stream server timestamp will
2585 be initialized to something relevant to the time we created the window.
2587 XChangeProperty (XtDisplay (frame_widget
), XtWindow (frame_widget
),
2588 FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_protocols
,
2589 XA_ATOM
, 32, PropModeAppend
,
2590 (unsigned char*) NULL
, 0);
2592 /* Make all the standard events reach the Emacs frame. */
2593 attributes
.event_mask
= STANDARD_EVENT_SET
;
2598 /* XIM server might require some X events. */
2599 unsigned long fevent
= NoEventMask
;
2600 XGetICValues (FRAME_XIC (f
), XNFilterEvents
, &fevent
, NULL
);
2601 attributes
.event_mask
|= fevent
;
2603 #endif /* HAVE_X_I18N */
2605 attribute_mask
= CWEventMask
;
2606 XChangeWindowAttributes (XtDisplay (shell_widget
), XtWindow (shell_widget
),
2607 attribute_mask
, &attributes
);
2609 XtMapWidget (frame_widget
);
2611 /* x_set_name normally ignores requests to set the name if the
2612 requested name is the same as the current name. This is the one
2613 place where that assumption isn't correct; f->name is set, but
2614 the X server hasn't been told. */
2617 int explicit = f
->explicit_name
;
2619 f
->explicit_name
= 0;
2622 x_set_name (f
, name
, explicit);
2625 XDefineCursor (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2626 f
->output_data
.x
->current_cursor
2627 = f
->output_data
.x
->text_cursor
);
2631 /* This is a no-op, except under Motif. Make sure main areas are
2632 set to something reasonable, in case we get an error later. */
2633 lw_set_main_areas (pane_widget
, 0, frame_widget
);
2636 #else /* not USE_X_TOOLKIT */
2639 x_window (FRAME_PTR f
)
2641 if (! xg_create_frame_widgets (f
))
2642 error ("Unable to create window");
2645 FRAME_XIC (f
) = NULL
;
2649 create_frame_xic (f
);
2652 /* XIM server might require some X events. */
2653 unsigned long fevent
= NoEventMask
;
2654 XGetICValues (FRAME_XIC (f
), XNFilterEvents
, &fevent
, NULL
);
2656 if (fevent
!= NoEventMask
)
2658 XSetWindowAttributes attributes
;
2659 XWindowAttributes wattr
;
2660 unsigned long attribute_mask
;
2662 XGetWindowAttributes (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2664 attributes
.event_mask
= wattr
.your_event_mask
| fevent
;
2665 attribute_mask
= CWEventMask
;
2666 XChangeWindowAttributes (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2667 attribute_mask
, &attributes
);
2675 #else /*! USE_GTK */
2676 /* Create and set up the X window for frame F. */
2679 x_window (struct frame
*f
)
2681 XClassHint class_hints
;
2682 XSetWindowAttributes attributes
;
2683 unsigned long attribute_mask
;
2685 attributes
.background_pixel
= FRAME_BACKGROUND_PIXEL (f
);
2686 attributes
.border_pixel
= f
->output_data
.x
->border_pixel
;
2687 attributes
.bit_gravity
= StaticGravity
;
2688 attributes
.backing_store
= NotUseful
;
2689 attributes
.save_under
= True
;
2690 attributes
.event_mask
= STANDARD_EVENT_SET
;
2691 attributes
.colormap
= FRAME_X_COLORMAP (f
);
2692 attribute_mask
= (CWBackPixel
| CWBorderPixel
| CWBitGravity
| CWEventMask
2697 = XCreateWindow (FRAME_X_DISPLAY (f
),
2698 f
->output_data
.x
->parent_desc
,
2701 FRAME_PIXEL_WIDTH (f
), FRAME_PIXEL_HEIGHT (f
),
2703 CopyFromParent
, /* depth */
2704 InputOutput
, /* class */
2706 attribute_mask
, &attributes
);
2711 create_frame_xic (f
);
2714 /* XIM server might require some X events. */
2715 unsigned long fevent
= NoEventMask
;
2716 XGetICValues (FRAME_XIC (f
), XNFilterEvents
, &fevent
, NULL
);
2717 attributes
.event_mask
|= fevent
;
2718 attribute_mask
= CWEventMask
;
2719 XChangeWindowAttributes (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2720 attribute_mask
, &attributes
);
2723 #endif /* HAVE_X_I18N */
2725 validate_x_resource_name ();
2727 class_hints
.res_name
= (char *) SDATA (Vx_resource_name
);
2728 class_hints
.res_class
= (char *) SDATA (Vx_resource_class
);
2729 XSetClassHint (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), &class_hints
);
2731 /* The menubar is part of the ordinary display;
2732 it does not count in addition to the height of the window. */
2733 f
->output_data
.x
->menubar_height
= 0;
2735 /* This indicates that we use the "Passive Input" input model.
2736 Unless we do this, we don't get the Focus{In,Out} events that we
2737 need to draw the cursor correctly. Accursed bureaucrats.
2738 XWhipsAndChains (FRAME_X_DISPLAY (f), IronMaiden, &TheRack); */
2740 f
->output_data
.x
->wm_hints
.input
= True
;
2741 f
->output_data
.x
->wm_hints
.flags
|= InputHint
;
2742 XSetWMHints (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2743 &f
->output_data
.x
->wm_hints
);
2744 f
->output_data
.x
->wm_hints
.icon_pixmap
= None
;
2746 /* Request "save yourself" and "delete window" commands from wm. */
2749 protocols
[0] = FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_delete_window
;
2750 protocols
[1] = FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_save_yourself
;
2751 XSetWMProtocols (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), protocols
, 2);
2754 /* x_set_name normally ignores requests to set the name if the
2755 requested name is the same as the current name. This is the one
2756 place where that assumption isn't correct; f->name is set, but
2757 the X server hasn't been told. */
2760 int explicit = f
->explicit_name
;
2762 f
->explicit_name
= 0;
2765 x_set_name (f
, name
, explicit);
2768 XDefineCursor (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2769 f
->output_data
.x
->current_cursor
2770 = f
->output_data
.x
->text_cursor
);
2774 if (FRAME_X_WINDOW (f
) == 0)
2775 error ("Unable to create window");
2778 #endif /* not USE_GTK */
2779 #endif /* not USE_X_TOOLKIT */
2781 /* Verify that the icon position args for this window are valid. */
2784 x_icon_verify (struct frame
*f
, Lisp_Object parms
)
2786 Lisp_Object icon_x
, icon_y
;
2788 /* Set the position of the icon. Note that twm groups all
2789 icons in an icon window. */
2790 icon_x
= x_frame_get_and_record_arg (f
, parms
, Qicon_left
, 0, 0, RES_TYPE_NUMBER
);
2791 icon_y
= x_frame_get_and_record_arg (f
, parms
, Qicon_top
, 0, 0, RES_TYPE_NUMBER
);
2792 if (!EQ (icon_x
, Qunbound
) && !EQ (icon_y
, Qunbound
))
2794 CHECK_NUMBER (icon_x
);
2795 CHECK_NUMBER (icon_y
);
2797 else if (!EQ (icon_x
, Qunbound
) || !EQ (icon_y
, Qunbound
))
2798 error ("Both left and top icon corners of icon must be specified");
2801 /* Handle the icon stuff for this window. Perhaps later we might
2802 want an x_set_icon_position which can be called interactively as
2806 x_icon (struct frame
*f
, Lisp_Object parms
)
2808 Lisp_Object icon_x
, icon_y
;
2810 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
2813 /* Set the position of the icon. Note that twm groups all
2814 icons in an icon window. */
2815 icon_x
= x_frame_get_and_record_arg (f
, parms
, Qicon_left
, 0, 0, RES_TYPE_NUMBER
);
2816 icon_y
= x_frame_get_and_record_arg (f
, parms
, Qicon_top
, 0, 0, RES_TYPE_NUMBER
);
2817 if (!EQ (icon_x
, Qunbound
) && !EQ (icon_y
, Qunbound
))
2819 CHECK_NUMBER (icon_x
);
2820 CHECK_NUMBER (icon_y
);
2822 else if (!EQ (icon_x
, Qunbound
) || !EQ (icon_y
, Qunbound
))
2823 error ("Both left and top icon corners of icon must be specified");
2827 if (! EQ (icon_x
, Qunbound
))
2828 x_wm_set_icon_position (f
, XINT (icon_x
), XINT (icon_y
));
2830 #if 0 /* x_get_arg removes the visibility parameter as a side effect,
2831 but x_create_frame still needs it. */
2832 /* Start up iconic or window? */
2833 x_wm_set_window_state
2834 (f
, (EQ (x_get_arg (dpyinfo
, parms
, Qvisibility
, 0, 0, RES_TYPE_SYMBOL
),
2840 x_text_icon (f
, (char *) SDATA ((!NILP (f
->icon_name
)
2847 /* Make the GCs needed for this window, setting the
2848 background, border and mouse colors; also create the
2849 mouse cursor and the gray border tile. */
2852 x_make_gc (struct frame
*f
)
2854 XGCValues gc_values
;
2858 /* Create the GCs of this frame.
2859 Note that many default values are used. */
2861 gc_values
.foreground
= FRAME_FOREGROUND_PIXEL (f
);
2862 gc_values
.background
= FRAME_BACKGROUND_PIXEL (f
);
2863 gc_values
.line_width
= 0; /* Means 1 using fast algorithm. */
2864 f
->output_data
.x
->normal_gc
2865 = XCreateGC (FRAME_X_DISPLAY (f
),
2867 GCLineWidth
| GCForeground
| GCBackground
,
2870 /* Reverse video style. */
2871 gc_values
.foreground
= FRAME_BACKGROUND_PIXEL (f
);
2872 gc_values
.background
= FRAME_FOREGROUND_PIXEL (f
);
2873 f
->output_data
.x
->reverse_gc
2874 = XCreateGC (FRAME_X_DISPLAY (f
),
2876 GCForeground
| GCBackground
| GCLineWidth
,
2879 /* Cursor has cursor-color background, background-color foreground. */
2880 gc_values
.foreground
= FRAME_BACKGROUND_PIXEL (f
);
2881 gc_values
.background
= f
->output_data
.x
->cursor_pixel
;
2882 gc_values
.fill_style
= FillOpaqueStippled
;
2883 f
->output_data
.x
->cursor_gc
2884 = XCreateGC (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2885 (GCForeground
| GCBackground
2886 | GCFillStyle
| GCLineWidth
),
2890 f
->output_data
.x
->white_relief
.gc
= 0;
2891 f
->output_data
.x
->black_relief
.gc
= 0;
2893 /* Create the gray border tile used when the pointer is not in
2894 the frame. Since this depends on the frame's pixel values,
2895 this must be done on a per-frame basis. */
2896 f
->output_data
.x
->border_tile
2897 = (XCreatePixmapFromBitmapData
2898 (FRAME_X_DISPLAY (f
), FRAME_X_DISPLAY_INFO (f
)->root_window
,
2899 gray_bits
, gray_width
, gray_height
,
2900 FRAME_FOREGROUND_PIXEL (f
),
2901 FRAME_BACKGROUND_PIXEL (f
),
2902 DefaultDepth (FRAME_X_DISPLAY (f
), FRAME_X_SCREEN_NUMBER (f
))));
2908 /* Free what was allocated in x_make_gc. */
2911 x_free_gcs (struct frame
*f
)
2913 Display
*dpy
= FRAME_X_DISPLAY (f
);
2917 if (f
->output_data
.x
->normal_gc
)
2919 XFreeGC (dpy
, f
->output_data
.x
->normal_gc
);
2920 f
->output_data
.x
->normal_gc
= 0;
2923 if (f
->output_data
.x
->reverse_gc
)
2925 XFreeGC (dpy
, f
->output_data
.x
->reverse_gc
);
2926 f
->output_data
.x
->reverse_gc
= 0;
2929 if (f
->output_data
.x
->cursor_gc
)
2931 XFreeGC (dpy
, f
->output_data
.x
->cursor_gc
);
2932 f
->output_data
.x
->cursor_gc
= 0;
2935 if (f
->output_data
.x
->border_tile
)
2937 XFreePixmap (dpy
, f
->output_data
.x
->border_tile
);
2938 f
->output_data
.x
->border_tile
= 0;
2945 /* Handler for signals raised during x_create_frame and
2946 x_create_top_frame. FRAME is the frame which is partially
2950 unwind_create_frame (Lisp_Object frame
)
2952 struct frame
*f
= XFRAME (frame
);
2954 /* If frame is already dead, nothing to do. This can happen if the
2955 display is disconnected after the frame has become official, but
2956 before x_create_frame removes the unwind protect. */
2957 if (!FRAME_LIVE_P (f
))
2960 /* If frame is ``official'', nothing to do. */
2961 if (!CONSP (Vframe_list
) || !EQ (XCAR (Vframe_list
), frame
))
2964 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
2967 x_free_frame_resources (f
);
2970 /* Check that reference counts are indeed correct. */
2971 xassert (dpyinfo
->reference_count
== dpyinfo_refcount
);
2972 xassert (dpyinfo
->image_cache
->refcount
== image_cache_refcount
);
2982 x_default_font_parameter (struct frame
*f
, Lisp_Object parms
)
2984 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
2985 Lisp_Object font_param
= x_get_arg (dpyinfo
, parms
, Qfont
, NULL
, NULL
,
2987 Lisp_Object font
= Qnil
;
2988 if (EQ (font_param
, Qunbound
))
2991 if (NILP (font_param
))
2993 /* System font should take precedendce over X resources. We suggest this
2994 regardless of font-use-system-font because .emacs may not have been
2996 const char *system_font
= xsettings_get_system_font ();
2999 char *name
= xstrdup (system_font
);
3000 font
= font_open_by_name (f
, name
);
3006 font
= !NILP (font_param
) ? font_param
3007 : x_get_arg (dpyinfo
, parms
, Qfont
, "font", "Font", RES_TYPE_STRING
);
3009 if (! FONTP (font
) && ! STRINGP (font
))
3014 /* This will find the normal Xft font. */
3017 "-adobe-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-1",
3018 "-misc-fixed-medium-r-normal-*-*-140-*-*-c-*-iso8859-1",
3019 "-*-*-medium-r-normal-*-*-140-*-*-c-*-iso8859-1",
3020 /* This was formerly the first thing tried, but it finds
3021 too many fonts and takes too long. */
3022 "-*-*-medium-r-*-*-*-*-*-*-c-*-iso8859-1",
3023 /* If those didn't work, look for something which will
3025 "-*-fixed-*-*-*-*-*-140-*-*-c-*-iso8859-1",
3030 for (i
= 0; names
[i
]; i
++)
3032 font
= font_open_by_name (f
, names
[i
]);
3037 error ("No suitable font was found");
3039 else if (!NILP (font_param
))
3041 /* Remember the explicit font parameter, so we can re-apply it after
3042 we've applied the `default' face settings. */
3043 x_set_frame_parameters (f
, Fcons (Fcons (Qfont_param
, font_param
), Qnil
));
3046 /* This call will make X resources override any system font setting. */
3047 x_default_parameter (f
, parms
, Qfont
, font
, "font", "Font", RES_TYPE_STRING
);
3051 DEFUN ("x-wm-set-size-hint", Fx_wm_set_size_hint
, Sx_wm_set_size_hint
,
3053 doc
: /* Send the size hints for frame FRAME to the window manager.
3054 If FRAME is nil, use the selected frame. */)
3059 frame
= selected_frame
;
3063 x_wm_set_size_hint (f
, 0, 0);
3069 set_machine_and_pid_properties (struct frame
*f
)
3071 /* See the above comment "Note: Encoding strategy". */
3074 int do_free_text_value
= 0;
3075 long pid
= (long) getpid ();
3077 text
.value
= x_encode_text (Vsystem_name
,
3078 Qcompound_text
, 0, &bytes
, &stringp
,
3079 &do_free_text_value
);
3080 text
.encoding
= (stringp
? XA_STRING
3081 : FRAME_X_DISPLAY_INFO (f
)->Xatom_COMPOUND_TEXT
);
3083 text
.nitems
= bytes
;
3084 XSetWMClientMachine (FRAME_X_DISPLAY (f
),
3085 FRAME_OUTER_WINDOW (f
),
3087 if (do_free_text_value
)
3090 XChangeProperty (FRAME_X_DISPLAY (f
),
3091 FRAME_OUTER_WINDOW (f
),
3092 XInternAtom (FRAME_X_DISPLAY (f
),
3095 XA_CARDINAL
, 32, PropModeReplace
,
3096 (unsigned char *) &pid
, 1);
3099 DEFUN ("x-create-frame", Fx_create_frame
, Sx_create_frame
,
3101 doc
: /* Make a new X window, which is called a "frame" in Emacs terms.
3102 Return an Emacs frame object.
3103 PARMS is an alist of frame parameters.
3104 If the parameters specify that the frame should not have a minibuffer,
3105 and do not specify a specific minibuffer window to use,
3106 then `default-minibuffer-frame' must be a frame whose minibuffer can
3107 be shared by the new frame.
3109 This function is an internal primitive--use `make-frame' instead. */)
3113 Lisp_Object frame
, tem
;
3115 int minibuffer_only
= 0;
3116 long window_prompting
= 0;
3118 int count
= SPECPDL_INDEX ();
3119 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
3120 Lisp_Object display
;
3121 struct x_display_info
*dpyinfo
= NULL
;
3125 parms
= Fcopy_alist (parms
);
3127 /* Use this general default value to start with
3128 until we know if this frame has a specified name. */
3129 Vx_resource_name
= Vinvocation_name
;
3131 display
= x_get_arg (dpyinfo
, parms
, Qterminal
, 0, 0, RES_TYPE_NUMBER
);
3132 if (EQ (display
, Qunbound
))
3133 display
= x_get_arg (dpyinfo
, parms
, Qdisplay
, 0, 0, RES_TYPE_STRING
);
3134 if (EQ (display
, Qunbound
))
3136 dpyinfo
= check_x_display_info (display
);
3137 kb
= dpyinfo
->terminal
->kboard
;
3139 if (!dpyinfo
->terminal
->name
)
3140 error ("Terminal is not live, can't create new frames on it");
3142 name
= x_get_arg (dpyinfo
, parms
, Qname
, "name", "Name", RES_TYPE_STRING
);
3144 && ! EQ (name
, Qunbound
)
3146 error ("Invalid frame name--not a string or nil");
3149 Vx_resource_name
= name
;
3151 /* See if parent window is specified. */
3152 parent
= x_get_arg (dpyinfo
, parms
, Qparent_id
, NULL
, NULL
, RES_TYPE_NUMBER
);
3153 if (EQ (parent
, Qunbound
))
3155 if (! NILP (parent
))
3156 CHECK_NUMBER (parent
);
3158 /* make_frame_without_minibuffer can run Lisp code and garbage collect. */
3159 /* No need to protect DISPLAY because that's not used after passing
3160 it to make_frame_without_minibuffer. */
3162 GCPRO4 (parms
, parent
, name
, frame
);
3163 tem
= x_get_arg (dpyinfo
, parms
, Qminibuffer
, "minibuffer", "Minibuffer",
3165 if (EQ (tem
, Qnone
) || NILP (tem
))
3166 f
= make_frame_without_minibuffer (Qnil
, kb
, display
);
3167 else if (EQ (tem
, Qonly
))
3169 f
= make_minibuffer_frame ();
3170 minibuffer_only
= 1;
3172 else if (WINDOWP (tem
))
3173 f
= make_frame_without_minibuffer (tem
, kb
, display
);
3177 XSETFRAME (frame
, f
);
3179 /* Note that X Windows does support scroll bars. */
3180 FRAME_CAN_HAVE_SCROLL_BARS (f
) = 1;
3182 f
->terminal
= dpyinfo
->terminal
;
3183 f
->terminal
->reference_count
++;
3185 f
->output_method
= output_x_window
;
3186 f
->output_data
.x
= (struct x_output
*) xmalloc (sizeof (struct x_output
));
3187 memset (f
->output_data
.x
, 0, sizeof (struct x_output
));
3188 f
->output_data
.x
->icon_bitmap
= -1;
3189 FRAME_FONTSET (f
) = -1;
3190 f
->output_data
.x
->scroll_bar_foreground_pixel
= -1;
3191 f
->output_data
.x
->scroll_bar_background_pixel
= -1;
3192 #ifdef USE_TOOLKIT_SCROLL_BARS
3193 f
->output_data
.x
->scroll_bar_top_shadow_pixel
= -1;
3194 f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
= -1;
3195 #endif /* USE_TOOLKIT_SCROLL_BARS */
3198 = x_get_arg (dpyinfo
, parms
, Qicon_name
, "iconName", "Title",
3200 if (! STRINGP (f
->icon_name
))
3201 f
->icon_name
= Qnil
;
3203 FRAME_X_DISPLAY_INFO (f
) = dpyinfo
;
3205 /* With FRAME_X_DISPLAY_INFO set up, this unwind-protect is safe. */
3206 record_unwind_protect (unwind_create_frame
, frame
);
3208 image_cache_refcount
= FRAME_IMAGE_CACHE (f
)->refcount
;
3209 dpyinfo_refcount
= dpyinfo
->reference_count
;
3210 #endif /* GLYPH_DEBUG */
3212 /* These colors will be set anyway later, but it's important
3213 to get the color reference counts right, so initialize them! */
3216 struct gcpro gcpro1
;
3218 /* Function x_decode_color can signal an error. Make
3219 sure to initialize color slots so that we won't try
3220 to free colors we haven't allocated. */
3221 FRAME_FOREGROUND_PIXEL (f
) = -1;
3222 FRAME_BACKGROUND_PIXEL (f
) = -1;
3223 f
->output_data
.x
->cursor_pixel
= -1;
3224 f
->output_data
.x
->cursor_foreground_pixel
= -1;
3225 f
->output_data
.x
->border_pixel
= -1;
3226 f
->output_data
.x
->mouse_pixel
= -1;
3228 black
= build_string ("black");
3230 FRAME_FOREGROUND_PIXEL (f
)
3231 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
3232 FRAME_BACKGROUND_PIXEL (f
)
3233 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
3234 f
->output_data
.x
->cursor_pixel
3235 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
3236 f
->output_data
.x
->cursor_foreground_pixel
3237 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
3238 f
->output_data
.x
->border_pixel
3239 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
3240 f
->output_data
.x
->mouse_pixel
3241 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
3245 /* Specify the parent under which to make this X window. */
3249 f
->output_data
.x
->parent_desc
= (Window
) XFASTINT (parent
);
3250 f
->output_data
.x
->explicit_parent
= 1;
3254 f
->output_data
.x
->parent_desc
= FRAME_X_DISPLAY_INFO (f
)->root_window
;
3255 f
->output_data
.x
->explicit_parent
= 0;
3258 /* Set the name; the functions to which we pass f expect the name to
3260 if (EQ (name
, Qunbound
) || NILP (name
))
3262 f
->name
= build_string (dpyinfo
->x_id_name
);
3263 f
->explicit_name
= 0;
3268 f
->explicit_name
= 1;
3269 /* use the frame's title when getting resources for this frame. */
3270 specbind (Qx_resource_name
, name
);
3273 f
->resx
= dpyinfo
->resx
;
3274 f
->resy
= dpyinfo
->resy
;
3276 #ifdef HAVE_FREETYPE
3278 register_font_driver (&xftfont_driver
, f
);
3279 #else /* not HAVE_XFT */
3280 register_font_driver (&ftxfont_driver
, f
);
3281 #endif /* not HAVE_XFT */
3282 #endif /* HAVE_FREETYPE */
3283 register_font_driver (&xfont_driver
, f
);
3285 x_default_parameter (f
, parms
, Qfont_backend
, Qnil
,
3286 "fontBackend", "FontBackend", RES_TYPE_STRING
);
3288 /* Extract the window parameters from the supplied values
3289 that are needed to determine window geometry. */
3290 x_default_font_parameter (f
, parms
);
3291 if (!FRAME_FONT (f
))
3293 delete_frame (frame
, Qnoelisp
);
3294 error ("Invalid frame font");
3297 /* Frame contents get displaced if an embedded X window has a border. */
3298 if (! FRAME_X_EMBEDDED_P (f
))
3299 x_default_parameter (f
, parms
, Qborder_width
, make_number (0),
3300 "borderWidth", "BorderWidth", RES_TYPE_NUMBER
);
3302 /* This defaults to 1 in order to match xterm. We recognize either
3303 internalBorderWidth or internalBorder (which is what xterm calls
3305 if (NILP (Fassq (Qinternal_border_width
, parms
)))
3309 value
= x_get_arg (dpyinfo
, parms
, Qinternal_border_width
,
3310 "internalBorder", "internalBorder", RES_TYPE_NUMBER
);
3311 if (! EQ (value
, Qunbound
))
3312 parms
= Fcons (Fcons (Qinternal_border_width
, value
),
3315 x_default_parameter (f
, parms
, Qinternal_border_width
,
3316 #ifdef USE_GTK /* We used to impose 0 in xg_create_frame_widgets. */
3321 "internalBorderWidth", "internalBorderWidth",
3323 x_default_parameter (f
, parms
, Qvertical_scroll_bars
,
3324 #if defined(USE_GTK) && defined(USE_TOOLKIT_SCROLL_BARS)
3329 "verticalScrollBars", "ScrollBars",
3332 /* Also do the stuff which must be set before the window exists. */
3333 x_default_parameter (f
, parms
, Qforeground_color
, build_string ("black"),
3334 "foreground", "Foreground", RES_TYPE_STRING
);
3335 x_default_parameter (f
, parms
, Qbackground_color
, build_string ("white"),
3336 "background", "Background", RES_TYPE_STRING
);
3337 x_default_parameter (f
, parms
, Qmouse_color
, build_string ("black"),
3338 "pointerColor", "Foreground", RES_TYPE_STRING
);
3339 x_default_parameter (f
, parms
, Qcursor_color
, build_string ("black"),
3340 "cursorColor", "Foreground", RES_TYPE_STRING
);
3341 x_default_parameter (f
, parms
, Qborder_color
, build_string ("black"),
3342 "borderColor", "BorderColor", RES_TYPE_STRING
);
3343 x_default_parameter (f
, parms
, Qscreen_gamma
, Qnil
,
3344 "screenGamma", "ScreenGamma", RES_TYPE_FLOAT
);
3345 x_default_parameter (f
, parms
, Qline_spacing
, Qnil
,
3346 "lineSpacing", "LineSpacing", RES_TYPE_NUMBER
);
3347 x_default_parameter (f
, parms
, Qleft_fringe
, Qnil
,
3348 "leftFringe", "LeftFringe", RES_TYPE_NUMBER
);
3349 x_default_parameter (f
, parms
, Qright_fringe
, Qnil
,
3350 "rightFringe", "RightFringe", RES_TYPE_NUMBER
);
3352 x_default_scroll_bar_color_parameter (f
, parms
, Qscroll_bar_foreground
,
3353 "scrollBarForeground",
3354 "ScrollBarForeground", 1);
3355 x_default_scroll_bar_color_parameter (f
, parms
, Qscroll_bar_background
,
3356 "scrollBarBackground",
3357 "ScrollBarBackground", 0);
3359 /* Init faces before x_default_parameter is called for scroll-bar
3360 parameters because that function calls x_set_scroll_bar_width,
3361 which calls change_frame_size, which calls Fset_window_buffer,
3362 which runs hooks, which call Fvertical_motion. At the end, we
3363 end up in init_iterator with a null face cache, which should not
3365 init_frame_faces (f
);
3367 /* The X resources controlling the menu-bar and tool-bar are
3368 processed specially at startup, and reflected in the mode
3369 variables; ignore them here. */
3370 x_default_parameter (f
, parms
, Qmenu_bar_lines
,
3371 NILP (Vmenu_bar_mode
)
3372 ? make_number (0) : make_number (1),
3373 NULL
, NULL
, RES_TYPE_NUMBER
);
3374 x_default_parameter (f
, parms
, Qtool_bar_lines
,
3375 NILP (Vtool_bar_mode
)
3376 ? make_number (0) : make_number (1),
3377 NULL
, NULL
, RES_TYPE_NUMBER
);
3379 x_default_parameter (f
, parms
, Qbuffer_predicate
, Qnil
,
3380 "bufferPredicate", "BufferPredicate",
3382 x_default_parameter (f
, parms
, Qtitle
, Qnil
,
3383 "title", "Title", RES_TYPE_STRING
);
3384 x_default_parameter (f
, parms
, Qwait_for_wm
, Qt
,
3385 "waitForWM", "WaitForWM", RES_TYPE_BOOLEAN
);
3386 x_default_parameter (f
, parms
, Qfullscreen
, Qnil
,
3387 "fullscreen", "Fullscreen", RES_TYPE_SYMBOL
);
3389 /* Compute the size of the X window. */
3390 window_prompting
= x_figure_window_size (f
, parms
, 1);
3392 tem
= x_get_arg (dpyinfo
, parms
, Qunsplittable
, 0, 0, RES_TYPE_BOOLEAN
);
3393 f
->no_split
= minibuffer_only
|| EQ (tem
, Qt
);
3395 x_icon_verify (f
, parms
);
3397 /* Create the X widget or window. */
3398 #ifdef USE_X_TOOLKIT
3399 x_window (f
, window_prompting
, minibuffer_only
);
3407 /* Now consider the frame official. */
3408 FRAME_X_DISPLAY_INFO (f
)->reference_count
++;
3409 Vframe_list
= Fcons (frame
, Vframe_list
);
3411 /* We need to do this after creating the X window, so that the
3412 icon-creation functions can say whose icon they're describing. */
3413 x_default_parameter (f
, parms
, Qicon_type
, Qt
,
3414 "bitmapIcon", "BitmapIcon", RES_TYPE_SYMBOL
);
3416 x_default_parameter (f
, parms
, Qauto_raise
, Qnil
,
3417 "autoRaise", "AutoRaiseLower", RES_TYPE_BOOLEAN
);
3418 x_default_parameter (f
, parms
, Qauto_lower
, Qnil
,
3419 "autoLower", "AutoRaiseLower", RES_TYPE_BOOLEAN
);
3420 x_default_parameter (f
, parms
, Qcursor_type
, Qbox
,
3421 "cursorType", "CursorType", RES_TYPE_SYMBOL
);
3422 x_default_parameter (f
, parms
, Qscroll_bar_width
, Qnil
,
3423 "scrollBarWidth", "ScrollBarWidth",
3425 x_default_parameter (f
, parms
, Qalpha
, Qnil
,
3426 "alpha", "Alpha", RES_TYPE_NUMBER
);
3428 /* Dimensions, especially FRAME_LINES (f), must be done via change_frame_size.
3429 Change will not be effected unless different from the current
3431 width
= FRAME_COLS (f
);
3432 height
= FRAME_LINES (f
);
3434 SET_FRAME_COLS (f
, 0);
3435 FRAME_LINES (f
) = 0;
3436 change_frame_size (f
, height
, width
, 1, 0, 0);
3438 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
3439 /* Create the menu bar. */
3440 if (!minibuffer_only
&& FRAME_EXTERNAL_MENU_BAR (f
))
3442 /* If this signals an error, we haven't set size hints for the
3443 frame and we didn't make it visible. */
3444 initialize_frame_menubar (f
);
3447 /* This is a no-op, except under Motif where it arranges the
3448 main window for the widgets on it. */
3449 lw_set_main_areas (f
->output_data
.x
->column_widget
,
3450 f
->output_data
.x
->menubar_widget
,
3451 f
->output_data
.x
->edit_widget
);
3452 #endif /* not USE_GTK */
3454 #endif /* USE_X_TOOLKIT || USE_GTK */
3456 /* Tell the server what size and position, etc, we want, and how
3457 badly we want them. This should be done after we have the menu
3458 bar so that its size can be taken into account. */
3460 x_wm_set_size_hint (f
, window_prompting
, 0);
3463 /* Make the window appear on the frame and enable display, unless
3464 the caller says not to. However, with explicit parent, Emacs
3465 cannot control visibility, so don't try. */
3466 if (! f
->output_data
.x
->explicit_parent
)
3468 Lisp_Object visibility
;
3470 visibility
= x_get_arg (dpyinfo
, parms
, Qvisibility
, 0, 0,
3472 if (EQ (visibility
, Qunbound
))
3475 if (EQ (visibility
, Qicon
))
3476 x_iconify_frame (f
);
3477 else if (! NILP (visibility
))
3478 x_make_frame_visible (f
);
3480 /* Must have been Qnil. */
3486 /* Set machine name and pid for the purpose of window managers. */
3487 set_machine_and_pid_properties(f
);
3489 /* Set the WM leader property. GTK does this itself, so this is not
3490 needed when using GTK. */
3491 if (dpyinfo
->client_leader_window
!= 0)
3493 XChangeProperty (FRAME_X_DISPLAY (f
),
3494 FRAME_OUTER_WINDOW (f
),
3495 dpyinfo
->Xatom_wm_client_leader
,
3496 XA_WINDOW
, 32, PropModeReplace
,
3497 (unsigned char *) &dpyinfo
->client_leader_window
, 1);
3502 /* Initialize `default-minibuffer-frame' in case this is the first
3503 frame on this terminal. */
3504 if (FRAME_HAS_MINIBUF_P (f
)
3505 && (!FRAMEP (kb
->Vdefault_minibuffer_frame
)
3506 || !FRAME_LIVE_P (XFRAME (kb
->Vdefault_minibuffer_frame
))))
3507 kb
->Vdefault_minibuffer_frame
= frame
;
3509 /* All remaining specified parameters, which have not been "used"
3510 by x_get_arg and friends, now go in the misc. alist of the frame. */
3511 for (tem
= parms
; CONSP (tem
); tem
= XCDR (tem
))
3512 if (CONSP (XCAR (tem
)) && !NILP (XCAR (XCAR (tem
))))
3513 f
->param_alist
= Fcons (XCAR (tem
), f
->param_alist
);
3517 /* Make sure windows on this frame appear in calls to next-window
3518 and similar functions. */
3519 Vwindow_list
= Qnil
;
3521 return unbind_to (count
, frame
);
3525 /* FRAME is used only to get a handle on the X display. We don't pass the
3526 display info directly because we're called from frame.c, which doesn't
3527 know about that structure. */
3530 x_get_focus_frame (struct frame
*frame
)
3532 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (frame
);
3534 if (! dpyinfo
->x_focus_frame
)
3537 XSETFRAME (xfocus
, dpyinfo
->x_focus_frame
);
3542 /* In certain situations, when the window manager follows a
3543 click-to-focus policy, there seems to be no way around calling
3544 XSetInputFocus to give another frame the input focus .
3546 In an ideal world, XSetInputFocus should generally be avoided so
3547 that applications don't interfere with the window manager's focus
3548 policy. But I think it's okay to use when it's clearly done
3549 following a user-command. */
3551 DEFUN ("x-focus-frame", Fx_focus_frame
, Sx_focus_frame
, 1, 1, 0,
3552 doc
: /* Set the input focus to FRAME.
3553 FRAME nil means use the selected frame. */)
3556 struct frame
*f
= check_x_frame (frame
);
3557 Display
*dpy
= FRAME_X_DISPLAY (f
);
3560 x_catch_errors (dpy
);
3561 XSetInputFocus (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
3562 RevertToParent
, CurrentTime
);
3563 x_ewmh_activate_frame (f
);
3564 x_uncatch_errors ();
3571 DEFUN ("xw-color-defined-p", Fxw_color_defined_p
, Sxw_color_defined_p
, 1, 2, 0,
3572 doc
: /* Internal function called by `color-defined-p', which see. */)
3573 (Lisp_Object color
, Lisp_Object frame
)
3576 FRAME_PTR f
= check_x_frame (frame
);
3578 CHECK_STRING (color
);
3580 if (x_defined_color (f
, SDATA (color
), &foo
, 0))
3586 DEFUN ("xw-color-values", Fxw_color_values
, Sxw_color_values
, 1, 2, 0,
3587 doc
: /* Internal function called by `color-values', which see. */)
3588 (Lisp_Object color
, Lisp_Object frame
)
3591 FRAME_PTR f
= check_x_frame (frame
);
3593 CHECK_STRING (color
);
3595 if (x_defined_color (f
, SDATA (color
), &foo
, 0))
3596 return list3 (make_number (foo
.red
),
3597 make_number (foo
.green
),
3598 make_number (foo
.blue
));
3603 DEFUN ("xw-display-color-p", Fxw_display_color_p
, Sxw_display_color_p
, 0, 1, 0,
3604 doc
: /* Internal function called by `display-color-p', which see. */)
3605 (Lisp_Object terminal
)
3607 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3609 if (dpyinfo
->n_planes
<= 2)
3612 switch (dpyinfo
->visual
->class)
3625 DEFUN ("x-display-grayscale-p", Fx_display_grayscale_p
, Sx_display_grayscale_p
,
3627 doc
: /* Return t if the X display supports shades of gray.
3628 Note that color displays do support shades of gray.
3629 The optional argument TERMINAL specifies which display to ask about.
3630 TERMINAL should be a terminal object, a frame or a display name (a string).
3631 If omitted or nil, that stands for the selected frame's display. */)
3632 (Lisp_Object terminal
)
3634 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3636 if (dpyinfo
->n_planes
<= 1)
3639 switch (dpyinfo
->visual
->class)
3654 DEFUN ("x-display-pixel-width", Fx_display_pixel_width
, Sx_display_pixel_width
,
3656 doc
: /* Return the width in pixels of the X display TERMINAL.
3657 The optional argument TERMINAL specifies which display to ask about.
3658 TERMINAL should be a terminal object, a frame or a display name (a string).
3659 If omitted or nil, that stands for the selected frame's display. */)
3660 (Lisp_Object terminal
)
3662 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3664 return make_number (x_display_pixel_width (dpyinfo
));
3667 DEFUN ("x-display-pixel-height", Fx_display_pixel_height
,
3668 Sx_display_pixel_height
, 0, 1, 0,
3669 doc
: /* Return the height in pixels of the X display TERMINAL.
3670 The optional argument TERMINAL specifies which display to ask about.
3671 TERMINAL should be a terminal object, a frame or a display name (a string).
3672 If omitted or nil, that stands for the selected frame's display. */)
3673 (Lisp_Object terminal
)
3675 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3677 return make_number (x_display_pixel_height (dpyinfo
));
3680 DEFUN ("x-display-planes", Fx_display_planes
, Sx_display_planes
,
3682 doc
: /* Return the number of bitplanes of the X display TERMINAL.
3683 The optional argument TERMINAL specifies which display to ask about.
3684 TERMINAL should be a terminal object, a frame or a display name (a string).
3685 If omitted or nil, that stands for the selected frame's display. */)
3686 (Lisp_Object terminal
)
3688 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3690 return make_number (dpyinfo
->n_planes
);
3693 DEFUN ("x-display-color-cells", Fx_display_color_cells
, Sx_display_color_cells
,
3695 doc
: /* Return the number of color cells of the X display TERMINAL.
3696 The optional argument TERMINAL specifies which display to ask about.
3697 TERMINAL should be a terminal object, a frame or a display name (a string).
3698 If omitted or nil, that stands for the selected frame's display. */)
3699 (Lisp_Object terminal
)
3701 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3703 int nr_planes
= DisplayPlanes (dpyinfo
->display
,
3704 XScreenNumberOfScreen (dpyinfo
->screen
));
3706 /* Truncate nr_planes to 24 to avoid integer overflow.
3707 Some displays says 32, but only 24 bits are actually significant.
3708 There are only very few and rare video cards that have more than
3709 24 significant bits. Also 24 bits is more than 16 million colors,
3710 it "should be enough for everyone". */
3711 if (nr_planes
> 24) nr_planes
= 24;
3713 return make_number (1 << nr_planes
);
3716 DEFUN ("x-server-max-request-size", Fx_server_max_request_size
,
3717 Sx_server_max_request_size
,
3719 doc
: /* Return the maximum request size of the X server of display TERMINAL.
3720 The optional argument TERMINAL specifies which display to ask about.
3721 TERMINAL should be a terminal object, a frame or a display name (a string).
3722 If omitted or nil, that stands for the selected frame's display. */)
3723 (Lisp_Object terminal
)
3725 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3727 return make_number (MAXREQUEST (dpyinfo
->display
));
3730 DEFUN ("x-server-vendor", Fx_server_vendor
, Sx_server_vendor
, 0, 1, 0,
3731 doc
: /* Return the "vendor ID" string of the X server of display TERMINAL.
3732 \(Labelling every distributor as a "vendor" embodies the false assumption
3733 that operating systems cannot be developed and distributed noncommercially.)
3734 The optional argument TERMINAL specifies which display to ask about.
3735 TERMINAL should be a terminal object, a frame or a display name (a string).
3736 If omitted or nil, that stands for the selected frame's display. */)
3737 (Lisp_Object terminal
)
3739 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3740 char *vendor
= ServerVendor (dpyinfo
->display
);
3742 if (! vendor
) vendor
= "";
3743 return build_string (vendor
);
3746 DEFUN ("x-server-version", Fx_server_version
, Sx_server_version
, 0, 1, 0,
3747 doc
: /* Return the version numbers of the X server of display TERMINAL.
3748 The value is a list of three integers: the major and minor
3749 version numbers of the X Protocol in use, and the distributor-specific release
3750 number. See also the function `x-server-vendor'.
3752 The optional argument TERMINAL specifies which display to ask about.
3753 TERMINAL should be a terminal object, a frame or a display name (a string).
3754 If omitted or nil, that stands for the selected frame's display. */)
3755 (Lisp_Object terminal
)
3757 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3758 Display
*dpy
= dpyinfo
->display
;
3760 return Fcons (make_number (ProtocolVersion (dpy
)),
3761 Fcons (make_number (ProtocolRevision (dpy
)),
3762 Fcons (make_number (VendorRelease (dpy
)), Qnil
)));
3765 DEFUN ("x-display-screens", Fx_display_screens
, Sx_display_screens
, 0, 1, 0,
3766 doc
: /* Return the number of screens on the X server of display TERMINAL.
3767 The optional argument TERMINAL specifies which display to ask about.
3768 TERMINAL should be a terminal object, a frame or a display name (a string).
3769 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
);
3774 return make_number (ScreenCount (dpyinfo
->display
));
3777 DEFUN ("x-display-mm-height", Fx_display_mm_height
, Sx_display_mm_height
, 0, 1, 0,
3778 doc
: /* Return the height in millimeters of the X display TERMINAL.
3779 The optional argument TERMINAL specifies which display to ask about.
3780 TERMINAL should be a terminal object, a frame or a display name (a string).
3781 If omitted or nil, that stands for the selected frame's display. */)
3782 (Lisp_Object terminal
)
3784 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3786 return make_number (HeightMMOfScreen (dpyinfo
->screen
));
3789 DEFUN ("x-display-mm-width", Fx_display_mm_width
, Sx_display_mm_width
, 0, 1, 0,
3790 doc
: /* Return the width in millimeters of the X display TERMINAL.
3791 The optional argument TERMINAL specifies which display to ask about.
3792 TERMINAL should be a terminal object, a frame or a display name (a string).
3793 If omitted or nil, that stands for the selected frame's display. */)
3794 (Lisp_Object terminal
)
3796 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3798 return make_number (WidthMMOfScreen (dpyinfo
->screen
));
3801 DEFUN ("x-display-backing-store", Fx_display_backing_store
,
3802 Sx_display_backing_store
, 0, 1, 0,
3803 doc
: /* Return an indication of whether X display TERMINAL does backing store.
3804 The value may be `always', `when-mapped', or `not-useful'.
3805 The optional argument TERMINAL specifies which display to ask about.
3806 TERMINAL should be a terminal object, a frame or a display name (a string).
3807 If omitted or nil, that stands for the selected frame's display. */)
3808 (Lisp_Object terminal
)
3810 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3813 switch (DoesBackingStore (dpyinfo
->screen
))
3816 result
= intern ("always");
3820 result
= intern ("when-mapped");
3824 result
= intern ("not-useful");
3828 error ("Strange value for BackingStore parameter of screen");
3835 DEFUN ("x-display-visual-class", Fx_display_visual_class
,
3836 Sx_display_visual_class
, 0, 1, 0,
3837 doc
: /* Return the visual class of the X display TERMINAL.
3838 The value is one of the symbols `static-gray', `gray-scale',
3839 `static-color', `pseudo-color', `true-color', or `direct-color'.
3841 The optional argument TERMINAL specifies which display to ask about.
3842 TERMINAL should a terminal object, a frame or a display name (a string).
3843 If omitted or nil, that stands for the selected frame's display. */)
3844 (Lisp_Object terminal
)
3846 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3849 switch (dpyinfo
->visual
->class)
3852 result
= intern ("static-gray");
3855 result
= intern ("gray-scale");
3858 result
= intern ("static-color");
3861 result
= intern ("pseudo-color");
3864 result
= intern ("true-color");
3867 result
= intern ("direct-color");
3870 error ("Display has an unknown visual class");
3877 DEFUN ("x-display-save-under", Fx_display_save_under
,
3878 Sx_display_save_under
, 0, 1, 0,
3879 doc
: /* Return t if the X display TERMINAL supports the save-under feature.
3880 The optional argument TERMINAL specifies which display to ask about.
3881 TERMINAL should be a terminal object, a frame or a display name (a string).
3882 If omitted or nil, that stands for the selected frame's display. */)
3883 (Lisp_Object terminal
)
3885 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3887 if (DoesSaveUnders (dpyinfo
->screen
) == True
)
3894 x_pixel_width (register struct frame
*f
)
3896 return FRAME_PIXEL_WIDTH (f
);
3900 x_pixel_height (register struct frame
*f
)
3902 return FRAME_PIXEL_HEIGHT (f
);
3906 x_char_width (register struct frame
*f
)
3908 return FRAME_COLUMN_WIDTH (f
);
3912 x_char_height (register struct frame
*f
)
3914 return FRAME_LINE_HEIGHT (f
);
3918 x_screen_planes (register struct frame
*f
)
3920 return FRAME_X_DISPLAY_INFO (f
)->n_planes
;
3925 /************************************************************************
3927 ************************************************************************/
3930 /* Mapping visual names to visuals. */
3932 static struct visual_class
3939 {"StaticGray", StaticGray
},
3940 {"GrayScale", GrayScale
},
3941 {"StaticColor", StaticColor
},
3942 {"PseudoColor", PseudoColor
},
3943 {"TrueColor", TrueColor
},
3944 {"DirectColor", DirectColor
},
3949 #ifndef HAVE_XSCREENNUMBEROFSCREEN
3951 /* Value is the screen number of screen SCR. This is a substitute for
3952 the X function with the same name when that doesn't exist. */
3955 XScreenNumberOfScreen (scr
)
3956 register Screen
*scr
;
3958 Display
*dpy
= scr
->display
;
3961 for (i
= 0; i
< dpy
->nscreens
; ++i
)
3962 if (scr
== dpy
->screens
+ i
)
3968 #endif /* not HAVE_XSCREENNUMBEROFSCREEN */
3971 /* Select the visual that should be used on display DPYINFO. Set
3972 members of DPYINFO appropriately. Called from x_term_init. */
3975 select_visual (struct x_display_info
*dpyinfo
)
3977 Display
*dpy
= dpyinfo
->display
;
3978 Screen
*screen
= dpyinfo
->screen
;
3981 /* See if a visual is specified. */
3982 value
= display_x_get_resource (dpyinfo
,
3983 build_string ("visualClass"),
3984 build_string ("VisualClass"),
3986 if (STRINGP (value
))
3988 /* VALUE should be of the form CLASS-DEPTH, where CLASS is one
3989 of `PseudoColor', `TrueColor' etc. and DEPTH is the color
3990 depth, a decimal number. NAME is compared with case ignored. */
3991 char *s
= (char *) alloca (SBYTES (value
) + 1);
3996 strcpy (s
, SDATA (value
));
3997 dash
= strchr (s
, '-');
4000 dpyinfo
->n_planes
= atoi (dash
+ 1);
4004 /* We won't find a matching visual with depth 0, so that
4005 an error will be printed below. */
4006 dpyinfo
->n_planes
= 0;
4008 /* Determine the visual class. */
4009 for (i
= 0; visual_classes
[i
].name
; ++i
)
4010 if (xstrcasecmp (s
, visual_classes
[i
].name
) == 0)
4012 class = visual_classes
[i
].class;
4016 /* Look up a matching visual for the specified class. */
4018 || !XMatchVisualInfo (dpy
, XScreenNumberOfScreen (screen
),
4019 dpyinfo
->n_planes
, class, &vinfo
))
4020 fatal ("Invalid visual specification `%s'", SDATA (value
));
4022 dpyinfo
->visual
= vinfo
.visual
;
4027 XVisualInfo
*vinfo
, vinfo_template
;
4029 dpyinfo
->visual
= DefaultVisualOfScreen (screen
);
4031 vinfo_template
.visualid
= XVisualIDFromVisual (dpyinfo
->visual
);
4032 vinfo_template
.screen
= XScreenNumberOfScreen (screen
);
4033 vinfo
= XGetVisualInfo (dpy
, VisualIDMask
| VisualScreenMask
,
4034 &vinfo_template
, &n_visuals
);
4036 fatal ("Can't get proper X visual info");
4038 dpyinfo
->n_planes
= vinfo
->depth
;
4039 XFree ((char *) vinfo
);
4044 /* Return the X display structure for the display named NAME.
4045 Open a new connection if necessary. */
4047 struct x_display_info
*
4048 x_display_info_for_name (Lisp_Object name
)
4051 struct x_display_info
*dpyinfo
;
4053 CHECK_STRING (name
);
4056 if (! EQ (Vinitial_window_system
, intern ("x")))
4057 error ("Not using X Windows"); /* That doesn't stop us anymore. */
4060 for (dpyinfo
= x_display_list
, names
= x_display_name_list
;
4062 dpyinfo
= dpyinfo
->next
, names
= XCDR (names
))
4065 tem
= Fstring_equal (XCAR (XCAR (names
)), name
);
4070 /* Use this general default value to start with. */
4071 Vx_resource_name
= Vinvocation_name
;
4073 validate_x_resource_name ();
4075 dpyinfo
= x_term_init (name
, (char *)0,
4076 (char *) SDATA (Vx_resource_name
));
4079 error ("Cannot connect to X server %s", SDATA (name
));
4082 XSETFASTINT (Vwindow_system_version
, 11);
4088 DEFUN ("x-open-connection", Fx_open_connection
, Sx_open_connection
,
4090 doc
: /* Open a connection to an X server.
4091 DISPLAY is the name of the display to connect to.
4092 Optional second arg XRM-STRING is a string of resources in xrdb format.
4093 If the optional third arg MUST-SUCCEED is non-nil,
4094 terminate Emacs if we can't open the connection. */)
4095 (Lisp_Object display
, Lisp_Object xrm_string
, Lisp_Object must_succeed
)
4097 unsigned char *xrm_option
;
4098 struct x_display_info
*dpyinfo
;
4100 CHECK_STRING (display
);
4101 if (! NILP (xrm_string
))
4102 CHECK_STRING (xrm_string
);
4105 if (! EQ (Vinitial_window_system
, intern ("x")))
4106 error ("Not using X Windows"); /* That doesn't stop us anymore. */
4109 if (! NILP (xrm_string
))
4110 xrm_option
= (unsigned char *) SDATA (xrm_string
);
4112 xrm_option
= (unsigned char *) 0;
4114 validate_x_resource_name ();
4116 /* This is what opens the connection and sets x_current_display.
4117 This also initializes many symbols, such as those used for input. */
4118 dpyinfo
= x_term_init (display
, xrm_option
,
4119 (char *) SDATA (Vx_resource_name
));
4123 if (!NILP (must_succeed
))
4124 fatal ("Cannot connect to X server %s.\n\
4125 Check the DISPLAY environment variable or use `-d'.\n\
4126 Also use the `xauth' program to verify that you have the proper\n\
4127 authorization information needed to connect the X server.\n\
4128 An insecure way to solve the problem may be to use `xhost'.\n",
4131 error ("Cannot connect to X server %s", SDATA (display
));
4136 XSETFASTINT (Vwindow_system_version
, 11);
4140 DEFUN ("x-close-connection", Fx_close_connection
,
4141 Sx_close_connection
, 1, 1, 0,
4142 doc
: /* Close the connection to TERMINAL's X server.
4143 For TERMINAL, specify a terminal object, a frame or a display name (a
4144 string). If TERMINAL is nil, that stands for the selected frame's
4146 (Lisp_Object terminal
)
4148 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
4150 if (dpyinfo
->reference_count
> 0)
4151 error ("Display still has frames on it");
4153 x_delete_terminal (dpyinfo
->terminal
);
4158 DEFUN ("x-display-list", Fx_display_list
, Sx_display_list
, 0, 0, 0,
4159 doc
: /* Return the list of display names that Emacs has connections to. */)
4162 Lisp_Object tail
, result
;
4165 for (tail
= x_display_name_list
; CONSP (tail
); tail
= XCDR (tail
))
4166 result
= Fcons (XCAR (XCAR (tail
)), result
);
4171 DEFUN ("x-synchronize", Fx_synchronize
, Sx_synchronize
, 1, 2, 0,
4172 doc
: /* If ON is non-nil, report X errors as soon as the erring request is made.
4173 If ON is nil, allow buffering of requests.
4174 Turning on synchronization prohibits the Xlib routines from buffering
4175 requests and seriously degrades performance, but makes debugging much
4177 The optional second argument TERMINAL specifies which display to act on.
4178 TERMINAL should be a terminal object, a frame or a display name (a string).
4179 If TERMINAL is omitted or nil, that stands for the selected frame's display. */)
4180 (Lisp_Object on
, Lisp_Object terminal
)
4182 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
4184 XSynchronize (dpyinfo
->display
, !EQ (on
, Qnil
));
4189 /* Wait for responses to all X commands issued so far for frame F. */
4192 x_sync (FRAME_PTR f
)
4195 XSync (FRAME_X_DISPLAY (f
), False
);
4200 /***********************************************************************
4202 ***********************************************************************/
4204 DEFUN ("x-change-window-property", Fx_change_window_property
,
4205 Sx_change_window_property
, 2, 6, 0,
4206 doc
: /* Change window property PROP to VALUE on the X window of FRAME.
4207 PROP must be a string.
4208 VALUE may be a string or a list of conses, numbers and/or strings.
4209 If an element in the list is a string, it is converted to
4210 an Atom and the value of the Atom is used. If an element is a cons,
4211 it is converted to a 32 bit number where the car is the 16 top bits and the
4212 cdr is the lower 16 bits.
4213 FRAME nil or omitted means use the selected frame.
4214 If TYPE is given and non-nil, it is the name of the type of VALUE.
4215 If TYPE is not given or nil, the type is STRING.
4216 FORMAT gives the size in bits of each element if VALUE is a list.
4217 It must be one of 8, 16 or 32.
4218 If VALUE is a string or FORMAT is nil or not given, FORMAT defaults to 8.
4219 If OUTER_P is non-nil, the property is changed for the outer X window of
4220 FRAME. Default is to change on the edit X window.
4223 (Lisp_Object prop
, Lisp_Object value
, Lisp_Object frame
, Lisp_Object type
, Lisp_Object format
, Lisp_Object outer_p
)
4225 struct frame
*f
= check_x_frame (frame
);
4227 Atom target_type
= XA_STRING
;
4228 int element_format
= 8;
4229 unsigned char *data
;
4233 CHECK_STRING (prop
);
4235 if (! NILP (format
))
4237 CHECK_NUMBER (format
);
4238 element_format
= XFASTINT (format
);
4240 if (element_format
!= 8 && element_format
!= 16
4241 && element_format
!= 32)
4242 error ("FORMAT must be one of 8, 16 or 32");
4247 nelements
= x_check_property_data (value
);
4248 if (nelements
== -1)
4249 error ("Bad data in VALUE, must be number, string or cons");
4251 if (element_format
== 8)
4252 data
= (unsigned char *) xmalloc (nelements
);
4253 else if (element_format
== 16)
4254 data
= (unsigned char *) xmalloc (nelements
*2);
4255 else /* format == 32 */
4256 /* The man page for XChangeProperty:
4257 "If the specified format is 32, the property data must be a
4259 This applies even if long is more than 64 bits. The X library
4260 converts to 32 bits before sending to the X server. */
4261 data
= (unsigned char *) xmalloc (nelements
* sizeof(long));
4263 x_fill_property_data (FRAME_X_DISPLAY (f
), value
, data
, element_format
);
4267 CHECK_STRING (value
);
4268 data
= SDATA (value
);
4269 nelements
= SCHARS (value
);
4273 prop_atom
= XInternAtom (FRAME_X_DISPLAY (f
), SDATA (prop
), False
);
4276 CHECK_STRING (type
);
4277 target_type
= XInternAtom (FRAME_X_DISPLAY (f
), SDATA (type
), False
);
4280 if (! NILP (outer_p
)) w
= FRAME_OUTER_WINDOW (f
);
4281 else w
= FRAME_X_WINDOW (f
);
4283 XChangeProperty (FRAME_X_DISPLAY (f
), w
,
4284 prop_atom
, target_type
, element_format
, PropModeReplace
,
4287 if (CONSP (value
)) xfree (data
);
4289 /* Make sure the property is set when we return. */
4290 XFlush (FRAME_X_DISPLAY (f
));
4297 DEFUN ("x-delete-window-property", Fx_delete_window_property
,
4298 Sx_delete_window_property
, 1, 2, 0,
4299 doc
: /* Remove window property PROP from X window of FRAME.
4300 FRAME nil or omitted means use the selected frame. Value is PROP. */)
4301 (Lisp_Object prop
, Lisp_Object frame
)
4303 struct frame
*f
= check_x_frame (frame
);
4306 CHECK_STRING (prop
);
4308 prop_atom
= XInternAtom (FRAME_X_DISPLAY (f
), SDATA (prop
), False
);
4309 XDeleteProperty (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), prop_atom
);
4311 /* Make sure the property is removed when we return. */
4312 XFlush (FRAME_X_DISPLAY (f
));
4319 DEFUN ("x-window-property", Fx_window_property
, Sx_window_property
,
4321 doc
: /* Value is the value of window property PROP on FRAME.
4322 If FRAME is nil or omitted, use the selected frame.
4323 If TYPE is nil or omitted, get the property as a string. Otherwise TYPE
4324 is the name of the Atom that denotes the type expected.
4325 If SOURCE is non-nil, get the property on that window instead of from
4326 FRAME. The number 0 denotes the root window.
4327 If DELETE_P is non-nil, delete the property after retreiving it.
4328 If VECTOR_RET_P is non-nil, don't return a string but a vector of values.
4330 Value is nil if FRAME hasn't a property with name PROP or if PROP has
4331 no value of TYPE. */)
4332 (Lisp_Object prop
, Lisp_Object frame
, Lisp_Object type
, Lisp_Object source
, Lisp_Object delete_p
, Lisp_Object vector_ret_p
)
4334 struct frame
*f
= check_x_frame (frame
);
4337 Lisp_Object prop_value
= Qnil
;
4338 unsigned char *tmp_data
= NULL
;
4340 Atom target_type
= XA_STRING
;
4342 unsigned long actual_size
, bytes_remaining
;
4343 Window target_window
= FRAME_X_WINDOW (f
);
4344 struct gcpro gcpro1
;
4346 GCPRO1 (prop_value
);
4347 CHECK_STRING (prop
);
4349 if (! NILP (source
))
4351 if (NUMBERP (source
))
4353 if (FLOATP (source
))
4354 target_window
= (Window
) XFLOAT (source
);
4356 target_window
= XFASTINT (source
);
4358 if (target_window
== 0)
4359 target_window
= FRAME_X_DISPLAY_INFO (f
)->root_window
;
4361 else if (CONSP (source
))
4362 target_window
= cons_to_long (source
);
4368 if (strcmp ("AnyPropertyType", SDATA (type
)) == 0)
4369 target_type
= AnyPropertyType
;
4371 target_type
= XInternAtom (FRAME_X_DISPLAY (f
), SDATA (type
), False
);
4374 prop_atom
= XInternAtom (FRAME_X_DISPLAY (f
), SDATA (prop
), False
);
4375 rc
= XGetWindowProperty (FRAME_X_DISPLAY (f
), target_window
,
4376 prop_atom
, 0, 0, False
, target_type
,
4377 &actual_type
, &actual_format
, &actual_size
,
4378 &bytes_remaining
, &tmp_data
);
4381 int size
= bytes_remaining
;
4386 rc
= XGetWindowProperty (FRAME_X_DISPLAY (f
), target_window
,
4387 prop_atom
, 0, bytes_remaining
,
4388 ! NILP (delete_p
), target_type
,
4389 &actual_type
, &actual_format
,
4390 &actual_size
, &bytes_remaining
,
4392 if (rc
== Success
&& tmp_data
)
4394 /* The man page for XGetWindowProperty says:
4395 "If the returned format is 32, the returned data is represented
4396 as a long array and should be cast to that type to obtain the
4398 This applies even if long is more than 32 bits, the X library
4399 converts from 32 bit elements received from the X server to long
4400 and passes the long array to us. Thus, for that case memcpy can not
4401 be used. We convert to a 32 bit type here, because so much code
4404 The bytes and offsets passed to XGetWindowProperty refers to the
4405 property and those are indeed in 32 bit quantities if format is
4408 if (actual_format
== 32 && actual_format
< BITS_PER_LONG
)
4411 int *idata
= (int *) tmp_data
;
4412 long *ldata
= (long *) tmp_data
;
4414 for (i
= 0; i
< actual_size
; ++i
)
4415 idata
[i
] = (int) ldata
[i
];
4418 if (NILP (vector_ret_p
))
4419 prop_value
= make_string (tmp_data
, size
);
4421 prop_value
= x_property_data_to_lisp (f
,
4428 if (tmp_data
) XFree (tmp_data
);
4438 /***********************************************************************
4440 ***********************************************************************/
4442 /* Timer function of hourglass_atimer. TIMER is equal to
4445 Display an hourglass pointer on all frames by mapping the frames'
4446 hourglass_window. Set the hourglass_p flag in the frames'
4447 output_data.x structure to indicate that an hourglass cursor is
4448 shown on the frames. */
4451 show_hourglass (struct atimer
*timer
)
4453 /* The timer implementation will cancel this timer automatically
4454 after this function has run. Set hourglass_atimer to null
4455 so that we know the timer doesn't have to be canceled. */
4456 hourglass_atimer
= NULL
;
4458 if (!hourglass_shown_p
)
4460 Lisp_Object rest
, frame
;
4464 FOR_EACH_FRAME (rest
, frame
)
4466 struct frame
*f
= XFRAME (frame
);
4468 if (FRAME_LIVE_P (f
) && FRAME_X_P (f
) && FRAME_X_DISPLAY (f
))
4470 Display
*dpy
= FRAME_X_DISPLAY (f
);
4472 #ifdef USE_X_TOOLKIT
4473 if (f
->output_data
.x
->widget
)
4475 if (FRAME_OUTER_WINDOW (f
))
4478 f
->output_data
.x
->hourglass_p
= 1;
4480 if (!f
->output_data
.x
->hourglass_window
)
4482 unsigned long mask
= CWCursor
;
4483 XSetWindowAttributes attrs
;
4485 Window parent
= FRAME_X_WINDOW (f
);
4487 Window parent
= FRAME_OUTER_WINDOW (f
);
4489 attrs
.cursor
= f
->output_data
.x
->hourglass_cursor
;
4491 f
->output_data
.x
->hourglass_window
4492 = XCreateWindow (dpy
, parent
,
4493 0, 0, 32000, 32000, 0, 0,
4499 XMapRaised (dpy
, f
->output_data
.x
->hourglass_window
);
4505 hourglass_shown_p
= 1;
4511 /* Hide the hourglass pointer on all frames, if it is currently
4515 hide_hourglass (void)
4517 if (hourglass_shown_p
)
4519 Lisp_Object rest
, frame
;
4522 FOR_EACH_FRAME (rest
, frame
)
4524 struct frame
*f
= XFRAME (frame
);
4527 /* Watch out for newly created frames. */
4528 && f
->output_data
.x
->hourglass_window
)
4530 XUnmapWindow (FRAME_X_DISPLAY (f
),
4531 f
->output_data
.x
->hourglass_window
);
4532 /* Sync here because XTread_socket looks at the
4533 hourglass_p flag that is reset to zero below. */
4534 XSync (FRAME_X_DISPLAY (f
), False
);
4535 f
->output_data
.x
->hourglass_p
= 0;
4539 hourglass_shown_p
= 0;
4546 /***********************************************************************
4548 ***********************************************************************/
4550 static Lisp_Object
x_create_tip_frame (struct x_display_info
*,
4551 Lisp_Object
, Lisp_Object
);
4552 static void compute_tip_xy (struct frame
*, Lisp_Object
, Lisp_Object
,
4553 Lisp_Object
, int, int, int *, int *);
4555 /* The frame of a currently visible tooltip. */
4557 Lisp_Object tip_frame
;
4559 /* If non-nil, a timer started that hides the last tooltip when it
4562 Lisp_Object tip_timer
;
4565 /* If non-nil, a vector of 3 elements containing the last args
4566 with which x-show-tip was called. See there. */
4568 Lisp_Object last_show_tip_args
;
4570 /* Maximum size for tooltips; a cons (COLUMNS . ROWS). */
4572 Lisp_Object Vx_max_tooltip_size
;
4576 unwind_create_tip_frame (Lisp_Object frame
)
4578 Lisp_Object deleted
;
4580 deleted
= unwind_create_frame (frame
);
4581 if (EQ (deleted
, Qt
))
4591 /* Create a frame for a tooltip on the display described by DPYINFO.
4592 PARMS is a list of frame parameters. TEXT is the string to
4593 display in the tip frame. Value is the frame.
4595 Note that functions called here, esp. x_default_parameter can
4596 signal errors, for instance when a specified color name is
4597 undefined. We have to make sure that we're in a consistent state
4598 when this happens. */
4601 x_create_tip_frame (struct x_display_info
*dpyinfo
, Lisp_Object parms
, Lisp_Object text
)
4604 Lisp_Object frame
, tem
;
4606 long window_prompting
= 0;
4608 int count
= SPECPDL_INDEX ();
4609 struct gcpro gcpro1
, gcpro2
, gcpro3
;
4610 int face_change_count_before
= face_change_count
;
4612 struct buffer
*old_buffer
;
4616 if (!dpyinfo
->terminal
->name
)
4617 error ("Terminal is not live, can't create new frames on it");
4619 parms
= Fcopy_alist (parms
);
4621 /* Get the name of the frame to use for resource lookup. */
4622 name
= x_get_arg (dpyinfo
, parms
, Qname
, "name", "Name", RES_TYPE_STRING
);
4624 && !EQ (name
, Qunbound
)
4626 error ("Invalid frame name--not a string or nil");
4629 GCPRO3 (parms
, name
, frame
);
4631 XSETFRAME (frame
, f
);
4633 buffer
= Fget_buffer_create (build_string (" *tip*"));
4634 Fset_window_buffer (FRAME_ROOT_WINDOW (f
), buffer
, Qnil
);
4635 old_buffer
= current_buffer
;
4636 set_buffer_internal_1 (XBUFFER (buffer
));
4637 current_buffer
->truncate_lines
= Qnil
;
4638 specbind (Qinhibit_read_only
, Qt
);
4639 specbind (Qinhibit_modification_hooks
, Qt
);
4642 set_buffer_internal_1 (old_buffer
);
4644 FRAME_CAN_HAVE_SCROLL_BARS (f
) = 0;
4645 record_unwind_protect (unwind_create_tip_frame
, frame
);
4647 f
->terminal
= dpyinfo
->terminal
;
4648 f
->terminal
->reference_count
++;
4650 /* By setting the output method, we're essentially saying that
4651 the frame is live, as per FRAME_LIVE_P. If we get a signal
4652 from this point on, x_destroy_window might screw up reference
4654 f
->output_method
= output_x_window
;
4655 f
->output_data
.x
= (struct x_output
*) xmalloc (sizeof (struct x_output
));
4656 memset (f
->output_data
.x
, 0, sizeof (struct x_output
));
4657 f
->output_data
.x
->icon_bitmap
= -1;
4658 FRAME_FONTSET (f
) = -1;
4659 f
->output_data
.x
->scroll_bar_foreground_pixel
= -1;
4660 f
->output_data
.x
->scroll_bar_background_pixel
= -1;
4661 #ifdef USE_TOOLKIT_SCROLL_BARS
4662 f
->output_data
.x
->scroll_bar_top_shadow_pixel
= -1;
4663 f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
= -1;
4664 #endif /* USE_TOOLKIT_SCROLL_BARS */
4665 f
->icon_name
= Qnil
;
4666 FRAME_X_DISPLAY_INFO (f
) = dpyinfo
;
4668 image_cache_refcount
= FRAME_IMAGE_CACHE (f
)->refcount
;
4669 dpyinfo_refcount
= dpyinfo
->reference_count
;
4670 #endif /* GLYPH_DEBUG */
4671 f
->output_data
.x
->parent_desc
= FRAME_X_DISPLAY_INFO (f
)->root_window
;
4672 f
->output_data
.x
->explicit_parent
= 0;
4674 /* These colors will be set anyway later, but it's important
4675 to get the color reference counts right, so initialize them! */
4678 struct gcpro gcpro1
;
4680 /* Function x_decode_color can signal an error. Make
4681 sure to initialize color slots so that we won't try
4682 to free colors we haven't allocated. */
4683 FRAME_FOREGROUND_PIXEL (f
) = -1;
4684 FRAME_BACKGROUND_PIXEL (f
) = -1;
4685 f
->output_data
.x
->cursor_pixel
= -1;
4686 f
->output_data
.x
->cursor_foreground_pixel
= -1;
4687 f
->output_data
.x
->border_pixel
= -1;
4688 f
->output_data
.x
->mouse_pixel
= -1;
4690 black
= build_string ("black");
4692 FRAME_FOREGROUND_PIXEL (f
)
4693 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
4694 FRAME_BACKGROUND_PIXEL (f
)
4695 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
4696 f
->output_data
.x
->cursor_pixel
4697 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
4698 f
->output_data
.x
->cursor_foreground_pixel
4699 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
4700 f
->output_data
.x
->border_pixel
4701 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
4702 f
->output_data
.x
->mouse_pixel
4703 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
4707 /* Set the name; the functions to which we pass f expect the name to
4709 if (EQ (name
, Qunbound
) || NILP (name
))
4711 f
->name
= build_string (dpyinfo
->x_id_name
);
4712 f
->explicit_name
= 0;
4717 f
->explicit_name
= 1;
4718 /* use the frame's title when getting resources for this frame. */
4719 specbind (Qx_resource_name
, name
);
4722 f
->resx
= dpyinfo
->resx
;
4723 f
->resy
= dpyinfo
->resy
;
4725 register_font_driver (&xfont_driver
, f
);
4726 #ifdef HAVE_FREETYPE
4728 register_font_driver (&xftfont_driver
, f
);
4729 #else /* not HAVE_XFT */
4730 register_font_driver (&ftxfont_driver
, f
);
4731 #endif /* not HAVE_XFT */
4732 #endif /* HAVE_FREETYPE */
4734 x_default_parameter (f
, parms
, Qfont_backend
, Qnil
,
4735 "fontBackend", "FontBackend", RES_TYPE_STRING
);
4737 /* Extract the window parameters from the supplied values that are
4738 needed to determine window geometry. */
4739 x_default_font_parameter (f
, parms
);
4741 x_default_parameter (f
, parms
, Qborder_width
, make_number (0),
4742 "borderWidth", "BorderWidth", RES_TYPE_NUMBER
);
4744 /* This defaults to 2 in order to match xterm. We recognize either
4745 internalBorderWidth or internalBorder (which is what xterm calls
4747 if (NILP (Fassq (Qinternal_border_width
, parms
)))
4751 value
= x_get_arg (dpyinfo
, parms
, Qinternal_border_width
,
4752 "internalBorder", "internalBorder", RES_TYPE_NUMBER
);
4753 if (! EQ (value
, Qunbound
))
4754 parms
= Fcons (Fcons (Qinternal_border_width
, value
),
4758 x_default_parameter (f
, parms
, Qinternal_border_width
, make_number (1),
4759 "internalBorderWidth", "internalBorderWidth",
4762 /* Also do the stuff which must be set before the window exists. */
4763 x_default_parameter (f
, parms
, Qforeground_color
, build_string ("black"),
4764 "foreground", "Foreground", RES_TYPE_STRING
);
4765 x_default_parameter (f
, parms
, Qbackground_color
, build_string ("white"),
4766 "background", "Background", RES_TYPE_STRING
);
4767 x_default_parameter (f
, parms
, Qmouse_color
, build_string ("black"),
4768 "pointerColor", "Foreground", RES_TYPE_STRING
);
4769 x_default_parameter (f
, parms
, Qcursor_color
, build_string ("black"),
4770 "cursorColor", "Foreground", RES_TYPE_STRING
);
4771 x_default_parameter (f
, parms
, Qborder_color
, build_string ("black"),
4772 "borderColor", "BorderColor", RES_TYPE_STRING
);
4774 /* Init faces before x_default_parameter is called for scroll-bar
4775 parameters because that function calls x_set_scroll_bar_width,
4776 which calls change_frame_size, which calls Fset_window_buffer,
4777 which runs hooks, which call Fvertical_motion. At the end, we
4778 end up in init_iterator with a null face cache, which should not
4780 init_frame_faces (f
);
4782 f
->output_data
.x
->parent_desc
= FRAME_X_DISPLAY_INFO (f
)->root_window
;
4784 window_prompting
= x_figure_window_size (f
, parms
, 0);
4787 XSetWindowAttributes attrs
;
4789 Atom type
= FRAME_X_DISPLAY_INFO (f
)->Xatom_net_window_type_tooltip
;
4792 mask
= CWBackPixel
| CWOverrideRedirect
| CWEventMask
;
4793 if (DoesSaveUnders (dpyinfo
->screen
))
4794 mask
|= CWSaveUnder
;
4796 /* Window managers look at the override-redirect flag to determine
4797 whether or net to give windows a decoration (Xlib spec, chapter
4799 attrs
.override_redirect
= True
;
4800 attrs
.save_under
= True
;
4801 attrs
.background_pixel
= FRAME_BACKGROUND_PIXEL (f
);
4802 /* Arrange for getting MapNotify and UnmapNotify events. */
4803 attrs
.event_mask
= StructureNotifyMask
;
4805 = FRAME_X_WINDOW (f
)
4806 = XCreateWindow (FRAME_X_DISPLAY (f
),
4807 FRAME_X_DISPLAY_INFO (f
)->root_window
,
4808 /* x, y, width, height */
4812 CopyFromParent
, InputOutput
, CopyFromParent
,
4814 XChangeProperty (FRAME_X_DISPLAY (f
), tip_window
,
4815 FRAME_X_DISPLAY_INFO (f
)->Xatom_net_window_type
,
4816 XA_ATOM
, 32, PropModeReplace
,
4817 (unsigned char *)&type
, 1);
4823 x_default_parameter (f
, parms
, Qauto_raise
, Qnil
,
4824 "autoRaise", "AutoRaiseLower", RES_TYPE_BOOLEAN
);
4825 x_default_parameter (f
, parms
, Qauto_lower
, Qnil
,
4826 "autoLower", "AutoRaiseLower", RES_TYPE_BOOLEAN
);
4827 x_default_parameter (f
, parms
, Qcursor_type
, Qbox
,
4828 "cursorType", "CursorType", RES_TYPE_SYMBOL
);
4830 /* Dimensions, especially FRAME_LINES (f), must be done via change_frame_size.
4831 Change will not be effected unless different from the current
4833 width
= FRAME_COLS (f
);
4834 height
= FRAME_LINES (f
);
4835 SET_FRAME_COLS (f
, 0);
4836 FRAME_LINES (f
) = 0;
4837 change_frame_size (f
, height
, width
, 1, 0, 0);
4839 /* Add `tooltip' frame parameter's default value. */
4840 if (NILP (Fframe_parameter (frame
, Qtooltip
)))
4841 Fmodify_frame_parameters (frame
, Fcons (Fcons (Qtooltip
, Qt
), Qnil
));
4843 /* FIXME - can this be done in a similar way to normal frames?
4844 http://lists.gnu.org/archive/html/emacs-devel/2007-10/msg00641.html */
4846 /* Set the `display-type' frame parameter before setting up faces. */
4848 Lisp_Object disptype
;
4850 if (FRAME_X_DISPLAY_INFO (f
)->n_planes
== 1)
4851 disptype
= intern ("mono");
4852 else if (FRAME_X_DISPLAY_INFO (f
)->visual
->class == GrayScale
4853 || FRAME_X_DISPLAY_INFO (f
)->visual
->class == StaticGray
)
4854 disptype
= intern ("grayscale");
4856 disptype
= intern ("color");
4858 if (NILP (Fframe_parameter (frame
, Qdisplay_type
)))
4859 Fmodify_frame_parameters (frame
, Fcons (Fcons (Qdisplay_type
, disptype
),
4863 /* Set up faces after all frame parameters are known. This call
4864 also merges in face attributes specified for new frames.
4866 Frame parameters may be changed if .Xdefaults contains
4867 specifications for the default font. For example, if there is an
4868 `Emacs.default.attributeBackground: pink', the `background-color'
4869 attribute of the frame get's set, which let's the internal border
4870 of the tooltip frame appear in pink. Prevent this. */
4872 Lisp_Object bg
= Fframe_parameter (frame
, Qbackground_color
);
4874 /* Set tip_frame here, so that */
4876 call2 (Qface_set_after_frame_default
, frame
, Qnil
);
4878 if (!EQ (bg
, Fframe_parameter (frame
, Qbackground_color
)))
4879 Fmodify_frame_parameters (frame
, Fcons (Fcons (Qbackground_color
, bg
),
4887 /* It is now ok to make the frame official even if we get an error
4888 below. And the frame needs to be on Vframe_list or making it
4889 visible won't work. */
4890 Vframe_list
= Fcons (frame
, Vframe_list
);
4892 /* Now that the frame is official, it counts as a reference to
4894 FRAME_X_DISPLAY_INFO (f
)->reference_count
++;
4896 /* Setting attributes of faces of the tooltip frame from resources
4897 and similar will increment face_change_count, which leads to the
4898 clearing of all current matrices. Since this isn't necessary
4899 here, avoid it by resetting face_change_count to the value it
4900 had before we created the tip frame. */
4901 face_change_count
= face_change_count_before
;
4903 /* Discard the unwind_protect. */
4904 return unbind_to (count
, frame
);
4908 /* Compute where to display tip frame F. PARMS is the list of frame
4909 parameters for F. DX and DY are specified offsets from the current
4910 location of the mouse. WIDTH and HEIGHT are the width and height
4911 of the tooltip. Return coordinates relative to the root window of
4912 the display in *ROOT_X, and *ROOT_Y. */
4915 compute_tip_xy (struct frame
*f
, Lisp_Object parms
, Lisp_Object dx
, Lisp_Object dy
, int width
, int height
, int *root_x
, int *root_y
)
4917 Lisp_Object left
, top
;
4922 /* User-specified position? */
4923 left
= Fcdr (Fassq (Qleft
, parms
));
4924 top
= Fcdr (Fassq (Qtop
, parms
));
4926 /* Move the tooltip window where the mouse pointer is. Resize and
4928 if (!INTEGERP (left
) || !INTEGERP (top
))
4931 XQueryPointer (FRAME_X_DISPLAY (f
), FRAME_X_DISPLAY_INFO (f
)->root_window
,
4932 &root
, &child
, root_x
, root_y
, &win_x
, &win_y
, &pmask
);
4937 *root_y
= XINT (top
);
4938 else if (*root_y
+ XINT (dy
) <= 0)
4939 *root_y
= 0; /* Can happen for negative dy */
4940 else if (*root_y
+ XINT (dy
) + height
4941 <= x_display_pixel_height (FRAME_X_DISPLAY_INFO (f
)))
4942 /* It fits below the pointer */
4943 *root_y
+= XINT (dy
);
4944 else if (height
+ XINT (dy
) <= *root_y
)
4945 /* It fits above the pointer. */
4946 *root_y
-= height
+ XINT (dy
);
4948 /* Put it on the top. */
4951 if (INTEGERP (left
))
4952 *root_x
= XINT (left
);
4953 else if (*root_x
+ XINT (dx
) <= 0)
4954 *root_x
= 0; /* Can happen for negative dx */
4955 else if (*root_x
+ XINT (dx
) + width
4956 <= x_display_pixel_width (FRAME_X_DISPLAY_INFO (f
)))
4957 /* It fits to the right of the pointer. */
4958 *root_x
+= XINT (dx
);
4959 else if (width
+ XINT (dx
) <= *root_x
)
4960 /* It fits to the left of the pointer. */
4961 *root_x
-= width
+ XINT (dx
);
4963 /* Put it left-justified on the screen--it ought to fit that way. */
4968 DEFUN ("x-show-tip", Fx_show_tip
, Sx_show_tip
, 1, 6, 0,
4969 doc
: /* Show STRING in a "tooltip" window on frame FRAME.
4970 A tooltip window is a small X window displaying a string.
4972 This is an internal function; Lisp code should call `tooltip-show'.
4974 FRAME nil or omitted means use the selected frame.
4976 PARMS is an optional list of frame parameters which can be used to
4977 change the tooltip's appearance.
4979 Automatically hide the tooltip after TIMEOUT seconds. TIMEOUT nil
4980 means use the default timeout of 5 seconds.
4982 If the list of frame parameters PARAMS contains a `left' parameters,
4983 the tooltip is displayed at that x-position. Otherwise it is
4984 displayed at the mouse position, with offset DX added (default is 5 if
4985 DX isn't specified). Likewise for the y-position; if a `top' frame
4986 parameter is specified, it determines the y-position of the tooltip
4987 window, otherwise it is displayed at the mouse position, with offset
4988 DY added (default is -10).
4990 A tooltip's maximum size is specified by `x-max-tooltip-size'.
4991 Text larger than the specified size is clipped. */)
4992 (Lisp_Object string
, Lisp_Object frame
, Lisp_Object parms
, Lisp_Object timeout
, Lisp_Object dx
, Lisp_Object dy
)
4997 struct buffer
*old_buffer
;
4998 struct text_pos pos
;
4999 int i
, width
, height
;
5000 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
5001 int old_windows_or_buffers_changed
= windows_or_buffers_changed
;
5002 int count
= SPECPDL_INDEX ();
5004 specbind (Qinhibit_redisplay
, Qt
);
5006 GCPRO4 (string
, parms
, frame
, timeout
);
5008 CHECK_STRING (string
);
5009 if (SCHARS (string
) == 0)
5010 string
= make_unibyte_string (" ", 1);
5012 f
= check_x_frame (frame
);
5014 timeout
= make_number (5);
5016 CHECK_NATNUM (timeout
);
5019 dx
= make_number (5);
5024 dy
= make_number (-10);
5028 if (NILP (last_show_tip_args
))
5029 last_show_tip_args
= Fmake_vector (make_number (3), Qnil
);
5031 if (!NILP (tip_frame
))
5033 Lisp_Object last_string
= AREF (last_show_tip_args
, 0);
5034 Lisp_Object last_frame
= AREF (last_show_tip_args
, 1);
5035 Lisp_Object last_parms
= AREF (last_show_tip_args
, 2);
5037 if (EQ (frame
, last_frame
)
5038 && !NILP (Fequal (last_string
, string
))
5039 && !NILP (Fequal (last_parms
, parms
)))
5041 struct frame
*f
= XFRAME (tip_frame
);
5043 /* Only DX and DY have changed. */
5044 if (!NILP (tip_timer
))
5046 Lisp_Object timer
= tip_timer
;
5048 call1 (Qcancel_timer
, timer
);
5052 compute_tip_xy (f
, parms
, dx
, dy
, FRAME_PIXEL_WIDTH (f
),
5053 FRAME_PIXEL_HEIGHT (f
), &root_x
, &root_y
);
5054 XMoveWindow (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
5061 /* Hide a previous tip, if any. */
5064 ASET (last_show_tip_args
, 0, string
);
5065 ASET (last_show_tip_args
, 1, frame
);
5066 ASET (last_show_tip_args
, 2, parms
);
5068 /* Add default values to frame parameters. */
5069 if (NILP (Fassq (Qname
, parms
)))
5070 parms
= Fcons (Fcons (Qname
, build_string ("tooltip")), parms
);
5071 if (NILP (Fassq (Qinternal_border_width
, parms
)))
5072 parms
= Fcons (Fcons (Qinternal_border_width
, make_number (3)), parms
);
5073 if (NILP (Fassq (Qborder_width
, parms
)))
5074 parms
= Fcons (Fcons (Qborder_width
, make_number (1)), parms
);
5075 if (NILP (Fassq (Qborder_color
, parms
)))
5076 parms
= Fcons (Fcons (Qborder_color
, build_string ("lightyellow")), parms
);
5077 if (NILP (Fassq (Qbackground_color
, parms
)))
5078 parms
= Fcons (Fcons (Qbackground_color
, build_string ("lightyellow")),
5081 /* Create a frame for the tooltip, and record it in the global
5082 variable tip_frame. */
5083 frame
= x_create_tip_frame (FRAME_X_DISPLAY_INFO (f
), parms
, string
);
5086 /* Set up the frame's root window. */
5087 w
= XWINDOW (FRAME_ROOT_WINDOW (f
));
5088 w
->left_col
= w
->top_line
= make_number (0);
5090 if (CONSP (Vx_max_tooltip_size
)
5091 && INTEGERP (XCAR (Vx_max_tooltip_size
))
5092 && XINT (XCAR (Vx_max_tooltip_size
)) > 0
5093 && INTEGERP (XCDR (Vx_max_tooltip_size
))
5094 && XINT (XCDR (Vx_max_tooltip_size
)) > 0)
5096 w
->total_cols
= XCAR (Vx_max_tooltip_size
);
5097 w
->total_lines
= XCDR (Vx_max_tooltip_size
);
5101 w
->total_cols
= make_number (80);
5102 w
->total_lines
= make_number (40);
5105 FRAME_TOTAL_COLS (f
) = XINT (w
->total_cols
);
5107 w
->pseudo_window_p
= 1;
5109 /* Display the tooltip text in a temporary buffer. */
5110 old_buffer
= current_buffer
;
5111 set_buffer_internal_1 (XBUFFER (XWINDOW (FRAME_ROOT_WINDOW (f
))->buffer
));
5112 current_buffer
->truncate_lines
= Qnil
;
5113 clear_glyph_matrix (w
->desired_matrix
);
5114 clear_glyph_matrix (w
->current_matrix
);
5115 SET_TEXT_POS (pos
, BEGV
, BEGV_BYTE
);
5116 try_window (FRAME_ROOT_WINDOW (f
), pos
, TRY_WINDOW_IGNORE_FONTS_CHANGE
);
5118 /* Compute width and height of the tooltip. */
5120 for (i
= 0; i
< w
->desired_matrix
->nrows
; ++i
)
5122 struct glyph_row
*row
= &w
->desired_matrix
->rows
[i
];
5126 /* Stop at the first empty row at the end. */
5127 if (!row
->enabled_p
|| !row
->displays_text_p
)
5130 /* Let the row go over the full width of the frame. */
5131 row
->full_width_p
= 1;
5133 row_width
= row
->pixel_width
;
5134 /* There's a glyph at the end of rows that is used to place
5135 the cursor there. Don't include the width of this glyph. */
5136 if (row
->used
[TEXT_AREA
])
5138 last
= &row
->glyphs
[TEXT_AREA
][row
->used
[TEXT_AREA
] - 1];
5139 if (INTEGERP (last
->object
))
5140 row_width
-= last
->pixel_width
;
5143 height
+= row
->height
;
5144 width
= max (width
, row_width
);
5147 /* Add the frame's internal border to the width and height the X
5148 window should have. */
5149 height
+= 2 * FRAME_INTERNAL_BORDER_WIDTH (f
);
5150 width
+= 2 * FRAME_INTERNAL_BORDER_WIDTH (f
);
5152 /* Move the tooltip window where the mouse pointer is. Resize and
5154 compute_tip_xy (f
, parms
, dx
, dy
, width
, height
, &root_x
, &root_y
);
5157 XMoveResizeWindow (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
5158 root_x
, root_y
, width
, height
);
5159 XMapRaised (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
));
5162 /* Draw into the window. */
5163 w
->must_be_updated_p
= 1;
5164 update_single_window (w
, 1);
5166 /* Restore original current buffer. */
5167 set_buffer_internal_1 (old_buffer
);
5168 windows_or_buffers_changed
= old_windows_or_buffers_changed
;
5171 /* Let the tip disappear after timeout seconds. */
5172 tip_timer
= call3 (intern ("run-at-time"), timeout
, Qnil
,
5173 intern ("x-hide-tip"));
5176 return unbind_to (count
, Qnil
);
5180 DEFUN ("x-hide-tip", Fx_hide_tip
, Sx_hide_tip
, 0, 0, 0,
5181 doc
: /* Hide the current tooltip window, if there is any.
5182 Value is t if tooltip was open, nil otherwise. */)
5186 Lisp_Object deleted
, frame
, timer
;
5187 struct gcpro gcpro1
, gcpro2
;
5189 /* Return quickly if nothing to do. */
5190 if (NILP (tip_timer
) && NILP (tip_frame
))
5195 GCPRO2 (frame
, timer
);
5196 tip_frame
= tip_timer
= deleted
= Qnil
;
5198 count
= SPECPDL_INDEX ();
5199 specbind (Qinhibit_redisplay
, Qt
);
5200 specbind (Qinhibit_quit
, Qt
);
5203 call1 (Qcancel_timer
, timer
);
5207 delete_frame (frame
, Qnil
);
5211 /* Bloodcurdling hack alert: The Lucid menu bar widget's
5212 redisplay procedure is not called when a tip frame over menu
5213 items is unmapped. Redisplay the menu manually... */
5215 struct frame
*f
= SELECTED_FRAME ();
5216 Widget w
= f
->output_data
.x
->menubar_widget
;
5218 if (!DoesSaveUnders (FRAME_X_DISPLAY_INFO (f
)->screen
)
5222 xlwmenu_redisplay (w
);
5226 #endif /* USE_LUCID */
5230 return unbind_to (count
, deleted
);
5235 /***********************************************************************
5236 File selection dialog
5237 ***********************************************************************/
5239 DEFUN ("x-uses-old-gtk-dialog", Fx_uses_old_gtk_dialog
,
5240 Sx_uses_old_gtk_dialog
,
5242 doc
: /* Return t if the old Gtk+ file selection dialog is used. */)
5249 && xg_uses_old_file_dialog ())
5257 /* Callback for "OK" and "Cancel" on file selection dialog. */
5260 file_dialog_cb (widget
, client_data
, call_data
)
5262 XtPointer call_data
, client_data
;
5264 int *result
= (int *) client_data
;
5265 XmAnyCallbackStruct
*cb
= (XmAnyCallbackStruct
*) call_data
;
5266 *result
= cb
->reason
;
5270 /* Callback for unmapping a file selection dialog. This is used to
5271 capture the case where a dialog is closed via a window manager's
5272 closer button, for example. Using a XmNdestroyCallback didn't work
5276 file_dialog_unmap_cb (widget
, client_data
, call_data
)
5278 XtPointer call_data
, client_data
;
5280 int *result
= (int *) client_data
;
5281 *result
= XmCR_CANCEL
;
5285 clean_up_file_dialog (arg
)
5288 struct Lisp_Save_Value
*p
= XSAVE_VALUE (arg
);
5289 Widget dialog
= (Widget
) p
->pointer
;
5293 XtUnmanageChild (dialog
);
5294 XtDestroyWidget (dialog
);
5295 x_menu_set_in_use (0);
5302 DEFUN ("x-file-dialog", Fx_file_dialog
, Sx_file_dialog
, 2, 5, 0,
5303 doc
: /* Read file name, prompting with PROMPT in directory DIR.
5304 Use a file selection dialog. Select DEFAULT-FILENAME in the dialog's file
5305 selection box, if specified. If MUSTMATCH is non-nil, the returned file
5306 or directory must exist. ONLY-DIR-P is ignored." */)
5307 (Lisp_Object prompt
, Lisp_Object dir
, Lisp_Object default_filename
, Lisp_Object mustmatch
, Lisp_Object only_dir_p
)
5310 struct frame
*f
= SELECTED_FRAME ();
5311 Lisp_Object file
= Qnil
;
5312 Lisp_Object decoded_file
;
5313 Widget dialog
, text
, help
;
5316 XmString dir_xmstring
, pattern_xmstring
;
5317 int count
= SPECPDL_INDEX ();
5318 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
, gcpro5
, gcpro6
;
5322 GCPRO6 (prompt
, dir
, default_filename
, mustmatch
, only_dir_p
, file
);
5324 if (popup_activated ())
5325 error ("Trying to use a menu from within a menu-entry");
5327 CHECK_STRING (prompt
);
5330 /* Prevent redisplay. */
5331 specbind (Qinhibit_redisplay
, Qt
);
5335 /* Create the dialog with PROMPT as title, using DIR as initial
5336 directory and using "*" as pattern. */
5337 dir
= Fexpand_file_name (dir
, Qnil
);
5338 dir_xmstring
= XmStringCreateLocalized (SDATA (dir
));
5339 pattern_xmstring
= XmStringCreateLocalized ("*");
5341 XtSetArg (al
[ac
], XmNtitle
, SDATA (prompt
)); ++ac
;
5342 XtSetArg (al
[ac
], XmNdirectory
, dir_xmstring
); ++ac
;
5343 XtSetArg (al
[ac
], XmNpattern
, pattern_xmstring
); ++ac
;
5344 XtSetArg (al
[ac
], XmNresizePolicy
, XmRESIZE_GROW
); ++ac
;
5345 XtSetArg (al
[ac
], XmNdialogStyle
, XmDIALOG_APPLICATION_MODAL
); ++ac
;
5346 dialog
= XmCreateFileSelectionDialog (f
->output_data
.x
->widget
,
5348 XmStringFree (dir_xmstring
);
5349 XmStringFree (pattern_xmstring
);
5351 /* Add callbacks for OK and Cancel. */
5352 XtAddCallback (dialog
, XmNokCallback
, file_dialog_cb
,
5353 (XtPointer
) &result
);
5354 XtAddCallback (dialog
, XmNcancelCallback
, file_dialog_cb
,
5355 (XtPointer
) &result
);
5356 XtAddCallback (dialog
, XmNunmapCallback
, file_dialog_unmap_cb
,
5357 (XtPointer
) &result
);
5359 /* Remove the help button since we can't display help. */
5360 help
= XmFileSelectionBoxGetChild (dialog
, XmDIALOG_HELP_BUTTON
);
5361 XtUnmanageChild (help
);
5363 /* Mark OK button as default. */
5364 XtVaSetValues (XmFileSelectionBoxGetChild (dialog
, XmDIALOG_OK_BUTTON
),
5365 XmNshowAsDefault
, True
, NULL
);
5367 /* If MUSTMATCH is non-nil, disable the file entry field of the
5368 dialog, so that the user must select a file from the files list
5369 box. We can't remove it because we wouldn't have a way to get at
5370 the result file name, then. */
5371 text
= XmFileSelectionBoxGetChild (dialog
, XmDIALOG_TEXT
);
5372 if (!NILP (mustmatch
))
5375 label
= XmFileSelectionBoxGetChild (dialog
, XmDIALOG_SELECTION_LABEL
);
5376 XtSetSensitive (text
, False
);
5377 XtSetSensitive (label
, False
);
5380 /* Manage the dialog, so that list boxes get filled. */
5381 XtManageChild (dialog
);
5383 if (STRINGP (default_filename
))
5385 XmString default_xmstring
;
5386 Widget wtext
= XmFileSelectionBoxGetChild (dialog
, XmDIALOG_TEXT
);
5387 Widget list
= XmFileSelectionBoxGetChild (dialog
, XmDIALOG_LIST
);
5389 XmTextPosition last_pos
= XmTextFieldGetLastPosition (wtext
);
5390 XmTextFieldReplace (wtext
, 0, last_pos
,
5391 (SDATA (Ffile_name_nondirectory (default_filename
))));
5393 /* Select DEFAULT_FILENAME in the files list box. DEFAULT_FILENAME
5394 must include the path for this to work. */
5396 default_xmstring
= XmStringCreateLocalized (SDATA (default_filename
));
5398 if (XmListItemExists (list
, default_xmstring
))
5400 int item_pos
= XmListItemPos (list
, default_xmstring
);
5401 /* Select the item and scroll it into view. */
5402 XmListSelectPos (list
, item_pos
, True
);
5403 XmListSetPos (list
, item_pos
);
5406 XmStringFree (default_xmstring
);
5409 record_unwind_protect (clean_up_file_dialog
, make_save_value (dialog
, 0));
5411 /* Process events until the user presses Cancel or OK. */
5412 x_menu_set_in_use (1);
5417 x_menu_wait_for_event (0);
5418 XtAppNextEvent (Xt_app_con
, &event
);
5419 if (event
.type
== KeyPress
5420 && FRAME_X_DISPLAY (f
) == event
.xkey
.display
)
5422 KeySym keysym
= XLookupKeysym (&event
.xkey
, 0);
5424 /* Pop down on C-g. */
5425 if (keysym
== XK_g
&& (event
.xkey
.state
& ControlMask
) != 0)
5426 XtUnmanageChild (dialog
);
5429 (void) x_dispatch_event (&event
, FRAME_X_DISPLAY (f
));
5432 /* Get the result. */
5433 if (result
== XmCR_OK
)
5438 XtVaGetValues (dialog
, XmNtextString
, &text
, NULL
);
5439 XmStringGetLtoR (text
, XmFONTLIST_DEFAULT_TAG
, &data
);
5440 XmStringFree (text
);
5441 file
= build_string (data
);
5450 /* Make "Cancel" equivalent to C-g. */
5452 Fsignal (Qquit
, Qnil
);
5454 decoded_file
= DECODE_FILE (file
);
5456 return unbind_to (count
, decoded_file
);
5459 #endif /* USE_MOTIF */
5464 clean_up_dialog (Lisp_Object arg
)
5466 x_menu_set_in_use (0);
5471 DEFUN ("x-file-dialog", Fx_file_dialog
, Sx_file_dialog
, 2, 5, 0,
5472 doc
: /* Read file name, prompting with PROMPT in directory DIR.
5473 Use a file selection dialog. Select DEFAULT-FILENAME in the dialog's file
5474 selection box, if specified. If MUSTMATCH is non-nil, the returned file
5475 or directory must exist. If ONLY-DIR-P is non-nil, the user can only select
5477 (Lisp_Object prompt
, Lisp_Object dir
, Lisp_Object default_filename
, Lisp_Object mustmatch
, Lisp_Object only_dir_p
)
5479 FRAME_PTR f
= SELECTED_FRAME ();
5481 Lisp_Object file
= Qnil
;
5482 Lisp_Object decoded_file
;
5483 int count
= SPECPDL_INDEX ();
5484 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
, gcpro5
, gcpro6
;
5489 GCPRO6 (prompt
, dir
, default_filename
, mustmatch
, only_dir_p
, file
);
5491 if (popup_activated ())
5492 error ("Trying to use a menu from within a menu-entry");
5494 CHECK_STRING (prompt
);
5497 /* Prevent redisplay. */
5498 specbind (Qinhibit_redisplay
, Qt
);
5499 record_unwind_protect (clean_up_dialog
, Qnil
);
5503 if (STRINGP (default_filename
))
5504 cdef_file
= SDATA (default_filename
);
5506 cdef_file
= SDATA (dir
);
5508 fn
= xg_get_file_name (f
, SDATA (prompt
), cdef_file
,
5510 ! NILP (only_dir_p
));
5514 file
= build_string (fn
);
5521 /* Make "Cancel" equivalent to C-g. */
5523 Fsignal (Qquit
, Qnil
);
5525 decoded_file
= DECODE_FILE (file
);
5527 return unbind_to (count
, decoded_file
);
5531 #ifdef HAVE_FREETYPE
5533 DEFUN ("x-select-font", Fx_select_font
, Sx_select_font
, 0, 2, 0,
5534 doc
: /* Read a font name using a GTK font selection dialog.
5535 Return a GTK-style font string corresponding to the selection.
5537 If FRAME is omitted or nil, it defaults to the selected frame. */)
5538 (Lisp_Object frame
, Lisp_Object ignored
)
5540 FRAME_PTR f
= check_x_frame (frame
);
5543 Lisp_Object font_param
;
5544 char *default_name
= NULL
;
5545 struct gcpro gcpro1
, gcpro2
;
5546 int count
= SPECPDL_INDEX ();
5550 if (popup_activated ())
5551 error ("Trying to use a menu from within a menu-entry");
5553 /* Prevent redisplay. */
5554 specbind (Qinhibit_redisplay
, Qt
);
5555 record_unwind_protect (clean_up_dialog
, Qnil
);
5559 GCPRO2(font_param
, font
);
5561 XSETFONT (font
, FRAME_FONT (f
));
5562 font_param
= Ffont_get (font
, intern (":name"));
5563 if (STRINGP (font_param
))
5564 default_name
= xstrdup (SDATA (font_param
));
5567 font_param
= Fframe_parameter (frame
, Qfont_param
);
5568 if (STRINGP (font_param
))
5569 default_name
= xstrdup (SDATA (font_param
));
5572 if (default_name
== NULL
&& x_last_font_name
!= NULL
)
5573 default_name
= xstrdup (x_last_font_name
);
5575 /* Convert fontconfig names to Gtk names, i.e. remove - before number */
5578 char *p
= strrchr (default_name
, '-');
5582 while (isdigit (*ep
))
5584 if (*ep
== '\0') *p
= ' ';
5588 name
= xg_get_font_name (f
, default_name
);
5589 xfree (default_name
);
5593 font
= build_string (name
);
5594 g_free (x_last_font_name
);
5595 x_last_font_name
= name
;
5601 Fsignal (Qquit
, Qnil
);
5603 return unbind_to (count
, font
);
5605 #endif /* HAVE_FREETYPE */
5607 #endif /* USE_GTK */
5610 /***********************************************************************
5612 ***********************************************************************/
5614 #ifdef HAVE_XKBGETKEYBOARD
5615 #include <X11/XKBlib.h>
5616 #include <X11/keysym.h>
5619 DEFUN ("x-backspace-delete-keys-p", Fx_backspace_delete_keys_p
,
5620 Sx_backspace_delete_keys_p
, 0, 1, 0,
5621 doc
: /* Check if both Backspace and Delete keys are on the keyboard of FRAME.
5622 FRAME nil means use the selected frame.
5623 Value is t if we know that both keys are present, and are mapped to the
5624 usual X keysyms. Value is `lambda' if we cannot determine if both keys are
5625 present and mapped to the usual X keysyms. */)
5628 #ifdef HAVE_XKBGETKEYBOARD
5630 struct frame
*f
= check_x_frame (frame
);
5631 Display
*dpy
= FRAME_X_DISPLAY (f
);
5632 Lisp_Object have_keys
;
5633 int major
, minor
, op
, event
, error
;
5637 /* Check library version in case we're dynamically linked. */
5638 major
= XkbMajorVersion
;
5639 minor
= XkbMinorVersion
;
5640 if (!XkbLibraryVersion (&major
, &minor
))
5646 /* Check that the server supports XKB. */
5647 major
= XkbMajorVersion
;
5648 minor
= XkbMinorVersion
;
5649 if (!XkbQueryExtension (dpy
, &op
, &event
, &error
, &major
, &minor
))
5655 /* In this code we check that the keyboard has physical keys with names
5656 that start with BKSP (Backspace) and DELE (Delete), and that they
5657 generate keysym XK_BackSpace and XK_Delete respectively.
5658 This function is used to test if normal-erase-is-backspace should be
5660 An alternative approach would be to just check if XK_BackSpace and
5661 XK_Delete are mapped to any key. But if any of those are mapped to
5662 some non-intuitive key combination (Meta-Shift-Ctrl-whatever) and the
5663 user doesn't know about it, it is better to return false here.
5664 It is more obvious to the user what to do if she/he has two keys
5665 clearly marked with names/symbols and one key does something not
5666 expected (i.e. she/he then tries the other).
5667 The cases where Backspace/Delete is mapped to some other key combination
5668 are rare, and in those cases, normal-erase-is-backspace can be turned on
5672 kb
= XkbGetMap (dpy
, XkbAllMapComponentsMask
, XkbUseCoreKbd
);
5675 int delete_keycode
= 0, backspace_keycode
= 0, i
;
5677 if (XkbGetNames (dpy
, XkbAllNamesMask
, kb
) == Success
)
5679 for (i
= kb
->min_key_code
;
5680 (i
< kb
->max_key_code
5681 && (delete_keycode
== 0 || backspace_keycode
== 0));
5684 /* The XKB symbolic key names can be seen most easily in
5685 the PS file generated by `xkbprint -label name
5687 if (memcmp ("DELE", kb
->names
->keys
[i
].name
, 4) == 0)
5689 else if (memcmp ("BKSP", kb
->names
->keys
[i
].name
, 4) == 0)
5690 backspace_keycode
= i
;
5693 XkbFreeNames (kb
, 0, True
);
5696 XkbFreeClientMap (kb
, 0, True
);
5699 && backspace_keycode
5700 && XKeysymToKeycode (dpy
, XK_Delete
) == delete_keycode
5701 && XKeysymToKeycode (dpy
, XK_BackSpace
) == backspace_keycode
)
5706 #else /* not HAVE_XKBGETKEYBOARD */
5708 #endif /* not HAVE_XKBGETKEYBOARD */
5713 /***********************************************************************
5715 ***********************************************************************/
5717 /* Keep this list in the same order as frame_parms in frame.c.
5718 Use 0 for unsupported frame parameters. */
5720 frame_parm_handler x_frame_parm_handlers
[] =
5724 x_set_background_color
,
5730 x_set_foreground_color
,
5733 x_set_internal_border_width
,
5734 x_set_menu_bar_lines
,
5736 x_explicitly_set_name
,
5737 x_set_scroll_bar_width
,
5740 x_set_vertical_scroll_bars
,
5742 x_set_tool_bar_lines
,
5743 x_set_scroll_bar_foreground
,
5744 x_set_scroll_bar_background
,
5759 /* This is zero if not using X windows. */
5762 /* The section below is built by the lisp expression at the top of the file,
5763 just above where these variables are declared. */
5764 /*&&& init symbols here &&&*/
5765 Qnone
= intern_c_string ("none");
5767 Qsuppress_icon
= intern_c_string ("suppress-icon");
5768 staticpro (&Qsuppress_icon
);
5769 Qundefined_color
= intern_c_string ("undefined-color");
5770 staticpro (&Qundefined_color
);
5771 Qcompound_text
= intern_c_string ("compound-text");
5772 staticpro (&Qcompound_text
);
5773 Qcancel_timer
= intern_c_string ("cancel-timer");
5774 staticpro (&Qcancel_timer
);
5775 Qfont_param
= intern_c_string ("font-parameter");
5776 staticpro (&Qfont_param
);
5777 /* This is the end of symbol initialization. */
5779 /* Text property `display' should be nonsticky by default. */
5780 Vtext_property_default_nonsticky
5781 = Fcons (Fcons (Qdisplay
, Qt
), Vtext_property_default_nonsticky
);
5784 Fput (Qundefined_color
, Qerror_conditions
,
5785 pure_cons (Qundefined_color
, pure_cons (Qerror
, Qnil
)));
5786 Fput (Qundefined_color
, Qerror_message
,
5787 make_pure_c_string ("Undefined color"));
5789 DEFVAR_LISP ("x-pointer-shape", &Vx_pointer_shape
,
5790 doc
: /* The shape of the pointer when over text.
5791 Changing the value does not affect existing frames
5792 unless you set the mouse color. */);
5793 Vx_pointer_shape
= Qnil
;
5795 #if 0 /* This doesn't really do anything. */
5796 DEFVAR_LISP ("x-nontext-pointer-shape", &Vx_nontext_pointer_shape
,
5797 doc
: /* The shape of the pointer when not over text.
5798 This variable takes effect when you create a new frame
5799 or when you set the mouse color. */);
5801 Vx_nontext_pointer_shape
= Qnil
;
5803 DEFVAR_LISP ("x-hourglass-pointer-shape", &Vx_hourglass_pointer_shape
,
5804 doc
: /* The shape of the pointer when Emacs is busy.
5805 This variable takes effect when you create a new frame
5806 or when you set the mouse color. */);
5807 Vx_hourglass_pointer_shape
= Qnil
;
5809 #if 0 /* This doesn't really do anything. */
5810 DEFVAR_LISP ("x-mode-pointer-shape", &Vx_mode_pointer_shape
,
5811 doc
: /* The shape of the pointer when over the mode line.
5812 This variable takes effect when you create a new frame
5813 or when you set the mouse color. */);
5815 Vx_mode_pointer_shape
= Qnil
;
5817 DEFVAR_LISP ("x-sensitive-text-pointer-shape",
5818 &Vx_sensitive_text_pointer_shape
,
5819 doc
: /* The shape of the pointer when over mouse-sensitive text.
5820 This variable takes effect when you create a new frame
5821 or when you set the mouse color. */);
5822 Vx_sensitive_text_pointer_shape
= Qnil
;
5824 DEFVAR_LISP ("x-window-horizontal-drag-cursor",
5825 &Vx_window_horizontal_drag_shape
,
5826 doc
: /* Pointer shape to use for indicating a window can be dragged horizontally.
5827 This variable takes effect when you create a new frame
5828 or when you set the mouse color. */);
5829 Vx_window_horizontal_drag_shape
= Qnil
;
5831 DEFVAR_LISP ("x-cursor-fore-pixel", &Vx_cursor_fore_pixel
,
5832 doc
: /* A string indicating the foreground color of the cursor box. */);
5833 Vx_cursor_fore_pixel
= Qnil
;
5835 DEFVAR_LISP ("x-max-tooltip-size", &Vx_max_tooltip_size
,
5836 doc
: /* Maximum size for tooltips. Value is a pair (COLUMNS . ROWS).
5837 Text larger than this is clipped. */);
5838 Vx_max_tooltip_size
= Fcons (make_number (80), make_number (40));
5840 DEFVAR_LISP ("x-no-window-manager", &Vx_no_window_manager
,
5841 doc
: /* Non-nil if no X window manager is in use.
5842 Emacs doesn't try to figure this out; this is always nil
5843 unless you set it to something else. */);
5844 /* We don't have any way to find this out, so set it to nil
5845 and maybe the user would like to set it to t. */
5846 Vx_no_window_manager
= Qnil
;
5848 DEFVAR_LISP ("x-pixel-size-width-font-regexp",
5849 &Vx_pixel_size_width_font_regexp
,
5850 doc
: /* Regexp matching a font name whose width is the same as `PIXEL_SIZE'.
5852 Since Emacs gets width of a font matching with this regexp from
5853 PIXEL_SIZE field of the name, font finding mechanism gets faster for
5854 such a font. This is especially effective for such large fonts as
5855 Chinese, Japanese, and Korean. */);
5856 Vx_pixel_size_width_font_regexp
= Qnil
;
5858 /* This is not ifdef:ed, so other builds than GTK can customize it. */
5859 DEFVAR_BOOL ("x-gtk-use-old-file-dialog", &x_gtk_use_old_file_dialog
,
5860 doc
: /* *Non-nil means prompt with the old GTK file selection dialog.
5861 If nil or if the file selection dialog is not available, the new GTK file
5862 chooser is used instead. To turn off all file dialogs set the
5863 variable `use-file-dialog'. */);
5864 x_gtk_use_old_file_dialog
= 0;
5866 DEFVAR_BOOL ("x-gtk-show-hidden-files", &x_gtk_show_hidden_files
,
5867 doc
: /* *If non-nil, the GTK file chooser will by default show hidden files.
5868 Note that this is just the default, there is a toggle button on the file
5869 chooser to show or not show hidden files on a case by case basis. */);
5870 x_gtk_show_hidden_files
= 0;
5872 DEFVAR_BOOL ("x-gtk-file-dialog-help-text", &x_gtk_file_dialog_help_text
,
5873 doc
: /* *If non-nil, the GTK file chooser will show additional help text.
5874 If more space for files in the file chooser dialog is wanted, set this to nil
5875 to turn the additional text off. */);
5876 x_gtk_file_dialog_help_text
= 1;
5878 DEFVAR_BOOL ("x-gtk-whole-detached-tool-bar", &x_gtk_whole_detached_tool_bar
,
5879 doc
: /* *If non-nil, a detached tool bar is shown in full.
5880 The default is to just show an arrow and pressing on that arrow shows
5881 the tool bar buttons. */);
5882 x_gtk_whole_detached_tool_bar
= 0;
5884 Fprovide (intern_c_string ("x"), Qnil
);
5886 #ifdef USE_X_TOOLKIT
5887 Fprovide (intern_c_string ("x-toolkit"), Qnil
);
5889 Fprovide (intern_c_string ("motif"), Qnil
);
5891 DEFVAR_LISP ("motif-version-string", &Vmotif_version_string
,
5892 doc
: /* Version info for LessTif/Motif. */);
5893 Vmotif_version_string
= build_string (XmVERSION_STRING
);
5894 #endif /* USE_MOTIF */
5895 #endif /* USE_X_TOOLKIT */
5898 /* Provide x-toolkit also for GTK. Internally GTK does not use Xt so it
5899 is not an X toolkit in that sense (USE_X_TOOLKIT is not defined).
5900 But for a user it is a toolkit for X, and indeed, configure
5901 accepts --with-x-toolkit=gtk. */
5902 Fprovide (intern_c_string ("x-toolkit"), Qnil
);
5903 Fprovide (intern_c_string ("gtk"), Qnil
);
5905 DEFVAR_LISP ("gtk-version-string", &Vgtk_version_string
,
5906 doc
: /* Version info for GTK+. */);
5908 char gtk_version
[40];
5909 g_snprintf (gtk_version
, sizeof (gtk_version
), "%u.%u.%u",
5910 GTK_MAJOR_VERSION
, GTK_MINOR_VERSION
, GTK_MICRO_VERSION
);
5911 Vgtk_version_string
= make_pure_string (gtk_version
, strlen (gtk_version
), strlen (gtk_version
), 0);
5913 #endif /* USE_GTK */
5915 /* X window properties. */
5916 defsubr (&Sx_change_window_property
);
5917 defsubr (&Sx_delete_window_property
);
5918 defsubr (&Sx_window_property
);
5920 defsubr (&Sxw_display_color_p
);
5921 defsubr (&Sx_display_grayscale_p
);
5922 defsubr (&Sxw_color_defined_p
);
5923 defsubr (&Sxw_color_values
);
5924 defsubr (&Sx_server_max_request_size
);
5925 defsubr (&Sx_server_vendor
);
5926 defsubr (&Sx_server_version
);
5927 defsubr (&Sx_display_pixel_width
);
5928 defsubr (&Sx_display_pixel_height
);
5929 defsubr (&Sx_display_mm_width
);
5930 defsubr (&Sx_display_mm_height
);
5931 defsubr (&Sx_display_screens
);
5932 defsubr (&Sx_display_planes
);
5933 defsubr (&Sx_display_color_cells
);
5934 defsubr (&Sx_display_visual_class
);
5935 defsubr (&Sx_display_backing_store
);
5936 defsubr (&Sx_display_save_under
);
5937 defsubr (&Sx_wm_set_size_hint
);
5938 defsubr (&Sx_create_frame
);
5939 defsubr (&Sx_open_connection
);
5940 defsubr (&Sx_close_connection
);
5941 defsubr (&Sx_display_list
);
5942 defsubr (&Sx_synchronize
);
5943 defsubr (&Sx_focus_frame
);
5944 defsubr (&Sx_backspace_delete_keys_p
);
5946 /* Setting callback functions for fontset handler. */
5947 check_window_system_func
= check_x
;
5949 defsubr (&Sx_show_tip
);
5950 defsubr (&Sx_hide_tip
);
5952 staticpro (&tip_timer
);
5954 staticpro (&tip_frame
);
5956 last_show_tip_args
= Qnil
;
5957 staticpro (&last_show_tip_args
);
5959 defsubr (&Sx_uses_old_gtk_dialog
);
5960 #if defined (USE_MOTIF) || defined (USE_GTK)
5961 defsubr (&Sx_file_dialog
);
5964 #if defined (USE_GTK) && defined (HAVE_FREETYPE)
5965 defsubr (&Sx_select_font
);
5966 x_last_font_name
= NULL
;
5970 #endif /* HAVE_X_WINDOWS */
5972 /* arch-tag: 55040d02-5485-4d58-8b22-95a7a05f3288
5973 (do not change this comment) */