Fixes: debbugs:19175
[emacs.git] / src / xterm.c
blob2ac2fe84e52717f0aef798a88d8872af87516aac
1 /* X Communication module for terminals which understand the X protocol.
3 Copyright (C) 1989, 1993-2015 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
20 /* New display code by Gerd Moellmann <gerd@gnu.org>. */
21 /* Xt features made by Fred Pierresteguy. */
23 #include <config.h>
24 #include <stdio.h>
26 #include "lisp.h"
27 #include "blockinput.h"
28 #include "syssignal.h"
30 /* This may include sys/types.h, and that somehow loses
31 if this is not done before the other system files. */
32 #include "xterm.h"
33 #include <X11/cursorfont.h>
35 /* Load sys/types.h if not already loaded.
36 In some systems loading it twice is suicidal. */
37 #ifndef makedev
38 #include <sys/types.h>
39 #endif /* makedev */
41 #include <sys/ioctl.h>
43 #include "systime.h"
45 #include <fcntl.h>
46 #include <errno.h>
47 #include <sys/stat.h>
48 /* Caused redefinition of DBL_DIG on Netbsd; seems not to be needed. */
49 /* #include <sys/param.h> */
51 #include "charset.h"
52 #include "character.h"
53 #include "coding.h"
54 #include "frame.h"
55 #include "dispextern.h"
56 #include "fontset.h"
57 #include "termhooks.h"
58 #include "termopts.h"
59 #include "termchar.h"
60 #include "emacs-icon.h"
61 #include "disptab.h"
62 #include "buffer.h"
63 #include "window.h"
64 #include "keyboard.h"
65 #include "intervals.h"
66 #include "process.h"
67 #include "atimer.h"
68 #include "keymap.h"
69 #include "font.h"
70 #include "xsettings.h"
71 #include "xgselect.h"
72 #include "sysselect.h"
74 #ifdef USE_X_TOOLKIT
75 #include <X11/Shell.h>
76 #endif
78 #include <unistd.h>
80 #ifdef USE_GTK
81 #include "gtkutil.h"
82 #ifdef HAVE_GTK3
83 #include <X11/Xproto.h>
84 #endif
85 #endif
87 #if defined (USE_LUCID) || defined (USE_MOTIF)
88 #include "../lwlib/xlwmenu.h"
89 #endif
91 #ifdef USE_X_TOOLKIT
92 #if !defined (NO_EDITRES)
93 #define HACK_EDITRES
94 extern void _XEditResCheckMessages (Widget, XtPointer, XEvent *, Boolean *);
95 #endif /* not NO_EDITRES */
97 /* Include toolkit specific headers for the scroll bar widget. */
99 #ifdef USE_TOOLKIT_SCROLL_BARS
100 #if defined USE_MOTIF
101 #include <Xm/Xm.h> /* For LESSTIF_VERSION */
102 #include <Xm/ScrollBar.h>
103 #else /* !USE_MOTIF i.e. use Xaw */
105 #ifdef HAVE_XAW3D
106 #include <X11/Xaw3d/Simple.h>
107 #include <X11/Xaw3d/Scrollbar.h>
108 #include <X11/Xaw3d/ThreeD.h>
109 #else /* !HAVE_XAW3D */
110 #include <X11/Xaw/Simple.h>
111 #include <X11/Xaw/Scrollbar.h>
112 #endif /* !HAVE_XAW3D */
113 #ifndef XtNpickTop
114 #define XtNpickTop "pickTop"
115 #endif /* !XtNpickTop */
116 #endif /* !USE_MOTIF */
117 #endif /* USE_TOOLKIT_SCROLL_BARS */
119 #endif /* USE_X_TOOLKIT */
121 #ifdef USE_X_TOOLKIT
122 #include "widget.h"
123 #ifndef XtNinitialState
124 #define XtNinitialState "initialState"
125 #endif
126 #endif
128 #include "bitmaps/gray.xbm"
130 #ifdef HAVE_XKB
131 #include <X11/XKBlib.h>
132 #endif
134 /* Default to using XIM if available. */
135 #ifdef USE_XIM
136 bool use_xim = true;
137 #else
138 bool use_xim = false; /* configure --without-xim */
139 #endif
141 /* Non-zero means that a HELP_EVENT has been generated since Emacs
142 start. */
144 static bool any_help_event_p;
146 /* This is a chain of structures for all the X displays currently in
147 use. */
149 struct x_display_info *x_display_list;
151 #ifdef USE_X_TOOLKIT
153 /* The application context for Xt use. */
154 XtAppContext Xt_app_con;
155 static String Xt_default_resources[] = {0};
157 /* Non-zero means user is interacting with a toolkit scroll bar. */
158 static bool toolkit_scroll_bar_interaction;
160 #endif /* USE_X_TOOLKIT */
162 /* Non-zero timeout value means ignore next mouse click if it arrives
163 before that timeout elapses (i.e. as part of the same sequence of
164 events resulting from clicking on a frame to select it). */
166 static Time ignore_next_mouse_click_timeout;
168 /* Used locally within XTread_socket. */
170 static int x_noop_count;
172 static Lisp_Object Qalt, Qhyper, Qmeta, Qsuper, Qmodifier_value;
174 static Lisp_Object Qvendor_specific_keysyms;
175 static Lisp_Object Qlatin_1;
177 #ifdef USE_GTK
178 /* The name of the Emacs icon file. */
179 static Lisp_Object xg_default_icon_file;
181 /* Used in gtkutil.c. */
182 Lisp_Object Qx_gtk_map_stock;
183 #endif
185 /* Some functions take this as char *, not const char *. */
186 static char emacs_class[] = EMACS_CLASS;
188 enum xembed_info
190 XEMBED_MAPPED = 1 << 0
193 enum xembed_message
195 XEMBED_EMBEDDED_NOTIFY = 0,
196 XEMBED_WINDOW_ACTIVATE = 1,
197 XEMBED_WINDOW_DEACTIVATE = 2,
198 XEMBED_REQUEST_FOCUS = 3,
199 XEMBED_FOCUS_IN = 4,
200 XEMBED_FOCUS_OUT = 5,
201 XEMBED_FOCUS_NEXT = 6,
202 XEMBED_FOCUS_PREV = 7,
204 XEMBED_MODALITY_ON = 10,
205 XEMBED_MODALITY_OFF = 11,
206 XEMBED_REGISTER_ACCELERATOR = 12,
207 XEMBED_UNREGISTER_ACCELERATOR = 13,
208 XEMBED_ACTIVATE_ACCELERATOR = 14
211 static bool x_alloc_nearest_color_1 (Display *, Colormap, XColor *);
212 static void x_set_window_size_1 (struct frame *, int, int, int, bool);
213 static void x_raise_frame (struct frame *);
214 static void x_lower_frame (struct frame *);
215 static const XColor *x_color_cells (Display *, int *);
216 static int x_io_error_quitter (Display *);
217 static struct terminal *x_create_terminal (struct x_display_info *);
218 void x_delete_terminal (struct terminal *);
219 static void x_update_end (struct frame *);
220 static void XTframe_up_to_date (struct frame *);
221 static void x_clear_frame (struct frame *);
222 static _Noreturn void x_ins_del_lines (struct frame *, int, int);
223 static void frame_highlight (struct frame *);
224 static void frame_unhighlight (struct frame *);
225 static void x_new_focus_frame (struct x_display_info *, struct frame *);
226 static void x_focus_changed (int, int, struct x_display_info *,
227 struct frame *, struct input_event *);
228 static void XTframe_rehighlight (struct frame *);
229 static void x_frame_rehighlight (struct x_display_info *);
230 static void x_draw_hollow_cursor (struct window *, struct glyph_row *);
231 static void x_draw_bar_cursor (struct window *, struct glyph_row *, int,
232 enum text_cursor_kinds);
234 static void x_clip_to_row (struct window *, struct glyph_row *,
235 enum glyph_row_area, GC);
236 static void x_flush (struct frame *f);
237 static void x_update_begin (struct frame *);
238 static void x_update_window_begin (struct window *);
239 static struct scroll_bar *x_window_to_scroll_bar (Display *, Window);
240 static void x_scroll_bar_report_motion (struct frame **, Lisp_Object *,
241 enum scroll_bar_part *,
242 Lisp_Object *, Lisp_Object *,
243 Time *);
244 static int x_handle_net_wm_state (struct frame *, const XPropertyEvent *);
245 static void x_check_fullscreen (struct frame *);
246 static void x_check_expected_move (struct frame *, int, int);
247 static void x_sync_with_move (struct frame *, int, int, int);
248 static int handle_one_xevent (struct x_display_info *,
249 const XEvent *, int *,
250 struct input_event *);
251 #if ! (defined USE_X_TOOLKIT || defined USE_MOTIF)
252 static int x_dispatch_event (XEvent *, Display *);
253 #endif
254 /* Don't declare this _Noreturn because we want no
255 interference with debugging failing X calls. */
256 static void x_connection_closed (Display *, const char *);
257 static void x_wm_set_window_state (struct frame *, int);
258 static void x_wm_set_icon_pixmap (struct frame *, ptrdiff_t);
259 static void x_initialize (void);
262 /* Flush display of frame F. */
264 static void
265 x_flush (struct frame *f)
267 eassert (f && FRAME_X_P (f));
268 /* Don't call XFlush when it is not safe to redisplay; the X
269 connection may be broken. */
270 if (!NILP (Vinhibit_redisplay))
271 return;
273 block_input ();
274 XFlush (FRAME_X_DISPLAY (f));
275 unblock_input ();
279 /* Remove calls to XFlush by defining XFlush to an empty replacement.
280 Calls to XFlush should be unnecessary because the X output buffer
281 is flushed automatically as needed by calls to XPending,
282 XNextEvent, or XWindowEvent according to the XFlush man page.
283 XTread_socket calls XPending. Removing XFlush improves
284 performance. */
286 #define XFlush(DISPLAY) (void) 0
289 /***********************************************************************
290 Debugging
291 ***********************************************************************/
293 #if 0
295 /* This is a function useful for recording debugging information about
296 the sequence of occurrences in this file. */
298 struct record
300 char *locus;
301 int type;
304 struct record event_record[100];
306 int event_record_index;
308 void
309 record_event (char *locus, int type)
311 if (event_record_index == sizeof (event_record) / sizeof (struct record))
312 event_record_index = 0;
314 event_record[event_record_index].locus = locus;
315 event_record[event_record_index].type = type;
316 event_record_index++;
319 #endif /* 0 */
323 /* Return the struct x_display_info corresponding to DPY. */
325 struct x_display_info *
326 x_display_info_for_display (Display *dpy)
328 struct x_display_info *dpyinfo;
330 for (dpyinfo = x_display_list; dpyinfo; dpyinfo = dpyinfo->next)
331 if (dpyinfo->display == dpy)
332 return dpyinfo;
334 return 0;
337 static Window
338 x_find_topmost_parent (struct frame *f)
340 struct x_output *x = f->output_data.x;
341 Window win = None, wi = x->parent_desc;
342 Display *dpy = FRAME_X_DISPLAY (f);
344 while (wi != FRAME_DISPLAY_INFO (f)->root_window)
346 Window root;
347 Window *children;
348 unsigned int nchildren;
350 win = wi;
351 XQueryTree (dpy, win, &root, &wi, &children, &nchildren);
352 XFree (children);
355 return win;
358 #define OPAQUE 0xffffffff
360 void
361 x_set_frame_alpha (struct frame *f)
363 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
364 Display *dpy = FRAME_X_DISPLAY (f);
365 Window win = FRAME_OUTER_WINDOW (f);
366 double alpha = 1.0;
367 double alpha_min = 1.0;
368 unsigned long opac;
369 Window parent;
371 if (dpyinfo->x_highlight_frame == f)
372 alpha = f->alpha[0];
373 else
374 alpha = f->alpha[1];
376 if (FLOATP (Vframe_alpha_lower_limit))
377 alpha_min = XFLOAT_DATA (Vframe_alpha_lower_limit);
378 else if (INTEGERP (Vframe_alpha_lower_limit))
379 alpha_min = (XINT (Vframe_alpha_lower_limit)) / 100.0;
381 if (alpha < 0.0)
382 return;
383 else if (alpha > 1.0)
384 alpha = 1.0;
385 else if (0.0 <= alpha && alpha < alpha_min && alpha_min <= 1.0)
386 alpha = alpha_min;
388 opac = alpha * OPAQUE;
390 x_catch_errors (dpy);
392 /* If there is a parent from the window manager, put the property there
393 also, to work around broken window managers that fail to do that.
394 Do this unconditionally as this function is called on reparent when
395 alpha has not changed on the frame. */
397 parent = x_find_topmost_parent (f);
398 if (parent != None)
399 XChangeProperty (dpy, parent, dpyinfo->Xatom_net_wm_window_opacity,
400 XA_CARDINAL, 32, PropModeReplace,
401 (unsigned char *) &opac, 1L);
403 /* return unless necessary */
405 unsigned char *data;
406 Atom actual;
407 int rc, format;
408 unsigned long n, left;
410 rc = XGetWindowProperty (dpy, win, dpyinfo->Xatom_net_wm_window_opacity,
411 0L, 1L, False, XA_CARDINAL,
412 &actual, &format, &n, &left,
413 &data);
415 if (rc == Success && actual != None)
417 unsigned long value = *(unsigned long *)data;
418 XFree (data);
419 if (value == opac)
421 x_uncatch_errors ();
422 return;
427 XChangeProperty (dpy, win, dpyinfo->Xatom_net_wm_window_opacity,
428 XA_CARDINAL, 32, PropModeReplace,
429 (unsigned char *) &opac, 1L);
430 x_uncatch_errors ();
434 x_display_pixel_height (struct x_display_info *dpyinfo)
436 return HeightOfScreen (dpyinfo->screen);
440 x_display_pixel_width (struct x_display_info *dpyinfo)
442 return WidthOfScreen (dpyinfo->screen);
446 /***********************************************************************
447 Starting and ending an update
448 ***********************************************************************/
450 /* Start an update of frame F. This function is installed as a hook
451 for update_begin, i.e. it is called when update_begin is called.
452 This function is called prior to calls to x_update_window_begin for
453 each window being updated. Currently, there is nothing to do here
454 because all interesting stuff is done on a window basis. */
456 static void
457 x_update_begin (struct frame *f)
459 /* Nothing to do. */
463 /* Start update of window W. */
465 static void
466 x_update_window_begin (struct window *w)
468 struct frame *f = XFRAME (WINDOW_FRAME (w));
469 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
471 w->output_cursor = w->cursor;
473 block_input ();
475 if (f == hlinfo->mouse_face_mouse_frame)
477 /* Don't do highlighting for mouse motion during the update. */
478 hlinfo->mouse_face_defer = 1;
480 /* If F needs to be redrawn, simply forget about any prior mouse
481 highlighting. */
482 if (FRAME_GARBAGED_P (f))
483 hlinfo->mouse_face_window = Qnil;
486 unblock_input ();
490 /* Draw a vertical window border from (x,y0) to (x,y1) */
492 static void
493 x_draw_vertical_window_border (struct window *w, int x, int y0, int y1)
495 struct frame *f = XFRAME (WINDOW_FRAME (w));
496 struct face *face;
498 face = FACE_FROM_ID (f, VERTICAL_BORDER_FACE_ID);
499 if (face)
500 XSetForeground (FRAME_X_DISPLAY (f), f->output_data.x->normal_gc,
501 face->foreground);
503 XDrawLine (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
504 f->output_data.x->normal_gc, x, y0, x, y1);
507 /* Draw a window divider from (x0,y0) to (x1,y1) */
509 static void
510 x_draw_window_divider (struct window *w, int x0, int x1, int y0, int y1)
512 struct frame *f = XFRAME (WINDOW_FRAME (w));
513 struct face *face = FACE_FROM_ID (f, WINDOW_DIVIDER_FACE_ID);
514 struct face *face_first = FACE_FROM_ID (f, WINDOW_DIVIDER_FIRST_PIXEL_FACE_ID);
515 struct face *face_last = FACE_FROM_ID (f, WINDOW_DIVIDER_LAST_PIXEL_FACE_ID);
516 unsigned long color = face ? face->foreground : FRAME_FOREGROUND_PIXEL (f);
517 unsigned long color_first = (face_first
518 ? face_first->foreground
519 : FRAME_FOREGROUND_PIXEL (f));
520 unsigned long color_last = (face_last
521 ? face_last->foreground
522 : FRAME_FOREGROUND_PIXEL (f));
523 Display *display = FRAME_X_DISPLAY (f);
524 Window window = FRAME_X_WINDOW (f);
526 if (y1 - y0 > x1 - x0 && x1 - x0 > 2)
527 /* Vertical. */
529 XSetForeground (display, f->output_data.x->normal_gc, color_first);
530 XFillRectangle (display, window, f->output_data.x->normal_gc,
531 x0, y0, 1, y1 - y0);
532 XSetForeground (display, f->output_data.x->normal_gc, color);
533 XFillRectangle (display, window, f->output_data.x->normal_gc,
534 x0 + 1, y0, x1 - x0 - 2, y1 - y0);
535 XSetForeground (display, f->output_data.x->normal_gc, color_last);
536 XFillRectangle (display, window, f->output_data.x->normal_gc,
537 x1 - 1, y0, 1, y1 - y0);
539 else if (x1 - x0 > y1 - y0 && y1 - y0 > 3)
540 /* Horizontal. */
542 XSetForeground (display, f->output_data.x->normal_gc, color_first);
543 XFillRectangle (display, window, f->output_data.x->normal_gc,
544 x0, y0, x1 - x0, 1);
545 XSetForeground (display, f->output_data.x->normal_gc, color);
546 XFillRectangle (display, window, f->output_data.x->normal_gc,
547 x0, y0 + 1, x1 - x0, y1 - y0 - 2);
548 XSetForeground (display, f->output_data.x->normal_gc, color_last);
549 XFillRectangle (display, window, f->output_data.x->normal_gc,
550 x0, y1 - 1, x1 - x0, 1);
552 else
554 XSetForeground (display, f->output_data.x->normal_gc, color);
555 XFillRectangle (display, window, f->output_data.x->normal_gc,
556 x0, y0, x1 - x0, y1 - y0);
560 /* End update of window W.
562 Draw vertical borders between horizontally adjacent windows, and
563 display W's cursor if CURSOR_ON_P is non-zero.
565 MOUSE_FACE_OVERWRITTEN_P non-zero means that some row containing
566 glyphs in mouse-face were overwritten. In that case we have to
567 make sure that the mouse-highlight is properly redrawn.
569 W may be a menu bar pseudo-window in case we don't have X toolkit
570 support. Such windows don't have a cursor, so don't display it
571 here. */
573 static void
574 x_update_window_end (struct window *w, bool cursor_on_p,
575 bool mouse_face_overwritten_p)
577 if (!w->pseudo_window_p)
579 block_input ();
581 if (cursor_on_p)
582 display_and_set_cursor (w, 1,
583 w->output_cursor.hpos, w->output_cursor.vpos,
584 w->output_cursor.x, w->output_cursor.y);
586 if (draw_window_fringes (w, 1))
588 if (WINDOW_RIGHT_DIVIDER_WIDTH (w))
589 x_draw_right_divider (w);
590 else
591 x_draw_vertical_border (w);
594 unblock_input ();
597 /* If a row with mouse-face was overwritten, arrange for
598 XTframe_up_to_date to redisplay the mouse highlight. */
599 if (mouse_face_overwritten_p)
601 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (XFRAME (w->frame));
603 hlinfo->mouse_face_beg_row = hlinfo->mouse_face_beg_col = -1;
604 hlinfo->mouse_face_end_row = hlinfo->mouse_face_end_col = -1;
605 hlinfo->mouse_face_window = Qnil;
610 /* End update of frame F. This function is installed as a hook in
611 update_end. */
613 static void
614 x_update_end (struct frame *f)
616 /* Mouse highlight may be displayed again. */
617 MOUSE_HL_INFO (f)->mouse_face_defer = 0;
619 #ifndef XFlush
620 block_input ();
621 XFlush (FRAME_X_DISPLAY (f));
622 unblock_input ();
623 #endif
627 /* This function is called from various places in xdisp.c
628 whenever a complete update has been performed. */
630 static void
631 XTframe_up_to_date (struct frame *f)
633 if (FRAME_X_P (f))
634 FRAME_MOUSE_UPDATE (f);
638 /* Clear under internal border if any for non-toolkit builds. */
641 #if !defined USE_X_TOOLKIT && !defined USE_GTK
642 void
643 x_clear_under_internal_border (struct frame *f)
645 if (FRAME_INTERNAL_BORDER_WIDTH (f) > 0)
647 Display *display = FRAME_X_DISPLAY (f);
648 Window window = FRAME_X_WINDOW (f);
649 int border = FRAME_INTERNAL_BORDER_WIDTH (f);
650 int width = FRAME_PIXEL_WIDTH (f);
651 int height = FRAME_PIXEL_HEIGHT (f);
652 int margin = FRAME_TOP_MARGIN_HEIGHT (f);
654 block_input ();
655 x_clear_area (display, window, 0, 0, border, height);
656 x_clear_area (display, window, 0, margin, width, border);
657 x_clear_area (display, window, width - border, 0, border, height);
658 x_clear_area (display, window, 0, height - border, width, border);
659 unblock_input ();
662 #endif
664 /* Draw truncation mark bitmaps, continuation mark bitmaps, overlay
665 arrow bitmaps, or clear the fringes if no bitmaps are required
666 before DESIRED_ROW is made current. This function is called from
667 update_window_line only if it is known that there are differences
668 between bitmaps to be drawn between current row and DESIRED_ROW. */
670 static void
671 x_after_update_window_line (struct window *w, struct glyph_row *desired_row)
673 eassert (w);
675 if (!desired_row->mode_line_p && !w->pseudo_window_p)
676 desired_row->redraw_fringe_bitmaps_p = 1;
678 #ifdef USE_X_TOOLKIT
679 /* When a window has disappeared, make sure that no rest of
680 full-width rows stays visible in the internal border. Could
681 check here if updated window is the leftmost/rightmost window,
682 but I guess it's not worth doing since vertically split windows
683 are almost never used, internal border is rarely set, and the
684 overhead is very small. */
686 struct frame *f;
687 int width, height;
689 if (windows_or_buffers_changed
690 && desired_row->full_width_p
691 && (f = XFRAME (w->frame),
692 width = FRAME_INTERNAL_BORDER_WIDTH (f),
693 width != 0)
694 && (height = desired_row->visible_height,
695 height > 0))
697 int y = WINDOW_TO_FRAME_PIXEL_Y (w, max (0, desired_row->y));
699 block_input ();
700 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
701 0, y, width, height);
702 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
703 FRAME_PIXEL_WIDTH (f) - width,
704 y, width, height);
705 unblock_input ();
708 #endif
711 static void
712 x_draw_fringe_bitmap (struct window *w, struct glyph_row *row, struct draw_fringe_bitmap_params *p)
714 struct frame *f = XFRAME (WINDOW_FRAME (w));
715 Display *display = FRAME_X_DISPLAY (f);
716 Window window = FRAME_X_WINDOW (f);
717 GC gc = f->output_data.x->normal_gc;
718 struct face *face = p->face;
720 /* Must clip because of partially visible lines. */
721 x_clip_to_row (w, row, ANY_AREA, gc);
723 if (p->bx >= 0 && !p->overlay_p)
725 /* In case the same realized face is used for fringes and
726 for something displayed in the text (e.g. face `region' on
727 mono-displays, the fill style may have been changed to
728 FillSolid in x_draw_glyph_string_background. */
729 if (face->stipple)
730 XSetFillStyle (display, face->gc, FillOpaqueStippled);
731 else
732 XSetForeground (display, face->gc, face->background);
734 XFillRectangle (display, window, face->gc,
735 p->bx, p->by, p->nx, p->ny);
737 if (!face->stipple)
738 XSetForeground (display, face->gc, face->foreground);
741 if (p->which)
743 char *bits;
744 Pixmap pixmap, clipmask = (Pixmap) 0;
745 int depth = DefaultDepthOfScreen (FRAME_X_SCREEN (f));
746 XGCValues gcv;
748 if (p->wd > 8)
749 bits = (char *) (p->bits + p->dh);
750 else
751 bits = (char *) p->bits + p->dh;
753 /* Draw the bitmap. I believe these small pixmaps can be cached
754 by the server. */
755 pixmap = XCreatePixmapFromBitmapData (display, window, bits, p->wd, p->h,
756 (p->cursor_p
757 ? (p->overlay_p ? face->background
758 : f->output_data.x->cursor_pixel)
759 : face->foreground),
760 face->background, depth);
762 if (p->overlay_p)
764 clipmask = XCreatePixmapFromBitmapData (display,
765 FRAME_DISPLAY_INFO (f)->root_window,
766 bits, p->wd, p->h,
767 1, 0, 1);
768 gcv.clip_mask = clipmask;
769 gcv.clip_x_origin = p->x;
770 gcv.clip_y_origin = p->y;
771 XChangeGC (display, gc, GCClipMask | GCClipXOrigin | GCClipYOrigin, &gcv);
774 XCopyArea (display, pixmap, window, gc, 0, 0,
775 p->wd, p->h, p->x, p->y);
776 XFreePixmap (display, pixmap);
778 if (p->overlay_p)
780 gcv.clip_mask = (Pixmap) 0;
781 XChangeGC (display, gc, GCClipMask, &gcv);
782 XFreePixmap (display, clipmask);
786 XSetClipMask (display, gc, None);
789 /***********************************************************************
790 Glyph display
791 ***********************************************************************/
795 static void x_set_glyph_string_clipping (struct glyph_string *);
796 static void x_set_glyph_string_gc (struct glyph_string *);
797 static void x_draw_glyph_string_foreground (struct glyph_string *);
798 static void x_draw_composite_glyph_string_foreground (struct glyph_string *);
799 static void x_draw_glyph_string_box (struct glyph_string *);
800 static void x_draw_glyph_string (struct glyph_string *);
801 static _Noreturn void x_delete_glyphs (struct frame *, int);
802 static void x_compute_glyph_string_overhangs (struct glyph_string *);
803 static void x_set_cursor_gc (struct glyph_string *);
804 static void x_set_mode_line_face_gc (struct glyph_string *);
805 static void x_set_mouse_face_gc (struct glyph_string *);
806 static bool x_alloc_lighter_color (struct frame *, Display *, Colormap,
807 unsigned long *, double, int);
808 static void x_setup_relief_color (struct frame *, struct relief *,
809 double, int, unsigned long);
810 static void x_setup_relief_colors (struct glyph_string *);
811 static void x_draw_image_glyph_string (struct glyph_string *);
812 static void x_draw_image_relief (struct glyph_string *);
813 static void x_draw_image_foreground (struct glyph_string *);
814 static void x_draw_image_foreground_1 (struct glyph_string *, Pixmap);
815 static void x_clear_glyph_string_rect (struct glyph_string *, int,
816 int, int, int);
817 static void x_draw_relief_rect (struct frame *, int, int, int, int,
818 int, int, int, int, int, int,
819 XRectangle *);
820 static void x_draw_box_rect (struct glyph_string *, int, int, int, int,
821 int, int, int, XRectangle *);
822 static void x_scroll_bar_clear (struct frame *);
824 #ifdef GLYPH_DEBUG
825 static void x_check_font (struct frame *, struct font *);
826 #endif
829 /* Set S->gc to a suitable GC for drawing glyph string S in cursor
830 face. */
832 static void
833 x_set_cursor_gc (struct glyph_string *s)
835 if (s->font == FRAME_FONT (s->f)
836 && s->face->background == FRAME_BACKGROUND_PIXEL (s->f)
837 && s->face->foreground == FRAME_FOREGROUND_PIXEL (s->f)
838 && !s->cmp)
839 s->gc = s->f->output_data.x->cursor_gc;
840 else
842 /* Cursor on non-default face: must merge. */
843 XGCValues xgcv;
844 unsigned long mask;
846 xgcv.background = s->f->output_data.x->cursor_pixel;
847 xgcv.foreground = s->face->background;
849 /* If the glyph would be invisible, try a different foreground. */
850 if (xgcv.foreground == xgcv.background)
851 xgcv.foreground = s->face->foreground;
852 if (xgcv.foreground == xgcv.background)
853 xgcv.foreground = s->f->output_data.x->cursor_foreground_pixel;
854 if (xgcv.foreground == xgcv.background)
855 xgcv.foreground = s->face->foreground;
857 /* Make sure the cursor is distinct from text in this face. */
858 if (xgcv.background == s->face->background
859 && xgcv.foreground == s->face->foreground)
861 xgcv.background = s->face->foreground;
862 xgcv.foreground = s->face->background;
865 IF_DEBUG (x_check_font (s->f, s->font));
866 xgcv.graphics_exposures = False;
867 mask = GCForeground | GCBackground | GCGraphicsExposures;
869 if (FRAME_DISPLAY_INFO (s->f)->scratch_cursor_gc)
870 XChangeGC (s->display, FRAME_DISPLAY_INFO (s->f)->scratch_cursor_gc,
871 mask, &xgcv);
872 else
873 FRAME_DISPLAY_INFO (s->f)->scratch_cursor_gc
874 = XCreateGC (s->display, s->window, mask, &xgcv);
876 s->gc = FRAME_DISPLAY_INFO (s->f)->scratch_cursor_gc;
881 /* Set up S->gc of glyph string S for drawing text in mouse face. */
883 static void
884 x_set_mouse_face_gc (struct glyph_string *s)
886 int face_id;
887 struct face *face;
889 /* What face has to be used last for the mouse face? */
890 face_id = MOUSE_HL_INFO (s->f)->mouse_face_face_id;
891 face = FACE_FROM_ID (s->f, face_id);
892 if (face == NULL)
893 face = FACE_FROM_ID (s->f, MOUSE_FACE_ID);
895 if (s->first_glyph->type == CHAR_GLYPH)
896 face_id = FACE_FOR_CHAR (s->f, face, s->first_glyph->u.ch, -1, Qnil);
897 else
898 face_id = FACE_FOR_CHAR (s->f, face, 0, -1, Qnil);
899 s->face = FACE_FROM_ID (s->f, face_id);
900 PREPARE_FACE_FOR_DISPLAY (s->f, s->face);
902 if (s->font == s->face->font)
903 s->gc = s->face->gc;
904 else
906 /* Otherwise construct scratch_cursor_gc with values from FACE
907 except for FONT. */
908 XGCValues xgcv;
909 unsigned long mask;
911 xgcv.background = s->face->background;
912 xgcv.foreground = s->face->foreground;
913 xgcv.graphics_exposures = False;
914 mask = GCForeground | GCBackground | GCGraphicsExposures;
916 if (FRAME_DISPLAY_INFO (s->f)->scratch_cursor_gc)
917 XChangeGC (s->display, FRAME_DISPLAY_INFO (s->f)->scratch_cursor_gc,
918 mask, &xgcv);
919 else
920 FRAME_DISPLAY_INFO (s->f)->scratch_cursor_gc
921 = XCreateGC (s->display, s->window, mask, &xgcv);
923 s->gc = FRAME_DISPLAY_INFO (s->f)->scratch_cursor_gc;
926 eassert (s->gc != 0);
930 /* Set S->gc of glyph string S to a GC suitable for drawing a mode line.
931 Faces to use in the mode line have already been computed when the
932 matrix was built, so there isn't much to do, here. */
934 static void
935 x_set_mode_line_face_gc (struct glyph_string *s)
937 s->gc = s->face->gc;
941 /* Set S->gc of glyph string S for drawing that glyph string. Set
942 S->stippled_p to a non-zero value if the face of S has a stipple
943 pattern. */
945 static void
946 x_set_glyph_string_gc (struct glyph_string *s)
948 PREPARE_FACE_FOR_DISPLAY (s->f, s->face);
950 if (s->hl == DRAW_NORMAL_TEXT)
952 s->gc = s->face->gc;
953 s->stippled_p = s->face->stipple != 0;
955 else if (s->hl == DRAW_INVERSE_VIDEO)
957 x_set_mode_line_face_gc (s);
958 s->stippled_p = s->face->stipple != 0;
960 else if (s->hl == DRAW_CURSOR)
962 x_set_cursor_gc (s);
963 s->stippled_p = 0;
965 else if (s->hl == DRAW_MOUSE_FACE)
967 x_set_mouse_face_gc (s);
968 s->stippled_p = s->face->stipple != 0;
970 else if (s->hl == DRAW_IMAGE_RAISED
971 || s->hl == DRAW_IMAGE_SUNKEN)
973 s->gc = s->face->gc;
974 s->stippled_p = s->face->stipple != 0;
976 else
978 s->gc = s->face->gc;
979 s->stippled_p = s->face->stipple != 0;
982 /* GC must have been set. */
983 eassert (s->gc != 0);
987 /* Set clipping for output of glyph string S. S may be part of a mode
988 line or menu if we don't have X toolkit support. */
990 static void
991 x_set_glyph_string_clipping (struct glyph_string *s)
993 XRectangle *r = s->clip;
994 int n = get_glyph_string_clip_rects (s, r, 2);
996 if (n > 0)
997 XSetClipRectangles (s->display, s->gc, 0, 0, r, n, Unsorted);
998 s->num_clips = n;
1002 /* Set SRC's clipping for output of glyph string DST. This is called
1003 when we are drawing DST's left_overhang or right_overhang only in
1004 the area of SRC. */
1006 static void
1007 x_set_glyph_string_clipping_exactly (struct glyph_string *src, struct glyph_string *dst)
1009 XRectangle r;
1011 r.x = src->x;
1012 r.width = src->width;
1013 r.y = src->y;
1014 r.height = src->height;
1015 dst->clip[0] = r;
1016 dst->num_clips = 1;
1017 XSetClipRectangles (dst->display, dst->gc, 0, 0, &r, 1, Unsorted);
1021 /* RIF:
1022 Compute left and right overhang of glyph string S. */
1024 static void
1025 x_compute_glyph_string_overhangs (struct glyph_string *s)
1027 if (s->cmp == NULL
1028 && (s->first_glyph->type == CHAR_GLYPH
1029 || s->first_glyph->type == COMPOSITE_GLYPH))
1031 struct font_metrics metrics;
1033 if (s->first_glyph->type == CHAR_GLYPH)
1035 unsigned *code = alloca (sizeof (unsigned) * s->nchars);
1036 struct font *font = s->font;
1037 int i;
1039 for (i = 0; i < s->nchars; i++)
1040 code[i] = (s->char2b[i].byte1 << 8) | s->char2b[i].byte2;
1041 font->driver->text_extents (font, code, s->nchars, &metrics);
1043 else
1045 Lisp_Object gstring = composition_gstring_from_id (s->cmp_id);
1047 composition_gstring_width (gstring, s->cmp_from, s->cmp_to, &metrics);
1049 s->right_overhang = (metrics.rbearing > metrics.width
1050 ? metrics.rbearing - metrics.width : 0);
1051 s->left_overhang = metrics.lbearing < 0 ? - metrics.lbearing : 0;
1053 else if (s->cmp)
1055 s->right_overhang = s->cmp->rbearing - s->cmp->pixel_width;
1056 s->left_overhang = - s->cmp->lbearing;
1061 /* Fill rectangle X, Y, W, H with background color of glyph string S. */
1063 static void
1064 x_clear_glyph_string_rect (struct glyph_string *s, int x, int y, int w, int h)
1066 XGCValues xgcv;
1067 XGetGCValues (s->display, s->gc, GCForeground | GCBackground, &xgcv);
1068 XSetForeground (s->display, s->gc, xgcv.background);
1069 XFillRectangle (s->display, s->window, s->gc, x, y, w, h);
1070 XSetForeground (s->display, s->gc, xgcv.foreground);
1074 /* Draw the background of glyph_string S. If S->background_filled_p
1075 is non-zero don't draw it. FORCE_P non-zero means draw the
1076 background even if it wouldn't be drawn normally. This is used
1077 when a string preceding S draws into the background of S, or S
1078 contains the first component of a composition. */
1080 static void
1081 x_draw_glyph_string_background (struct glyph_string *s, bool force_p)
1083 /* Nothing to do if background has already been drawn or if it
1084 shouldn't be drawn in the first place. */
1085 if (!s->background_filled_p)
1087 int box_line_width = max (s->face->box_line_width, 0);
1089 if (s->stippled_p)
1091 /* Fill background with a stipple pattern. */
1092 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
1093 XFillRectangle (s->display, s->window, s->gc, s->x,
1094 s->y + box_line_width,
1095 s->background_width,
1096 s->height - 2 * box_line_width);
1097 XSetFillStyle (s->display, s->gc, FillSolid);
1098 s->background_filled_p = 1;
1100 else if (FONT_HEIGHT (s->font) < s->height - 2 * box_line_width
1101 || s->font_not_found_p
1102 || s->extends_to_end_of_line_p
1103 || force_p)
1105 x_clear_glyph_string_rect (s, s->x, s->y + box_line_width,
1106 s->background_width,
1107 s->height - 2 * box_line_width);
1108 s->background_filled_p = 1;
1114 /* Draw the foreground of glyph string S. */
1116 static void
1117 x_draw_glyph_string_foreground (struct glyph_string *s)
1119 int i, x;
1121 /* If first glyph of S has a left box line, start drawing the text
1122 of S to the right of that box line. */
1123 if (s->face->box != FACE_NO_BOX
1124 && s->first_glyph->left_box_line_p)
1125 x = s->x + eabs (s->face->box_line_width);
1126 else
1127 x = s->x;
1129 /* Draw characters of S as rectangles if S's font could not be
1130 loaded. */
1131 if (s->font_not_found_p)
1133 for (i = 0; i < s->nchars; ++i)
1135 struct glyph *g = s->first_glyph + i;
1136 XDrawRectangle (s->display, s->window,
1137 s->gc, x, s->y, g->pixel_width - 1,
1138 s->height - 1);
1139 x += g->pixel_width;
1142 else
1144 struct font *font = s->font;
1145 int boff = font->baseline_offset;
1146 int y;
1148 if (font->vertical_centering)
1149 boff = VCENTER_BASELINE_OFFSET (font, s->f) - boff;
1151 y = s->ybase - boff;
1152 if (s->for_overlaps
1153 || (s->background_filled_p && s->hl != DRAW_CURSOR))
1154 font->driver->draw (s, 0, s->nchars, x, y, 0);
1155 else
1156 font->driver->draw (s, 0, s->nchars, x, y, 1);
1157 if (s->face->overstrike)
1158 font->driver->draw (s, 0, s->nchars, x + 1, y, 0);
1162 /* Draw the foreground of composite glyph string S. */
1164 static void
1165 x_draw_composite_glyph_string_foreground (struct glyph_string *s)
1167 int i, j, x;
1168 struct font *font = s->font;
1170 /* If first glyph of S has a left box line, start drawing the text
1171 of S to the right of that box line. */
1172 if (s->face && s->face->box != FACE_NO_BOX
1173 && s->first_glyph->left_box_line_p)
1174 x = s->x + eabs (s->face->box_line_width);
1175 else
1176 x = s->x;
1178 /* S is a glyph string for a composition. S->cmp_from is the index
1179 of the first character drawn for glyphs of this composition.
1180 S->cmp_from == 0 means we are drawing the very first character of
1181 this composition. */
1183 /* Draw a rectangle for the composition if the font for the very
1184 first character of the composition could not be loaded. */
1185 if (s->font_not_found_p)
1187 if (s->cmp_from == 0)
1188 XDrawRectangle (s->display, s->window, s->gc, x, s->y,
1189 s->width - 1, s->height - 1);
1191 else if (! s->first_glyph->u.cmp.automatic)
1193 int y = s->ybase;
1195 for (i = 0, j = s->cmp_from; i < s->nchars; i++, j++)
1196 /* TAB in a composition means display glyphs with padding
1197 space on the left or right. */
1198 if (COMPOSITION_GLYPH (s->cmp, j) != '\t')
1200 int xx = x + s->cmp->offsets[j * 2];
1201 int yy = y - s->cmp->offsets[j * 2 + 1];
1203 font->driver->draw (s, j, j + 1, xx, yy, 0);
1204 if (s->face->overstrike)
1205 font->driver->draw (s, j, j + 1, xx + 1, yy, 0);
1208 else
1210 Lisp_Object gstring = composition_gstring_from_id (s->cmp_id);
1211 Lisp_Object glyph;
1212 int y = s->ybase;
1213 int width = 0;
1215 for (i = j = s->cmp_from; i < s->cmp_to; i++)
1217 glyph = LGSTRING_GLYPH (gstring, i);
1218 if (NILP (LGLYPH_ADJUSTMENT (glyph)))
1219 width += LGLYPH_WIDTH (glyph);
1220 else
1222 int xoff, yoff, wadjust;
1224 if (j < i)
1226 font->driver->draw (s, j, i, x, y, 0);
1227 if (s->face->overstrike)
1228 font->driver->draw (s, j, i, x + 1, y, 0);
1229 x += width;
1231 xoff = LGLYPH_XOFF (glyph);
1232 yoff = LGLYPH_YOFF (glyph);
1233 wadjust = LGLYPH_WADJUST (glyph);
1234 font->driver->draw (s, i, i + 1, x + xoff, y + yoff, 0);
1235 if (s->face->overstrike)
1236 font->driver->draw (s, i, i + 1, x + xoff + 1, y + yoff, 0);
1237 x += wadjust;
1238 j = i + 1;
1239 width = 0;
1242 if (j < i)
1244 font->driver->draw (s, j, i, x, y, 0);
1245 if (s->face->overstrike)
1246 font->driver->draw (s, j, i, x + 1, y, 0);
1252 /* Draw the foreground of glyph string S for glyphless characters. */
1254 static void
1255 x_draw_glyphless_glyph_string_foreground (struct glyph_string *s)
1257 struct glyph *glyph = s->first_glyph;
1258 XChar2b char2b[8];
1259 int x, i, j;
1261 /* If first glyph of S has a left box line, start drawing the text
1262 of S to the right of that box line. */
1263 if (s->face && s->face->box != FACE_NO_BOX
1264 && s->first_glyph->left_box_line_p)
1265 x = s->x + eabs (s->face->box_line_width);
1266 else
1267 x = s->x;
1269 s->char2b = char2b;
1271 for (i = 0; i < s->nchars; i++, glyph++)
1273 char buf[7], *str = NULL;
1274 int len = glyph->u.glyphless.len;
1276 if (glyph->u.glyphless.method == GLYPHLESS_DISPLAY_ACRONYM)
1278 if (len > 0
1279 && CHAR_TABLE_P (Vglyphless_char_display)
1280 && (CHAR_TABLE_EXTRA_SLOTS (XCHAR_TABLE (Vglyphless_char_display))
1281 >= 1))
1283 Lisp_Object acronym
1284 = (! glyph->u.glyphless.for_no_font
1285 ? CHAR_TABLE_REF (Vglyphless_char_display,
1286 glyph->u.glyphless.ch)
1287 : XCHAR_TABLE (Vglyphless_char_display)->extras[0]);
1288 if (STRINGP (acronym))
1289 str = SSDATA (acronym);
1292 else if (glyph->u.glyphless.method == GLYPHLESS_DISPLAY_HEX_CODE)
1294 sprintf (buf, "%0*X",
1295 glyph->u.glyphless.ch < 0x10000 ? 4 : 6,
1296 glyph->u.glyphless.ch);
1297 str = buf;
1300 if (str)
1302 int upper_len = (len + 1) / 2;
1303 unsigned code;
1305 /* It is assured that all LEN characters in STR is ASCII. */
1306 for (j = 0; j < len; j++)
1308 code = s->font->driver->encode_char (s->font, str[j]);
1309 STORE_XCHAR2B (char2b + j, code >> 8, code & 0xFF);
1311 s->font->driver->draw (s, 0, upper_len,
1312 x + glyph->slice.glyphless.upper_xoff,
1313 s->ybase + glyph->slice.glyphless.upper_yoff,
1315 s->font->driver->draw (s, upper_len, len,
1316 x + glyph->slice.glyphless.lower_xoff,
1317 s->ybase + glyph->slice.glyphless.lower_yoff,
1320 if (glyph->u.glyphless.method != GLYPHLESS_DISPLAY_THIN_SPACE)
1321 XDrawRectangle (s->display, s->window, s->gc,
1322 x, s->ybase - glyph->ascent,
1323 glyph->pixel_width - 1,
1324 glyph->ascent + glyph->descent - 1);
1325 x += glyph->pixel_width;
1329 #ifdef USE_X_TOOLKIT
1331 #ifdef USE_LUCID
1333 /* Return the frame on which widget WIDGET is used.. Abort if frame
1334 cannot be determined. */
1336 static struct frame *
1337 x_frame_of_widget (Widget widget)
1339 struct x_display_info *dpyinfo;
1340 Lisp_Object tail, frame;
1341 struct frame *f;
1343 dpyinfo = x_display_info_for_display (XtDisplay (widget));
1345 /* Find the top-level shell of the widget. Note that this function
1346 can be called when the widget is not yet realized, so XtWindow
1347 (widget) == 0. That's the reason we can't simply use
1348 x_any_window_to_frame. */
1349 while (!XtIsTopLevelShell (widget))
1350 widget = XtParent (widget);
1352 /* Look for a frame with that top-level widget. Allocate the color
1353 on that frame to get the right gamma correction value. */
1354 FOR_EACH_FRAME (tail, frame)
1356 f = XFRAME (frame);
1357 if (FRAME_X_P (f)
1358 && f->output_data.nothing != 1
1359 && FRAME_DISPLAY_INFO (f) == dpyinfo
1360 && f->output_data.x->widget == widget)
1361 return f;
1363 emacs_abort ();
1366 /* Allocate a color which is lighter or darker than *PIXEL by FACTOR
1367 or DELTA. Try a color with RGB values multiplied by FACTOR first.
1368 If this produces the same color as PIXEL, try a color where all RGB
1369 values have DELTA added. Return the allocated color in *PIXEL.
1370 DISPLAY is the X display, CMAP is the colormap to operate on.
1371 Value is true if successful. */
1373 bool
1374 x_alloc_lighter_color_for_widget (Widget widget, Display *display, Colormap cmap,
1375 unsigned long *pixel, double factor, int delta)
1377 struct frame *f = x_frame_of_widget (widget);
1378 return x_alloc_lighter_color (f, display, cmap, pixel, factor, delta);
1381 #endif /* USE_LUCID */
1384 /* Structure specifying which arguments should be passed by Xt to
1385 cvt_string_to_pixel. We want the widget's screen and colormap. */
1387 static XtConvertArgRec cvt_string_to_pixel_args[] =
1389 {XtWidgetBaseOffset, (XtPointer) XtOffset (Widget, core.screen),
1390 sizeof (Screen *)},
1391 {XtWidgetBaseOffset, (XtPointer) XtOffset (Widget, core.colormap),
1392 sizeof (Colormap)}
1396 /* The address of this variable is returned by
1397 cvt_string_to_pixel. */
1399 static Pixel cvt_string_to_pixel_value;
1402 /* Convert a color name to a pixel color.
1404 DPY is the display we are working on.
1406 ARGS is an array of *NARGS XrmValue structures holding additional
1407 information about the widget for which the conversion takes place.
1408 The contents of this array are determined by the specification
1409 in cvt_string_to_pixel_args.
1411 FROM is a pointer to an XrmValue which points to the color name to
1412 convert. TO is an XrmValue in which to return the pixel color.
1414 CLOSURE_RET is a pointer to user-data, in which we record if
1415 we allocated the color or not.
1417 Value is True if successful, False otherwise. */
1419 static Boolean
1420 cvt_string_to_pixel (Display *dpy, XrmValue *args, Cardinal *nargs,
1421 XrmValue *from, XrmValue *to,
1422 XtPointer *closure_ret)
1424 Screen *screen;
1425 Colormap cmap;
1426 Pixel pixel;
1427 String color_name;
1428 XColor color;
1430 if (*nargs != 2)
1432 XtAppWarningMsg (XtDisplayToApplicationContext (dpy),
1433 "wrongParameters", "cvt_string_to_pixel",
1434 "XtToolkitError",
1435 "Screen and colormap args required", NULL, NULL);
1436 return False;
1439 screen = *(Screen **) args[0].addr;
1440 cmap = *(Colormap *) args[1].addr;
1441 color_name = (String) from->addr;
1443 if (strcmp (color_name, XtDefaultBackground) == 0)
1445 *closure_ret = (XtPointer) False;
1446 pixel = WhitePixelOfScreen (screen);
1448 else if (strcmp (color_name, XtDefaultForeground) == 0)
1450 *closure_ret = (XtPointer) False;
1451 pixel = BlackPixelOfScreen (screen);
1453 else if (XParseColor (dpy, cmap, color_name, &color)
1454 && x_alloc_nearest_color_1 (dpy, cmap, &color))
1456 pixel = color.pixel;
1457 *closure_ret = (XtPointer) True;
1459 else
1461 String params[1];
1462 Cardinal nparams = 1;
1464 params[0] = color_name;
1465 XtAppWarningMsg (XtDisplayToApplicationContext (dpy),
1466 "badValue", "cvt_string_to_pixel",
1467 "XtToolkitError", "Invalid color `%s'",
1468 params, &nparams);
1469 return False;
1472 if (to->addr != NULL)
1474 if (to->size < sizeof (Pixel))
1476 to->size = sizeof (Pixel);
1477 return False;
1480 *(Pixel *) to->addr = pixel;
1482 else
1484 cvt_string_to_pixel_value = pixel;
1485 to->addr = (XtPointer) &cvt_string_to_pixel_value;
1488 to->size = sizeof (Pixel);
1489 return True;
1493 /* Free a pixel color which was previously allocated via
1494 cvt_string_to_pixel. This is registered as the destructor
1495 for this type of resource via XtSetTypeConverter.
1497 APP is the application context in which we work.
1499 TO is a pointer to an XrmValue holding the color to free.
1500 CLOSURE is the value we stored in CLOSURE_RET for this color
1501 in cvt_string_to_pixel.
1503 ARGS and NARGS are like for cvt_string_to_pixel. */
1505 static void
1506 cvt_pixel_dtor (XtAppContext app, XrmValuePtr to, XtPointer closure, XrmValuePtr args,
1507 Cardinal *nargs)
1509 if (*nargs != 2)
1511 XtAppWarningMsg (app, "wrongParameters", "cvt_pixel_dtor",
1512 "XtToolkitError",
1513 "Screen and colormap arguments required",
1514 NULL, NULL);
1516 else if (closure != NULL)
1518 /* We did allocate the pixel, so free it. */
1519 Screen *screen = *(Screen **) args[0].addr;
1520 Colormap cmap = *(Colormap *) args[1].addr;
1521 x_free_dpy_colors (DisplayOfScreen (screen), screen, cmap,
1522 (Pixel *) to->addr, 1);
1527 #endif /* USE_X_TOOLKIT */
1530 /* Value is an array of XColor structures for the contents of the
1531 color map of display DPY. Set *NCELLS to the size of the array.
1532 Note that this probably shouldn't be called for large color maps,
1533 say a 24-bit TrueColor map. */
1535 static const XColor *
1536 x_color_cells (Display *dpy, int *ncells)
1538 struct x_display_info *dpyinfo = x_display_info_for_display (dpy);
1540 if (dpyinfo->color_cells == NULL)
1542 Screen *screen = dpyinfo->screen;
1543 int ncolor_cells = XDisplayCells (dpy, XScreenNumberOfScreen (screen));
1544 int i;
1546 dpyinfo->color_cells = xnmalloc (ncolor_cells,
1547 sizeof *dpyinfo->color_cells);
1548 dpyinfo->ncolor_cells = ncolor_cells;
1550 for (i = 0; i < ncolor_cells; ++i)
1551 dpyinfo->color_cells[i].pixel = i;
1553 XQueryColors (dpy, dpyinfo->cmap,
1554 dpyinfo->color_cells, ncolor_cells);
1557 *ncells = dpyinfo->ncolor_cells;
1558 return dpyinfo->color_cells;
1562 /* On frame F, translate pixel colors to RGB values for the NCOLORS
1563 colors in COLORS. Use cached information, if available. */
1565 void
1566 x_query_colors (struct frame *f, XColor *colors, int ncolors)
1568 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
1570 if (dpyinfo->color_cells)
1572 int i;
1573 for (i = 0; i < ncolors; ++i)
1575 unsigned long pixel = colors[i].pixel;
1576 eassert (pixel < dpyinfo->ncolor_cells);
1577 eassert (dpyinfo->color_cells[pixel].pixel == pixel);
1578 colors[i] = dpyinfo->color_cells[pixel];
1581 else
1582 XQueryColors (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f), colors, ncolors);
1586 /* On frame F, translate pixel color to RGB values for the color in
1587 COLOR. Use cached information, if available. */
1589 void
1590 x_query_color (struct frame *f, XColor *color)
1592 x_query_colors (f, color, 1);
1596 /* Allocate the color COLOR->pixel on DISPLAY, colormap CMAP. If an
1597 exact match can't be allocated, try the nearest color available.
1598 Value is true if successful. Set *COLOR to the color
1599 allocated. */
1601 static bool
1602 x_alloc_nearest_color_1 (Display *dpy, Colormap cmap, XColor *color)
1604 bool rc;
1606 rc = XAllocColor (dpy, cmap, color) != 0;
1607 if (rc == 0)
1609 /* If we got to this point, the colormap is full, so we're going
1610 to try to get the next closest color. The algorithm used is
1611 a least-squares matching, which is what X uses for closest
1612 color matching with StaticColor visuals. */
1613 int nearest, i;
1614 int max_color_delta = 255;
1615 int max_delta = 3 * max_color_delta;
1616 int nearest_delta = max_delta + 1;
1617 int ncells;
1618 const XColor *cells = x_color_cells (dpy, &ncells);
1620 for (nearest = i = 0; i < ncells; ++i)
1622 int dred = (color->red >> 8) - (cells[i].red >> 8);
1623 int dgreen = (color->green >> 8) - (cells[i].green >> 8);
1624 int dblue = (color->blue >> 8) - (cells[i].blue >> 8);
1625 int delta = dred * dred + dgreen * dgreen + dblue * dblue;
1627 if (delta < nearest_delta)
1629 nearest = i;
1630 nearest_delta = delta;
1634 color->red = cells[nearest].red;
1635 color->green = cells[nearest].green;
1636 color->blue = cells[nearest].blue;
1637 rc = XAllocColor (dpy, cmap, color) != 0;
1639 else
1641 /* If allocation succeeded, and the allocated pixel color is not
1642 equal to a cached pixel color recorded earlier, there was a
1643 change in the colormap, so clear the color cache. */
1644 struct x_display_info *dpyinfo = x_display_info_for_display (dpy);
1645 XColor *cached_color;
1647 if (dpyinfo->color_cells
1648 && (cached_color = &dpyinfo->color_cells[color->pixel],
1649 (cached_color->red != color->red
1650 || cached_color->blue != color->blue
1651 || cached_color->green != color->green)))
1653 xfree (dpyinfo->color_cells);
1654 dpyinfo->color_cells = NULL;
1655 dpyinfo->ncolor_cells = 0;
1659 #ifdef DEBUG_X_COLORS
1660 if (rc)
1661 register_color (color->pixel);
1662 #endif /* DEBUG_X_COLORS */
1664 return rc;
1668 /* Allocate the color COLOR->pixel on frame F, colormap CMAP. If an
1669 exact match can't be allocated, try the nearest color available.
1670 Value is true if successful. Set *COLOR to the color
1671 allocated. */
1673 bool
1674 x_alloc_nearest_color (struct frame *f, Colormap cmap, XColor *color)
1676 gamma_correct (f, color);
1677 return x_alloc_nearest_color_1 (FRAME_X_DISPLAY (f), cmap, color);
1681 /* Allocate color PIXEL on frame F. PIXEL must already be allocated.
1682 It's necessary to do this instead of just using PIXEL directly to
1683 get color reference counts right. */
1685 unsigned long
1686 x_copy_color (struct frame *f, unsigned long pixel)
1688 XColor color;
1690 color.pixel = pixel;
1691 block_input ();
1692 x_query_color (f, &color);
1693 XAllocColor (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f), &color);
1694 unblock_input ();
1695 #ifdef DEBUG_X_COLORS
1696 register_color (pixel);
1697 #endif
1698 return color.pixel;
1702 /* Brightness beyond which a color won't have its highlight brightness
1703 boosted.
1705 Nominally, highlight colors for `3d' faces are calculated by
1706 brightening an object's color by a constant scale factor, but this
1707 doesn't yield good results for dark colors, so for colors who's
1708 brightness is less than this value (on a scale of 0-65535) have an
1709 use an additional additive factor.
1711 The value here is set so that the default menu-bar/mode-line color
1712 (grey75) will not have its highlights changed at all. */
1713 #define HIGHLIGHT_COLOR_DARK_BOOST_LIMIT 48000
1716 /* Allocate a color which is lighter or darker than *PIXEL by FACTOR
1717 or DELTA. Try a color with RGB values multiplied by FACTOR first.
1718 If this produces the same color as PIXEL, try a color where all RGB
1719 values have DELTA added. Return the allocated color in *PIXEL.
1720 DISPLAY is the X display, CMAP is the colormap to operate on.
1721 Value is non-zero if successful. */
1723 static bool
1724 x_alloc_lighter_color (struct frame *f, Display *display, Colormap cmap,
1725 unsigned long *pixel, double factor, int delta)
1727 XColor color, new;
1728 long bright;
1729 bool success_p;
1731 /* Get RGB color values. */
1732 color.pixel = *pixel;
1733 x_query_color (f, &color);
1735 /* Change RGB values by specified FACTOR. Avoid overflow! */
1736 eassert (factor >= 0);
1737 new.red = min (0xffff, factor * color.red);
1738 new.green = min (0xffff, factor * color.green);
1739 new.blue = min (0xffff, factor * color.blue);
1741 /* Calculate brightness of COLOR. */
1742 bright = (2 * color.red + 3 * color.green + color.blue) / 6;
1744 /* We only boost colors that are darker than
1745 HIGHLIGHT_COLOR_DARK_BOOST_LIMIT. */
1746 if (bright < HIGHLIGHT_COLOR_DARK_BOOST_LIMIT)
1747 /* Make an additive adjustment to NEW, because it's dark enough so
1748 that scaling by FACTOR alone isn't enough. */
1750 /* How far below the limit this color is (0 - 1, 1 being darker). */
1751 double dimness = 1 - (double)bright / HIGHLIGHT_COLOR_DARK_BOOST_LIMIT;
1752 /* The additive adjustment. */
1753 int min_delta = delta * dimness * factor / 2;
1755 if (factor < 1)
1757 new.red = max (0, new.red - min_delta);
1758 new.green = max (0, new.green - min_delta);
1759 new.blue = max (0, new.blue - min_delta);
1761 else
1763 new.red = min (0xffff, min_delta + new.red);
1764 new.green = min (0xffff, min_delta + new.green);
1765 new.blue = min (0xffff, min_delta + new.blue);
1769 /* Try to allocate the color. */
1770 success_p = x_alloc_nearest_color (f, cmap, &new);
1771 if (success_p)
1773 if (new.pixel == *pixel)
1775 /* If we end up with the same color as before, try adding
1776 delta to the RGB values. */
1777 x_free_colors (f, &new.pixel, 1);
1779 new.red = min (0xffff, delta + color.red);
1780 new.green = min (0xffff, delta + color.green);
1781 new.blue = min (0xffff, delta + color.blue);
1782 success_p = x_alloc_nearest_color (f, cmap, &new);
1784 else
1785 success_p = 1;
1786 *pixel = new.pixel;
1789 return success_p;
1793 /* Set up the foreground color for drawing relief lines of glyph
1794 string S. RELIEF is a pointer to a struct relief containing the GC
1795 with which lines will be drawn. Use a color that is FACTOR or
1796 DELTA lighter or darker than the relief's background which is found
1797 in S->f->output_data.x->relief_background. If such a color cannot
1798 be allocated, use DEFAULT_PIXEL, instead. */
1800 static void
1801 x_setup_relief_color (struct frame *f, struct relief *relief, double factor,
1802 int delta, unsigned long default_pixel)
1804 XGCValues xgcv;
1805 struct x_output *di = f->output_data.x;
1806 unsigned long mask = GCForeground | GCLineWidth | GCGraphicsExposures;
1807 unsigned long pixel;
1808 unsigned long background = di->relief_background;
1809 Colormap cmap = FRAME_X_COLORMAP (f);
1810 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
1811 Display *dpy = FRAME_X_DISPLAY (f);
1813 xgcv.graphics_exposures = False;
1814 xgcv.line_width = 1;
1816 /* Free previously allocated color. The color cell will be reused
1817 when it has been freed as many times as it was allocated, so this
1818 doesn't affect faces using the same colors. */
1819 if (relief->gc && relief->pixel != -1)
1821 x_free_colors (f, &relief->pixel, 1);
1822 relief->pixel = -1;
1825 /* Allocate new color. */
1826 xgcv.foreground = default_pixel;
1827 pixel = background;
1828 if (dpyinfo->n_planes != 1
1829 && x_alloc_lighter_color (f, dpy, cmap, &pixel, factor, delta))
1830 xgcv.foreground = relief->pixel = pixel;
1832 if (relief->gc == 0)
1834 xgcv.stipple = dpyinfo->gray;
1835 mask |= GCStipple;
1836 relief->gc = XCreateGC (dpy, FRAME_X_WINDOW (f), mask, &xgcv);
1838 else
1839 XChangeGC (dpy, relief->gc, mask, &xgcv);
1843 /* Set up colors for the relief lines around glyph string S. */
1845 static void
1846 x_setup_relief_colors (struct glyph_string *s)
1848 struct x_output *di = s->f->output_data.x;
1849 unsigned long color;
1851 if (s->face->use_box_color_for_shadows_p)
1852 color = s->face->box_color;
1853 else if (s->first_glyph->type == IMAGE_GLYPH
1854 && s->img->pixmap
1855 && !IMAGE_BACKGROUND_TRANSPARENT (s->img, s->f, 0))
1856 color = IMAGE_BACKGROUND (s->img, s->f, 0);
1857 else
1859 XGCValues xgcv;
1861 /* Get the background color of the face. */
1862 XGetGCValues (s->display, s->gc, GCBackground, &xgcv);
1863 color = xgcv.background;
1866 if (di->white_relief.gc == 0
1867 || color != di->relief_background)
1869 di->relief_background = color;
1870 x_setup_relief_color (s->f, &di->white_relief, 1.2, 0x8000,
1871 WHITE_PIX_DEFAULT (s->f));
1872 x_setup_relief_color (s->f, &di->black_relief, 0.6, 0x4000,
1873 BLACK_PIX_DEFAULT (s->f));
1878 /* Draw a relief on frame F inside the rectangle given by LEFT_X,
1879 TOP_Y, RIGHT_X, and BOTTOM_Y. WIDTH is the thickness of the relief
1880 to draw, it must be >= 0. RAISED_P non-zero means draw a raised
1881 relief. LEFT_P non-zero means draw a relief on the left side of
1882 the rectangle. RIGHT_P non-zero means draw a relief on the right
1883 side of the rectangle. CLIP_RECT is the clipping rectangle to use
1884 when drawing. */
1886 static void
1887 x_draw_relief_rect (struct frame *f,
1888 int left_x, int top_y, int right_x, int bottom_y, int width,
1889 int raised_p, int top_p, int bot_p, int left_p, int right_p,
1890 XRectangle *clip_rect)
1892 Display *dpy = FRAME_X_DISPLAY (f);
1893 Window window = FRAME_X_WINDOW (f);
1894 int i;
1895 GC gc;
1897 if (raised_p)
1898 gc = f->output_data.x->white_relief.gc;
1899 else
1900 gc = f->output_data.x->black_relief.gc;
1901 XSetClipRectangles (dpy, gc, 0, 0, clip_rect, 1, Unsorted);
1903 /* This code is more complicated than it has to be, because of two
1904 minor hacks to make the boxes look nicer: (i) if width > 1, draw
1905 the outermost line using the black relief. (ii) Omit the four
1906 corner pixels. */
1908 /* Top. */
1909 if (top_p)
1911 if (width == 1)
1912 XDrawLine (dpy, window, gc,
1913 left_x + (left_p ? 1 : 0), top_y,
1914 right_x + (right_p ? 0 : 1), top_y);
1916 for (i = 1; i < width; ++i)
1917 XDrawLine (dpy, window, gc,
1918 left_x + i * left_p, top_y + i,
1919 right_x + 1 - i * right_p, top_y + i);
1922 /* Left. */
1923 if (left_p)
1925 if (width == 1)
1926 XDrawLine (dpy, window, gc, left_x, top_y + 1, left_x, bottom_y);
1928 XClearArea (dpy, window, left_x, top_y, 1, 1, False);
1929 XClearArea (dpy, window, left_x, bottom_y, 1, 1, False);
1931 for (i = (width > 1 ? 1 : 0); i < width; ++i)
1932 XDrawLine (dpy, window, gc,
1933 left_x + i, top_y + (i + 1) * top_p,
1934 left_x + i, bottom_y + 1 - (i + 1) * bot_p);
1937 XSetClipMask (dpy, gc, None);
1938 if (raised_p)
1939 gc = f->output_data.x->black_relief.gc;
1940 else
1941 gc = f->output_data.x->white_relief.gc;
1942 XSetClipRectangles (dpy, gc, 0, 0, clip_rect, 1, Unsorted);
1944 if (width > 1)
1946 /* Outermost top line. */
1947 if (top_p)
1948 XDrawLine (dpy, window, gc,
1949 left_x + (left_p ? 1 : 0), top_y,
1950 right_x + (right_p ? 0 : 1), top_y);
1952 /* Outermost left line. */
1953 if (left_p)
1954 XDrawLine (dpy, window, gc, left_x, top_y + 1, left_x, bottom_y);
1957 /* Bottom. */
1958 if (bot_p)
1960 XDrawLine (dpy, window, gc,
1961 left_x + (left_p ? 1 : 0), bottom_y,
1962 right_x + (right_p ? 0 : 1), bottom_y);
1963 for (i = 1; i < width; ++i)
1964 XDrawLine (dpy, window, gc,
1965 left_x + i * left_p, bottom_y - i,
1966 right_x + 1 - i * right_p, bottom_y - i);
1969 /* Right. */
1970 if (right_p)
1972 XClearArea (dpy, window, right_x, top_y, 1, 1, False);
1973 XClearArea (dpy, window, right_x, bottom_y, 1, 1, False);
1974 for (i = 0; i < width; ++i)
1975 XDrawLine (dpy, window, gc,
1976 right_x - i, top_y + (i + 1) * top_p,
1977 right_x - i, bottom_y + 1 - (i + 1) * bot_p);
1980 XSetClipMask (dpy, gc, None);
1984 /* Draw a box on frame F inside the rectangle given by LEFT_X, TOP_Y,
1985 RIGHT_X, and BOTTOM_Y. WIDTH is the thickness of the lines to
1986 draw, it must be >= 0. LEFT_P non-zero means draw a line on the
1987 left side of the rectangle. RIGHT_P non-zero means draw a line
1988 on the right side of the rectangle. CLIP_RECT is the clipping
1989 rectangle to use when drawing. */
1991 static void
1992 x_draw_box_rect (struct glyph_string *s,
1993 int left_x, int top_y, int right_x, int bottom_y, int width,
1994 int left_p, int right_p, XRectangle *clip_rect)
1996 XGCValues xgcv;
1998 XGetGCValues (s->display, s->gc, GCForeground, &xgcv);
1999 XSetForeground (s->display, s->gc, s->face->box_color);
2000 XSetClipRectangles (s->display, s->gc, 0, 0, clip_rect, 1, Unsorted);
2002 /* Top. */
2003 XFillRectangle (s->display, s->window, s->gc,
2004 left_x, top_y, right_x - left_x + 1, width);
2006 /* Left. */
2007 if (left_p)
2008 XFillRectangle (s->display, s->window, s->gc,
2009 left_x, top_y, width, bottom_y - top_y + 1);
2011 /* Bottom. */
2012 XFillRectangle (s->display, s->window, s->gc,
2013 left_x, bottom_y - width + 1, right_x - left_x + 1, width);
2015 /* Right. */
2016 if (right_p)
2017 XFillRectangle (s->display, s->window, s->gc,
2018 right_x - width + 1, top_y, width, bottom_y - top_y + 1);
2020 XSetForeground (s->display, s->gc, xgcv.foreground);
2021 XSetClipMask (s->display, s->gc, None);
2025 /* Draw a box around glyph string S. */
2027 static void
2028 x_draw_glyph_string_box (struct glyph_string *s)
2030 int width, left_x, right_x, top_y, bottom_y, last_x, raised_p;
2031 int left_p, right_p;
2032 struct glyph *last_glyph;
2033 XRectangle clip_rect;
2035 last_x = ((s->row->full_width_p && !s->w->pseudo_window_p)
2036 ? WINDOW_RIGHT_EDGE_X (s->w)
2037 : window_box_right (s->w, s->area));
2039 /* The glyph that may have a right box line. */
2040 last_glyph = (s->cmp || s->img
2041 ? s->first_glyph
2042 : s->first_glyph + s->nchars - 1);
2044 width = eabs (s->face->box_line_width);
2045 raised_p = s->face->box == FACE_RAISED_BOX;
2046 left_x = s->x;
2047 right_x = (s->row->full_width_p && s->extends_to_end_of_line_p
2048 ? last_x - 1
2049 : min (last_x, s->x + s->background_width) - 1);
2050 top_y = s->y;
2051 bottom_y = top_y + s->height - 1;
2053 left_p = (s->first_glyph->left_box_line_p
2054 || (s->hl == DRAW_MOUSE_FACE
2055 && (s->prev == NULL
2056 || s->prev->hl != s->hl)));
2057 right_p = (last_glyph->right_box_line_p
2058 || (s->hl == DRAW_MOUSE_FACE
2059 && (s->next == NULL
2060 || s->next->hl != s->hl)));
2062 get_glyph_string_clip_rect (s, &clip_rect);
2064 if (s->face->box == FACE_SIMPLE_BOX)
2065 x_draw_box_rect (s, left_x, top_y, right_x, bottom_y, width,
2066 left_p, right_p, &clip_rect);
2067 else
2069 x_setup_relief_colors (s);
2070 x_draw_relief_rect (s->f, left_x, top_y, right_x, bottom_y,
2071 width, raised_p, 1, 1, left_p, right_p, &clip_rect);
2076 /* Draw foreground of image glyph string S. */
2078 static void
2079 x_draw_image_foreground (struct glyph_string *s)
2081 int x = s->x;
2082 int y = s->ybase - image_ascent (s->img, s->face, &s->slice);
2084 /* If first glyph of S has a left box line, start drawing it to the
2085 right of that line. */
2086 if (s->face->box != FACE_NO_BOX
2087 && s->first_glyph->left_box_line_p
2088 && s->slice.x == 0)
2089 x += eabs (s->face->box_line_width);
2091 /* If there is a margin around the image, adjust x- and y-position
2092 by that margin. */
2093 if (s->slice.x == 0)
2094 x += s->img->hmargin;
2095 if (s->slice.y == 0)
2096 y += s->img->vmargin;
2098 if (s->img->pixmap)
2100 if (s->img->mask)
2102 /* We can't set both a clip mask and use XSetClipRectangles
2103 because the latter also sets a clip mask. We also can't
2104 trust on the shape extension to be available
2105 (XShapeCombineRegion). So, compute the rectangle to draw
2106 manually. */
2107 unsigned long mask = (GCClipMask | GCClipXOrigin | GCClipYOrigin
2108 | GCFunction);
2109 XGCValues xgcv;
2110 XRectangle clip_rect, image_rect, r;
2112 xgcv.clip_mask = s->img->mask;
2113 xgcv.clip_x_origin = x;
2114 xgcv.clip_y_origin = y;
2115 xgcv.function = GXcopy;
2116 XChangeGC (s->display, s->gc, mask, &xgcv);
2118 get_glyph_string_clip_rect (s, &clip_rect);
2119 image_rect.x = x;
2120 image_rect.y = y;
2121 image_rect.width = s->slice.width;
2122 image_rect.height = s->slice.height;
2123 if (x_intersect_rectangles (&clip_rect, &image_rect, &r))
2124 XCopyArea (s->display, s->img->pixmap, s->window, s->gc,
2125 s->slice.x + r.x - x, s->slice.y + r.y - y,
2126 r.width, r.height, r.x, r.y);
2128 else
2130 XRectangle clip_rect, image_rect, r;
2132 get_glyph_string_clip_rect (s, &clip_rect);
2133 image_rect.x = x;
2134 image_rect.y = y;
2135 image_rect.width = s->slice.width;
2136 image_rect.height = s->slice.height;
2137 if (x_intersect_rectangles (&clip_rect, &image_rect, &r))
2138 XCopyArea (s->display, s->img->pixmap, s->window, s->gc,
2139 s->slice.x + r.x - x, s->slice.y + r.y - y,
2140 r.width, r.height, r.x, r.y);
2142 /* When the image has a mask, we can expect that at
2143 least part of a mouse highlight or a block cursor will
2144 be visible. If the image doesn't have a mask, make
2145 a block cursor visible by drawing a rectangle around
2146 the image. I believe it's looking better if we do
2147 nothing here for mouse-face. */
2148 if (s->hl == DRAW_CURSOR)
2150 int relief = eabs (s->img->relief);
2151 XDrawRectangle (s->display, s->window, s->gc,
2152 x - relief, y - relief,
2153 s->slice.width + relief*2 - 1,
2154 s->slice.height + relief*2 - 1);
2158 else
2159 /* Draw a rectangle if image could not be loaded. */
2160 XDrawRectangle (s->display, s->window, s->gc, x, y,
2161 s->slice.width - 1, s->slice.height - 1);
2165 /* Draw a relief around the image glyph string S. */
2167 static void
2168 x_draw_image_relief (struct glyph_string *s)
2170 int x1, y1, thick, raised_p, top_p, bot_p, left_p, right_p;
2171 int extra_x, extra_y;
2172 XRectangle r;
2173 int x = s->x;
2174 int y = s->ybase - image_ascent (s->img, s->face, &s->slice);
2176 /* If first glyph of S has a left box line, start drawing it to the
2177 right of that line. */
2178 if (s->face->box != FACE_NO_BOX
2179 && s->first_glyph->left_box_line_p
2180 && s->slice.x == 0)
2181 x += eabs (s->face->box_line_width);
2183 /* If there is a margin around the image, adjust x- and y-position
2184 by that margin. */
2185 if (s->slice.x == 0)
2186 x += s->img->hmargin;
2187 if (s->slice.y == 0)
2188 y += s->img->vmargin;
2190 if (s->hl == DRAW_IMAGE_SUNKEN
2191 || s->hl == DRAW_IMAGE_RAISED)
2193 thick = tool_bar_button_relief >= 0 ? tool_bar_button_relief : DEFAULT_TOOL_BAR_BUTTON_RELIEF;
2194 raised_p = s->hl == DRAW_IMAGE_RAISED;
2196 else
2198 thick = eabs (s->img->relief);
2199 raised_p = s->img->relief > 0;
2202 x1 = x + s->slice.width - 1;
2203 y1 = y + s->slice.height - 1;
2205 extra_x = extra_y = 0;
2206 if (s->face->id == TOOL_BAR_FACE_ID)
2208 if (CONSP (Vtool_bar_button_margin)
2209 && INTEGERP (XCAR (Vtool_bar_button_margin))
2210 && INTEGERP (XCDR (Vtool_bar_button_margin)))
2212 extra_x = XINT (XCAR (Vtool_bar_button_margin));
2213 extra_y = XINT (XCDR (Vtool_bar_button_margin));
2215 else if (INTEGERP (Vtool_bar_button_margin))
2216 extra_x = extra_y = XINT (Vtool_bar_button_margin);
2219 top_p = bot_p = left_p = right_p = 0;
2221 if (s->slice.x == 0)
2222 x -= thick + extra_x, left_p = 1;
2223 if (s->slice.y == 0)
2224 y -= thick + extra_y, top_p = 1;
2225 if (s->slice.x + s->slice.width == s->img->width)
2226 x1 += thick + extra_x, right_p = 1;
2227 if (s->slice.y + s->slice.height == s->img->height)
2228 y1 += thick + extra_y, bot_p = 1;
2230 x_setup_relief_colors (s);
2231 get_glyph_string_clip_rect (s, &r);
2232 x_draw_relief_rect (s->f, x, y, x1, y1, thick, raised_p,
2233 top_p, bot_p, left_p, right_p, &r);
2237 /* Draw the foreground of image glyph string S to PIXMAP. */
2239 static void
2240 x_draw_image_foreground_1 (struct glyph_string *s, Pixmap pixmap)
2242 int x = 0;
2243 int y = s->ybase - s->y - image_ascent (s->img, s->face, &s->slice);
2245 /* If first glyph of S has a left box line, start drawing it to the
2246 right of that line. */
2247 if (s->face->box != FACE_NO_BOX
2248 && s->first_glyph->left_box_line_p
2249 && s->slice.x == 0)
2250 x += eabs (s->face->box_line_width);
2252 /* If there is a margin around the image, adjust x- and y-position
2253 by that margin. */
2254 if (s->slice.x == 0)
2255 x += s->img->hmargin;
2256 if (s->slice.y == 0)
2257 y += s->img->vmargin;
2259 if (s->img->pixmap)
2261 if (s->img->mask)
2263 /* We can't set both a clip mask and use XSetClipRectangles
2264 because the latter also sets a clip mask. We also can't
2265 trust on the shape extension to be available
2266 (XShapeCombineRegion). So, compute the rectangle to draw
2267 manually. */
2268 unsigned long mask = (GCClipMask | GCClipXOrigin | GCClipYOrigin
2269 | GCFunction);
2270 XGCValues xgcv;
2272 xgcv.clip_mask = s->img->mask;
2273 xgcv.clip_x_origin = x - s->slice.x;
2274 xgcv.clip_y_origin = y - s->slice.y;
2275 xgcv.function = GXcopy;
2276 XChangeGC (s->display, s->gc, mask, &xgcv);
2278 XCopyArea (s->display, s->img->pixmap, pixmap, s->gc,
2279 s->slice.x, s->slice.y,
2280 s->slice.width, s->slice.height, x, y);
2281 XSetClipMask (s->display, s->gc, None);
2283 else
2285 XCopyArea (s->display, s->img->pixmap, pixmap, s->gc,
2286 s->slice.x, s->slice.y,
2287 s->slice.width, s->slice.height, x, y);
2289 /* When the image has a mask, we can expect that at
2290 least part of a mouse highlight or a block cursor will
2291 be visible. If the image doesn't have a mask, make
2292 a block cursor visible by drawing a rectangle around
2293 the image. I believe it's looking better if we do
2294 nothing here for mouse-face. */
2295 if (s->hl == DRAW_CURSOR)
2297 int r = eabs (s->img->relief);
2298 XDrawRectangle (s->display, s->window, s->gc, x - r, y - r,
2299 s->slice.width + r*2 - 1,
2300 s->slice.height + r*2 - 1);
2304 else
2305 /* Draw a rectangle if image could not be loaded. */
2306 XDrawRectangle (s->display, pixmap, s->gc, x, y,
2307 s->slice.width - 1, s->slice.height - 1);
2311 /* Draw part of the background of glyph string S. X, Y, W, and H
2312 give the rectangle to draw. */
2314 static void
2315 x_draw_glyph_string_bg_rect (struct glyph_string *s, int x, int y, int w, int h)
2317 if (s->stippled_p)
2319 /* Fill background with a stipple pattern. */
2320 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
2321 XFillRectangle (s->display, s->window, s->gc, x, y, w, h);
2322 XSetFillStyle (s->display, s->gc, FillSolid);
2324 else
2325 x_clear_glyph_string_rect (s, x, y, w, h);
2329 /* Draw image glyph string S.
2331 s->y
2332 s->x +-------------------------
2333 | s->face->box
2335 | +-------------------------
2336 | | s->img->margin
2338 | | +-------------------
2339 | | | the image
2343 static void
2344 x_draw_image_glyph_string (struct glyph_string *s)
2346 int box_line_hwidth = eabs (s->face->box_line_width);
2347 int box_line_vwidth = max (s->face->box_line_width, 0);
2348 int height;
2349 Pixmap pixmap = None;
2351 height = s->height;
2352 if (s->slice.y == 0)
2353 height -= box_line_vwidth;
2354 if (s->slice.y + s->slice.height >= s->img->height)
2355 height -= box_line_vwidth;
2357 /* Fill background with face under the image. Do it only if row is
2358 taller than image or if image has a clip mask to reduce
2359 flickering. */
2360 s->stippled_p = s->face->stipple != 0;
2361 if (height > s->slice.height
2362 || s->img->hmargin
2363 || s->img->vmargin
2364 || s->img->mask
2365 || s->img->pixmap == 0
2366 || s->width != s->background_width)
2368 if (s->img->mask)
2370 /* Create a pixmap as large as the glyph string. Fill it
2371 with the background color. Copy the image to it, using
2372 its mask. Copy the temporary pixmap to the display. */
2373 Screen *screen = FRAME_X_SCREEN (s->f);
2374 int depth = DefaultDepthOfScreen (screen);
2376 /* Create a pixmap as large as the glyph string. */
2377 pixmap = XCreatePixmap (s->display, s->window,
2378 s->background_width,
2379 s->height, depth);
2381 /* Don't clip in the following because we're working on the
2382 pixmap. */
2383 XSetClipMask (s->display, s->gc, None);
2385 /* Fill the pixmap with the background color/stipple. */
2386 if (s->stippled_p)
2388 /* Fill background with a stipple pattern. */
2389 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
2390 XSetTSOrigin (s->display, s->gc, - s->x, - s->y);
2391 XFillRectangle (s->display, pixmap, s->gc,
2392 0, 0, s->background_width, s->height);
2393 XSetFillStyle (s->display, s->gc, FillSolid);
2394 XSetTSOrigin (s->display, s->gc, 0, 0);
2396 else
2398 XGCValues xgcv;
2399 XGetGCValues (s->display, s->gc, GCForeground | GCBackground,
2400 &xgcv);
2401 XSetForeground (s->display, s->gc, xgcv.background);
2402 XFillRectangle (s->display, pixmap, s->gc,
2403 0, 0, s->background_width, s->height);
2404 XSetForeground (s->display, s->gc, xgcv.foreground);
2407 else
2409 int x = s->x;
2410 int y = s->y;
2411 int width = s->background_width;
2413 if (s->first_glyph->left_box_line_p
2414 && s->slice.x == 0)
2416 x += box_line_hwidth;
2417 width -= box_line_hwidth;
2420 if (s->slice.y == 0)
2421 y += box_line_vwidth;
2423 x_draw_glyph_string_bg_rect (s, x, y, width, height);
2426 s->background_filled_p = 1;
2429 /* Draw the foreground. */
2430 if (pixmap != None)
2432 x_draw_image_foreground_1 (s, pixmap);
2433 x_set_glyph_string_clipping (s);
2434 XCopyArea (s->display, pixmap, s->window, s->gc,
2435 0, 0, s->background_width, s->height, s->x, s->y);
2436 XFreePixmap (s->display, pixmap);
2438 else
2439 x_draw_image_foreground (s);
2441 /* If we must draw a relief around the image, do it. */
2442 if (s->img->relief
2443 || s->hl == DRAW_IMAGE_RAISED
2444 || s->hl == DRAW_IMAGE_SUNKEN)
2445 x_draw_image_relief (s);
2449 /* Draw stretch glyph string S. */
2451 static void
2452 x_draw_stretch_glyph_string (struct glyph_string *s)
2454 eassert (s->first_glyph->type == STRETCH_GLYPH);
2456 if (s->hl == DRAW_CURSOR
2457 && !x_stretch_cursor_p)
2459 /* If `x-stretch-cursor' is nil, don't draw a block cursor as
2460 wide as the stretch glyph. */
2461 int width, background_width = s->background_width;
2462 int x = s->x;
2464 if (!s->row->reversed_p)
2466 int left_x = window_box_left_offset (s->w, TEXT_AREA);
2468 if (x < left_x)
2470 background_width -= left_x - x;
2471 x = left_x;
2474 else
2476 /* In R2L rows, draw the cursor on the right edge of the
2477 stretch glyph. */
2478 int right_x = window_box_right (s->w, TEXT_AREA);
2480 if (x + background_width > right_x)
2481 background_width -= x - right_x;
2482 x += background_width;
2484 width = min (FRAME_COLUMN_WIDTH (s->f), background_width);
2485 if (s->row->reversed_p)
2486 x -= width;
2488 /* Draw cursor. */
2489 x_draw_glyph_string_bg_rect (s, x, s->y, width, s->height);
2491 /* Clear rest using the GC of the original non-cursor face. */
2492 if (width < background_width)
2494 int y = s->y;
2495 int w = background_width - width, h = s->height;
2496 XRectangle r;
2497 GC gc;
2499 if (!s->row->reversed_p)
2500 x += width;
2501 else
2502 x = s->x;
2503 if (s->row->mouse_face_p
2504 && cursor_in_mouse_face_p (s->w))
2506 x_set_mouse_face_gc (s);
2507 gc = s->gc;
2509 else
2510 gc = s->face->gc;
2512 get_glyph_string_clip_rect (s, &r);
2513 XSetClipRectangles (s->display, gc, 0, 0, &r, 1, Unsorted);
2515 if (s->face->stipple)
2517 /* Fill background with a stipple pattern. */
2518 XSetFillStyle (s->display, gc, FillOpaqueStippled);
2519 XFillRectangle (s->display, s->window, gc, x, y, w, h);
2520 XSetFillStyle (s->display, gc, FillSolid);
2522 else
2524 XGCValues xgcv;
2525 XGetGCValues (s->display, gc, GCForeground | GCBackground, &xgcv);
2526 XSetForeground (s->display, gc, xgcv.background);
2527 XFillRectangle (s->display, s->window, gc, x, y, w, h);
2528 XSetForeground (s->display, gc, xgcv.foreground);
2531 XSetClipMask (s->display, gc, None);
2534 else if (!s->background_filled_p)
2536 int background_width = s->background_width;
2537 int x = s->x, left_x = window_box_left_offset (s->w, TEXT_AREA);
2539 /* Don't draw into left margin, fringe or scrollbar area
2540 except for header line and mode line. */
2541 if (x < left_x && !s->row->mode_line_p)
2543 background_width -= left_x - x;
2544 x = left_x;
2546 if (background_width > 0)
2547 x_draw_glyph_string_bg_rect (s, x, s->y, background_width, s->height);
2550 s->background_filled_p = 1;
2554 Draw a wavy line under S. The wave fills wave_height pixels from y0.
2556 x0 wave_length = 2
2558 y0 * * * * *
2559 |* * * * * * * * *
2560 wave_height = 3 | * * * *
2564 static void
2565 x_draw_underwave (struct glyph_string *s)
2567 int wave_height = 3, wave_length = 2;
2568 int dx, dy, x0, y0, width, x1, y1, x2, y2, odd, xmax;
2569 XRectangle wave_clip, string_clip, final_clip;
2571 dx = wave_length;
2572 dy = wave_height - 1;
2573 x0 = s->x;
2574 y0 = s->ybase - wave_height + 3;
2575 width = s->width;
2576 xmax = x0 + width;
2578 /* Find and set clipping rectangle */
2580 wave_clip.x = x0;
2581 wave_clip.y = y0;
2582 wave_clip.width = width;
2583 wave_clip.height = wave_height;
2584 get_glyph_string_clip_rect (s, &string_clip);
2586 if (!x_intersect_rectangles (&wave_clip, &string_clip, &final_clip))
2587 return;
2589 XSetClipRectangles (s->display, s->gc, 0, 0, &final_clip, 1, Unsorted);
2591 /* Draw the waves */
2593 x1 = x0 - (x0 % dx);
2594 x2 = x1 + dx;
2595 odd = (x1/dx) % 2;
2596 y1 = y2 = y0;
2598 if (odd)
2599 y1 += dy;
2600 else
2601 y2 += dy;
2603 if (INT_MAX - dx < xmax)
2604 emacs_abort ();
2606 while (x1 <= xmax)
2608 XDrawLine (s->display, s->window, s->gc, x1, y1, x2, y2);
2609 x1 = x2, y1 = y2;
2610 x2 += dx, y2 = y0 + odd*dy;
2611 odd = !odd;
2614 /* Restore previous clipping rectangle(s) */
2615 XSetClipRectangles (s->display, s->gc, 0, 0, s->clip, s->num_clips, Unsorted);
2619 /* Draw glyph string S. */
2621 static void
2622 x_draw_glyph_string (struct glyph_string *s)
2624 bool relief_drawn_p = 0;
2626 /* If S draws into the background of its successors, draw the
2627 background of the successors first so that S can draw into it.
2628 This makes S->next use XDrawString instead of XDrawImageString. */
2629 if (s->next && s->right_overhang && !s->for_overlaps)
2631 int width;
2632 struct glyph_string *next;
2634 for (width = 0, next = s->next;
2635 next && width < s->right_overhang;
2636 width += next->width, next = next->next)
2637 if (next->first_glyph->type != IMAGE_GLYPH)
2639 x_set_glyph_string_gc (next);
2640 x_set_glyph_string_clipping (next);
2641 if (next->first_glyph->type == STRETCH_GLYPH)
2642 x_draw_stretch_glyph_string (next);
2643 else
2644 x_draw_glyph_string_background (next, 1);
2645 next->num_clips = 0;
2649 /* Set up S->gc, set clipping and draw S. */
2650 x_set_glyph_string_gc (s);
2652 /* Draw relief (if any) in advance for char/composition so that the
2653 glyph string can be drawn over it. */
2654 if (!s->for_overlaps
2655 && s->face->box != FACE_NO_BOX
2656 && (s->first_glyph->type == CHAR_GLYPH
2657 || s->first_glyph->type == COMPOSITE_GLYPH))
2660 x_set_glyph_string_clipping (s);
2661 x_draw_glyph_string_background (s, 1);
2662 x_draw_glyph_string_box (s);
2663 x_set_glyph_string_clipping (s);
2664 relief_drawn_p = 1;
2666 else if (!s->clip_head /* draw_glyphs didn't specify a clip mask. */
2667 && !s->clip_tail
2668 && ((s->prev && s->prev->hl != s->hl && s->left_overhang)
2669 || (s->next && s->next->hl != s->hl && s->right_overhang)))
2670 /* We must clip just this glyph. left_overhang part has already
2671 drawn when s->prev was drawn, and right_overhang part will be
2672 drawn later when s->next is drawn. */
2673 x_set_glyph_string_clipping_exactly (s, s);
2674 else
2675 x_set_glyph_string_clipping (s);
2677 switch (s->first_glyph->type)
2679 case IMAGE_GLYPH:
2680 x_draw_image_glyph_string (s);
2681 break;
2683 case STRETCH_GLYPH:
2684 x_draw_stretch_glyph_string (s);
2685 break;
2687 case CHAR_GLYPH:
2688 if (s->for_overlaps)
2689 s->background_filled_p = 1;
2690 else
2691 x_draw_glyph_string_background (s, 0);
2692 x_draw_glyph_string_foreground (s);
2693 break;
2695 case COMPOSITE_GLYPH:
2696 if (s->for_overlaps || (s->cmp_from > 0
2697 && ! s->first_glyph->u.cmp.automatic))
2698 s->background_filled_p = 1;
2699 else
2700 x_draw_glyph_string_background (s, 1);
2701 x_draw_composite_glyph_string_foreground (s);
2702 break;
2704 case GLYPHLESS_GLYPH:
2705 if (s->for_overlaps)
2706 s->background_filled_p = 1;
2707 else
2708 x_draw_glyph_string_background (s, 1);
2709 x_draw_glyphless_glyph_string_foreground (s);
2710 break;
2712 default:
2713 emacs_abort ();
2716 if (!s->for_overlaps)
2718 /* Draw underline. */
2719 if (s->face->underline_p)
2721 if (s->face->underline_type == FACE_UNDER_WAVE)
2723 if (s->face->underline_defaulted_p)
2724 x_draw_underwave (s);
2725 else
2727 XGCValues xgcv;
2728 XGetGCValues (s->display, s->gc, GCForeground, &xgcv);
2729 XSetForeground (s->display, s->gc, s->face->underline_color);
2730 x_draw_underwave (s);
2731 XSetForeground (s->display, s->gc, xgcv.foreground);
2734 else if (s->face->underline_type == FACE_UNDER_LINE)
2736 unsigned long thickness, position;
2737 int y;
2739 if (s->prev && s->prev->face->underline_p
2740 && s->prev->face->underline_type == FACE_UNDER_LINE)
2742 /* We use the same underline style as the previous one. */
2743 thickness = s->prev->underline_thickness;
2744 position = s->prev->underline_position;
2746 else
2748 /* Get the underline thickness. Default is 1 pixel. */
2749 if (s->font && s->font->underline_thickness > 0)
2750 thickness = s->font->underline_thickness;
2751 else
2752 thickness = 1;
2753 if (x_underline_at_descent_line)
2754 position = (s->height - thickness) - (s->ybase - s->y);
2755 else
2757 /* Get the underline position. This is the recommended
2758 vertical offset in pixels from the baseline to the top of
2759 the underline. This is a signed value according to the
2760 specs, and its default is
2762 ROUND ((maximum descent) / 2), with
2763 ROUND(x) = floor (x + 0.5) */
2765 if (x_use_underline_position_properties
2766 && s->font && s->font->underline_position >= 0)
2767 position = s->font->underline_position;
2768 else if (s->font)
2769 position = (s->font->descent + 1) / 2;
2770 else
2771 position = underline_minimum_offset;
2773 position = max (position, underline_minimum_offset);
2775 /* Check the sanity of thickness and position. We should
2776 avoid drawing underline out of the current line area. */
2777 if (s->y + s->height <= s->ybase + position)
2778 position = (s->height - 1) - (s->ybase - s->y);
2779 if (s->y + s->height < s->ybase + position + thickness)
2780 thickness = (s->y + s->height) - (s->ybase + position);
2781 s->underline_thickness = thickness;
2782 s->underline_position = position;
2783 y = s->ybase + position;
2784 if (s->face->underline_defaulted_p)
2785 XFillRectangle (s->display, s->window, s->gc,
2786 s->x, y, s->width, thickness);
2787 else
2789 XGCValues xgcv;
2790 XGetGCValues (s->display, s->gc, GCForeground, &xgcv);
2791 XSetForeground (s->display, s->gc, s->face->underline_color);
2792 XFillRectangle (s->display, s->window, s->gc,
2793 s->x, y, s->width, thickness);
2794 XSetForeground (s->display, s->gc, xgcv.foreground);
2798 /* Draw overline. */
2799 if (s->face->overline_p)
2801 unsigned long dy = 0, h = 1;
2803 if (s->face->overline_color_defaulted_p)
2804 XFillRectangle (s->display, s->window, s->gc, s->x, s->y + dy,
2805 s->width, h);
2806 else
2808 XGCValues xgcv;
2809 XGetGCValues (s->display, s->gc, GCForeground, &xgcv);
2810 XSetForeground (s->display, s->gc, s->face->overline_color);
2811 XFillRectangle (s->display, s->window, s->gc, s->x, s->y + dy,
2812 s->width, h);
2813 XSetForeground (s->display, s->gc, xgcv.foreground);
2817 /* Draw strike-through. */
2818 if (s->face->strike_through_p)
2820 unsigned long h = 1;
2821 unsigned long dy = (s->height - h) / 2;
2823 if (s->face->strike_through_color_defaulted_p)
2824 XFillRectangle (s->display, s->window, s->gc, s->x, s->y + dy,
2825 s->width, h);
2826 else
2828 XGCValues xgcv;
2829 XGetGCValues (s->display, s->gc, GCForeground, &xgcv);
2830 XSetForeground (s->display, s->gc, s->face->strike_through_color);
2831 XFillRectangle (s->display, s->window, s->gc, s->x, s->y + dy,
2832 s->width, h);
2833 XSetForeground (s->display, s->gc, xgcv.foreground);
2837 /* Draw relief if not yet drawn. */
2838 if (!relief_drawn_p && s->face->box != FACE_NO_BOX)
2839 x_draw_glyph_string_box (s);
2841 if (s->prev)
2843 struct glyph_string *prev;
2845 for (prev = s->prev; prev; prev = prev->prev)
2846 if (prev->hl != s->hl
2847 && prev->x + prev->width + prev->right_overhang > s->x)
2849 /* As prev was drawn while clipped to its own area, we
2850 must draw the right_overhang part using s->hl now. */
2851 enum draw_glyphs_face save = prev->hl;
2853 prev->hl = s->hl;
2854 x_set_glyph_string_gc (prev);
2855 x_set_glyph_string_clipping_exactly (s, prev);
2856 if (prev->first_glyph->type == CHAR_GLYPH)
2857 x_draw_glyph_string_foreground (prev);
2858 else
2859 x_draw_composite_glyph_string_foreground (prev);
2860 XSetClipMask (prev->display, prev->gc, None);
2861 prev->hl = save;
2862 prev->num_clips = 0;
2866 if (s->next)
2868 struct glyph_string *next;
2870 for (next = s->next; next; next = next->next)
2871 if (next->hl != s->hl
2872 && next->x - next->left_overhang < s->x + s->width)
2874 /* As next will be drawn while clipped to its own area,
2875 we must draw the left_overhang part using s->hl now. */
2876 enum draw_glyphs_face save = next->hl;
2878 next->hl = s->hl;
2879 x_set_glyph_string_gc (next);
2880 x_set_glyph_string_clipping_exactly (s, next);
2881 if (next->first_glyph->type == CHAR_GLYPH)
2882 x_draw_glyph_string_foreground (next);
2883 else
2884 x_draw_composite_glyph_string_foreground (next);
2885 XSetClipMask (next->display, next->gc, None);
2886 next->hl = save;
2887 next->num_clips = 0;
2888 next->clip_head = s->next;
2893 /* Reset clipping. */
2894 XSetClipMask (s->display, s->gc, None);
2895 s->num_clips = 0;
2898 /* Shift display to make room for inserted glyphs. */
2900 static void
2901 x_shift_glyphs_for_insert (struct frame *f, int x, int y, int width, int height, int shift_by)
2903 XCopyArea (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), FRAME_X_WINDOW (f),
2904 f->output_data.x->normal_gc,
2905 x, y, width, height,
2906 x + shift_by, y);
2909 /* Delete N glyphs at the nominal cursor position. Not implemented
2910 for X frames. */
2912 static void
2913 x_delete_glyphs (struct frame *f, register int n)
2915 emacs_abort ();
2919 /* Like XClearArea, but check that WIDTH and HEIGHT are reasonable.
2920 If they are <= 0, this is probably an error. */
2922 void
2923 x_clear_area (Display *dpy, Window window, int x, int y, int width, int height)
2925 eassert (width > 0 && height > 0);
2926 XClearArea (dpy, window, x, y, width, height, False);
2930 /* Clear an entire frame. */
2932 static void
2933 x_clear_frame (struct frame *f)
2935 /* Clearing the frame will erase any cursor, so mark them all as no
2936 longer visible. */
2937 mark_window_cursors_off (XWINDOW (FRAME_ROOT_WINDOW (f)));
2939 block_input ();
2941 XClearWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
2943 /* We have to clear the scroll bars. If we have changed colors or
2944 something like that, then they should be notified. */
2945 x_scroll_bar_clear (f);
2947 #if defined (USE_GTK) && defined (USE_TOOLKIT_SCROLL_BARS)
2948 /* Make sure scroll bars are redrawn. As they aren't redrawn by
2949 redisplay, do it here. */
2950 if (FRAME_GTK_WIDGET (f))
2951 gtk_widget_queue_draw (FRAME_GTK_WIDGET (f));
2952 #endif
2954 XFlush (FRAME_X_DISPLAY (f));
2956 unblock_input ();
2961 /* Invert the middle quarter of the frame for .15 sec. */
2963 static void
2964 XTflash (struct frame *f)
2966 block_input ();
2969 #ifdef USE_GTK
2970 /* Use Gdk routines to draw. This way, we won't draw over scroll bars
2971 when the scroll bars and the edit widget share the same X window. */
2972 GdkWindow *window = gtk_widget_get_window (FRAME_GTK_WIDGET (f));
2973 #ifdef HAVE_GTK3
2974 cairo_t *cr = gdk_cairo_create (window);
2975 cairo_set_source_rgb (cr, 1, 1, 1);
2976 cairo_set_operator (cr, CAIRO_OPERATOR_DIFFERENCE);
2977 #define XFillRectangle(d, win, gc, x, y, w, h) \
2978 do { \
2979 cairo_rectangle (cr, x, y, w, h); \
2980 cairo_fill (cr); \
2982 while (0)
2983 #else /* ! HAVE_GTK3 */
2984 GdkGCValues vals;
2985 GdkGC *gc;
2986 vals.foreground.pixel = (FRAME_FOREGROUND_PIXEL (f)
2987 ^ FRAME_BACKGROUND_PIXEL (f));
2988 vals.function = GDK_XOR;
2989 gc = gdk_gc_new_with_values (window,
2990 &vals, GDK_GC_FUNCTION | GDK_GC_FOREGROUND);
2991 #define XFillRectangle(d, win, gc, x, y, w, h) \
2992 gdk_draw_rectangle (window, gc, TRUE, x, y, w, h)
2993 #endif /* ! HAVE_GTK3 */
2994 #else /* ! USE_GTK */
2995 GC gc;
2997 /* Create a GC that will use the GXxor function to flip foreground
2998 pixels into background pixels. */
3000 XGCValues values;
3002 values.function = GXxor;
3003 values.foreground = (FRAME_FOREGROUND_PIXEL (f)
3004 ^ FRAME_BACKGROUND_PIXEL (f));
3006 gc = XCreateGC (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3007 GCFunction | GCForeground, &values);
3009 #endif
3011 /* Get the height not including a menu bar widget. */
3012 int height = FRAME_PIXEL_HEIGHT (f);
3013 /* Height of each line to flash. */
3014 int flash_height = FRAME_LINE_HEIGHT (f);
3015 /* These will be the left and right margins of the rectangles. */
3016 int flash_left = FRAME_INTERNAL_BORDER_WIDTH (f);
3017 int flash_right = FRAME_PIXEL_WIDTH (f) - FRAME_INTERNAL_BORDER_WIDTH (f);
3018 int width = flash_right - flash_left;
3020 /* If window is tall, flash top and bottom line. */
3021 if (height > 3 * FRAME_LINE_HEIGHT (f))
3023 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
3024 flash_left,
3025 (FRAME_INTERNAL_BORDER_WIDTH (f)
3026 + FRAME_TOP_MARGIN_HEIGHT (f)),
3027 width, flash_height);
3028 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
3029 flash_left,
3030 (height - flash_height
3031 - FRAME_INTERNAL_BORDER_WIDTH (f)),
3032 width, flash_height);
3035 else
3036 /* If it is short, flash it all. */
3037 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
3038 flash_left, FRAME_INTERNAL_BORDER_WIDTH (f),
3039 width, height - 2 * FRAME_INTERNAL_BORDER_WIDTH (f));
3041 x_flush (f);
3044 struct timespec delay = make_timespec (0, 150 * 1000 * 1000);
3045 struct timespec wakeup = timespec_add (current_timespec (), delay);
3047 /* Keep waiting until past the time wakeup or any input gets
3048 available. */
3049 while (! detect_input_pending ())
3051 struct timespec current = current_timespec ();
3052 struct timespec timeout;
3054 /* Break if result would not be positive. */
3055 if (timespec_cmp (wakeup, current) <= 0)
3056 break;
3058 /* How long `select' should wait. */
3059 timeout = make_timespec (0, 10 * 1000 * 1000);
3061 /* Try to wait that long--but we might wake up sooner. */
3062 pselect (0, NULL, NULL, NULL, &timeout, NULL);
3066 /* If window is tall, flash top and bottom line. */
3067 if (height > 3 * FRAME_LINE_HEIGHT (f))
3069 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
3070 flash_left,
3071 (FRAME_INTERNAL_BORDER_WIDTH (f)
3072 + FRAME_TOP_MARGIN_HEIGHT (f)),
3073 width, flash_height);
3074 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
3075 flash_left,
3076 (height - flash_height
3077 - FRAME_INTERNAL_BORDER_WIDTH (f)),
3078 width, flash_height);
3080 else
3081 /* If it is short, flash it all. */
3082 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
3083 flash_left, FRAME_INTERNAL_BORDER_WIDTH (f),
3084 width, height - 2 * FRAME_INTERNAL_BORDER_WIDTH (f));
3086 #ifdef USE_GTK
3087 #ifdef HAVE_GTK3
3088 cairo_destroy (cr);
3089 #else
3090 g_object_unref (G_OBJECT (gc));
3091 #endif
3092 #undef XFillRectangle
3093 #else
3094 XFreeGC (FRAME_X_DISPLAY (f), gc);
3095 #endif
3096 x_flush (f);
3100 unblock_input ();
3104 static void
3105 XTtoggle_invisible_pointer (struct frame *f, int invisible)
3107 block_input ();
3108 if (invisible)
3110 if (FRAME_DISPLAY_INFO (f)->invisible_cursor != 0)
3111 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3112 FRAME_DISPLAY_INFO (f)->invisible_cursor);
3114 else
3115 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3116 f->output_data.x->current_cursor);
3117 f->pointer_invisible = invisible;
3118 unblock_input ();
3122 /* Make audible bell. */
3124 static void
3125 XTring_bell (struct frame *f)
3127 if (FRAME_X_DISPLAY (f))
3129 if (visible_bell)
3130 XTflash (f);
3131 else
3133 block_input ();
3134 #ifdef HAVE_XKB
3135 XkbBell (FRAME_X_DISPLAY (f), None, 0, None);
3136 #else
3137 XBell (FRAME_X_DISPLAY (f), 0);
3138 #endif
3139 XFlush (FRAME_X_DISPLAY (f));
3140 unblock_input ();
3145 /***********************************************************************
3146 Line Dance
3147 ***********************************************************************/
3149 /* Perform an insert-lines or delete-lines operation, inserting N
3150 lines or deleting -N lines at vertical position VPOS. */
3152 static void
3153 x_ins_del_lines (struct frame *f, int vpos, int n)
3155 emacs_abort ();
3159 /* Scroll part of the display as described by RUN. */
3161 static void
3162 x_scroll_run (struct window *w, struct run *run)
3164 struct frame *f = XFRAME (w->frame);
3165 int x, y, width, height, from_y, to_y, bottom_y;
3167 /* Get frame-relative bounding box of the text display area of W,
3168 without mode lines. Include in this box the left and right
3169 fringe of W. */
3170 window_box (w, ANY_AREA, &x, &y, &width, &height);
3172 from_y = WINDOW_TO_FRAME_PIXEL_Y (w, run->current_y);
3173 to_y = WINDOW_TO_FRAME_PIXEL_Y (w, run->desired_y);
3174 bottom_y = y + height;
3176 if (to_y < from_y)
3178 /* Scrolling up. Make sure we don't copy part of the mode
3179 line at the bottom. */
3180 if (from_y + run->height > bottom_y)
3181 height = bottom_y - from_y;
3182 else
3183 height = run->height;
3185 else
3187 /* Scrolling down. Make sure we don't copy over the mode line.
3188 at the bottom. */
3189 if (to_y + run->height > bottom_y)
3190 height = bottom_y - to_y;
3191 else
3192 height = run->height;
3195 block_input ();
3197 /* Cursor off. Will be switched on again in x_update_window_end. */
3198 x_clear_cursor (w);
3200 XCopyArea (FRAME_X_DISPLAY (f),
3201 FRAME_X_WINDOW (f), FRAME_X_WINDOW (f),
3202 f->output_data.x->normal_gc,
3203 x, from_y,
3204 width, height,
3205 x, to_y);
3207 unblock_input ();
3212 /***********************************************************************
3213 Exposure Events
3214 ***********************************************************************/
3217 static void
3218 frame_highlight (struct frame *f)
3220 /* We used to only do this if Vx_no_window_manager was non-nil, but
3221 the ICCCM (section 4.1.6) says that the window's border pixmap
3222 and border pixel are window attributes which are "private to the
3223 client", so we can always change it to whatever we want. */
3224 block_input ();
3225 /* I recently started to get errors in this XSetWindowBorder, depending on
3226 the window-manager in use, tho something more is at play since I've been
3227 using that same window-manager binary for ever. Let's not crash just
3228 because of this (bug#9310). */
3229 x_catch_errors (FRAME_X_DISPLAY (f));
3230 XSetWindowBorder (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3231 f->output_data.x->border_pixel);
3232 x_uncatch_errors ();
3233 unblock_input ();
3234 x_update_cursor (f, 1);
3235 x_set_frame_alpha (f);
3238 static void
3239 frame_unhighlight (struct frame *f)
3241 /* We used to only do this if Vx_no_window_manager was non-nil, but
3242 the ICCCM (section 4.1.6) says that the window's border pixmap
3243 and border pixel are window attributes which are "private to the
3244 client", so we can always change it to whatever we want. */
3245 block_input ();
3246 /* Same as above for XSetWindowBorder (bug#9310). */
3247 x_catch_errors (FRAME_X_DISPLAY (f));
3248 XSetWindowBorderPixmap (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3249 f->output_data.x->border_tile);
3250 x_uncatch_errors ();
3251 unblock_input ();
3252 x_update_cursor (f, 1);
3253 x_set_frame_alpha (f);
3256 /* The focus has changed. Update the frames as necessary to reflect
3257 the new situation. Note that we can't change the selected frame
3258 here, because the Lisp code we are interrupting might become confused.
3259 Each event gets marked with the frame in which it occurred, so the
3260 Lisp code can tell when the switch took place by examining the events. */
3262 static void
3263 x_new_focus_frame (struct x_display_info *dpyinfo, struct frame *frame)
3265 struct frame *old_focus = dpyinfo->x_focus_frame;
3267 if (frame != dpyinfo->x_focus_frame)
3269 /* Set this before calling other routines, so that they see
3270 the correct value of x_focus_frame. */
3271 dpyinfo->x_focus_frame = frame;
3273 if (old_focus && old_focus->auto_lower)
3274 x_lower_frame (old_focus);
3276 if (dpyinfo->x_focus_frame && dpyinfo->x_focus_frame->auto_raise)
3277 dpyinfo->x_pending_autoraise_frame = dpyinfo->x_focus_frame;
3278 else
3279 dpyinfo->x_pending_autoraise_frame = NULL;
3282 x_frame_rehighlight (dpyinfo);
3285 /* Handle FocusIn and FocusOut state changes for FRAME.
3286 If FRAME has focus and there exists more than one frame, puts
3287 a FOCUS_IN_EVENT into *BUFP. */
3289 static void
3290 x_focus_changed (int type, int state, struct x_display_info *dpyinfo, struct frame *frame, struct input_event *bufp)
3292 if (type == FocusIn)
3294 if (dpyinfo->x_focus_event_frame != frame)
3296 x_new_focus_frame (dpyinfo, frame);
3297 dpyinfo->x_focus_event_frame = frame;
3299 /* Don't stop displaying the initial startup message
3300 for a switch-frame event we don't need. */
3301 /* When run as a daemon, Vterminal_frame is always NIL. */
3302 bufp->arg = (((NILP (Vterminal_frame)
3303 || ! FRAME_X_P (XFRAME (Vterminal_frame))
3304 || EQ (Fdaemonp (), Qt))
3305 && CONSP (Vframe_list)
3306 && !NILP (XCDR (Vframe_list)))
3307 ? Qt : Qnil);
3308 bufp->kind = FOCUS_IN_EVENT;
3309 XSETFRAME (bufp->frame_or_window, frame);
3312 frame->output_data.x->focus_state |= state;
3314 #ifdef HAVE_X_I18N
3315 if (FRAME_XIC (frame))
3316 XSetICFocus (FRAME_XIC (frame));
3317 #endif
3319 else if (type == FocusOut)
3321 frame->output_data.x->focus_state &= ~state;
3323 if (dpyinfo->x_focus_event_frame == frame)
3325 dpyinfo->x_focus_event_frame = 0;
3326 x_new_focus_frame (dpyinfo, 0);
3328 bufp->kind = FOCUS_OUT_EVENT;
3329 XSETFRAME (bufp->frame_or_window, frame);
3332 #ifdef HAVE_X_I18N
3333 if (FRAME_XIC (frame))
3334 XUnsetICFocus (FRAME_XIC (frame));
3335 #endif
3336 if (frame->pointer_invisible)
3337 XTtoggle_invisible_pointer (frame, 0);
3341 /* Return the Emacs frame-object corresponding to an X window.
3342 It could be the frame's main window or an icon window. */
3344 static struct frame *
3345 x_window_to_frame (struct x_display_info *dpyinfo, int wdesc)
3347 Lisp_Object tail, frame;
3348 struct frame *f;
3350 if (wdesc == None)
3351 return NULL;
3353 FOR_EACH_FRAME (tail, frame)
3355 f = XFRAME (frame);
3356 if (!FRAME_X_P (f) || FRAME_DISPLAY_INFO (f) != dpyinfo)
3357 continue;
3358 if (f->output_data.x->hourglass_window == wdesc)
3359 return f;
3360 #ifdef USE_X_TOOLKIT
3361 if ((f->output_data.x->edit_widget
3362 && XtWindow (f->output_data.x->edit_widget) == wdesc)
3363 /* A tooltip frame? */
3364 || (!f->output_data.x->edit_widget
3365 && FRAME_X_WINDOW (f) == wdesc)
3366 || f->output_data.x->icon_desc == wdesc)
3367 return f;
3368 #else /* not USE_X_TOOLKIT */
3369 #ifdef USE_GTK
3370 if (f->output_data.x->edit_widget)
3372 GtkWidget *gwdesc = xg_win_to_widget (dpyinfo->display, wdesc);
3373 struct x_output *x = f->output_data.x;
3374 if (gwdesc != 0 && gwdesc == x->edit_widget)
3375 return f;
3377 #endif /* USE_GTK */
3378 if (FRAME_X_WINDOW (f) == wdesc
3379 || f->output_data.x->icon_desc == wdesc)
3380 return f;
3381 #endif /* not USE_X_TOOLKIT */
3383 return 0;
3386 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
3388 /* Like x_window_to_frame but also compares the window with the widget's
3389 windows. */
3391 static struct frame *
3392 x_any_window_to_frame (struct x_display_info *dpyinfo, int wdesc)
3394 Lisp_Object tail, frame;
3395 struct frame *f, *found = NULL;
3396 struct x_output *x;
3398 if (wdesc == None)
3399 return NULL;
3401 FOR_EACH_FRAME (tail, frame)
3403 if (found)
3404 break;
3405 f = XFRAME (frame);
3406 if (FRAME_X_P (f) && FRAME_DISPLAY_INFO (f) == dpyinfo)
3408 /* This frame matches if the window is any of its widgets. */
3409 x = f->output_data.x;
3410 if (x->hourglass_window == wdesc)
3411 found = f;
3412 else if (x->widget)
3414 #ifdef USE_GTK
3415 GtkWidget *gwdesc = xg_win_to_widget (dpyinfo->display, wdesc);
3416 if (gwdesc != 0
3417 && gtk_widget_get_toplevel (gwdesc) == x->widget)
3418 found = f;
3419 #else
3420 if (wdesc == XtWindow (x->widget)
3421 || wdesc == XtWindow (x->column_widget)
3422 || wdesc == XtWindow (x->edit_widget))
3423 found = f;
3424 /* Match if the window is this frame's menubar. */
3425 else if (lw_window_is_in_menubar (wdesc, x->menubar_widget))
3426 found = f;
3427 #endif
3429 else if (FRAME_X_WINDOW (f) == wdesc)
3430 /* A tooltip frame. */
3431 found = f;
3435 return found;
3438 /* Likewise, but consider only the menu bar widget. */
3440 static struct frame *
3441 x_menubar_window_to_frame (struct x_display_info *dpyinfo,
3442 const XEvent *event)
3444 Window wdesc = event->xany.window;
3445 Lisp_Object tail, frame;
3446 struct frame *f;
3447 struct x_output *x;
3449 if (wdesc == None)
3450 return NULL;
3452 FOR_EACH_FRAME (tail, frame)
3454 f = XFRAME (frame);
3455 if (!FRAME_X_P (f) || FRAME_DISPLAY_INFO (f) != dpyinfo)
3456 continue;
3457 x = f->output_data.x;
3458 #ifdef USE_GTK
3459 if (x->menubar_widget && xg_event_is_for_menubar (f, event))
3460 return f;
3461 #else
3462 /* Match if the window is this frame's menubar. */
3463 if (x->menubar_widget
3464 && lw_window_is_in_menubar (wdesc, x->menubar_widget))
3465 return f;
3466 #endif
3468 return 0;
3471 /* Return the frame whose principal (outermost) window is WDESC.
3472 If WDESC is some other (smaller) window, we return 0. */
3474 struct frame *
3475 x_top_window_to_frame (struct x_display_info *dpyinfo, int wdesc)
3477 Lisp_Object tail, frame;
3478 struct frame *f;
3479 struct x_output *x;
3481 if (wdesc == None)
3482 return NULL;
3484 FOR_EACH_FRAME (tail, frame)
3486 f = XFRAME (frame);
3487 if (!FRAME_X_P (f) || FRAME_DISPLAY_INFO (f) != dpyinfo)
3488 continue;
3489 x = f->output_data.x;
3491 if (x->widget)
3493 /* This frame matches if the window is its topmost widget. */
3494 #ifdef USE_GTK
3495 GtkWidget *gwdesc = xg_win_to_widget (dpyinfo->display, wdesc);
3496 if (gwdesc == x->widget)
3497 return f;
3498 #else
3499 if (wdesc == XtWindow (x->widget))
3500 return f;
3501 #endif
3503 else if (FRAME_X_WINDOW (f) == wdesc)
3504 /* Tooltip frame. */
3505 return f;
3507 return 0;
3510 #else /* !USE_X_TOOLKIT && !USE_GTK */
3512 #define x_any_window_to_frame(d, i) x_window_to_frame (d, i)
3513 #define x_top_window_to_frame(d, i) x_window_to_frame (d, i)
3515 #endif /* USE_X_TOOLKIT || USE_GTK */
3517 /* The focus may have changed. Figure out if it is a real focus change,
3518 by checking both FocusIn/Out and Enter/LeaveNotify events.
3520 Returns FOCUS_IN_EVENT event in *BUFP. */
3522 static void
3523 x_detect_focus_change (struct x_display_info *dpyinfo, struct frame *frame,
3524 const XEvent *event, struct input_event *bufp)
3526 if (!frame)
3527 return;
3529 switch (event->type)
3531 case EnterNotify:
3532 case LeaveNotify:
3534 struct frame *focus_frame = dpyinfo->x_focus_event_frame;
3535 int focus_state
3536 = focus_frame ? focus_frame->output_data.x->focus_state : 0;
3538 if (event->xcrossing.detail != NotifyInferior
3539 && event->xcrossing.focus
3540 && ! (focus_state & FOCUS_EXPLICIT))
3541 x_focus_changed ((event->type == EnterNotify ? FocusIn : FocusOut),
3542 FOCUS_IMPLICIT,
3543 dpyinfo, frame, bufp);
3545 break;
3547 case FocusIn:
3548 case FocusOut:
3549 x_focus_changed (event->type,
3550 (event->xfocus.detail == NotifyPointer ?
3551 FOCUS_IMPLICIT : FOCUS_EXPLICIT),
3552 dpyinfo, frame, bufp);
3553 break;
3555 case ClientMessage:
3556 if (event->xclient.message_type == dpyinfo->Xatom_XEMBED)
3558 enum xembed_message msg = event->xclient.data.l[1];
3559 x_focus_changed ((msg == XEMBED_FOCUS_IN ? FocusIn : FocusOut),
3560 FOCUS_EXPLICIT, dpyinfo, frame, bufp);
3562 break;
3567 #if !defined USE_X_TOOLKIT && !defined USE_GTK
3568 /* Handle an event saying the mouse has moved out of an Emacs frame. */
3570 void
3571 x_mouse_leave (struct x_display_info *dpyinfo)
3573 x_new_focus_frame (dpyinfo, dpyinfo->x_focus_event_frame);
3575 #endif
3577 /* The focus has changed, or we have redirected a frame's focus to
3578 another frame (this happens when a frame uses a surrogate
3579 mini-buffer frame). Shift the highlight as appropriate.
3581 The FRAME argument doesn't necessarily have anything to do with which
3582 frame is being highlighted or un-highlighted; we only use it to find
3583 the appropriate X display info. */
3585 static void
3586 XTframe_rehighlight (struct frame *frame)
3588 x_frame_rehighlight (FRAME_DISPLAY_INFO (frame));
3591 static void
3592 x_frame_rehighlight (struct x_display_info *dpyinfo)
3594 struct frame *old_highlight = dpyinfo->x_highlight_frame;
3596 if (dpyinfo->x_focus_frame)
3598 dpyinfo->x_highlight_frame
3599 = ((FRAMEP (FRAME_FOCUS_FRAME (dpyinfo->x_focus_frame)))
3600 ? XFRAME (FRAME_FOCUS_FRAME (dpyinfo->x_focus_frame))
3601 : dpyinfo->x_focus_frame);
3602 if (! FRAME_LIVE_P (dpyinfo->x_highlight_frame))
3604 fset_focus_frame (dpyinfo->x_focus_frame, Qnil);
3605 dpyinfo->x_highlight_frame = dpyinfo->x_focus_frame;
3608 else
3609 dpyinfo->x_highlight_frame = 0;
3611 if (dpyinfo->x_highlight_frame != old_highlight)
3613 if (old_highlight)
3614 frame_unhighlight (old_highlight);
3615 if (dpyinfo->x_highlight_frame)
3616 frame_highlight (dpyinfo->x_highlight_frame);
3622 /* Keyboard processing - modifier keys, vendor-specific keysyms, etc. */
3624 /* Initialize mode_switch_bit and modifier_meaning. */
3625 static void
3626 x_find_modifier_meanings (struct x_display_info *dpyinfo)
3628 int min_code, max_code;
3629 KeySym *syms;
3630 int syms_per_code;
3631 XModifierKeymap *mods;
3633 dpyinfo->meta_mod_mask = 0;
3634 dpyinfo->shift_lock_mask = 0;
3635 dpyinfo->alt_mod_mask = 0;
3636 dpyinfo->super_mod_mask = 0;
3637 dpyinfo->hyper_mod_mask = 0;
3639 XDisplayKeycodes (dpyinfo->display, &min_code, &max_code);
3641 syms = XGetKeyboardMapping (dpyinfo->display,
3642 min_code, max_code - min_code + 1,
3643 &syms_per_code);
3644 mods = XGetModifierMapping (dpyinfo->display);
3646 /* Scan the modifier table to see which modifier bits the Meta and
3647 Alt keysyms are on. */
3649 int row, col; /* The row and column in the modifier table. */
3650 int found_alt_or_meta;
3652 for (row = 3; row < 8; row++)
3654 found_alt_or_meta = 0;
3655 for (col = 0; col < mods->max_keypermod; col++)
3657 KeyCode code = mods->modifiermap[(row * mods->max_keypermod) + col];
3659 /* Zeroes are used for filler. Skip them. */
3660 if (code == 0)
3661 continue;
3663 /* Are any of this keycode's keysyms a meta key? */
3665 int code_col;
3667 for (code_col = 0; code_col < syms_per_code; code_col++)
3669 int sym = syms[((code - min_code) * syms_per_code) + code_col];
3671 switch (sym)
3673 case XK_Meta_L:
3674 case XK_Meta_R:
3675 found_alt_or_meta = 1;
3676 dpyinfo->meta_mod_mask |= (1 << row);
3677 break;
3679 case XK_Alt_L:
3680 case XK_Alt_R:
3681 found_alt_or_meta = 1;
3682 dpyinfo->alt_mod_mask |= (1 << row);
3683 break;
3685 case XK_Hyper_L:
3686 case XK_Hyper_R:
3687 if (!found_alt_or_meta)
3688 dpyinfo->hyper_mod_mask |= (1 << row);
3689 code_col = syms_per_code;
3690 col = mods->max_keypermod;
3691 break;
3693 case XK_Super_L:
3694 case XK_Super_R:
3695 if (!found_alt_or_meta)
3696 dpyinfo->super_mod_mask |= (1 << row);
3697 code_col = syms_per_code;
3698 col = mods->max_keypermod;
3699 break;
3701 case XK_Shift_Lock:
3702 /* Ignore this if it's not on the lock modifier. */
3703 if (!found_alt_or_meta && ((1 << row) == LockMask))
3704 dpyinfo->shift_lock_mask = LockMask;
3705 code_col = syms_per_code;
3706 col = mods->max_keypermod;
3707 break;
3715 /* If we couldn't find any meta keys, accept any alt keys as meta keys. */
3716 if (! dpyinfo->meta_mod_mask)
3718 dpyinfo->meta_mod_mask = dpyinfo->alt_mod_mask;
3719 dpyinfo->alt_mod_mask = 0;
3722 /* If some keys are both alt and meta,
3723 make them just meta, not alt. */
3724 if (dpyinfo->alt_mod_mask & dpyinfo->meta_mod_mask)
3726 dpyinfo->alt_mod_mask &= ~dpyinfo->meta_mod_mask;
3729 XFree (syms);
3730 XFreeModifiermap (mods);
3733 /* Convert between the modifier bits X uses and the modifier bits
3734 Emacs uses. */
3737 x_x_to_emacs_modifiers (struct x_display_info *dpyinfo, int state)
3739 int mod_meta = meta_modifier;
3740 int mod_alt = alt_modifier;
3741 int mod_hyper = hyper_modifier;
3742 int mod_super = super_modifier;
3743 Lisp_Object tem;
3745 tem = Fget (Vx_alt_keysym, Qmodifier_value);
3746 if (INTEGERP (tem)) mod_alt = XINT (tem) & INT_MAX;
3747 tem = Fget (Vx_meta_keysym, Qmodifier_value);
3748 if (INTEGERP (tem)) mod_meta = XINT (tem) & INT_MAX;
3749 tem = Fget (Vx_hyper_keysym, Qmodifier_value);
3750 if (INTEGERP (tem)) mod_hyper = XINT (tem) & INT_MAX;
3751 tem = Fget (Vx_super_keysym, Qmodifier_value);
3752 if (INTEGERP (tem)) mod_super = XINT (tem) & INT_MAX;
3754 return ( ((state & (ShiftMask | dpyinfo->shift_lock_mask)) ? shift_modifier : 0)
3755 | ((state & ControlMask) ? ctrl_modifier : 0)
3756 | ((state & dpyinfo->meta_mod_mask) ? mod_meta : 0)
3757 | ((state & dpyinfo->alt_mod_mask) ? mod_alt : 0)
3758 | ((state & dpyinfo->super_mod_mask) ? mod_super : 0)
3759 | ((state & dpyinfo->hyper_mod_mask) ? mod_hyper : 0));
3762 static int
3763 x_emacs_to_x_modifiers (struct x_display_info *dpyinfo, EMACS_INT state)
3765 EMACS_INT mod_meta = meta_modifier;
3766 EMACS_INT mod_alt = alt_modifier;
3767 EMACS_INT mod_hyper = hyper_modifier;
3768 EMACS_INT mod_super = super_modifier;
3770 Lisp_Object tem;
3772 tem = Fget (Vx_alt_keysym, Qmodifier_value);
3773 if (INTEGERP (tem)) mod_alt = XINT (tem);
3774 tem = Fget (Vx_meta_keysym, Qmodifier_value);
3775 if (INTEGERP (tem)) mod_meta = XINT (tem);
3776 tem = Fget (Vx_hyper_keysym, Qmodifier_value);
3777 if (INTEGERP (tem)) mod_hyper = XINT (tem);
3778 tem = Fget (Vx_super_keysym, Qmodifier_value);
3779 if (INTEGERP (tem)) mod_super = XINT (tem);
3782 return ( ((state & mod_alt) ? dpyinfo->alt_mod_mask : 0)
3783 | ((state & mod_super) ? dpyinfo->super_mod_mask : 0)
3784 | ((state & mod_hyper) ? dpyinfo->hyper_mod_mask : 0)
3785 | ((state & shift_modifier) ? ShiftMask : 0)
3786 | ((state & ctrl_modifier) ? ControlMask : 0)
3787 | ((state & mod_meta) ? dpyinfo->meta_mod_mask : 0));
3790 /* Convert a keysym to its name. */
3792 char *
3793 x_get_keysym_name (int keysym)
3795 char *value;
3797 block_input ();
3798 value = XKeysymToString (keysym);
3799 unblock_input ();
3801 return value;
3804 /* Mouse clicks and mouse movement. Rah.
3806 Formerly, we used PointerMotionHintMask (in standard_event_mask)
3807 so that we would have to call XQueryPointer after each MotionNotify
3808 event to ask for another such event. However, this made mouse tracking
3809 slow, and there was a bug that made it eventually stop.
3811 Simply asking for MotionNotify all the time seems to work better.
3813 In order to avoid asking for motion events and then throwing most
3814 of them away or busy-polling the server for mouse positions, we ask
3815 the server for pointer motion hints. This means that we get only
3816 one event per group of mouse movements. "Groups" are delimited by
3817 other kinds of events (focus changes and button clicks, for
3818 example), or by XQueryPointer calls; when one of these happens, we
3819 get another MotionNotify event the next time the mouse moves. This
3820 is at least as efficient as getting motion events when mouse
3821 tracking is on, and I suspect only negligibly worse when tracking
3822 is off. */
3824 /* Prepare a mouse-event in *RESULT for placement in the input queue.
3826 If the event is a button press, then note that we have grabbed
3827 the mouse. */
3829 static Lisp_Object
3830 construct_mouse_click (struct input_event *result,
3831 const XButtonEvent *event,
3832 struct frame *f)
3834 /* Make the event type NO_EVENT; we'll change that when we decide
3835 otherwise. */
3836 result->kind = MOUSE_CLICK_EVENT;
3837 result->code = event->button - Button1;
3838 result->timestamp = event->time;
3839 result->modifiers = (x_x_to_emacs_modifiers (FRAME_DISPLAY_INFO (f),
3840 event->state)
3841 | (event->type == ButtonRelease
3842 ? up_modifier
3843 : down_modifier));
3845 XSETINT (result->x, event->x);
3846 XSETINT (result->y, event->y);
3847 XSETFRAME (result->frame_or_window, f);
3848 result->arg = Qnil;
3849 return Qnil;
3852 /* Function to report a mouse movement to the mainstream Emacs code.
3853 The input handler calls this.
3855 We have received a mouse movement event, which is given in *event.
3856 If the mouse is over a different glyph than it was last time, tell
3857 the mainstream emacs code by setting mouse_moved. If not, ask for
3858 another motion event, so we can check again the next time it moves. */
3860 static int
3861 note_mouse_movement (struct frame *frame, const XMotionEvent *event)
3863 XRectangle *r;
3864 struct x_display_info *dpyinfo;
3866 if (!FRAME_X_OUTPUT (frame))
3867 return 0;
3869 dpyinfo = FRAME_DISPLAY_INFO (frame);
3870 dpyinfo->last_mouse_movement_time = event->time;
3871 dpyinfo->last_mouse_motion_frame = frame;
3872 dpyinfo->last_mouse_motion_x = event->x;
3873 dpyinfo->last_mouse_motion_y = event->y;
3875 if (event->window != FRAME_X_WINDOW (frame))
3877 frame->mouse_moved = 1;
3878 dpyinfo->last_mouse_scroll_bar = NULL;
3879 note_mouse_highlight (frame, -1, -1);
3880 dpyinfo->last_mouse_glyph_frame = NULL;
3881 return 1;
3885 /* Has the mouse moved off the glyph it was on at the last sighting? */
3886 r = &dpyinfo->last_mouse_glyph;
3887 if (frame != dpyinfo->last_mouse_glyph_frame
3888 || event->x < r->x || event->x >= r->x + r->width
3889 || event->y < r->y || event->y >= r->y + r->height)
3891 frame->mouse_moved = 1;
3892 dpyinfo->last_mouse_scroll_bar = NULL;
3893 note_mouse_highlight (frame, event->x, event->y);
3894 /* Remember which glyph we're now on. */
3895 remember_mouse_glyph (frame, event->x, event->y, r);
3896 dpyinfo->last_mouse_glyph_frame = frame;
3897 return 1;
3900 return 0;
3903 /* Return the current position of the mouse.
3904 *FP should be a frame which indicates which display to ask about.
3906 If the mouse movement started in a scroll bar, set *FP, *BAR_WINDOW,
3907 and *PART to the frame, window, and scroll bar part that the mouse
3908 is over. Set *X and *Y to the portion and whole of the mouse's
3909 position on the scroll bar.
3911 If the mouse movement started elsewhere, set *FP to the frame the
3912 mouse is on, *BAR_WINDOW to nil, and *X and *Y to the character cell
3913 the mouse is over.
3915 Set *TIMESTAMP to the server time-stamp for the time at which the mouse
3916 was at this position.
3918 Don't store anything if we don't have a valid set of values to report.
3920 This clears the mouse_moved flag, so we can wait for the next mouse
3921 movement. */
3923 static void
3924 XTmouse_position (struct frame **fp, int insist, Lisp_Object *bar_window,
3925 enum scroll_bar_part *part, Lisp_Object *x, Lisp_Object *y,
3926 Time *timestamp)
3928 struct frame *f1;
3929 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (*fp);
3931 block_input ();
3933 if (dpyinfo->last_mouse_scroll_bar && insist == 0)
3934 x_scroll_bar_report_motion (fp, bar_window, part, x, y, timestamp);
3935 else
3937 Window root;
3938 int root_x, root_y;
3940 Window dummy_window;
3941 int dummy;
3943 Lisp_Object frame, tail;
3945 /* Clear the mouse-moved flag for every frame on this display. */
3946 FOR_EACH_FRAME (tail, frame)
3947 if (FRAME_X_P (XFRAME (frame))
3948 && FRAME_X_DISPLAY (XFRAME (frame)) == FRAME_X_DISPLAY (*fp))
3949 XFRAME (frame)->mouse_moved = 0;
3951 dpyinfo->last_mouse_scroll_bar = NULL;
3953 /* Figure out which root window we're on. */
3954 XQueryPointer (FRAME_X_DISPLAY (*fp),
3955 DefaultRootWindow (FRAME_X_DISPLAY (*fp)),
3957 /* The root window which contains the pointer. */
3958 &root,
3960 /* Trash which we can't trust if the pointer is on
3961 a different screen. */
3962 &dummy_window,
3964 /* The position on that root window. */
3965 &root_x, &root_y,
3967 /* More trash we can't trust. */
3968 &dummy, &dummy,
3970 /* Modifier keys and pointer buttons, about which
3971 we don't care. */
3972 (unsigned int *) &dummy);
3974 /* Now we have a position on the root; find the innermost window
3975 containing the pointer. */
3977 Window win, child;
3978 int win_x, win_y;
3979 int parent_x = 0, parent_y = 0;
3981 win = root;
3983 /* XTranslateCoordinates can get errors if the window
3984 structure is changing at the same time this function
3985 is running. So at least we must not crash from them. */
3987 x_catch_errors (FRAME_X_DISPLAY (*fp));
3989 if (x_mouse_grabbed (dpyinfo))
3991 /* If mouse was grabbed on a frame, give coords for that frame
3992 even if the mouse is now outside it. */
3993 XTranslateCoordinates (FRAME_X_DISPLAY (*fp),
3995 /* From-window. */
3996 root,
3998 /* To-window. */
3999 FRAME_X_WINDOW (dpyinfo->last_mouse_frame),
4001 /* From-position, to-position. */
4002 root_x, root_y, &win_x, &win_y,
4004 /* Child of win. */
4005 &child);
4006 f1 = dpyinfo->last_mouse_frame;
4008 else
4010 while (1)
4012 XTranslateCoordinates (FRAME_X_DISPLAY (*fp),
4014 /* From-window, to-window. */
4015 root, win,
4017 /* From-position, to-position. */
4018 root_x, root_y, &win_x, &win_y,
4020 /* Child of win. */
4021 &child);
4023 if (child == None || child == win)
4024 break;
4025 #ifdef USE_GTK
4026 /* We don't wan't to know the innermost window. We
4027 want the edit window. For non-Gtk+ the innermost
4028 window is the edit window. For Gtk+ it might not
4029 be. It might be the tool bar for example. */
4030 if (x_window_to_frame (dpyinfo, win))
4031 break;
4032 #endif
4033 win = child;
4034 parent_x = win_x;
4035 parent_y = win_y;
4038 /* Now we know that:
4039 win is the innermost window containing the pointer
4040 (XTC says it has no child containing the pointer),
4041 win_x and win_y are the pointer's position in it
4042 (XTC did this the last time through), and
4043 parent_x and parent_y are the pointer's position in win's parent.
4044 (They are what win_x and win_y were when win was child.
4045 If win is the root window, it has no parent, and
4046 parent_{x,y} are invalid, but that's okay, because we'll
4047 never use them in that case.) */
4049 #ifdef USE_GTK
4050 /* We don't wan't to know the innermost window. We
4051 want the edit window. */
4052 f1 = x_window_to_frame (dpyinfo, win);
4053 #else
4054 /* Is win one of our frames? */
4055 f1 = x_any_window_to_frame (dpyinfo, win);
4056 #endif
4058 #ifdef USE_X_TOOLKIT
4059 /* If we end up with the menu bar window, say it's not
4060 on the frame. */
4061 if (f1 != NULL
4062 && f1->output_data.x->menubar_widget
4063 && win == XtWindow (f1->output_data.x->menubar_widget))
4064 f1 = NULL;
4065 #endif /* USE_X_TOOLKIT */
4068 if (x_had_errors_p (FRAME_X_DISPLAY (*fp)))
4069 f1 = 0;
4071 x_uncatch_errors ();
4073 /* If not, is it one of our scroll bars? */
4074 if (! f1)
4076 struct scroll_bar *bar;
4078 bar = x_window_to_scroll_bar (FRAME_X_DISPLAY (*fp), win);
4080 if (bar)
4082 f1 = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
4083 win_x = parent_x;
4084 win_y = parent_y;
4088 if (f1 == 0 && insist > 0)
4089 f1 = SELECTED_FRAME ();
4091 if (f1)
4093 /* Ok, we found a frame. Store all the values.
4094 last_mouse_glyph is a rectangle used to reduce the
4095 generation of mouse events. To not miss any motion
4096 events, we must divide the frame into rectangles of the
4097 size of the smallest character that could be displayed
4098 on it, i.e. into the same rectangles that matrices on
4099 the frame are divided into. */
4101 /* FIXME: what if F1 is not an X frame? */
4102 dpyinfo = FRAME_DISPLAY_INFO (f1);
4103 remember_mouse_glyph (f1, win_x, win_y, &dpyinfo->last_mouse_glyph);
4104 dpyinfo->last_mouse_glyph_frame = f1;
4106 *bar_window = Qnil;
4107 *part = 0;
4108 *fp = f1;
4109 XSETINT (*x, win_x);
4110 XSETINT (*y, win_y);
4111 *timestamp = dpyinfo->last_mouse_movement_time;
4116 unblock_input ();
4121 /***********************************************************************
4122 Scroll bars
4123 ***********************************************************************/
4125 /* Scroll bar support. */
4127 /* Given an X window ID and a DISPLAY, find the struct scroll_bar which
4128 manages it.
4129 This can be called in GC, so we have to make sure to strip off mark
4130 bits. */
4132 static struct scroll_bar *
4133 x_window_to_scroll_bar (Display *display, Window window_id)
4135 Lisp_Object tail, frame;
4137 #if defined (USE_GTK) && defined (USE_TOOLKIT_SCROLL_BARS)
4138 window_id = (Window) xg_get_scroll_id_for_window (display, window_id);
4139 #endif /* USE_GTK && USE_TOOLKIT_SCROLL_BARS */
4141 FOR_EACH_FRAME (tail, frame)
4143 Lisp_Object bar, condemned;
4145 if (! FRAME_X_P (XFRAME (frame)))
4146 continue;
4148 /* Scan this frame's scroll bar list for a scroll bar with the
4149 right window ID. */
4150 condemned = FRAME_CONDEMNED_SCROLL_BARS (XFRAME (frame));
4151 for (bar = FRAME_SCROLL_BARS (XFRAME (frame));
4152 /* This trick allows us to search both the ordinary and
4153 condemned scroll bar lists with one loop. */
4154 ! NILP (bar) || (bar = condemned,
4155 condemned = Qnil,
4156 ! NILP (bar));
4157 bar = XSCROLL_BAR (bar)->next)
4158 if (XSCROLL_BAR (bar)->x_window == window_id &&
4159 FRAME_X_DISPLAY (XFRAME (frame)) == display)
4160 return XSCROLL_BAR (bar);
4163 return NULL;
4167 #if defined USE_LUCID
4169 /* Return the Lucid menu bar WINDOW is part of. Return null
4170 if WINDOW is not part of a menu bar. */
4172 static Widget
4173 x_window_to_menu_bar (Window window)
4175 Lisp_Object tail, frame;
4177 FOR_EACH_FRAME (tail, frame)
4178 if (FRAME_X_P (XFRAME (frame)))
4180 Widget menu_bar = XFRAME (frame)->output_data.x->menubar_widget;
4182 if (menu_bar && xlwmenu_window_p (menu_bar, window))
4183 return menu_bar;
4185 return NULL;
4188 #endif /* USE_LUCID */
4191 /************************************************************************
4192 Toolkit scroll bars
4193 ************************************************************************/
4195 #ifdef USE_TOOLKIT_SCROLL_BARS
4197 static void x_send_scroll_bar_event (Lisp_Object, int, int, int);
4199 /* Lisp window being scrolled. Set when starting to interact with
4200 a toolkit scroll bar, reset to nil when ending the interaction. */
4202 static Lisp_Object window_being_scrolled;
4204 /* Whether this is an Xaw with arrow-scrollbars. This should imply
4205 that movements of 1/20 of the screen size are mapped to up/down. */
4207 #ifndef USE_GTK
4208 /* Id of action hook installed for scroll bars. */
4210 static XtActionHookId action_hook_id;
4212 static Boolean xaw3d_arrow_scroll;
4214 /* Whether the drag scrolling maintains the mouse at the top of the
4215 thumb. If not, resizing the thumb needs to be done more carefully
4216 to avoid jerkiness. */
4218 static Boolean xaw3d_pick_top;
4220 /* Action hook installed via XtAppAddActionHook when toolkit scroll
4221 bars are used.. The hook is responsible for detecting when
4222 the user ends an interaction with the scroll bar, and generates
4223 a `end-scroll' SCROLL_BAR_CLICK_EVENT' event if so. */
4225 static void
4226 xt_action_hook (Widget widget, XtPointer client_data, String action_name,
4227 XEvent *event, String *params, Cardinal *num_params)
4229 int scroll_bar_p;
4230 const char *end_action;
4232 #ifdef USE_MOTIF
4233 scroll_bar_p = XmIsScrollBar (widget);
4234 end_action = "Release";
4235 #else /* !USE_MOTIF i.e. use Xaw */
4236 scroll_bar_p = XtIsSubclass (widget, scrollbarWidgetClass);
4237 end_action = "EndScroll";
4238 #endif /* USE_MOTIF */
4240 if (scroll_bar_p
4241 && strcmp (action_name, end_action) == 0
4242 && WINDOWP (window_being_scrolled))
4244 struct window *w;
4245 struct scroll_bar *bar;
4247 x_send_scroll_bar_event (window_being_scrolled,
4248 scroll_bar_end_scroll, 0, 0);
4249 w = XWINDOW (window_being_scrolled);
4250 bar = XSCROLL_BAR (w->vertical_scroll_bar);
4252 if (bar->dragging != -1)
4254 bar->dragging = -1;
4255 /* The thumb size is incorrect while dragging: fix it. */
4256 set_vertical_scroll_bar (w);
4258 window_being_scrolled = Qnil;
4259 #if defined (USE_LUCID)
4260 bar->last_seen_part = scroll_bar_nowhere;
4261 #endif
4262 /* Xt timeouts no longer needed. */
4263 toolkit_scroll_bar_interaction = 0;
4266 #endif /* not USE_GTK */
4268 /* Send a client message with message type Xatom_Scrollbar for a
4269 scroll action to the frame of WINDOW. PART is a value identifying
4270 the part of the scroll bar that was clicked on. PORTION is the
4271 amount to scroll of a whole of WHOLE. */
4273 static void
4274 x_send_scroll_bar_event (Lisp_Object window, int part, int portion, int whole)
4276 XEvent event;
4277 XClientMessageEvent *ev = &event.xclient;
4278 struct window *w = XWINDOW (window);
4279 struct frame *f = XFRAME (w->frame);
4280 intptr_t iw = (intptr_t) w;
4281 enum { BITS_PER_INTPTR = CHAR_BIT * sizeof iw };
4282 verify (BITS_PER_INTPTR <= 64);
4283 int sign_shift = BITS_PER_INTPTR - 32;
4285 block_input ();
4287 /* Construct a ClientMessage event to send to the frame. */
4288 ev->type = ClientMessage;
4289 ev->message_type = FRAME_DISPLAY_INFO (f)->Xatom_Scrollbar;
4290 ev->display = FRAME_X_DISPLAY (f);
4291 ev->window = FRAME_X_WINDOW (f);
4292 ev->format = 32;
4294 /* A 32-bit X client on a 64-bit X server can pass a window pointer
4295 as-is. A 64-bit client on a 32-bit X server is in trouble
4296 because a pointer does not fit and would be truncated while
4297 passing through the server. So use two slots and hope that X12
4298 will resolve such issues someday. */
4299 ev->data.l[0] = iw >> 31 >> 1;
4300 ev->data.l[1] = sign_shift <= 0 ? iw : iw << sign_shift >> sign_shift;
4301 ev->data.l[2] = part;
4302 ev->data.l[3] = portion;
4303 ev->data.l[4] = whole;
4305 /* Make Xt timeouts work while the scroll bar is active. */
4306 #ifdef USE_X_TOOLKIT
4307 toolkit_scroll_bar_interaction = 1;
4308 x_activate_timeout_atimer ();
4309 #endif
4311 /* Setting the event mask to zero means that the message will
4312 be sent to the client that created the window, and if that
4313 window no longer exists, no event will be sent. */
4314 XSendEvent (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), False, 0, &event);
4315 unblock_input ();
4319 /* Transform a scroll bar ClientMessage EVENT to an Emacs input event
4320 in *IEVENT. */
4322 static void
4323 x_scroll_bar_to_input_event (const XEvent *event,
4324 struct input_event *ievent)
4326 const XClientMessageEvent *ev = &event->xclient;
4327 Lisp_Object window;
4328 struct window *w;
4330 /* See the comment in the function above. */
4331 intptr_t iw0 = ev->data.l[0];
4332 intptr_t iw1 = ev->data.l[1];
4333 intptr_t iw = (iw0 << 31 << 1) + (iw1 & 0xffffffffu);
4334 w = (struct window *) iw;
4336 XSETWINDOW (window, w);
4338 ievent->kind = SCROLL_BAR_CLICK_EVENT;
4339 ievent->frame_or_window = window;
4340 ievent->arg = Qnil;
4341 #ifdef USE_GTK
4342 ievent->timestamp = CurrentTime;
4343 #else
4344 ievent->timestamp =
4345 XtLastTimestampProcessed (FRAME_X_DISPLAY (XFRAME (w->frame)));
4346 #endif
4347 ievent->code = 0;
4348 ievent->part = ev->data.l[2];
4349 ievent->x = make_number (ev->data.l[3]);
4350 ievent->y = make_number (ev->data.l[4]);
4351 ievent->modifiers = 0;
4355 #ifdef USE_MOTIF
4357 /* Minimum and maximum values used for Motif scroll bars. */
4359 #define XM_SB_MAX 10000000
4362 /* Scroll bar callback for Motif scroll bars. WIDGET is the scroll
4363 bar widget. CLIENT_DATA is a pointer to the scroll_bar structure.
4364 CALL_DATA is a pointer to a XmScrollBarCallbackStruct. */
4366 static void
4367 xm_scroll_callback (Widget widget, XtPointer client_data, XtPointer call_data)
4369 struct scroll_bar *bar = client_data;
4370 XmScrollBarCallbackStruct *cs = call_data;
4371 int part = -1, whole = 0, portion = 0;
4373 switch (cs->reason)
4375 case XmCR_DECREMENT:
4376 bar->dragging = -1;
4377 part = scroll_bar_up_arrow;
4378 break;
4380 case XmCR_INCREMENT:
4381 bar->dragging = -1;
4382 part = scroll_bar_down_arrow;
4383 break;
4385 case XmCR_PAGE_DECREMENT:
4386 bar->dragging = -1;
4387 part = scroll_bar_above_handle;
4388 break;
4390 case XmCR_PAGE_INCREMENT:
4391 bar->dragging = -1;
4392 part = scroll_bar_below_handle;
4393 break;
4395 case XmCR_TO_TOP:
4396 bar->dragging = -1;
4397 part = scroll_bar_to_top;
4398 break;
4400 case XmCR_TO_BOTTOM:
4401 bar->dragging = -1;
4402 part = scroll_bar_to_bottom;
4403 break;
4405 case XmCR_DRAG:
4407 int slider_size;
4409 /* Get the slider size. */
4410 block_input ();
4411 XtVaGetValues (widget, XmNsliderSize, &slider_size, NULL);
4412 unblock_input ();
4414 whole = XM_SB_MAX - slider_size;
4415 portion = min (cs->value, whole);
4416 part = scroll_bar_handle;
4417 bar->dragging = cs->value;
4419 break;
4421 case XmCR_VALUE_CHANGED:
4422 break;
4425 if (part >= 0)
4427 window_being_scrolled = bar->window;
4428 x_send_scroll_bar_event (bar->window, part, portion, whole);
4432 #elif defined USE_GTK
4434 /* Scroll bar callback for GTK scroll bars. WIDGET is the scroll
4435 bar widget. DATA is a pointer to the scroll_bar structure. */
4437 static gboolean
4438 xg_scroll_callback (GtkRange *range,
4439 GtkScrollType scroll,
4440 gdouble value,
4441 gpointer user_data)
4443 struct scroll_bar *bar = user_data;
4444 int part = -1, whole = 0, portion = 0;
4445 GtkAdjustment *adj = GTK_ADJUSTMENT (gtk_range_get_adjustment (range));
4446 struct frame *f = g_object_get_data (G_OBJECT (range), XG_FRAME_DATA);
4448 if (xg_ignore_gtk_scrollbar) return FALSE;
4450 switch (scroll)
4452 case GTK_SCROLL_JUMP:
4453 /* Buttons 1 2 or 3 must be grabbed. */
4454 if (FRAME_DISPLAY_INFO (f)->grabbed != 0
4455 && FRAME_DISPLAY_INFO (f)->grabbed < (1 << 4))
4457 part = scroll_bar_handle;
4458 whole = gtk_adjustment_get_upper (adj) -
4459 gtk_adjustment_get_page_size (adj);
4460 portion = min ((int)value, whole);
4461 bar->dragging = portion;
4463 break;
4464 case GTK_SCROLL_STEP_BACKWARD:
4465 part = scroll_bar_up_arrow;
4466 bar->dragging = -1;
4467 break;
4468 case GTK_SCROLL_STEP_FORWARD:
4469 part = scroll_bar_down_arrow;
4470 bar->dragging = -1;
4471 break;
4472 case GTK_SCROLL_PAGE_BACKWARD:
4473 part = scroll_bar_above_handle;
4474 bar->dragging = -1;
4475 break;
4476 case GTK_SCROLL_PAGE_FORWARD:
4477 part = scroll_bar_below_handle;
4478 bar->dragging = -1;
4479 break;
4482 if (part >= 0)
4484 window_being_scrolled = bar->window;
4485 x_send_scroll_bar_event (bar->window, part, portion, whole);
4488 return FALSE;
4491 /* Callback for button release. Sets dragging to -1 when dragging is done. */
4493 static gboolean
4494 xg_end_scroll_callback (GtkWidget *widget,
4495 GdkEventButton *event,
4496 gpointer user_data)
4498 struct scroll_bar *bar = user_data;
4499 bar->dragging = -1;
4500 if (WINDOWP (window_being_scrolled))
4502 x_send_scroll_bar_event (window_being_scrolled,
4503 scroll_bar_end_scroll, 0, 0);
4504 window_being_scrolled = Qnil;
4507 return FALSE;
4511 #else /* not USE_GTK and not USE_MOTIF */
4513 /* Xaw scroll bar callback. Invoked when the thumb is dragged.
4514 WIDGET is the scroll bar widget. CLIENT_DATA is a pointer to the
4515 scroll bar struct. CALL_DATA is a pointer to a float saying where
4516 the thumb is. */
4518 static void
4519 xaw_jump_callback (Widget widget, XtPointer client_data, XtPointer call_data)
4521 struct scroll_bar *bar = client_data;
4522 float *top_addr = call_data;
4523 float top = *top_addr;
4524 float shown;
4525 int whole, portion, height;
4526 enum scroll_bar_part part;
4528 /* Get the size of the thumb, a value between 0 and 1. */
4529 block_input ();
4530 XtVaGetValues (widget, XtNshown, &shown, XtNheight, &height, NULL);
4531 unblock_input ();
4533 whole = 10000000;
4534 portion = shown < 1 ? top * whole : 0;
4536 if (shown < 1 && (eabs (top + shown - 1) < 1.0f / height))
4537 /* Some derivatives of Xaw refuse to shrink the thumb when you reach
4538 the bottom, so we force the scrolling whenever we see that we're
4539 too close to the bottom (in x_set_toolkit_scroll_bar_thumb
4540 we try to ensure that we always stay two pixels away from the
4541 bottom). */
4542 part = scroll_bar_down_arrow;
4543 else
4544 part = scroll_bar_handle;
4546 window_being_scrolled = bar->window;
4547 bar->dragging = portion;
4548 bar->last_seen_part = part;
4549 x_send_scroll_bar_event (bar->window, part, portion, whole);
4553 /* Xaw scroll bar callback. Invoked for incremental scrolling.,
4554 i.e. line or page up or down. WIDGET is the Xaw scroll bar
4555 widget. CLIENT_DATA is a pointer to the scroll_bar structure for
4556 the scroll bar. CALL_DATA is an integer specifying the action that
4557 has taken place. Its magnitude is in the range 0..height of the
4558 scroll bar. Negative values mean scroll towards buffer start.
4559 Values < height of scroll bar mean line-wise movement. */
4561 static void
4562 xaw_scroll_callback (Widget widget, XtPointer client_data, XtPointer call_data)
4564 struct scroll_bar *bar = client_data;
4565 /* The position really is stored cast to a pointer. */
4566 int position = (intptr_t) call_data;
4567 Dimension height;
4568 enum scroll_bar_part part;
4570 /* Get the height of the scroll bar. */
4571 block_input ();
4572 XtVaGetValues (widget, XtNheight, &height, NULL);
4573 unblock_input ();
4575 if (eabs (position) >= height)
4576 part = (position < 0) ? scroll_bar_above_handle : scroll_bar_below_handle;
4578 /* If Xaw3d was compiled with ARROW_SCROLLBAR,
4579 it maps line-movement to call_data = max(5, height/20). */
4580 else if (xaw3d_arrow_scroll && eabs (position) <= max (5, height / 20))
4581 part = (position < 0) ? scroll_bar_up_arrow : scroll_bar_down_arrow;
4582 else
4583 part = scroll_bar_move_ratio;
4585 window_being_scrolled = bar->window;
4586 bar->dragging = -1;
4587 bar->last_seen_part = part;
4588 x_send_scroll_bar_event (bar->window, part, position, height);
4591 #endif /* not USE_GTK and not USE_MOTIF */
4593 #define SCROLL_BAR_NAME "verticalScrollBar"
4595 /* Create the widget for scroll bar BAR on frame F. Record the widget
4596 and X window of the scroll bar in BAR. */
4598 #ifdef USE_GTK
4599 static void
4600 x_create_toolkit_scroll_bar (struct frame *f, struct scroll_bar *bar)
4602 const char *scroll_bar_name = SCROLL_BAR_NAME;
4604 block_input ();
4605 xg_create_scroll_bar (f, bar, G_CALLBACK (xg_scroll_callback),
4606 G_CALLBACK (xg_end_scroll_callback),
4607 scroll_bar_name);
4608 unblock_input ();
4611 #else /* not USE_GTK */
4613 static void
4614 x_create_toolkit_scroll_bar (struct frame *f, struct scroll_bar *bar)
4616 Window xwindow;
4617 Widget widget;
4618 Arg av[20];
4619 int ac = 0;
4620 const char *scroll_bar_name = SCROLL_BAR_NAME;
4621 unsigned long pixel;
4623 block_input ();
4625 #ifdef USE_MOTIF
4626 /* Set resources. Create the widget. */
4627 XtSetArg (av[ac], XtNmappedWhenManaged, False); ++ac;
4628 XtSetArg (av[ac], XmNminimum, 0); ++ac;
4629 XtSetArg (av[ac], XmNmaximum, XM_SB_MAX); ++ac;
4630 XtSetArg (av[ac], XmNorientation, XmVERTICAL); ++ac;
4631 XtSetArg (av[ac], XmNprocessingDirection, XmMAX_ON_BOTTOM), ++ac;
4632 XtSetArg (av[ac], XmNincrement, 1); ++ac;
4633 XtSetArg (av[ac], XmNpageIncrement, 1); ++ac;
4635 pixel = f->output_data.x->scroll_bar_foreground_pixel;
4636 if (pixel != -1)
4638 XtSetArg (av[ac], XmNforeground, pixel);
4639 ++ac;
4642 pixel = f->output_data.x->scroll_bar_background_pixel;
4643 if (pixel != -1)
4645 XtSetArg (av[ac], XmNbackground, pixel);
4646 ++ac;
4649 widget = XmCreateScrollBar (f->output_data.x->edit_widget,
4650 (char *) scroll_bar_name, av, ac);
4652 /* Add one callback for everything that can happen. */
4653 XtAddCallback (widget, XmNdecrementCallback, xm_scroll_callback,
4654 (XtPointer) bar);
4655 XtAddCallback (widget, XmNdragCallback, xm_scroll_callback,
4656 (XtPointer) bar);
4657 XtAddCallback (widget, XmNincrementCallback, xm_scroll_callback,
4658 (XtPointer) bar);
4659 XtAddCallback (widget, XmNpageDecrementCallback, xm_scroll_callback,
4660 (XtPointer) bar);
4661 XtAddCallback (widget, XmNpageIncrementCallback, xm_scroll_callback,
4662 (XtPointer) bar);
4663 XtAddCallback (widget, XmNtoBottomCallback, xm_scroll_callback,
4664 (XtPointer) bar);
4665 XtAddCallback (widget, XmNtoTopCallback, xm_scroll_callback,
4666 (XtPointer) bar);
4668 /* Realize the widget. Only after that is the X window created. */
4669 XtRealizeWidget (widget);
4671 /* Set the cursor to an arrow. I didn't find a resource to do that.
4672 And I'm wondering why it hasn't an arrow cursor by default. */
4673 XDefineCursor (XtDisplay (widget), XtWindow (widget),
4674 f->output_data.x->nontext_cursor);
4676 #else /* !USE_MOTIF i.e. use Xaw */
4678 /* Set resources. Create the widget. The background of the
4679 Xaw3d scroll bar widget is a little bit light for my taste.
4680 We don't alter it here to let users change it according
4681 to their taste with `emacs*verticalScrollBar.background: xxx'. */
4682 XtSetArg (av[ac], XtNmappedWhenManaged, False); ++ac;
4683 XtSetArg (av[ac], XtNorientation, XtorientVertical); ++ac;
4684 /* For smoother scrolling with Xaw3d -sm */
4685 /* XtSetArg (av[ac], XtNpickTop, True); ++ac; */
4687 pixel = f->output_data.x->scroll_bar_foreground_pixel;
4688 if (pixel != -1)
4690 XtSetArg (av[ac], XtNforeground, pixel);
4691 ++ac;
4694 pixel = f->output_data.x->scroll_bar_background_pixel;
4695 if (pixel != -1)
4697 XtSetArg (av[ac], XtNbackground, pixel);
4698 ++ac;
4701 /* Top/bottom shadow colors. */
4703 /* Allocate them, if necessary. */
4704 if (f->output_data.x->scroll_bar_top_shadow_pixel == -1)
4706 pixel = f->output_data.x->scroll_bar_background_pixel;
4707 if (pixel != -1)
4709 if (!x_alloc_lighter_color (f, FRAME_X_DISPLAY (f),
4710 FRAME_X_COLORMAP (f),
4711 &pixel, 1.2, 0x8000))
4712 pixel = -1;
4713 f->output_data.x->scroll_bar_top_shadow_pixel = pixel;
4716 if (f->output_data.x->scroll_bar_bottom_shadow_pixel == -1)
4718 pixel = f->output_data.x->scroll_bar_background_pixel;
4719 if (pixel != -1)
4721 if (!x_alloc_lighter_color (f, FRAME_X_DISPLAY (f),
4722 FRAME_X_COLORMAP (f),
4723 &pixel, 0.6, 0x4000))
4724 pixel = -1;
4725 f->output_data.x->scroll_bar_bottom_shadow_pixel = pixel;
4729 #ifdef XtNbeNiceToColormap
4730 /* Tell the toolkit about them. */
4731 if (f->output_data.x->scroll_bar_top_shadow_pixel == -1
4732 || f->output_data.x->scroll_bar_bottom_shadow_pixel == -1)
4733 /* We tried to allocate a color for the top/bottom shadow, and
4734 failed, so tell Xaw3d to use dithering instead. */
4735 /* But only if we have a small colormap. Xaw3d can allocate nice
4736 colors itself. */
4738 XtSetArg (av[ac], XtNbeNiceToColormap,
4739 DefaultDepthOfScreen (FRAME_X_SCREEN (f)) < 16);
4740 ++ac;
4742 else
4743 /* Tell what colors Xaw3d should use for the top/bottom shadow, to
4744 be more consistent with other emacs 3d colors, and since Xaw3d is
4745 not good at dealing with allocation failure. */
4747 /* This tells Xaw3d to use real colors instead of dithering for
4748 the shadows. */
4749 XtSetArg (av[ac], XtNbeNiceToColormap, False);
4750 ++ac;
4752 /* Specify the colors. */
4753 pixel = f->output_data.x->scroll_bar_top_shadow_pixel;
4754 if (pixel != -1)
4756 XtSetArg (av[ac], XtNtopShadowPixel, pixel);
4757 ++ac;
4759 pixel = f->output_data.x->scroll_bar_bottom_shadow_pixel;
4760 if (pixel != -1)
4762 XtSetArg (av[ac], XtNbottomShadowPixel, pixel);
4763 ++ac;
4766 #endif
4768 widget = XtCreateWidget (scroll_bar_name, scrollbarWidgetClass,
4769 f->output_data.x->edit_widget, av, ac);
4772 char const *initial = "";
4773 char const *val = initial;
4774 XtVaGetValues (widget, XtNscrollVCursor, (XtPointer) &val,
4775 #ifdef XtNarrowScrollbars
4776 XtNarrowScrollbars, (XtPointer) &xaw3d_arrow_scroll,
4777 #endif
4778 XtNpickTop, (XtPointer) &xaw3d_pick_top, NULL);
4779 if (xaw3d_arrow_scroll || val == initial)
4780 { /* ARROW_SCROLL */
4781 xaw3d_arrow_scroll = True;
4782 /* Isn't that just a personal preference ? --Stef */
4783 XtVaSetValues (widget, XtNcursorName, "top_left_arrow", NULL);
4787 /* Define callbacks. */
4788 XtAddCallback (widget, XtNjumpProc, xaw_jump_callback, (XtPointer) bar);
4789 XtAddCallback (widget, XtNscrollProc, xaw_scroll_callback,
4790 (XtPointer) bar);
4792 /* Realize the widget. Only after that is the X window created. */
4793 XtRealizeWidget (widget);
4795 #endif /* !USE_MOTIF */
4797 /* Install an action hook that lets us detect when the user
4798 finishes interacting with a scroll bar. */
4799 if (action_hook_id == 0)
4800 action_hook_id = XtAppAddActionHook (Xt_app_con, xt_action_hook, 0);
4802 /* Remember X window and widget in the scroll bar vector. */
4803 SET_SCROLL_BAR_X_WIDGET (bar, widget);
4804 xwindow = XtWindow (widget);
4805 bar->x_window = xwindow;
4807 unblock_input ();
4809 #endif /* not USE_GTK */
4812 /* Set the thumb size and position of scroll bar BAR. We are currently
4813 displaying PORTION out of a whole WHOLE, and our position POSITION. */
4815 #ifdef USE_GTK
4816 static void
4817 x_set_toolkit_scroll_bar_thumb (struct scroll_bar *bar, int portion, int position, int whole)
4819 xg_set_toolkit_scroll_bar_thumb (bar, portion, position, whole);
4822 #else /* not USE_GTK */
4823 static void
4824 x_set_toolkit_scroll_bar_thumb (struct scroll_bar *bar, int portion, int position,
4825 int whole)
4827 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
4828 Widget widget = SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f), bar);
4829 float top, shown;
4831 block_input ();
4833 #ifdef USE_MOTIF
4835 if (scroll_bar_adjust_thumb_portion_p)
4837 /* We use an estimate of 30 chars per line rather than the real
4838 `portion' value. This has the disadvantage that the thumb size
4839 is not very representative, but it makes our life a lot easier.
4840 Otherwise, we have to constantly adjust the thumb size, which
4841 we can't always do quickly enough: while dragging, the size of
4842 the thumb might prevent the user from dragging the thumb all the
4843 way to the end. but Motif and some versions of Xaw3d don't allow
4844 updating the thumb size while dragging. Also, even if we can update
4845 its size, the update will often happen too late.
4846 If you don't believe it, check out revision 1.650 of xterm.c to see
4847 what hoops we were going through and the still poor behavior we got. */
4848 portion = WINDOW_TOTAL_LINES (XWINDOW (bar->window)) * 30;
4849 /* When the thumb is at the bottom, position == whole.
4850 So we need to increase `whole' to make space for the thumb. */
4851 whole += portion;
4854 if (whole <= 0)
4855 top = 0, shown = 1;
4856 else
4858 top = (float) position / whole;
4859 shown = (float) portion / whole;
4862 if (bar->dragging == -1)
4864 int size, value;
4866 /* Slider size. Must be in the range [1 .. MAX - MIN] where MAX
4867 is the scroll bar's maximum and MIN is the scroll bar's minimum
4868 value. */
4869 size = clip_to_bounds (1, shown * XM_SB_MAX, XM_SB_MAX);
4871 /* Position. Must be in the range [MIN .. MAX - SLIDER_SIZE]. */
4872 value = top * XM_SB_MAX;
4873 value = min (value, XM_SB_MAX - size);
4875 XmScrollBarSetValues (widget, value, size, 0, 0, False);
4877 #else /* !USE_MOTIF i.e. use Xaw */
4879 if (whole == 0)
4880 top = 0, shown = 1;
4881 else
4883 top = (float) position / whole;
4884 shown = (float) portion / whole;
4888 float old_top, old_shown;
4889 Dimension height;
4890 XtVaGetValues (widget,
4891 XtNtopOfThumb, &old_top,
4892 XtNshown, &old_shown,
4893 XtNheight, &height,
4894 NULL);
4896 /* Massage the top+shown values. */
4897 if (bar->dragging == -1 || bar->last_seen_part == scroll_bar_down_arrow)
4898 top = max (0, min (1, top));
4899 else
4900 top = old_top;
4901 #if ! defined (HAVE_XAW3D)
4902 /* With Xaw, 'top' values too closer to 1.0 may
4903 cause the thumb to disappear. Fix that. */
4904 top = min (top, 0.99f);
4905 #endif
4906 /* Keep two pixels available for moving the thumb down. */
4907 shown = max (0, min (1 - top - (2.0f / height), shown));
4908 #if ! defined (HAVE_XAW3D)
4909 /* Likewise with too small 'shown'. */
4910 shown = max (shown, 0.01f);
4911 #endif
4913 /* If the call to XawScrollbarSetThumb below doesn't seem to
4914 work, check that 'NARROWPROTO' is defined in src/config.h.
4915 If this is not so, most likely you need to fix configure. */
4916 if (top != old_top || shown != old_shown)
4918 if (bar->dragging == -1)
4919 XawScrollbarSetThumb (widget, top, shown);
4920 else
4922 /* Try to make the scrolling a tad smoother. */
4923 if (!xaw3d_pick_top)
4924 shown = min (shown, old_shown);
4926 XawScrollbarSetThumb (widget, top, shown);
4930 #endif /* !USE_MOTIF */
4932 unblock_input ();
4934 #endif /* not USE_GTK */
4936 #endif /* USE_TOOLKIT_SCROLL_BARS */
4940 /************************************************************************
4941 Scroll bars, general
4942 ************************************************************************/
4944 /* Create a scroll bar and return the scroll bar vector for it. W is
4945 the Emacs window on which to create the scroll bar. TOP, LEFT,
4946 WIDTH and HEIGHT are the pixel coordinates and dimensions of the
4947 scroll bar. */
4949 static struct scroll_bar *
4950 x_scroll_bar_create (struct window *w, int top, int left, int width, int height)
4952 struct frame *f = XFRAME (w->frame);
4953 struct scroll_bar *bar
4954 = ALLOCATE_PSEUDOVECTOR (struct scroll_bar, x_window, PVEC_OTHER);
4955 Lisp_Object barobj;
4957 block_input ();
4959 #ifdef USE_TOOLKIT_SCROLL_BARS
4960 x_create_toolkit_scroll_bar (f, bar);
4961 #else /* not USE_TOOLKIT_SCROLL_BARS */
4963 XSetWindowAttributes a;
4964 unsigned long mask;
4965 Window window;
4967 a.background_pixel = f->output_data.x->scroll_bar_background_pixel;
4968 if (a.background_pixel == -1)
4969 a.background_pixel = FRAME_BACKGROUND_PIXEL (f);
4971 a.event_mask = (ButtonPressMask | ButtonReleaseMask
4972 | ButtonMotionMask | PointerMotionHintMask
4973 | ExposureMask);
4974 a.cursor = FRAME_DISPLAY_INFO (f)->vertical_scroll_bar_cursor;
4976 mask = (CWBackPixel | CWEventMask | CWCursor);
4978 /* Clear the area of W that will serve as a scroll bar. This is
4979 for the case that a window has been split horizontally. In
4980 this case, no clear_frame is generated to reduce flickering. */
4981 if (width > 0 && window_box_height (w) > 0)
4982 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
4983 left, top, width, window_box_height (w));
4985 window = XCreateWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
4986 /* Position and size of scroll bar. */
4987 left, top, width, height,
4988 /* Border width, depth, class, and visual. */
4990 CopyFromParent,
4991 CopyFromParent,
4992 CopyFromParent,
4993 /* Attributes. */
4994 mask, &a);
4995 bar->x_window = window;
4997 #endif /* not USE_TOOLKIT_SCROLL_BARS */
4999 XSETWINDOW (bar->window, w);
5000 bar->top = top;
5001 bar->left = left;
5002 bar->width = width;
5003 bar->height = height;
5004 bar->start = 0;
5005 bar->end = 0;
5006 bar->dragging = -1;
5007 #if defined (USE_TOOLKIT_SCROLL_BARS) && defined (USE_LUCID)
5008 bar->last_seen_part = scroll_bar_nowhere;
5009 #endif
5011 /* Add bar to its frame's list of scroll bars. */
5012 bar->next = FRAME_SCROLL_BARS (f);
5013 bar->prev = Qnil;
5014 XSETVECTOR (barobj, bar);
5015 fset_scroll_bars (f, barobj);
5016 if (!NILP (bar->next))
5017 XSETVECTOR (XSCROLL_BAR (bar->next)->prev, bar);
5019 /* Map the window/widget. */
5020 #ifdef USE_TOOLKIT_SCROLL_BARS
5022 #ifdef USE_GTK
5023 xg_update_scrollbar_pos (f, bar->x_window, top,
5024 left,width, max (height, 1));
5025 #else /* not USE_GTK */
5026 Widget scroll_bar = SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f), bar);
5027 XtConfigureWidget (scroll_bar, left, top, width, max (height, 1), 0);
5028 XtMapWidget (scroll_bar);
5029 #endif /* not USE_GTK */
5031 #else /* not USE_TOOLKIT_SCROLL_BARS */
5032 XMapRaised (FRAME_X_DISPLAY (f), bar->x_window);
5033 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5035 unblock_input ();
5036 return bar;
5040 #ifndef USE_TOOLKIT_SCROLL_BARS
5042 /* Draw BAR's handle in the proper position.
5044 If the handle is already drawn from START to END, don't bother
5045 redrawing it, unless REBUILD is non-zero; in that case, always
5046 redraw it. (REBUILD is handy for drawing the handle after expose
5047 events.)
5049 Normally, we want to constrain the start and end of the handle to
5050 fit inside its rectangle, but if the user is dragging the scroll
5051 bar handle, we want to let them drag it down all the way, so that
5052 the bar's top is as far down as it goes; otherwise, there's no way
5053 to move to the very end of the buffer. */
5055 static void
5056 x_scroll_bar_set_handle (struct scroll_bar *bar, int start, int end, int rebuild)
5058 bool dragging = bar->dragging != -1;
5059 Window w = bar->x_window;
5060 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
5061 GC gc = f->output_data.x->normal_gc;
5063 /* If the display is already accurate, do nothing. */
5064 if (! rebuild
5065 && start == bar->start
5066 && end == bar->end)
5067 return;
5069 block_input ();
5072 int inside_width = VERTICAL_SCROLL_BAR_INSIDE_WIDTH (f, bar->width);
5073 int inside_height = VERTICAL_SCROLL_BAR_INSIDE_HEIGHT (f, bar->height);
5074 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, bar->height);
5076 /* Make sure the values are reasonable, and try to preserve
5077 the distance between start and end. */
5079 int length = end - start;
5081 if (start < 0)
5082 start = 0;
5083 else if (start > top_range)
5084 start = top_range;
5085 end = start + length;
5087 if (end < start)
5088 end = start;
5089 else if (end > top_range && ! dragging)
5090 end = top_range;
5093 /* Store the adjusted setting in the scroll bar. */
5094 bar->start = start;
5095 bar->end = end;
5097 /* Clip the end position, just for display. */
5098 if (end > top_range)
5099 end = top_range;
5101 /* Draw bottom positions VERTICAL_SCROLL_BAR_MIN_HANDLE pixels
5102 below top positions, to make sure the handle is always at least
5103 that many pixels tall. */
5104 end += VERTICAL_SCROLL_BAR_MIN_HANDLE;
5106 /* Draw the empty space above the handle. Note that we can't clear
5107 zero-height areas; that means "clear to end of window." */
5108 if (start > 0)
5109 x_clear_area (FRAME_X_DISPLAY (f), w,
5110 VERTICAL_SCROLL_BAR_LEFT_BORDER,
5111 VERTICAL_SCROLL_BAR_TOP_BORDER,
5112 inside_width, start);
5114 /* Change to proper foreground color if one is specified. */
5115 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
5116 XSetForeground (FRAME_X_DISPLAY (f), gc,
5117 f->output_data.x->scroll_bar_foreground_pixel);
5119 /* Draw the handle itself. */
5120 XFillRectangle (FRAME_X_DISPLAY (f), w, gc,
5121 /* x, y, width, height */
5122 VERTICAL_SCROLL_BAR_LEFT_BORDER,
5123 VERTICAL_SCROLL_BAR_TOP_BORDER + start,
5124 inside_width, end - start);
5126 /* Restore the foreground color of the GC if we changed it above. */
5127 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
5128 XSetForeground (FRAME_X_DISPLAY (f), gc,
5129 FRAME_FOREGROUND_PIXEL (f));
5131 /* Draw the empty space below the handle. Note that we can't
5132 clear zero-height areas; that means "clear to end of window." */
5133 if (end < inside_height)
5134 x_clear_area (FRAME_X_DISPLAY (f), w,
5135 VERTICAL_SCROLL_BAR_LEFT_BORDER,
5136 VERTICAL_SCROLL_BAR_TOP_BORDER + end,
5137 inside_width, inside_height - end);
5140 unblock_input ();
5143 #endif /* !USE_TOOLKIT_SCROLL_BARS */
5145 /* Destroy scroll bar BAR, and set its Emacs window's scroll bar to
5146 nil. */
5148 static void
5149 x_scroll_bar_remove (struct scroll_bar *bar)
5151 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
5152 block_input ();
5154 #ifdef USE_TOOLKIT_SCROLL_BARS
5155 #ifdef USE_GTK
5156 xg_remove_scroll_bar (f, bar->x_window);
5157 #else /* not USE_GTK */
5158 XtDestroyWidget (SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f), bar));
5159 #endif /* not USE_GTK */
5160 #else
5161 XDestroyWindow (FRAME_X_DISPLAY (f), bar->x_window);
5162 #endif
5164 /* Dissociate this scroll bar from its window. */
5165 wset_vertical_scroll_bar (XWINDOW (bar->window), Qnil);
5167 unblock_input ();
5171 /* Set the handle of the vertical scroll bar for WINDOW to indicate
5172 that we are displaying PORTION characters out of a total of WHOLE
5173 characters, starting at POSITION. If WINDOW has no scroll bar,
5174 create one. */
5176 static void
5177 XTset_vertical_scroll_bar (struct window *w, int portion, int whole, int position)
5179 struct frame *f = XFRAME (w->frame);
5180 Lisp_Object barobj;
5181 struct scroll_bar *bar;
5182 int top, height, left, width;
5183 int window_y, window_height;
5185 /* Get window dimensions. */
5186 window_box (w, ANY_AREA, 0, &window_y, 0, &window_height);
5187 top = window_y;
5188 height = window_height;
5190 /* Compute the left edge and the width of the scroll bar area. */
5191 left = WINDOW_SCROLL_BAR_AREA_X (w);
5192 width = WINDOW_SCROLL_BAR_AREA_WIDTH (w);
5194 /* Does the scroll bar exist yet? */
5195 if (NILP (w->vertical_scroll_bar))
5197 if (width > 0 && height > 0)
5199 block_input ();
5200 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5201 left, top, width, height);
5202 unblock_input ();
5205 bar = x_scroll_bar_create (w, top, left, width, max (height, 1));
5207 else
5209 /* It may just need to be moved and resized. */
5210 unsigned int mask = 0;
5212 bar = XSCROLL_BAR (w->vertical_scroll_bar);
5214 block_input ();
5216 if (left != bar->left)
5217 mask |= CWX;
5218 if (top != bar->top)
5219 mask |= CWY;
5220 if (width != bar->width)
5221 mask |= CWWidth;
5222 if (height != bar->height)
5223 mask |= CWHeight;
5225 #ifdef USE_TOOLKIT_SCROLL_BARS
5227 /* Move/size the scroll bar widget. */
5228 if (mask)
5230 /* Since toolkit scroll bars are smaller than the space reserved
5231 for them on the frame, we have to clear "under" them. */
5232 if (width > 0 && height > 0)
5233 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5234 left, top, width, height);
5235 #ifdef USE_GTK
5236 xg_update_scrollbar_pos (f, bar->x_window, top,
5237 left, width, max (height, 1));
5238 #else /* not USE_GTK */
5239 XtConfigureWidget (SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f), bar),
5240 left, top, width, max (height, 1), 0);
5241 #endif /* not USE_GTK */
5243 #else /* not USE_TOOLKIT_SCROLL_BARS */
5245 /* Move/size the scroll bar window. */
5246 if (mask)
5248 XWindowChanges wc;
5250 wc.x = left;
5251 wc.y = top;
5252 wc.width = width;
5253 wc.height = height;
5254 XConfigureWindow (FRAME_X_DISPLAY (f), bar->x_window,
5255 mask, &wc);
5258 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5260 /* Remember new settings. */
5261 bar->left = left;
5262 bar->top = top;
5263 bar->width = width;
5264 bar->height = height;
5266 unblock_input ();
5269 #ifdef USE_TOOLKIT_SCROLL_BARS
5270 x_set_toolkit_scroll_bar_thumb (bar, portion, position, whole);
5271 #else /* not USE_TOOLKIT_SCROLL_BARS */
5272 /* Set the scroll bar's current state, unless we're currently being
5273 dragged. */
5274 if (bar->dragging == -1)
5276 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, height);
5278 if (whole == 0)
5279 x_scroll_bar_set_handle (bar, 0, top_range, 0);
5280 else
5282 int start = ((double) position * top_range) / whole;
5283 int end = ((double) (position + portion) * top_range) / whole;
5284 x_scroll_bar_set_handle (bar, start, end, 0);
5287 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5289 XSETVECTOR (barobj, bar);
5290 wset_vertical_scroll_bar (w, barobj);
5294 /* The following three hooks are used when we're doing a thorough
5295 redisplay of the frame. We don't explicitly know which scroll bars
5296 are going to be deleted, because keeping track of when windows go
5297 away is a real pain - "Can you say set-window-configuration, boys
5298 and girls?" Instead, we just assert at the beginning of redisplay
5299 that *all* scroll bars are to be removed, and then save a scroll bar
5300 from the fiery pit when we actually redisplay its window. */
5302 /* Arrange for all scroll bars on FRAME to be removed at the next call
5303 to `*judge_scroll_bars_hook'. A scroll bar may be spared if
5304 `*redeem_scroll_bar_hook' is applied to its window before the judgment. */
5306 static void
5307 XTcondemn_scroll_bars (struct frame *frame)
5309 /* Transfer all the scroll bars to FRAME_CONDEMNED_SCROLL_BARS. */
5310 while (! NILP (FRAME_SCROLL_BARS (frame)))
5312 Lisp_Object bar;
5313 bar = FRAME_SCROLL_BARS (frame);
5314 fset_scroll_bars (frame, XSCROLL_BAR (bar)->next);
5315 XSCROLL_BAR (bar)->next = FRAME_CONDEMNED_SCROLL_BARS (frame);
5316 XSCROLL_BAR (bar)->prev = Qnil;
5317 if (! NILP (FRAME_CONDEMNED_SCROLL_BARS (frame)))
5318 XSCROLL_BAR (FRAME_CONDEMNED_SCROLL_BARS (frame))->prev = bar;
5319 fset_condemned_scroll_bars (frame, bar);
5324 /* Un-mark WINDOW's scroll bar for deletion in this judgment cycle.
5325 Note that WINDOW isn't necessarily condemned at all. */
5327 static void
5328 XTredeem_scroll_bar (struct window *window)
5330 struct scroll_bar *bar;
5331 struct frame *f;
5332 Lisp_Object barobj;
5334 /* We can't redeem this window's scroll bar if it doesn't have one. */
5335 if (NILP (window->vertical_scroll_bar))
5336 emacs_abort ();
5338 bar = XSCROLL_BAR (window->vertical_scroll_bar);
5340 /* Unlink it from the condemned list. */
5341 f = XFRAME (WINDOW_FRAME (window));
5342 if (NILP (bar->prev))
5344 /* If the prev pointer is nil, it must be the first in one of
5345 the lists. */
5346 if (EQ (FRAME_SCROLL_BARS (f), window->vertical_scroll_bar))
5347 /* It's not condemned. Everything's fine. */
5348 return;
5349 else if (EQ (FRAME_CONDEMNED_SCROLL_BARS (f),
5350 window->vertical_scroll_bar))
5351 fset_condemned_scroll_bars (f, bar->next);
5352 else
5353 /* If its prev pointer is nil, it must be at the front of
5354 one or the other! */
5355 emacs_abort ();
5357 else
5358 XSCROLL_BAR (bar->prev)->next = bar->next;
5360 if (! NILP (bar->next))
5361 XSCROLL_BAR (bar->next)->prev = bar->prev;
5363 bar->next = FRAME_SCROLL_BARS (f);
5364 bar->prev = Qnil;
5365 XSETVECTOR (barobj, bar);
5366 fset_scroll_bars (f, barobj);
5367 if (! NILP (bar->next))
5368 XSETVECTOR (XSCROLL_BAR (bar->next)->prev, bar);
5371 /* Remove all scroll bars on FRAME that haven't been saved since the
5372 last call to `*condemn_scroll_bars_hook'. */
5374 static void
5375 XTjudge_scroll_bars (struct frame *f)
5377 Lisp_Object bar, next;
5379 bar = FRAME_CONDEMNED_SCROLL_BARS (f);
5381 /* Clear out the condemned list now so we won't try to process any
5382 more events on the hapless scroll bars. */
5383 fset_condemned_scroll_bars (f, Qnil);
5385 for (; ! NILP (bar); bar = next)
5387 struct scroll_bar *b = XSCROLL_BAR (bar);
5389 x_scroll_bar_remove (b);
5391 next = b->next;
5392 b->next = b->prev = Qnil;
5395 /* Now there should be no references to the condemned scroll bars,
5396 and they should get garbage-collected. */
5400 #ifndef USE_TOOLKIT_SCROLL_BARS
5401 /* Handle an Expose or GraphicsExpose event on a scroll bar. This
5402 is a no-op when using toolkit scroll bars.
5404 This may be called from a signal handler, so we have to ignore GC
5405 mark bits. */
5407 static void
5408 x_scroll_bar_expose (struct scroll_bar *bar, const XEvent *event)
5410 Window w = bar->x_window;
5411 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
5412 GC gc = f->output_data.x->normal_gc;
5414 block_input ();
5416 x_scroll_bar_set_handle (bar, bar->start, bar->end, 1);
5418 /* Switch to scroll bar foreground color. */
5419 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
5420 XSetForeground (FRAME_X_DISPLAY (f), gc,
5421 f->output_data.x->scroll_bar_foreground_pixel);
5423 /* Draw a one-pixel border just inside the edges of the scroll bar. */
5424 XDrawRectangle (FRAME_X_DISPLAY (f), w, gc,
5425 /* x, y, width, height */
5426 0, 0, bar->width - 1, bar->height - 1);
5428 /* Restore the foreground color of the GC if we changed it above. */
5429 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
5430 XSetForeground (FRAME_X_DISPLAY (f), gc,
5431 FRAME_FOREGROUND_PIXEL (f));
5433 unblock_input ();
5436 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5438 /* Handle a mouse click on the scroll bar BAR. If *EMACS_EVENT's kind
5439 is set to something other than NO_EVENT, it is enqueued.
5441 This may be called from a signal handler, so we have to ignore GC
5442 mark bits. */
5445 static void
5446 x_scroll_bar_handle_click (struct scroll_bar *bar,
5447 const XEvent *event,
5448 struct input_event *emacs_event)
5450 if (! WINDOWP (bar->window))
5451 emacs_abort ();
5453 emacs_event->kind = SCROLL_BAR_CLICK_EVENT;
5454 emacs_event->code = event->xbutton.button - Button1;
5455 emacs_event->modifiers
5456 = (x_x_to_emacs_modifiers (FRAME_DISPLAY_INFO
5457 (XFRAME (WINDOW_FRAME (XWINDOW (bar->window)))),
5458 event->xbutton.state)
5459 | (event->type == ButtonRelease
5460 ? up_modifier
5461 : down_modifier));
5462 emacs_event->frame_or_window = bar->window;
5463 emacs_event->arg = Qnil;
5464 emacs_event->timestamp = event->xbutton.time;
5466 int top_range
5467 = VERTICAL_SCROLL_BAR_TOP_RANGE (f, bar->height);
5468 int y = event->xbutton.y - VERTICAL_SCROLL_BAR_TOP_BORDER;
5470 if (y < 0) y = 0;
5471 if (y > top_range) y = top_range;
5473 if (y < bar->start)
5474 emacs_event->part = scroll_bar_above_handle;
5475 else if (y < bar->end + VERTICAL_SCROLL_BAR_MIN_HANDLE)
5476 emacs_event->part = scroll_bar_handle;
5477 else
5478 emacs_event->part = scroll_bar_below_handle;
5480 #ifndef USE_TOOLKIT_SCROLL_BARS
5481 /* If the user has released the handle, set it to its final position. */
5482 if (event->type == ButtonRelease && bar->dragging != -1)
5484 int new_start = y - bar->dragging;
5485 int new_end = new_start + bar->end - bar->start;
5487 x_scroll_bar_set_handle (bar, new_start, new_end, 0);
5488 bar->dragging = -1;
5490 #endif
5492 XSETINT (emacs_event->x, y);
5493 XSETINT (emacs_event->y, top_range);
5497 #ifndef USE_TOOLKIT_SCROLL_BARS
5499 /* Handle some mouse motion while someone is dragging the scroll bar.
5501 This may be called from a signal handler, so we have to ignore GC
5502 mark bits. */
5504 static void
5505 x_scroll_bar_note_movement (struct scroll_bar *bar,
5506 const XMotionEvent *event)
5508 struct frame *f = XFRAME (XWINDOW (bar->window)->frame);
5509 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
5511 dpyinfo->last_mouse_movement_time = event->time;
5512 dpyinfo->last_mouse_scroll_bar = bar;
5513 f->mouse_moved = 1;
5515 /* If we're dragging the bar, display it. */
5516 if (bar->dragging != -1)
5518 /* Where should the handle be now? */
5519 int new_start = event->y - bar->dragging;
5521 if (new_start != bar->start)
5523 int new_end = new_start + bar->end - bar->start;
5525 x_scroll_bar_set_handle (bar, new_start, new_end, 0);
5530 #endif /* !USE_TOOLKIT_SCROLL_BARS */
5532 /* Return information to the user about the current position of the mouse
5533 on the scroll bar. */
5535 static void
5536 x_scroll_bar_report_motion (struct frame **fp, Lisp_Object *bar_window,
5537 enum scroll_bar_part *part, Lisp_Object *x,
5538 Lisp_Object *y, Time *timestamp)
5540 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (*fp);
5541 struct scroll_bar *bar = dpyinfo->last_mouse_scroll_bar;
5542 Window w = bar->x_window;
5543 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
5544 int win_x, win_y;
5545 Window dummy_window;
5546 int dummy_coord;
5547 unsigned int dummy_mask;
5549 block_input ();
5551 /* Get the mouse's position relative to the scroll bar window, and
5552 report that. */
5553 if (XQueryPointer (FRAME_X_DISPLAY (f), w,
5555 /* Root, child, root x and root y. */
5556 &dummy_window, &dummy_window,
5557 &dummy_coord, &dummy_coord,
5559 /* Position relative to scroll bar. */
5560 &win_x, &win_y,
5562 /* Mouse buttons and modifier keys. */
5563 &dummy_mask))
5565 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, bar->height);
5567 win_y -= VERTICAL_SCROLL_BAR_TOP_BORDER;
5569 if (bar->dragging != -1)
5570 win_y -= bar->dragging;
5572 if (win_y < 0)
5573 win_y = 0;
5574 if (win_y > top_range)
5575 win_y = top_range;
5577 *fp = f;
5578 *bar_window = bar->window;
5580 if (bar->dragging != -1)
5581 *part = scroll_bar_handle;
5582 else if (win_y < bar->start)
5583 *part = scroll_bar_above_handle;
5584 else if (win_y < bar->end + VERTICAL_SCROLL_BAR_MIN_HANDLE)
5585 *part = scroll_bar_handle;
5586 else
5587 *part = scroll_bar_below_handle;
5589 XSETINT (*x, win_y);
5590 XSETINT (*y, top_range);
5592 f->mouse_moved = 0;
5593 dpyinfo->last_mouse_scroll_bar = NULL;
5594 *timestamp = dpyinfo->last_mouse_movement_time;
5597 unblock_input ();
5601 /* The screen has been cleared so we may have changed foreground or
5602 background colors, and the scroll bars may need to be redrawn.
5603 Clear out the scroll bars, and ask for expose events, so we can
5604 redraw them. */
5606 static void
5607 x_scroll_bar_clear (struct frame *f)
5609 #ifndef USE_TOOLKIT_SCROLL_BARS
5610 Lisp_Object bar;
5612 /* We can have scroll bars even if this is 0,
5613 if we just turned off scroll bar mode.
5614 But in that case we should not clear them. */
5615 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
5616 for (bar = FRAME_SCROLL_BARS (f); VECTORP (bar);
5617 bar = XSCROLL_BAR (bar)->next)
5618 XClearArea (FRAME_X_DISPLAY (f),
5619 XSCROLL_BAR (bar)->x_window,
5620 0, 0, 0, 0, True);
5621 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5624 #ifdef ENABLE_CHECKING
5626 /* Record the last 100 characters stored
5627 to help debug the loss-of-chars-during-GC problem. */
5629 static int temp_index;
5630 static short temp_buffer[100];
5632 #define STORE_KEYSYM_FOR_DEBUG(keysym) \
5633 if (temp_index == sizeof temp_buffer / sizeof (short)) \
5634 temp_index = 0; \
5635 temp_buffer[temp_index++] = (keysym)
5637 #else /* not ENABLE_CHECKING */
5639 #define STORE_KEYSYM_FOR_DEBUG(keysym) ((void)0)
5641 #endif /* ENABLE_CHECKING */
5643 /* Set this to nonzero to fake an "X I/O error"
5644 on a particular display. */
5646 static struct x_display_info *XTread_socket_fake_io_error;
5648 /* When we find no input here, we occasionally do a no-op command
5649 to verify that the X server is still running and we can still talk with it.
5650 We try all the open displays, one by one.
5651 This variable is used for cycling thru the displays. */
5653 static struct x_display_info *next_noop_dpyinfo;
5655 enum
5657 X_EVENT_NORMAL,
5658 X_EVENT_GOTO_OUT,
5659 X_EVENT_DROP
5662 /* Filter events for the current X input method.
5663 DPYINFO is the display this event is for.
5664 EVENT is the X event to filter.
5666 Returns non-zero if the event was filtered, caller shall not process
5667 this event further.
5668 Returns zero if event is wasn't filtered. */
5670 #ifdef HAVE_X_I18N
5671 static int
5672 x_filter_event (struct x_display_info *dpyinfo, XEvent *event)
5674 /* XFilterEvent returns non-zero if the input method has
5675 consumed the event. We pass the frame's X window to
5676 XFilterEvent because that's the one for which the IC
5677 was created. */
5679 struct frame *f1 = x_any_window_to_frame (dpyinfo,
5680 event->xclient.window);
5682 return XFilterEvent (event, f1 ? FRAME_X_WINDOW (f1) : None);
5684 #endif
5686 #ifdef USE_GTK
5687 static int current_count;
5688 static int current_finish;
5689 static struct input_event *current_hold_quit;
5691 /* This is the filter function invoked by the GTK event loop.
5692 It is invoked before the XEvent is translated to a GdkEvent,
5693 so we have a chance to act on the event before GTK. */
5694 static GdkFilterReturn
5695 event_handler_gdk (GdkXEvent *gxev, GdkEvent *ev, gpointer data)
5697 XEvent *xev = (XEvent *) gxev;
5699 block_input ();
5700 if (current_count >= 0)
5702 struct x_display_info *dpyinfo;
5704 dpyinfo = x_display_info_for_display (xev->xany.display);
5706 #ifdef HAVE_X_I18N
5707 /* Filter events for the current X input method.
5708 GTK calls XFilterEvent but not for key press and release,
5709 so we do it here. */
5710 if ((xev->type == KeyPress || xev->type == KeyRelease)
5711 && dpyinfo
5712 && x_filter_event (dpyinfo, xev))
5714 unblock_input ();
5715 return GDK_FILTER_REMOVE;
5717 #endif
5719 if (! dpyinfo)
5720 current_finish = X_EVENT_NORMAL;
5721 else
5722 current_count
5723 += handle_one_xevent (dpyinfo, xev, &current_finish,
5724 current_hold_quit);
5726 else
5727 current_finish = x_dispatch_event (xev, xev->xany.display);
5729 unblock_input ();
5731 if (current_finish == X_EVENT_GOTO_OUT || current_finish == X_EVENT_DROP)
5732 return GDK_FILTER_REMOVE;
5734 return GDK_FILTER_CONTINUE;
5736 #endif /* USE_GTK */
5739 static void xembed_send_message (struct frame *f, Time,
5740 enum xembed_message,
5741 long detail, long data1, long data2);
5743 /* Handles the XEvent EVENT on display DPYINFO.
5745 *FINISH is X_EVENT_GOTO_OUT if caller should stop reading events.
5746 *FINISH is zero if caller should continue reading events.
5747 *FINISH is X_EVENT_DROP if event should not be passed to the toolkit.
5748 *EVENT is unchanged unless we're processing KeyPress event.
5750 We return the number of characters stored into the buffer. */
5752 static int
5753 handle_one_xevent (struct x_display_info *dpyinfo,
5754 const XEvent *event,
5755 int *finish, struct input_event *hold_quit)
5757 union {
5758 struct input_event ie;
5759 struct selection_input_event sie;
5760 } inev;
5761 int count = 0;
5762 int do_help = 0;
5763 ptrdiff_t nbytes = 0;
5764 struct frame *any, *f = NULL;
5765 struct coding_system coding;
5766 Mouse_HLInfo *hlinfo = &dpyinfo->mouse_highlight;
5767 /* This holds the state XLookupString needs to implement dead keys
5768 and other tricks known as "compose processing". _X Window System_
5769 says that a portable program can't use this, but Stephen Gildea assures
5770 me that letting the compiler initialize it to zeros will work okay. */
5771 static XComposeStatus compose_status;
5773 USE_SAFE_ALLOCA;
5775 *finish = X_EVENT_NORMAL;
5777 EVENT_INIT (inev.ie);
5778 inev.ie.kind = NO_EVENT;
5779 inev.ie.arg = Qnil;
5781 any = x_any_window_to_frame (dpyinfo, event->xany.window);
5783 if (any && any->wait_event_type == event->type)
5784 any->wait_event_type = 0; /* Indicates we got it. */
5786 switch (event->type)
5788 case ClientMessage:
5790 if (event->xclient.message_type == dpyinfo->Xatom_wm_protocols
5791 && event->xclient.format == 32)
5793 if (event->xclient.data.l[0] == dpyinfo->Xatom_wm_take_focus)
5795 /* Use the value returned by x_any_window_to_frame
5796 because this could be the shell widget window
5797 if the frame has no title bar. */
5798 f = any;
5799 #ifdef HAVE_X_I18N
5800 /* Not quite sure this is needed -pd */
5801 if (f && FRAME_XIC (f))
5802 XSetICFocus (FRAME_XIC (f));
5803 #endif
5804 #if 0 /* Emacs sets WM hints whose `input' field is `true'. This
5805 instructs the WM to set the input focus automatically for
5806 Emacs with a call to XSetInputFocus. Setting WM_TAKE_FOCUS
5807 tells the WM to send us a ClientMessage WM_TAKE_FOCUS after
5808 it has set the focus. So, XSetInputFocus below is not
5809 needed.
5811 The call to XSetInputFocus below has also caused trouble. In
5812 cases where the XSetInputFocus done by the WM and the one
5813 below are temporally close (on a fast machine), the call
5814 below can generate additional FocusIn events which confuse
5815 Emacs. */
5817 /* Since we set WM_TAKE_FOCUS, we must call
5818 XSetInputFocus explicitly. But not if f is null,
5819 since that might be an event for a deleted frame. */
5820 if (f)
5822 Display *d = event->xclient.display;
5823 /* Catch and ignore errors, in case window has been
5824 iconified by a window manager such as GWM. */
5825 x_catch_errors (d);
5826 XSetInputFocus (d, event->xclient.window,
5827 /* The ICCCM says this is
5828 the only valid choice. */
5829 RevertToParent,
5830 event->xclient.data.l[1]);
5831 /* This is needed to detect the error
5832 if there is an error. */
5833 XSync (d, False);
5834 x_uncatch_errors ();
5836 /* Not certain about handling scroll bars here */
5837 #endif /* 0 */
5838 goto done;
5841 if (event->xclient.data.l[0] == dpyinfo->Xatom_wm_save_yourself)
5843 /* Save state modify the WM_COMMAND property to
5844 something which can reinstate us. This notifies
5845 the session manager, who's looking for such a
5846 PropertyNotify. Can restart processing when
5847 a keyboard or mouse event arrives. */
5848 /* If we have a session manager, don't set this.
5849 KDE will then start two Emacsen, one for the
5850 session manager and one for this. */
5851 #ifdef HAVE_X_SM
5852 if (! x_session_have_connection ())
5853 #endif
5855 f = x_top_window_to_frame (dpyinfo,
5856 event->xclient.window);
5857 /* This is just so we only give real data once
5858 for a single Emacs process. */
5859 if (f == SELECTED_FRAME ())
5860 XSetCommand (FRAME_X_DISPLAY (f),
5861 event->xclient.window,
5862 initial_argv, initial_argc);
5863 else if (f)
5864 XSetCommand (FRAME_X_DISPLAY (f),
5865 event->xclient.window,
5866 0, 0);
5868 goto done;
5871 if (event->xclient.data.l[0] == dpyinfo->Xatom_wm_delete_window)
5873 f = any;
5874 if (!f)
5875 goto OTHER; /* May be a dialog that is to be removed */
5877 inev.ie.kind = DELETE_WINDOW_EVENT;
5878 XSETFRAME (inev.ie.frame_or_window, f);
5879 goto done;
5882 goto done;
5885 if (event->xclient.message_type == dpyinfo->Xatom_wm_configure_denied)
5886 goto done;
5888 if (event->xclient.message_type == dpyinfo->Xatom_wm_window_moved)
5890 int new_x, new_y;
5891 f = x_window_to_frame (dpyinfo, event->xclient.window);
5893 new_x = event->xclient.data.s[0];
5894 new_y = event->xclient.data.s[1];
5896 if (f)
5898 f->left_pos = new_x;
5899 f->top_pos = new_y;
5901 goto done;
5904 #ifdef HACK_EDITRES
5905 if (event->xclient.message_type == dpyinfo->Xatom_editres)
5907 f = any;
5908 if (f)
5909 _XEditResCheckMessages (f->output_data.x->widget,
5910 NULL, (XEvent *) event, NULL);
5911 goto done;
5913 #endif /* HACK_EDITRES */
5915 if (event->xclient.message_type == dpyinfo->Xatom_DONE
5916 || event->xclient.message_type == dpyinfo->Xatom_PAGE)
5918 /* Ghostview job completed. Kill it. We could
5919 reply with "Next" if we received "Page", but we
5920 currently never do because we are interested in
5921 images, only, which should have 1 page. */
5922 Pixmap pixmap = (Pixmap) event->xclient.data.l[1];
5923 f = x_window_to_frame (dpyinfo, event->xclient.window);
5924 if (!f)
5925 goto OTHER;
5926 x_kill_gs_process (pixmap, f);
5927 expose_frame (f, 0, 0, 0, 0);
5928 goto done;
5931 #ifdef USE_TOOLKIT_SCROLL_BARS
5932 /* Scroll bar callbacks send a ClientMessage from which
5933 we construct an input_event. */
5934 if (event->xclient.message_type == dpyinfo->Xatom_Scrollbar)
5936 x_scroll_bar_to_input_event (event, &inev.ie);
5937 *finish = X_EVENT_GOTO_OUT;
5938 goto done;
5940 #endif /* USE_TOOLKIT_SCROLL_BARS */
5942 /* XEmbed messages from the embedder (if any). */
5943 if (event->xclient.message_type == dpyinfo->Xatom_XEMBED)
5945 enum xembed_message msg = event->xclient.data.l[1];
5946 if (msg == XEMBED_FOCUS_IN || msg == XEMBED_FOCUS_OUT)
5947 x_detect_focus_change (dpyinfo, any, event, &inev.ie);
5949 *finish = X_EVENT_GOTO_OUT;
5950 goto done;
5953 xft_settings_event (dpyinfo, event);
5955 f = any;
5956 if (!f)
5957 goto OTHER;
5958 if (x_handle_dnd_message (f, &event->xclient, dpyinfo, &inev.ie))
5959 *finish = X_EVENT_DROP;
5961 break;
5963 case SelectionNotify:
5964 dpyinfo->last_user_time = event->xselection.time;
5965 #ifdef USE_X_TOOLKIT
5966 if (! x_window_to_frame (dpyinfo, event->xselection.requestor))
5967 goto OTHER;
5968 #endif /* not USE_X_TOOLKIT */
5969 x_handle_selection_notify (&event->xselection);
5970 break;
5972 case SelectionClear: /* Someone has grabbed ownership. */
5973 dpyinfo->last_user_time = event->xselectionclear.time;
5974 #ifdef USE_X_TOOLKIT
5975 if (! x_window_to_frame (dpyinfo, event->xselectionclear.window))
5976 goto OTHER;
5977 #endif /* USE_X_TOOLKIT */
5979 const XSelectionClearEvent *eventp = &event->xselectionclear;
5981 inev.ie.kind = SELECTION_CLEAR_EVENT;
5982 SELECTION_EVENT_DISPLAY (&inev.sie) = eventp->display;
5983 SELECTION_EVENT_SELECTION (&inev.sie) = eventp->selection;
5984 SELECTION_EVENT_TIME (&inev.sie) = eventp->time;
5986 break;
5988 case SelectionRequest: /* Someone wants our selection. */
5989 dpyinfo->last_user_time = event->xselectionrequest.time;
5990 #ifdef USE_X_TOOLKIT
5991 if (!x_window_to_frame (dpyinfo, event->xselectionrequest.owner))
5992 goto OTHER;
5993 #endif /* USE_X_TOOLKIT */
5995 const XSelectionRequestEvent *eventp = &event->xselectionrequest;
5997 inev.ie.kind = SELECTION_REQUEST_EVENT;
5998 SELECTION_EVENT_DISPLAY (&inev.sie) = eventp->display;
5999 SELECTION_EVENT_REQUESTOR (&inev.sie) = eventp->requestor;
6000 SELECTION_EVENT_SELECTION (&inev.sie) = eventp->selection;
6001 SELECTION_EVENT_TARGET (&inev.sie) = eventp->target;
6002 SELECTION_EVENT_PROPERTY (&inev.sie) = eventp->property;
6003 SELECTION_EVENT_TIME (&inev.sie) = eventp->time;
6005 break;
6007 case PropertyNotify:
6008 dpyinfo->last_user_time = event->xproperty.time;
6009 f = x_top_window_to_frame (dpyinfo, event->xproperty.window);
6010 if (f && event->xproperty.atom == dpyinfo->Xatom_net_wm_state)
6011 if (x_handle_net_wm_state (f, &event->xproperty)
6012 && FRAME_ICONIFIED_P (f)
6013 && f->output_data.x->net_wm_state_hidden_seen)
6015 /* Gnome shell does not iconify us when C-z is pressed.
6016 It hides the frame. So if our state says we aren't
6017 hidden anymore, treat it as deiconified. */
6018 SET_FRAME_VISIBLE (f, 1);
6019 SET_FRAME_ICONIFIED (f, 0);
6020 f->output_data.x->has_been_visible = 1;
6021 f->output_data.x->net_wm_state_hidden_seen = 0;
6022 inev.ie.kind = DEICONIFY_EVENT;
6023 XSETFRAME (inev.ie.frame_or_window, f);
6026 x_handle_property_notify (&event->xproperty);
6027 xft_settings_event (dpyinfo, event);
6028 goto OTHER;
6030 case ReparentNotify:
6031 f = x_top_window_to_frame (dpyinfo, event->xreparent.window);
6032 if (f)
6034 f->output_data.x->parent_desc = event->xreparent.parent;
6035 x_real_positions (f, &f->left_pos, &f->top_pos);
6037 /* Perhaps reparented due to a WM restart. Reset this. */
6038 FRAME_DISPLAY_INFO (f)->wm_type = X_WMTYPE_UNKNOWN;
6039 FRAME_DISPLAY_INFO (f)->net_supported_window = 0;
6041 x_set_frame_alpha (f);
6043 goto OTHER;
6045 case Expose:
6046 f = x_window_to_frame (dpyinfo, event->xexpose.window);
6047 if (f)
6049 if (!FRAME_VISIBLE_P (f))
6051 SET_FRAME_VISIBLE (f, 1);
6052 SET_FRAME_ICONIFIED (f, 0);
6053 f->output_data.x->has_been_visible = 1;
6054 SET_FRAME_GARBAGED (f);
6056 else
6058 #ifdef USE_GTK
6059 /* This seems to be needed for GTK 2.6 and later, see
6060 http://debbugs.gnu.org/cgi/bugreport.cgi?bug=15398. */
6061 x_clear_area (event->xexpose.display,
6062 event->xexpose.window,
6063 event->xexpose.x, event->xexpose.y,
6064 event->xexpose.width, event->xexpose.height);
6065 #endif
6066 expose_frame (f, event->xexpose.x, event->xexpose.y,
6067 event->xexpose.width, event->xexpose.height);
6070 else
6072 #ifndef USE_TOOLKIT_SCROLL_BARS
6073 struct scroll_bar *bar;
6074 #endif
6075 #if defined USE_LUCID
6076 /* Submenus of the Lucid menu bar aren't widgets
6077 themselves, so there's no way to dispatch events
6078 to them. Recognize this case separately. */
6080 Widget widget = x_window_to_menu_bar (event->xexpose.window);
6081 if (widget)
6082 xlwmenu_redisplay (widget);
6084 #endif /* USE_LUCID */
6086 #ifdef USE_TOOLKIT_SCROLL_BARS
6087 /* Dispatch event to the widget. */
6088 goto OTHER;
6089 #else /* not USE_TOOLKIT_SCROLL_BARS */
6090 bar = x_window_to_scroll_bar (event->xexpose.display,
6091 event->xexpose.window);
6093 if (bar)
6094 x_scroll_bar_expose (bar, event);
6095 #ifdef USE_X_TOOLKIT
6096 else
6097 goto OTHER;
6098 #endif /* USE_X_TOOLKIT */
6099 #endif /* not USE_TOOLKIT_SCROLL_BARS */
6101 break;
6103 case GraphicsExpose: /* This occurs when an XCopyArea's
6104 source area was obscured or not
6105 available. */
6106 f = x_window_to_frame (dpyinfo, event->xgraphicsexpose.drawable);
6107 if (f)
6108 expose_frame (f, event->xgraphicsexpose.x,
6109 event->xgraphicsexpose.y,
6110 event->xgraphicsexpose.width,
6111 event->xgraphicsexpose.height);
6112 #ifdef USE_X_TOOLKIT
6113 else
6114 goto OTHER;
6115 #endif /* USE_X_TOOLKIT */
6116 break;
6118 case NoExpose: /* This occurs when an XCopyArea's
6119 source area was completely
6120 available. */
6121 break;
6123 case UnmapNotify:
6124 /* Redo the mouse-highlight after the tooltip has gone. */
6125 if (event->xunmap.window == tip_window)
6127 tip_window = 0;
6128 x_redo_mouse_highlight (dpyinfo);
6131 f = x_top_window_to_frame (dpyinfo, event->xunmap.window);
6132 if (f) /* F may no longer exist if
6133 the frame was deleted. */
6135 bool visible = FRAME_VISIBLE_P (f);
6136 /* While a frame is unmapped, display generation is
6137 disabled; you don't want to spend time updating a
6138 display that won't ever be seen. */
6139 SET_FRAME_VISIBLE (f, 0);
6140 /* We can't distinguish, from the event, whether the window
6141 has become iconified or invisible. So assume, if it
6142 was previously visible, than now it is iconified.
6143 But x_make_frame_invisible clears both
6144 the visible flag and the iconified flag;
6145 and that way, we know the window is not iconified now. */
6146 if (visible || FRAME_ICONIFIED_P (f))
6148 SET_FRAME_ICONIFIED (f, 1);
6149 inev.ie.kind = ICONIFY_EVENT;
6150 XSETFRAME (inev.ie.frame_or_window, f);
6153 goto OTHER;
6155 case MapNotify:
6156 if (event->xmap.window == tip_window)
6157 /* The tooltip has been drawn already. Avoid
6158 the SET_FRAME_GARBAGED below. */
6159 goto OTHER;
6161 /* We use x_top_window_to_frame because map events can
6162 come for sub-windows and they don't mean that the
6163 frame is visible. */
6164 f = x_top_window_to_frame (dpyinfo, event->xmap.window);
6165 if (f)
6167 bool iconified = FRAME_ICONIFIED_P (f);
6169 /* Check if fullscreen was specified before we where mapped the
6170 first time, i.e. from the command line. */
6171 if (!f->output_data.x->has_been_visible)
6172 x_check_fullscreen (f);
6174 SET_FRAME_VISIBLE (f, 1);
6175 SET_FRAME_ICONIFIED (f, 0);
6176 f->output_data.x->has_been_visible = 1;
6178 if (iconified)
6180 inev.ie.kind = DEICONIFY_EVENT;
6181 XSETFRAME (inev.ie.frame_or_window, f);
6183 else if (! NILP (Vframe_list) && ! NILP (XCDR (Vframe_list)))
6184 /* Force a redisplay sooner or later to update the
6185 frame titles in case this is the second frame. */
6186 record_asynch_buffer_change ();
6188 #ifdef USE_GTK
6189 xg_frame_resized (f, -1, -1);
6190 #endif
6192 goto OTHER;
6194 case KeyPress:
6196 dpyinfo->last_user_time = event->xkey.time;
6197 ignore_next_mouse_click_timeout = 0;
6199 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
6200 /* Dispatch KeyPress events when in menu. */
6201 if (popup_activated ())
6202 goto OTHER;
6203 #endif
6205 f = any;
6207 #if ! defined (USE_GTK)
6208 /* If mouse-highlight is an integer, input clears out
6209 mouse highlighting. */
6210 if (!hlinfo->mouse_face_hidden && INTEGERP (Vmouse_highlight)
6211 && (f == 0
6212 || !EQ (f->tool_bar_window, hlinfo->mouse_face_window)))
6214 clear_mouse_face (hlinfo);
6215 hlinfo->mouse_face_hidden = 1;
6217 #endif
6219 #if defined USE_MOTIF && defined USE_TOOLKIT_SCROLL_BARS
6220 if (f == 0)
6222 /* Scroll bars consume key events, but we want
6223 the keys to go to the scroll bar's frame. */
6224 Widget widget = XtWindowToWidget (dpyinfo->display,
6225 event->xkey.window);
6226 if (widget && XmIsScrollBar (widget))
6228 widget = XtParent (widget);
6229 f = x_any_window_to_frame (dpyinfo, XtWindow (widget));
6232 #endif /* USE_MOTIF and USE_TOOLKIT_SCROLL_BARS */
6234 if (f != 0)
6236 KeySym keysym, orig_keysym;
6237 /* al%imercury@uunet.uu.net says that making this 81
6238 instead of 80 fixed a bug whereby meta chars made
6239 his Emacs hang.
6241 It seems that some version of XmbLookupString has
6242 a bug of not returning XBufferOverflow in
6243 status_return even if the input is too long to
6244 fit in 81 bytes. So, we must prepare sufficient
6245 bytes for copy_buffer. 513 bytes (256 chars for
6246 two-byte character set) seems to be a fairly good
6247 approximation. -- 2000.8.10 handa@etl.go.jp */
6248 unsigned char copy_buffer[513];
6249 unsigned char *copy_bufptr = copy_buffer;
6250 int copy_bufsiz = sizeof (copy_buffer);
6251 int modifiers;
6252 Lisp_Object coding_system = Qlatin_1;
6253 Lisp_Object c;
6254 /* Event will be modified. */
6255 XKeyEvent xkey = event->xkey;
6257 #ifdef USE_GTK
6258 /* Don't pass keys to GTK. A Tab will shift focus to the
6259 tool bar in GTK 2.4. Keys will still go to menus and
6260 dialogs because in that case popup_activated is nonzero
6261 (see above). */
6262 *finish = X_EVENT_DROP;
6263 #endif
6265 xkey.state |= x_emacs_to_x_modifiers (FRAME_DISPLAY_INFO (f),
6266 extra_keyboard_modifiers);
6267 modifiers = xkey.state;
6269 /* This will have to go some day... */
6271 /* make_lispy_event turns chars into control chars.
6272 Don't do it here because XLookupString is too eager. */
6273 xkey.state &= ~ControlMask;
6274 xkey.state &= ~(dpyinfo->meta_mod_mask
6275 | dpyinfo->super_mod_mask
6276 | dpyinfo->hyper_mod_mask
6277 | dpyinfo->alt_mod_mask);
6279 /* In case Meta is ComposeCharacter,
6280 clear its status. According to Markus Ehrnsperger
6281 Markus.Ehrnsperger@lehrstuhl-bross.physik.uni-muenchen.de
6282 this enables ComposeCharacter to work whether or
6283 not it is combined with Meta. */
6284 if (modifiers & dpyinfo->meta_mod_mask)
6285 memset (&compose_status, 0, sizeof (compose_status));
6287 #ifdef HAVE_X_I18N
6288 if (FRAME_XIC (f))
6290 Status status_return;
6292 coding_system = Vlocale_coding_system;
6293 nbytes = XmbLookupString (FRAME_XIC (f),
6294 &xkey, (char *) copy_bufptr,
6295 copy_bufsiz, &keysym,
6296 &status_return);
6297 if (status_return == XBufferOverflow)
6299 copy_bufsiz = nbytes + 1;
6300 copy_bufptr = alloca (copy_bufsiz);
6301 nbytes = XmbLookupString (FRAME_XIC (f),
6302 &xkey, (char *) copy_bufptr,
6303 copy_bufsiz, &keysym,
6304 &status_return);
6306 /* Xutf8LookupString is a new but already deprecated interface. -stef */
6307 if (status_return == XLookupNone)
6308 break;
6309 else if (status_return == XLookupChars)
6311 keysym = NoSymbol;
6312 modifiers = 0;
6314 else if (status_return != XLookupKeySym
6315 && status_return != XLookupBoth)
6316 emacs_abort ();
6318 else
6319 nbytes = XLookupString (&xkey, (char *) copy_bufptr,
6320 copy_bufsiz, &keysym,
6321 &compose_status);
6322 #else
6323 nbytes = XLookupString (&xkey, (char *) copy_bufptr,
6324 copy_bufsiz, &keysym,
6325 &compose_status);
6326 #endif
6328 /* If not using XIM/XIC, and a compose sequence is in progress,
6329 we break here. Otherwise, chars_matched is always 0. */
6330 if (compose_status.chars_matched > 0 && nbytes == 0)
6331 break;
6333 memset (&compose_status, 0, sizeof (compose_status));
6334 orig_keysym = keysym;
6336 /* Common for all keysym input events. */
6337 XSETFRAME (inev.ie.frame_or_window, f);
6338 inev.ie.modifiers
6339 = x_x_to_emacs_modifiers (FRAME_DISPLAY_INFO (f), modifiers);
6340 inev.ie.timestamp = xkey.time;
6342 /* First deal with keysyms which have defined
6343 translations to characters. */
6344 if (keysym >= 32 && keysym < 128)
6345 /* Avoid explicitly decoding each ASCII character. */
6347 inev.ie.kind = ASCII_KEYSTROKE_EVENT;
6348 inev.ie.code = keysym;
6349 goto done_keysym;
6352 /* Keysyms directly mapped to Unicode characters. */
6353 if (keysym >= 0x01000000 && keysym <= 0x0110FFFF)
6355 if (keysym < 0x01000080)
6356 inev.ie.kind = ASCII_KEYSTROKE_EVENT;
6357 else
6358 inev.ie.kind = MULTIBYTE_CHAR_KEYSTROKE_EVENT;
6359 inev.ie.code = keysym & 0xFFFFFF;
6360 goto done_keysym;
6363 /* Now non-ASCII. */
6364 if (HASH_TABLE_P (Vx_keysym_table)
6365 && (c = Fgethash (make_number (keysym),
6366 Vx_keysym_table,
6367 Qnil),
6368 NATNUMP (c)))
6370 inev.ie.kind = (SINGLE_BYTE_CHAR_P (XFASTINT (c))
6371 ? ASCII_KEYSTROKE_EVENT
6372 : MULTIBYTE_CHAR_KEYSTROKE_EVENT);
6373 inev.ie.code = XFASTINT (c);
6374 goto done_keysym;
6377 /* Random non-modifier sorts of keysyms. */
6378 if (((keysym >= XK_BackSpace && keysym <= XK_Escape)
6379 || keysym == XK_Delete
6380 #ifdef XK_ISO_Left_Tab
6381 || (keysym >= XK_ISO_Left_Tab
6382 && keysym <= XK_ISO_Enter)
6383 #endif
6384 || IsCursorKey (keysym) /* 0xff50 <= x < 0xff60 */
6385 || IsMiscFunctionKey (keysym) /* 0xff60 <= x < VARIES */
6386 #ifdef HPUX
6387 /* This recognizes the "extended function
6388 keys". It seems there's no cleaner way.
6389 Test IsModifierKey to avoid handling
6390 mode_switch incorrectly. */
6391 || (XK_Select <= keysym && keysym < XK_KP_Space)
6392 #endif
6393 #ifdef XK_dead_circumflex
6394 || orig_keysym == XK_dead_circumflex
6395 #endif
6396 #ifdef XK_dead_grave
6397 || orig_keysym == XK_dead_grave
6398 #endif
6399 #ifdef XK_dead_tilde
6400 || orig_keysym == XK_dead_tilde
6401 #endif
6402 #ifdef XK_dead_diaeresis
6403 || orig_keysym == XK_dead_diaeresis
6404 #endif
6405 #ifdef XK_dead_macron
6406 || orig_keysym == XK_dead_macron
6407 #endif
6408 #ifdef XK_dead_degree
6409 || orig_keysym == XK_dead_degree
6410 #endif
6411 #ifdef XK_dead_acute
6412 || orig_keysym == XK_dead_acute
6413 #endif
6414 #ifdef XK_dead_cedilla
6415 || orig_keysym == XK_dead_cedilla
6416 #endif
6417 #ifdef XK_dead_breve
6418 || orig_keysym == XK_dead_breve
6419 #endif
6420 #ifdef XK_dead_ogonek
6421 || orig_keysym == XK_dead_ogonek
6422 #endif
6423 #ifdef XK_dead_caron
6424 || orig_keysym == XK_dead_caron
6425 #endif
6426 #ifdef XK_dead_doubleacute
6427 || orig_keysym == XK_dead_doubleacute
6428 #endif
6429 #ifdef XK_dead_abovedot
6430 || orig_keysym == XK_dead_abovedot
6431 #endif
6432 || IsKeypadKey (keysym) /* 0xff80 <= x < 0xffbe */
6433 || IsFunctionKey (keysym) /* 0xffbe <= x < 0xffe1 */
6434 /* Any "vendor-specific" key is ok. */
6435 || (orig_keysym & (1 << 28))
6436 || (keysym != NoSymbol && nbytes == 0))
6437 && ! (IsModifierKey (orig_keysym)
6438 /* The symbols from XK_ISO_Lock
6439 to XK_ISO_Last_Group_Lock
6440 don't have real modifiers but
6441 should be treated similarly to
6442 Mode_switch by Emacs. */
6443 #if defined XK_ISO_Lock && defined XK_ISO_Last_Group_Lock
6444 || (XK_ISO_Lock <= orig_keysym
6445 && orig_keysym <= XK_ISO_Last_Group_Lock)
6446 #endif
6449 STORE_KEYSYM_FOR_DEBUG (keysym);
6450 /* make_lispy_event will convert this to a symbolic
6451 key. */
6452 inev.ie.kind = NON_ASCII_KEYSTROKE_EVENT;
6453 inev.ie.code = keysym;
6454 goto done_keysym;
6457 { /* Raw bytes, not keysym. */
6458 ptrdiff_t i;
6459 int nchars, len;
6461 for (i = 0, nchars = 0; i < nbytes; i++)
6463 if (ASCII_BYTE_P (copy_bufptr[i]))
6464 nchars++;
6465 STORE_KEYSYM_FOR_DEBUG (copy_bufptr[i]);
6468 if (nchars < nbytes)
6470 /* Decode the input data. */
6472 /* The input should be decoded with `coding_system'
6473 which depends on which X*LookupString function
6474 we used just above and the locale. */
6475 setup_coding_system (coding_system, &coding);
6476 coding.src_multibyte = 0;
6477 coding.dst_multibyte = 1;
6478 /* The input is converted to events, thus we can't
6479 handle composition. Anyway, there's no XIM that
6480 gives us composition information. */
6481 coding.common_flags &= ~CODING_ANNOTATION_MASK;
6483 SAFE_NALLOCA (coding.destination, MAX_MULTIBYTE_LENGTH,
6484 nbytes);
6485 coding.dst_bytes = MAX_MULTIBYTE_LENGTH * nbytes;
6486 coding.mode |= CODING_MODE_LAST_BLOCK;
6487 decode_coding_c_string (&coding, copy_bufptr, nbytes, Qnil);
6488 nbytes = coding.produced;
6489 nchars = coding.produced_char;
6490 copy_bufptr = coding.destination;
6493 /* Convert the input data to a sequence of
6494 character events. */
6495 for (i = 0; i < nbytes; i += len)
6497 int ch;
6498 if (nchars == nbytes)
6499 ch = copy_bufptr[i], len = 1;
6500 else
6501 ch = STRING_CHAR_AND_LENGTH (copy_bufptr + i, len);
6502 inev.ie.kind = (SINGLE_BYTE_CHAR_P (ch)
6503 ? ASCII_KEYSTROKE_EVENT
6504 : MULTIBYTE_CHAR_KEYSTROKE_EVENT);
6505 inev.ie.code = ch;
6506 kbd_buffer_store_event_hold (&inev.ie, hold_quit);
6509 count += nchars;
6511 inev.ie.kind = NO_EVENT; /* Already stored above. */
6513 if (keysym == NoSymbol)
6514 break;
6516 /* FIXME: check side effects and remove this. */
6517 ((XEvent *) event)->xkey = xkey;
6519 done_keysym:
6520 #ifdef HAVE_X_I18N
6521 /* Don't dispatch this event since XtDispatchEvent calls
6522 XFilterEvent, and two calls in a row may freeze the
6523 client. */
6524 break;
6525 #else
6526 goto OTHER;
6527 #endif
6529 case KeyRelease:
6530 dpyinfo->last_user_time = event->xkey.time;
6531 #ifdef HAVE_X_I18N
6532 /* Don't dispatch this event since XtDispatchEvent calls
6533 XFilterEvent, and two calls in a row may freeze the
6534 client. */
6535 break;
6536 #else
6537 goto OTHER;
6538 #endif
6540 case EnterNotify:
6541 dpyinfo->last_user_time = event->xcrossing.time;
6542 x_detect_focus_change (dpyinfo, any, event, &inev.ie);
6544 f = any;
6546 if (f && x_mouse_click_focus_ignore_position)
6547 ignore_next_mouse_click_timeout = event->xmotion.time + 200;
6549 /* EnterNotify counts as mouse movement,
6550 so update things that depend on mouse position. */
6551 if (f && !f->output_data.x->hourglass_p)
6552 note_mouse_movement (f, &event->xmotion);
6553 #ifdef USE_GTK
6554 /* We may get an EnterNotify on the buttons in the toolbar. In that
6555 case we moved out of any highlighted area and need to note this. */
6556 if (!f && dpyinfo->last_mouse_glyph_frame)
6557 note_mouse_movement (dpyinfo->last_mouse_glyph_frame, &event->xmotion);
6558 #endif
6559 goto OTHER;
6561 case FocusIn:
6562 x_detect_focus_change (dpyinfo, any, event, &inev.ie);
6563 goto OTHER;
6565 case LeaveNotify:
6566 dpyinfo->last_user_time = event->xcrossing.time;
6567 x_detect_focus_change (dpyinfo, any, event, &inev.ie);
6569 f = x_top_window_to_frame (dpyinfo, event->xcrossing.window);
6570 if (f)
6572 if (f == hlinfo->mouse_face_mouse_frame)
6574 /* If we move outside the frame, then we're
6575 certainly no longer on any text in the frame. */
6576 clear_mouse_face (hlinfo);
6577 hlinfo->mouse_face_mouse_frame = 0;
6580 /* Generate a nil HELP_EVENT to cancel a help-echo.
6581 Do it only if there's something to cancel.
6582 Otherwise, the startup message is cleared when
6583 the mouse leaves the frame. */
6584 if (any_help_event_p)
6585 do_help = -1;
6587 #ifdef USE_GTK
6588 /* See comment in EnterNotify above */
6589 else if (dpyinfo->last_mouse_glyph_frame)
6590 note_mouse_movement (dpyinfo->last_mouse_glyph_frame, &event->xmotion);
6591 #endif
6592 goto OTHER;
6594 case FocusOut:
6595 x_detect_focus_change (dpyinfo, any, event, &inev.ie);
6596 goto OTHER;
6598 case MotionNotify:
6600 dpyinfo->last_user_time = event->xmotion.time;
6601 previous_help_echo_string = help_echo_string;
6602 help_echo_string = Qnil;
6604 f = (x_mouse_grabbed (dpyinfo) ? dpyinfo->last_mouse_frame
6605 : x_window_to_frame (dpyinfo, event->xmotion.window));
6607 if (hlinfo->mouse_face_hidden)
6609 hlinfo->mouse_face_hidden = 0;
6610 clear_mouse_face (hlinfo);
6613 #ifdef USE_GTK
6614 if (f && xg_event_is_for_scrollbar (f, event))
6615 f = 0;
6616 #endif
6617 if (f)
6620 /* Generate SELECT_WINDOW_EVENTs when needed.
6621 Don't let popup menus influence things (bug#1261). */
6622 if (!NILP (Vmouse_autoselect_window) && !popup_activated ())
6624 static Lisp_Object last_mouse_window;
6625 Lisp_Object window = window_from_coordinates
6626 (f, event->xmotion.x, event->xmotion.y, 0, 0);
6628 /* Window will be selected only when it is not selected now and
6629 last mouse movement event was not in it. Minibuffer window
6630 will be selected only when it is active. */
6631 if (WINDOWP (window)
6632 && !EQ (window, last_mouse_window)
6633 && !EQ (window, selected_window)
6634 /* For click-to-focus window managers
6635 create event iff we don't leave the
6636 selected frame. */
6637 && (focus_follows_mouse
6638 || (EQ (XWINDOW (window)->frame,
6639 XWINDOW (selected_window)->frame))))
6641 inev.ie.kind = SELECT_WINDOW_EVENT;
6642 inev.ie.frame_or_window = window;
6644 /* Remember the last window where we saw the mouse. */
6645 last_mouse_window = window;
6647 if (!note_mouse_movement (f, &event->xmotion))
6648 help_echo_string = previous_help_echo_string;
6650 else
6652 #ifndef USE_TOOLKIT_SCROLL_BARS
6653 struct scroll_bar *bar
6654 = x_window_to_scroll_bar (event->xmotion.display,
6655 event->xmotion.window);
6657 if (bar)
6658 x_scroll_bar_note_movement (bar, &event->xmotion);
6659 #endif /* USE_TOOLKIT_SCROLL_BARS */
6661 /* If we move outside the frame, then we're
6662 certainly no longer on any text in the frame. */
6663 clear_mouse_face (hlinfo);
6666 /* If the contents of the global variable help_echo_string
6667 has changed, generate a HELP_EVENT. */
6668 if (!NILP (help_echo_string)
6669 || !NILP (previous_help_echo_string))
6670 do_help = 1;
6671 goto OTHER;
6674 case ConfigureNotify:
6675 f = x_top_window_to_frame (dpyinfo, event->xconfigure.window);
6676 #ifdef USE_GTK
6677 if (!f
6678 && (f = any)
6679 && event->xconfigure.window == FRAME_X_WINDOW (f))
6681 xg_frame_resized (f, event->xconfigure.width,
6682 event->xconfigure.height);
6683 f = 0;
6685 #endif
6686 if (f)
6688 #ifndef USE_X_TOOLKIT
6689 #ifndef USE_GTK
6690 int width = FRAME_PIXEL_TO_TEXT_WIDTH (f, event->xconfigure.width);
6691 int height = FRAME_PIXEL_TO_TEXT_HEIGHT (f, event->xconfigure.height);
6693 /* In the toolkit version, change_frame_size
6694 is called by the code that handles resizing
6695 of the EmacsFrame widget. */
6697 /* Even if the number of character rows and columns has
6698 not changed, the font size may have changed, so we need
6699 to check the pixel dimensions as well. */
6700 if (width != FRAME_TEXT_WIDTH (f)
6701 || height != FRAME_TEXT_HEIGHT (f)
6702 || event->xconfigure.width != FRAME_PIXEL_WIDTH (f)
6703 || event->xconfigure.height != FRAME_PIXEL_HEIGHT (f))
6705 change_frame_size (f, width, height, 0, 1, 0, 1);
6706 x_clear_under_internal_border (f);
6707 SET_FRAME_GARBAGED (f);
6708 cancel_mouse_face (f);
6711 /** FRAME_PIXEL_WIDTH (f) = event->xconfigure.width; **/
6712 /** FRAME_PIXEL_HEIGHT (f) = event->xconfigure.height; **/
6713 #endif /* not USE_GTK */
6714 #endif
6716 #ifdef USE_GTK
6717 /* GTK creates windows but doesn't map them.
6718 Only get real positions when mapped. */
6719 if (FRAME_GTK_OUTER_WIDGET (f)
6720 && gtk_widget_get_mapped (FRAME_GTK_OUTER_WIDGET (f)))
6721 #endif
6722 x_real_positions (f, &f->left_pos, &f->top_pos);
6724 #ifdef HAVE_X_I18N
6725 if (FRAME_XIC (f) && (FRAME_XIC_STYLE (f) & XIMStatusArea))
6726 xic_set_statusarea (f);
6727 #endif
6730 goto OTHER;
6732 case ButtonRelease:
6733 case ButtonPress:
6735 /* If we decide we want to generate an event to be seen
6736 by the rest of Emacs, we put it here. */
6737 bool tool_bar_p = 0;
6739 memset (&compose_status, 0, sizeof (compose_status));
6740 dpyinfo->last_mouse_glyph_frame = NULL;
6741 dpyinfo->last_user_time = event->xbutton.time;
6743 f = (x_mouse_grabbed (dpyinfo) ? dpyinfo->last_mouse_frame
6744 : x_window_to_frame (dpyinfo, event->xbutton.window));
6746 #ifdef USE_GTK
6747 if (f && xg_event_is_for_scrollbar (f, event))
6748 f = 0;
6749 #endif
6750 if (f)
6752 #if ! defined (USE_GTK)
6753 /* Is this in the tool-bar? */
6754 if (WINDOWP (f->tool_bar_window)
6755 && WINDOW_TOTAL_LINES (XWINDOW (f->tool_bar_window)))
6757 Lisp_Object window;
6758 int x = event->xbutton.x;
6759 int y = event->xbutton.y;
6761 window = window_from_coordinates (f, x, y, 0, 1);
6762 tool_bar_p = EQ (window, f->tool_bar_window);
6764 if (tool_bar_p && event->xbutton.button < 4)
6765 handle_tool_bar_click
6766 (f, x, y, event->xbutton.type == ButtonPress,
6767 x_x_to_emacs_modifiers (dpyinfo, event->xbutton.state));
6769 #endif /* !USE_GTK */
6771 if (!tool_bar_p)
6772 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
6773 if (! popup_activated ())
6774 #endif
6776 if (ignore_next_mouse_click_timeout)
6778 if (event->type == ButtonPress
6779 && event->xbutton.time > ignore_next_mouse_click_timeout)
6781 ignore_next_mouse_click_timeout = 0;
6782 construct_mouse_click (&inev.ie, &event->xbutton, f);
6784 if (event->type == ButtonRelease)
6785 ignore_next_mouse_click_timeout = 0;
6787 else
6788 construct_mouse_click (&inev.ie, &event->xbutton, f);
6790 if (FRAME_X_EMBEDDED_P (f))
6791 xembed_send_message (f, event->xbutton.time,
6792 XEMBED_REQUEST_FOCUS, 0, 0, 0);
6794 else
6796 struct scroll_bar *bar
6797 = x_window_to_scroll_bar (event->xbutton.display,
6798 event->xbutton.window);
6800 #ifdef USE_TOOLKIT_SCROLL_BARS
6801 /* Make the "Ctrl-Mouse-2 splits window" work for toolkit
6802 scroll bars. */
6803 if (bar && event->xbutton.state & ControlMask)
6805 x_scroll_bar_handle_click (bar, event, &inev.ie);
6806 *finish = X_EVENT_DROP;
6808 #else /* not USE_TOOLKIT_SCROLL_BARS */
6809 if (bar)
6810 x_scroll_bar_handle_click (bar, event, &inev.ie);
6811 #endif /* not USE_TOOLKIT_SCROLL_BARS */
6814 if (event->type == ButtonPress)
6816 dpyinfo->grabbed |= (1 << event->xbutton.button);
6817 dpyinfo->last_mouse_frame = f;
6819 if (!tool_bar_p)
6820 last_tool_bar_item = -1;
6822 else
6823 dpyinfo->grabbed &= ~(1 << event->xbutton.button);
6825 /* Ignore any mouse motion that happened before this event;
6826 any subsequent mouse-movement Emacs events should reflect
6827 only motion after the ButtonPress/Release. */
6828 if (f != 0)
6829 f->mouse_moved = 0;
6831 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
6832 f = x_menubar_window_to_frame (dpyinfo, event);
6833 /* For a down-event in the menu bar,
6834 don't pass it to Xt right now.
6835 Instead, save it away
6836 and we will pass it to Xt from kbd_buffer_get_event.
6837 That way, we can run some Lisp code first. */
6838 if (! popup_activated ()
6839 #ifdef USE_GTK
6840 /* Gtk+ menus only react to the first three buttons. */
6841 && event->xbutton.button < 3
6842 #endif
6843 && f && event->type == ButtonPress
6844 /* Verify the event is really within the menu bar
6845 and not just sent to it due to grabbing. */
6846 && event->xbutton.x >= 0
6847 && event->xbutton.x < FRAME_PIXEL_WIDTH (f)
6848 && event->xbutton.y >= 0
6849 && event->xbutton.y < f->output_data.x->menubar_height
6850 && event->xbutton.same_screen)
6852 if (!f->output_data.x->saved_menu_event)
6853 f->output_data.x->saved_menu_event = xmalloc (sizeof *event);
6854 *f->output_data.x->saved_menu_event = *event;
6855 inev.ie.kind = MENU_BAR_ACTIVATE_EVENT;
6856 XSETFRAME (inev.ie.frame_or_window, f);
6857 *finish = X_EVENT_DROP;
6859 else
6860 goto OTHER;
6861 #endif /* USE_X_TOOLKIT || USE_GTK */
6863 break;
6865 case CirculateNotify:
6866 goto OTHER;
6868 case CirculateRequest:
6869 goto OTHER;
6871 case VisibilityNotify:
6872 goto OTHER;
6874 case MappingNotify:
6875 /* Someone has changed the keyboard mapping - update the
6876 local cache. */
6877 switch (event->xmapping.request)
6879 case MappingModifier:
6880 x_find_modifier_meanings (dpyinfo);
6881 /* This is meant to fall through. */
6882 case MappingKeyboard:
6883 XRefreshKeyboardMapping ((XMappingEvent *) &event->xmapping);
6885 goto OTHER;
6887 case DestroyNotify:
6888 xft_settings_event (dpyinfo, event);
6889 break;
6891 default:
6892 OTHER:
6893 #ifdef USE_X_TOOLKIT
6894 block_input ();
6895 if (*finish != X_EVENT_DROP)
6896 XtDispatchEvent ((XEvent *) event);
6897 unblock_input ();
6898 #endif /* USE_X_TOOLKIT */
6899 break;
6902 done:
6903 if (inev.ie.kind != NO_EVENT)
6905 kbd_buffer_store_event_hold (&inev.ie, hold_quit);
6906 count++;
6909 if (do_help
6910 && !(hold_quit && hold_quit->kind != NO_EVENT))
6912 Lisp_Object frame;
6914 if (f)
6915 XSETFRAME (frame, f);
6916 else
6917 frame = Qnil;
6919 if (do_help > 0)
6921 any_help_event_p = 1;
6922 gen_help_event (help_echo_string, frame, help_echo_window,
6923 help_echo_object, help_echo_pos);
6925 else
6927 help_echo_string = Qnil;
6928 gen_help_event (Qnil, frame, Qnil, Qnil, 0);
6930 count++;
6933 SAFE_FREE ();
6934 return count;
6937 /* Handles the XEvent EVENT on display DISPLAY.
6938 This is used for event loops outside the normal event handling,
6939 i.e. looping while a popup menu or a dialog is posted.
6941 Returns the value handle_one_xevent sets in the finish argument. */
6943 x_dispatch_event (XEvent *event, Display *display)
6945 struct x_display_info *dpyinfo;
6946 int finish = X_EVENT_NORMAL;
6948 dpyinfo = x_display_info_for_display (display);
6950 if (dpyinfo)
6951 handle_one_xevent (dpyinfo, event, &finish, 0);
6953 return finish;
6956 /* Read events coming from the X server.
6957 Return as soon as there are no more events to be read.
6959 Return the number of characters stored into the buffer,
6960 thus pretending to be `read' (except the characters we store
6961 in the keyboard buffer can be multibyte, so are not necessarily
6962 C chars). */
6964 static int
6965 XTread_socket (struct terminal *terminal, struct input_event *hold_quit)
6967 int count = 0;
6968 int event_found = 0;
6969 struct x_display_info *dpyinfo = terminal->display_info.x;
6971 block_input ();
6973 /* For debugging, this gives a way to fake an I/O error. */
6974 if (dpyinfo == XTread_socket_fake_io_error)
6976 XTread_socket_fake_io_error = 0;
6977 x_io_error_quitter (dpyinfo->display);
6980 #ifndef USE_GTK
6981 while (XPending (dpyinfo->display))
6983 int finish;
6984 XEvent event;
6986 XNextEvent (dpyinfo->display, &event);
6988 #ifdef HAVE_X_I18N
6989 /* Filter events for the current X input method. */
6990 if (x_filter_event (dpyinfo, &event))
6991 continue;
6992 #endif
6993 event_found = 1;
6995 count += handle_one_xevent (dpyinfo, &event, &finish, hold_quit);
6997 if (finish == X_EVENT_GOTO_OUT)
6998 break;
7001 #else /* USE_GTK */
7003 /* For GTK we must use the GTK event loop. But XEvents gets passed
7004 to our filter function above, and then to the big event switch.
7005 We use a bunch of globals to communicate with our filter function,
7006 that is kind of ugly, but it works.
7008 There is no way to do one display at the time, GTK just does events
7009 from all displays. */
7011 while (gtk_events_pending ())
7013 current_count = count;
7014 current_hold_quit = hold_quit;
7016 gtk_main_iteration ();
7018 count = current_count;
7019 current_count = -1;
7020 current_hold_quit = 0;
7022 if (current_finish == X_EVENT_GOTO_OUT)
7023 break;
7025 #endif /* USE_GTK */
7027 /* On some systems, an X bug causes Emacs to get no more events
7028 when the window is destroyed. Detect that. (1994.) */
7029 if (! event_found)
7031 /* Emacs and the X Server eats up CPU time if XNoOp is done every time.
7032 One XNOOP in 100 loops will make Emacs terminate.
7033 B. Bretthauer, 1994 */
7034 x_noop_count++;
7035 if (x_noop_count >= 100)
7037 x_noop_count=0;
7039 if (next_noop_dpyinfo == 0)
7040 next_noop_dpyinfo = x_display_list;
7042 XNoOp (next_noop_dpyinfo->display);
7044 /* Each time we get here, cycle through the displays now open. */
7045 next_noop_dpyinfo = next_noop_dpyinfo->next;
7049 /* If the focus was just given to an auto-raising frame,
7050 raise it now. FIXME: handle more than one such frame. */
7051 if (dpyinfo->x_pending_autoraise_frame)
7053 x_raise_frame (dpyinfo->x_pending_autoraise_frame);
7054 dpyinfo->x_pending_autoraise_frame = NULL;
7057 unblock_input ();
7059 return count;
7065 /***********************************************************************
7066 Text Cursor
7067 ***********************************************************************/
7069 /* Set clipping for output in glyph row ROW. W is the window in which
7070 we operate. GC is the graphics context to set clipping in.
7072 ROW may be a text row or, e.g., a mode line. Text rows must be
7073 clipped to the interior of the window dedicated to text display,
7074 mode lines must be clipped to the whole window. */
7076 static void
7077 x_clip_to_row (struct window *w, struct glyph_row *row,
7078 enum glyph_row_area area, GC gc)
7080 struct frame *f = XFRAME (WINDOW_FRAME (w));
7081 XRectangle clip_rect;
7082 int window_x, window_y, window_width;
7084 window_box (w, area, &window_x, &window_y, &window_width, 0);
7086 clip_rect.x = window_x;
7087 clip_rect.y = WINDOW_TO_FRAME_PIXEL_Y (w, max (0, row->y));
7088 clip_rect.y = max (clip_rect.y, window_y);
7089 clip_rect.width = window_width;
7090 clip_rect.height = row->visible_height;
7092 XSetClipRectangles (FRAME_X_DISPLAY (f), gc, 0, 0, &clip_rect, 1, Unsorted);
7096 /* Draw a hollow box cursor on window W in glyph row ROW. */
7098 static void
7099 x_draw_hollow_cursor (struct window *w, struct glyph_row *row)
7101 struct frame *f = XFRAME (WINDOW_FRAME (w));
7102 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
7103 Display *dpy = FRAME_X_DISPLAY (f);
7104 int x, y, wd, h;
7105 XGCValues xgcv;
7106 struct glyph *cursor_glyph;
7107 GC gc;
7109 /* Get the glyph the cursor is on. If we can't tell because
7110 the current matrix is invalid or such, give up. */
7111 cursor_glyph = get_phys_cursor_glyph (w);
7112 if (cursor_glyph == NULL)
7113 return;
7115 /* Compute frame-relative coordinates for phys cursor. */
7116 get_phys_cursor_geometry (w, row, cursor_glyph, &x, &y, &h);
7117 wd = w->phys_cursor_width;
7119 /* The foreground of cursor_gc is typically the same as the normal
7120 background color, which can cause the cursor box to be invisible. */
7121 xgcv.foreground = f->output_data.x->cursor_pixel;
7122 if (dpyinfo->scratch_cursor_gc)
7123 XChangeGC (dpy, dpyinfo->scratch_cursor_gc, GCForeground, &xgcv);
7124 else
7125 dpyinfo->scratch_cursor_gc = XCreateGC (dpy, FRAME_X_WINDOW (f),
7126 GCForeground, &xgcv);
7127 gc = dpyinfo->scratch_cursor_gc;
7129 /* When on R2L character, show cursor at the right edge of the
7130 glyph, unless the cursor box is as wide as the glyph or wider
7131 (the latter happens when x-stretch-cursor is non-nil). */
7132 if ((cursor_glyph->resolved_level & 1) != 0
7133 && cursor_glyph->pixel_width > w->phys_cursor_width)
7135 x += cursor_glyph->pixel_width - w->phys_cursor_width;
7136 if (wd > 0)
7137 wd -= 1;
7139 /* Set clipping, draw the rectangle, and reset clipping again. */
7140 x_clip_to_row (w, row, TEXT_AREA, gc);
7141 XDrawRectangle (dpy, FRAME_X_WINDOW (f), gc, x, y, wd, h - 1);
7142 XSetClipMask (dpy, gc, None);
7146 /* Draw a bar cursor on window W in glyph row ROW.
7148 Implementation note: One would like to draw a bar cursor with an
7149 angle equal to the one given by the font property XA_ITALIC_ANGLE.
7150 Unfortunately, I didn't find a font yet that has this property set.
7151 --gerd. */
7153 static void
7154 x_draw_bar_cursor (struct window *w, struct glyph_row *row, int width, enum text_cursor_kinds kind)
7156 struct frame *f = XFRAME (w->frame);
7157 struct glyph *cursor_glyph;
7159 /* If cursor is out of bounds, don't draw garbage. This can happen
7160 in mini-buffer windows when switching between echo area glyphs
7161 and mini-buffer. */
7162 cursor_glyph = get_phys_cursor_glyph (w);
7163 if (cursor_glyph == NULL)
7164 return;
7166 /* If on an image, draw like a normal cursor. That's usually better
7167 visible than drawing a bar, esp. if the image is large so that
7168 the bar might not be in the window. */
7169 if (cursor_glyph->type == IMAGE_GLYPH)
7171 struct glyph_row *r;
7172 r = MATRIX_ROW (w->current_matrix, w->phys_cursor.vpos);
7173 draw_phys_cursor_glyph (w, r, DRAW_CURSOR);
7175 else
7177 Display *dpy = FRAME_X_DISPLAY (f);
7178 Window window = FRAME_X_WINDOW (f);
7179 GC gc = FRAME_DISPLAY_INFO (f)->scratch_cursor_gc;
7180 unsigned long mask = GCForeground | GCBackground | GCGraphicsExposures;
7181 struct face *face = FACE_FROM_ID (f, cursor_glyph->face_id);
7182 XGCValues xgcv;
7184 /* If the glyph's background equals the color we normally draw
7185 the bars cursor in, the bar cursor in its normal color is
7186 invisible. Use the glyph's foreground color instead in this
7187 case, on the assumption that the glyph's colors are chosen so
7188 that the glyph is legible. */
7189 if (face->background == f->output_data.x->cursor_pixel)
7190 xgcv.background = xgcv.foreground = face->foreground;
7191 else
7192 xgcv.background = xgcv.foreground = f->output_data.x->cursor_pixel;
7193 xgcv.graphics_exposures = 0;
7195 if (gc)
7196 XChangeGC (dpy, gc, mask, &xgcv);
7197 else
7199 gc = XCreateGC (dpy, window, mask, &xgcv);
7200 FRAME_DISPLAY_INFO (f)->scratch_cursor_gc = gc;
7203 x_clip_to_row (w, row, TEXT_AREA, gc);
7205 if (kind == BAR_CURSOR)
7207 int x = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x);
7209 if (width < 0)
7210 width = FRAME_CURSOR_WIDTH (f);
7211 width = min (cursor_glyph->pixel_width, width);
7213 w->phys_cursor_width = width;
7215 /* If the character under cursor is R2L, draw the bar cursor
7216 on the right of its glyph, rather than on the left. */
7217 if ((cursor_glyph->resolved_level & 1) != 0)
7218 x += cursor_glyph->pixel_width - width;
7220 XFillRectangle (dpy, window, gc, x,
7221 WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y),
7222 width, row->height);
7224 else /* HBAR_CURSOR */
7226 int dummy_x, dummy_y, dummy_h;
7227 int x = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x);
7229 if (width < 0)
7230 width = row->height;
7232 width = min (row->height, width);
7234 get_phys_cursor_geometry (w, row, cursor_glyph, &dummy_x,
7235 &dummy_y, &dummy_h);
7237 if ((cursor_glyph->resolved_level & 1) != 0
7238 && cursor_glyph->pixel_width > w->phys_cursor_width)
7239 x += cursor_glyph->pixel_width - w->phys_cursor_width;
7240 XFillRectangle (dpy, window, gc, x,
7241 WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y +
7242 row->height - width),
7243 w->phys_cursor_width, width);
7246 XSetClipMask (dpy, gc, None);
7251 /* RIF: Define cursor CURSOR on frame F. */
7253 static void
7254 x_define_frame_cursor (struct frame *f, Cursor cursor)
7256 if (!f->pointer_invisible
7257 && f->output_data.x->current_cursor != cursor)
7258 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), cursor);
7259 f->output_data.x->current_cursor = cursor;
7263 /* RIF: Clear area on frame F. */
7265 static void
7266 x_clear_frame_area (struct frame *f, int x, int y, int width, int height)
7268 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), x, y, width, height);
7269 #ifdef USE_GTK
7270 /* Must queue a redraw, because scroll bars might have been cleared. */
7271 if (FRAME_GTK_WIDGET (f))
7272 gtk_widget_queue_draw (FRAME_GTK_WIDGET (f));
7273 #endif
7277 /* RIF: Draw cursor on window W. */
7279 static void
7280 x_draw_window_cursor (struct window *w, struct glyph_row *glyph_row, int x,
7281 int y, enum text_cursor_kinds cursor_type,
7282 int cursor_width, bool on_p, bool active_p)
7284 struct frame *f = XFRAME (WINDOW_FRAME (w));
7286 if (on_p)
7288 w->phys_cursor_type = cursor_type;
7289 w->phys_cursor_on_p = 1;
7291 if (glyph_row->exact_window_width_line_p
7292 && (glyph_row->reversed_p
7293 ? (w->phys_cursor.hpos < 0)
7294 : (w->phys_cursor.hpos >= glyph_row->used[TEXT_AREA])))
7296 glyph_row->cursor_in_fringe_p = 1;
7297 draw_fringe_bitmap (w, glyph_row, glyph_row->reversed_p);
7299 else
7301 switch (cursor_type)
7303 case HOLLOW_BOX_CURSOR:
7304 x_draw_hollow_cursor (w, glyph_row);
7305 break;
7307 case FILLED_BOX_CURSOR:
7308 draw_phys_cursor_glyph (w, glyph_row, DRAW_CURSOR);
7309 break;
7311 case BAR_CURSOR:
7312 x_draw_bar_cursor (w, glyph_row, cursor_width, BAR_CURSOR);
7313 break;
7315 case HBAR_CURSOR:
7316 x_draw_bar_cursor (w, glyph_row, cursor_width, HBAR_CURSOR);
7317 break;
7319 case NO_CURSOR:
7320 w->phys_cursor_width = 0;
7321 break;
7323 default:
7324 emacs_abort ();
7328 #ifdef HAVE_X_I18N
7329 if (w == XWINDOW (f->selected_window))
7330 if (FRAME_XIC (f) && (FRAME_XIC_STYLE (f) & XIMPreeditPosition))
7331 xic_set_preeditarea (w, x, y);
7332 #endif
7335 XFlush (FRAME_X_DISPLAY (f));
7339 /* Icons. */
7341 /* Make the x-window of frame F use the gnu icon bitmap. */
7344 x_bitmap_icon (struct frame *f, Lisp_Object file)
7346 ptrdiff_t bitmap_id;
7348 if (FRAME_X_WINDOW (f) == 0)
7349 return 1;
7351 /* Free up our existing icon bitmap and mask if any. */
7352 if (f->output_data.x->icon_bitmap > 0)
7353 x_destroy_bitmap (f, f->output_data.x->icon_bitmap);
7354 f->output_data.x->icon_bitmap = 0;
7356 if (STRINGP (file))
7358 #ifdef USE_GTK
7359 /* Use gtk_window_set_icon_from_file () if available,
7360 It's not restricted to bitmaps */
7361 if (xg_set_icon (f, file))
7362 return 0;
7363 #endif /* USE_GTK */
7364 bitmap_id = x_create_bitmap_from_file (f, file);
7365 x_create_bitmap_mask (f, bitmap_id);
7367 else
7369 /* Create the GNU bitmap and mask if necessary. */
7370 if (FRAME_DISPLAY_INFO (f)->icon_bitmap_id < 0)
7372 ptrdiff_t rc = -1;
7374 #ifdef USE_GTK
7376 if (xg_set_icon (f, xg_default_icon_file)
7377 || xg_set_icon_from_xpm_data (f, gnu_xpm_bits))
7378 return 0;
7380 #elif defined (HAVE_XPM) && defined (HAVE_X_WINDOWS)
7382 rc = x_create_bitmap_from_xpm_data (f, gnu_xpm_bits);
7383 if (rc != -1)
7384 FRAME_DISPLAY_INFO (f)->icon_bitmap_id = rc;
7386 #endif
7388 /* If all else fails, use the (black and white) xbm image. */
7389 if (rc == -1)
7391 rc = x_create_bitmap_from_data (f, (char *) gnu_xbm_bits,
7392 gnu_xbm_width, gnu_xbm_height);
7393 if (rc == -1)
7394 return 1;
7396 FRAME_DISPLAY_INFO (f)->icon_bitmap_id = rc;
7397 x_create_bitmap_mask (f, FRAME_DISPLAY_INFO (f)->icon_bitmap_id);
7401 /* The first time we create the GNU bitmap and mask,
7402 this increments the ref-count one extra time.
7403 As a result, the GNU bitmap and mask are never freed.
7404 That way, we don't have to worry about allocating it again. */
7405 x_reference_bitmap (f, FRAME_DISPLAY_INFO (f)->icon_bitmap_id);
7407 bitmap_id = FRAME_DISPLAY_INFO (f)->icon_bitmap_id;
7410 x_wm_set_icon_pixmap (f, bitmap_id);
7411 f->output_data.x->icon_bitmap = bitmap_id;
7413 return 0;
7417 /* Make the x-window of frame F use a rectangle with text.
7418 Use ICON_NAME as the text. */
7421 x_text_icon (struct frame *f, const char *icon_name)
7423 if (FRAME_X_WINDOW (f) == 0)
7424 return 1;
7427 XTextProperty text;
7428 text.value = (unsigned char *) icon_name;
7429 text.encoding = XA_STRING;
7430 text.format = 8;
7431 text.nitems = strlen (icon_name);
7432 XSetWMIconName (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f), &text);
7435 if (f->output_data.x->icon_bitmap > 0)
7436 x_destroy_bitmap (f, f->output_data.x->icon_bitmap);
7437 f->output_data.x->icon_bitmap = 0;
7438 x_wm_set_icon_pixmap (f, 0);
7440 return 0;
7443 #define X_ERROR_MESSAGE_SIZE 200
7445 /* If non-nil, this should be a string.
7446 It means catch X errors and store the error message in this string.
7448 The reason we use a stack is that x_catch_error/x_uncatch_error can
7449 be called from a signal handler.
7452 struct x_error_message_stack {
7453 char string[X_ERROR_MESSAGE_SIZE];
7454 Display *dpy;
7455 struct x_error_message_stack *prev;
7457 static struct x_error_message_stack *x_error_message;
7459 /* An X error handler which stores the error message in
7460 *x_error_message. This is called from x_error_handler if
7461 x_catch_errors is in effect. */
7463 static void
7464 x_error_catcher (Display *display, XErrorEvent *event)
7466 XGetErrorText (display, event->error_code,
7467 x_error_message->string,
7468 X_ERROR_MESSAGE_SIZE);
7471 /* Begin trapping X errors for display DPY. Actually we trap X errors
7472 for all displays, but DPY should be the display you are actually
7473 operating on.
7475 After calling this function, X protocol errors no longer cause
7476 Emacs to exit; instead, they are recorded in the string
7477 stored in *x_error_message.
7479 Calling x_check_errors signals an Emacs error if an X error has
7480 occurred since the last call to x_catch_errors or x_check_errors.
7482 Calling x_uncatch_errors resumes the normal error handling. */
7484 void
7485 x_catch_errors (Display *dpy)
7487 struct x_error_message_stack *data = xmalloc (sizeof *data);
7489 /* Make sure any errors from previous requests have been dealt with. */
7490 XSync (dpy, False);
7492 data->dpy = dpy;
7493 data->string[0] = 0;
7494 data->prev = x_error_message;
7495 x_error_message = data;
7498 /* Undo the last x_catch_errors call.
7499 DPY should be the display that was passed to x_catch_errors. */
7501 void
7502 x_uncatch_errors (void)
7504 struct x_error_message_stack *tmp;
7506 block_input ();
7508 /* The display may have been closed before this function is called.
7509 Check if it is still open before calling XSync. */
7510 if (x_display_info_for_display (x_error_message->dpy) != 0)
7511 XSync (x_error_message->dpy, False);
7513 tmp = x_error_message;
7514 x_error_message = x_error_message->prev;
7515 xfree (tmp);
7516 unblock_input ();
7519 /* If any X protocol errors have arrived since the last call to
7520 x_catch_errors or x_check_errors, signal an Emacs error using
7521 sprintf (a buffer, FORMAT, the x error message text) as the text. */
7523 void
7524 x_check_errors (Display *dpy, const char *format)
7526 /* Make sure to catch any errors incurred so far. */
7527 XSync (dpy, False);
7529 if (x_error_message->string[0])
7531 char string[X_ERROR_MESSAGE_SIZE];
7532 memcpy (string, x_error_message->string, X_ERROR_MESSAGE_SIZE);
7533 x_uncatch_errors ();
7534 error (format, string);
7538 /* Nonzero if we had any X protocol errors
7539 since we did x_catch_errors on DPY. */
7541 bool
7542 x_had_errors_p (Display *dpy)
7544 /* Make sure to catch any errors incurred so far. */
7545 XSync (dpy, False);
7547 return x_error_message->string[0] != 0;
7550 /* Forget about any errors we have had, since we did x_catch_errors on DPY. */
7552 void
7553 x_clear_errors (Display *dpy)
7555 x_error_message->string[0] = 0;
7558 #if 0 /* See comment in unwind_to_catch why calling this is a bad
7559 * idea. --lorentey */
7560 /* Close off all unclosed x_catch_errors calls. */
7562 void
7563 x_fully_uncatch_errors (void)
7565 while (x_error_message)
7566 x_uncatch_errors ();
7568 #endif
7570 #if 0
7571 static unsigned int x_wire_count;
7572 x_trace_wire (void)
7574 fprintf (stderr, "Lib call: %d\n", ++x_wire_count);
7576 #endif /* ! 0 */
7579 /************************************************************************
7580 Handling X errors
7581 ************************************************************************/
7583 /* Error message passed to x_connection_closed. */
7585 static char *error_msg;
7587 /* Handle the loss of connection to display DPY. ERROR_MESSAGE is
7588 the text of an error message that lead to the connection loss. */
7590 static void
7591 x_connection_closed (Display *dpy, const char *error_message)
7593 struct x_display_info *dpyinfo = x_display_info_for_display (dpy);
7594 Lisp_Object frame, tail;
7595 ptrdiff_t idx = SPECPDL_INDEX ();
7597 error_msg = alloca (strlen (error_message) + 1);
7598 strcpy (error_msg, error_message);
7600 /* Inhibit redisplay while frames are being deleted. */
7601 specbind (Qinhibit_redisplay, Qt);
7603 if (dpyinfo)
7605 /* Protect display from being closed when we delete the last
7606 frame on it. */
7607 dpyinfo->reference_count++;
7608 dpyinfo->terminal->reference_count++;
7611 /* First delete frames whose mini-buffers are on frames
7612 that are on the dead display. */
7613 FOR_EACH_FRAME (tail, frame)
7615 Lisp_Object minibuf_frame;
7616 minibuf_frame
7617 = WINDOW_FRAME (XWINDOW (FRAME_MINIBUF_WINDOW (XFRAME (frame))));
7618 if (FRAME_X_P (XFRAME (frame))
7619 && FRAME_X_P (XFRAME (minibuf_frame))
7620 && ! EQ (frame, minibuf_frame)
7621 && FRAME_DISPLAY_INFO (XFRAME (minibuf_frame)) == dpyinfo)
7622 delete_frame (frame, Qnoelisp);
7625 /* Now delete all remaining frames on the dead display.
7626 We are now sure none of these is used as the mini-buffer
7627 for another frame that we need to delete. */
7628 FOR_EACH_FRAME (tail, frame)
7629 if (FRAME_X_P (XFRAME (frame))
7630 && FRAME_DISPLAY_INFO (XFRAME (frame)) == dpyinfo)
7632 /* Set this to t so that delete_frame won't get confused
7633 trying to find a replacement. */
7634 kset_default_minibuffer_frame (FRAME_KBOARD (XFRAME (frame)), Qt);
7635 delete_frame (frame, Qnoelisp);
7638 /* If DPYINFO is null, this means we didn't open the display in the
7639 first place, so don't try to close it. */
7640 if (dpyinfo)
7642 /* We can not call XtCloseDisplay here because it calls XSync.
7643 XSync inside the error handler apparently hangs Emacs. On
7644 current Xt versions, this isn't needed either. */
7645 #ifdef USE_GTK
7646 /* A long-standing GTK bug prevents proper disconnect handling
7647 (https://bugzilla.gnome.org/show_bug.cgi?id=85715). Once,
7648 the resulting Glib error message loop filled a user's disk.
7649 To avoid this, kill Emacs unconditionally on disconnect. */
7650 shut_down_emacs (0, Qnil);
7651 fprintf (stderr, "%s\n\
7652 When compiled with GTK, Emacs cannot recover from X disconnects.\n\
7653 This is a GTK bug: https://bugzilla.gnome.org/show_bug.cgi?id=85715\n\
7654 For details, see etc/PROBLEMS.\n",
7655 error_msg);
7656 emacs_abort ();
7657 #endif /* USE_GTK */
7659 /* Indicate that this display is dead. */
7660 dpyinfo->display = 0;
7662 dpyinfo->reference_count--;
7663 dpyinfo->terminal->reference_count--;
7664 if (dpyinfo->reference_count != 0)
7665 /* We have just closed all frames on this display. */
7666 emacs_abort ();
7669 Lisp_Object tmp;
7670 XSETTERMINAL (tmp, dpyinfo->terminal);
7671 Fdelete_terminal (tmp, Qnoelisp);
7675 if (terminal_list == 0)
7677 fprintf (stderr, "%s\n", error_msg);
7678 Fkill_emacs (make_number (70));
7679 /* NOTREACHED */
7682 totally_unblock_input ();
7684 unbind_to (idx, Qnil);
7685 clear_waiting_for_input ();
7687 /* Tell GCC not to suggest attribute 'noreturn' for this function. */
7688 IF_LINT (if (! terminal_list) return; )
7690 /* Here, we absolutely have to use a non-local exit (e.g. signal, throw,
7691 longjmp), because returning from this function would get us back into
7692 Xlib's code which will directly call `exit'. */
7693 error ("%s", error_msg);
7696 /* We specifically use it before defining it, so that gcc doesn't inline it,
7697 otherwise gdb doesn't know how to properly put a breakpoint on it. */
7698 static void x_error_quitter (Display *, XErrorEvent *);
7700 /* This is the first-level handler for X protocol errors.
7701 It calls x_error_quitter or x_error_catcher. */
7703 static int
7704 x_error_handler (Display *display, XErrorEvent *event)
7706 #if defined USE_GTK && defined HAVE_GTK3
7707 if ((event->error_code == BadMatch || event->error_code == BadWindow)
7708 && event->request_code == X_SetInputFocus)
7710 return 0;
7712 #endif
7714 if (x_error_message)
7715 x_error_catcher (display, event);
7716 else
7717 x_error_quitter (display, event);
7718 return 0;
7721 /* This is the usual handler for X protocol errors.
7722 It kills all frames on the display that we got the error for.
7723 If that was the only one, it prints an error message and kills Emacs. */
7725 /* .gdbinit puts a breakpoint here, so make sure it is not inlined. */
7727 /* On older GCC versions, just putting x_error_quitter
7728 after x_error_handler prevents inlining into the former. */
7730 static void NO_INLINE
7731 x_error_quitter (Display *display, XErrorEvent *event)
7733 char buf[256], buf1[356];
7735 /* Ignore BadName errors. They can happen because of fonts
7736 or colors that are not defined. */
7738 if (event->error_code == BadName)
7739 return;
7741 /* Note that there is no real way portable across R3/R4 to get the
7742 original error handler. */
7744 XGetErrorText (display, event->error_code, buf, sizeof (buf));
7745 sprintf (buf1, "X protocol error: %s on protocol request %d",
7746 buf, event->request_code);
7747 x_connection_closed (display, buf1);
7751 /* This is the handler for X IO errors, always.
7752 It kills all frames on the display that we lost touch with.
7753 If that was the only one, it prints an error message and kills Emacs. */
7755 static int
7756 x_io_error_quitter (Display *display)
7758 char buf[256];
7760 snprintf (buf, sizeof buf, "Connection lost to X server `%s'",
7761 DisplayString (display));
7762 x_connection_closed (display, buf);
7763 return 0;
7766 /* Changing the font of the frame. */
7768 /* Give frame F the font FONT-OBJECT as its default font. The return
7769 value is FONT-OBJECT. FONTSET is an ID of the fontset for the
7770 frame. If it is negative, generate a new fontset from
7771 FONT-OBJECT. */
7773 Lisp_Object
7774 x_new_font (struct frame *f, Lisp_Object font_object, int fontset)
7776 struct font *font = XFONT_OBJECT (font_object);
7777 int unit;
7779 if (fontset < 0)
7780 fontset = fontset_from_font (font_object);
7781 FRAME_FONTSET (f) = fontset;
7782 if (FRAME_FONT (f) == font)
7783 /* This font is already set in frame F. There's nothing more to
7784 do. */
7785 return font_object;
7787 FRAME_FONT (f) = font;
7788 FRAME_BASELINE_OFFSET (f) = font->baseline_offset;
7789 FRAME_COLUMN_WIDTH (f) = font->average_width;
7790 FRAME_LINE_HEIGHT (f) = FONT_HEIGHT (font);
7792 FRAME_TOOL_BAR_HEIGHT (f) = FRAME_TOOL_BAR_LINES (f) * FRAME_LINE_HEIGHT (f);
7793 FRAME_MENU_BAR_HEIGHT (f) = FRAME_MENU_BAR_LINES (f) * FRAME_LINE_HEIGHT (f);
7795 compute_fringe_widths (f, 1);
7797 /* Compute character columns occupied by scrollbar.
7799 Don't do things differently for non-toolkit scrollbars
7800 (Bug#17163). */
7801 unit = FRAME_COLUMN_WIDTH (f);
7802 if (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) > 0)
7803 FRAME_CONFIG_SCROLL_BAR_COLS (f)
7804 = (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) + unit - 1) / unit;
7805 else
7806 FRAME_CONFIG_SCROLL_BAR_COLS (f) = (14 + unit - 1) / unit;
7808 if (FRAME_X_WINDOW (f) != 0)
7810 /* Don't change the size of a tip frame; there's no point in
7811 doing it because it's done in Fx_show_tip, and it leads to
7812 problems because the tip frame has no widget. */
7813 if (NILP (tip_frame) || XFRAME (tip_frame) != f)
7814 x_set_window_size (f, 0, FRAME_COLS (f) * FRAME_COLUMN_WIDTH (f),
7815 FRAME_LINES (f) * FRAME_LINE_HEIGHT (f), 1);
7818 #ifdef HAVE_X_I18N
7819 if (FRAME_XIC (f)
7820 && (FRAME_XIC_STYLE (f) & (XIMPreeditPosition | XIMStatusArea)))
7822 block_input ();
7823 xic_set_xfontset (f, SSDATA (fontset_ascii (fontset)));
7824 unblock_input ();
7826 #endif
7828 return font_object;
7832 /***********************************************************************
7833 X Input Methods
7834 ***********************************************************************/
7836 #ifdef HAVE_X_I18N
7838 #ifdef HAVE_X11R6
7840 /* XIM destroy callback function, which is called whenever the
7841 connection to input method XIM dies. CLIENT_DATA contains a
7842 pointer to the x_display_info structure corresponding to XIM. */
7844 static void
7845 xim_destroy_callback (XIM xim, XPointer client_data, XPointer call_data)
7847 struct x_display_info *dpyinfo = (struct x_display_info *) client_data;
7848 Lisp_Object frame, tail;
7850 block_input ();
7852 /* No need to call XDestroyIC.. */
7853 FOR_EACH_FRAME (tail, frame)
7855 struct frame *f = XFRAME (frame);
7856 if (FRAME_X_P (f) && FRAME_DISPLAY_INFO (f) == dpyinfo)
7858 FRAME_XIC (f) = NULL;
7859 xic_free_xfontset (f);
7863 /* No need to call XCloseIM. */
7864 dpyinfo->xim = NULL;
7865 XFree (dpyinfo->xim_styles);
7866 unblock_input ();
7869 #endif /* HAVE_X11R6 */
7871 #ifdef HAVE_X11R6
7872 /* This isn't prototyped in OSF 5.0 or 5.1a. */
7873 extern char *XSetIMValues (XIM, ...);
7874 #endif
7876 /* Open the connection to the XIM server on display DPYINFO.
7877 RESOURCE_NAME is the resource name Emacs uses. */
7879 static void
7880 xim_open_dpy (struct x_display_info *dpyinfo, char *resource_name)
7882 XIM xim;
7884 #ifdef HAVE_XIM
7885 if (use_xim)
7887 if (dpyinfo->xim)
7888 XCloseIM (dpyinfo->xim);
7889 xim = XOpenIM (dpyinfo->display, dpyinfo->xrdb, resource_name,
7890 emacs_class);
7891 dpyinfo->xim = xim;
7893 if (xim)
7895 #ifdef HAVE_X11R6
7896 XIMCallback destroy;
7897 #endif
7899 /* Get supported styles and XIM values. */
7900 XGetIMValues (xim, XNQueryInputStyle, &dpyinfo->xim_styles, NULL);
7902 #ifdef HAVE_X11R6
7903 destroy.callback = xim_destroy_callback;
7904 destroy.client_data = (XPointer)dpyinfo;
7905 XSetIMValues (xim, XNDestroyCallback, &destroy, NULL);
7906 #endif
7910 else
7911 #endif /* HAVE_XIM */
7912 dpyinfo->xim = NULL;
7916 #ifdef HAVE_X11R6_XIM
7918 /* XIM instantiate callback function, which is called whenever an XIM
7919 server is available. DISPLAY is the display of the XIM.
7920 CLIENT_DATA contains a pointer to an xim_inst_t structure created
7921 when the callback was registered. */
7923 static void
7924 xim_instantiate_callback (Display *display, XPointer client_data, XPointer call_data)
7926 struct xim_inst_t *xim_inst = (struct xim_inst_t *) client_data;
7927 struct x_display_info *dpyinfo = xim_inst->dpyinfo;
7929 /* We don't support multiple XIM connections. */
7930 if (dpyinfo->xim)
7931 return;
7933 xim_open_dpy (dpyinfo, xim_inst->resource_name);
7935 /* Create XIC for the existing frames on the same display, as long
7936 as they have no XIC. */
7937 if (dpyinfo->xim && dpyinfo->reference_count > 0)
7939 Lisp_Object tail, frame;
7941 block_input ();
7942 FOR_EACH_FRAME (tail, frame)
7944 struct frame *f = XFRAME (frame);
7946 if (FRAME_X_P (f)
7947 && FRAME_DISPLAY_INFO (f) == xim_inst->dpyinfo)
7948 if (FRAME_XIC (f) == NULL)
7950 create_frame_xic (f);
7951 if (FRAME_XIC_STYLE (f) & XIMStatusArea)
7952 xic_set_statusarea (f);
7953 if (FRAME_XIC_STYLE (f) & XIMPreeditPosition)
7955 struct window *w = XWINDOW (f->selected_window);
7956 xic_set_preeditarea (w, w->cursor.x, w->cursor.y);
7961 unblock_input ();
7965 #endif /* HAVE_X11R6_XIM */
7968 /* Open a connection to the XIM server on display DPYINFO.
7969 RESOURCE_NAME is the resource name for Emacs. On X11R5, open the
7970 connection only at the first time. On X11R6, open the connection
7971 in the XIM instantiate callback function. */
7973 static void
7974 xim_initialize (struct x_display_info *dpyinfo, char *resource_name)
7976 dpyinfo->xim = NULL;
7977 #ifdef HAVE_XIM
7978 if (use_xim)
7980 #ifdef HAVE_X11R6_XIM
7981 struct xim_inst_t *xim_inst = xmalloc (sizeof *xim_inst);
7982 Bool ret;
7984 dpyinfo->xim_callback_data = xim_inst;
7985 xim_inst->dpyinfo = dpyinfo;
7986 xim_inst->resource_name = xstrdup (resource_name);
7987 ret = XRegisterIMInstantiateCallback
7988 (dpyinfo->display, dpyinfo->xrdb, xim_inst->resource_name,
7989 emacs_class, xim_instantiate_callback,
7990 /* This is XPointer in XFree86 but (XPointer *)
7991 on Tru64, at least, hence the configure test. */
7992 (XRegisterIMInstantiateCallback_arg6) xim_inst);
7993 eassert (ret == True);
7994 #else /* not HAVE_X11R6_XIM */
7995 xim_open_dpy (dpyinfo, resource_name);
7996 #endif /* not HAVE_X11R6_XIM */
7998 #endif /* HAVE_XIM */
8002 /* Close the connection to the XIM server on display DPYINFO. */
8004 static void
8005 xim_close_dpy (struct x_display_info *dpyinfo)
8007 #ifdef HAVE_XIM
8008 if (use_xim)
8010 #ifdef HAVE_X11R6_XIM
8011 struct xim_inst_t *xim_inst = dpyinfo->xim_callback_data;
8013 if (dpyinfo->display)
8015 Bool ret = XUnregisterIMInstantiateCallback
8016 (dpyinfo->display, dpyinfo->xrdb, xim_inst->resource_name,
8017 emacs_class, xim_instantiate_callback,
8018 (XRegisterIMInstantiateCallback_arg6) xim_inst);
8019 eassert (ret == True);
8021 xfree (xim_inst->resource_name);
8022 xfree (xim_inst);
8023 #endif /* HAVE_X11R6_XIM */
8024 if (dpyinfo->display)
8025 XCloseIM (dpyinfo->xim);
8026 dpyinfo->xim = NULL;
8027 XFree (dpyinfo->xim_styles);
8029 #endif /* HAVE_XIM */
8032 #endif /* not HAVE_X11R6_XIM */
8036 /* Calculate the absolute position in frame F
8037 from its current recorded position values and gravity. */
8039 static void
8040 x_calc_absolute_position (struct frame *f)
8042 int flags = f->size_hint_flags;
8044 /* We have nothing to do if the current position
8045 is already for the top-left corner. */
8046 if (! ((flags & XNegative) || (flags & YNegative)))
8047 return;
8049 /* Treat negative positions as relative to the leftmost bottommost
8050 position that fits on the screen. */
8051 if (flags & XNegative)
8052 f->left_pos = x_display_pixel_width (FRAME_DISPLAY_INFO (f))
8053 - FRAME_PIXEL_WIDTH (f) + f->left_pos;
8056 int height = FRAME_PIXEL_HEIGHT (f);
8058 #if defined USE_X_TOOLKIT && defined USE_MOTIF
8059 /* Something is fishy here. When using Motif, starting Emacs with
8060 `-g -0-0', the frame appears too low by a few pixels.
8062 This seems to be so because initially, while Emacs is starting,
8063 the column widget's height and the frame's pixel height are
8064 different. The column widget's height is the right one. In
8065 later invocations, when Emacs is up, the frame's pixel height
8066 is right, though.
8068 It's not obvious where the initial small difference comes from.
8069 2000-12-01, gerd. */
8071 XtVaGetValues (f->output_data.x->column_widget, XtNheight, &height, NULL);
8072 #endif
8074 if (flags & YNegative)
8075 f->top_pos = x_display_pixel_height (FRAME_DISPLAY_INFO (f))
8076 - height + f->top_pos;
8079 /* The left_pos and top_pos
8080 are now relative to the top and left screen edges,
8081 so the flags should correspond. */
8082 f->size_hint_flags &= ~ (XNegative | YNegative);
8085 /* CHANGE_GRAVITY is 1 when calling from Fset_frame_position,
8086 to really change the position, and 0 when calling from
8087 x_make_frame_visible (in that case, XOFF and YOFF are the current
8088 position values). It is -1 when calling from x_set_frame_parameters,
8089 which means, do adjust for borders but don't change the gravity. */
8091 void
8092 x_set_offset (struct frame *f, register int xoff, register int yoff, int change_gravity)
8094 int modified_top, modified_left;
8096 if (change_gravity > 0)
8098 f->top_pos = yoff;
8099 f->left_pos = xoff;
8100 f->size_hint_flags &= ~ (XNegative | YNegative);
8101 if (xoff < 0)
8102 f->size_hint_flags |= XNegative;
8103 if (yoff < 0)
8104 f->size_hint_flags |= YNegative;
8105 f->win_gravity = NorthWestGravity;
8107 x_calc_absolute_position (f);
8109 block_input ();
8110 x_wm_set_size_hint (f, (long) 0, 0);
8112 modified_left = f->left_pos;
8113 modified_top = f->top_pos;
8115 if (change_gravity != 0 && FRAME_DISPLAY_INFO (f)->wm_type == X_WMTYPE_A)
8117 /* Some WMs (twm, wmaker at least) has an offset that is smaller
8118 than the WM decorations. So we use the calculated offset instead
8119 of the WM decoration sizes here (x/y_pixels_outer_diff). */
8120 modified_left += FRAME_X_OUTPUT (f)->move_offset_left;
8121 modified_top += FRAME_X_OUTPUT (f)->move_offset_top;
8124 XMoveWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
8125 modified_left, modified_top);
8127 x_sync_with_move (f, f->left_pos, f->top_pos,
8128 FRAME_DISPLAY_INFO (f)->wm_type == X_WMTYPE_UNKNOWN
8129 ? 1 : 0);
8131 /* change_gravity is non-zero when this function is called from Lisp to
8132 programmatically move a frame. In that case, we call
8133 x_check_expected_move to discover if we have a "Type A" or "Type B"
8134 window manager, and, for a "Type A" window manager, adjust the position
8135 of the frame.
8137 We call x_check_expected_move if a programmatic move occurred, and
8138 either the window manager type (A/B) is unknown or it is Type A but we
8139 need to compute the top/left offset adjustment for this frame. */
8141 if (change_gravity != 0 &&
8142 (FRAME_DISPLAY_INFO (f)->wm_type == X_WMTYPE_UNKNOWN
8143 || (FRAME_DISPLAY_INFO (f)->wm_type == X_WMTYPE_A
8144 && (FRAME_X_OUTPUT (f)->move_offset_left == 0
8145 && FRAME_X_OUTPUT (f)->move_offset_top == 0))))
8146 x_check_expected_move (f, modified_left, modified_top);
8148 unblock_input ();
8151 /* Return non-zero if _NET_SUPPORTING_WM_CHECK window exists and _NET_SUPPORTED
8152 on the root window for frame F contains ATOMNAME.
8153 This is how a WM check shall be done according to the Window Manager
8154 Specification/Extended Window Manager Hints at
8155 http://freedesktop.org/wiki/Specifications/wm-spec. */
8157 static int
8158 wm_supports (struct frame *f, Atom want_atom)
8160 Atom actual_type;
8161 unsigned long actual_size, bytes_remaining;
8162 int i, rc, actual_format;
8163 Window wmcheck_window;
8164 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
8165 Window target_window = dpyinfo->root_window;
8166 long max_len = 65536;
8167 Display *dpy = FRAME_X_DISPLAY (f);
8168 unsigned char *tmp_data = NULL;
8169 Atom target_type = XA_WINDOW;
8171 block_input ();
8173 x_catch_errors (dpy);
8174 rc = XGetWindowProperty (dpy, target_window,
8175 dpyinfo->Xatom_net_supporting_wm_check,
8176 0, max_len, False, target_type,
8177 &actual_type, &actual_format, &actual_size,
8178 &bytes_remaining, &tmp_data);
8180 if (rc != Success || actual_type != XA_WINDOW || x_had_errors_p (dpy))
8182 if (tmp_data) XFree (tmp_data);
8183 x_uncatch_errors ();
8184 unblock_input ();
8185 return 0;
8188 wmcheck_window = *(Window *) tmp_data;
8189 XFree (tmp_data);
8191 /* Check if window exists. */
8192 XSelectInput (dpy, wmcheck_window, StructureNotifyMask);
8193 x_sync (f);
8194 if (x_had_errors_p (dpy))
8196 x_uncatch_errors ();
8197 unblock_input ();
8198 return 0;
8201 if (dpyinfo->net_supported_window != wmcheck_window)
8203 /* Window changed, reload atoms */
8204 if (dpyinfo->net_supported_atoms != NULL)
8205 XFree (dpyinfo->net_supported_atoms);
8206 dpyinfo->net_supported_atoms = NULL;
8207 dpyinfo->nr_net_supported_atoms = 0;
8208 dpyinfo->net_supported_window = 0;
8210 target_type = XA_ATOM;
8211 tmp_data = NULL;
8212 rc = XGetWindowProperty (dpy, target_window,
8213 dpyinfo->Xatom_net_supported,
8214 0, max_len, False, target_type,
8215 &actual_type, &actual_format, &actual_size,
8216 &bytes_remaining, &tmp_data);
8218 if (rc != Success || actual_type != XA_ATOM || x_had_errors_p (dpy))
8220 if (tmp_data) XFree (tmp_data);
8221 x_uncatch_errors ();
8222 unblock_input ();
8223 return 0;
8226 dpyinfo->net_supported_atoms = (Atom *)tmp_data;
8227 dpyinfo->nr_net_supported_atoms = actual_size;
8228 dpyinfo->net_supported_window = wmcheck_window;
8231 rc = 0;
8233 for (i = 0; rc == 0 && i < dpyinfo->nr_net_supported_atoms; ++i)
8234 rc = dpyinfo->net_supported_atoms[i] == want_atom;
8236 x_uncatch_errors ();
8237 unblock_input ();
8239 return rc;
8242 static void
8243 set_wm_state (Lisp_Object frame, int add, Atom atom, Atom value)
8245 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (XFRAME (frame));
8247 x_send_client_event (frame, make_number (0), frame,
8248 dpyinfo->Xatom_net_wm_state,
8249 make_number (32),
8250 /* 1 = add, 0 = remove */
8251 Fcons
8252 (make_number (add ? 1 : 0),
8253 Fcons
8254 (make_fixnum_or_float (atom),
8255 (value != 0
8256 ? list1 (make_fixnum_or_float (value))
8257 : Qnil))));
8260 void
8261 x_set_sticky (struct frame *f, Lisp_Object new_value, Lisp_Object old_value)
8263 Lisp_Object frame;
8264 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
8266 XSETFRAME (frame, f);
8268 set_wm_state (frame, NILP (new_value) ? 0 : 1,
8269 dpyinfo->Xatom_net_wm_state_sticky, None);
8272 /* Return the current _NET_WM_STATE.
8273 SIZE_STATE is set to one of the FULLSCREEN_* values.
8274 STICKY is set to 1 if the sticky state is set, 0 if not.
8276 Return non-zero if we are not hidden, zero if we are. */
8278 static int
8279 get_current_wm_state (struct frame *f,
8280 Window window,
8281 int *size_state,
8282 int *sticky)
8284 Atom actual_type;
8285 unsigned long actual_size, bytes_remaining;
8286 int i, rc, actual_format, is_hidden = 0;
8287 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
8288 long max_len = 65536;
8289 Display *dpy = FRAME_X_DISPLAY (f);
8290 unsigned char *tmp_data = NULL;
8291 Atom target_type = XA_ATOM;
8293 *sticky = 0;
8294 *size_state = FULLSCREEN_NONE;
8296 block_input ();
8297 x_catch_errors (dpy);
8298 rc = XGetWindowProperty (dpy, window, dpyinfo->Xatom_net_wm_state,
8299 0, max_len, False, target_type,
8300 &actual_type, &actual_format, &actual_size,
8301 &bytes_remaining, &tmp_data);
8303 if (rc != Success || actual_type != target_type || x_had_errors_p (dpy))
8305 if (tmp_data) XFree (tmp_data);
8306 x_uncatch_errors ();
8307 unblock_input ();
8308 return !FRAME_ICONIFIED_P (f);
8311 x_uncatch_errors ();
8313 for (i = 0; i < actual_size; ++i)
8315 Atom a = ((Atom*)tmp_data)[i];
8316 if (a == dpyinfo->Xatom_net_wm_state_hidden)
8318 is_hidden = 1;
8319 f->output_data.x->net_wm_state_hidden_seen = 1;
8321 else if (a == dpyinfo->Xatom_net_wm_state_maximized_horz)
8323 if (*size_state == FULLSCREEN_HEIGHT)
8324 *size_state = FULLSCREEN_MAXIMIZED;
8325 else
8326 *size_state = FULLSCREEN_WIDTH;
8328 else if (a == dpyinfo->Xatom_net_wm_state_maximized_vert)
8330 if (*size_state == FULLSCREEN_WIDTH)
8331 *size_state = FULLSCREEN_MAXIMIZED;
8332 else
8333 *size_state = FULLSCREEN_HEIGHT;
8335 else if (a == dpyinfo->Xatom_net_wm_state_fullscreen)
8336 *size_state = FULLSCREEN_BOTH;
8337 else if (a == dpyinfo->Xatom_net_wm_state_sticky)
8338 *sticky = 1;
8341 if (tmp_data) XFree (tmp_data);
8342 unblock_input ();
8343 return ! is_hidden;
8346 /* Do fullscreen as specified in extended window manager hints */
8348 static int
8349 do_ewmh_fullscreen (struct frame *f)
8351 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
8352 int have_net_atom = wm_supports (f, dpyinfo->Xatom_net_wm_state);
8353 int cur, dummy;
8355 (void)get_current_wm_state (f, FRAME_OUTER_WINDOW (f), &cur, &dummy);
8357 /* Some window managers don't say they support _NET_WM_STATE, but they do say
8358 they support _NET_WM_STATE_FULLSCREEN. Try that also. */
8359 if (!have_net_atom)
8360 have_net_atom = wm_supports (f, dpyinfo->Xatom_net_wm_state_fullscreen);
8362 if (have_net_atom && cur != f->want_fullscreen)
8364 Lisp_Object frame;
8366 XSETFRAME (frame, f);
8368 /* Keep number of calls to set_wm_state as low as possible.
8369 Some window managers, or possible Gtk+, hangs when too many
8370 are sent at once. */
8371 switch (f->want_fullscreen)
8373 case FULLSCREEN_BOTH:
8374 if (cur != FULLSCREEN_BOTH)
8375 set_wm_state (frame, 1, dpyinfo->Xatom_net_wm_state_fullscreen,
8376 None);
8377 break;
8378 case FULLSCREEN_WIDTH:
8379 if (cur == FULLSCREEN_BOTH || cur == FULLSCREEN_HEIGHT
8380 || cur == FULLSCREEN_MAXIMIZED)
8381 set_wm_state (frame, 0, dpyinfo->Xatom_net_wm_state_fullscreen,
8382 dpyinfo->Xatom_net_wm_state_maximized_vert);
8383 if (cur != FULLSCREEN_MAXIMIZED)
8384 set_wm_state (frame, 1, dpyinfo->Xatom_net_wm_state_maximized_horz, None);
8385 break;
8386 case FULLSCREEN_HEIGHT:
8387 if (cur == FULLSCREEN_BOTH || cur == FULLSCREEN_WIDTH
8388 || cur == FULLSCREEN_MAXIMIZED)
8389 set_wm_state (frame, 0, dpyinfo->Xatom_net_wm_state_fullscreen,
8390 dpyinfo->Xatom_net_wm_state_maximized_horz);
8391 if (cur != FULLSCREEN_MAXIMIZED)
8392 set_wm_state (frame, 1, dpyinfo->Xatom_net_wm_state_maximized_vert, None);
8393 break;
8394 case FULLSCREEN_MAXIMIZED:
8395 if (cur == FULLSCREEN_BOTH)
8396 set_wm_state (frame, 0, dpyinfo->Xatom_net_wm_state_fullscreen, None);
8397 set_wm_state (frame, 1, dpyinfo->Xatom_net_wm_state_maximized_horz,
8398 dpyinfo->Xatom_net_wm_state_maximized_vert);
8399 break;
8400 case FULLSCREEN_NONE:
8401 if (cur == FULLSCREEN_BOTH)
8402 set_wm_state (frame, 0, dpyinfo->Xatom_net_wm_state_fullscreen, None);
8403 else
8404 set_wm_state (frame, 0, dpyinfo->Xatom_net_wm_state_maximized_horz,
8405 dpyinfo->Xatom_net_wm_state_maximized_vert);
8408 f->want_fullscreen = FULLSCREEN_NONE;
8412 return have_net_atom;
8415 static void
8416 XTfullscreen_hook (struct frame *f)
8418 if (FRAME_VISIBLE_P (f))
8420 block_input ();
8421 x_check_fullscreen (f);
8422 x_sync (f);
8423 unblock_input ();
8428 static int
8429 x_handle_net_wm_state (struct frame *f, const XPropertyEvent *event)
8431 int value = FULLSCREEN_NONE;
8432 Lisp_Object lval;
8433 int sticky = 0;
8434 int not_hidden = get_current_wm_state (f, event->window, &value, &sticky);
8436 lval = Qnil;
8437 switch (value)
8439 case FULLSCREEN_WIDTH:
8440 lval = Qfullwidth;
8441 break;
8442 case FULLSCREEN_HEIGHT:
8443 lval = Qfullheight;
8444 break;
8445 case FULLSCREEN_BOTH:
8446 lval = Qfullboth;
8447 break;
8448 case FULLSCREEN_MAXIMIZED:
8449 lval = Qmaximized;
8450 break;
8453 store_frame_param (f, Qfullscreen, lval);
8454 store_frame_param (f, Qsticky, sticky ? Qt : Qnil);
8456 return not_hidden;
8459 /* Check if we need to resize the frame due to a fullscreen request.
8460 If so needed, resize the frame. */
8461 static void
8462 x_check_fullscreen (struct frame *f)
8464 if (do_ewmh_fullscreen (f))
8465 return;
8467 if (f->output_data.x->parent_desc != FRAME_DISPLAY_INFO (f)->root_window)
8468 return; /* Only fullscreen without WM or with EWM hints (above). */
8470 /* Setting fullscreen to nil doesn't do anything. We could save the
8471 last non-fullscreen size and restore it, but it seems like a
8472 lot of work for this unusual case (no window manager running). */
8474 if (f->want_fullscreen != FULLSCREEN_NONE)
8476 int width = FRAME_PIXEL_WIDTH (f), height = FRAME_PIXEL_HEIGHT (f);
8477 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
8479 switch (f->want_fullscreen)
8481 /* No difference between these two when there is no WM */
8482 case FULLSCREEN_BOTH:
8483 case FULLSCREEN_MAXIMIZED:
8484 width = x_display_pixel_width (dpyinfo);
8485 height = x_display_pixel_height (dpyinfo);
8486 break;
8487 case FULLSCREEN_WIDTH:
8488 width = x_display_pixel_width (dpyinfo);
8489 break;
8490 case FULLSCREEN_HEIGHT:
8491 height = x_display_pixel_height (dpyinfo);
8494 XResizeWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
8495 width, height);
8499 /* This function is called by x_set_offset to determine whether the window
8500 manager interfered with the positioning of the frame. Type A window
8501 managers position the surrounding window manager decorations a small
8502 amount above and left of the user-supplied position. Type B window
8503 managers position the surrounding window manager decorations at the
8504 user-specified position. If we detect a Type A window manager, we
8505 compensate by moving the window right and down by the proper amount. */
8507 static void
8508 x_check_expected_move (struct frame *f, int expected_left, int expected_top)
8510 int current_left = 0, current_top = 0;
8512 /* x_real_positions returns the left and top offsets of the outermost
8513 window manager window around the frame. */
8515 x_real_positions (f, &current_left, &current_top);
8517 if (current_left != expected_left || current_top != expected_top)
8519 /* It's a "Type A" window manager. */
8521 int adjusted_left;
8522 int adjusted_top;
8524 FRAME_DISPLAY_INFO (f)->wm_type = X_WMTYPE_A;
8525 FRAME_X_OUTPUT (f)->move_offset_left = expected_left - current_left;
8526 FRAME_X_OUTPUT (f)->move_offset_top = expected_top - current_top;
8528 /* Now fix the mispositioned frame's location. */
8530 adjusted_left = expected_left + FRAME_X_OUTPUT (f)->move_offset_left;
8531 adjusted_top = expected_top + FRAME_X_OUTPUT (f)->move_offset_top;
8533 XMoveWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
8534 adjusted_left, adjusted_top);
8536 x_sync_with_move (f, expected_left, expected_top, 0);
8538 else
8539 /* It's a "Type B" window manager. We don't have to adjust the
8540 frame's position. */
8542 FRAME_DISPLAY_INFO (f)->wm_type = X_WMTYPE_B;
8546 /* Wait for XGetGeometry to return up-to-date position information for a
8547 recently-moved frame. Call this immediately after calling XMoveWindow.
8548 If FUZZY is non-zero, then LEFT and TOP are just estimates of where the
8549 frame has been moved to, so we use a fuzzy position comparison instead
8550 of an exact comparison. */
8552 static void
8553 x_sync_with_move (struct frame *f, int left, int top, int fuzzy)
8555 int count = 0;
8557 while (count++ < 50)
8559 int current_left = 0, current_top = 0;
8561 /* In theory, this call to XSync only needs to happen once, but in
8562 practice, it doesn't seem to work, hence the need for the surrounding
8563 loop. */
8565 XSync (FRAME_X_DISPLAY (f), False);
8566 x_real_positions (f, &current_left, &current_top);
8568 if (fuzzy)
8570 /* The left fuzz-factor is 10 pixels. The top fuzz-factor is 40
8571 pixels. */
8573 if (eabs (current_left - left) <= 10
8574 && eabs (current_top - top) <= 40)
8575 return;
8577 else if (current_left == left && current_top == top)
8578 return;
8581 /* As a last resort, just wait 0.5 seconds and hope that XGetGeometry
8582 will then return up-to-date position info. */
8584 wait_reading_process_output (0, 500000, 0, 0, Qnil, NULL, 0);
8588 /* Wait for an event on frame F matching EVENTTYPE. */
8589 void
8590 x_wait_for_event (struct frame *f, int eventtype)
8592 int level = interrupt_input_blocked;
8594 fd_set fds;
8595 struct timespec tmo, tmo_at, time_now;
8596 int fd = ConnectionNumber (FRAME_X_DISPLAY (f));
8598 f->wait_event_type = eventtype;
8600 /* Set timeout to 0.1 second. Hopefully not noticeable.
8601 Maybe it should be configurable. */
8602 tmo = make_timespec (0, 100 * 1000 * 1000);
8603 tmo_at = timespec_add (current_timespec (), tmo);
8605 while (f->wait_event_type)
8607 pending_signals = 1;
8608 totally_unblock_input ();
8609 /* XTread_socket is called after unblock. */
8610 block_input ();
8611 interrupt_input_blocked = level;
8613 FD_ZERO (&fds);
8614 FD_SET (fd, &fds);
8616 time_now = current_timespec ();
8617 if (timespec_cmp (tmo_at, time_now) < 0)
8618 break;
8620 tmo = timespec_sub (tmo_at, time_now);
8621 if (pselect (fd + 1, &fds, NULL, NULL, &tmo, NULL) == 0)
8622 break; /* Timeout */
8625 f->wait_event_type = 0;
8629 /* Change the size of frame F's X window to COLS/ROWS in the case F
8630 doesn't have a widget. If CHANGE_GRAVITY is 1, we change to
8631 top-left-corner window gravity for this size change and subsequent
8632 size changes. Otherwise we leave the window gravity unchanged. */
8634 static void
8635 x_set_window_size_1 (struct frame *f, int change_gravity, int width, int height, bool pixelwise)
8637 int pixelwidth, pixelheight;
8639 check_frame_size (f, &width, &height, pixelwise);
8641 compute_fringe_widths (f, 0);
8643 pixelwidth = ((pixelwise
8644 ? FRAME_TEXT_TO_PIXEL_WIDTH (f, width)
8645 : FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, width))
8646 + FRAME_TOOLBAR_WIDTH (f));
8647 pixelheight = ((pixelwise
8648 ? FRAME_TEXT_TO_PIXEL_HEIGHT (f, height)
8649 : FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, height))
8650 + FRAME_MENUBAR_HEIGHT (f)
8651 + FRAME_TOOLBAR_HEIGHT (f));
8652 if (change_gravity) f->win_gravity = NorthWestGravity;
8653 x_wm_set_size_hint (f, (long) 0, 0);
8654 XResizeWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
8655 pixelwidth, pixelheight);
8658 /* We've set {FRAME,PIXEL}_{WIDTH,HEIGHT} to the values we hope to
8659 receive in the ConfigureNotify event; if we get what we asked
8660 for, then the event won't cause the screen to become garbaged, so
8661 we have to make sure to do it here. */
8662 SET_FRAME_GARBAGED (f);
8664 /* Now, strictly speaking, we can't be sure that this is accurate,
8665 but the window manager will get around to dealing with the size
8666 change request eventually, and we'll hear how it went when the
8667 ConfigureNotify event gets here.
8669 We could just not bother storing any of this information here,
8670 and let the ConfigureNotify event set everything up, but that
8671 might be kind of confusing to the Lisp code, since size changes
8672 wouldn't be reported in the frame parameters until some random
8673 point in the future when the ConfigureNotify event arrives.
8675 We pass 1 for DELAY since we can't run Lisp code inside of
8676 a BLOCK_INPUT. */
8678 /* But the ConfigureNotify may in fact never arrive, and then this is
8679 not right if the frame is visible. Instead wait (with timeout)
8680 for the ConfigureNotify. */
8681 if (FRAME_VISIBLE_P (f))
8682 x_wait_for_event (f, ConfigureNotify);
8683 else
8685 change_frame_size (f, width, height, 0, 1, 0, 1);
8686 x_sync (f);
8691 /* Call this to change the size of frame F's x-window.
8692 If CHANGE_GRAVITY is 1, we change to top-left-corner window gravity
8693 for this size change and subsequent size changes.
8694 Otherwise we leave the window gravity unchanged. */
8696 void
8697 x_set_window_size (struct frame *f, int change_gravity, int width, int height, bool pixelwise)
8699 block_input ();
8701 check_frame_size (f, &width, &height, pixelwise);
8703 if (NILP (tip_frame) || XFRAME (tip_frame) != f)
8705 int text_width, text_height;
8707 /* When the frame is maximized/fullscreen or running under for
8708 example Xmonad, x_set_window_size_1 will be a no-op.
8709 In that case, the right thing to do is extend rows/width to
8710 the current frame size. We do that first if x_set_window_size_1
8711 turns out to not be a no-op (there is no way to know).
8712 The size will be adjusted again if the frame gets a
8713 ConfigureNotify event as a result of x_set_window_size. */
8714 int pixelh = FRAME_PIXEL_HEIGHT (f);
8715 #ifdef USE_X_TOOLKIT
8716 /* The menu bar is not part of text lines. The tool bar
8717 is however. */
8718 pixelh -= FRAME_MENUBAR_HEIGHT (f);
8719 #endif
8720 text_width = FRAME_PIXEL_TO_TEXT_WIDTH (f, FRAME_PIXEL_WIDTH (f));
8721 text_height = FRAME_PIXEL_TO_TEXT_HEIGHT (f, pixelh);
8723 change_frame_size (f, text_width, text_height, 0, 1, 0, 1);
8726 #ifdef USE_GTK
8727 if (FRAME_GTK_WIDGET (f))
8728 if (! pixelwise)
8729 xg_frame_set_char_size (f, width * FRAME_COLUMN_WIDTH (f),
8730 height * FRAME_LINE_HEIGHT (f));
8731 else
8732 xg_frame_set_char_size (f, width, height);
8733 else
8734 x_set_window_size_1 (f, change_gravity, width, height, pixelwise);
8735 #else /* not USE_GTK */
8737 x_set_window_size_1 (f, change_gravity, width, height, pixelwise);
8738 #if !defined USE_X_TOOLKIT
8739 x_clear_under_internal_border (f);
8740 #endif
8742 #endif /* not USE_GTK */
8744 /* If cursor was outside the new size, mark it as off. */
8745 mark_window_cursors_off (XWINDOW (f->root_window));
8747 /* Clear out any recollection of where the mouse highlighting was,
8748 since it might be in a place that's outside the new frame size.
8749 Actually checking whether it is outside is a pain in the neck,
8750 so don't try--just let the highlighting be done afresh with new size. */
8751 cancel_mouse_face (f);
8753 unblock_input ();
8756 /* Mouse warping. */
8758 void
8759 x_set_mouse_position (struct frame *f, int x, int y)
8761 int pix_x, pix_y;
8763 pix_x = FRAME_COL_TO_PIXEL_X (f, x) + FRAME_COLUMN_WIDTH (f) / 2;
8764 pix_y = FRAME_LINE_TO_PIXEL_Y (f, y) + FRAME_LINE_HEIGHT (f) / 2;
8766 if (pix_x < 0) pix_x = 0;
8767 if (pix_x > FRAME_PIXEL_WIDTH (f)) pix_x = FRAME_PIXEL_WIDTH (f);
8769 if (pix_y < 0) pix_y = 0;
8770 if (pix_y > FRAME_PIXEL_HEIGHT (f)) pix_y = FRAME_PIXEL_HEIGHT (f);
8772 block_input ();
8774 XWarpPointer (FRAME_X_DISPLAY (f), None, FRAME_X_WINDOW (f),
8775 0, 0, 0, 0, pix_x, pix_y);
8776 unblock_input ();
8779 /* Move the mouse to position pixel PIX_X, PIX_Y relative to frame F. */
8781 void
8782 x_set_mouse_pixel_position (struct frame *f, int pix_x, int pix_y)
8784 block_input ();
8786 XWarpPointer (FRAME_X_DISPLAY (f), None, FRAME_X_WINDOW (f),
8787 0, 0, 0, 0, pix_x, pix_y);
8788 unblock_input ();
8791 /* Raise frame F. */
8793 void
8794 x_raise_frame (struct frame *f)
8796 block_input ();
8797 if (FRAME_VISIBLE_P (f))
8798 XRaiseWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f));
8799 XFlush (FRAME_X_DISPLAY (f));
8800 unblock_input ();
8803 /* Lower frame F. */
8805 static void
8806 x_lower_frame (struct frame *f)
8808 if (FRAME_VISIBLE_P (f))
8810 block_input ();
8811 XLowerWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f));
8812 XFlush (FRAME_X_DISPLAY (f));
8813 unblock_input ();
8817 /* Request focus with XEmbed */
8819 void
8820 xembed_request_focus (struct frame *f)
8822 /* See XEmbed Protocol Specification at
8823 http://freedesktop.org/wiki/Specifications/xembed-spec */
8824 if (FRAME_VISIBLE_P (f))
8825 xembed_send_message (f, CurrentTime,
8826 XEMBED_REQUEST_FOCUS, 0, 0, 0);
8829 /* Activate frame with Extended Window Manager Hints */
8831 void
8832 x_ewmh_activate_frame (struct frame *f)
8834 /* See Window Manager Specification/Extended Window Manager Hints at
8835 http://freedesktop.org/wiki/Specifications/wm-spec */
8837 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
8839 if (FRAME_VISIBLE_P (f) && wm_supports (f, dpyinfo->Xatom_net_active_window))
8841 Lisp_Object frame;
8842 XSETFRAME (frame, f);
8843 x_send_client_event (frame, make_number (0), frame,
8844 dpyinfo->Xatom_net_active_window,
8845 make_number (32),
8846 list2i (1, dpyinfo->last_user_time));
8850 static void
8851 XTframe_raise_lower (struct frame *f, int raise_flag)
8853 if (raise_flag)
8854 x_raise_frame (f);
8855 else
8856 x_lower_frame (f);
8859 /* XEmbed implementation. */
8861 #if defined USE_X_TOOLKIT || ! defined USE_GTK
8863 /* XEmbed implementation. */
8865 #define XEMBED_VERSION 0
8867 static void
8868 xembed_set_info (struct frame *f, enum xembed_info flags)
8870 unsigned long data[2];
8871 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
8873 data[0] = XEMBED_VERSION;
8874 data[1] = flags;
8876 XChangeProperty (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
8877 dpyinfo->Xatom_XEMBED_INFO, dpyinfo->Xatom_XEMBED_INFO,
8878 32, PropModeReplace, (unsigned char *) data, 2);
8880 #endif /* defined USE_X_TOOLKIT || ! defined USE_GTK */
8882 static void
8883 xembed_send_message (struct frame *f, Time t, enum xembed_message msg,
8884 long int detail, long int data1, long int data2)
8886 XEvent event;
8888 event.xclient.type = ClientMessage;
8889 event.xclient.window = FRAME_X_OUTPUT (f)->parent_desc;
8890 event.xclient.message_type = FRAME_DISPLAY_INFO (f)->Xatom_XEMBED;
8891 event.xclient.format = 32;
8892 event.xclient.data.l[0] = t;
8893 event.xclient.data.l[1] = msg;
8894 event.xclient.data.l[2] = detail;
8895 event.xclient.data.l[3] = data1;
8896 event.xclient.data.l[4] = data2;
8898 XSendEvent (FRAME_X_DISPLAY (f), FRAME_X_OUTPUT (f)->parent_desc,
8899 False, NoEventMask, &event);
8900 XSync (FRAME_X_DISPLAY (f), False);
8903 /* Change of visibility. */
8905 /* This tries to wait until the frame is really visible.
8906 However, if the window manager asks the user where to position
8907 the frame, this will return before the user finishes doing that.
8908 The frame will not actually be visible at that time,
8909 but it will become visible later when the window manager
8910 finishes with it. */
8912 void
8913 x_make_frame_visible (struct frame *f)
8915 int original_top, original_left;
8916 int tries = 0;
8918 block_input ();
8920 x_set_bitmap_icon (f);
8922 if (! FRAME_VISIBLE_P (f))
8924 /* We test FRAME_GARBAGED_P here to make sure we don't
8925 call x_set_offset a second time
8926 if we get to x_make_frame_visible a second time
8927 before the window gets really visible. */
8928 if (! FRAME_ICONIFIED_P (f)
8929 && ! FRAME_X_EMBEDDED_P (f)
8930 && ! f->output_data.x->asked_for_visible)
8931 x_set_offset (f, f->left_pos, f->top_pos, 0);
8933 f->output_data.x->asked_for_visible = 1;
8935 if (! EQ (Vx_no_window_manager, Qt))
8936 x_wm_set_window_state (f, NormalState);
8937 #ifdef USE_X_TOOLKIT
8938 if (FRAME_X_EMBEDDED_P (f))
8939 xembed_set_info (f, XEMBED_MAPPED);
8940 else
8942 /* This was XtPopup, but that did nothing for an iconified frame. */
8943 XtMapWidget (f->output_data.x->widget);
8945 #else /* not USE_X_TOOLKIT */
8946 #ifdef USE_GTK
8947 gtk_widget_show_all (FRAME_GTK_OUTER_WIDGET (f));
8948 gtk_window_deiconify (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
8949 #else
8950 if (FRAME_X_EMBEDDED_P (f))
8951 xembed_set_info (f, XEMBED_MAPPED);
8952 else
8953 XMapRaised (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
8954 #endif /* not USE_GTK */
8955 #endif /* not USE_X_TOOLKIT */
8958 XFlush (FRAME_X_DISPLAY (f));
8960 /* Synchronize to ensure Emacs knows the frame is visible
8961 before we do anything else. We do this loop with input not blocked
8962 so that incoming events are handled. */
8964 Lisp_Object frame;
8965 /* This must be before UNBLOCK_INPUT
8966 since events that arrive in response to the actions above
8967 will set it when they are handled. */
8968 int previously_visible = f->output_data.x->has_been_visible;
8970 original_left = f->left_pos;
8971 original_top = f->top_pos;
8973 /* This must come after we set COUNT. */
8974 unblock_input ();
8976 /* We unblock here so that arriving X events are processed. */
8978 /* Now move the window back to where it was "supposed to be".
8979 But don't do it if the gravity is negative.
8980 When the gravity is negative, this uses a position
8981 that is 3 pixels too low. Perhaps that's really the border width.
8983 Don't do this if the window has never been visible before,
8984 because the window manager may choose the position
8985 and we don't want to override it. */
8987 if (! FRAME_VISIBLE_P (f)
8988 && ! FRAME_ICONIFIED_P (f)
8989 && ! FRAME_X_EMBEDDED_P (f)
8990 && f->win_gravity == NorthWestGravity
8991 && previously_visible)
8993 Drawable rootw;
8994 int x, y;
8995 unsigned int width, height, border, depth;
8997 block_input ();
8999 /* On some window managers (such as FVWM) moving an existing
9000 window, even to the same place, causes the window manager
9001 to introduce an offset. This can cause the window to move
9002 to an unexpected location. Check the geometry (a little
9003 slow here) and then verify that the window is in the right
9004 place. If the window is not in the right place, move it
9005 there, and take the potential window manager hit. */
9006 XGetGeometry (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
9007 &rootw, &x, &y, &width, &height, &border, &depth);
9009 if (original_left != x || original_top != y)
9010 XMoveWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
9011 original_left, original_top);
9013 unblock_input ();
9016 XSETFRAME (frame, f);
9018 /* Process X events until a MapNotify event has been seen. */
9019 while (!FRAME_VISIBLE_P (f))
9021 /* Force processing of queued events. */
9022 x_sync (f);
9024 /* If on another desktop, the deiconify/map may be ignored and the
9025 frame never becomes visible. XMonad does this.
9026 Prevent an endless loop. */
9027 if (FRAME_ICONIFIED_P (f) && ++tries > 100)
9028 break;
9030 /* This hack is still in use at least for Cygwin. See
9031 http://lists.gnu.org/archive/html/emacs-devel/2013-12/msg00351.html.
9033 Machines that do polling rather than SIGIO have been
9034 observed to go into a busy-wait here. So we'll fake an
9035 alarm signal to let the handler know that there's something
9036 to be read. We used to raise a real alarm, but it seems
9037 that the handler isn't always enabled here. This is
9038 probably a bug. */
9039 if (input_polling_used ())
9041 /* It could be confusing if a real alarm arrives while
9042 processing the fake one. Turn it off and let the
9043 handler reset it. */
9044 int old_poll_suppress_count = poll_suppress_count;
9045 poll_suppress_count = 1;
9046 poll_for_input_1 ();
9047 poll_suppress_count = old_poll_suppress_count;
9050 if (XPending (FRAME_X_DISPLAY (f)))
9052 XEvent xev;
9053 XNextEvent (FRAME_X_DISPLAY (f), &xev);
9054 x_dispatch_event (&xev, FRAME_X_DISPLAY (f));
9060 /* Change from mapped state to withdrawn state. */
9062 /* Make the frame visible (mapped and not iconified). */
9064 void
9065 x_make_frame_invisible (struct frame *f)
9067 Window window;
9069 /* Use the frame's outermost window, not the one we normally draw on. */
9070 window = FRAME_OUTER_WINDOW (f);
9072 /* Don't keep the highlight on an invisible frame. */
9073 if (FRAME_DISPLAY_INFO (f)->x_highlight_frame == f)
9074 FRAME_DISPLAY_INFO (f)->x_highlight_frame = 0;
9076 block_input ();
9078 /* Before unmapping the window, update the WM_SIZE_HINTS property to claim
9079 that the current position of the window is user-specified, rather than
9080 program-specified, so that when the window is mapped again, it will be
9081 placed at the same location, without forcing the user to position it
9082 by hand again (they have already done that once for this window.) */
9083 x_wm_set_size_hint (f, (long) 0, 1);
9085 #ifdef USE_GTK
9086 if (FRAME_GTK_OUTER_WIDGET (f))
9087 gtk_widget_hide (FRAME_GTK_OUTER_WIDGET (f));
9088 else
9089 #else
9090 if (FRAME_X_EMBEDDED_P (f))
9091 xembed_set_info (f, 0);
9092 else
9093 #endif
9096 if (! XWithdrawWindow (FRAME_X_DISPLAY (f), window,
9097 DefaultScreen (FRAME_X_DISPLAY (f))))
9099 unblock_input ();
9100 error ("Can't notify window manager of window withdrawal");
9104 /* We can't distinguish this from iconification
9105 just by the event that we get from the server.
9106 So we can't win using the usual strategy of letting
9107 FRAME_SAMPLE_VISIBILITY set this. So do it by hand,
9108 and synchronize with the server to make sure we agree. */
9109 SET_FRAME_VISIBLE (f, 0);
9110 SET_FRAME_ICONIFIED (f, 0);
9112 x_sync (f);
9114 unblock_input ();
9117 /* Change window state from mapped to iconified. */
9119 void
9120 x_iconify_frame (struct frame *f)
9122 #ifdef USE_X_TOOLKIT
9123 int result;
9124 #endif
9126 /* Don't keep the highlight on an invisible frame. */
9127 if (FRAME_DISPLAY_INFO (f)->x_highlight_frame == f)
9128 FRAME_DISPLAY_INFO (f)->x_highlight_frame = 0;
9130 if (FRAME_ICONIFIED_P (f))
9131 return;
9133 block_input ();
9135 x_set_bitmap_icon (f);
9137 #if defined (USE_GTK)
9138 if (FRAME_GTK_OUTER_WIDGET (f))
9140 if (! FRAME_VISIBLE_P (f))
9141 gtk_widget_show_all (FRAME_GTK_OUTER_WIDGET (f));
9143 gtk_window_iconify (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
9144 SET_FRAME_VISIBLE (f, 0);
9145 SET_FRAME_ICONIFIED (f, 1);
9146 unblock_input ();
9147 return;
9149 #endif
9151 #ifdef USE_X_TOOLKIT
9153 if (! FRAME_VISIBLE_P (f))
9155 if (! EQ (Vx_no_window_manager, Qt))
9156 x_wm_set_window_state (f, IconicState);
9157 /* This was XtPopup, but that did nothing for an iconified frame. */
9158 XtMapWidget (f->output_data.x->widget);
9159 /* The server won't give us any event to indicate
9160 that an invisible frame was changed to an icon,
9161 so we have to record it here. */
9162 SET_FRAME_VISIBLE (f, 0);
9163 SET_FRAME_ICONIFIED (f, 1);
9164 unblock_input ();
9165 return;
9168 result = XIconifyWindow (FRAME_X_DISPLAY (f),
9169 XtWindow (f->output_data.x->widget),
9170 DefaultScreen (FRAME_X_DISPLAY (f)));
9171 unblock_input ();
9173 if (!result)
9174 error ("Can't notify window manager of iconification");
9176 SET_FRAME_ICONIFIED (f, 1);
9177 SET_FRAME_VISIBLE (f, 0);
9179 block_input ();
9180 XFlush (FRAME_X_DISPLAY (f));
9181 unblock_input ();
9182 #else /* not USE_X_TOOLKIT */
9184 /* Make sure the X server knows where the window should be positioned,
9185 in case the user deiconifies with the window manager. */
9186 if (! FRAME_VISIBLE_P (f)
9187 && ! FRAME_ICONIFIED_P (f)
9188 && ! FRAME_X_EMBEDDED_P (f))
9189 x_set_offset (f, f->left_pos, f->top_pos, 0);
9191 /* Since we don't know which revision of X we're running, we'll use both
9192 the X11R3 and X11R4 techniques. I don't know if this is a good idea. */
9194 /* X11R4: send a ClientMessage to the window manager using the
9195 WM_CHANGE_STATE type. */
9197 XEvent msg;
9199 msg.xclient.window = FRAME_X_WINDOW (f);
9200 msg.xclient.type = ClientMessage;
9201 msg.xclient.message_type = FRAME_DISPLAY_INFO (f)->Xatom_wm_change_state;
9202 msg.xclient.format = 32;
9203 msg.xclient.data.l[0] = IconicState;
9205 if (! XSendEvent (FRAME_X_DISPLAY (f),
9206 DefaultRootWindow (FRAME_X_DISPLAY (f)),
9207 False,
9208 SubstructureRedirectMask | SubstructureNotifyMask,
9209 &msg))
9211 unblock_input ();
9212 error ("Can't notify window manager of iconification");
9216 /* X11R3: set the initial_state field of the window manager hints to
9217 IconicState. */
9218 x_wm_set_window_state (f, IconicState);
9220 if (!FRAME_VISIBLE_P (f))
9222 /* If the frame was withdrawn, before, we must map it. */
9223 XMapRaised (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
9226 SET_FRAME_ICONIFIED (f, 1);
9227 SET_FRAME_VISIBLE (f, 0);
9229 XFlush (FRAME_X_DISPLAY (f));
9230 unblock_input ();
9231 #endif /* not USE_X_TOOLKIT */
9235 /* Free X resources of frame F. */
9237 void
9238 x_free_frame_resources (struct frame *f)
9240 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
9241 Mouse_HLInfo *hlinfo = &dpyinfo->mouse_highlight;
9242 #ifdef USE_X_TOOLKIT
9243 Lisp_Object bar;
9244 struct scroll_bar *b;
9245 #endif
9247 block_input ();
9249 /* If a display connection is dead, don't try sending more
9250 commands to the X server. */
9251 if (dpyinfo->display)
9253 /* We must free faces before destroying windows because some
9254 font-driver (e.g. xft) access a window while finishing a
9255 face. */
9256 free_frame_faces (f);
9258 if (f->output_data.x->icon_desc)
9259 XDestroyWindow (FRAME_X_DISPLAY (f), f->output_data.x->icon_desc);
9261 #ifdef USE_X_TOOLKIT
9262 /* Explicitly destroy the scroll bars of the frame. Without
9263 this, we get "BadDrawable" errors from the toolkit later on,
9264 presumably from expose events generated for the disappearing
9265 toolkit scroll bars. */
9266 for (bar = FRAME_SCROLL_BARS (f); !NILP (bar); bar = b->next)
9268 b = XSCROLL_BAR (bar);
9269 x_scroll_bar_remove (b);
9271 #endif
9273 #ifdef HAVE_X_I18N
9274 if (FRAME_XIC (f))
9275 free_frame_xic (f);
9276 #endif
9278 #ifdef USE_X_TOOLKIT
9279 if (f->output_data.x->widget)
9281 XtDestroyWidget (f->output_data.x->widget);
9282 f->output_data.x->widget = NULL;
9284 /* Tooltips don't have widgets, only a simple X window, even if
9285 we are using a toolkit. */
9286 else if (FRAME_X_WINDOW (f))
9287 XDestroyWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
9289 free_frame_menubar (f);
9290 #else /* !USE_X_TOOLKIT */
9292 #ifdef USE_GTK
9293 xg_free_frame_widgets (f);
9294 #endif /* USE_GTK */
9296 if (FRAME_X_WINDOW (f))
9297 XDestroyWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
9298 #endif /* !USE_X_TOOLKIT */
9300 unload_color (f, FRAME_FOREGROUND_PIXEL (f));
9301 unload_color (f, FRAME_BACKGROUND_PIXEL (f));
9302 unload_color (f, f->output_data.x->cursor_pixel);
9303 unload_color (f, f->output_data.x->cursor_foreground_pixel);
9304 unload_color (f, f->output_data.x->border_pixel);
9305 unload_color (f, f->output_data.x->mouse_pixel);
9307 if (f->output_data.x->scroll_bar_background_pixel != -1)
9308 unload_color (f, f->output_data.x->scroll_bar_background_pixel);
9309 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
9310 unload_color (f, f->output_data.x->scroll_bar_foreground_pixel);
9311 #ifdef USE_TOOLKIT_SCROLL_BARS
9312 /* Scrollbar shadow colors. */
9313 if (f->output_data.x->scroll_bar_top_shadow_pixel != -1)
9314 unload_color (f, f->output_data.x->scroll_bar_top_shadow_pixel);
9315 if (f->output_data.x->scroll_bar_bottom_shadow_pixel != -1)
9316 unload_color (f, f->output_data.x->scroll_bar_bottom_shadow_pixel);
9317 #endif /* USE_TOOLKIT_SCROLL_BARS */
9318 if (f->output_data.x->white_relief.pixel != -1)
9319 unload_color (f, f->output_data.x->white_relief.pixel);
9320 if (f->output_data.x->black_relief.pixel != -1)
9321 unload_color (f, f->output_data.x->black_relief.pixel);
9323 x_free_gcs (f);
9325 /* Free extra GCs allocated by x_setup_relief_colors. */
9326 if (f->output_data.x->white_relief.gc)
9328 XFreeGC (dpyinfo->display, f->output_data.x->white_relief.gc);
9329 f->output_data.x->white_relief.gc = 0;
9331 if (f->output_data.x->black_relief.gc)
9333 XFreeGC (dpyinfo->display, f->output_data.x->black_relief.gc);
9334 f->output_data.x->black_relief.gc = 0;
9337 /* Free cursors. */
9338 if (f->output_data.x->text_cursor != 0)
9339 XFreeCursor (FRAME_X_DISPLAY (f), f->output_data.x->text_cursor);
9340 if (f->output_data.x->nontext_cursor != 0)
9341 XFreeCursor (FRAME_X_DISPLAY (f), f->output_data.x->nontext_cursor);
9342 if (f->output_data.x->modeline_cursor != 0)
9343 XFreeCursor (FRAME_X_DISPLAY (f), f->output_data.x->modeline_cursor);
9344 if (f->output_data.x->hand_cursor != 0)
9345 XFreeCursor (FRAME_X_DISPLAY (f), f->output_data.x->hand_cursor);
9346 if (f->output_data.x->hourglass_cursor != 0)
9347 XFreeCursor (FRAME_X_DISPLAY (f), f->output_data.x->hourglass_cursor);
9348 if (f->output_data.x->horizontal_drag_cursor != 0)
9349 XFreeCursor (FRAME_X_DISPLAY (f), f->output_data.x->horizontal_drag_cursor);
9350 if (f->output_data.x->vertical_drag_cursor != 0)
9351 XFreeCursor (FRAME_X_DISPLAY (f), f->output_data.x->vertical_drag_cursor);
9353 XFlush (FRAME_X_DISPLAY (f));
9356 xfree (f->output_data.x->saved_menu_event);
9357 xfree (f->output_data.x);
9358 f->output_data.x = NULL;
9360 if (f == dpyinfo->x_focus_frame)
9361 dpyinfo->x_focus_frame = 0;
9362 if (f == dpyinfo->x_focus_event_frame)
9363 dpyinfo->x_focus_event_frame = 0;
9364 if (f == dpyinfo->x_highlight_frame)
9365 dpyinfo->x_highlight_frame = 0;
9366 if (f == hlinfo->mouse_face_mouse_frame)
9367 reset_mouse_highlight (hlinfo);
9369 unblock_input ();
9373 /* Destroy the X window of frame F. */
9375 static void
9376 x_destroy_window (struct frame *f)
9378 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
9380 /* If a display connection is dead, don't try sending more
9381 commands to the X server. */
9382 if (dpyinfo->display != 0)
9383 x_free_frame_resources (f);
9385 dpyinfo->reference_count--;
9389 /* Setting window manager hints. */
9391 /* Set the normal size hints for the window manager, for frame F.
9392 FLAGS is the flags word to use--or 0 meaning preserve the flags
9393 that the window now has.
9394 If USER_POSITION, set the USPosition
9395 flag (this is useful when FLAGS is 0).
9396 The GTK version is in gtkutils.c. */
9398 #ifndef USE_GTK
9399 void
9400 x_wm_set_size_hint (struct frame *f, long flags, bool user_position)
9402 XSizeHints size_hints;
9403 Window window = FRAME_OUTER_WINDOW (f);
9405 #ifdef USE_X_TOOLKIT
9406 if (f->output_data.x->widget)
9408 widget_update_wm_size_hints (f->output_data.x->widget);
9409 return;
9411 #endif
9413 /* Setting PMaxSize caused various problems. */
9414 size_hints.flags = PResizeInc | PMinSize /* | PMaxSize */;
9416 size_hints.x = f->left_pos;
9417 size_hints.y = f->top_pos;
9419 size_hints.height = FRAME_PIXEL_HEIGHT (f);
9420 size_hints.width = FRAME_PIXEL_WIDTH (f);
9422 size_hints.width_inc = frame_resize_pixelwise ? 1 : FRAME_COLUMN_WIDTH (f);
9423 size_hints.height_inc = frame_resize_pixelwise ? 1 : FRAME_LINE_HEIGHT (f);
9425 size_hints.max_width = x_display_pixel_width (FRAME_DISPLAY_INFO (f))
9426 - FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, 0);
9427 size_hints.max_height = x_display_pixel_height (FRAME_DISPLAY_INFO (f))
9428 - FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, 0);
9430 /* Calculate the base and minimum sizes. */
9432 int base_width, base_height;
9433 int min_rows = 0, min_cols = 0;
9435 base_width = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, 0);
9436 base_height = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, 0);
9438 check_frame_size (f, &min_cols, &min_rows, 0);
9440 if (frame_resize_pixelwise)
9441 /* Needed to prevent a bad protocol error crash when making the
9442 frame size very small. */
9444 min_cols = 2 * min_cols;
9445 min_rows = 2 * min_rows;
9448 /* The window manager uses the base width hints to calculate the
9449 current number of rows and columns in the frame while
9450 resizing; min_width and min_height aren't useful for this
9451 purpose, since they might not give the dimensions for a
9452 zero-row, zero-column frame.
9454 We use the base_width and base_height members if we have
9455 them; otherwise, we set the min_width and min_height members
9456 to the size for a zero x zero frame. */
9458 size_hints.flags |= PBaseSize;
9459 size_hints.base_width = base_width;
9460 size_hints.base_height = base_height + FRAME_MENUBAR_HEIGHT (f);
9461 size_hints.min_width = base_width + min_cols * FRAME_COLUMN_WIDTH (f);
9462 size_hints.min_height = base_height + min_rows * FRAME_LINE_HEIGHT (f);
9465 /* If we don't need the old flags, we don't need the old hint at all. */
9466 if (flags)
9468 size_hints.flags |= flags;
9469 goto no_read;
9473 XSizeHints hints; /* Sometimes I hate X Windows... */
9474 long supplied_return;
9475 int value;
9477 value = XGetWMNormalHints (FRAME_X_DISPLAY (f), window, &hints,
9478 &supplied_return);
9480 if (flags)
9481 size_hints.flags |= flags;
9482 else
9484 if (value == 0)
9485 hints.flags = 0;
9486 if (hints.flags & PSize)
9487 size_hints.flags |= PSize;
9488 if (hints.flags & PPosition)
9489 size_hints.flags |= PPosition;
9490 if (hints.flags & USPosition)
9491 size_hints.flags |= USPosition;
9492 if (hints.flags & USSize)
9493 size_hints.flags |= USSize;
9497 no_read:
9499 #ifdef PWinGravity
9500 size_hints.win_gravity = f->win_gravity;
9501 size_hints.flags |= PWinGravity;
9503 if (user_position)
9505 size_hints.flags &= ~ PPosition;
9506 size_hints.flags |= USPosition;
9508 #endif /* PWinGravity */
9510 XSetWMNormalHints (FRAME_X_DISPLAY (f), window, &size_hints);
9512 #endif /* not USE_GTK */
9514 /* Used for IconicState or NormalState */
9516 static void
9517 x_wm_set_window_state (struct frame *f, int state)
9519 #ifdef USE_X_TOOLKIT
9520 Arg al[1];
9522 XtSetArg (al[0], XtNinitialState, state);
9523 XtSetValues (f->output_data.x->widget, al, 1);
9524 #else /* not USE_X_TOOLKIT */
9525 Window window = FRAME_X_WINDOW (f);
9527 f->output_data.x->wm_hints.flags |= StateHint;
9528 f->output_data.x->wm_hints.initial_state = state;
9530 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints);
9531 #endif /* not USE_X_TOOLKIT */
9534 static void
9535 x_wm_set_icon_pixmap (struct frame *f, ptrdiff_t pixmap_id)
9537 Pixmap icon_pixmap, icon_mask;
9539 #if !defined USE_X_TOOLKIT && !defined USE_GTK
9540 Window window = FRAME_OUTER_WINDOW (f);
9541 #endif
9543 if (pixmap_id > 0)
9545 icon_pixmap = x_bitmap_pixmap (f, pixmap_id);
9546 f->output_data.x->wm_hints.icon_pixmap = icon_pixmap;
9547 icon_mask = x_bitmap_mask (f, pixmap_id);
9548 f->output_data.x->wm_hints.icon_mask = icon_mask;
9550 else
9552 /* It seems there is no way to turn off use of an icon
9553 pixmap. */
9554 return;
9558 #ifdef USE_GTK
9560 xg_set_frame_icon (f, icon_pixmap, icon_mask);
9561 return;
9564 #elif defined (USE_X_TOOLKIT) /* same as in x_wm_set_window_state. */
9567 Arg al[1];
9568 XtSetArg (al[0], XtNiconPixmap, icon_pixmap);
9569 XtSetValues (f->output_data.x->widget, al, 1);
9570 XtSetArg (al[0], XtNiconMask, icon_mask);
9571 XtSetValues (f->output_data.x->widget, al, 1);
9574 #else /* not USE_X_TOOLKIT && not USE_GTK */
9576 f->output_data.x->wm_hints.flags |= (IconPixmapHint | IconMaskHint);
9577 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints);
9579 #endif /* not USE_X_TOOLKIT && not USE_GTK */
9582 void
9583 x_wm_set_icon_position (struct frame *f, int icon_x, int icon_y)
9585 Window window = FRAME_OUTER_WINDOW (f);
9587 f->output_data.x->wm_hints.flags |= IconPositionHint;
9588 f->output_data.x->wm_hints.icon_x = icon_x;
9589 f->output_data.x->wm_hints.icon_y = icon_y;
9591 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints);
9595 /***********************************************************************
9596 Fonts
9597 ***********************************************************************/
9599 #ifdef GLYPH_DEBUG
9601 /* Check that FONT is valid on frame F. It is if it can be found in F's
9602 font table. */
9604 static void
9605 x_check_font (struct frame *f, struct font *font)
9607 eassert (font != NULL && ! NILP (font->props[FONT_TYPE_INDEX]));
9608 if (font->driver->check)
9609 eassert (font->driver->check (f, font) == 0);
9612 #endif /* GLYPH_DEBUG */
9615 /***********************************************************************
9616 Initialization
9617 ***********************************************************************/
9619 #ifdef USE_X_TOOLKIT
9620 static XrmOptionDescRec emacs_options[] = {
9621 {"-geometry", ".geometry", XrmoptionSepArg, NULL},
9622 {"-iconic", ".iconic", XrmoptionNoArg, (XtPointer) "yes"},
9624 {"-internal-border-width", "*EmacsScreen.internalBorderWidth",
9625 XrmoptionSepArg, NULL},
9626 {"-ib", "*EmacsScreen.internalBorderWidth", XrmoptionSepArg, NULL},
9628 {"-T", "*EmacsShell.title", XrmoptionSepArg, (XtPointer) NULL},
9629 {"-wn", "*EmacsShell.title", XrmoptionSepArg, (XtPointer) NULL},
9630 {"-title", "*EmacsShell.title", XrmoptionSepArg, (XtPointer) NULL},
9631 {"-iconname", "*EmacsShell.iconName", XrmoptionSepArg, (XtPointer) NULL},
9632 {"-in", "*EmacsShell.iconName", XrmoptionSepArg, (XtPointer) NULL},
9633 {"-mc", "*pointerColor", XrmoptionSepArg, (XtPointer) NULL},
9634 {"-cr", "*cursorColor", XrmoptionSepArg, (XtPointer) NULL}
9637 /* Whether atimer for Xt timeouts is activated or not. */
9639 static int x_timeout_atimer_activated_flag;
9641 #endif /* USE_X_TOOLKIT */
9643 static int x_initialized;
9645 /* Test whether two display-name strings agree up to the dot that separates
9646 the screen number from the server number. */
9647 static int
9648 same_x_server (const char *name1, const char *name2)
9650 int seen_colon = 0;
9651 const char *system_name = SSDATA (Vsystem_name);
9652 ptrdiff_t system_name_length = SBYTES (Vsystem_name);
9653 ptrdiff_t length_until_period = 0;
9655 while (system_name[length_until_period] != 0
9656 && system_name[length_until_period] != '.')
9657 length_until_period++;
9659 /* Treat `unix' like an empty host name. */
9660 if (! strncmp (name1, "unix:", 5))
9661 name1 += 4;
9662 if (! strncmp (name2, "unix:", 5))
9663 name2 += 4;
9664 /* Treat this host's name like an empty host name. */
9665 if (! strncmp (name1, system_name, system_name_length)
9666 && name1[system_name_length] == ':')
9667 name1 += system_name_length;
9668 if (! strncmp (name2, system_name, system_name_length)
9669 && name2[system_name_length] == ':')
9670 name2 += system_name_length;
9671 /* Treat this host's domainless name like an empty host name. */
9672 if (! strncmp (name1, system_name, length_until_period)
9673 && name1[length_until_period] == ':')
9674 name1 += length_until_period;
9675 if (! strncmp (name2, system_name, length_until_period)
9676 && name2[length_until_period] == ':')
9677 name2 += length_until_period;
9679 for (; *name1 != '\0' && *name1 == *name2; name1++, name2++)
9681 if (*name1 == ':')
9682 seen_colon = 1;
9683 if (seen_colon && *name1 == '.')
9684 return 1;
9686 return (seen_colon
9687 && (*name1 == '.' || *name1 == '\0')
9688 && (*name2 == '.' || *name2 == '\0'));
9691 /* Count number of set bits in mask and number of bits to shift to
9692 get to the first bit. With MASK 0x7e0, *BITS is set to 6, and *OFFSET
9693 to 5. */
9694 static void
9695 get_bits_and_offset (unsigned long mask, int *bits, int *offset)
9697 int nr = 0;
9698 int off = 0;
9700 while (!(mask & 1))
9702 off++;
9703 mask >>= 1;
9706 while (mask & 1)
9708 nr++;
9709 mask >>= 1;
9712 *offset = off;
9713 *bits = nr;
9716 /* Return 1 if display DISPLAY is available for use, 0 otherwise.
9717 But don't permanently open it, just test its availability. */
9719 bool
9720 x_display_ok (const char *display)
9722 Display *dpy;
9723 // XOpenDisplay fails if it gets a signal. Block SIGIO which may arrive.
9724 unrequest_sigio ();
9725 dpy = XOpenDisplay (display);
9726 request_sigio ();
9727 return dpy ? (XCloseDisplay (dpy), 1) : 0;
9730 #ifdef USE_GTK
9731 static void
9732 my_log_handler (const gchar *log_domain, GLogLevelFlags log_level,
9733 const gchar *msg, gpointer user_data)
9735 if (!strstr (msg, "g_set_prgname"))
9736 fprintf (stderr, "%s-WARNING **: %s\n", log_domain, msg);
9738 #endif
9740 /* Current X display connection identifier. Incremented for each next
9741 connection established. */
9742 static unsigned x_display_id;
9744 /* Open a connection to X display DISPLAY_NAME, and return
9745 the structure that describes the open display.
9746 If we cannot contact the display, return null. */
9748 struct x_display_info *
9749 x_term_init (Lisp_Object display_name, char *xrm_option, char *resource_name)
9751 int connection;
9752 Display *dpy;
9753 struct terminal *terminal;
9754 struct x_display_info *dpyinfo;
9755 XrmDatabase xrdb;
9756 ptrdiff_t lim;
9758 block_input ();
9760 if (!x_initialized)
9762 x_initialize ();
9763 ++x_initialized;
9766 if (! x_display_ok (SSDATA (display_name)))
9767 error ("Display %s can't be opened", SSDATA (display_name));
9769 #ifdef USE_GTK
9771 #define NUM_ARGV 10
9772 int argc;
9773 char *argv[NUM_ARGV];
9774 char **argv2 = argv;
9775 guint id;
9777 if (x_initialized++ > 1)
9779 xg_display_open (SSDATA (display_name), &dpy);
9781 else
9783 static char display_opt[] = "--display";
9784 static char name_opt[] = "--name";
9786 for (argc = 0; argc < NUM_ARGV; ++argc)
9787 argv[argc] = 0;
9789 argc = 0;
9790 argv[argc++] = initial_argv[0];
9792 if (! NILP (display_name))
9794 argv[argc++] = display_opt;
9795 argv[argc++] = SSDATA (display_name);
9798 argv[argc++] = name_opt;
9799 argv[argc++] = resource_name;
9801 XSetLocaleModifiers ("");
9803 /* Emacs can only handle core input events, so make sure
9804 Gtk doesn't use Xinput or Xinput2 extensions. */
9805 xputenv ("GDK_CORE_DEVICE_EVENTS=1");
9807 /* Work around GLib bug that outputs a faulty warning. See
9808 https://bugzilla.gnome.org/show_bug.cgi?id=563627. */
9809 id = g_log_set_handler ("GLib", G_LOG_LEVEL_WARNING | G_LOG_FLAG_FATAL
9810 | G_LOG_FLAG_RECURSION, my_log_handler, NULL);
9812 /* NULL window -> events for all windows go to our function.
9813 Call before gtk_init so Gtk+ event filters comes after our. */
9814 gdk_window_add_filter (NULL, event_handler_gdk, NULL);
9816 /* gtk_init does set_locale. Fix locale before and after. */
9817 fixup_locale ();
9818 unrequest_sigio (); // See comment in x_display_ok.
9819 gtk_init (&argc, &argv2);
9820 request_sigio ();
9821 fixup_locale ();
9823 g_log_remove_handler ("GLib", id);
9825 xg_initialize ();
9827 dpy = DEFAULT_GDK_DISPLAY ();
9829 #if ! GTK_CHECK_VERSION (2, 90, 0)
9830 /* Load our own gtkrc if it exists. */
9832 const char *file = "~/.emacs.d/gtkrc";
9833 Lisp_Object s, abs_file;
9835 s = build_string (file);
9836 abs_file = Fexpand_file_name (s, Qnil);
9838 if (! NILP (abs_file) && !NILP (Ffile_readable_p (abs_file)))
9839 gtk_rc_parse (SSDATA (abs_file));
9841 #endif
9843 XSetErrorHandler (x_error_handler);
9844 XSetIOErrorHandler (x_io_error_quitter);
9847 #else /* not USE_GTK */
9848 #ifdef USE_X_TOOLKIT
9849 /* weiner@footloose.sps.mot.com reports that this causes
9850 errors with X11R5:
9851 X protocol error: BadAtom (invalid Atom parameter)
9852 on protocol request 18skiloaf.
9853 So let's not use it until R6. */
9854 #ifdef HAVE_X11XTR6
9855 XtSetLanguageProc (NULL, NULL, NULL);
9856 #endif
9859 int argc = 0;
9860 char *argv[3];
9862 argv[0] = "";
9863 argc = 1;
9864 if (xrm_option)
9866 argv[argc++] = "-xrm";
9867 argv[argc++] = xrm_option;
9869 turn_on_atimers (0);
9870 unrequest_sigio (); // See comment in x_display_ok.
9871 dpy = XtOpenDisplay (Xt_app_con, SSDATA (display_name),
9872 resource_name, EMACS_CLASS,
9873 emacs_options, XtNumber (emacs_options),
9874 &argc, argv);
9875 request_sigio ();
9876 turn_on_atimers (1);
9878 #ifdef HAVE_X11XTR6
9879 /* I think this is to compensate for XtSetLanguageProc. */
9880 fixup_locale ();
9881 #endif
9884 #else /* not USE_X_TOOLKIT */
9885 XSetLocaleModifiers ("");
9886 unrequest_sigio (); // See comment in x_display_ok.
9887 dpy = XOpenDisplay (SSDATA (display_name));
9888 request_sigio ();
9889 #endif /* not USE_X_TOOLKIT */
9890 #endif /* not USE_GTK*/
9892 /* Detect failure. */
9893 if (dpy == 0)
9895 unblock_input ();
9896 return 0;
9899 /* We have definitely succeeded. Record the new connection. */
9901 dpyinfo = xzalloc (sizeof *dpyinfo);
9902 terminal = x_create_terminal (dpyinfo);
9905 struct x_display_info *share;
9907 for (share = x_display_list; share; share = share->next)
9908 if (same_x_server (SSDATA (XCAR (share->name_list_element)),
9909 SSDATA (display_name)))
9910 break;
9911 if (share)
9912 terminal->kboard = share->terminal->kboard;
9913 else
9915 terminal->kboard = allocate_kboard (Qx);
9917 if (!EQ (XSYMBOL (Qvendor_specific_keysyms)->function, Qunbound))
9919 char *vendor = ServerVendor (dpy);
9921 /* Protect terminal from GC before removing it from the
9922 list of terminals. */
9923 struct gcpro gcpro1;
9924 Lisp_Object gcpro_term;
9925 XSETTERMINAL (gcpro_term, terminal);
9926 GCPRO1 (gcpro_term);
9928 /* Temporarily hide the partially initialized terminal. */
9929 terminal_list = terminal->next_terminal;
9930 unblock_input ();
9931 kset_system_key_alist
9932 (terminal->kboard,
9933 call1 (Qvendor_specific_keysyms,
9934 vendor ? build_string (vendor) : empty_unibyte_string));
9935 block_input ();
9936 terminal->next_terminal = terminal_list;
9937 terminal_list = terminal;
9938 UNGCPRO;
9941 /* Don't let the initial kboard remain current longer than necessary.
9942 That would cause problems if a file loaded on startup tries to
9943 prompt in the mini-buffer. */
9944 if (current_kboard == initial_kboard)
9945 current_kboard = terminal->kboard;
9947 terminal->kboard->reference_count++;
9950 /* Put this display on the chain. */
9951 dpyinfo->next = x_display_list;
9952 x_display_list = dpyinfo;
9954 dpyinfo->name_list_element = Fcons (display_name, Qnil);
9955 dpyinfo->display = dpy;
9956 dpyinfo->connection = ConnectionNumber (dpyinfo->display);
9958 /* Set the name of the terminal. */
9959 terminal->name = xlispstrdup (display_name);
9961 #if 0
9962 XSetAfterFunction (x_current_display, x_trace_wire);
9963 #endif /* ! 0 */
9965 lim = min (PTRDIFF_MAX, SIZE_MAX) - sizeof "@";
9966 if (lim - SBYTES (Vinvocation_name) < SBYTES (Vsystem_name))
9967 memory_full (SIZE_MAX);
9968 dpyinfo->x_id = ++x_display_id;
9969 dpyinfo->x_id_name = xmalloc (SBYTES (Vinvocation_name)
9970 + SBYTES (Vsystem_name) + 2);
9971 strcat (strcat (strcpy (dpyinfo->x_id_name, SSDATA (Vinvocation_name)), "@"),
9972 SSDATA (Vsystem_name));
9974 /* Figure out which modifier bits mean what. */
9975 x_find_modifier_meanings (dpyinfo);
9977 /* Get the scroll bar cursor. */
9978 #ifdef USE_GTK
9979 /* We must create a GTK cursor, it is required for GTK widgets. */
9980 dpyinfo->xg_cursor = xg_create_default_cursor (dpyinfo->display);
9981 #endif /* USE_GTK */
9983 dpyinfo->vertical_scroll_bar_cursor
9984 = XCreateFontCursor (dpyinfo->display, XC_sb_v_double_arrow);
9986 xrdb = x_load_resources (dpyinfo->display, xrm_option,
9987 resource_name, EMACS_CLASS);
9988 #ifdef HAVE_XRMSETDATABASE
9989 XrmSetDatabase (dpyinfo->display, xrdb);
9990 #else
9991 dpyinfo->display->db = xrdb;
9992 #endif
9993 /* Put the rdb where we can find it in a way that works on
9994 all versions. */
9995 dpyinfo->xrdb = xrdb;
9997 dpyinfo->screen = ScreenOfDisplay (dpyinfo->display,
9998 DefaultScreen (dpyinfo->display));
9999 select_visual (dpyinfo);
10000 dpyinfo->cmap = DefaultColormapOfScreen (dpyinfo->screen);
10001 dpyinfo->root_window = RootWindowOfScreen (dpyinfo->screen);
10002 dpyinfo->icon_bitmap_id = -1;
10003 dpyinfo->wm_type = X_WMTYPE_UNKNOWN;
10005 reset_mouse_highlight (&dpyinfo->mouse_highlight);
10007 /* See if we can construct pixel values from RGB values. */
10008 if (dpyinfo->visual->class == TrueColor)
10010 get_bits_and_offset (dpyinfo->visual->red_mask,
10011 &dpyinfo->red_bits, &dpyinfo->red_offset);
10012 get_bits_and_offset (dpyinfo->visual->blue_mask,
10013 &dpyinfo->blue_bits, &dpyinfo->blue_offset);
10014 get_bits_and_offset (dpyinfo->visual->green_mask,
10015 &dpyinfo->green_bits, &dpyinfo->green_offset);
10018 /* See if a private colormap is requested. */
10019 if (dpyinfo->visual == DefaultVisualOfScreen (dpyinfo->screen))
10021 if (dpyinfo->visual->class == PseudoColor)
10023 Lisp_Object value;
10024 value = display_x_get_resource (dpyinfo,
10025 build_string ("privateColormap"),
10026 build_string ("PrivateColormap"),
10027 Qnil, Qnil);
10028 if (STRINGP (value)
10029 && (!strcmp (SSDATA (value), "true")
10030 || !strcmp (SSDATA (value), "on")))
10031 dpyinfo->cmap = XCopyColormapAndFree (dpyinfo->display, dpyinfo->cmap);
10034 else
10035 dpyinfo->cmap = XCreateColormap (dpyinfo->display, dpyinfo->root_window,
10036 dpyinfo->visual, AllocNone);
10038 #ifdef HAVE_XFT
10040 /* If we are using Xft, check dpi value in X resources.
10041 It is better we use it as well, since Xft will use it, as will all
10042 Gnome applications. If our real DPI is smaller or larger than the
10043 one Xft uses, our font will look smaller or larger than other
10044 for other applications, even if it is the same font name (monospace-10
10045 for example). */
10046 char *v = XGetDefault (dpyinfo->display, "Xft", "dpi");
10047 double d;
10048 if (v != NULL && sscanf (v, "%lf", &d) == 1)
10049 dpyinfo->resy = dpyinfo->resx = d;
10051 #endif
10053 if (dpyinfo->resy < 1)
10055 int screen_number = XScreenNumberOfScreen (dpyinfo->screen);
10056 double pixels = DisplayHeight (dpyinfo->display, screen_number);
10057 double mm = DisplayHeightMM (dpyinfo->display, screen_number);
10058 /* Mac OS X 10.3's Xserver sometimes reports 0.0mm. */
10059 dpyinfo->resy = (mm < 1) ? 100 : pixels * 25.4 / mm;
10060 pixels = DisplayWidth (dpyinfo->display, screen_number);
10061 mm = DisplayWidthMM (dpyinfo->display, screen_number);
10062 /* Mac OS X 10.3's Xserver sometimes reports 0.0mm. */
10063 dpyinfo->resx = (mm < 1) ? 100 : pixels * 25.4 / mm;
10067 static const struct
10069 const char *name;
10070 int offset;
10071 } atom_refs[] = {
10072 #define ATOM_REFS_INIT(string, member) \
10073 { string, offsetof (struct x_display_info, member) },
10074 ATOM_REFS_INIT ("WM_PROTOCOLS", Xatom_wm_protocols)
10075 ATOM_REFS_INIT ("WM_TAKE_FOCUS", Xatom_wm_take_focus)
10076 ATOM_REFS_INIT ("WM_SAVE_YOURSELF", Xatom_wm_save_yourself)
10077 ATOM_REFS_INIT ("WM_DELETE_WINDOW", Xatom_wm_delete_window)
10078 ATOM_REFS_INIT ("WM_CHANGE_STATE", Xatom_wm_change_state)
10079 ATOM_REFS_INIT ("WM_CONFIGURE_DENIED", Xatom_wm_configure_denied)
10080 ATOM_REFS_INIT ("WM_MOVED", Xatom_wm_window_moved)
10081 ATOM_REFS_INIT ("WM_CLIENT_LEADER", Xatom_wm_client_leader)
10082 ATOM_REFS_INIT ("Editres", Xatom_editres)
10083 ATOM_REFS_INIT ("CLIPBOARD", Xatom_CLIPBOARD)
10084 ATOM_REFS_INIT ("TIMESTAMP", Xatom_TIMESTAMP)
10085 ATOM_REFS_INIT ("TEXT", Xatom_TEXT)
10086 ATOM_REFS_INIT ("COMPOUND_TEXT", Xatom_COMPOUND_TEXT)
10087 ATOM_REFS_INIT ("UTF8_STRING", Xatom_UTF8_STRING)
10088 ATOM_REFS_INIT ("DELETE", Xatom_DELETE)
10089 ATOM_REFS_INIT ("MULTIPLE", Xatom_MULTIPLE)
10090 ATOM_REFS_INIT ("INCR", Xatom_INCR)
10091 ATOM_REFS_INIT ("_EMACS_TMP_", Xatom_EMACS_TMP)
10092 ATOM_REFS_INIT ("TARGETS", Xatom_TARGETS)
10093 ATOM_REFS_INIT ("NULL", Xatom_NULL)
10094 ATOM_REFS_INIT ("ATOM", Xatom_ATOM)
10095 ATOM_REFS_INIT ("ATOM_PAIR", Xatom_ATOM_PAIR)
10096 ATOM_REFS_INIT ("CLIPBOARD_MANAGER", Xatom_CLIPBOARD_MANAGER)
10097 ATOM_REFS_INIT ("_XEMBED_INFO", Xatom_XEMBED_INFO)
10098 /* For properties of font. */
10099 ATOM_REFS_INIT ("PIXEL_SIZE", Xatom_PIXEL_SIZE)
10100 ATOM_REFS_INIT ("AVERAGE_WIDTH", Xatom_AVERAGE_WIDTH)
10101 ATOM_REFS_INIT ("_MULE_BASELINE_OFFSET", Xatom_MULE_BASELINE_OFFSET)
10102 ATOM_REFS_INIT ("_MULE_RELATIVE_COMPOSE", Xatom_MULE_RELATIVE_COMPOSE)
10103 ATOM_REFS_INIT ("_MULE_DEFAULT_ASCENT", Xatom_MULE_DEFAULT_ASCENT)
10104 /* Ghostscript support. */
10105 ATOM_REFS_INIT ("DONE", Xatom_DONE)
10106 ATOM_REFS_INIT ("PAGE", Xatom_PAGE)
10107 ATOM_REFS_INIT ("SCROLLBAR", Xatom_Scrollbar)
10108 ATOM_REFS_INIT ("_XEMBED", Xatom_XEMBED)
10109 /* EWMH */
10110 ATOM_REFS_INIT ("_NET_WM_STATE", Xatom_net_wm_state)
10111 ATOM_REFS_INIT ("_NET_WM_STATE_FULLSCREEN", Xatom_net_wm_state_fullscreen)
10112 ATOM_REFS_INIT ("_NET_WM_STATE_MAXIMIZED_HORZ",
10113 Xatom_net_wm_state_maximized_horz)
10114 ATOM_REFS_INIT ("_NET_WM_STATE_MAXIMIZED_VERT",
10115 Xatom_net_wm_state_maximized_vert)
10116 ATOM_REFS_INIT ("_NET_WM_STATE_STICKY", Xatom_net_wm_state_sticky)
10117 ATOM_REFS_INIT ("_NET_WM_STATE_HIDDEN", Xatom_net_wm_state_hidden)
10118 ATOM_REFS_INIT ("_NET_WM_WINDOW_TYPE", Xatom_net_window_type)
10119 ATOM_REFS_INIT ("_NET_WM_WINDOW_TYPE_TOOLTIP",
10120 Xatom_net_window_type_tooltip)
10121 ATOM_REFS_INIT ("_NET_WM_ICON_NAME", Xatom_net_wm_icon_name)
10122 ATOM_REFS_INIT ("_NET_WM_NAME", Xatom_net_wm_name)
10123 ATOM_REFS_INIT ("_NET_SUPPORTED", Xatom_net_supported)
10124 ATOM_REFS_INIT ("_NET_SUPPORTING_WM_CHECK", Xatom_net_supporting_wm_check)
10125 ATOM_REFS_INIT ("_NET_WM_WINDOW_OPACITY", Xatom_net_wm_window_opacity)
10126 ATOM_REFS_INIT ("_NET_ACTIVE_WINDOW", Xatom_net_active_window)
10127 ATOM_REFS_INIT ("_NET_FRAME_EXTENTS", Xatom_net_frame_extents)
10128 ATOM_REFS_INIT ("_NET_CURRENT_DESKTOP", Xatom_net_current_desktop)
10129 ATOM_REFS_INIT ("_NET_WORKAREA", Xatom_net_workarea)
10130 /* Session management */
10131 ATOM_REFS_INIT ("SM_CLIENT_ID", Xatom_SM_CLIENT_ID)
10132 ATOM_REFS_INIT ("_XSETTINGS_SETTINGS", Xatom_xsettings_prop)
10133 ATOM_REFS_INIT ("MANAGER", Xatom_xsettings_mgr)
10136 int i;
10137 const int atom_count = sizeof (atom_refs) / sizeof (atom_refs[0]);
10138 /* 1 for _XSETTINGS_SN */
10139 const int total_atom_count = 1 + atom_count;
10140 Atom *atoms_return = xmalloc (total_atom_count * sizeof *atoms_return);
10141 char **atom_names = xmalloc (total_atom_count * sizeof *atom_names);
10142 static char const xsettings_fmt[] = "_XSETTINGS_S%d";
10143 char xsettings_atom_name[sizeof xsettings_fmt - 2
10144 + INT_STRLEN_BOUND (int)];
10146 for (i = 0; i < atom_count; i++)
10147 atom_names[i] = (char *) atom_refs[i].name;
10149 /* Build _XSETTINGS_SN atom name */
10150 sprintf (xsettings_atom_name, xsettings_fmt,
10151 XScreenNumberOfScreen (dpyinfo->screen));
10152 atom_names[i] = xsettings_atom_name;
10154 XInternAtoms (dpyinfo->display, atom_names, total_atom_count,
10155 False, atoms_return);
10157 for (i = 0; i < atom_count; i++)
10158 *(Atom *) ((char *) dpyinfo + atom_refs[i].offset) = atoms_return[i];
10160 /* Manual copy of last atom */
10161 dpyinfo->Xatom_xsettings_sel = atoms_return[i];
10163 xfree (atom_names);
10164 xfree (atoms_return);
10167 dpyinfo->x_dnd_atoms_size = 8;
10168 dpyinfo->x_dnd_atoms = xmalloc (sizeof *dpyinfo->x_dnd_atoms
10169 * dpyinfo->x_dnd_atoms_size);
10170 dpyinfo->gray
10171 = XCreatePixmapFromBitmapData (dpyinfo->display, dpyinfo->root_window,
10172 gray_bits, gray_width, gray_height,
10173 1, 0, 1);
10175 #ifdef HAVE_X_I18N
10176 xim_initialize (dpyinfo, resource_name);
10177 #endif
10179 xsettings_initialize (dpyinfo);
10181 connection = ConnectionNumber (dpyinfo->display);
10183 /* This is only needed for distinguishing keyboard and process input. */
10184 if (connection != 0)
10185 add_keyboard_wait_descriptor (connection);
10187 #ifdef F_SETOWN
10188 fcntl (connection, F_SETOWN, getpid ());
10189 #endif /* ! defined (F_SETOWN) */
10191 if (interrupt_input)
10192 init_sigio (connection);
10194 #ifdef USE_LUCID
10196 XrmValue d, fr, to;
10197 Font font;
10199 dpy = dpyinfo->display;
10200 d.addr = (XPointer)&dpy;
10201 d.size = sizeof (Display *);
10202 fr.addr = XtDefaultFont;
10203 fr.size = sizeof (XtDefaultFont);
10204 to.size = sizeof (Font *);
10205 to.addr = (XPointer)&font;
10206 x_catch_errors (dpy);
10207 if (!XtCallConverter (dpy, XtCvtStringToFont, &d, 1, &fr, &to, NULL))
10208 emacs_abort ();
10209 if (x_had_errors_p (dpy) || !XQueryFont (dpy, font))
10210 XrmPutLineResource (&xrdb, "Emacs.dialog.*.font: 9x15");
10211 x_uncatch_errors ();
10213 #endif
10215 /* See if we should run in synchronous mode. This is useful
10216 for debugging X code. */
10218 Lisp_Object value;
10219 value = display_x_get_resource (dpyinfo,
10220 build_string ("synchronous"),
10221 build_string ("Synchronous"),
10222 Qnil, Qnil);
10223 if (STRINGP (value)
10224 && (!strcmp (SSDATA (value), "true")
10225 || !strcmp (SSDATA (value), "on")))
10226 XSynchronize (dpyinfo->display, True);
10230 Lisp_Object value;
10231 value = display_x_get_resource (dpyinfo,
10232 build_string ("useXIM"),
10233 build_string ("UseXIM"),
10234 Qnil, Qnil);
10235 #ifdef USE_XIM
10236 if (STRINGP (value)
10237 && (!strcmp (SSDATA (value), "false")
10238 || !strcmp (SSDATA (value), "off")))
10239 use_xim = false;
10240 #else
10241 if (STRINGP (value)
10242 && (!strcmp (SSDATA (value), "true")
10243 || !strcmp (SSDATA (value), "on")))
10244 use_xim = true;
10245 #endif
10248 #ifdef HAVE_X_SM
10249 /* Only do this for the very first display in the Emacs session.
10250 Ignore X session management when Emacs was first started on a
10251 tty. */
10252 if (terminal->id == 1)
10253 x_session_initialize (dpyinfo);
10254 #endif
10256 unblock_input ();
10258 return dpyinfo;
10261 /* Get rid of display DPYINFO, deleting all frames on it,
10262 and without sending any more commands to the X server. */
10264 static void
10265 x_delete_display (struct x_display_info *dpyinfo)
10267 struct terminal *t;
10269 /* Close all frames and delete the generic struct terminal for this
10270 X display. */
10271 for (t = terminal_list; t; t = t->next_terminal)
10272 if (t->type == output_x_window && t->display_info.x == dpyinfo)
10274 #ifdef HAVE_X_SM
10275 /* Close X session management when we close its display. */
10276 if (t->id == 1 && x_session_have_connection ())
10277 x_session_close ();
10278 #endif
10279 delete_terminal (t);
10280 break;
10283 if (next_noop_dpyinfo == dpyinfo)
10284 next_noop_dpyinfo = dpyinfo->next;
10286 if (x_display_list == dpyinfo)
10287 x_display_list = dpyinfo->next;
10288 else
10290 struct x_display_info *tail;
10292 for (tail = x_display_list; tail; tail = tail->next)
10293 if (tail->next == dpyinfo)
10294 tail->next = tail->next->next;
10297 xfree (dpyinfo->x_id_name);
10298 xfree (dpyinfo->x_dnd_atoms);
10299 xfree (dpyinfo->color_cells);
10300 xfree (dpyinfo);
10303 #ifdef USE_X_TOOLKIT
10305 /* Atimer callback function for TIMER. Called every 0.1s to process
10306 Xt timeouts, if needed. We must avoid calling XtAppPending as
10307 much as possible because that function does an implicit XFlush
10308 that slows us down. */
10310 static void
10311 x_process_timeouts (struct atimer *timer)
10313 block_input ();
10314 x_timeout_atimer_activated_flag = 0;
10315 if (toolkit_scroll_bar_interaction || popup_activated ())
10317 while (XtAppPending (Xt_app_con) & XtIMTimer)
10318 XtAppProcessEvent (Xt_app_con, XtIMTimer);
10319 /* Reactivate the atimer for next time. */
10320 x_activate_timeout_atimer ();
10322 unblock_input ();
10325 /* Install an asynchronous timer that processes Xt timeout events
10326 every 0.1s as long as either `toolkit_scroll_bar_interaction' or
10327 `popup_activated_flag' (in xmenu.c) is set. Make sure to call this
10328 function whenever these variables are set. This is necessary
10329 because some widget sets use timeouts internally, for example the
10330 LessTif menu bar, or the Xaw3d scroll bar. When Xt timeouts aren't
10331 processed, these widgets don't behave normally. */
10333 void
10334 x_activate_timeout_atimer (void)
10336 block_input ();
10337 if (!x_timeout_atimer_activated_flag)
10339 struct timespec interval = make_timespec (0, 100 * 1000 * 1000);
10340 start_atimer (ATIMER_RELATIVE, interval, x_process_timeouts, 0);
10341 x_timeout_atimer_activated_flag = 1;
10343 unblock_input ();
10346 #endif /* USE_X_TOOLKIT */
10349 /* Set up use of X before we make the first connection. */
10351 static struct redisplay_interface x_redisplay_interface =
10353 x_frame_parm_handlers,
10354 x_produce_glyphs,
10355 x_write_glyphs,
10356 x_insert_glyphs,
10357 x_clear_end_of_line,
10358 x_scroll_run,
10359 x_after_update_window_line,
10360 x_update_window_begin,
10361 x_update_window_end,
10362 x_flush,
10363 x_clear_window_mouse_face,
10364 x_get_glyph_overhangs,
10365 x_fix_overlapping_area,
10366 x_draw_fringe_bitmap,
10367 0, /* define_fringe_bitmap */
10368 0, /* destroy_fringe_bitmap */
10369 x_compute_glyph_string_overhangs,
10370 x_draw_glyph_string,
10371 x_define_frame_cursor,
10372 x_clear_frame_area,
10373 x_draw_window_cursor,
10374 x_draw_vertical_window_border,
10375 x_draw_window_divider,
10376 x_shift_glyphs_for_insert
10380 /* This function is called when the last frame on a display is deleted. */
10381 void
10382 x_delete_terminal (struct terminal *terminal)
10384 struct x_display_info *dpyinfo = terminal->display_info.x;
10386 /* Protect against recursive calls. delete_frame in
10387 delete_terminal calls us back when it deletes our last frame. */
10388 if (!terminal->name)
10389 return;
10391 block_input ();
10392 #ifdef HAVE_X_I18N
10393 /* We must close our connection to the XIM server before closing the
10394 X display. */
10395 if (dpyinfo->xim)
10396 xim_close_dpy (dpyinfo);
10397 #endif
10399 /* If called from x_connection_closed, the display may already be closed
10400 and dpyinfo->display was set to 0 to indicate that. */
10401 if (dpyinfo->display)
10403 x_destroy_all_bitmaps (dpyinfo);
10404 XSetCloseDownMode (dpyinfo->display, DestroyAll);
10406 /* Whether or not XCloseDisplay destroys the associated resource
10407 database depends on the version of libX11. To avoid both
10408 crash and memory leak, we dissociate the database from the
10409 display and then destroy dpyinfo->xrdb ourselves.
10411 Unfortunately, the above strategy does not work in some
10412 situations due to a bug in newer versions of libX11: because
10413 XrmSetDatabase doesn't clear the flag XlibDisplayDfltRMDB if
10414 dpy->db is NULL, XCloseDisplay destroys the associated
10415 database whereas it has not been created by XGetDefault
10416 (Bug#21974 in freedesktop.org Bugzilla). As a workaround, we
10417 don't destroy the database here in order to avoid the crash
10418 in the above situations for now, though that may cause memory
10419 leaks in other situations. */
10420 #if 0
10421 #ifdef HAVE_XRMSETDATABASE
10422 XrmSetDatabase (dpyinfo->display, NULL);
10423 #else
10424 dpyinfo->display->db = NULL;
10425 #endif
10426 /* We used to call XrmDestroyDatabase from x_delete_display, but
10427 some older versions of libX11 crash if we call it after
10428 closing all the displays. */
10429 XrmDestroyDatabase (dpyinfo->xrdb);
10430 #endif
10432 #ifdef USE_GTK
10433 xg_display_close (dpyinfo->display);
10434 #else
10435 #ifdef USE_X_TOOLKIT
10436 XtCloseDisplay (dpyinfo->display);
10437 #else
10438 XCloseDisplay (dpyinfo->display);
10439 #endif
10440 #endif /* ! USE_GTK */
10443 /* No more input on this descriptor. */
10444 if (0 <= dpyinfo->connection)
10445 delete_keyboard_wait_descriptor (dpyinfo->connection);
10447 /* Mark as dead. */
10448 dpyinfo->display = NULL;
10449 dpyinfo->connection = -1;
10450 x_delete_display (dpyinfo);
10451 unblock_input ();
10454 /* Create a struct terminal, initialize it with the X11 specific
10455 functions and make DISPLAY->TERMINAL point to it. */
10457 static struct terminal *
10458 x_create_terminal (struct x_display_info *dpyinfo)
10460 struct terminal *terminal;
10462 terminal = create_terminal ();
10464 terminal->type = output_x_window;
10465 terminal->display_info.x = dpyinfo;
10466 dpyinfo->terminal = terminal;
10468 /* kboard is initialized in x_term_init. */
10470 terminal->clear_frame_hook = x_clear_frame;
10471 terminal->ins_del_lines_hook = x_ins_del_lines;
10472 terminal->delete_glyphs_hook = x_delete_glyphs;
10473 terminal->ring_bell_hook = XTring_bell;
10474 terminal->toggle_invisible_pointer_hook = XTtoggle_invisible_pointer;
10475 terminal->reset_terminal_modes_hook = NULL;
10476 terminal->set_terminal_modes_hook = NULL;
10477 terminal->update_begin_hook = x_update_begin;
10478 terminal->update_end_hook = x_update_end;
10479 terminal->set_terminal_window_hook = NULL;
10480 terminal->read_socket_hook = XTread_socket;
10481 terminal->frame_up_to_date_hook = XTframe_up_to_date;
10482 terminal->mouse_position_hook = XTmouse_position;
10483 terminal->frame_rehighlight_hook = XTframe_rehighlight;
10484 terminal->frame_raise_lower_hook = XTframe_raise_lower;
10485 terminal->fullscreen_hook = XTfullscreen_hook;
10486 terminal->set_vertical_scroll_bar_hook = XTset_vertical_scroll_bar;
10487 terminal->condemn_scroll_bars_hook = XTcondemn_scroll_bars;
10488 terminal->redeem_scroll_bar_hook = XTredeem_scroll_bar;
10489 terminal->judge_scroll_bars_hook = XTjudge_scroll_bars;
10491 terminal->delete_frame_hook = x_destroy_window;
10492 terminal->delete_terminal_hook = x_delete_terminal;
10494 terminal->rif = &x_redisplay_interface;
10496 return terminal;
10499 void
10500 x_initialize (void)
10502 baud_rate = 19200;
10504 x_noop_count = 0;
10505 last_tool_bar_item = -1;
10506 any_help_event_p = 0;
10507 ignore_next_mouse_click_timeout = 0;
10509 #ifdef USE_GTK
10510 current_count = -1;
10511 #endif
10513 /* Try to use interrupt input; if we can't, then start polling. */
10514 Fset_input_interrupt_mode (Qt);
10516 #ifdef USE_X_TOOLKIT
10517 XtToolkitInitialize ();
10519 Xt_app_con = XtCreateApplicationContext ();
10521 /* Register a converter from strings to pixels, which uses
10522 Emacs' color allocation infrastructure. */
10523 XtAppSetTypeConverter (Xt_app_con,
10524 XtRString, XtRPixel, cvt_string_to_pixel,
10525 cvt_string_to_pixel_args,
10526 XtNumber (cvt_string_to_pixel_args),
10527 XtCacheByDisplay, cvt_pixel_dtor);
10529 XtAppSetFallbackResources (Xt_app_con, Xt_default_resources);
10530 #endif
10532 #ifdef USE_TOOLKIT_SCROLL_BARS
10533 #ifndef USE_GTK
10534 xaw3d_arrow_scroll = False;
10535 xaw3d_pick_top = True;
10536 #endif
10537 #endif
10539 /* Note that there is no real way portable across R3/R4 to get the
10540 original error handler. */
10541 XSetErrorHandler (x_error_handler);
10542 XSetIOErrorHandler (x_io_error_quitter);
10546 void
10547 syms_of_xterm (void)
10549 x_error_message = NULL;
10551 DEFSYM (Qvendor_specific_keysyms, "vendor-specific-keysyms");
10552 DEFSYM (Qlatin_1, "latin-1");
10554 #ifdef USE_GTK
10555 xg_default_icon_file = build_pure_c_string ("icons/hicolor/scalable/apps/emacs.svg");
10556 staticpro (&xg_default_icon_file);
10558 DEFSYM (Qx_gtk_map_stock, "x-gtk-map-stock");
10559 #endif
10561 DEFVAR_BOOL ("x-use-underline-position-properties",
10562 x_use_underline_position_properties,
10563 doc: /* Non-nil means make use of UNDERLINE_POSITION font properties.
10564 A value of nil means ignore them. If you encounter fonts with bogus
10565 UNDERLINE_POSITION font properties, for example 7x13 on XFree prior
10566 to 4.1, set this to nil. You can also use `underline-minimum-offset'
10567 to override the font's UNDERLINE_POSITION for small font display
10568 sizes. */);
10569 x_use_underline_position_properties = 1;
10571 DEFVAR_BOOL ("x-underline-at-descent-line",
10572 x_underline_at_descent_line,
10573 doc: /* Non-nil means to draw the underline at the same place as the descent line.
10574 A value of nil means to draw the underline according to the value of the
10575 variable `x-use-underline-position-properties', which is usually at the
10576 baseline level. The default value is nil. */);
10577 x_underline_at_descent_line = 0;
10579 DEFVAR_BOOL ("x-mouse-click-focus-ignore-position",
10580 x_mouse_click_focus_ignore_position,
10581 doc: /* Non-nil means that a mouse click to focus a frame does not move point.
10582 This variable is only used when the window manager requires that you
10583 click on a frame to select it (give it focus). In that case, a value
10584 of nil, means that the selected window and cursor position changes to
10585 reflect the mouse click position, while a non-nil value means that the
10586 selected window or cursor position is preserved. */);
10587 x_mouse_click_focus_ignore_position = 0;
10589 DEFVAR_LISP ("x-toolkit-scroll-bars", Vx_toolkit_scroll_bars,
10590 doc: /* Which toolkit scroll bars Emacs uses, if any.
10591 A value of nil means Emacs doesn't use toolkit scroll bars.
10592 With the X Window system, the value is a symbol describing the
10593 X toolkit. Possible values are: gtk, motif, xaw, or xaw3d.
10594 With MS Windows or Nextstep, the value is t. */);
10595 #ifdef USE_TOOLKIT_SCROLL_BARS
10596 #ifdef USE_MOTIF
10597 Vx_toolkit_scroll_bars = intern_c_string ("motif");
10598 #elif defined HAVE_XAW3D
10599 Vx_toolkit_scroll_bars = intern_c_string ("xaw3d");
10600 #elif USE_GTK
10601 Vx_toolkit_scroll_bars = intern_c_string ("gtk");
10602 #else
10603 Vx_toolkit_scroll_bars = intern_c_string ("xaw");
10604 #endif
10605 #else
10606 Vx_toolkit_scroll_bars = Qnil;
10607 #endif
10609 DEFSYM (Qmodifier_value, "modifier-value");
10610 DEFSYM (Qalt, "alt");
10611 Fput (Qalt, Qmodifier_value, make_number (alt_modifier));
10612 DEFSYM (Qhyper, "hyper");
10613 Fput (Qhyper, Qmodifier_value, make_number (hyper_modifier));
10614 DEFSYM (Qmeta, "meta");
10615 Fput (Qmeta, Qmodifier_value, make_number (meta_modifier));
10616 DEFSYM (Qsuper, "super");
10617 Fput (Qsuper, Qmodifier_value, make_number (super_modifier));
10619 DEFVAR_LISP ("x-alt-keysym", Vx_alt_keysym,
10620 doc: /* Which keys Emacs uses for the alt modifier.
10621 This should be one of the symbols `alt', `hyper', `meta', `super'.
10622 For example, `alt' means use the Alt_L and Alt_R keysyms. The default
10623 is nil, which is the same as `alt'. */);
10624 Vx_alt_keysym = Qnil;
10626 DEFVAR_LISP ("x-hyper-keysym", Vx_hyper_keysym,
10627 doc: /* Which keys Emacs uses for the hyper modifier.
10628 This should be one of the symbols `alt', `hyper', `meta', `super'.
10629 For example, `hyper' means use the Hyper_L and Hyper_R keysyms. The
10630 default is nil, which is the same as `hyper'. */);
10631 Vx_hyper_keysym = Qnil;
10633 DEFVAR_LISP ("x-meta-keysym", Vx_meta_keysym,
10634 doc: /* Which keys Emacs uses for the meta modifier.
10635 This should be one of the symbols `alt', `hyper', `meta', `super'.
10636 For example, `meta' means use the Meta_L and Meta_R keysyms. The
10637 default is nil, which is the same as `meta'. */);
10638 Vx_meta_keysym = Qnil;
10640 DEFVAR_LISP ("x-super-keysym", Vx_super_keysym,
10641 doc: /* Which keys Emacs uses for the super modifier.
10642 This should be one of the symbols `alt', `hyper', `meta', `super'.
10643 For example, `super' means use the Super_L and Super_R keysyms. The
10644 default is nil, which is the same as `super'. */);
10645 Vx_super_keysym = Qnil;
10647 DEFVAR_LISP ("x-keysym-table", Vx_keysym_table,
10648 doc: /* Hash table of character codes indexed by X keysym codes. */);
10649 Vx_keysym_table = make_hash_table (hashtest_eql, make_number (900),
10650 make_float (DEFAULT_REHASH_SIZE),
10651 make_float (DEFAULT_REHASH_THRESHOLD),
10652 Qnil);