Finally make package-desc--keywords work
[emacs.git] / src / xterm.c
blob105aaed297251ad19240ef96d5a8eeaef3e525f8
1 /* X Communication module for terminals which understand the X protocol.
3 Copyright (C) 1989, 1993-2014 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;
515 face = FACE_FROM_ID (f, WINDOW_DIVIDER_FACE_ID);
516 if (face)
517 XSetForeground (FRAME_X_DISPLAY (f), f->output_data.x->normal_gc,
518 face->foreground);
520 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
521 f->output_data.x->normal_gc, x0, y0, x1 - x0, y1 - y0);
524 /* End update of window W.
526 Draw vertical borders between horizontally adjacent windows, and
527 display W's cursor if CURSOR_ON_P is non-zero.
529 MOUSE_FACE_OVERWRITTEN_P non-zero means that some row containing
530 glyphs in mouse-face were overwritten. In that case we have to
531 make sure that the mouse-highlight is properly redrawn.
533 W may be a menu bar pseudo-window in case we don't have X toolkit
534 support. Such windows don't have a cursor, so don't display it
535 here. */
537 static void
538 x_update_window_end (struct window *w, bool cursor_on_p,
539 bool mouse_face_overwritten_p)
541 if (!w->pseudo_window_p)
543 block_input ();
545 if (cursor_on_p)
546 display_and_set_cursor (w, 1,
547 w->output_cursor.hpos, w->output_cursor.vpos,
548 w->output_cursor.x, w->output_cursor.y);
550 if (draw_window_fringes (w, 1))
552 if (WINDOW_RIGHT_DIVIDER_WIDTH (w))
553 x_draw_right_divider (w);
554 else
555 x_draw_vertical_border (w);
558 unblock_input ();
561 /* If a row with mouse-face was overwritten, arrange for
562 XTframe_up_to_date to redisplay the mouse highlight. */
563 if (mouse_face_overwritten_p)
564 reset_mouse_highlight (MOUSE_HL_INFO (XFRAME (w->frame)));
568 /* End update of frame F. This function is installed as a hook in
569 update_end. */
571 static void
572 x_update_end (struct frame *f)
574 /* Mouse highlight may be displayed again. */
575 MOUSE_HL_INFO (f)->mouse_face_defer = 0;
577 #ifndef XFlush
578 block_input ();
579 XFlush (FRAME_X_DISPLAY (f));
580 unblock_input ();
581 #endif
585 /* This function is called from various places in xdisp.c
586 whenever a complete update has been performed. */
588 static void
589 XTframe_up_to_date (struct frame *f)
591 if (FRAME_X_P (f))
592 FRAME_MOUSE_UPDATE (f);
596 /* Clear under internal border if any for non-toolkit builds. */
599 #if !defined USE_X_TOOLKIT && !defined USE_GTK
600 void
601 x_clear_under_internal_border (struct frame *f)
603 if (FRAME_INTERNAL_BORDER_WIDTH (f) > 0)
605 Display *display = FRAME_X_DISPLAY (f);
606 Window window = FRAME_X_WINDOW (f);
607 int border = FRAME_INTERNAL_BORDER_WIDTH (f);
608 int width = FRAME_PIXEL_WIDTH (f);
609 int height = FRAME_PIXEL_HEIGHT (f);
610 int margin = FRAME_TOP_MARGIN_HEIGHT (f);
612 block_input ();
613 x_clear_area (display, window, 0, 0, border, height);
614 x_clear_area (display, window, 0, margin, width, border);
615 x_clear_area (display, window, width - border, 0, border, height);
616 x_clear_area (display, window, 0, height - border, width, border);
617 unblock_input ();
620 #endif
622 /* Draw truncation mark bitmaps, continuation mark bitmaps, overlay
623 arrow bitmaps, or clear the fringes if no bitmaps are required
624 before DESIRED_ROW is made current. This function is called from
625 update_window_line only if it is known that there are differences
626 between bitmaps to be drawn between current row and DESIRED_ROW. */
628 static void
629 x_after_update_window_line (struct window *w, struct glyph_row *desired_row)
631 eassert (w);
633 if (!desired_row->mode_line_p && !w->pseudo_window_p)
634 desired_row->redraw_fringe_bitmaps_p = 1;
636 #ifdef USE_X_TOOLKIT
637 /* When a window has disappeared, make sure that no rest of
638 full-width rows stays visible in the internal border. Could
639 check here if updated window is the leftmost/rightmost window,
640 but I guess it's not worth doing since vertically split windows
641 are almost never used, internal border is rarely set, and the
642 overhead is very small. */
644 struct frame *f;
645 int width, height;
647 if (windows_or_buffers_changed
648 && desired_row->full_width_p
649 && (f = XFRAME (w->frame),
650 width = FRAME_INTERNAL_BORDER_WIDTH (f),
651 width != 0)
652 && (height = desired_row->visible_height,
653 height > 0))
655 int y = WINDOW_TO_FRAME_PIXEL_Y (w, max (0, desired_row->y));
657 block_input ();
658 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
659 0, y, width, height);
660 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
661 FRAME_PIXEL_WIDTH (f) - width,
662 y, width, height);
663 unblock_input ();
666 #endif
669 static void
670 x_draw_fringe_bitmap (struct window *w, struct glyph_row *row, struct draw_fringe_bitmap_params *p)
672 struct frame *f = XFRAME (WINDOW_FRAME (w));
673 Display *display = FRAME_X_DISPLAY (f);
674 Window window = FRAME_X_WINDOW (f);
675 GC gc = f->output_data.x->normal_gc;
676 struct face *face = p->face;
678 /* Must clip because of partially visible lines. */
679 x_clip_to_row (w, row, ANY_AREA, gc);
681 if (p->bx >= 0 && !p->overlay_p)
683 /* In case the same realized face is used for fringes and
684 for something displayed in the text (e.g. face `region' on
685 mono-displays, the fill style may have been changed to
686 FillSolid in x_draw_glyph_string_background. */
687 if (face->stipple)
688 XSetFillStyle (display, face->gc, FillOpaqueStippled);
689 else
690 XSetForeground (display, face->gc, face->background);
692 XFillRectangle (display, window, face->gc,
693 p->bx, p->by, p->nx, p->ny);
695 if (!face->stipple)
696 XSetForeground (display, face->gc, face->foreground);
699 if (p->which)
701 char *bits;
702 Pixmap pixmap, clipmask = (Pixmap) 0;
703 int depth = DefaultDepthOfScreen (FRAME_X_SCREEN (f));
704 XGCValues gcv;
706 if (p->wd > 8)
707 bits = (char *) (p->bits + p->dh);
708 else
709 bits = (char *) p->bits + p->dh;
711 /* Draw the bitmap. I believe these small pixmaps can be cached
712 by the server. */
713 pixmap = XCreatePixmapFromBitmapData (display, window, bits, p->wd, p->h,
714 (p->cursor_p
715 ? (p->overlay_p ? face->background
716 : f->output_data.x->cursor_pixel)
717 : face->foreground),
718 face->background, depth);
720 if (p->overlay_p)
722 clipmask = XCreatePixmapFromBitmapData (display,
723 FRAME_DISPLAY_INFO (f)->root_window,
724 bits, p->wd, p->h,
725 1, 0, 1);
726 gcv.clip_mask = clipmask;
727 gcv.clip_x_origin = p->x;
728 gcv.clip_y_origin = p->y;
729 XChangeGC (display, gc, GCClipMask | GCClipXOrigin | GCClipYOrigin, &gcv);
732 XCopyArea (display, pixmap, window, gc, 0, 0,
733 p->wd, p->h, p->x, p->y);
734 XFreePixmap (display, pixmap);
736 if (p->overlay_p)
738 gcv.clip_mask = (Pixmap) 0;
739 XChangeGC (display, gc, GCClipMask, &gcv);
740 XFreePixmap (display, clipmask);
744 XSetClipMask (display, gc, None);
747 /***********************************************************************
748 Glyph display
749 ***********************************************************************/
753 static void x_set_glyph_string_clipping (struct glyph_string *);
754 static void x_set_glyph_string_gc (struct glyph_string *);
755 static void x_draw_glyph_string_foreground (struct glyph_string *);
756 static void x_draw_composite_glyph_string_foreground (struct glyph_string *);
757 static void x_draw_glyph_string_box (struct glyph_string *);
758 static void x_draw_glyph_string (struct glyph_string *);
759 static _Noreturn void x_delete_glyphs (struct frame *, int);
760 static void x_compute_glyph_string_overhangs (struct glyph_string *);
761 static void x_set_cursor_gc (struct glyph_string *);
762 static void x_set_mode_line_face_gc (struct glyph_string *);
763 static void x_set_mouse_face_gc (struct glyph_string *);
764 static bool x_alloc_lighter_color (struct frame *, Display *, Colormap,
765 unsigned long *, double, int);
766 static void x_setup_relief_color (struct frame *, struct relief *,
767 double, int, unsigned long);
768 static void x_setup_relief_colors (struct glyph_string *);
769 static void x_draw_image_glyph_string (struct glyph_string *);
770 static void x_draw_image_relief (struct glyph_string *);
771 static void x_draw_image_foreground (struct glyph_string *);
772 static void x_draw_image_foreground_1 (struct glyph_string *, Pixmap);
773 static void x_clear_glyph_string_rect (struct glyph_string *, int,
774 int, int, int);
775 static void x_draw_relief_rect (struct frame *, int, int, int, int,
776 int, int, int, int, int, int,
777 XRectangle *);
778 static void x_draw_box_rect (struct glyph_string *, int, int, int, int,
779 int, int, int, XRectangle *);
780 static void x_scroll_bar_clear (struct frame *);
782 #ifdef GLYPH_DEBUG
783 static void x_check_font (struct frame *, struct font *);
784 #endif
787 /* Set S->gc to a suitable GC for drawing glyph string S in cursor
788 face. */
790 static void
791 x_set_cursor_gc (struct glyph_string *s)
793 if (s->font == FRAME_FONT (s->f)
794 && s->face->background == FRAME_BACKGROUND_PIXEL (s->f)
795 && s->face->foreground == FRAME_FOREGROUND_PIXEL (s->f)
796 && !s->cmp)
797 s->gc = s->f->output_data.x->cursor_gc;
798 else
800 /* Cursor on non-default face: must merge. */
801 XGCValues xgcv;
802 unsigned long mask;
804 xgcv.background = s->f->output_data.x->cursor_pixel;
805 xgcv.foreground = s->face->background;
807 /* If the glyph would be invisible, try a different foreground. */
808 if (xgcv.foreground == xgcv.background)
809 xgcv.foreground = s->face->foreground;
810 if (xgcv.foreground == xgcv.background)
811 xgcv.foreground = s->f->output_data.x->cursor_foreground_pixel;
812 if (xgcv.foreground == xgcv.background)
813 xgcv.foreground = s->face->foreground;
815 /* Make sure the cursor is distinct from text in this face. */
816 if (xgcv.background == s->face->background
817 && xgcv.foreground == s->face->foreground)
819 xgcv.background = s->face->foreground;
820 xgcv.foreground = s->face->background;
823 IF_DEBUG (x_check_font (s->f, s->font));
824 xgcv.graphics_exposures = False;
825 mask = GCForeground | GCBackground | GCGraphicsExposures;
827 if (FRAME_DISPLAY_INFO (s->f)->scratch_cursor_gc)
828 XChangeGC (s->display, FRAME_DISPLAY_INFO (s->f)->scratch_cursor_gc,
829 mask, &xgcv);
830 else
831 FRAME_DISPLAY_INFO (s->f)->scratch_cursor_gc
832 = XCreateGC (s->display, s->window, mask, &xgcv);
834 s->gc = FRAME_DISPLAY_INFO (s->f)->scratch_cursor_gc;
839 /* Set up S->gc of glyph string S for drawing text in mouse face. */
841 static void
842 x_set_mouse_face_gc (struct glyph_string *s)
844 int face_id;
845 struct face *face;
847 /* What face has to be used last for the mouse face? */
848 face_id = MOUSE_HL_INFO (s->f)->mouse_face_face_id;
849 face = FACE_FROM_ID (s->f, face_id);
850 if (face == NULL)
851 face = FACE_FROM_ID (s->f, MOUSE_FACE_ID);
853 if (s->first_glyph->type == CHAR_GLYPH)
854 face_id = FACE_FOR_CHAR (s->f, face, s->first_glyph->u.ch, -1, Qnil);
855 else
856 face_id = FACE_FOR_CHAR (s->f, face, 0, -1, Qnil);
857 s->face = FACE_FROM_ID (s->f, face_id);
858 PREPARE_FACE_FOR_DISPLAY (s->f, s->face);
860 if (s->font == s->face->font)
861 s->gc = s->face->gc;
862 else
864 /* Otherwise construct scratch_cursor_gc with values from FACE
865 except for FONT. */
866 XGCValues xgcv;
867 unsigned long mask;
869 xgcv.background = s->face->background;
870 xgcv.foreground = s->face->foreground;
871 xgcv.graphics_exposures = False;
872 mask = GCForeground | GCBackground | GCGraphicsExposures;
874 if (FRAME_DISPLAY_INFO (s->f)->scratch_cursor_gc)
875 XChangeGC (s->display, FRAME_DISPLAY_INFO (s->f)->scratch_cursor_gc,
876 mask, &xgcv);
877 else
878 FRAME_DISPLAY_INFO (s->f)->scratch_cursor_gc
879 = XCreateGC (s->display, s->window, mask, &xgcv);
881 s->gc = FRAME_DISPLAY_INFO (s->f)->scratch_cursor_gc;
884 eassert (s->gc != 0);
888 /* Set S->gc of glyph string S to a GC suitable for drawing a mode line.
889 Faces to use in the mode line have already been computed when the
890 matrix was built, so there isn't much to do, here. */
892 static void
893 x_set_mode_line_face_gc (struct glyph_string *s)
895 s->gc = s->face->gc;
899 /* Set S->gc of glyph string S for drawing that glyph string. Set
900 S->stippled_p to a non-zero value if the face of S has a stipple
901 pattern. */
903 static void
904 x_set_glyph_string_gc (struct glyph_string *s)
906 PREPARE_FACE_FOR_DISPLAY (s->f, s->face);
908 if (s->hl == DRAW_NORMAL_TEXT)
910 s->gc = s->face->gc;
911 s->stippled_p = s->face->stipple != 0;
913 else if (s->hl == DRAW_INVERSE_VIDEO)
915 x_set_mode_line_face_gc (s);
916 s->stippled_p = s->face->stipple != 0;
918 else if (s->hl == DRAW_CURSOR)
920 x_set_cursor_gc (s);
921 s->stippled_p = 0;
923 else if (s->hl == DRAW_MOUSE_FACE)
925 x_set_mouse_face_gc (s);
926 s->stippled_p = s->face->stipple != 0;
928 else if (s->hl == DRAW_IMAGE_RAISED
929 || s->hl == DRAW_IMAGE_SUNKEN)
931 s->gc = s->face->gc;
932 s->stippled_p = s->face->stipple != 0;
934 else
936 s->gc = s->face->gc;
937 s->stippled_p = s->face->stipple != 0;
940 /* GC must have been set. */
941 eassert (s->gc != 0);
945 /* Set clipping for output of glyph string S. S may be part of a mode
946 line or menu if we don't have X toolkit support. */
948 static void
949 x_set_glyph_string_clipping (struct glyph_string *s)
951 XRectangle *r = s->clip;
952 int n = get_glyph_string_clip_rects (s, r, 2);
954 if (n > 0)
955 XSetClipRectangles (s->display, s->gc, 0, 0, r, n, Unsorted);
956 s->num_clips = n;
960 /* Set SRC's clipping for output of glyph string DST. This is called
961 when we are drawing DST's left_overhang or right_overhang only in
962 the area of SRC. */
964 static void
965 x_set_glyph_string_clipping_exactly (struct glyph_string *src, struct glyph_string *dst)
967 XRectangle r;
969 r.x = src->x;
970 r.width = src->width;
971 r.y = src->y;
972 r.height = src->height;
973 dst->clip[0] = r;
974 dst->num_clips = 1;
975 XSetClipRectangles (dst->display, dst->gc, 0, 0, &r, 1, Unsorted);
979 /* RIF:
980 Compute left and right overhang of glyph string S. */
982 static void
983 x_compute_glyph_string_overhangs (struct glyph_string *s)
985 if (s->cmp == NULL
986 && (s->first_glyph->type == CHAR_GLYPH
987 || s->first_glyph->type == COMPOSITE_GLYPH))
989 struct font_metrics metrics;
991 if (s->first_glyph->type == CHAR_GLYPH)
993 unsigned *code = alloca (sizeof (unsigned) * s->nchars);
994 struct font *font = s->font;
995 int i;
997 for (i = 0; i < s->nchars; i++)
998 code[i] = (s->char2b[i].byte1 << 8) | s->char2b[i].byte2;
999 font->driver->text_extents (font, code, s->nchars, &metrics);
1001 else
1003 Lisp_Object gstring = composition_gstring_from_id (s->cmp_id);
1005 composition_gstring_width (gstring, s->cmp_from, s->cmp_to, &metrics);
1007 s->right_overhang = (metrics.rbearing > metrics.width
1008 ? metrics.rbearing - metrics.width : 0);
1009 s->left_overhang = metrics.lbearing < 0 ? - metrics.lbearing : 0;
1011 else if (s->cmp)
1013 s->right_overhang = s->cmp->rbearing - s->cmp->pixel_width;
1014 s->left_overhang = - s->cmp->lbearing;
1019 /* Fill rectangle X, Y, W, H with background color of glyph string S. */
1021 static void
1022 x_clear_glyph_string_rect (struct glyph_string *s, int x, int y, int w, int h)
1024 XGCValues xgcv;
1025 XGetGCValues (s->display, s->gc, GCForeground | GCBackground, &xgcv);
1026 XSetForeground (s->display, s->gc, xgcv.background);
1027 XFillRectangle (s->display, s->window, s->gc, x, y, w, h);
1028 XSetForeground (s->display, s->gc, xgcv.foreground);
1032 /* Draw the background of glyph_string S. If S->background_filled_p
1033 is non-zero don't draw it. FORCE_P non-zero means draw the
1034 background even if it wouldn't be drawn normally. This is used
1035 when a string preceding S draws into the background of S, or S
1036 contains the first component of a composition. */
1038 static void
1039 x_draw_glyph_string_background (struct glyph_string *s, bool force_p)
1041 /* Nothing to do if background has already been drawn or if it
1042 shouldn't be drawn in the first place. */
1043 if (!s->background_filled_p)
1045 int box_line_width = max (s->face->box_line_width, 0);
1047 if (s->stippled_p)
1049 /* Fill background with a stipple pattern. */
1050 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
1051 XFillRectangle (s->display, s->window, s->gc, s->x,
1052 s->y + box_line_width,
1053 s->background_width,
1054 s->height - 2 * box_line_width);
1055 XSetFillStyle (s->display, s->gc, FillSolid);
1056 s->background_filled_p = 1;
1058 else if (FONT_HEIGHT (s->font) < s->height - 2 * box_line_width
1059 || s->font_not_found_p
1060 || s->extends_to_end_of_line_p
1061 || force_p)
1063 x_clear_glyph_string_rect (s, s->x, s->y + box_line_width,
1064 s->background_width,
1065 s->height - 2 * box_line_width);
1066 s->background_filled_p = 1;
1072 /* Draw the foreground of glyph string S. */
1074 static void
1075 x_draw_glyph_string_foreground (struct glyph_string *s)
1077 int i, x;
1079 /* If first glyph of S has a left box line, start drawing the text
1080 of S to the right of that box line. */
1081 if (s->face->box != FACE_NO_BOX
1082 && s->first_glyph->left_box_line_p)
1083 x = s->x + eabs (s->face->box_line_width);
1084 else
1085 x = s->x;
1087 /* Draw characters of S as rectangles if S's font could not be
1088 loaded. */
1089 if (s->font_not_found_p)
1091 for (i = 0; i < s->nchars; ++i)
1093 struct glyph *g = s->first_glyph + i;
1094 XDrawRectangle (s->display, s->window,
1095 s->gc, x, s->y, g->pixel_width - 1,
1096 s->height - 1);
1097 x += g->pixel_width;
1100 else
1102 struct font *font = s->font;
1103 int boff = font->baseline_offset;
1104 int y;
1106 if (font->vertical_centering)
1107 boff = VCENTER_BASELINE_OFFSET (font, s->f) - boff;
1109 y = s->ybase - boff;
1110 if (s->for_overlaps
1111 || (s->background_filled_p && s->hl != DRAW_CURSOR))
1112 font->driver->draw (s, 0, s->nchars, x, y, 0);
1113 else
1114 font->driver->draw (s, 0, s->nchars, x, y, 1);
1115 if (s->face->overstrike)
1116 font->driver->draw (s, 0, s->nchars, x + 1, y, 0);
1120 /* Draw the foreground of composite glyph string S. */
1122 static void
1123 x_draw_composite_glyph_string_foreground (struct glyph_string *s)
1125 int i, j, x;
1126 struct font *font = s->font;
1128 /* If first glyph of S has a left box line, start drawing the text
1129 of S to the right of that box line. */
1130 if (s->face && s->face->box != FACE_NO_BOX
1131 && s->first_glyph->left_box_line_p)
1132 x = s->x + eabs (s->face->box_line_width);
1133 else
1134 x = s->x;
1136 /* S is a glyph string for a composition. S->cmp_from is the index
1137 of the first character drawn for glyphs of this composition.
1138 S->cmp_from == 0 means we are drawing the very first character of
1139 this composition. */
1141 /* Draw a rectangle for the composition if the font for the very
1142 first character of the composition could not be loaded. */
1143 if (s->font_not_found_p)
1145 if (s->cmp_from == 0)
1146 XDrawRectangle (s->display, s->window, s->gc, x, s->y,
1147 s->width - 1, s->height - 1);
1149 else if (! s->first_glyph->u.cmp.automatic)
1151 int y = s->ybase;
1153 for (i = 0, j = s->cmp_from; i < s->nchars; i++, j++)
1154 /* TAB in a composition means display glyphs with padding
1155 space on the left or right. */
1156 if (COMPOSITION_GLYPH (s->cmp, j) != '\t')
1158 int xx = x + s->cmp->offsets[j * 2];
1159 int yy = y - s->cmp->offsets[j * 2 + 1];
1161 font->driver->draw (s, j, j + 1, xx, yy, 0);
1162 if (s->face->overstrike)
1163 font->driver->draw (s, j, j + 1, xx + 1, yy, 0);
1166 else
1168 Lisp_Object gstring = composition_gstring_from_id (s->cmp_id);
1169 Lisp_Object glyph;
1170 int y = s->ybase;
1171 int width = 0;
1173 for (i = j = s->cmp_from; i < s->cmp_to; i++)
1175 glyph = LGSTRING_GLYPH (gstring, i);
1176 if (NILP (LGLYPH_ADJUSTMENT (glyph)))
1177 width += LGLYPH_WIDTH (glyph);
1178 else
1180 int xoff, yoff, wadjust;
1182 if (j < i)
1184 font->driver->draw (s, j, i, x, y, 0);
1185 if (s->face->overstrike)
1186 font->driver->draw (s, j, i, x + 1, y, 0);
1187 x += width;
1189 xoff = LGLYPH_XOFF (glyph);
1190 yoff = LGLYPH_YOFF (glyph);
1191 wadjust = LGLYPH_WADJUST (glyph);
1192 font->driver->draw (s, i, i + 1, x + xoff, y + yoff, 0);
1193 if (s->face->overstrike)
1194 font->driver->draw (s, i, i + 1, x + xoff + 1, y + yoff, 0);
1195 x += wadjust;
1196 j = i + 1;
1197 width = 0;
1200 if (j < i)
1202 font->driver->draw (s, j, i, x, y, 0);
1203 if (s->face->overstrike)
1204 font->driver->draw (s, j, i, x + 1, y, 0);
1210 /* Draw the foreground of glyph string S for glyphless characters. */
1212 static void
1213 x_draw_glyphless_glyph_string_foreground (struct glyph_string *s)
1215 struct glyph *glyph = s->first_glyph;
1216 XChar2b char2b[8];
1217 int x, i, j;
1219 /* If first glyph of S has a left box line, start drawing the text
1220 of S to the right of that box line. */
1221 if (s->face && s->face->box != FACE_NO_BOX
1222 && s->first_glyph->left_box_line_p)
1223 x = s->x + eabs (s->face->box_line_width);
1224 else
1225 x = s->x;
1227 s->char2b = char2b;
1229 for (i = 0; i < s->nchars; i++, glyph++)
1231 char buf[7], *str = NULL;
1232 int len = glyph->u.glyphless.len;
1234 if (glyph->u.glyphless.method == GLYPHLESS_DISPLAY_ACRONYM)
1236 if (len > 0
1237 && CHAR_TABLE_P (Vglyphless_char_display)
1238 && (CHAR_TABLE_EXTRA_SLOTS (XCHAR_TABLE (Vglyphless_char_display))
1239 >= 1))
1241 Lisp_Object acronym
1242 = (! glyph->u.glyphless.for_no_font
1243 ? CHAR_TABLE_REF (Vglyphless_char_display,
1244 glyph->u.glyphless.ch)
1245 : XCHAR_TABLE (Vglyphless_char_display)->extras[0]);
1246 if (STRINGP (acronym))
1247 str = SSDATA (acronym);
1250 else if (glyph->u.glyphless.method == GLYPHLESS_DISPLAY_HEX_CODE)
1252 sprintf (buf, "%0*X",
1253 glyph->u.glyphless.ch < 0x10000 ? 4 : 6,
1254 glyph->u.glyphless.ch);
1255 str = buf;
1258 if (str)
1260 int upper_len = (len + 1) / 2;
1261 unsigned code;
1263 /* It is assured that all LEN characters in STR is ASCII. */
1264 for (j = 0; j < len; j++)
1266 code = s->font->driver->encode_char (s->font, str[j]);
1267 STORE_XCHAR2B (char2b + j, code >> 8, code & 0xFF);
1269 s->font->driver->draw (s, 0, upper_len,
1270 x + glyph->slice.glyphless.upper_xoff,
1271 s->ybase + glyph->slice.glyphless.upper_yoff,
1273 s->font->driver->draw (s, upper_len, len,
1274 x + glyph->slice.glyphless.lower_xoff,
1275 s->ybase + glyph->slice.glyphless.lower_yoff,
1278 if (glyph->u.glyphless.method != GLYPHLESS_DISPLAY_THIN_SPACE)
1279 XDrawRectangle (s->display, s->window, s->gc,
1280 x, s->ybase - glyph->ascent,
1281 glyph->pixel_width - 1,
1282 glyph->ascent + glyph->descent - 1);
1283 x += glyph->pixel_width;
1287 #ifdef USE_X_TOOLKIT
1289 #ifdef USE_LUCID
1291 /* Return the frame on which widget WIDGET is used.. Abort if frame
1292 cannot be determined. */
1294 static struct frame *
1295 x_frame_of_widget (Widget widget)
1297 struct x_display_info *dpyinfo;
1298 Lisp_Object tail, frame;
1299 struct frame *f;
1301 dpyinfo = x_display_info_for_display (XtDisplay (widget));
1303 /* Find the top-level shell of the widget. Note that this function
1304 can be called when the widget is not yet realized, so XtWindow
1305 (widget) == 0. That's the reason we can't simply use
1306 x_any_window_to_frame. */
1307 while (!XtIsTopLevelShell (widget))
1308 widget = XtParent (widget);
1310 /* Look for a frame with that top-level widget. Allocate the color
1311 on that frame to get the right gamma correction value. */
1312 FOR_EACH_FRAME (tail, frame)
1314 f = XFRAME (frame);
1315 if (FRAME_X_P (f)
1316 && f->output_data.nothing != 1
1317 && FRAME_DISPLAY_INFO (f) == dpyinfo
1318 && f->output_data.x->widget == widget)
1319 return f;
1321 emacs_abort ();
1324 /* Allocate a color which is lighter or darker than *PIXEL by FACTOR
1325 or DELTA. Try a color with RGB values multiplied by FACTOR first.
1326 If this produces the same color as PIXEL, try a color where all RGB
1327 values have DELTA added. Return the allocated color in *PIXEL.
1328 DISPLAY is the X display, CMAP is the colormap to operate on.
1329 Value is true if successful. */
1331 bool
1332 x_alloc_lighter_color_for_widget (Widget widget, Display *display, Colormap cmap,
1333 unsigned long *pixel, double factor, int delta)
1335 struct frame *f = x_frame_of_widget (widget);
1336 return x_alloc_lighter_color (f, display, cmap, pixel, factor, delta);
1339 #endif /* USE_LUCID */
1342 /* Structure specifying which arguments should be passed by Xt to
1343 cvt_string_to_pixel. We want the widget's screen and colormap. */
1345 static XtConvertArgRec cvt_string_to_pixel_args[] =
1347 {XtWidgetBaseOffset, (XtPointer) XtOffset (Widget, core.screen),
1348 sizeof (Screen *)},
1349 {XtWidgetBaseOffset, (XtPointer) XtOffset (Widget, core.colormap),
1350 sizeof (Colormap)}
1354 /* The address of this variable is returned by
1355 cvt_string_to_pixel. */
1357 static Pixel cvt_string_to_pixel_value;
1360 /* Convert a color name to a pixel color.
1362 DPY is the display we are working on.
1364 ARGS is an array of *NARGS XrmValue structures holding additional
1365 information about the widget for which the conversion takes place.
1366 The contents of this array are determined by the specification
1367 in cvt_string_to_pixel_args.
1369 FROM is a pointer to an XrmValue which points to the color name to
1370 convert. TO is an XrmValue in which to return the pixel color.
1372 CLOSURE_RET is a pointer to user-data, in which we record if
1373 we allocated the color or not.
1375 Value is True if successful, False otherwise. */
1377 static Boolean
1378 cvt_string_to_pixel (Display *dpy, XrmValue *args, Cardinal *nargs,
1379 XrmValue *from, XrmValue *to,
1380 XtPointer *closure_ret)
1382 Screen *screen;
1383 Colormap cmap;
1384 Pixel pixel;
1385 String color_name;
1386 XColor color;
1388 if (*nargs != 2)
1390 XtAppWarningMsg (XtDisplayToApplicationContext (dpy),
1391 "wrongParameters", "cvt_string_to_pixel",
1392 "XtToolkitError",
1393 "Screen and colormap args required", NULL, NULL);
1394 return False;
1397 screen = *(Screen **) args[0].addr;
1398 cmap = *(Colormap *) args[1].addr;
1399 color_name = (String) from->addr;
1401 if (strcmp (color_name, XtDefaultBackground) == 0)
1403 *closure_ret = (XtPointer) False;
1404 pixel = WhitePixelOfScreen (screen);
1406 else if (strcmp (color_name, XtDefaultForeground) == 0)
1408 *closure_ret = (XtPointer) False;
1409 pixel = BlackPixelOfScreen (screen);
1411 else if (XParseColor (dpy, cmap, color_name, &color)
1412 && x_alloc_nearest_color_1 (dpy, cmap, &color))
1414 pixel = color.pixel;
1415 *closure_ret = (XtPointer) True;
1417 else
1419 String params[1];
1420 Cardinal nparams = 1;
1422 params[0] = color_name;
1423 XtAppWarningMsg (XtDisplayToApplicationContext (dpy),
1424 "badValue", "cvt_string_to_pixel",
1425 "XtToolkitError", "Invalid color `%s'",
1426 params, &nparams);
1427 return False;
1430 if (to->addr != NULL)
1432 if (to->size < sizeof (Pixel))
1434 to->size = sizeof (Pixel);
1435 return False;
1438 *(Pixel *) to->addr = pixel;
1440 else
1442 cvt_string_to_pixel_value = pixel;
1443 to->addr = (XtPointer) &cvt_string_to_pixel_value;
1446 to->size = sizeof (Pixel);
1447 return True;
1451 /* Free a pixel color which was previously allocated via
1452 cvt_string_to_pixel. This is registered as the destructor
1453 for this type of resource via XtSetTypeConverter.
1455 APP is the application context in which we work.
1457 TO is a pointer to an XrmValue holding the color to free.
1458 CLOSURE is the value we stored in CLOSURE_RET for this color
1459 in cvt_string_to_pixel.
1461 ARGS and NARGS are like for cvt_string_to_pixel. */
1463 static void
1464 cvt_pixel_dtor (XtAppContext app, XrmValuePtr to, XtPointer closure, XrmValuePtr args,
1465 Cardinal *nargs)
1467 if (*nargs != 2)
1469 XtAppWarningMsg (app, "wrongParameters", "cvt_pixel_dtor",
1470 "XtToolkitError",
1471 "Screen and colormap arguments required",
1472 NULL, NULL);
1474 else if (closure != NULL)
1476 /* We did allocate the pixel, so free it. */
1477 Screen *screen = *(Screen **) args[0].addr;
1478 Colormap cmap = *(Colormap *) args[1].addr;
1479 x_free_dpy_colors (DisplayOfScreen (screen), screen, cmap,
1480 (Pixel *) to->addr, 1);
1485 #endif /* USE_X_TOOLKIT */
1488 /* Value is an array of XColor structures for the contents of the
1489 color map of display DPY. Set *NCELLS to the size of the array.
1490 Note that this probably shouldn't be called for large color maps,
1491 say a 24-bit TrueColor map. */
1493 static const XColor *
1494 x_color_cells (Display *dpy, int *ncells)
1496 struct x_display_info *dpyinfo = x_display_info_for_display (dpy);
1498 if (dpyinfo->color_cells == NULL)
1500 Screen *screen = dpyinfo->screen;
1501 int ncolor_cells = XDisplayCells (dpy, XScreenNumberOfScreen (screen));
1502 int i;
1504 dpyinfo->color_cells = xnmalloc (ncolor_cells,
1505 sizeof *dpyinfo->color_cells);
1506 dpyinfo->ncolor_cells = ncolor_cells;
1508 for (i = 0; i < ncolor_cells; ++i)
1509 dpyinfo->color_cells[i].pixel = i;
1511 XQueryColors (dpy, dpyinfo->cmap,
1512 dpyinfo->color_cells, ncolor_cells);
1515 *ncells = dpyinfo->ncolor_cells;
1516 return dpyinfo->color_cells;
1520 /* On frame F, translate pixel colors to RGB values for the NCOLORS
1521 colors in COLORS. Use cached information, if available. */
1523 void
1524 x_query_colors (struct frame *f, XColor *colors, int ncolors)
1526 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
1528 if (dpyinfo->color_cells)
1530 int i;
1531 for (i = 0; i < ncolors; ++i)
1533 unsigned long pixel = colors[i].pixel;
1534 eassert (pixel < dpyinfo->ncolor_cells);
1535 eassert (dpyinfo->color_cells[pixel].pixel == pixel);
1536 colors[i] = dpyinfo->color_cells[pixel];
1539 else
1540 XQueryColors (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f), colors, ncolors);
1544 /* On frame F, translate pixel color to RGB values for the color in
1545 COLOR. Use cached information, if available. */
1547 void
1548 x_query_color (struct frame *f, XColor *color)
1550 x_query_colors (f, color, 1);
1554 /* Allocate the color COLOR->pixel on DISPLAY, colormap CMAP. If an
1555 exact match can't be allocated, try the nearest color available.
1556 Value is true if successful. Set *COLOR to the color
1557 allocated. */
1559 static bool
1560 x_alloc_nearest_color_1 (Display *dpy, Colormap cmap, XColor *color)
1562 bool rc;
1564 rc = XAllocColor (dpy, cmap, color) != 0;
1565 if (rc == 0)
1567 /* If we got to this point, the colormap is full, so we're going
1568 to try to get the next closest color. The algorithm used is
1569 a least-squares matching, which is what X uses for closest
1570 color matching with StaticColor visuals. */
1571 int nearest, i;
1572 int max_color_delta = 255;
1573 int max_delta = 3 * max_color_delta;
1574 int nearest_delta = max_delta + 1;
1575 int ncells;
1576 const XColor *cells = x_color_cells (dpy, &ncells);
1578 for (nearest = i = 0; i < ncells; ++i)
1580 int dred = (color->red >> 8) - (cells[i].red >> 8);
1581 int dgreen = (color->green >> 8) - (cells[i].green >> 8);
1582 int dblue = (color->blue >> 8) - (cells[i].blue >> 8);
1583 int delta = dred * dred + dgreen * dgreen + dblue * dblue;
1585 if (delta < nearest_delta)
1587 nearest = i;
1588 nearest_delta = delta;
1592 color->red = cells[nearest].red;
1593 color->green = cells[nearest].green;
1594 color->blue = cells[nearest].blue;
1595 rc = XAllocColor (dpy, cmap, color) != 0;
1597 else
1599 /* If allocation succeeded, and the allocated pixel color is not
1600 equal to a cached pixel color recorded earlier, there was a
1601 change in the colormap, so clear the color cache. */
1602 struct x_display_info *dpyinfo = x_display_info_for_display (dpy);
1603 XColor *cached_color;
1605 if (dpyinfo->color_cells
1606 && (cached_color = &dpyinfo->color_cells[color->pixel],
1607 (cached_color->red != color->red
1608 || cached_color->blue != color->blue
1609 || cached_color->green != color->green)))
1611 xfree (dpyinfo->color_cells);
1612 dpyinfo->color_cells = NULL;
1613 dpyinfo->ncolor_cells = 0;
1617 #ifdef DEBUG_X_COLORS
1618 if (rc)
1619 register_color (color->pixel);
1620 #endif /* DEBUG_X_COLORS */
1622 return rc;
1626 /* Allocate the color COLOR->pixel on frame F, colormap CMAP. If an
1627 exact match can't be allocated, try the nearest color available.
1628 Value is true if successful. Set *COLOR to the color
1629 allocated. */
1631 bool
1632 x_alloc_nearest_color (struct frame *f, Colormap cmap, XColor *color)
1634 gamma_correct (f, color);
1635 return x_alloc_nearest_color_1 (FRAME_X_DISPLAY (f), cmap, color);
1639 /* Allocate color PIXEL on frame F. PIXEL must already be allocated.
1640 It's necessary to do this instead of just using PIXEL directly to
1641 get color reference counts right. */
1643 unsigned long
1644 x_copy_color (struct frame *f, unsigned long pixel)
1646 XColor color;
1648 color.pixel = pixel;
1649 block_input ();
1650 x_query_color (f, &color);
1651 XAllocColor (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f), &color);
1652 unblock_input ();
1653 #ifdef DEBUG_X_COLORS
1654 register_color (pixel);
1655 #endif
1656 return color.pixel;
1660 /* Brightness beyond which a color won't have its highlight brightness
1661 boosted.
1663 Nominally, highlight colors for `3d' faces are calculated by
1664 brightening an object's color by a constant scale factor, but this
1665 doesn't yield good results for dark colors, so for colors who's
1666 brightness is less than this value (on a scale of 0-65535) have an
1667 use an additional additive factor.
1669 The value here is set so that the default menu-bar/mode-line color
1670 (grey75) will not have its highlights changed at all. */
1671 #define HIGHLIGHT_COLOR_DARK_BOOST_LIMIT 48000
1674 /* Allocate a color which is lighter or darker than *PIXEL by FACTOR
1675 or DELTA. Try a color with RGB values multiplied by FACTOR first.
1676 If this produces the same color as PIXEL, try a color where all RGB
1677 values have DELTA added. Return the allocated color in *PIXEL.
1678 DISPLAY is the X display, CMAP is the colormap to operate on.
1679 Value is non-zero if successful. */
1681 static bool
1682 x_alloc_lighter_color (struct frame *f, Display *display, Colormap cmap,
1683 unsigned long *pixel, double factor, int delta)
1685 XColor color, new;
1686 long bright;
1687 bool success_p;
1689 /* Get RGB color values. */
1690 color.pixel = *pixel;
1691 x_query_color (f, &color);
1693 /* Change RGB values by specified FACTOR. Avoid overflow! */
1694 eassert (factor >= 0);
1695 new.red = min (0xffff, factor * color.red);
1696 new.green = min (0xffff, factor * color.green);
1697 new.blue = min (0xffff, factor * color.blue);
1699 /* Calculate brightness of COLOR. */
1700 bright = (2 * color.red + 3 * color.green + color.blue) / 6;
1702 /* We only boost colors that are darker than
1703 HIGHLIGHT_COLOR_DARK_BOOST_LIMIT. */
1704 if (bright < HIGHLIGHT_COLOR_DARK_BOOST_LIMIT)
1705 /* Make an additive adjustment to NEW, because it's dark enough so
1706 that scaling by FACTOR alone isn't enough. */
1708 /* How far below the limit this color is (0 - 1, 1 being darker). */
1709 double dimness = 1 - (double)bright / HIGHLIGHT_COLOR_DARK_BOOST_LIMIT;
1710 /* The additive adjustment. */
1711 int min_delta = delta * dimness * factor / 2;
1713 if (factor < 1)
1715 new.red = max (0, new.red - min_delta);
1716 new.green = max (0, new.green - min_delta);
1717 new.blue = max (0, new.blue - min_delta);
1719 else
1721 new.red = min (0xffff, min_delta + new.red);
1722 new.green = min (0xffff, min_delta + new.green);
1723 new.blue = min (0xffff, min_delta + new.blue);
1727 /* Try to allocate the color. */
1728 success_p = x_alloc_nearest_color (f, cmap, &new);
1729 if (success_p)
1731 if (new.pixel == *pixel)
1733 /* If we end up with the same color as before, try adding
1734 delta to the RGB values. */
1735 x_free_colors (f, &new.pixel, 1);
1737 new.red = min (0xffff, delta + color.red);
1738 new.green = min (0xffff, delta + color.green);
1739 new.blue = min (0xffff, delta + color.blue);
1740 success_p = x_alloc_nearest_color (f, cmap, &new);
1742 else
1743 success_p = 1;
1744 *pixel = new.pixel;
1747 return success_p;
1751 /* Set up the foreground color for drawing relief lines of glyph
1752 string S. RELIEF is a pointer to a struct relief containing the GC
1753 with which lines will be drawn. Use a color that is FACTOR or
1754 DELTA lighter or darker than the relief's background which is found
1755 in S->f->output_data.x->relief_background. If such a color cannot
1756 be allocated, use DEFAULT_PIXEL, instead. */
1758 static void
1759 x_setup_relief_color (struct frame *f, struct relief *relief, double factor,
1760 int delta, unsigned long default_pixel)
1762 XGCValues xgcv;
1763 struct x_output *di = f->output_data.x;
1764 unsigned long mask = GCForeground | GCLineWidth | GCGraphicsExposures;
1765 unsigned long pixel;
1766 unsigned long background = di->relief_background;
1767 Colormap cmap = FRAME_X_COLORMAP (f);
1768 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
1769 Display *dpy = FRAME_X_DISPLAY (f);
1771 xgcv.graphics_exposures = False;
1772 xgcv.line_width = 1;
1774 /* Free previously allocated color. The color cell will be reused
1775 when it has been freed as many times as it was allocated, so this
1776 doesn't affect faces using the same colors. */
1777 if (relief->gc && relief->pixel != -1)
1779 x_free_colors (f, &relief->pixel, 1);
1780 relief->pixel = -1;
1783 /* Allocate new color. */
1784 xgcv.foreground = default_pixel;
1785 pixel = background;
1786 if (dpyinfo->n_planes != 1
1787 && x_alloc_lighter_color (f, dpy, cmap, &pixel, factor, delta))
1788 xgcv.foreground = relief->pixel = pixel;
1790 if (relief->gc == 0)
1792 xgcv.stipple = dpyinfo->gray;
1793 mask |= GCStipple;
1794 relief->gc = XCreateGC (dpy, FRAME_X_WINDOW (f), mask, &xgcv);
1796 else
1797 XChangeGC (dpy, relief->gc, mask, &xgcv);
1801 /* Set up colors for the relief lines around glyph string S. */
1803 static void
1804 x_setup_relief_colors (struct glyph_string *s)
1806 struct x_output *di = s->f->output_data.x;
1807 unsigned long color;
1809 if (s->face->use_box_color_for_shadows_p)
1810 color = s->face->box_color;
1811 else if (s->first_glyph->type == IMAGE_GLYPH
1812 && s->img->pixmap
1813 && !IMAGE_BACKGROUND_TRANSPARENT (s->img, s->f, 0))
1814 color = IMAGE_BACKGROUND (s->img, s->f, 0);
1815 else
1817 XGCValues xgcv;
1819 /* Get the background color of the face. */
1820 XGetGCValues (s->display, s->gc, GCBackground, &xgcv);
1821 color = xgcv.background;
1824 if (di->white_relief.gc == 0
1825 || color != di->relief_background)
1827 di->relief_background = color;
1828 x_setup_relief_color (s->f, &di->white_relief, 1.2, 0x8000,
1829 WHITE_PIX_DEFAULT (s->f));
1830 x_setup_relief_color (s->f, &di->black_relief, 0.6, 0x4000,
1831 BLACK_PIX_DEFAULT (s->f));
1836 /* Draw a relief on frame F inside the rectangle given by LEFT_X,
1837 TOP_Y, RIGHT_X, and BOTTOM_Y. WIDTH is the thickness of the relief
1838 to draw, it must be >= 0. RAISED_P non-zero means draw a raised
1839 relief. LEFT_P non-zero means draw a relief on the left side of
1840 the rectangle. RIGHT_P non-zero means draw a relief on the right
1841 side of the rectangle. CLIP_RECT is the clipping rectangle to use
1842 when drawing. */
1844 static void
1845 x_draw_relief_rect (struct frame *f,
1846 int left_x, int top_y, int right_x, int bottom_y, int width,
1847 int raised_p, int top_p, int bot_p, int left_p, int right_p,
1848 XRectangle *clip_rect)
1850 Display *dpy = FRAME_X_DISPLAY (f);
1851 Window window = FRAME_X_WINDOW (f);
1852 int i;
1853 GC gc;
1855 if (raised_p)
1856 gc = f->output_data.x->white_relief.gc;
1857 else
1858 gc = f->output_data.x->black_relief.gc;
1859 XSetClipRectangles (dpy, gc, 0, 0, clip_rect, 1, Unsorted);
1861 /* This code is more complicated than it has to be, because of two
1862 minor hacks to make the boxes look nicer: (i) if width > 1, draw
1863 the outermost line using the black relief. (ii) Omit the four
1864 corner pixels. */
1866 /* Top. */
1867 if (top_p)
1869 if (width == 1)
1870 XDrawLine (dpy, window, gc,
1871 left_x + (left_p ? 1 : 0), top_y,
1872 right_x + (right_p ? 0 : 1), top_y);
1874 for (i = 1; i < width; ++i)
1875 XDrawLine (dpy, window, gc,
1876 left_x + i * left_p, top_y + i,
1877 right_x + 1 - i * right_p, top_y + i);
1880 /* Left. */
1881 if (left_p)
1883 if (width == 1)
1884 XDrawLine (dpy, window, gc, left_x, top_y + 1, left_x, bottom_y);
1886 XClearArea (dpy, window, left_x, top_y, 1, 1, False);
1887 XClearArea (dpy, window, left_x, bottom_y, 1, 1, False);
1889 for (i = (width > 1 ? 1 : 0); i < width; ++i)
1890 XDrawLine (dpy, window, gc,
1891 left_x + i, top_y + (i + 1) * top_p,
1892 left_x + i, bottom_y + 1 - (i + 1) * bot_p);
1895 XSetClipMask (dpy, gc, None);
1896 if (raised_p)
1897 gc = f->output_data.x->black_relief.gc;
1898 else
1899 gc = f->output_data.x->white_relief.gc;
1900 XSetClipRectangles (dpy, gc, 0, 0, clip_rect, 1, Unsorted);
1902 if (width > 1)
1904 /* Outermost top line. */
1905 if (top_p)
1906 XDrawLine (dpy, window, gc,
1907 left_x + (left_p ? 1 : 0), top_y,
1908 right_x + (right_p ? 0 : 1), top_y);
1910 /* Outermost left line. */
1911 if (left_p)
1912 XDrawLine (dpy, window, gc, left_x, top_y + 1, left_x, bottom_y);
1915 /* Bottom. */
1916 if (bot_p)
1918 XDrawLine (dpy, window, gc,
1919 left_x + (left_p ? 1 : 0), bottom_y,
1920 right_x + (right_p ? 0 : 1), bottom_y);
1921 for (i = 1; i < width; ++i)
1922 XDrawLine (dpy, window, gc,
1923 left_x + i * left_p, bottom_y - i,
1924 right_x + 1 - i * right_p, bottom_y - i);
1927 /* Right. */
1928 if (right_p)
1930 XClearArea (dpy, window, right_x, top_y, 1, 1, False);
1931 XClearArea (dpy, window, right_x, bottom_y, 1, 1, False);
1932 for (i = 0; i < width; ++i)
1933 XDrawLine (dpy, window, gc,
1934 right_x - i, top_y + (i + 1) * top_p,
1935 right_x - i, bottom_y + 1 - (i + 1) * bot_p);
1938 XSetClipMask (dpy, gc, None);
1942 /* Draw a box on frame F inside the rectangle given by LEFT_X, TOP_Y,
1943 RIGHT_X, and BOTTOM_Y. WIDTH is the thickness of the lines to
1944 draw, it must be >= 0. LEFT_P non-zero means draw a line on the
1945 left side of the rectangle. RIGHT_P non-zero means draw a line
1946 on the right side of the rectangle. CLIP_RECT is the clipping
1947 rectangle to use when drawing. */
1949 static void
1950 x_draw_box_rect (struct glyph_string *s,
1951 int left_x, int top_y, int right_x, int bottom_y, int width,
1952 int left_p, int right_p, XRectangle *clip_rect)
1954 XGCValues xgcv;
1956 XGetGCValues (s->display, s->gc, GCForeground, &xgcv);
1957 XSetForeground (s->display, s->gc, s->face->box_color);
1958 XSetClipRectangles (s->display, s->gc, 0, 0, clip_rect, 1, Unsorted);
1960 /* Top. */
1961 XFillRectangle (s->display, s->window, s->gc,
1962 left_x, top_y, right_x - left_x + 1, width);
1964 /* Left. */
1965 if (left_p)
1966 XFillRectangle (s->display, s->window, s->gc,
1967 left_x, top_y, width, bottom_y - top_y + 1);
1969 /* Bottom. */
1970 XFillRectangle (s->display, s->window, s->gc,
1971 left_x, bottom_y - width + 1, right_x - left_x + 1, width);
1973 /* Right. */
1974 if (right_p)
1975 XFillRectangle (s->display, s->window, s->gc,
1976 right_x - width + 1, top_y, width, bottom_y - top_y + 1);
1978 XSetForeground (s->display, s->gc, xgcv.foreground);
1979 XSetClipMask (s->display, s->gc, None);
1983 /* Draw a box around glyph string S. */
1985 static void
1986 x_draw_glyph_string_box (struct glyph_string *s)
1988 int width, left_x, right_x, top_y, bottom_y, last_x, raised_p;
1989 int left_p, right_p;
1990 struct glyph *last_glyph;
1991 XRectangle clip_rect;
1993 last_x = ((s->row->full_width_p && !s->w->pseudo_window_p)
1994 ? WINDOW_RIGHT_EDGE_X (s->w)
1995 : window_box_right (s->w, s->area));
1997 /* The glyph that may have a right box line. */
1998 last_glyph = (s->cmp || s->img
1999 ? s->first_glyph
2000 : s->first_glyph + s->nchars - 1);
2002 width = eabs (s->face->box_line_width);
2003 raised_p = s->face->box == FACE_RAISED_BOX;
2004 left_x = s->x;
2005 right_x = (s->row->full_width_p && s->extends_to_end_of_line_p
2006 ? last_x - 1
2007 : min (last_x, s->x + s->background_width) - 1);
2008 top_y = s->y;
2009 bottom_y = top_y + s->height - 1;
2011 left_p = (s->first_glyph->left_box_line_p
2012 || (s->hl == DRAW_MOUSE_FACE
2013 && (s->prev == NULL
2014 || s->prev->hl != s->hl)));
2015 right_p = (last_glyph->right_box_line_p
2016 || (s->hl == DRAW_MOUSE_FACE
2017 && (s->next == NULL
2018 || s->next->hl != s->hl)));
2020 get_glyph_string_clip_rect (s, &clip_rect);
2022 if (s->face->box == FACE_SIMPLE_BOX)
2023 x_draw_box_rect (s, left_x, top_y, right_x, bottom_y, width,
2024 left_p, right_p, &clip_rect);
2025 else
2027 x_setup_relief_colors (s);
2028 x_draw_relief_rect (s->f, left_x, top_y, right_x, bottom_y,
2029 width, raised_p, 1, 1, left_p, right_p, &clip_rect);
2034 /* Draw foreground of image glyph string S. */
2036 static void
2037 x_draw_image_foreground (struct glyph_string *s)
2039 int x = s->x;
2040 int y = s->ybase - image_ascent (s->img, s->face, &s->slice);
2042 /* If first glyph of S has a left box line, start drawing it to the
2043 right of that line. */
2044 if (s->face->box != FACE_NO_BOX
2045 && s->first_glyph->left_box_line_p
2046 && s->slice.x == 0)
2047 x += eabs (s->face->box_line_width);
2049 /* If there is a margin around the image, adjust x- and y-position
2050 by that margin. */
2051 if (s->slice.x == 0)
2052 x += s->img->hmargin;
2053 if (s->slice.y == 0)
2054 y += s->img->vmargin;
2056 if (s->img->pixmap)
2058 if (s->img->mask)
2060 /* We can't set both a clip mask and use XSetClipRectangles
2061 because the latter also sets a clip mask. We also can't
2062 trust on the shape extension to be available
2063 (XShapeCombineRegion). So, compute the rectangle to draw
2064 manually. */
2065 unsigned long mask = (GCClipMask | GCClipXOrigin | GCClipYOrigin
2066 | GCFunction);
2067 XGCValues xgcv;
2068 XRectangle clip_rect, image_rect, r;
2070 xgcv.clip_mask = s->img->mask;
2071 xgcv.clip_x_origin = x;
2072 xgcv.clip_y_origin = y;
2073 xgcv.function = GXcopy;
2074 XChangeGC (s->display, s->gc, mask, &xgcv);
2076 get_glyph_string_clip_rect (s, &clip_rect);
2077 image_rect.x = x;
2078 image_rect.y = y;
2079 image_rect.width = s->slice.width;
2080 image_rect.height = s->slice.height;
2081 if (x_intersect_rectangles (&clip_rect, &image_rect, &r))
2082 XCopyArea (s->display, s->img->pixmap, s->window, s->gc,
2083 s->slice.x + r.x - x, s->slice.y + r.y - y,
2084 r.width, r.height, r.x, r.y);
2086 else
2088 XRectangle clip_rect, image_rect, r;
2090 get_glyph_string_clip_rect (s, &clip_rect);
2091 image_rect.x = x;
2092 image_rect.y = y;
2093 image_rect.width = s->slice.width;
2094 image_rect.height = s->slice.height;
2095 if (x_intersect_rectangles (&clip_rect, &image_rect, &r))
2096 XCopyArea (s->display, s->img->pixmap, s->window, s->gc,
2097 s->slice.x + r.x - x, s->slice.y + r.y - y,
2098 r.width, r.height, r.x, r.y);
2100 /* When the image has a mask, we can expect that at
2101 least part of a mouse highlight or a block cursor will
2102 be visible. If the image doesn't have a mask, make
2103 a block cursor visible by drawing a rectangle around
2104 the image. I believe it's looking better if we do
2105 nothing here for mouse-face. */
2106 if (s->hl == DRAW_CURSOR)
2108 int relief = eabs (s->img->relief);
2109 XDrawRectangle (s->display, s->window, s->gc,
2110 x - relief, y - relief,
2111 s->slice.width + relief*2 - 1,
2112 s->slice.height + relief*2 - 1);
2116 else
2117 /* Draw a rectangle if image could not be loaded. */
2118 XDrawRectangle (s->display, s->window, s->gc, x, y,
2119 s->slice.width - 1, s->slice.height - 1);
2123 /* Draw a relief around the image glyph string S. */
2125 static void
2126 x_draw_image_relief (struct glyph_string *s)
2128 int x1, y1, thick, raised_p, top_p, bot_p, left_p, right_p;
2129 XRectangle r;
2130 int x = s->x;
2131 int y = s->ybase - image_ascent (s->img, s->face, &s->slice);
2133 /* If first glyph of S has a left box line, start drawing it to the
2134 right of that line. */
2135 if (s->face->box != FACE_NO_BOX
2136 && s->first_glyph->left_box_line_p
2137 && s->slice.x == 0)
2138 x += eabs (s->face->box_line_width);
2140 /* If there is a margin around the image, adjust x- and y-position
2141 by that margin. */
2142 if (s->slice.x == 0)
2143 x += s->img->hmargin;
2144 if (s->slice.y == 0)
2145 y += s->img->vmargin;
2147 if (s->hl == DRAW_IMAGE_SUNKEN
2148 || s->hl == DRAW_IMAGE_RAISED)
2150 thick = tool_bar_button_relief >= 0 ? tool_bar_button_relief : DEFAULT_TOOL_BAR_BUTTON_RELIEF;
2151 raised_p = s->hl == DRAW_IMAGE_RAISED;
2153 else
2155 thick = eabs (s->img->relief);
2156 raised_p = s->img->relief > 0;
2159 x1 = x + s->slice.width - 1;
2160 y1 = y + s->slice.height - 1;
2161 top_p = bot_p = left_p = right_p = 0;
2163 if (s->slice.x == 0)
2164 x -= thick, left_p = 1;
2165 if (s->slice.y == 0)
2166 y -= thick, top_p = 1;
2167 if (s->slice.x + s->slice.width == s->img->width)
2168 x1 += thick, right_p = 1;
2169 if (s->slice.y + s->slice.height == s->img->height)
2170 y1 += thick, bot_p = 1;
2172 x_setup_relief_colors (s);
2173 get_glyph_string_clip_rect (s, &r);
2174 x_draw_relief_rect (s->f, x, y, x1, y1, thick, raised_p,
2175 top_p, bot_p, left_p, right_p, &r);
2179 /* Draw the foreground of image glyph string S to PIXMAP. */
2181 static void
2182 x_draw_image_foreground_1 (struct glyph_string *s, Pixmap pixmap)
2184 int x = 0;
2185 int y = s->ybase - s->y - image_ascent (s->img, s->face, &s->slice);
2187 /* If first glyph of S has a left box line, start drawing it to the
2188 right of that line. */
2189 if (s->face->box != FACE_NO_BOX
2190 && s->first_glyph->left_box_line_p
2191 && s->slice.x == 0)
2192 x += eabs (s->face->box_line_width);
2194 /* If there is a margin around the image, adjust x- and y-position
2195 by that margin. */
2196 if (s->slice.x == 0)
2197 x += s->img->hmargin;
2198 if (s->slice.y == 0)
2199 y += s->img->vmargin;
2201 if (s->img->pixmap)
2203 if (s->img->mask)
2205 /* We can't set both a clip mask and use XSetClipRectangles
2206 because the latter also sets a clip mask. We also can't
2207 trust on the shape extension to be available
2208 (XShapeCombineRegion). So, compute the rectangle to draw
2209 manually. */
2210 unsigned long mask = (GCClipMask | GCClipXOrigin | GCClipYOrigin
2211 | GCFunction);
2212 XGCValues xgcv;
2214 xgcv.clip_mask = s->img->mask;
2215 xgcv.clip_x_origin = x - s->slice.x;
2216 xgcv.clip_y_origin = y - s->slice.y;
2217 xgcv.function = GXcopy;
2218 XChangeGC (s->display, s->gc, mask, &xgcv);
2220 XCopyArea (s->display, s->img->pixmap, pixmap, s->gc,
2221 s->slice.x, s->slice.y,
2222 s->slice.width, s->slice.height, x, y);
2223 XSetClipMask (s->display, s->gc, None);
2225 else
2227 XCopyArea (s->display, s->img->pixmap, pixmap, s->gc,
2228 s->slice.x, s->slice.y,
2229 s->slice.width, s->slice.height, x, y);
2231 /* When the image has a mask, we can expect that at
2232 least part of a mouse highlight or a block cursor will
2233 be visible. If the image doesn't have a mask, make
2234 a block cursor visible by drawing a rectangle around
2235 the image. I believe it's looking better if we do
2236 nothing here for mouse-face. */
2237 if (s->hl == DRAW_CURSOR)
2239 int r = eabs (s->img->relief);
2240 XDrawRectangle (s->display, s->window, s->gc, x - r, y - r,
2241 s->slice.width + r*2 - 1,
2242 s->slice.height + r*2 - 1);
2246 else
2247 /* Draw a rectangle if image could not be loaded. */
2248 XDrawRectangle (s->display, pixmap, s->gc, x, y,
2249 s->slice.width - 1, s->slice.height - 1);
2253 /* Draw part of the background of glyph string S. X, Y, W, and H
2254 give the rectangle to draw. */
2256 static void
2257 x_draw_glyph_string_bg_rect (struct glyph_string *s, int x, int y, int w, int h)
2259 if (s->stippled_p)
2261 /* Fill background with a stipple pattern. */
2262 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
2263 XFillRectangle (s->display, s->window, s->gc, x, y, w, h);
2264 XSetFillStyle (s->display, s->gc, FillSolid);
2266 else
2267 x_clear_glyph_string_rect (s, x, y, w, h);
2271 /* Draw image glyph string S.
2273 s->y
2274 s->x +-------------------------
2275 | s->face->box
2277 | +-------------------------
2278 | | s->img->margin
2280 | | +-------------------
2281 | | | the image
2285 static void
2286 x_draw_image_glyph_string (struct glyph_string *s)
2288 int box_line_hwidth = eabs (s->face->box_line_width);
2289 int box_line_vwidth = max (s->face->box_line_width, 0);
2290 int height;
2291 Pixmap pixmap = None;
2293 height = s->height;
2294 if (s->slice.y == 0)
2295 height -= box_line_vwidth;
2296 if (s->slice.y + s->slice.height >= s->img->height)
2297 height -= box_line_vwidth;
2299 /* Fill background with face under the image. Do it only if row is
2300 taller than image or if image has a clip mask to reduce
2301 flickering. */
2302 s->stippled_p = s->face->stipple != 0;
2303 if (height > s->slice.height
2304 || s->img->hmargin
2305 || s->img->vmargin
2306 || s->img->mask
2307 || s->img->pixmap == 0
2308 || s->width != s->background_width)
2310 if (s->img->mask)
2312 /* Create a pixmap as large as the glyph string. Fill it
2313 with the background color. Copy the image to it, using
2314 its mask. Copy the temporary pixmap to the display. */
2315 Screen *screen = FRAME_X_SCREEN (s->f);
2316 int depth = DefaultDepthOfScreen (screen);
2318 /* Create a pixmap as large as the glyph string. */
2319 pixmap = XCreatePixmap (s->display, s->window,
2320 s->background_width,
2321 s->height, depth);
2323 /* Don't clip in the following because we're working on the
2324 pixmap. */
2325 XSetClipMask (s->display, s->gc, None);
2327 /* Fill the pixmap with the background color/stipple. */
2328 if (s->stippled_p)
2330 /* Fill background with a stipple pattern. */
2331 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
2332 XSetTSOrigin (s->display, s->gc, - s->x, - s->y);
2333 XFillRectangle (s->display, pixmap, s->gc,
2334 0, 0, s->background_width, s->height);
2335 XSetFillStyle (s->display, s->gc, FillSolid);
2336 XSetTSOrigin (s->display, s->gc, 0, 0);
2338 else
2340 XGCValues xgcv;
2341 XGetGCValues (s->display, s->gc, GCForeground | GCBackground,
2342 &xgcv);
2343 XSetForeground (s->display, s->gc, xgcv.background);
2344 XFillRectangle (s->display, pixmap, s->gc,
2345 0, 0, s->background_width, s->height);
2346 XSetForeground (s->display, s->gc, xgcv.foreground);
2349 else
2351 int x = s->x;
2352 int y = s->y;
2354 if (s->first_glyph->left_box_line_p
2355 && s->slice.x == 0)
2356 x += box_line_hwidth;
2358 if (s->slice.y == 0)
2359 y += box_line_vwidth;
2361 x_draw_glyph_string_bg_rect (s, x, y, s->background_width, height);
2364 s->background_filled_p = 1;
2367 /* Draw the foreground. */
2368 if (pixmap != None)
2370 x_draw_image_foreground_1 (s, pixmap);
2371 x_set_glyph_string_clipping (s);
2372 XCopyArea (s->display, pixmap, s->window, s->gc,
2373 0, 0, s->background_width, s->height, s->x, s->y);
2374 XFreePixmap (s->display, pixmap);
2376 else
2377 x_draw_image_foreground (s);
2379 /* If we must draw a relief around the image, do it. */
2380 if (s->img->relief
2381 || s->hl == DRAW_IMAGE_RAISED
2382 || s->hl == DRAW_IMAGE_SUNKEN)
2383 x_draw_image_relief (s);
2387 /* Draw stretch glyph string S. */
2389 static void
2390 x_draw_stretch_glyph_string (struct glyph_string *s)
2392 eassert (s->first_glyph->type == STRETCH_GLYPH);
2394 if (s->hl == DRAW_CURSOR
2395 && !x_stretch_cursor_p)
2397 /* If `x-stretch-cursor' is nil, don't draw a block cursor as
2398 wide as the stretch glyph. */
2399 int width, background_width = s->background_width;
2400 int x = s->x;
2402 if (!s->row->reversed_p)
2404 int left_x = window_box_left_offset (s->w, TEXT_AREA);
2406 if (x < left_x)
2408 background_width -= left_x - x;
2409 x = left_x;
2412 else
2414 /* In R2L rows, draw the cursor on the right edge of the
2415 stretch glyph. */
2416 int right_x = window_box_right_offset (s->w, TEXT_AREA);
2418 if (x + background_width > right_x)
2419 background_width -= x - right_x;
2420 x += background_width;
2422 width = min (FRAME_COLUMN_WIDTH (s->f), background_width);
2423 if (s->row->reversed_p)
2424 x -= width;
2426 /* Draw cursor. */
2427 x_draw_glyph_string_bg_rect (s, x, s->y, width, s->height);
2429 /* Clear rest using the GC of the original non-cursor face. */
2430 if (width < background_width)
2432 int y = s->y;
2433 int w = background_width - width, h = s->height;
2434 XRectangle r;
2435 GC gc;
2437 if (!s->row->reversed_p)
2438 x += width;
2439 else
2440 x = s->x;
2441 if (s->row->mouse_face_p
2442 && cursor_in_mouse_face_p (s->w))
2444 x_set_mouse_face_gc (s);
2445 gc = s->gc;
2447 else
2448 gc = s->face->gc;
2450 get_glyph_string_clip_rect (s, &r);
2451 XSetClipRectangles (s->display, gc, 0, 0, &r, 1, Unsorted);
2453 if (s->face->stipple)
2455 /* Fill background with a stipple pattern. */
2456 XSetFillStyle (s->display, gc, FillOpaqueStippled);
2457 XFillRectangle (s->display, s->window, gc, x, y, w, h);
2458 XSetFillStyle (s->display, gc, FillSolid);
2460 else
2462 XGCValues xgcv;
2463 XGetGCValues (s->display, gc, GCForeground | GCBackground, &xgcv);
2464 XSetForeground (s->display, gc, xgcv.background);
2465 XFillRectangle (s->display, s->window, gc, x, y, w, h);
2466 XSetForeground (s->display, gc, xgcv.foreground);
2470 else if (!s->background_filled_p)
2472 int background_width = s->background_width;
2473 int x = s->x, left_x = window_box_left_offset (s->w, TEXT_AREA);
2475 /* Don't draw into left margin, fringe or scrollbar area
2476 except for header line and mode line. */
2477 if (x < left_x && !s->row->mode_line_p)
2479 background_width -= left_x - x;
2480 x = left_x;
2482 if (background_width > 0)
2483 x_draw_glyph_string_bg_rect (s, x, s->y, background_width, s->height);
2486 s->background_filled_p = 1;
2490 Draw a wavy line under S. The wave fills wave_height pixels from y0.
2492 x0 wave_length = 2
2494 y0 * * * * *
2495 |* * * * * * * * *
2496 wave_height = 3 | * * * *
2500 static void
2501 x_draw_underwave (struct glyph_string *s)
2503 int wave_height = 3, wave_length = 2;
2504 int dx, dy, x0, y0, width, x1, y1, x2, y2, odd, xmax;
2505 XRectangle wave_clip, string_clip, final_clip;
2507 dx = wave_length;
2508 dy = wave_height - 1;
2509 x0 = s->x;
2510 y0 = s->ybase - wave_height + 3;
2511 width = s->width;
2512 xmax = x0 + width;
2514 /* Find and set clipping rectangle */
2516 wave_clip.x = x0;
2517 wave_clip.y = y0;
2518 wave_clip.width = width;
2519 wave_clip.height = wave_height;
2520 get_glyph_string_clip_rect (s, &string_clip);
2522 if (!x_intersect_rectangles (&wave_clip, &string_clip, &final_clip))
2523 return;
2525 XSetClipRectangles (s->display, s->gc, 0, 0, &final_clip, 1, Unsorted);
2527 /* Draw the waves */
2529 x1 = x0 - (x0 % dx);
2530 x2 = x1 + dx;
2531 odd = (x1/dx) % 2;
2532 y1 = y2 = y0;
2534 if (odd)
2535 y1 += dy;
2536 else
2537 y2 += dy;
2539 if (INT_MAX - dx < xmax)
2540 emacs_abort ();
2542 while (x1 <= xmax)
2544 XDrawLine (s->display, s->window, s->gc, x1, y1, x2, y2);
2545 x1 = x2, y1 = y2;
2546 x2 += dx, y2 = y0 + odd*dy;
2547 odd = !odd;
2550 /* Restore previous clipping rectangle(s) */
2551 XSetClipRectangles (s->display, s->gc, 0, 0, s->clip, s->num_clips, Unsorted);
2555 /* Draw glyph string S. */
2557 static void
2558 x_draw_glyph_string (struct glyph_string *s)
2560 bool relief_drawn_p = 0;
2562 /* If S draws into the background of its successors, draw the
2563 background of the successors first so that S can draw into it.
2564 This makes S->next use XDrawString instead of XDrawImageString. */
2565 if (s->next && s->right_overhang && !s->for_overlaps)
2567 int width;
2568 struct glyph_string *next;
2570 for (width = 0, next = s->next;
2571 next && width < s->right_overhang;
2572 width += next->width, next = next->next)
2573 if (next->first_glyph->type != IMAGE_GLYPH)
2575 x_set_glyph_string_gc (next);
2576 x_set_glyph_string_clipping (next);
2577 if (next->first_glyph->type == STRETCH_GLYPH)
2578 x_draw_stretch_glyph_string (next);
2579 else
2580 x_draw_glyph_string_background (next, 1);
2581 next->num_clips = 0;
2585 /* Set up S->gc, set clipping and draw S. */
2586 x_set_glyph_string_gc (s);
2588 /* Draw relief (if any) in advance for char/composition so that the
2589 glyph string can be drawn over it. */
2590 if (!s->for_overlaps
2591 && s->face->box != FACE_NO_BOX
2592 && (s->first_glyph->type == CHAR_GLYPH
2593 || s->first_glyph->type == COMPOSITE_GLYPH))
2596 x_set_glyph_string_clipping (s);
2597 x_draw_glyph_string_background (s, 1);
2598 x_draw_glyph_string_box (s);
2599 x_set_glyph_string_clipping (s);
2600 relief_drawn_p = 1;
2602 else if (!s->clip_head /* draw_glyphs didn't specify a clip mask. */
2603 && !s->clip_tail
2604 && ((s->prev && s->prev->hl != s->hl && s->left_overhang)
2605 || (s->next && s->next->hl != s->hl && s->right_overhang)))
2606 /* We must clip just this glyph. left_overhang part has already
2607 drawn when s->prev was drawn, and right_overhang part will be
2608 drawn later when s->next is drawn. */
2609 x_set_glyph_string_clipping_exactly (s, s);
2610 else
2611 x_set_glyph_string_clipping (s);
2613 switch (s->first_glyph->type)
2615 case IMAGE_GLYPH:
2616 x_draw_image_glyph_string (s);
2617 break;
2619 case STRETCH_GLYPH:
2620 x_draw_stretch_glyph_string (s);
2621 break;
2623 case CHAR_GLYPH:
2624 if (s->for_overlaps)
2625 s->background_filled_p = 1;
2626 else
2627 x_draw_glyph_string_background (s, 0);
2628 x_draw_glyph_string_foreground (s);
2629 break;
2631 case COMPOSITE_GLYPH:
2632 if (s->for_overlaps || (s->cmp_from > 0
2633 && ! s->first_glyph->u.cmp.automatic))
2634 s->background_filled_p = 1;
2635 else
2636 x_draw_glyph_string_background (s, 1);
2637 x_draw_composite_glyph_string_foreground (s);
2638 break;
2640 case GLYPHLESS_GLYPH:
2641 if (s->for_overlaps)
2642 s->background_filled_p = 1;
2643 else
2644 x_draw_glyph_string_background (s, 1);
2645 x_draw_glyphless_glyph_string_foreground (s);
2646 break;
2648 default:
2649 emacs_abort ();
2652 if (!s->for_overlaps)
2654 /* Draw underline. */
2655 if (s->face->underline_p)
2657 if (s->face->underline_type == FACE_UNDER_WAVE)
2659 if (s->face->underline_defaulted_p)
2660 x_draw_underwave (s);
2661 else
2663 XGCValues xgcv;
2664 XGetGCValues (s->display, s->gc, GCForeground, &xgcv);
2665 XSetForeground (s->display, s->gc, s->face->underline_color);
2666 x_draw_underwave (s);
2667 XSetForeground (s->display, s->gc, xgcv.foreground);
2670 else if (s->face->underline_type == FACE_UNDER_LINE)
2672 unsigned long thickness, position;
2673 int y;
2675 if (s->prev && s->prev->face->underline_p
2676 && s->prev->face->underline_type == FACE_UNDER_LINE)
2678 /* We use the same underline style as the previous one. */
2679 thickness = s->prev->underline_thickness;
2680 position = s->prev->underline_position;
2682 else
2684 /* Get the underline thickness. Default is 1 pixel. */
2685 if (s->font && s->font->underline_thickness > 0)
2686 thickness = s->font->underline_thickness;
2687 else
2688 thickness = 1;
2689 if (x_underline_at_descent_line)
2690 position = (s->height - thickness) - (s->ybase - s->y);
2691 else
2693 /* Get the underline position. This is the recommended
2694 vertical offset in pixels from the baseline to the top of
2695 the underline. This is a signed value according to the
2696 specs, and its default is
2698 ROUND ((maximum descent) / 2), with
2699 ROUND(x) = floor (x + 0.5) */
2701 if (x_use_underline_position_properties
2702 && s->font && s->font->underline_position >= 0)
2703 position = s->font->underline_position;
2704 else if (s->font)
2705 position = (s->font->descent + 1) / 2;
2706 else
2707 position = underline_minimum_offset;
2709 position = max (position, underline_minimum_offset);
2711 /* Check the sanity of thickness and position. We should
2712 avoid drawing underline out of the current line area. */
2713 if (s->y + s->height <= s->ybase + position)
2714 position = (s->height - 1) - (s->ybase - s->y);
2715 if (s->y + s->height < s->ybase + position + thickness)
2716 thickness = (s->y + s->height) - (s->ybase + position);
2717 s->underline_thickness = thickness;
2718 s->underline_position = position;
2719 y = s->ybase + position;
2720 if (s->face->underline_defaulted_p)
2721 XFillRectangle (s->display, s->window, s->gc,
2722 s->x, y, s->width, thickness);
2723 else
2725 XGCValues xgcv;
2726 XGetGCValues (s->display, s->gc, GCForeground, &xgcv);
2727 XSetForeground (s->display, s->gc, s->face->underline_color);
2728 XFillRectangle (s->display, s->window, s->gc,
2729 s->x, y, s->width, thickness);
2730 XSetForeground (s->display, s->gc, xgcv.foreground);
2734 /* Draw overline. */
2735 if (s->face->overline_p)
2737 unsigned long dy = 0, h = 1;
2739 if (s->face->overline_color_defaulted_p)
2740 XFillRectangle (s->display, s->window, s->gc, s->x, s->y + dy,
2741 s->width, h);
2742 else
2744 XGCValues xgcv;
2745 XGetGCValues (s->display, s->gc, GCForeground, &xgcv);
2746 XSetForeground (s->display, s->gc, s->face->overline_color);
2747 XFillRectangle (s->display, s->window, s->gc, s->x, s->y + dy,
2748 s->width, h);
2749 XSetForeground (s->display, s->gc, xgcv.foreground);
2753 /* Draw strike-through. */
2754 if (s->face->strike_through_p)
2756 unsigned long h = 1;
2757 unsigned long dy = (s->height - h) / 2;
2759 if (s->face->strike_through_color_defaulted_p)
2760 XFillRectangle (s->display, s->window, s->gc, s->x, s->y + dy,
2761 s->width, h);
2762 else
2764 XGCValues xgcv;
2765 XGetGCValues (s->display, s->gc, GCForeground, &xgcv);
2766 XSetForeground (s->display, s->gc, s->face->strike_through_color);
2767 XFillRectangle (s->display, s->window, s->gc, s->x, s->y + dy,
2768 s->width, h);
2769 XSetForeground (s->display, s->gc, xgcv.foreground);
2773 /* Draw relief if not yet drawn. */
2774 if (!relief_drawn_p && s->face->box != FACE_NO_BOX)
2775 x_draw_glyph_string_box (s);
2777 if (s->prev)
2779 struct glyph_string *prev;
2781 for (prev = s->prev; prev; prev = prev->prev)
2782 if (prev->hl != s->hl
2783 && prev->x + prev->width + prev->right_overhang > s->x)
2785 /* As prev was drawn while clipped to its own area, we
2786 must draw the right_overhang part using s->hl now. */
2787 enum draw_glyphs_face save = prev->hl;
2789 prev->hl = s->hl;
2790 x_set_glyph_string_gc (prev);
2791 x_set_glyph_string_clipping_exactly (s, prev);
2792 if (prev->first_glyph->type == CHAR_GLYPH)
2793 x_draw_glyph_string_foreground (prev);
2794 else
2795 x_draw_composite_glyph_string_foreground (prev);
2796 XSetClipMask (prev->display, prev->gc, None);
2797 prev->hl = save;
2798 prev->num_clips = 0;
2802 if (s->next)
2804 struct glyph_string *next;
2806 for (next = s->next; next; next = next->next)
2807 if (next->hl != s->hl
2808 && next->x - next->left_overhang < s->x + s->width)
2810 /* As next will be drawn while clipped to its own area,
2811 we must draw the left_overhang part using s->hl now. */
2812 enum draw_glyphs_face save = next->hl;
2814 next->hl = s->hl;
2815 x_set_glyph_string_gc (next);
2816 x_set_glyph_string_clipping_exactly (s, next);
2817 if (next->first_glyph->type == CHAR_GLYPH)
2818 x_draw_glyph_string_foreground (next);
2819 else
2820 x_draw_composite_glyph_string_foreground (next);
2821 XSetClipMask (next->display, next->gc, None);
2822 next->hl = save;
2823 next->num_clips = 0;
2824 next->clip_head = s->next;
2829 /* Reset clipping. */
2830 XSetClipMask (s->display, s->gc, None);
2831 s->num_clips = 0;
2834 /* Shift display to make room for inserted glyphs. */
2836 static void
2837 x_shift_glyphs_for_insert (struct frame *f, int x, int y, int width, int height, int shift_by)
2839 XCopyArea (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), FRAME_X_WINDOW (f),
2840 f->output_data.x->normal_gc,
2841 x, y, width, height,
2842 x + shift_by, y);
2845 /* Delete N glyphs at the nominal cursor position. Not implemented
2846 for X frames. */
2848 static void
2849 x_delete_glyphs (struct frame *f, register int n)
2851 emacs_abort ();
2855 /* Like XClearArea, but check that WIDTH and HEIGHT are reasonable.
2856 If they are <= 0, this is probably an error. */
2858 void
2859 x_clear_area (Display *dpy, Window window, int x, int y, int width, int height)
2861 eassert (width > 0 && height > 0);
2862 XClearArea (dpy, window, x, y, width, height, False);
2866 /* Clear an entire frame. */
2868 static void
2869 x_clear_frame (struct frame *f)
2871 /* Clearing the frame will erase any cursor, so mark them all as no
2872 longer visible. */
2873 mark_window_cursors_off (XWINDOW (FRAME_ROOT_WINDOW (f)));
2875 block_input ();
2877 XClearWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
2879 /* We have to clear the scroll bars. If we have changed colors or
2880 something like that, then they should be notified. */
2881 x_scroll_bar_clear (f);
2883 #if defined (USE_GTK) && defined (USE_TOOLKIT_SCROLL_BARS)
2884 /* Make sure scroll bars are redrawn. As they aren't redrawn by
2885 redisplay, do it here. */
2886 if (FRAME_GTK_WIDGET (f))
2887 gtk_widget_queue_draw (FRAME_GTK_WIDGET (f));
2888 #endif
2890 XFlush (FRAME_X_DISPLAY (f));
2892 unblock_input ();
2897 /* Invert the middle quarter of the frame for .15 sec. */
2899 static void
2900 XTflash (struct frame *f)
2902 block_input ();
2905 #ifdef USE_GTK
2906 /* Use Gdk routines to draw. This way, we won't draw over scroll bars
2907 when the scroll bars and the edit widget share the same X window. */
2908 GdkWindow *window = gtk_widget_get_window (FRAME_GTK_WIDGET (f));
2909 #ifdef HAVE_GTK3
2910 cairo_t *cr = gdk_cairo_create (window);
2911 cairo_set_source_rgb (cr, 1, 1, 1);
2912 cairo_set_operator (cr, CAIRO_OPERATOR_DIFFERENCE);
2913 #define XFillRectangle(d, win, gc, x, y, w, h) \
2914 do { \
2915 cairo_rectangle (cr, x, y, w, h); \
2916 cairo_fill (cr); \
2918 while (0)
2919 #else /* ! HAVE_GTK3 */
2920 GdkGCValues vals;
2921 GdkGC *gc;
2922 vals.foreground.pixel = (FRAME_FOREGROUND_PIXEL (f)
2923 ^ FRAME_BACKGROUND_PIXEL (f));
2924 vals.function = GDK_XOR;
2925 gc = gdk_gc_new_with_values (window,
2926 &vals, GDK_GC_FUNCTION | GDK_GC_FOREGROUND);
2927 #define XFillRectangle(d, win, gc, x, y, w, h) \
2928 gdk_draw_rectangle (window, gc, TRUE, x, y, w, h)
2929 #endif /* ! HAVE_GTK3 */
2930 #else /* ! USE_GTK */
2931 GC gc;
2933 /* Create a GC that will use the GXxor function to flip foreground
2934 pixels into background pixels. */
2936 XGCValues values;
2938 values.function = GXxor;
2939 values.foreground = (FRAME_FOREGROUND_PIXEL (f)
2940 ^ FRAME_BACKGROUND_PIXEL (f));
2942 gc = XCreateGC (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2943 GCFunction | GCForeground, &values);
2945 #endif
2947 /* Get the height not including a menu bar widget. */
2948 int height = FRAME_PIXEL_HEIGHT (f);
2949 /* Height of each line to flash. */
2950 int flash_height = FRAME_LINE_HEIGHT (f);
2951 /* These will be the left and right margins of the rectangles. */
2952 int flash_left = FRAME_INTERNAL_BORDER_WIDTH (f);
2953 int flash_right = FRAME_PIXEL_WIDTH (f) - FRAME_INTERNAL_BORDER_WIDTH (f);
2954 int width = flash_right - flash_left;
2956 /* If window is tall, flash top and bottom line. */
2957 if (height > 3 * FRAME_LINE_HEIGHT (f))
2959 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
2960 flash_left,
2961 (FRAME_INTERNAL_BORDER_WIDTH (f)
2962 + FRAME_TOP_MARGIN_HEIGHT (f)),
2963 width, flash_height);
2964 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
2965 flash_left,
2966 (height - flash_height
2967 - FRAME_INTERNAL_BORDER_WIDTH (f)),
2968 width, flash_height);
2971 else
2972 /* If it is short, flash it all. */
2973 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
2974 flash_left, FRAME_INTERNAL_BORDER_WIDTH (f),
2975 width, height - 2 * FRAME_INTERNAL_BORDER_WIDTH (f));
2977 x_flush (f);
2980 struct timespec delay = make_timespec (0, 150 * 1000 * 1000);
2981 struct timespec wakeup = timespec_add (current_timespec (), delay);
2983 /* Keep waiting until past the time wakeup or any input gets
2984 available. */
2985 while (! detect_input_pending ())
2987 struct timespec current = current_timespec ();
2988 struct timespec timeout;
2990 /* Break if result would not be positive. */
2991 if (timespec_cmp (wakeup, current) <= 0)
2992 break;
2994 /* How long `select' should wait. */
2995 timeout = make_timespec (0, 10 * 1000 * 1000);
2997 /* Try to wait that long--but we might wake up sooner. */
2998 pselect (0, NULL, NULL, NULL, &timeout, NULL);
3002 /* If window is tall, flash top and bottom line. */
3003 if (height > 3 * FRAME_LINE_HEIGHT (f))
3005 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
3006 flash_left,
3007 (FRAME_INTERNAL_BORDER_WIDTH (f)
3008 + FRAME_TOP_MARGIN_HEIGHT (f)),
3009 width, flash_height);
3010 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
3011 flash_left,
3012 (height - flash_height
3013 - FRAME_INTERNAL_BORDER_WIDTH (f)),
3014 width, flash_height);
3016 else
3017 /* If it is short, flash it all. */
3018 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
3019 flash_left, FRAME_INTERNAL_BORDER_WIDTH (f),
3020 width, height - 2 * FRAME_INTERNAL_BORDER_WIDTH (f));
3022 #ifdef USE_GTK
3023 #ifdef HAVE_GTK3
3024 cairo_destroy (cr);
3025 #else
3026 g_object_unref (G_OBJECT (gc));
3027 #endif
3028 #undef XFillRectangle
3029 #else
3030 XFreeGC (FRAME_X_DISPLAY (f), gc);
3031 #endif
3032 x_flush (f);
3036 unblock_input ();
3040 static void
3041 XTtoggle_invisible_pointer (struct frame *f, int invisible)
3043 block_input ();
3044 if (invisible)
3046 if (FRAME_DISPLAY_INFO (f)->invisible_cursor != 0)
3047 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3048 FRAME_DISPLAY_INFO (f)->invisible_cursor);
3050 else
3051 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3052 f->output_data.x->current_cursor);
3053 f->pointer_invisible = invisible;
3054 unblock_input ();
3058 /* Make audible bell. */
3060 static void
3061 XTring_bell (struct frame *f)
3063 if (FRAME_X_DISPLAY (f))
3065 if (visible_bell)
3066 XTflash (f);
3067 else
3069 block_input ();
3070 #ifdef HAVE_XKB
3071 XkbBell (FRAME_X_DISPLAY (f), None, 0, None);
3072 #else
3073 XBell (FRAME_X_DISPLAY (f), 0);
3074 #endif
3075 XFlush (FRAME_X_DISPLAY (f));
3076 unblock_input ();
3081 /***********************************************************************
3082 Line Dance
3083 ***********************************************************************/
3085 /* Perform an insert-lines or delete-lines operation, inserting N
3086 lines or deleting -N lines at vertical position VPOS. */
3088 static void
3089 x_ins_del_lines (struct frame *f, int vpos, int n)
3091 emacs_abort ();
3095 /* Scroll part of the display as described by RUN. */
3097 static void
3098 x_scroll_run (struct window *w, struct run *run)
3100 struct frame *f = XFRAME (w->frame);
3101 int x, y, width, height, from_y, to_y, bottom_y;
3103 /* Get frame-relative bounding box of the text display area of W,
3104 without mode lines. Include in this box the left and right
3105 fringe of W. */
3106 window_box (w, ANY_AREA, &x, &y, &width, &height);
3108 from_y = WINDOW_TO_FRAME_PIXEL_Y (w, run->current_y);
3109 to_y = WINDOW_TO_FRAME_PIXEL_Y (w, run->desired_y);
3110 bottom_y = y + height;
3112 if (to_y < from_y)
3114 /* Scrolling up. Make sure we don't copy part of the mode
3115 line at the bottom. */
3116 if (from_y + run->height > bottom_y)
3117 height = bottom_y - from_y;
3118 else
3119 height = run->height;
3121 else
3123 /* Scrolling down. Make sure we don't copy over the mode line.
3124 at the bottom. */
3125 if (to_y + run->height > bottom_y)
3126 height = bottom_y - to_y;
3127 else
3128 height = run->height;
3131 block_input ();
3133 /* Cursor off. Will be switched on again in x_update_window_end. */
3134 x_clear_cursor (w);
3136 XCopyArea (FRAME_X_DISPLAY (f),
3137 FRAME_X_WINDOW (f), FRAME_X_WINDOW (f),
3138 f->output_data.x->normal_gc,
3139 x, from_y,
3140 width, height,
3141 x, to_y);
3143 unblock_input ();
3148 /***********************************************************************
3149 Exposure Events
3150 ***********************************************************************/
3153 static void
3154 frame_highlight (struct frame *f)
3156 /* We used to only do this if Vx_no_window_manager was non-nil, but
3157 the ICCCM (section 4.1.6) says that the window's border pixmap
3158 and border pixel are window attributes which are "private to the
3159 client", so we can always change it to whatever we want. */
3160 block_input ();
3161 /* I recently started to get errors in this XSetWindowBorder, depending on
3162 the window-manager in use, tho something more is at play since I've been
3163 using that same window-manager binary for ever. Let's not crash just
3164 because of this (bug#9310). */
3165 x_catch_errors (FRAME_X_DISPLAY (f));
3166 XSetWindowBorder (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3167 f->output_data.x->border_pixel);
3168 x_uncatch_errors ();
3169 unblock_input ();
3170 x_update_cursor (f, 1);
3171 x_set_frame_alpha (f);
3174 static void
3175 frame_unhighlight (struct frame *f)
3177 /* We used to only do this if Vx_no_window_manager was non-nil, but
3178 the ICCCM (section 4.1.6) says that the window's border pixmap
3179 and border pixel are window attributes which are "private to the
3180 client", so we can always change it to whatever we want. */
3181 block_input ();
3182 /* Same as above for XSetWindowBorder (bug#9310). */
3183 x_catch_errors (FRAME_X_DISPLAY (f));
3184 XSetWindowBorderPixmap (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3185 f->output_data.x->border_tile);
3186 x_uncatch_errors ();
3187 unblock_input ();
3188 x_update_cursor (f, 1);
3189 x_set_frame_alpha (f);
3192 /* The focus has changed. Update the frames as necessary to reflect
3193 the new situation. Note that we can't change the selected frame
3194 here, because the Lisp code we are interrupting might become confused.
3195 Each event gets marked with the frame in which it occurred, so the
3196 Lisp code can tell when the switch took place by examining the events. */
3198 static void
3199 x_new_focus_frame (struct x_display_info *dpyinfo, struct frame *frame)
3201 struct frame *old_focus = dpyinfo->x_focus_frame;
3203 if (frame != dpyinfo->x_focus_frame)
3205 /* Set this before calling other routines, so that they see
3206 the correct value of x_focus_frame. */
3207 dpyinfo->x_focus_frame = frame;
3209 if (old_focus && old_focus->auto_lower)
3210 x_lower_frame (old_focus);
3212 if (dpyinfo->x_focus_frame && dpyinfo->x_focus_frame->auto_raise)
3213 dpyinfo->x_pending_autoraise_frame = dpyinfo->x_focus_frame;
3214 else
3215 dpyinfo->x_pending_autoraise_frame = NULL;
3218 x_frame_rehighlight (dpyinfo);
3221 /* Handle FocusIn and FocusOut state changes for FRAME.
3222 If FRAME has focus and there exists more than one frame, puts
3223 a FOCUS_IN_EVENT into *BUFP. */
3225 static void
3226 x_focus_changed (int type, int state, struct x_display_info *dpyinfo, struct frame *frame, struct input_event *bufp)
3228 if (type == FocusIn)
3230 if (dpyinfo->x_focus_event_frame != frame)
3232 x_new_focus_frame (dpyinfo, frame);
3233 dpyinfo->x_focus_event_frame = frame;
3235 /* Don't stop displaying the initial startup message
3236 for a switch-frame event we don't need. */
3237 /* When run as a daemon, Vterminal_frame is always NIL. */
3238 bufp->arg = (((NILP (Vterminal_frame) || EQ (Fdaemonp (), Qt))
3239 && CONSP (Vframe_list)
3240 && !NILP (XCDR (Vframe_list)))
3241 ? Qt : Qnil);
3242 bufp->kind = FOCUS_IN_EVENT;
3243 XSETFRAME (bufp->frame_or_window, frame);
3246 frame->output_data.x->focus_state |= state;
3248 #ifdef HAVE_X_I18N
3249 if (FRAME_XIC (frame))
3250 XSetICFocus (FRAME_XIC (frame));
3251 #endif
3253 else if (type == FocusOut)
3255 frame->output_data.x->focus_state &= ~state;
3257 if (dpyinfo->x_focus_event_frame == frame)
3259 dpyinfo->x_focus_event_frame = 0;
3260 x_new_focus_frame (dpyinfo, 0);
3262 bufp->kind = FOCUS_OUT_EVENT;
3263 XSETFRAME (bufp->frame_or_window, frame);
3266 #ifdef HAVE_X_I18N
3267 if (FRAME_XIC (frame))
3268 XUnsetICFocus (FRAME_XIC (frame));
3269 #endif
3270 if (frame->pointer_invisible)
3271 XTtoggle_invisible_pointer (frame, 0);
3275 /* Return the Emacs frame-object corresponding to an X window.
3276 It could be the frame's main window or an icon window. */
3278 static struct frame *
3279 x_window_to_frame (struct x_display_info *dpyinfo, int wdesc)
3281 Lisp_Object tail, frame;
3282 struct frame *f;
3284 if (wdesc == None)
3285 return NULL;
3287 FOR_EACH_FRAME (tail, frame)
3289 f = XFRAME (frame);
3290 if (!FRAME_X_P (f) || FRAME_DISPLAY_INFO (f) != dpyinfo)
3291 continue;
3292 if (f->output_data.x->hourglass_window == wdesc)
3293 return f;
3294 #ifdef USE_X_TOOLKIT
3295 if ((f->output_data.x->edit_widget
3296 && XtWindow (f->output_data.x->edit_widget) == wdesc)
3297 /* A tooltip frame? */
3298 || (!f->output_data.x->edit_widget
3299 && FRAME_X_WINDOW (f) == wdesc)
3300 || f->output_data.x->icon_desc == wdesc)
3301 return f;
3302 #else /* not USE_X_TOOLKIT */
3303 #ifdef USE_GTK
3304 if (f->output_data.x->edit_widget)
3306 GtkWidget *gwdesc = xg_win_to_widget (dpyinfo->display, wdesc);
3307 struct x_output *x = f->output_data.x;
3308 if (gwdesc != 0 && gwdesc == x->edit_widget)
3309 return f;
3311 #endif /* USE_GTK */
3312 if (FRAME_X_WINDOW (f) == wdesc
3313 || f->output_data.x->icon_desc == wdesc)
3314 return f;
3315 #endif /* not USE_X_TOOLKIT */
3317 return 0;
3320 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
3322 /* Like x_window_to_frame but also compares the window with the widget's
3323 windows. */
3325 static struct frame *
3326 x_any_window_to_frame (struct x_display_info *dpyinfo, int wdesc)
3328 Lisp_Object tail, frame;
3329 struct frame *f, *found = NULL;
3330 struct x_output *x;
3332 if (wdesc == None)
3333 return NULL;
3335 FOR_EACH_FRAME (tail, frame)
3337 if (found)
3338 break;
3339 f = XFRAME (frame);
3340 if (FRAME_X_P (f) && FRAME_DISPLAY_INFO (f) == dpyinfo)
3342 /* This frame matches if the window is any of its widgets. */
3343 x = f->output_data.x;
3344 if (x->hourglass_window == wdesc)
3345 found = f;
3346 else if (x->widget)
3348 #ifdef USE_GTK
3349 GtkWidget *gwdesc = xg_win_to_widget (dpyinfo->display, wdesc);
3350 if (gwdesc != 0
3351 && gtk_widget_get_toplevel (gwdesc) == x->widget)
3352 found = f;
3353 #else
3354 if (wdesc == XtWindow (x->widget)
3355 || wdesc == XtWindow (x->column_widget)
3356 || wdesc == XtWindow (x->edit_widget))
3357 found = f;
3358 /* Match if the window is this frame's menubar. */
3359 else if (lw_window_is_in_menubar (wdesc, x->menubar_widget))
3360 found = f;
3361 #endif
3363 else if (FRAME_X_WINDOW (f) == wdesc)
3364 /* A tooltip frame. */
3365 found = f;
3369 return found;
3372 /* Likewise, but consider only the menu bar widget. */
3374 static struct frame *
3375 x_menubar_window_to_frame (struct x_display_info *dpyinfo,
3376 const XEvent *event)
3378 Window wdesc = event->xany.window;
3379 Lisp_Object tail, frame;
3380 struct frame *f;
3381 struct x_output *x;
3383 if (wdesc == None)
3384 return NULL;
3386 FOR_EACH_FRAME (tail, frame)
3388 f = XFRAME (frame);
3389 if (!FRAME_X_P (f) || FRAME_DISPLAY_INFO (f) != dpyinfo)
3390 continue;
3391 x = f->output_data.x;
3392 #ifdef USE_GTK
3393 if (x->menubar_widget && xg_event_is_for_menubar (f, event))
3394 return f;
3395 #else
3396 /* Match if the window is this frame's menubar. */
3397 if (x->menubar_widget
3398 && lw_window_is_in_menubar (wdesc, x->menubar_widget))
3399 return f;
3400 #endif
3402 return 0;
3405 /* Return the frame whose principal (outermost) window is WDESC.
3406 If WDESC is some other (smaller) window, we return 0. */
3408 struct frame *
3409 x_top_window_to_frame (struct x_display_info *dpyinfo, int wdesc)
3411 Lisp_Object tail, frame;
3412 struct frame *f;
3413 struct x_output *x;
3415 if (wdesc == None)
3416 return NULL;
3418 FOR_EACH_FRAME (tail, frame)
3420 f = XFRAME (frame);
3421 if (!FRAME_X_P (f) || FRAME_DISPLAY_INFO (f) != dpyinfo)
3422 continue;
3423 x = f->output_data.x;
3425 if (x->widget)
3427 /* This frame matches if the window is its topmost widget. */
3428 #ifdef USE_GTK
3429 GtkWidget *gwdesc = xg_win_to_widget (dpyinfo->display, wdesc);
3430 if (gwdesc == x->widget)
3431 return f;
3432 #else
3433 if (wdesc == XtWindow (x->widget))
3434 return f;
3435 #endif
3437 else if (FRAME_X_WINDOW (f) == wdesc)
3438 /* Tooltip frame. */
3439 return f;
3441 return 0;
3444 #else /* !USE_X_TOOLKIT && !USE_GTK */
3446 #define x_any_window_to_frame(d, i) x_window_to_frame (d, i)
3447 #define x_top_window_to_frame(d, i) x_window_to_frame (d, i)
3449 #endif /* USE_X_TOOLKIT || USE_GTK */
3451 /* The focus may have changed. Figure out if it is a real focus change,
3452 by checking both FocusIn/Out and Enter/LeaveNotify events.
3454 Returns FOCUS_IN_EVENT event in *BUFP. */
3456 static void
3457 x_detect_focus_change (struct x_display_info *dpyinfo, struct frame *frame,
3458 const XEvent *event, struct input_event *bufp)
3460 if (!frame)
3461 return;
3463 switch (event->type)
3465 case EnterNotify:
3466 case LeaveNotify:
3468 struct frame *focus_frame = dpyinfo->x_focus_event_frame;
3469 int focus_state
3470 = focus_frame ? focus_frame->output_data.x->focus_state : 0;
3472 if (event->xcrossing.detail != NotifyInferior
3473 && event->xcrossing.focus
3474 && ! (focus_state & FOCUS_EXPLICIT))
3475 x_focus_changed ((event->type == EnterNotify ? FocusIn : FocusOut),
3476 FOCUS_IMPLICIT,
3477 dpyinfo, frame, bufp);
3479 break;
3481 case FocusIn:
3482 case FocusOut:
3483 x_focus_changed (event->type,
3484 (event->xfocus.detail == NotifyPointer ?
3485 FOCUS_IMPLICIT : FOCUS_EXPLICIT),
3486 dpyinfo, frame, bufp);
3487 break;
3489 case ClientMessage:
3490 if (event->xclient.message_type == dpyinfo->Xatom_XEMBED)
3492 enum xembed_message msg = event->xclient.data.l[1];
3493 x_focus_changed ((msg == XEMBED_FOCUS_IN ? FocusIn : FocusOut),
3494 FOCUS_EXPLICIT, dpyinfo, frame, bufp);
3496 break;
3501 #if !defined USE_X_TOOLKIT && !defined USE_GTK
3502 /* Handle an event saying the mouse has moved out of an Emacs frame. */
3504 void
3505 x_mouse_leave (struct x_display_info *dpyinfo)
3507 x_new_focus_frame (dpyinfo, dpyinfo->x_focus_event_frame);
3509 #endif
3511 /* The focus has changed, or we have redirected a frame's focus to
3512 another frame (this happens when a frame uses a surrogate
3513 mini-buffer frame). Shift the highlight as appropriate.
3515 The FRAME argument doesn't necessarily have anything to do with which
3516 frame is being highlighted or un-highlighted; we only use it to find
3517 the appropriate X display info. */
3519 static void
3520 XTframe_rehighlight (struct frame *frame)
3522 x_frame_rehighlight (FRAME_DISPLAY_INFO (frame));
3525 static void
3526 x_frame_rehighlight (struct x_display_info *dpyinfo)
3528 struct frame *old_highlight = dpyinfo->x_highlight_frame;
3530 if (dpyinfo->x_focus_frame)
3532 dpyinfo->x_highlight_frame
3533 = ((FRAMEP (FRAME_FOCUS_FRAME (dpyinfo->x_focus_frame)))
3534 ? XFRAME (FRAME_FOCUS_FRAME (dpyinfo->x_focus_frame))
3535 : dpyinfo->x_focus_frame);
3536 if (! FRAME_LIVE_P (dpyinfo->x_highlight_frame))
3538 fset_focus_frame (dpyinfo->x_focus_frame, Qnil);
3539 dpyinfo->x_highlight_frame = dpyinfo->x_focus_frame;
3542 else
3543 dpyinfo->x_highlight_frame = 0;
3545 if (dpyinfo->x_highlight_frame != old_highlight)
3547 if (old_highlight)
3548 frame_unhighlight (old_highlight);
3549 if (dpyinfo->x_highlight_frame)
3550 frame_highlight (dpyinfo->x_highlight_frame);
3556 /* Keyboard processing - modifier keys, vendor-specific keysyms, etc. */
3558 /* Initialize mode_switch_bit and modifier_meaning. */
3559 static void
3560 x_find_modifier_meanings (struct x_display_info *dpyinfo)
3562 int min_code, max_code;
3563 KeySym *syms;
3564 int syms_per_code;
3565 XModifierKeymap *mods;
3567 dpyinfo->meta_mod_mask = 0;
3568 dpyinfo->shift_lock_mask = 0;
3569 dpyinfo->alt_mod_mask = 0;
3570 dpyinfo->super_mod_mask = 0;
3571 dpyinfo->hyper_mod_mask = 0;
3573 XDisplayKeycodes (dpyinfo->display, &min_code, &max_code);
3575 syms = XGetKeyboardMapping (dpyinfo->display,
3576 min_code, max_code - min_code + 1,
3577 &syms_per_code);
3578 mods = XGetModifierMapping (dpyinfo->display);
3580 /* Scan the modifier table to see which modifier bits the Meta and
3581 Alt keysyms are on. */
3583 int row, col; /* The row and column in the modifier table. */
3584 int found_alt_or_meta;
3586 for (row = 3; row < 8; row++)
3588 found_alt_or_meta = 0;
3589 for (col = 0; col < mods->max_keypermod; col++)
3591 KeyCode code = mods->modifiermap[(row * mods->max_keypermod) + col];
3593 /* Zeroes are used for filler. Skip them. */
3594 if (code == 0)
3595 continue;
3597 /* Are any of this keycode's keysyms a meta key? */
3599 int code_col;
3601 for (code_col = 0; code_col < syms_per_code; code_col++)
3603 int sym = syms[((code - min_code) * syms_per_code) + code_col];
3605 switch (sym)
3607 case XK_Meta_L:
3608 case XK_Meta_R:
3609 found_alt_or_meta = 1;
3610 dpyinfo->meta_mod_mask |= (1 << row);
3611 break;
3613 case XK_Alt_L:
3614 case XK_Alt_R:
3615 found_alt_or_meta = 1;
3616 dpyinfo->alt_mod_mask |= (1 << row);
3617 break;
3619 case XK_Hyper_L:
3620 case XK_Hyper_R:
3621 if (!found_alt_or_meta)
3622 dpyinfo->hyper_mod_mask |= (1 << row);
3623 code_col = syms_per_code;
3624 col = mods->max_keypermod;
3625 break;
3627 case XK_Super_L:
3628 case XK_Super_R:
3629 if (!found_alt_or_meta)
3630 dpyinfo->super_mod_mask |= (1 << row);
3631 code_col = syms_per_code;
3632 col = mods->max_keypermod;
3633 break;
3635 case XK_Shift_Lock:
3636 /* Ignore this if it's not on the lock modifier. */
3637 if (!found_alt_or_meta && ((1 << row) == LockMask))
3638 dpyinfo->shift_lock_mask = LockMask;
3639 code_col = syms_per_code;
3640 col = mods->max_keypermod;
3641 break;
3649 /* If we couldn't find any meta keys, accept any alt keys as meta keys. */
3650 if (! dpyinfo->meta_mod_mask)
3652 dpyinfo->meta_mod_mask = dpyinfo->alt_mod_mask;
3653 dpyinfo->alt_mod_mask = 0;
3656 /* If some keys are both alt and meta,
3657 make them just meta, not alt. */
3658 if (dpyinfo->alt_mod_mask & dpyinfo->meta_mod_mask)
3660 dpyinfo->alt_mod_mask &= ~dpyinfo->meta_mod_mask;
3663 XFree (syms);
3664 XFreeModifiermap (mods);
3667 /* Convert between the modifier bits X uses and the modifier bits
3668 Emacs uses. */
3671 x_x_to_emacs_modifiers (struct x_display_info *dpyinfo, int state)
3673 int mod_meta = meta_modifier;
3674 int mod_alt = alt_modifier;
3675 int mod_hyper = hyper_modifier;
3676 int mod_super = super_modifier;
3677 Lisp_Object tem;
3679 tem = Fget (Vx_alt_keysym, Qmodifier_value);
3680 if (INTEGERP (tem)) mod_alt = XINT (tem) & INT_MAX;
3681 tem = Fget (Vx_meta_keysym, Qmodifier_value);
3682 if (INTEGERP (tem)) mod_meta = XINT (tem) & INT_MAX;
3683 tem = Fget (Vx_hyper_keysym, Qmodifier_value);
3684 if (INTEGERP (tem)) mod_hyper = XINT (tem) & INT_MAX;
3685 tem = Fget (Vx_super_keysym, Qmodifier_value);
3686 if (INTEGERP (tem)) mod_super = XINT (tem) & INT_MAX;
3688 return ( ((state & (ShiftMask | dpyinfo->shift_lock_mask)) ? shift_modifier : 0)
3689 | ((state & ControlMask) ? ctrl_modifier : 0)
3690 | ((state & dpyinfo->meta_mod_mask) ? mod_meta : 0)
3691 | ((state & dpyinfo->alt_mod_mask) ? mod_alt : 0)
3692 | ((state & dpyinfo->super_mod_mask) ? mod_super : 0)
3693 | ((state & dpyinfo->hyper_mod_mask) ? mod_hyper : 0));
3696 static int
3697 x_emacs_to_x_modifiers (struct x_display_info *dpyinfo, EMACS_INT state)
3699 EMACS_INT mod_meta = meta_modifier;
3700 EMACS_INT mod_alt = alt_modifier;
3701 EMACS_INT mod_hyper = hyper_modifier;
3702 EMACS_INT mod_super = super_modifier;
3704 Lisp_Object tem;
3706 tem = Fget (Vx_alt_keysym, Qmodifier_value);
3707 if (INTEGERP (tem)) mod_alt = XINT (tem);
3708 tem = Fget (Vx_meta_keysym, Qmodifier_value);
3709 if (INTEGERP (tem)) mod_meta = XINT (tem);
3710 tem = Fget (Vx_hyper_keysym, Qmodifier_value);
3711 if (INTEGERP (tem)) mod_hyper = XINT (tem);
3712 tem = Fget (Vx_super_keysym, Qmodifier_value);
3713 if (INTEGERP (tem)) mod_super = XINT (tem);
3716 return ( ((state & mod_alt) ? dpyinfo->alt_mod_mask : 0)
3717 | ((state & mod_super) ? dpyinfo->super_mod_mask : 0)
3718 | ((state & mod_hyper) ? dpyinfo->hyper_mod_mask : 0)
3719 | ((state & shift_modifier) ? ShiftMask : 0)
3720 | ((state & ctrl_modifier) ? ControlMask : 0)
3721 | ((state & mod_meta) ? dpyinfo->meta_mod_mask : 0));
3724 /* Convert a keysym to its name. */
3726 char *
3727 x_get_keysym_name (int keysym)
3729 char *value;
3731 block_input ();
3732 value = XKeysymToString (keysym);
3733 unblock_input ();
3735 return value;
3738 /* Mouse clicks and mouse movement. Rah.
3740 Formerly, we used PointerMotionHintMask (in standard_event_mask)
3741 so that we would have to call XQueryPointer after each MotionNotify
3742 event to ask for another such event. However, this made mouse tracking
3743 slow, and there was a bug that made it eventually stop.
3745 Simply asking for MotionNotify all the time seems to work better.
3747 In order to avoid asking for motion events and then throwing most
3748 of them away or busy-polling the server for mouse positions, we ask
3749 the server for pointer motion hints. This means that we get only
3750 one event per group of mouse movements. "Groups" are delimited by
3751 other kinds of events (focus changes and button clicks, for
3752 example), or by XQueryPointer calls; when one of these happens, we
3753 get another MotionNotify event the next time the mouse moves. This
3754 is at least as efficient as getting motion events when mouse
3755 tracking is on, and I suspect only negligibly worse when tracking
3756 is off. */
3758 /* Prepare a mouse-event in *RESULT for placement in the input queue.
3760 If the event is a button press, then note that we have grabbed
3761 the mouse. */
3763 static Lisp_Object
3764 construct_mouse_click (struct input_event *result,
3765 const XButtonEvent *event,
3766 struct frame *f)
3768 /* Make the event type NO_EVENT; we'll change that when we decide
3769 otherwise. */
3770 result->kind = MOUSE_CLICK_EVENT;
3771 result->code = event->button - Button1;
3772 result->timestamp = event->time;
3773 result->modifiers = (x_x_to_emacs_modifiers (FRAME_DISPLAY_INFO (f),
3774 event->state)
3775 | (event->type == ButtonRelease
3776 ? up_modifier
3777 : down_modifier));
3779 XSETINT (result->x, event->x);
3780 XSETINT (result->y, event->y);
3781 XSETFRAME (result->frame_or_window, f);
3782 result->arg = Qnil;
3783 return Qnil;
3786 /* Function to report a mouse movement to the mainstream Emacs code.
3787 The input handler calls this.
3789 We have received a mouse movement event, which is given in *event.
3790 If the mouse is over a different glyph than it was last time, tell
3791 the mainstream emacs code by setting mouse_moved. If not, ask for
3792 another motion event, so we can check again the next time it moves. */
3794 static int
3795 note_mouse_movement (struct frame *frame, const XMotionEvent *event)
3797 XRectangle *r;
3798 struct x_display_info *dpyinfo;
3800 if (!FRAME_X_OUTPUT (frame))
3801 return 0;
3803 dpyinfo = FRAME_DISPLAY_INFO (frame);
3804 dpyinfo->last_mouse_movement_time = event->time;
3805 dpyinfo->last_mouse_motion_frame = frame;
3806 dpyinfo->last_mouse_motion_x = event->x;
3807 dpyinfo->last_mouse_motion_y = event->y;
3809 if (event->window != FRAME_X_WINDOW (frame))
3811 frame->mouse_moved = 1;
3812 dpyinfo->last_mouse_scroll_bar = NULL;
3813 note_mouse_highlight (frame, -1, -1);
3814 dpyinfo->last_mouse_glyph_frame = NULL;
3815 return 1;
3819 /* Has the mouse moved off the glyph it was on at the last sighting? */
3820 r = &dpyinfo->last_mouse_glyph;
3821 if (frame != dpyinfo->last_mouse_glyph_frame
3822 || event->x < r->x || event->x >= r->x + r->width
3823 || event->y < r->y || event->y >= r->y + r->height)
3825 frame->mouse_moved = 1;
3826 dpyinfo->last_mouse_scroll_bar = NULL;
3827 note_mouse_highlight (frame, event->x, event->y);
3828 /* Remember which glyph we're now on. */
3829 remember_mouse_glyph (frame, event->x, event->y, r);
3830 dpyinfo->last_mouse_glyph_frame = frame;
3831 return 1;
3834 return 0;
3837 /* Return the current position of the mouse.
3838 *FP should be a frame which indicates which display to ask about.
3840 If the mouse movement started in a scroll bar, set *FP, *BAR_WINDOW,
3841 and *PART to the frame, window, and scroll bar part that the mouse
3842 is over. Set *X and *Y to the portion and whole of the mouse's
3843 position on the scroll bar.
3845 If the mouse movement started elsewhere, set *FP to the frame the
3846 mouse is on, *BAR_WINDOW to nil, and *X and *Y to the character cell
3847 the mouse is over.
3849 Set *TIMESTAMP to the server time-stamp for the time at which the mouse
3850 was at this position.
3852 Don't store anything if we don't have a valid set of values to report.
3854 This clears the mouse_moved flag, so we can wait for the next mouse
3855 movement. */
3857 static void
3858 XTmouse_position (struct frame **fp, int insist, Lisp_Object *bar_window,
3859 enum scroll_bar_part *part, Lisp_Object *x, Lisp_Object *y,
3860 Time *timestamp)
3862 struct frame *f1;
3863 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (*fp);
3865 block_input ();
3867 if (dpyinfo->last_mouse_scroll_bar && insist == 0)
3868 x_scroll_bar_report_motion (fp, bar_window, part, x, y, timestamp);
3869 else
3871 Window root;
3872 int root_x, root_y;
3874 Window dummy_window;
3875 int dummy;
3877 Lisp_Object frame, tail;
3879 /* Clear the mouse-moved flag for every frame on this display. */
3880 FOR_EACH_FRAME (tail, frame)
3881 if (FRAME_X_P (XFRAME (frame))
3882 && FRAME_X_DISPLAY (XFRAME (frame)) == FRAME_X_DISPLAY (*fp))
3883 XFRAME (frame)->mouse_moved = 0;
3885 dpyinfo->last_mouse_scroll_bar = NULL;
3887 /* Figure out which root window we're on. */
3888 XQueryPointer (FRAME_X_DISPLAY (*fp),
3889 DefaultRootWindow (FRAME_X_DISPLAY (*fp)),
3891 /* The root window which contains the pointer. */
3892 &root,
3894 /* Trash which we can't trust if the pointer is on
3895 a different screen. */
3896 &dummy_window,
3898 /* The position on that root window. */
3899 &root_x, &root_y,
3901 /* More trash we can't trust. */
3902 &dummy, &dummy,
3904 /* Modifier keys and pointer buttons, about which
3905 we don't care. */
3906 (unsigned int *) &dummy);
3908 /* Now we have a position on the root; find the innermost window
3909 containing the pointer. */
3911 Window win, child;
3912 int win_x, win_y;
3913 int parent_x = 0, parent_y = 0;
3915 win = root;
3917 /* XTranslateCoordinates can get errors if the window
3918 structure is changing at the same time this function
3919 is running. So at least we must not crash from them. */
3921 x_catch_errors (FRAME_X_DISPLAY (*fp));
3923 if (x_mouse_grabbed (dpyinfo))
3925 /* If mouse was grabbed on a frame, give coords for that frame
3926 even if the mouse is now outside it. */
3927 XTranslateCoordinates (FRAME_X_DISPLAY (*fp),
3929 /* From-window. */
3930 root,
3932 /* To-window. */
3933 FRAME_X_WINDOW (dpyinfo->last_mouse_frame),
3935 /* From-position, to-position. */
3936 root_x, root_y, &win_x, &win_y,
3938 /* Child of win. */
3939 &child);
3940 f1 = dpyinfo->last_mouse_frame;
3942 else
3944 while (1)
3946 XTranslateCoordinates (FRAME_X_DISPLAY (*fp),
3948 /* From-window, to-window. */
3949 root, win,
3951 /* From-position, to-position. */
3952 root_x, root_y, &win_x, &win_y,
3954 /* Child of win. */
3955 &child);
3957 if (child == None || child == win)
3958 break;
3959 #ifdef USE_GTK
3960 /* We don't wan't to know the innermost window. We
3961 want the edit window. For non-Gtk+ the innermost
3962 window is the edit window. For Gtk+ it might not
3963 be. It might be the tool bar for example. */
3964 if (x_window_to_frame (dpyinfo, win))
3965 break;
3966 #endif
3967 win = child;
3968 parent_x = win_x;
3969 parent_y = win_y;
3972 /* Now we know that:
3973 win is the innermost window containing the pointer
3974 (XTC says it has no child containing the pointer),
3975 win_x and win_y are the pointer's position in it
3976 (XTC did this the last time through), and
3977 parent_x and parent_y are the pointer's position in win's parent.
3978 (They are what win_x and win_y were when win was child.
3979 If win is the root window, it has no parent, and
3980 parent_{x,y} are invalid, but that's okay, because we'll
3981 never use them in that case.) */
3983 #ifdef USE_GTK
3984 /* We don't wan't to know the innermost window. We
3985 want the edit window. */
3986 f1 = x_window_to_frame (dpyinfo, win);
3987 #else
3988 /* Is win one of our frames? */
3989 f1 = x_any_window_to_frame (dpyinfo, win);
3990 #endif
3992 #ifdef USE_X_TOOLKIT
3993 /* If we end up with the menu bar window, say it's not
3994 on the frame. */
3995 if (f1 != NULL
3996 && f1->output_data.x->menubar_widget
3997 && win == XtWindow (f1->output_data.x->menubar_widget))
3998 f1 = NULL;
3999 #endif /* USE_X_TOOLKIT */
4002 if (x_had_errors_p (FRAME_X_DISPLAY (*fp)))
4003 f1 = 0;
4005 x_uncatch_errors ();
4007 /* If not, is it one of our scroll bars? */
4008 if (! f1)
4010 struct scroll_bar *bar;
4012 bar = x_window_to_scroll_bar (FRAME_X_DISPLAY (*fp), win);
4014 if (bar)
4016 f1 = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
4017 win_x = parent_x;
4018 win_y = parent_y;
4022 if (f1 == 0 && insist > 0)
4023 f1 = SELECTED_FRAME ();
4025 if (f1)
4027 /* Ok, we found a frame. Store all the values.
4028 last_mouse_glyph is a rectangle used to reduce the
4029 generation of mouse events. To not miss any motion
4030 events, we must divide the frame into rectangles of the
4031 size of the smallest character that could be displayed
4032 on it, i.e. into the same rectangles that matrices on
4033 the frame are divided into. */
4035 /* FIXME: what if F1 is not an X frame? */
4036 dpyinfo = FRAME_DISPLAY_INFO (f1);
4037 remember_mouse_glyph (f1, win_x, win_y, &dpyinfo->last_mouse_glyph);
4038 dpyinfo->last_mouse_glyph_frame = f1;
4040 *bar_window = Qnil;
4041 *part = 0;
4042 *fp = f1;
4043 XSETINT (*x, win_x);
4044 XSETINT (*y, win_y);
4045 *timestamp = dpyinfo->last_mouse_movement_time;
4050 unblock_input ();
4055 /***********************************************************************
4056 Scroll bars
4057 ***********************************************************************/
4059 /* Scroll bar support. */
4061 /* Given an X window ID and a DISPLAY, find the struct scroll_bar which
4062 manages it.
4063 This can be called in GC, so we have to make sure to strip off mark
4064 bits. */
4066 static struct scroll_bar *
4067 x_window_to_scroll_bar (Display *display, Window window_id)
4069 Lisp_Object tail, frame;
4071 #if defined (USE_GTK) && defined (USE_TOOLKIT_SCROLL_BARS)
4072 window_id = (Window) xg_get_scroll_id_for_window (display, window_id);
4073 #endif /* USE_GTK && USE_TOOLKIT_SCROLL_BARS */
4075 FOR_EACH_FRAME (tail, frame)
4077 Lisp_Object bar, condemned;
4079 if (! FRAME_X_P (XFRAME (frame)))
4080 continue;
4082 /* Scan this frame's scroll bar list for a scroll bar with the
4083 right window ID. */
4084 condemned = FRAME_CONDEMNED_SCROLL_BARS (XFRAME (frame));
4085 for (bar = FRAME_SCROLL_BARS (XFRAME (frame));
4086 /* This trick allows us to search both the ordinary and
4087 condemned scroll bar lists with one loop. */
4088 ! NILP (bar) || (bar = condemned,
4089 condemned = Qnil,
4090 ! NILP (bar));
4091 bar = XSCROLL_BAR (bar)->next)
4092 if (XSCROLL_BAR (bar)->x_window == window_id &&
4093 FRAME_X_DISPLAY (XFRAME (frame)) == display)
4094 return XSCROLL_BAR (bar);
4097 return NULL;
4101 #if defined USE_LUCID
4103 /* Return the Lucid menu bar WINDOW is part of. Return null
4104 if WINDOW is not part of a menu bar. */
4106 static Widget
4107 x_window_to_menu_bar (Window window)
4109 Lisp_Object tail, frame;
4111 FOR_EACH_FRAME (tail, frame)
4112 if (FRAME_X_P (XFRAME (frame)))
4114 Widget menu_bar = XFRAME (frame)->output_data.x->menubar_widget;
4116 if (menu_bar && xlwmenu_window_p (menu_bar, window))
4117 return menu_bar;
4119 return NULL;
4122 #endif /* USE_LUCID */
4125 /************************************************************************
4126 Toolkit scroll bars
4127 ************************************************************************/
4129 #ifdef USE_TOOLKIT_SCROLL_BARS
4131 static void x_send_scroll_bar_event (Lisp_Object, int, int, int);
4133 /* Lisp window being scrolled. Set when starting to interact with
4134 a toolkit scroll bar, reset to nil when ending the interaction. */
4136 static Lisp_Object window_being_scrolled;
4138 /* Whether this is an Xaw with arrow-scrollbars. This should imply
4139 that movements of 1/20 of the screen size are mapped to up/down. */
4141 #ifndef USE_GTK
4142 /* Id of action hook installed for scroll bars. */
4144 static XtActionHookId action_hook_id;
4146 static Boolean xaw3d_arrow_scroll;
4148 /* Whether the drag scrolling maintains the mouse at the top of the
4149 thumb. If not, resizing the thumb needs to be done more carefully
4150 to avoid jerkiness. */
4152 static Boolean xaw3d_pick_top;
4154 /* Action hook installed via XtAppAddActionHook when toolkit scroll
4155 bars are used.. The hook is responsible for detecting when
4156 the user ends an interaction with the scroll bar, and generates
4157 a `end-scroll' SCROLL_BAR_CLICK_EVENT' event if so. */
4159 static void
4160 xt_action_hook (Widget widget, XtPointer client_data, String action_name,
4161 XEvent *event, String *params, Cardinal *num_params)
4163 int scroll_bar_p;
4164 const char *end_action;
4166 #ifdef USE_MOTIF
4167 scroll_bar_p = XmIsScrollBar (widget);
4168 end_action = "Release";
4169 #else /* !USE_MOTIF i.e. use Xaw */
4170 scroll_bar_p = XtIsSubclass (widget, scrollbarWidgetClass);
4171 end_action = "EndScroll";
4172 #endif /* USE_MOTIF */
4174 if (scroll_bar_p
4175 && strcmp (action_name, end_action) == 0
4176 && WINDOWP (window_being_scrolled))
4178 struct window *w;
4179 struct scroll_bar *bar;
4181 x_send_scroll_bar_event (window_being_scrolled,
4182 scroll_bar_end_scroll, 0, 0);
4183 w = XWINDOW (window_being_scrolled);
4184 bar = XSCROLL_BAR (w->vertical_scroll_bar);
4186 if (bar->dragging != -1)
4188 bar->dragging = -1;
4189 /* The thumb size is incorrect while dragging: fix it. */
4190 set_vertical_scroll_bar (w);
4192 window_being_scrolled = Qnil;
4193 #if defined (USE_LUCID)
4194 bar->last_seen_part = scroll_bar_nowhere;
4195 #endif
4196 /* Xt timeouts no longer needed. */
4197 toolkit_scroll_bar_interaction = 0;
4200 #endif /* not USE_GTK */
4202 /* Send a client message with message type Xatom_Scrollbar for a
4203 scroll action to the frame of WINDOW. PART is a value identifying
4204 the part of the scroll bar that was clicked on. PORTION is the
4205 amount to scroll of a whole of WHOLE. */
4207 static void
4208 x_send_scroll_bar_event (Lisp_Object window, int part, int portion, int whole)
4210 XEvent event;
4211 XClientMessageEvent *ev = &event.xclient;
4212 struct window *w = XWINDOW (window);
4213 struct frame *f = XFRAME (w->frame);
4214 intptr_t iw = (intptr_t) w;
4215 enum { BITS_PER_INTPTR = CHAR_BIT * sizeof iw };
4216 verify (BITS_PER_INTPTR <= 64);
4217 int sign_shift = BITS_PER_INTPTR - 32;
4219 block_input ();
4221 /* Construct a ClientMessage event to send to the frame. */
4222 ev->type = ClientMessage;
4223 ev->message_type = FRAME_DISPLAY_INFO (f)->Xatom_Scrollbar;
4224 ev->display = FRAME_X_DISPLAY (f);
4225 ev->window = FRAME_X_WINDOW (f);
4226 ev->format = 32;
4228 /* A 32-bit X client on a 64-bit X server can pass a window pointer
4229 as-is. A 64-bit client on a 32-bit X server is in trouble
4230 because a pointer does not fit and would be truncated while
4231 passing through the server. So use two slots and hope that X12
4232 will resolve such issues someday. */
4233 ev->data.l[0] = iw >> 31 >> 1;
4234 ev->data.l[1] = sign_shift <= 0 ? iw : iw << sign_shift >> sign_shift;
4235 ev->data.l[2] = part;
4236 ev->data.l[3] = portion;
4237 ev->data.l[4] = whole;
4239 /* Make Xt timeouts work while the scroll bar is active. */
4240 #ifdef USE_X_TOOLKIT
4241 toolkit_scroll_bar_interaction = 1;
4242 x_activate_timeout_atimer ();
4243 #endif
4245 /* Setting the event mask to zero means that the message will
4246 be sent to the client that created the window, and if that
4247 window no longer exists, no event will be sent. */
4248 XSendEvent (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), False, 0, &event);
4249 unblock_input ();
4253 /* Transform a scroll bar ClientMessage EVENT to an Emacs input event
4254 in *IEVENT. */
4256 static void
4257 x_scroll_bar_to_input_event (const XEvent *event,
4258 struct input_event *ievent)
4260 const XClientMessageEvent *ev = &event->xclient;
4261 Lisp_Object window;
4262 struct window *w;
4264 /* See the comment in the function above. */
4265 intptr_t iw0 = ev->data.l[0];
4266 intptr_t iw1 = ev->data.l[1];
4267 intptr_t iw = (iw0 << 31 << 1) + (iw1 & 0xffffffffu);
4268 w = (struct window *) iw;
4270 XSETWINDOW (window, w);
4272 ievent->kind = SCROLL_BAR_CLICK_EVENT;
4273 ievent->frame_or_window = window;
4274 ievent->arg = Qnil;
4275 #ifdef USE_GTK
4276 ievent->timestamp = CurrentTime;
4277 #else
4278 ievent->timestamp =
4279 XtLastTimestampProcessed (FRAME_X_DISPLAY (XFRAME (w->frame)));
4280 #endif
4281 ievent->code = 0;
4282 ievent->part = ev->data.l[2];
4283 ievent->x = make_number (ev->data.l[3]);
4284 ievent->y = make_number (ev->data.l[4]);
4285 ievent->modifiers = 0;
4289 #ifdef USE_MOTIF
4291 /* Minimum and maximum values used for Motif scroll bars. */
4293 #define XM_SB_MAX 10000000
4296 /* Scroll bar callback for Motif scroll bars. WIDGET is the scroll
4297 bar widget. CLIENT_DATA is a pointer to the scroll_bar structure.
4298 CALL_DATA is a pointer to a XmScrollBarCallbackStruct. */
4300 static void
4301 xm_scroll_callback (Widget widget, XtPointer client_data, XtPointer call_data)
4303 struct scroll_bar *bar = client_data;
4304 XmScrollBarCallbackStruct *cs = call_data;
4305 int part = -1, whole = 0, portion = 0;
4307 switch (cs->reason)
4309 case XmCR_DECREMENT:
4310 bar->dragging = -1;
4311 part = scroll_bar_up_arrow;
4312 break;
4314 case XmCR_INCREMENT:
4315 bar->dragging = -1;
4316 part = scroll_bar_down_arrow;
4317 break;
4319 case XmCR_PAGE_DECREMENT:
4320 bar->dragging = -1;
4321 part = scroll_bar_above_handle;
4322 break;
4324 case XmCR_PAGE_INCREMENT:
4325 bar->dragging = -1;
4326 part = scroll_bar_below_handle;
4327 break;
4329 case XmCR_TO_TOP:
4330 bar->dragging = -1;
4331 part = scroll_bar_to_top;
4332 break;
4334 case XmCR_TO_BOTTOM:
4335 bar->dragging = -1;
4336 part = scroll_bar_to_bottom;
4337 break;
4339 case XmCR_DRAG:
4341 int slider_size;
4343 /* Get the slider size. */
4344 block_input ();
4345 XtVaGetValues (widget, XmNsliderSize, &slider_size, NULL);
4346 unblock_input ();
4348 whole = XM_SB_MAX - slider_size;
4349 portion = min (cs->value, whole);
4350 part = scroll_bar_handle;
4351 bar->dragging = cs->value;
4353 break;
4355 case XmCR_VALUE_CHANGED:
4356 break;
4359 if (part >= 0)
4361 window_being_scrolled = bar->window;
4362 x_send_scroll_bar_event (bar->window, part, portion, whole);
4366 #elif defined USE_GTK
4368 /* Scroll bar callback for GTK scroll bars. WIDGET is the scroll
4369 bar widget. DATA is a pointer to the scroll_bar structure. */
4371 static gboolean
4372 xg_scroll_callback (GtkRange *range,
4373 GtkScrollType scroll,
4374 gdouble value,
4375 gpointer user_data)
4377 struct scroll_bar *bar = user_data;
4378 gdouble position;
4379 int part = -1, whole = 0, portion = 0;
4380 GtkAdjustment *adj = GTK_ADJUSTMENT (gtk_range_get_adjustment (range));
4381 struct frame *f = g_object_get_data (G_OBJECT (range), XG_FRAME_DATA);
4383 if (xg_ignore_gtk_scrollbar) return FALSE;
4384 position = gtk_adjustment_get_value (adj);
4387 switch (scroll)
4389 case GTK_SCROLL_JUMP:
4390 /* Buttons 1 2 or 3 must be grabbed. */
4391 if (FRAME_DISPLAY_INFO (f)->grabbed != 0
4392 && FRAME_DISPLAY_INFO (f)->grabbed < (1 << 4))
4394 part = scroll_bar_handle;
4395 whole = gtk_adjustment_get_upper (adj) -
4396 gtk_adjustment_get_page_size (adj);
4397 portion = min ((int)position, whole);
4398 bar->dragging = portion;
4400 break;
4401 case GTK_SCROLL_STEP_BACKWARD:
4402 part = scroll_bar_up_arrow;
4403 bar->dragging = -1;
4404 break;
4405 case GTK_SCROLL_STEP_FORWARD:
4406 part = scroll_bar_down_arrow;
4407 bar->dragging = -1;
4408 break;
4409 case GTK_SCROLL_PAGE_BACKWARD:
4410 part = scroll_bar_above_handle;
4411 bar->dragging = -1;
4412 break;
4413 case GTK_SCROLL_PAGE_FORWARD:
4414 part = scroll_bar_below_handle;
4415 bar->dragging = -1;
4416 break;
4419 if (part >= 0)
4421 window_being_scrolled = bar->window;
4422 x_send_scroll_bar_event (bar->window, part, portion, whole);
4425 return FALSE;
4428 /* Callback for button release. Sets dragging to -1 when dragging is done. */
4430 static gboolean
4431 xg_end_scroll_callback (GtkWidget *widget,
4432 GdkEventButton *event,
4433 gpointer user_data)
4435 struct scroll_bar *bar = user_data;
4436 bar->dragging = -1;
4437 if (WINDOWP (window_being_scrolled))
4439 x_send_scroll_bar_event (window_being_scrolled,
4440 scroll_bar_end_scroll, 0, 0);
4441 window_being_scrolled = Qnil;
4444 return FALSE;
4448 #else /* not USE_GTK and not USE_MOTIF */
4450 /* Xaw scroll bar callback. Invoked when the thumb is dragged.
4451 WIDGET is the scroll bar widget. CLIENT_DATA is a pointer to the
4452 scroll bar struct. CALL_DATA is a pointer to a float saying where
4453 the thumb is. */
4455 static void
4456 xaw_jump_callback (Widget widget, XtPointer client_data, XtPointer call_data)
4458 struct scroll_bar *bar = client_data;
4459 float *top_addr = call_data;
4460 float top = *top_addr;
4461 float shown;
4462 int whole, portion, height;
4463 enum scroll_bar_part part;
4465 /* Get the size of the thumb, a value between 0 and 1. */
4466 block_input ();
4467 XtVaGetValues (widget, XtNshown, &shown, XtNheight, &height, NULL);
4468 unblock_input ();
4470 whole = 10000000;
4471 portion = shown < 1 ? top * whole : 0;
4473 if (shown < 1 && (eabs (top + shown - 1) < 1.0f / height))
4474 /* Some derivatives of Xaw refuse to shrink the thumb when you reach
4475 the bottom, so we force the scrolling whenever we see that we're
4476 too close to the bottom (in x_set_toolkit_scroll_bar_thumb
4477 we try to ensure that we always stay two pixels away from the
4478 bottom). */
4479 part = scroll_bar_down_arrow;
4480 else
4481 part = scroll_bar_handle;
4483 window_being_scrolled = bar->window;
4484 bar->dragging = portion;
4485 bar->last_seen_part = part;
4486 x_send_scroll_bar_event (bar->window, part, portion, whole);
4490 /* Xaw scroll bar callback. Invoked for incremental scrolling.,
4491 i.e. line or page up or down. WIDGET is the Xaw scroll bar
4492 widget. CLIENT_DATA is a pointer to the scroll_bar structure for
4493 the scroll bar. CALL_DATA is an integer specifying the action that
4494 has taken place. Its magnitude is in the range 0..height of the
4495 scroll bar. Negative values mean scroll towards buffer start.
4496 Values < height of scroll bar mean line-wise movement. */
4498 static void
4499 xaw_scroll_callback (Widget widget, XtPointer client_data, XtPointer call_data)
4501 struct scroll_bar *bar = client_data;
4502 /* The position really is stored cast to a pointer. */
4503 int position = (intptr_t) call_data;
4504 Dimension height;
4505 enum scroll_bar_part part;
4507 /* Get the height of the scroll bar. */
4508 block_input ();
4509 XtVaGetValues (widget, XtNheight, &height, NULL);
4510 unblock_input ();
4512 if (eabs (position) >= height)
4513 part = (position < 0) ? scroll_bar_above_handle : scroll_bar_below_handle;
4515 /* If Xaw3d was compiled with ARROW_SCROLLBAR,
4516 it maps line-movement to call_data = max(5, height/20). */
4517 else if (xaw3d_arrow_scroll && eabs (position) <= max (5, height / 20))
4518 part = (position < 0) ? scroll_bar_up_arrow : scroll_bar_down_arrow;
4519 else
4520 part = scroll_bar_move_ratio;
4522 window_being_scrolled = bar->window;
4523 bar->dragging = -1;
4524 bar->last_seen_part = part;
4525 x_send_scroll_bar_event (bar->window, part, position, height);
4528 #endif /* not USE_GTK and not USE_MOTIF */
4530 #define SCROLL_BAR_NAME "verticalScrollBar"
4532 /* Create the widget for scroll bar BAR on frame F. Record the widget
4533 and X window of the scroll bar in BAR. */
4535 #ifdef USE_GTK
4536 static void
4537 x_create_toolkit_scroll_bar (struct frame *f, struct scroll_bar *bar)
4539 const char *scroll_bar_name = SCROLL_BAR_NAME;
4541 block_input ();
4542 xg_create_scroll_bar (f, bar, G_CALLBACK (xg_scroll_callback),
4543 G_CALLBACK (xg_end_scroll_callback),
4544 scroll_bar_name);
4545 unblock_input ();
4548 #else /* not USE_GTK */
4550 static void
4551 x_create_toolkit_scroll_bar (struct frame *f, struct scroll_bar *bar)
4553 Window xwindow;
4554 Widget widget;
4555 Arg av[20];
4556 int ac = 0;
4557 const char *scroll_bar_name = SCROLL_BAR_NAME;
4558 unsigned long pixel;
4560 block_input ();
4562 #ifdef USE_MOTIF
4563 /* Set resources. Create the widget. */
4564 XtSetArg (av[ac], XtNmappedWhenManaged, False); ++ac;
4565 XtSetArg (av[ac], XmNminimum, 0); ++ac;
4566 XtSetArg (av[ac], XmNmaximum, XM_SB_MAX); ++ac;
4567 XtSetArg (av[ac], XmNorientation, XmVERTICAL); ++ac;
4568 XtSetArg (av[ac], XmNprocessingDirection, XmMAX_ON_BOTTOM), ++ac;
4569 XtSetArg (av[ac], XmNincrement, 1); ++ac;
4570 XtSetArg (av[ac], XmNpageIncrement, 1); ++ac;
4572 pixel = f->output_data.x->scroll_bar_foreground_pixel;
4573 if (pixel != -1)
4575 XtSetArg (av[ac], XmNforeground, pixel);
4576 ++ac;
4579 pixel = f->output_data.x->scroll_bar_background_pixel;
4580 if (pixel != -1)
4582 XtSetArg (av[ac], XmNbackground, pixel);
4583 ++ac;
4586 widget = XmCreateScrollBar (f->output_data.x->edit_widget,
4587 (char *) scroll_bar_name, av, ac);
4589 /* Add one callback for everything that can happen. */
4590 XtAddCallback (widget, XmNdecrementCallback, xm_scroll_callback,
4591 (XtPointer) bar);
4592 XtAddCallback (widget, XmNdragCallback, xm_scroll_callback,
4593 (XtPointer) bar);
4594 XtAddCallback (widget, XmNincrementCallback, xm_scroll_callback,
4595 (XtPointer) bar);
4596 XtAddCallback (widget, XmNpageDecrementCallback, xm_scroll_callback,
4597 (XtPointer) bar);
4598 XtAddCallback (widget, XmNpageIncrementCallback, xm_scroll_callback,
4599 (XtPointer) bar);
4600 XtAddCallback (widget, XmNtoBottomCallback, xm_scroll_callback,
4601 (XtPointer) bar);
4602 XtAddCallback (widget, XmNtoTopCallback, xm_scroll_callback,
4603 (XtPointer) bar);
4605 /* Realize the widget. Only after that is the X window created. */
4606 XtRealizeWidget (widget);
4608 /* Set the cursor to an arrow. I didn't find a resource to do that.
4609 And I'm wondering why it hasn't an arrow cursor by default. */
4610 XDefineCursor (XtDisplay (widget), XtWindow (widget),
4611 f->output_data.x->nontext_cursor);
4613 #else /* !USE_MOTIF i.e. use Xaw */
4615 /* Set resources. Create the widget. The background of the
4616 Xaw3d scroll bar widget is a little bit light for my taste.
4617 We don't alter it here to let users change it according
4618 to their taste with `emacs*verticalScrollBar.background: xxx'. */
4619 XtSetArg (av[ac], XtNmappedWhenManaged, False); ++ac;
4620 XtSetArg (av[ac], XtNorientation, XtorientVertical); ++ac;
4621 /* For smoother scrolling with Xaw3d -sm */
4622 /* XtSetArg (av[ac], XtNpickTop, True); ++ac; */
4624 pixel = f->output_data.x->scroll_bar_foreground_pixel;
4625 if (pixel != -1)
4627 XtSetArg (av[ac], XtNforeground, pixel);
4628 ++ac;
4631 pixel = f->output_data.x->scroll_bar_background_pixel;
4632 if (pixel != -1)
4634 XtSetArg (av[ac], XtNbackground, pixel);
4635 ++ac;
4638 /* Top/bottom shadow colors. */
4640 /* Allocate them, if necessary. */
4641 if (f->output_data.x->scroll_bar_top_shadow_pixel == -1)
4643 pixel = f->output_data.x->scroll_bar_background_pixel;
4644 if (pixel != -1)
4646 if (!x_alloc_lighter_color (f, FRAME_X_DISPLAY (f),
4647 FRAME_X_COLORMAP (f),
4648 &pixel, 1.2, 0x8000))
4649 pixel = -1;
4650 f->output_data.x->scroll_bar_top_shadow_pixel = pixel;
4653 if (f->output_data.x->scroll_bar_bottom_shadow_pixel == -1)
4655 pixel = f->output_data.x->scroll_bar_background_pixel;
4656 if (pixel != -1)
4658 if (!x_alloc_lighter_color (f, FRAME_X_DISPLAY (f),
4659 FRAME_X_COLORMAP (f),
4660 &pixel, 0.6, 0x4000))
4661 pixel = -1;
4662 f->output_data.x->scroll_bar_bottom_shadow_pixel = pixel;
4666 #ifdef XtNbeNiceToColormap
4667 /* Tell the toolkit about them. */
4668 if (f->output_data.x->scroll_bar_top_shadow_pixel == -1
4669 || f->output_data.x->scroll_bar_bottom_shadow_pixel == -1)
4670 /* We tried to allocate a color for the top/bottom shadow, and
4671 failed, so tell Xaw3d to use dithering instead. */
4672 /* But only if we have a small colormap. Xaw3d can allocate nice
4673 colors itself. */
4675 XtSetArg (av[ac], XtNbeNiceToColormap,
4676 DefaultDepthOfScreen (FRAME_X_SCREEN (f)) < 16);
4677 ++ac;
4679 else
4680 /* Tell what colors Xaw3d should use for the top/bottom shadow, to
4681 be more consistent with other emacs 3d colors, and since Xaw3d is
4682 not good at dealing with allocation failure. */
4684 /* This tells Xaw3d to use real colors instead of dithering for
4685 the shadows. */
4686 XtSetArg (av[ac], XtNbeNiceToColormap, False);
4687 ++ac;
4689 /* Specify the colors. */
4690 pixel = f->output_data.x->scroll_bar_top_shadow_pixel;
4691 if (pixel != -1)
4693 XtSetArg (av[ac], XtNtopShadowPixel, pixel);
4694 ++ac;
4696 pixel = f->output_data.x->scroll_bar_bottom_shadow_pixel;
4697 if (pixel != -1)
4699 XtSetArg (av[ac], XtNbottomShadowPixel, pixel);
4700 ++ac;
4703 #endif
4705 widget = XtCreateWidget (scroll_bar_name, scrollbarWidgetClass,
4706 f->output_data.x->edit_widget, av, ac);
4709 char const *initial = "";
4710 char const *val = initial;
4711 XtVaGetValues (widget, XtNscrollVCursor, (XtPointer) &val,
4712 #ifdef XtNarrowScrollbars
4713 XtNarrowScrollbars, (XtPointer) &xaw3d_arrow_scroll,
4714 #endif
4715 XtNpickTop, (XtPointer) &xaw3d_pick_top, NULL);
4716 if (xaw3d_arrow_scroll || val == initial)
4717 { /* ARROW_SCROLL */
4718 xaw3d_arrow_scroll = True;
4719 /* Isn't that just a personal preference ? --Stef */
4720 XtVaSetValues (widget, XtNcursorName, "top_left_arrow", NULL);
4724 /* Define callbacks. */
4725 XtAddCallback (widget, XtNjumpProc, xaw_jump_callback, (XtPointer) bar);
4726 XtAddCallback (widget, XtNscrollProc, xaw_scroll_callback,
4727 (XtPointer) bar);
4729 /* Realize the widget. Only after that is the X window created. */
4730 XtRealizeWidget (widget);
4732 #endif /* !USE_MOTIF */
4734 /* Install an action hook that lets us detect when the user
4735 finishes interacting with a scroll bar. */
4736 if (action_hook_id == 0)
4737 action_hook_id = XtAppAddActionHook (Xt_app_con, xt_action_hook, 0);
4739 /* Remember X window and widget in the scroll bar vector. */
4740 SET_SCROLL_BAR_X_WIDGET (bar, widget);
4741 xwindow = XtWindow (widget);
4742 bar->x_window = xwindow;
4744 unblock_input ();
4746 #endif /* not USE_GTK */
4749 /* Set the thumb size and position of scroll bar BAR. We are currently
4750 displaying PORTION out of a whole WHOLE, and our position POSITION. */
4752 #ifdef USE_GTK
4753 static void
4754 x_set_toolkit_scroll_bar_thumb (struct scroll_bar *bar, int portion, int position, int whole)
4756 xg_set_toolkit_scroll_bar_thumb (bar, portion, position, whole);
4759 #else /* not USE_GTK */
4760 static void
4761 x_set_toolkit_scroll_bar_thumb (struct scroll_bar *bar, int portion, int position,
4762 int whole)
4764 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
4765 Widget widget = SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f), bar);
4766 float top, shown;
4768 block_input ();
4770 #ifdef USE_MOTIF
4772 if (scroll_bar_adjust_thumb_portion_p)
4774 /* We use an estimate of 30 chars per line rather than the real
4775 `portion' value. This has the disadvantage that the thumb size
4776 is not very representative, but it makes our life a lot easier.
4777 Otherwise, we have to constantly adjust the thumb size, which
4778 we can't always do quickly enough: while dragging, the size of
4779 the thumb might prevent the user from dragging the thumb all the
4780 way to the end. but Motif and some versions of Xaw3d don't allow
4781 updating the thumb size while dragging. Also, even if we can update
4782 its size, the update will often happen too late.
4783 If you don't believe it, check out revision 1.650 of xterm.c to see
4784 what hoops we were going through and the still poor behavior we got. */
4785 portion = WINDOW_TOTAL_LINES (XWINDOW (bar->window)) * 30;
4786 /* When the thumb is at the bottom, position == whole.
4787 So we need to increase `whole' to make space for the thumb. */
4788 whole += portion;
4791 if (whole <= 0)
4792 top = 0, shown = 1;
4793 else
4795 top = (float) position / whole;
4796 shown = (float) portion / whole;
4799 if (bar->dragging == -1)
4801 int size, value;
4803 /* Slider size. Must be in the range [1 .. MAX - MIN] where MAX
4804 is the scroll bar's maximum and MIN is the scroll bar's minimum
4805 value. */
4806 size = clip_to_bounds (1, shown * XM_SB_MAX, XM_SB_MAX);
4808 /* Position. Must be in the range [MIN .. MAX - SLIDER_SIZE]. */
4809 value = top * XM_SB_MAX;
4810 value = min (value, XM_SB_MAX - size);
4812 XmScrollBarSetValues (widget, value, size, 0, 0, False);
4814 #else /* !USE_MOTIF i.e. use Xaw */
4816 if (whole == 0)
4817 top = 0, shown = 1;
4818 else
4820 top = (float) position / whole;
4821 shown = (float) portion / whole;
4825 float old_top, old_shown;
4826 Dimension height;
4827 XtVaGetValues (widget,
4828 XtNtopOfThumb, &old_top,
4829 XtNshown, &old_shown,
4830 XtNheight, &height,
4831 NULL);
4833 /* Massage the top+shown values. */
4834 if (bar->dragging == -1 || bar->last_seen_part == scroll_bar_down_arrow)
4835 top = max (0, min (1, top));
4836 else
4837 top = old_top;
4838 #if ! defined (HAVE_XAW3D)
4839 /* With Xaw, 'top' values too closer to 1.0 may
4840 cause the thumb to disappear. Fix that. */
4841 top = min (top, 0.99f);
4842 #endif
4843 /* Keep two pixels available for moving the thumb down. */
4844 shown = max (0, min (1 - top - (2.0f / height), shown));
4845 #if ! defined (HAVE_XAW3D)
4846 /* Likewise with too small 'shown'. */
4847 shown = max (shown, 0.01f);
4848 #endif
4850 /* If the call to XawScrollbarSetThumb below doesn't seem to
4851 work, check that 'NARROWPROTO' is defined in src/config.h.
4852 If this is not so, most likely you need to fix configure. */
4853 if (top != old_top || shown != old_shown)
4855 if (bar->dragging == -1)
4856 XawScrollbarSetThumb (widget, top, shown);
4857 else
4859 /* Try to make the scrolling a tad smoother. */
4860 if (!xaw3d_pick_top)
4861 shown = min (shown, old_shown);
4863 XawScrollbarSetThumb (widget, top, shown);
4867 #endif /* !USE_MOTIF */
4869 unblock_input ();
4871 #endif /* not USE_GTK */
4873 #endif /* USE_TOOLKIT_SCROLL_BARS */
4877 /************************************************************************
4878 Scroll bars, general
4879 ************************************************************************/
4881 /* Create a scroll bar and return the scroll bar vector for it. W is
4882 the Emacs window on which to create the scroll bar. TOP, LEFT,
4883 WIDTH and HEIGHT are the pixel coordinates and dimensions of the
4884 scroll bar. */
4886 static struct scroll_bar *
4887 x_scroll_bar_create (struct window *w, int top, int left, int width, int height)
4889 struct frame *f = XFRAME (w->frame);
4890 struct scroll_bar *bar
4891 = ALLOCATE_PSEUDOVECTOR (struct scroll_bar, x_window, PVEC_OTHER);
4892 Lisp_Object barobj;
4894 block_input ();
4896 #ifdef USE_TOOLKIT_SCROLL_BARS
4897 x_create_toolkit_scroll_bar (f, bar);
4898 #else /* not USE_TOOLKIT_SCROLL_BARS */
4900 XSetWindowAttributes a;
4901 unsigned long mask;
4902 Window window;
4904 a.background_pixel = f->output_data.x->scroll_bar_background_pixel;
4905 if (a.background_pixel == -1)
4906 a.background_pixel = FRAME_BACKGROUND_PIXEL (f);
4908 a.event_mask = (ButtonPressMask | ButtonReleaseMask
4909 | ButtonMotionMask | PointerMotionHintMask
4910 | ExposureMask);
4911 a.cursor = FRAME_DISPLAY_INFO (f)->vertical_scroll_bar_cursor;
4913 mask = (CWBackPixel | CWEventMask | CWCursor);
4915 /* Clear the area of W that will serve as a scroll bar. This is
4916 for the case that a window has been split horizontally. In
4917 this case, no clear_frame is generated to reduce flickering. */
4918 if (width > 0 && window_box_height (w) > 0)
4919 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
4920 left, top, width, window_box_height (w));
4922 window = XCreateWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
4923 /* Position and size of scroll bar. */
4924 left, top, width, height,
4925 /* Border width, depth, class, and visual. */
4927 CopyFromParent,
4928 CopyFromParent,
4929 CopyFromParent,
4930 /* Attributes. */
4931 mask, &a);
4932 bar->x_window = window;
4934 #endif /* not USE_TOOLKIT_SCROLL_BARS */
4936 XSETWINDOW (bar->window, w);
4937 bar->top = top;
4938 bar->left = left;
4939 bar->width = width;
4940 bar->height = height;
4941 bar->start = 0;
4942 bar->end = 0;
4943 bar->dragging = -1;
4944 #if defined (USE_TOOLKIT_SCROLL_BARS) && defined (USE_LUCID)
4945 bar->last_seen_part = scroll_bar_nowhere;
4946 #endif
4948 /* Add bar to its frame's list of scroll bars. */
4949 bar->next = FRAME_SCROLL_BARS (f);
4950 bar->prev = Qnil;
4951 XSETVECTOR (barobj, bar);
4952 fset_scroll_bars (f, barobj);
4953 if (!NILP (bar->next))
4954 XSETVECTOR (XSCROLL_BAR (bar->next)->prev, bar);
4956 /* Map the window/widget. */
4957 #ifdef USE_TOOLKIT_SCROLL_BARS
4959 #ifdef USE_GTK
4960 xg_update_scrollbar_pos (f, bar->x_window, top,
4961 left,width, max (height, 1));
4962 #else /* not USE_GTK */
4963 Widget scroll_bar = SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f), bar);
4964 XtConfigureWidget (scroll_bar, left, top, width, max (height, 1), 0);
4965 XtMapWidget (scroll_bar);
4966 #endif /* not USE_GTK */
4968 #else /* not USE_TOOLKIT_SCROLL_BARS */
4969 XMapRaised (FRAME_X_DISPLAY (f), bar->x_window);
4970 #endif /* not USE_TOOLKIT_SCROLL_BARS */
4972 unblock_input ();
4973 return bar;
4977 #ifndef USE_TOOLKIT_SCROLL_BARS
4979 /* Draw BAR's handle in the proper position.
4981 If the handle is already drawn from START to END, don't bother
4982 redrawing it, unless REBUILD is non-zero; in that case, always
4983 redraw it. (REBUILD is handy for drawing the handle after expose
4984 events.)
4986 Normally, we want to constrain the start and end of the handle to
4987 fit inside its rectangle, but if the user is dragging the scroll
4988 bar handle, we want to let them drag it down all the way, so that
4989 the bar's top is as far down as it goes; otherwise, there's no way
4990 to move to the very end of the buffer. */
4992 static void
4993 x_scroll_bar_set_handle (struct scroll_bar *bar, int start, int end, int rebuild)
4995 bool dragging = bar->dragging != -1;
4996 Window w = bar->x_window;
4997 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
4998 GC gc = f->output_data.x->normal_gc;
5000 /* If the display is already accurate, do nothing. */
5001 if (! rebuild
5002 && start == bar->start
5003 && end == bar->end)
5004 return;
5006 block_input ();
5009 int inside_width = VERTICAL_SCROLL_BAR_INSIDE_WIDTH (f, bar->width);
5010 int inside_height = VERTICAL_SCROLL_BAR_INSIDE_HEIGHT (f, bar->height);
5011 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, bar->height);
5013 /* Make sure the values are reasonable, and try to preserve
5014 the distance between start and end. */
5016 int length = end - start;
5018 if (start < 0)
5019 start = 0;
5020 else if (start > top_range)
5021 start = top_range;
5022 end = start + length;
5024 if (end < start)
5025 end = start;
5026 else if (end > top_range && ! dragging)
5027 end = top_range;
5030 /* Store the adjusted setting in the scroll bar. */
5031 bar->start = start;
5032 bar->end = end;
5034 /* Clip the end position, just for display. */
5035 if (end > top_range)
5036 end = top_range;
5038 /* Draw bottom positions VERTICAL_SCROLL_BAR_MIN_HANDLE pixels
5039 below top positions, to make sure the handle is always at least
5040 that many pixels tall. */
5041 end += VERTICAL_SCROLL_BAR_MIN_HANDLE;
5043 /* Draw the empty space above the handle. Note that we can't clear
5044 zero-height areas; that means "clear to end of window." */
5045 if (start > 0)
5046 x_clear_area (FRAME_X_DISPLAY (f), w,
5047 VERTICAL_SCROLL_BAR_LEFT_BORDER,
5048 VERTICAL_SCROLL_BAR_TOP_BORDER,
5049 inside_width, start);
5051 /* Change to proper foreground color if one is specified. */
5052 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
5053 XSetForeground (FRAME_X_DISPLAY (f), gc,
5054 f->output_data.x->scroll_bar_foreground_pixel);
5056 /* Draw the handle itself. */
5057 XFillRectangle (FRAME_X_DISPLAY (f), w, gc,
5058 /* x, y, width, height */
5059 VERTICAL_SCROLL_BAR_LEFT_BORDER,
5060 VERTICAL_SCROLL_BAR_TOP_BORDER + start,
5061 inside_width, end - start);
5063 /* Restore the foreground color of the GC if we changed it above. */
5064 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
5065 XSetForeground (FRAME_X_DISPLAY (f), gc,
5066 FRAME_FOREGROUND_PIXEL (f));
5068 /* Draw the empty space below the handle. Note that we can't
5069 clear zero-height areas; that means "clear to end of window." */
5070 if (end < inside_height)
5071 x_clear_area (FRAME_X_DISPLAY (f), w,
5072 VERTICAL_SCROLL_BAR_LEFT_BORDER,
5073 VERTICAL_SCROLL_BAR_TOP_BORDER + end,
5074 inside_width, inside_height - end);
5077 unblock_input ();
5080 #endif /* !USE_TOOLKIT_SCROLL_BARS */
5082 /* Destroy scroll bar BAR, and set its Emacs window's scroll bar to
5083 nil. */
5085 static void
5086 x_scroll_bar_remove (struct scroll_bar *bar)
5088 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
5089 block_input ();
5091 #ifdef USE_TOOLKIT_SCROLL_BARS
5092 #ifdef USE_GTK
5093 xg_remove_scroll_bar (f, bar->x_window);
5094 #else /* not USE_GTK */
5095 XtDestroyWidget (SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f), bar));
5096 #endif /* not USE_GTK */
5097 #else
5098 XDestroyWindow (FRAME_X_DISPLAY (f), bar->x_window);
5099 #endif
5101 /* Dissociate this scroll bar from its window. */
5102 wset_vertical_scroll_bar (XWINDOW (bar->window), Qnil);
5104 unblock_input ();
5108 /* Set the handle of the vertical scroll bar for WINDOW to indicate
5109 that we are displaying PORTION characters out of a total of WHOLE
5110 characters, starting at POSITION. If WINDOW has no scroll bar,
5111 create one. */
5113 static void
5114 XTset_vertical_scroll_bar (struct window *w, int portion, int whole, int position)
5116 struct frame *f = XFRAME (w->frame);
5117 Lisp_Object barobj;
5118 struct scroll_bar *bar;
5119 int top, height, left, width;
5120 int window_y, window_height;
5122 /* Get window dimensions. */
5123 window_box (w, ANY_AREA, 0, &window_y, 0, &window_height);
5124 top = window_y;
5125 height = window_height;
5127 /* Compute the left edge and the width of the scroll bar area. */
5128 left = WINDOW_SCROLL_BAR_AREA_X (w);
5129 width = WINDOW_SCROLL_BAR_AREA_WIDTH (w);
5131 /* Does the scroll bar exist yet? */
5132 if (NILP (w->vertical_scroll_bar))
5134 if (width > 0 && height > 0)
5136 block_input ();
5137 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5138 left, top, width, height);
5139 unblock_input ();
5142 bar = x_scroll_bar_create (w, top, left, width, max (height, 1));
5144 else
5146 /* It may just need to be moved and resized. */
5147 unsigned int mask = 0;
5149 bar = XSCROLL_BAR (w->vertical_scroll_bar);
5151 block_input ();
5153 if (left != bar->left)
5154 mask |= CWX;
5155 if (top != bar->top)
5156 mask |= CWY;
5157 if (width != bar->width)
5158 mask |= CWWidth;
5159 if (height != bar->height)
5160 mask |= CWHeight;
5162 #ifdef USE_TOOLKIT_SCROLL_BARS
5164 /* Move/size the scroll bar widget. */
5165 if (mask)
5167 /* Since toolkit scroll bars are smaller than the space reserved
5168 for them on the frame, we have to clear "under" them. */
5169 if (width > 0 && height > 0)
5170 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5171 left, top, width, height);
5172 #ifdef USE_GTK
5173 xg_update_scrollbar_pos (f, bar->x_window, top,
5174 left, width, max (height, 1));
5175 #else /* not USE_GTK */
5176 XtConfigureWidget (SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f), bar),
5177 left, top, width, max (height, 1), 0);
5178 #endif /* not USE_GTK */
5180 #else /* not USE_TOOLKIT_SCROLL_BARS */
5182 /* Move/size the scroll bar window. */
5183 if (mask)
5185 XWindowChanges wc;
5187 wc.x = left;
5188 wc.y = top;
5189 wc.width = width;
5190 wc.height = height;
5191 XConfigureWindow (FRAME_X_DISPLAY (f), bar->x_window,
5192 mask, &wc);
5195 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5197 /* Remember new settings. */
5198 bar->left = left;
5199 bar->top = top;
5200 bar->width = width;
5201 bar->height = height;
5203 unblock_input ();
5206 #ifdef USE_TOOLKIT_SCROLL_BARS
5207 x_set_toolkit_scroll_bar_thumb (bar, portion, position, whole);
5208 #else /* not USE_TOOLKIT_SCROLL_BARS */
5209 /* Set the scroll bar's current state, unless we're currently being
5210 dragged. */
5211 if (bar->dragging == -1)
5213 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, height);
5215 if (whole == 0)
5216 x_scroll_bar_set_handle (bar, 0, top_range, 0);
5217 else
5219 int start = ((double) position * top_range) / whole;
5220 int end = ((double) (position + portion) * top_range) / whole;
5221 x_scroll_bar_set_handle (bar, start, end, 0);
5224 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5226 XSETVECTOR (barobj, bar);
5227 wset_vertical_scroll_bar (w, barobj);
5231 /* The following three hooks are used when we're doing a thorough
5232 redisplay of the frame. We don't explicitly know which scroll bars
5233 are going to be deleted, because keeping track of when windows go
5234 away is a real pain - "Can you say set-window-configuration, boys
5235 and girls?" Instead, we just assert at the beginning of redisplay
5236 that *all* scroll bars are to be removed, and then save a scroll bar
5237 from the fiery pit when we actually redisplay its window. */
5239 /* Arrange for all scroll bars on FRAME to be removed at the next call
5240 to `*judge_scroll_bars_hook'. A scroll bar may be spared if
5241 `*redeem_scroll_bar_hook' is applied to its window before the judgment. */
5243 static void
5244 XTcondemn_scroll_bars (struct frame *frame)
5246 /* Transfer all the scroll bars to FRAME_CONDEMNED_SCROLL_BARS. */
5247 while (! NILP (FRAME_SCROLL_BARS (frame)))
5249 Lisp_Object bar;
5250 bar = FRAME_SCROLL_BARS (frame);
5251 fset_scroll_bars (frame, XSCROLL_BAR (bar)->next);
5252 XSCROLL_BAR (bar)->next = FRAME_CONDEMNED_SCROLL_BARS (frame);
5253 XSCROLL_BAR (bar)->prev = Qnil;
5254 if (! NILP (FRAME_CONDEMNED_SCROLL_BARS (frame)))
5255 XSCROLL_BAR (FRAME_CONDEMNED_SCROLL_BARS (frame))->prev = bar;
5256 fset_condemned_scroll_bars (frame, bar);
5261 /* Un-mark WINDOW's scroll bar for deletion in this judgment cycle.
5262 Note that WINDOW isn't necessarily condemned at all. */
5264 static void
5265 XTredeem_scroll_bar (struct window *window)
5267 struct scroll_bar *bar;
5268 struct frame *f;
5269 Lisp_Object barobj;
5271 /* We can't redeem this window's scroll bar if it doesn't have one. */
5272 if (NILP (window->vertical_scroll_bar))
5273 emacs_abort ();
5275 bar = XSCROLL_BAR (window->vertical_scroll_bar);
5277 /* Unlink it from the condemned list. */
5278 f = XFRAME (WINDOW_FRAME (window));
5279 if (NILP (bar->prev))
5281 /* If the prev pointer is nil, it must be the first in one of
5282 the lists. */
5283 if (EQ (FRAME_SCROLL_BARS (f), window->vertical_scroll_bar))
5284 /* It's not condemned. Everything's fine. */
5285 return;
5286 else if (EQ (FRAME_CONDEMNED_SCROLL_BARS (f),
5287 window->vertical_scroll_bar))
5288 fset_condemned_scroll_bars (f, bar->next);
5289 else
5290 /* If its prev pointer is nil, it must be at the front of
5291 one or the other! */
5292 emacs_abort ();
5294 else
5295 XSCROLL_BAR (bar->prev)->next = bar->next;
5297 if (! NILP (bar->next))
5298 XSCROLL_BAR (bar->next)->prev = bar->prev;
5300 bar->next = FRAME_SCROLL_BARS (f);
5301 bar->prev = Qnil;
5302 XSETVECTOR (barobj, bar);
5303 fset_scroll_bars (f, barobj);
5304 if (! NILP (bar->next))
5305 XSETVECTOR (XSCROLL_BAR (bar->next)->prev, bar);
5308 /* Remove all scroll bars on FRAME that haven't been saved since the
5309 last call to `*condemn_scroll_bars_hook'. */
5311 static void
5312 XTjudge_scroll_bars (struct frame *f)
5314 Lisp_Object bar, next;
5316 bar = FRAME_CONDEMNED_SCROLL_BARS (f);
5318 /* Clear out the condemned list now so we won't try to process any
5319 more events on the hapless scroll bars. */
5320 fset_condemned_scroll_bars (f, Qnil);
5322 for (; ! NILP (bar); bar = next)
5324 struct scroll_bar *b = XSCROLL_BAR (bar);
5326 x_scroll_bar_remove (b);
5328 next = b->next;
5329 b->next = b->prev = Qnil;
5332 /* Now there should be no references to the condemned scroll bars,
5333 and they should get garbage-collected. */
5337 #ifndef USE_TOOLKIT_SCROLL_BARS
5338 /* Handle an Expose or GraphicsExpose event on a scroll bar. This
5339 is a no-op when using toolkit scroll bars.
5341 This may be called from a signal handler, so we have to ignore GC
5342 mark bits. */
5344 static void
5345 x_scroll_bar_expose (struct scroll_bar *bar, const XEvent *event)
5347 Window w = bar->x_window;
5348 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
5349 GC gc = f->output_data.x->normal_gc;
5351 block_input ();
5353 x_scroll_bar_set_handle (bar, bar->start, bar->end, 1);
5355 /* Switch to scroll bar foreground color. */
5356 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
5357 XSetForeground (FRAME_X_DISPLAY (f), gc,
5358 f->output_data.x->scroll_bar_foreground_pixel);
5360 /* Draw a one-pixel border just inside the edges of the scroll bar. */
5361 XDrawRectangle (FRAME_X_DISPLAY (f), w, gc,
5362 /* x, y, width, height */
5363 0, 0, bar->width - 1, bar->height - 1);
5365 /* Restore the foreground color of the GC if we changed it above. */
5366 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
5367 XSetForeground (FRAME_X_DISPLAY (f), gc,
5368 FRAME_FOREGROUND_PIXEL (f));
5370 unblock_input ();
5373 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5375 /* Handle a mouse click on the scroll bar BAR. If *EMACS_EVENT's kind
5376 is set to something other than NO_EVENT, it is enqueued.
5378 This may be called from a signal handler, so we have to ignore GC
5379 mark bits. */
5382 static void
5383 x_scroll_bar_handle_click (struct scroll_bar *bar,
5384 const XEvent *event,
5385 struct input_event *emacs_event)
5387 if (! WINDOWP (bar->window))
5388 emacs_abort ();
5390 emacs_event->kind = SCROLL_BAR_CLICK_EVENT;
5391 emacs_event->code = event->xbutton.button - Button1;
5392 emacs_event->modifiers
5393 = (x_x_to_emacs_modifiers (FRAME_DISPLAY_INFO
5394 (XFRAME (WINDOW_FRAME (XWINDOW (bar->window)))),
5395 event->xbutton.state)
5396 | (event->type == ButtonRelease
5397 ? up_modifier
5398 : down_modifier));
5399 emacs_event->frame_or_window = bar->window;
5400 emacs_event->arg = Qnil;
5401 emacs_event->timestamp = event->xbutton.time;
5403 int top_range
5404 = VERTICAL_SCROLL_BAR_TOP_RANGE (f, bar->height);
5405 int y = event->xbutton.y - VERTICAL_SCROLL_BAR_TOP_BORDER;
5407 if (y < 0) y = 0;
5408 if (y > top_range) y = top_range;
5410 if (y < bar->start)
5411 emacs_event->part = scroll_bar_above_handle;
5412 else if (y < bar->end + VERTICAL_SCROLL_BAR_MIN_HANDLE)
5413 emacs_event->part = scroll_bar_handle;
5414 else
5415 emacs_event->part = scroll_bar_below_handle;
5417 #ifndef USE_TOOLKIT_SCROLL_BARS
5418 /* If the user has released the handle, set it to its final position. */
5419 if (event->type == ButtonRelease && bar->dragging != -1)
5421 int new_start = y - bar->dragging;
5422 int new_end = new_start + bar->end - bar->start;
5424 x_scroll_bar_set_handle (bar, new_start, new_end, 0);
5425 bar->dragging = -1;
5427 #endif
5429 XSETINT (emacs_event->x, y);
5430 XSETINT (emacs_event->y, top_range);
5434 #ifndef USE_TOOLKIT_SCROLL_BARS
5436 /* Handle some mouse motion while someone is dragging the scroll bar.
5438 This may be called from a signal handler, so we have to ignore GC
5439 mark bits. */
5441 static void
5442 x_scroll_bar_note_movement (struct scroll_bar *bar,
5443 const XMotionEvent *event)
5445 struct frame *f = XFRAME (XWINDOW (bar->window)->frame);
5446 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
5448 dpyinfo->last_mouse_movement_time = event->time;
5449 dpyinfo->last_mouse_scroll_bar = bar;
5450 f->mouse_moved = 1;
5452 /* If we're dragging the bar, display it. */
5453 if (bar->dragging != -1)
5455 /* Where should the handle be now? */
5456 int new_start = event->y - bar->dragging;
5458 if (new_start != bar->start)
5460 int new_end = new_start + bar->end - bar->start;
5462 x_scroll_bar_set_handle (bar, new_start, new_end, 0);
5467 #endif /* !USE_TOOLKIT_SCROLL_BARS */
5469 /* Return information to the user about the current position of the mouse
5470 on the scroll bar. */
5472 static void
5473 x_scroll_bar_report_motion (struct frame **fp, Lisp_Object *bar_window,
5474 enum scroll_bar_part *part, Lisp_Object *x,
5475 Lisp_Object *y, Time *timestamp)
5477 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (*fp);
5478 struct scroll_bar *bar = dpyinfo->last_mouse_scroll_bar;
5479 Window w = bar->x_window;
5480 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
5481 int win_x, win_y;
5482 Window dummy_window;
5483 int dummy_coord;
5484 unsigned int dummy_mask;
5486 block_input ();
5488 /* Get the mouse's position relative to the scroll bar window, and
5489 report that. */
5490 if (XQueryPointer (FRAME_X_DISPLAY (f), w,
5492 /* Root, child, root x and root y. */
5493 &dummy_window, &dummy_window,
5494 &dummy_coord, &dummy_coord,
5496 /* Position relative to scroll bar. */
5497 &win_x, &win_y,
5499 /* Mouse buttons and modifier keys. */
5500 &dummy_mask))
5502 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, bar->height);
5504 win_y -= VERTICAL_SCROLL_BAR_TOP_BORDER;
5506 if (bar->dragging != -1)
5507 win_y -= bar->dragging;
5509 if (win_y < 0)
5510 win_y = 0;
5511 if (win_y > top_range)
5512 win_y = top_range;
5514 *fp = f;
5515 *bar_window = bar->window;
5517 if (bar->dragging != -1)
5518 *part = scroll_bar_handle;
5519 else if (win_y < bar->start)
5520 *part = scroll_bar_above_handle;
5521 else if (win_y < bar->end + VERTICAL_SCROLL_BAR_MIN_HANDLE)
5522 *part = scroll_bar_handle;
5523 else
5524 *part = scroll_bar_below_handle;
5526 XSETINT (*x, win_y);
5527 XSETINT (*y, top_range);
5529 f->mouse_moved = 0;
5530 dpyinfo->last_mouse_scroll_bar = NULL;
5531 *timestamp = dpyinfo->last_mouse_movement_time;
5534 unblock_input ();
5538 /* The screen has been cleared so we may have changed foreground or
5539 background colors, and the scroll bars may need to be redrawn.
5540 Clear out the scroll bars, and ask for expose events, so we can
5541 redraw them. */
5543 static void
5544 x_scroll_bar_clear (struct frame *f)
5546 #ifndef USE_TOOLKIT_SCROLL_BARS
5547 Lisp_Object bar;
5549 /* We can have scroll bars even if this is 0,
5550 if we just turned off scroll bar mode.
5551 But in that case we should not clear them. */
5552 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
5553 for (bar = FRAME_SCROLL_BARS (f); VECTORP (bar);
5554 bar = XSCROLL_BAR (bar)->next)
5555 XClearArea (FRAME_X_DISPLAY (f),
5556 XSCROLL_BAR (bar)->x_window,
5557 0, 0, 0, 0, True);
5558 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5561 #ifdef ENABLE_CHECKING
5563 /* Record the last 100 characters stored
5564 to help debug the loss-of-chars-during-GC problem. */
5566 static int temp_index;
5567 static short temp_buffer[100];
5569 #define STORE_KEYSYM_FOR_DEBUG(keysym) \
5570 if (temp_index == sizeof temp_buffer / sizeof (short)) \
5571 temp_index = 0; \
5572 temp_buffer[temp_index++] = (keysym)
5574 #else /* not ENABLE_CHECKING */
5576 #define STORE_KEYSYM_FOR_DEBUG(keysym) ((void)0)
5578 #endif /* ENABLE_CHECKING */
5580 /* Set this to nonzero to fake an "X I/O error"
5581 on a particular display. */
5583 static struct x_display_info *XTread_socket_fake_io_error;
5585 /* When we find no input here, we occasionally do a no-op command
5586 to verify that the X server is still running and we can still talk with it.
5587 We try all the open displays, one by one.
5588 This variable is used for cycling thru the displays. */
5590 static struct x_display_info *next_noop_dpyinfo;
5592 enum
5594 X_EVENT_NORMAL,
5595 X_EVENT_GOTO_OUT,
5596 X_EVENT_DROP
5599 /* Filter events for the current X input method.
5600 DPYINFO is the display this event is for.
5601 EVENT is the X event to filter.
5603 Returns non-zero if the event was filtered, caller shall not process
5604 this event further.
5605 Returns zero if event is wasn't filtered. */
5607 #ifdef HAVE_X_I18N
5608 static int
5609 x_filter_event (struct x_display_info *dpyinfo, XEvent *event)
5611 /* XFilterEvent returns non-zero if the input method has
5612 consumed the event. We pass the frame's X window to
5613 XFilterEvent because that's the one for which the IC
5614 was created. */
5616 struct frame *f1 = x_any_window_to_frame (dpyinfo,
5617 event->xclient.window);
5619 return XFilterEvent (event, f1 ? FRAME_X_WINDOW (f1) : None);
5621 #endif
5623 #ifdef USE_GTK
5624 static int current_count;
5625 static int current_finish;
5626 static struct input_event *current_hold_quit;
5628 /* This is the filter function invoked by the GTK event loop.
5629 It is invoked before the XEvent is translated to a GdkEvent,
5630 so we have a chance to act on the event before GTK. */
5631 static GdkFilterReturn
5632 event_handler_gdk (GdkXEvent *gxev, GdkEvent *ev, gpointer data)
5634 XEvent *xev = (XEvent *) gxev;
5636 block_input ();
5637 if (current_count >= 0)
5639 struct x_display_info *dpyinfo;
5641 dpyinfo = x_display_info_for_display (xev->xany.display);
5643 #ifdef HAVE_X_I18N
5644 /* Filter events for the current X input method.
5645 GTK calls XFilterEvent but not for key press and release,
5646 so we do it here. */
5647 if ((xev->type == KeyPress || xev->type == KeyRelease)
5648 && dpyinfo
5649 && x_filter_event (dpyinfo, xev))
5651 unblock_input ();
5652 return GDK_FILTER_REMOVE;
5654 #endif
5656 if (! dpyinfo)
5657 current_finish = X_EVENT_NORMAL;
5658 else
5659 current_count +=
5660 handle_one_xevent (dpyinfo, xev, &current_finish,
5661 current_hold_quit);
5663 else
5664 current_finish = x_dispatch_event (xev, xev->xany.display);
5666 unblock_input ();
5668 if (current_finish == X_EVENT_GOTO_OUT || current_finish == X_EVENT_DROP)
5669 return GDK_FILTER_REMOVE;
5671 return GDK_FILTER_CONTINUE;
5673 #endif /* USE_GTK */
5676 static void xembed_send_message (struct frame *f, Time,
5677 enum xembed_message,
5678 long detail, long data1, long data2);
5680 /* Handles the XEvent EVENT on display DPYINFO.
5682 *FINISH is X_EVENT_GOTO_OUT if caller should stop reading events.
5683 *FINISH is zero if caller should continue reading events.
5684 *FINISH is X_EVENT_DROP if event should not be passed to the toolkit.
5685 *EVENT is unchanged unless we're processing KeyPress event.
5687 We return the number of characters stored into the buffer. */
5689 static int
5690 handle_one_xevent (struct x_display_info *dpyinfo,
5691 const XEvent *event,
5692 int *finish, struct input_event *hold_quit)
5694 union {
5695 struct input_event ie;
5696 struct selection_input_event sie;
5697 } inev;
5698 int count = 0;
5699 int do_help = 0;
5700 ptrdiff_t nbytes = 0;
5701 struct frame *any, *f = NULL;
5702 struct coding_system coding;
5703 Mouse_HLInfo *hlinfo = &dpyinfo->mouse_highlight;
5704 /* This holds the state XLookupString needs to implement dead keys
5705 and other tricks known as "compose processing". _X Window System_
5706 says that a portable program can't use this, but Stephen Gildea assures
5707 me that letting the compiler initialize it to zeros will work okay. */
5708 static XComposeStatus compose_status;
5710 USE_SAFE_ALLOCA;
5712 *finish = X_EVENT_NORMAL;
5714 EVENT_INIT (inev.ie);
5715 inev.ie.kind = NO_EVENT;
5716 inev.ie.arg = Qnil;
5718 any = x_any_window_to_frame (dpyinfo, event->xany.window);
5720 if (any && any->wait_event_type == event->type)
5721 any->wait_event_type = 0; /* Indicates we got it. */
5723 switch (event->type)
5725 case ClientMessage:
5727 if (event->xclient.message_type == dpyinfo->Xatom_wm_protocols
5728 && event->xclient.format == 32)
5730 if (event->xclient.data.l[0] == dpyinfo->Xatom_wm_take_focus)
5732 /* Use the value returned by x_any_window_to_frame
5733 because this could be the shell widget window
5734 if the frame has no title bar. */
5735 f = any;
5736 #ifdef HAVE_X_I18N
5737 /* Not quite sure this is needed -pd */
5738 if (f && FRAME_XIC (f))
5739 XSetICFocus (FRAME_XIC (f));
5740 #endif
5741 #if 0 /* Emacs sets WM hints whose `input' field is `true'. This
5742 instructs the WM to set the input focus automatically for
5743 Emacs with a call to XSetInputFocus. Setting WM_TAKE_FOCUS
5744 tells the WM to send us a ClientMessage WM_TAKE_FOCUS after
5745 it has set the focus. So, XSetInputFocus below is not
5746 needed.
5748 The call to XSetInputFocus below has also caused trouble. In
5749 cases where the XSetInputFocus done by the WM and the one
5750 below are temporally close (on a fast machine), the call
5751 below can generate additional FocusIn events which confuse
5752 Emacs. */
5754 /* Since we set WM_TAKE_FOCUS, we must call
5755 XSetInputFocus explicitly. But not if f is null,
5756 since that might be an event for a deleted frame. */
5757 if (f)
5759 Display *d = event->xclient.display;
5760 /* Catch and ignore errors, in case window has been
5761 iconified by a window manager such as GWM. */
5762 x_catch_errors (d);
5763 XSetInputFocus (d, event->xclient.window,
5764 /* The ICCCM says this is
5765 the only valid choice. */
5766 RevertToParent,
5767 event->xclient.data.l[1]);
5768 /* This is needed to detect the error
5769 if there is an error. */
5770 XSync (d, False);
5771 x_uncatch_errors ();
5773 /* Not certain about handling scroll bars here */
5774 #endif /* 0 */
5775 goto done;
5778 if (event->xclient.data.l[0] == dpyinfo->Xatom_wm_save_yourself)
5780 /* Save state modify the WM_COMMAND property to
5781 something which can reinstate us. This notifies
5782 the session manager, who's looking for such a
5783 PropertyNotify. Can restart processing when
5784 a keyboard or mouse event arrives. */
5785 /* If we have a session manager, don't set this.
5786 KDE will then start two Emacsen, one for the
5787 session manager and one for this. */
5788 #ifdef HAVE_X_SM
5789 if (! x_session_have_connection ())
5790 #endif
5792 f = x_top_window_to_frame (dpyinfo,
5793 event->xclient.window);
5794 /* This is just so we only give real data once
5795 for a single Emacs process. */
5796 if (f == SELECTED_FRAME ())
5797 XSetCommand (FRAME_X_DISPLAY (f),
5798 event->xclient.window,
5799 initial_argv, initial_argc);
5800 else if (f)
5801 XSetCommand (FRAME_X_DISPLAY (f),
5802 event->xclient.window,
5803 0, 0);
5805 goto done;
5808 if (event->xclient.data.l[0] == dpyinfo->Xatom_wm_delete_window)
5810 f = any;
5811 if (!f)
5812 goto OTHER; /* May be a dialog that is to be removed */
5814 inev.ie.kind = DELETE_WINDOW_EVENT;
5815 XSETFRAME (inev.ie.frame_or_window, f);
5816 goto done;
5819 goto done;
5822 if (event->xclient.message_type == dpyinfo->Xatom_wm_configure_denied)
5823 goto done;
5825 if (event->xclient.message_type == dpyinfo->Xatom_wm_window_moved)
5827 int new_x, new_y;
5828 f = x_window_to_frame (dpyinfo, event->xclient.window);
5830 new_x = event->xclient.data.s[0];
5831 new_y = event->xclient.data.s[1];
5833 if (f)
5835 f->left_pos = new_x;
5836 f->top_pos = new_y;
5838 goto done;
5841 #ifdef HACK_EDITRES
5842 if (event->xclient.message_type == dpyinfo->Xatom_editres)
5844 f = any;
5845 if (f)
5846 _XEditResCheckMessages (f->output_data.x->widget,
5847 NULL, (XEvent *) event, NULL);
5848 goto done;
5850 #endif /* HACK_EDITRES */
5852 if (event->xclient.message_type == dpyinfo->Xatom_DONE
5853 || event->xclient.message_type == dpyinfo->Xatom_PAGE)
5855 /* Ghostview job completed. Kill it. We could
5856 reply with "Next" if we received "Page", but we
5857 currently never do because we are interested in
5858 images, only, which should have 1 page. */
5859 Pixmap pixmap = (Pixmap) event->xclient.data.l[1];
5860 f = x_window_to_frame (dpyinfo, event->xclient.window);
5861 if (!f)
5862 goto OTHER;
5863 x_kill_gs_process (pixmap, f);
5864 expose_frame (f, 0, 0, 0, 0);
5865 goto done;
5868 #ifdef USE_TOOLKIT_SCROLL_BARS
5869 /* Scroll bar callbacks send a ClientMessage from which
5870 we construct an input_event. */
5871 if (event->xclient.message_type == dpyinfo->Xatom_Scrollbar)
5873 x_scroll_bar_to_input_event (event, &inev.ie);
5874 *finish = X_EVENT_GOTO_OUT;
5875 goto done;
5877 #endif /* USE_TOOLKIT_SCROLL_BARS */
5879 /* XEmbed messages from the embedder (if any). */
5880 if (event->xclient.message_type == dpyinfo->Xatom_XEMBED)
5882 enum xembed_message msg = event->xclient.data.l[1];
5883 if (msg == XEMBED_FOCUS_IN || msg == XEMBED_FOCUS_OUT)
5884 x_detect_focus_change (dpyinfo, any, event, &inev.ie);
5886 *finish = X_EVENT_GOTO_OUT;
5887 goto done;
5890 xft_settings_event (dpyinfo, event);
5892 f = any;
5893 if (!f)
5894 goto OTHER;
5895 if (x_handle_dnd_message (f, &event->xclient, dpyinfo, &inev.ie))
5896 *finish = X_EVENT_DROP;
5898 break;
5900 case SelectionNotify:
5901 dpyinfo->last_user_time = event->xselection.time;
5902 #ifdef USE_X_TOOLKIT
5903 if (! x_window_to_frame (dpyinfo, event->xselection.requestor))
5904 goto OTHER;
5905 #endif /* not USE_X_TOOLKIT */
5906 x_handle_selection_notify (&event->xselection);
5907 break;
5909 case SelectionClear: /* Someone has grabbed ownership. */
5910 dpyinfo->last_user_time = event->xselectionclear.time;
5911 #ifdef USE_X_TOOLKIT
5912 if (! x_window_to_frame (dpyinfo, event->xselectionclear.window))
5913 goto OTHER;
5914 #endif /* USE_X_TOOLKIT */
5916 const XSelectionClearEvent *eventp = &event->xselectionclear;
5918 inev.ie.kind = SELECTION_CLEAR_EVENT;
5919 SELECTION_EVENT_DISPLAY (&inev.sie) = eventp->display;
5920 SELECTION_EVENT_SELECTION (&inev.sie) = eventp->selection;
5921 SELECTION_EVENT_TIME (&inev.sie) = eventp->time;
5923 break;
5925 case SelectionRequest: /* Someone wants our selection. */
5926 dpyinfo->last_user_time = event->xselectionrequest.time;
5927 #ifdef USE_X_TOOLKIT
5928 if (!x_window_to_frame (dpyinfo, event->xselectionrequest.owner))
5929 goto OTHER;
5930 #endif /* USE_X_TOOLKIT */
5932 const XSelectionRequestEvent *eventp = &event->xselectionrequest;
5934 inev.ie.kind = SELECTION_REQUEST_EVENT;
5935 SELECTION_EVENT_DISPLAY (&inev.sie) = eventp->display;
5936 SELECTION_EVENT_REQUESTOR (&inev.sie) = eventp->requestor;
5937 SELECTION_EVENT_SELECTION (&inev.sie) = eventp->selection;
5938 SELECTION_EVENT_TARGET (&inev.sie) = eventp->target;
5939 SELECTION_EVENT_PROPERTY (&inev.sie) = eventp->property;
5940 SELECTION_EVENT_TIME (&inev.sie) = eventp->time;
5942 break;
5944 case PropertyNotify:
5945 dpyinfo->last_user_time = event->xproperty.time;
5946 f = x_top_window_to_frame (dpyinfo, event->xproperty.window);
5947 if (f && event->xproperty.atom == dpyinfo->Xatom_net_wm_state)
5948 if (x_handle_net_wm_state (f, &event->xproperty)
5949 && FRAME_ICONIFIED_P (f)
5950 && f->output_data.x->net_wm_state_hidden_seen)
5952 /* Gnome shell does not iconify us when C-z is pressed.
5953 It hides the frame. So if our state says we aren't
5954 hidden anymore, treat it as deiconified. */
5955 SET_FRAME_VISIBLE (f, 1);
5956 SET_FRAME_ICONIFIED (f, 0);
5957 f->output_data.x->has_been_visible = 1;
5958 f->output_data.x->net_wm_state_hidden_seen = 0;
5959 inev.ie.kind = DEICONIFY_EVENT;
5960 XSETFRAME (inev.ie.frame_or_window, f);
5963 x_handle_property_notify (&event->xproperty);
5964 xft_settings_event (dpyinfo, event);
5965 goto OTHER;
5967 case ReparentNotify:
5968 f = x_top_window_to_frame (dpyinfo, event->xreparent.window);
5969 if (f)
5971 f->output_data.x->parent_desc = event->xreparent.parent;
5972 x_real_positions (f, &f->left_pos, &f->top_pos);
5974 /* Perhaps reparented due to a WM restart. Reset this. */
5975 FRAME_DISPLAY_INFO (f)->wm_type = X_WMTYPE_UNKNOWN;
5976 FRAME_DISPLAY_INFO (f)->net_supported_window = 0;
5978 x_set_frame_alpha (f);
5980 goto OTHER;
5982 case Expose:
5983 f = x_window_to_frame (dpyinfo, event->xexpose.window);
5984 if (f)
5986 if (!FRAME_VISIBLE_P (f))
5988 SET_FRAME_VISIBLE (f, 1);
5989 SET_FRAME_ICONIFIED (f, 0);
5990 f->output_data.x->has_been_visible = 1;
5991 SET_FRAME_GARBAGED (f);
5993 else
5995 #ifdef USE_GTK
5996 /* This seems to be needed for GTK 2.6 and later, see
5997 http://debbugs.gnu.org/cgi/bugreport.cgi?bug=15398. */
5998 x_clear_area (event->xexpose.display,
5999 event->xexpose.window,
6000 event->xexpose.x, event->xexpose.y,
6001 event->xexpose.width, event->xexpose.height);
6002 #endif
6003 expose_frame (f, event->xexpose.x, event->xexpose.y,
6004 event->xexpose.width, event->xexpose.height);
6007 else
6009 #ifndef USE_TOOLKIT_SCROLL_BARS
6010 struct scroll_bar *bar;
6011 #endif
6012 #if defined USE_LUCID
6013 /* Submenus of the Lucid menu bar aren't widgets
6014 themselves, so there's no way to dispatch events
6015 to them. Recognize this case separately. */
6017 Widget widget = x_window_to_menu_bar (event->xexpose.window);
6018 if (widget)
6019 xlwmenu_redisplay (widget);
6021 #endif /* USE_LUCID */
6023 #ifdef USE_TOOLKIT_SCROLL_BARS
6024 /* Dispatch event to the widget. */
6025 goto OTHER;
6026 #else /* not USE_TOOLKIT_SCROLL_BARS */
6027 bar = x_window_to_scroll_bar (event->xexpose.display,
6028 event->xexpose.window);
6030 if (bar)
6031 x_scroll_bar_expose (bar, event);
6032 #ifdef USE_X_TOOLKIT
6033 else
6034 goto OTHER;
6035 #endif /* USE_X_TOOLKIT */
6036 #endif /* not USE_TOOLKIT_SCROLL_BARS */
6038 break;
6040 case GraphicsExpose: /* This occurs when an XCopyArea's
6041 source area was obscured or not
6042 available. */
6043 f = x_window_to_frame (dpyinfo, event->xgraphicsexpose.drawable);
6044 if (f)
6045 expose_frame (f, event->xgraphicsexpose.x,
6046 event->xgraphicsexpose.y,
6047 event->xgraphicsexpose.width,
6048 event->xgraphicsexpose.height);
6049 #ifdef USE_X_TOOLKIT
6050 else
6051 goto OTHER;
6052 #endif /* USE_X_TOOLKIT */
6053 break;
6055 case NoExpose: /* This occurs when an XCopyArea's
6056 source area was completely
6057 available. */
6058 break;
6060 case UnmapNotify:
6061 /* Redo the mouse-highlight after the tooltip has gone. */
6062 if (event->xunmap.window == tip_window)
6064 tip_window = 0;
6065 x_redo_mouse_highlight (dpyinfo);
6068 f = x_top_window_to_frame (dpyinfo, event->xunmap.window);
6069 if (f) /* F may no longer exist if
6070 the frame was deleted. */
6072 bool visible = FRAME_VISIBLE_P (f);
6073 /* While a frame is unmapped, display generation is
6074 disabled; you don't want to spend time updating a
6075 display that won't ever be seen. */
6076 SET_FRAME_VISIBLE (f, 0);
6077 /* We can't distinguish, from the event, whether the window
6078 has become iconified or invisible. So assume, if it
6079 was previously visible, than now it is iconified.
6080 But x_make_frame_invisible clears both
6081 the visible flag and the iconified flag;
6082 and that way, we know the window is not iconified now. */
6083 if (visible || FRAME_ICONIFIED_P (f))
6085 SET_FRAME_ICONIFIED (f, 1);
6086 inev.ie.kind = ICONIFY_EVENT;
6087 XSETFRAME (inev.ie.frame_or_window, f);
6090 goto OTHER;
6092 case MapNotify:
6093 if (event->xmap.window == tip_window)
6094 /* The tooltip has been drawn already. Avoid
6095 the SET_FRAME_GARBAGED below. */
6096 goto OTHER;
6098 /* We use x_top_window_to_frame because map events can
6099 come for sub-windows and they don't mean that the
6100 frame is visible. */
6101 f = x_top_window_to_frame (dpyinfo, event->xmap.window);
6102 if (f)
6104 bool iconified = FRAME_ICONIFIED_P (f);
6105 /* wait_reading_process_output will notice this and update
6106 the frame's display structures.
6107 If we where iconified, we should not set garbaged,
6108 because that stops redrawing on Expose events. This looks
6109 bad if we are called from a recursive event loop
6110 (x_dispatch_event), for example when a dialog is up. */
6111 if (!iconified)
6112 SET_FRAME_GARBAGED (f);
6114 /* Check if fullscreen was specified before we where mapped the
6115 first time, i.e. from the command line. */
6116 if (!f->output_data.x->has_been_visible)
6117 x_check_fullscreen (f);
6119 SET_FRAME_VISIBLE (f, 1);
6120 SET_FRAME_ICONIFIED (f, 0);
6121 f->output_data.x->has_been_visible = 1;
6123 if (iconified)
6125 inev.ie.kind = DEICONIFY_EVENT;
6126 XSETFRAME (inev.ie.frame_or_window, f);
6128 else if (! NILP (Vframe_list) && ! NILP (XCDR (Vframe_list)))
6129 /* Force a redisplay sooner or later to update the
6130 frame titles in case this is the second frame. */
6131 record_asynch_buffer_change ();
6133 #ifdef USE_GTK
6134 xg_frame_resized (f, -1, -1);
6135 #endif
6137 goto OTHER;
6139 case KeyPress:
6141 dpyinfo->last_user_time = event->xkey.time;
6142 ignore_next_mouse_click_timeout = 0;
6144 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
6145 /* Dispatch KeyPress events when in menu. */
6146 if (popup_activated ())
6147 goto OTHER;
6148 #endif
6150 f = any;
6152 #if ! defined (USE_GTK)
6153 /* If mouse-highlight is an integer, input clears out
6154 mouse highlighting. */
6155 if (!hlinfo->mouse_face_hidden && INTEGERP (Vmouse_highlight)
6156 && (f == 0
6157 || !EQ (f->tool_bar_window, hlinfo->mouse_face_window)))
6159 clear_mouse_face (hlinfo);
6160 hlinfo->mouse_face_hidden = 1;
6162 #endif
6164 #if defined USE_MOTIF && defined USE_TOOLKIT_SCROLL_BARS
6165 if (f == 0)
6167 /* Scroll bars consume key events, but we want
6168 the keys to go to the scroll bar's frame. */
6169 Widget widget = XtWindowToWidget (dpyinfo->display,
6170 event->xkey.window);
6171 if (widget && XmIsScrollBar (widget))
6173 widget = XtParent (widget);
6174 f = x_any_window_to_frame (dpyinfo, XtWindow (widget));
6177 #endif /* USE_MOTIF and USE_TOOLKIT_SCROLL_BARS */
6179 if (f != 0)
6181 KeySym keysym, orig_keysym;
6182 /* al%imercury@uunet.uu.net says that making this 81
6183 instead of 80 fixed a bug whereby meta chars made
6184 his Emacs hang.
6186 It seems that some version of XmbLookupString has
6187 a bug of not returning XBufferOverflow in
6188 status_return even if the input is too long to
6189 fit in 81 bytes. So, we must prepare sufficient
6190 bytes for copy_buffer. 513 bytes (256 chars for
6191 two-byte character set) seems to be a fairly good
6192 approximation. -- 2000.8.10 handa@etl.go.jp */
6193 unsigned char copy_buffer[513];
6194 unsigned char *copy_bufptr = copy_buffer;
6195 int copy_bufsiz = sizeof (copy_buffer);
6196 int modifiers;
6197 Lisp_Object coding_system = Qlatin_1;
6198 Lisp_Object c;
6199 /* Event will be modified. */
6200 XKeyEvent xkey = event->xkey;
6202 #ifdef USE_GTK
6203 /* Don't pass keys to GTK. A Tab will shift focus to the
6204 tool bar in GTK 2.4. Keys will still go to menus and
6205 dialogs because in that case popup_activated is nonzero
6206 (see above). */
6207 *finish = X_EVENT_DROP;
6208 #endif
6210 xkey.state |= x_emacs_to_x_modifiers (FRAME_DISPLAY_INFO (f),
6211 extra_keyboard_modifiers);
6212 modifiers = xkey.state;
6214 /* This will have to go some day... */
6216 /* make_lispy_event turns chars into control chars.
6217 Don't do it here because XLookupString is too eager. */
6218 xkey.state &= ~ControlMask;
6219 xkey.state &= ~(dpyinfo->meta_mod_mask
6220 | dpyinfo->super_mod_mask
6221 | dpyinfo->hyper_mod_mask
6222 | dpyinfo->alt_mod_mask);
6224 /* In case Meta is ComposeCharacter,
6225 clear its status. According to Markus Ehrnsperger
6226 Markus.Ehrnsperger@lehrstuhl-bross.physik.uni-muenchen.de
6227 this enables ComposeCharacter to work whether or
6228 not it is combined with Meta. */
6229 if (modifiers & dpyinfo->meta_mod_mask)
6230 memset (&compose_status, 0, sizeof (compose_status));
6232 #ifdef HAVE_X_I18N
6233 if (FRAME_XIC (f))
6235 Status status_return;
6237 coding_system = Vlocale_coding_system;
6238 nbytes = XmbLookupString (FRAME_XIC (f),
6239 &xkey, (char *) copy_bufptr,
6240 copy_bufsiz, &keysym,
6241 &status_return);
6242 if (status_return == XBufferOverflow)
6244 copy_bufsiz = nbytes + 1;
6245 copy_bufptr = alloca (copy_bufsiz);
6246 nbytes = XmbLookupString (FRAME_XIC (f),
6247 &xkey, (char *) copy_bufptr,
6248 copy_bufsiz, &keysym,
6249 &status_return);
6251 /* Xutf8LookupString is a new but already deprecated interface. -stef */
6252 if (status_return == XLookupNone)
6253 break;
6254 else if (status_return == XLookupChars)
6256 keysym = NoSymbol;
6257 modifiers = 0;
6259 else if (status_return != XLookupKeySym
6260 && status_return != XLookupBoth)
6261 emacs_abort ();
6263 else
6264 nbytes = XLookupString (&xkey, (char *) copy_bufptr,
6265 copy_bufsiz, &keysym,
6266 &compose_status);
6267 #else
6268 nbytes = XLookupString (&xkey, (char *) copy_bufptr,
6269 copy_bufsiz, &keysym,
6270 &compose_status);
6271 #endif
6273 /* If not using XIM/XIC, and a compose sequence is in progress,
6274 we break here. Otherwise, chars_matched is always 0. */
6275 if (compose_status.chars_matched > 0 && nbytes == 0)
6276 break;
6278 memset (&compose_status, 0, sizeof (compose_status));
6279 orig_keysym = keysym;
6281 /* Common for all keysym input events. */
6282 XSETFRAME (inev.ie.frame_or_window, f);
6283 inev.ie.modifiers
6284 = x_x_to_emacs_modifiers (FRAME_DISPLAY_INFO (f), modifiers);
6285 inev.ie.timestamp = xkey.time;
6287 /* First deal with keysyms which have defined
6288 translations to characters. */
6289 if (keysym >= 32 && keysym < 128)
6290 /* Avoid explicitly decoding each ASCII character. */
6292 inev.ie.kind = ASCII_KEYSTROKE_EVENT;
6293 inev.ie.code = keysym;
6294 goto done_keysym;
6297 /* Keysyms directly mapped to Unicode characters. */
6298 if (keysym >= 0x01000000 && keysym <= 0x0110FFFF)
6300 if (keysym < 0x01000080)
6301 inev.ie.kind = ASCII_KEYSTROKE_EVENT;
6302 else
6303 inev.ie.kind = MULTIBYTE_CHAR_KEYSTROKE_EVENT;
6304 inev.ie.code = keysym & 0xFFFFFF;
6305 goto done_keysym;
6308 /* Now non-ASCII. */
6309 if (HASH_TABLE_P (Vx_keysym_table)
6310 && (c = Fgethash (make_number (keysym),
6311 Vx_keysym_table,
6312 Qnil),
6313 NATNUMP (c)))
6315 inev.ie.kind = (SINGLE_BYTE_CHAR_P (XFASTINT (c))
6316 ? ASCII_KEYSTROKE_EVENT
6317 : MULTIBYTE_CHAR_KEYSTROKE_EVENT);
6318 inev.ie.code = XFASTINT (c);
6319 goto done_keysym;
6322 /* Random non-modifier sorts of keysyms. */
6323 if (((keysym >= XK_BackSpace && keysym <= XK_Escape)
6324 || keysym == XK_Delete
6325 #ifdef XK_ISO_Left_Tab
6326 || (keysym >= XK_ISO_Left_Tab
6327 && keysym <= XK_ISO_Enter)
6328 #endif
6329 || IsCursorKey (keysym) /* 0xff50 <= x < 0xff60 */
6330 || IsMiscFunctionKey (keysym) /* 0xff60 <= x < VARIES */
6331 #ifdef HPUX
6332 /* This recognizes the "extended function
6333 keys". It seems there's no cleaner way.
6334 Test IsModifierKey to avoid handling
6335 mode_switch incorrectly. */
6336 || (XK_Select <= keysym && keysym < XK_KP_Space)
6337 #endif
6338 #ifdef XK_dead_circumflex
6339 || orig_keysym == XK_dead_circumflex
6340 #endif
6341 #ifdef XK_dead_grave
6342 || orig_keysym == XK_dead_grave
6343 #endif
6344 #ifdef XK_dead_tilde
6345 || orig_keysym == XK_dead_tilde
6346 #endif
6347 #ifdef XK_dead_diaeresis
6348 || orig_keysym == XK_dead_diaeresis
6349 #endif
6350 #ifdef XK_dead_macron
6351 || orig_keysym == XK_dead_macron
6352 #endif
6353 #ifdef XK_dead_degree
6354 || orig_keysym == XK_dead_degree
6355 #endif
6356 #ifdef XK_dead_acute
6357 || orig_keysym == XK_dead_acute
6358 #endif
6359 #ifdef XK_dead_cedilla
6360 || orig_keysym == XK_dead_cedilla
6361 #endif
6362 #ifdef XK_dead_breve
6363 || orig_keysym == XK_dead_breve
6364 #endif
6365 #ifdef XK_dead_ogonek
6366 || orig_keysym == XK_dead_ogonek
6367 #endif
6368 #ifdef XK_dead_caron
6369 || orig_keysym == XK_dead_caron
6370 #endif
6371 #ifdef XK_dead_doubleacute
6372 || orig_keysym == XK_dead_doubleacute
6373 #endif
6374 #ifdef XK_dead_abovedot
6375 || orig_keysym == XK_dead_abovedot
6376 #endif
6377 || IsKeypadKey (keysym) /* 0xff80 <= x < 0xffbe */
6378 || IsFunctionKey (keysym) /* 0xffbe <= x < 0xffe1 */
6379 /* Any "vendor-specific" key is ok. */
6380 || (orig_keysym & (1 << 28))
6381 || (keysym != NoSymbol && nbytes == 0))
6382 && ! (IsModifierKey (orig_keysym)
6383 /* The symbols from XK_ISO_Lock
6384 to XK_ISO_Last_Group_Lock
6385 don't have real modifiers but
6386 should be treated similarly to
6387 Mode_switch by Emacs. */
6388 #if defined XK_ISO_Lock && defined XK_ISO_Last_Group_Lock
6389 || (XK_ISO_Lock <= orig_keysym
6390 && orig_keysym <= XK_ISO_Last_Group_Lock)
6391 #endif
6394 STORE_KEYSYM_FOR_DEBUG (keysym);
6395 /* make_lispy_event will convert this to a symbolic
6396 key. */
6397 inev.ie.kind = NON_ASCII_KEYSTROKE_EVENT;
6398 inev.ie.code = keysym;
6399 goto done_keysym;
6402 { /* Raw bytes, not keysym. */
6403 ptrdiff_t i;
6404 int nchars, len;
6406 for (i = 0, nchars = 0; i < nbytes; i++)
6408 if (ASCII_BYTE_P (copy_bufptr[i]))
6409 nchars++;
6410 STORE_KEYSYM_FOR_DEBUG (copy_bufptr[i]);
6413 if (nchars < nbytes)
6415 /* Decode the input data. */
6417 /* The input should be decoded with `coding_system'
6418 which depends on which X*LookupString function
6419 we used just above and the locale. */
6420 setup_coding_system (coding_system, &coding);
6421 coding.src_multibyte = 0;
6422 coding.dst_multibyte = 1;
6423 /* The input is converted to events, thus we can't
6424 handle composition. Anyway, there's no XIM that
6425 gives us composition information. */
6426 coding.common_flags &= ~CODING_ANNOTATION_MASK;
6428 SAFE_NALLOCA (coding.destination, MAX_MULTIBYTE_LENGTH,
6429 nbytes);
6430 coding.dst_bytes = MAX_MULTIBYTE_LENGTH * nbytes;
6431 coding.mode |= CODING_MODE_LAST_BLOCK;
6432 decode_coding_c_string (&coding, copy_bufptr, nbytes, Qnil);
6433 nbytes = coding.produced;
6434 nchars = coding.produced_char;
6435 copy_bufptr = coding.destination;
6438 /* Convert the input data to a sequence of
6439 character events. */
6440 for (i = 0; i < nbytes; i += len)
6442 int ch;
6443 if (nchars == nbytes)
6444 ch = copy_bufptr[i], len = 1;
6445 else
6446 ch = STRING_CHAR_AND_LENGTH (copy_bufptr + i, len);
6447 inev.ie.kind = (SINGLE_BYTE_CHAR_P (ch)
6448 ? ASCII_KEYSTROKE_EVENT
6449 : MULTIBYTE_CHAR_KEYSTROKE_EVENT);
6450 inev.ie.code = ch;
6451 kbd_buffer_store_event_hold (&inev.ie, hold_quit);
6454 count += nchars;
6456 inev.ie.kind = NO_EVENT; /* Already stored above. */
6458 if (keysym == NoSymbol)
6459 break;
6461 /* FIXME: check side effects and remove this. */
6462 ((XEvent *) event)->xkey = xkey;
6464 done_keysym:
6465 #ifdef HAVE_X_I18N
6466 /* Don't dispatch this event since XtDispatchEvent calls
6467 XFilterEvent, and two calls in a row may freeze the
6468 client. */
6469 break;
6470 #else
6471 goto OTHER;
6472 #endif
6474 case KeyRelease:
6475 dpyinfo->last_user_time = event->xkey.time;
6476 #ifdef HAVE_X_I18N
6477 /* Don't dispatch this event since XtDispatchEvent calls
6478 XFilterEvent, and two calls in a row may freeze the
6479 client. */
6480 break;
6481 #else
6482 goto OTHER;
6483 #endif
6485 case EnterNotify:
6486 dpyinfo->last_user_time = event->xcrossing.time;
6487 x_detect_focus_change (dpyinfo, any, event, &inev.ie);
6489 f = any;
6491 if (f && x_mouse_click_focus_ignore_position)
6492 ignore_next_mouse_click_timeout = event->xmotion.time + 200;
6494 /* EnterNotify counts as mouse movement,
6495 so update things that depend on mouse position. */
6496 if (f && !f->output_data.x->hourglass_p)
6497 note_mouse_movement (f, &event->xmotion);
6498 #ifdef USE_GTK
6499 /* We may get an EnterNotify on the buttons in the toolbar. In that
6500 case we moved out of any highlighted area and need to note this. */
6501 if (!f && dpyinfo->last_mouse_glyph_frame)
6502 note_mouse_movement (dpyinfo->last_mouse_glyph_frame, &event->xmotion);
6503 #endif
6504 goto OTHER;
6506 case FocusIn:
6507 x_detect_focus_change (dpyinfo, any, event, &inev.ie);
6508 goto OTHER;
6510 case LeaveNotify:
6511 dpyinfo->last_user_time = event->xcrossing.time;
6512 x_detect_focus_change (dpyinfo, any, event, &inev.ie);
6514 f = x_top_window_to_frame (dpyinfo, event->xcrossing.window);
6515 if (f)
6517 if (f == hlinfo->mouse_face_mouse_frame)
6519 /* If we move outside the frame, then we're
6520 certainly no longer on any text in the frame. */
6521 clear_mouse_face (hlinfo);
6522 hlinfo->mouse_face_mouse_frame = 0;
6525 /* Generate a nil HELP_EVENT to cancel a help-echo.
6526 Do it only if there's something to cancel.
6527 Otherwise, the startup message is cleared when
6528 the mouse leaves the frame. */
6529 if (any_help_event_p)
6530 do_help = -1;
6532 #ifdef USE_GTK
6533 /* See comment in EnterNotify above */
6534 else if (dpyinfo->last_mouse_glyph_frame)
6535 note_mouse_movement (dpyinfo->last_mouse_glyph_frame, &event->xmotion);
6536 #endif
6537 goto OTHER;
6539 case FocusOut:
6540 x_detect_focus_change (dpyinfo, any, event, &inev.ie);
6541 goto OTHER;
6543 case MotionNotify:
6545 dpyinfo->last_user_time = event->xmotion.time;
6546 previous_help_echo_string = help_echo_string;
6547 help_echo_string = Qnil;
6549 f = (x_mouse_grabbed (dpyinfo) ? dpyinfo->last_mouse_frame
6550 : x_window_to_frame (dpyinfo, event->xmotion.window));
6552 if (hlinfo->mouse_face_hidden)
6554 hlinfo->mouse_face_hidden = 0;
6555 clear_mouse_face (hlinfo);
6558 #ifdef USE_GTK
6559 if (f && xg_event_is_for_scrollbar (f, event))
6560 f = 0;
6561 #endif
6562 if (f)
6565 /* Generate SELECT_WINDOW_EVENTs when needed.
6566 Don't let popup menus influence things (bug#1261). */
6567 if (!NILP (Vmouse_autoselect_window) && !popup_activated ())
6569 static Lisp_Object last_mouse_window;
6570 Lisp_Object window = window_from_coordinates
6571 (f, event->xmotion.x, event->xmotion.y, 0, 0);
6573 /* Window will be selected only when it is not selected now and
6574 last mouse movement event was not in it. Minibuffer window
6575 will be selected only when it is active. */
6576 if (WINDOWP (window)
6577 && !EQ (window, last_mouse_window)
6578 && !EQ (window, selected_window)
6579 /* For click-to-focus window managers
6580 create event iff we don't leave the
6581 selected frame. */
6582 && (focus_follows_mouse
6583 || (EQ (XWINDOW (window)->frame,
6584 XWINDOW (selected_window)->frame))))
6586 inev.ie.kind = SELECT_WINDOW_EVENT;
6587 inev.ie.frame_or_window = window;
6589 /* Remember the last window where we saw the mouse. */
6590 last_mouse_window = window;
6592 if (!note_mouse_movement (f, &event->xmotion))
6593 help_echo_string = previous_help_echo_string;
6595 else
6597 #ifndef USE_TOOLKIT_SCROLL_BARS
6598 struct scroll_bar *bar
6599 = x_window_to_scroll_bar (event->xmotion.display,
6600 event->xmotion.window);
6602 if (bar)
6603 x_scroll_bar_note_movement (bar, &event->xmotion);
6604 #endif /* USE_TOOLKIT_SCROLL_BARS */
6606 /* If we move outside the frame, then we're
6607 certainly no longer on any text in the frame. */
6608 clear_mouse_face (hlinfo);
6611 /* If the contents of the global variable help_echo_string
6612 has changed, generate a HELP_EVENT. */
6613 if (!NILP (help_echo_string)
6614 || !NILP (previous_help_echo_string))
6615 do_help = 1;
6616 goto OTHER;
6619 case ConfigureNotify:
6620 f = x_top_window_to_frame (dpyinfo, event->xconfigure.window);
6621 #ifdef USE_GTK
6622 if (!f
6623 && (f = any)
6624 && event->xconfigure.window == FRAME_X_WINDOW (f))
6626 xg_frame_resized (f, event->xconfigure.width,
6627 event->xconfigure.height);
6628 f = 0;
6630 #endif
6631 if (f)
6633 #ifndef USE_X_TOOLKIT
6634 #ifndef USE_GTK
6635 int width = FRAME_PIXEL_TO_TEXT_WIDTH (f, event->xconfigure.width);
6636 int height = FRAME_PIXEL_TO_TEXT_HEIGHT (f, event->xconfigure.height);
6638 /* In the toolkit version, change_frame_size
6639 is called by the code that handles resizing
6640 of the EmacsFrame widget. */
6642 /* Even if the number of character rows and columns has
6643 not changed, the font size may have changed, so we need
6644 to check the pixel dimensions as well. */
6645 if (width != FRAME_TEXT_WIDTH (f)
6646 || height != FRAME_TEXT_HEIGHT (f)
6647 || event->xconfigure.width != FRAME_PIXEL_WIDTH (f)
6648 || event->xconfigure.height != FRAME_PIXEL_HEIGHT (f))
6650 change_frame_size (f, width, height, 0, 1, 0, 1);
6651 x_clear_under_internal_border (f);
6652 SET_FRAME_GARBAGED (f);
6653 cancel_mouse_face (f);
6656 /** FRAME_PIXEL_WIDTH (f) = event->xconfigure.width; **/
6657 /** FRAME_PIXEL_HEIGHT (f) = event->xconfigure.height; **/
6658 #endif /* not USE_GTK */
6659 #endif
6661 #ifdef USE_GTK
6662 /* GTK creates windows but doesn't map them.
6663 Only get real positions when mapped. */
6664 if (FRAME_GTK_OUTER_WIDGET (f)
6665 && gtk_widget_get_mapped (FRAME_GTK_OUTER_WIDGET (f)))
6666 #endif
6667 x_real_positions (f, &f->left_pos, &f->top_pos);
6669 #ifdef HAVE_X_I18N
6670 if (FRAME_XIC (f) && (FRAME_XIC_STYLE (f) & XIMStatusArea))
6671 xic_set_statusarea (f);
6672 #endif
6675 goto OTHER;
6677 case ButtonRelease:
6678 case ButtonPress:
6680 /* If we decide we want to generate an event to be seen
6681 by the rest of Emacs, we put it here. */
6682 bool tool_bar_p = 0;
6684 memset (&compose_status, 0, sizeof (compose_status));
6685 dpyinfo->last_mouse_glyph_frame = NULL;
6686 dpyinfo->last_user_time = event->xbutton.time;
6688 f = (x_mouse_grabbed (dpyinfo) ? dpyinfo->last_mouse_frame
6689 : x_window_to_frame (dpyinfo, event->xbutton.window));
6691 #ifdef USE_GTK
6692 if (f && xg_event_is_for_scrollbar (f, event))
6693 f = 0;
6694 #endif
6695 if (f)
6697 #if ! defined (USE_GTK)
6698 /* Is this in the tool-bar? */
6699 if (WINDOWP (f->tool_bar_window)
6700 && WINDOW_TOTAL_LINES (XWINDOW (f->tool_bar_window)))
6702 Lisp_Object window;
6703 int x = event->xbutton.x;
6704 int y = event->xbutton.y;
6706 window = window_from_coordinates (f, x, y, 0, 1);
6707 tool_bar_p = EQ (window, f->tool_bar_window);
6709 if (tool_bar_p && event->xbutton.button < 4)
6710 handle_tool_bar_click
6711 (f, x, y, event->xbutton.type == ButtonPress,
6712 x_x_to_emacs_modifiers (dpyinfo, event->xbutton.state));
6714 #endif /* !USE_GTK */
6716 if (!tool_bar_p)
6717 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
6718 if (! popup_activated ())
6719 #endif
6721 if (ignore_next_mouse_click_timeout)
6723 if (event->type == ButtonPress
6724 && event->xbutton.time > ignore_next_mouse_click_timeout)
6726 ignore_next_mouse_click_timeout = 0;
6727 construct_mouse_click (&inev.ie, &event->xbutton, f);
6729 if (event->type == ButtonRelease)
6730 ignore_next_mouse_click_timeout = 0;
6732 else
6733 construct_mouse_click (&inev.ie, &event->xbutton, f);
6735 if (FRAME_X_EMBEDDED_P (f))
6736 xembed_send_message (f, event->xbutton.time,
6737 XEMBED_REQUEST_FOCUS, 0, 0, 0);
6739 else
6741 struct scroll_bar *bar
6742 = x_window_to_scroll_bar (event->xbutton.display,
6743 event->xbutton.window);
6745 #ifdef USE_TOOLKIT_SCROLL_BARS
6746 /* Make the "Ctrl-Mouse-2 splits window" work for toolkit
6747 scroll bars. */
6748 if (bar && event->xbutton.state & ControlMask)
6750 x_scroll_bar_handle_click (bar, event, &inev.ie);
6751 *finish = X_EVENT_DROP;
6753 #else /* not USE_TOOLKIT_SCROLL_BARS */
6754 if (bar)
6755 x_scroll_bar_handle_click (bar, event, &inev.ie);
6756 #endif /* not USE_TOOLKIT_SCROLL_BARS */
6759 if (event->type == ButtonPress)
6761 dpyinfo->grabbed |= (1 << event->xbutton.button);
6762 dpyinfo->last_mouse_frame = f;
6764 if (!tool_bar_p)
6765 last_tool_bar_item = -1;
6767 else
6768 dpyinfo->grabbed &= ~(1 << event->xbutton.button);
6770 /* Ignore any mouse motion that happened before this event;
6771 any subsequent mouse-movement Emacs events should reflect
6772 only motion after the ButtonPress/Release. */
6773 if (f != 0)
6774 f->mouse_moved = 0;
6776 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
6777 f = x_menubar_window_to_frame (dpyinfo, event);
6778 /* For a down-event in the menu bar,
6779 don't pass it to Xt right now.
6780 Instead, save it away
6781 and we will pass it to Xt from kbd_buffer_get_event.
6782 That way, we can run some Lisp code first. */
6783 if (! popup_activated ()
6784 #ifdef USE_GTK
6785 /* Gtk+ menus only react to the first three buttons. */
6786 && event->xbutton.button < 3
6787 #endif
6788 && f && event->type == ButtonPress
6789 /* Verify the event is really within the menu bar
6790 and not just sent to it due to grabbing. */
6791 && event->xbutton.x >= 0
6792 && event->xbutton.x < FRAME_PIXEL_WIDTH (f)
6793 && event->xbutton.y >= 0
6794 && event->xbutton.y < f->output_data.x->menubar_height
6795 && event->xbutton.same_screen)
6797 if (!f->output_data.x->saved_menu_event)
6798 f->output_data.x->saved_menu_event = xmalloc (sizeof *event);
6799 *f->output_data.x->saved_menu_event = *event;
6800 inev.ie.kind = MENU_BAR_ACTIVATE_EVENT;
6801 XSETFRAME (inev.ie.frame_or_window, f);
6802 *finish = X_EVENT_DROP;
6804 else
6805 goto OTHER;
6806 #endif /* USE_X_TOOLKIT || USE_GTK */
6808 break;
6810 case CirculateNotify:
6811 goto OTHER;
6813 case CirculateRequest:
6814 goto OTHER;
6816 case VisibilityNotify:
6817 goto OTHER;
6819 case MappingNotify:
6820 /* Someone has changed the keyboard mapping - update the
6821 local cache. */
6822 switch (event->xmapping.request)
6824 case MappingModifier:
6825 x_find_modifier_meanings (dpyinfo);
6826 /* This is meant to fall through. */
6827 case MappingKeyboard:
6828 XRefreshKeyboardMapping ((XMappingEvent *) &event->xmapping);
6830 goto OTHER;
6832 case DestroyNotify:
6833 xft_settings_event (dpyinfo, event);
6834 break;
6836 default:
6837 OTHER:
6838 #ifdef USE_X_TOOLKIT
6839 block_input ();
6840 if (*finish != X_EVENT_DROP)
6841 XtDispatchEvent ((XEvent *) event);
6842 unblock_input ();
6843 #endif /* USE_X_TOOLKIT */
6844 break;
6847 done:
6848 if (inev.ie.kind != NO_EVENT)
6850 kbd_buffer_store_event_hold (&inev.ie, hold_quit);
6851 count++;
6854 if (do_help
6855 && !(hold_quit && hold_quit->kind != NO_EVENT))
6857 Lisp_Object frame;
6859 if (f)
6860 XSETFRAME (frame, f);
6861 else
6862 frame = Qnil;
6864 if (do_help > 0)
6866 any_help_event_p = 1;
6867 gen_help_event (help_echo_string, frame, help_echo_window,
6868 help_echo_object, help_echo_pos);
6870 else
6872 help_echo_string = Qnil;
6873 gen_help_event (Qnil, frame, Qnil, Qnil, 0);
6875 count++;
6878 SAFE_FREE ();
6879 return count;
6882 /* Handles the XEvent EVENT on display DISPLAY.
6883 This is used for event loops outside the normal event handling,
6884 i.e. looping while a popup menu or a dialog is posted.
6886 Returns the value handle_one_xevent sets in the finish argument. */
6888 x_dispatch_event (XEvent *event, Display *display)
6890 struct x_display_info *dpyinfo;
6891 int finish = X_EVENT_NORMAL;
6893 dpyinfo = x_display_info_for_display (display);
6895 if (dpyinfo)
6896 handle_one_xevent (dpyinfo, event, &finish, 0);
6898 return finish;
6901 /* Read events coming from the X server.
6902 Return as soon as there are no more events to be read.
6904 Return the number of characters stored into the buffer,
6905 thus pretending to be `read' (except the characters we store
6906 in the keyboard buffer can be multibyte, so are not necessarily
6907 C chars). */
6909 static int
6910 XTread_socket (struct terminal *terminal, struct input_event *hold_quit)
6912 int count = 0;
6913 int event_found = 0;
6914 struct x_display_info *dpyinfo = terminal->display_info.x;
6916 block_input ();
6918 /* For debugging, this gives a way to fake an I/O error. */
6919 if (dpyinfo == XTread_socket_fake_io_error)
6921 XTread_socket_fake_io_error = 0;
6922 x_io_error_quitter (dpyinfo->display);
6925 #ifndef USE_GTK
6926 while (XPending (dpyinfo->display))
6928 int finish;
6929 XEvent event;
6931 XNextEvent (dpyinfo->display, &event);
6933 #ifdef HAVE_X_I18N
6934 /* Filter events for the current X input method. */
6935 if (x_filter_event (dpyinfo, &event))
6936 continue;
6937 #endif
6938 event_found = 1;
6940 count += handle_one_xevent (dpyinfo, &event, &finish, hold_quit);
6942 if (finish == X_EVENT_GOTO_OUT)
6943 break;
6946 #else /* USE_GTK */
6948 /* For GTK we must use the GTK event loop. But XEvents gets passed
6949 to our filter function above, and then to the big event switch.
6950 We use a bunch of globals to communicate with our filter function,
6951 that is kind of ugly, but it works.
6953 There is no way to do one display at the time, GTK just does events
6954 from all displays. */
6956 while (gtk_events_pending ())
6958 current_count = count;
6959 current_hold_quit = hold_quit;
6961 gtk_main_iteration ();
6963 count = current_count;
6964 current_count = -1;
6965 current_hold_quit = 0;
6967 if (current_finish == X_EVENT_GOTO_OUT)
6968 break;
6970 #endif /* USE_GTK */
6972 /* On some systems, an X bug causes Emacs to get no more events
6973 when the window is destroyed. Detect that. (1994.) */
6974 if (! event_found)
6976 /* Emacs and the X Server eats up CPU time if XNoOp is done every time.
6977 One XNOOP in 100 loops will make Emacs terminate.
6978 B. Bretthauer, 1994 */
6979 x_noop_count++;
6980 if (x_noop_count >= 100)
6982 x_noop_count=0;
6984 if (next_noop_dpyinfo == 0)
6985 next_noop_dpyinfo = x_display_list;
6987 XNoOp (next_noop_dpyinfo->display);
6989 /* Each time we get here, cycle through the displays now open. */
6990 next_noop_dpyinfo = next_noop_dpyinfo->next;
6994 /* If the focus was just given to an auto-raising frame,
6995 raise it now. FIXME: handle more than one such frame. */
6996 if (dpyinfo->x_pending_autoraise_frame)
6998 x_raise_frame (dpyinfo->x_pending_autoraise_frame);
6999 dpyinfo->x_pending_autoraise_frame = NULL;
7002 unblock_input ();
7004 return count;
7010 /***********************************************************************
7011 Text Cursor
7012 ***********************************************************************/
7014 /* Set clipping for output in glyph row ROW. W is the window in which
7015 we operate. GC is the graphics context to set clipping in.
7017 ROW may be a text row or, e.g., a mode line. Text rows must be
7018 clipped to the interior of the window dedicated to text display,
7019 mode lines must be clipped to the whole window. */
7021 static void
7022 x_clip_to_row (struct window *w, struct glyph_row *row,
7023 enum glyph_row_area area, GC gc)
7025 struct frame *f = XFRAME (WINDOW_FRAME (w));
7026 XRectangle clip_rect;
7027 int window_x, window_y, window_width;
7029 window_box (w, area, &window_x, &window_y, &window_width, 0);
7031 clip_rect.x = window_x;
7032 clip_rect.y = WINDOW_TO_FRAME_PIXEL_Y (w, max (0, row->y));
7033 clip_rect.y = max (clip_rect.y, window_y);
7034 clip_rect.width = window_width;
7035 clip_rect.height = row->visible_height;
7037 XSetClipRectangles (FRAME_X_DISPLAY (f), gc, 0, 0, &clip_rect, 1, Unsorted);
7041 /* Draw a hollow box cursor on window W in glyph row ROW. */
7043 static void
7044 x_draw_hollow_cursor (struct window *w, struct glyph_row *row)
7046 struct frame *f = XFRAME (WINDOW_FRAME (w));
7047 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
7048 Display *dpy = FRAME_X_DISPLAY (f);
7049 int x, y, wd, h;
7050 XGCValues xgcv;
7051 struct glyph *cursor_glyph;
7052 GC gc;
7054 /* Get the glyph the cursor is on. If we can't tell because
7055 the current matrix is invalid or such, give up. */
7056 cursor_glyph = get_phys_cursor_glyph (w);
7057 if (cursor_glyph == NULL)
7058 return;
7060 /* Compute frame-relative coordinates for phys cursor. */
7061 get_phys_cursor_geometry (w, row, cursor_glyph, &x, &y, &h);
7062 wd = w->phys_cursor_width;
7064 /* The foreground of cursor_gc is typically the same as the normal
7065 background color, which can cause the cursor box to be invisible. */
7066 xgcv.foreground = f->output_data.x->cursor_pixel;
7067 if (dpyinfo->scratch_cursor_gc)
7068 XChangeGC (dpy, dpyinfo->scratch_cursor_gc, GCForeground, &xgcv);
7069 else
7070 dpyinfo->scratch_cursor_gc = XCreateGC (dpy, FRAME_X_WINDOW (f),
7071 GCForeground, &xgcv);
7072 gc = dpyinfo->scratch_cursor_gc;
7074 /* Set clipping, draw the rectangle, and reset clipping again. */
7075 x_clip_to_row (w, row, TEXT_AREA, gc);
7076 XDrawRectangle (dpy, FRAME_X_WINDOW (f), gc, x, y, wd, h - 1);
7077 XSetClipMask (dpy, gc, None);
7081 /* Draw a bar cursor on window W in glyph row ROW.
7083 Implementation note: One would like to draw a bar cursor with an
7084 angle equal to the one given by the font property XA_ITALIC_ANGLE.
7085 Unfortunately, I didn't find a font yet that has this property set.
7086 --gerd. */
7088 static void
7089 x_draw_bar_cursor (struct window *w, struct glyph_row *row, int width, enum text_cursor_kinds kind)
7091 struct frame *f = XFRAME (w->frame);
7092 struct glyph *cursor_glyph;
7094 /* If cursor is out of bounds, don't draw garbage. This can happen
7095 in mini-buffer windows when switching between echo area glyphs
7096 and mini-buffer. */
7097 cursor_glyph = get_phys_cursor_glyph (w);
7098 if (cursor_glyph == NULL)
7099 return;
7101 /* If on an image, draw like a normal cursor. That's usually better
7102 visible than drawing a bar, esp. if the image is large so that
7103 the bar might not be in the window. */
7104 if (cursor_glyph->type == IMAGE_GLYPH)
7106 struct glyph_row *r;
7107 r = MATRIX_ROW (w->current_matrix, w->phys_cursor.vpos);
7108 draw_phys_cursor_glyph (w, r, DRAW_CURSOR);
7110 else
7112 Display *dpy = FRAME_X_DISPLAY (f);
7113 Window window = FRAME_X_WINDOW (f);
7114 GC gc = FRAME_DISPLAY_INFO (f)->scratch_cursor_gc;
7115 unsigned long mask = GCForeground | GCBackground | GCGraphicsExposures;
7116 struct face *face = FACE_FROM_ID (f, cursor_glyph->face_id);
7117 XGCValues xgcv;
7119 /* If the glyph's background equals the color we normally draw
7120 the bars cursor in, the bar cursor in its normal color is
7121 invisible. Use the glyph's foreground color instead in this
7122 case, on the assumption that the glyph's colors are chosen so
7123 that the glyph is legible. */
7124 if (face->background == f->output_data.x->cursor_pixel)
7125 xgcv.background = xgcv.foreground = face->foreground;
7126 else
7127 xgcv.background = xgcv.foreground = f->output_data.x->cursor_pixel;
7128 xgcv.graphics_exposures = 0;
7130 if (gc)
7131 XChangeGC (dpy, gc, mask, &xgcv);
7132 else
7134 gc = XCreateGC (dpy, window, mask, &xgcv);
7135 FRAME_DISPLAY_INFO (f)->scratch_cursor_gc = gc;
7138 x_clip_to_row (w, row, TEXT_AREA, gc);
7140 if (kind == BAR_CURSOR)
7142 int x = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x);
7144 if (width < 0)
7145 width = FRAME_CURSOR_WIDTH (f);
7146 width = min (cursor_glyph->pixel_width, width);
7148 w->phys_cursor_width = width;
7150 /* If the character under cursor is R2L, draw the bar cursor
7151 on the right of its glyph, rather than on the left. */
7152 if ((cursor_glyph->resolved_level & 1) != 0)
7153 x += cursor_glyph->pixel_width - width;
7155 XFillRectangle (dpy, window, gc, x,
7156 WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y),
7157 width, row->height);
7159 else
7161 int dummy_x, dummy_y, dummy_h;
7163 if (width < 0)
7164 width = row->height;
7166 width = min (row->height, width);
7168 get_phys_cursor_geometry (w, row, cursor_glyph, &dummy_x,
7169 &dummy_y, &dummy_h);
7171 XFillRectangle (dpy, window, gc,
7172 WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x),
7173 WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y +
7174 row->height - width),
7175 w->phys_cursor_width, width);
7178 XSetClipMask (dpy, gc, None);
7183 /* RIF: Define cursor CURSOR on frame F. */
7185 static void
7186 x_define_frame_cursor (struct frame *f, Cursor cursor)
7188 if (!f->pointer_invisible
7189 && f->output_data.x->current_cursor != cursor)
7190 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), cursor);
7191 f->output_data.x->current_cursor = cursor;
7195 /* RIF: Clear area on frame F. */
7197 static void
7198 x_clear_frame_area (struct frame *f, int x, int y, int width, int height)
7200 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), x, y, width, height);
7201 #ifdef USE_GTK
7202 /* Must queue a redraw, because scroll bars might have been cleared. */
7203 if (FRAME_GTK_WIDGET (f))
7204 gtk_widget_queue_draw (FRAME_GTK_WIDGET (f));
7205 #endif
7209 /* RIF: Draw cursor on window W. */
7211 static void
7212 x_draw_window_cursor (struct window *w, struct glyph_row *glyph_row, int x,
7213 int y, enum text_cursor_kinds cursor_type,
7214 int cursor_width, bool on_p, bool active_p)
7216 struct frame *f = XFRAME (WINDOW_FRAME (w));
7218 if (on_p)
7220 w->phys_cursor_type = cursor_type;
7221 w->phys_cursor_on_p = 1;
7223 if (glyph_row->exact_window_width_line_p
7224 && (glyph_row->reversed_p
7225 ? (w->phys_cursor.hpos < 0)
7226 : (w->phys_cursor.hpos >= glyph_row->used[TEXT_AREA])))
7228 glyph_row->cursor_in_fringe_p = 1;
7229 draw_fringe_bitmap (w, glyph_row, glyph_row->reversed_p);
7231 else
7233 switch (cursor_type)
7235 case HOLLOW_BOX_CURSOR:
7236 x_draw_hollow_cursor (w, glyph_row);
7237 break;
7239 case FILLED_BOX_CURSOR:
7240 draw_phys_cursor_glyph (w, glyph_row, DRAW_CURSOR);
7241 break;
7243 case BAR_CURSOR:
7244 x_draw_bar_cursor (w, glyph_row, cursor_width, BAR_CURSOR);
7245 break;
7247 case HBAR_CURSOR:
7248 x_draw_bar_cursor (w, glyph_row, cursor_width, HBAR_CURSOR);
7249 break;
7251 case NO_CURSOR:
7252 w->phys_cursor_width = 0;
7253 break;
7255 default:
7256 emacs_abort ();
7260 #ifdef HAVE_X_I18N
7261 if (w == XWINDOW (f->selected_window))
7262 if (FRAME_XIC (f) && (FRAME_XIC_STYLE (f) & XIMPreeditPosition))
7263 xic_set_preeditarea (w, x, y);
7264 #endif
7267 XFlush (FRAME_X_DISPLAY (f));
7271 /* Icons. */
7273 /* Make the x-window of frame F use the gnu icon bitmap. */
7276 x_bitmap_icon (struct frame *f, Lisp_Object file)
7278 ptrdiff_t bitmap_id;
7280 if (FRAME_X_WINDOW (f) == 0)
7281 return 1;
7283 /* Free up our existing icon bitmap and mask if any. */
7284 if (f->output_data.x->icon_bitmap > 0)
7285 x_destroy_bitmap (f, f->output_data.x->icon_bitmap);
7286 f->output_data.x->icon_bitmap = 0;
7288 if (STRINGP (file))
7290 #ifdef USE_GTK
7291 /* Use gtk_window_set_icon_from_file () if available,
7292 It's not restricted to bitmaps */
7293 if (xg_set_icon (f, file))
7294 return 0;
7295 #endif /* USE_GTK */
7296 bitmap_id = x_create_bitmap_from_file (f, file);
7297 x_create_bitmap_mask (f, bitmap_id);
7299 else
7301 /* Create the GNU bitmap and mask if necessary. */
7302 if (FRAME_DISPLAY_INFO (f)->icon_bitmap_id < 0)
7304 ptrdiff_t rc = -1;
7306 #ifdef USE_GTK
7308 if (xg_set_icon (f, xg_default_icon_file)
7309 || xg_set_icon_from_xpm_data (f, gnu_xpm_bits))
7310 return 0;
7312 #elif defined (HAVE_XPM) && defined (HAVE_X_WINDOWS)
7314 rc = x_create_bitmap_from_xpm_data (f, gnu_xpm_bits);
7315 if (rc != -1)
7316 FRAME_DISPLAY_INFO (f)->icon_bitmap_id = rc;
7318 #endif
7320 /* If all else fails, use the (black and white) xbm image. */
7321 if (rc == -1)
7323 rc = x_create_bitmap_from_data (f, (char *) gnu_xbm_bits,
7324 gnu_xbm_width, gnu_xbm_height);
7325 if (rc == -1)
7326 return 1;
7328 FRAME_DISPLAY_INFO (f)->icon_bitmap_id = rc;
7329 x_create_bitmap_mask (f, FRAME_DISPLAY_INFO (f)->icon_bitmap_id);
7333 /* The first time we create the GNU bitmap and mask,
7334 this increments the ref-count one extra time.
7335 As a result, the GNU bitmap and mask are never freed.
7336 That way, we don't have to worry about allocating it again. */
7337 x_reference_bitmap (f, FRAME_DISPLAY_INFO (f)->icon_bitmap_id);
7339 bitmap_id = FRAME_DISPLAY_INFO (f)->icon_bitmap_id;
7342 x_wm_set_icon_pixmap (f, bitmap_id);
7343 f->output_data.x->icon_bitmap = bitmap_id;
7345 return 0;
7349 /* Make the x-window of frame F use a rectangle with text.
7350 Use ICON_NAME as the text. */
7353 x_text_icon (struct frame *f, const char *icon_name)
7355 if (FRAME_X_WINDOW (f) == 0)
7356 return 1;
7359 XTextProperty text;
7360 text.value = (unsigned char *) icon_name;
7361 text.encoding = XA_STRING;
7362 text.format = 8;
7363 text.nitems = strlen (icon_name);
7364 XSetWMIconName (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f), &text);
7367 if (f->output_data.x->icon_bitmap > 0)
7368 x_destroy_bitmap (f, f->output_data.x->icon_bitmap);
7369 f->output_data.x->icon_bitmap = 0;
7370 x_wm_set_icon_pixmap (f, 0);
7372 return 0;
7375 #define X_ERROR_MESSAGE_SIZE 200
7377 /* If non-nil, this should be a string.
7378 It means catch X errors and store the error message in this string.
7380 The reason we use a stack is that x_catch_error/x_uncatch_error can
7381 be called from a signal handler.
7384 struct x_error_message_stack {
7385 char string[X_ERROR_MESSAGE_SIZE];
7386 Display *dpy;
7387 struct x_error_message_stack *prev;
7389 static struct x_error_message_stack *x_error_message;
7391 /* An X error handler which stores the error message in
7392 *x_error_message. This is called from x_error_handler if
7393 x_catch_errors is in effect. */
7395 static void
7396 x_error_catcher (Display *display, XErrorEvent *event)
7398 XGetErrorText (display, event->error_code,
7399 x_error_message->string,
7400 X_ERROR_MESSAGE_SIZE);
7403 /* Begin trapping X errors for display DPY. Actually we trap X errors
7404 for all displays, but DPY should be the display you are actually
7405 operating on.
7407 After calling this function, X protocol errors no longer cause
7408 Emacs to exit; instead, they are recorded in the string
7409 stored in *x_error_message.
7411 Calling x_check_errors signals an Emacs error if an X error has
7412 occurred since the last call to x_catch_errors or x_check_errors.
7414 Calling x_uncatch_errors resumes the normal error handling. */
7416 void
7417 x_catch_errors (Display *dpy)
7419 struct x_error_message_stack *data = xmalloc (sizeof *data);
7421 /* Make sure any errors from previous requests have been dealt with. */
7422 XSync (dpy, False);
7424 data->dpy = dpy;
7425 data->string[0] = 0;
7426 data->prev = x_error_message;
7427 x_error_message = data;
7430 /* Undo the last x_catch_errors call.
7431 DPY should be the display that was passed to x_catch_errors. */
7433 void
7434 x_uncatch_errors (void)
7436 struct x_error_message_stack *tmp;
7438 block_input ();
7440 /* The display may have been closed before this function is called.
7441 Check if it is still open before calling XSync. */
7442 if (x_display_info_for_display (x_error_message->dpy) != 0)
7443 XSync (x_error_message->dpy, False);
7445 tmp = x_error_message;
7446 x_error_message = x_error_message->prev;
7447 xfree (tmp);
7448 unblock_input ();
7451 /* If any X protocol errors have arrived since the last call to
7452 x_catch_errors or x_check_errors, signal an Emacs error using
7453 sprintf (a buffer, FORMAT, the x error message text) as the text. */
7455 void
7456 x_check_errors (Display *dpy, const char *format)
7458 /* Make sure to catch any errors incurred so far. */
7459 XSync (dpy, False);
7461 if (x_error_message->string[0])
7463 char string[X_ERROR_MESSAGE_SIZE];
7464 memcpy (string, x_error_message->string, X_ERROR_MESSAGE_SIZE);
7465 x_uncatch_errors ();
7466 error (format, string);
7470 /* Nonzero if we had any X protocol errors
7471 since we did x_catch_errors on DPY. */
7473 bool
7474 x_had_errors_p (Display *dpy)
7476 /* Make sure to catch any errors incurred so far. */
7477 XSync (dpy, False);
7479 return x_error_message->string[0] != 0;
7482 /* Forget about any errors we have had, since we did x_catch_errors on DPY. */
7484 void
7485 x_clear_errors (Display *dpy)
7487 x_error_message->string[0] = 0;
7490 #if 0 /* See comment in unwind_to_catch why calling this is a bad
7491 * idea. --lorentey */
7492 /* Close off all unclosed x_catch_errors calls. */
7494 void
7495 x_fully_uncatch_errors (void)
7497 while (x_error_message)
7498 x_uncatch_errors ();
7500 #endif
7502 #if 0
7503 static unsigned int x_wire_count;
7504 x_trace_wire (void)
7506 fprintf (stderr, "Lib call: %d\n", ++x_wire_count);
7508 #endif /* ! 0 */
7511 /************************************************************************
7512 Handling X errors
7513 ************************************************************************/
7515 /* Error message passed to x_connection_closed. */
7517 static char *error_msg;
7519 /* Handle the loss of connection to display DPY. ERROR_MESSAGE is
7520 the text of an error message that lead to the connection loss. */
7522 static void
7523 x_connection_closed (Display *dpy, const char *error_message)
7525 struct x_display_info *dpyinfo = x_display_info_for_display (dpy);
7526 Lisp_Object frame, tail;
7527 ptrdiff_t idx = SPECPDL_INDEX ();
7529 error_msg = alloca (strlen (error_message) + 1);
7530 strcpy (error_msg, error_message);
7532 /* Inhibit redisplay while frames are being deleted. */
7533 specbind (Qinhibit_redisplay, Qt);
7535 if (dpyinfo)
7537 /* Protect display from being closed when we delete the last
7538 frame on it. */
7539 dpyinfo->reference_count++;
7540 dpyinfo->terminal->reference_count++;
7543 /* First delete frames whose mini-buffers are on frames
7544 that are on the dead display. */
7545 FOR_EACH_FRAME (tail, frame)
7547 Lisp_Object minibuf_frame;
7548 minibuf_frame
7549 = WINDOW_FRAME (XWINDOW (FRAME_MINIBUF_WINDOW (XFRAME (frame))));
7550 if (FRAME_X_P (XFRAME (frame))
7551 && FRAME_X_P (XFRAME (minibuf_frame))
7552 && ! EQ (frame, minibuf_frame)
7553 && FRAME_DISPLAY_INFO (XFRAME (minibuf_frame)) == dpyinfo)
7554 delete_frame (frame, Qnoelisp);
7557 /* Now delete all remaining frames on the dead display.
7558 We are now sure none of these is used as the mini-buffer
7559 for another frame that we need to delete. */
7560 FOR_EACH_FRAME (tail, frame)
7561 if (FRAME_X_P (XFRAME (frame))
7562 && FRAME_DISPLAY_INFO (XFRAME (frame)) == dpyinfo)
7564 /* Set this to t so that delete_frame won't get confused
7565 trying to find a replacement. */
7566 kset_default_minibuffer_frame (FRAME_KBOARD (XFRAME (frame)), Qt);
7567 delete_frame (frame, Qnoelisp);
7570 /* If DPYINFO is null, this means we didn't open the display in the
7571 first place, so don't try to close it. */
7572 if (dpyinfo)
7574 /* We can not call XtCloseDisplay here because it calls XSync.
7575 XSync inside the error handler apparently hangs Emacs. On
7576 current Xt versions, this isn't needed either. */
7577 #ifdef USE_GTK
7578 /* A long-standing GTK bug prevents proper disconnect handling
7579 (https://bugzilla.gnome.org/show_bug.cgi?id=85715). Once,
7580 the resulting Glib error message loop filled a user's disk.
7581 To avoid this, kill Emacs unconditionally on disconnect. */
7582 shut_down_emacs (0, Qnil);
7583 fprintf (stderr, "%s\n\
7584 When compiled with GTK, Emacs cannot recover from X disconnects.\n\
7585 This is a GTK bug: https://bugzilla.gnome.org/show_bug.cgi?id=85715\n\
7586 For details, see etc/PROBLEMS.\n",
7587 error_msg);
7588 emacs_abort ();
7589 #endif /* USE_GTK */
7591 /* Indicate that this display is dead. */
7592 dpyinfo->display = 0;
7594 dpyinfo->reference_count--;
7595 dpyinfo->terminal->reference_count--;
7596 if (dpyinfo->reference_count != 0)
7597 /* We have just closed all frames on this display. */
7598 emacs_abort ();
7601 Lisp_Object tmp;
7602 XSETTERMINAL (tmp, dpyinfo->terminal);
7603 Fdelete_terminal (tmp, Qnoelisp);
7607 if (terminal_list == 0)
7609 fprintf (stderr, "%s\n", error_msg);
7610 Fkill_emacs (make_number (70));
7611 /* NOTREACHED */
7614 totally_unblock_input ();
7616 unbind_to (idx, Qnil);
7617 clear_waiting_for_input ();
7619 /* Tell GCC not to suggest attribute 'noreturn' for this function. */
7620 IF_LINT (if (! terminal_list) return; )
7622 /* Here, we absolutely have to use a non-local exit (e.g. signal, throw,
7623 longjmp), because returning from this function would get us back into
7624 Xlib's code which will directly call `exit'. */
7625 error ("%s", error_msg);
7628 /* We specifically use it before defining it, so that gcc doesn't inline it,
7629 otherwise gdb doesn't know how to properly put a breakpoint on it. */
7630 static void x_error_quitter (Display *, XErrorEvent *);
7632 /* This is the first-level handler for X protocol errors.
7633 It calls x_error_quitter or x_error_catcher. */
7635 static int
7636 x_error_handler (Display *display, XErrorEvent *event)
7638 #if defined USE_GTK && defined HAVE_GTK3
7639 if ((event->error_code == BadMatch || event->error_code == BadWindow)
7640 && event->request_code == X_SetInputFocus)
7642 return 0;
7644 #endif
7646 if (x_error_message)
7647 x_error_catcher (display, event);
7648 else
7649 x_error_quitter (display, event);
7650 return 0;
7653 /* This is the usual handler for X protocol errors.
7654 It kills all frames on the display that we got the error for.
7655 If that was the only one, it prints an error message and kills Emacs. */
7657 /* .gdbinit puts a breakpoint here, so make sure it is not inlined. */
7659 /* On older GCC versions, just putting x_error_quitter
7660 after x_error_handler prevents inlining into the former. */
7662 static void NO_INLINE
7663 x_error_quitter (Display *display, XErrorEvent *event)
7665 char buf[256], buf1[356];
7667 /* Ignore BadName errors. They can happen because of fonts
7668 or colors that are not defined. */
7670 if (event->error_code == BadName)
7671 return;
7673 /* Note that there is no real way portable across R3/R4 to get the
7674 original error handler. */
7676 XGetErrorText (display, event->error_code, buf, sizeof (buf));
7677 sprintf (buf1, "X protocol error: %s on protocol request %d",
7678 buf, event->request_code);
7679 x_connection_closed (display, buf1);
7683 /* This is the handler for X IO errors, always.
7684 It kills all frames on the display that we lost touch with.
7685 If that was the only one, it prints an error message and kills Emacs. */
7687 static int
7688 x_io_error_quitter (Display *display)
7690 char buf[256];
7692 snprintf (buf, sizeof buf, "Connection lost to X server `%s'",
7693 DisplayString (display));
7694 x_connection_closed (display, buf);
7695 return 0;
7698 /* Changing the font of the frame. */
7700 /* Give frame F the font FONT-OBJECT as its default font. The return
7701 value is FONT-OBJECT. FONTSET is an ID of the fontset for the
7702 frame. If it is negative, generate a new fontset from
7703 FONT-OBJECT. */
7705 Lisp_Object
7706 x_new_font (struct frame *f, Lisp_Object font_object, int fontset)
7708 struct font *font = XFONT_OBJECT (font_object);
7709 int unit;
7711 if (fontset < 0)
7712 fontset = fontset_from_font (font_object);
7713 FRAME_FONTSET (f) = fontset;
7714 if (FRAME_FONT (f) == font)
7715 /* This font is already set in frame F. There's nothing more to
7716 do. */
7717 return font_object;
7719 FRAME_FONT (f) = font;
7720 FRAME_BASELINE_OFFSET (f) = font->baseline_offset;
7721 FRAME_COLUMN_WIDTH (f) = font->average_width;
7722 FRAME_LINE_HEIGHT (f) = FONT_HEIGHT (font);
7724 FRAME_TOOL_BAR_HEIGHT (f) = FRAME_TOOL_BAR_LINES (f) * FRAME_LINE_HEIGHT (f);
7725 FRAME_MENU_BAR_HEIGHT (f) = FRAME_MENU_BAR_LINES (f) * FRAME_LINE_HEIGHT (f);
7727 compute_fringe_widths (f, 1);
7729 unit = FRAME_COLUMN_WIDTH (f);
7730 #ifdef USE_TOOLKIT_SCROLL_BARS
7731 /* The width of a toolkit scrollbar does not change with the new
7732 font but we have to calculate the number of columns it occupies
7733 anew. */
7734 FRAME_CONFIG_SCROLL_BAR_COLS (f)
7735 = (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) + unit - 1) / unit;
7736 #else
7737 /* The width of a non-toolkit scrollbar is at least 14 pixels and a
7738 multiple of the frame's character width. */
7739 FRAME_CONFIG_SCROLL_BAR_COLS (f) = (14 + unit - 1) / unit;
7740 FRAME_CONFIG_SCROLL_BAR_WIDTH (f)
7741 = FRAME_CONFIG_SCROLL_BAR_COLS (f) * unit;
7742 #endif
7744 if (FRAME_X_WINDOW (f) != 0)
7746 /* Don't change the size of a tip frame; there's no point in
7747 doing it because it's done in Fx_show_tip, and it leads to
7748 problems because the tip frame has no widget. */
7749 if (NILP (tip_frame) || XFRAME (tip_frame) != f)
7750 x_set_window_size (f, 0, FRAME_COLS (f) * FRAME_COLUMN_WIDTH (f),
7751 FRAME_LINES (f) * FRAME_LINE_HEIGHT (f), 1);
7754 #ifdef HAVE_X_I18N
7755 if (FRAME_XIC (f)
7756 && (FRAME_XIC_STYLE (f) & (XIMPreeditPosition | XIMStatusArea)))
7758 block_input ();
7759 xic_set_xfontset (f, SSDATA (fontset_ascii (fontset)));
7760 unblock_input ();
7762 #endif
7764 return font_object;
7768 /***********************************************************************
7769 X Input Methods
7770 ***********************************************************************/
7772 #ifdef HAVE_X_I18N
7774 #ifdef HAVE_X11R6
7776 /* XIM destroy callback function, which is called whenever the
7777 connection to input method XIM dies. CLIENT_DATA contains a
7778 pointer to the x_display_info structure corresponding to XIM. */
7780 static void
7781 xim_destroy_callback (XIM xim, XPointer client_data, XPointer call_data)
7783 struct x_display_info *dpyinfo = (struct x_display_info *) client_data;
7784 Lisp_Object frame, tail;
7786 block_input ();
7788 /* No need to call XDestroyIC.. */
7789 FOR_EACH_FRAME (tail, frame)
7791 struct frame *f = XFRAME (frame);
7792 if (FRAME_X_P (f) && FRAME_DISPLAY_INFO (f) == dpyinfo)
7794 FRAME_XIC (f) = NULL;
7795 xic_free_xfontset (f);
7799 /* No need to call XCloseIM. */
7800 dpyinfo->xim = NULL;
7801 XFree (dpyinfo->xim_styles);
7802 unblock_input ();
7805 #endif /* HAVE_X11R6 */
7807 #ifdef HAVE_X11R6
7808 /* This isn't prototyped in OSF 5.0 or 5.1a. */
7809 extern char *XSetIMValues (XIM, ...);
7810 #endif
7812 /* Open the connection to the XIM server on display DPYINFO.
7813 RESOURCE_NAME is the resource name Emacs uses. */
7815 static void
7816 xim_open_dpy (struct x_display_info *dpyinfo, char *resource_name)
7818 XIM xim;
7820 #ifdef HAVE_XIM
7821 if (use_xim)
7823 if (dpyinfo->xim)
7824 XCloseIM (dpyinfo->xim);
7825 xim = XOpenIM (dpyinfo->display, dpyinfo->xrdb, resource_name,
7826 emacs_class);
7827 dpyinfo->xim = xim;
7829 if (xim)
7831 #ifdef HAVE_X11R6
7832 XIMCallback destroy;
7833 #endif
7835 /* Get supported styles and XIM values. */
7836 XGetIMValues (xim, XNQueryInputStyle, &dpyinfo->xim_styles, NULL);
7838 #ifdef HAVE_X11R6
7839 destroy.callback = xim_destroy_callback;
7840 destroy.client_data = (XPointer)dpyinfo;
7841 XSetIMValues (xim, XNDestroyCallback, &destroy, NULL);
7842 #endif
7846 else
7847 #endif /* HAVE_XIM */
7848 dpyinfo->xim = NULL;
7852 #ifdef HAVE_X11R6_XIM
7854 /* XIM instantiate callback function, which is called whenever an XIM
7855 server is available. DISPLAY is the display of the XIM.
7856 CLIENT_DATA contains a pointer to an xim_inst_t structure created
7857 when the callback was registered. */
7859 static void
7860 xim_instantiate_callback (Display *display, XPointer client_data, XPointer call_data)
7862 struct xim_inst_t *xim_inst = (struct xim_inst_t *) client_data;
7863 struct x_display_info *dpyinfo = xim_inst->dpyinfo;
7865 /* We don't support multiple XIM connections. */
7866 if (dpyinfo->xim)
7867 return;
7869 xim_open_dpy (dpyinfo, xim_inst->resource_name);
7871 /* Create XIC for the existing frames on the same display, as long
7872 as they have no XIC. */
7873 if (dpyinfo->xim && dpyinfo->reference_count > 0)
7875 Lisp_Object tail, frame;
7877 block_input ();
7878 FOR_EACH_FRAME (tail, frame)
7880 struct frame *f = XFRAME (frame);
7882 if (FRAME_X_P (f)
7883 && FRAME_DISPLAY_INFO (f) == xim_inst->dpyinfo)
7884 if (FRAME_XIC (f) == NULL)
7886 create_frame_xic (f);
7887 if (FRAME_XIC_STYLE (f) & XIMStatusArea)
7888 xic_set_statusarea (f);
7889 if (FRAME_XIC_STYLE (f) & XIMPreeditPosition)
7891 struct window *w = XWINDOW (f->selected_window);
7892 xic_set_preeditarea (w, w->cursor.x, w->cursor.y);
7897 unblock_input ();
7901 #endif /* HAVE_X11R6_XIM */
7904 /* Open a connection to the XIM server on display DPYINFO.
7905 RESOURCE_NAME is the resource name for Emacs. On X11R5, open the
7906 connection only at the first time. On X11R6, open the connection
7907 in the XIM instantiate callback function. */
7909 static void
7910 xim_initialize (struct x_display_info *dpyinfo, char *resource_name)
7912 dpyinfo->xim = NULL;
7913 #ifdef HAVE_XIM
7914 if (use_xim)
7916 #ifdef HAVE_X11R6_XIM
7917 struct xim_inst_t *xim_inst = xmalloc (sizeof *xim_inst);
7919 dpyinfo->xim_callback_data = xim_inst;
7920 xim_inst->dpyinfo = dpyinfo;
7921 xim_inst->resource_name = xstrdup (resource_name);
7922 XRegisterIMInstantiateCallback (dpyinfo->display, dpyinfo->xrdb,
7923 resource_name, emacs_class,
7924 xim_instantiate_callback,
7925 /* This is XPointer in XFree86
7926 but (XPointer *) on Tru64, at
7927 least, hence the configure test. */
7928 (XRegisterIMInstantiateCallback_arg6) xim_inst);
7929 #else /* not HAVE_X11R6_XIM */
7930 xim_open_dpy (dpyinfo, resource_name);
7931 #endif /* not HAVE_X11R6_XIM */
7933 #endif /* HAVE_XIM */
7937 /* Close the connection to the XIM server on display DPYINFO. */
7939 static void
7940 xim_close_dpy (struct x_display_info *dpyinfo)
7942 #ifdef HAVE_XIM
7943 if (use_xim)
7945 #ifdef HAVE_X11R6_XIM
7946 if (dpyinfo->display)
7947 XUnregisterIMInstantiateCallback (dpyinfo->display, dpyinfo->xrdb,
7948 NULL, emacs_class,
7949 xim_instantiate_callback, NULL);
7950 xfree (dpyinfo->xim_callback_data->resource_name);
7951 xfree (dpyinfo->xim_callback_data);
7952 #endif /* HAVE_X11R6_XIM */
7953 if (dpyinfo->display)
7954 XCloseIM (dpyinfo->xim);
7955 dpyinfo->xim = NULL;
7956 XFree (dpyinfo->xim_styles);
7958 #endif /* HAVE_XIM */
7961 #endif /* not HAVE_X11R6_XIM */
7965 /* Calculate the absolute position in frame F
7966 from its current recorded position values and gravity. */
7968 static void
7969 x_calc_absolute_position (struct frame *f)
7971 int flags = f->size_hint_flags;
7973 /* We have nothing to do if the current position
7974 is already for the top-left corner. */
7975 if (! ((flags & XNegative) || (flags & YNegative)))
7976 return;
7978 /* Treat negative positions as relative to the leftmost bottommost
7979 position that fits on the screen. */
7980 if (flags & XNegative)
7981 f->left_pos = x_display_pixel_width (FRAME_DISPLAY_INFO (f))
7982 - FRAME_PIXEL_WIDTH (f) + f->left_pos;
7985 int height = FRAME_PIXEL_HEIGHT (f);
7987 #if defined USE_X_TOOLKIT && defined USE_MOTIF
7988 /* Something is fishy here. When using Motif, starting Emacs with
7989 `-g -0-0', the frame appears too low by a few pixels.
7991 This seems to be so because initially, while Emacs is starting,
7992 the column widget's height and the frame's pixel height are
7993 different. The column widget's height is the right one. In
7994 later invocations, when Emacs is up, the frame's pixel height
7995 is right, though.
7997 It's not obvious where the initial small difference comes from.
7998 2000-12-01, gerd. */
8000 XtVaGetValues (f->output_data.x->column_widget, XtNheight, &height, NULL);
8001 #endif
8003 if (flags & YNegative)
8004 f->top_pos = x_display_pixel_height (FRAME_DISPLAY_INFO (f))
8005 - height + f->top_pos;
8008 /* The left_pos and top_pos
8009 are now relative to the top and left screen edges,
8010 so the flags should correspond. */
8011 f->size_hint_flags &= ~ (XNegative | YNegative);
8014 /* CHANGE_GRAVITY is 1 when calling from Fset_frame_position,
8015 to really change the position, and 0 when calling from
8016 x_make_frame_visible (in that case, XOFF and YOFF are the current
8017 position values). It is -1 when calling from x_set_frame_parameters,
8018 which means, do adjust for borders but don't change the gravity. */
8020 void
8021 x_set_offset (struct frame *f, register int xoff, register int yoff, int change_gravity)
8023 int modified_top, modified_left;
8025 if (change_gravity > 0)
8027 f->top_pos = yoff;
8028 f->left_pos = xoff;
8029 f->size_hint_flags &= ~ (XNegative | YNegative);
8030 if (xoff < 0)
8031 f->size_hint_flags |= XNegative;
8032 if (yoff < 0)
8033 f->size_hint_flags |= YNegative;
8034 f->win_gravity = NorthWestGravity;
8036 x_calc_absolute_position (f);
8038 block_input ();
8039 x_wm_set_size_hint (f, (long) 0, 0);
8041 modified_left = f->left_pos;
8042 modified_top = f->top_pos;
8044 if (change_gravity != 0 && FRAME_DISPLAY_INFO (f)->wm_type == X_WMTYPE_A)
8046 /* Some WMs (twm, wmaker at least) has an offset that is smaller
8047 than the WM decorations. So we use the calculated offset instead
8048 of the WM decoration sizes here (x/y_pixels_outer_diff). */
8049 modified_left += FRAME_X_OUTPUT (f)->move_offset_left;
8050 modified_top += FRAME_X_OUTPUT (f)->move_offset_top;
8053 XMoveWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
8054 modified_left, modified_top);
8056 x_sync_with_move (f, f->left_pos, f->top_pos,
8057 FRAME_DISPLAY_INFO (f)->wm_type == X_WMTYPE_UNKNOWN
8058 ? 1 : 0);
8060 /* change_gravity is non-zero when this function is called from Lisp to
8061 programmatically move a frame. In that case, we call
8062 x_check_expected_move to discover if we have a "Type A" or "Type B"
8063 window manager, and, for a "Type A" window manager, adjust the position
8064 of the frame.
8066 We call x_check_expected_move if a programmatic move occurred, and
8067 either the window manager type (A/B) is unknown or it is Type A but we
8068 need to compute the top/left offset adjustment for this frame. */
8070 if (change_gravity != 0 &&
8071 (FRAME_DISPLAY_INFO (f)->wm_type == X_WMTYPE_UNKNOWN
8072 || (FRAME_DISPLAY_INFO (f)->wm_type == X_WMTYPE_A
8073 && (FRAME_X_OUTPUT (f)->move_offset_left == 0
8074 && FRAME_X_OUTPUT (f)->move_offset_top == 0))))
8075 x_check_expected_move (f, modified_left, modified_top);
8077 unblock_input ();
8080 /* Return non-zero if _NET_SUPPORTING_WM_CHECK window exists and _NET_SUPPORTED
8081 on the root window for frame F contains ATOMNAME.
8082 This is how a WM check shall be done according to the Window Manager
8083 Specification/Extended Window Manager Hints at
8084 http://freedesktop.org/wiki/Specifications/wm-spec. */
8086 static int
8087 wm_supports (struct frame *f, Atom want_atom)
8089 Atom actual_type;
8090 unsigned long actual_size, bytes_remaining;
8091 int i, rc, actual_format;
8092 Window wmcheck_window;
8093 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
8094 Window target_window = dpyinfo->root_window;
8095 long max_len = 65536;
8096 Display *dpy = FRAME_X_DISPLAY (f);
8097 unsigned char *tmp_data = NULL;
8098 Atom target_type = XA_WINDOW;
8100 block_input ();
8102 x_catch_errors (dpy);
8103 rc = XGetWindowProperty (dpy, target_window,
8104 dpyinfo->Xatom_net_supporting_wm_check,
8105 0, max_len, False, target_type,
8106 &actual_type, &actual_format, &actual_size,
8107 &bytes_remaining, &tmp_data);
8109 if (rc != Success || actual_type != XA_WINDOW || x_had_errors_p (dpy))
8111 if (tmp_data) XFree (tmp_data);
8112 x_uncatch_errors ();
8113 unblock_input ();
8114 return 0;
8117 wmcheck_window = *(Window *) tmp_data;
8118 XFree (tmp_data);
8120 /* Check if window exists. */
8121 XSelectInput (dpy, wmcheck_window, StructureNotifyMask);
8122 x_sync (f);
8123 if (x_had_errors_p (dpy))
8125 x_uncatch_errors ();
8126 unblock_input ();
8127 return 0;
8130 if (dpyinfo->net_supported_window != wmcheck_window)
8132 /* Window changed, reload atoms */
8133 if (dpyinfo->net_supported_atoms != NULL)
8134 XFree (dpyinfo->net_supported_atoms);
8135 dpyinfo->net_supported_atoms = NULL;
8136 dpyinfo->nr_net_supported_atoms = 0;
8137 dpyinfo->net_supported_window = 0;
8139 target_type = XA_ATOM;
8140 tmp_data = NULL;
8141 rc = XGetWindowProperty (dpy, target_window,
8142 dpyinfo->Xatom_net_supported,
8143 0, max_len, False, target_type,
8144 &actual_type, &actual_format, &actual_size,
8145 &bytes_remaining, &tmp_data);
8147 if (rc != Success || actual_type != XA_ATOM || x_had_errors_p (dpy))
8149 if (tmp_data) XFree (tmp_data);
8150 x_uncatch_errors ();
8151 unblock_input ();
8152 return 0;
8155 dpyinfo->net_supported_atoms = (Atom *)tmp_data;
8156 dpyinfo->nr_net_supported_atoms = actual_size;
8157 dpyinfo->net_supported_window = wmcheck_window;
8160 rc = 0;
8162 for (i = 0; rc == 0 && i < dpyinfo->nr_net_supported_atoms; ++i)
8163 rc = dpyinfo->net_supported_atoms[i] == want_atom;
8165 x_uncatch_errors ();
8166 unblock_input ();
8168 return rc;
8171 static void
8172 set_wm_state (Lisp_Object frame, int add, Atom atom, Atom value)
8174 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (XFRAME (frame));
8176 x_send_client_event (frame, make_number (0), frame,
8177 dpyinfo->Xatom_net_wm_state,
8178 make_number (32),
8179 /* 1 = add, 0 = remove */
8180 Fcons
8181 (make_number (add ? 1 : 0),
8182 Fcons
8183 (make_fixnum_or_float (atom),
8184 (value != 0
8185 ? list1 (make_fixnum_or_float (value))
8186 : Qnil))));
8189 void
8190 x_set_sticky (struct frame *f, Lisp_Object new_value, Lisp_Object old_value)
8192 Lisp_Object frame;
8193 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
8195 XSETFRAME (frame, f);
8197 set_wm_state (frame, NILP (new_value) ? 0 : 1,
8198 dpyinfo->Xatom_net_wm_state_sticky, None);
8201 /* Return the current _NET_WM_STATE.
8202 SIZE_STATE is set to one of the FULLSCREEN_* values.
8203 STICKY is set to 1 if the sticky state is set, 0 if not.
8205 Return non-zero if we are not hidden, zero if we are. */
8207 static int
8208 get_current_wm_state (struct frame *f,
8209 Window window,
8210 int *size_state,
8211 int *sticky)
8213 Atom actual_type;
8214 unsigned long actual_size, bytes_remaining;
8215 int i, rc, actual_format, is_hidden = 0;
8216 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
8217 long max_len = 65536;
8218 Display *dpy = FRAME_X_DISPLAY (f);
8219 unsigned char *tmp_data = NULL;
8220 Atom target_type = XA_ATOM;
8222 *sticky = 0;
8223 *size_state = FULLSCREEN_NONE;
8225 block_input ();
8226 x_catch_errors (dpy);
8227 rc = XGetWindowProperty (dpy, window, dpyinfo->Xatom_net_wm_state,
8228 0, max_len, False, target_type,
8229 &actual_type, &actual_format, &actual_size,
8230 &bytes_remaining, &tmp_data);
8232 if (rc != Success || actual_type != target_type || x_had_errors_p (dpy))
8234 if (tmp_data) XFree (tmp_data);
8235 x_uncatch_errors ();
8236 unblock_input ();
8237 return !FRAME_ICONIFIED_P (f);
8240 x_uncatch_errors ();
8242 for (i = 0; i < actual_size; ++i)
8244 Atom a = ((Atom*)tmp_data)[i];
8245 if (a == dpyinfo->Xatom_net_wm_state_hidden)
8247 is_hidden = 1;
8248 f->output_data.x->net_wm_state_hidden_seen = 1;
8250 else if (a == dpyinfo->Xatom_net_wm_state_maximized_horz)
8252 if (*size_state == FULLSCREEN_HEIGHT)
8253 *size_state = FULLSCREEN_MAXIMIZED;
8254 else
8255 *size_state = FULLSCREEN_WIDTH;
8257 else if (a == dpyinfo->Xatom_net_wm_state_maximized_vert)
8259 if (*size_state == FULLSCREEN_WIDTH)
8260 *size_state = FULLSCREEN_MAXIMIZED;
8261 else
8262 *size_state = FULLSCREEN_HEIGHT;
8264 else if (a == dpyinfo->Xatom_net_wm_state_fullscreen)
8265 *size_state = FULLSCREEN_BOTH;
8266 else if (a == dpyinfo->Xatom_net_wm_state_sticky)
8267 *sticky = 1;
8270 if (tmp_data) XFree (tmp_data);
8271 unblock_input ();
8272 return ! is_hidden;
8275 /* Do fullscreen as specified in extended window manager hints */
8277 static int
8278 do_ewmh_fullscreen (struct frame *f)
8280 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
8281 int have_net_atom = wm_supports (f, dpyinfo->Xatom_net_wm_state);
8282 int cur, dummy;
8284 (void)get_current_wm_state (f, FRAME_OUTER_WINDOW (f), &cur, &dummy);
8286 /* Some window managers don't say they support _NET_WM_STATE, but they do say
8287 they support _NET_WM_STATE_FULLSCREEN. Try that also. */
8288 if (!have_net_atom)
8289 have_net_atom = wm_supports (f, dpyinfo->Xatom_net_wm_state_fullscreen);
8291 if (have_net_atom && cur != f->want_fullscreen)
8293 Lisp_Object frame;
8295 XSETFRAME (frame, f);
8297 /* Keep number of calls to set_wm_state as low as possible.
8298 Some window managers, or possible Gtk+, hangs when too many
8299 are sent at once. */
8300 switch (f->want_fullscreen)
8302 case FULLSCREEN_BOTH:
8303 if (cur == FULLSCREEN_WIDTH || cur == FULLSCREEN_MAXIMIZED
8304 || cur == FULLSCREEN_HEIGHT)
8305 set_wm_state (frame, 0, dpyinfo->Xatom_net_wm_state_maximized_horz,
8306 dpyinfo->Xatom_net_wm_state_maximized_vert);
8307 set_wm_state (frame, 1, dpyinfo->Xatom_net_wm_state_fullscreen, None);
8308 break;
8309 case FULLSCREEN_WIDTH:
8310 if (cur == FULLSCREEN_BOTH || cur == FULLSCREEN_HEIGHT
8311 || cur == FULLSCREEN_MAXIMIZED)
8312 set_wm_state (frame, 0, dpyinfo->Xatom_net_wm_state_fullscreen,
8313 dpyinfo->Xatom_net_wm_state_maximized_vert);
8314 if (cur != FULLSCREEN_MAXIMIZED)
8315 set_wm_state (frame, 1, dpyinfo->Xatom_net_wm_state_maximized_horz, None);
8316 break;
8317 case FULLSCREEN_HEIGHT:
8318 if (cur == FULLSCREEN_BOTH || cur == FULLSCREEN_WIDTH
8319 || cur == FULLSCREEN_MAXIMIZED)
8320 set_wm_state (frame, 0, dpyinfo->Xatom_net_wm_state_fullscreen,
8321 dpyinfo->Xatom_net_wm_state_maximized_horz);
8322 if (cur != FULLSCREEN_MAXIMIZED)
8323 set_wm_state (frame, 1, dpyinfo->Xatom_net_wm_state_maximized_vert, None);
8324 break;
8325 case FULLSCREEN_MAXIMIZED:
8326 if (cur == FULLSCREEN_BOTH)
8327 set_wm_state (frame, 0, dpyinfo->Xatom_net_wm_state_fullscreen, None);
8328 set_wm_state (frame, 1, dpyinfo->Xatom_net_wm_state_maximized_horz,
8329 dpyinfo->Xatom_net_wm_state_maximized_vert);
8330 break;
8331 case FULLSCREEN_NONE:
8332 if (cur == FULLSCREEN_BOTH)
8333 set_wm_state (frame, 0, dpyinfo->Xatom_net_wm_state_fullscreen, None);
8334 else
8335 set_wm_state (frame, 0, dpyinfo->Xatom_net_wm_state_maximized_horz,
8336 dpyinfo->Xatom_net_wm_state_maximized_vert);
8339 f->want_fullscreen = FULLSCREEN_NONE;
8343 return have_net_atom;
8346 static void
8347 XTfullscreen_hook (struct frame *f)
8349 if (FRAME_VISIBLE_P (f))
8351 block_input ();
8352 x_check_fullscreen (f);
8353 x_sync (f);
8354 unblock_input ();
8359 static int
8360 x_handle_net_wm_state (struct frame *f, const XPropertyEvent *event)
8362 int value = FULLSCREEN_NONE;
8363 Lisp_Object lval;
8364 int sticky = 0;
8365 int not_hidden = get_current_wm_state (f, event->window, &value, &sticky);
8367 lval = Qnil;
8368 switch (value)
8370 case FULLSCREEN_WIDTH:
8371 lval = Qfullwidth;
8372 break;
8373 case FULLSCREEN_HEIGHT:
8374 lval = Qfullheight;
8375 break;
8376 case FULLSCREEN_BOTH:
8377 lval = Qfullboth;
8378 break;
8379 case FULLSCREEN_MAXIMIZED:
8380 lval = Qmaximized;
8381 break;
8384 store_frame_param (f, Qfullscreen, lval);
8385 store_frame_param (f, Qsticky, sticky ? Qt : Qnil);
8387 return not_hidden;
8390 /* Check if we need to resize the frame due to a fullscreen request.
8391 If so needed, resize the frame. */
8392 static void
8393 x_check_fullscreen (struct frame *f)
8395 if (do_ewmh_fullscreen (f))
8396 return;
8398 if (f->output_data.x->parent_desc != FRAME_DISPLAY_INFO (f)->root_window)
8399 return; /* Only fullscreen without WM or with EWM hints (above). */
8401 /* Setting fullscreen to nil doesn't do anything. We could save the
8402 last non-fullscreen size and restore it, but it seems like a
8403 lot of work for this unusual case (no window manager running). */
8405 if (f->want_fullscreen != FULLSCREEN_NONE)
8407 int width = FRAME_PIXEL_WIDTH (f), height = FRAME_PIXEL_HEIGHT (f);
8408 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
8410 switch (f->want_fullscreen)
8412 /* No difference between these two when there is no WM */
8413 case FULLSCREEN_BOTH:
8414 case FULLSCREEN_MAXIMIZED:
8415 width = x_display_pixel_width (dpyinfo);
8416 height = x_display_pixel_height (dpyinfo);
8417 break;
8418 case FULLSCREEN_WIDTH:
8419 width = x_display_pixel_width (dpyinfo);
8420 break;
8421 case FULLSCREEN_HEIGHT:
8422 height = x_display_pixel_height (dpyinfo);
8425 XResizeWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
8426 width, height);
8430 /* This function is called by x_set_offset to determine whether the window
8431 manager interfered with the positioning of the frame. Type A window
8432 managers position the surrounding window manager decorations a small
8433 amount above and left of the user-supplied position. Type B window
8434 managers position the surrounding window manager decorations at the
8435 user-specified position. If we detect a Type A window manager, we
8436 compensate by moving the window right and down by the proper amount. */
8438 static void
8439 x_check_expected_move (struct frame *f, int expected_left, int expected_top)
8441 int current_left = 0, current_top = 0;
8443 /* x_real_positions returns the left and top offsets of the outermost
8444 window manager window around the frame. */
8446 x_real_positions (f, &current_left, &current_top);
8448 if (current_left != expected_left || current_top != expected_top)
8450 /* It's a "Type A" window manager. */
8452 int adjusted_left;
8453 int adjusted_top;
8455 FRAME_DISPLAY_INFO (f)->wm_type = X_WMTYPE_A;
8456 FRAME_X_OUTPUT (f)->move_offset_left = expected_left - current_left;
8457 FRAME_X_OUTPUT (f)->move_offset_top = expected_top - current_top;
8459 /* Now fix the mispositioned frame's location. */
8461 adjusted_left = expected_left + FRAME_X_OUTPUT (f)->move_offset_left;
8462 adjusted_top = expected_top + FRAME_X_OUTPUT (f)->move_offset_top;
8464 XMoveWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
8465 adjusted_left, adjusted_top);
8467 x_sync_with_move (f, expected_left, expected_top, 0);
8469 else
8470 /* It's a "Type B" window manager. We don't have to adjust the
8471 frame's position. */
8473 FRAME_DISPLAY_INFO (f)->wm_type = X_WMTYPE_B;
8477 /* Wait for XGetGeometry to return up-to-date position information for a
8478 recently-moved frame. Call this immediately after calling XMoveWindow.
8479 If FUZZY is non-zero, then LEFT and TOP are just estimates of where the
8480 frame has been moved to, so we use a fuzzy position comparison instead
8481 of an exact comparison. */
8483 static void
8484 x_sync_with_move (struct frame *f, int left, int top, int fuzzy)
8486 int count = 0;
8488 while (count++ < 50)
8490 int current_left = 0, current_top = 0;
8492 /* In theory, this call to XSync only needs to happen once, but in
8493 practice, it doesn't seem to work, hence the need for the surrounding
8494 loop. */
8496 XSync (FRAME_X_DISPLAY (f), False);
8497 x_real_positions (f, &current_left, &current_top);
8499 if (fuzzy)
8501 /* The left fuzz-factor is 10 pixels. The top fuzz-factor is 40
8502 pixels. */
8504 if (eabs (current_left - left) <= 10
8505 && eabs (current_top - top) <= 40)
8506 return;
8508 else if (current_left == left && current_top == top)
8509 return;
8512 /* As a last resort, just wait 0.5 seconds and hope that XGetGeometry
8513 will then return up-to-date position info. */
8515 wait_reading_process_output (0, 500000, 0, 0, Qnil, NULL, 0);
8519 /* Wait for an event on frame F matching EVENTTYPE. */
8520 void
8521 x_wait_for_event (struct frame *f, int eventtype)
8523 int level = interrupt_input_blocked;
8525 fd_set fds;
8526 struct timespec tmo, tmo_at, time_now;
8527 int fd = ConnectionNumber (FRAME_X_DISPLAY (f));
8529 f->wait_event_type = eventtype;
8531 /* Set timeout to 0.1 second. Hopefully not noticeable.
8532 Maybe it should be configurable. */
8533 tmo = make_timespec (0, 100 * 1000 * 1000);
8534 tmo_at = timespec_add (current_timespec (), tmo);
8536 while (f->wait_event_type)
8538 pending_signals = 1;
8539 totally_unblock_input ();
8540 /* XTread_socket is called after unblock. */
8541 block_input ();
8542 interrupt_input_blocked = level;
8544 FD_ZERO (&fds);
8545 FD_SET (fd, &fds);
8547 time_now = current_timespec ();
8548 if (timespec_cmp (tmo_at, time_now) < 0)
8549 break;
8551 tmo = timespec_sub (tmo_at, time_now);
8552 if (pselect (fd + 1, &fds, NULL, NULL, &tmo, NULL) == 0)
8553 break; /* Timeout */
8556 f->wait_event_type = 0;
8560 /* Change the size of frame F's X window to COLS/ROWS in the case F
8561 doesn't have a widget. If CHANGE_GRAVITY is 1, we change to
8562 top-left-corner window gravity for this size change and subsequent
8563 size changes. Otherwise we leave the window gravity unchanged. */
8565 static void
8566 x_set_window_size_1 (struct frame *f, int change_gravity, int width, int height, bool pixelwise)
8568 int pixelwidth, pixelheight;
8570 check_frame_size (f, &width, &height, pixelwise);
8572 compute_fringe_widths (f, 0);
8574 pixelwidth = ((pixelwise
8575 ? FRAME_TEXT_TO_PIXEL_WIDTH (f, width)
8576 : FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, width))
8577 + FRAME_TOOLBAR_WIDTH (f));
8578 pixelheight = ((pixelwise
8579 ? FRAME_TEXT_TO_PIXEL_HEIGHT (f, height)
8580 : FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, height))
8581 + FRAME_MENUBAR_HEIGHT (f)
8582 + FRAME_TOOLBAR_HEIGHT (f));
8583 if (change_gravity) f->win_gravity = NorthWestGravity;
8584 x_wm_set_size_hint (f, (long) 0, 0);
8585 XResizeWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
8586 pixelwidth, pixelheight);
8589 /* We've set {FRAME,PIXEL}_{WIDTH,HEIGHT} to the values we hope to
8590 receive in the ConfigureNotify event; if we get what we asked
8591 for, then the event won't cause the screen to become garbaged, so
8592 we have to make sure to do it here. */
8593 SET_FRAME_GARBAGED (f);
8595 /* Now, strictly speaking, we can't be sure that this is accurate,
8596 but the window manager will get around to dealing with the size
8597 change request eventually, and we'll hear how it went when the
8598 ConfigureNotify event gets here.
8600 We could just not bother storing any of this information here,
8601 and let the ConfigureNotify event set everything up, but that
8602 might be kind of confusing to the Lisp code, since size changes
8603 wouldn't be reported in the frame parameters until some random
8604 point in the future when the ConfigureNotify event arrives.
8606 We pass 1 for DELAY since we can't run Lisp code inside of
8607 a BLOCK_INPUT. */
8609 /* But the ConfigureNotify may in fact never arrive, and then this is
8610 not right if the frame is visible. Instead wait (with timeout)
8611 for the ConfigureNotify. */
8612 if (FRAME_VISIBLE_P (f))
8613 x_wait_for_event (f, ConfigureNotify);
8614 else
8616 change_frame_size (f, width, height, 0, 1, 0, 1);
8617 x_sync (f);
8622 /* Call this to change the size of frame F's x-window.
8623 If CHANGE_GRAVITY is 1, we change to top-left-corner window gravity
8624 for this size change and subsequent size changes.
8625 Otherwise we leave the window gravity unchanged. */
8627 void
8628 x_set_window_size (struct frame *f, int change_gravity, int width, int height, bool pixelwise)
8630 block_input ();
8632 check_frame_size (f, &width, &height, pixelwise);
8634 if (NILP (tip_frame) || XFRAME (tip_frame) != f)
8636 int text_width, text_height;
8638 /* When the frame is maximized/fullscreen or running under for
8639 example Xmonad, x_set_window_size_1 will be a no-op.
8640 In that case, the right thing to do is extend rows/width to
8641 the current frame size. We do that first if x_set_window_size_1
8642 turns out to not be a no-op (there is no way to know).
8643 The size will be adjusted again if the frame gets a
8644 ConfigureNotify event as a result of x_set_window_size. */
8645 int pixelh = FRAME_PIXEL_HEIGHT (f);
8646 #ifdef USE_X_TOOLKIT
8647 /* The menu bar is not part of text lines. The tool bar
8648 is however. */
8649 pixelh -= FRAME_MENUBAR_HEIGHT (f);
8650 #endif
8651 text_width = FRAME_PIXEL_TO_TEXT_WIDTH (f, FRAME_PIXEL_WIDTH (f));
8652 text_height = FRAME_PIXEL_TO_TEXT_HEIGHT (f, pixelh);
8654 change_frame_size (f, text_width, text_height, 0, 1, 0, 1);
8657 #ifdef USE_GTK
8658 if (FRAME_GTK_WIDGET (f))
8659 if (! pixelwise)
8660 xg_frame_set_char_size (f, width * FRAME_COLUMN_WIDTH (f),
8661 height * FRAME_LINE_HEIGHT (f));
8662 else
8663 xg_frame_set_char_size (f, width, height);
8664 else
8665 x_set_window_size_1 (f, change_gravity, width, height, pixelwise);
8666 #else /* not USE_GTK */
8668 x_set_window_size_1 (f, change_gravity, width, height, pixelwise);
8669 #if !defined USE_X_TOOLKIT
8670 x_clear_under_internal_border (f);
8671 #endif
8673 #endif /* not USE_GTK */
8675 /* If cursor was outside the new size, mark it as off. */
8676 mark_window_cursors_off (XWINDOW (f->root_window));
8678 /* Clear out any recollection of where the mouse highlighting was,
8679 since it might be in a place that's outside the new frame size.
8680 Actually checking whether it is outside is a pain in the neck,
8681 so don't try--just let the highlighting be done afresh with new size. */
8682 cancel_mouse_face (f);
8684 unblock_input ();
8687 /* Mouse warping. */
8689 void
8690 x_set_mouse_position (struct frame *f, int x, int y)
8692 int pix_x, pix_y;
8694 pix_x = FRAME_COL_TO_PIXEL_X (f, x) + FRAME_COLUMN_WIDTH (f) / 2;
8695 pix_y = FRAME_LINE_TO_PIXEL_Y (f, y) + FRAME_LINE_HEIGHT (f) / 2;
8697 if (pix_x < 0) pix_x = 0;
8698 if (pix_x > FRAME_PIXEL_WIDTH (f)) pix_x = FRAME_PIXEL_WIDTH (f);
8700 if (pix_y < 0) pix_y = 0;
8701 if (pix_y > FRAME_PIXEL_HEIGHT (f)) pix_y = FRAME_PIXEL_HEIGHT (f);
8703 block_input ();
8705 XWarpPointer (FRAME_X_DISPLAY (f), None, FRAME_X_WINDOW (f),
8706 0, 0, 0, 0, pix_x, pix_y);
8707 unblock_input ();
8710 /* Move the mouse to position pixel PIX_X, PIX_Y relative to frame F. */
8712 void
8713 x_set_mouse_pixel_position (struct frame *f, int pix_x, int pix_y)
8715 block_input ();
8717 XWarpPointer (FRAME_X_DISPLAY (f), None, FRAME_X_WINDOW (f),
8718 0, 0, 0, 0, pix_x, pix_y);
8719 unblock_input ();
8722 /* Raise frame F. */
8724 void
8725 x_raise_frame (struct frame *f)
8727 block_input ();
8728 if (FRAME_VISIBLE_P (f))
8729 XRaiseWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f));
8730 XFlush (FRAME_X_DISPLAY (f));
8731 unblock_input ();
8734 /* Lower frame F. */
8736 static void
8737 x_lower_frame (struct frame *f)
8739 if (FRAME_VISIBLE_P (f))
8741 block_input ();
8742 XLowerWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f));
8743 XFlush (FRAME_X_DISPLAY (f));
8744 unblock_input ();
8748 /* Request focus with XEmbed */
8750 void
8751 xembed_request_focus (struct frame *f)
8753 /* See XEmbed Protocol Specification at
8754 http://freedesktop.org/wiki/Specifications/xembed-spec */
8755 if (FRAME_VISIBLE_P (f))
8756 xembed_send_message (f, CurrentTime,
8757 XEMBED_REQUEST_FOCUS, 0, 0, 0);
8760 /* Activate frame with Extended Window Manager Hints */
8762 void
8763 x_ewmh_activate_frame (struct frame *f)
8765 /* See Window Manager Specification/Extended Window Manager Hints at
8766 http://freedesktop.org/wiki/Specifications/wm-spec */
8768 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
8770 if (FRAME_VISIBLE_P (f) && wm_supports (f, dpyinfo->Xatom_net_active_window))
8772 Lisp_Object frame;
8773 XSETFRAME (frame, f);
8774 x_send_client_event (frame, make_number (0), frame,
8775 dpyinfo->Xatom_net_active_window,
8776 make_number (32),
8777 list2i (1, dpyinfo->last_user_time));
8781 static void
8782 XTframe_raise_lower (struct frame *f, int raise_flag)
8784 if (raise_flag)
8785 x_raise_frame (f);
8786 else
8787 x_lower_frame (f);
8790 /* XEmbed implementation. */
8792 #if defined USE_X_TOOLKIT || ! defined USE_GTK
8794 /* XEmbed implementation. */
8796 #define XEMBED_VERSION 0
8798 static void
8799 xembed_set_info (struct frame *f, enum xembed_info flags)
8801 unsigned long data[2];
8802 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
8804 data[0] = XEMBED_VERSION;
8805 data[1] = flags;
8807 XChangeProperty (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
8808 dpyinfo->Xatom_XEMBED_INFO, dpyinfo->Xatom_XEMBED_INFO,
8809 32, PropModeReplace, (unsigned char *) data, 2);
8811 #endif /* defined USE_X_TOOLKIT || ! defined USE_GTK */
8813 static void
8814 xembed_send_message (struct frame *f, Time t, enum xembed_message msg,
8815 long int detail, long int data1, long int data2)
8817 XEvent event;
8819 event.xclient.type = ClientMessage;
8820 event.xclient.window = FRAME_X_OUTPUT (f)->parent_desc;
8821 event.xclient.message_type = FRAME_DISPLAY_INFO (f)->Xatom_XEMBED;
8822 event.xclient.format = 32;
8823 event.xclient.data.l[0] = t;
8824 event.xclient.data.l[1] = msg;
8825 event.xclient.data.l[2] = detail;
8826 event.xclient.data.l[3] = data1;
8827 event.xclient.data.l[4] = data2;
8829 XSendEvent (FRAME_X_DISPLAY (f), FRAME_X_OUTPUT (f)->parent_desc,
8830 False, NoEventMask, &event);
8831 XSync (FRAME_X_DISPLAY (f), False);
8834 /* Change of visibility. */
8836 /* This tries to wait until the frame is really visible.
8837 However, if the window manager asks the user where to position
8838 the frame, this will return before the user finishes doing that.
8839 The frame will not actually be visible at that time,
8840 but it will become visible later when the window manager
8841 finishes with it. */
8843 void
8844 x_make_frame_visible (struct frame *f)
8846 int original_top, original_left;
8848 block_input ();
8850 x_set_bitmap_icon (f);
8852 if (! FRAME_VISIBLE_P (f))
8854 /* We test FRAME_GARBAGED_P here to make sure we don't
8855 call x_set_offset a second time
8856 if we get to x_make_frame_visible a second time
8857 before the window gets really visible. */
8858 if (! FRAME_ICONIFIED_P (f)
8859 && ! FRAME_X_EMBEDDED_P (f)
8860 && ! f->output_data.x->asked_for_visible)
8861 x_set_offset (f, f->left_pos, f->top_pos, 0);
8863 f->output_data.x->asked_for_visible = 1;
8865 if (! EQ (Vx_no_window_manager, Qt))
8866 x_wm_set_window_state (f, NormalState);
8867 #ifdef USE_X_TOOLKIT
8868 if (FRAME_X_EMBEDDED_P (f))
8869 xembed_set_info (f, XEMBED_MAPPED);
8870 else
8872 /* This was XtPopup, but that did nothing for an iconified frame. */
8873 XtMapWidget (f->output_data.x->widget);
8875 #else /* not USE_X_TOOLKIT */
8876 #ifdef USE_GTK
8877 gtk_widget_show_all (FRAME_GTK_OUTER_WIDGET (f));
8878 gtk_window_deiconify (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
8879 #else
8880 if (FRAME_X_EMBEDDED_P (f))
8881 xembed_set_info (f, XEMBED_MAPPED);
8882 else
8883 XMapRaised (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
8884 #endif /* not USE_GTK */
8885 #endif /* not USE_X_TOOLKIT */
8888 XFlush (FRAME_X_DISPLAY (f));
8890 /* Synchronize to ensure Emacs knows the frame is visible
8891 before we do anything else. We do this loop with input not blocked
8892 so that incoming events are handled. */
8894 Lisp_Object frame;
8895 /* This must be before UNBLOCK_INPUT
8896 since events that arrive in response to the actions above
8897 will set it when they are handled. */
8898 int previously_visible = f->output_data.x->has_been_visible;
8900 original_left = f->left_pos;
8901 original_top = f->top_pos;
8903 /* This must come after we set COUNT. */
8904 unblock_input ();
8906 /* We unblock here so that arriving X events are processed. */
8908 /* Now move the window back to where it was "supposed to be".
8909 But don't do it if the gravity is negative.
8910 When the gravity is negative, this uses a position
8911 that is 3 pixels too low. Perhaps that's really the border width.
8913 Don't do this if the window has never been visible before,
8914 because the window manager may choose the position
8915 and we don't want to override it. */
8917 if (! FRAME_VISIBLE_P (f)
8918 && ! FRAME_ICONIFIED_P (f)
8919 && ! FRAME_X_EMBEDDED_P (f)
8920 && f->win_gravity == NorthWestGravity
8921 && previously_visible)
8923 Drawable rootw;
8924 int x, y;
8925 unsigned int width, height, border, depth;
8927 block_input ();
8929 /* On some window managers (such as FVWM) moving an existing
8930 window, even to the same place, causes the window manager
8931 to introduce an offset. This can cause the window to move
8932 to an unexpected location. Check the geometry (a little
8933 slow here) and then verify that the window is in the right
8934 place. If the window is not in the right place, move it
8935 there, and take the potential window manager hit. */
8936 XGetGeometry (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
8937 &rootw, &x, &y, &width, &height, &border, &depth);
8939 if (original_left != x || original_top != y)
8940 XMoveWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
8941 original_left, original_top);
8943 unblock_input ();
8946 XSETFRAME (frame, f);
8948 /* Process X events until a MapNotify event has been seen. */
8949 while (!FRAME_VISIBLE_P (f))
8951 /* Force processing of queued events. */
8952 x_sync (f);
8954 /* This hack is still in use at least for Cygwin. See
8955 http://lists.gnu.org/archive/html/emacs-devel/2013-12/msg00351.html.
8957 Machines that do polling rather than SIGIO have been
8958 observed to go into a busy-wait here. So we'll fake an
8959 alarm signal to let the handler know that there's something
8960 to be read. We used to raise a real alarm, but it seems
8961 that the handler isn't always enabled here. This is
8962 probably a bug. */
8963 if (input_polling_used ())
8965 /* It could be confusing if a real alarm arrives while
8966 processing the fake one. Turn it off and let the
8967 handler reset it. */
8968 int old_poll_suppress_count = poll_suppress_count;
8969 poll_suppress_count = 1;
8970 poll_for_input_1 ();
8971 poll_suppress_count = old_poll_suppress_count;
8974 if (XPending (FRAME_X_DISPLAY (f)))
8976 XEvent xev;
8977 XNextEvent (FRAME_X_DISPLAY (f), &xev);
8978 x_dispatch_event (&xev, FRAME_X_DISPLAY (f));
8984 /* Change from mapped state to withdrawn state. */
8986 /* Make the frame visible (mapped and not iconified). */
8988 void
8989 x_make_frame_invisible (struct frame *f)
8991 Window window;
8993 /* Use the frame's outermost window, not the one we normally draw on. */
8994 window = FRAME_OUTER_WINDOW (f);
8996 /* Don't keep the highlight on an invisible frame. */
8997 if (FRAME_DISPLAY_INFO (f)->x_highlight_frame == f)
8998 FRAME_DISPLAY_INFO (f)->x_highlight_frame = 0;
9000 block_input ();
9002 /* Before unmapping the window, update the WM_SIZE_HINTS property to claim
9003 that the current position of the window is user-specified, rather than
9004 program-specified, so that when the window is mapped again, it will be
9005 placed at the same location, without forcing the user to position it
9006 by hand again (they have already done that once for this window.) */
9007 x_wm_set_size_hint (f, (long) 0, 1);
9009 #ifdef USE_GTK
9010 if (FRAME_GTK_OUTER_WIDGET (f))
9011 gtk_widget_hide (FRAME_GTK_OUTER_WIDGET (f));
9012 else
9013 #else
9014 if (FRAME_X_EMBEDDED_P (f))
9015 xembed_set_info (f, 0);
9016 else
9017 #endif
9020 if (! XWithdrawWindow (FRAME_X_DISPLAY (f), window,
9021 DefaultScreen (FRAME_X_DISPLAY (f))))
9023 unblock_input ();
9024 error ("Can't notify window manager of window withdrawal");
9028 /* We can't distinguish this from iconification
9029 just by the event that we get from the server.
9030 So we can't win using the usual strategy of letting
9031 FRAME_SAMPLE_VISIBILITY set this. So do it by hand,
9032 and synchronize with the server to make sure we agree. */
9033 SET_FRAME_VISIBLE (f, 0);
9034 SET_FRAME_ICONIFIED (f, 0);
9036 x_sync (f);
9038 unblock_input ();
9041 /* Change window state from mapped to iconified. */
9043 void
9044 x_iconify_frame (struct frame *f)
9046 #ifdef USE_X_TOOLKIT
9047 int result;
9048 #endif
9050 /* Don't keep the highlight on an invisible frame. */
9051 if (FRAME_DISPLAY_INFO (f)->x_highlight_frame == f)
9052 FRAME_DISPLAY_INFO (f)->x_highlight_frame = 0;
9054 if (FRAME_ICONIFIED_P (f))
9055 return;
9057 block_input ();
9059 x_set_bitmap_icon (f);
9061 #if defined (USE_GTK)
9062 if (FRAME_GTK_OUTER_WIDGET (f))
9064 if (! FRAME_VISIBLE_P (f))
9065 gtk_widget_show_all (FRAME_GTK_OUTER_WIDGET (f));
9067 gtk_window_iconify (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
9068 SET_FRAME_VISIBLE (f, 0);
9069 SET_FRAME_ICONIFIED (f, 1);
9070 unblock_input ();
9071 return;
9073 #endif
9075 #ifdef USE_X_TOOLKIT
9077 if (! FRAME_VISIBLE_P (f))
9079 if (! EQ (Vx_no_window_manager, Qt))
9080 x_wm_set_window_state (f, IconicState);
9081 /* This was XtPopup, but that did nothing for an iconified frame. */
9082 XtMapWidget (f->output_data.x->widget);
9083 /* The server won't give us any event to indicate
9084 that an invisible frame was changed to an icon,
9085 so we have to record it here. */
9086 SET_FRAME_VISIBLE (f, 0);
9087 SET_FRAME_ICONIFIED (f, 1);
9088 unblock_input ();
9089 return;
9092 result = XIconifyWindow (FRAME_X_DISPLAY (f),
9093 XtWindow (f->output_data.x->widget),
9094 DefaultScreen (FRAME_X_DISPLAY (f)));
9095 unblock_input ();
9097 if (!result)
9098 error ("Can't notify window manager of iconification");
9100 SET_FRAME_ICONIFIED (f, 1);
9101 SET_FRAME_VISIBLE (f, 0);
9103 block_input ();
9104 XFlush (FRAME_X_DISPLAY (f));
9105 unblock_input ();
9106 #else /* not USE_X_TOOLKIT */
9108 /* Make sure the X server knows where the window should be positioned,
9109 in case the user deiconifies with the window manager. */
9110 if (! FRAME_VISIBLE_P (f)
9111 && ! FRAME_ICONIFIED_P (f)
9112 && ! FRAME_X_EMBEDDED_P (f))
9113 x_set_offset (f, f->left_pos, f->top_pos, 0);
9115 /* Since we don't know which revision of X we're running, we'll use both
9116 the X11R3 and X11R4 techniques. I don't know if this is a good idea. */
9118 /* X11R4: send a ClientMessage to the window manager using the
9119 WM_CHANGE_STATE type. */
9121 XEvent msg;
9123 msg.xclient.window = FRAME_X_WINDOW (f);
9124 msg.xclient.type = ClientMessage;
9125 msg.xclient.message_type = FRAME_DISPLAY_INFO (f)->Xatom_wm_change_state;
9126 msg.xclient.format = 32;
9127 msg.xclient.data.l[0] = IconicState;
9129 if (! XSendEvent (FRAME_X_DISPLAY (f),
9130 DefaultRootWindow (FRAME_X_DISPLAY (f)),
9131 False,
9132 SubstructureRedirectMask | SubstructureNotifyMask,
9133 &msg))
9135 unblock_input ();
9136 error ("Can't notify window manager of iconification");
9140 /* X11R3: set the initial_state field of the window manager hints to
9141 IconicState. */
9142 x_wm_set_window_state (f, IconicState);
9144 if (!FRAME_VISIBLE_P (f))
9146 /* If the frame was withdrawn, before, we must map it. */
9147 XMapRaised (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
9150 SET_FRAME_ICONIFIED (f, 1);
9151 SET_FRAME_VISIBLE (f, 0);
9153 XFlush (FRAME_X_DISPLAY (f));
9154 unblock_input ();
9155 #endif /* not USE_X_TOOLKIT */
9159 /* Free X resources of frame F. */
9161 void
9162 x_free_frame_resources (struct frame *f)
9164 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
9165 Mouse_HLInfo *hlinfo = &dpyinfo->mouse_highlight;
9166 #ifdef USE_X_TOOLKIT
9167 Lisp_Object bar;
9168 struct scroll_bar *b;
9169 #endif
9171 block_input ();
9173 /* If a display connection is dead, don't try sending more
9174 commands to the X server. */
9175 if (dpyinfo->display)
9177 /* We must free faces before destroying windows because some
9178 font-driver (e.g. xft) access a window while finishing a
9179 face. */
9180 free_frame_faces (f);
9182 if (f->output_data.x->icon_desc)
9183 XDestroyWindow (FRAME_X_DISPLAY (f), f->output_data.x->icon_desc);
9185 #ifdef USE_X_TOOLKIT
9186 /* Explicitly destroy the scroll bars of the frame. Without
9187 this, we get "BadDrawable" errors from the toolkit later on,
9188 presumably from expose events generated for the disappearing
9189 toolkit scroll bars. */
9190 for (bar = FRAME_SCROLL_BARS (f); !NILP (bar); bar = b->next)
9192 b = XSCROLL_BAR (bar);
9193 x_scroll_bar_remove (b);
9195 #endif
9197 #ifdef HAVE_X_I18N
9198 if (FRAME_XIC (f))
9199 free_frame_xic (f);
9200 #endif
9202 #ifdef USE_X_TOOLKIT
9203 if (f->output_data.x->widget)
9205 XtDestroyWidget (f->output_data.x->widget);
9206 f->output_data.x->widget = NULL;
9208 /* Tooltips don't have widgets, only a simple X window, even if
9209 we are using a toolkit. */
9210 else if (FRAME_X_WINDOW (f))
9211 XDestroyWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
9213 free_frame_menubar (f);
9214 #else /* !USE_X_TOOLKIT */
9216 #ifdef USE_GTK
9217 xg_free_frame_widgets (f);
9218 #endif /* USE_GTK */
9220 if (FRAME_X_WINDOW (f))
9221 XDestroyWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
9222 #endif /* !USE_X_TOOLKIT */
9224 unload_color (f, FRAME_FOREGROUND_PIXEL (f));
9225 unload_color (f, FRAME_BACKGROUND_PIXEL (f));
9226 unload_color (f, f->output_data.x->cursor_pixel);
9227 unload_color (f, f->output_data.x->cursor_foreground_pixel);
9228 unload_color (f, f->output_data.x->border_pixel);
9229 unload_color (f, f->output_data.x->mouse_pixel);
9231 if (f->output_data.x->scroll_bar_background_pixel != -1)
9232 unload_color (f, f->output_data.x->scroll_bar_background_pixel);
9233 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
9234 unload_color (f, f->output_data.x->scroll_bar_foreground_pixel);
9235 #ifdef USE_TOOLKIT_SCROLL_BARS
9236 /* Scrollbar shadow colors. */
9237 if (f->output_data.x->scroll_bar_top_shadow_pixel != -1)
9238 unload_color (f, f->output_data.x->scroll_bar_top_shadow_pixel);
9239 if (f->output_data.x->scroll_bar_bottom_shadow_pixel != -1)
9240 unload_color (f, f->output_data.x->scroll_bar_bottom_shadow_pixel);
9241 #endif /* USE_TOOLKIT_SCROLL_BARS */
9242 if (f->output_data.x->white_relief.pixel != -1)
9243 unload_color (f, f->output_data.x->white_relief.pixel);
9244 if (f->output_data.x->black_relief.pixel != -1)
9245 unload_color (f, f->output_data.x->black_relief.pixel);
9247 x_free_gcs (f);
9249 /* Free extra GCs allocated by x_setup_relief_colors. */
9250 if (f->output_data.x->white_relief.gc)
9252 XFreeGC (dpyinfo->display, f->output_data.x->white_relief.gc);
9253 f->output_data.x->white_relief.gc = 0;
9255 if (f->output_data.x->black_relief.gc)
9257 XFreeGC (dpyinfo->display, f->output_data.x->black_relief.gc);
9258 f->output_data.x->black_relief.gc = 0;
9261 XFlush (FRAME_X_DISPLAY (f));
9264 xfree (f->output_data.x->saved_menu_event);
9265 xfree (f->output_data.x);
9266 f->output_data.x = NULL;
9268 if (f == dpyinfo->x_focus_frame)
9269 dpyinfo->x_focus_frame = 0;
9270 if (f == dpyinfo->x_focus_event_frame)
9271 dpyinfo->x_focus_event_frame = 0;
9272 if (f == dpyinfo->x_highlight_frame)
9273 dpyinfo->x_highlight_frame = 0;
9274 if (f == hlinfo->mouse_face_mouse_frame)
9275 reset_mouse_highlight (hlinfo);
9277 unblock_input ();
9281 /* Destroy the X window of frame F. */
9283 static void
9284 x_destroy_window (struct frame *f)
9286 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
9288 /* If a display connection is dead, don't try sending more
9289 commands to the X server. */
9290 if (dpyinfo->display != 0)
9291 x_free_frame_resources (f);
9293 dpyinfo->reference_count--;
9297 /* Setting window manager hints. */
9299 /* Set the normal size hints for the window manager, for frame F.
9300 FLAGS is the flags word to use--or 0 meaning preserve the flags
9301 that the window now has.
9302 If USER_POSITION, set the USPosition
9303 flag (this is useful when FLAGS is 0).
9304 The GTK version is in gtkutils.c. */
9306 #ifndef USE_GTK
9307 void
9308 x_wm_set_size_hint (struct frame *f, long flags, bool user_position)
9310 XSizeHints size_hints;
9311 Window window = FRAME_OUTER_WINDOW (f);
9313 #ifdef USE_X_TOOLKIT
9314 if (f->output_data.x->widget)
9316 widget_update_wm_size_hints (f->output_data.x->widget);
9317 return;
9319 #endif
9321 /* Setting PMaxSize caused various problems. */
9322 size_hints.flags = PResizeInc | PMinSize /* | PMaxSize */;
9324 size_hints.x = f->left_pos;
9325 size_hints.y = f->top_pos;
9327 size_hints.height = FRAME_PIXEL_HEIGHT (f);
9328 size_hints.width = FRAME_PIXEL_WIDTH (f);
9330 size_hints.width_inc = frame_resize_pixelwise ? 1 : FRAME_COLUMN_WIDTH (f);
9331 size_hints.height_inc = frame_resize_pixelwise ? 1 : FRAME_LINE_HEIGHT (f);
9333 size_hints.max_width = x_display_pixel_width (FRAME_DISPLAY_INFO (f))
9334 - FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, 0);
9335 size_hints.max_height = x_display_pixel_height (FRAME_DISPLAY_INFO (f))
9336 - FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, 0);
9338 /* Calculate the base and minimum sizes. */
9340 int base_width, base_height;
9341 int min_rows = 0, min_cols = 0;
9343 base_width = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, 0);
9344 base_height = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, 0);
9346 check_frame_size (f, &min_cols, &min_rows, 0);
9348 if (frame_resize_pixelwise)
9349 /* Needed to prevent a bad protocol error crash when making the
9350 frame size very small. */
9352 min_cols = 2 * min_cols;
9353 min_rows = 2 * min_rows;
9356 /* The window manager uses the base width hints to calculate the
9357 current number of rows and columns in the frame while
9358 resizing; min_width and min_height aren't useful for this
9359 purpose, since they might not give the dimensions for a
9360 zero-row, zero-column frame.
9362 We use the base_width and base_height members if we have
9363 them; otherwise, we set the min_width and min_height members
9364 to the size for a zero x zero frame. */
9366 size_hints.flags |= PBaseSize;
9367 size_hints.base_width = base_width;
9368 size_hints.base_height = base_height + FRAME_MENUBAR_HEIGHT (f);
9369 size_hints.min_width = base_width + min_cols * FRAME_COLUMN_WIDTH (f);
9370 size_hints.min_height = base_height + min_rows * FRAME_LINE_HEIGHT (f);
9373 /* If we don't need the old flags, we don't need the old hint at all. */
9374 if (flags)
9376 size_hints.flags |= flags;
9377 goto no_read;
9381 XSizeHints hints; /* Sometimes I hate X Windows... */
9382 long supplied_return;
9383 int value;
9385 value = XGetWMNormalHints (FRAME_X_DISPLAY (f), window, &hints,
9386 &supplied_return);
9388 if (flags)
9389 size_hints.flags |= flags;
9390 else
9392 if (value == 0)
9393 hints.flags = 0;
9394 if (hints.flags & PSize)
9395 size_hints.flags |= PSize;
9396 if (hints.flags & PPosition)
9397 size_hints.flags |= PPosition;
9398 if (hints.flags & USPosition)
9399 size_hints.flags |= USPosition;
9400 if (hints.flags & USSize)
9401 size_hints.flags |= USSize;
9405 no_read:
9407 #ifdef PWinGravity
9408 size_hints.win_gravity = f->win_gravity;
9409 size_hints.flags |= PWinGravity;
9411 if (user_position)
9413 size_hints.flags &= ~ PPosition;
9414 size_hints.flags |= USPosition;
9416 #endif /* PWinGravity */
9418 XSetWMNormalHints (FRAME_X_DISPLAY (f), window, &size_hints);
9420 #endif /* not USE_GTK */
9422 /* Used for IconicState or NormalState */
9424 static void
9425 x_wm_set_window_state (struct frame *f, int state)
9427 #ifdef USE_X_TOOLKIT
9428 Arg al[1];
9430 XtSetArg (al[0], XtNinitialState, state);
9431 XtSetValues (f->output_data.x->widget, al, 1);
9432 #else /* not USE_X_TOOLKIT */
9433 Window window = FRAME_X_WINDOW (f);
9435 f->output_data.x->wm_hints.flags |= StateHint;
9436 f->output_data.x->wm_hints.initial_state = state;
9438 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints);
9439 #endif /* not USE_X_TOOLKIT */
9442 static void
9443 x_wm_set_icon_pixmap (struct frame *f, ptrdiff_t pixmap_id)
9445 Pixmap icon_pixmap, icon_mask;
9447 #if !defined USE_X_TOOLKIT && !defined USE_GTK
9448 Window window = FRAME_OUTER_WINDOW (f);
9449 #endif
9451 if (pixmap_id > 0)
9453 icon_pixmap = x_bitmap_pixmap (f, pixmap_id);
9454 f->output_data.x->wm_hints.icon_pixmap = icon_pixmap;
9455 icon_mask = x_bitmap_mask (f, pixmap_id);
9456 f->output_data.x->wm_hints.icon_mask = icon_mask;
9458 else
9460 /* It seems there is no way to turn off use of an icon
9461 pixmap. */
9462 return;
9466 #ifdef USE_GTK
9468 xg_set_frame_icon (f, icon_pixmap, icon_mask);
9469 return;
9472 #elif defined (USE_X_TOOLKIT) /* same as in x_wm_set_window_state. */
9475 Arg al[1];
9476 XtSetArg (al[0], XtNiconPixmap, icon_pixmap);
9477 XtSetValues (f->output_data.x->widget, al, 1);
9478 XtSetArg (al[0], XtNiconMask, icon_mask);
9479 XtSetValues (f->output_data.x->widget, al, 1);
9482 #else /* not USE_X_TOOLKIT && not USE_GTK */
9484 f->output_data.x->wm_hints.flags |= (IconPixmapHint | IconMaskHint);
9485 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints);
9487 #endif /* not USE_X_TOOLKIT && not USE_GTK */
9490 void
9491 x_wm_set_icon_position (struct frame *f, int icon_x, int icon_y)
9493 Window window = FRAME_OUTER_WINDOW (f);
9495 f->output_data.x->wm_hints.flags |= IconPositionHint;
9496 f->output_data.x->wm_hints.icon_x = icon_x;
9497 f->output_data.x->wm_hints.icon_y = icon_y;
9499 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints);
9503 /***********************************************************************
9504 Fonts
9505 ***********************************************************************/
9507 #ifdef GLYPH_DEBUG
9509 /* Check that FONT is valid on frame F. It is if it can be found in F's
9510 font table. */
9512 static void
9513 x_check_font (struct frame *f, struct font *font)
9515 eassert (font != NULL && ! NILP (font->props[FONT_TYPE_INDEX]));
9516 if (font->driver->check)
9517 eassert (font->driver->check (f, font) == 0);
9520 #endif /* GLYPH_DEBUG */
9523 /***********************************************************************
9524 Initialization
9525 ***********************************************************************/
9527 #ifdef USE_X_TOOLKIT
9528 static XrmOptionDescRec emacs_options[] = {
9529 {"-geometry", ".geometry", XrmoptionSepArg, NULL},
9530 {"-iconic", ".iconic", XrmoptionNoArg, (XtPointer) "yes"},
9532 {"-internal-border-width", "*EmacsScreen.internalBorderWidth",
9533 XrmoptionSepArg, NULL},
9534 {"-ib", "*EmacsScreen.internalBorderWidth", XrmoptionSepArg, NULL},
9536 {"-T", "*EmacsShell.title", XrmoptionSepArg, (XtPointer) NULL},
9537 {"-wn", "*EmacsShell.title", XrmoptionSepArg, (XtPointer) NULL},
9538 {"-title", "*EmacsShell.title", XrmoptionSepArg, (XtPointer) NULL},
9539 {"-iconname", "*EmacsShell.iconName", XrmoptionSepArg, (XtPointer) NULL},
9540 {"-in", "*EmacsShell.iconName", XrmoptionSepArg, (XtPointer) NULL},
9541 {"-mc", "*pointerColor", XrmoptionSepArg, (XtPointer) NULL},
9542 {"-cr", "*cursorColor", XrmoptionSepArg, (XtPointer) NULL}
9545 /* Whether atimer for Xt timeouts is activated or not. */
9547 static int x_timeout_atimer_activated_flag;
9549 #endif /* USE_X_TOOLKIT */
9551 static int x_initialized;
9553 /* Test whether two display-name strings agree up to the dot that separates
9554 the screen number from the server number. */
9555 static int
9556 same_x_server (const char *name1, const char *name2)
9558 int seen_colon = 0;
9559 const char *system_name = SSDATA (Vsystem_name);
9560 ptrdiff_t system_name_length = SBYTES (Vsystem_name);
9561 ptrdiff_t length_until_period = 0;
9563 while (system_name[length_until_period] != 0
9564 && system_name[length_until_period] != '.')
9565 length_until_period++;
9567 /* Treat `unix' like an empty host name. */
9568 if (! strncmp (name1, "unix:", 5))
9569 name1 += 4;
9570 if (! strncmp (name2, "unix:", 5))
9571 name2 += 4;
9572 /* Treat this host's name like an empty host name. */
9573 if (! strncmp (name1, system_name, system_name_length)
9574 && name1[system_name_length] == ':')
9575 name1 += system_name_length;
9576 if (! strncmp (name2, system_name, system_name_length)
9577 && name2[system_name_length] == ':')
9578 name2 += system_name_length;
9579 /* Treat this host's domainless name like an empty host name. */
9580 if (! strncmp (name1, system_name, length_until_period)
9581 && name1[length_until_period] == ':')
9582 name1 += length_until_period;
9583 if (! strncmp (name2, system_name, length_until_period)
9584 && name2[length_until_period] == ':')
9585 name2 += length_until_period;
9587 for (; *name1 != '\0' && *name1 == *name2; name1++, name2++)
9589 if (*name1 == ':')
9590 seen_colon = 1;
9591 if (seen_colon && *name1 == '.')
9592 return 1;
9594 return (seen_colon
9595 && (*name1 == '.' || *name1 == '\0')
9596 && (*name2 == '.' || *name2 == '\0'));
9599 /* Count number of set bits in mask and number of bits to shift to
9600 get to the first bit. With MASK 0x7e0, *BITS is set to 6, and *OFFSET
9601 to 5. */
9602 static void
9603 get_bits_and_offset (unsigned long mask, int *bits, int *offset)
9605 int nr = 0;
9606 int off = 0;
9608 while (!(mask & 1))
9610 off++;
9611 mask >>= 1;
9614 while (mask & 1)
9616 nr++;
9617 mask >>= 1;
9620 *offset = off;
9621 *bits = nr;
9624 /* Return 1 if display DISPLAY is available for use, 0 otherwise.
9625 But don't permanently open it, just test its availability. */
9627 bool
9628 x_display_ok (const char *display)
9630 Display *dpy = XOpenDisplay (display);
9631 return dpy ? (XCloseDisplay (dpy), 1) : 0;
9634 #ifdef USE_GTK
9635 static void
9636 my_log_handler (const gchar *log_domain, GLogLevelFlags log_level,
9637 const gchar *msg, gpointer user_data)
9639 if (!strstr (msg, "g_set_prgname"))
9640 fprintf (stderr, "%s-WARNING **: %s\n", log_domain, msg);
9642 #endif
9644 /* Open a connection to X display DISPLAY_NAME, and return
9645 the structure that describes the open display.
9646 If we cannot contact the display, return null. */
9648 struct x_display_info *
9649 x_term_init (Lisp_Object display_name, char *xrm_option, char *resource_name)
9651 int connection;
9652 Display *dpy;
9653 struct terminal *terminal;
9654 struct x_display_info *dpyinfo;
9655 XrmDatabase xrdb;
9656 ptrdiff_t lim;
9658 block_input ();
9660 if (!x_initialized)
9662 x_initialize ();
9663 ++x_initialized;
9666 if (! x_display_ok (SSDATA (display_name)))
9667 error ("Display %s can't be opened", SSDATA (display_name));
9669 #ifdef USE_GTK
9671 #define NUM_ARGV 10
9672 int argc;
9673 char *argv[NUM_ARGV];
9674 char **argv2 = argv;
9675 guint id;
9677 if (x_initialized++ > 1)
9679 xg_display_open (SSDATA (display_name), &dpy);
9681 else
9683 static char display_opt[] = "--display";
9684 static char name_opt[] = "--name";
9686 for (argc = 0; argc < NUM_ARGV; ++argc)
9687 argv[argc] = 0;
9689 argc = 0;
9690 argv[argc++] = initial_argv[0];
9692 if (! NILP (display_name))
9694 argv[argc++] = display_opt;
9695 argv[argc++] = SSDATA (display_name);
9698 argv[argc++] = name_opt;
9699 argv[argc++] = resource_name;
9701 XSetLocaleModifiers ("");
9703 /* Emacs can only handle core input events, so make sure
9704 Gtk doesn't use Xinput or Xinput2 extensions. */
9705 xputenv ("GDK_CORE_DEVICE_EVENTS=1");
9707 /* Work around GLib bug that outputs a faulty warning. See
9708 https://bugzilla.gnome.org/show_bug.cgi?id=563627. */
9709 id = g_log_set_handler ("GLib", G_LOG_LEVEL_WARNING | G_LOG_FLAG_FATAL
9710 | G_LOG_FLAG_RECURSION, my_log_handler, NULL);
9712 /* NULL window -> events for all windows go to our function.
9713 Call before gtk_init so Gtk+ event filters comes after our. */
9714 gdk_window_add_filter (NULL, event_handler_gdk, NULL);
9716 /* gtk_init does set_locale. Fix locale before and after. */
9717 fixup_locale ();
9718 gtk_init (&argc, &argv2);
9719 fixup_locale ();
9721 g_log_remove_handler ("GLib", id);
9723 xg_initialize ();
9725 dpy = DEFAULT_GDK_DISPLAY ();
9727 #if ! GTK_CHECK_VERSION (2, 90, 0)
9728 /* Load our own gtkrc if it exists. */
9730 const char *file = "~/.emacs.d/gtkrc";
9731 Lisp_Object s, abs_file;
9733 s = build_string (file);
9734 abs_file = Fexpand_file_name (s, Qnil);
9736 if (! NILP (abs_file) && !NILP (Ffile_readable_p (abs_file)))
9737 gtk_rc_parse (SSDATA (abs_file));
9739 #endif
9741 XSetErrorHandler (x_error_handler);
9742 XSetIOErrorHandler (x_io_error_quitter);
9745 #else /* not USE_GTK */
9746 #ifdef USE_X_TOOLKIT
9747 /* weiner@footloose.sps.mot.com reports that this causes
9748 errors with X11R5:
9749 X protocol error: BadAtom (invalid Atom parameter)
9750 on protocol request 18skiloaf.
9751 So let's not use it until R6. */
9752 #ifdef HAVE_X11XTR6
9753 XtSetLanguageProc (NULL, NULL, NULL);
9754 #endif
9757 int argc = 0;
9758 char *argv[3];
9760 argv[0] = "";
9761 argc = 1;
9762 if (xrm_option)
9764 argv[argc++] = "-xrm";
9765 argv[argc++] = xrm_option;
9767 turn_on_atimers (0);
9768 dpy = XtOpenDisplay (Xt_app_con, SSDATA (display_name),
9769 resource_name, EMACS_CLASS,
9770 emacs_options, XtNumber (emacs_options),
9771 &argc, argv);
9772 turn_on_atimers (1);
9774 #ifdef HAVE_X11XTR6
9775 /* I think this is to compensate for XtSetLanguageProc. */
9776 fixup_locale ();
9777 #endif
9780 #else /* not USE_X_TOOLKIT */
9781 XSetLocaleModifiers ("");
9782 dpy = XOpenDisplay (SSDATA (display_name));
9783 #endif /* not USE_X_TOOLKIT */
9784 #endif /* not USE_GTK*/
9786 /* Detect failure. */
9787 if (dpy == 0)
9789 unblock_input ();
9790 return 0;
9793 /* We have definitely succeeded. Record the new connection. */
9795 dpyinfo = xzalloc (sizeof *dpyinfo);
9796 terminal = x_create_terminal (dpyinfo);
9799 struct x_display_info *share;
9801 for (share = x_display_list; share; share = share->next)
9802 if (same_x_server (SSDATA (XCAR (share->name_list_element)),
9803 SSDATA (display_name)))
9804 break;
9805 if (share)
9806 terminal->kboard = share->terminal->kboard;
9807 else
9809 terminal->kboard = allocate_kboard (Qx);
9811 if (!EQ (XSYMBOL (Qvendor_specific_keysyms)->function, Qunbound))
9813 char *vendor = ServerVendor (dpy);
9815 /* Protect terminal from GC before removing it from the
9816 list of terminals. */
9817 struct gcpro gcpro1;
9818 Lisp_Object gcpro_term;
9819 XSETTERMINAL (gcpro_term, terminal);
9820 GCPRO1 (gcpro_term);
9822 /* Temporarily hide the partially initialized terminal. */
9823 terminal_list = terminal->next_terminal;
9824 unblock_input ();
9825 kset_system_key_alist
9826 (terminal->kboard,
9827 call1 (Qvendor_specific_keysyms,
9828 vendor ? build_string (vendor) : empty_unibyte_string));
9829 block_input ();
9830 terminal->next_terminal = terminal_list;
9831 terminal_list = terminal;
9832 UNGCPRO;
9835 /* Don't let the initial kboard remain current longer than necessary.
9836 That would cause problems if a file loaded on startup tries to
9837 prompt in the mini-buffer. */
9838 if (current_kboard == initial_kboard)
9839 current_kboard = terminal->kboard;
9841 terminal->kboard->reference_count++;
9844 /* Put this display on the chain. */
9845 dpyinfo->next = x_display_list;
9846 x_display_list = dpyinfo;
9848 dpyinfo->name_list_element = Fcons (display_name, Qnil);
9849 dpyinfo->display = dpy;
9851 /* Set the name of the terminal. */
9852 terminal->name = xlispstrdup (display_name);
9854 #if 0
9855 XSetAfterFunction (x_current_display, x_trace_wire);
9856 #endif /* ! 0 */
9858 lim = min (PTRDIFF_MAX, SIZE_MAX) - sizeof "@";
9859 if (lim - SBYTES (Vinvocation_name) < SBYTES (Vsystem_name))
9860 memory_full (SIZE_MAX);
9861 dpyinfo->x_id_name = xmalloc (SBYTES (Vinvocation_name)
9862 + SBYTES (Vsystem_name) + 2);
9863 strcat (strcat (strcpy (dpyinfo->x_id_name, SSDATA (Vinvocation_name)), "@"),
9864 SSDATA (Vsystem_name));
9866 /* Figure out which modifier bits mean what. */
9867 x_find_modifier_meanings (dpyinfo);
9869 /* Get the scroll bar cursor. */
9870 #ifdef USE_GTK
9871 /* We must create a GTK cursor, it is required for GTK widgets. */
9872 dpyinfo->xg_cursor = xg_create_default_cursor (dpyinfo->display);
9873 #endif /* USE_GTK */
9875 dpyinfo->vertical_scroll_bar_cursor
9876 = XCreateFontCursor (dpyinfo->display, XC_sb_v_double_arrow);
9878 xrdb = x_load_resources (dpyinfo->display, xrm_option,
9879 resource_name, EMACS_CLASS);
9880 #ifdef HAVE_XRMSETDATABASE
9881 XrmSetDatabase (dpyinfo->display, xrdb);
9882 #else
9883 dpyinfo->display->db = xrdb;
9884 #endif
9885 /* Put the rdb where we can find it in a way that works on
9886 all versions. */
9887 dpyinfo->xrdb = xrdb;
9889 dpyinfo->screen = ScreenOfDisplay (dpyinfo->display,
9890 DefaultScreen (dpyinfo->display));
9891 select_visual (dpyinfo);
9892 dpyinfo->cmap = DefaultColormapOfScreen (dpyinfo->screen);
9893 dpyinfo->root_window = RootWindowOfScreen (dpyinfo->screen);
9894 dpyinfo->icon_bitmap_id = -1;
9895 dpyinfo->wm_type = X_WMTYPE_UNKNOWN;
9897 reset_mouse_highlight (&dpyinfo->mouse_highlight);
9899 /* See if we can construct pixel values from RGB values. */
9900 if (dpyinfo->visual->class == TrueColor)
9902 get_bits_and_offset (dpyinfo->visual->red_mask,
9903 &dpyinfo->red_bits, &dpyinfo->red_offset);
9904 get_bits_and_offset (dpyinfo->visual->blue_mask,
9905 &dpyinfo->blue_bits, &dpyinfo->blue_offset);
9906 get_bits_and_offset (dpyinfo->visual->green_mask,
9907 &dpyinfo->green_bits, &dpyinfo->green_offset);
9910 /* See if a private colormap is requested. */
9911 if (dpyinfo->visual == DefaultVisualOfScreen (dpyinfo->screen))
9913 if (dpyinfo->visual->class == PseudoColor)
9915 Lisp_Object value;
9916 value = display_x_get_resource (dpyinfo,
9917 build_string ("privateColormap"),
9918 build_string ("PrivateColormap"),
9919 Qnil, Qnil);
9920 if (STRINGP (value)
9921 && (!strcmp (SSDATA (value), "true")
9922 || !strcmp (SSDATA (value), "on")))
9923 dpyinfo->cmap = XCopyColormapAndFree (dpyinfo->display, dpyinfo->cmap);
9926 else
9927 dpyinfo->cmap = XCreateColormap (dpyinfo->display, dpyinfo->root_window,
9928 dpyinfo->visual, AllocNone);
9930 #ifdef HAVE_XFT
9932 /* If we are using Xft, check dpi value in X resources.
9933 It is better we use it as well, since Xft will use it, as will all
9934 Gnome applications. If our real DPI is smaller or larger than the
9935 one Xft uses, our font will look smaller or larger than other
9936 for other applications, even if it is the same font name (monospace-10
9937 for example). */
9938 char *v = XGetDefault (dpyinfo->display, "Xft", "dpi");
9939 double d;
9940 if (v != NULL && sscanf (v, "%lf", &d) == 1)
9941 dpyinfo->resy = dpyinfo->resx = d;
9943 #endif
9945 if (dpyinfo->resy < 1)
9947 int screen_number = XScreenNumberOfScreen (dpyinfo->screen);
9948 double pixels = DisplayHeight (dpyinfo->display, screen_number);
9949 double mm = DisplayHeightMM (dpyinfo->display, screen_number);
9950 /* Mac OS X 10.3's Xserver sometimes reports 0.0mm. */
9951 dpyinfo->resy = (mm < 1) ? 100 : pixels * 25.4 / mm;
9952 pixels = DisplayWidth (dpyinfo->display, screen_number);
9953 mm = DisplayWidthMM (dpyinfo->display, screen_number);
9954 /* Mac OS X 10.3's Xserver sometimes reports 0.0mm. */
9955 dpyinfo->resx = (mm < 1) ? 100 : pixels * 25.4 / mm;
9959 static const struct
9961 const char *name;
9962 int offset;
9963 } atom_refs[] = {
9964 #define ATOM_REFS_INIT(string, member) \
9965 { string, offsetof (struct x_display_info, member) },
9966 ATOM_REFS_INIT ("WM_PROTOCOLS", Xatom_wm_protocols)
9967 ATOM_REFS_INIT ("WM_TAKE_FOCUS", Xatom_wm_take_focus)
9968 ATOM_REFS_INIT ("WM_SAVE_YOURSELF", Xatom_wm_save_yourself)
9969 ATOM_REFS_INIT ("WM_DELETE_WINDOW", Xatom_wm_delete_window)
9970 ATOM_REFS_INIT ("WM_CHANGE_STATE", Xatom_wm_change_state)
9971 ATOM_REFS_INIT ("WM_CONFIGURE_DENIED", Xatom_wm_configure_denied)
9972 ATOM_REFS_INIT ("WM_MOVED", Xatom_wm_window_moved)
9973 ATOM_REFS_INIT ("WM_CLIENT_LEADER", Xatom_wm_client_leader)
9974 ATOM_REFS_INIT ("Editres", Xatom_editres)
9975 ATOM_REFS_INIT ("CLIPBOARD", Xatom_CLIPBOARD)
9976 ATOM_REFS_INIT ("TIMESTAMP", Xatom_TIMESTAMP)
9977 ATOM_REFS_INIT ("TEXT", Xatom_TEXT)
9978 ATOM_REFS_INIT ("COMPOUND_TEXT", Xatom_COMPOUND_TEXT)
9979 ATOM_REFS_INIT ("UTF8_STRING", Xatom_UTF8_STRING)
9980 ATOM_REFS_INIT ("DELETE", Xatom_DELETE)
9981 ATOM_REFS_INIT ("MULTIPLE", Xatom_MULTIPLE)
9982 ATOM_REFS_INIT ("INCR", Xatom_INCR)
9983 ATOM_REFS_INIT ("_EMACS_TMP_", Xatom_EMACS_TMP)
9984 ATOM_REFS_INIT ("TARGETS", Xatom_TARGETS)
9985 ATOM_REFS_INIT ("NULL", Xatom_NULL)
9986 ATOM_REFS_INIT ("ATOM", Xatom_ATOM)
9987 ATOM_REFS_INIT ("ATOM_PAIR", Xatom_ATOM_PAIR)
9988 ATOM_REFS_INIT ("CLIPBOARD_MANAGER", Xatom_CLIPBOARD_MANAGER)
9989 ATOM_REFS_INIT ("_XEMBED_INFO", Xatom_XEMBED_INFO)
9990 /* For properties of font. */
9991 ATOM_REFS_INIT ("PIXEL_SIZE", Xatom_PIXEL_SIZE)
9992 ATOM_REFS_INIT ("AVERAGE_WIDTH", Xatom_AVERAGE_WIDTH)
9993 ATOM_REFS_INIT ("_MULE_BASELINE_OFFSET", Xatom_MULE_BASELINE_OFFSET)
9994 ATOM_REFS_INIT ("_MULE_RELATIVE_COMPOSE", Xatom_MULE_RELATIVE_COMPOSE)
9995 ATOM_REFS_INIT ("_MULE_DEFAULT_ASCENT", Xatom_MULE_DEFAULT_ASCENT)
9996 /* Ghostscript support. */
9997 ATOM_REFS_INIT ("DONE", Xatom_DONE)
9998 ATOM_REFS_INIT ("PAGE", Xatom_PAGE)
9999 ATOM_REFS_INIT ("SCROLLBAR", Xatom_Scrollbar)
10000 ATOM_REFS_INIT ("_XEMBED", Xatom_XEMBED)
10001 /* EWMH */
10002 ATOM_REFS_INIT ("_NET_WM_STATE", Xatom_net_wm_state)
10003 ATOM_REFS_INIT ("_NET_WM_STATE_FULLSCREEN", Xatom_net_wm_state_fullscreen)
10004 ATOM_REFS_INIT ("_NET_WM_STATE_MAXIMIZED_HORZ",
10005 Xatom_net_wm_state_maximized_horz)
10006 ATOM_REFS_INIT ("_NET_WM_STATE_MAXIMIZED_VERT",
10007 Xatom_net_wm_state_maximized_vert)
10008 ATOM_REFS_INIT ("_NET_WM_STATE_STICKY", Xatom_net_wm_state_sticky)
10009 ATOM_REFS_INIT ("_NET_WM_STATE_HIDDEN", Xatom_net_wm_state_hidden)
10010 ATOM_REFS_INIT ("_NET_WM_WINDOW_TYPE", Xatom_net_window_type)
10011 ATOM_REFS_INIT ("_NET_WM_WINDOW_TYPE_TOOLTIP",
10012 Xatom_net_window_type_tooltip)
10013 ATOM_REFS_INIT ("_NET_WM_ICON_NAME", Xatom_net_wm_icon_name)
10014 ATOM_REFS_INIT ("_NET_WM_NAME", Xatom_net_wm_name)
10015 ATOM_REFS_INIT ("_NET_SUPPORTED", Xatom_net_supported)
10016 ATOM_REFS_INIT ("_NET_SUPPORTING_WM_CHECK", Xatom_net_supporting_wm_check)
10017 ATOM_REFS_INIT ("_NET_WM_WINDOW_OPACITY", Xatom_net_wm_window_opacity)
10018 ATOM_REFS_INIT ("_NET_ACTIVE_WINDOW", Xatom_net_active_window)
10019 ATOM_REFS_INIT ("_NET_FRAME_EXTENTS", Xatom_net_frame_extents)
10020 ATOM_REFS_INIT ("_NET_CURRENT_DESKTOP", Xatom_net_current_desktop)
10021 ATOM_REFS_INIT ("_NET_WORKAREA", Xatom_net_workarea)
10022 /* Session management */
10023 ATOM_REFS_INIT ("SM_CLIENT_ID", Xatom_SM_CLIENT_ID)
10024 ATOM_REFS_INIT ("_XSETTINGS_SETTINGS", Xatom_xsettings_prop)
10025 ATOM_REFS_INIT ("MANAGER", Xatom_xsettings_mgr)
10028 int i;
10029 const int atom_count = sizeof (atom_refs) / sizeof (atom_refs[0]);
10030 /* 1 for _XSETTINGS_SN */
10031 const int total_atom_count = 1 + atom_count;
10032 Atom *atoms_return = xmalloc (total_atom_count * sizeof *atoms_return);
10033 char **atom_names = xmalloc (total_atom_count * sizeof *atom_names);
10034 static char const xsettings_fmt[] = "_XSETTINGS_S%d";
10035 char xsettings_atom_name[sizeof xsettings_fmt - 2
10036 + INT_STRLEN_BOUND (int)];
10038 for (i = 0; i < atom_count; i++)
10039 atom_names[i] = (char *) atom_refs[i].name;
10041 /* Build _XSETTINGS_SN atom name */
10042 sprintf (xsettings_atom_name, xsettings_fmt,
10043 XScreenNumberOfScreen (dpyinfo->screen));
10044 atom_names[i] = xsettings_atom_name;
10046 XInternAtoms (dpyinfo->display, atom_names, total_atom_count,
10047 False, atoms_return);
10049 for (i = 0; i < atom_count; i++)
10050 *(Atom *) ((char *) dpyinfo + atom_refs[i].offset) = atoms_return[i];
10052 /* Manual copy of last atom */
10053 dpyinfo->Xatom_xsettings_sel = atoms_return[i];
10055 xfree (atom_names);
10056 xfree (atoms_return);
10059 dpyinfo->x_dnd_atoms_size = 8;
10060 dpyinfo->x_dnd_atoms = xmalloc (sizeof *dpyinfo->x_dnd_atoms
10061 * dpyinfo->x_dnd_atoms_size);
10062 dpyinfo->gray
10063 = XCreatePixmapFromBitmapData (dpyinfo->display, dpyinfo->root_window,
10064 gray_bits, gray_width, gray_height,
10065 1, 0, 1);
10067 #ifdef HAVE_X_I18N
10068 xim_initialize (dpyinfo, resource_name);
10069 #endif
10071 xsettings_initialize (dpyinfo);
10073 connection = ConnectionNumber (dpyinfo->display);
10075 /* This is only needed for distinguishing keyboard and process input. */
10076 if (connection != 0)
10077 add_keyboard_wait_descriptor (connection);
10079 #ifdef F_SETOWN
10080 fcntl (connection, F_SETOWN, getpid ());
10081 #endif /* ! defined (F_SETOWN) */
10083 if (interrupt_input)
10084 init_sigio (connection);
10086 #ifdef USE_LUCID
10088 XrmValue d, fr, to;
10089 Font font;
10091 dpy = dpyinfo->display;
10092 d.addr = (XPointer)&dpy;
10093 d.size = sizeof (Display *);
10094 fr.addr = XtDefaultFont;
10095 fr.size = sizeof (XtDefaultFont);
10096 to.size = sizeof (Font *);
10097 to.addr = (XPointer)&font;
10098 x_catch_errors (dpy);
10099 if (!XtCallConverter (dpy, XtCvtStringToFont, &d, 1, &fr, &to, NULL))
10100 emacs_abort ();
10101 if (x_had_errors_p (dpy) || !XQueryFont (dpy, font))
10102 XrmPutLineResource (&xrdb, "Emacs.dialog.*.font: 9x15");
10103 x_uncatch_errors ();
10105 #endif
10107 /* See if we should run in synchronous mode. This is useful
10108 for debugging X code. */
10110 Lisp_Object value;
10111 value = display_x_get_resource (dpyinfo,
10112 build_string ("synchronous"),
10113 build_string ("Synchronous"),
10114 Qnil, Qnil);
10115 if (STRINGP (value)
10116 && (!strcmp (SSDATA (value), "true")
10117 || !strcmp (SSDATA (value), "on")))
10118 XSynchronize (dpyinfo->display, True);
10122 Lisp_Object value;
10123 value = display_x_get_resource (dpyinfo,
10124 build_string ("useXIM"),
10125 build_string ("UseXIM"),
10126 Qnil, Qnil);
10127 #ifdef USE_XIM
10128 if (STRINGP (value)
10129 && (!strcmp (SSDATA (value), "false")
10130 || !strcmp (SSDATA (value), "off")))
10131 use_xim = false;
10132 #else
10133 if (STRINGP (value)
10134 && (!strcmp (SSDATA (value), "true")
10135 || !strcmp (SSDATA (value), "on")))
10136 use_xim = true;
10137 #endif
10140 #ifdef HAVE_X_SM
10141 /* Only do this for the very first display in the Emacs session.
10142 Ignore X session management when Emacs was first started on a
10143 tty. */
10144 if (terminal->id == 1)
10145 x_session_initialize (dpyinfo);
10146 #endif
10148 unblock_input ();
10150 return dpyinfo;
10153 /* Get rid of display DPYINFO, deleting all frames on it,
10154 and without sending any more commands to the X server. */
10156 static void
10157 x_delete_display (struct x_display_info *dpyinfo)
10159 struct terminal *t;
10161 /* Close all frames and delete the generic struct terminal for this
10162 X display. */
10163 for (t = terminal_list; t; t = t->next_terminal)
10164 if (t->type == output_x_window && t->display_info.x == dpyinfo)
10166 #ifdef HAVE_X_SM
10167 /* Close X session management when we close its display. */
10168 if (t->id == 1 && x_session_have_connection ())
10169 x_session_close ();
10170 #endif
10171 delete_terminal (t);
10172 break;
10175 if (next_noop_dpyinfo == dpyinfo)
10176 next_noop_dpyinfo = dpyinfo->next;
10178 if (x_display_list == dpyinfo)
10179 x_display_list = dpyinfo->next;
10180 else
10182 struct x_display_info *tail;
10184 for (tail = x_display_list; tail; tail = tail->next)
10185 if (tail->next == dpyinfo)
10186 tail->next = tail->next->next;
10189 xfree (dpyinfo->x_id_name);
10190 xfree (dpyinfo->x_dnd_atoms);
10191 xfree (dpyinfo->color_cells);
10192 xfree (dpyinfo);
10195 #ifdef USE_X_TOOLKIT
10197 /* Atimer callback function for TIMER. Called every 0.1s to process
10198 Xt timeouts, if needed. We must avoid calling XtAppPending as
10199 much as possible because that function does an implicit XFlush
10200 that slows us down. */
10202 static void
10203 x_process_timeouts (struct atimer *timer)
10205 block_input ();
10206 x_timeout_atimer_activated_flag = 0;
10207 if (toolkit_scroll_bar_interaction || popup_activated ())
10209 while (XtAppPending (Xt_app_con) & XtIMTimer)
10210 XtAppProcessEvent (Xt_app_con, XtIMTimer);
10211 /* Reactivate the atimer for next time. */
10212 x_activate_timeout_atimer ();
10214 unblock_input ();
10217 /* Install an asynchronous timer that processes Xt timeout events
10218 every 0.1s as long as either `toolkit_scroll_bar_interaction' or
10219 `popup_activated_flag' (in xmenu.c) is set. Make sure to call this
10220 function whenever these variables are set. This is necessary
10221 because some widget sets use timeouts internally, for example the
10222 LessTif menu bar, or the Xaw3d scroll bar. When Xt timeouts aren't
10223 processed, these widgets don't behave normally. */
10225 void
10226 x_activate_timeout_atimer (void)
10228 block_input ();
10229 if (!x_timeout_atimer_activated_flag)
10231 struct timespec interval = make_timespec (0, 100 * 1000 * 1000);
10232 start_atimer (ATIMER_RELATIVE, interval, x_process_timeouts, 0);
10233 x_timeout_atimer_activated_flag = 1;
10235 unblock_input ();
10238 #endif /* USE_X_TOOLKIT */
10241 /* Set up use of X before we make the first connection. */
10243 static struct redisplay_interface x_redisplay_interface =
10245 x_frame_parm_handlers,
10246 x_produce_glyphs,
10247 x_write_glyphs,
10248 x_insert_glyphs,
10249 x_clear_end_of_line,
10250 x_scroll_run,
10251 x_after_update_window_line,
10252 x_update_window_begin,
10253 x_update_window_end,
10254 x_flush,
10255 x_clear_window_mouse_face,
10256 x_get_glyph_overhangs,
10257 x_fix_overlapping_area,
10258 x_draw_fringe_bitmap,
10259 0, /* define_fringe_bitmap */
10260 0, /* destroy_fringe_bitmap */
10261 x_compute_glyph_string_overhangs,
10262 x_draw_glyph_string,
10263 x_define_frame_cursor,
10264 x_clear_frame_area,
10265 x_draw_window_cursor,
10266 x_draw_vertical_window_border,
10267 x_draw_window_divider,
10268 x_shift_glyphs_for_insert
10272 /* This function is called when the last frame on a display is deleted. */
10273 void
10274 x_delete_terminal (struct terminal *terminal)
10276 struct x_display_info *dpyinfo = terminal->display_info.x;
10277 int connection = -1;
10279 /* Protect against recursive calls. delete_frame in
10280 delete_terminal calls us back when it deletes our last frame. */
10281 if (!terminal->name)
10282 return;
10284 block_input ();
10285 #ifdef HAVE_X_I18N
10286 /* We must close our connection to the XIM server before closing the
10287 X display. */
10288 if (dpyinfo->xim)
10289 xim_close_dpy (dpyinfo);
10290 #endif
10292 /* If called from x_connection_closed, the display may already be closed
10293 and dpyinfo->display was set to 0 to indicate that. */
10294 if (dpyinfo->display)
10296 connection = ConnectionNumber (dpyinfo->display);
10298 x_destroy_all_bitmaps (dpyinfo);
10299 XSetCloseDownMode (dpyinfo->display, DestroyAll);
10301 /* Whether or not XCloseDisplay destroys the associated resource
10302 database depends on the version of libX11. To avoid both
10303 crash and memory leak, we dissociate the database from the
10304 display and then destroy dpyinfo->xrdb ourselves.
10306 Unfortunately, the above strategy does not work in some
10307 situations due to a bug in newer versions of libX11: because
10308 XrmSetDatabase doesn't clear the flag XlibDisplayDfltRMDB if
10309 dpy->db is NULL, XCloseDisplay destroys the associated
10310 database whereas it has not been created by XGetDefault
10311 (Bug#21974 in freedesktop.org Bugzilla). As a workaround, we
10312 don't destroy the database here in order to avoid the crash
10313 in the above situations for now, though that may cause memory
10314 leaks in other situations. */
10315 #if 0
10316 #ifdef HAVE_XRMSETDATABASE
10317 XrmSetDatabase (dpyinfo->display, NULL);
10318 #else
10319 dpyinfo->display->db = NULL;
10320 #endif
10321 /* We used to call XrmDestroyDatabase from x_delete_display, but
10322 some older versions of libX11 crash if we call it after
10323 closing all the displays. */
10324 XrmDestroyDatabase (dpyinfo->xrdb);
10325 #endif
10327 #ifdef USE_GTK
10328 xg_display_close (dpyinfo->display);
10329 #else
10330 #ifdef USE_X_TOOLKIT
10331 XtCloseDisplay (dpyinfo->display);
10332 #else
10333 XCloseDisplay (dpyinfo->display);
10334 #endif
10335 #endif /* ! USE_GTK */
10338 /* No more input on this descriptor. */
10339 if (connection != -1)
10340 delete_keyboard_wait_descriptor (connection);
10342 /* Mark as dead. */
10343 dpyinfo->display = NULL;
10344 x_delete_display (dpyinfo);
10345 unblock_input ();
10348 /* Create a struct terminal, initialize it with the X11 specific
10349 functions and make DISPLAY->TERMINAL point to it. */
10351 static struct terminal *
10352 x_create_terminal (struct x_display_info *dpyinfo)
10354 struct terminal *terminal;
10356 terminal = create_terminal ();
10358 terminal->type = output_x_window;
10359 terminal->display_info.x = dpyinfo;
10360 dpyinfo->terminal = terminal;
10362 /* kboard is initialized in x_term_init. */
10364 terminal->clear_frame_hook = x_clear_frame;
10365 terminal->ins_del_lines_hook = x_ins_del_lines;
10366 terminal->delete_glyphs_hook = x_delete_glyphs;
10367 terminal->ring_bell_hook = XTring_bell;
10368 terminal->toggle_invisible_pointer_hook = XTtoggle_invisible_pointer;
10369 terminal->reset_terminal_modes_hook = NULL;
10370 terminal->set_terminal_modes_hook = NULL;
10371 terminal->update_begin_hook = x_update_begin;
10372 terminal->update_end_hook = x_update_end;
10373 terminal->set_terminal_window_hook = NULL;
10374 terminal->read_socket_hook = XTread_socket;
10375 terminal->frame_up_to_date_hook = XTframe_up_to_date;
10376 terminal->mouse_position_hook = XTmouse_position;
10377 terminal->frame_rehighlight_hook = XTframe_rehighlight;
10378 terminal->frame_raise_lower_hook = XTframe_raise_lower;
10379 terminal->fullscreen_hook = XTfullscreen_hook;
10380 terminal->set_vertical_scroll_bar_hook = XTset_vertical_scroll_bar;
10381 terminal->condemn_scroll_bars_hook = XTcondemn_scroll_bars;
10382 terminal->redeem_scroll_bar_hook = XTredeem_scroll_bar;
10383 terminal->judge_scroll_bars_hook = XTjudge_scroll_bars;
10385 terminal->delete_frame_hook = x_destroy_window;
10386 terminal->delete_terminal_hook = x_delete_terminal;
10388 terminal->rif = &x_redisplay_interface;
10390 return terminal;
10393 void
10394 x_initialize (void)
10396 baud_rate = 19200;
10398 x_noop_count = 0;
10399 last_tool_bar_item = -1;
10400 any_help_event_p = 0;
10401 ignore_next_mouse_click_timeout = 0;
10403 #ifdef USE_GTK
10404 current_count = -1;
10405 #endif
10407 /* Try to use interrupt input; if we can't, then start polling. */
10408 Fset_input_interrupt_mode (Qt);
10410 #ifdef USE_X_TOOLKIT
10411 XtToolkitInitialize ();
10413 Xt_app_con = XtCreateApplicationContext ();
10415 /* Register a converter from strings to pixels, which uses
10416 Emacs' color allocation infrastructure. */
10417 XtAppSetTypeConverter (Xt_app_con,
10418 XtRString, XtRPixel, cvt_string_to_pixel,
10419 cvt_string_to_pixel_args,
10420 XtNumber (cvt_string_to_pixel_args),
10421 XtCacheByDisplay, cvt_pixel_dtor);
10423 XtAppSetFallbackResources (Xt_app_con, Xt_default_resources);
10424 #endif
10426 #ifdef USE_TOOLKIT_SCROLL_BARS
10427 #ifndef USE_GTK
10428 xaw3d_arrow_scroll = False;
10429 xaw3d_pick_top = True;
10430 #endif
10431 #endif
10433 /* Note that there is no real way portable across R3/R4 to get the
10434 original error handler. */
10435 XSetErrorHandler (x_error_handler);
10436 XSetIOErrorHandler (x_io_error_quitter);
10440 void
10441 syms_of_xterm (void)
10443 x_error_message = NULL;
10445 DEFSYM (Qvendor_specific_keysyms, "vendor-specific-keysyms");
10446 DEFSYM (Qlatin_1, "latin-1");
10448 #ifdef USE_GTK
10449 xg_default_icon_file = build_pure_c_string ("icons/hicolor/scalable/apps/emacs.svg");
10450 staticpro (&xg_default_icon_file);
10452 DEFSYM (Qx_gtk_map_stock, "x-gtk-map-stock");
10453 #endif
10455 DEFVAR_BOOL ("x-use-underline-position-properties",
10456 x_use_underline_position_properties,
10457 doc: /* Non-nil means make use of UNDERLINE_POSITION font properties.
10458 A value of nil means ignore them. If you encounter fonts with bogus
10459 UNDERLINE_POSITION font properties, for example 7x13 on XFree prior
10460 to 4.1, set this to nil. You can also use `underline-minimum-offset'
10461 to override the font's UNDERLINE_POSITION for small font display
10462 sizes. */);
10463 x_use_underline_position_properties = 1;
10465 DEFVAR_BOOL ("x-underline-at-descent-line",
10466 x_underline_at_descent_line,
10467 doc: /* Non-nil means to draw the underline at the same place as the descent line.
10468 A value of nil means to draw the underline according to the value of the
10469 variable `x-use-underline-position-properties', which is usually at the
10470 baseline level. The default value is nil. */);
10471 x_underline_at_descent_line = 0;
10473 DEFVAR_BOOL ("x-mouse-click-focus-ignore-position",
10474 x_mouse_click_focus_ignore_position,
10475 doc: /* Non-nil means that a mouse click to focus a frame does not move point.
10476 This variable is only used when the window manager requires that you
10477 click on a frame to select it (give it focus). In that case, a value
10478 of nil, means that the selected window and cursor position changes to
10479 reflect the mouse click position, while a non-nil value means that the
10480 selected window or cursor position is preserved. */);
10481 x_mouse_click_focus_ignore_position = 0;
10483 DEFVAR_LISP ("x-toolkit-scroll-bars", Vx_toolkit_scroll_bars,
10484 doc: /* Which toolkit scroll bars Emacs uses, if any.
10485 A value of nil means Emacs doesn't use toolkit scroll bars.
10486 With the X Window system, the value is a symbol describing the
10487 X toolkit. Possible values are: gtk, motif, xaw, or xaw3d.
10488 With MS Windows or Nextstep, the value is t. */);
10489 #ifdef USE_TOOLKIT_SCROLL_BARS
10490 #ifdef USE_MOTIF
10491 Vx_toolkit_scroll_bars = intern_c_string ("motif");
10492 #elif defined HAVE_XAW3D
10493 Vx_toolkit_scroll_bars = intern_c_string ("xaw3d");
10494 #elif USE_GTK
10495 Vx_toolkit_scroll_bars = intern_c_string ("gtk");
10496 #else
10497 Vx_toolkit_scroll_bars = intern_c_string ("xaw");
10498 #endif
10499 #else
10500 Vx_toolkit_scroll_bars = Qnil;
10501 #endif
10503 DEFSYM (Qmodifier_value, "modifier-value");
10504 DEFSYM (Qalt, "alt");
10505 Fput (Qalt, Qmodifier_value, make_number (alt_modifier));
10506 DEFSYM (Qhyper, "hyper");
10507 Fput (Qhyper, Qmodifier_value, make_number (hyper_modifier));
10508 DEFSYM (Qmeta, "meta");
10509 Fput (Qmeta, Qmodifier_value, make_number (meta_modifier));
10510 DEFSYM (Qsuper, "super");
10511 Fput (Qsuper, Qmodifier_value, make_number (super_modifier));
10513 DEFVAR_LISP ("x-alt-keysym", Vx_alt_keysym,
10514 doc: /* Which keys Emacs uses for the alt modifier.
10515 This should be one of the symbols `alt', `hyper', `meta', `super'.
10516 For example, `alt' means use the Alt_L and Alt_R keysyms. The default
10517 is nil, which is the same as `alt'. */);
10518 Vx_alt_keysym = Qnil;
10520 DEFVAR_LISP ("x-hyper-keysym", Vx_hyper_keysym,
10521 doc: /* Which keys Emacs uses for the hyper modifier.
10522 This should be one of the symbols `alt', `hyper', `meta', `super'.
10523 For example, `hyper' means use the Hyper_L and Hyper_R keysyms. The
10524 default is nil, which is the same as `hyper'. */);
10525 Vx_hyper_keysym = Qnil;
10527 DEFVAR_LISP ("x-meta-keysym", Vx_meta_keysym,
10528 doc: /* Which keys Emacs uses for the meta modifier.
10529 This should be one of the symbols `alt', `hyper', `meta', `super'.
10530 For example, `meta' means use the Meta_L and Meta_R keysyms. The
10531 default is nil, which is the same as `meta'. */);
10532 Vx_meta_keysym = Qnil;
10534 DEFVAR_LISP ("x-super-keysym", Vx_super_keysym,
10535 doc: /* Which keys Emacs uses for the super modifier.
10536 This should be one of the symbols `alt', `hyper', `meta', `super'.
10537 For example, `super' means use the Super_L and Super_R keysyms. The
10538 default is nil, which is the same as `super'. */);
10539 Vx_super_keysym = Qnil;
10541 DEFVAR_LISP ("x-keysym-table", Vx_keysym_table,
10542 doc: /* Hash table of character codes indexed by X keysym codes. */);
10543 Vx_keysym_table = make_hash_table (hashtest_eql, make_number (900),
10544 make_float (DEFAULT_REHASH_SIZE),
10545 make_float (DEFAULT_REHASH_THRESHOLD),
10546 Qnil);