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 /* If non-zero, use Gtk+ tooltips. */
166 static int x_gtk_use_system_tooltips
;
168 /* The background and shape of the mouse pointer, and shape when not
169 over text or in the modeline. */
171 Lisp_Object Vx_pointer_shape
, Vx_nontext_pointer_shape
, Vx_mode_pointer_shape
;
172 Lisp_Object Vx_hourglass_pointer_shape
;
174 /* The shape when over mouse-sensitive text. */
176 Lisp_Object Vx_sensitive_text_pointer_shape
;
178 /* If non-nil, the pointer shape to indicate that windows can be
179 dragged horizontally. */
181 Lisp_Object Vx_window_horizontal_drag_shape
;
183 /* Color of chars displayed in cursor box. */
185 Lisp_Object Vx_cursor_fore_pixel
;
187 /* Nonzero if using X. */
191 /* Non nil if no window manager is in use. */
193 Lisp_Object Vx_no_window_manager
;
195 /* Regexp matching a font name whose width is the same as `PIXEL_SIZE'. */
197 Lisp_Object Vx_pixel_size_width_font_regexp
;
200 Lisp_Object Qsuppress_icon
;
201 Lisp_Object Qundefined_color
;
202 Lisp_Object Qcompound_text
, Qcancel_timer
;
203 Lisp_Object Qfont_param
;
206 int image_cache_refcount
, dpyinfo_refcount
;
209 #if defined (USE_GTK) && defined (HAVE_FREETYPE)
210 char *x_last_font_name
;
214 /* Error if we are not connected to X. */
220 error ("X windows are not in use or not initialized");
223 /* Nonzero if we can use mouse menus.
224 You should not call this unless HAVE_MENUS is defined. */
232 /* Extract a frame as a FRAME_PTR, defaulting to the selected frame
233 and checking validity for X. */
236 check_x_frame (Lisp_Object frame
)
241 frame
= selected_frame
;
242 CHECK_LIVE_FRAME (frame
);
245 error ("Non-X frame used");
249 /* Let the user specify an X display with a Lisp object.
250 OBJECT may be nil, a frame or a terminal object.
251 nil stands for the selected frame--or, if that is not an X frame,
252 the first X display on the list. */
254 struct x_display_info
*
255 check_x_display_info (Lisp_Object object
)
257 struct x_display_info
*dpyinfo
= NULL
;
261 struct frame
*sf
= XFRAME (selected_frame
);
263 if (FRAME_X_P (sf
) && FRAME_LIVE_P (sf
))
264 dpyinfo
= FRAME_X_DISPLAY_INFO (sf
);
265 else if (x_display_list
!= 0)
266 dpyinfo
= x_display_list
;
268 error ("X windows are not in use or not initialized");
270 else if (TERMINALP (object
))
272 struct terminal
*t
= get_terminal (object
, 1);
274 if (t
->type
!= output_x_window
)
275 error ("Terminal %d is not an X display", XINT (object
));
277 dpyinfo
= t
->display_info
.x
;
279 else if (STRINGP (object
))
280 dpyinfo
= x_display_info_for_name (object
);
283 FRAME_PTR f
= check_x_frame (object
);
284 dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
291 /* Return the Emacs frame-object corresponding to an X window.
292 It could be the frame's main window or an icon window. */
294 /* This function can be called during GC, so use GC_xxx type test macros. */
297 x_window_to_frame (struct x_display_info
*dpyinfo
, int wdesc
)
299 Lisp_Object tail
, frame
;
302 if (wdesc
== None
) return 0;
304 for (tail
= Vframe_list
; CONSP (tail
); tail
= XCDR (tail
))
310 if (!FRAME_X_P (f
) || FRAME_X_DISPLAY_INFO (f
) != dpyinfo
)
312 if (f
->output_data
.x
->hourglass_window
== wdesc
)
315 if ((f
->output_data
.x
->edit_widget
316 && XtWindow (f
->output_data
.x
->edit_widget
) == wdesc
)
317 /* A tooltip frame? */
318 || (!f
->output_data
.x
->edit_widget
319 && FRAME_X_WINDOW (f
) == wdesc
)
320 || f
->output_data
.x
->icon_desc
== wdesc
)
322 #else /* not USE_X_TOOLKIT */
324 if (f
->output_data
.x
->edit_widget
)
326 GtkWidget
*gwdesc
= xg_win_to_widget (dpyinfo
->display
, wdesc
);
327 struct x_output
*x
= f
->output_data
.x
;
328 if (gwdesc
!= 0 && gwdesc
== x
->edit_widget
)
332 if (FRAME_X_WINDOW (f
) == wdesc
333 || f
->output_data
.x
->icon_desc
== wdesc
)
335 #endif /* not USE_X_TOOLKIT */
340 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
341 /* Like x_window_to_frame but also compares the window with the widget's
345 x_any_window_to_frame (struct x_display_info
*dpyinfo
, int wdesc
)
347 Lisp_Object tail
, frame
;
348 struct frame
*f
, *found
;
351 if (wdesc
== None
) return NULL
;
354 for (tail
= Vframe_list
; CONSP (tail
) && !found
; tail
= XCDR (tail
))
361 if (FRAME_X_P (f
) && FRAME_X_DISPLAY_INFO (f
) == dpyinfo
)
363 /* This frame matches if the window is any of its widgets. */
364 x
= f
->output_data
.x
;
365 if (x
->hourglass_window
== wdesc
)
370 GtkWidget
*gwdesc
= xg_win_to_widget (dpyinfo
->display
, wdesc
);
372 && gtk_widget_get_toplevel (gwdesc
) == x
->widget
)
375 if (wdesc
== XtWindow (x
->widget
)
376 || wdesc
== XtWindow (x
->column_widget
)
377 || wdesc
== XtWindow (x
->edit_widget
))
379 /* Match if the window is this frame's menubar. */
380 else if (lw_window_is_in_menubar (wdesc
, x
->menubar_widget
))
384 else if (FRAME_X_WINDOW (f
) == wdesc
)
385 /* A tooltip frame. */
393 /* Likewise, but consider only the menu bar widget. */
396 x_menubar_window_to_frame (struct x_display_info
*dpyinfo
, XEvent
*event
)
398 Window wdesc
= event
->xany
.window
;
399 Lisp_Object tail
, frame
;
403 if (wdesc
== None
) return 0;
405 for (tail
= Vframe_list
; CONSP (tail
); tail
= XCDR (tail
))
411 if (!FRAME_X_P (f
) || FRAME_X_DISPLAY_INFO (f
) != dpyinfo
)
413 x
= f
->output_data
.x
;
415 if (x
->menubar_widget
&& xg_event_is_for_menubar (f
, event
))
418 /* Match if the window is this frame's menubar. */
419 if (x
->menubar_widget
420 && lw_window_is_in_menubar (wdesc
, x
->menubar_widget
))
427 /* Return the frame whose principal (outermost) window is WDESC.
428 If WDESC is some other (smaller) window, we return 0. */
431 x_top_window_to_frame (struct x_display_info
*dpyinfo
, int wdesc
)
433 Lisp_Object tail
, frame
;
437 if (wdesc
== None
) return 0;
439 for (tail
= Vframe_list
; CONSP (tail
); tail
= XCDR (tail
))
445 if (!FRAME_X_P (f
) || FRAME_X_DISPLAY_INFO (f
) != dpyinfo
)
447 x
= f
->output_data
.x
;
451 /* This frame matches if the window is its topmost widget. */
453 GtkWidget
*gwdesc
= xg_win_to_widget (dpyinfo
->display
, wdesc
);
454 if (gwdesc
== x
->widget
)
457 if (wdesc
== XtWindow (x
->widget
))
459 #if 0 /* I don't know why it did this,
460 but it seems logically wrong,
461 and it causes trouble for MapNotify events. */
462 /* Match if the window is this frame's menubar. */
463 if (x
->menubar_widget
464 && wdesc
== XtWindow (x
->menubar_widget
))
469 else if (FRAME_X_WINDOW (f
) == wdesc
)
475 #endif /* USE_X_TOOLKIT || USE_GTK */
479 static void x_default_font_parameter (struct frame
*, Lisp_Object
);
481 static Lisp_Object
unwind_create_frame (Lisp_Object
);
482 static Lisp_Object
unwind_create_tip_frame (Lisp_Object
);
484 void x_set_foreground_color (struct frame
*, Lisp_Object
, Lisp_Object
);
485 static void x_set_wait_for_wm (struct frame
*, Lisp_Object
, Lisp_Object
);
486 void x_set_background_color (struct frame
*, Lisp_Object
, Lisp_Object
);
487 void x_set_mouse_color (struct frame
*, Lisp_Object
, Lisp_Object
);
488 void x_set_cursor_color (struct frame
*, Lisp_Object
, Lisp_Object
);
489 void x_set_border_color (struct frame
*, Lisp_Object
, Lisp_Object
);
490 void x_set_cursor_type (struct frame
*, Lisp_Object
, Lisp_Object
);
491 void x_set_icon_type (struct frame
*, Lisp_Object
, Lisp_Object
);
492 void x_set_icon_name (struct frame
*, Lisp_Object
, Lisp_Object
);
493 void x_explicitly_set_name (struct frame
*, Lisp_Object
, Lisp_Object
);
494 void x_set_menu_bar_lines (struct frame
*, Lisp_Object
, Lisp_Object
);
495 void x_set_title (struct frame
*, Lisp_Object
, Lisp_Object
);
496 void x_set_tool_bar_lines (struct frame
*, Lisp_Object
, Lisp_Object
);
497 void x_set_scroll_bar_foreground (struct frame
*, Lisp_Object
,
499 void x_set_scroll_bar_background (struct frame
*, Lisp_Object
,
501 static Lisp_Object
x_default_scroll_bar_color_parameter (struct frame
*,
504 const char *, const char *,
508 /* Store the screen positions of frame F into XPTR and YPTR.
509 These are the positions of the containing window manager window,
510 not Emacs's own window. */
513 x_real_positions (FRAME_PTR f
, int *xptr
, int *yptr
)
515 int win_x
, win_y
, outer_x
, outer_y
;
516 int real_x
= 0, real_y
= 0;
518 Window win
= f
->output_data
.x
->parent_desc
;
522 x_catch_errors (FRAME_X_DISPLAY (f
));
524 if (win
== FRAME_X_DISPLAY_INFO (f
)->root_window
)
525 win
= FRAME_OUTER_WINDOW (f
);
527 /* This loop traverses up the containment tree until we hit the root
528 window. Window managers may intersect many windows between our window
529 and the root window. The window we find just before the root window
530 should be the outer WM window. */
533 Window wm_window
, rootw
;
534 Window
*tmp_children
;
535 unsigned int tmp_nchildren
;
538 success
= XQueryTree (FRAME_X_DISPLAY (f
), win
, &rootw
,
539 &wm_window
, &tmp_children
, &tmp_nchildren
);
541 had_errors
= x_had_errors_p (FRAME_X_DISPLAY (f
));
543 /* Don't free tmp_children if XQueryTree failed. */
547 XFree ((char *) tmp_children
);
549 if (wm_window
== rootw
|| had_errors
)
560 /* Get the real coordinates for the WM window upper left corner */
561 XGetGeometry (FRAME_X_DISPLAY (f
), win
,
562 &rootw
, &real_x
, &real_y
, &ign
, &ign
, &ign
, &ign
);
564 /* Translate real coordinates to coordinates relative to our
565 window. For our window, the upper left corner is 0, 0.
566 Since the upper left corner of the WM window is outside
567 our window, win_x and win_y will be negative:
569 ------------------ ---> x
571 | ----------------- v y
574 XTranslateCoordinates (FRAME_X_DISPLAY (f
),
576 /* From-window, to-window. */
577 FRAME_X_DISPLAY_INFO (f
)->root_window
,
580 /* From-position, to-position. */
581 real_x
, real_y
, &win_x
, &win_y
,
586 if (FRAME_X_WINDOW (f
) == FRAME_OUTER_WINDOW (f
))
593 XTranslateCoordinates (FRAME_X_DISPLAY (f
),
595 /* From-window, to-window. */
596 FRAME_X_DISPLAY_INFO (f
)->root_window
,
597 FRAME_OUTER_WINDOW (f
),
599 /* From-position, to-position. */
600 real_x
, real_y
, &outer_x
, &outer_y
,
606 had_errors
= x_had_errors_p (FRAME_X_DISPLAY (f
));
613 if (had_errors
) return;
615 f
->x_pixels_diff
= -win_x
;
616 f
->y_pixels_diff
= -win_y
;
618 FRAME_X_OUTPUT (f
)->x_pixels_outer_diff
= -outer_x
;
619 FRAME_X_OUTPUT (f
)->y_pixels_outer_diff
= -outer_y
;
628 /* Gamma-correct COLOR on frame F. */
631 gamma_correct (struct frame
*f
, XColor
*color
)
635 color
->red
= pow (color
->red
/ 65535.0, f
->gamma
) * 65535.0 + 0.5;
636 color
->green
= pow (color
->green
/ 65535.0, f
->gamma
) * 65535.0 + 0.5;
637 color
->blue
= pow (color
->blue
/ 65535.0, f
->gamma
) * 65535.0 + 0.5;
642 /* Decide if color named COLOR_NAME is valid for use on frame F. If
643 so, return the RGB values in COLOR. If ALLOC_P is non-zero,
644 allocate the color. Value is zero if COLOR_NAME is invalid, or
645 no color could be allocated. */
648 x_defined_color (struct frame
*f
, const char *color_name
,
649 XColor
*color
, int alloc_p
)
652 Display
*dpy
= FRAME_X_DISPLAY (f
);
653 Colormap cmap
= FRAME_X_COLORMAP (f
);
657 success_p
= xg_check_special_colors (f
, color_name
, color
);
660 success_p
= XParseColor (dpy
, cmap
, color_name
, color
);
661 if (success_p
&& alloc_p
)
662 success_p
= x_alloc_nearest_color (f
, cmap
, color
);
669 /* Return the pixel color value for color COLOR_NAME on frame F. If F
670 is a monochrome frame, return MONO_COLOR regardless of what ARG says.
671 Signal an error if color can't be allocated. */
674 x_decode_color (FRAME_PTR f
, Lisp_Object color_name
, int mono_color
)
678 CHECK_STRING (color_name
);
680 #if 0 /* Don't do this. It's wrong when we're not using the default
681 colormap, it makes freeing difficult, and it's probably not
682 an important optimization. */
683 if (strcmp (SDATA (color_name
), "black") == 0)
684 return BLACK_PIX_DEFAULT (f
);
685 else if (strcmp (SDATA (color_name
), "white") == 0)
686 return WHITE_PIX_DEFAULT (f
);
689 /* Return MONO_COLOR for monochrome frames. */
690 if (FRAME_X_DISPLAY_INFO (f
)->n_planes
== 1)
693 /* x_defined_color is responsible for coping with failures
694 by looking for a near-miss. */
695 if (x_defined_color (f
, SDATA (color_name
), &cdef
, 1))
698 signal_error ("Undefined color", color_name
);
703 /* Change the `wait-for-wm' frame parameter of frame F. OLD_VALUE is
704 the previous value of that parameter, NEW_VALUE is the new value.
705 See also the comment of wait_for_wm in struct x_output. */
708 x_set_wait_for_wm (struct frame
*f
, Lisp_Object new_value
, Lisp_Object old_value
)
710 f
->output_data
.x
->wait_for_wm
= !NILP (new_value
);
714 x_set_tool_bar_position (struct frame
*f
,
715 Lisp_Object new_value
,
716 Lisp_Object old_value
)
718 if (! EQ (new_value
, Qleft
) && ! EQ (new_value
, Qright
)
719 && ! EQ (new_value
, Qbottom
) && ! EQ (new_value
, Qtop
))
721 if (EQ (new_value
, old_value
)) return;
724 if (xg_change_toolbar_position (f
, new_value
))
725 f
->tool_bar_position
= new_value
;
731 /* Set icon from FILE for frame F. By using GTK functions the icon
732 may be any format that GdkPixbuf knows about, i.e. not just bitmaps. */
735 xg_set_icon (FRAME_PTR f
, Lisp_Object file
)
740 found
= x_find_image_file (file
);
746 char *filename
= (char *) SDATA (found
);
749 pixbuf
= gdk_pixbuf_new_from_file (filename
, &err
);
753 gtk_window_set_icon (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)),
755 g_object_unref (pixbuf
);
769 xg_set_icon_from_xpm_data (FRAME_PTR f
, const char **data
)
772 GdkPixbuf
*pixbuf
= gdk_pixbuf_new_from_xpm_data (data
);
777 gtk_window_set_icon (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)), pixbuf
);
778 g_object_unref (pixbuf
);
784 /* Functions called only from `x_set_frame_param'
785 to set individual parameters.
787 If FRAME_X_WINDOW (f) is 0,
788 the frame is being created and its X-window does not exist yet.
789 In that case, just record the parameter's new value
790 in the standard place; do not attempt to change the window. */
793 x_set_foreground_color (struct frame
*f
, Lisp_Object arg
, Lisp_Object oldval
)
795 struct x_output
*x
= f
->output_data
.x
;
796 unsigned long fg
, old_fg
;
798 fg
= x_decode_color (f
, arg
, BLACK_PIX_DEFAULT (f
));
799 old_fg
= FRAME_FOREGROUND_PIXEL (f
);
800 FRAME_FOREGROUND_PIXEL (f
) = fg
;
802 if (FRAME_X_WINDOW (f
) != 0)
804 Display
*dpy
= FRAME_X_DISPLAY (f
);
807 XSetForeground (dpy
, x
->normal_gc
, fg
);
808 XSetBackground (dpy
, x
->reverse_gc
, fg
);
810 if (x
->cursor_pixel
== old_fg
)
812 unload_color (f
, x
->cursor_pixel
);
813 x
->cursor_pixel
= x_copy_color (f
, fg
);
814 XSetBackground (dpy
, x
->cursor_gc
, x
->cursor_pixel
);
819 update_face_from_frame_parameter (f
, Qforeground_color
, arg
);
821 if (FRAME_VISIBLE_P (f
))
825 unload_color (f
, old_fg
);
829 x_set_background_color (struct frame
*f
, Lisp_Object arg
, Lisp_Object oldval
)
831 struct x_output
*x
= f
->output_data
.x
;
834 bg
= x_decode_color (f
, arg
, WHITE_PIX_DEFAULT (f
));
835 unload_color (f
, FRAME_BACKGROUND_PIXEL (f
));
836 FRAME_BACKGROUND_PIXEL (f
) = bg
;
838 if (FRAME_X_WINDOW (f
) != 0)
840 Display
*dpy
= FRAME_X_DISPLAY (f
);
843 XSetBackground (dpy
, x
->normal_gc
, bg
);
844 XSetForeground (dpy
, x
->reverse_gc
, bg
);
845 XSetWindowBackground (dpy
, FRAME_X_WINDOW (f
), bg
);
846 XSetForeground (dpy
, x
->cursor_gc
, bg
);
849 xg_set_background_color (f
, bg
);
852 #ifndef USE_TOOLKIT_SCROLL_BARS /* Turns out to be annoying with
853 toolkit scroll bars. */
856 for (bar
= FRAME_SCROLL_BARS (f
);
858 bar
= XSCROLL_BAR (bar
)->next
)
860 Window window
= XSCROLL_BAR (bar
)->x_window
;
861 XSetWindowBackground (dpy
, window
, bg
);
864 #endif /* USE_TOOLKIT_SCROLL_BARS */
867 update_face_from_frame_parameter (f
, Qbackground_color
, arg
);
869 if (FRAME_VISIBLE_P (f
))
875 make_invisible_cursor (struct frame
*f
)
877 Display
*dpy
= FRAME_X_DISPLAY (f
);
878 static char const no_data
[] = { 0 };
883 x_catch_errors (dpy
);
884 pix
= XCreateBitmapFromData (dpy
, FRAME_X_DISPLAY_INFO (f
)->root_window
,
886 if (! x_had_errors_p (dpy
) && pix
!= None
)
889 col
.red
= col
.green
= col
.blue
= 0;
890 col
.flags
= DoRed
| DoGreen
| DoBlue
;
891 c
= XCreatePixmapCursor (dpy
, pix
, pix
, &col
, &col
, 0, 0);
892 if (x_had_errors_p (dpy
) || c
== None
)
894 XFreePixmap (dpy
, pix
);
903 x_set_mouse_color (struct frame
*f
, Lisp_Object arg
, Lisp_Object oldval
)
905 struct x_output
*x
= f
->output_data
.x
;
906 Display
*dpy
= FRAME_X_DISPLAY (f
);
907 Cursor cursor
, nontext_cursor
, mode_cursor
, hand_cursor
;
908 Cursor hourglass_cursor
, horizontal_drag_cursor
;
909 unsigned long pixel
= x_decode_color (f
, arg
, BLACK_PIX_DEFAULT (f
));
910 unsigned long mask_color
= FRAME_BACKGROUND_PIXEL (f
);
912 /* Don't let pointers be invisible. */
913 if (mask_color
== pixel
)
915 x_free_colors (f
, &pixel
, 1);
916 pixel
= x_copy_color (f
, FRAME_FOREGROUND_PIXEL (f
));
919 unload_color (f
, x
->mouse_pixel
);
920 x
->mouse_pixel
= pixel
;
924 /* It's not okay to crash if the user selects a screwy cursor. */
925 x_catch_errors (dpy
);
927 if (!NILP (Vx_pointer_shape
))
929 CHECK_NUMBER (Vx_pointer_shape
);
930 cursor
= XCreateFontCursor (dpy
, XINT (Vx_pointer_shape
));
933 cursor
= XCreateFontCursor (dpy
, XC_xterm
);
934 x_check_errors (dpy
, "bad text pointer cursor: %s");
936 if (!NILP (Vx_nontext_pointer_shape
))
938 CHECK_NUMBER (Vx_nontext_pointer_shape
);
940 = XCreateFontCursor (dpy
, XINT (Vx_nontext_pointer_shape
));
943 nontext_cursor
= XCreateFontCursor (dpy
, XC_left_ptr
);
944 x_check_errors (dpy
, "bad nontext pointer cursor: %s");
946 if (!NILP (Vx_hourglass_pointer_shape
))
948 CHECK_NUMBER (Vx_hourglass_pointer_shape
);
950 = XCreateFontCursor (dpy
, XINT (Vx_hourglass_pointer_shape
));
953 hourglass_cursor
= XCreateFontCursor (dpy
, XC_watch
);
954 x_check_errors (dpy
, "bad hourglass pointer cursor: %s");
956 if (!NILP (Vx_mode_pointer_shape
))
958 CHECK_NUMBER (Vx_mode_pointer_shape
);
959 mode_cursor
= XCreateFontCursor (dpy
, XINT (Vx_mode_pointer_shape
));
962 mode_cursor
= XCreateFontCursor (dpy
, XC_xterm
);
963 x_check_errors (dpy
, "bad modeline pointer cursor: %s");
965 if (!NILP (Vx_sensitive_text_pointer_shape
))
967 CHECK_NUMBER (Vx_sensitive_text_pointer_shape
);
969 = XCreateFontCursor (dpy
, XINT (Vx_sensitive_text_pointer_shape
));
972 hand_cursor
= XCreateFontCursor (dpy
, XC_hand2
);
974 if (!NILP (Vx_window_horizontal_drag_shape
))
976 CHECK_NUMBER (Vx_window_horizontal_drag_shape
);
977 horizontal_drag_cursor
978 = XCreateFontCursor (dpy
, XINT (Vx_window_horizontal_drag_shape
));
981 horizontal_drag_cursor
982 = XCreateFontCursor (dpy
, XC_sb_h_double_arrow
);
984 /* Check and report errors with the above calls. */
985 x_check_errors (dpy
, "can't set cursor shape: %s");
989 XColor fore_color
, back_color
;
991 fore_color
.pixel
= x
->mouse_pixel
;
992 x_query_color (f
, &fore_color
);
993 back_color
.pixel
= mask_color
;
994 x_query_color (f
, &back_color
);
996 XRecolorCursor (dpy
, cursor
, &fore_color
, &back_color
);
997 XRecolorCursor (dpy
, nontext_cursor
, &fore_color
, &back_color
);
998 XRecolorCursor (dpy
, mode_cursor
, &fore_color
, &back_color
);
999 XRecolorCursor (dpy
, hand_cursor
, &fore_color
, &back_color
);
1000 XRecolorCursor (dpy
, hourglass_cursor
, &fore_color
, &back_color
);
1001 XRecolorCursor (dpy
, horizontal_drag_cursor
, &fore_color
, &back_color
);
1004 if (FRAME_X_WINDOW (f
) != 0)
1005 XDefineCursor (dpy
, FRAME_X_WINDOW (f
),
1006 f
->output_data
.x
->current_cursor
= cursor
);
1008 if (FRAME_X_DISPLAY_INFO (f
)->invisible_cursor
== 0)
1009 FRAME_X_DISPLAY_INFO (f
)->invisible_cursor
= make_invisible_cursor (f
);
1011 if (cursor
!= x
->text_cursor
1012 && x
->text_cursor
!= 0)
1013 XFreeCursor (dpy
, x
->text_cursor
);
1014 x
->text_cursor
= cursor
;
1016 if (nontext_cursor
!= x
->nontext_cursor
1017 && x
->nontext_cursor
!= 0)
1018 XFreeCursor (dpy
, x
->nontext_cursor
);
1019 x
->nontext_cursor
= nontext_cursor
;
1021 if (hourglass_cursor
!= x
->hourglass_cursor
1022 && x
->hourglass_cursor
!= 0)
1023 XFreeCursor (dpy
, x
->hourglass_cursor
);
1024 x
->hourglass_cursor
= hourglass_cursor
;
1026 if (mode_cursor
!= x
->modeline_cursor
1027 && x
->modeline_cursor
!= 0)
1028 XFreeCursor (dpy
, f
->output_data
.x
->modeline_cursor
);
1029 x
->modeline_cursor
= mode_cursor
;
1031 if (hand_cursor
!= x
->hand_cursor
1032 && x
->hand_cursor
!= 0)
1033 XFreeCursor (dpy
, x
->hand_cursor
);
1034 x
->hand_cursor
= hand_cursor
;
1036 if (horizontal_drag_cursor
!= x
->horizontal_drag_cursor
1037 && x
->horizontal_drag_cursor
!= 0)
1038 XFreeCursor (dpy
, x
->horizontal_drag_cursor
);
1039 x
->horizontal_drag_cursor
= horizontal_drag_cursor
;
1044 update_face_from_frame_parameter (f
, Qmouse_color
, arg
);
1048 x_set_cursor_color (struct frame
*f
, Lisp_Object arg
, Lisp_Object oldval
)
1050 unsigned long fore_pixel
, pixel
;
1051 int fore_pixel_allocated_p
= 0, pixel_allocated_p
= 0;
1052 struct x_output
*x
= f
->output_data
.x
;
1054 if (!NILP (Vx_cursor_fore_pixel
))
1056 fore_pixel
= x_decode_color (f
, Vx_cursor_fore_pixel
,
1057 WHITE_PIX_DEFAULT (f
));
1058 fore_pixel_allocated_p
= 1;
1061 fore_pixel
= FRAME_BACKGROUND_PIXEL (f
);
1063 pixel
= x_decode_color (f
, arg
, BLACK_PIX_DEFAULT (f
));
1064 pixel_allocated_p
= 1;
1066 /* Make sure that the cursor color differs from the background color. */
1067 if (pixel
== FRAME_BACKGROUND_PIXEL (f
))
1069 if (pixel_allocated_p
)
1071 x_free_colors (f
, &pixel
, 1);
1072 pixel_allocated_p
= 0;
1075 pixel
= x
->mouse_pixel
;
1076 if (pixel
== fore_pixel
)
1078 if (fore_pixel_allocated_p
)
1080 x_free_colors (f
, &fore_pixel
, 1);
1081 fore_pixel_allocated_p
= 0;
1083 fore_pixel
= FRAME_BACKGROUND_PIXEL (f
);
1087 unload_color (f
, x
->cursor_foreground_pixel
);
1088 if (!fore_pixel_allocated_p
)
1089 fore_pixel
= x_copy_color (f
, fore_pixel
);
1090 x
->cursor_foreground_pixel
= fore_pixel
;
1092 unload_color (f
, x
->cursor_pixel
);
1093 if (!pixel_allocated_p
)
1094 pixel
= x_copy_color (f
, pixel
);
1095 x
->cursor_pixel
= pixel
;
1097 if (FRAME_X_WINDOW (f
) != 0)
1100 XSetBackground (FRAME_X_DISPLAY (f
), x
->cursor_gc
, x
->cursor_pixel
);
1101 XSetForeground (FRAME_X_DISPLAY (f
), x
->cursor_gc
, fore_pixel
);
1104 if (FRAME_VISIBLE_P (f
))
1106 x_update_cursor (f
, 0);
1107 x_update_cursor (f
, 1);
1111 update_face_from_frame_parameter (f
, Qcursor_color
, arg
);
1114 /* Set the border-color of frame F to pixel value PIX.
1115 Note that this does not fully take effect if done before
1116 F has an x-window. */
1119 x_set_border_pixel (struct frame
*f
, int pix
)
1121 unload_color (f
, f
->output_data
.x
->border_pixel
);
1122 f
->output_data
.x
->border_pixel
= pix
;
1124 if (FRAME_X_WINDOW (f
) != 0 && f
->border_width
> 0)
1127 XSetWindowBorder (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
1128 (unsigned long)pix
);
1131 if (FRAME_VISIBLE_P (f
))
1136 /* Set the border-color of frame F to value described by ARG.
1137 ARG can be a string naming a color.
1138 The border-color is used for the border that is drawn by the X server.
1139 Note that this does not fully take effect if done before
1140 F has an x-window; it must be redone when the window is created.
1142 Note: this is done in two routines because of the way X10 works.
1144 Note: under X11, this is normally the province of the window manager,
1145 and so emacs' border colors may be overridden. */
1148 x_set_border_color (struct frame
*f
, Lisp_Object arg
, Lisp_Object oldval
)
1153 pix
= x_decode_color (f
, arg
, BLACK_PIX_DEFAULT (f
));
1154 x_set_border_pixel (f
, pix
);
1155 update_face_from_frame_parameter (f
, Qborder_color
, arg
);
1160 x_set_cursor_type (FRAME_PTR f
, Lisp_Object arg
, Lisp_Object oldval
)
1162 set_frame_cursor_types (f
, arg
);
1164 /* Make sure the cursor gets redrawn. */
1165 cursor_type_changed
= 1;
1169 x_set_icon_type (struct frame
*f
, Lisp_Object arg
, Lisp_Object oldval
)
1175 if (STRINGP (oldval
) && EQ (Fstring_equal (oldval
, arg
), Qt
))
1178 else if (!STRINGP (oldval
) && EQ (oldval
, Qnil
) == EQ (arg
, Qnil
))
1183 result
= x_text_icon (f
,
1184 (char *) SDATA ((!NILP (f
->icon_name
)
1188 result
= x_bitmap_icon (f
, arg
);
1193 error ("No icon window available");
1196 XFlush (FRAME_X_DISPLAY (f
));
1201 x_set_icon_name (struct frame
*f
, Lisp_Object arg
, Lisp_Object oldval
)
1207 if (STRINGP (oldval
) && EQ (Fstring_equal (oldval
, arg
), Qt
))
1210 else if (!NILP (arg
) || NILP (oldval
))
1215 if (f
->output_data
.x
->icon_bitmap
!= 0)
1220 result
= x_text_icon (f
,
1221 (char *) SDATA ((!NILP (f
->icon_name
)
1230 error ("No icon window available");
1233 XFlush (FRAME_X_DISPLAY (f
));
1239 x_set_menu_bar_lines (struct frame
*f
, Lisp_Object value
, Lisp_Object oldval
)
1242 #if ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK)
1243 int olines
= FRAME_MENU_BAR_LINES (f
);
1246 /* Right now, menu bars don't work properly in minibuf-only frames;
1247 most of the commands try to apply themselves to the minibuffer
1248 frame itself, and get an error because you can't switch buffers
1249 in or split the minibuffer window. */
1250 if (FRAME_MINIBUF_ONLY_P (f
))
1253 if (INTEGERP (value
))
1254 nlines
= XINT (value
);
1258 /* Make sure we redisplay all windows in this frame. */
1259 windows_or_buffers_changed
++;
1261 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
1262 FRAME_MENU_BAR_LINES (f
) = 0;
1265 FRAME_EXTERNAL_MENU_BAR (f
) = 1;
1266 if (FRAME_X_P (f
) && f
->output_data
.x
->menubar_widget
== 0)
1267 /* Make sure next redisplay shows the menu bar. */
1268 XWINDOW (FRAME_SELECTED_WINDOW (f
))->update_mode_line
= Qt
;
1272 if (FRAME_EXTERNAL_MENU_BAR (f
) == 1)
1273 free_frame_menubar (f
);
1274 FRAME_EXTERNAL_MENU_BAR (f
) = 0;
1276 f
->output_data
.x
->menubar_widget
= 0;
1278 #else /* not USE_X_TOOLKIT && not USE_GTK */
1279 FRAME_MENU_BAR_LINES (f
) = nlines
;
1280 change_window_heights (f
->root_window
, nlines
- olines
);
1282 /* If the menu bar height gets changed, the internal border below
1283 the top margin has to be cleared. Also, if the menu bar gets
1284 larger, the area for the added lines has to be cleared except for
1285 the first menu bar line that is to be drawn later. */
1286 if (nlines
!= olines
)
1288 int height
= FRAME_INTERNAL_BORDER_WIDTH (f
);
1289 int width
= FRAME_PIXEL_WIDTH (f
);
1292 /* height can be zero here. */
1293 if (height
> 0 && width
> 0)
1295 y
= FRAME_TOP_MARGIN_HEIGHT (f
);
1298 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
1299 0, y
, width
, height
, False
);
1303 if (nlines
> 1 && nlines
> olines
)
1305 y
= (olines
== 0 ? 1 : olines
) * FRAME_LINE_HEIGHT (f
);
1306 height
= nlines
* FRAME_LINE_HEIGHT (f
) - y
;
1309 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
1310 0, y
, width
, height
, False
);
1314 if (nlines
== 0 && WINDOWP (f
->menu_bar_window
))
1315 clear_glyph_matrix (XWINDOW (f
->menu_bar_window
)->current_matrix
);
1317 #endif /* not USE_X_TOOLKIT && not USE_GTK */
1322 /* Set the number of lines used for the tool bar of frame F to VALUE.
1323 VALUE not an integer, or < 0 means set the lines to zero. OLDVAL
1324 is the old number of tool bar lines. This function changes the
1325 height of all windows on frame F to match the new tool bar height.
1326 The frame's height doesn't change. */
1329 x_set_tool_bar_lines (struct frame
*f
, Lisp_Object value
, Lisp_Object oldval
)
1331 int delta
, nlines
, root_height
;
1332 Lisp_Object root_window
;
1334 /* Treat tool bars like menu bars. */
1335 if (FRAME_MINIBUF_ONLY_P (f
))
1338 /* Use VALUE only if an integer >= 0. */
1339 if (INTEGERP (value
) && XINT (value
) >= 0)
1340 nlines
= XFASTINT (value
);
1345 FRAME_TOOL_BAR_LINES (f
) = 0;
1348 FRAME_EXTERNAL_TOOL_BAR (f
) = 1;
1349 if (FRAME_X_P (f
) && f
->output_data
.x
->toolbar_widget
== 0)
1350 /* Make sure next redisplay shows the tool bar. */
1351 XWINDOW (FRAME_SELECTED_WINDOW (f
))->update_mode_line
= Qt
;
1352 update_frame_tool_bar (f
);
1356 if (FRAME_EXTERNAL_TOOL_BAR (f
))
1357 free_frame_tool_bar (f
);
1358 FRAME_EXTERNAL_TOOL_BAR (f
) = 0;
1364 /* Make sure we redisplay all windows in this frame. */
1365 ++windows_or_buffers_changed
;
1367 delta
= nlines
- FRAME_TOOL_BAR_LINES (f
);
1369 /* Don't resize the tool-bar to more than we have room for. */
1370 root_window
= FRAME_ROOT_WINDOW (f
);
1371 root_height
= WINDOW_TOTAL_LINES (XWINDOW (root_window
));
1372 if (root_height
- delta
< 1)
1374 delta
= root_height
- 1;
1375 nlines
= FRAME_TOOL_BAR_LINES (f
) + delta
;
1378 FRAME_TOOL_BAR_LINES (f
) = nlines
;
1379 change_window_heights (root_window
, delta
);
1382 /* We also have to make sure that the internal border at the top of
1383 the frame, below the menu bar or tool bar, is redrawn when the
1384 tool bar disappears. This is so because the internal border is
1385 below the tool bar if one is displayed, but is below the menu bar
1386 if there isn't a tool bar. The tool bar draws into the area
1387 below the menu bar. */
1388 if (FRAME_X_WINDOW (f
) && FRAME_TOOL_BAR_LINES (f
) == 0)
1391 clear_current_matrices (f
);
1394 /* If the tool bar gets smaller, the internal border below it
1395 has to be cleared. It was formerly part of the display
1396 of the larger tool bar, and updating windows won't clear it. */
1399 int height
= FRAME_INTERNAL_BORDER_WIDTH (f
);
1400 int width
= FRAME_PIXEL_WIDTH (f
);
1401 int y
= (FRAME_MENU_BAR_LINES (f
) + nlines
) * FRAME_LINE_HEIGHT (f
);
1403 /* height can be zero here. */
1404 if (height
> 0 && width
> 0)
1407 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
1408 0, y
, width
, height
, False
);
1412 if (WINDOWP (f
->tool_bar_window
))
1413 clear_glyph_matrix (XWINDOW (f
->tool_bar_window
)->current_matrix
);
1418 /* Set the foreground color for scroll bars on frame F to VALUE.
1419 VALUE should be a string, a color name. If it isn't a string or
1420 isn't a valid color name, do nothing. OLDVAL is the old value of
1421 the frame parameter. */
1424 x_set_scroll_bar_foreground (struct frame
*f
, Lisp_Object value
, Lisp_Object oldval
)
1426 unsigned long pixel
;
1428 if (STRINGP (value
))
1429 pixel
= x_decode_color (f
, value
, BLACK_PIX_DEFAULT (f
));
1433 if (f
->output_data
.x
->scroll_bar_foreground_pixel
!= -1)
1434 unload_color (f
, f
->output_data
.x
->scroll_bar_foreground_pixel
);
1436 f
->output_data
.x
->scroll_bar_foreground_pixel
= pixel
;
1437 if (FRAME_X_WINDOW (f
) && FRAME_VISIBLE_P (f
))
1439 /* Remove all scroll bars because they have wrong colors. */
1440 if (FRAME_TERMINAL (f
)->condemn_scroll_bars_hook
)
1441 (*FRAME_TERMINAL (f
)->condemn_scroll_bars_hook
) (f
);
1442 if (FRAME_TERMINAL (f
)->judge_scroll_bars_hook
)
1443 (*FRAME_TERMINAL (f
)->judge_scroll_bars_hook
) (f
);
1445 update_face_from_frame_parameter (f
, Qscroll_bar_foreground
, value
);
1451 /* Set the background color for scroll bars on frame F to VALUE VALUE
1452 should be a string, a color name. If it isn't a string or isn't a
1453 valid color name, do nothing. OLDVAL is the old value of the frame
1457 x_set_scroll_bar_background (struct frame
*f
, Lisp_Object value
, Lisp_Object oldval
)
1459 unsigned long pixel
;
1461 if (STRINGP (value
))
1462 pixel
= x_decode_color (f
, value
, WHITE_PIX_DEFAULT (f
));
1466 if (f
->output_data
.x
->scroll_bar_background_pixel
!= -1)
1467 unload_color (f
, f
->output_data
.x
->scroll_bar_background_pixel
);
1469 #ifdef USE_TOOLKIT_SCROLL_BARS
1470 /* Scrollbar shadow colors. */
1471 if (f
->output_data
.x
->scroll_bar_top_shadow_pixel
!= -1)
1473 unload_color (f
, f
->output_data
.x
->scroll_bar_top_shadow_pixel
);
1474 f
->output_data
.x
->scroll_bar_top_shadow_pixel
= -1;
1476 if (f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
!= -1)
1478 unload_color (f
, f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
);
1479 f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
= -1;
1481 #endif /* USE_TOOLKIT_SCROLL_BARS */
1483 f
->output_data
.x
->scroll_bar_background_pixel
= pixel
;
1484 if (FRAME_X_WINDOW (f
) && FRAME_VISIBLE_P (f
))
1486 /* Remove all scroll bars because they have wrong colors. */
1487 if (FRAME_TERMINAL (f
)->condemn_scroll_bars_hook
)
1488 (*FRAME_TERMINAL (f
)->condemn_scroll_bars_hook
) (f
);
1489 if (FRAME_TERMINAL (f
)->judge_scroll_bars_hook
)
1490 (*FRAME_TERMINAL (f
)->judge_scroll_bars_hook
) (f
);
1492 update_face_from_frame_parameter (f
, Qscroll_bar_background
, value
);
1498 /* Encode Lisp string STRING as a text in a format appropriate for
1499 XICCC (X Inter Client Communication Conventions).
1501 This can call Lisp code, so callers must GCPRO.
1503 If STRING contains only ASCII characters, do no conversion and
1504 return the string data of STRING. Otherwise, encode the text by
1505 CODING_SYSTEM, and return a newly allocated memory area which
1506 should be freed by `xfree' by a caller.
1508 SELECTIONP non-zero means the string is being encoded for an X
1509 selection, so it is safe to run pre-write conversions (which
1512 Store the byte length of resulting text in *TEXT_BYTES.
1514 If the text contains only ASCII and Latin-1, store 1 in *STRING_P,
1515 which means that the `encoding' of the result can be `STRING'.
1516 Otherwise store 0 in *STRINGP, which means that the `encoding' of
1517 the result should be `COMPOUND_TEXT'. */
1519 static unsigned char *
1520 x_encode_text (Lisp_Object string
, Lisp_Object coding_system
, int selectionp
, int *text_bytes
, int *stringp
, int *freep
)
1522 int result
= string_xstring_p (string
);
1523 struct coding_system coding
;
1527 /* No multibyte character in OBJ. We need not encode it. */
1528 *text_bytes
= SBYTES (string
);
1531 return SDATA (string
);
1534 setup_coding_system (coding_system
, &coding
);
1535 coding
.mode
|= (CODING_MODE_SAFE_ENCODING
| CODING_MODE_LAST_BLOCK
);
1536 /* We suppress producing escape sequences for composition. */
1537 coding
.common_flags
&= ~CODING_ANNOTATION_MASK
;
1538 coding
.dst_bytes
= SCHARS (string
) * 2;
1539 coding
.destination
= (unsigned char *) xmalloc (coding
.dst_bytes
);
1540 encode_coding_object (&coding
, string
, 0, 0,
1541 SCHARS (string
), SBYTES (string
), Qnil
);
1542 *text_bytes
= coding
.produced
;
1543 *stringp
= (result
== 1 || !EQ (coding_system
, Qcompound_text
));
1545 return coding
.destination
;
1549 /* Set the WM name to NAME for frame F. Also set the icon name.
1550 If the frame already has an icon name, use that, otherwise set the
1551 icon name to NAME. */
1554 x_set_name_internal (FRAME_PTR f
, Lisp_Object name
)
1556 if (FRAME_X_WINDOW (f
))
1560 XTextProperty text
, icon
;
1562 int do_free_icon_value
= 0, do_free_text_value
= 0;
1563 Lisp_Object coding_system
;
1564 Lisp_Object encoded_name
;
1565 Lisp_Object encoded_icon_name
;
1566 struct gcpro gcpro1
;
1568 /* As ENCODE_UTF_8 may cause GC and relocation of string data,
1569 we use it before x_encode_text that may return string data. */
1571 encoded_name
= ENCODE_UTF_8 (name
);
1574 coding_system
= Qcompound_text
;
1575 /* Note: Encoding strategy
1577 We encode NAME by compound-text and use "COMPOUND-TEXT" in
1578 text.encoding. But, there are non-internationalized window
1579 managers which don't support that encoding. So, if NAME
1580 contains only ASCII and 8859-1 characters, encode it by
1581 iso-latin-1, and use "STRING" in text.encoding hoping that
1582 such window managers at least analyze this format correctly,
1583 i.e. treat 8-bit bytes as 8859-1 characters.
1585 We may also be able to use "UTF8_STRING" in text.encoding
1586 in the future which can encode all Unicode characters.
1587 But, for the moment, there's no way to know that the
1588 current window manager supports it or not.
1590 Either way, we also set the _NET_WM_NAME and _NET_WM_ICON_NAME
1591 properties. Per the EWMH specification, those two properties
1592 are always UTF8_STRING. This matches what gtk_window_set_title()
1593 does in the USE_GTK case. */
1594 text
.value
= x_encode_text (name
, coding_system
, 0, &bytes
, &stringp
,
1595 &do_free_text_value
);
1596 text
.encoding
= (stringp
? XA_STRING
1597 : FRAME_X_DISPLAY_INFO (f
)->Xatom_COMPOUND_TEXT
);
1599 text
.nitems
= bytes
;
1601 if (!STRINGP (f
->icon_name
))
1604 encoded_icon_name
= encoded_name
;
1608 /* See the above comment "Note: Encoding strategy". */
1609 icon
.value
= x_encode_text (f
->icon_name
, coding_system
, 0,
1610 &bytes
, &stringp
, &do_free_icon_value
);
1611 icon
.encoding
= (stringp
? XA_STRING
1612 : FRAME_X_DISPLAY_INFO (f
)->Xatom_COMPOUND_TEXT
);
1614 icon
.nitems
= bytes
;
1616 encoded_icon_name
= ENCODE_UTF_8 (f
->icon_name
);
1620 gtk_window_set_title (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)),
1621 (char *) SDATA (encoded_name
));
1622 #else /* not USE_GTK */
1623 XSetWMName (FRAME_X_DISPLAY (f
), FRAME_OUTER_WINDOW (f
), &text
);
1624 XChangeProperty (FRAME_X_DISPLAY (f
), FRAME_OUTER_WINDOW (f
),
1625 FRAME_X_DISPLAY_INFO (f
)->Xatom_net_wm_name
,
1626 FRAME_X_DISPLAY_INFO (f
)->Xatom_UTF8_STRING
,
1628 (char *) SDATA (encoded_name
),
1629 SBYTES (encoded_name
));
1630 #endif /* not USE_GTK */
1632 XSetWMIconName (FRAME_X_DISPLAY (f
), FRAME_OUTER_WINDOW (f
), &icon
);
1633 XChangeProperty (FRAME_X_DISPLAY (f
), FRAME_OUTER_WINDOW (f
),
1634 FRAME_X_DISPLAY_INFO (f
)->Xatom_net_wm_icon_name
,
1635 FRAME_X_DISPLAY_INFO (f
)->Xatom_UTF8_STRING
,
1637 (char *) SDATA (encoded_icon_name
),
1638 SBYTES (encoded_icon_name
));
1640 if (do_free_icon_value
)
1642 if (do_free_text_value
)
1649 /* Change the name of frame F to NAME. If NAME is nil, set F's name to
1652 If EXPLICIT is non-zero, that indicates that lisp code is setting the
1653 name; if NAME is a string, set F's name to NAME and set
1654 F->explicit_name; if NAME is Qnil, then clear F->explicit_name.
1656 If EXPLICIT is zero, that indicates that Emacs redisplay code is
1657 suggesting a new name, which lisp code should override; if
1658 F->explicit_name is set, ignore the new name; otherwise, set it. */
1661 x_set_name (struct frame
*f
, Lisp_Object name
, int explicit)
1663 /* Make sure that requests from lisp code override requests from
1664 Emacs redisplay code. */
1667 /* If we're switching from explicit to implicit, we had better
1668 update the mode lines and thereby update the title. */
1669 if (f
->explicit_name
&& NILP (name
))
1670 update_mode_lines
= 1;
1672 f
->explicit_name
= ! NILP (name
);
1674 else if (f
->explicit_name
)
1677 /* If NAME is nil, set the name to the x_id_name. */
1680 /* Check for no change needed in this very common case
1681 before we do any consing. */
1682 if (!strcmp (FRAME_X_DISPLAY_INFO (f
)->x_id_name
,
1685 name
= build_string (FRAME_X_DISPLAY_INFO (f
)->x_id_name
);
1688 CHECK_STRING (name
);
1690 /* Don't change the name if it's already NAME. */
1691 if (! NILP (Fstring_equal (name
, f
->name
)))
1696 /* For setting the frame title, the title parameter should override
1697 the name parameter. */
1698 if (! NILP (f
->title
))
1701 x_set_name_internal (f
, name
);
1704 /* This function should be called when the user's lisp code has
1705 specified a name for the frame; the name will override any set by the
1708 x_explicitly_set_name (FRAME_PTR f
, Lisp_Object arg
, Lisp_Object oldval
)
1710 x_set_name (f
, arg
, 1);
1713 /* This function should be called by Emacs redisplay code to set the
1714 name; names set this way will never override names set by the user's
1717 x_implicitly_set_name (FRAME_PTR f
, Lisp_Object arg
, Lisp_Object oldval
)
1719 x_set_name (f
, arg
, 0);
1722 /* Change the title of frame F to NAME.
1723 If NAME is nil, use the frame name as the title. */
1726 x_set_title (struct frame
*f
, Lisp_Object name
, Lisp_Object old_name
)
1728 /* Don't change the title if it's already NAME. */
1729 if (EQ (name
, f
->title
))
1732 update_mode_lines
= 1;
1739 CHECK_STRING (name
);
1741 x_set_name_internal (f
, name
);
1745 x_set_scroll_bar_default_width (struct frame
*f
)
1747 int wid
= FRAME_COLUMN_WIDTH (f
);
1749 #ifdef USE_TOOLKIT_SCROLL_BARS
1750 /* A minimum width of 14 doesn't look good for toolkit scroll bars. */
1751 int width
= 16 + 2 * VERTICAL_SCROLL_BAR_WIDTH_TRIM
;
1752 FRAME_CONFIG_SCROLL_BAR_COLS (f
) = (width
+ wid
- 1) / wid
;
1753 FRAME_CONFIG_SCROLL_BAR_WIDTH (f
) = width
;
1755 /* Make the actual width at least 14 pixels and a multiple of a
1757 FRAME_CONFIG_SCROLL_BAR_COLS (f
) = (14 + wid
- 1) / wid
;
1759 /* Use all of that space (aside from required margins) for the
1761 FRAME_CONFIG_SCROLL_BAR_WIDTH (f
) = 0;
1766 /* Record in frame F the specified or default value according to ALIST
1767 of the parameter named PROP (a Lisp symbol). If no value is
1768 specified for PROP, look for an X default for XPROP on the frame
1769 named NAME. If that is not found either, use the value DEFLT. */
1772 x_default_scroll_bar_color_parameter (struct frame
*f
,
1773 Lisp_Object alist
, Lisp_Object prop
,
1774 const char *xprop
, const char *xclass
,
1777 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
1780 tem
= x_get_arg (dpyinfo
, alist
, prop
, xprop
, xclass
, RES_TYPE_STRING
);
1781 if (EQ (tem
, Qunbound
))
1783 #ifdef USE_TOOLKIT_SCROLL_BARS
1785 /* See if an X resource for the scroll bar color has been
1787 tem
= display_x_get_resource (dpyinfo
,
1788 build_string (foreground_p
1791 empty_unibyte_string
,
1792 build_string ("verticalScrollBar"),
1793 empty_unibyte_string
);
1796 /* If nothing has been specified, scroll bars will use a
1797 toolkit-dependent default. Because these defaults are
1798 difficult to get at without actually creating a scroll
1799 bar, use nil to indicate that no color has been
1804 #else /* not USE_TOOLKIT_SCROLL_BARS */
1808 #endif /* not USE_TOOLKIT_SCROLL_BARS */
1811 x_set_frame_parameters (f
, Fcons (Fcons (prop
, tem
), Qnil
));
1818 #ifdef USE_X_TOOLKIT
1820 /* If the WM_PROTOCOLS property does not already contain WM_TAKE_FOCUS,
1821 WM_DELETE_WINDOW, and WM_SAVE_YOURSELF, then add them. (They may
1822 already be present because of the toolkit (Motif adds some of them,
1823 for example, but Xt doesn't). */
1826 hack_wm_protocols (FRAME_PTR f
, Widget widget
)
1828 Display
*dpy
= XtDisplay (widget
);
1829 Window w
= XtWindow (widget
);
1830 int need_delete
= 1;
1837 unsigned char *catoms
;
1839 unsigned long nitems
= 0;
1840 unsigned long bytes_after
;
1842 if ((XGetWindowProperty (dpy
, w
,
1843 FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_protocols
,
1844 (long)0, (long)100, False
, XA_ATOM
,
1845 &type
, &format
, &nitems
, &bytes_after
,
1848 && format
== 32 && type
== XA_ATOM
)
1850 Atom
*atoms
= (Atom
*) catoms
;
1855 == FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_delete_window
)
1857 else if (atoms
[nitems
]
1858 == FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_take_focus
)
1860 else if (atoms
[nitems
]
1861 == FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_save_yourself
)
1872 props
[count
++] = FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_delete_window
;
1874 props
[count
++] = FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_take_focus
;
1876 props
[count
++] = FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_save_yourself
;
1878 XChangeProperty (dpy
, w
, FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_protocols
,
1879 XA_ATOM
, 32, PropModeAppend
,
1880 (unsigned char *) props
, count
);
1888 /* Support routines for XIC (X Input Context). */
1892 static XFontSet
xic_create_xfontset (struct frame
*);
1893 static XIMStyle
best_xim_style (XIMStyles
*, XIMStyles
*);
1896 /* Supported XIM styles, ordered by preference. */
1898 static XIMStyle supported_xim_styles
[] =
1900 XIMPreeditPosition
| XIMStatusArea
,
1901 XIMPreeditPosition
| XIMStatusNothing
,
1902 XIMPreeditPosition
| XIMStatusNone
,
1903 XIMPreeditNothing
| XIMStatusArea
,
1904 XIMPreeditNothing
| XIMStatusNothing
,
1905 XIMPreeditNothing
| XIMStatusNone
,
1906 XIMPreeditNone
| XIMStatusArea
,
1907 XIMPreeditNone
| XIMStatusNothing
,
1908 XIMPreeditNone
| XIMStatusNone
,
1913 /* Create an X fontset on frame F with base font name BASE_FONTNAME. */
1915 const char xic_defaut_fontset
[] = "-*-*-*-r-normal--14-*-*-*-*-*-*-*";
1917 /* Create an Xt fontset spec from the name of a base font.
1918 If `motif' is True use the Motif syntax. */
1920 xic_create_fontsetname (const char *base_fontname
, int motif
)
1922 const char *sep
= motif
? ";" : ",";
1925 /* Make a fontset name from the base font name. */
1926 if (xic_defaut_fontset
== base_fontname
)
1927 { /* There is no base font name, use the default. */
1928 int len
= strlen (base_fontname
) + 2;
1929 fontsetname
= xmalloc (len
);
1930 memset (fontsetname
, 0, len
);
1931 strcpy (fontsetname
, base_fontname
);
1935 /* Make a fontset name from the base font name.
1936 The font set will be made of the following elements:
1938 - the base font where the charset spec is replaced by -*-*.
1939 - the same but with the family also replaced with -*-*-. */
1940 const char *p
= base_fontname
;
1943 for (i
= 0; *p
; p
++)
1946 { /* As the font name doesn't conform to XLFD, we can't
1947 modify it to generalize it to allcs and allfamilies.
1948 Use the specified font plus the default. */
1949 int len
= strlen (base_fontname
) + strlen (xic_defaut_fontset
) + 3;
1950 fontsetname
= xmalloc (len
);
1951 memset (fontsetname
, 0, len
);
1952 strcpy (fontsetname
, base_fontname
);
1953 strcat (fontsetname
, sep
);
1954 strcat (fontsetname
, xic_defaut_fontset
);
1959 const char *p1
= NULL
, *p2
= NULL
, *p3
= NULL
;
1960 char *font_allcs
= NULL
;
1961 char *font_allfamilies
= NULL
;
1962 char *font_all
= NULL
;
1963 const char *allcs
= "*-*-*-*-*-*-*";
1964 const char *allfamilies
= "-*-*-";
1965 const char *all
= "*-*-*-*-";
1968 for (i
= 0, p
= base_fontname
; i
< 8; p
++)
1981 /* If base_fontname specifies ADSTYLE, make it a
1985 int diff
= (p2
- p3
) - 2;
1987 base
= alloca (strlen (base_fontname
) + 1);
1988 memcpy (base
, base_fontname
, p3
- base_fontname
);
1989 base
[p3
- base_fontname
] = '*';
1990 base
[(p3
- base_fontname
) + 1] = '-';
1991 strcpy (base
+ (p3
- base_fontname
) + 2, p2
);
1992 p
= base
+ (p
- base_fontname
) - diff
;
1993 p1
= base
+ (p1
- base_fontname
);
1994 p2
= base
+ (p2
- base_fontname
) - diff
;
1995 base_fontname
= base
;
1998 /* Build the font spec that matches all charsets. */
1999 len
= p
- base_fontname
+ strlen (allcs
) + 1;
2000 font_allcs
= (char *) alloca (len
);
2001 memset (font_allcs
, 0, len
);
2002 memcpy (font_allcs
, base_fontname
, p
- base_fontname
);
2003 strcat (font_allcs
, allcs
);
2005 /* Build the font spec that matches all families and
2007 len
= p
- p1
+ strlen (allcs
) + strlen (allfamilies
) + 1;
2008 font_allfamilies
= (char *) alloca (len
);
2009 memset (font_allfamilies
, 0, len
);
2010 strcpy (font_allfamilies
, allfamilies
);
2011 memcpy (font_allfamilies
+ strlen (allfamilies
), p1
, p
- p1
);
2012 strcat (font_allfamilies
, allcs
);
2014 /* Build the font spec that matches all. */
2015 len
= p
- p2
+ strlen (allcs
) + strlen (all
) + strlen (allfamilies
) + 1;
2016 font_all
= (char *) alloca (len
);
2017 memset (font_all
, 0, len
);
2018 strcpy (font_all
, allfamilies
);
2019 strcat (font_all
, all
);
2020 memcpy (font_all
+ strlen (all
) + strlen (allfamilies
), p2
, p
- p2
);
2021 strcat (font_all
, allcs
);
2023 /* Build the actual font set name. */
2024 len
= strlen (base_fontname
) + strlen (font_allcs
)
2025 + strlen (font_allfamilies
) + strlen (font_all
) + 5;
2026 fontsetname
= xmalloc (len
);
2027 memset (fontsetname
, 0, len
);
2028 strcpy (fontsetname
, base_fontname
);
2029 strcat (fontsetname
, sep
);
2030 strcat (fontsetname
, font_allcs
);
2031 strcat (fontsetname
, sep
);
2032 strcat (fontsetname
, font_allfamilies
);
2033 strcat (fontsetname
, sep
);
2034 strcat (fontsetname
, font_all
);
2038 strcat (fontsetname
, ":");
2042 #ifdef DEBUG_XIC_FONTSET
2044 print_fontset_result (xfs
, name
, missing_list
, missing_count
)
2047 char **missing_list
;
2051 fprintf (stderr
, "XIC Fontset created: %s\n", name
);
2054 fprintf (stderr
, "XIC Fontset failed: %s\n", name
);
2055 while (missing_count
-- > 0)
2057 fprintf (stderr
, " missing: %s\n", *missing_list
);
2066 xic_create_xfontset (struct frame
*f
)
2068 XFontSet xfs
= NULL
;
2069 struct font
*font
= FRAME_FONT (f
);
2070 int pixel_size
= font
->pixel_size
;
2071 Lisp_Object rest
, frame
;
2073 /* See if there is another frame already using same fontset. */
2074 FOR_EACH_FRAME (rest
, frame
)
2076 struct frame
*cf
= XFRAME (frame
);
2078 if (cf
!= f
&& FRAME_LIVE_P (f
) && FRAME_X_P (cf
)
2079 && FRAME_X_DISPLAY_INFO (cf
) == FRAME_X_DISPLAY_INFO (f
)
2081 && FRAME_FONT (f
)->pixel_size
== pixel_size
)
2083 xfs
= FRAME_XIC_FONTSET (cf
);
2091 char **missing_list
;
2094 const char *xlfd_format
= "-*-*-medium-r-normal--%d-*-*-*-*-*";
2096 sprintf (buf
, xlfd_format
, pixel_size
);
2097 missing_list
= NULL
;
2098 xfs
= XCreateFontSet (FRAME_X_DISPLAY (f
), buf
,
2099 &missing_list
, &missing_count
, &def_string
);
2100 #ifdef DEBUG_XIC_FONTSET
2101 print_fontset_result (xfs
, buf
, missing_list
, missing_count
);
2104 XFreeStringList (missing_list
);
2107 /* List of pixel sizes most likely available. Find one that
2108 is closest to pixel_size. */
2109 int sizes
[] = {0, 8, 10, 11, 12, 14, 17, 18, 20, 24, 26, 34, 0};
2110 int *smaller
, *larger
;
2112 for (smaller
= sizes
; smaller
[1]; smaller
++)
2113 if (smaller
[1] >= pixel_size
)
2115 larger
= smaller
+ 1;
2116 if (*larger
== pixel_size
)
2118 while (*smaller
|| *larger
)
2123 this_size
= *smaller
--;
2124 else if (! *smaller
)
2125 this_size
= *larger
++;
2126 else if (pixel_size
- *smaller
< *larger
- pixel_size
)
2127 this_size
= *smaller
--;
2129 this_size
= *larger
++;
2130 sprintf (buf
, xlfd_format
, this_size
);
2131 missing_list
= NULL
;
2132 xfs
= XCreateFontSet (FRAME_X_DISPLAY (f
), buf
,
2133 &missing_list
, &missing_count
, &def_string
);
2134 #ifdef DEBUG_XIC_FONTSET
2135 print_fontset_result (xfs
, buf
, missing_list
, missing_count
);
2138 XFreeStringList (missing_list
);
2145 const char *last_resort
= "-*-*-*-r-normal--*-*-*-*-*-*";
2147 missing_list
= NULL
;
2148 xfs
= XCreateFontSet (FRAME_X_DISPLAY (f
), last_resort
,
2149 &missing_list
, &missing_count
, &def_string
);
2150 #ifdef DEBUG_XIC_FONTSET
2151 print_fontset_result (xfs
, last_resort
, missing_list
, missing_count
);
2154 XFreeStringList (missing_list
);
2162 /* Free the X fontset of frame F if it is the last frame using it. */
2165 xic_free_xfontset (struct frame
*f
)
2167 Lisp_Object rest
, frame
;
2170 if (!FRAME_XIC_FONTSET (f
))
2173 /* See if there is another frame sharing the same fontset. */
2174 FOR_EACH_FRAME (rest
, frame
)
2176 struct frame
*cf
= XFRAME (frame
);
2177 if (cf
!= f
&& FRAME_LIVE_P (f
) && FRAME_X_P (cf
)
2178 && FRAME_X_DISPLAY_INFO (cf
) == FRAME_X_DISPLAY_INFO (f
)
2179 && FRAME_XIC_FONTSET (cf
) == FRAME_XIC_FONTSET (f
))
2187 /* The fontset is not used anymore. It is safe to free it. */
2188 XFreeFontSet (FRAME_X_DISPLAY (f
), FRAME_XIC_FONTSET (f
));
2190 if (FRAME_XIC_BASE_FONTNAME (f
))
2191 xfree (FRAME_XIC_BASE_FONTNAME (f
));
2192 FRAME_XIC_BASE_FONTNAME (f
) = NULL
;
2193 FRAME_XIC_FONTSET (f
) = NULL
;
2197 /* Value is the best input style, given user preferences USER (already
2198 checked to be supported by Emacs), and styles supported by the
2199 input method XIM. */
2202 best_xim_style (XIMStyles
*user
, XIMStyles
*xim
)
2206 for (i
= 0; i
< user
->count_styles
; ++i
)
2207 for (j
= 0; j
< xim
->count_styles
; ++j
)
2208 if (user
->supported_styles
[i
] == xim
->supported_styles
[j
])
2209 return user
->supported_styles
[i
];
2211 /* Return the default style. */
2212 return XIMPreeditNothing
| XIMStatusNothing
;
2215 /* Create XIC for frame F. */
2217 static XIMStyle xic_style
;
2220 create_frame_xic (struct frame
*f
)
2224 XFontSet xfs
= NULL
;
2229 /* Create X fontset. */
2230 xfs
= xic_create_xfontset (f
);
2231 xim
= FRAME_X_XIM (f
);
2236 XVaNestedList preedit_attr
;
2237 XVaNestedList status_attr
;
2239 s_area
.x
= 0; s_area
.y
= 0; s_area
.width
= 1; s_area
.height
= 1;
2240 spot
.x
= 0; spot
.y
= 1;
2242 /* Determine XIC style. */
2245 XIMStyles supported_list
;
2246 supported_list
.count_styles
= (sizeof supported_xim_styles
2247 / sizeof supported_xim_styles
[0]);
2248 supported_list
.supported_styles
= supported_xim_styles
;
2249 xic_style
= best_xim_style (&supported_list
,
2250 FRAME_X_XIM_STYLES (f
));
2253 preedit_attr
= XVaCreateNestedList (0,
2256 FRAME_FOREGROUND_PIXEL (f
),
2258 FRAME_BACKGROUND_PIXEL (f
),
2259 (xic_style
& XIMPreeditPosition
2264 status_attr
= XVaCreateNestedList (0,
2270 FRAME_FOREGROUND_PIXEL (f
),
2272 FRAME_BACKGROUND_PIXEL (f
),
2275 xic
= XCreateIC (xim
,
2276 XNInputStyle
, xic_style
,
2277 XNClientWindow
, FRAME_X_WINDOW (f
),
2278 XNFocusWindow
, FRAME_X_WINDOW (f
),
2279 XNStatusAttributes
, status_attr
,
2280 XNPreeditAttributes
, preedit_attr
,
2282 XFree (preedit_attr
);
2283 XFree (status_attr
);
2286 FRAME_XIC (f
) = xic
;
2287 FRAME_XIC_STYLE (f
) = xic_style
;
2288 FRAME_XIC_FONTSET (f
) = xfs
;
2292 /* Destroy XIC and free XIC fontset of frame F, if any. */
2295 free_frame_xic (struct frame
*f
)
2297 if (FRAME_XIC (f
) == NULL
)
2300 XDestroyIC (FRAME_XIC (f
));
2301 xic_free_xfontset (f
);
2303 FRAME_XIC (f
) = NULL
;
2307 /* Place preedit area for XIC of window W's frame to specified
2308 pixel position X/Y. X and Y are relative to window W. */
2311 xic_set_preeditarea (struct window
*w
, int x
, int y
)
2313 struct frame
*f
= XFRAME (w
->frame
);
2317 spot
.x
= WINDOW_TO_FRAME_PIXEL_X (w
, x
) + WINDOW_LEFT_FRINGE_WIDTH (w
);
2318 spot
.y
= WINDOW_TO_FRAME_PIXEL_Y (w
, y
) + FONT_BASE (FRAME_FONT (f
));
2319 attr
= XVaCreateNestedList (0, XNSpotLocation
, &spot
, NULL
);
2320 XSetICValues (FRAME_XIC (f
), XNPreeditAttributes
, attr
, NULL
);
2325 /* Place status area for XIC in bottom right corner of frame F.. */
2328 xic_set_statusarea (struct frame
*f
)
2330 XIC xic
= FRAME_XIC (f
);
2335 /* Negotiate geometry of status area. If input method has existing
2336 status area, use its current size. */
2337 area
.x
= area
.y
= area
.width
= area
.height
= 0;
2338 attr
= XVaCreateNestedList (0, XNAreaNeeded
, &area
, NULL
);
2339 XSetICValues (xic
, XNStatusAttributes
, attr
, NULL
);
2342 attr
= XVaCreateNestedList (0, XNAreaNeeded
, &needed
, NULL
);
2343 XGetICValues (xic
, XNStatusAttributes
, attr
, NULL
);
2346 if (needed
->width
== 0) /* Use XNArea instead of XNAreaNeeded */
2348 attr
= XVaCreateNestedList (0, XNArea
, &needed
, NULL
);
2349 XGetICValues (xic
, XNStatusAttributes
, attr
, NULL
);
2353 area
.width
= needed
->width
;
2354 area
.height
= needed
->height
;
2355 area
.x
= FRAME_PIXEL_WIDTH (f
) - area
.width
- FRAME_INTERNAL_BORDER_WIDTH (f
);
2356 area
.y
= (FRAME_PIXEL_HEIGHT (f
) - area
.height
2357 - FRAME_MENUBAR_HEIGHT (f
)
2358 - FRAME_TOOLBAR_TOP_HEIGHT (f
)
2359 - FRAME_INTERNAL_BORDER_WIDTH (f
));
2362 attr
= XVaCreateNestedList (0, XNArea
, &area
, NULL
);
2363 XSetICValues (xic
, XNStatusAttributes
, attr
, NULL
);
2368 /* Set X fontset for XIC of frame F, using base font name
2369 BASE_FONTNAME. Called when a new Emacs fontset is chosen. */
2372 xic_set_xfontset (struct frame
*f
, const char *base_fontname
)
2377 xic_free_xfontset (f
);
2379 xfs
= xic_create_xfontset (f
);
2381 attr
= XVaCreateNestedList (0, XNFontSet
, xfs
, NULL
);
2382 if (FRAME_XIC_STYLE (f
) & XIMPreeditPosition
)
2383 XSetICValues (FRAME_XIC (f
), XNPreeditAttributes
, attr
, NULL
);
2384 if (FRAME_XIC_STYLE (f
) & XIMStatusArea
)
2385 XSetICValues (FRAME_XIC (f
), XNStatusAttributes
, attr
, NULL
);
2388 FRAME_XIC_FONTSET (f
) = xfs
;
2391 #endif /* HAVE_X_I18N */
2395 #ifdef USE_X_TOOLKIT
2397 /* Create and set up the X widget for frame F. */
2400 x_window (struct frame
*f
, long window_prompting
, int minibuffer_only
)
2402 XClassHint class_hints
;
2403 XSetWindowAttributes attributes
;
2404 unsigned long attribute_mask
;
2405 Widget shell_widget
;
2407 Widget frame_widget
;
2413 /* Use the resource name as the top-level widget name
2414 for looking up resources. Make a non-Lisp copy
2415 for the window manager, so GC relocation won't bother it.
2417 Elsewhere we specify the window name for the window manager. */
2420 char *str
= (char *) SDATA (Vx_resource_name
);
2421 f
->namebuf
= (char *) xmalloc (strlen (str
) + 1);
2422 strcpy (f
->namebuf
, str
);
2426 XtSetArg (al
[ac
], XtNallowShellResize
, 1); ac
++;
2427 XtSetArg (al
[ac
], XtNinput
, 1); ac
++;
2428 XtSetArg (al
[ac
], XtNmappedWhenManaged
, 0); ac
++;
2429 XtSetArg (al
[ac
], XtNborderWidth
, f
->border_width
); ac
++;
2430 XtSetArg (al
[ac
], XtNvisual
, FRAME_X_VISUAL (f
)); ac
++;
2431 XtSetArg (al
[ac
], XtNdepth
, FRAME_X_DISPLAY_INFO (f
)->n_planes
); ac
++;
2432 XtSetArg (al
[ac
], XtNcolormap
, FRAME_X_COLORMAP (f
)); ac
++;
2433 shell_widget
= XtAppCreateShell (f
->namebuf
, EMACS_CLASS
,
2434 applicationShellWidgetClass
,
2435 FRAME_X_DISPLAY (f
), al
, ac
);
2437 f
->output_data
.x
->widget
= shell_widget
;
2438 /* maybe_set_screen_title_format (shell_widget); */
2440 pane_widget
= lw_create_widget ("main", "pane", widget_id_tick
++,
2441 (widget_value
*) NULL
,
2442 shell_widget
, False
,
2446 (lw_callback
) NULL
);
2449 XtSetArg (al
[ac
], XtNvisual
, FRAME_X_VISUAL (f
)); ac
++;
2450 XtSetArg (al
[ac
], XtNdepth
, FRAME_X_DISPLAY_INFO (f
)->n_planes
); ac
++;
2451 XtSetArg (al
[ac
], XtNcolormap
, FRAME_X_COLORMAP (f
)); ac
++;
2452 XtSetArg (al
[ac
], XtNborderWidth
, 0); ac
++;
2453 XtSetValues (pane_widget
, al
, ac
);
2454 f
->output_data
.x
->column_widget
= pane_widget
;
2456 /* mappedWhenManaged to false tells to the paned window to not map/unmap
2457 the emacs screen when changing menubar. This reduces flickering. */
2460 XtSetArg (al
[ac
], XtNmappedWhenManaged
, 0); ac
++;
2461 XtSetArg (al
[ac
], XtNshowGrip
, 0); ac
++;
2462 XtSetArg (al
[ac
], XtNallowResize
, 1); ac
++;
2463 XtSetArg (al
[ac
], XtNresizeToPreferred
, 1); ac
++;
2464 XtSetArg (al
[ac
], XtNemacsFrame
, f
); ac
++;
2465 XtSetArg (al
[ac
], XtNvisual
, FRAME_X_VISUAL (f
)); ac
++;
2466 XtSetArg (al
[ac
], XtNdepth
, FRAME_X_DISPLAY_INFO (f
)->n_planes
); ac
++;
2467 XtSetArg (al
[ac
], XtNcolormap
, FRAME_X_COLORMAP (f
)); ac
++;
2468 XtSetArg (al
[ac
], XtNborderWidth
, 0); ac
++;
2469 frame_widget
= XtCreateWidget (f
->namebuf
, emacsFrameClass
, pane_widget
,
2472 f
->output_data
.x
->edit_widget
= frame_widget
;
2474 XtManageChild (frame_widget
);
2476 /* Do some needed geometry management. */
2479 char *tem
, shell_position
[32];
2482 int extra_borders
= 0;
2484 = (f
->output_data
.x
->menubar_widget
2485 ? (f
->output_data
.x
->menubar_widget
->core
.height
2486 + f
->output_data
.x
->menubar_widget
->core
.border_width
)
2489 #if 0 /* Experimentally, we now get the right results
2490 for -geometry -0-0 without this. 24 Aug 96, rms. */
2491 if (FRAME_EXTERNAL_MENU_BAR (f
))
2494 XtVaGetValues (pane_widget
, XtNinternalBorderWidth
, &ibw
, NULL
);
2495 menubar_size
+= ibw
;
2499 f
->output_data
.x
->menubar_height
= menubar_size
;
2502 /* Motif seems to need this amount added to the sizes
2503 specified for the shell widget. The Athena/Lucid widgets don't.
2504 Both conclusions reached experimentally. -- rms. */
2505 XtVaGetValues (f
->output_data
.x
->edit_widget
, XtNinternalBorderWidth
,
2506 &extra_borders
, NULL
);
2510 /* Convert our geometry parameters into a geometry string
2512 Note that we do not specify here whether the position
2513 is a user-specified or program-specified one.
2514 We pass that information later, in x_wm_set_size_hints. */
2516 int left
= f
->left_pos
;
2517 int xneg
= window_prompting
& XNegative
;
2518 int top
= f
->top_pos
;
2519 int yneg
= window_prompting
& YNegative
;
2525 if (window_prompting
& USPosition
)
2526 sprintf (shell_position
, "=%dx%d%c%d%c%d",
2527 FRAME_PIXEL_WIDTH (f
) + extra_borders
,
2528 FRAME_PIXEL_HEIGHT (f
) + menubar_size
+ extra_borders
,
2529 (xneg
? '-' : '+'), left
,
2530 (yneg
? '-' : '+'), top
);
2533 sprintf (shell_position
, "=%dx%d",
2534 FRAME_PIXEL_WIDTH (f
) + extra_borders
,
2535 FRAME_PIXEL_HEIGHT (f
) + menubar_size
+ extra_borders
);
2537 /* Setting x and y when the position is not specified in
2538 the geometry string will set program position in the WM hints.
2539 If Emacs had just one program position, we could set it in
2540 fallback resources, but since each make-frame call can specify
2541 different program positions, this is easier. */
2542 XtSetArg (al
[ac
], XtNx
, left
); ac
++;
2543 XtSetArg (al
[ac
], XtNy
, top
); ac
++;
2547 len
= strlen (shell_position
) + 1;
2548 /* We don't free this because we don't know whether
2549 it is safe to free it while the frame exists.
2550 It isn't worth the trouble of arranging to free it
2551 when the frame is deleted. */
2552 tem
= (char *) xmalloc (len
);
2553 strncpy (tem
, shell_position
, len
);
2554 XtSetArg (al
[ac
], XtNgeometry
, tem
); ac
++;
2555 XtSetValues (shell_widget
, al
, ac
);
2558 XtManageChild (pane_widget
);
2559 XtRealizeWidget (shell_widget
);
2561 if (FRAME_X_EMBEDDED_P (f
))
2562 XReparentWindow (FRAME_X_DISPLAY (f
), XtWindow (shell_widget
),
2563 f
->output_data
.x
->parent_desc
, 0, 0);
2565 FRAME_X_WINDOW (f
) = XtWindow (frame_widget
);
2567 validate_x_resource_name ();
2569 class_hints
.res_name
= (char *) SDATA (Vx_resource_name
);
2570 class_hints
.res_class
= (char *) SDATA (Vx_resource_class
);
2571 XSetClassHint (FRAME_X_DISPLAY (f
), XtWindow (shell_widget
), &class_hints
);
2574 FRAME_XIC (f
) = NULL
;
2576 create_frame_xic (f
);
2579 f
->output_data
.x
->wm_hints
.input
= True
;
2580 f
->output_data
.x
->wm_hints
.flags
|= InputHint
;
2581 XSetWMHints (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2582 &f
->output_data
.x
->wm_hints
);
2584 hack_wm_protocols (f
, shell_widget
);
2587 XtAddEventHandler (shell_widget
, 0, True
, _XEditResCheckMessages
, 0);
2590 /* Do a stupid property change to force the server to generate a
2591 PropertyNotify event so that the event_stream server timestamp will
2592 be initialized to something relevant to the time we created the window.
2594 XChangeProperty (XtDisplay (frame_widget
), XtWindow (frame_widget
),
2595 FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_protocols
,
2596 XA_ATOM
, 32, PropModeAppend
,
2597 (unsigned char*) NULL
, 0);
2599 /* Make all the standard events reach the Emacs frame. */
2600 attributes
.event_mask
= STANDARD_EVENT_SET
;
2605 /* XIM server might require some X events. */
2606 unsigned long fevent
= NoEventMask
;
2607 XGetICValues (FRAME_XIC (f
), XNFilterEvents
, &fevent
, NULL
);
2608 attributes
.event_mask
|= fevent
;
2610 #endif /* HAVE_X_I18N */
2612 attribute_mask
= CWEventMask
;
2613 XChangeWindowAttributes (XtDisplay (shell_widget
), XtWindow (shell_widget
),
2614 attribute_mask
, &attributes
);
2616 XtMapWidget (frame_widget
);
2618 /* x_set_name normally ignores requests to set the name if the
2619 requested name is the same as the current name. This is the one
2620 place where that assumption isn't correct; f->name is set, but
2621 the X server hasn't been told. */
2624 int explicit = f
->explicit_name
;
2626 f
->explicit_name
= 0;
2629 x_set_name (f
, name
, explicit);
2632 XDefineCursor (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2633 f
->output_data
.x
->current_cursor
2634 = f
->output_data
.x
->text_cursor
);
2638 /* This is a no-op, except under Motif. Make sure main areas are
2639 set to something reasonable, in case we get an error later. */
2640 lw_set_main_areas (pane_widget
, 0, frame_widget
);
2643 #else /* not USE_X_TOOLKIT */
2646 x_window (FRAME_PTR f
)
2648 if (! xg_create_frame_widgets (f
))
2649 error ("Unable to create window");
2652 FRAME_XIC (f
) = NULL
;
2656 create_frame_xic (f
);
2659 /* XIM server might require some X events. */
2660 unsigned long fevent
= NoEventMask
;
2661 XGetICValues (FRAME_XIC (f
), XNFilterEvents
, &fevent
, NULL
);
2663 if (fevent
!= NoEventMask
)
2665 XSetWindowAttributes attributes
;
2666 XWindowAttributes wattr
;
2667 unsigned long attribute_mask
;
2669 XGetWindowAttributes (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2671 attributes
.event_mask
= wattr
.your_event_mask
| fevent
;
2672 attribute_mask
= CWEventMask
;
2673 XChangeWindowAttributes (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2674 attribute_mask
, &attributes
);
2682 #else /*! USE_GTK */
2683 /* Create and set up the X window for frame F. */
2686 x_window (struct frame
*f
)
2688 XClassHint class_hints
;
2689 XSetWindowAttributes attributes
;
2690 unsigned long attribute_mask
;
2692 attributes
.background_pixel
= FRAME_BACKGROUND_PIXEL (f
);
2693 attributes
.border_pixel
= f
->output_data
.x
->border_pixel
;
2694 attributes
.bit_gravity
= StaticGravity
;
2695 attributes
.backing_store
= NotUseful
;
2696 attributes
.save_under
= True
;
2697 attributes
.event_mask
= STANDARD_EVENT_SET
;
2698 attributes
.colormap
= FRAME_X_COLORMAP (f
);
2699 attribute_mask
= (CWBackPixel
| CWBorderPixel
| CWBitGravity
| CWEventMask
2704 = XCreateWindow (FRAME_X_DISPLAY (f
),
2705 f
->output_data
.x
->parent_desc
,
2708 FRAME_PIXEL_WIDTH (f
), FRAME_PIXEL_HEIGHT (f
),
2710 CopyFromParent
, /* depth */
2711 InputOutput
, /* class */
2713 attribute_mask
, &attributes
);
2718 create_frame_xic (f
);
2721 /* XIM server might require some X events. */
2722 unsigned long fevent
= NoEventMask
;
2723 XGetICValues (FRAME_XIC (f
), XNFilterEvents
, &fevent
, NULL
);
2724 attributes
.event_mask
|= fevent
;
2725 attribute_mask
= CWEventMask
;
2726 XChangeWindowAttributes (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2727 attribute_mask
, &attributes
);
2730 #endif /* HAVE_X_I18N */
2732 validate_x_resource_name ();
2734 class_hints
.res_name
= (char *) SDATA (Vx_resource_name
);
2735 class_hints
.res_class
= (char *) SDATA (Vx_resource_class
);
2736 XSetClassHint (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), &class_hints
);
2738 /* The menubar is part of the ordinary display;
2739 it does not count in addition to the height of the window. */
2740 f
->output_data
.x
->menubar_height
= 0;
2742 /* This indicates that we use the "Passive Input" input model.
2743 Unless we do this, we don't get the Focus{In,Out} events that we
2744 need to draw the cursor correctly. Accursed bureaucrats.
2745 XWhipsAndChains (FRAME_X_DISPLAY (f), IronMaiden, &TheRack); */
2747 f
->output_data
.x
->wm_hints
.input
= True
;
2748 f
->output_data
.x
->wm_hints
.flags
|= InputHint
;
2749 XSetWMHints (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2750 &f
->output_data
.x
->wm_hints
);
2751 f
->output_data
.x
->wm_hints
.icon_pixmap
= None
;
2753 /* Request "save yourself" and "delete window" commands from wm. */
2756 protocols
[0] = FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_delete_window
;
2757 protocols
[1] = FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_save_yourself
;
2758 XSetWMProtocols (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), protocols
, 2);
2761 /* x_set_name normally ignores requests to set the name if the
2762 requested name is the same as the current name. This is the one
2763 place where that assumption isn't correct; f->name is set, but
2764 the X server hasn't been told. */
2767 int explicit = f
->explicit_name
;
2769 f
->explicit_name
= 0;
2772 x_set_name (f
, name
, explicit);
2775 XDefineCursor (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2776 f
->output_data
.x
->current_cursor
2777 = f
->output_data
.x
->text_cursor
);
2781 if (FRAME_X_WINDOW (f
) == 0)
2782 error ("Unable to create window");
2785 #endif /* not USE_GTK */
2786 #endif /* not USE_X_TOOLKIT */
2788 /* Verify that the icon position args for this window are valid. */
2791 x_icon_verify (struct frame
*f
, Lisp_Object parms
)
2793 Lisp_Object icon_x
, icon_y
;
2795 /* Set the position of the icon. Note that twm groups all
2796 icons in an icon window. */
2797 icon_x
= x_frame_get_and_record_arg (f
, parms
, Qicon_left
, 0, 0, RES_TYPE_NUMBER
);
2798 icon_y
= x_frame_get_and_record_arg (f
, parms
, Qicon_top
, 0, 0, RES_TYPE_NUMBER
);
2799 if (!EQ (icon_x
, Qunbound
) && !EQ (icon_y
, Qunbound
))
2801 CHECK_NUMBER (icon_x
);
2802 CHECK_NUMBER (icon_y
);
2804 else if (!EQ (icon_x
, Qunbound
) || !EQ (icon_y
, Qunbound
))
2805 error ("Both left and top icon corners of icon must be specified");
2808 /* Handle the icon stuff for this window. Perhaps later we might
2809 want an x_set_icon_position which can be called interactively as
2813 x_icon (struct frame
*f
, Lisp_Object parms
)
2815 Lisp_Object icon_x
, icon_y
;
2817 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
2820 /* Set the position of the icon. Note that twm groups all
2821 icons in an icon window. */
2822 icon_x
= x_frame_get_and_record_arg (f
, parms
, Qicon_left
, 0, 0, RES_TYPE_NUMBER
);
2823 icon_y
= x_frame_get_and_record_arg (f
, parms
, Qicon_top
, 0, 0, RES_TYPE_NUMBER
);
2824 if (!EQ (icon_x
, Qunbound
) && !EQ (icon_y
, Qunbound
))
2826 CHECK_NUMBER (icon_x
);
2827 CHECK_NUMBER (icon_y
);
2829 else if (!EQ (icon_x
, Qunbound
) || !EQ (icon_y
, Qunbound
))
2830 error ("Both left and top icon corners of icon must be specified");
2834 if (! EQ (icon_x
, Qunbound
))
2835 x_wm_set_icon_position (f
, XINT (icon_x
), XINT (icon_y
));
2837 #if 0 /* x_get_arg removes the visibility parameter as a side effect,
2838 but x_create_frame still needs it. */
2839 /* Start up iconic or window? */
2840 x_wm_set_window_state
2841 (f
, (EQ (x_get_arg (dpyinfo
, parms
, Qvisibility
, 0, 0, RES_TYPE_SYMBOL
),
2847 x_text_icon (f
, (char *) SDATA ((!NILP (f
->icon_name
)
2854 /* Make the GCs needed for this window, setting the
2855 background, border and mouse colors; also create the
2856 mouse cursor and the gray border tile. */
2859 x_make_gc (struct frame
*f
)
2861 XGCValues gc_values
;
2865 /* Create the GCs of this frame.
2866 Note that many default values are used. */
2868 gc_values
.foreground
= FRAME_FOREGROUND_PIXEL (f
);
2869 gc_values
.background
= FRAME_BACKGROUND_PIXEL (f
);
2870 gc_values
.line_width
= 0; /* Means 1 using fast algorithm. */
2871 f
->output_data
.x
->normal_gc
2872 = XCreateGC (FRAME_X_DISPLAY (f
),
2874 GCLineWidth
| GCForeground
| GCBackground
,
2877 /* Reverse video style. */
2878 gc_values
.foreground
= FRAME_BACKGROUND_PIXEL (f
);
2879 gc_values
.background
= FRAME_FOREGROUND_PIXEL (f
);
2880 f
->output_data
.x
->reverse_gc
2881 = XCreateGC (FRAME_X_DISPLAY (f
),
2883 GCForeground
| GCBackground
| GCLineWidth
,
2886 /* Cursor has cursor-color background, background-color foreground. */
2887 gc_values
.foreground
= FRAME_BACKGROUND_PIXEL (f
);
2888 gc_values
.background
= f
->output_data
.x
->cursor_pixel
;
2889 gc_values
.fill_style
= FillOpaqueStippled
;
2890 f
->output_data
.x
->cursor_gc
2891 = XCreateGC (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2892 (GCForeground
| GCBackground
2893 | GCFillStyle
| GCLineWidth
),
2897 f
->output_data
.x
->white_relief
.gc
= 0;
2898 f
->output_data
.x
->black_relief
.gc
= 0;
2900 /* Create the gray border tile used when the pointer is not in
2901 the frame. Since this depends on the frame's pixel values,
2902 this must be done on a per-frame basis. */
2903 f
->output_data
.x
->border_tile
2904 = (XCreatePixmapFromBitmapData
2905 (FRAME_X_DISPLAY (f
), FRAME_X_DISPLAY_INFO (f
)->root_window
,
2906 gray_bits
, gray_width
, gray_height
,
2907 FRAME_FOREGROUND_PIXEL (f
),
2908 FRAME_BACKGROUND_PIXEL (f
),
2909 DefaultDepth (FRAME_X_DISPLAY (f
), FRAME_X_SCREEN_NUMBER (f
))));
2915 /* Free what was allocated in x_make_gc. */
2918 x_free_gcs (struct frame
*f
)
2920 Display
*dpy
= FRAME_X_DISPLAY (f
);
2924 if (f
->output_data
.x
->normal_gc
)
2926 XFreeGC (dpy
, f
->output_data
.x
->normal_gc
);
2927 f
->output_data
.x
->normal_gc
= 0;
2930 if (f
->output_data
.x
->reverse_gc
)
2932 XFreeGC (dpy
, f
->output_data
.x
->reverse_gc
);
2933 f
->output_data
.x
->reverse_gc
= 0;
2936 if (f
->output_data
.x
->cursor_gc
)
2938 XFreeGC (dpy
, f
->output_data
.x
->cursor_gc
);
2939 f
->output_data
.x
->cursor_gc
= 0;
2942 if (f
->output_data
.x
->border_tile
)
2944 XFreePixmap (dpy
, f
->output_data
.x
->border_tile
);
2945 f
->output_data
.x
->border_tile
= 0;
2952 /* Handler for signals raised during x_create_frame and
2953 x_create_top_frame. FRAME is the frame which is partially
2957 unwind_create_frame (Lisp_Object frame
)
2959 struct frame
*f
= XFRAME (frame
);
2961 /* If frame is already dead, nothing to do. This can happen if the
2962 display is disconnected after the frame has become official, but
2963 before x_create_frame removes the unwind protect. */
2964 if (!FRAME_LIVE_P (f
))
2967 /* If frame is ``official'', nothing to do. */
2968 if (!CONSP (Vframe_list
) || !EQ (XCAR (Vframe_list
), frame
))
2971 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
2974 x_free_frame_resources (f
);
2977 /* Check that reference counts are indeed correct. */
2978 xassert (dpyinfo
->reference_count
== dpyinfo_refcount
);
2979 xassert (dpyinfo
->image_cache
->refcount
== image_cache_refcount
);
2989 x_default_font_parameter (struct frame
*f
, Lisp_Object parms
)
2991 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
2992 Lisp_Object font_param
= x_get_arg (dpyinfo
, parms
, Qfont
, NULL
, NULL
,
2994 Lisp_Object font
= Qnil
;
2995 if (EQ (font_param
, Qunbound
))
2998 if (NILP (font_param
))
3000 /* System font should take precedendce over X resources. We suggest this
3001 regardless of font-use-system-font because .emacs may not have been
3003 const char *system_font
= xsettings_get_system_font ();
3006 char *name
= xstrdup (system_font
);
3007 font
= font_open_by_name (f
, name
);
3013 font
= !NILP (font_param
) ? font_param
3014 : x_get_arg (dpyinfo
, parms
, Qfont
, "font", "Font", RES_TYPE_STRING
);
3016 if (! FONTP (font
) && ! STRINGP (font
))
3021 /* This will find the normal Xft font. */
3024 "-adobe-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-1",
3025 "-misc-fixed-medium-r-normal-*-*-140-*-*-c-*-iso8859-1",
3026 "-*-*-medium-r-normal-*-*-140-*-*-c-*-iso8859-1",
3027 /* This was formerly the first thing tried, but it finds
3028 too many fonts and takes too long. */
3029 "-*-*-medium-r-*-*-*-*-*-*-c-*-iso8859-1",
3030 /* If those didn't work, look for something which will
3032 "-*-fixed-*-*-*-*-*-140-*-*-c-*-iso8859-1",
3037 for (i
= 0; names
[i
]; i
++)
3039 font
= font_open_by_name (f
, names
[i
]);
3044 error ("No suitable font was found");
3046 else if (!NILP (font_param
))
3048 /* Remember the explicit font parameter, so we can re-apply it after
3049 we've applied the `default' face settings. */
3050 x_set_frame_parameters (f
, Fcons (Fcons (Qfont_param
, font_param
), Qnil
));
3053 /* This call will make X resources override any system font setting. */
3054 x_default_parameter (f
, parms
, Qfont
, font
, "font", "Font", RES_TYPE_STRING
);
3058 DEFUN ("x-wm-set-size-hint", Fx_wm_set_size_hint
, Sx_wm_set_size_hint
,
3060 doc
: /* Send the size hints for frame FRAME to the window manager.
3061 If FRAME is nil, use the selected frame. */)
3066 frame
= selected_frame
;
3070 x_wm_set_size_hint (f
, 0, 0);
3076 set_machine_and_pid_properties (struct frame
*f
)
3078 /* See the above comment "Note: Encoding strategy". */
3081 int do_free_text_value
= 0;
3082 long pid
= (long) getpid ();
3084 text
.value
= x_encode_text (Vsystem_name
,
3085 Qcompound_text
, 0, &bytes
, &stringp
,
3086 &do_free_text_value
);
3087 text
.encoding
= (stringp
? XA_STRING
3088 : FRAME_X_DISPLAY_INFO (f
)->Xatom_COMPOUND_TEXT
);
3090 text
.nitems
= bytes
;
3091 XSetWMClientMachine (FRAME_X_DISPLAY (f
),
3092 FRAME_OUTER_WINDOW (f
),
3094 if (do_free_text_value
)
3097 XChangeProperty (FRAME_X_DISPLAY (f
),
3098 FRAME_OUTER_WINDOW (f
),
3099 XInternAtom (FRAME_X_DISPLAY (f
),
3102 XA_CARDINAL
, 32, PropModeReplace
,
3103 (unsigned char *) &pid
, 1);
3106 DEFUN ("x-create-frame", Fx_create_frame
, Sx_create_frame
,
3108 doc
: /* Make a new X window, which is called a "frame" in Emacs terms.
3109 Return an Emacs frame object.
3110 PARMS is an alist of frame parameters.
3111 If the parameters specify that the frame should not have a minibuffer,
3112 and do not specify a specific minibuffer window to use,
3113 then `default-minibuffer-frame' must be a frame whose minibuffer can
3114 be shared by the new frame.
3116 This function is an internal primitive--use `make-frame' instead. */)
3120 Lisp_Object frame
, tem
;
3122 int minibuffer_only
= 0;
3123 long window_prompting
= 0;
3125 int count
= SPECPDL_INDEX ();
3126 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
3127 Lisp_Object display
;
3128 struct x_display_info
*dpyinfo
= NULL
;
3132 parms
= Fcopy_alist (parms
);
3134 /* Use this general default value to start with
3135 until we know if this frame has a specified name. */
3136 Vx_resource_name
= Vinvocation_name
;
3138 display
= x_get_arg (dpyinfo
, parms
, Qterminal
, 0, 0, RES_TYPE_NUMBER
);
3139 if (EQ (display
, Qunbound
))
3140 display
= x_get_arg (dpyinfo
, parms
, Qdisplay
, 0, 0, RES_TYPE_STRING
);
3141 if (EQ (display
, Qunbound
))
3143 dpyinfo
= check_x_display_info (display
);
3144 kb
= dpyinfo
->terminal
->kboard
;
3146 if (!dpyinfo
->terminal
->name
)
3147 error ("Terminal is not live, can't create new frames on it");
3149 name
= x_get_arg (dpyinfo
, parms
, Qname
, "name", "Name", RES_TYPE_STRING
);
3151 && ! EQ (name
, Qunbound
)
3153 error ("Invalid frame name--not a string or nil");
3156 Vx_resource_name
= name
;
3158 /* See if parent window is specified. */
3159 parent
= x_get_arg (dpyinfo
, parms
, Qparent_id
, NULL
, NULL
, RES_TYPE_NUMBER
);
3160 if (EQ (parent
, Qunbound
))
3162 if (! NILP (parent
))
3163 CHECK_NUMBER (parent
);
3165 /* make_frame_without_minibuffer can run Lisp code and garbage collect. */
3166 /* No need to protect DISPLAY because that's not used after passing
3167 it to make_frame_without_minibuffer. */
3169 GCPRO4 (parms
, parent
, name
, frame
);
3170 tem
= x_get_arg (dpyinfo
, parms
, Qminibuffer
, "minibuffer", "Minibuffer",
3172 if (EQ (tem
, Qnone
) || NILP (tem
))
3173 f
= make_frame_without_minibuffer (Qnil
, kb
, display
);
3174 else if (EQ (tem
, Qonly
))
3176 f
= make_minibuffer_frame ();
3177 minibuffer_only
= 1;
3179 else if (WINDOWP (tem
))
3180 f
= make_frame_without_minibuffer (tem
, kb
, display
);
3184 XSETFRAME (frame
, f
);
3186 /* Note that X Windows does support scroll bars. */
3187 FRAME_CAN_HAVE_SCROLL_BARS (f
) = 1;
3189 f
->terminal
= dpyinfo
->terminal
;
3190 f
->terminal
->reference_count
++;
3192 f
->output_method
= output_x_window
;
3193 f
->output_data
.x
= (struct x_output
*) xmalloc (sizeof (struct x_output
));
3194 memset (f
->output_data
.x
, 0, sizeof (struct x_output
));
3195 f
->output_data
.x
->icon_bitmap
= -1;
3196 FRAME_FONTSET (f
) = -1;
3197 f
->output_data
.x
->scroll_bar_foreground_pixel
= -1;
3198 f
->output_data
.x
->scroll_bar_background_pixel
= -1;
3199 #ifdef USE_TOOLKIT_SCROLL_BARS
3200 f
->output_data
.x
->scroll_bar_top_shadow_pixel
= -1;
3201 f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
= -1;
3202 #endif /* USE_TOOLKIT_SCROLL_BARS */
3205 = x_get_arg (dpyinfo
, parms
, Qicon_name
, "iconName", "Title",
3207 if (! STRINGP (f
->icon_name
))
3208 f
->icon_name
= Qnil
;
3210 FRAME_X_DISPLAY_INFO (f
) = dpyinfo
;
3212 /* With FRAME_X_DISPLAY_INFO set up, this unwind-protect is safe. */
3213 record_unwind_protect (unwind_create_frame
, frame
);
3215 image_cache_refcount
= FRAME_IMAGE_CACHE (f
)->refcount
;
3216 dpyinfo_refcount
= dpyinfo
->reference_count
;
3217 #endif /* GLYPH_DEBUG */
3219 /* These colors will be set anyway later, but it's important
3220 to get the color reference counts right, so initialize them! */
3223 struct gcpro gcpro1
;
3225 /* Function x_decode_color can signal an error. Make
3226 sure to initialize color slots so that we won't try
3227 to free colors we haven't allocated. */
3228 FRAME_FOREGROUND_PIXEL (f
) = -1;
3229 FRAME_BACKGROUND_PIXEL (f
) = -1;
3230 f
->output_data
.x
->cursor_pixel
= -1;
3231 f
->output_data
.x
->cursor_foreground_pixel
= -1;
3232 f
->output_data
.x
->border_pixel
= -1;
3233 f
->output_data
.x
->mouse_pixel
= -1;
3235 black
= build_string ("black");
3237 FRAME_FOREGROUND_PIXEL (f
)
3238 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
3239 FRAME_BACKGROUND_PIXEL (f
)
3240 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
3241 f
->output_data
.x
->cursor_pixel
3242 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
3243 f
->output_data
.x
->cursor_foreground_pixel
3244 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
3245 f
->output_data
.x
->border_pixel
3246 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
3247 f
->output_data
.x
->mouse_pixel
3248 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
3252 /* Specify the parent under which to make this X window. */
3256 f
->output_data
.x
->parent_desc
= (Window
) XFASTINT (parent
);
3257 f
->output_data
.x
->explicit_parent
= 1;
3261 f
->output_data
.x
->parent_desc
= FRAME_X_DISPLAY_INFO (f
)->root_window
;
3262 f
->output_data
.x
->explicit_parent
= 0;
3265 /* Set the name; the functions to which we pass f expect the name to
3267 if (EQ (name
, Qunbound
) || NILP (name
))
3269 f
->name
= build_string (dpyinfo
->x_id_name
);
3270 f
->explicit_name
= 0;
3275 f
->explicit_name
= 1;
3276 /* use the frame's title when getting resources for this frame. */
3277 specbind (Qx_resource_name
, name
);
3280 f
->resx
= dpyinfo
->resx
;
3281 f
->resy
= dpyinfo
->resy
;
3283 #ifdef HAVE_FREETYPE
3285 register_font_driver (&xftfont_driver
, f
);
3286 #else /* not HAVE_XFT */
3287 register_font_driver (&ftxfont_driver
, f
);
3288 #endif /* not HAVE_XFT */
3289 #endif /* HAVE_FREETYPE */
3290 register_font_driver (&xfont_driver
, f
);
3292 x_default_parameter (f
, parms
, Qfont_backend
, Qnil
,
3293 "fontBackend", "FontBackend", RES_TYPE_STRING
);
3295 /* Extract the window parameters from the supplied values
3296 that are needed to determine window geometry. */
3297 x_default_font_parameter (f
, parms
);
3298 if (!FRAME_FONT (f
))
3300 delete_frame (frame
, Qnoelisp
);
3301 error ("Invalid frame font");
3304 /* Frame contents get displaced if an embedded X window has a border. */
3305 if (! FRAME_X_EMBEDDED_P (f
))
3306 x_default_parameter (f
, parms
, Qborder_width
, make_number (0),
3307 "borderWidth", "BorderWidth", RES_TYPE_NUMBER
);
3309 /* This defaults to 1 in order to match xterm. We recognize either
3310 internalBorderWidth or internalBorder (which is what xterm calls
3312 if (NILP (Fassq (Qinternal_border_width
, parms
)))
3316 value
= x_get_arg (dpyinfo
, parms
, Qinternal_border_width
,
3317 "internalBorder", "internalBorder", RES_TYPE_NUMBER
);
3318 if (! EQ (value
, Qunbound
))
3319 parms
= Fcons (Fcons (Qinternal_border_width
, value
),
3322 x_default_parameter (f
, parms
, Qinternal_border_width
,
3323 #ifdef USE_GTK /* We used to impose 0 in xg_create_frame_widgets. */
3328 "internalBorderWidth", "internalBorderWidth",
3330 x_default_parameter (f
, parms
, Qvertical_scroll_bars
,
3331 #if defined(USE_GTK) && defined(USE_TOOLKIT_SCROLL_BARS)
3336 "verticalScrollBars", "ScrollBars",
3339 /* Also do the stuff which must be set before the window exists. */
3340 x_default_parameter (f
, parms
, Qforeground_color
, build_string ("black"),
3341 "foreground", "Foreground", RES_TYPE_STRING
);
3342 x_default_parameter (f
, parms
, Qbackground_color
, build_string ("white"),
3343 "background", "Background", RES_TYPE_STRING
);
3344 x_default_parameter (f
, parms
, Qmouse_color
, build_string ("black"),
3345 "pointerColor", "Foreground", RES_TYPE_STRING
);
3346 x_default_parameter (f
, parms
, Qcursor_color
, build_string ("black"),
3347 "cursorColor", "Foreground", RES_TYPE_STRING
);
3348 x_default_parameter (f
, parms
, Qborder_color
, build_string ("black"),
3349 "borderColor", "BorderColor", RES_TYPE_STRING
);
3350 x_default_parameter (f
, parms
, Qscreen_gamma
, Qnil
,
3351 "screenGamma", "ScreenGamma", RES_TYPE_FLOAT
);
3352 x_default_parameter (f
, parms
, Qline_spacing
, Qnil
,
3353 "lineSpacing", "LineSpacing", RES_TYPE_NUMBER
);
3354 x_default_parameter (f
, parms
, Qleft_fringe
, Qnil
,
3355 "leftFringe", "LeftFringe", RES_TYPE_NUMBER
);
3356 x_default_parameter (f
, parms
, Qright_fringe
, Qnil
,
3357 "rightFringe", "RightFringe", RES_TYPE_NUMBER
);
3359 x_default_scroll_bar_color_parameter (f
, parms
, Qscroll_bar_foreground
,
3360 "scrollBarForeground",
3361 "ScrollBarForeground", 1);
3362 x_default_scroll_bar_color_parameter (f
, parms
, Qscroll_bar_background
,
3363 "scrollBarBackground",
3364 "ScrollBarBackground", 0);
3366 /* Init faces before x_default_parameter is called for scroll-bar
3367 parameters because that function calls x_set_scroll_bar_width,
3368 which calls change_frame_size, which calls Fset_window_buffer,
3369 which runs hooks, which call Fvertical_motion. At the end, we
3370 end up in init_iterator with a null face cache, which should not
3372 init_frame_faces (f
);
3374 /* The X resources controlling the menu-bar and tool-bar are
3375 processed specially at startup, and reflected in the mode
3376 variables; ignore them here. */
3377 x_default_parameter (f
, parms
, Qmenu_bar_lines
,
3378 NILP (Vmenu_bar_mode
)
3379 ? make_number (0) : make_number (1),
3380 NULL
, NULL
, RES_TYPE_NUMBER
);
3381 x_default_parameter (f
, parms
, Qtool_bar_lines
,
3382 NILP (Vtool_bar_mode
)
3383 ? make_number (0) : make_number (1),
3384 NULL
, NULL
, RES_TYPE_NUMBER
);
3386 x_default_parameter (f
, parms
, Qbuffer_predicate
, Qnil
,
3387 "bufferPredicate", "BufferPredicate",
3389 x_default_parameter (f
, parms
, Qtitle
, Qnil
,
3390 "title", "Title", RES_TYPE_STRING
);
3391 x_default_parameter (f
, parms
, Qwait_for_wm
, Qt
,
3392 "waitForWM", "WaitForWM", RES_TYPE_BOOLEAN
);
3393 x_default_parameter (f
, parms
, Qfullscreen
, Qnil
,
3394 "fullscreen", "Fullscreen", RES_TYPE_SYMBOL
);
3395 x_default_parameter (f
, parms
, Qtool_bar_position
,
3396 f
->tool_bar_position
, 0, 0, RES_TYPE_SYMBOL
);
3398 /* Compute the size of the X window. */
3399 window_prompting
= x_figure_window_size (f
, parms
, 1);
3401 tem
= x_get_arg (dpyinfo
, parms
, Qunsplittable
, 0, 0, RES_TYPE_BOOLEAN
);
3402 f
->no_split
= minibuffer_only
|| EQ (tem
, Qt
);
3404 x_icon_verify (f
, parms
);
3406 /* Create the X widget or window. */
3407 #ifdef USE_X_TOOLKIT
3408 x_window (f
, window_prompting
, minibuffer_only
);
3416 /* Now consider the frame official. */
3417 FRAME_X_DISPLAY_INFO (f
)->reference_count
++;
3418 Vframe_list
= Fcons (frame
, Vframe_list
);
3420 /* We need to do this after creating the X window, so that the
3421 icon-creation functions can say whose icon they're describing. */
3422 x_default_parameter (f
, parms
, Qicon_type
, Qt
,
3423 "bitmapIcon", "BitmapIcon", RES_TYPE_SYMBOL
);
3425 x_default_parameter (f
, parms
, Qauto_raise
, Qnil
,
3426 "autoRaise", "AutoRaiseLower", RES_TYPE_BOOLEAN
);
3427 x_default_parameter (f
, parms
, Qauto_lower
, Qnil
,
3428 "autoLower", "AutoRaiseLower", RES_TYPE_BOOLEAN
);
3429 x_default_parameter (f
, parms
, Qcursor_type
, Qbox
,
3430 "cursorType", "CursorType", RES_TYPE_SYMBOL
);
3431 x_default_parameter (f
, parms
, Qscroll_bar_width
, Qnil
,
3432 "scrollBarWidth", "ScrollBarWidth",
3434 x_default_parameter (f
, parms
, Qalpha
, Qnil
,
3435 "alpha", "Alpha", RES_TYPE_NUMBER
);
3437 /* Dimensions, especially FRAME_LINES (f), must be done via change_frame_size.
3438 Change will not be effected unless different from the current
3440 width
= FRAME_COLS (f
);
3441 height
= FRAME_LINES (f
);
3443 SET_FRAME_COLS (f
, 0);
3444 FRAME_LINES (f
) = 0;
3445 change_frame_size (f
, height
, width
, 1, 0, 0);
3447 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
3448 /* Create the menu bar. */
3449 if (!minibuffer_only
&& FRAME_EXTERNAL_MENU_BAR (f
))
3451 /* If this signals an error, we haven't set size hints for the
3452 frame and we didn't make it visible. */
3453 initialize_frame_menubar (f
);
3456 /* This is a no-op, except under Motif where it arranges the
3457 main window for the widgets on it. */
3458 lw_set_main_areas (f
->output_data
.x
->column_widget
,
3459 f
->output_data
.x
->menubar_widget
,
3460 f
->output_data
.x
->edit_widget
);
3461 #endif /* not USE_GTK */
3463 #endif /* USE_X_TOOLKIT || USE_GTK */
3465 /* Tell the server what size and position, etc, we want, and how
3466 badly we want them. This should be done after we have the menu
3467 bar so that its size can be taken into account. */
3469 x_wm_set_size_hint (f
, window_prompting
, 0);
3472 /* Make the window appear on the frame and enable display, unless
3473 the caller says not to. However, with explicit parent, Emacs
3474 cannot control visibility, so don't try. */
3475 if (! f
->output_data
.x
->explicit_parent
)
3477 Lisp_Object visibility
;
3479 visibility
= x_get_arg (dpyinfo
, parms
, Qvisibility
, 0, 0,
3481 if (EQ (visibility
, Qunbound
))
3484 if (EQ (visibility
, Qicon
))
3485 x_iconify_frame (f
);
3486 else if (! NILP (visibility
))
3487 x_make_frame_visible (f
);
3489 /* Must have been Qnil. */
3495 /* Set machine name and pid for the purpose of window managers. */
3496 set_machine_and_pid_properties(f
);
3498 /* Set the WM leader property. GTK does this itself, so this is not
3499 needed when using GTK. */
3500 if (dpyinfo
->client_leader_window
!= 0)
3502 XChangeProperty (FRAME_X_DISPLAY (f
),
3503 FRAME_OUTER_WINDOW (f
),
3504 dpyinfo
->Xatom_wm_client_leader
,
3505 XA_WINDOW
, 32, PropModeReplace
,
3506 (unsigned char *) &dpyinfo
->client_leader_window
, 1);
3511 /* Initialize `default-minibuffer-frame' in case this is the first
3512 frame on this terminal. */
3513 if (FRAME_HAS_MINIBUF_P (f
)
3514 && (!FRAMEP (kb
->Vdefault_minibuffer_frame
)
3515 || !FRAME_LIVE_P (XFRAME (kb
->Vdefault_minibuffer_frame
))))
3516 kb
->Vdefault_minibuffer_frame
= frame
;
3518 /* All remaining specified parameters, which have not been "used"
3519 by x_get_arg and friends, now go in the misc. alist of the frame. */
3520 for (tem
= parms
; CONSP (tem
); tem
= XCDR (tem
))
3521 if (CONSP (XCAR (tem
)) && !NILP (XCAR (XCAR (tem
))))
3522 f
->param_alist
= Fcons (XCAR (tem
), f
->param_alist
);
3526 /* Make sure windows on this frame appear in calls to next-window
3527 and similar functions. */
3528 Vwindow_list
= Qnil
;
3530 return unbind_to (count
, frame
);
3534 /* FRAME is used only to get a handle on the X display. We don't pass the
3535 display info directly because we're called from frame.c, which doesn't
3536 know about that structure. */
3539 x_get_focus_frame (struct frame
*frame
)
3541 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (frame
);
3543 if (! dpyinfo
->x_focus_frame
)
3546 XSETFRAME (xfocus
, dpyinfo
->x_focus_frame
);
3551 /* In certain situations, when the window manager follows a
3552 click-to-focus policy, there seems to be no way around calling
3553 XSetInputFocus to give another frame the input focus .
3555 In an ideal world, XSetInputFocus should generally be avoided so
3556 that applications don't interfere with the window manager's focus
3557 policy. But I think it's okay to use when it's clearly done
3558 following a user-command. */
3560 DEFUN ("x-focus-frame", Fx_focus_frame
, Sx_focus_frame
, 1, 1, 0,
3561 doc
: /* Set the input focus to FRAME.
3562 FRAME nil means use the selected frame. */)
3565 struct frame
*f
= check_x_frame (frame
);
3566 Display
*dpy
= FRAME_X_DISPLAY (f
);
3569 x_catch_errors (dpy
);
3570 XSetInputFocus (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
3571 RevertToParent
, CurrentTime
);
3572 x_ewmh_activate_frame (f
);
3573 x_uncatch_errors ();
3580 DEFUN ("xw-color-defined-p", Fxw_color_defined_p
, Sxw_color_defined_p
, 1, 2, 0,
3581 doc
: /* Internal function called by `color-defined-p', which see. */)
3582 (Lisp_Object color
, Lisp_Object frame
)
3585 FRAME_PTR f
= check_x_frame (frame
);
3587 CHECK_STRING (color
);
3589 if (x_defined_color (f
, SDATA (color
), &foo
, 0))
3595 DEFUN ("xw-color-values", Fxw_color_values
, Sxw_color_values
, 1, 2, 0,
3596 doc
: /* Internal function called by `color-values', which see. */)
3597 (Lisp_Object color
, Lisp_Object frame
)
3600 FRAME_PTR f
= check_x_frame (frame
);
3602 CHECK_STRING (color
);
3604 if (x_defined_color (f
, SDATA (color
), &foo
, 0))
3605 return list3 (make_number (foo
.red
),
3606 make_number (foo
.green
),
3607 make_number (foo
.blue
));
3612 DEFUN ("xw-display-color-p", Fxw_display_color_p
, Sxw_display_color_p
, 0, 1, 0,
3613 doc
: /* Internal function called by `display-color-p', which see. */)
3614 (Lisp_Object terminal
)
3616 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3618 if (dpyinfo
->n_planes
<= 2)
3621 switch (dpyinfo
->visual
->class)
3634 DEFUN ("x-display-grayscale-p", Fx_display_grayscale_p
, Sx_display_grayscale_p
,
3636 doc
: /* Return t if the X display supports shades of gray.
3637 Note that color displays do support shades of gray.
3638 The optional argument TERMINAL specifies which display to ask about.
3639 TERMINAL should be a terminal object, a frame or a display name (a string).
3640 If omitted or nil, that stands for the selected frame's display. */)
3641 (Lisp_Object terminal
)
3643 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3645 if (dpyinfo
->n_planes
<= 1)
3648 switch (dpyinfo
->visual
->class)
3663 DEFUN ("x-display-pixel-width", Fx_display_pixel_width
, Sx_display_pixel_width
,
3665 doc
: /* Return the width in pixels of the X display TERMINAL.
3666 The optional argument TERMINAL specifies which display to ask about.
3667 TERMINAL should be a terminal object, a frame or a display name (a string).
3668 If omitted or nil, that stands for the selected frame's display. */)
3669 (Lisp_Object terminal
)
3671 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3673 return make_number (x_display_pixel_width (dpyinfo
));
3676 DEFUN ("x-display-pixel-height", Fx_display_pixel_height
,
3677 Sx_display_pixel_height
, 0, 1, 0,
3678 doc
: /* Return the height in pixels of the X display TERMINAL.
3679 The optional argument TERMINAL specifies which display to ask about.
3680 TERMINAL should be a terminal object, a frame or a display name (a string).
3681 If omitted or nil, that stands for the selected frame's display. */)
3682 (Lisp_Object terminal
)
3684 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3686 return make_number (x_display_pixel_height (dpyinfo
));
3689 DEFUN ("x-display-planes", Fx_display_planes
, Sx_display_planes
,
3691 doc
: /* Return the number of bitplanes of the X display TERMINAL.
3692 The optional argument TERMINAL specifies which display to ask about.
3693 TERMINAL should be a terminal object, a frame or a display name (a string).
3694 If omitted or nil, that stands for the selected frame's display. */)
3695 (Lisp_Object terminal
)
3697 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3699 return make_number (dpyinfo
->n_planes
);
3702 DEFUN ("x-display-color-cells", Fx_display_color_cells
, Sx_display_color_cells
,
3704 doc
: /* Return the number of color cells of the X display TERMINAL.
3705 The optional argument TERMINAL specifies which display to ask about.
3706 TERMINAL should be a terminal object, a frame or a display name (a string).
3707 If omitted or nil, that stands for the selected frame's display. */)
3708 (Lisp_Object terminal
)
3710 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3712 int nr_planes
= DisplayPlanes (dpyinfo
->display
,
3713 XScreenNumberOfScreen (dpyinfo
->screen
));
3715 /* Truncate nr_planes to 24 to avoid integer overflow.
3716 Some displays says 32, but only 24 bits are actually significant.
3717 There are only very few and rare video cards that have more than
3718 24 significant bits. Also 24 bits is more than 16 million colors,
3719 it "should be enough for everyone". */
3720 if (nr_planes
> 24) nr_planes
= 24;
3722 return make_number (1 << nr_planes
);
3725 DEFUN ("x-server-max-request-size", Fx_server_max_request_size
,
3726 Sx_server_max_request_size
,
3728 doc
: /* Return the maximum request size of the X server of display TERMINAL.
3729 The optional argument TERMINAL specifies which display to ask about.
3730 TERMINAL should be a terminal object, a frame or a display name (a string).
3731 If omitted or nil, that stands for the selected frame's display. */)
3732 (Lisp_Object terminal
)
3734 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3736 return make_number (MAXREQUEST (dpyinfo
->display
));
3739 DEFUN ("x-server-vendor", Fx_server_vendor
, Sx_server_vendor
, 0, 1, 0,
3740 doc
: /* Return the "vendor ID" string of the X server of display TERMINAL.
3741 \(Labelling every distributor as a "vendor" embodies the false assumption
3742 that operating systems cannot be developed and distributed noncommercially.)
3743 The optional argument TERMINAL specifies which display to ask about.
3744 TERMINAL should be a terminal object, a frame or a display name (a string).
3745 If omitted or nil, that stands for the selected frame's display. */)
3746 (Lisp_Object terminal
)
3748 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3749 const char *vendor
= ServerVendor (dpyinfo
->display
);
3751 if (! vendor
) vendor
= "";
3752 return build_string (vendor
);
3755 DEFUN ("x-server-version", Fx_server_version
, Sx_server_version
, 0, 1, 0,
3756 doc
: /* Return the version numbers of the X server of display TERMINAL.
3757 The value is a list of three integers: the major and minor
3758 version numbers of the X Protocol in use, and the distributor-specific release
3759 number. See also the function `x-server-vendor'.
3761 The optional argument TERMINAL specifies which display to ask about.
3762 TERMINAL should be a terminal object, a frame or a display name (a string).
3763 If omitted or nil, that stands for the selected frame's display. */)
3764 (Lisp_Object terminal
)
3766 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3767 Display
*dpy
= dpyinfo
->display
;
3769 return Fcons (make_number (ProtocolVersion (dpy
)),
3770 Fcons (make_number (ProtocolRevision (dpy
)),
3771 Fcons (make_number (VendorRelease (dpy
)), Qnil
)));
3774 DEFUN ("x-display-screens", Fx_display_screens
, Sx_display_screens
, 0, 1, 0,
3775 doc
: /* Return the number of screens on the X server of display TERMINAL.
3776 The optional argument TERMINAL specifies which display to ask about.
3777 TERMINAL should be a terminal object, a frame or a display name (a string).
3778 If omitted or nil, that stands for the selected frame's display. */)
3779 (Lisp_Object terminal
)
3781 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3783 return make_number (ScreenCount (dpyinfo
->display
));
3786 DEFUN ("x-display-mm-height", Fx_display_mm_height
, Sx_display_mm_height
, 0, 1, 0,
3787 doc
: /* Return the height in millimeters of the X display TERMINAL.
3788 The optional argument TERMINAL specifies which display to ask about.
3789 TERMINAL should be a terminal object, a frame or a display name (a string).
3790 If omitted or nil, that stands for the selected frame's display. */)
3791 (Lisp_Object terminal
)
3793 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3795 return make_number (HeightMMOfScreen (dpyinfo
->screen
));
3798 DEFUN ("x-display-mm-width", Fx_display_mm_width
, Sx_display_mm_width
, 0, 1, 0,
3799 doc
: /* Return the width in millimeters of the X display TERMINAL.
3800 The optional argument TERMINAL specifies which display to ask about.
3801 TERMINAL should be a terminal object, a frame or a display name (a string).
3802 If omitted or nil, that stands for the selected frame's display. */)
3803 (Lisp_Object terminal
)
3805 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3807 return make_number (WidthMMOfScreen (dpyinfo
->screen
));
3810 DEFUN ("x-display-backing-store", Fx_display_backing_store
,
3811 Sx_display_backing_store
, 0, 1, 0,
3812 doc
: /* Return an indication of whether X display TERMINAL does backing store.
3813 The value may be `always', `when-mapped', or `not-useful'.
3814 The optional argument TERMINAL specifies which display to ask about.
3815 TERMINAL should be a terminal object, a frame or a display name (a string).
3816 If omitted or nil, that stands for the selected frame's display. */)
3817 (Lisp_Object terminal
)
3819 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3822 switch (DoesBackingStore (dpyinfo
->screen
))
3825 result
= intern ("always");
3829 result
= intern ("when-mapped");
3833 result
= intern ("not-useful");
3837 error ("Strange value for BackingStore parameter of screen");
3844 DEFUN ("x-display-visual-class", Fx_display_visual_class
,
3845 Sx_display_visual_class
, 0, 1, 0,
3846 doc
: /* Return the visual class of the X display TERMINAL.
3847 The value is one of the symbols `static-gray', `gray-scale',
3848 `static-color', `pseudo-color', `true-color', or `direct-color'.
3850 The optional argument TERMINAL specifies which display to ask about.
3851 TERMINAL should a terminal object, a frame or a display name (a string).
3852 If omitted or nil, that stands for the selected frame's display. */)
3853 (Lisp_Object terminal
)
3855 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3858 switch (dpyinfo
->visual
->class)
3861 result
= intern ("static-gray");
3864 result
= intern ("gray-scale");
3867 result
= intern ("static-color");
3870 result
= intern ("pseudo-color");
3873 result
= intern ("true-color");
3876 result
= intern ("direct-color");
3879 error ("Display has an unknown visual class");
3886 DEFUN ("x-display-save-under", Fx_display_save_under
,
3887 Sx_display_save_under
, 0, 1, 0,
3888 doc
: /* Return t if the X display TERMINAL supports the save-under feature.
3889 The optional argument TERMINAL specifies which display to ask about.
3890 TERMINAL should be a terminal object, a frame or a display name (a string).
3891 If omitted or nil, that stands for the selected frame's display. */)
3892 (Lisp_Object terminal
)
3894 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
3896 if (DoesSaveUnders (dpyinfo
->screen
) == True
)
3903 x_pixel_width (register struct frame
*f
)
3905 return FRAME_PIXEL_WIDTH (f
);
3909 x_pixel_height (register struct frame
*f
)
3911 return FRAME_PIXEL_HEIGHT (f
);
3915 x_char_width (register struct frame
*f
)
3917 return FRAME_COLUMN_WIDTH (f
);
3921 x_char_height (register struct frame
*f
)
3923 return FRAME_LINE_HEIGHT (f
);
3927 x_screen_planes (register struct frame
*f
)
3929 return FRAME_X_DISPLAY_INFO (f
)->n_planes
;
3934 /************************************************************************
3936 ************************************************************************/
3939 /* Mapping visual names to visuals. */
3941 static struct visual_class
3948 {"StaticGray", StaticGray
},
3949 {"GrayScale", GrayScale
},
3950 {"StaticColor", StaticColor
},
3951 {"PseudoColor", PseudoColor
},
3952 {"TrueColor", TrueColor
},
3953 {"DirectColor", DirectColor
},
3958 #ifndef HAVE_XSCREENNUMBEROFSCREEN
3960 /* Value is the screen number of screen SCR. This is a substitute for
3961 the X function with the same name when that doesn't exist. */
3964 XScreenNumberOfScreen (scr
)
3965 register Screen
*scr
;
3967 Display
*dpy
= scr
->display
;
3970 for (i
= 0; i
< dpy
->nscreens
; ++i
)
3971 if (scr
== dpy
->screens
+ i
)
3977 #endif /* not HAVE_XSCREENNUMBEROFSCREEN */
3980 /* Select the visual that should be used on display DPYINFO. Set
3981 members of DPYINFO appropriately. Called from x_term_init. */
3984 select_visual (struct x_display_info
*dpyinfo
)
3986 Display
*dpy
= dpyinfo
->display
;
3987 Screen
*screen
= dpyinfo
->screen
;
3990 /* See if a visual is specified. */
3991 value
= display_x_get_resource (dpyinfo
,
3992 build_string ("visualClass"),
3993 build_string ("VisualClass"),
3995 if (STRINGP (value
))
3997 /* VALUE should be of the form CLASS-DEPTH, where CLASS is one
3998 of `PseudoColor', `TrueColor' etc. and DEPTH is the color
3999 depth, a decimal number. NAME is compared with case ignored. */
4000 char *s
= (char *) alloca (SBYTES (value
) + 1);
4005 strcpy (s
, SDATA (value
));
4006 dash
= strchr (s
, '-');
4009 dpyinfo
->n_planes
= atoi (dash
+ 1);
4013 /* We won't find a matching visual with depth 0, so that
4014 an error will be printed below. */
4015 dpyinfo
->n_planes
= 0;
4017 /* Determine the visual class. */
4018 for (i
= 0; visual_classes
[i
].name
; ++i
)
4019 if (xstrcasecmp (s
, visual_classes
[i
].name
) == 0)
4021 class = visual_classes
[i
].class;
4025 /* Look up a matching visual for the specified class. */
4027 || !XMatchVisualInfo (dpy
, XScreenNumberOfScreen (screen
),
4028 dpyinfo
->n_planes
, class, &vinfo
))
4029 fatal ("Invalid visual specification `%s'", SDATA (value
));
4031 dpyinfo
->visual
= vinfo
.visual
;
4036 XVisualInfo
*vinfo
, vinfo_template
;
4038 dpyinfo
->visual
= DefaultVisualOfScreen (screen
);
4040 vinfo_template
.visualid
= XVisualIDFromVisual (dpyinfo
->visual
);
4041 vinfo_template
.screen
= XScreenNumberOfScreen (screen
);
4042 vinfo
= XGetVisualInfo (dpy
, VisualIDMask
| VisualScreenMask
,
4043 &vinfo_template
, &n_visuals
);
4045 fatal ("Can't get proper X visual info");
4047 dpyinfo
->n_planes
= vinfo
->depth
;
4048 XFree ((char *) vinfo
);
4053 /* Return the X display structure for the display named NAME.
4054 Open a new connection if necessary. */
4056 struct x_display_info
*
4057 x_display_info_for_name (Lisp_Object name
)
4060 struct x_display_info
*dpyinfo
;
4062 CHECK_STRING (name
);
4065 if (! EQ (Vinitial_window_system
, intern ("x")))
4066 error ("Not using X Windows"); /* That doesn't stop us anymore. */
4069 for (dpyinfo
= x_display_list
, names
= x_display_name_list
;
4071 dpyinfo
= dpyinfo
->next
, names
= XCDR (names
))
4074 tem
= Fstring_equal (XCAR (XCAR (names
)), name
);
4079 /* Use this general default value to start with. */
4080 Vx_resource_name
= Vinvocation_name
;
4082 validate_x_resource_name ();
4084 dpyinfo
= x_term_init (name
, (char *)0,
4085 (char *) SDATA (Vx_resource_name
));
4088 error ("Cannot connect to X server %s", SDATA (name
));
4091 XSETFASTINT (Vwindow_system_version
, 11);
4097 DEFUN ("x-open-connection", Fx_open_connection
, Sx_open_connection
,
4099 doc
: /* Open a connection to an X server.
4100 DISPLAY is the name of the display to connect to.
4101 Optional second arg XRM-STRING is a string of resources in xrdb format.
4102 If the optional third arg MUST-SUCCEED is non-nil,
4103 terminate Emacs if we can't open the connection. */)
4104 (Lisp_Object display
, Lisp_Object xrm_string
, Lisp_Object must_succeed
)
4106 unsigned char *xrm_option
;
4107 struct x_display_info
*dpyinfo
;
4109 CHECK_STRING (display
);
4110 if (! NILP (xrm_string
))
4111 CHECK_STRING (xrm_string
);
4114 if (! EQ (Vinitial_window_system
, intern ("x")))
4115 error ("Not using X Windows"); /* That doesn't stop us anymore. */
4118 if (! NILP (xrm_string
))
4119 xrm_option
= (unsigned char *) SDATA (xrm_string
);
4121 xrm_option
= (unsigned char *) 0;
4123 validate_x_resource_name ();
4125 /* This is what opens the connection and sets x_current_display.
4126 This also initializes many symbols, such as those used for input. */
4127 dpyinfo
= x_term_init (display
, xrm_option
,
4128 (char *) SDATA (Vx_resource_name
));
4132 if (!NILP (must_succeed
))
4133 fatal ("Cannot connect to X server %s.\n\
4134 Check the DISPLAY environment variable or use `-d'.\n\
4135 Also use the `xauth' program to verify that you have the proper\n\
4136 authorization information needed to connect the X server.\n\
4137 An insecure way to solve the problem may be to use `xhost'.\n",
4140 error ("Cannot connect to X server %s", SDATA (display
));
4145 XSETFASTINT (Vwindow_system_version
, 11);
4149 DEFUN ("x-close-connection", Fx_close_connection
,
4150 Sx_close_connection
, 1, 1, 0,
4151 doc
: /* Close the connection to TERMINAL's X server.
4152 For TERMINAL, specify a terminal object, a frame or a display name (a
4153 string). If TERMINAL is nil, that stands for the selected frame's
4155 (Lisp_Object terminal
)
4157 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
4159 if (dpyinfo
->reference_count
> 0)
4160 error ("Display still has frames on it");
4162 x_delete_terminal (dpyinfo
->terminal
);
4167 DEFUN ("x-display-list", Fx_display_list
, Sx_display_list
, 0, 0, 0,
4168 doc
: /* Return the list of display names that Emacs has connections to. */)
4171 Lisp_Object tail
, result
;
4174 for (tail
= x_display_name_list
; CONSP (tail
); tail
= XCDR (tail
))
4175 result
= Fcons (XCAR (XCAR (tail
)), result
);
4180 DEFUN ("x-synchronize", Fx_synchronize
, Sx_synchronize
, 1, 2, 0,
4181 doc
: /* If ON is non-nil, report X errors as soon as the erring request is made.
4182 If ON is nil, allow buffering of requests.
4183 Turning on synchronization prohibits the Xlib routines from buffering
4184 requests and seriously degrades performance, but makes debugging much
4186 The optional second argument TERMINAL specifies which display to act on.
4187 TERMINAL should be a terminal object, a frame or a display name (a string).
4188 If TERMINAL is omitted or nil, that stands for the selected frame's display. */)
4189 (Lisp_Object on
, Lisp_Object terminal
)
4191 struct x_display_info
*dpyinfo
= check_x_display_info (terminal
);
4193 XSynchronize (dpyinfo
->display
, !EQ (on
, Qnil
));
4198 /* Wait for responses to all X commands issued so far for frame F. */
4201 x_sync (FRAME_PTR f
)
4204 XSync (FRAME_X_DISPLAY (f
), False
);
4209 /***********************************************************************
4211 ***********************************************************************/
4213 DEFUN ("x-change-window-property", Fx_change_window_property
,
4214 Sx_change_window_property
, 2, 6, 0,
4215 doc
: /* Change window property PROP to VALUE on the X window of FRAME.
4216 PROP must be a string.
4217 VALUE may be a string or a list of conses, numbers and/or strings.
4218 If an element in the list is a string, it is converted to
4219 an Atom and the value of the Atom is used. If an element is a cons,
4220 it is converted to a 32 bit number where the car is the 16 top bits and the
4221 cdr is the lower 16 bits.
4222 FRAME nil or omitted means use the selected frame.
4223 If TYPE is given and non-nil, it is the name of the type of VALUE.
4224 If TYPE is not given or nil, the type is STRING.
4225 FORMAT gives the size in bits of each element if VALUE is a list.
4226 It must be one of 8, 16 or 32.
4227 If VALUE is a string or FORMAT is nil or not given, FORMAT defaults to 8.
4228 If OUTER_P is non-nil, the property is changed for the outer X window of
4229 FRAME. Default is to change on the edit X window.
4232 (Lisp_Object prop
, Lisp_Object value
, Lisp_Object frame
, Lisp_Object type
, Lisp_Object format
, Lisp_Object outer_p
)
4234 struct frame
*f
= check_x_frame (frame
);
4236 Atom target_type
= XA_STRING
;
4237 int element_format
= 8;
4238 unsigned char *data
;
4242 CHECK_STRING (prop
);
4244 if (! NILP (format
))
4246 CHECK_NUMBER (format
);
4247 element_format
= XFASTINT (format
);
4249 if (element_format
!= 8 && element_format
!= 16
4250 && element_format
!= 32)
4251 error ("FORMAT must be one of 8, 16 or 32");
4256 nelements
= x_check_property_data (value
);
4257 if (nelements
== -1)
4258 error ("Bad data in VALUE, must be number, string or cons");
4260 if (element_format
== 8)
4261 data
= (unsigned char *) xmalloc (nelements
);
4262 else if (element_format
== 16)
4263 data
= (unsigned char *) xmalloc (nelements
*2);
4264 else /* format == 32 */
4265 /* The man page for XChangeProperty:
4266 "If the specified format is 32, the property data must be a
4268 This applies even if long is more than 64 bits. The X library
4269 converts to 32 bits before sending to the X server. */
4270 data
= (unsigned char *) xmalloc (nelements
* sizeof(long));
4272 x_fill_property_data (FRAME_X_DISPLAY (f
), value
, data
, element_format
);
4276 CHECK_STRING (value
);
4277 data
= SDATA (value
);
4278 nelements
= SCHARS (value
);
4282 prop_atom
= XInternAtom (FRAME_X_DISPLAY (f
), SDATA (prop
), False
);
4285 CHECK_STRING (type
);
4286 target_type
= XInternAtom (FRAME_X_DISPLAY (f
), SDATA (type
), False
);
4289 if (! NILP (outer_p
)) w
= FRAME_OUTER_WINDOW (f
);
4290 else w
= FRAME_X_WINDOW (f
);
4292 XChangeProperty (FRAME_X_DISPLAY (f
), w
,
4293 prop_atom
, target_type
, element_format
, PropModeReplace
,
4296 if (CONSP (value
)) xfree (data
);
4298 /* Make sure the property is set when we return. */
4299 XFlush (FRAME_X_DISPLAY (f
));
4306 DEFUN ("x-delete-window-property", Fx_delete_window_property
,
4307 Sx_delete_window_property
, 1, 2, 0,
4308 doc
: /* Remove window property PROP from X window of FRAME.
4309 FRAME nil or omitted means use the selected frame. Value is PROP. */)
4310 (Lisp_Object prop
, Lisp_Object frame
)
4312 struct frame
*f
= check_x_frame (frame
);
4315 CHECK_STRING (prop
);
4317 prop_atom
= XInternAtom (FRAME_X_DISPLAY (f
), SDATA (prop
), False
);
4318 XDeleteProperty (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), prop_atom
);
4320 /* Make sure the property is removed when we return. */
4321 XFlush (FRAME_X_DISPLAY (f
));
4328 DEFUN ("x-window-property", Fx_window_property
, Sx_window_property
,
4330 doc
: /* Value is the value of window property PROP on FRAME.
4331 If FRAME is nil or omitted, use the selected frame.
4332 If TYPE is nil or omitted, get the property as a string. Otherwise TYPE
4333 is the name of the Atom that denotes the type expected.
4334 If SOURCE is non-nil, get the property on that window instead of from
4335 FRAME. The number 0 denotes the root window.
4336 If DELETE_P is non-nil, delete the property after retreiving it.
4337 If VECTOR_RET_P is non-nil, don't return a string but a vector of values.
4339 Value is nil if FRAME hasn't a property with name PROP or if PROP has
4340 no value of TYPE. */)
4341 (Lisp_Object prop
, Lisp_Object frame
, Lisp_Object type
, Lisp_Object source
, Lisp_Object delete_p
, Lisp_Object vector_ret_p
)
4343 struct frame
*f
= check_x_frame (frame
);
4346 Lisp_Object prop_value
= Qnil
;
4347 unsigned char *tmp_data
= NULL
;
4349 Atom target_type
= XA_STRING
;
4351 unsigned long actual_size
, bytes_remaining
;
4352 Window target_window
= FRAME_X_WINDOW (f
);
4353 struct gcpro gcpro1
;
4355 GCPRO1 (prop_value
);
4356 CHECK_STRING (prop
);
4358 if (! NILP (source
))
4360 if (NUMBERP (source
))
4362 if (FLOATP (source
))
4363 target_window
= (Window
) XFLOAT (source
);
4365 target_window
= XFASTINT (source
);
4367 if (target_window
== 0)
4368 target_window
= FRAME_X_DISPLAY_INFO (f
)->root_window
;
4370 else if (CONSP (source
))
4371 target_window
= cons_to_long (source
);
4377 if (strcmp ("AnyPropertyType", SDATA (type
)) == 0)
4378 target_type
= AnyPropertyType
;
4380 target_type
= XInternAtom (FRAME_X_DISPLAY (f
), SDATA (type
), False
);
4383 prop_atom
= XInternAtom (FRAME_X_DISPLAY (f
), SDATA (prop
), False
);
4384 rc
= XGetWindowProperty (FRAME_X_DISPLAY (f
), target_window
,
4385 prop_atom
, 0, 0, False
, target_type
,
4386 &actual_type
, &actual_format
, &actual_size
,
4387 &bytes_remaining
, &tmp_data
);
4390 int size
= bytes_remaining
;
4395 rc
= XGetWindowProperty (FRAME_X_DISPLAY (f
), target_window
,
4396 prop_atom
, 0, bytes_remaining
,
4397 ! NILP (delete_p
), target_type
,
4398 &actual_type
, &actual_format
,
4399 &actual_size
, &bytes_remaining
,
4401 if (rc
== Success
&& tmp_data
)
4403 /* The man page for XGetWindowProperty says:
4404 "If the returned format is 32, the returned data is represented
4405 as a long array and should be cast to that type to obtain the
4407 This applies even if long is more than 32 bits, the X library
4408 converts from 32 bit elements received from the X server to long
4409 and passes the long array to us. Thus, for that case memcpy can not
4410 be used. We convert to a 32 bit type here, because so much code
4413 The bytes and offsets passed to XGetWindowProperty refers to the
4414 property and those are indeed in 32 bit quantities if format is
4417 if (actual_format
== 32 && actual_format
< BITS_PER_LONG
)
4420 int *idata
= (int *) tmp_data
;
4421 long *ldata
= (long *) tmp_data
;
4423 for (i
= 0; i
< actual_size
; ++i
)
4424 idata
[i
] = (int) ldata
[i
];
4427 if (NILP (vector_ret_p
))
4428 prop_value
= make_string (tmp_data
, size
);
4430 prop_value
= x_property_data_to_lisp (f
,
4437 if (tmp_data
) XFree (tmp_data
);
4447 /***********************************************************************
4449 ***********************************************************************/
4451 /* Timer function of hourglass_atimer. TIMER is equal to
4454 Display an hourglass pointer on all frames by mapping the frames'
4455 hourglass_window. Set the hourglass_p flag in the frames'
4456 output_data.x structure to indicate that an hourglass cursor is
4457 shown on the frames. */
4460 show_hourglass (struct atimer
*timer
)
4462 /* The timer implementation will cancel this timer automatically
4463 after this function has run. Set hourglass_atimer to null
4464 so that we know the timer doesn't have to be canceled. */
4465 hourglass_atimer
= NULL
;
4467 if (!hourglass_shown_p
)
4469 Lisp_Object rest
, frame
;
4473 FOR_EACH_FRAME (rest
, frame
)
4475 struct frame
*f
= XFRAME (frame
);
4477 if (FRAME_LIVE_P (f
) && FRAME_X_P (f
) && FRAME_X_DISPLAY (f
))
4479 Display
*dpy
= FRAME_X_DISPLAY (f
);
4481 #ifdef USE_X_TOOLKIT
4482 if (f
->output_data
.x
->widget
)
4484 if (FRAME_OUTER_WINDOW (f
))
4487 f
->output_data
.x
->hourglass_p
= 1;
4489 if (!f
->output_data
.x
->hourglass_window
)
4491 unsigned long mask
= CWCursor
;
4492 XSetWindowAttributes attrs
;
4494 Window parent
= FRAME_X_WINDOW (f
);
4496 Window parent
= FRAME_OUTER_WINDOW (f
);
4498 attrs
.cursor
= f
->output_data
.x
->hourglass_cursor
;
4500 f
->output_data
.x
->hourglass_window
4501 = XCreateWindow (dpy
, parent
,
4502 0, 0, 32000, 32000, 0, 0,
4508 XMapRaised (dpy
, f
->output_data
.x
->hourglass_window
);
4514 hourglass_shown_p
= 1;
4520 /* Hide the hourglass pointer on all frames, if it is currently
4524 hide_hourglass (void)
4526 if (hourglass_shown_p
)
4528 Lisp_Object rest
, frame
;
4531 FOR_EACH_FRAME (rest
, frame
)
4533 struct frame
*f
= XFRAME (frame
);
4536 /* Watch out for newly created frames. */
4537 && f
->output_data
.x
->hourglass_window
)
4539 XUnmapWindow (FRAME_X_DISPLAY (f
),
4540 f
->output_data
.x
->hourglass_window
);
4541 /* Sync here because XTread_socket looks at the
4542 hourglass_p flag that is reset to zero below. */
4543 XSync (FRAME_X_DISPLAY (f
), False
);
4544 f
->output_data
.x
->hourglass_p
= 0;
4548 hourglass_shown_p
= 0;
4555 /***********************************************************************
4557 ***********************************************************************/
4559 static Lisp_Object
x_create_tip_frame (struct x_display_info
*,
4560 Lisp_Object
, Lisp_Object
);
4561 static void compute_tip_xy (struct frame
*, Lisp_Object
, Lisp_Object
,
4562 Lisp_Object
, int, int, int *, int *);
4564 /* The frame of a currently visible tooltip. */
4566 Lisp_Object tip_frame
;
4568 /* If non-nil, a timer started that hides the last tooltip when it
4571 Lisp_Object tip_timer
;
4574 /* If non-nil, a vector of 3 elements containing the last args
4575 with which x-show-tip was called. See there. */
4577 Lisp_Object last_show_tip_args
;
4579 /* Maximum size for tooltips; a cons (COLUMNS . ROWS). */
4581 Lisp_Object Vx_max_tooltip_size
;
4585 unwind_create_tip_frame (Lisp_Object frame
)
4587 Lisp_Object deleted
;
4589 deleted
= unwind_create_frame (frame
);
4590 if (EQ (deleted
, Qt
))
4600 /* Create a frame for a tooltip on the display described by DPYINFO.
4601 PARMS is a list of frame parameters. TEXT is the string to
4602 display in the tip frame. Value is the frame.
4604 Note that functions called here, esp. x_default_parameter can
4605 signal errors, for instance when a specified color name is
4606 undefined. We have to make sure that we're in a consistent state
4607 when this happens. */
4610 x_create_tip_frame (struct x_display_info
*dpyinfo
,
4615 Lisp_Object frame
, tem
;
4617 long window_prompting
= 0;
4619 int count
= SPECPDL_INDEX ();
4620 struct gcpro gcpro1
, gcpro2
, gcpro3
;
4621 int face_change_count_before
= face_change_count
;
4623 struct buffer
*old_buffer
;
4627 if (!dpyinfo
->terminal
->name
)
4628 error ("Terminal is not live, can't create new frames on it");
4630 parms
= Fcopy_alist (parms
);
4632 /* Get the name of the frame to use for resource lookup. */
4633 name
= x_get_arg (dpyinfo
, parms
, Qname
, "name", "Name", RES_TYPE_STRING
);
4635 && !EQ (name
, Qunbound
)
4637 error ("Invalid frame name--not a string or nil");
4640 GCPRO3 (parms
, name
, frame
);
4642 XSETFRAME (frame
, f
);
4644 buffer
= Fget_buffer_create (build_string (" *tip*"));
4645 Fset_window_buffer (FRAME_ROOT_WINDOW (f
), buffer
, Qnil
);
4646 old_buffer
= current_buffer
;
4647 set_buffer_internal_1 (XBUFFER (buffer
));
4648 current_buffer
->truncate_lines
= Qnil
;
4649 specbind (Qinhibit_read_only
, Qt
);
4650 specbind (Qinhibit_modification_hooks
, Qt
);
4653 set_buffer_internal_1 (old_buffer
);
4655 FRAME_CAN_HAVE_SCROLL_BARS (f
) = 0;
4656 record_unwind_protect (unwind_create_tip_frame
, frame
);
4658 f
->terminal
= dpyinfo
->terminal
;
4659 f
->terminal
->reference_count
++;
4661 /* By setting the output method, we're essentially saying that
4662 the frame is live, as per FRAME_LIVE_P. If we get a signal
4663 from this point on, x_destroy_window might screw up reference
4665 f
->output_method
= output_x_window
;
4666 f
->output_data
.x
= (struct x_output
*) xmalloc (sizeof (struct x_output
));
4667 memset (f
->output_data
.x
, 0, sizeof (struct x_output
));
4668 f
->output_data
.x
->icon_bitmap
= -1;
4669 FRAME_FONTSET (f
) = -1;
4670 f
->output_data
.x
->scroll_bar_foreground_pixel
= -1;
4671 f
->output_data
.x
->scroll_bar_background_pixel
= -1;
4672 #ifdef USE_TOOLKIT_SCROLL_BARS
4673 f
->output_data
.x
->scroll_bar_top_shadow_pixel
= -1;
4674 f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
= -1;
4675 #endif /* USE_TOOLKIT_SCROLL_BARS */
4676 f
->icon_name
= Qnil
;
4677 FRAME_X_DISPLAY_INFO (f
) = dpyinfo
;
4679 image_cache_refcount
= FRAME_IMAGE_CACHE (f
)->refcount
;
4680 dpyinfo_refcount
= dpyinfo
->reference_count
;
4681 #endif /* GLYPH_DEBUG */
4682 f
->output_data
.x
->parent_desc
= FRAME_X_DISPLAY_INFO (f
)->root_window
;
4683 f
->output_data
.x
->explicit_parent
= 0;
4685 /* These colors will be set anyway later, but it's important
4686 to get the color reference counts right, so initialize them! */
4689 struct gcpro gcpro1
;
4691 /* Function x_decode_color can signal an error. Make
4692 sure to initialize color slots so that we won't try
4693 to free colors we haven't allocated. */
4694 FRAME_FOREGROUND_PIXEL (f
) = -1;
4695 FRAME_BACKGROUND_PIXEL (f
) = -1;
4696 f
->output_data
.x
->cursor_pixel
= -1;
4697 f
->output_data
.x
->cursor_foreground_pixel
= -1;
4698 f
->output_data
.x
->border_pixel
= -1;
4699 f
->output_data
.x
->mouse_pixel
= -1;
4701 black
= build_string ("black");
4703 FRAME_FOREGROUND_PIXEL (f
)
4704 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
4705 FRAME_BACKGROUND_PIXEL (f
)
4706 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
4707 f
->output_data
.x
->cursor_pixel
4708 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
4709 f
->output_data
.x
->cursor_foreground_pixel
4710 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
4711 f
->output_data
.x
->border_pixel
4712 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
4713 f
->output_data
.x
->mouse_pixel
4714 = x_decode_color (f
, black
, BLACK_PIX_DEFAULT (f
));
4718 /* Set the name; the functions to which we pass f expect the name to
4720 if (EQ (name
, Qunbound
) || NILP (name
))
4722 f
->name
= build_string (dpyinfo
->x_id_name
);
4723 f
->explicit_name
= 0;
4728 f
->explicit_name
= 1;
4729 /* use the frame's title when getting resources for this frame. */
4730 specbind (Qx_resource_name
, name
);
4733 f
->resx
= dpyinfo
->resx
;
4734 f
->resy
= dpyinfo
->resy
;
4736 register_font_driver (&xfont_driver
, f
);
4737 #ifdef HAVE_FREETYPE
4739 register_font_driver (&xftfont_driver
, f
);
4740 #else /* not HAVE_XFT */
4741 register_font_driver (&ftxfont_driver
, f
);
4742 #endif /* not HAVE_XFT */
4743 #endif /* HAVE_FREETYPE */
4745 x_default_parameter (f
, parms
, Qfont_backend
, Qnil
,
4746 "fontBackend", "FontBackend", RES_TYPE_STRING
);
4748 /* Extract the window parameters from the supplied values that are
4749 needed to determine window geometry. */
4750 x_default_font_parameter (f
, parms
);
4752 x_default_parameter (f
, parms
, Qborder_width
, make_number (0),
4753 "borderWidth", "BorderWidth", RES_TYPE_NUMBER
);
4755 /* This defaults to 2 in order to match xterm. We recognize either
4756 internalBorderWidth or internalBorder (which is what xterm calls
4758 if (NILP (Fassq (Qinternal_border_width
, parms
)))
4762 value
= x_get_arg (dpyinfo
, parms
, Qinternal_border_width
,
4763 "internalBorder", "internalBorder", RES_TYPE_NUMBER
);
4764 if (! EQ (value
, Qunbound
))
4765 parms
= Fcons (Fcons (Qinternal_border_width
, value
),
4769 x_default_parameter (f
, parms
, Qinternal_border_width
, make_number (1),
4770 "internalBorderWidth", "internalBorderWidth",
4773 /* Also do the stuff which must be set before the window exists. */
4774 x_default_parameter (f
, parms
, Qforeground_color
, build_string ("black"),
4775 "foreground", "Foreground", RES_TYPE_STRING
);
4776 x_default_parameter (f
, parms
, Qbackground_color
, build_string ("white"),
4777 "background", "Background", RES_TYPE_STRING
);
4778 x_default_parameter (f
, parms
, Qmouse_color
, build_string ("black"),
4779 "pointerColor", "Foreground", RES_TYPE_STRING
);
4780 x_default_parameter (f
, parms
, Qcursor_color
, build_string ("black"),
4781 "cursorColor", "Foreground", RES_TYPE_STRING
);
4782 x_default_parameter (f
, parms
, Qborder_color
, build_string ("black"),
4783 "borderColor", "BorderColor", RES_TYPE_STRING
);
4785 /* Init faces before x_default_parameter is called for scroll-bar
4786 parameters because that function calls x_set_scroll_bar_width,
4787 which calls change_frame_size, which calls Fset_window_buffer,
4788 which runs hooks, which call Fvertical_motion. At the end, we
4789 end up in init_iterator with a null face cache, which should not
4791 init_frame_faces (f
);
4793 f
->output_data
.x
->parent_desc
= FRAME_X_DISPLAY_INFO (f
)->root_window
;
4795 window_prompting
= x_figure_window_size (f
, parms
, 0);
4798 XSetWindowAttributes attrs
;
4800 Atom type
= FRAME_X_DISPLAY_INFO (f
)->Xatom_net_window_type_tooltip
;
4803 mask
= CWBackPixel
| CWOverrideRedirect
| CWEventMask
;
4804 if (DoesSaveUnders (dpyinfo
->screen
))
4805 mask
|= CWSaveUnder
;
4807 /* Window managers look at the override-redirect flag to determine
4808 whether or net to give windows a decoration (Xlib spec, chapter
4810 attrs
.override_redirect
= True
;
4811 attrs
.save_under
= True
;
4812 attrs
.background_pixel
= FRAME_BACKGROUND_PIXEL (f
);
4813 /* Arrange for getting MapNotify and UnmapNotify events. */
4814 attrs
.event_mask
= StructureNotifyMask
;
4816 = FRAME_X_WINDOW (f
)
4817 = XCreateWindow (FRAME_X_DISPLAY (f
),
4818 FRAME_X_DISPLAY_INFO (f
)->root_window
,
4819 /* x, y, width, height */
4823 CopyFromParent
, InputOutput
, CopyFromParent
,
4825 XChangeProperty (FRAME_X_DISPLAY (f
), tip_window
,
4826 FRAME_X_DISPLAY_INFO (f
)->Xatom_net_window_type
,
4827 XA_ATOM
, 32, PropModeReplace
,
4828 (unsigned char *)&type
, 1);
4834 x_default_parameter (f
, parms
, Qauto_raise
, Qnil
,
4835 "autoRaise", "AutoRaiseLower", RES_TYPE_BOOLEAN
);
4836 x_default_parameter (f
, parms
, Qauto_lower
, Qnil
,
4837 "autoLower", "AutoRaiseLower", RES_TYPE_BOOLEAN
);
4838 x_default_parameter (f
, parms
, Qcursor_type
, Qbox
,
4839 "cursorType", "CursorType", RES_TYPE_SYMBOL
);
4841 /* Dimensions, especially FRAME_LINES (f), must be done via change_frame_size.
4842 Change will not be effected unless different from the current
4844 width
= FRAME_COLS (f
);
4845 height
= FRAME_LINES (f
);
4846 SET_FRAME_COLS (f
, 0);
4847 FRAME_LINES (f
) = 0;
4848 change_frame_size (f
, height
, width
, 1, 0, 0);
4850 /* Add `tooltip' frame parameter's default value. */
4851 if (NILP (Fframe_parameter (frame
, Qtooltip
)))
4852 Fmodify_frame_parameters (frame
, Fcons (Fcons (Qtooltip
, Qt
), Qnil
));
4854 /* FIXME - can this be done in a similar way to normal frames?
4855 http://lists.gnu.org/archive/html/emacs-devel/2007-10/msg00641.html */
4857 /* Set the `display-type' frame parameter before setting up faces. */
4859 Lisp_Object disptype
;
4861 if (FRAME_X_DISPLAY_INFO (f
)->n_planes
== 1)
4862 disptype
= intern ("mono");
4863 else if (FRAME_X_DISPLAY_INFO (f
)->visual
->class == GrayScale
4864 || FRAME_X_DISPLAY_INFO (f
)->visual
->class == StaticGray
)
4865 disptype
= intern ("grayscale");
4867 disptype
= intern ("color");
4869 if (NILP (Fframe_parameter (frame
, Qdisplay_type
)))
4870 Fmodify_frame_parameters (frame
, Fcons (Fcons (Qdisplay_type
, disptype
),
4874 /* Set up faces after all frame parameters are known. This call
4875 also merges in face attributes specified for new frames.
4877 Frame parameters may be changed if .Xdefaults contains
4878 specifications for the default font. For example, if there is an
4879 `Emacs.default.attributeBackground: pink', the `background-color'
4880 attribute of the frame get's set, which let's the internal border
4881 of the tooltip frame appear in pink. Prevent this. */
4883 Lisp_Object bg
= Fframe_parameter (frame
, Qbackground_color
);
4885 /* Set tip_frame here, so that */
4887 call2 (Qface_set_after_frame_default
, frame
, Qnil
);
4889 if (!EQ (bg
, Fframe_parameter (frame
, Qbackground_color
)))
4890 Fmodify_frame_parameters (frame
, Fcons (Fcons (Qbackground_color
, bg
),
4898 /* It is now ok to make the frame official even if we get an error
4899 below. And the frame needs to be on Vframe_list or making it
4900 visible won't work. */
4901 Vframe_list
= Fcons (frame
, Vframe_list
);
4903 /* Now that the frame is official, it counts as a reference to
4905 FRAME_X_DISPLAY_INFO (f
)->reference_count
++;
4907 /* Setting attributes of faces of the tooltip frame from resources
4908 and similar will increment face_change_count, which leads to the
4909 clearing of all current matrices. Since this isn't necessary
4910 here, avoid it by resetting face_change_count to the value it
4911 had before we created the tip frame. */
4912 face_change_count
= face_change_count_before
;
4914 /* Discard the unwind_protect. */
4915 return unbind_to (count
, frame
);
4919 /* Compute where to display tip frame F. PARMS is the list of frame
4920 parameters for F. DX and DY are specified offsets from the current
4921 location of the mouse. WIDTH and HEIGHT are the width and height
4922 of the tooltip. Return coordinates relative to the root window of
4923 the display in *ROOT_X, and *ROOT_Y. */
4926 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
)
4928 Lisp_Object left
, top
;
4933 /* User-specified position? */
4934 left
= Fcdr (Fassq (Qleft
, parms
));
4935 top
= Fcdr (Fassq (Qtop
, parms
));
4937 /* Move the tooltip window where the mouse pointer is. Resize and
4939 if (!INTEGERP (left
) || !INTEGERP (top
))
4942 XQueryPointer (FRAME_X_DISPLAY (f
), FRAME_X_DISPLAY_INFO (f
)->root_window
,
4943 &root
, &child
, root_x
, root_y
, &win_x
, &win_y
, &pmask
);
4948 *root_y
= XINT (top
);
4949 else if (*root_y
+ XINT (dy
) <= 0)
4950 *root_y
= 0; /* Can happen for negative dy */
4951 else if (*root_y
+ XINT (dy
) + height
4952 <= x_display_pixel_height (FRAME_X_DISPLAY_INFO (f
)))
4953 /* It fits below the pointer */
4954 *root_y
+= XINT (dy
);
4955 else if (height
+ XINT (dy
) <= *root_y
)
4956 /* It fits above the pointer. */
4957 *root_y
-= height
+ XINT (dy
);
4959 /* Put it on the top. */
4962 if (INTEGERP (left
))
4963 *root_x
= XINT (left
);
4964 else if (*root_x
+ XINT (dx
) <= 0)
4965 *root_x
= 0; /* Can happen for negative dx */
4966 else if (*root_x
+ XINT (dx
) + width
4967 <= x_display_pixel_width (FRAME_X_DISPLAY_INFO (f
)))
4968 /* It fits to the right of the pointer. */
4969 *root_x
+= XINT (dx
);
4970 else if (width
+ XINT (dx
) <= *root_x
)
4971 /* It fits to the left of the pointer. */
4972 *root_x
-= width
+ XINT (dx
);
4974 /* Put it left-justified on the screen--it ought to fit that way. */
4979 DEFUN ("x-show-tip", Fx_show_tip
, Sx_show_tip
, 1, 6, 0,
4980 doc
: /* Show STRING in a "tooltip" window on frame FRAME.
4981 A tooltip window is a small X window displaying a string.
4983 This is an internal function; Lisp code should call `tooltip-show'.
4985 FRAME nil or omitted means use the selected frame.
4987 PARMS is an optional list of frame parameters which can be used to
4988 change the tooltip's appearance.
4990 Automatically hide the tooltip after TIMEOUT seconds. TIMEOUT nil
4991 means use the default timeout of 5 seconds.
4993 If the list of frame parameters PARAMS contains a `left' parameters,
4994 the tooltip is displayed at that x-position. Otherwise it is
4995 displayed at the mouse position, with offset DX added (default is 5 if
4996 DX isn't specified). Likewise for the y-position; if a `top' frame
4997 parameter is specified, it determines the y-position of the tooltip
4998 window, otherwise it is displayed at the mouse position, with offset
4999 DY added (default is -10).
5001 A tooltip's maximum size is specified by `x-max-tooltip-size'.
5002 Text larger than the specified size is clipped. */)
5003 (Lisp_Object string
, Lisp_Object frame
, Lisp_Object parms
, Lisp_Object timeout
, Lisp_Object dx
, Lisp_Object dy
)
5008 struct buffer
*old_buffer
;
5009 struct text_pos pos
;
5010 int i
, width
, height
;
5011 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
5012 int old_windows_or_buffers_changed
= windows_or_buffers_changed
;
5013 int count
= SPECPDL_INDEX ();
5015 specbind (Qinhibit_redisplay
, Qt
);
5017 GCPRO4 (string
, parms
, frame
, timeout
);
5019 CHECK_STRING (string
);
5020 if (SCHARS (string
) == 0)
5021 string
= make_unibyte_string (" ", 1);
5023 f
= check_x_frame (frame
);
5025 timeout
= make_number (5);
5027 CHECK_NATNUM (timeout
);
5030 dx
= make_number (5);
5035 dy
= make_number (-10);
5040 if (x_gtk_use_system_tooltips
)
5044 /* Hide a previous tip, if any. */
5048 if ((ok
= xg_prepare_tooltip (f
, string
, &width
, &height
)) != 0)
5050 compute_tip_xy (f
, parms
, dx
, dy
, width
, height
, &root_x
, &root_y
);
5051 xg_show_tooltip (f
, root_x
, root_y
);
5052 /* This is used in Fx_hide_tip. */
5053 XSETFRAME (tip_frame
, f
);
5056 if (ok
) goto start_timer
;
5058 #endif /* USE_GTK */
5060 if (NILP (last_show_tip_args
))
5061 last_show_tip_args
= Fmake_vector (make_number (3), Qnil
);
5063 if (!NILP (tip_frame
))
5065 Lisp_Object last_string
= AREF (last_show_tip_args
, 0);
5066 Lisp_Object last_frame
= AREF (last_show_tip_args
, 1);
5067 Lisp_Object last_parms
= AREF (last_show_tip_args
, 2);
5069 if (EQ (frame
, last_frame
)
5070 && !NILP (Fequal (last_string
, string
))
5071 && !NILP (Fequal (last_parms
, parms
)))
5073 struct frame
*f
= XFRAME (tip_frame
);
5075 /* Only DX and DY have changed. */
5076 if (!NILP (tip_timer
))
5078 Lisp_Object timer
= tip_timer
;
5080 call1 (Qcancel_timer
, timer
);
5084 compute_tip_xy (f
, parms
, dx
, dy
, FRAME_PIXEL_WIDTH (f
),
5085 FRAME_PIXEL_HEIGHT (f
), &root_x
, &root_y
);
5086 XMoveWindow (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
5093 /* Hide a previous tip, if any. */
5096 ASET (last_show_tip_args
, 0, string
);
5097 ASET (last_show_tip_args
, 1, frame
);
5098 ASET (last_show_tip_args
, 2, parms
);
5100 /* Add default values to frame parameters. */
5101 if (NILP (Fassq (Qname
, parms
)))
5102 parms
= Fcons (Fcons (Qname
, build_string ("tooltip")), parms
);
5103 if (NILP (Fassq (Qinternal_border_width
, parms
)))
5104 parms
= Fcons (Fcons (Qinternal_border_width
, make_number (3)), parms
);
5105 if (NILP (Fassq (Qborder_width
, parms
)))
5106 parms
= Fcons (Fcons (Qborder_width
, make_number (1)), parms
);
5107 if (NILP (Fassq (Qborder_color
, parms
)))
5108 parms
= Fcons (Fcons (Qborder_color
, build_string ("lightyellow")), parms
);
5109 if (NILP (Fassq (Qbackground_color
, parms
)))
5110 parms
= Fcons (Fcons (Qbackground_color
, build_string ("lightyellow")),
5113 /* Create a frame for the tooltip, and record it in the global
5114 variable tip_frame. */
5115 frame
= x_create_tip_frame (FRAME_X_DISPLAY_INFO (f
), parms
, string
);
5118 /* Set up the frame's root window. */
5119 w
= XWINDOW (FRAME_ROOT_WINDOW (f
));
5120 w
->left_col
= w
->top_line
= make_number (0);
5122 if (CONSP (Vx_max_tooltip_size
)
5123 && INTEGERP (XCAR (Vx_max_tooltip_size
))
5124 && XINT (XCAR (Vx_max_tooltip_size
)) > 0
5125 && INTEGERP (XCDR (Vx_max_tooltip_size
))
5126 && XINT (XCDR (Vx_max_tooltip_size
)) > 0)
5128 w
->total_cols
= XCAR (Vx_max_tooltip_size
);
5129 w
->total_lines
= XCDR (Vx_max_tooltip_size
);
5133 w
->total_cols
= make_number (80);
5134 w
->total_lines
= make_number (40);
5137 FRAME_TOTAL_COLS (f
) = XINT (w
->total_cols
);
5139 w
->pseudo_window_p
= 1;
5141 /* Display the tooltip text in a temporary buffer. */
5142 old_buffer
= current_buffer
;
5143 set_buffer_internal_1 (XBUFFER (XWINDOW (FRAME_ROOT_WINDOW (f
))->buffer
));
5144 current_buffer
->truncate_lines
= Qnil
;
5145 clear_glyph_matrix (w
->desired_matrix
);
5146 clear_glyph_matrix (w
->current_matrix
);
5147 SET_TEXT_POS (pos
, BEGV
, BEGV_BYTE
);
5148 try_window (FRAME_ROOT_WINDOW (f
), pos
, TRY_WINDOW_IGNORE_FONTS_CHANGE
);
5150 /* Compute width and height of the tooltip. */
5152 for (i
= 0; i
< w
->desired_matrix
->nrows
; ++i
)
5154 struct glyph_row
*row
= &w
->desired_matrix
->rows
[i
];
5158 /* Stop at the first empty row at the end. */
5159 if (!row
->enabled_p
|| !row
->displays_text_p
)
5162 /* Let the row go over the full width of the frame. */
5163 row
->full_width_p
= 1;
5165 row_width
= row
->pixel_width
;
5166 /* There's a glyph at the end of rows that is used to place
5167 the cursor there. Don't include the width of this glyph. */
5168 if (row
->used
[TEXT_AREA
])
5170 last
= &row
->glyphs
[TEXT_AREA
][row
->used
[TEXT_AREA
] - 1];
5171 if (INTEGERP (last
->object
))
5172 row_width
-= last
->pixel_width
;
5175 height
+= row
->height
;
5176 width
= max (width
, row_width
);
5179 /* Add the frame's internal border to the width and height the X
5180 window should have. */
5181 height
+= 2 * FRAME_INTERNAL_BORDER_WIDTH (f
);
5182 width
+= 2 * FRAME_INTERNAL_BORDER_WIDTH (f
);
5184 /* Move the tooltip window where the mouse pointer is. Resize and
5186 compute_tip_xy (f
, parms
, dx
, dy
, width
, height
, &root_x
, &root_y
);
5189 XMoveResizeWindow (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
5190 root_x
, root_y
, width
, height
);
5191 XMapRaised (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
));
5194 /* Draw into the window. */
5195 w
->must_be_updated_p
= 1;
5196 update_single_window (w
, 1);
5198 /* Restore original current buffer. */
5199 set_buffer_internal_1 (old_buffer
);
5200 windows_or_buffers_changed
= old_windows_or_buffers_changed
;
5203 /* Let the tip disappear after timeout seconds. */
5204 tip_timer
= call3 (intern ("run-at-time"), timeout
, Qnil
,
5205 intern ("x-hide-tip"));
5208 return unbind_to (count
, Qnil
);
5212 DEFUN ("x-hide-tip", Fx_hide_tip
, Sx_hide_tip
, 0, 0, 0,
5213 doc
: /* Hide the current tooltip window, if there is any.
5214 Value is t if tooltip was open, nil otherwise. */)
5218 Lisp_Object deleted
, frame
, timer
;
5219 struct gcpro gcpro1
, gcpro2
;
5222 /* Return quickly if nothing to do. */
5223 if (NILP (tip_timer
) && NILP (tip_frame
))
5228 GCPRO2 (frame
, timer
);
5229 tip_frame
= tip_timer
= deleted
= Qnil
;
5231 count
= SPECPDL_INDEX ();
5232 specbind (Qinhibit_redisplay
, Qt
);
5233 specbind (Qinhibit_quit
, Qt
);
5236 call1 (Qcancel_timer
, timer
);
5239 /* When using system tooltip, tip_frame is the Emacs frame on which
5240 the tip is shown. */
5242 if (FRAME_LIVE_P (f
) && xg_hide_tooltip (f
))
5248 delete_frame (frame
, Qnil
);
5252 /* Bloodcurdling hack alert: The Lucid menu bar widget's
5253 redisplay procedure is not called when a tip frame over menu
5254 items is unmapped. Redisplay the menu manually... */
5257 f
= SELECTED_FRAME ();
5258 w
= f
->output_data
.x
->menubar_widget
;
5260 if (!DoesSaveUnders (FRAME_X_DISPLAY_INFO (f
)->screen
)
5264 xlwmenu_redisplay (w
);
5268 #endif /* USE_LUCID */
5272 return unbind_to (count
, deleted
);
5277 /***********************************************************************
5278 File selection dialog
5279 ***********************************************************************/
5281 DEFUN ("x-uses-old-gtk-dialog", Fx_uses_old_gtk_dialog
,
5282 Sx_uses_old_gtk_dialog
,
5284 doc
: /* Return t if the old Gtk+ file selection dialog is used. */)
5291 && xg_uses_old_file_dialog ())
5299 /* Callback for "OK" and "Cancel" on file selection dialog. */
5302 file_dialog_cb (widget
, client_data
, call_data
)
5304 XtPointer call_data
, client_data
;
5306 int *result
= (int *) client_data
;
5307 XmAnyCallbackStruct
*cb
= (XmAnyCallbackStruct
*) call_data
;
5308 *result
= cb
->reason
;
5312 /* Callback for unmapping a file selection dialog. This is used to
5313 capture the case where a dialog is closed via a window manager's
5314 closer button, for example. Using a XmNdestroyCallback didn't work
5318 file_dialog_unmap_cb (widget
, client_data
, call_data
)
5320 XtPointer call_data
, client_data
;
5322 int *result
= (int *) client_data
;
5323 *result
= XmCR_CANCEL
;
5327 clean_up_file_dialog (arg
)
5330 struct Lisp_Save_Value
*p
= XSAVE_VALUE (arg
);
5331 Widget dialog
= (Widget
) p
->pointer
;
5335 XtUnmanageChild (dialog
);
5336 XtDestroyWidget (dialog
);
5337 x_menu_set_in_use (0);
5344 DEFUN ("x-file-dialog", Fx_file_dialog
, Sx_file_dialog
, 2, 5, 0,
5345 doc
: /* Read file name, prompting with PROMPT in directory DIR.
5346 Use a file selection dialog. Select DEFAULT-FILENAME in the dialog's file
5347 selection box, if specified. If MUSTMATCH is non-nil, the returned file
5348 or directory must exist. ONLY-DIR-P is ignored." */)
5349 (Lisp_Object prompt
, Lisp_Object dir
, Lisp_Object default_filename
, Lisp_Object mustmatch
, Lisp_Object only_dir_p
)
5352 struct frame
*f
= SELECTED_FRAME ();
5353 Lisp_Object file
= Qnil
;
5354 Lisp_Object decoded_file
;
5355 Widget dialog
, text
, help
;
5358 XmString dir_xmstring
, pattern_xmstring
;
5359 int count
= SPECPDL_INDEX ();
5360 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
, gcpro5
, gcpro6
;
5364 GCPRO6 (prompt
, dir
, default_filename
, mustmatch
, only_dir_p
, file
);
5366 if (popup_activated ())
5367 error ("Trying to use a menu from within a menu-entry");
5369 CHECK_STRING (prompt
);
5372 /* Prevent redisplay. */
5373 specbind (Qinhibit_redisplay
, Qt
);
5377 /* Create the dialog with PROMPT as title, using DIR as initial
5378 directory and using "*" as pattern. */
5379 dir
= Fexpand_file_name (dir
, Qnil
);
5380 dir_xmstring
= XmStringCreateLocalized (SDATA (dir
));
5381 pattern_xmstring
= XmStringCreateLocalized ("*");
5383 XtSetArg (al
[ac
], XmNtitle
, SDATA (prompt
)); ++ac
;
5384 XtSetArg (al
[ac
], XmNdirectory
, dir_xmstring
); ++ac
;
5385 XtSetArg (al
[ac
], XmNpattern
, pattern_xmstring
); ++ac
;
5386 XtSetArg (al
[ac
], XmNresizePolicy
, XmRESIZE_GROW
); ++ac
;
5387 XtSetArg (al
[ac
], XmNdialogStyle
, XmDIALOG_APPLICATION_MODAL
); ++ac
;
5388 dialog
= XmCreateFileSelectionDialog (f
->output_data
.x
->widget
,
5390 XmStringFree (dir_xmstring
);
5391 XmStringFree (pattern_xmstring
);
5393 /* Add callbacks for OK and Cancel. */
5394 XtAddCallback (dialog
, XmNokCallback
, file_dialog_cb
,
5395 (XtPointer
) &result
);
5396 XtAddCallback (dialog
, XmNcancelCallback
, file_dialog_cb
,
5397 (XtPointer
) &result
);
5398 XtAddCallback (dialog
, XmNunmapCallback
, file_dialog_unmap_cb
,
5399 (XtPointer
) &result
);
5401 /* Remove the help button since we can't display help. */
5402 help
= XmFileSelectionBoxGetChild (dialog
, XmDIALOG_HELP_BUTTON
);
5403 XtUnmanageChild (help
);
5405 /* Mark OK button as default. */
5406 XtVaSetValues (XmFileSelectionBoxGetChild (dialog
, XmDIALOG_OK_BUTTON
),
5407 XmNshowAsDefault
, True
, NULL
);
5409 /* If MUSTMATCH is non-nil, disable the file entry field of the
5410 dialog, so that the user must select a file from the files list
5411 box. We can't remove it because we wouldn't have a way to get at
5412 the result file name, then. */
5413 text
= XmFileSelectionBoxGetChild (dialog
, XmDIALOG_TEXT
);
5414 if (!NILP (mustmatch
))
5417 label
= XmFileSelectionBoxGetChild (dialog
, XmDIALOG_SELECTION_LABEL
);
5418 XtSetSensitive (text
, False
);
5419 XtSetSensitive (label
, False
);
5422 /* Manage the dialog, so that list boxes get filled. */
5423 XtManageChild (dialog
);
5425 if (STRINGP (default_filename
))
5427 XmString default_xmstring
;
5428 Widget wtext
= XmFileSelectionBoxGetChild (dialog
, XmDIALOG_TEXT
);
5429 Widget list
= XmFileSelectionBoxGetChild (dialog
, XmDIALOG_LIST
);
5431 XmTextPosition last_pos
= XmTextFieldGetLastPosition (wtext
);
5432 XmTextFieldReplace (wtext
, 0, last_pos
,
5433 (SDATA (Ffile_name_nondirectory (default_filename
))));
5435 /* Select DEFAULT_FILENAME in the files list box. DEFAULT_FILENAME
5436 must include the path for this to work. */
5438 default_xmstring
= XmStringCreateLocalized (SDATA (default_filename
));
5440 if (XmListItemExists (list
, default_xmstring
))
5442 int item_pos
= XmListItemPos (list
, default_xmstring
);
5443 /* Select the item and scroll it into view. */
5444 XmListSelectPos (list
, item_pos
, True
);
5445 XmListSetPos (list
, item_pos
);
5448 XmStringFree (default_xmstring
);
5451 record_unwind_protect (clean_up_file_dialog
, make_save_value (dialog
, 0));
5453 /* Process events until the user presses Cancel or OK. */
5454 x_menu_set_in_use (1);
5459 x_menu_wait_for_event (0);
5460 XtAppNextEvent (Xt_app_con
, &event
);
5461 if (event
.type
== KeyPress
5462 && FRAME_X_DISPLAY (f
) == event
.xkey
.display
)
5464 KeySym keysym
= XLookupKeysym (&event
.xkey
, 0);
5466 /* Pop down on C-g. */
5467 if (keysym
== XK_g
&& (event
.xkey
.state
& ControlMask
) != 0)
5468 XtUnmanageChild (dialog
);
5471 (void) x_dispatch_event (&event
, FRAME_X_DISPLAY (f
));
5474 /* Get the result. */
5475 if (result
== XmCR_OK
)
5480 XtVaGetValues (dialog
, XmNtextString
, &text
, NULL
);
5481 XmStringGetLtoR (text
, XmFONTLIST_DEFAULT_TAG
, &data
);
5482 XmStringFree (text
);
5483 file
= build_string (data
);
5492 /* Make "Cancel" equivalent to C-g. */
5494 Fsignal (Qquit
, Qnil
);
5496 decoded_file
= DECODE_FILE (file
);
5498 return unbind_to (count
, decoded_file
);
5501 #endif /* USE_MOTIF */
5506 clean_up_dialog (Lisp_Object arg
)
5508 x_menu_set_in_use (0);
5513 DEFUN ("x-file-dialog", Fx_file_dialog
, Sx_file_dialog
, 2, 5, 0,
5514 doc
: /* Read file name, prompting with PROMPT in directory DIR.
5515 Use a file selection dialog. Select DEFAULT-FILENAME in the dialog's file
5516 selection box, if specified. If MUSTMATCH is non-nil, the returned file
5517 or directory must exist. If ONLY-DIR-P is non-nil, the user can only select
5519 (Lisp_Object prompt
, Lisp_Object dir
, Lisp_Object default_filename
, Lisp_Object mustmatch
, Lisp_Object only_dir_p
)
5521 FRAME_PTR f
= SELECTED_FRAME ();
5523 Lisp_Object file
= Qnil
;
5524 Lisp_Object decoded_file
;
5525 int count
= SPECPDL_INDEX ();
5526 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
, gcpro5
, gcpro6
;
5531 GCPRO6 (prompt
, dir
, default_filename
, mustmatch
, only_dir_p
, file
);
5533 if (popup_activated ())
5534 error ("Trying to use a menu from within a menu-entry");
5536 CHECK_STRING (prompt
);
5539 /* Prevent redisplay. */
5540 specbind (Qinhibit_redisplay
, Qt
);
5541 record_unwind_protect (clean_up_dialog
, Qnil
);
5545 if (STRINGP (default_filename
))
5546 cdef_file
= SDATA (default_filename
);
5548 cdef_file
= SDATA (dir
);
5550 fn
= xg_get_file_name (f
, SDATA (prompt
), cdef_file
,
5552 ! NILP (only_dir_p
));
5556 file
= build_string (fn
);
5563 /* Make "Cancel" equivalent to C-g. */
5565 Fsignal (Qquit
, Qnil
);
5567 decoded_file
= DECODE_FILE (file
);
5569 return unbind_to (count
, decoded_file
);
5573 #ifdef HAVE_FREETYPE
5575 DEFUN ("x-select-font", Fx_select_font
, Sx_select_font
, 0, 2, 0,
5576 doc
: /* Read a font name using a GTK font selection dialog.
5577 Return a GTK-style font string corresponding to the selection.
5579 If FRAME is omitted or nil, it defaults to the selected frame. */)
5580 (Lisp_Object frame
, Lisp_Object ignored
)
5582 FRAME_PTR f
= check_x_frame (frame
);
5585 Lisp_Object font_param
;
5586 char *default_name
= NULL
;
5587 struct gcpro gcpro1
, gcpro2
;
5588 int count
= SPECPDL_INDEX ();
5592 if (popup_activated ())
5593 error ("Trying to use a menu from within a menu-entry");
5595 /* Prevent redisplay. */
5596 specbind (Qinhibit_redisplay
, Qt
);
5597 record_unwind_protect (clean_up_dialog
, Qnil
);
5601 GCPRO2(font_param
, font
);
5603 XSETFONT (font
, FRAME_FONT (f
));
5604 font_param
= Ffont_get (font
, intern (":name"));
5605 if (STRINGP (font_param
))
5606 default_name
= xstrdup (SDATA (font_param
));
5609 font_param
= Fframe_parameter (frame
, Qfont_param
);
5610 if (STRINGP (font_param
))
5611 default_name
= xstrdup (SDATA (font_param
));
5614 if (default_name
== NULL
&& x_last_font_name
!= NULL
)
5615 default_name
= xstrdup (x_last_font_name
);
5617 /* Convert fontconfig names to Gtk names, i.e. remove - before number */
5620 char *p
= strrchr (default_name
, '-');
5624 while (isdigit (*ep
))
5626 if (*ep
== '\0') *p
= ' ';
5630 name
= xg_get_font_name (f
, default_name
);
5631 xfree (default_name
);
5635 font
= build_string (name
);
5636 g_free (x_last_font_name
);
5637 x_last_font_name
= name
;
5643 Fsignal (Qquit
, Qnil
);
5645 return unbind_to (count
, font
);
5647 #endif /* HAVE_FREETYPE */
5649 #endif /* USE_GTK */
5652 /***********************************************************************
5654 ***********************************************************************/
5656 #ifdef HAVE_XKBGETKEYBOARD
5657 #include <X11/XKBlib.h>
5658 #include <X11/keysym.h>
5661 DEFUN ("x-backspace-delete-keys-p", Fx_backspace_delete_keys_p
,
5662 Sx_backspace_delete_keys_p
, 0, 1, 0,
5663 doc
: /* Check if both Backspace and Delete keys are on the keyboard of FRAME.
5664 FRAME nil means use the selected frame.
5665 Value is t if we know that both keys are present, and are mapped to the
5666 usual X keysyms. Value is `lambda' if we cannot determine if both keys are
5667 present and mapped to the usual X keysyms. */)
5670 #ifdef HAVE_XKBGETKEYBOARD
5672 struct frame
*f
= check_x_frame (frame
);
5673 Display
*dpy
= FRAME_X_DISPLAY (f
);
5674 Lisp_Object have_keys
;
5675 int major
, minor
, op
, event
, error
;
5679 /* Check library version in case we're dynamically linked. */
5680 major
= XkbMajorVersion
;
5681 minor
= XkbMinorVersion
;
5682 if (!XkbLibraryVersion (&major
, &minor
))
5688 /* Check that the server supports XKB. */
5689 major
= XkbMajorVersion
;
5690 minor
= XkbMinorVersion
;
5691 if (!XkbQueryExtension (dpy
, &op
, &event
, &error
, &major
, &minor
))
5697 /* In this code we check that the keyboard has physical keys with names
5698 that start with BKSP (Backspace) and DELE (Delete), and that they
5699 generate keysym XK_BackSpace and XK_Delete respectively.
5700 This function is used to test if normal-erase-is-backspace should be
5702 An alternative approach would be to just check if XK_BackSpace and
5703 XK_Delete are mapped to any key. But if any of those are mapped to
5704 some non-intuitive key combination (Meta-Shift-Ctrl-whatever) and the
5705 user doesn't know about it, it is better to return false here.
5706 It is more obvious to the user what to do if she/he has two keys
5707 clearly marked with names/symbols and one key does something not
5708 expected (i.e. she/he then tries the other).
5709 The cases where Backspace/Delete is mapped to some other key combination
5710 are rare, and in those cases, normal-erase-is-backspace can be turned on
5714 kb
= XkbGetMap (dpy
, XkbAllMapComponentsMask
, XkbUseCoreKbd
);
5717 int delete_keycode
= 0, backspace_keycode
= 0, i
;
5719 if (XkbGetNames (dpy
, XkbAllNamesMask
, kb
) == Success
)
5721 for (i
= kb
->min_key_code
;
5722 (i
< kb
->max_key_code
5723 && (delete_keycode
== 0 || backspace_keycode
== 0));
5726 /* The XKB symbolic key names can be seen most easily in
5727 the PS file generated by `xkbprint -label name
5729 if (memcmp ("DELE", kb
->names
->keys
[i
].name
, 4) == 0)
5731 else if (memcmp ("BKSP", kb
->names
->keys
[i
].name
, 4) == 0)
5732 backspace_keycode
= i
;
5735 XkbFreeNames (kb
, 0, True
);
5738 XkbFreeClientMap (kb
, 0, True
);
5741 && backspace_keycode
5742 && XKeysymToKeycode (dpy
, XK_Delete
) == delete_keycode
5743 && XKeysymToKeycode (dpy
, XK_BackSpace
) == backspace_keycode
)
5748 #else /* not HAVE_XKBGETKEYBOARD */
5750 #endif /* not HAVE_XKBGETKEYBOARD */
5755 /***********************************************************************
5757 ***********************************************************************/
5759 /* Keep this list in the same order as frame_parms in frame.c.
5760 Use 0 for unsupported frame parameters. */
5762 frame_parm_handler x_frame_parm_handlers
[] =
5766 x_set_background_color
,
5772 x_set_foreground_color
,
5775 x_set_internal_border_width
,
5776 x_set_menu_bar_lines
,
5778 x_explicitly_set_name
,
5779 x_set_scroll_bar_width
,
5782 x_set_vertical_scroll_bars
,
5784 x_set_tool_bar_lines
,
5785 x_set_scroll_bar_foreground
,
5786 x_set_scroll_bar_background
,
5796 x_set_tool_bar_position
,
5802 /* This is zero if not using X windows. */
5805 /* The section below is built by the lisp expression at the top of the file,
5806 just above where these variables are declared. */
5807 /*&&& init symbols here &&&*/
5808 Qnone
= intern_c_string ("none");
5810 Qsuppress_icon
= intern_c_string ("suppress-icon");
5811 staticpro (&Qsuppress_icon
);
5812 Qundefined_color
= intern_c_string ("undefined-color");
5813 staticpro (&Qundefined_color
);
5814 Qcompound_text
= intern_c_string ("compound-text");
5815 staticpro (&Qcompound_text
);
5816 Qcancel_timer
= intern_c_string ("cancel-timer");
5817 staticpro (&Qcancel_timer
);
5818 Qfont_param
= intern_c_string ("font-parameter");
5819 staticpro (&Qfont_param
);
5820 /* This is the end of symbol initialization. */
5822 /* Text property `display' should be nonsticky by default. */
5823 Vtext_property_default_nonsticky
5824 = Fcons (Fcons (Qdisplay
, Qt
), Vtext_property_default_nonsticky
);
5827 Fput (Qundefined_color
, Qerror_conditions
,
5828 pure_cons (Qundefined_color
, pure_cons (Qerror
, Qnil
)));
5829 Fput (Qundefined_color
, Qerror_message
,
5830 make_pure_c_string ("Undefined color"));
5832 DEFVAR_LISP ("x-pointer-shape", &Vx_pointer_shape
,
5833 doc
: /* The shape of the pointer when over text.
5834 Changing the value does not affect existing frames
5835 unless you set the mouse color. */);
5836 Vx_pointer_shape
= Qnil
;
5838 #if 0 /* This doesn't really do anything. */
5839 DEFVAR_LISP ("x-nontext-pointer-shape", &Vx_nontext_pointer_shape
,
5840 doc
: /* The shape of the pointer when not over text.
5841 This variable takes effect when you create a new frame
5842 or when you set the mouse color. */);
5844 Vx_nontext_pointer_shape
= Qnil
;
5846 DEFVAR_LISP ("x-hourglass-pointer-shape", &Vx_hourglass_pointer_shape
,
5847 doc
: /* The shape of the pointer when Emacs is busy.
5848 This variable takes effect when you create a new frame
5849 or when you set the mouse color. */);
5850 Vx_hourglass_pointer_shape
= Qnil
;
5852 #if 0 /* This doesn't really do anything. */
5853 DEFVAR_LISP ("x-mode-pointer-shape", &Vx_mode_pointer_shape
,
5854 doc
: /* The shape of the pointer when over the mode line.
5855 This variable takes effect when you create a new frame
5856 or when you set the mouse color. */);
5858 Vx_mode_pointer_shape
= Qnil
;
5860 DEFVAR_LISP ("x-sensitive-text-pointer-shape",
5861 &Vx_sensitive_text_pointer_shape
,
5862 doc
: /* The shape of the pointer when over mouse-sensitive text.
5863 This variable takes effect when you create a new frame
5864 or when you set the mouse color. */);
5865 Vx_sensitive_text_pointer_shape
= Qnil
;
5867 DEFVAR_LISP ("x-window-horizontal-drag-cursor",
5868 &Vx_window_horizontal_drag_shape
,
5869 doc
: /* Pointer shape to use for indicating a window can be dragged horizontally.
5870 This variable takes effect when you create a new frame
5871 or when you set the mouse color. */);
5872 Vx_window_horizontal_drag_shape
= Qnil
;
5874 DEFVAR_LISP ("x-cursor-fore-pixel", &Vx_cursor_fore_pixel
,
5875 doc
: /* A string indicating the foreground color of the cursor box. */);
5876 Vx_cursor_fore_pixel
= Qnil
;
5878 DEFVAR_LISP ("x-max-tooltip-size", &Vx_max_tooltip_size
,
5879 doc
: /* Maximum size for tooltips.
5880 Value is a pair (COLUMNS . ROWS). Text larger than this is clipped. */);
5881 Vx_max_tooltip_size
= Fcons (make_number (80), make_number (40));
5883 DEFVAR_LISP ("x-no-window-manager", &Vx_no_window_manager
,
5884 doc
: /* Non-nil if no X window manager is in use.
5885 Emacs doesn't try to figure this out; this is always nil
5886 unless you set it to something else. */);
5887 /* We don't have any way to find this out, so set it to nil
5888 and maybe the user would like to set it to t. */
5889 Vx_no_window_manager
= Qnil
;
5891 DEFVAR_LISP ("x-pixel-size-width-font-regexp",
5892 &Vx_pixel_size_width_font_regexp
,
5893 doc
: /* Regexp matching a font name whose width is the same as `PIXEL_SIZE'.
5895 Since Emacs gets width of a font matching with this regexp from
5896 PIXEL_SIZE field of the name, font finding mechanism gets faster for
5897 such a font. This is especially effective for such large fonts as
5898 Chinese, Japanese, and Korean. */);
5899 Vx_pixel_size_width_font_regexp
= Qnil
;
5901 /* This is not ifdef:ed, so other builds than GTK can customize it. */
5902 DEFVAR_BOOL ("x-gtk-use-old-file-dialog", &x_gtk_use_old_file_dialog
,
5903 doc
: /* *Non-nil means prompt with the old GTK file selection dialog.
5904 If nil or if the file selection dialog is not available, the new GTK file
5905 chooser is used instead. To turn off all file dialogs set the
5906 variable `use-file-dialog'. */);
5907 x_gtk_use_old_file_dialog
= 0;
5909 DEFVAR_BOOL ("x-gtk-show-hidden-files", &x_gtk_show_hidden_files
,
5910 doc
: /* *If non-nil, the GTK file chooser will by default show hidden files.
5911 Note that this is just the default, there is a toggle button on the file
5912 chooser to show or not show hidden files on a case by case basis. */);
5913 x_gtk_show_hidden_files
= 0;
5915 DEFVAR_BOOL ("x-gtk-file-dialog-help-text", &x_gtk_file_dialog_help_text
,
5916 doc
: /* *If non-nil, the GTK file chooser will show additional help text.
5917 If more space for files in the file chooser dialog is wanted, set this to nil
5918 to turn the additional text off. */);
5919 x_gtk_file_dialog_help_text
= 1;
5921 DEFVAR_BOOL ("x-gtk-whole-detached-tool-bar", &x_gtk_whole_detached_tool_bar
,
5922 doc
: /* *If non-nil, a detached tool bar is shown in full.
5923 The default is to just show an arrow and pressing on that arrow shows
5924 the tool bar buttons. */);
5925 x_gtk_whole_detached_tool_bar
= 0;
5927 DEFVAR_BOOL ("x-gtk-use-system-tooltips", &x_gtk_use_system_tooltips
,
5928 doc
: /* *If non-nil with a Gtk+ built Emacs, the Gtk+ toolip is used.
5929 Otherwise use Emacs own tooltip implementation.
5930 When using Gtk+ tooltips, the tooltip face is not used. */);
5931 x_gtk_use_system_tooltips
= 1;
5933 Fprovide (intern_c_string ("x"), Qnil
);
5935 #ifdef USE_X_TOOLKIT
5936 Fprovide (intern_c_string ("x-toolkit"), Qnil
);
5938 Fprovide (intern_c_string ("motif"), Qnil
);
5940 DEFVAR_LISP ("motif-version-string", &Vmotif_version_string
,
5941 doc
: /* Version info for LessTif/Motif. */);
5942 Vmotif_version_string
= build_string (XmVERSION_STRING
);
5943 #endif /* USE_MOTIF */
5944 #endif /* USE_X_TOOLKIT */
5947 /* Provide x-toolkit also for GTK. Internally GTK does not use Xt so it
5948 is not an X toolkit in that sense (USE_X_TOOLKIT is not defined).
5949 But for a user it is a toolkit for X, and indeed, configure
5950 accepts --with-x-toolkit=gtk. */
5951 Fprovide (intern_c_string ("x-toolkit"), Qnil
);
5952 Fprovide (intern_c_string ("gtk"), Qnil
);
5953 Fprovide (intern_c_string ("move-toolbar"), Qnil
);
5955 DEFVAR_LISP ("gtk-version-string", &Vgtk_version_string
,
5956 doc
: /* Version info for GTK+. */);
5958 char gtk_version
[40];
5959 g_snprintf (gtk_version
, sizeof (gtk_version
), "%u.%u.%u",
5960 GTK_MAJOR_VERSION
, GTK_MINOR_VERSION
, GTK_MICRO_VERSION
);
5961 Vgtk_version_string
= make_pure_string (gtk_version
, strlen (gtk_version
), strlen (gtk_version
), 0);
5963 #endif /* USE_GTK */
5965 /* X window properties. */
5966 defsubr (&Sx_change_window_property
);
5967 defsubr (&Sx_delete_window_property
);
5968 defsubr (&Sx_window_property
);
5970 defsubr (&Sxw_display_color_p
);
5971 defsubr (&Sx_display_grayscale_p
);
5972 defsubr (&Sxw_color_defined_p
);
5973 defsubr (&Sxw_color_values
);
5974 defsubr (&Sx_server_max_request_size
);
5975 defsubr (&Sx_server_vendor
);
5976 defsubr (&Sx_server_version
);
5977 defsubr (&Sx_display_pixel_width
);
5978 defsubr (&Sx_display_pixel_height
);
5979 defsubr (&Sx_display_mm_width
);
5980 defsubr (&Sx_display_mm_height
);
5981 defsubr (&Sx_display_screens
);
5982 defsubr (&Sx_display_planes
);
5983 defsubr (&Sx_display_color_cells
);
5984 defsubr (&Sx_display_visual_class
);
5985 defsubr (&Sx_display_backing_store
);
5986 defsubr (&Sx_display_save_under
);
5987 defsubr (&Sx_wm_set_size_hint
);
5988 defsubr (&Sx_create_frame
);
5989 defsubr (&Sx_open_connection
);
5990 defsubr (&Sx_close_connection
);
5991 defsubr (&Sx_display_list
);
5992 defsubr (&Sx_synchronize
);
5993 defsubr (&Sx_focus_frame
);
5994 defsubr (&Sx_backspace_delete_keys_p
);
5996 /* Setting callback functions for fontset handler. */
5997 check_window_system_func
= check_x
;
5999 defsubr (&Sx_show_tip
);
6000 defsubr (&Sx_hide_tip
);
6002 staticpro (&tip_timer
);
6004 staticpro (&tip_frame
);
6006 last_show_tip_args
= Qnil
;
6007 staticpro (&last_show_tip_args
);
6009 defsubr (&Sx_uses_old_gtk_dialog
);
6010 #if defined (USE_MOTIF) || defined (USE_GTK)
6011 defsubr (&Sx_file_dialog
);
6014 #if defined (USE_GTK) && defined (HAVE_FREETYPE)
6015 defsubr (&Sx_select_font
);
6016 x_last_font_name
= NULL
;
6020 #endif /* HAVE_X_WINDOWS */
6022 /* arch-tag: 55040d02-5485-4d58-8b22-95a7a05f3288
6023 (do not change this comment) */