Fix bug #15064 with assertion violation due to mouse face.
[emacs.git] / src / xterm.c
blobdb5ca1a1fbb221c0aef27d3af9daa9b2c9124fbf
1 /* X Communication module for terminals which understand the X protocol.
3 Copyright (C) 1989, 1993-2013 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 #ifdef HAVE_X_WINDOWS
28 #include "lisp.h"
29 #include "blockinput.h"
30 #include "syssignal.h"
32 /* This may include sys/types.h, and that somehow loses
33 if this is not done before the other system files. */
34 #include "xterm.h"
35 #include <X11/cursorfont.h>
37 /* Load sys/types.h if not already loaded.
38 In some systems loading it twice is suicidal. */
39 #ifndef makedev
40 #include <sys/types.h>
41 #endif /* makedev */
43 #include <sys/ioctl.h>
45 #include "systime.h"
47 #include <fcntl.h>
48 #include <errno.h>
49 #include <sys/stat.h>
50 /* Caused redefinition of DBL_DIG on Netbsd; seems not to be needed. */
51 /* #include <sys/param.h> */
53 #include "charset.h"
54 #include "character.h"
55 #include "coding.h"
56 #include "frame.h"
57 #include "dispextern.h"
58 #include "fontset.h"
59 #include "termhooks.h"
60 #include "termopts.h"
61 #include "termchar.h"
62 #include "emacs-icon.h"
63 #include "disptab.h"
64 #include "buffer.h"
65 #include "window.h"
66 #include "keyboard.h"
67 #include "intervals.h"
68 #include "process.h"
69 #include "atimer.h"
70 #include "keymap.h"
71 #include "font.h"
72 #include "xsettings.h"
73 #include "xgselect.h"
74 #include "sysselect.h"
76 #ifdef USE_X_TOOLKIT
77 #include <X11/Shell.h>
78 #endif
80 #include <unistd.h>
82 #ifdef USE_GTK
83 #include "gtkutil.h"
84 #ifdef HAVE_GTK3
85 #include <X11/Xproto.h>
86 #endif
87 #endif
89 #ifdef USE_LUCID
90 #include "../lwlib/xlwmenu.h"
91 #endif
93 #ifdef USE_X_TOOLKIT
94 #if !defined (NO_EDITRES)
95 #define HACK_EDITRES
96 extern void _XEditResCheckMessages (Widget, XtPointer, XEvent *, Boolean *);
97 #endif /* not NO_EDITRES */
99 /* Include toolkit specific headers for the scroll bar widget. */
101 #ifdef USE_TOOLKIT_SCROLL_BARS
102 #if defined USE_MOTIF
103 #include <Xm/Xm.h> /* for LESSTIF_VERSION */
104 #include <Xm/ScrollBar.h>
105 #else /* !USE_MOTIF i.e. use Xaw */
107 #ifdef HAVE_XAW3D
108 #include <X11/Xaw3d/Simple.h>
109 #include <X11/Xaw3d/Scrollbar.h>
110 #include <X11/Xaw3d/ThreeD.h>
111 #else /* !HAVE_XAW3D */
112 #include <X11/Xaw/Simple.h>
113 #include <X11/Xaw/Scrollbar.h>
114 #endif /* !HAVE_XAW3D */
115 #ifndef XtNpickTop
116 #define XtNpickTop "pickTop"
117 #endif /* !XtNpickTop */
118 #endif /* !USE_MOTIF */
119 #endif /* USE_TOOLKIT_SCROLL_BARS */
121 #endif /* USE_X_TOOLKIT */
123 #ifdef USE_X_TOOLKIT
124 #include "widget.h"
125 #ifndef XtNinitialState
126 #define XtNinitialState "initialState"
127 #endif
128 #endif
130 #include "bitmaps/gray.xbm"
132 #ifdef HAVE_XKB
133 #include <X11/XKBlib.h>
134 #endif
136 /* Default to using XIM if available. */
137 #ifdef USE_XIM
138 int use_xim = 1;
139 #else
140 int use_xim = 0; /* configure --without-xim */
141 #endif
145 /* Non-zero means that a HELP_EVENT has been generated since Emacs
146 start. */
148 static bool any_help_event_p;
150 /* Last window where we saw the mouse. Used by mouse-autoselect-window. */
151 static Lisp_Object last_window;
153 /* This is a chain of structures for all the X displays currently in
154 use. */
156 struct x_display_info *x_display_list;
158 /* This is a list of cons cells, each of the form (NAME
159 . FONT-LIST-CACHE), one for each element of x_display_list and in
160 the same order. NAME is the name of the frame. FONT-LIST-CACHE
161 records previous values returned by x-list-fonts. */
163 Lisp_Object x_display_name_list;
165 /* This is a frame waiting to be auto-raised, within XTread_socket. */
167 static struct frame *pending_autoraise_frame;
169 /* This is a frame waiting for an event matching mask, within XTread_socket. */
171 static struct {
172 struct frame *f;
173 int eventtype;
174 } pending_event_wait;
176 #ifdef USE_X_TOOLKIT
177 /* The application context for Xt use. */
178 XtAppContext Xt_app_con;
179 static String Xt_default_resources[] = {0};
181 /* Non-zero means user is interacting with a toolkit scroll bar. */
183 static int toolkit_scroll_bar_interaction;
184 #endif /* USE_X_TOOLKIT */
186 /* Non-zero timeout value means ignore next mouse click if it arrives
187 before that timeout elapses (i.e. as part of the same sequence of
188 events resulting from clicking on a frame to select it). */
190 static unsigned long ignore_next_mouse_click_timeout;
192 /* Mouse movement.
194 Formerly, we used PointerMotionHintMask (in standard_event_mask)
195 so that we would have to call XQueryPointer after each MotionNotify
196 event to ask for another such event. However, this made mouse tracking
197 slow, and there was a bug that made it eventually stop.
199 Simply asking for MotionNotify all the time seems to work better.
201 In order to avoid asking for motion events and then throwing most
202 of them away or busy-polling the server for mouse positions, we ask
203 the server for pointer motion hints. This means that we get only
204 one event per group of mouse movements. "Groups" are delimited by
205 other kinds of events (focus changes and button clicks, for
206 example), or by XQueryPointer calls; when one of these happens, we
207 get another MotionNotify event the next time the mouse moves. This
208 is at least as efficient as getting motion events when mouse
209 tracking is on, and I suspect only negligibly worse when tracking
210 is off. */
212 /* Where the mouse was last time we reported a mouse event. */
214 static XRectangle last_mouse_glyph;
215 static struct frame *last_mouse_glyph_frame;
217 /* The scroll bar in which the last X motion event occurred.
219 If the last X motion event occurred in a scroll bar, we set this so
220 XTmouse_position can know whether to report a scroll bar motion or
221 an ordinary motion.
223 If the last X motion event didn't occur in a scroll bar, we set
224 this to Qnil, to tell XTmouse_position to return an ordinary motion
225 event. */
227 static Lisp_Object last_mouse_scroll_bar;
229 /* This is a hack. We would really prefer that XTmouse_position would
230 return the time associated with the position it returns, but there
231 doesn't seem to be any way to wrest the time-stamp from the server
232 along with the position query. So, we just keep track of the time
233 of the last movement we received, and return that in hopes that
234 it's somewhat accurate. */
236 static Time last_mouse_movement_time;
238 /* Time for last user interaction as returned in X events. */
240 static Time last_user_time;
242 /* Incremented by XTread_socket whenever it really tries to read
243 events. */
245 static int volatile input_signal_count;
247 /* Used locally within XTread_socket. */
249 static int x_noop_count;
251 static Lisp_Object Qalt, Qhyper, Qmeta, Qsuper, Qmodifier_value;
253 static Lisp_Object Qvendor_specific_keysyms;
254 static Lisp_Object Qlatin_1;
256 #ifdef USE_GTK
257 /* The name of the Emacs icon file. */
258 static Lisp_Object xg_default_icon_file;
260 /* Used in gtkutil.c. */
261 Lisp_Object Qx_gtk_map_stock;
262 #endif
264 /* Some functions take this as char *, not const char *. */
265 static char emacs_class[] = EMACS_CLASS;
267 enum xembed_info
269 XEMBED_MAPPED = 1 << 0
272 enum xembed_message
274 XEMBED_EMBEDDED_NOTIFY = 0,
275 XEMBED_WINDOW_ACTIVATE = 1,
276 XEMBED_WINDOW_DEACTIVATE = 2,
277 XEMBED_REQUEST_FOCUS = 3,
278 XEMBED_FOCUS_IN = 4,
279 XEMBED_FOCUS_OUT = 5,
280 XEMBED_FOCUS_NEXT = 6,
281 XEMBED_FOCUS_PREV = 7,
283 XEMBED_MODALITY_ON = 10,
284 XEMBED_MODALITY_OFF = 11,
285 XEMBED_REGISTER_ACCELERATOR = 12,
286 XEMBED_UNREGISTER_ACCELERATOR = 13,
287 XEMBED_ACTIVATE_ACCELERATOR = 14
290 static bool x_alloc_nearest_color_1 (Display *, Colormap, XColor *);
291 static void x_set_window_size_1 (struct frame *, int, int, int);
292 static void x_raise_frame (struct frame *);
293 static void x_lower_frame (struct frame *);
294 static const XColor *x_color_cells (Display *, int *);
295 static void x_update_window_end (struct window *, int, int);
297 static int x_io_error_quitter (Display *);
298 static struct terminal *x_create_terminal (struct x_display_info *);
299 void x_delete_terminal (struct terminal *);
300 static void x_update_end (struct frame *);
301 static void XTframe_up_to_date (struct frame *);
302 static void XTset_terminal_modes (struct terminal *);
303 static void XTreset_terminal_modes (struct terminal *);
304 static void x_clear_frame (struct frame *);
305 static _Noreturn void x_ins_del_lines (struct frame *, int, int);
306 static void frame_highlight (struct frame *);
307 static void frame_unhighlight (struct frame *);
308 static void x_new_focus_frame (struct x_display_info *, struct frame *);
309 static void x_focus_changed (int, int, struct x_display_info *,
310 struct frame *, struct input_event *);
311 static void x_detect_focus_change (struct x_display_info *,
312 XEvent *, struct input_event *);
313 static void XTframe_rehighlight (struct frame *);
314 static void x_frame_rehighlight (struct x_display_info *);
315 static void x_draw_hollow_cursor (struct window *, struct glyph_row *);
316 static void x_draw_bar_cursor (struct window *, struct glyph_row *, int,
317 enum text_cursor_kinds);
319 static void x_clip_to_row (struct window *, struct glyph_row *, int, GC);
320 static void x_flush (struct frame *f);
321 static void x_update_begin (struct frame *);
322 static void x_update_window_begin (struct window *);
323 static struct scroll_bar *x_window_to_scroll_bar (Display *, Window);
324 static void x_scroll_bar_report_motion (struct frame **, Lisp_Object *,
325 enum scroll_bar_part *,
326 Lisp_Object *, Lisp_Object *,
327 Time *);
328 static int x_handle_net_wm_state (struct frame *, XPropertyEvent *);
329 static void x_check_fullscreen (struct frame *);
330 static void x_check_expected_move (struct frame *, int, int);
331 static void x_sync_with_move (struct frame *, int, int, int);
332 static int handle_one_xevent (struct x_display_info *, XEvent *,
333 int *, struct input_event *);
334 #ifdef USE_GTK
335 static int x_dispatch_event (XEvent *, Display *);
336 #endif
337 /* Don't declare this _Noreturn because we want no
338 interference with debugging failing X calls. */
339 static void x_connection_closed (Display *, const char *);
340 static void x_wm_set_window_state (struct frame *, int);
341 static void x_wm_set_icon_pixmap (struct frame *, ptrdiff_t);
342 static void x_initialize (void);
345 /* Flush display of frame F, or of all frames if F is null. */
347 static void
348 x_flush (struct frame *f)
350 /* Don't call XFlush when it is not safe to redisplay; the X
351 connection may be broken. */
352 if (!NILP (Vinhibit_redisplay))
353 return;
355 block_input ();
356 if (f)
358 eassert (FRAME_X_P (f));
359 XFlush (FRAME_X_DISPLAY (f));
361 else
363 /* Flush all displays and so all frames on them. */
364 struct x_display_info *xdi;
365 for (xdi = x_display_list; xdi; xdi = xdi->next)
366 XFlush (xdi->display);
368 unblock_input ();
372 /* Remove calls to XFlush by defining XFlush to an empty replacement.
373 Calls to XFlush should be unnecessary because the X output buffer
374 is flushed automatically as needed by calls to XPending,
375 XNextEvent, or XWindowEvent according to the XFlush man page.
376 XTread_socket calls XPending. Removing XFlush improves
377 performance. */
379 #define XFlush(DISPLAY) (void) 0
382 /***********************************************************************
383 Debugging
384 ***********************************************************************/
386 #if 0
388 /* This is a function useful for recording debugging information about
389 the sequence of occurrences in this file. */
391 struct record
393 char *locus;
394 int type;
397 struct record event_record[100];
399 int event_record_index;
401 void
402 record_event (char *locus, int type)
404 if (event_record_index == sizeof (event_record) / sizeof (struct record))
405 event_record_index = 0;
407 event_record[event_record_index].locus = locus;
408 event_record[event_record_index].type = type;
409 event_record_index++;
412 #endif /* 0 */
416 /* Return the struct x_display_info corresponding to DPY. */
418 struct x_display_info *
419 x_display_info_for_display (Display *dpy)
421 struct x_display_info *dpyinfo;
423 for (dpyinfo = x_display_list; dpyinfo; dpyinfo = dpyinfo->next)
424 if (dpyinfo->display == dpy)
425 return dpyinfo;
427 return 0;
430 static Window
431 x_find_topmost_parent (struct frame *f)
433 struct x_output *x = f->output_data.x;
434 Window win = None, wi = x->parent_desc;
435 Display *dpy = FRAME_X_DISPLAY (f);
437 while (wi != FRAME_X_DISPLAY_INFO (f)->root_window)
439 Window root;
440 Window *children;
441 unsigned int nchildren;
443 win = wi;
444 XQueryTree (dpy, win, &root, &wi, &children, &nchildren);
445 XFree (children);
448 return win;
451 #define OPAQUE 0xffffffff
453 void
454 x_set_frame_alpha (struct frame *f)
456 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
457 Display *dpy = FRAME_X_DISPLAY (f);
458 Window win = FRAME_OUTER_WINDOW (f);
459 double alpha = 1.0;
460 double alpha_min = 1.0;
461 unsigned long opac;
462 Window parent;
464 if (dpyinfo->x_highlight_frame == f)
465 alpha = f->alpha[0];
466 else
467 alpha = f->alpha[1];
469 if (FLOATP (Vframe_alpha_lower_limit))
470 alpha_min = XFLOAT_DATA (Vframe_alpha_lower_limit);
471 else if (INTEGERP (Vframe_alpha_lower_limit))
472 alpha_min = (XINT (Vframe_alpha_lower_limit)) / 100.0;
474 if (alpha < 0.0)
475 return;
476 else if (alpha > 1.0)
477 alpha = 1.0;
478 else if (0.0 <= alpha && alpha < alpha_min && alpha_min <= 1.0)
479 alpha = alpha_min;
481 opac = alpha * OPAQUE;
483 x_catch_errors (dpy);
485 /* If there is a parent from the window manager, put the property there
486 also, to work around broken window managers that fail to do that.
487 Do this unconditionally as this function is called on reparent when
488 alpha has not changed on the frame. */
490 parent = x_find_topmost_parent (f);
491 if (parent != None)
492 XChangeProperty (dpy, parent, dpyinfo->Xatom_net_wm_window_opacity,
493 XA_CARDINAL, 32, PropModeReplace,
494 (unsigned char *) &opac, 1L);
496 /* return unless necessary */
498 unsigned char *data;
499 Atom actual;
500 int rc, format;
501 unsigned long n, left;
503 rc = XGetWindowProperty (dpy, win, dpyinfo->Xatom_net_wm_window_opacity,
504 0L, 1L, False, XA_CARDINAL,
505 &actual, &format, &n, &left,
506 &data);
508 if (rc == Success && actual != None)
510 unsigned long value = *(unsigned long *)data;
511 XFree (data);
512 if (value == opac)
514 x_uncatch_errors ();
515 return;
520 XChangeProperty (dpy, win, dpyinfo->Xatom_net_wm_window_opacity,
521 XA_CARDINAL, 32, PropModeReplace,
522 (unsigned char *) &opac, 1L);
523 x_uncatch_errors ();
527 x_display_pixel_height (struct x_display_info *dpyinfo)
529 return HeightOfScreen (dpyinfo->screen);
533 x_display_pixel_width (struct x_display_info *dpyinfo)
535 return WidthOfScreen (dpyinfo->screen);
539 /***********************************************************************
540 Starting and ending an update
541 ***********************************************************************/
543 /* Start an update of frame F. This function is installed as a hook
544 for update_begin, i.e. it is called when update_begin is called.
545 This function is called prior to calls to x_update_window_begin for
546 each window being updated. Currently, there is nothing to do here
547 because all interesting stuff is done on a window basis. */
549 static void
550 x_update_begin (struct frame *f)
552 /* Nothing to do. */
556 /* Start update of window W. Set output_cursor to the cursor
557 position of W. */
559 static void
560 x_update_window_begin (struct window *w)
562 struct frame *f = XFRAME (WINDOW_FRAME (w));
563 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
565 set_output_cursor (&w->cursor);
567 block_input ();
569 if (f == hlinfo->mouse_face_mouse_frame)
571 /* Don't do highlighting for mouse motion during the update. */
572 hlinfo->mouse_face_defer = 1;
574 /* If F needs to be redrawn, simply forget about any prior mouse
575 highlighting. */
576 if (FRAME_GARBAGED_P (f))
577 hlinfo->mouse_face_window = Qnil;
580 unblock_input ();
584 /* Draw a vertical window border from (x,y0) to (x,y1) */
586 static void
587 x_draw_vertical_window_border (struct window *w, int x, int y0, int y1)
589 struct frame *f = XFRAME (WINDOW_FRAME (w));
590 struct face *face;
592 face = FACE_FROM_ID (f, VERTICAL_BORDER_FACE_ID);
593 if (face)
594 XSetForeground (FRAME_X_DISPLAY (f), f->output_data.x->normal_gc,
595 face->foreground);
597 XDrawLine (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
598 f->output_data.x->normal_gc, x, y0, x, y1);
601 /* End update of window W.
603 Draw vertical borders between horizontally adjacent windows, and
604 display W's cursor if CURSOR_ON_P is non-zero.
606 MOUSE_FACE_OVERWRITTEN_P non-zero means that some row containing
607 glyphs in mouse-face were overwritten. In that case we have to
608 make sure that the mouse-highlight is properly redrawn.
610 W may be a menu bar pseudo-window in case we don't have X toolkit
611 support. Such windows don't have a cursor, so don't display it
612 here. */
614 static void
615 x_update_window_end (struct window *w, int cursor_on_p, int mouse_face_overwritten_p)
617 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (XFRAME (w->frame));
619 if (!w->pseudo_window_p)
621 block_input ();
623 if (cursor_on_p)
624 display_and_set_cursor (w, 1, output_cursor.hpos,
625 output_cursor.vpos,
626 output_cursor.x, output_cursor.y);
628 if (draw_window_fringes (w, 1))
629 x_draw_vertical_border (w);
631 unblock_input ();
634 /* If a row with mouse-face was overwritten, arrange for
635 XTframe_up_to_date to redisplay the mouse highlight. */
636 if (mouse_face_overwritten_p)
638 hlinfo->mouse_face_beg_row = hlinfo->mouse_face_beg_col = -1;
639 hlinfo->mouse_face_end_row = hlinfo->mouse_face_end_col = -1;
640 hlinfo->mouse_face_window = Qnil;
645 /* End update of frame F. This function is installed as a hook in
646 update_end. */
648 static void
649 x_update_end (struct frame *f)
651 /* Mouse highlight may be displayed again. */
652 MOUSE_HL_INFO (f)->mouse_face_defer = 0;
654 #ifndef XFlush
655 block_input ();
656 XFlush (FRAME_X_DISPLAY (f));
657 unblock_input ();
658 #endif
662 /* This function is called from various places in xdisp.c
663 whenever a complete update has been performed. */
665 static void
666 XTframe_up_to_date (struct frame *f)
668 if (FRAME_X_P (f))
669 FRAME_MOUSE_UPDATE (f);
673 /* Draw truncation mark bitmaps, continuation mark bitmaps, overlay
674 arrow bitmaps, or clear the fringes if no bitmaps are required
675 before DESIRED_ROW is made current. This function is called from
676 update_window_line only if it is known that there are differences
677 between bitmaps to be drawn between current row and DESIRED_ROW. */
679 static void
680 x_after_update_window_line (struct window *w, struct glyph_row *desired_row)
682 struct frame *f;
683 int width, height;
685 eassert (w);
687 if (!desired_row->mode_line_p && !w->pseudo_window_p)
688 desired_row->redraw_fringe_bitmaps_p = 1;
690 /* When a window has disappeared, make sure that no rest of
691 full-width rows stays visible in the internal border. Could
692 check here if updated window is the leftmost/rightmost window,
693 but I guess it's not worth doing since vertically split windows
694 are almost never used, internal border is rarely set, and the
695 overhead is very small. */
696 if (windows_or_buffers_changed
697 && desired_row->full_width_p
698 && (f = XFRAME (w->frame),
699 width = FRAME_INTERNAL_BORDER_WIDTH (f),
700 width != 0)
701 && (height = desired_row->visible_height,
702 height > 0))
704 int y = WINDOW_TO_FRAME_PIXEL_Y (w, max (0, desired_row->y));
706 block_input ();
707 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
708 0, y, width, height, False);
709 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
710 FRAME_PIXEL_WIDTH (f) - width,
711 y, width, height, False);
712 unblock_input ();
716 static void
717 x_draw_fringe_bitmap (struct window *w, struct glyph_row *row, struct draw_fringe_bitmap_params *p)
719 struct frame *f = XFRAME (WINDOW_FRAME (w));
720 Display *display = FRAME_X_DISPLAY (f);
721 Window window = FRAME_X_WINDOW (f);
722 GC gc = f->output_data.x->normal_gc;
723 struct face *face = p->face;
725 /* Must clip because of partially visible lines. */
726 x_clip_to_row (w, row, -1, gc);
728 if (!p->overlay_p)
730 int bx = p->bx, by = p->by, nx = p->nx, ny = p->ny;
732 /* In case the same realized face is used for fringes and
733 for something displayed in the text (e.g. face `region' on
734 mono-displays, the fill style may have been changed to
735 FillSolid in x_draw_glyph_string_background. */
736 if (face->stipple)
737 XSetFillStyle (display, face->gc, FillOpaqueStippled);
738 else
739 XSetForeground (display, face->gc, face->background);
741 #ifdef USE_TOOLKIT_SCROLL_BARS
742 /* If the fringe is adjacent to the left (right) scroll bar of a
743 leftmost (rightmost, respectively) window, then extend its
744 background to the gap between the fringe and the bar. */
745 if ((WINDOW_LEFTMOST_P (w)
746 && WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w))
747 || (WINDOW_RIGHTMOST_P (w)
748 && WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w)))
750 int sb_width = WINDOW_CONFIG_SCROLL_BAR_WIDTH (w);
752 if (sb_width > 0)
754 int bar_area_x = WINDOW_SCROLL_BAR_AREA_X (w);
755 int bar_area_width = (WINDOW_CONFIG_SCROLL_BAR_COLS (w)
756 * FRAME_COLUMN_WIDTH (f));
758 if (bx < 0)
760 /* Bitmap fills the fringe. */
761 if (bar_area_x + bar_area_width == p->x)
762 bx = bar_area_x + sb_width;
763 else if (p->x + p->wd == bar_area_x)
764 bx = bar_area_x;
765 if (bx >= 0)
767 int header_line_height = WINDOW_HEADER_LINE_HEIGHT (w);
769 nx = bar_area_width - sb_width;
770 by = WINDOW_TO_FRAME_PIXEL_Y (w, max (header_line_height,
771 row->y));
772 ny = row->visible_height;
775 else
777 if (bar_area_x + bar_area_width == bx)
779 bx = bar_area_x + sb_width;
780 nx += bar_area_width - sb_width;
782 else if (bx + nx == bar_area_x)
783 nx += bar_area_width - sb_width;
787 #endif
788 if (bx >= 0 && nx > 0)
789 XFillRectangle (display, window, face->gc, bx, by, nx, ny);
791 if (!face->stipple)
792 XSetForeground (display, face->gc, face->foreground);
795 if (p->which)
797 char *bits;
798 Pixmap pixmap, clipmask = (Pixmap) 0;
799 int depth = DefaultDepthOfScreen (FRAME_X_SCREEN (f));
800 XGCValues gcv;
802 if (p->wd > 8)
803 bits = (char *) (p->bits + p->dh);
804 else
805 bits = (char *) p->bits + p->dh;
807 /* Draw the bitmap. I believe these small pixmaps can be cached
808 by the server. */
809 pixmap = XCreatePixmapFromBitmapData (display, window, bits, p->wd, p->h,
810 (p->cursor_p
811 ? (p->overlay_p ? face->background
812 : f->output_data.x->cursor_pixel)
813 : face->foreground),
814 face->background, depth);
816 if (p->overlay_p)
818 clipmask = XCreatePixmapFromBitmapData (display,
819 FRAME_X_DISPLAY_INFO (f)->root_window,
820 bits, p->wd, p->h,
821 1, 0, 1);
822 gcv.clip_mask = clipmask;
823 gcv.clip_x_origin = p->x;
824 gcv.clip_y_origin = p->y;
825 XChangeGC (display, gc, GCClipMask | GCClipXOrigin | GCClipYOrigin, &gcv);
828 XCopyArea (display, pixmap, window, gc, 0, 0,
829 p->wd, p->h, p->x, p->y);
830 XFreePixmap (display, pixmap);
832 if (p->overlay_p)
834 gcv.clip_mask = (Pixmap) 0;
835 XChangeGC (display, gc, GCClipMask, &gcv);
836 XFreePixmap (display, clipmask);
840 XSetClipMask (display, gc, None);
845 /* This is called when starting Emacs and when restarting after
846 suspend. When starting Emacs, no X window is mapped. And nothing
847 must be done to Emacs's own window if it is suspended (though that
848 rarely happens). */
850 static void
851 XTset_terminal_modes (struct terminal *terminal)
855 /* This is called when exiting or suspending Emacs. Exiting will make
856 the X-windows go away, and suspending requires no action. */
858 static void
859 XTreset_terminal_modes (struct terminal *terminal)
864 /***********************************************************************
865 Glyph display
866 ***********************************************************************/
870 static void x_set_glyph_string_clipping (struct glyph_string *);
871 static void x_set_glyph_string_gc (struct glyph_string *);
872 static void x_draw_glyph_string_foreground (struct glyph_string *);
873 static void x_draw_composite_glyph_string_foreground (struct glyph_string *);
874 static void x_draw_glyph_string_box (struct glyph_string *);
875 static void x_draw_glyph_string (struct glyph_string *);
876 static _Noreturn void x_delete_glyphs (struct frame *, int);
877 static void x_compute_glyph_string_overhangs (struct glyph_string *);
878 static void x_set_cursor_gc (struct glyph_string *);
879 static void x_set_mode_line_face_gc (struct glyph_string *);
880 static void x_set_mouse_face_gc (struct glyph_string *);
881 static bool x_alloc_lighter_color (struct frame *, Display *, Colormap,
882 unsigned long *, double, int);
883 static void x_setup_relief_color (struct frame *, struct relief *,
884 double, int, unsigned long);
885 static void x_setup_relief_colors (struct glyph_string *);
886 static void x_draw_image_glyph_string (struct glyph_string *);
887 static void x_draw_image_relief (struct glyph_string *);
888 static void x_draw_image_foreground (struct glyph_string *);
889 static void x_draw_image_foreground_1 (struct glyph_string *, Pixmap);
890 static void x_clear_glyph_string_rect (struct glyph_string *, int,
891 int, int, int);
892 static void x_draw_relief_rect (struct frame *, int, int, int, int,
893 int, int, int, int, int, int,
894 XRectangle *);
895 static void x_draw_box_rect (struct glyph_string *, int, int, int, int,
896 int, int, int, XRectangle *);
897 static void x_scroll_bar_clear (struct frame *);
899 #ifdef GLYPH_DEBUG
900 static void x_check_font (struct frame *, struct font *);
901 #endif
904 /* Set S->gc to a suitable GC for drawing glyph string S in cursor
905 face. */
907 static void
908 x_set_cursor_gc (struct glyph_string *s)
910 if (s->font == FRAME_FONT (s->f)
911 && s->face->background == FRAME_BACKGROUND_PIXEL (s->f)
912 && s->face->foreground == FRAME_FOREGROUND_PIXEL (s->f)
913 && !s->cmp)
914 s->gc = s->f->output_data.x->cursor_gc;
915 else
917 /* Cursor on non-default face: must merge. */
918 XGCValues xgcv;
919 unsigned long mask;
921 xgcv.background = s->f->output_data.x->cursor_pixel;
922 xgcv.foreground = s->face->background;
924 /* If the glyph would be invisible, try a different foreground. */
925 if (xgcv.foreground == xgcv.background)
926 xgcv.foreground = s->face->foreground;
927 if (xgcv.foreground == xgcv.background)
928 xgcv.foreground = s->f->output_data.x->cursor_foreground_pixel;
929 if (xgcv.foreground == xgcv.background)
930 xgcv.foreground = s->face->foreground;
932 /* Make sure the cursor is distinct from text in this face. */
933 if (xgcv.background == s->face->background
934 && xgcv.foreground == s->face->foreground)
936 xgcv.background = s->face->foreground;
937 xgcv.foreground = s->face->background;
940 IF_DEBUG (x_check_font (s->f, s->font));
941 xgcv.graphics_exposures = False;
942 mask = GCForeground | GCBackground | GCGraphicsExposures;
944 if (FRAME_X_DISPLAY_INFO (s->f)->scratch_cursor_gc)
945 XChangeGC (s->display, FRAME_X_DISPLAY_INFO (s->f)->scratch_cursor_gc,
946 mask, &xgcv);
947 else
948 FRAME_X_DISPLAY_INFO (s->f)->scratch_cursor_gc
949 = XCreateGC (s->display, s->window, mask, &xgcv);
951 s->gc = FRAME_X_DISPLAY_INFO (s->f)->scratch_cursor_gc;
956 /* Set up S->gc of glyph string S for drawing text in mouse face. */
958 static void
959 x_set_mouse_face_gc (struct glyph_string *s)
961 int face_id;
962 struct face *face;
964 /* What face has to be used last for the mouse face? */
965 face_id = MOUSE_HL_INFO (s->f)->mouse_face_face_id;
966 face = FACE_FROM_ID (s->f, face_id);
967 if (face == NULL)
968 face = FACE_FROM_ID (s->f, MOUSE_FACE_ID);
970 if (s->first_glyph->type == CHAR_GLYPH)
971 face_id = FACE_FOR_CHAR (s->f, face, s->first_glyph->u.ch, -1, Qnil);
972 else
973 face_id = FACE_FOR_CHAR (s->f, face, 0, -1, Qnil);
974 s->face = FACE_FROM_ID (s->f, face_id);
975 PREPARE_FACE_FOR_DISPLAY (s->f, s->face);
977 if (s->font == s->face->font)
978 s->gc = s->face->gc;
979 else
981 /* Otherwise construct scratch_cursor_gc with values from FACE
982 except for FONT. */
983 XGCValues xgcv;
984 unsigned long mask;
986 xgcv.background = s->face->background;
987 xgcv.foreground = s->face->foreground;
988 xgcv.graphics_exposures = False;
989 mask = GCForeground | GCBackground | GCGraphicsExposures;
991 if (FRAME_X_DISPLAY_INFO (s->f)->scratch_cursor_gc)
992 XChangeGC (s->display, FRAME_X_DISPLAY_INFO (s->f)->scratch_cursor_gc,
993 mask, &xgcv);
994 else
995 FRAME_X_DISPLAY_INFO (s->f)->scratch_cursor_gc
996 = XCreateGC (s->display, s->window, mask, &xgcv);
998 s->gc = FRAME_X_DISPLAY_INFO (s->f)->scratch_cursor_gc;
1001 eassert (s->gc != 0);
1005 /* Set S->gc of glyph string S to a GC suitable for drawing a mode line.
1006 Faces to use in the mode line have already been computed when the
1007 matrix was built, so there isn't much to do, here. */
1009 static void
1010 x_set_mode_line_face_gc (struct glyph_string *s)
1012 s->gc = s->face->gc;
1016 /* Set S->gc of glyph string S for drawing that glyph string. Set
1017 S->stippled_p to a non-zero value if the face of S has a stipple
1018 pattern. */
1020 static void
1021 x_set_glyph_string_gc (struct glyph_string *s)
1023 PREPARE_FACE_FOR_DISPLAY (s->f, s->face);
1025 if (s->hl == DRAW_NORMAL_TEXT)
1027 s->gc = s->face->gc;
1028 s->stippled_p = s->face->stipple != 0;
1030 else if (s->hl == DRAW_INVERSE_VIDEO)
1032 x_set_mode_line_face_gc (s);
1033 s->stippled_p = s->face->stipple != 0;
1035 else if (s->hl == DRAW_CURSOR)
1037 x_set_cursor_gc (s);
1038 s->stippled_p = 0;
1040 else if (s->hl == DRAW_MOUSE_FACE)
1042 x_set_mouse_face_gc (s);
1043 s->stippled_p = s->face->stipple != 0;
1045 else if (s->hl == DRAW_IMAGE_RAISED
1046 || s->hl == DRAW_IMAGE_SUNKEN)
1048 s->gc = s->face->gc;
1049 s->stippled_p = s->face->stipple != 0;
1051 else
1053 s->gc = s->face->gc;
1054 s->stippled_p = s->face->stipple != 0;
1057 /* GC must have been set. */
1058 eassert (s->gc != 0);
1062 /* Set clipping for output of glyph string S. S may be part of a mode
1063 line or menu if we don't have X toolkit support. */
1065 static void
1066 x_set_glyph_string_clipping (struct glyph_string *s)
1068 XRectangle *r = s->clip;
1069 int n = get_glyph_string_clip_rects (s, r, 2);
1071 if (n > 0)
1072 XSetClipRectangles (s->display, s->gc, 0, 0, r, n, Unsorted);
1073 s->num_clips = n;
1077 /* Set SRC's clipping for output of glyph string DST. This is called
1078 when we are drawing DST's left_overhang or right_overhang only in
1079 the area of SRC. */
1081 static void
1082 x_set_glyph_string_clipping_exactly (struct glyph_string *src, struct glyph_string *dst)
1084 XRectangle r;
1086 r.x = src->x;
1087 r.width = src->width;
1088 r.y = src->y;
1089 r.height = src->height;
1090 dst->clip[0] = r;
1091 dst->num_clips = 1;
1092 XSetClipRectangles (dst->display, dst->gc, 0, 0, &r, 1, Unsorted);
1096 /* RIF:
1097 Compute left and right overhang of glyph string S. */
1099 static void
1100 x_compute_glyph_string_overhangs (struct glyph_string *s)
1102 if (s->cmp == NULL
1103 && (s->first_glyph->type == CHAR_GLYPH
1104 || s->first_glyph->type == COMPOSITE_GLYPH))
1106 struct font_metrics metrics;
1108 if (s->first_glyph->type == CHAR_GLYPH)
1110 unsigned *code = alloca (sizeof (unsigned) * s->nchars);
1111 struct font *font = s->font;
1112 int i;
1114 for (i = 0; i < s->nchars; i++)
1115 code[i] = (s->char2b[i].byte1 << 8) | s->char2b[i].byte2;
1116 font->driver->text_extents (font, code, s->nchars, &metrics);
1118 else
1120 Lisp_Object gstring = composition_gstring_from_id (s->cmp_id);
1122 composition_gstring_width (gstring, s->cmp_from, s->cmp_to, &metrics);
1124 s->right_overhang = (metrics.rbearing > metrics.width
1125 ? metrics.rbearing - metrics.width : 0);
1126 s->left_overhang = metrics.lbearing < 0 ? - metrics.lbearing : 0;
1128 else if (s->cmp)
1130 s->right_overhang = s->cmp->rbearing - s->cmp->pixel_width;
1131 s->left_overhang = - s->cmp->lbearing;
1136 /* Fill rectangle X, Y, W, H with background color of glyph string S. */
1138 static void
1139 x_clear_glyph_string_rect (struct glyph_string *s, int x, int y, int w, int h)
1141 XGCValues xgcv;
1142 XGetGCValues (s->display, s->gc, GCForeground | GCBackground, &xgcv);
1143 XSetForeground (s->display, s->gc, xgcv.background);
1144 XFillRectangle (s->display, s->window, s->gc, x, y, w, h);
1145 XSetForeground (s->display, s->gc, xgcv.foreground);
1149 /* Draw the background of glyph_string S. If S->background_filled_p
1150 is non-zero don't draw it. FORCE_P non-zero means draw the
1151 background even if it wouldn't be drawn normally. This is used
1152 when a string preceding S draws into the background of S, or S
1153 contains the first component of a composition. */
1155 static void
1156 x_draw_glyph_string_background (struct glyph_string *s, bool force_p)
1158 /* Nothing to do if background has already been drawn or if it
1159 shouldn't be drawn in the first place. */
1160 if (!s->background_filled_p)
1162 int box_line_width = max (s->face->box_line_width, 0);
1164 if (s->stippled_p)
1166 /* Fill background with a stipple pattern. */
1167 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
1168 XFillRectangle (s->display, s->window, s->gc, s->x,
1169 s->y + box_line_width,
1170 s->background_width,
1171 s->height - 2 * box_line_width);
1172 XSetFillStyle (s->display, s->gc, FillSolid);
1173 s->background_filled_p = 1;
1175 else if (FONT_HEIGHT (s->font) < s->height - 2 * box_line_width
1176 || s->font_not_found_p
1177 || s->extends_to_end_of_line_p
1178 || force_p)
1180 x_clear_glyph_string_rect (s, s->x, s->y + box_line_width,
1181 s->background_width,
1182 s->height - 2 * box_line_width);
1183 s->background_filled_p = 1;
1189 /* Draw the foreground of glyph string S. */
1191 static void
1192 x_draw_glyph_string_foreground (struct glyph_string *s)
1194 int i, x;
1196 /* If first glyph of S has a left box line, start drawing the text
1197 of S to the right of that box line. */
1198 if (s->face->box != FACE_NO_BOX
1199 && s->first_glyph->left_box_line_p)
1200 x = s->x + eabs (s->face->box_line_width);
1201 else
1202 x = s->x;
1204 /* Draw characters of S as rectangles if S's font could not be
1205 loaded. */
1206 if (s->font_not_found_p)
1208 for (i = 0; i < s->nchars; ++i)
1210 struct glyph *g = s->first_glyph + i;
1211 XDrawRectangle (s->display, s->window,
1212 s->gc, x, s->y, g->pixel_width - 1,
1213 s->height - 1);
1214 x += g->pixel_width;
1217 else
1219 struct font *font = s->font;
1220 int boff = font->baseline_offset;
1221 int y;
1223 if (font->vertical_centering)
1224 boff = VCENTER_BASELINE_OFFSET (font, s->f) - boff;
1226 y = s->ybase - boff;
1227 if (s->for_overlaps
1228 || (s->background_filled_p && s->hl != DRAW_CURSOR))
1229 font->driver->draw (s, 0, s->nchars, x, y, 0);
1230 else
1231 font->driver->draw (s, 0, s->nchars, x, y, 1);
1232 if (s->face->overstrike)
1233 font->driver->draw (s, 0, s->nchars, x + 1, y, 0);
1237 /* Draw the foreground of composite glyph string S. */
1239 static void
1240 x_draw_composite_glyph_string_foreground (struct glyph_string *s)
1242 int i, j, x;
1243 struct font *font = s->font;
1245 /* If first glyph of S has a left box line, start drawing the text
1246 of S to the right of that box line. */
1247 if (s->face && s->face->box != FACE_NO_BOX
1248 && s->first_glyph->left_box_line_p)
1249 x = s->x + eabs (s->face->box_line_width);
1250 else
1251 x = s->x;
1253 /* S is a glyph string for a composition. S->cmp_from is the index
1254 of the first character drawn for glyphs of this composition.
1255 S->cmp_from == 0 means we are drawing the very first character of
1256 this composition. */
1258 /* Draw a rectangle for the composition if the font for the very
1259 first character of the composition could not be loaded. */
1260 if (s->font_not_found_p)
1262 if (s->cmp_from == 0)
1263 XDrawRectangle (s->display, s->window, s->gc, x, s->y,
1264 s->width - 1, s->height - 1);
1266 else if (! s->first_glyph->u.cmp.automatic)
1268 int y = s->ybase;
1270 for (i = 0, j = s->cmp_from; i < s->nchars; i++, j++)
1271 /* TAB in a composition means display glyphs with padding
1272 space on the left or right. */
1273 if (COMPOSITION_GLYPH (s->cmp, j) != '\t')
1275 int xx = x + s->cmp->offsets[j * 2];
1276 int yy = y - s->cmp->offsets[j * 2 + 1];
1278 font->driver->draw (s, j, j + 1, xx, yy, 0);
1279 if (s->face->overstrike)
1280 font->driver->draw (s, j, j + 1, xx + 1, yy, 0);
1283 else
1285 Lisp_Object gstring = composition_gstring_from_id (s->cmp_id);
1286 Lisp_Object glyph;
1287 int y = s->ybase;
1288 int width = 0;
1290 for (i = j = s->cmp_from; i < s->cmp_to; i++)
1292 glyph = LGSTRING_GLYPH (gstring, i);
1293 if (NILP (LGLYPH_ADJUSTMENT (glyph)))
1294 width += LGLYPH_WIDTH (glyph);
1295 else
1297 int xoff, yoff, wadjust;
1299 if (j < i)
1301 font->driver->draw (s, j, i, x, y, 0);
1302 if (s->face->overstrike)
1303 font->driver->draw (s, j, i, x + 1, y, 0);
1304 x += width;
1306 xoff = LGLYPH_XOFF (glyph);
1307 yoff = LGLYPH_YOFF (glyph);
1308 wadjust = LGLYPH_WADJUST (glyph);
1309 font->driver->draw (s, i, i + 1, x + xoff, y + yoff, 0);
1310 if (s->face->overstrike)
1311 font->driver->draw (s, i, i + 1, x + xoff + 1, y + yoff, 0);
1312 x += wadjust;
1313 j = i + 1;
1314 width = 0;
1317 if (j < i)
1319 font->driver->draw (s, j, i, x, y, 0);
1320 if (s->face->overstrike)
1321 font->driver->draw (s, j, i, x + 1, y, 0);
1327 /* Draw the foreground of glyph string S for glyphless characters. */
1329 static void
1330 x_draw_glyphless_glyph_string_foreground (struct glyph_string *s)
1332 struct glyph *glyph = s->first_glyph;
1333 XChar2b char2b[8];
1334 int x, i, j;
1336 /* If first glyph of S has a left box line, start drawing the text
1337 of S to the right of that box line. */
1338 if (s->face && s->face->box != FACE_NO_BOX
1339 && s->first_glyph->left_box_line_p)
1340 x = s->x + eabs (s->face->box_line_width);
1341 else
1342 x = s->x;
1344 s->char2b = char2b;
1346 for (i = 0; i < s->nchars; i++, glyph++)
1348 char buf[7], *str = NULL;
1349 int len = glyph->u.glyphless.len;
1351 if (glyph->u.glyphless.method == GLYPHLESS_DISPLAY_ACRONYM)
1353 if (len > 0
1354 && CHAR_TABLE_P (Vglyphless_char_display)
1355 && (CHAR_TABLE_EXTRA_SLOTS (XCHAR_TABLE (Vglyphless_char_display))
1356 >= 1))
1358 Lisp_Object acronym
1359 = (! glyph->u.glyphless.for_no_font
1360 ? CHAR_TABLE_REF (Vglyphless_char_display,
1361 glyph->u.glyphless.ch)
1362 : XCHAR_TABLE (Vglyphless_char_display)->extras[0]);
1363 if (STRINGP (acronym))
1364 str = SSDATA (acronym);
1367 else if (glyph->u.glyphless.method == GLYPHLESS_DISPLAY_HEX_CODE)
1369 sprintf ((char *) buf, "%0*X",
1370 glyph->u.glyphless.ch < 0x10000 ? 4 : 6,
1371 glyph->u.glyphless.ch);
1372 str = buf;
1375 if (str)
1377 int upper_len = (len + 1) / 2;
1378 unsigned code;
1380 /* It is assured that all LEN characters in STR is ASCII. */
1381 for (j = 0; j < len; j++)
1383 code = s->font->driver->encode_char (s->font, str[j]);
1384 STORE_XCHAR2B (char2b + j, code >> 8, code & 0xFF);
1386 s->font->driver->draw (s, 0, upper_len,
1387 x + glyph->slice.glyphless.upper_xoff,
1388 s->ybase + glyph->slice.glyphless.upper_yoff,
1390 s->font->driver->draw (s, upper_len, len,
1391 x + glyph->slice.glyphless.lower_xoff,
1392 s->ybase + glyph->slice.glyphless.lower_yoff,
1395 if (glyph->u.glyphless.method != GLYPHLESS_DISPLAY_THIN_SPACE)
1396 XDrawRectangle (s->display, s->window, s->gc,
1397 x, s->ybase - glyph->ascent,
1398 glyph->pixel_width - 1,
1399 glyph->ascent + glyph->descent - 1);
1400 x += glyph->pixel_width;
1404 #ifdef USE_X_TOOLKIT
1406 #ifdef USE_LUCID
1408 /* Return the frame on which widget WIDGET is used.. Abort if frame
1409 cannot be determined. */
1411 static struct frame *
1412 x_frame_of_widget (Widget widget)
1414 struct x_display_info *dpyinfo;
1415 Lisp_Object tail, frame;
1416 struct frame *f;
1418 dpyinfo = x_display_info_for_display (XtDisplay (widget));
1420 /* Find the top-level shell of the widget. Note that this function
1421 can be called when the widget is not yet realized, so XtWindow
1422 (widget) == 0. That's the reason we can't simply use
1423 x_any_window_to_frame. */
1424 while (!XtIsTopLevelShell (widget))
1425 widget = XtParent (widget);
1427 /* Look for a frame with that top-level widget. Allocate the color
1428 on that frame to get the right gamma correction value. */
1429 FOR_EACH_FRAME (tail, frame)
1431 f = XFRAME (frame);
1432 if (FRAME_X_P (f)
1433 && f->output_data.nothing != 1
1434 && FRAME_X_DISPLAY_INFO (f) == dpyinfo
1435 && f->output_data.x->widget == widget)
1436 return f;
1438 emacs_abort ();
1441 /* Allocate a color which is lighter or darker than *PIXEL by FACTOR
1442 or DELTA. Try a color with RGB values multiplied by FACTOR first.
1443 If this produces the same color as PIXEL, try a color where all RGB
1444 values have DELTA added. Return the allocated color in *PIXEL.
1445 DISPLAY is the X display, CMAP is the colormap to operate on.
1446 Value is true if successful. */
1448 bool
1449 x_alloc_lighter_color_for_widget (Widget widget, Display *display, Colormap cmap,
1450 unsigned long *pixel, double factor, int delta)
1452 struct frame *f = x_frame_of_widget (widget);
1453 return x_alloc_lighter_color (f, display, cmap, pixel, factor, delta);
1456 #endif /* USE_LUCID */
1459 /* Structure specifying which arguments should be passed by Xt to
1460 cvt_string_to_pixel. We want the widget's screen and colormap. */
1462 static XtConvertArgRec cvt_string_to_pixel_args[] =
1464 {XtWidgetBaseOffset, (XtPointer) XtOffset (Widget, core.screen),
1465 sizeof (Screen *)},
1466 {XtWidgetBaseOffset, (XtPointer) XtOffset (Widget, core.colormap),
1467 sizeof (Colormap)}
1471 /* The address of this variable is returned by
1472 cvt_string_to_pixel. */
1474 static Pixel cvt_string_to_pixel_value;
1477 /* Convert a color name to a pixel color.
1479 DPY is the display we are working on.
1481 ARGS is an array of *NARGS XrmValue structures holding additional
1482 information about the widget for which the conversion takes place.
1483 The contents of this array are determined by the specification
1484 in cvt_string_to_pixel_args.
1486 FROM is a pointer to an XrmValue which points to the color name to
1487 convert. TO is an XrmValue in which to return the pixel color.
1489 CLOSURE_RET is a pointer to user-data, in which we record if
1490 we allocated the color or not.
1492 Value is True if successful, False otherwise. */
1494 static Boolean
1495 cvt_string_to_pixel (Display *dpy, XrmValue *args, Cardinal *nargs,
1496 XrmValue *from, XrmValue *to,
1497 XtPointer *closure_ret)
1499 Screen *screen;
1500 Colormap cmap;
1501 Pixel pixel;
1502 String color_name;
1503 XColor color;
1505 if (*nargs != 2)
1507 XtAppWarningMsg (XtDisplayToApplicationContext (dpy),
1508 "wrongParameters", "cvt_string_to_pixel",
1509 "XtToolkitError",
1510 "Screen and colormap args required", NULL, NULL);
1511 return False;
1514 screen = *(Screen **) args[0].addr;
1515 cmap = *(Colormap *) args[1].addr;
1516 color_name = (String) from->addr;
1518 if (strcmp (color_name, XtDefaultBackground) == 0)
1520 *closure_ret = (XtPointer) False;
1521 pixel = WhitePixelOfScreen (screen);
1523 else if (strcmp (color_name, XtDefaultForeground) == 0)
1525 *closure_ret = (XtPointer) False;
1526 pixel = BlackPixelOfScreen (screen);
1528 else if (XParseColor (dpy, cmap, color_name, &color)
1529 && x_alloc_nearest_color_1 (dpy, cmap, &color))
1531 pixel = color.pixel;
1532 *closure_ret = (XtPointer) True;
1534 else
1536 String params[1];
1537 Cardinal nparams = 1;
1539 params[0] = color_name;
1540 XtAppWarningMsg (XtDisplayToApplicationContext (dpy),
1541 "badValue", "cvt_string_to_pixel",
1542 "XtToolkitError", "Invalid color `%s'",
1543 params, &nparams);
1544 return False;
1547 if (to->addr != NULL)
1549 if (to->size < sizeof (Pixel))
1551 to->size = sizeof (Pixel);
1552 return False;
1555 *(Pixel *) to->addr = pixel;
1557 else
1559 cvt_string_to_pixel_value = pixel;
1560 to->addr = (XtPointer) &cvt_string_to_pixel_value;
1563 to->size = sizeof (Pixel);
1564 return True;
1568 /* Free a pixel color which was previously allocated via
1569 cvt_string_to_pixel. This is registered as the destructor
1570 for this type of resource via XtSetTypeConverter.
1572 APP is the application context in which we work.
1574 TO is a pointer to an XrmValue holding the color to free.
1575 CLOSURE is the value we stored in CLOSURE_RET for this color
1576 in cvt_string_to_pixel.
1578 ARGS and NARGS are like for cvt_string_to_pixel. */
1580 static void
1581 cvt_pixel_dtor (XtAppContext app, XrmValuePtr to, XtPointer closure, XrmValuePtr args,
1582 Cardinal *nargs)
1584 if (*nargs != 2)
1586 XtAppWarningMsg (app, "wrongParameters", "cvt_pixel_dtor",
1587 "XtToolkitError",
1588 "Screen and colormap arguments required",
1589 NULL, NULL);
1591 else if (closure != NULL)
1593 /* We did allocate the pixel, so free it. */
1594 Screen *screen = *(Screen **) args[0].addr;
1595 Colormap cmap = *(Colormap *) args[1].addr;
1596 x_free_dpy_colors (DisplayOfScreen (screen), screen, cmap,
1597 (Pixel *) to->addr, 1);
1602 #endif /* USE_X_TOOLKIT */
1605 /* Value is an array of XColor structures for the contents of the
1606 color map of display DPY. Set *NCELLS to the size of the array.
1607 Note that this probably shouldn't be called for large color maps,
1608 say a 24-bit TrueColor map. */
1610 static const XColor *
1611 x_color_cells (Display *dpy, int *ncells)
1613 struct x_display_info *dpyinfo = x_display_info_for_display (dpy);
1615 if (dpyinfo->color_cells == NULL)
1617 Screen *screen = dpyinfo->screen;
1618 int ncolor_cells = XDisplayCells (dpy, XScreenNumberOfScreen (screen));
1619 int i;
1621 dpyinfo->color_cells = xnmalloc (ncolor_cells,
1622 sizeof *dpyinfo->color_cells);
1623 dpyinfo->ncolor_cells = ncolor_cells;
1625 for (i = 0; i < ncolor_cells; ++i)
1626 dpyinfo->color_cells[i].pixel = i;
1628 XQueryColors (dpy, dpyinfo->cmap,
1629 dpyinfo->color_cells, ncolor_cells);
1632 *ncells = dpyinfo->ncolor_cells;
1633 return dpyinfo->color_cells;
1637 /* On frame F, translate pixel colors to RGB values for the NCOLORS
1638 colors in COLORS. Use cached information, if available. */
1640 void
1641 x_query_colors (struct frame *f, XColor *colors, int ncolors)
1643 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
1645 if (dpyinfo->color_cells)
1647 int i;
1648 for (i = 0; i < ncolors; ++i)
1650 unsigned long pixel = colors[i].pixel;
1651 eassert (pixel < dpyinfo->ncolor_cells);
1652 eassert (dpyinfo->color_cells[pixel].pixel == pixel);
1653 colors[i] = dpyinfo->color_cells[pixel];
1656 else
1657 XQueryColors (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f), colors, ncolors);
1661 /* On frame F, translate pixel color to RGB values for the color in
1662 COLOR. Use cached information, if available. */
1664 void
1665 x_query_color (struct frame *f, XColor *color)
1667 x_query_colors (f, color, 1);
1671 /* Allocate the color COLOR->pixel on DISPLAY, colormap CMAP. If an
1672 exact match can't be allocated, try the nearest color available.
1673 Value is true if successful. Set *COLOR to the color
1674 allocated. */
1676 static bool
1677 x_alloc_nearest_color_1 (Display *dpy, Colormap cmap, XColor *color)
1679 bool rc;
1681 rc = XAllocColor (dpy, cmap, color) != 0;
1682 if (rc == 0)
1684 /* If we got to this point, the colormap is full, so we're going
1685 to try to get the next closest color. The algorithm used is
1686 a least-squares matching, which is what X uses for closest
1687 color matching with StaticColor visuals. */
1688 int nearest, i;
1689 int max_color_delta = 255;
1690 int max_delta = 3 * max_color_delta;
1691 int nearest_delta = max_delta + 1;
1692 int ncells;
1693 const XColor *cells = x_color_cells (dpy, &ncells);
1695 for (nearest = i = 0; i < ncells; ++i)
1697 int dred = (color->red >> 8) - (cells[i].red >> 8);
1698 int dgreen = (color->green >> 8) - (cells[i].green >> 8);
1699 int dblue = (color->blue >> 8) - (cells[i].blue >> 8);
1700 int delta = dred * dred + dgreen * dgreen + dblue * dblue;
1702 if (delta < nearest_delta)
1704 nearest = i;
1705 nearest_delta = delta;
1709 color->red = cells[nearest].red;
1710 color->green = cells[nearest].green;
1711 color->blue = cells[nearest].blue;
1712 rc = XAllocColor (dpy, cmap, color) != 0;
1714 else
1716 /* If allocation succeeded, and the allocated pixel color is not
1717 equal to a cached pixel color recorded earlier, there was a
1718 change in the colormap, so clear the color cache. */
1719 struct x_display_info *dpyinfo = x_display_info_for_display (dpy);
1720 XColor *cached_color;
1722 if (dpyinfo->color_cells
1723 && (cached_color = &dpyinfo->color_cells[color->pixel],
1724 (cached_color->red != color->red
1725 || cached_color->blue != color->blue
1726 || cached_color->green != color->green)))
1728 xfree (dpyinfo->color_cells);
1729 dpyinfo->color_cells = NULL;
1730 dpyinfo->ncolor_cells = 0;
1734 #ifdef DEBUG_X_COLORS
1735 if (rc)
1736 register_color (color->pixel);
1737 #endif /* DEBUG_X_COLORS */
1739 return rc;
1743 /* Allocate the color COLOR->pixel on frame F, colormap CMAP. If an
1744 exact match can't be allocated, try the nearest color available.
1745 Value is true if successful. Set *COLOR to the color
1746 allocated. */
1748 bool
1749 x_alloc_nearest_color (struct frame *f, Colormap cmap, XColor *color)
1751 gamma_correct (f, color);
1752 return x_alloc_nearest_color_1 (FRAME_X_DISPLAY (f), cmap, color);
1756 /* Allocate color PIXEL on frame F. PIXEL must already be allocated.
1757 It's necessary to do this instead of just using PIXEL directly to
1758 get color reference counts right. */
1760 unsigned long
1761 x_copy_color (struct frame *f, long unsigned int pixel)
1763 XColor color;
1765 color.pixel = pixel;
1766 block_input ();
1767 x_query_color (f, &color);
1768 XAllocColor (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f), &color);
1769 unblock_input ();
1770 #ifdef DEBUG_X_COLORS
1771 register_color (pixel);
1772 #endif
1773 return color.pixel;
1777 /* Brightness beyond which a color won't have its highlight brightness
1778 boosted.
1780 Nominally, highlight colors for `3d' faces are calculated by
1781 brightening an object's color by a constant scale factor, but this
1782 doesn't yield good results for dark colors, so for colors who's
1783 brightness is less than this value (on a scale of 0-65535) have an
1784 use an additional additive factor.
1786 The value here is set so that the default menu-bar/mode-line color
1787 (grey75) will not have its highlights changed at all. */
1788 #define HIGHLIGHT_COLOR_DARK_BOOST_LIMIT 48000
1791 /* Allocate a color which is lighter or darker than *PIXEL by FACTOR
1792 or DELTA. Try a color with RGB values multiplied by FACTOR first.
1793 If this produces the same color as PIXEL, try a color where all RGB
1794 values have DELTA added. Return the allocated color in *PIXEL.
1795 DISPLAY is the X display, CMAP is the colormap to operate on.
1796 Value is non-zero if successful. */
1798 static bool
1799 x_alloc_lighter_color (struct frame *f, Display *display, Colormap cmap, long unsigned int *pixel, double factor, int delta)
1801 XColor color, new;
1802 long bright;
1803 bool success_p;
1805 /* Get RGB color values. */
1806 color.pixel = *pixel;
1807 x_query_color (f, &color);
1809 /* Change RGB values by specified FACTOR. Avoid overflow! */
1810 eassert (factor >= 0);
1811 new.red = min (0xffff, factor * color.red);
1812 new.green = min (0xffff, factor * color.green);
1813 new.blue = min (0xffff, factor * color.blue);
1815 /* Calculate brightness of COLOR. */
1816 bright = (2 * color.red + 3 * color.green + color.blue) / 6;
1818 /* We only boost colors that are darker than
1819 HIGHLIGHT_COLOR_DARK_BOOST_LIMIT. */
1820 if (bright < HIGHLIGHT_COLOR_DARK_BOOST_LIMIT)
1821 /* Make an additive adjustment to NEW, because it's dark enough so
1822 that scaling by FACTOR alone isn't enough. */
1824 /* How far below the limit this color is (0 - 1, 1 being darker). */
1825 double dimness = 1 - (double)bright / HIGHLIGHT_COLOR_DARK_BOOST_LIMIT;
1826 /* The additive adjustment. */
1827 int min_delta = delta * dimness * factor / 2;
1829 if (factor < 1)
1831 new.red = max (0, new.red - min_delta);
1832 new.green = max (0, new.green - min_delta);
1833 new.blue = max (0, new.blue - min_delta);
1835 else
1837 new.red = min (0xffff, min_delta + new.red);
1838 new.green = min (0xffff, min_delta + new.green);
1839 new.blue = min (0xffff, min_delta + new.blue);
1843 /* Try to allocate the color. */
1844 success_p = x_alloc_nearest_color (f, cmap, &new);
1845 if (success_p)
1847 if (new.pixel == *pixel)
1849 /* If we end up with the same color as before, try adding
1850 delta to the RGB values. */
1851 x_free_colors (f, &new.pixel, 1);
1853 new.red = min (0xffff, delta + color.red);
1854 new.green = min (0xffff, delta + color.green);
1855 new.blue = min (0xffff, delta + color.blue);
1856 success_p = x_alloc_nearest_color (f, cmap, &new);
1858 else
1859 success_p = 1;
1860 *pixel = new.pixel;
1863 return success_p;
1867 /* Set up the foreground color for drawing relief lines of glyph
1868 string S. RELIEF is a pointer to a struct relief containing the GC
1869 with which lines will be drawn. Use a color that is FACTOR or
1870 DELTA lighter or darker than the relief's background which is found
1871 in S->f->output_data.x->relief_background. If such a color cannot
1872 be allocated, use DEFAULT_PIXEL, instead. */
1874 static void
1875 x_setup_relief_color (struct frame *f, struct relief *relief, double factor, int delta, long unsigned int default_pixel)
1877 XGCValues xgcv;
1878 struct x_output *di = f->output_data.x;
1879 unsigned long mask = GCForeground | GCLineWidth | GCGraphicsExposures;
1880 unsigned long pixel;
1881 unsigned long background = di->relief_background;
1882 Colormap cmap = FRAME_X_COLORMAP (f);
1883 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
1884 Display *dpy = FRAME_X_DISPLAY (f);
1886 xgcv.graphics_exposures = False;
1887 xgcv.line_width = 1;
1889 /* Free previously allocated color. The color cell will be reused
1890 when it has been freed as many times as it was allocated, so this
1891 doesn't affect faces using the same colors. */
1892 if (relief->gc
1893 && relief->allocated_p)
1895 x_free_colors (f, &relief->pixel, 1);
1896 relief->allocated_p = 0;
1899 /* Allocate new color. */
1900 xgcv.foreground = default_pixel;
1901 pixel = background;
1902 if (dpyinfo->n_planes != 1
1903 && x_alloc_lighter_color (f, dpy, cmap, &pixel, factor, delta))
1905 relief->allocated_p = 1;
1906 xgcv.foreground = relief->pixel = pixel;
1909 if (relief->gc == 0)
1911 xgcv.stipple = dpyinfo->gray;
1912 mask |= GCStipple;
1913 relief->gc = XCreateGC (dpy, FRAME_X_WINDOW (f), mask, &xgcv);
1915 else
1916 XChangeGC (dpy, relief->gc, mask, &xgcv);
1920 /* Set up colors for the relief lines around glyph string S. */
1922 static void
1923 x_setup_relief_colors (struct glyph_string *s)
1925 struct x_output *di = s->f->output_data.x;
1926 unsigned long color;
1928 if (s->face->use_box_color_for_shadows_p)
1929 color = s->face->box_color;
1930 else if (s->first_glyph->type == IMAGE_GLYPH
1931 && s->img->pixmap
1932 && !IMAGE_BACKGROUND_TRANSPARENT (s->img, s->f, 0))
1933 color = IMAGE_BACKGROUND (s->img, s->f, 0);
1934 else
1936 XGCValues xgcv;
1938 /* Get the background color of the face. */
1939 XGetGCValues (s->display, s->gc, GCBackground, &xgcv);
1940 color = xgcv.background;
1943 if (di->white_relief.gc == 0
1944 || color != di->relief_background)
1946 di->relief_background = color;
1947 x_setup_relief_color (s->f, &di->white_relief, 1.2, 0x8000,
1948 WHITE_PIX_DEFAULT (s->f));
1949 x_setup_relief_color (s->f, &di->black_relief, 0.6, 0x4000,
1950 BLACK_PIX_DEFAULT (s->f));
1955 /* Draw a relief on frame F inside the rectangle given by LEFT_X,
1956 TOP_Y, RIGHT_X, and BOTTOM_Y. WIDTH is the thickness of the relief
1957 to draw, it must be >= 0. RAISED_P non-zero means draw a raised
1958 relief. LEFT_P non-zero means draw a relief on the left side of
1959 the rectangle. RIGHT_P non-zero means draw a relief on the right
1960 side of the rectangle. CLIP_RECT is the clipping rectangle to use
1961 when drawing. */
1963 static void
1964 x_draw_relief_rect (struct frame *f,
1965 int left_x, int top_y, int right_x, int bottom_y, int width,
1966 int raised_p, int top_p, int bot_p, int left_p, int right_p,
1967 XRectangle *clip_rect)
1969 Display *dpy = FRAME_X_DISPLAY (f);
1970 Window window = FRAME_X_WINDOW (f);
1971 int i;
1972 GC gc;
1974 if (raised_p)
1975 gc = f->output_data.x->white_relief.gc;
1976 else
1977 gc = f->output_data.x->black_relief.gc;
1978 XSetClipRectangles (dpy, gc, 0, 0, clip_rect, 1, Unsorted);
1980 /* This code is more complicated than it has to be, because of two
1981 minor hacks to make the boxes look nicer: (i) if width > 1, draw
1982 the outermost line using the black relief. (ii) Omit the four
1983 corner pixels. */
1985 /* Top. */
1986 if (top_p)
1988 if (width == 1)
1989 XDrawLine (dpy, window, gc,
1990 left_x + (left_p ? 1 : 0), top_y,
1991 right_x + (right_p ? 0 : 1), top_y);
1993 for (i = 1; i < width; ++i)
1994 XDrawLine (dpy, window, gc,
1995 left_x + i * left_p, top_y + i,
1996 right_x + 1 - i * right_p, top_y + i);
1999 /* Left. */
2000 if (left_p)
2002 if (width == 1)
2003 XDrawLine (dpy, window, gc, left_x, top_y + 1, left_x, bottom_y);
2005 XClearArea (dpy, window, left_x, top_y, 1, 1, False);
2006 XClearArea (dpy, window, left_x, bottom_y, 1, 1, False);
2008 for (i = (width > 1 ? 1 : 0); i < width; ++i)
2009 XDrawLine (dpy, window, gc,
2010 left_x + i, top_y + (i + 1) * top_p,
2011 left_x + i, bottom_y + 1 - (i + 1) * bot_p);
2014 XSetClipMask (dpy, gc, None);
2015 if (raised_p)
2016 gc = f->output_data.x->black_relief.gc;
2017 else
2018 gc = f->output_data.x->white_relief.gc;
2019 XSetClipRectangles (dpy, gc, 0, 0, clip_rect, 1, Unsorted);
2021 if (width > 1)
2023 /* Outermost top line. */
2024 if (top_p)
2025 XDrawLine (dpy, window, gc,
2026 left_x + (left_p ? 1 : 0), top_y,
2027 right_x + (right_p ? 0 : 1), top_y);
2029 /* Outermost left line. */
2030 if (left_p)
2031 XDrawLine (dpy, window, gc, left_x, top_y + 1, left_x, bottom_y);
2034 /* Bottom. */
2035 if (bot_p)
2037 XDrawLine (dpy, window, gc,
2038 left_x + (left_p ? 1 : 0), bottom_y,
2039 right_x + (right_p ? 0 : 1), bottom_y);
2040 for (i = 1; i < width; ++i)
2041 XDrawLine (dpy, window, gc,
2042 left_x + i * left_p, bottom_y - i,
2043 right_x + 1 - i * right_p, bottom_y - i);
2046 /* Right. */
2047 if (right_p)
2049 XClearArea (dpy, window, right_x, top_y, 1, 1, False);
2050 XClearArea (dpy, window, right_x, bottom_y, 1, 1, False);
2051 for (i = 0; i < width; ++i)
2052 XDrawLine (dpy, window, gc,
2053 right_x - i, top_y + (i + 1) * top_p,
2054 right_x - i, bottom_y + 1 - (i + 1) * bot_p);
2057 XSetClipMask (dpy, gc, None);
2061 /* Draw a box on frame F inside the rectangle given by LEFT_X, TOP_Y,
2062 RIGHT_X, and BOTTOM_Y. WIDTH is the thickness of the lines to
2063 draw, it must be >= 0. LEFT_P non-zero means draw a line on the
2064 left side of the rectangle. RIGHT_P non-zero means draw a line
2065 on the right side of the rectangle. CLIP_RECT is the clipping
2066 rectangle to use when drawing. */
2068 static void
2069 x_draw_box_rect (struct glyph_string *s,
2070 int left_x, int top_y, int right_x, int bottom_y, int width,
2071 int left_p, int right_p, XRectangle *clip_rect)
2073 XGCValues xgcv;
2075 XGetGCValues (s->display, s->gc, GCForeground, &xgcv);
2076 XSetForeground (s->display, s->gc, s->face->box_color);
2077 XSetClipRectangles (s->display, s->gc, 0, 0, clip_rect, 1, Unsorted);
2079 /* Top. */
2080 XFillRectangle (s->display, s->window, s->gc,
2081 left_x, top_y, right_x - left_x + 1, width);
2083 /* Left. */
2084 if (left_p)
2085 XFillRectangle (s->display, s->window, s->gc,
2086 left_x, top_y, width, bottom_y - top_y + 1);
2088 /* Bottom. */
2089 XFillRectangle (s->display, s->window, s->gc,
2090 left_x, bottom_y - width + 1, right_x - left_x + 1, width);
2092 /* Right. */
2093 if (right_p)
2094 XFillRectangle (s->display, s->window, s->gc,
2095 right_x - width + 1, top_y, width, bottom_y - top_y + 1);
2097 XSetForeground (s->display, s->gc, xgcv.foreground);
2098 XSetClipMask (s->display, s->gc, None);
2102 /* Draw a box around glyph string S. */
2104 static void
2105 x_draw_glyph_string_box (struct glyph_string *s)
2107 int width, left_x, right_x, top_y, bottom_y, last_x, raised_p;
2108 int left_p, right_p;
2109 struct glyph *last_glyph;
2110 XRectangle clip_rect;
2112 last_x = ((s->row->full_width_p && !s->w->pseudo_window_p)
2113 ? WINDOW_RIGHT_EDGE_X (s->w)
2114 : window_box_right (s->w, s->area));
2116 /* The glyph that may have a right box line. */
2117 last_glyph = (s->cmp || s->img
2118 ? s->first_glyph
2119 : s->first_glyph + s->nchars - 1);
2121 width = eabs (s->face->box_line_width);
2122 raised_p = s->face->box == FACE_RAISED_BOX;
2123 left_x = s->x;
2124 right_x = (s->row->full_width_p && s->extends_to_end_of_line_p
2125 ? last_x - 1
2126 : min (last_x, s->x + s->background_width) - 1);
2127 top_y = s->y;
2128 bottom_y = top_y + s->height - 1;
2130 left_p = (s->first_glyph->left_box_line_p
2131 || (s->hl == DRAW_MOUSE_FACE
2132 && (s->prev == NULL
2133 || s->prev->hl != s->hl)));
2134 right_p = (last_glyph->right_box_line_p
2135 || (s->hl == DRAW_MOUSE_FACE
2136 && (s->next == NULL
2137 || s->next->hl != s->hl)));
2139 get_glyph_string_clip_rect (s, &clip_rect);
2141 if (s->face->box == FACE_SIMPLE_BOX)
2142 x_draw_box_rect (s, left_x, top_y, right_x, bottom_y, width,
2143 left_p, right_p, &clip_rect);
2144 else
2146 x_setup_relief_colors (s);
2147 x_draw_relief_rect (s->f, left_x, top_y, right_x, bottom_y,
2148 width, raised_p, 1, 1, left_p, right_p, &clip_rect);
2153 /* Draw foreground of image glyph string S. */
2155 static void
2156 x_draw_image_foreground (struct glyph_string *s)
2158 int x = s->x;
2159 int y = s->ybase - image_ascent (s->img, s->face, &s->slice);
2161 /* If first glyph of S has a left box line, start drawing it to the
2162 right of that line. */
2163 if (s->face->box != FACE_NO_BOX
2164 && s->first_glyph->left_box_line_p
2165 && s->slice.x == 0)
2166 x += eabs (s->face->box_line_width);
2168 /* If there is a margin around the image, adjust x- and y-position
2169 by that margin. */
2170 if (s->slice.x == 0)
2171 x += s->img->hmargin;
2172 if (s->slice.y == 0)
2173 y += s->img->vmargin;
2175 if (s->img->pixmap)
2177 if (s->img->mask)
2179 /* We can't set both a clip mask and use XSetClipRectangles
2180 because the latter also sets a clip mask. We also can't
2181 trust on the shape extension to be available
2182 (XShapeCombineRegion). So, compute the rectangle to draw
2183 manually. */
2184 unsigned long mask = (GCClipMask | GCClipXOrigin | GCClipYOrigin
2185 | GCFunction);
2186 XGCValues xgcv;
2187 XRectangle clip_rect, image_rect, r;
2189 xgcv.clip_mask = s->img->mask;
2190 xgcv.clip_x_origin = x;
2191 xgcv.clip_y_origin = y;
2192 xgcv.function = GXcopy;
2193 XChangeGC (s->display, s->gc, mask, &xgcv);
2195 get_glyph_string_clip_rect (s, &clip_rect);
2196 image_rect.x = x;
2197 image_rect.y = y;
2198 image_rect.width = s->slice.width;
2199 image_rect.height = s->slice.height;
2200 if (x_intersect_rectangles (&clip_rect, &image_rect, &r))
2201 XCopyArea (s->display, s->img->pixmap, s->window, s->gc,
2202 s->slice.x + r.x - x, s->slice.y + r.y - y,
2203 r.width, r.height, r.x, r.y);
2205 else
2207 XRectangle clip_rect, image_rect, r;
2209 get_glyph_string_clip_rect (s, &clip_rect);
2210 image_rect.x = x;
2211 image_rect.y = y;
2212 image_rect.width = s->slice.width;
2213 image_rect.height = s->slice.height;
2214 if (x_intersect_rectangles (&clip_rect, &image_rect, &r))
2215 XCopyArea (s->display, s->img->pixmap, s->window, s->gc,
2216 s->slice.x + r.x - x, s->slice.y + r.y - y,
2217 r.width, r.height, r.x, r.y);
2219 /* When the image has a mask, we can expect that at
2220 least part of a mouse highlight or a block cursor will
2221 be visible. If the image doesn't have a mask, make
2222 a block cursor visible by drawing a rectangle around
2223 the image. I believe it's looking better if we do
2224 nothing here for mouse-face. */
2225 if (s->hl == DRAW_CURSOR)
2227 int relief = eabs (s->img->relief);
2228 XDrawRectangle (s->display, s->window, s->gc,
2229 x - relief, y - relief,
2230 s->slice.width + relief*2 - 1,
2231 s->slice.height + relief*2 - 1);
2235 else
2236 /* Draw a rectangle if image could not be loaded. */
2237 XDrawRectangle (s->display, s->window, s->gc, x, y,
2238 s->slice.width - 1, s->slice.height - 1);
2242 /* Draw a relief around the image glyph string S. */
2244 static void
2245 x_draw_image_relief (struct glyph_string *s)
2247 int x1, y1, thick, raised_p, top_p, bot_p, left_p, right_p;
2248 XRectangle r;
2249 int x = s->x;
2250 int y = s->ybase - image_ascent (s->img, s->face, &s->slice);
2252 /* If first glyph of S has a left box line, start drawing it to the
2253 right of that line. */
2254 if (s->face->box != FACE_NO_BOX
2255 && s->first_glyph->left_box_line_p
2256 && s->slice.x == 0)
2257 x += eabs (s->face->box_line_width);
2259 /* If there is a margin around the image, adjust x- and y-position
2260 by that margin. */
2261 if (s->slice.x == 0)
2262 x += s->img->hmargin;
2263 if (s->slice.y == 0)
2264 y += s->img->vmargin;
2266 if (s->hl == DRAW_IMAGE_SUNKEN
2267 || s->hl == DRAW_IMAGE_RAISED)
2269 thick = tool_bar_button_relief >= 0 ? tool_bar_button_relief : DEFAULT_TOOL_BAR_BUTTON_RELIEF;
2270 raised_p = s->hl == DRAW_IMAGE_RAISED;
2272 else
2274 thick = eabs (s->img->relief);
2275 raised_p = s->img->relief > 0;
2278 x1 = x + s->slice.width - 1;
2279 y1 = y + s->slice.height - 1;
2280 top_p = bot_p = left_p = right_p = 0;
2282 if (s->slice.x == 0)
2283 x -= thick, left_p = 1;
2284 if (s->slice.y == 0)
2285 y -= thick, top_p = 1;
2286 if (s->slice.x + s->slice.width == s->img->width)
2287 x1 += thick, right_p = 1;
2288 if (s->slice.y + s->slice.height == s->img->height)
2289 y1 += thick, bot_p = 1;
2291 x_setup_relief_colors (s);
2292 get_glyph_string_clip_rect (s, &r);
2293 x_draw_relief_rect (s->f, x, y, x1, y1, thick, raised_p,
2294 top_p, bot_p, left_p, right_p, &r);
2298 /* Draw the foreground of image glyph string S to PIXMAP. */
2300 static void
2301 x_draw_image_foreground_1 (struct glyph_string *s, Pixmap pixmap)
2303 int x = 0;
2304 int y = s->ybase - s->y - image_ascent (s->img, s->face, &s->slice);
2306 /* If first glyph of S has a left box line, start drawing it to the
2307 right of that line. */
2308 if (s->face->box != FACE_NO_BOX
2309 && s->first_glyph->left_box_line_p
2310 && s->slice.x == 0)
2311 x += eabs (s->face->box_line_width);
2313 /* If there is a margin around the image, adjust x- and y-position
2314 by that margin. */
2315 if (s->slice.x == 0)
2316 x += s->img->hmargin;
2317 if (s->slice.y == 0)
2318 y += s->img->vmargin;
2320 if (s->img->pixmap)
2322 if (s->img->mask)
2324 /* We can't set both a clip mask and use XSetClipRectangles
2325 because the latter also sets a clip mask. We also can't
2326 trust on the shape extension to be available
2327 (XShapeCombineRegion). So, compute the rectangle to draw
2328 manually. */
2329 unsigned long mask = (GCClipMask | GCClipXOrigin | GCClipYOrigin
2330 | GCFunction);
2331 XGCValues xgcv;
2333 xgcv.clip_mask = s->img->mask;
2334 xgcv.clip_x_origin = x - s->slice.x;
2335 xgcv.clip_y_origin = y - s->slice.y;
2336 xgcv.function = GXcopy;
2337 XChangeGC (s->display, s->gc, mask, &xgcv);
2339 XCopyArea (s->display, s->img->pixmap, pixmap, s->gc,
2340 s->slice.x, s->slice.y,
2341 s->slice.width, s->slice.height, x, y);
2342 XSetClipMask (s->display, s->gc, None);
2344 else
2346 XCopyArea (s->display, s->img->pixmap, pixmap, s->gc,
2347 s->slice.x, s->slice.y,
2348 s->slice.width, s->slice.height, x, y);
2350 /* When the image has a mask, we can expect that at
2351 least part of a mouse highlight or a block cursor will
2352 be visible. If the image doesn't have a mask, make
2353 a block cursor visible by drawing a rectangle around
2354 the image. I believe it's looking better if we do
2355 nothing here for mouse-face. */
2356 if (s->hl == DRAW_CURSOR)
2358 int r = eabs (s->img->relief);
2359 XDrawRectangle (s->display, s->window, s->gc, x - r, y - r,
2360 s->slice.width + r*2 - 1,
2361 s->slice.height + r*2 - 1);
2365 else
2366 /* Draw a rectangle if image could not be loaded. */
2367 XDrawRectangle (s->display, pixmap, s->gc, x, y,
2368 s->slice.width - 1, s->slice.height - 1);
2372 /* Draw part of the background of glyph string S. X, Y, W, and H
2373 give the rectangle to draw. */
2375 static void
2376 x_draw_glyph_string_bg_rect (struct glyph_string *s, int x, int y, int w, int h)
2378 if (s->stippled_p)
2380 /* Fill background with a stipple pattern. */
2381 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
2382 XFillRectangle (s->display, s->window, s->gc, x, y, w, h);
2383 XSetFillStyle (s->display, s->gc, FillSolid);
2385 else
2386 x_clear_glyph_string_rect (s, x, y, w, h);
2390 /* Draw image glyph string S.
2392 s->y
2393 s->x +-------------------------
2394 | s->face->box
2396 | +-------------------------
2397 | | s->img->margin
2399 | | +-------------------
2400 | | | the image
2404 static void
2405 x_draw_image_glyph_string (struct glyph_string *s)
2407 int box_line_hwidth = eabs (s->face->box_line_width);
2408 int box_line_vwidth = max (s->face->box_line_width, 0);
2409 int height;
2410 Pixmap pixmap = None;
2412 height = s->height;
2413 if (s->slice.y == 0)
2414 height -= box_line_vwidth;
2415 if (s->slice.y + s->slice.height >= s->img->height)
2416 height -= box_line_vwidth;
2418 /* Fill background with face under the image. Do it only if row is
2419 taller than image or if image has a clip mask to reduce
2420 flickering. */
2421 s->stippled_p = s->face->stipple != 0;
2422 if (height > s->slice.height
2423 || s->img->hmargin
2424 || s->img->vmargin
2425 || s->img->mask
2426 || s->img->pixmap == 0
2427 || s->width != s->background_width)
2429 if (s->img->mask)
2431 /* Create a pixmap as large as the glyph string. Fill it
2432 with the background color. Copy the image to it, using
2433 its mask. Copy the temporary pixmap to the display. */
2434 Screen *screen = FRAME_X_SCREEN (s->f);
2435 int depth = DefaultDepthOfScreen (screen);
2437 /* Create a pixmap as large as the glyph string. */
2438 pixmap = XCreatePixmap (s->display, s->window,
2439 s->background_width,
2440 s->height, depth);
2442 /* Don't clip in the following because we're working on the
2443 pixmap. */
2444 XSetClipMask (s->display, s->gc, None);
2446 /* Fill the pixmap with the background color/stipple. */
2447 if (s->stippled_p)
2449 /* Fill background with a stipple pattern. */
2450 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
2451 XSetTSOrigin (s->display, s->gc, - s->x, - s->y);
2452 XFillRectangle (s->display, pixmap, s->gc,
2453 0, 0, s->background_width, s->height);
2454 XSetFillStyle (s->display, s->gc, FillSolid);
2455 XSetTSOrigin (s->display, s->gc, 0, 0);
2457 else
2459 XGCValues xgcv;
2460 XGetGCValues (s->display, s->gc, GCForeground | GCBackground,
2461 &xgcv);
2462 XSetForeground (s->display, s->gc, xgcv.background);
2463 XFillRectangle (s->display, pixmap, s->gc,
2464 0, 0, s->background_width, s->height);
2465 XSetForeground (s->display, s->gc, xgcv.foreground);
2468 else
2470 int x = s->x;
2471 int y = s->y;
2473 if (s->first_glyph->left_box_line_p
2474 && s->slice.x == 0)
2475 x += box_line_hwidth;
2477 if (s->slice.y == 0)
2478 y += box_line_vwidth;
2480 x_draw_glyph_string_bg_rect (s, x, y, s->background_width, height);
2483 s->background_filled_p = 1;
2486 /* Draw the foreground. */
2487 if (pixmap != None)
2489 x_draw_image_foreground_1 (s, pixmap);
2490 x_set_glyph_string_clipping (s);
2491 XCopyArea (s->display, pixmap, s->window, s->gc,
2492 0, 0, s->background_width, s->height, s->x, s->y);
2493 XFreePixmap (s->display, pixmap);
2495 else
2496 x_draw_image_foreground (s);
2498 /* If we must draw a relief around the image, do it. */
2499 if (s->img->relief
2500 || s->hl == DRAW_IMAGE_RAISED
2501 || s->hl == DRAW_IMAGE_SUNKEN)
2502 x_draw_image_relief (s);
2506 /* Draw stretch glyph string S. */
2508 static void
2509 x_draw_stretch_glyph_string (struct glyph_string *s)
2511 eassert (s->first_glyph->type == STRETCH_GLYPH);
2513 if (s->hl == DRAW_CURSOR
2514 && !x_stretch_cursor_p)
2516 /* If `x-stretch-cursor' is nil, don't draw a block cursor as
2517 wide as the stretch glyph. */
2518 int width, background_width = s->background_width;
2519 int x = s->x;
2521 if (!s->row->reversed_p)
2523 int left_x = window_box_left_offset (s->w, TEXT_AREA);
2525 if (x < left_x)
2527 background_width -= left_x - x;
2528 x = left_x;
2531 else
2533 /* In R2L rows, draw the cursor on the right edge of the
2534 stretch glyph. */
2535 int right_x = window_box_right_offset (s->w, TEXT_AREA);
2537 if (x + background_width > right_x)
2538 background_width -= x - right_x;
2539 x += background_width;
2541 width = min (FRAME_COLUMN_WIDTH (s->f), background_width);
2542 if (s->row->reversed_p)
2543 x -= width;
2545 /* Draw cursor. */
2546 x_draw_glyph_string_bg_rect (s, x, s->y, width, s->height);
2548 /* Clear rest using the GC of the original non-cursor face. */
2549 if (width < background_width)
2551 int y = s->y;
2552 int w = background_width - width, h = s->height;
2553 XRectangle r;
2554 GC gc;
2556 if (!s->row->reversed_p)
2557 x += width;
2558 else
2559 x = s->x;
2560 if (s->row->mouse_face_p
2561 && cursor_in_mouse_face_p (s->w))
2563 x_set_mouse_face_gc (s);
2564 gc = s->gc;
2566 else
2567 gc = s->face->gc;
2569 get_glyph_string_clip_rect (s, &r);
2570 XSetClipRectangles (s->display, gc, 0, 0, &r, 1, Unsorted);
2572 if (s->face->stipple)
2574 /* Fill background with a stipple pattern. */
2575 XSetFillStyle (s->display, gc, FillOpaqueStippled);
2576 XFillRectangle (s->display, s->window, gc, x, y, w, h);
2577 XSetFillStyle (s->display, gc, FillSolid);
2579 else
2581 XGCValues xgcv;
2582 XGetGCValues (s->display, gc, GCForeground | GCBackground, &xgcv);
2583 XSetForeground (s->display, gc, xgcv.background);
2584 XFillRectangle (s->display, s->window, gc, x, y, w, h);
2585 XSetForeground (s->display, gc, xgcv.foreground);
2589 else if (!s->background_filled_p)
2591 int background_width = s->background_width;
2592 int x = s->x, left_x = window_box_left_offset (s->w, TEXT_AREA);
2594 /* Don't draw into left margin, fringe or scrollbar area
2595 except for header line and mode line. */
2596 if (x < left_x && !s->row->mode_line_p)
2598 background_width -= left_x - x;
2599 x = left_x;
2601 if (background_width > 0)
2602 x_draw_glyph_string_bg_rect (s, x, s->y, background_width, s->height);
2605 s->background_filled_p = 1;
2609 Draw a wavy line under S. The wave fills wave_height pixels from y0.
2611 x0 wave_length = 2
2613 y0 * * * * *
2614 |* * * * * * * * *
2615 wave_height = 3 | * * * *
2619 static void
2620 x_draw_underwave (struct glyph_string *s)
2622 int wave_height = 3, wave_length = 2;
2623 int dx, dy, x0, y0, width, x1, y1, x2, y2, odd, xmax;
2624 XRectangle wave_clip, string_clip, final_clip;
2626 dx = wave_length;
2627 dy = wave_height - 1;
2628 x0 = s->x;
2629 y0 = s->ybase - wave_height + 3;
2630 width = s->width;
2631 xmax = x0 + width;
2633 /* Find and set clipping rectangle */
2635 wave_clip.x = x0;
2636 wave_clip.y = y0;
2637 wave_clip.width = width;
2638 wave_clip.height = wave_height;
2639 get_glyph_string_clip_rect (s, &string_clip);
2641 if (!x_intersect_rectangles (&wave_clip, &string_clip, &final_clip))
2642 return;
2644 XSetClipRectangles (s->display, s->gc, 0, 0, &final_clip, 1, Unsorted);
2646 /* Draw the waves */
2648 x1 = x0 - (x0 % dx);
2649 x2 = x1 + dx;
2650 odd = (x1/dx) % 2;
2651 y1 = y2 = y0;
2653 if (odd)
2654 y1 += dy;
2655 else
2656 y2 += dy;
2658 if (INT_MAX - dx < xmax)
2659 emacs_abort ();
2661 while (x1 <= xmax)
2663 XDrawLine (s->display, s->window, s->gc, x1, y1, x2, y2);
2664 x1 = x2, y1 = y2;
2665 x2 += dx, y2 = y0 + odd*dy;
2666 odd = !odd;
2669 /* Restore previous clipping rectangle(s) */
2670 XSetClipRectangles (s->display, s->gc, 0, 0, s->clip, s->num_clips, Unsorted);
2674 /* Draw glyph string S. */
2676 static void
2677 x_draw_glyph_string (struct glyph_string *s)
2679 bool relief_drawn_p = 0;
2681 /* If S draws into the background of its successors, draw the
2682 background of the successors first so that S can draw into it.
2683 This makes S->next use XDrawString instead of XDrawImageString. */
2684 if (s->next && s->right_overhang && !s->for_overlaps)
2686 int width;
2687 struct glyph_string *next;
2689 for (width = 0, next = s->next;
2690 next && width < s->right_overhang;
2691 width += next->width, next = next->next)
2692 if (next->first_glyph->type != IMAGE_GLYPH)
2694 x_set_glyph_string_gc (next);
2695 x_set_glyph_string_clipping (next);
2696 if (next->first_glyph->type == STRETCH_GLYPH)
2697 x_draw_stretch_glyph_string (next);
2698 else
2699 x_draw_glyph_string_background (next, 1);
2700 next->num_clips = 0;
2704 /* Set up S->gc, set clipping and draw S. */
2705 x_set_glyph_string_gc (s);
2707 /* Draw relief (if any) in advance for char/composition so that the
2708 glyph string can be drawn over it. */
2709 if (!s->for_overlaps
2710 && s->face->box != FACE_NO_BOX
2711 && (s->first_glyph->type == CHAR_GLYPH
2712 || s->first_glyph->type == COMPOSITE_GLYPH))
2715 x_set_glyph_string_clipping (s);
2716 x_draw_glyph_string_background (s, 1);
2717 x_draw_glyph_string_box (s);
2718 x_set_glyph_string_clipping (s);
2719 relief_drawn_p = 1;
2721 else if (!s->clip_head /* draw_glyphs didn't specify a clip mask. */
2722 && !s->clip_tail
2723 && ((s->prev && s->prev->hl != s->hl && s->left_overhang)
2724 || (s->next && s->next->hl != s->hl && s->right_overhang)))
2725 /* We must clip just this glyph. left_overhang part has already
2726 drawn when s->prev was drawn, and right_overhang part will be
2727 drawn later when s->next is drawn. */
2728 x_set_glyph_string_clipping_exactly (s, s);
2729 else
2730 x_set_glyph_string_clipping (s);
2732 switch (s->first_glyph->type)
2734 case IMAGE_GLYPH:
2735 x_draw_image_glyph_string (s);
2736 break;
2738 case STRETCH_GLYPH:
2739 x_draw_stretch_glyph_string (s);
2740 break;
2742 case CHAR_GLYPH:
2743 if (s->for_overlaps)
2744 s->background_filled_p = 1;
2745 else
2746 x_draw_glyph_string_background (s, 0);
2747 x_draw_glyph_string_foreground (s);
2748 break;
2750 case COMPOSITE_GLYPH:
2751 if (s->for_overlaps || (s->cmp_from > 0
2752 && ! s->first_glyph->u.cmp.automatic))
2753 s->background_filled_p = 1;
2754 else
2755 x_draw_glyph_string_background (s, 1);
2756 x_draw_composite_glyph_string_foreground (s);
2757 break;
2759 case GLYPHLESS_GLYPH:
2760 if (s->for_overlaps)
2761 s->background_filled_p = 1;
2762 else
2763 x_draw_glyph_string_background (s, 1);
2764 x_draw_glyphless_glyph_string_foreground (s);
2765 break;
2767 default:
2768 emacs_abort ();
2771 if (!s->for_overlaps)
2773 /* Draw underline. */
2774 if (s->face->underline_p)
2776 if (s->face->underline_type == FACE_UNDER_WAVE)
2778 if (s->face->underline_defaulted_p)
2779 x_draw_underwave (s);
2780 else
2782 XGCValues xgcv;
2783 XGetGCValues (s->display, s->gc, GCForeground, &xgcv);
2784 XSetForeground (s->display, s->gc, s->face->underline_color);
2785 x_draw_underwave (s);
2786 XSetForeground (s->display, s->gc, xgcv.foreground);
2789 else if (s->face->underline_type == FACE_UNDER_LINE)
2791 unsigned long thickness, position;
2792 int y;
2794 if (s->prev && s->prev->face->underline_p
2795 && s->prev->face->underline_type == FACE_UNDER_LINE)
2797 /* We use the same underline style as the previous one. */
2798 thickness = s->prev->underline_thickness;
2799 position = s->prev->underline_position;
2801 else
2803 /* Get the underline thickness. Default is 1 pixel. */
2804 if (s->font && s->font->underline_thickness > 0)
2805 thickness = s->font->underline_thickness;
2806 else
2807 thickness = 1;
2808 if (x_underline_at_descent_line)
2809 position = (s->height - thickness) - (s->ybase - s->y);
2810 else
2812 /* Get the underline position. This is the recommended
2813 vertical offset in pixels from the baseline to the top of
2814 the underline. This is a signed value according to the
2815 specs, and its default is
2817 ROUND ((maximum descent) / 2), with
2818 ROUND(x) = floor (x + 0.5) */
2820 if (x_use_underline_position_properties
2821 && s->font && s->font->underline_position >= 0)
2822 position = s->font->underline_position;
2823 else if (s->font)
2824 position = (s->font->descent + 1) / 2;
2825 else
2826 position = underline_minimum_offset;
2828 position = max (position, underline_minimum_offset);
2830 /* Check the sanity of thickness and position. We should
2831 avoid drawing underline out of the current line area. */
2832 if (s->y + s->height <= s->ybase + position)
2833 position = (s->height - 1) - (s->ybase - s->y);
2834 if (s->y + s->height < s->ybase + position + thickness)
2835 thickness = (s->y + s->height) - (s->ybase + position);
2836 s->underline_thickness = thickness;
2837 s->underline_position = position;
2838 y = s->ybase + position;
2839 if (s->face->underline_defaulted_p)
2840 XFillRectangle (s->display, s->window, s->gc,
2841 s->x, y, s->width, thickness);
2842 else
2844 XGCValues xgcv;
2845 XGetGCValues (s->display, s->gc, GCForeground, &xgcv);
2846 XSetForeground (s->display, s->gc, s->face->underline_color);
2847 XFillRectangle (s->display, s->window, s->gc,
2848 s->x, y, s->width, thickness);
2849 XSetForeground (s->display, s->gc, xgcv.foreground);
2853 /* Draw overline. */
2854 if (s->face->overline_p)
2856 unsigned long dy = 0, h = 1;
2858 if (s->face->overline_color_defaulted_p)
2859 XFillRectangle (s->display, s->window, s->gc, s->x, s->y + dy,
2860 s->width, h);
2861 else
2863 XGCValues xgcv;
2864 XGetGCValues (s->display, s->gc, GCForeground, &xgcv);
2865 XSetForeground (s->display, s->gc, s->face->overline_color);
2866 XFillRectangle (s->display, s->window, s->gc, s->x, s->y + dy,
2867 s->width, h);
2868 XSetForeground (s->display, s->gc, xgcv.foreground);
2872 /* Draw strike-through. */
2873 if (s->face->strike_through_p)
2875 unsigned long h = 1;
2876 unsigned long dy = (s->height - h) / 2;
2878 if (s->face->strike_through_color_defaulted_p)
2879 XFillRectangle (s->display, s->window, s->gc, s->x, s->y + dy,
2880 s->width, h);
2881 else
2883 XGCValues xgcv;
2884 XGetGCValues (s->display, s->gc, GCForeground, &xgcv);
2885 XSetForeground (s->display, s->gc, s->face->strike_through_color);
2886 XFillRectangle (s->display, s->window, s->gc, s->x, s->y + dy,
2887 s->width, h);
2888 XSetForeground (s->display, s->gc, xgcv.foreground);
2892 /* Draw relief if not yet drawn. */
2893 if (!relief_drawn_p && s->face->box != FACE_NO_BOX)
2894 x_draw_glyph_string_box (s);
2896 if (s->prev)
2898 struct glyph_string *prev;
2900 for (prev = s->prev; prev; prev = prev->prev)
2901 if (prev->hl != s->hl
2902 && prev->x + prev->width + prev->right_overhang > s->x)
2904 /* As prev was drawn while clipped to its own area, we
2905 must draw the right_overhang part using s->hl now. */
2906 enum draw_glyphs_face save = prev->hl;
2908 prev->hl = s->hl;
2909 x_set_glyph_string_gc (prev);
2910 x_set_glyph_string_clipping_exactly (s, prev);
2911 if (prev->first_glyph->type == CHAR_GLYPH)
2912 x_draw_glyph_string_foreground (prev);
2913 else
2914 x_draw_composite_glyph_string_foreground (prev);
2915 XSetClipMask (prev->display, prev->gc, None);
2916 prev->hl = save;
2917 prev->num_clips = 0;
2921 if (s->next)
2923 struct glyph_string *next;
2925 for (next = s->next; next; next = next->next)
2926 if (next->hl != s->hl
2927 && next->x - next->left_overhang < s->x + s->width)
2929 /* As next will be drawn while clipped to its own area,
2930 we must draw the left_overhang part using s->hl now. */
2931 enum draw_glyphs_face save = next->hl;
2933 next->hl = s->hl;
2934 x_set_glyph_string_gc (next);
2935 x_set_glyph_string_clipping_exactly (s, next);
2936 if (next->first_glyph->type == CHAR_GLYPH)
2937 x_draw_glyph_string_foreground (next);
2938 else
2939 x_draw_composite_glyph_string_foreground (next);
2940 XSetClipMask (next->display, next->gc, None);
2941 next->hl = save;
2942 next->num_clips = 0;
2943 next->clip_head = s->next;
2948 /* Reset clipping. */
2949 XSetClipMask (s->display, s->gc, None);
2950 s->num_clips = 0;
2953 /* Shift display to make room for inserted glyphs. */
2955 static void
2956 x_shift_glyphs_for_insert (struct frame *f, int x, int y, int width, int height, int shift_by)
2958 XCopyArea (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), FRAME_X_WINDOW (f),
2959 f->output_data.x->normal_gc,
2960 x, y, width, height,
2961 x + shift_by, y);
2964 /* Delete N glyphs at the nominal cursor position. Not implemented
2965 for X frames. */
2967 static void
2968 x_delete_glyphs (struct frame *f, register int n)
2970 emacs_abort ();
2974 /* Like XClearArea, but check that WIDTH and HEIGHT are reasonable.
2975 If they are <= 0, this is probably an error. */
2977 void
2978 x_clear_area (Display *dpy, Window window, int x, int y, int width, int height, int exposures)
2980 eassert (width > 0 && height > 0);
2981 XClearArea (dpy, window, x, y, width, height, exposures);
2985 /* Clear an entire frame. */
2987 static void
2988 x_clear_frame (struct frame *f)
2990 /* Clearing the frame will erase any cursor, so mark them all as no
2991 longer visible. */
2992 mark_window_cursors_off (XWINDOW (FRAME_ROOT_WINDOW (f)));
2993 output_cursor.hpos = output_cursor.vpos = 0;
2994 output_cursor.x = -1;
2996 /* We don't set the output cursor here because there will always
2997 follow an explicit cursor_to. */
2998 block_input ();
3000 XClearWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
3002 /* We have to clear the scroll bars. If we have changed colors or
3003 something like that, then they should be notified. */
3004 x_scroll_bar_clear (f);
3006 #if defined (USE_GTK) && defined (USE_TOOLKIT_SCROLL_BARS)
3007 /* Make sure scroll bars are redrawn. As they aren't redrawn by
3008 redisplay, do it here. */
3009 if (FRAME_GTK_WIDGET (f))
3010 gtk_widget_queue_draw (FRAME_GTK_WIDGET (f));
3011 #endif
3013 XFlush (FRAME_X_DISPLAY (f));
3015 unblock_input ();
3020 /* Invert the middle quarter of the frame for .15 sec. */
3022 static void
3023 XTflash (struct frame *f)
3025 block_input ();
3028 #ifdef USE_GTK
3029 /* Use Gdk routines to draw. This way, we won't draw over scroll bars
3030 when the scroll bars and the edit widget share the same X window. */
3031 GdkWindow *window = gtk_widget_get_window (FRAME_GTK_WIDGET (f));
3032 #ifdef HAVE_GTK3
3033 cairo_t *cr = gdk_cairo_create (window);
3034 cairo_set_source_rgb (cr, 1, 1, 1);
3035 cairo_set_operator (cr, CAIRO_OPERATOR_DIFFERENCE);
3036 #define XFillRectangle(d, win, gc, x, y, w, h) \
3037 do { \
3038 cairo_rectangle (cr, x, y, w, h); \
3039 cairo_fill (cr); \
3041 while (0)
3042 #else /* ! HAVE_GTK3 */
3043 GdkGCValues vals;
3044 GdkGC *gc;
3045 vals.foreground.pixel = (FRAME_FOREGROUND_PIXEL (f)
3046 ^ FRAME_BACKGROUND_PIXEL (f));
3047 vals.function = GDK_XOR;
3048 gc = gdk_gc_new_with_values (window,
3049 &vals, GDK_GC_FUNCTION | GDK_GC_FOREGROUND);
3050 #define XFillRectangle(d, win, gc, x, y, w, h) \
3051 gdk_draw_rectangle (window, gc, TRUE, x, y, w, h)
3052 #endif /* ! HAVE_GTK3 */
3053 #else /* ! USE_GTK */
3054 GC gc;
3056 /* Create a GC that will use the GXxor function to flip foreground
3057 pixels into background pixels. */
3059 XGCValues values;
3061 values.function = GXxor;
3062 values.foreground = (FRAME_FOREGROUND_PIXEL (f)
3063 ^ FRAME_BACKGROUND_PIXEL (f));
3065 gc = XCreateGC (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3066 GCFunction | GCForeground, &values);
3068 #endif
3070 /* Get the height not including a menu bar widget. */
3071 int height = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, FRAME_LINES (f));
3072 /* Height of each line to flash. */
3073 int flash_height = FRAME_LINE_HEIGHT (f);
3074 /* These will be the left and right margins of the rectangles. */
3075 int flash_left = FRAME_INTERNAL_BORDER_WIDTH (f);
3076 int flash_right = FRAME_PIXEL_WIDTH (f) - FRAME_INTERNAL_BORDER_WIDTH (f);
3078 int width;
3080 /* Don't flash the area between a scroll bar and the frame
3081 edge it is next to. */
3082 switch (FRAME_VERTICAL_SCROLL_BAR_TYPE (f))
3084 case vertical_scroll_bar_left:
3085 flash_left += VERTICAL_SCROLL_BAR_WIDTH_TRIM;
3086 break;
3088 case vertical_scroll_bar_right:
3089 flash_right -= VERTICAL_SCROLL_BAR_WIDTH_TRIM;
3090 break;
3092 default:
3093 break;
3096 width = flash_right - flash_left;
3098 /* If window is tall, flash top and bottom line. */
3099 if (height > 3 * FRAME_LINE_HEIGHT (f))
3101 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
3102 flash_left,
3103 (FRAME_INTERNAL_BORDER_WIDTH (f)
3104 + FRAME_TOP_MARGIN_HEIGHT (f)),
3105 width, flash_height);
3106 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
3107 flash_left,
3108 (height - flash_height
3109 - FRAME_INTERNAL_BORDER_WIDTH (f)),
3110 width, flash_height);
3113 else
3114 /* If it is short, flash it all. */
3115 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
3116 flash_left, FRAME_INTERNAL_BORDER_WIDTH (f),
3117 width, height - 2 * FRAME_INTERNAL_BORDER_WIDTH (f));
3119 x_flush (f);
3122 EMACS_TIME delay = make_emacs_time (0, 150 * 1000 * 1000);
3123 EMACS_TIME wakeup = add_emacs_time (current_emacs_time (), delay);
3125 /* Keep waiting until past the time wakeup or any input gets
3126 available. */
3127 while (! detect_input_pending ())
3129 EMACS_TIME current = current_emacs_time ();
3130 EMACS_TIME timeout;
3132 /* Break if result would not be positive. */
3133 if (EMACS_TIME_LE (wakeup, current))
3134 break;
3136 /* How long `select' should wait. */
3137 timeout = make_emacs_time (0, 10 * 1000 * 1000);
3139 /* Try to wait that long--but we might wake up sooner. */
3140 pselect (0, NULL, NULL, NULL, &timeout, NULL);
3144 /* If window is tall, flash top and bottom line. */
3145 if (height > 3 * FRAME_LINE_HEIGHT (f))
3147 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
3148 flash_left,
3149 (FRAME_INTERNAL_BORDER_WIDTH (f)
3150 + FRAME_TOP_MARGIN_HEIGHT (f)),
3151 width, flash_height);
3152 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
3153 flash_left,
3154 (height - flash_height
3155 - FRAME_INTERNAL_BORDER_WIDTH (f)),
3156 width, flash_height);
3158 else
3159 /* If it is short, flash it all. */
3160 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
3161 flash_left, FRAME_INTERNAL_BORDER_WIDTH (f),
3162 width, height - 2 * FRAME_INTERNAL_BORDER_WIDTH (f));
3164 #ifdef USE_GTK
3165 #ifdef HAVE_GTK3
3166 cairo_destroy (cr);
3167 #else
3168 g_object_unref (G_OBJECT (gc));
3169 #endif
3170 #undef XFillRectangle
3171 #else
3172 XFreeGC (FRAME_X_DISPLAY (f), gc);
3173 #endif
3174 x_flush (f);
3178 unblock_input ();
3182 static void
3183 XTtoggle_invisible_pointer (struct frame *f, int invisible)
3185 block_input ();
3186 if (invisible)
3188 if (FRAME_X_DISPLAY_INFO (f)->invisible_cursor != 0)
3189 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3190 FRAME_X_DISPLAY_INFO (f)->invisible_cursor);
3192 else
3193 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3194 f->output_data.x->current_cursor);
3195 f->pointer_invisible = invisible;
3196 unblock_input ();
3200 /* Make audible bell. */
3202 static void
3203 XTring_bell (struct frame *f)
3205 if (FRAME_X_DISPLAY (f))
3207 if (visible_bell)
3208 XTflash (f);
3209 else
3211 block_input ();
3212 #ifdef HAVE_XKB
3213 XkbBell (FRAME_X_DISPLAY (f), None, 0, None);
3214 #else
3215 XBell (FRAME_X_DISPLAY (f), 0);
3216 #endif
3217 XFlush (FRAME_X_DISPLAY (f));
3218 unblock_input ();
3224 /* Specify how many text lines, from the top of the window,
3225 should be affected by insert-lines and delete-lines operations.
3226 This, and those operations, are used only within an update
3227 that is bounded by calls to x_update_begin and x_update_end. */
3229 static void
3230 XTset_terminal_window (struct frame *f, int n)
3232 /* This function intentionally left blank. */
3237 /***********************************************************************
3238 Line Dance
3239 ***********************************************************************/
3241 /* Perform an insert-lines or delete-lines operation, inserting N
3242 lines or deleting -N lines at vertical position VPOS. */
3244 static void
3245 x_ins_del_lines (struct frame *f, int vpos, int n)
3247 emacs_abort ();
3251 /* Scroll part of the display as described by RUN. */
3253 static void
3254 x_scroll_run (struct window *w, struct run *run)
3256 struct frame *f = XFRAME (w->frame);
3257 int x, y, width, height, from_y, to_y, bottom_y;
3259 /* Get frame-relative bounding box of the text display area of W,
3260 without mode lines. Include in this box the left and right
3261 fringe of W. */
3262 window_box (w, -1, &x, &y, &width, &height);
3264 #ifdef USE_TOOLKIT_SCROLL_BARS
3265 /* If the fringe is adjacent to the left (right) scroll bar of a
3266 leftmost (rightmost, respectively) window, then extend its
3267 background to the gap between the fringe and the bar. */
3268 if ((WINDOW_LEFTMOST_P (w)
3269 && WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w))
3270 || (WINDOW_RIGHTMOST_P (w)
3271 && WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w)))
3273 int sb_width = WINDOW_CONFIG_SCROLL_BAR_WIDTH (w);
3275 if (sb_width > 0)
3277 int bar_area_x = WINDOW_SCROLL_BAR_AREA_X (w);
3278 int bar_area_width = (WINDOW_CONFIG_SCROLL_BAR_COLS (w)
3279 * FRAME_COLUMN_WIDTH (f));
3281 if (bar_area_x + bar_area_width == x)
3283 x = bar_area_x + sb_width;
3284 width += bar_area_width - sb_width;
3286 else if (x + width == bar_area_x)
3287 width += bar_area_width - sb_width;
3290 #endif
3292 from_y = WINDOW_TO_FRAME_PIXEL_Y (w, run->current_y);
3293 to_y = WINDOW_TO_FRAME_PIXEL_Y (w, run->desired_y);
3294 bottom_y = y + height;
3296 if (to_y < from_y)
3298 /* Scrolling up. Make sure we don't copy part of the mode
3299 line at the bottom. */
3300 if (from_y + run->height > bottom_y)
3301 height = bottom_y - from_y;
3302 else
3303 height = run->height;
3305 else
3307 /* Scrolling down. Make sure we don't copy over the mode line.
3308 at the bottom. */
3309 if (to_y + run->height > bottom_y)
3310 height = bottom_y - to_y;
3311 else
3312 height = run->height;
3315 block_input ();
3317 /* Cursor off. Will be switched on again in x_update_window_end. */
3318 x_clear_cursor (w);
3320 XCopyArea (FRAME_X_DISPLAY (f),
3321 FRAME_X_WINDOW (f), FRAME_X_WINDOW (f),
3322 f->output_data.x->normal_gc,
3323 x, from_y,
3324 width, height,
3325 x, to_y);
3327 unblock_input ();
3332 /***********************************************************************
3333 Exposure Events
3334 ***********************************************************************/
3337 static void
3338 frame_highlight (struct frame *f)
3340 /* We used to only do this if Vx_no_window_manager was non-nil, but
3341 the ICCCM (section 4.1.6) says that the window's border pixmap
3342 and border pixel are window attributes which are "private to the
3343 client", so we can always change it to whatever we want. */
3344 block_input ();
3345 /* I recently started to get errors in this XSetWindowBorder, depending on
3346 the window-manager in use, tho something more is at play since I've been
3347 using that same window-manager binary for ever. Let's not crash just
3348 because of this (bug#9310). */
3349 x_catch_errors (FRAME_X_DISPLAY (f));
3350 XSetWindowBorder (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3351 f->output_data.x->border_pixel);
3352 x_uncatch_errors ();
3353 unblock_input ();
3354 x_update_cursor (f, 1);
3355 x_set_frame_alpha (f);
3358 static void
3359 frame_unhighlight (struct frame *f)
3361 /* We used to only do this if Vx_no_window_manager was non-nil, but
3362 the ICCCM (section 4.1.6) says that the window's border pixmap
3363 and border pixel are window attributes which are "private to the
3364 client", so we can always change it to whatever we want. */
3365 block_input ();
3366 /* Same as above for XSetWindowBorder (bug#9310). */
3367 x_catch_errors (FRAME_X_DISPLAY (f));
3368 XSetWindowBorderPixmap (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3369 f->output_data.x->border_tile);
3370 x_uncatch_errors ();
3371 unblock_input ();
3372 x_update_cursor (f, 1);
3373 x_set_frame_alpha (f);
3376 /* The focus has changed. Update the frames as necessary to reflect
3377 the new situation. Note that we can't change the selected frame
3378 here, because the Lisp code we are interrupting might become confused.
3379 Each event gets marked with the frame in which it occurred, so the
3380 Lisp code can tell when the switch took place by examining the events. */
3382 static void
3383 x_new_focus_frame (struct x_display_info *dpyinfo, struct frame *frame)
3385 struct frame *old_focus = dpyinfo->x_focus_frame;
3387 if (frame != dpyinfo->x_focus_frame)
3389 /* Set this before calling other routines, so that they see
3390 the correct value of x_focus_frame. */
3391 dpyinfo->x_focus_frame = frame;
3393 if (old_focus && old_focus->auto_lower)
3394 x_lower_frame (old_focus);
3396 if (dpyinfo->x_focus_frame && dpyinfo->x_focus_frame->auto_raise)
3397 pending_autoraise_frame = dpyinfo->x_focus_frame;
3398 else
3399 pending_autoraise_frame = 0;
3402 x_frame_rehighlight (dpyinfo);
3405 /* Handle FocusIn and FocusOut state changes for FRAME.
3406 If FRAME has focus and there exists more than one frame, puts
3407 a FOCUS_IN_EVENT into *BUFP. */
3409 static void
3410 x_focus_changed (int type, int state, struct x_display_info *dpyinfo, struct frame *frame, struct input_event *bufp)
3412 if (type == FocusIn)
3414 if (dpyinfo->x_focus_event_frame != frame)
3416 x_new_focus_frame (dpyinfo, frame);
3417 dpyinfo->x_focus_event_frame = frame;
3419 /* Don't stop displaying the initial startup message
3420 for a switch-frame event we don't need. */
3421 /* When run as a daemon, Vterminal_frame is always NIL. */
3422 bufp->arg = (((NILP (Vterminal_frame) || EQ (Fdaemonp (), Qt))
3423 && CONSP (Vframe_list)
3424 && !NILP (XCDR (Vframe_list)))
3425 ? Qt : Qnil);
3426 bufp->kind = FOCUS_IN_EVENT;
3427 XSETFRAME (bufp->frame_or_window, frame);
3430 frame->output_data.x->focus_state |= state;
3432 #ifdef HAVE_X_I18N
3433 if (FRAME_XIC (frame))
3434 XSetICFocus (FRAME_XIC (frame));
3435 #endif
3437 else if (type == FocusOut)
3439 frame->output_data.x->focus_state &= ~state;
3441 if (dpyinfo->x_focus_event_frame == frame)
3443 dpyinfo->x_focus_event_frame = 0;
3444 x_new_focus_frame (dpyinfo, 0);
3446 bufp->kind = FOCUS_OUT_EVENT;
3447 XSETFRAME (bufp->frame_or_window, frame);
3450 #ifdef HAVE_X_I18N
3451 if (FRAME_XIC (frame))
3452 XUnsetICFocus (FRAME_XIC (frame));
3453 #endif
3454 if (frame->pointer_invisible)
3455 XTtoggle_invisible_pointer (frame, 0);
3459 /* The focus may have changed. Figure out if it is a real focus change,
3460 by checking both FocusIn/Out and Enter/LeaveNotify events.
3462 Returns FOCUS_IN_EVENT event in *BUFP. */
3464 static void
3465 x_detect_focus_change (struct x_display_info *dpyinfo, XEvent *event, struct input_event *bufp)
3467 struct frame *frame;
3469 frame = x_any_window_to_frame (dpyinfo, event->xany.window);
3470 if (! frame)
3471 return;
3473 switch (event->type)
3475 case EnterNotify:
3476 case LeaveNotify:
3478 struct frame *focus_frame = dpyinfo->x_focus_event_frame;
3479 int focus_state
3480 = focus_frame ? focus_frame->output_data.x->focus_state : 0;
3482 if (event->xcrossing.detail != NotifyInferior
3483 && event->xcrossing.focus
3484 && ! (focus_state & FOCUS_EXPLICIT))
3485 x_focus_changed ((event->type == EnterNotify ? FocusIn : FocusOut),
3486 FOCUS_IMPLICIT,
3487 dpyinfo, frame, bufp);
3489 break;
3491 case FocusIn:
3492 case FocusOut:
3493 x_focus_changed (event->type,
3494 (event->xfocus.detail == NotifyPointer ?
3495 FOCUS_IMPLICIT : FOCUS_EXPLICIT),
3496 dpyinfo, frame, bufp);
3497 break;
3499 case ClientMessage:
3500 if (event->xclient.message_type == dpyinfo->Xatom_XEMBED)
3502 enum xembed_message msg = event->xclient.data.l[1];
3503 x_focus_changed ((msg == XEMBED_FOCUS_IN ? FocusIn : FocusOut),
3504 FOCUS_EXPLICIT, dpyinfo, frame, bufp);
3506 break;
3511 #if defined HAVE_MENUS && !defined USE_X_TOOLKIT && !defined USE_GTK
3512 /* Handle an event saying the mouse has moved out of an Emacs frame. */
3514 void
3515 x_mouse_leave (struct x_display_info *dpyinfo)
3517 x_new_focus_frame (dpyinfo, dpyinfo->x_focus_event_frame);
3519 #endif
3521 /* The focus has changed, or we have redirected a frame's focus to
3522 another frame (this happens when a frame uses a surrogate
3523 mini-buffer frame). Shift the highlight as appropriate.
3525 The FRAME argument doesn't necessarily have anything to do with which
3526 frame is being highlighted or un-highlighted; we only use it to find
3527 the appropriate X display info. */
3529 static void
3530 XTframe_rehighlight (struct frame *frame)
3532 x_frame_rehighlight (FRAME_X_DISPLAY_INFO (frame));
3535 static void
3536 x_frame_rehighlight (struct x_display_info *dpyinfo)
3538 struct frame *old_highlight = dpyinfo->x_highlight_frame;
3540 if (dpyinfo->x_focus_frame)
3542 dpyinfo->x_highlight_frame
3543 = ((FRAMEP (FRAME_FOCUS_FRAME (dpyinfo->x_focus_frame)))
3544 ? XFRAME (FRAME_FOCUS_FRAME (dpyinfo->x_focus_frame))
3545 : dpyinfo->x_focus_frame);
3546 if (! FRAME_LIVE_P (dpyinfo->x_highlight_frame))
3548 fset_focus_frame (dpyinfo->x_focus_frame, Qnil);
3549 dpyinfo->x_highlight_frame = dpyinfo->x_focus_frame;
3552 else
3553 dpyinfo->x_highlight_frame = 0;
3555 if (dpyinfo->x_highlight_frame != old_highlight)
3557 if (old_highlight)
3558 frame_unhighlight (old_highlight);
3559 if (dpyinfo->x_highlight_frame)
3560 frame_highlight (dpyinfo->x_highlight_frame);
3566 /* Keyboard processing - modifier keys, vendor-specific keysyms, etc. */
3568 /* Initialize mode_switch_bit and modifier_meaning. */
3569 static void
3570 x_find_modifier_meanings (struct x_display_info *dpyinfo)
3572 int min_code, max_code;
3573 KeySym *syms;
3574 int syms_per_code;
3575 XModifierKeymap *mods;
3577 dpyinfo->meta_mod_mask = 0;
3578 dpyinfo->shift_lock_mask = 0;
3579 dpyinfo->alt_mod_mask = 0;
3580 dpyinfo->super_mod_mask = 0;
3581 dpyinfo->hyper_mod_mask = 0;
3583 XDisplayKeycodes (dpyinfo->display, &min_code, &max_code);
3585 syms = XGetKeyboardMapping (dpyinfo->display,
3586 min_code, max_code - min_code + 1,
3587 &syms_per_code);
3588 mods = XGetModifierMapping (dpyinfo->display);
3590 /* Scan the modifier table to see which modifier bits the Meta and
3591 Alt keysyms are on. */
3593 int row, col; /* The row and column in the modifier table. */
3594 int found_alt_or_meta;
3596 for (row = 3; row < 8; row++)
3598 found_alt_or_meta = 0;
3599 for (col = 0; col < mods->max_keypermod; col++)
3601 KeyCode code = mods->modifiermap[(row * mods->max_keypermod) + col];
3603 /* Zeroes are used for filler. Skip them. */
3604 if (code == 0)
3605 continue;
3607 /* Are any of this keycode's keysyms a meta key? */
3609 int code_col;
3611 for (code_col = 0; code_col < syms_per_code; code_col++)
3613 int sym = syms[((code - min_code) * syms_per_code) + code_col];
3615 switch (sym)
3617 case XK_Meta_L:
3618 case XK_Meta_R:
3619 found_alt_or_meta = 1;
3620 dpyinfo->meta_mod_mask |= (1 << row);
3621 break;
3623 case XK_Alt_L:
3624 case XK_Alt_R:
3625 found_alt_or_meta = 1;
3626 dpyinfo->alt_mod_mask |= (1 << row);
3627 break;
3629 case XK_Hyper_L:
3630 case XK_Hyper_R:
3631 if (!found_alt_or_meta)
3632 dpyinfo->hyper_mod_mask |= (1 << row);
3633 code_col = syms_per_code;
3634 col = mods->max_keypermod;
3635 break;
3637 case XK_Super_L:
3638 case XK_Super_R:
3639 if (!found_alt_or_meta)
3640 dpyinfo->super_mod_mask |= (1 << row);
3641 code_col = syms_per_code;
3642 col = mods->max_keypermod;
3643 break;
3645 case XK_Shift_Lock:
3646 /* Ignore this if it's not on the lock modifier. */
3647 if (!found_alt_or_meta && ((1 << row) == LockMask))
3648 dpyinfo->shift_lock_mask = LockMask;
3649 code_col = syms_per_code;
3650 col = mods->max_keypermod;
3651 break;
3659 /* If we couldn't find any meta keys, accept any alt keys as meta keys. */
3660 if (! dpyinfo->meta_mod_mask)
3662 dpyinfo->meta_mod_mask = dpyinfo->alt_mod_mask;
3663 dpyinfo->alt_mod_mask = 0;
3666 /* If some keys are both alt and meta,
3667 make them just meta, not alt. */
3668 if (dpyinfo->alt_mod_mask & dpyinfo->meta_mod_mask)
3670 dpyinfo->alt_mod_mask &= ~dpyinfo->meta_mod_mask;
3673 XFree (syms);
3674 XFreeModifiermap (mods);
3677 /* Convert between the modifier bits X uses and the modifier bits
3678 Emacs uses. */
3681 x_x_to_emacs_modifiers (struct x_display_info *dpyinfo, int state)
3683 int mod_meta = meta_modifier;
3684 int mod_alt = alt_modifier;
3685 int mod_hyper = hyper_modifier;
3686 int mod_super = super_modifier;
3687 Lisp_Object tem;
3689 tem = Fget (Vx_alt_keysym, Qmodifier_value);
3690 if (INTEGERP (tem)) mod_alt = XINT (tem) & INT_MAX;
3691 tem = Fget (Vx_meta_keysym, Qmodifier_value);
3692 if (INTEGERP (tem)) mod_meta = XINT (tem) & INT_MAX;
3693 tem = Fget (Vx_hyper_keysym, Qmodifier_value);
3694 if (INTEGERP (tem)) mod_hyper = XINT (tem) & INT_MAX;
3695 tem = Fget (Vx_super_keysym, Qmodifier_value);
3696 if (INTEGERP (tem)) mod_super = XINT (tem) & INT_MAX;
3698 return ( ((state & (ShiftMask | dpyinfo->shift_lock_mask)) ? shift_modifier : 0)
3699 | ((state & ControlMask) ? ctrl_modifier : 0)
3700 | ((state & dpyinfo->meta_mod_mask) ? mod_meta : 0)
3701 | ((state & dpyinfo->alt_mod_mask) ? mod_alt : 0)
3702 | ((state & dpyinfo->super_mod_mask) ? mod_super : 0)
3703 | ((state & dpyinfo->hyper_mod_mask) ? mod_hyper : 0));
3706 static int
3707 x_emacs_to_x_modifiers (struct x_display_info *dpyinfo, EMACS_INT state)
3709 EMACS_INT mod_meta = meta_modifier;
3710 EMACS_INT mod_alt = alt_modifier;
3711 EMACS_INT mod_hyper = hyper_modifier;
3712 EMACS_INT mod_super = super_modifier;
3714 Lisp_Object tem;
3716 tem = Fget (Vx_alt_keysym, Qmodifier_value);
3717 if (INTEGERP (tem)) mod_alt = XINT (tem);
3718 tem = Fget (Vx_meta_keysym, Qmodifier_value);
3719 if (INTEGERP (tem)) mod_meta = XINT (tem);
3720 tem = Fget (Vx_hyper_keysym, Qmodifier_value);
3721 if (INTEGERP (tem)) mod_hyper = XINT (tem);
3722 tem = Fget (Vx_super_keysym, Qmodifier_value);
3723 if (INTEGERP (tem)) mod_super = XINT (tem);
3726 return ( ((state & mod_alt) ? dpyinfo->alt_mod_mask : 0)
3727 | ((state & mod_super) ? dpyinfo->super_mod_mask : 0)
3728 | ((state & mod_hyper) ? dpyinfo->hyper_mod_mask : 0)
3729 | ((state & shift_modifier) ? ShiftMask : 0)
3730 | ((state & ctrl_modifier) ? ControlMask : 0)
3731 | ((state & mod_meta) ? dpyinfo->meta_mod_mask : 0));
3734 /* Convert a keysym to its name. */
3736 char *
3737 x_get_keysym_name (int keysym)
3739 char *value;
3741 block_input ();
3742 value = XKeysymToString (keysym);
3743 unblock_input ();
3745 return value;
3750 /* Mouse clicks and mouse movement. Rah. */
3752 /* Prepare a mouse-event in *RESULT for placement in the input queue.
3754 If the event is a button press, then note that we have grabbed
3755 the mouse. */
3757 static Lisp_Object
3758 construct_mouse_click (struct input_event *result, XButtonEvent *event, struct frame *f)
3760 /* Make the event type NO_EVENT; we'll change that when we decide
3761 otherwise. */
3762 result->kind = MOUSE_CLICK_EVENT;
3763 result->code = event->button - Button1;
3764 result->timestamp = event->time;
3765 result->modifiers = (x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO (f),
3766 event->state)
3767 | (event->type == ButtonRelease
3768 ? up_modifier
3769 : down_modifier));
3771 XSETINT (result->x, event->x);
3772 XSETINT (result->y, event->y);
3773 XSETFRAME (result->frame_or_window, f);
3774 result->arg = Qnil;
3775 return Qnil;
3779 /* Function to report a mouse movement to the mainstream Emacs code.
3780 The input handler calls this.
3782 We have received a mouse movement event, which is given in *event.
3783 If the mouse is over a different glyph than it was last time, tell
3784 the mainstream emacs code by setting mouse_moved. If not, ask for
3785 another motion event, so we can check again the next time it moves. */
3787 static XMotionEvent last_mouse_motion_event;
3788 static Lisp_Object last_mouse_motion_frame;
3790 static int
3791 note_mouse_movement (struct frame *frame, XMotionEvent *event)
3793 last_mouse_movement_time = event->time;
3794 last_mouse_motion_event = *event;
3795 XSETFRAME (last_mouse_motion_frame, frame);
3797 if (!FRAME_X_OUTPUT (frame))
3798 return 0;
3800 if (event->window != FRAME_X_WINDOW (frame))
3802 frame->mouse_moved = 1;
3803 last_mouse_scroll_bar = Qnil;
3804 note_mouse_highlight (frame, -1, -1);
3805 last_mouse_glyph_frame = 0;
3806 return 1;
3810 /* Has the mouse moved off the glyph it was on at the last sighting? */
3811 if (frame != last_mouse_glyph_frame
3812 || event->x < last_mouse_glyph.x
3813 || event->x >= last_mouse_glyph.x + last_mouse_glyph.width
3814 || event->y < last_mouse_glyph.y
3815 || event->y >= last_mouse_glyph.y + last_mouse_glyph.height)
3817 frame->mouse_moved = 1;
3818 last_mouse_scroll_bar = Qnil;
3819 note_mouse_highlight (frame, event->x, event->y);
3820 /* Remember which glyph we're now on. */
3821 remember_mouse_glyph (frame, event->x, event->y, &last_mouse_glyph);
3822 last_mouse_glyph_frame = frame;
3823 return 1;
3826 return 0;
3830 /************************************************************************
3831 Mouse Face
3832 ************************************************************************/
3834 static void
3835 redo_mouse_highlight (void)
3837 if (!NILP (last_mouse_motion_frame)
3838 && FRAME_LIVE_P (XFRAME (last_mouse_motion_frame)))
3839 note_mouse_highlight (XFRAME (last_mouse_motion_frame),
3840 last_mouse_motion_event.x,
3841 last_mouse_motion_event.y);
3846 /* Return the current position of the mouse.
3847 *FP should be a frame which indicates which display to ask about.
3849 If the mouse movement started in a scroll bar, set *FP, *BAR_WINDOW,
3850 and *PART to the frame, window, and scroll bar part that the mouse
3851 is over. Set *X and *Y to the portion and whole of the mouse's
3852 position on the scroll bar.
3854 If the mouse movement started elsewhere, set *FP to the frame the
3855 mouse is on, *BAR_WINDOW to nil, and *X and *Y to the character cell
3856 the mouse is over.
3858 Set *TIMESTAMP to the server time-stamp for the time at which the mouse
3859 was at this position.
3861 Don't store anything if we don't have a valid set of values to report.
3863 This clears the mouse_moved flag, so we can wait for the next mouse
3864 movement. */
3866 static void
3867 XTmouse_position (struct frame **fp, int insist, Lisp_Object *bar_window,
3868 enum scroll_bar_part *part, Lisp_Object *x, Lisp_Object *y,
3869 Time *timestamp)
3871 struct frame *f1;
3873 block_input ();
3875 if (! NILP (last_mouse_scroll_bar) && insist == 0)
3876 x_scroll_bar_report_motion (fp, bar_window, part, x, y, timestamp);
3877 else
3879 Window root;
3880 int root_x, root_y;
3882 Window dummy_window;
3883 int dummy;
3885 Lisp_Object frame, tail;
3887 /* Clear the mouse-moved flag for every frame on this display. */
3888 FOR_EACH_FRAME (tail, frame)
3889 if (FRAME_X_P (XFRAME (frame))
3890 && FRAME_X_DISPLAY (XFRAME (frame)) == FRAME_X_DISPLAY (*fp))
3891 XFRAME (frame)->mouse_moved = 0;
3893 last_mouse_scroll_bar = Qnil;
3895 /* Figure out which root window we're on. */
3896 XQueryPointer (FRAME_X_DISPLAY (*fp),
3897 DefaultRootWindow (FRAME_X_DISPLAY (*fp)),
3899 /* The root window which contains the pointer. */
3900 &root,
3902 /* Trash which we can't trust if the pointer is on
3903 a different screen. */
3904 &dummy_window,
3906 /* The position on that root window. */
3907 &root_x, &root_y,
3909 /* More trash we can't trust. */
3910 &dummy, &dummy,
3912 /* Modifier keys and pointer buttons, about which
3913 we don't care. */
3914 (unsigned int *) &dummy);
3916 /* Now we have a position on the root; find the innermost window
3917 containing the pointer. */
3919 Window win, child;
3920 int win_x, win_y;
3921 int parent_x = 0, parent_y = 0;
3923 win = root;
3925 /* XTranslateCoordinates can get errors if the window
3926 structure is changing at the same time this function
3927 is running. So at least we must not crash from them. */
3929 x_catch_errors (FRAME_X_DISPLAY (*fp));
3931 if (FRAME_X_DISPLAY_INFO (*fp)->grabbed && last_mouse_frame
3932 && FRAME_LIVE_P (last_mouse_frame))
3934 /* If mouse was grabbed on a frame, give coords for that frame
3935 even if the mouse is now outside it. */
3936 XTranslateCoordinates (FRAME_X_DISPLAY (*fp),
3938 /* From-window, to-window. */
3939 root, FRAME_X_WINDOW (last_mouse_frame),
3941 /* From-position, to-position. */
3942 root_x, root_y, &win_x, &win_y,
3944 /* Child of win. */
3945 &child);
3946 f1 = last_mouse_frame;
3948 else
3950 while (1)
3952 XTranslateCoordinates (FRAME_X_DISPLAY (*fp),
3954 /* From-window, to-window. */
3955 root, win,
3957 /* From-position, to-position. */
3958 root_x, root_y, &win_x, &win_y,
3960 /* Child of win. */
3961 &child);
3963 if (child == None || child == win)
3964 break;
3965 #ifdef USE_GTK
3966 /* We don't wan't to know the innermost window. We
3967 want the edit window. For non-Gtk+ the innermost
3968 window is the edit window. For Gtk+ it might not
3969 be. It might be the tool bar for example. */
3970 if (x_window_to_frame (FRAME_X_DISPLAY_INFO (*fp), win))
3971 break;
3972 #endif
3973 win = child;
3974 parent_x = win_x;
3975 parent_y = win_y;
3978 /* Now we know that:
3979 win is the innermost window containing the pointer
3980 (XTC says it has no child containing the pointer),
3981 win_x and win_y are the pointer's position in it
3982 (XTC did this the last time through), and
3983 parent_x and parent_y are the pointer's position in win's parent.
3984 (They are what win_x and win_y were when win was child.
3985 If win is the root window, it has no parent, and
3986 parent_{x,y} are invalid, but that's okay, because we'll
3987 never use them in that case.) */
3989 #ifdef USE_GTK
3990 /* We don't wan't to know the innermost window. We
3991 want the edit window. */
3992 f1 = x_window_to_frame (FRAME_X_DISPLAY_INFO (*fp), win);
3993 #else
3994 /* Is win one of our frames? */
3995 f1 = x_any_window_to_frame (FRAME_X_DISPLAY_INFO (*fp), win);
3996 #endif
3998 #ifdef USE_X_TOOLKIT
3999 /* If we end up with the menu bar window, say it's not
4000 on the frame. */
4001 if (f1 != NULL
4002 && f1->output_data.x->menubar_widget
4003 && win == XtWindow (f1->output_data.x->menubar_widget))
4004 f1 = NULL;
4005 #endif /* USE_X_TOOLKIT */
4008 if (x_had_errors_p (FRAME_X_DISPLAY (*fp)))
4009 f1 = 0;
4011 x_uncatch_errors ();
4013 /* If not, is it one of our scroll bars? */
4014 if (! f1)
4016 struct scroll_bar *bar;
4018 bar = x_window_to_scroll_bar (FRAME_X_DISPLAY (*fp), win);
4020 if (bar)
4022 f1 = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
4023 win_x = parent_x;
4024 win_y = parent_y;
4028 if (f1 == 0 && insist > 0)
4029 f1 = SELECTED_FRAME ();
4031 if (f1)
4033 /* Ok, we found a frame. Store all the values.
4034 last_mouse_glyph is a rectangle used to reduce the
4035 generation of mouse events. To not miss any motion
4036 events, we must divide the frame into rectangles of the
4037 size of the smallest character that could be displayed
4038 on it, i.e. into the same rectangles that matrices on
4039 the frame are divided into. */
4041 remember_mouse_glyph (f1, win_x, win_y, &last_mouse_glyph);
4042 last_mouse_glyph_frame = f1;
4044 *bar_window = Qnil;
4045 *part = 0;
4046 *fp = f1;
4047 XSETINT (*x, win_x);
4048 XSETINT (*y, win_y);
4049 *timestamp = last_mouse_movement_time;
4054 unblock_input ();
4059 /***********************************************************************
4060 Scroll bars
4061 ***********************************************************************/
4063 /* Scroll bar support. */
4065 /* Given an X window ID and a DISPLAY, find the struct scroll_bar which
4066 manages it.
4067 This can be called in GC, so we have to make sure to strip off mark
4068 bits. */
4070 static struct scroll_bar *
4071 x_window_to_scroll_bar (Display *display, Window window_id)
4073 Lisp_Object tail, frame;
4075 #if defined (USE_GTK) && defined (USE_TOOLKIT_SCROLL_BARS)
4076 window_id = (Window) xg_get_scroll_id_for_window (display, window_id);
4077 #endif /* USE_GTK && USE_TOOLKIT_SCROLL_BARS */
4079 FOR_EACH_FRAME (tail, frame)
4081 Lisp_Object bar, condemned;
4083 if (! FRAME_X_P (XFRAME (frame)))
4084 continue;
4086 /* Scan this frame's scroll bar list for a scroll bar with the
4087 right window ID. */
4088 condemned = FRAME_CONDEMNED_SCROLL_BARS (XFRAME (frame));
4089 for (bar = FRAME_SCROLL_BARS (XFRAME (frame));
4090 /* This trick allows us to search both the ordinary and
4091 condemned scroll bar lists with one loop. */
4092 ! NILP (bar) || (bar = condemned,
4093 condemned = Qnil,
4094 ! NILP (bar));
4095 bar = XSCROLL_BAR (bar)->next)
4096 if (XSCROLL_BAR (bar)->x_window == window_id &&
4097 FRAME_X_DISPLAY (XFRAME (frame)) == display)
4098 return XSCROLL_BAR (bar);
4101 return NULL;
4105 #if defined USE_LUCID
4107 /* Return the Lucid menu bar WINDOW is part of. Return null
4108 if WINDOW is not part of a menu bar. */
4110 static Widget
4111 x_window_to_menu_bar (Window window)
4113 Lisp_Object tail, frame;
4115 FOR_EACH_FRAME (tail, frame)
4116 if (FRAME_X_P (XFRAME (frame)))
4118 Widget menu_bar = XFRAME (frame)->output_data.x->menubar_widget;
4120 if (menu_bar && xlwmenu_window_p (menu_bar, window))
4121 return menu_bar;
4123 return NULL;
4126 #endif /* USE_LUCID */
4129 /************************************************************************
4130 Toolkit scroll bars
4131 ************************************************************************/
4133 #ifdef USE_TOOLKIT_SCROLL_BARS
4135 static void x_scroll_bar_to_input_event (XEvent *, struct input_event *);
4136 static void x_send_scroll_bar_event (Lisp_Object, int, int, int);
4137 static void x_create_toolkit_scroll_bar (struct frame *,
4138 struct scroll_bar *);
4139 static void x_set_toolkit_scroll_bar_thumb (struct scroll_bar *,
4140 int, int, int);
4143 /* Lisp window being scrolled. Set when starting to interact with
4144 a toolkit scroll bar, reset to nil when ending the interaction. */
4146 static Lisp_Object window_being_scrolled;
4148 /* Last scroll bar part sent in xm_scroll_callback. */
4150 static int last_scroll_bar_part;
4152 /* Whether this is an Xaw with arrow-scrollbars. This should imply
4153 that movements of 1/20 of the screen size are mapped to up/down. */
4155 #ifndef USE_GTK
4156 /* Id of action hook installed for scroll bars. */
4158 static XtActionHookId action_hook_id;
4160 static Boolean xaw3d_arrow_scroll;
4162 /* Whether the drag scrolling maintains the mouse at the top of the
4163 thumb. If not, resizing the thumb needs to be done more carefully
4164 to avoid jerkiness. */
4166 static Boolean xaw3d_pick_top;
4168 /* Action hook installed via XtAppAddActionHook when toolkit scroll
4169 bars are used.. The hook is responsible for detecting when
4170 the user ends an interaction with the scroll bar, and generates
4171 a `end-scroll' SCROLL_BAR_CLICK_EVENT' event if so. */
4173 static void
4174 xt_action_hook (Widget widget, XtPointer client_data, String action_name,
4175 XEvent *event, String *params, Cardinal *num_params)
4177 int scroll_bar_p;
4178 const char *end_action;
4180 #ifdef USE_MOTIF
4181 scroll_bar_p = XmIsScrollBar (widget);
4182 end_action = "Release";
4183 #else /* !USE_MOTIF i.e. use Xaw */
4184 scroll_bar_p = XtIsSubclass (widget, scrollbarWidgetClass);
4185 end_action = "EndScroll";
4186 #endif /* USE_MOTIF */
4188 if (scroll_bar_p
4189 && strcmp (action_name, end_action) == 0
4190 && WINDOWP (window_being_scrolled))
4192 struct window *w;
4194 x_send_scroll_bar_event (window_being_scrolled,
4195 scroll_bar_end_scroll, 0, 0);
4196 w = XWINDOW (window_being_scrolled);
4198 if (!NILP (XSCROLL_BAR (w->vertical_scroll_bar)->dragging))
4200 XSCROLL_BAR (w->vertical_scroll_bar)->dragging = Qnil;
4201 /* The thumb size is incorrect while dragging: fix it. */
4202 set_vertical_scroll_bar (w);
4204 window_being_scrolled = Qnil;
4205 last_scroll_bar_part = -1;
4207 /* Xt timeouts no longer needed. */
4208 toolkit_scroll_bar_interaction = 0;
4211 #endif /* not USE_GTK */
4213 /* A vector of windows used for communication between
4214 x_send_scroll_bar_event and x_scroll_bar_to_input_event. */
4216 static struct window **scroll_bar_windows;
4217 static ptrdiff_t scroll_bar_windows_size;
4220 /* Send a client message with message type Xatom_Scrollbar for a
4221 scroll action to the frame of WINDOW. PART is a value identifying
4222 the part of the scroll bar that was clicked on. PORTION is the
4223 amount to scroll of a whole of WHOLE. */
4225 static void
4226 x_send_scroll_bar_event (Lisp_Object window, int part, int portion, int whole)
4228 XEvent event;
4229 XClientMessageEvent *ev = (XClientMessageEvent *) &event;
4230 struct window *w = XWINDOW (window);
4231 struct frame *f = XFRAME (w->frame);
4232 ptrdiff_t i;
4234 block_input ();
4236 /* Construct a ClientMessage event to send to the frame. */
4237 ev->type = ClientMessage;
4238 ev->message_type = FRAME_X_DISPLAY_INFO (f)->Xatom_Scrollbar;
4239 ev->display = FRAME_X_DISPLAY (f);
4240 ev->window = FRAME_X_WINDOW (f);
4241 ev->format = 32;
4243 /* We can only transfer 32 bits in the XClientMessageEvent, which is
4244 not enough to store a pointer or Lisp_Object on a 64 bit system.
4245 So, store the window in scroll_bar_windows and pass the index
4246 into that array in the event. */
4247 for (i = 0; i < scroll_bar_windows_size; ++i)
4248 if (scroll_bar_windows[i] == NULL)
4249 break;
4251 if (i == scroll_bar_windows_size)
4253 ptrdiff_t old_nbytes =
4254 scroll_bar_windows_size * sizeof *scroll_bar_windows;
4255 ptrdiff_t nbytes;
4256 enum { XClientMessageEvent_MAX = 0x7fffffff };
4257 scroll_bar_windows =
4258 xpalloc (scroll_bar_windows, &scroll_bar_windows_size, 1,
4259 XClientMessageEvent_MAX, sizeof *scroll_bar_windows);
4260 nbytes = scroll_bar_windows_size * sizeof *scroll_bar_windows;
4261 memset (&scroll_bar_windows[i], 0, nbytes - old_nbytes);
4264 scroll_bar_windows[i] = w;
4265 ev->data.l[0] = (long) i;
4266 ev->data.l[1] = (long) part;
4267 ev->data.l[2] = (long) 0;
4268 ev->data.l[3] = (long) portion;
4269 ev->data.l[4] = (long) whole;
4271 /* Make Xt timeouts work while the scroll bar is active. */
4272 #ifdef USE_X_TOOLKIT
4273 toolkit_scroll_bar_interaction = 1;
4274 x_activate_timeout_atimer ();
4275 #endif
4277 /* Setting the event mask to zero means that the message will
4278 be sent to the client that created the window, and if that
4279 window no longer exists, no event will be sent. */
4280 XSendEvent (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), False, 0, &event);
4281 unblock_input ();
4285 /* Transform a scroll bar ClientMessage EVENT to an Emacs input event
4286 in *IEVENT. */
4288 static void
4289 x_scroll_bar_to_input_event (XEvent *event, struct input_event *ievent)
4291 XClientMessageEvent *ev = (XClientMessageEvent *) event;
4292 Lisp_Object window;
4293 struct window *w;
4295 w = scroll_bar_windows[ev->data.l[0]];
4296 scroll_bar_windows[ev->data.l[0]] = NULL;
4298 XSETWINDOW (window, w);
4300 ievent->kind = SCROLL_BAR_CLICK_EVENT;
4301 ievent->frame_or_window = window;
4302 ievent->arg = Qnil;
4303 #ifdef USE_GTK
4304 ievent->timestamp = CurrentTime;
4305 #else
4306 ievent->timestamp =
4307 XtLastTimestampProcessed (FRAME_X_DISPLAY (XFRAME (w->frame)));
4308 #endif
4309 ievent->part = ev->data.l[1];
4310 ievent->code = ev->data.l[2];
4311 ievent->x = make_number ((int) ev->data.l[3]);
4312 ievent->y = make_number ((int) ev->data.l[4]);
4313 ievent->modifiers = 0;
4317 #ifdef USE_MOTIF
4319 /* Minimum and maximum values used for Motif scroll bars. */
4321 #define XM_SB_MAX 10000000
4324 /* Scroll bar callback for Motif scroll bars. WIDGET is the scroll
4325 bar widget. CLIENT_DATA is a pointer to the scroll_bar structure.
4326 CALL_DATA is a pointer to a XmScrollBarCallbackStruct. */
4328 static void
4329 xm_scroll_callback (Widget widget, XtPointer client_data, XtPointer call_data)
4331 struct scroll_bar *bar = (struct scroll_bar *) client_data;
4332 XmScrollBarCallbackStruct *cs = (XmScrollBarCallbackStruct *) call_data;
4333 int part = -1, whole = 0, portion = 0;
4335 switch (cs->reason)
4337 case XmCR_DECREMENT:
4338 bar->dragging = Qnil;
4339 part = scroll_bar_up_arrow;
4340 break;
4342 case XmCR_INCREMENT:
4343 bar->dragging = Qnil;
4344 part = scroll_bar_down_arrow;
4345 break;
4347 case XmCR_PAGE_DECREMENT:
4348 bar->dragging = Qnil;
4349 part = scroll_bar_above_handle;
4350 break;
4352 case XmCR_PAGE_INCREMENT:
4353 bar->dragging = Qnil;
4354 part = scroll_bar_below_handle;
4355 break;
4357 case XmCR_TO_TOP:
4358 bar->dragging = Qnil;
4359 part = scroll_bar_to_top;
4360 break;
4362 case XmCR_TO_BOTTOM:
4363 bar->dragging = Qnil;
4364 part = scroll_bar_to_bottom;
4365 break;
4367 case XmCR_DRAG:
4369 int slider_size;
4371 /* Get the slider size. */
4372 block_input ();
4373 XtVaGetValues (widget, XmNsliderSize, &slider_size, NULL);
4374 unblock_input ();
4376 whole = XM_SB_MAX - slider_size;
4377 portion = min (cs->value, whole);
4378 part = scroll_bar_handle;
4379 bar->dragging = make_number (cs->value);
4381 break;
4383 case XmCR_VALUE_CHANGED:
4384 break;
4387 if (part >= 0)
4389 window_being_scrolled = bar->window;
4390 last_scroll_bar_part = part;
4391 x_send_scroll_bar_event (bar->window, part, portion, whole);
4395 #elif defined USE_GTK
4397 /* Scroll bar callback for GTK scroll bars. WIDGET is the scroll
4398 bar widget. DATA is a pointer to the scroll_bar structure. */
4400 static gboolean
4401 xg_scroll_callback (GtkRange *range,
4402 GtkScrollType scroll,
4403 gdouble value,
4404 gpointer user_data)
4406 struct scroll_bar *bar = (struct scroll_bar *) user_data;
4407 gdouble position;
4408 int part = -1, whole = 0, portion = 0;
4409 GtkAdjustment *adj = GTK_ADJUSTMENT (gtk_range_get_adjustment (range));
4410 struct frame *f = (struct frame *) g_object_get_data (G_OBJECT (range),
4411 XG_FRAME_DATA);
4413 if (xg_ignore_gtk_scrollbar) return FALSE;
4414 position = gtk_adjustment_get_value (adj);
4417 switch (scroll)
4419 case GTK_SCROLL_JUMP:
4420 /* Buttons 1 2 or 3 must be grabbed. */
4421 if (FRAME_X_DISPLAY_INFO (f)->grabbed != 0
4422 && FRAME_X_DISPLAY_INFO (f)->grabbed < (1 << 4))
4424 part = scroll_bar_handle;
4425 whole = gtk_adjustment_get_upper (adj) -
4426 gtk_adjustment_get_page_size (adj);
4427 portion = min ((int)position, whole);
4428 bar->dragging = make_number ((int)portion);
4430 break;
4431 case GTK_SCROLL_STEP_BACKWARD:
4432 part = scroll_bar_up_arrow;
4433 bar->dragging = Qnil;
4434 break;
4435 case GTK_SCROLL_STEP_FORWARD:
4436 part = scroll_bar_down_arrow;
4437 bar->dragging = Qnil;
4438 break;
4439 case GTK_SCROLL_PAGE_BACKWARD:
4440 part = scroll_bar_above_handle;
4441 bar->dragging = Qnil;
4442 break;
4443 case GTK_SCROLL_PAGE_FORWARD:
4444 part = scroll_bar_below_handle;
4445 bar->dragging = Qnil;
4446 break;
4449 if (part >= 0)
4451 window_being_scrolled = bar->window;
4452 last_scroll_bar_part = part;
4453 x_send_scroll_bar_event (bar->window, part, portion, whole);
4456 return FALSE;
4459 /* Callback for button release. Sets dragging to Qnil when dragging is done. */
4461 static gboolean
4462 xg_end_scroll_callback (GtkWidget *widget,
4463 GdkEventButton *event,
4464 gpointer user_data)
4466 struct scroll_bar *bar = (struct scroll_bar *) user_data;
4467 bar->dragging = Qnil;
4468 if (WINDOWP (window_being_scrolled))
4470 x_send_scroll_bar_event (window_being_scrolled,
4471 scroll_bar_end_scroll, 0, 0);
4472 window_being_scrolled = Qnil;
4475 return FALSE;
4479 #else /* not USE_GTK and not USE_MOTIF */
4481 /* Xaw scroll bar callback. Invoked when the thumb is dragged.
4482 WIDGET is the scroll bar widget. CLIENT_DATA is a pointer to the
4483 scroll bar struct. CALL_DATA is a pointer to a float saying where
4484 the thumb is. */
4486 static void
4487 xaw_jump_callback (Widget widget, XtPointer client_data, XtPointer call_data)
4489 struct scroll_bar *bar = (struct scroll_bar *) client_data;
4490 float top = *(float *) call_data;
4491 float shown;
4492 int whole, portion, height;
4493 int part;
4495 /* Get the size of the thumb, a value between 0 and 1. */
4496 block_input ();
4497 XtVaGetValues (widget, XtNshown, &shown, XtNheight, &height, NULL);
4498 unblock_input ();
4500 whole = 10000000;
4501 portion = shown < 1 ? top * whole : 0;
4503 if (shown < 1 && (eabs (top + shown - 1) < 1.0f / height))
4504 /* Some derivatives of Xaw refuse to shrink the thumb when you reach
4505 the bottom, so we force the scrolling whenever we see that we're
4506 too close to the bottom (in x_set_toolkit_scroll_bar_thumb
4507 we try to ensure that we always stay two pixels away from the
4508 bottom). */
4509 part = scroll_bar_down_arrow;
4510 else
4511 part = scroll_bar_handle;
4513 window_being_scrolled = bar->window;
4514 bar->dragging = make_number (portion);
4515 last_scroll_bar_part = part;
4516 x_send_scroll_bar_event (bar->window, part, portion, whole);
4520 /* Xaw scroll bar callback. Invoked for incremental scrolling.,
4521 i.e. line or page up or down. WIDGET is the Xaw scroll bar
4522 widget. CLIENT_DATA is a pointer to the scroll_bar structure for
4523 the scroll bar. CALL_DATA is an integer specifying the action that
4524 has taken place. Its magnitude is in the range 0..height of the
4525 scroll bar. Negative values mean scroll towards buffer start.
4526 Values < height of scroll bar mean line-wise movement. */
4528 static void
4529 xaw_scroll_callback (Widget widget, XtPointer client_data, XtPointer call_data)
4531 struct scroll_bar *bar = (struct scroll_bar *) client_data;
4532 /* The position really is stored cast to a pointer. */
4533 int position = (long) call_data;
4534 Dimension height;
4535 int part;
4537 /* Get the height of the scroll bar. */
4538 block_input ();
4539 XtVaGetValues (widget, XtNheight, &height, NULL);
4540 unblock_input ();
4542 if (eabs (position) >= height)
4543 part = (position < 0) ? scroll_bar_above_handle : scroll_bar_below_handle;
4545 /* If Xaw3d was compiled with ARROW_SCROLLBAR,
4546 it maps line-movement to call_data = max(5, height/20). */
4547 else if (xaw3d_arrow_scroll && eabs (position) <= max (5, height / 20))
4548 part = (position < 0) ? scroll_bar_up_arrow : scroll_bar_down_arrow;
4549 else
4550 part = scroll_bar_move_ratio;
4552 window_being_scrolled = bar->window;
4553 bar->dragging = Qnil;
4554 last_scroll_bar_part = part;
4555 x_send_scroll_bar_event (bar->window, part, position, height);
4558 #endif /* not USE_GTK and not USE_MOTIF */
4560 #define SCROLL_BAR_NAME "verticalScrollBar"
4562 /* Create the widget for scroll bar BAR on frame F. Record the widget
4563 and X window of the scroll bar in BAR. */
4565 #ifdef USE_GTK
4566 static void
4567 x_create_toolkit_scroll_bar (struct frame *f, struct scroll_bar *bar)
4569 const char *scroll_bar_name = SCROLL_BAR_NAME;
4571 block_input ();
4572 xg_create_scroll_bar (f, bar, G_CALLBACK (xg_scroll_callback),
4573 G_CALLBACK (xg_end_scroll_callback),
4574 scroll_bar_name);
4575 unblock_input ();
4578 #else /* not USE_GTK */
4580 static void
4581 x_create_toolkit_scroll_bar (struct frame *f, struct scroll_bar *bar)
4583 Window xwindow;
4584 Widget widget;
4585 Arg av[20];
4586 int ac = 0;
4587 const char *scroll_bar_name = SCROLL_BAR_NAME;
4588 unsigned long pixel;
4590 block_input ();
4592 #ifdef USE_MOTIF
4593 /* Set resources. Create the widget. */
4594 XtSetArg (av[ac], XtNmappedWhenManaged, False); ++ac;
4595 XtSetArg (av[ac], XmNminimum, 0); ++ac;
4596 XtSetArg (av[ac], XmNmaximum, XM_SB_MAX); ++ac;
4597 XtSetArg (av[ac], XmNorientation, XmVERTICAL); ++ac;
4598 XtSetArg (av[ac], XmNprocessingDirection, XmMAX_ON_BOTTOM), ++ac;
4599 XtSetArg (av[ac], XmNincrement, 1); ++ac;
4600 XtSetArg (av[ac], XmNpageIncrement, 1); ++ac;
4602 pixel = f->output_data.x->scroll_bar_foreground_pixel;
4603 if (pixel != -1)
4605 XtSetArg (av[ac], XmNforeground, pixel);
4606 ++ac;
4609 pixel = f->output_data.x->scroll_bar_background_pixel;
4610 if (pixel != -1)
4612 XtSetArg (av[ac], XmNbackground, pixel);
4613 ++ac;
4616 widget = XmCreateScrollBar (f->output_data.x->edit_widget,
4617 (char *) scroll_bar_name, av, ac);
4619 /* Add one callback for everything that can happen. */
4620 XtAddCallback (widget, XmNdecrementCallback, xm_scroll_callback,
4621 (XtPointer) bar);
4622 XtAddCallback (widget, XmNdragCallback, xm_scroll_callback,
4623 (XtPointer) bar);
4624 XtAddCallback (widget, XmNincrementCallback, xm_scroll_callback,
4625 (XtPointer) bar);
4626 XtAddCallback (widget, XmNpageDecrementCallback, xm_scroll_callback,
4627 (XtPointer) bar);
4628 XtAddCallback (widget, XmNpageIncrementCallback, xm_scroll_callback,
4629 (XtPointer) bar);
4630 XtAddCallback (widget, XmNtoBottomCallback, xm_scroll_callback,
4631 (XtPointer) bar);
4632 XtAddCallback (widget, XmNtoTopCallback, xm_scroll_callback,
4633 (XtPointer) bar);
4635 /* Realize the widget. Only after that is the X window created. */
4636 XtRealizeWidget (widget);
4638 /* Set the cursor to an arrow. I didn't find a resource to do that.
4639 And I'm wondering why it hasn't an arrow cursor by default. */
4640 XDefineCursor (XtDisplay (widget), XtWindow (widget),
4641 f->output_data.x->nontext_cursor);
4643 #else /* !USE_MOTIF i.e. use Xaw */
4645 /* Set resources. Create the widget. The background of the
4646 Xaw3d scroll bar widget is a little bit light for my taste.
4647 We don't alter it here to let users change it according
4648 to their taste with `emacs*verticalScrollBar.background: xxx'. */
4649 XtSetArg (av[ac], XtNmappedWhenManaged, False); ++ac;
4650 XtSetArg (av[ac], XtNorientation, XtorientVertical); ++ac;
4651 /* For smoother scrolling with Xaw3d -sm */
4652 /* XtSetArg (av[ac], XtNpickTop, True); ++ac; */
4654 pixel = f->output_data.x->scroll_bar_foreground_pixel;
4655 if (pixel != -1)
4657 XtSetArg (av[ac], XtNforeground, pixel);
4658 ++ac;
4661 pixel = f->output_data.x->scroll_bar_background_pixel;
4662 if (pixel != -1)
4664 XtSetArg (av[ac], XtNbackground, pixel);
4665 ++ac;
4668 /* Top/bottom shadow colors. */
4670 /* Allocate them, if necessary. */
4671 if (f->output_data.x->scroll_bar_top_shadow_pixel == -1)
4673 pixel = f->output_data.x->scroll_bar_background_pixel;
4674 if (pixel != -1)
4676 if (!x_alloc_lighter_color (f, FRAME_X_DISPLAY (f),
4677 FRAME_X_COLORMAP (f),
4678 &pixel, 1.2, 0x8000))
4679 pixel = -1;
4680 f->output_data.x->scroll_bar_top_shadow_pixel = pixel;
4683 if (f->output_data.x->scroll_bar_bottom_shadow_pixel == -1)
4685 pixel = f->output_data.x->scroll_bar_background_pixel;
4686 if (pixel != -1)
4688 if (!x_alloc_lighter_color (f, FRAME_X_DISPLAY (f),
4689 FRAME_X_COLORMAP (f),
4690 &pixel, 0.6, 0x4000))
4691 pixel = -1;
4692 f->output_data.x->scroll_bar_bottom_shadow_pixel = pixel;
4696 #ifdef XtNbeNiceToColormap
4697 /* Tell the toolkit about them. */
4698 if (f->output_data.x->scroll_bar_top_shadow_pixel == -1
4699 || f->output_data.x->scroll_bar_bottom_shadow_pixel == -1)
4700 /* We tried to allocate a color for the top/bottom shadow, and
4701 failed, so tell Xaw3d to use dithering instead. */
4702 /* But only if we have a small colormap. Xaw3d can allocate nice
4703 colors itself. */
4705 XtSetArg (av[ac], XtNbeNiceToColormap,
4706 DefaultDepthOfScreen (FRAME_X_SCREEN (f)) < 16);
4707 ++ac;
4709 else
4710 /* Tell what colors Xaw3d should use for the top/bottom shadow, to
4711 be more consistent with other emacs 3d colors, and since Xaw3d is
4712 not good at dealing with allocation failure. */
4714 /* This tells Xaw3d to use real colors instead of dithering for
4715 the shadows. */
4716 XtSetArg (av[ac], XtNbeNiceToColormap, False);
4717 ++ac;
4719 /* Specify the colors. */
4720 pixel = f->output_data.x->scroll_bar_top_shadow_pixel;
4721 if (pixel != -1)
4723 XtSetArg (av[ac], XtNtopShadowPixel, pixel);
4724 ++ac;
4726 pixel = f->output_data.x->scroll_bar_bottom_shadow_pixel;
4727 if (pixel != -1)
4729 XtSetArg (av[ac], XtNbottomShadowPixel, pixel);
4730 ++ac;
4733 #endif
4735 widget = XtCreateWidget (scroll_bar_name, scrollbarWidgetClass,
4736 f->output_data.x->edit_widget, av, ac);
4739 char const *initial = "";
4740 char const *val = initial;
4741 XtVaGetValues (widget, XtNscrollVCursor, (XtPointer) &val,
4742 #ifdef XtNarrowScrollbars
4743 XtNarrowScrollbars, (XtPointer) &xaw3d_arrow_scroll,
4744 #endif
4745 XtNpickTop, (XtPointer) &xaw3d_pick_top, NULL);
4746 if (xaw3d_arrow_scroll || val == initial)
4747 { /* ARROW_SCROLL */
4748 xaw3d_arrow_scroll = True;
4749 /* Isn't that just a personal preference ? --Stef */
4750 XtVaSetValues (widget, XtNcursorName, "top_left_arrow", NULL);
4754 /* Define callbacks. */
4755 XtAddCallback (widget, XtNjumpProc, xaw_jump_callback, (XtPointer) bar);
4756 XtAddCallback (widget, XtNscrollProc, xaw_scroll_callback,
4757 (XtPointer) bar);
4759 /* Realize the widget. Only after that is the X window created. */
4760 XtRealizeWidget (widget);
4762 #endif /* !USE_MOTIF */
4764 /* Install an action hook that lets us detect when the user
4765 finishes interacting with a scroll bar. */
4766 if (action_hook_id == 0)
4767 action_hook_id = XtAppAddActionHook (Xt_app_con, xt_action_hook, 0);
4769 /* Remember X window and widget in the scroll bar vector. */
4770 SET_SCROLL_BAR_X_WIDGET (bar, widget);
4771 xwindow = XtWindow (widget);
4772 bar->x_window = xwindow;
4774 unblock_input ();
4776 #endif /* not USE_GTK */
4779 /* Set the thumb size and position of scroll bar BAR. We are currently
4780 displaying PORTION out of a whole WHOLE, and our position POSITION. */
4782 #ifdef USE_GTK
4783 static void
4784 x_set_toolkit_scroll_bar_thumb (struct scroll_bar *bar, int portion, int position, int whole)
4786 xg_set_toolkit_scroll_bar_thumb (bar, portion, position, whole);
4789 #else /* not USE_GTK */
4790 static void
4791 x_set_toolkit_scroll_bar_thumb (struct scroll_bar *bar, int portion, int position,
4792 int whole)
4794 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
4795 Widget widget = SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f), bar);
4796 float top, shown;
4798 block_input ();
4800 #ifdef USE_MOTIF
4802 if (scroll_bar_adjust_thumb_portion_p)
4804 /* We use an estimate of 30 chars per line rather than the real
4805 `portion' value. This has the disadvantage that the thumb size
4806 is not very representative, but it makes our life a lot easier.
4807 Otherwise, we have to constantly adjust the thumb size, which
4808 we can't always do quickly enough: while dragging, the size of
4809 the thumb might prevent the user from dragging the thumb all the
4810 way to the end. but Motif and some versions of Xaw3d don't allow
4811 updating the thumb size while dragging. Also, even if we can update
4812 its size, the update will often happen too late.
4813 If you don't believe it, check out revision 1.650 of xterm.c to see
4814 what hoops we were going through and the still poor behavior we got. */
4815 portion = WINDOW_TOTAL_LINES (XWINDOW (bar->window)) * 30;
4816 /* When the thumb is at the bottom, position == whole.
4817 So we need to increase `whole' to make space for the thumb. */
4818 whole += portion;
4821 if (whole <= 0)
4822 top = 0, shown = 1;
4823 else
4825 top = (float) position / whole;
4826 shown = (float) portion / whole;
4829 if (NILP (bar->dragging))
4831 int size, value;
4833 /* Slider size. Must be in the range [1 .. MAX - MIN] where MAX
4834 is the scroll bar's maximum and MIN is the scroll bar's minimum
4835 value. */
4836 size = clip_to_bounds (1, shown * XM_SB_MAX, XM_SB_MAX);
4838 /* Position. Must be in the range [MIN .. MAX - SLIDER_SIZE]. */
4839 value = top * XM_SB_MAX;
4840 value = min (value, XM_SB_MAX - size);
4842 XmScrollBarSetValues (widget, value, size, 0, 0, False);
4844 #else /* !USE_MOTIF i.e. use Xaw */
4846 if (whole == 0)
4847 top = 0, shown = 1;
4848 else
4850 top = (float) position / whole;
4851 shown = (float) portion / whole;
4855 float old_top, old_shown;
4856 Dimension height;
4857 XtVaGetValues (widget,
4858 XtNtopOfThumb, &old_top,
4859 XtNshown, &old_shown,
4860 XtNheight, &height,
4861 NULL);
4863 /* Massage the top+shown values. */
4864 if (NILP (bar->dragging) || last_scroll_bar_part == scroll_bar_down_arrow)
4865 top = max (0, min (1, top));
4866 else
4867 top = old_top;
4868 /* Keep two pixels available for moving the thumb down. */
4869 shown = max (0, min (1 - top - (2.0f / height), shown));
4871 /* If the call to XawScrollbarSetThumb below doesn't seem to work,
4872 check that your system's configuration file contains a define
4873 for `NARROWPROTO'. See s/freebsd.h for an example. */
4874 if (top != old_top || shown != old_shown)
4876 if (NILP (bar->dragging))
4877 XawScrollbarSetThumb (widget, top, shown);
4878 else
4880 /* Try to make the scrolling a tad smoother. */
4881 if (!xaw3d_pick_top)
4882 shown = min (shown, old_shown);
4884 XawScrollbarSetThumb (widget, top, shown);
4888 #endif /* !USE_MOTIF */
4890 unblock_input ();
4892 #endif /* not USE_GTK */
4894 #endif /* USE_TOOLKIT_SCROLL_BARS */
4898 /************************************************************************
4899 Scroll bars, general
4900 ************************************************************************/
4902 /* Create a scroll bar and return the scroll bar vector for it. W is
4903 the Emacs window on which to create the scroll bar. TOP, LEFT,
4904 WIDTH and HEIGHT are the pixel coordinates and dimensions of the
4905 scroll bar. */
4907 static struct scroll_bar *
4908 x_scroll_bar_create (struct window *w, int top, int left, int width, int height)
4910 struct frame *f = XFRAME (w->frame);
4911 struct scroll_bar *bar
4912 = ALLOCATE_PSEUDOVECTOR (struct scroll_bar, x_window, PVEC_OTHER);
4913 Lisp_Object barobj;
4915 block_input ();
4917 #ifdef USE_TOOLKIT_SCROLL_BARS
4918 x_create_toolkit_scroll_bar (f, bar);
4919 #else /* not USE_TOOLKIT_SCROLL_BARS */
4921 XSetWindowAttributes a;
4922 unsigned long mask;
4923 Window window;
4925 a.background_pixel = f->output_data.x->scroll_bar_background_pixel;
4926 if (a.background_pixel == -1)
4927 a.background_pixel = FRAME_BACKGROUND_PIXEL (f);
4929 a.event_mask = (ButtonPressMask | ButtonReleaseMask
4930 | ButtonMotionMask | PointerMotionHintMask
4931 | ExposureMask);
4932 a.cursor = FRAME_X_DISPLAY_INFO (f)->vertical_scroll_bar_cursor;
4934 mask = (CWBackPixel | CWEventMask | CWCursor);
4936 /* Clear the area of W that will serve as a scroll bar. This is
4937 for the case that a window has been split horizontally. In
4938 this case, no clear_frame is generated to reduce flickering. */
4939 if (width > 0 && height > 0)
4940 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
4941 left, top, width,
4942 window_box_height (w), False);
4944 window = XCreateWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
4945 /* Position and size of scroll bar. */
4946 left + VERTICAL_SCROLL_BAR_WIDTH_TRIM,
4947 top,
4948 width - VERTICAL_SCROLL_BAR_WIDTH_TRIM * 2,
4949 height,
4950 /* Border width, depth, class, and visual. */
4952 CopyFromParent,
4953 CopyFromParent,
4954 CopyFromParent,
4955 /* Attributes. */
4956 mask, &a);
4957 bar->x_window = window;
4959 #endif /* not USE_TOOLKIT_SCROLL_BARS */
4961 XSETWINDOW (bar->window, w);
4962 bar->top = top;
4963 bar->left = left;
4964 bar->width = width;
4965 bar->height = height;
4966 bar->start = 0;
4967 bar->end = 0;
4968 bar->dragging = Qnil;
4969 bar->fringe_extended_p = 0;
4971 /* Add bar to its frame's list of scroll bars. */
4972 bar->next = FRAME_SCROLL_BARS (f);
4973 bar->prev = Qnil;
4974 XSETVECTOR (barobj, bar);
4975 fset_scroll_bars (f, barobj);
4976 if (!NILP (bar->next))
4977 XSETVECTOR (XSCROLL_BAR (bar->next)->prev, bar);
4979 /* Map the window/widget. */
4980 #ifdef USE_TOOLKIT_SCROLL_BARS
4982 #ifdef USE_GTK
4983 xg_update_scrollbar_pos (f,
4984 bar->x_window,
4985 top,
4986 left + VERTICAL_SCROLL_BAR_WIDTH_TRIM,
4987 width - VERTICAL_SCROLL_BAR_WIDTH_TRIM * 2,
4988 max (height, 1));
4989 #else /* not USE_GTK */
4990 Widget scroll_bar = SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f), bar);
4991 XtConfigureWidget (scroll_bar,
4992 left + VERTICAL_SCROLL_BAR_WIDTH_TRIM,
4993 top,
4994 width - VERTICAL_SCROLL_BAR_WIDTH_TRIM * 2,
4995 max (height, 1), 0);
4996 XtMapWidget (scroll_bar);
4997 #endif /* not USE_GTK */
4999 #else /* not USE_TOOLKIT_SCROLL_BARS */
5000 XMapRaised (FRAME_X_DISPLAY (f), bar->x_window);
5001 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5003 unblock_input ();
5004 return bar;
5008 #ifndef USE_TOOLKIT_SCROLL_BARS
5010 /* Draw BAR's handle in the proper position.
5012 If the handle is already drawn from START to END, don't bother
5013 redrawing it, unless REBUILD is non-zero; in that case, always
5014 redraw it. (REBUILD is handy for drawing the handle after expose
5015 events.)
5017 Normally, we want to constrain the start and end of the handle to
5018 fit inside its rectangle, but if the user is dragging the scroll
5019 bar handle, we want to let them drag it down all the way, so that
5020 the bar's top is as far down as it goes; otherwise, there's no way
5021 to move to the very end of the buffer. */
5023 static void
5024 x_scroll_bar_set_handle (struct scroll_bar *bar, int start, int end, int rebuild)
5026 int dragging = ! NILP (bar->dragging);
5027 Window w = bar->x_window;
5028 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
5029 GC gc = f->output_data.x->normal_gc;
5031 /* If the display is already accurate, do nothing. */
5032 if (! rebuild
5033 && start == bar->start
5034 && end == bar->end)
5035 return;
5037 block_input ();
5040 int inside_width = VERTICAL_SCROLL_BAR_INSIDE_WIDTH (f, bar->width);
5041 int inside_height = VERTICAL_SCROLL_BAR_INSIDE_HEIGHT (f, bar->height);
5042 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, bar->height);
5044 /* Make sure the values are reasonable, and try to preserve
5045 the distance between start and end. */
5047 int length = end - start;
5049 if (start < 0)
5050 start = 0;
5051 else if (start > top_range)
5052 start = top_range;
5053 end = start + length;
5055 if (end < start)
5056 end = start;
5057 else if (end > top_range && ! dragging)
5058 end = top_range;
5061 /* Store the adjusted setting in the scroll bar. */
5062 bar->start = start;
5063 bar->end = end;
5065 /* Clip the end position, just for display. */
5066 if (end > top_range)
5067 end = top_range;
5069 /* Draw bottom positions VERTICAL_SCROLL_BAR_MIN_HANDLE pixels
5070 below top positions, to make sure the handle is always at least
5071 that many pixels tall. */
5072 end += VERTICAL_SCROLL_BAR_MIN_HANDLE;
5074 /* Draw the empty space above the handle. Note that we can't clear
5075 zero-height areas; that means "clear to end of window." */
5076 if (start > 0)
5077 x_clear_area (FRAME_X_DISPLAY (f), w,
5078 /* x, y, width, height, and exposures. */
5079 VERTICAL_SCROLL_BAR_LEFT_BORDER,
5080 VERTICAL_SCROLL_BAR_TOP_BORDER,
5081 inside_width, start,
5082 False);
5084 /* Change to proper foreground color if one is specified. */
5085 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
5086 XSetForeground (FRAME_X_DISPLAY (f), gc,
5087 f->output_data.x->scroll_bar_foreground_pixel);
5089 /* Draw the handle itself. */
5090 XFillRectangle (FRAME_X_DISPLAY (f), w, gc,
5091 /* x, y, width, height */
5092 VERTICAL_SCROLL_BAR_LEFT_BORDER,
5093 VERTICAL_SCROLL_BAR_TOP_BORDER + start,
5094 inside_width, end - start);
5096 /* Restore the foreground color of the GC if we changed it above. */
5097 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
5098 XSetForeground (FRAME_X_DISPLAY (f), gc,
5099 FRAME_FOREGROUND_PIXEL (f));
5101 /* Draw the empty space below the handle. Note that we can't
5102 clear zero-height areas; that means "clear to end of window." */
5103 if (end < inside_height)
5104 x_clear_area (FRAME_X_DISPLAY (f), w,
5105 /* x, y, width, height, and exposures. */
5106 VERTICAL_SCROLL_BAR_LEFT_BORDER,
5107 VERTICAL_SCROLL_BAR_TOP_BORDER + end,
5108 inside_width, inside_height - end,
5109 False);
5113 unblock_input ();
5116 #endif /* !USE_TOOLKIT_SCROLL_BARS */
5118 /* Destroy scroll bar BAR, and set its Emacs window's scroll bar to
5119 nil. */
5121 static void
5122 x_scroll_bar_remove (struct scroll_bar *bar)
5124 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
5125 block_input ();
5127 #ifdef USE_TOOLKIT_SCROLL_BARS
5128 #ifdef USE_GTK
5129 xg_remove_scroll_bar (f, bar->x_window);
5130 #else /* not USE_GTK */
5131 XtDestroyWidget (SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f), bar));
5132 #endif /* not USE_GTK */
5133 #else
5134 XDestroyWindow (FRAME_X_DISPLAY (f), bar->x_window);
5135 #endif
5137 /* Dissociate this scroll bar from its window. */
5138 wset_vertical_scroll_bar (XWINDOW (bar->window), Qnil);
5140 unblock_input ();
5144 /* Set the handle of the vertical scroll bar for WINDOW to indicate
5145 that we are displaying PORTION characters out of a total of WHOLE
5146 characters, starting at POSITION. If WINDOW has no scroll bar,
5147 create one. */
5149 static void
5150 XTset_vertical_scroll_bar (struct window *w, int portion, int whole, int position)
5152 struct frame *f = XFRAME (w->frame);
5153 Lisp_Object barobj;
5154 struct scroll_bar *bar;
5155 int top, height, left, sb_left, width, sb_width;
5156 int window_y, window_height;
5157 #ifdef USE_TOOLKIT_SCROLL_BARS
5158 int fringe_extended_p;
5159 #endif
5161 /* Get window dimensions. */
5162 window_box (w, -1, 0, &window_y, 0, &window_height);
5163 top = window_y;
5164 width = WINDOW_CONFIG_SCROLL_BAR_COLS (w) * FRAME_COLUMN_WIDTH (f);
5165 height = window_height;
5167 /* Compute the left edge of the scroll bar area. */
5168 left = WINDOW_SCROLL_BAR_AREA_X (w);
5170 /* Compute the width of the scroll bar which might be less than
5171 the width of the area reserved for the scroll bar. */
5172 if (WINDOW_CONFIG_SCROLL_BAR_WIDTH (w) > 0)
5173 sb_width = WINDOW_CONFIG_SCROLL_BAR_WIDTH (w);
5174 else
5175 sb_width = width;
5177 /* Compute the left edge of the scroll bar. */
5178 #ifdef USE_TOOLKIT_SCROLL_BARS
5179 if (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w))
5180 sb_left = left + (WINDOW_RIGHTMOST_P (w) ? width - sb_width : 0);
5181 else
5182 sb_left = left + (WINDOW_LEFTMOST_P (w) ? 0 : width - sb_width);
5183 #else
5184 if (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w))
5185 sb_left = left + width - sb_width;
5186 else
5187 sb_left = left;
5188 #endif
5190 #ifdef USE_TOOLKIT_SCROLL_BARS
5191 if (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w))
5192 fringe_extended_p = (WINDOW_LEFTMOST_P (w)
5193 && WINDOW_LEFT_FRINGE_WIDTH (w)
5194 && (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
5195 || WINDOW_LEFT_MARGIN_COLS (w) == 0));
5196 else
5197 fringe_extended_p = (WINDOW_RIGHTMOST_P (w)
5198 && WINDOW_RIGHT_FRINGE_WIDTH (w)
5199 && (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
5200 || WINDOW_RIGHT_MARGIN_COLS (w) == 0));
5201 #endif
5203 /* Does the scroll bar exist yet? */
5204 if (NILP (w->vertical_scroll_bar))
5206 if (width > 0 && height > 0)
5208 block_input ();
5209 #ifdef USE_TOOLKIT_SCROLL_BARS
5210 if (fringe_extended_p)
5211 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5212 sb_left, top, sb_width, height, False);
5213 else
5214 #endif
5215 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5216 left, top, width, height, False);
5217 unblock_input ();
5220 bar = x_scroll_bar_create (w, top, sb_left, sb_width, height);
5222 else
5224 /* It may just need to be moved and resized. */
5225 unsigned int mask = 0;
5227 bar = XSCROLL_BAR (w->vertical_scroll_bar);
5229 block_input ();
5231 if (sb_left != bar->left)
5232 mask |= CWX;
5233 if (top != bar->top)
5234 mask |= CWY;
5235 if (sb_width != bar->width)
5236 mask |= CWWidth;
5237 if (height != bar->height)
5238 mask |= CWHeight;
5240 #ifdef USE_TOOLKIT_SCROLL_BARS
5242 /* Move/size the scroll bar widget. */
5243 if (mask || bar->fringe_extended_p != fringe_extended_p)
5245 /* Since toolkit scroll bars are smaller than the space reserved
5246 for them on the frame, we have to clear "under" them. */
5247 if (width > 0 && height > 0)
5249 if (fringe_extended_p)
5250 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5251 sb_left, top, sb_width, height, False);
5252 else
5253 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5254 left, top, width, height, False);
5256 #ifdef USE_GTK
5257 xg_update_scrollbar_pos (f,
5258 bar->x_window,
5259 top,
5260 sb_left + VERTICAL_SCROLL_BAR_WIDTH_TRIM,
5261 sb_width - VERTICAL_SCROLL_BAR_WIDTH_TRIM *2,
5262 max (height, 1));
5263 #else /* not USE_GTK */
5264 XtConfigureWidget (SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f), bar),
5265 sb_left + VERTICAL_SCROLL_BAR_WIDTH_TRIM,
5266 top,
5267 sb_width - VERTICAL_SCROLL_BAR_WIDTH_TRIM * 2,
5268 max (height, 1), 0);
5269 #endif /* not USE_GTK */
5271 #else /* not USE_TOOLKIT_SCROLL_BARS */
5273 /* Clear areas not covered by the scroll bar because of
5274 VERTICAL_SCROLL_BAR_WIDTH_TRIM. */
5275 if (VERTICAL_SCROLL_BAR_WIDTH_TRIM)
5277 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5278 left, top, VERTICAL_SCROLL_BAR_WIDTH_TRIM,
5279 height, False);
5280 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5281 left + width - VERTICAL_SCROLL_BAR_WIDTH_TRIM,
5282 top, VERTICAL_SCROLL_BAR_WIDTH_TRIM,
5283 height, False);
5286 /* Clear areas not covered by the scroll bar because it's not as
5287 wide as the area reserved for it. This makes sure a
5288 previous mode line display is cleared after C-x 2 C-x 1, for
5289 example. */
5291 int area_width = WINDOW_CONFIG_SCROLL_BAR_COLS (w) * FRAME_COLUMN_WIDTH (f);
5292 int rest = area_width - sb_width;
5293 if (rest > 0 && height > 0)
5295 if (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w))
5296 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5297 left + area_width - rest, top,
5298 rest, height, False);
5299 else
5300 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5301 left, top, rest, height, False);
5305 /* Move/size the scroll bar window. */
5306 if (mask)
5308 XWindowChanges wc;
5310 wc.x = sb_left + VERTICAL_SCROLL_BAR_WIDTH_TRIM;
5311 wc.y = top;
5312 wc.width = sb_width - VERTICAL_SCROLL_BAR_WIDTH_TRIM * 2;
5313 wc.height = height;
5314 XConfigureWindow (FRAME_X_DISPLAY (f), bar->x_window,
5315 mask, &wc);
5318 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5320 /* Remember new settings. */
5321 bar->left = sb_left;
5322 bar->top = top;
5323 bar->width = sb_width;
5324 bar->height = height;
5326 unblock_input ();
5329 #ifdef USE_TOOLKIT_SCROLL_BARS
5330 bar->fringe_extended_p = fringe_extended_p;
5332 x_set_toolkit_scroll_bar_thumb (bar, portion, position, whole);
5333 #else /* not USE_TOOLKIT_SCROLL_BARS */
5334 /* Set the scroll bar's current state, unless we're currently being
5335 dragged. */
5336 if (NILP (bar->dragging))
5338 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, height);
5340 if (whole == 0)
5341 x_scroll_bar_set_handle (bar, 0, top_range, 0);
5342 else
5344 int start = ((double) position * top_range) / whole;
5345 int end = ((double) (position + portion) * top_range) / whole;
5346 x_scroll_bar_set_handle (bar, start, end, 0);
5349 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5351 XSETVECTOR (barobj, bar);
5352 wset_vertical_scroll_bar (w, barobj);
5356 /* The following three hooks are used when we're doing a thorough
5357 redisplay of the frame. We don't explicitly know which scroll bars
5358 are going to be deleted, because keeping track of when windows go
5359 away is a real pain - "Can you say set-window-configuration, boys
5360 and girls?" Instead, we just assert at the beginning of redisplay
5361 that *all* scroll bars are to be removed, and then save a scroll bar
5362 from the fiery pit when we actually redisplay its window. */
5364 /* Arrange for all scroll bars on FRAME to be removed at the next call
5365 to `*judge_scroll_bars_hook'. A scroll bar may be spared if
5366 `*redeem_scroll_bar_hook' is applied to its window before the judgment. */
5368 static void
5369 XTcondemn_scroll_bars (struct frame *frame)
5371 /* Transfer all the scroll bars to FRAME_CONDEMNED_SCROLL_BARS. */
5372 while (! NILP (FRAME_SCROLL_BARS (frame)))
5374 Lisp_Object bar;
5375 bar = FRAME_SCROLL_BARS (frame);
5376 fset_scroll_bars (frame, XSCROLL_BAR (bar)->next);
5377 XSCROLL_BAR (bar)->next = FRAME_CONDEMNED_SCROLL_BARS (frame);
5378 XSCROLL_BAR (bar)->prev = Qnil;
5379 if (! NILP (FRAME_CONDEMNED_SCROLL_BARS (frame)))
5380 XSCROLL_BAR (FRAME_CONDEMNED_SCROLL_BARS (frame))->prev = bar;
5381 fset_condemned_scroll_bars (frame, bar);
5386 /* Un-mark WINDOW's scroll bar for deletion in this judgment cycle.
5387 Note that WINDOW isn't necessarily condemned at all. */
5389 static void
5390 XTredeem_scroll_bar (struct window *window)
5392 struct scroll_bar *bar;
5393 struct frame *f;
5394 Lisp_Object barobj;
5396 /* We can't redeem this window's scroll bar if it doesn't have one. */
5397 if (NILP (window->vertical_scroll_bar))
5398 emacs_abort ();
5400 bar = XSCROLL_BAR (window->vertical_scroll_bar);
5402 /* Unlink it from the condemned list. */
5403 f = XFRAME (WINDOW_FRAME (window));
5404 if (NILP (bar->prev))
5406 /* If the prev pointer is nil, it must be the first in one of
5407 the lists. */
5408 if (EQ (FRAME_SCROLL_BARS (f), window->vertical_scroll_bar))
5409 /* It's not condemned. Everything's fine. */
5410 return;
5411 else if (EQ (FRAME_CONDEMNED_SCROLL_BARS (f),
5412 window->vertical_scroll_bar))
5413 fset_condemned_scroll_bars (f, bar->next);
5414 else
5415 /* If its prev pointer is nil, it must be at the front of
5416 one or the other! */
5417 emacs_abort ();
5419 else
5420 XSCROLL_BAR (bar->prev)->next = bar->next;
5422 if (! NILP (bar->next))
5423 XSCROLL_BAR (bar->next)->prev = bar->prev;
5425 bar->next = FRAME_SCROLL_BARS (f);
5426 bar->prev = Qnil;
5427 XSETVECTOR (barobj, bar);
5428 fset_scroll_bars (f, barobj);
5429 if (! NILP (bar->next))
5430 XSETVECTOR (XSCROLL_BAR (bar->next)->prev, bar);
5433 /* Remove all scroll bars on FRAME that haven't been saved since the
5434 last call to `*condemn_scroll_bars_hook'. */
5436 static void
5437 XTjudge_scroll_bars (struct frame *f)
5439 Lisp_Object bar, next;
5441 bar = FRAME_CONDEMNED_SCROLL_BARS (f);
5443 /* Clear out the condemned list now so we won't try to process any
5444 more events on the hapless scroll bars. */
5445 fset_condemned_scroll_bars (f, Qnil);
5447 for (; ! NILP (bar); bar = next)
5449 struct scroll_bar *b = XSCROLL_BAR (bar);
5451 x_scroll_bar_remove (b);
5453 next = b->next;
5454 b->next = b->prev = Qnil;
5457 /* Now there should be no references to the condemned scroll bars,
5458 and they should get garbage-collected. */
5462 #ifndef USE_TOOLKIT_SCROLL_BARS
5463 /* Handle an Expose or GraphicsExpose event on a scroll bar. This
5464 is a no-op when using toolkit scroll bars.
5466 This may be called from a signal handler, so we have to ignore GC
5467 mark bits. */
5469 static void
5470 x_scroll_bar_expose (struct scroll_bar *bar, XEvent *event)
5472 Window w = bar->x_window;
5473 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
5474 GC gc = f->output_data.x->normal_gc;
5475 int width_trim = VERTICAL_SCROLL_BAR_WIDTH_TRIM;
5477 block_input ();
5479 x_scroll_bar_set_handle (bar, bar->start, bar->end, 1);
5481 /* Switch to scroll bar foreground color. */
5482 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
5483 XSetForeground (FRAME_X_DISPLAY (f), gc,
5484 f->output_data.x->scroll_bar_foreground_pixel);
5486 /* Draw a one-pixel border just inside the edges of the scroll bar. */
5487 XDrawRectangle (FRAME_X_DISPLAY (f), w, gc,
5489 /* x, y, width, height */
5490 0, 0,
5491 bar->width - 1 - width_trim - width_trim,
5492 bar->height - 1);
5494 /* Restore the foreground color of the GC if we changed it above. */
5495 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
5496 XSetForeground (FRAME_X_DISPLAY (f), gc,
5497 FRAME_FOREGROUND_PIXEL (f));
5499 unblock_input ();
5502 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5504 /* Handle a mouse click on the scroll bar BAR. If *EMACS_EVENT's kind
5505 is set to something other than NO_EVENT, it is enqueued.
5507 This may be called from a signal handler, so we have to ignore GC
5508 mark bits. */
5511 static void
5512 x_scroll_bar_handle_click (struct scroll_bar *bar, XEvent *event, struct input_event *emacs_event)
5514 if (! WINDOWP (bar->window))
5515 emacs_abort ();
5517 emacs_event->kind = SCROLL_BAR_CLICK_EVENT;
5518 emacs_event->code = event->xbutton.button - Button1;
5519 emacs_event->modifiers
5520 = (x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO
5521 (XFRAME (WINDOW_FRAME (XWINDOW (bar->window)))),
5522 event->xbutton.state)
5523 | (event->type == ButtonRelease
5524 ? up_modifier
5525 : down_modifier));
5526 emacs_event->frame_or_window = bar->window;
5527 emacs_event->arg = Qnil;
5528 emacs_event->timestamp = event->xbutton.time;
5530 int top_range
5531 = VERTICAL_SCROLL_BAR_TOP_RANGE (f, bar->height);
5532 int y = event->xbutton.y - VERTICAL_SCROLL_BAR_TOP_BORDER;
5534 if (y < 0) y = 0;
5535 if (y > top_range) y = top_range;
5537 if (y < bar->start)
5538 emacs_event->part = scroll_bar_above_handle;
5539 else if (y < bar->end + VERTICAL_SCROLL_BAR_MIN_HANDLE)
5540 emacs_event->part = scroll_bar_handle;
5541 else
5542 emacs_event->part = scroll_bar_below_handle;
5544 #ifndef USE_TOOLKIT_SCROLL_BARS
5545 /* If the user has released the handle, set it to its final position. */
5546 if (event->type == ButtonRelease
5547 && ! NILP (bar->dragging))
5549 int new_start = y - XINT (bar->dragging);
5550 int new_end = new_start + bar->end - bar->start;
5552 x_scroll_bar_set_handle (bar, new_start, new_end, 0);
5553 bar->dragging = Qnil;
5555 #endif
5557 XSETINT (emacs_event->x, y);
5558 XSETINT (emacs_event->y, top_range);
5562 #ifndef USE_TOOLKIT_SCROLL_BARS
5564 /* Handle some mouse motion while someone is dragging the scroll bar.
5566 This may be called from a signal handler, so we have to ignore GC
5567 mark bits. */
5569 static void
5570 x_scroll_bar_note_movement (struct scroll_bar *bar, XEvent *event)
5572 struct frame *f = XFRAME (XWINDOW (bar->window)->frame);
5574 last_mouse_movement_time = event->xmotion.time;
5576 f->mouse_moved = 1;
5577 XSETVECTOR (last_mouse_scroll_bar, bar);
5579 /* If we're dragging the bar, display it. */
5580 if (! NILP (bar->dragging))
5582 /* Where should the handle be now? */
5583 int new_start = event->xmotion.y - XINT (bar->dragging);
5585 if (new_start != bar->start)
5587 int new_end = new_start + bar->end - bar->start;
5589 x_scroll_bar_set_handle (bar, new_start, new_end, 0);
5594 #endif /* !USE_TOOLKIT_SCROLL_BARS */
5596 /* Return information to the user about the current position of the mouse
5597 on the scroll bar. */
5599 static void
5600 x_scroll_bar_report_motion (struct frame **fp, Lisp_Object *bar_window,
5601 enum scroll_bar_part *part, Lisp_Object *x,
5602 Lisp_Object *y, Time *timestamp)
5604 struct scroll_bar *bar = XSCROLL_BAR (last_mouse_scroll_bar);
5605 Window w = bar->x_window;
5606 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
5607 int win_x, win_y;
5608 Window dummy_window;
5609 int dummy_coord;
5610 unsigned int dummy_mask;
5612 block_input ();
5614 /* Get the mouse's position relative to the scroll bar window, and
5615 report that. */
5616 if (! XQueryPointer (FRAME_X_DISPLAY (f), w,
5618 /* Root, child, root x and root y. */
5619 &dummy_window, &dummy_window,
5620 &dummy_coord, &dummy_coord,
5622 /* Position relative to scroll bar. */
5623 &win_x, &win_y,
5625 /* Mouse buttons and modifier keys. */
5626 &dummy_mask))
5628 else
5630 int top_range
5631 = VERTICAL_SCROLL_BAR_TOP_RANGE (f, bar->height);
5633 win_y -= VERTICAL_SCROLL_BAR_TOP_BORDER;
5635 if (! NILP (bar->dragging))
5636 win_y -= XINT (bar->dragging);
5638 if (win_y < 0)
5639 win_y = 0;
5640 if (win_y > top_range)
5641 win_y = top_range;
5643 *fp = f;
5644 *bar_window = bar->window;
5646 if (! NILP (bar->dragging))
5647 *part = scroll_bar_handle;
5648 else if (win_y < bar->start)
5649 *part = scroll_bar_above_handle;
5650 else if (win_y < bar->end + VERTICAL_SCROLL_BAR_MIN_HANDLE)
5651 *part = scroll_bar_handle;
5652 else
5653 *part = scroll_bar_below_handle;
5655 XSETINT (*x, win_y);
5656 XSETINT (*y, top_range);
5658 f->mouse_moved = 0;
5659 last_mouse_scroll_bar = Qnil;
5662 *timestamp = last_mouse_movement_time;
5664 unblock_input ();
5668 /* The screen has been cleared so we may have changed foreground or
5669 background colors, and the scroll bars may need to be redrawn.
5670 Clear out the scroll bars, and ask for expose events, so we can
5671 redraw them. */
5673 static void
5674 x_scroll_bar_clear (struct frame *f)
5676 #ifndef USE_TOOLKIT_SCROLL_BARS
5677 Lisp_Object bar;
5679 /* We can have scroll bars even if this is 0,
5680 if we just turned off scroll bar mode.
5681 But in that case we should not clear them. */
5682 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
5683 for (bar = FRAME_SCROLL_BARS (f); VECTORP (bar);
5684 bar = XSCROLL_BAR (bar)->next)
5685 XClearArea (FRAME_X_DISPLAY (f),
5686 XSCROLL_BAR (bar)->x_window,
5687 0, 0, 0, 0, True);
5688 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5692 /* The main X event-reading loop - XTread_socket. */
5694 /* This holds the state XLookupString needs to implement dead keys
5695 and other tricks known as "compose processing". _X Window System_
5696 says that a portable program can't use this, but Stephen Gildea assures
5697 me that letting the compiler initialize it to zeros will work okay.
5699 This must be defined outside of XTread_socket, for the same reasons
5700 given for enter_timestamp, above. */
5702 static XComposeStatus compose_status;
5704 /* Record the last 100 characters stored
5705 to help debug the loss-of-chars-during-GC problem. */
5707 static int temp_index;
5708 static short temp_buffer[100];
5710 #define STORE_KEYSYM_FOR_DEBUG(keysym) \
5711 if (temp_index == sizeof temp_buffer / sizeof (short)) \
5712 temp_index = 0; \
5713 temp_buffer[temp_index++] = (keysym)
5715 /* Set this to nonzero to fake an "X I/O error"
5716 on a particular display. */
5718 static struct x_display_info *XTread_socket_fake_io_error;
5720 /* When we find no input here, we occasionally do a no-op command
5721 to verify that the X server is still running and we can still talk with it.
5722 We try all the open displays, one by one.
5723 This variable is used for cycling thru the displays. */
5725 static struct x_display_info *next_noop_dpyinfo;
5727 #if defined USE_X_TOOLKIT || defined USE_GTK
5728 #define SET_SAVED_BUTTON_EVENT \
5729 do \
5731 if (f->output_data.x->saved_menu_event == 0) \
5732 f->output_data.x->saved_menu_event = \
5733 xmalloc (sizeof (XEvent)); \
5734 *f->output_data.x->saved_menu_event = event; \
5735 inev.ie.kind = MENU_BAR_ACTIVATE_EVENT; \
5736 XSETFRAME (inev.ie.frame_or_window, f); \
5738 while (0)
5739 #endif
5741 enum
5743 X_EVENT_NORMAL,
5744 X_EVENT_GOTO_OUT,
5745 X_EVENT_DROP
5748 /* Filter events for the current X input method.
5749 DPYINFO is the display this event is for.
5750 EVENT is the X event to filter.
5752 Returns non-zero if the event was filtered, caller shall not process
5753 this event further.
5754 Returns zero if event is wasn't filtered. */
5756 #ifdef HAVE_X_I18N
5757 static int
5758 x_filter_event (struct x_display_info *dpyinfo, XEvent *event)
5760 /* XFilterEvent returns non-zero if the input method has
5761 consumed the event. We pass the frame's X window to
5762 XFilterEvent because that's the one for which the IC
5763 was created. */
5765 struct frame *f1 = x_any_window_to_frame (dpyinfo,
5766 event->xclient.window);
5768 return XFilterEvent (event, f1 ? FRAME_X_WINDOW (f1) : None);
5770 #endif
5772 #ifdef USE_GTK
5773 static int current_count;
5774 static int current_finish;
5775 static struct input_event *current_hold_quit;
5777 /* This is the filter function invoked by the GTK event loop.
5778 It is invoked before the XEvent is translated to a GdkEvent,
5779 so we have a chance to act on the event before GTK. */
5780 static GdkFilterReturn
5781 event_handler_gdk (GdkXEvent *gxev, GdkEvent *ev, gpointer data)
5783 XEvent *xev = (XEvent *) gxev;
5785 block_input ();
5786 if (current_count >= 0)
5788 struct x_display_info *dpyinfo;
5790 dpyinfo = x_display_info_for_display (xev->xany.display);
5792 #ifdef HAVE_X_I18N
5793 /* Filter events for the current X input method.
5794 GTK calls XFilterEvent but not for key press and release,
5795 so we do it here. */
5796 if ((xev->type == KeyPress || xev->type == KeyRelease)
5797 && dpyinfo
5798 && x_filter_event (dpyinfo, xev))
5800 unblock_input ();
5801 return GDK_FILTER_REMOVE;
5803 #endif
5805 if (! dpyinfo)
5806 current_finish = X_EVENT_NORMAL;
5807 else
5808 current_count +=
5809 handle_one_xevent (dpyinfo, xev, &current_finish,
5810 current_hold_quit);
5812 else
5813 current_finish = x_dispatch_event (xev, xev->xany.display);
5815 unblock_input ();
5817 if (current_finish == X_EVENT_GOTO_OUT || current_finish == X_EVENT_DROP)
5818 return GDK_FILTER_REMOVE;
5820 return GDK_FILTER_CONTINUE;
5822 #endif /* USE_GTK */
5825 static void xembed_send_message (struct frame *f, Time,
5826 enum xembed_message,
5827 long detail, long data1, long data2);
5829 /* Handles the XEvent EVENT on display DPYINFO.
5831 *FINISH is X_EVENT_GOTO_OUT if caller should stop reading events.
5832 *FINISH is zero if caller should continue reading events.
5833 *FINISH is X_EVENT_DROP if event should not be passed to the toolkit.
5835 We return the number of characters stored into the buffer. */
5837 static int
5838 handle_one_xevent (struct x_display_info *dpyinfo, XEvent *eventptr,
5839 int *finish, struct input_event *hold_quit)
5841 union {
5842 struct input_event ie;
5843 struct selection_input_event sie;
5844 } inev;
5845 int count = 0;
5846 int do_help = 0;
5847 ptrdiff_t nbytes = 0;
5848 struct frame *f = NULL;
5849 struct coding_system coding;
5850 XEvent event = *eventptr;
5851 Mouse_HLInfo *hlinfo = &dpyinfo->mouse_highlight;
5852 USE_SAFE_ALLOCA;
5854 *finish = X_EVENT_NORMAL;
5856 EVENT_INIT (inev.ie);
5857 inev.ie.kind = NO_EVENT;
5858 inev.ie.arg = Qnil;
5860 if (pending_event_wait.eventtype == event.type)
5861 pending_event_wait.eventtype = 0; /* Indicates we got it. */
5863 switch (event.type)
5865 case ClientMessage:
5867 if (event.xclient.message_type
5868 == dpyinfo->Xatom_wm_protocols
5869 && event.xclient.format == 32)
5871 if (event.xclient.data.l[0]
5872 == dpyinfo->Xatom_wm_take_focus)
5874 /* Use x_any_window_to_frame because this
5875 could be the shell widget window
5876 if the frame has no title bar. */
5877 f = x_any_window_to_frame (dpyinfo, event.xclient.window);
5878 #ifdef HAVE_X_I18N
5879 /* Not quite sure this is needed -pd */
5880 if (f && FRAME_XIC (f))
5881 XSetICFocus (FRAME_XIC (f));
5882 #endif
5883 #if 0 /* Emacs sets WM hints whose `input' field is `true'. This
5884 instructs the WM to set the input focus automatically for
5885 Emacs with a call to XSetInputFocus. Setting WM_TAKE_FOCUS
5886 tells the WM to send us a ClientMessage WM_TAKE_FOCUS after
5887 it has set the focus. So, XSetInputFocus below is not
5888 needed.
5890 The call to XSetInputFocus below has also caused trouble. In
5891 cases where the XSetInputFocus done by the WM and the one
5892 below are temporally close (on a fast machine), the call
5893 below can generate additional FocusIn events which confuse
5894 Emacs. */
5896 /* Since we set WM_TAKE_FOCUS, we must call
5897 XSetInputFocus explicitly. But not if f is null,
5898 since that might be an event for a deleted frame. */
5899 if (f)
5901 Display *d = event.xclient.display;
5902 /* Catch and ignore errors, in case window has been
5903 iconified by a window manager such as GWM. */
5904 x_catch_errors (d);
5905 XSetInputFocus (d, event.xclient.window,
5906 /* The ICCCM says this is
5907 the only valid choice. */
5908 RevertToParent,
5909 event.xclient.data.l[1]);
5910 /* This is needed to detect the error
5911 if there is an error. */
5912 XSync (d, False);
5913 x_uncatch_errors ();
5915 /* Not certain about handling scroll bars here */
5916 #endif /* 0 */
5917 goto done;
5920 if (event.xclient.data.l[0]
5921 == dpyinfo->Xatom_wm_save_yourself)
5923 /* Save state modify the WM_COMMAND property to
5924 something which can reinstate us. This notifies
5925 the session manager, who's looking for such a
5926 PropertyNotify. Can restart processing when
5927 a keyboard or mouse event arrives. */
5928 /* If we have a session manager, don't set this.
5929 KDE will then start two Emacsen, one for the
5930 session manager and one for this. */
5931 #ifdef HAVE_X_SM
5932 if (! x_session_have_connection ())
5933 #endif
5935 f = x_top_window_to_frame (dpyinfo,
5936 event.xclient.window);
5937 /* This is just so we only give real data once
5938 for a single Emacs process. */
5939 if (f == SELECTED_FRAME ())
5940 XSetCommand (FRAME_X_DISPLAY (f),
5941 event.xclient.window,
5942 initial_argv, initial_argc);
5943 else if (f)
5944 XSetCommand (FRAME_X_DISPLAY (f),
5945 event.xclient.window,
5946 0, 0);
5948 goto done;
5951 if (event.xclient.data.l[0]
5952 == dpyinfo->Xatom_wm_delete_window)
5954 f = x_any_window_to_frame (dpyinfo,
5955 event.xclient.window);
5956 if (!f)
5957 goto OTHER; /* May be a dialog that is to be removed */
5959 inev.ie.kind = DELETE_WINDOW_EVENT;
5960 XSETFRAME (inev.ie.frame_or_window, f);
5961 goto done;
5964 goto done;
5967 if (event.xclient.message_type
5968 == dpyinfo->Xatom_wm_configure_denied)
5970 goto done;
5973 if (event.xclient.message_type
5974 == dpyinfo->Xatom_wm_window_moved)
5976 int new_x, new_y;
5977 f = x_window_to_frame (dpyinfo, event.xclient.window);
5979 new_x = event.xclient.data.s[0];
5980 new_y = event.xclient.data.s[1];
5982 if (f)
5984 f->left_pos = new_x;
5985 f->top_pos = new_y;
5987 goto done;
5990 #ifdef HACK_EDITRES
5991 if (event.xclient.message_type
5992 == dpyinfo->Xatom_editres)
5994 f = x_any_window_to_frame (dpyinfo, event.xclient.window);
5995 if (f)
5996 _XEditResCheckMessages (f->output_data.x->widget, NULL,
5997 &event, NULL);
5998 goto done;
6000 #endif /* HACK_EDITRES */
6002 if ((event.xclient.message_type
6003 == dpyinfo->Xatom_DONE)
6004 || (event.xclient.message_type
6005 == dpyinfo->Xatom_PAGE))
6007 /* Ghostview job completed. Kill it. We could
6008 reply with "Next" if we received "Page", but we
6009 currently never do because we are interested in
6010 images, only, which should have 1 page. */
6011 Pixmap pixmap = (Pixmap) event.xclient.data.l[1];
6012 f = x_window_to_frame (dpyinfo, event.xclient.window);
6013 if (!f)
6014 goto OTHER;
6015 x_kill_gs_process (pixmap, f);
6016 expose_frame (f, 0, 0, 0, 0);
6017 goto done;
6020 #ifdef USE_TOOLKIT_SCROLL_BARS
6021 /* Scroll bar callbacks send a ClientMessage from which
6022 we construct an input_event. */
6023 if (event.xclient.message_type
6024 == dpyinfo->Xatom_Scrollbar)
6026 x_scroll_bar_to_input_event (&event, &inev.ie);
6027 *finish = X_EVENT_GOTO_OUT;
6028 goto done;
6030 #endif /* USE_TOOLKIT_SCROLL_BARS */
6032 /* XEmbed messages from the embedder (if any). */
6033 if (event.xclient.message_type
6034 == dpyinfo->Xatom_XEMBED)
6036 enum xembed_message msg = event.xclient.data.l[1];
6037 if (msg == XEMBED_FOCUS_IN || msg == XEMBED_FOCUS_OUT)
6038 x_detect_focus_change (dpyinfo, &event, &inev.ie);
6040 *finish = X_EVENT_GOTO_OUT;
6041 goto done;
6044 xft_settings_event (dpyinfo, &event);
6046 f = x_any_window_to_frame (dpyinfo, event.xclient.window);
6047 if (!f)
6048 goto OTHER;
6049 if (x_handle_dnd_message (f, &event.xclient, dpyinfo, &inev.ie))
6050 *finish = X_EVENT_DROP;
6052 break;
6054 case SelectionNotify:
6055 last_user_time = event.xselection.time;
6056 #ifdef USE_X_TOOLKIT
6057 if (! x_window_to_frame (dpyinfo, event.xselection.requestor))
6058 goto OTHER;
6059 #endif /* not USE_X_TOOLKIT */
6060 x_handle_selection_notify (&event.xselection);
6061 break;
6063 case SelectionClear: /* Someone has grabbed ownership. */
6064 last_user_time = event.xselectionclear.time;
6065 #ifdef USE_X_TOOLKIT
6066 if (! x_window_to_frame (dpyinfo, event.xselectionclear.window))
6067 goto OTHER;
6068 #endif /* USE_X_TOOLKIT */
6070 XSelectionClearEvent *eventp = &(event.xselectionclear);
6072 inev.ie.kind = SELECTION_CLEAR_EVENT;
6073 SELECTION_EVENT_DISPLAY (&inev.sie) = eventp->display;
6074 SELECTION_EVENT_SELECTION (&inev.sie) = eventp->selection;
6075 SELECTION_EVENT_TIME (&inev.sie) = eventp->time;
6077 break;
6079 case SelectionRequest: /* Someone wants our selection. */
6080 last_user_time = event.xselectionrequest.time;
6081 #ifdef USE_X_TOOLKIT
6082 if (!x_window_to_frame (dpyinfo, event.xselectionrequest.owner))
6083 goto OTHER;
6084 #endif /* USE_X_TOOLKIT */
6086 XSelectionRequestEvent *eventp = &(event.xselectionrequest);
6088 inev.ie.kind = SELECTION_REQUEST_EVENT;
6089 SELECTION_EVENT_DISPLAY (&inev.sie) = eventp->display;
6090 SELECTION_EVENT_REQUESTOR (&inev.sie) = eventp->requestor;
6091 SELECTION_EVENT_SELECTION (&inev.sie) = eventp->selection;
6092 SELECTION_EVENT_TARGET (&inev.sie) = eventp->target;
6093 SELECTION_EVENT_PROPERTY (&inev.sie) = eventp->property;
6094 SELECTION_EVENT_TIME (&inev.sie) = eventp->time;
6096 break;
6098 case PropertyNotify:
6099 last_user_time = event.xproperty.time;
6100 f = x_top_window_to_frame (dpyinfo, event.xproperty.window);
6101 if (f && event.xproperty.atom == dpyinfo->Xatom_net_wm_state)
6102 if (x_handle_net_wm_state (f, &event.xproperty)
6103 && FRAME_ICONIFIED_P (f)
6104 && f->output_data.x->net_wm_state_hidden_seen)
6106 /* Gnome shell does not iconify us when C-z is pressed.
6107 It hides the frame. So if our state says we aren't
6108 hidden anymore, treat it as deiconified. */
6109 SET_FRAME_VISIBLE (f, 1);
6110 SET_FRAME_ICONIFIED (f, 0);
6111 f->output_data.x->has_been_visible = 1;
6112 f->output_data.x->net_wm_state_hidden_seen = 0;
6113 inev.ie.kind = DEICONIFY_EVENT;
6114 XSETFRAME (inev.ie.frame_or_window, f);
6117 x_handle_property_notify (&event.xproperty);
6118 xft_settings_event (dpyinfo, &event);
6119 goto OTHER;
6121 case ReparentNotify:
6122 f = x_top_window_to_frame (dpyinfo, event.xreparent.window);
6123 if (f)
6125 int x, y;
6126 f->output_data.x->parent_desc = event.xreparent.parent;
6127 x_real_positions (f, &x, &y);
6128 f->left_pos = x;
6129 f->top_pos = y;
6131 /* Perhaps reparented due to a WM restart. Reset this. */
6132 FRAME_X_DISPLAY_INFO (f)->wm_type = X_WMTYPE_UNKNOWN;
6133 FRAME_X_DISPLAY_INFO (f)->net_supported_window = 0;
6135 x_set_frame_alpha (f);
6137 goto OTHER;
6139 case Expose:
6140 f = x_window_to_frame (dpyinfo, event.xexpose.window);
6141 if (f)
6143 #ifdef USE_GTK
6144 /* This seems to be needed for GTK 2.6. */
6145 x_clear_area (event.xexpose.display,
6146 event.xexpose.window,
6147 event.xexpose.x, event.xexpose.y,
6148 event.xexpose.width, event.xexpose.height,
6149 FALSE);
6150 #endif
6151 if (!FRAME_VISIBLE_P (f))
6153 SET_FRAME_VISIBLE (f, 1);
6154 SET_FRAME_ICONIFIED (f, 0);
6155 f->output_data.x->has_been_visible = 1;
6156 SET_FRAME_GARBAGED (f);
6158 else
6159 expose_frame (f,
6160 event.xexpose.x, event.xexpose.y,
6161 event.xexpose.width, event.xexpose.height);
6163 else
6165 #ifndef USE_TOOLKIT_SCROLL_BARS
6166 struct scroll_bar *bar;
6167 #endif
6168 #if defined USE_LUCID
6169 /* Submenus of the Lucid menu bar aren't widgets
6170 themselves, so there's no way to dispatch events
6171 to them. Recognize this case separately. */
6173 Widget widget
6174 = x_window_to_menu_bar (event.xexpose.window);
6175 if (widget)
6176 xlwmenu_redisplay (widget);
6178 #endif /* USE_LUCID */
6180 #ifdef USE_TOOLKIT_SCROLL_BARS
6181 /* Dispatch event to the widget. */
6182 goto OTHER;
6183 #else /* not USE_TOOLKIT_SCROLL_BARS */
6184 bar = x_window_to_scroll_bar (event.xexpose.display,
6185 event.xexpose.window);
6187 if (bar)
6188 x_scroll_bar_expose (bar, &event);
6189 #ifdef USE_X_TOOLKIT
6190 else
6191 goto OTHER;
6192 #endif /* USE_X_TOOLKIT */
6193 #endif /* not USE_TOOLKIT_SCROLL_BARS */
6195 break;
6197 case GraphicsExpose: /* This occurs when an XCopyArea's
6198 source area was obscured or not
6199 available. */
6200 f = x_window_to_frame (dpyinfo, event.xgraphicsexpose.drawable);
6201 if (f)
6203 expose_frame (f,
6204 event.xgraphicsexpose.x, event.xgraphicsexpose.y,
6205 event.xgraphicsexpose.width,
6206 event.xgraphicsexpose.height);
6208 #ifdef USE_X_TOOLKIT
6209 else
6210 goto OTHER;
6211 #endif /* USE_X_TOOLKIT */
6212 break;
6214 case NoExpose: /* This occurs when an XCopyArea's
6215 source area was completely
6216 available. */
6217 break;
6219 case UnmapNotify:
6220 /* Redo the mouse-highlight after the tooltip has gone. */
6221 if (event.xmap.window == tip_window)
6223 tip_window = 0;
6224 redo_mouse_highlight ();
6227 f = x_top_window_to_frame (dpyinfo, event.xunmap.window);
6228 if (f) /* F may no longer exist if
6229 the frame was deleted. */
6231 bool visible = FRAME_VISIBLE_P (f);
6232 /* While a frame is unmapped, display generation is
6233 disabled; you don't want to spend time updating a
6234 display that won't ever be seen. */
6235 SET_FRAME_VISIBLE (f, 0);
6236 /* We can't distinguish, from the event, whether the window
6237 has become iconified or invisible. So assume, if it
6238 was previously visible, than now it is iconified.
6239 But x_make_frame_invisible clears both
6240 the visible flag and the iconified flag;
6241 and that way, we know the window is not iconified now. */
6242 if (visible || FRAME_ICONIFIED_P (f))
6244 SET_FRAME_ICONIFIED (f, 1);
6245 inev.ie.kind = ICONIFY_EVENT;
6246 XSETFRAME (inev.ie.frame_or_window, f);
6249 goto OTHER;
6251 case MapNotify:
6252 if (event.xmap.window == tip_window)
6253 /* The tooltip has been drawn already. Avoid
6254 the SET_FRAME_GARBAGED below. */
6255 goto OTHER;
6257 /* We use x_top_window_to_frame because map events can
6258 come for sub-windows and they don't mean that the
6259 frame is visible. */
6260 f = x_top_window_to_frame (dpyinfo, event.xmap.window);
6261 if (f)
6263 bool iconified = FRAME_ICONIFIED_P (f);
6264 /* wait_reading_process_output will notice this and update
6265 the frame's display structures.
6266 If we where iconified, we should not set garbaged,
6267 because that stops redrawing on Expose events. This looks
6268 bad if we are called from a recursive event loop
6269 (x_dispatch_event), for example when a dialog is up. */
6270 if (!iconified)
6271 SET_FRAME_GARBAGED (f);
6273 /* Check if fullscreen was specified before we where mapped the
6274 first time, i.e. from the command line. */
6275 if (!f->output_data.x->has_been_visible)
6276 x_check_fullscreen (f);
6278 SET_FRAME_VISIBLE (f, 1);
6279 SET_FRAME_ICONIFIED (f, 0);
6280 f->output_data.x->has_been_visible = 1;
6282 if (iconified)
6284 inev.ie.kind = DEICONIFY_EVENT;
6285 XSETFRAME (inev.ie.frame_or_window, f);
6287 else if (! NILP (Vframe_list) && ! NILP (XCDR (Vframe_list)))
6288 /* Force a redisplay sooner or later to update the
6289 frame titles in case this is the second frame. */
6290 record_asynch_buffer_change ();
6292 #ifdef USE_GTK
6293 xg_frame_resized (f, -1, -1);
6294 #endif
6296 goto OTHER;
6298 case KeyPress:
6300 last_user_time = event.xkey.time;
6301 ignore_next_mouse_click_timeout = 0;
6303 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
6304 /* Dispatch KeyPress events when in menu. */
6305 if (popup_activated ())
6306 goto OTHER;
6307 #endif
6309 f = x_any_window_to_frame (dpyinfo, event.xkey.window);
6311 /* If mouse-highlight is an integer, input clears out
6312 mouse highlighting. */
6313 if (!hlinfo->mouse_face_hidden && INTEGERP (Vmouse_highlight)
6314 && (f == 0
6315 || !EQ (f->tool_bar_window, hlinfo->mouse_face_window)))
6317 clear_mouse_face (hlinfo);
6318 hlinfo->mouse_face_hidden = 1;
6321 #if defined USE_MOTIF && defined USE_TOOLKIT_SCROLL_BARS
6322 if (f == 0)
6324 /* Scroll bars consume key events, but we want
6325 the keys to go to the scroll bar's frame. */
6326 Widget widget = XtWindowToWidget (dpyinfo->display,
6327 event.xkey.window);
6328 if (widget && XmIsScrollBar (widget))
6330 widget = XtParent (widget);
6331 f = x_any_window_to_frame (dpyinfo, XtWindow (widget));
6334 #endif /* USE_MOTIF and USE_TOOLKIT_SCROLL_BARS */
6336 if (f != 0)
6338 KeySym keysym, orig_keysym;
6339 /* al%imercury@uunet.uu.net says that making this 81
6340 instead of 80 fixed a bug whereby meta chars made
6341 his Emacs hang.
6343 It seems that some version of XmbLookupString has
6344 a bug of not returning XBufferOverflow in
6345 status_return even if the input is too long to
6346 fit in 81 bytes. So, we must prepare sufficient
6347 bytes for copy_buffer. 513 bytes (256 chars for
6348 two-byte character set) seems to be a fairly good
6349 approximation. -- 2000.8.10 handa@etl.go.jp */
6350 unsigned char copy_buffer[513];
6351 unsigned char *copy_bufptr = copy_buffer;
6352 int copy_bufsiz = sizeof (copy_buffer);
6353 int modifiers;
6354 Lisp_Object coding_system = Qlatin_1;
6355 Lisp_Object c;
6357 #ifdef USE_GTK
6358 /* Don't pass keys to GTK. A Tab will shift focus to the
6359 tool bar in GTK 2.4. Keys will still go to menus and
6360 dialogs because in that case popup_activated is TRUE
6361 (see above). */
6362 *finish = X_EVENT_DROP;
6363 #endif
6365 event.xkey.state
6366 |= x_emacs_to_x_modifiers (FRAME_X_DISPLAY_INFO (f),
6367 extra_keyboard_modifiers);
6368 modifiers = event.xkey.state;
6370 /* This will have to go some day... */
6372 /* make_lispy_event turns chars into control chars.
6373 Don't do it here because XLookupString is too eager. */
6374 event.xkey.state &= ~ControlMask;
6375 event.xkey.state &= ~(dpyinfo->meta_mod_mask
6376 | dpyinfo->super_mod_mask
6377 | dpyinfo->hyper_mod_mask
6378 | dpyinfo->alt_mod_mask);
6380 /* In case Meta is ComposeCharacter,
6381 clear its status. According to Markus Ehrnsperger
6382 Markus.Ehrnsperger@lehrstuhl-bross.physik.uni-muenchen.de
6383 this enables ComposeCharacter to work whether or
6384 not it is combined with Meta. */
6385 if (modifiers & dpyinfo->meta_mod_mask)
6386 memset (&compose_status, 0, sizeof (compose_status));
6388 #ifdef HAVE_X_I18N
6389 if (FRAME_XIC (f))
6391 Status status_return;
6393 coding_system = Vlocale_coding_system;
6394 nbytes = XmbLookupString (FRAME_XIC (f),
6395 &event.xkey, (char *) copy_bufptr,
6396 copy_bufsiz, &keysym,
6397 &status_return);
6398 if (status_return == XBufferOverflow)
6400 copy_bufsiz = nbytes + 1;
6401 copy_bufptr = alloca (copy_bufsiz);
6402 nbytes = XmbLookupString (FRAME_XIC (f),
6403 &event.xkey, (char *) copy_bufptr,
6404 copy_bufsiz, &keysym,
6405 &status_return);
6407 /* Xutf8LookupString is a new but already deprecated interface. -stef */
6408 if (status_return == XLookupNone)
6409 break;
6410 else if (status_return == XLookupChars)
6412 keysym = NoSymbol;
6413 modifiers = 0;
6415 else if (status_return != XLookupKeySym
6416 && status_return != XLookupBoth)
6417 emacs_abort ();
6419 else
6420 nbytes = XLookupString (&event.xkey, (char *) copy_bufptr,
6421 copy_bufsiz, &keysym,
6422 &compose_status);
6423 #else
6424 nbytes = XLookupString (&event.xkey, (char *) copy_bufptr,
6425 copy_bufsiz, &keysym,
6426 &compose_status);
6427 #endif
6429 /* If not using XIM/XIC, and a compose sequence is in progress,
6430 we break here. Otherwise, chars_matched is always 0. */
6431 if (compose_status.chars_matched > 0 && nbytes == 0)
6432 break;
6434 memset (&compose_status, 0, sizeof (compose_status));
6435 orig_keysym = keysym;
6437 /* Common for all keysym input events. */
6438 XSETFRAME (inev.ie.frame_or_window, f);
6439 inev.ie.modifiers
6440 = x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO (f), modifiers);
6441 inev.ie.timestamp = event.xkey.time;
6443 /* First deal with keysyms which have defined
6444 translations to characters. */
6445 if (keysym >= 32 && keysym < 128)
6446 /* Avoid explicitly decoding each ASCII character. */
6448 inev.ie.kind = ASCII_KEYSTROKE_EVENT;
6449 inev.ie.code = keysym;
6450 goto done_keysym;
6453 /* Keysyms directly mapped to Unicode characters. */
6454 if (keysym >= 0x01000000 && keysym <= 0x0110FFFF)
6456 if (keysym < 0x01000080)
6457 inev.ie.kind = ASCII_KEYSTROKE_EVENT;
6458 else
6459 inev.ie.kind = MULTIBYTE_CHAR_KEYSTROKE_EVENT;
6460 inev.ie.code = keysym & 0xFFFFFF;
6461 goto done_keysym;
6464 /* Now non-ASCII. */
6465 if (HASH_TABLE_P (Vx_keysym_table)
6466 && (c = Fgethash (make_number (keysym),
6467 Vx_keysym_table,
6468 Qnil),
6469 NATNUMP (c)))
6471 inev.ie.kind = (SINGLE_BYTE_CHAR_P (XFASTINT (c))
6472 ? ASCII_KEYSTROKE_EVENT
6473 : MULTIBYTE_CHAR_KEYSTROKE_EVENT);
6474 inev.ie.code = XFASTINT (c);
6475 goto done_keysym;
6478 /* Random non-modifier sorts of keysyms. */
6479 if (((keysym >= XK_BackSpace && keysym <= XK_Escape)
6480 || keysym == XK_Delete
6481 #ifdef XK_ISO_Left_Tab
6482 || (keysym >= XK_ISO_Left_Tab
6483 && keysym <= XK_ISO_Enter)
6484 #endif
6485 || IsCursorKey (keysym) /* 0xff50 <= x < 0xff60 */
6486 || IsMiscFunctionKey (keysym) /* 0xff60 <= x < VARIES */
6487 #ifdef HPUX
6488 /* This recognizes the "extended function
6489 keys". It seems there's no cleaner way.
6490 Test IsModifierKey to avoid handling
6491 mode_switch incorrectly. */
6492 || (XK_Select <= keysym && keysym < XK_KP_Space)
6493 #endif
6494 #ifdef XK_dead_circumflex
6495 || orig_keysym == XK_dead_circumflex
6496 #endif
6497 #ifdef XK_dead_grave
6498 || orig_keysym == XK_dead_grave
6499 #endif
6500 #ifdef XK_dead_tilde
6501 || orig_keysym == XK_dead_tilde
6502 #endif
6503 #ifdef XK_dead_diaeresis
6504 || orig_keysym == XK_dead_diaeresis
6505 #endif
6506 #ifdef XK_dead_macron
6507 || orig_keysym == XK_dead_macron
6508 #endif
6509 #ifdef XK_dead_degree
6510 || orig_keysym == XK_dead_degree
6511 #endif
6512 #ifdef XK_dead_acute
6513 || orig_keysym == XK_dead_acute
6514 #endif
6515 #ifdef XK_dead_cedilla
6516 || orig_keysym == XK_dead_cedilla
6517 #endif
6518 #ifdef XK_dead_breve
6519 || orig_keysym == XK_dead_breve
6520 #endif
6521 #ifdef XK_dead_ogonek
6522 || orig_keysym == XK_dead_ogonek
6523 #endif
6524 #ifdef XK_dead_caron
6525 || orig_keysym == XK_dead_caron
6526 #endif
6527 #ifdef XK_dead_doubleacute
6528 || orig_keysym == XK_dead_doubleacute
6529 #endif
6530 #ifdef XK_dead_abovedot
6531 || orig_keysym == XK_dead_abovedot
6532 #endif
6533 || IsKeypadKey (keysym) /* 0xff80 <= x < 0xffbe */
6534 || IsFunctionKey (keysym) /* 0xffbe <= x < 0xffe1 */
6535 /* Any "vendor-specific" key is ok. */
6536 || (orig_keysym & (1 << 28))
6537 || (keysym != NoSymbol && nbytes == 0))
6538 && ! (IsModifierKey (orig_keysym)
6539 /* The symbols from XK_ISO_Lock
6540 to XK_ISO_Last_Group_Lock
6541 don't have real modifiers but
6542 should be treated similarly to
6543 Mode_switch by Emacs. */
6544 #if defined XK_ISO_Lock && defined XK_ISO_Last_Group_Lock
6545 || (XK_ISO_Lock <= orig_keysym
6546 && orig_keysym <= XK_ISO_Last_Group_Lock)
6547 #endif
6550 STORE_KEYSYM_FOR_DEBUG (keysym);
6551 /* make_lispy_event will convert this to a symbolic
6552 key. */
6553 inev.ie.kind = NON_ASCII_KEYSTROKE_EVENT;
6554 inev.ie.code = keysym;
6555 goto done_keysym;
6558 { /* Raw bytes, not keysym. */
6559 ptrdiff_t i;
6560 int nchars, len;
6562 for (i = 0, nchars = 0; i < nbytes; i++)
6564 if (ASCII_BYTE_P (copy_bufptr[i]))
6565 nchars++;
6566 STORE_KEYSYM_FOR_DEBUG (copy_bufptr[i]);
6569 if (nchars < nbytes)
6571 /* Decode the input data. */
6573 /* The input should be decoded with `coding_system'
6574 which depends on which X*LookupString function
6575 we used just above and the locale. */
6576 setup_coding_system (coding_system, &coding);
6577 coding.src_multibyte = 0;
6578 coding.dst_multibyte = 1;
6579 /* The input is converted to events, thus we can't
6580 handle composition. Anyway, there's no XIM that
6581 gives us composition information. */
6582 coding.common_flags &= ~CODING_ANNOTATION_MASK;
6584 SAFE_NALLOCA (coding.destination, MAX_MULTIBYTE_LENGTH,
6585 nbytes);
6586 coding.dst_bytes = MAX_MULTIBYTE_LENGTH * nbytes;
6587 coding.mode |= CODING_MODE_LAST_BLOCK;
6588 decode_coding_c_string (&coding, copy_bufptr, nbytes, Qnil);
6589 nbytes = coding.produced;
6590 nchars = coding.produced_char;
6591 copy_bufptr = coding.destination;
6594 /* Convert the input data to a sequence of
6595 character events. */
6596 for (i = 0; i < nbytes; i += len)
6598 int ch;
6599 if (nchars == nbytes)
6600 ch = copy_bufptr[i], len = 1;
6601 else
6602 ch = STRING_CHAR_AND_LENGTH (copy_bufptr + i, len);
6603 inev.ie.kind = (SINGLE_BYTE_CHAR_P (ch)
6604 ? ASCII_KEYSTROKE_EVENT
6605 : MULTIBYTE_CHAR_KEYSTROKE_EVENT);
6606 inev.ie.code = ch;
6607 kbd_buffer_store_event_hold (&inev.ie, hold_quit);
6610 count += nchars;
6612 inev.ie.kind = NO_EVENT; /* Already stored above. */
6614 if (keysym == NoSymbol)
6615 break;
6618 done_keysym:
6619 #ifdef HAVE_X_I18N
6620 /* Don't dispatch this event since XtDispatchEvent calls
6621 XFilterEvent, and two calls in a row may freeze the
6622 client. */
6623 break;
6624 #else
6625 goto OTHER;
6626 #endif
6628 case KeyRelease:
6629 last_user_time = event.xkey.time;
6630 #ifdef HAVE_X_I18N
6631 /* Don't dispatch this event since XtDispatchEvent calls
6632 XFilterEvent, and two calls in a row may freeze the
6633 client. */
6634 break;
6635 #else
6636 goto OTHER;
6637 #endif
6639 case EnterNotify:
6640 last_user_time = event.xcrossing.time;
6641 x_detect_focus_change (dpyinfo, &event, &inev.ie);
6643 f = x_any_window_to_frame (dpyinfo, event.xcrossing.window);
6645 if (f && x_mouse_click_focus_ignore_position)
6646 ignore_next_mouse_click_timeout = event.xmotion.time + 200;
6648 /* EnterNotify counts as mouse movement,
6649 so update things that depend on mouse position. */
6650 if (f && !f->output_data.x->hourglass_p)
6651 note_mouse_movement (f, &event.xmotion);
6652 #ifdef USE_GTK
6653 /* We may get an EnterNotify on the buttons in the toolbar. In that
6654 case we moved out of any highlighted area and need to note this. */
6655 if (!f && last_mouse_glyph_frame)
6656 note_mouse_movement (last_mouse_glyph_frame, &event.xmotion);
6657 #endif
6658 goto OTHER;
6660 case FocusIn:
6661 x_detect_focus_change (dpyinfo, &event, &inev.ie);
6662 goto OTHER;
6664 case LeaveNotify:
6665 last_user_time = event.xcrossing.time;
6666 x_detect_focus_change (dpyinfo, &event, &inev.ie);
6668 f = x_top_window_to_frame (dpyinfo, event.xcrossing.window);
6669 if (f)
6671 if (f == hlinfo->mouse_face_mouse_frame)
6673 /* If we move outside the frame, then we're
6674 certainly no longer on any text in the frame. */
6675 clear_mouse_face (hlinfo);
6676 hlinfo->mouse_face_mouse_frame = 0;
6679 /* Generate a nil HELP_EVENT to cancel a help-echo.
6680 Do it only if there's something to cancel.
6681 Otherwise, the startup message is cleared when
6682 the mouse leaves the frame. */
6683 if (any_help_event_p)
6684 do_help = -1;
6686 #ifdef USE_GTK
6687 /* See comment in EnterNotify above */
6688 else if (last_mouse_glyph_frame)
6689 note_mouse_movement (last_mouse_glyph_frame, &event.xmotion);
6690 #endif
6691 goto OTHER;
6693 case FocusOut:
6694 x_detect_focus_change (dpyinfo, &event, &inev.ie);
6695 goto OTHER;
6697 case MotionNotify:
6699 last_user_time = event.xmotion.time;
6700 previous_help_echo_string = help_echo_string;
6701 help_echo_string = Qnil;
6703 if (dpyinfo->grabbed && last_mouse_frame
6704 && FRAME_LIVE_P (last_mouse_frame))
6705 f = last_mouse_frame;
6706 else
6707 f = x_window_to_frame (dpyinfo, event.xmotion.window);
6709 if (hlinfo->mouse_face_hidden)
6711 hlinfo->mouse_face_hidden = 0;
6712 clear_mouse_face (hlinfo);
6715 #ifdef USE_GTK
6716 if (f && xg_event_is_for_scrollbar (f, &event))
6717 f = 0;
6718 #endif
6719 if (f)
6722 /* Generate SELECT_WINDOW_EVENTs when needed.
6723 Don't let popup menus influence things (bug#1261). */
6724 if (!NILP (Vmouse_autoselect_window) && !popup_activated ())
6726 Lisp_Object window;
6728 window = window_from_coordinates (f,
6729 event.xmotion.x, event.xmotion.y,
6730 0, 0);
6732 /* Window will be selected only when it is not selected now and
6733 last mouse movement event was not in it. Minibuffer window
6734 will be selected only when it is active. */
6735 if (WINDOWP (window)
6736 && !EQ (window, last_window)
6737 && !EQ (window, selected_window)
6738 /* For click-to-focus window managers
6739 create event iff we don't leave the
6740 selected frame. */
6741 && (focus_follows_mouse
6742 || (EQ (XWINDOW (window)->frame,
6743 XWINDOW (selected_window)->frame))))
6745 inev.ie.kind = SELECT_WINDOW_EVENT;
6746 inev.ie.frame_or_window = window;
6749 last_window=window;
6751 if (!note_mouse_movement (f, &event.xmotion))
6752 help_echo_string = previous_help_echo_string;
6754 else
6756 #ifndef USE_TOOLKIT_SCROLL_BARS
6757 struct scroll_bar *bar
6758 = x_window_to_scroll_bar (event.xmotion.display,
6759 event.xmotion.window);
6761 if (bar)
6762 x_scroll_bar_note_movement (bar, &event);
6763 #endif /* USE_TOOLKIT_SCROLL_BARS */
6765 /* If we move outside the frame, then we're
6766 certainly no longer on any text in the frame. */
6767 clear_mouse_face (hlinfo);
6770 /* If the contents of the global variable help_echo_string
6771 has changed, generate a HELP_EVENT. */
6772 if (!NILP (help_echo_string)
6773 || !NILP (previous_help_echo_string))
6774 do_help = 1;
6775 goto OTHER;
6778 case ConfigureNotify:
6779 f = x_top_window_to_frame (dpyinfo, event.xconfigure.window);
6780 #ifdef USE_GTK
6781 if (!f
6782 && (f = x_any_window_to_frame (dpyinfo, event.xconfigure.window))
6783 && event.xconfigure.window == FRAME_X_WINDOW (f))
6785 xg_frame_resized (f, event.xconfigure.width,
6786 event.xconfigure.height);
6787 f = 0;
6789 #endif
6790 if (f)
6792 #ifndef USE_X_TOOLKIT
6793 #ifndef USE_GTK
6794 int rows = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, event.xconfigure.height);
6795 int columns = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, event.xconfigure.width);
6797 /* In the toolkit version, change_frame_size
6798 is called by the code that handles resizing
6799 of the EmacsFrame widget. */
6801 /* Even if the number of character rows and columns has
6802 not changed, the font size may have changed, so we need
6803 to check the pixel dimensions as well. */
6804 if (columns != FRAME_COLS (f)
6805 || rows != FRAME_LINES (f)
6806 || event.xconfigure.width != FRAME_PIXEL_WIDTH (f)
6807 || event.xconfigure.height != FRAME_PIXEL_HEIGHT (f))
6809 change_frame_size (f, rows, columns, 0, 1, 0);
6810 SET_FRAME_GARBAGED (f);
6811 cancel_mouse_face (f);
6814 FRAME_PIXEL_WIDTH (f) = event.xconfigure.width;
6815 FRAME_PIXEL_HEIGHT (f) = event.xconfigure.height;
6816 #endif /* not USE_GTK */
6817 #endif
6819 #ifdef USE_GTK
6820 /* GTK creates windows but doesn't map them.
6821 Only get real positions when mapped. */
6822 if (FRAME_GTK_OUTER_WIDGET (f)
6823 && gtk_widget_get_mapped (FRAME_GTK_OUTER_WIDGET (f)))
6824 #endif
6826 x_real_positions (f, &f->left_pos, &f->top_pos);
6829 #ifdef HAVE_X_I18N
6830 if (FRAME_XIC (f) && (FRAME_XIC_STYLE (f) & XIMStatusArea))
6831 xic_set_statusarea (f);
6832 #endif
6835 goto OTHER;
6837 case ButtonRelease:
6838 case ButtonPress:
6840 /* If we decide we want to generate an event to be seen
6841 by the rest of Emacs, we put it here. */
6842 bool tool_bar_p = 0;
6844 memset (&compose_status, 0, sizeof (compose_status));
6845 last_mouse_glyph_frame = 0;
6846 last_user_time = event.xbutton.time;
6848 if (dpyinfo->grabbed
6849 && last_mouse_frame
6850 && FRAME_LIVE_P (last_mouse_frame))
6851 f = last_mouse_frame;
6852 else
6853 f = x_window_to_frame (dpyinfo, event.xbutton.window);
6855 #ifdef USE_GTK
6856 if (f && xg_event_is_for_scrollbar (f, &event))
6857 f = 0;
6858 #endif
6859 if (f)
6861 /* Is this in the tool-bar? */
6862 if (WINDOWP (f->tool_bar_window)
6863 && WINDOW_TOTAL_LINES (XWINDOW (f->tool_bar_window)))
6865 Lisp_Object window;
6866 int x = event.xbutton.x;
6867 int y = event.xbutton.y;
6869 window = window_from_coordinates (f, x, y, 0, 1);
6870 tool_bar_p = EQ (window, f->tool_bar_window);
6872 if (tool_bar_p && event.xbutton.button < 4)
6874 handle_tool_bar_click (f, x, y,
6875 event.xbutton.type == ButtonPress,
6876 x_x_to_emacs_modifiers (dpyinfo,
6877 event.xbutton.state));
6881 if (!tool_bar_p)
6882 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
6883 if (! popup_activated ())
6884 #endif
6886 if (ignore_next_mouse_click_timeout)
6888 if (event.type == ButtonPress
6889 && (int)(event.xbutton.time - ignore_next_mouse_click_timeout) > 0)
6891 ignore_next_mouse_click_timeout = 0;
6892 construct_mouse_click (&inev.ie, &event.xbutton, f);
6894 if (event.type == ButtonRelease)
6895 ignore_next_mouse_click_timeout = 0;
6897 else
6898 construct_mouse_click (&inev.ie, &event.xbutton, f);
6900 if (FRAME_X_EMBEDDED_P (f))
6901 xembed_send_message (f, event.xbutton.time,
6902 XEMBED_REQUEST_FOCUS, 0, 0, 0);
6904 else
6906 struct scroll_bar *bar
6907 = x_window_to_scroll_bar (event.xbutton.display,
6908 event.xbutton.window);
6910 #ifdef USE_TOOLKIT_SCROLL_BARS
6911 /* Make the "Ctrl-Mouse-2 splits window" work for toolkit
6912 scroll bars. */
6913 if (bar && event.xbutton.state & ControlMask)
6915 x_scroll_bar_handle_click (bar, &event, &inev.ie);
6916 *finish = X_EVENT_DROP;
6918 #else /* not USE_TOOLKIT_SCROLL_BARS */
6919 if (bar)
6920 x_scroll_bar_handle_click (bar, &event, &inev.ie);
6921 #endif /* not USE_TOOLKIT_SCROLL_BARS */
6924 if (event.type == ButtonPress)
6926 dpyinfo->grabbed |= (1 << event.xbutton.button);
6927 last_mouse_frame = f;
6929 if (!tool_bar_p)
6930 last_tool_bar_item = -1;
6932 else
6933 dpyinfo->grabbed &= ~(1 << event.xbutton.button);
6935 /* Ignore any mouse motion that happened before this event;
6936 any subsequent mouse-movement Emacs events should reflect
6937 only motion after the ButtonPress/Release. */
6938 if (f != 0)
6939 f->mouse_moved = 0;
6941 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
6942 f = x_menubar_window_to_frame (dpyinfo, &event);
6943 /* For a down-event in the menu bar,
6944 don't pass it to Xt right now.
6945 Instead, save it away
6946 and we will pass it to Xt from kbd_buffer_get_event.
6947 That way, we can run some Lisp code first. */
6948 if (! popup_activated ()
6949 #ifdef USE_GTK
6950 /* Gtk+ menus only react to the first three buttons. */
6951 && event.xbutton.button < 3
6952 #endif
6953 && f && event.type == ButtonPress
6954 /* Verify the event is really within the menu bar
6955 and not just sent to it due to grabbing. */
6956 && event.xbutton.x >= 0
6957 && event.xbutton.x < FRAME_PIXEL_WIDTH (f)
6958 && event.xbutton.y >= 0
6959 && event.xbutton.y < f->output_data.x->menubar_height
6960 && event.xbutton.same_screen)
6962 SET_SAVED_BUTTON_EVENT;
6963 *finish = X_EVENT_DROP;
6965 else
6966 goto OTHER;
6967 #endif /* USE_X_TOOLKIT || USE_GTK */
6969 break;
6971 case CirculateNotify:
6972 goto OTHER;
6974 case CirculateRequest:
6975 goto OTHER;
6977 case VisibilityNotify:
6978 goto OTHER;
6980 case MappingNotify:
6981 /* Someone has changed the keyboard mapping - update the
6982 local cache. */
6983 switch (event.xmapping.request)
6985 case MappingModifier:
6986 x_find_modifier_meanings (dpyinfo);
6987 /* This is meant to fall through. */
6988 case MappingKeyboard:
6989 XRefreshKeyboardMapping (&event.xmapping);
6991 goto OTHER;
6993 case DestroyNotify:
6994 xft_settings_event (dpyinfo, &event);
6995 break;
6997 default:
6998 OTHER:
6999 #ifdef USE_X_TOOLKIT
7000 block_input ();
7001 if (*finish != X_EVENT_DROP)
7002 XtDispatchEvent (&event);
7003 unblock_input ();
7004 #endif /* USE_X_TOOLKIT */
7005 break;
7008 done:
7009 if (inev.ie.kind != NO_EVENT)
7011 kbd_buffer_store_event_hold (&inev.ie, hold_quit);
7012 count++;
7015 if (do_help
7016 && !(hold_quit && hold_quit->kind != NO_EVENT))
7018 Lisp_Object frame;
7020 if (f)
7021 XSETFRAME (frame, f);
7022 else
7023 frame = Qnil;
7025 if (do_help > 0)
7027 any_help_event_p = 1;
7028 gen_help_event (help_echo_string, frame, help_echo_window,
7029 help_echo_object, help_echo_pos);
7031 else
7033 help_echo_string = Qnil;
7034 gen_help_event (Qnil, frame, Qnil, Qnil, 0);
7036 count++;
7039 SAFE_FREE ();
7040 *eventptr = event;
7041 return count;
7044 #if defined USE_GTK || defined USE_X_TOOLKIT
7046 /* Handles the XEvent EVENT on display DISPLAY.
7047 This is used for event loops outside the normal event handling,
7048 i.e. looping while a popup menu or a dialog is posted.
7050 Returns the value handle_one_xevent sets in the finish argument. */
7052 x_dispatch_event (XEvent *event, Display *display)
7054 struct x_display_info *dpyinfo;
7055 int finish = X_EVENT_NORMAL;
7057 dpyinfo = x_display_info_for_display (display);
7059 if (dpyinfo)
7060 handle_one_xevent (dpyinfo, event, &finish, 0);
7062 return finish;
7064 #endif
7067 /* Read events coming from the X server.
7068 Return as soon as there are no more events to be read.
7070 Return the number of characters stored into the buffer,
7071 thus pretending to be `read' (except the characters we store
7072 in the keyboard buffer can be multibyte, so are not necessarily
7073 C chars). */
7075 static int
7076 XTread_socket (struct terminal *terminal, struct input_event *hold_quit)
7078 int count = 0;
7079 int event_found = 0;
7081 block_input ();
7083 /* So people can tell when we have read the available input. */
7084 input_signal_count++;
7086 /* For debugging, this gives a way to fake an I/O error. */
7087 if (terminal->display_info.x == XTread_socket_fake_io_error)
7089 XTread_socket_fake_io_error = 0;
7090 x_io_error_quitter (terminal->display_info.x->display);
7093 #ifndef USE_GTK
7094 while (XPending (terminal->display_info.x->display))
7096 int finish;
7097 XEvent event;
7099 XNextEvent (terminal->display_info.x->display, &event);
7101 #ifdef HAVE_X_I18N
7102 /* Filter events for the current X input method. */
7103 if (x_filter_event (terminal->display_info.x, &event))
7104 continue;
7105 #endif
7106 event_found = 1;
7108 count += handle_one_xevent (terminal->display_info.x,
7109 &event, &finish, hold_quit);
7111 if (finish == X_EVENT_GOTO_OUT)
7112 goto out;
7115 out:;
7117 #else /* USE_GTK */
7119 /* For GTK we must use the GTK event loop. But XEvents gets passed
7120 to our filter function above, and then to the big event switch.
7121 We use a bunch of globals to communicate with our filter function,
7122 that is kind of ugly, but it works.
7124 There is no way to do one display at the time, GTK just does events
7125 from all displays. */
7127 while (gtk_events_pending ())
7129 current_count = count;
7130 current_hold_quit = hold_quit;
7132 gtk_main_iteration ();
7134 count = current_count;
7135 current_count = -1;
7136 current_hold_quit = 0;
7138 if (current_finish == X_EVENT_GOTO_OUT)
7139 break;
7141 #endif /* USE_GTK */
7143 /* On some systems, an X bug causes Emacs to get no more events
7144 when the window is destroyed. Detect that. (1994.) */
7145 if (! event_found)
7147 /* Emacs and the X Server eats up CPU time if XNoOp is done every time.
7148 One XNOOP in 100 loops will make Emacs terminate.
7149 B. Bretthauer, 1994 */
7150 x_noop_count++;
7151 if (x_noop_count >= 100)
7153 x_noop_count=0;
7155 if (next_noop_dpyinfo == 0)
7156 next_noop_dpyinfo = x_display_list;
7158 XNoOp (next_noop_dpyinfo->display);
7160 /* Each time we get here, cycle through the displays now open. */
7161 next_noop_dpyinfo = next_noop_dpyinfo->next;
7165 /* If the focus was just given to an auto-raising frame,
7166 raise it now. */
7167 /* ??? This ought to be able to handle more than one such frame. */
7168 if (pending_autoraise_frame)
7170 x_raise_frame (pending_autoraise_frame);
7171 pending_autoraise_frame = 0;
7174 unblock_input ();
7176 return count;
7182 /***********************************************************************
7183 Text Cursor
7184 ***********************************************************************/
7186 /* Set clipping for output in glyph row ROW. W is the window in which
7187 we operate. GC is the graphics context to set clipping in.
7189 ROW may be a text row or, e.g., a mode line. Text rows must be
7190 clipped to the interior of the window dedicated to text display,
7191 mode lines must be clipped to the whole window. */
7193 static void
7194 x_clip_to_row (struct window *w, struct glyph_row *row, int area, GC gc)
7196 struct frame *f = XFRAME (WINDOW_FRAME (w));
7197 XRectangle clip_rect;
7198 int window_x, window_y, window_width;
7200 window_box (w, area, &window_x, &window_y, &window_width, 0);
7202 clip_rect.x = window_x;
7203 clip_rect.y = WINDOW_TO_FRAME_PIXEL_Y (w, max (0, row->y));
7204 clip_rect.y = max (clip_rect.y, window_y);
7205 clip_rect.width = window_width;
7206 clip_rect.height = row->visible_height;
7208 XSetClipRectangles (FRAME_X_DISPLAY (f), gc, 0, 0, &clip_rect, 1, Unsorted);
7212 /* Draw a hollow box cursor on window W in glyph row ROW. */
7214 static void
7215 x_draw_hollow_cursor (struct window *w, struct glyph_row *row)
7217 struct frame *f = XFRAME (WINDOW_FRAME (w));
7218 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
7219 Display *dpy = FRAME_X_DISPLAY (f);
7220 int x, y, wd, h;
7221 XGCValues xgcv;
7222 struct glyph *cursor_glyph;
7223 GC gc;
7225 /* Get the glyph the cursor is on. If we can't tell because
7226 the current matrix is invalid or such, give up. */
7227 cursor_glyph = get_phys_cursor_glyph (w);
7228 if (cursor_glyph == NULL)
7229 return;
7231 /* Compute frame-relative coordinates for phys cursor. */
7232 get_phys_cursor_geometry (w, row, cursor_glyph, &x, &y, &h);
7233 wd = w->phys_cursor_width;
7235 /* The foreground of cursor_gc is typically the same as the normal
7236 background color, which can cause the cursor box to be invisible. */
7237 xgcv.foreground = f->output_data.x->cursor_pixel;
7238 if (dpyinfo->scratch_cursor_gc)
7239 XChangeGC (dpy, dpyinfo->scratch_cursor_gc, GCForeground, &xgcv);
7240 else
7241 dpyinfo->scratch_cursor_gc = XCreateGC (dpy, FRAME_X_WINDOW (f),
7242 GCForeground, &xgcv);
7243 gc = dpyinfo->scratch_cursor_gc;
7245 /* Set clipping, draw the rectangle, and reset clipping again. */
7246 x_clip_to_row (w, row, TEXT_AREA, gc);
7247 XDrawRectangle (dpy, FRAME_X_WINDOW (f), gc, x, y, wd, h - 1);
7248 XSetClipMask (dpy, gc, None);
7252 /* Draw a bar cursor on window W in glyph row ROW.
7254 Implementation note: One would like to draw a bar cursor with an
7255 angle equal to the one given by the font property XA_ITALIC_ANGLE.
7256 Unfortunately, I didn't find a font yet that has this property set.
7257 --gerd. */
7259 static void
7260 x_draw_bar_cursor (struct window *w, struct glyph_row *row, int width, enum text_cursor_kinds kind)
7262 struct frame *f = XFRAME (w->frame);
7263 struct glyph *cursor_glyph;
7265 /* If cursor is out of bounds, don't draw garbage. This can happen
7266 in mini-buffer windows when switching between echo area glyphs
7267 and mini-buffer. */
7268 cursor_glyph = get_phys_cursor_glyph (w);
7269 if (cursor_glyph == NULL)
7270 return;
7272 /* If on an image, draw like a normal cursor. That's usually better
7273 visible than drawing a bar, esp. if the image is large so that
7274 the bar might not be in the window. */
7275 if (cursor_glyph->type == IMAGE_GLYPH)
7277 struct glyph_row *r;
7278 r = MATRIX_ROW (w->current_matrix, w->phys_cursor.vpos);
7279 draw_phys_cursor_glyph (w, r, DRAW_CURSOR);
7281 else
7283 Display *dpy = FRAME_X_DISPLAY (f);
7284 Window window = FRAME_X_WINDOW (f);
7285 GC gc = FRAME_X_DISPLAY_INFO (f)->scratch_cursor_gc;
7286 unsigned long mask = GCForeground | GCBackground | GCGraphicsExposures;
7287 struct face *face = FACE_FROM_ID (f, cursor_glyph->face_id);
7288 XGCValues xgcv;
7290 /* If the glyph's background equals the color we normally draw
7291 the bars cursor in, the bar cursor in its normal color is
7292 invisible. Use the glyph's foreground color instead in this
7293 case, on the assumption that the glyph's colors are chosen so
7294 that the glyph is legible. */
7295 if (face->background == f->output_data.x->cursor_pixel)
7296 xgcv.background = xgcv.foreground = face->foreground;
7297 else
7298 xgcv.background = xgcv.foreground = f->output_data.x->cursor_pixel;
7299 xgcv.graphics_exposures = 0;
7301 if (gc)
7302 XChangeGC (dpy, gc, mask, &xgcv);
7303 else
7305 gc = XCreateGC (dpy, window, mask, &xgcv);
7306 FRAME_X_DISPLAY_INFO (f)->scratch_cursor_gc = gc;
7309 x_clip_to_row (w, row, TEXT_AREA, gc);
7311 if (kind == BAR_CURSOR)
7313 int x = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x);
7315 if (width < 0)
7316 width = FRAME_CURSOR_WIDTH (f);
7317 width = min (cursor_glyph->pixel_width, width);
7319 w->phys_cursor_width = width;
7321 /* If the character under cursor is R2L, draw the bar cursor
7322 on the right of its glyph, rather than on the left. */
7323 if ((cursor_glyph->resolved_level & 1) != 0)
7324 x += cursor_glyph->pixel_width - width;
7326 XFillRectangle (dpy, window, gc, x,
7327 WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y),
7328 width, row->height);
7330 else
7332 int dummy_x, dummy_y, dummy_h;
7334 if (width < 0)
7335 width = row->height;
7337 width = min (row->height, width);
7339 get_phys_cursor_geometry (w, row, cursor_glyph, &dummy_x,
7340 &dummy_y, &dummy_h);
7342 XFillRectangle (dpy, window, gc,
7343 WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x),
7344 WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y +
7345 row->height - width),
7346 w->phys_cursor_width, width);
7349 XSetClipMask (dpy, gc, None);
7354 /* RIF: Define cursor CURSOR on frame F. */
7356 static void
7357 x_define_frame_cursor (struct frame *f, Cursor cursor)
7359 if (!f->pointer_invisible
7360 && f->output_data.x->current_cursor != cursor)
7361 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), cursor);
7362 f->output_data.x->current_cursor = cursor;
7366 /* RIF: Clear area on frame F. */
7368 static void
7369 x_clear_frame_area (struct frame *f, int x, int y, int width, int height)
7371 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
7372 x, y, width, height, False);
7373 #ifdef USE_GTK
7374 /* Must queue a redraw, because scroll bars might have been cleared. */
7375 if (FRAME_GTK_WIDGET (f))
7376 gtk_widget_queue_draw (FRAME_GTK_WIDGET (f));
7377 #endif
7381 /* RIF: Draw cursor on window W. */
7383 static void
7384 x_draw_window_cursor (struct window *w, struct glyph_row *glyph_row, int x, int y, int cursor_type, int cursor_width, int on_p, int active_p)
7386 struct frame *f = XFRAME (WINDOW_FRAME (w));
7388 if (on_p)
7390 w->phys_cursor_type = cursor_type;
7391 w->phys_cursor_on_p = 1;
7393 if (glyph_row->exact_window_width_line_p
7394 && (glyph_row->reversed_p
7395 ? (w->phys_cursor.hpos < 0)
7396 : (w->phys_cursor.hpos >= glyph_row->used[TEXT_AREA])))
7398 glyph_row->cursor_in_fringe_p = 1;
7399 draw_fringe_bitmap (w, glyph_row, glyph_row->reversed_p);
7401 else
7403 switch (cursor_type)
7405 case HOLLOW_BOX_CURSOR:
7406 x_draw_hollow_cursor (w, glyph_row);
7407 break;
7409 case FILLED_BOX_CURSOR:
7410 draw_phys_cursor_glyph (w, glyph_row, DRAW_CURSOR);
7411 break;
7413 case BAR_CURSOR:
7414 x_draw_bar_cursor (w, glyph_row, cursor_width, BAR_CURSOR);
7415 break;
7417 case HBAR_CURSOR:
7418 x_draw_bar_cursor (w, glyph_row, cursor_width, HBAR_CURSOR);
7419 break;
7421 case NO_CURSOR:
7422 w->phys_cursor_width = 0;
7423 break;
7425 default:
7426 emacs_abort ();
7430 #ifdef HAVE_X_I18N
7431 if (w == XWINDOW (f->selected_window))
7432 if (FRAME_XIC (f) && (FRAME_XIC_STYLE (f) & XIMPreeditPosition))
7433 xic_set_preeditarea (w, x, y);
7434 #endif
7437 #ifndef XFlush
7438 XFlush (FRAME_X_DISPLAY (f));
7439 #endif
7443 /* Icons. */
7445 /* Make the x-window of frame F use the gnu icon bitmap. */
7448 x_bitmap_icon (struct frame *f, Lisp_Object file)
7450 ptrdiff_t bitmap_id;
7452 if (FRAME_X_WINDOW (f) == 0)
7453 return 1;
7455 /* Free up our existing icon bitmap and mask if any. */
7456 if (f->output_data.x->icon_bitmap > 0)
7457 x_destroy_bitmap (f, f->output_data.x->icon_bitmap);
7458 f->output_data.x->icon_bitmap = 0;
7460 if (STRINGP (file))
7462 #ifdef USE_GTK
7463 /* Use gtk_window_set_icon_from_file () if available,
7464 It's not restricted to bitmaps */
7465 if (xg_set_icon (f, file))
7466 return 0;
7467 #endif /* USE_GTK */
7468 bitmap_id = x_create_bitmap_from_file (f, file);
7469 x_create_bitmap_mask (f, bitmap_id);
7471 else
7473 /* Create the GNU bitmap and mask if necessary. */
7474 if (FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id < 0)
7476 ptrdiff_t rc = -1;
7478 #ifdef USE_GTK
7480 if (xg_set_icon (f, xg_default_icon_file)
7481 || xg_set_icon_from_xpm_data (f, gnu_xpm_bits))
7482 return 0;
7484 #elif defined (HAVE_XPM) && defined (HAVE_X_WINDOWS)
7486 rc = x_create_bitmap_from_xpm_data (f, gnu_xpm_bits);
7487 if (rc != -1)
7488 FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id = rc;
7490 #endif
7492 /* If all else fails, use the (black and white) xbm image. */
7493 if (rc == -1)
7495 rc = x_create_bitmap_from_data (f, (char *) gnu_xbm_bits,
7496 gnu_xbm_width, gnu_xbm_height);
7497 if (rc == -1)
7498 return 1;
7500 FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id = rc;
7501 x_create_bitmap_mask (f, FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id);
7505 /* The first time we create the GNU bitmap and mask,
7506 this increments the ref-count one extra time.
7507 As a result, the GNU bitmap and mask are never freed.
7508 That way, we don't have to worry about allocating it again. */
7509 x_reference_bitmap (f, FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id);
7511 bitmap_id = FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id;
7514 x_wm_set_icon_pixmap (f, bitmap_id);
7515 f->output_data.x->icon_bitmap = bitmap_id;
7517 return 0;
7521 /* Make the x-window of frame F use a rectangle with text.
7522 Use ICON_NAME as the text. */
7525 x_text_icon (struct frame *f, const char *icon_name)
7527 if (FRAME_X_WINDOW (f) == 0)
7528 return 1;
7531 XTextProperty text;
7532 text.value = (unsigned char *) icon_name;
7533 text.encoding = XA_STRING;
7534 text.format = 8;
7535 text.nitems = strlen (icon_name);
7536 XSetWMIconName (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f), &text);
7539 if (f->output_data.x->icon_bitmap > 0)
7540 x_destroy_bitmap (f, f->output_data.x->icon_bitmap);
7541 f->output_data.x->icon_bitmap = 0;
7542 x_wm_set_icon_pixmap (f, 0);
7544 return 0;
7547 #define X_ERROR_MESSAGE_SIZE 200
7549 /* If non-nil, this should be a string.
7550 It means catch X errors and store the error message in this string.
7552 The reason we use a stack is that x_catch_error/x_uncatch_error can
7553 be called from a signal handler.
7556 struct x_error_message_stack {
7557 char string[X_ERROR_MESSAGE_SIZE];
7558 Display *dpy;
7559 struct x_error_message_stack *prev;
7561 static struct x_error_message_stack *x_error_message;
7563 /* An X error handler which stores the error message in
7564 *x_error_message. This is called from x_error_handler if
7565 x_catch_errors is in effect. */
7567 static void
7568 x_error_catcher (Display *display, XErrorEvent *event)
7570 XGetErrorText (display, event->error_code,
7571 x_error_message->string,
7572 X_ERROR_MESSAGE_SIZE);
7575 /* Begin trapping X errors for display DPY. Actually we trap X errors
7576 for all displays, but DPY should be the display you are actually
7577 operating on.
7579 After calling this function, X protocol errors no longer cause
7580 Emacs to exit; instead, they are recorded in the string
7581 stored in *x_error_message.
7583 Calling x_check_errors signals an Emacs error if an X error has
7584 occurred since the last call to x_catch_errors or x_check_errors.
7586 Calling x_uncatch_errors resumes the normal error handling. */
7588 void
7589 x_catch_errors (Display *dpy)
7591 struct x_error_message_stack *data = xmalloc (sizeof *data);
7593 /* Make sure any errors from previous requests have been dealt with. */
7594 XSync (dpy, False);
7596 data->dpy = dpy;
7597 data->string[0] = 0;
7598 data->prev = x_error_message;
7599 x_error_message = data;
7602 /* Undo the last x_catch_errors call.
7603 DPY should be the display that was passed to x_catch_errors. */
7605 void
7606 x_uncatch_errors (void)
7608 struct x_error_message_stack *tmp;
7610 block_input ();
7612 /* The display may have been closed before this function is called.
7613 Check if it is still open before calling XSync. */
7614 if (x_display_info_for_display (x_error_message->dpy) != 0)
7615 XSync (x_error_message->dpy, False);
7617 tmp = x_error_message;
7618 x_error_message = x_error_message->prev;
7619 xfree (tmp);
7620 unblock_input ();
7623 /* If any X protocol errors have arrived since the last call to
7624 x_catch_errors or x_check_errors, signal an Emacs error using
7625 sprintf (a buffer, FORMAT, the x error message text) as the text. */
7627 void
7628 x_check_errors (Display *dpy, const char *format)
7630 /* Make sure to catch any errors incurred so far. */
7631 XSync (dpy, False);
7633 if (x_error_message->string[0])
7635 char string[X_ERROR_MESSAGE_SIZE];
7636 memcpy (string, x_error_message->string, X_ERROR_MESSAGE_SIZE);
7637 x_uncatch_errors ();
7638 error (format, string);
7642 /* Nonzero if we had any X protocol errors
7643 since we did x_catch_errors on DPY. */
7645 bool
7646 x_had_errors_p (Display *dpy)
7648 /* Make sure to catch any errors incurred so far. */
7649 XSync (dpy, False);
7651 return x_error_message->string[0] != 0;
7654 /* Forget about any errors we have had, since we did x_catch_errors on DPY. */
7656 void
7657 x_clear_errors (Display *dpy)
7659 x_error_message->string[0] = 0;
7662 #if 0 /* See comment in unwind_to_catch why calling this is a bad
7663 * idea. --lorentey */
7664 /* Close off all unclosed x_catch_errors calls. */
7666 void
7667 x_fully_uncatch_errors (void)
7669 while (x_error_message)
7670 x_uncatch_errors ();
7672 #endif
7674 #if 0
7675 static unsigned int x_wire_count;
7676 x_trace_wire (void)
7678 fprintf (stderr, "Lib call: %d\n", ++x_wire_count);
7680 #endif /* ! 0 */
7683 /************************************************************************
7684 Handling X errors
7685 ************************************************************************/
7687 /* Error message passed to x_connection_closed. */
7689 static char *error_msg;
7691 /* Handle the loss of connection to display DPY. ERROR_MESSAGE is
7692 the text of an error message that lead to the connection loss. */
7694 static void
7695 x_connection_closed (Display *dpy, const char *error_message)
7697 struct x_display_info *dpyinfo = x_display_info_for_display (dpy);
7698 Lisp_Object frame, tail;
7699 ptrdiff_t idx = SPECPDL_INDEX ();
7701 error_msg = alloca (strlen (error_message) + 1);
7702 strcpy (error_msg, error_message);
7704 /* Inhibit redisplay while frames are being deleted. */
7705 specbind (Qinhibit_redisplay, Qt);
7707 if (dpyinfo)
7709 /* Protect display from being closed when we delete the last
7710 frame on it. */
7711 dpyinfo->reference_count++;
7712 dpyinfo->terminal->reference_count++;
7715 /* First delete frames whose mini-buffers are on frames
7716 that are on the dead display. */
7717 FOR_EACH_FRAME (tail, frame)
7719 Lisp_Object minibuf_frame;
7720 minibuf_frame
7721 = WINDOW_FRAME (XWINDOW (FRAME_MINIBUF_WINDOW (XFRAME (frame))));
7722 if (FRAME_X_P (XFRAME (frame))
7723 && FRAME_X_P (XFRAME (minibuf_frame))
7724 && ! EQ (frame, minibuf_frame)
7725 && FRAME_X_DISPLAY_INFO (XFRAME (minibuf_frame)) == dpyinfo)
7726 delete_frame (frame, Qnoelisp);
7729 /* Now delete all remaining frames on the dead display.
7730 We are now sure none of these is used as the mini-buffer
7731 for another frame that we need to delete. */
7732 FOR_EACH_FRAME (tail, frame)
7733 if (FRAME_X_P (XFRAME (frame))
7734 && FRAME_X_DISPLAY_INFO (XFRAME (frame)) == dpyinfo)
7736 /* Set this to t so that delete_frame won't get confused
7737 trying to find a replacement. */
7738 kset_default_minibuffer_frame (FRAME_KBOARD (XFRAME (frame)), Qt);
7739 delete_frame (frame, Qnoelisp);
7742 /* If DPYINFO is null, this means we didn't open the display in the
7743 first place, so don't try to close it. */
7744 if (dpyinfo)
7746 /* We can not call XtCloseDisplay here because it calls XSync.
7747 XSync inside the error handler apparently hangs Emacs. On
7748 current Xt versions, this isn't needed either. */
7749 #ifdef USE_GTK
7750 /* A long-standing GTK bug prevents proper disconnect handling
7751 (https://bugzilla.gnome.org/show_bug.cgi?id=85715). Once,
7752 the resulting Glib error message loop filled a user's disk.
7753 To avoid this, kill Emacs unconditionally on disconnect. */
7754 shut_down_emacs (0, Qnil);
7755 fprintf (stderr, "%s\n\
7756 When compiled with GTK, Emacs cannot recover from X disconnects.\n\
7757 This is a GTK bug: https://bugzilla.gnome.org/show_bug.cgi?id=85715\n\
7758 For details, see etc/PROBLEMS.\n",
7759 error_msg);
7760 emacs_abort ();
7761 #endif /* USE_GTK */
7763 /* Indicate that this display is dead. */
7764 dpyinfo->display = 0;
7766 dpyinfo->reference_count--;
7767 dpyinfo->terminal->reference_count--;
7768 if (dpyinfo->reference_count != 0)
7769 /* We have just closed all frames on this display. */
7770 emacs_abort ();
7773 Lisp_Object tmp;
7774 XSETTERMINAL (tmp, dpyinfo->terminal);
7775 Fdelete_terminal (tmp, Qnoelisp);
7779 if (terminal_list == 0)
7781 fprintf (stderr, "%s\n", error_msg);
7782 Fkill_emacs (make_number (70));
7783 /* NOTREACHED */
7786 totally_unblock_input ();
7788 unbind_to (idx, Qnil);
7789 clear_waiting_for_input ();
7791 /* Tell GCC not to suggest attribute 'noreturn' for this function. */
7792 IF_LINT (if (! terminal_list) return; )
7794 /* Here, we absolutely have to use a non-local exit (e.g. signal, throw,
7795 longjmp), because returning from this function would get us back into
7796 Xlib's code which will directly call `exit'. */
7797 error ("%s", error_msg);
7800 /* We specifically use it before defining it, so that gcc doesn't inline it,
7801 otherwise gdb doesn't know how to properly put a breakpoint on it. */
7802 static void x_error_quitter (Display *, XErrorEvent *);
7804 /* This is the first-level handler for X protocol errors.
7805 It calls x_error_quitter or x_error_catcher. */
7807 static int
7808 x_error_handler (Display *display, XErrorEvent *event)
7810 #if defined USE_GTK && defined HAVE_GTK3
7811 if (event->error_code == BadMatch
7812 && event->request_code == X_SetInputFocus
7813 && event->minor_code == 0)
7815 return 0;
7817 #endif
7819 if (x_error_message)
7820 x_error_catcher (display, event);
7821 else
7822 x_error_quitter (display, event);
7823 return 0;
7826 /* This is the usual handler for X protocol errors.
7827 It kills all frames on the display that we got the error for.
7828 If that was the only one, it prints an error message and kills Emacs. */
7830 /* .gdbinit puts a breakpoint here, so make sure it is not inlined. */
7832 /* On older GCC versions, just putting x_error_quitter
7833 after x_error_handler prevents inlining into the former. */
7835 static void NO_INLINE
7836 x_error_quitter (Display *display, XErrorEvent *event)
7838 char buf[256], buf1[356];
7840 /* Ignore BadName errors. They can happen because of fonts
7841 or colors that are not defined. */
7843 if (event->error_code == BadName)
7844 return;
7846 /* Note that there is no real way portable across R3/R4 to get the
7847 original error handler. */
7849 XGetErrorText (display, event->error_code, buf, sizeof (buf));
7850 sprintf (buf1, "X protocol error: %s on protocol request %d",
7851 buf, event->request_code);
7852 x_connection_closed (display, buf1);
7856 /* This is the handler for X IO errors, always.
7857 It kills all frames on the display that we lost touch with.
7858 If that was the only one, it prints an error message and kills Emacs. */
7860 static int
7861 x_io_error_quitter (Display *display)
7863 char buf[256];
7865 snprintf (buf, sizeof buf, "Connection lost to X server `%s'",
7866 DisplayString (display));
7867 x_connection_closed (display, buf);
7868 return 0;
7871 /* Changing the font of the frame. */
7873 /* Give frame F the font FONT-OBJECT as its default font. The return
7874 value is FONT-OBJECT. FONTSET is an ID of the fontset for the
7875 frame. If it is negative, generate a new fontset from
7876 FONT-OBJECT. */
7878 Lisp_Object
7879 x_new_font (struct frame *f, Lisp_Object font_object, int fontset)
7881 struct font *font = XFONT_OBJECT (font_object);
7883 if (fontset < 0)
7884 fontset = fontset_from_font (font_object);
7885 FRAME_FONTSET (f) = fontset;
7886 if (FRAME_FONT (f) == font)
7887 /* This font is already set in frame F. There's nothing more to
7888 do. */
7889 return font_object;
7891 FRAME_FONT (f) = font;
7892 FRAME_BASELINE_OFFSET (f) = font->baseline_offset;
7893 FRAME_COLUMN_WIDTH (f) = font->average_width;
7894 FRAME_LINE_HEIGHT (f) = FONT_HEIGHT (font);
7896 compute_fringe_widths (f, 1);
7898 /* Compute the scroll bar width in character columns. */
7899 if (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) > 0)
7901 int wid = FRAME_COLUMN_WIDTH (f);
7902 FRAME_CONFIG_SCROLL_BAR_COLS (f)
7903 = (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) + wid-1) / wid;
7905 else
7907 int wid = FRAME_COLUMN_WIDTH (f);
7908 FRAME_CONFIG_SCROLL_BAR_COLS (f) = (14 + wid - 1) / wid;
7911 if (FRAME_X_WINDOW (f) != 0)
7913 /* Don't change the size of a tip frame; there's no point in
7914 doing it because it's done in Fx_show_tip, and it leads to
7915 problems because the tip frame has no widget. */
7916 if (NILP (tip_frame) || XFRAME (tip_frame) != f)
7917 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
7920 #ifdef HAVE_X_I18N
7921 if (FRAME_XIC (f)
7922 && (FRAME_XIC_STYLE (f) & (XIMPreeditPosition | XIMStatusArea)))
7924 block_input ();
7925 xic_set_xfontset (f, SSDATA (fontset_ascii (fontset)));
7926 unblock_input ();
7928 #endif
7930 return font_object;
7934 /***********************************************************************
7935 X Input Methods
7936 ***********************************************************************/
7938 #ifdef HAVE_X_I18N
7940 #ifdef HAVE_X11R6
7942 /* XIM destroy callback function, which is called whenever the
7943 connection to input method XIM dies. CLIENT_DATA contains a
7944 pointer to the x_display_info structure corresponding to XIM. */
7946 static void
7947 xim_destroy_callback (XIM xim, XPointer client_data, XPointer call_data)
7949 struct x_display_info *dpyinfo = (struct x_display_info *) client_data;
7950 Lisp_Object frame, tail;
7952 block_input ();
7954 /* No need to call XDestroyIC.. */
7955 FOR_EACH_FRAME (tail, frame)
7957 struct frame *f = XFRAME (frame);
7958 if (FRAME_X_P (f) && FRAME_X_DISPLAY_INFO (f) == dpyinfo)
7960 FRAME_XIC (f) = NULL;
7961 xic_free_xfontset (f);
7965 /* No need to call XCloseIM. */
7966 dpyinfo->xim = NULL;
7967 XFree (dpyinfo->xim_styles);
7968 unblock_input ();
7971 #endif /* HAVE_X11R6 */
7973 #ifdef HAVE_X11R6
7974 /* This isn't prototyped in OSF 5.0 or 5.1a. */
7975 extern char *XSetIMValues (XIM, ...);
7976 #endif
7978 /* Open the connection to the XIM server on display DPYINFO.
7979 RESOURCE_NAME is the resource name Emacs uses. */
7981 static void
7982 xim_open_dpy (struct x_display_info *dpyinfo, char *resource_name)
7984 XIM xim;
7986 #ifdef HAVE_XIM
7987 if (use_xim)
7989 if (dpyinfo->xim)
7990 XCloseIM (dpyinfo->xim);
7991 xim = XOpenIM (dpyinfo->display, dpyinfo->xrdb, resource_name,
7992 emacs_class);
7993 dpyinfo->xim = xim;
7995 if (xim)
7997 #ifdef HAVE_X11R6
7998 XIMCallback destroy;
7999 #endif
8001 /* Get supported styles and XIM values. */
8002 XGetIMValues (xim, XNQueryInputStyle, &dpyinfo->xim_styles, NULL);
8004 #ifdef HAVE_X11R6
8005 destroy.callback = xim_destroy_callback;
8006 destroy.client_data = (XPointer)dpyinfo;
8007 XSetIMValues (xim, XNDestroyCallback, &destroy, NULL);
8008 #endif
8012 else
8013 #endif /* HAVE_XIM */
8014 dpyinfo->xim = NULL;
8018 #ifdef HAVE_X11R6_XIM
8020 /* XIM instantiate callback function, which is called whenever an XIM
8021 server is available. DISPLAY is the display of the XIM.
8022 CLIENT_DATA contains a pointer to an xim_inst_t structure created
8023 when the callback was registered. */
8025 static void
8026 xim_instantiate_callback (Display *display, XPointer client_data, XPointer call_data)
8028 struct xim_inst_t *xim_inst = (struct xim_inst_t *) client_data;
8029 struct x_display_info *dpyinfo = xim_inst->dpyinfo;
8031 /* We don't support multiple XIM connections. */
8032 if (dpyinfo->xim)
8033 return;
8035 xim_open_dpy (dpyinfo, xim_inst->resource_name);
8037 /* Create XIC for the existing frames on the same display, as long
8038 as they have no XIC. */
8039 if (dpyinfo->xim && dpyinfo->reference_count > 0)
8041 Lisp_Object tail, frame;
8043 block_input ();
8044 FOR_EACH_FRAME (tail, frame)
8046 struct frame *f = XFRAME (frame);
8048 if (FRAME_X_P (f)
8049 && FRAME_X_DISPLAY_INFO (f) == xim_inst->dpyinfo)
8050 if (FRAME_XIC (f) == NULL)
8052 create_frame_xic (f);
8053 if (FRAME_XIC_STYLE (f) & XIMStatusArea)
8054 xic_set_statusarea (f);
8055 if (FRAME_XIC_STYLE (f) & XIMPreeditPosition)
8057 struct window *w = XWINDOW (f->selected_window);
8058 xic_set_preeditarea (w, w->cursor.x, w->cursor.y);
8063 unblock_input ();
8067 #endif /* HAVE_X11R6_XIM */
8070 /* Open a connection to the XIM server on display DPYINFO.
8071 RESOURCE_NAME is the resource name for Emacs. On X11R5, open the
8072 connection only at the first time. On X11R6, open the connection
8073 in the XIM instantiate callback function. */
8075 static void
8076 xim_initialize (struct x_display_info *dpyinfo, char *resource_name)
8078 dpyinfo->xim = NULL;
8079 #ifdef HAVE_XIM
8080 if (use_xim)
8082 #ifdef HAVE_X11R6_XIM
8083 struct xim_inst_t *xim_inst = xmalloc (sizeof *xim_inst);
8085 dpyinfo->xim_callback_data = xim_inst;
8086 xim_inst->dpyinfo = dpyinfo;
8087 xim_inst->resource_name = xstrdup (resource_name);
8088 XRegisterIMInstantiateCallback (dpyinfo->display, dpyinfo->xrdb,
8089 resource_name, emacs_class,
8090 xim_instantiate_callback,
8091 /* This is XPointer in XFree86
8092 but (XPointer *) on Tru64, at
8093 least, hence the configure test. */
8094 (XRegisterIMInstantiateCallback_arg6) xim_inst);
8095 #else /* not HAVE_X11R6_XIM */
8096 xim_open_dpy (dpyinfo, resource_name);
8097 #endif /* not HAVE_X11R6_XIM */
8099 #endif /* HAVE_XIM */
8103 /* Close the connection to the XIM server on display DPYINFO. */
8105 static void
8106 xim_close_dpy (struct x_display_info *dpyinfo)
8108 #ifdef HAVE_XIM
8109 if (use_xim)
8111 #ifdef HAVE_X11R6_XIM
8112 if (dpyinfo->display)
8113 XUnregisterIMInstantiateCallback (dpyinfo->display, dpyinfo->xrdb,
8114 NULL, emacs_class,
8115 xim_instantiate_callback, NULL);
8116 xfree (dpyinfo->xim_callback_data->resource_name);
8117 xfree (dpyinfo->xim_callback_data);
8118 #endif /* HAVE_X11R6_XIM */
8119 if (dpyinfo->display)
8120 XCloseIM (dpyinfo->xim);
8121 dpyinfo->xim = NULL;
8122 XFree (dpyinfo->xim_styles);
8124 #endif /* HAVE_XIM */
8127 #endif /* not HAVE_X11R6_XIM */
8131 /* Calculate the absolute position in frame F
8132 from its current recorded position values and gravity. */
8134 static void
8135 x_calc_absolute_position (struct frame *f)
8137 int flags = f->size_hint_flags;
8139 /* We have nothing to do if the current position
8140 is already for the top-left corner. */
8141 if (! ((flags & XNegative) || (flags & YNegative)))
8142 return;
8144 /* Treat negative positions as relative to the leftmost bottommost
8145 position that fits on the screen. */
8146 if (flags & XNegative)
8147 f->left_pos = x_display_pixel_width (FRAME_X_DISPLAY_INFO (f))
8148 - FRAME_PIXEL_WIDTH (f) + f->left_pos;
8151 int height = FRAME_PIXEL_HEIGHT (f);
8153 #if defined USE_X_TOOLKIT && defined USE_MOTIF
8154 /* Something is fishy here. When using Motif, starting Emacs with
8155 `-g -0-0', the frame appears too low by a few pixels.
8157 This seems to be so because initially, while Emacs is starting,
8158 the column widget's height and the frame's pixel height are
8159 different. The column widget's height is the right one. In
8160 later invocations, when Emacs is up, the frame's pixel height
8161 is right, though.
8163 It's not obvious where the initial small difference comes from.
8164 2000-12-01, gerd. */
8166 XtVaGetValues (f->output_data.x->column_widget, XtNheight, &height, NULL);
8167 #endif
8169 if (flags & YNegative)
8170 f->top_pos = x_display_pixel_height (FRAME_X_DISPLAY_INFO (f))
8171 - height + f->top_pos;
8174 /* The left_pos and top_pos
8175 are now relative to the top and left screen edges,
8176 so the flags should correspond. */
8177 f->size_hint_flags &= ~ (XNegative | YNegative);
8180 /* CHANGE_GRAVITY is 1 when calling from Fset_frame_position,
8181 to really change the position, and 0 when calling from
8182 x_make_frame_visible (in that case, XOFF and YOFF are the current
8183 position values). It is -1 when calling from x_set_frame_parameters,
8184 which means, do adjust for borders but don't change the gravity. */
8186 void
8187 x_set_offset (struct frame *f, register int xoff, register int yoff, int change_gravity)
8189 int modified_top, modified_left;
8191 if (change_gravity > 0)
8193 FRAME_X_OUTPUT (f)->left_before_move = f->left_pos;
8194 FRAME_X_OUTPUT (f)->top_before_move = f->top_pos;
8196 f->top_pos = yoff;
8197 f->left_pos = xoff;
8198 f->size_hint_flags &= ~ (XNegative | YNegative);
8199 if (xoff < 0)
8200 f->size_hint_flags |= XNegative;
8201 if (yoff < 0)
8202 f->size_hint_flags |= YNegative;
8203 f->win_gravity = NorthWestGravity;
8205 x_calc_absolute_position (f);
8207 block_input ();
8208 x_wm_set_size_hint (f, (long) 0, 0);
8210 modified_left = f->left_pos;
8211 modified_top = f->top_pos;
8213 if (change_gravity != 0 && FRAME_X_DISPLAY_INFO (f)->wm_type == X_WMTYPE_A)
8215 /* Some WMs (twm, wmaker at least) has an offset that is smaller
8216 than the WM decorations. So we use the calculated offset instead
8217 of the WM decoration sizes here (x/y_pixels_outer_diff). */
8218 modified_left += FRAME_X_OUTPUT (f)->move_offset_left;
8219 modified_top += FRAME_X_OUTPUT (f)->move_offset_top;
8222 XMoveWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
8223 modified_left, modified_top);
8225 x_sync_with_move (f, f->left_pos, f->top_pos,
8226 FRAME_X_DISPLAY_INFO (f)->wm_type == X_WMTYPE_UNKNOWN
8227 ? 1 : 0);
8229 /* change_gravity is non-zero when this function is called from Lisp to
8230 programmatically move a frame. In that case, we call
8231 x_check_expected_move to discover if we have a "Type A" or "Type B"
8232 window manager, and, for a "Type A" window manager, adjust the position
8233 of the frame.
8235 We call x_check_expected_move if a programmatic move occurred, and
8236 either the window manager type (A/B) is unknown or it is Type A but we
8237 need to compute the top/left offset adjustment for this frame. */
8239 if (change_gravity != 0 &&
8240 (FRAME_X_DISPLAY_INFO (f)->wm_type == X_WMTYPE_UNKNOWN
8241 || (FRAME_X_DISPLAY_INFO (f)->wm_type == X_WMTYPE_A
8242 && (FRAME_X_OUTPUT (f)->move_offset_left == 0
8243 && FRAME_X_OUTPUT (f)->move_offset_top == 0))))
8244 x_check_expected_move (f, modified_left, modified_top);
8246 unblock_input ();
8249 /* Return non-zero if _NET_SUPPORTING_WM_CHECK window exists and _NET_SUPPORTED
8250 on the root window for frame F contains ATOMNAME.
8251 This is how a WM check shall be done according to the Window Manager
8252 Specification/Extended Window Manager Hints at
8253 http://freedesktop.org/wiki/Specifications/wm-spec. */
8255 static int
8256 wm_supports (struct frame *f, Atom want_atom)
8258 Atom actual_type;
8259 unsigned long actual_size, bytes_remaining;
8260 int i, rc, actual_format;
8261 Window wmcheck_window;
8262 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
8263 Window target_window = dpyinfo->root_window;
8264 long max_len = 65536;
8265 Display *dpy = FRAME_X_DISPLAY (f);
8266 unsigned char *tmp_data = NULL;
8267 Atom target_type = XA_WINDOW;
8269 block_input ();
8271 x_catch_errors (dpy);
8272 rc = XGetWindowProperty (dpy, target_window,
8273 dpyinfo->Xatom_net_supporting_wm_check,
8274 0, max_len, False, target_type,
8275 &actual_type, &actual_format, &actual_size,
8276 &bytes_remaining, &tmp_data);
8278 if (rc != Success || actual_type != XA_WINDOW || x_had_errors_p (dpy))
8280 if (tmp_data) XFree (tmp_data);
8281 x_uncatch_errors ();
8282 unblock_input ();
8283 return 0;
8286 wmcheck_window = *(Window *) tmp_data;
8287 XFree (tmp_data);
8289 /* Check if window exists. */
8290 XSelectInput (dpy, wmcheck_window, StructureNotifyMask);
8291 x_sync (f);
8292 if (x_had_errors_p (dpy))
8294 x_uncatch_errors ();
8295 unblock_input ();
8296 return 0;
8299 if (dpyinfo->net_supported_window != wmcheck_window)
8301 /* Window changed, reload atoms */
8302 if (dpyinfo->net_supported_atoms != NULL)
8303 XFree (dpyinfo->net_supported_atoms);
8304 dpyinfo->net_supported_atoms = NULL;
8305 dpyinfo->nr_net_supported_atoms = 0;
8306 dpyinfo->net_supported_window = 0;
8308 target_type = XA_ATOM;
8309 tmp_data = NULL;
8310 rc = XGetWindowProperty (dpy, target_window,
8311 dpyinfo->Xatom_net_supported,
8312 0, max_len, False, target_type,
8313 &actual_type, &actual_format, &actual_size,
8314 &bytes_remaining, &tmp_data);
8316 if (rc != Success || actual_type != XA_ATOM || x_had_errors_p (dpy))
8318 if (tmp_data) XFree (tmp_data);
8319 x_uncatch_errors ();
8320 unblock_input ();
8321 return 0;
8324 dpyinfo->net_supported_atoms = (Atom *)tmp_data;
8325 dpyinfo->nr_net_supported_atoms = actual_size;
8326 dpyinfo->net_supported_window = wmcheck_window;
8329 rc = 0;
8331 for (i = 0; rc == 0 && i < dpyinfo->nr_net_supported_atoms; ++i)
8332 rc = dpyinfo->net_supported_atoms[i] == want_atom;
8334 x_uncatch_errors ();
8335 unblock_input ();
8337 return rc;
8340 static void
8341 set_wm_state (Lisp_Object frame, int add, Atom atom, Atom value)
8343 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (XFRAME (frame));
8345 x_send_client_event (frame, make_number (0), frame,
8346 dpyinfo->Xatom_net_wm_state,
8347 make_number (32),
8348 /* 1 = add, 0 = remove */
8349 Fcons
8350 (make_number (add ? 1 : 0),
8351 Fcons
8352 (make_fixnum_or_float (atom),
8353 (value != 0
8354 ? list1 (make_fixnum_or_float (value))
8355 : Qnil))));
8358 void
8359 x_set_sticky (struct frame *f, Lisp_Object new_value, Lisp_Object old_value)
8361 Lisp_Object frame;
8362 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
8364 XSETFRAME (frame, f);
8366 set_wm_state (frame, NILP (new_value) ? 0 : 1,
8367 dpyinfo->Xatom_net_wm_state_sticky, None);
8370 /* Return the current _NET_WM_STATE.
8371 SIZE_STATE is set to one of the FULLSCREEN_* values.
8372 STICKY is set to 1 if the sticky state is set, 0 if not.
8374 Return non-zero if we are not hidden, zero if we are. */
8376 static int
8377 get_current_wm_state (struct frame *f,
8378 Window window,
8379 int *size_state,
8380 int *sticky)
8382 Atom actual_type;
8383 unsigned long actual_size, bytes_remaining;
8384 int i, rc, actual_format, is_hidden = 0;
8385 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
8386 long max_len = 65536;
8387 Display *dpy = FRAME_X_DISPLAY (f);
8388 unsigned char *tmp_data = NULL;
8389 Atom target_type = XA_ATOM;
8391 *sticky = 0;
8392 *size_state = FULLSCREEN_NONE;
8394 block_input ();
8395 x_catch_errors (dpy);
8396 rc = XGetWindowProperty (dpy, window, dpyinfo->Xatom_net_wm_state,
8397 0, max_len, False, target_type,
8398 &actual_type, &actual_format, &actual_size,
8399 &bytes_remaining, &tmp_data);
8401 if (rc != Success || actual_type != target_type || x_had_errors_p (dpy))
8403 if (tmp_data) XFree (tmp_data);
8404 x_uncatch_errors ();
8405 unblock_input ();
8406 return !FRAME_ICONIFIED_P (f);
8409 x_uncatch_errors ();
8411 for (i = 0; i < actual_size; ++i)
8413 Atom a = ((Atom*)tmp_data)[i];
8414 if (a == dpyinfo->Xatom_net_wm_state_hidden)
8416 is_hidden = 1;
8417 f->output_data.x->net_wm_state_hidden_seen = 1;
8419 else if (a == dpyinfo->Xatom_net_wm_state_maximized_horz)
8421 if (*size_state == FULLSCREEN_HEIGHT)
8422 *size_state = FULLSCREEN_MAXIMIZED;
8423 else
8424 *size_state = FULLSCREEN_WIDTH;
8426 else if (a == dpyinfo->Xatom_net_wm_state_maximized_vert)
8428 if (*size_state == FULLSCREEN_WIDTH)
8429 *size_state = FULLSCREEN_MAXIMIZED;
8430 else
8431 *size_state = FULLSCREEN_HEIGHT;
8433 else if (a == dpyinfo->Xatom_net_wm_state_fullscreen)
8434 *size_state = FULLSCREEN_BOTH;
8435 else if (a == dpyinfo->Xatom_net_wm_state_sticky)
8436 *sticky = 1;
8439 if (tmp_data) XFree (tmp_data);
8440 unblock_input ();
8441 return ! is_hidden;
8444 /* Do fullscreen as specified in extended window manager hints */
8446 static int
8447 do_ewmh_fullscreen (struct frame *f)
8449 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
8450 int have_net_atom = wm_supports (f, dpyinfo->Xatom_net_wm_state);
8451 int cur, dummy;
8453 (void)get_current_wm_state (f, FRAME_OUTER_WINDOW (f), &cur, &dummy);
8455 /* Some window managers don't say they support _NET_WM_STATE, but they do say
8456 they support _NET_WM_STATE_FULLSCREEN. Try that also. */
8457 if (!have_net_atom)
8458 have_net_atom = wm_supports (f, dpyinfo->Xatom_net_wm_state_fullscreen);
8460 if (have_net_atom && cur != f->want_fullscreen)
8462 Lisp_Object frame;
8464 XSETFRAME (frame, f);
8466 /* Keep number of calls to set_wm_state as low as possible.
8467 Some window managers, or possible Gtk+, hangs when too many
8468 are sent at once. */
8469 switch (f->want_fullscreen)
8471 case FULLSCREEN_BOTH:
8472 if (cur == FULLSCREEN_WIDTH || cur == FULLSCREEN_MAXIMIZED
8473 || cur == FULLSCREEN_HEIGHT)
8474 set_wm_state (frame, 0, dpyinfo->Xatom_net_wm_state_maximized_horz,
8475 dpyinfo->Xatom_net_wm_state_maximized_vert);
8476 set_wm_state (frame, 1, dpyinfo->Xatom_net_wm_state_fullscreen, None);
8477 break;
8478 case FULLSCREEN_WIDTH:
8479 if (cur == FULLSCREEN_BOTH || cur == FULLSCREEN_HEIGHT
8480 || cur == FULLSCREEN_MAXIMIZED)
8481 set_wm_state (frame, 0, dpyinfo->Xatom_net_wm_state_fullscreen,
8482 dpyinfo->Xatom_net_wm_state_maximized_vert);
8483 if (cur != FULLSCREEN_MAXIMIZED)
8484 set_wm_state (frame, 1, dpyinfo->Xatom_net_wm_state_maximized_horz, None);
8485 break;
8486 case FULLSCREEN_HEIGHT:
8487 if (cur == FULLSCREEN_BOTH || cur == FULLSCREEN_WIDTH
8488 || cur == FULLSCREEN_MAXIMIZED)
8489 set_wm_state (frame, 0, dpyinfo->Xatom_net_wm_state_fullscreen,
8490 dpyinfo->Xatom_net_wm_state_maximized_horz);
8491 if (cur != FULLSCREEN_MAXIMIZED)
8492 set_wm_state (frame, 1, dpyinfo->Xatom_net_wm_state_maximized_vert, None);
8493 break;
8494 case FULLSCREEN_MAXIMIZED:
8495 if (cur == FULLSCREEN_BOTH)
8496 set_wm_state (frame, 0, dpyinfo->Xatom_net_wm_state_fullscreen, None);
8497 set_wm_state (frame, 1, dpyinfo->Xatom_net_wm_state_maximized_horz,
8498 dpyinfo->Xatom_net_wm_state_maximized_vert);
8499 break;
8500 case FULLSCREEN_NONE:
8501 if (cur == FULLSCREEN_BOTH)
8502 set_wm_state (frame, 0, dpyinfo->Xatom_net_wm_state_fullscreen, None);
8503 else
8504 set_wm_state (frame, 0, dpyinfo->Xatom_net_wm_state_maximized_horz,
8505 dpyinfo->Xatom_net_wm_state_maximized_vert);
8508 f->want_fullscreen = FULLSCREEN_NONE;
8512 return have_net_atom;
8515 static void
8516 XTfullscreen_hook (struct frame *f)
8518 if (FRAME_VISIBLE_P (f))
8520 block_input ();
8521 x_check_fullscreen (f);
8522 x_sync (f);
8523 unblock_input ();
8528 static int
8529 x_handle_net_wm_state (struct frame *f, XPropertyEvent *event)
8531 int value = FULLSCREEN_NONE;
8532 Lisp_Object lval;
8533 int sticky = 0;
8534 int not_hidden = get_current_wm_state (f, event->window, &value, &sticky);
8536 lval = Qnil;
8537 switch (value)
8539 case FULLSCREEN_WIDTH:
8540 lval = Qfullwidth;
8541 break;
8542 case FULLSCREEN_HEIGHT:
8543 lval = Qfullheight;
8544 break;
8545 case FULLSCREEN_BOTH:
8546 lval = Qfullboth;
8547 break;
8548 case FULLSCREEN_MAXIMIZED:
8549 lval = Qmaximized;
8550 break;
8553 store_frame_param (f, Qfullscreen, lval);
8554 store_frame_param (f, Qsticky, sticky ? Qt : Qnil);
8556 return not_hidden;
8559 /* Check if we need to resize the frame due to a fullscreen request.
8560 If so needed, resize the frame. */
8561 static void
8562 x_check_fullscreen (struct frame *f)
8564 if (do_ewmh_fullscreen (f))
8565 return;
8567 if (f->output_data.x->parent_desc != FRAME_X_DISPLAY_INFO (f)->root_window)
8568 return; /* Only fullscreen without WM or with EWM hints (above). */
8570 /* Setting fullscreen to nil doesn't do anything. We could save the
8571 last non-fullscreen size and restore it, but it seems like a
8572 lot of work for this unusual case (no window manager running). */
8574 if (f->want_fullscreen != FULLSCREEN_NONE)
8576 int width = FRAME_PIXEL_WIDTH (f), height = FRAME_PIXEL_HEIGHT (f);
8577 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
8579 switch (f->want_fullscreen)
8581 /* No difference between these two when there is no WM */
8582 case FULLSCREEN_BOTH:
8583 case FULLSCREEN_MAXIMIZED:
8584 width = x_display_pixel_width (dpyinfo);
8585 height = x_display_pixel_height (dpyinfo);
8586 break;
8587 case FULLSCREEN_WIDTH:
8588 width = x_display_pixel_width (dpyinfo);
8589 break;
8590 case FULLSCREEN_HEIGHT:
8591 height = x_display_pixel_height (dpyinfo);
8594 XResizeWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
8595 width, height);
8599 /* This function is called by x_set_offset to determine whether the window
8600 manager interfered with the positioning of the frame. Type A window
8601 managers position the surrounding window manager decorations a small
8602 amount above and left of the user-supplied position. Type B window
8603 managers position the surrounding window manager decorations at the
8604 user-specified position. If we detect a Type A window manager, we
8605 compensate by moving the window right and down by the proper amount. */
8607 static void
8608 x_check_expected_move (struct frame *f, int expected_left, int expected_top)
8610 int current_left = 0, current_top = 0;
8612 /* x_real_positions returns the left and top offsets of the outermost
8613 window manager window around the frame. */
8615 x_real_positions (f, &current_left, &current_top);
8617 if (current_left != expected_left || current_top != expected_top)
8619 /* It's a "Type A" window manager. */
8621 int adjusted_left;
8622 int adjusted_top;
8624 FRAME_X_DISPLAY_INFO (f)->wm_type = X_WMTYPE_A;
8625 FRAME_X_OUTPUT (f)->move_offset_left = expected_left - current_left;
8626 FRAME_X_OUTPUT (f)->move_offset_top = expected_top - current_top;
8628 /* Now fix the mispositioned frame's location. */
8630 adjusted_left = expected_left + FRAME_X_OUTPUT (f)->move_offset_left;
8631 adjusted_top = expected_top + FRAME_X_OUTPUT (f)->move_offset_top;
8633 XMoveWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
8634 adjusted_left, adjusted_top);
8636 x_sync_with_move (f, expected_left, expected_top, 0);
8638 else
8639 /* It's a "Type B" window manager. We don't have to adjust the
8640 frame's position. */
8642 FRAME_X_DISPLAY_INFO (f)->wm_type = X_WMTYPE_B;
8646 /* Wait for XGetGeometry to return up-to-date position information for a
8647 recently-moved frame. Call this immediately after calling XMoveWindow.
8648 If FUZZY is non-zero, then LEFT and TOP are just estimates of where the
8649 frame has been moved to, so we use a fuzzy position comparison instead
8650 of an exact comparison. */
8652 static void
8653 x_sync_with_move (struct frame *f, int left, int top, int fuzzy)
8655 int count = 0;
8657 while (count++ < 50)
8659 int current_left = 0, current_top = 0;
8661 /* In theory, this call to XSync only needs to happen once, but in
8662 practice, it doesn't seem to work, hence the need for the surrounding
8663 loop. */
8665 XSync (FRAME_X_DISPLAY (f), False);
8666 x_real_positions (f, &current_left, &current_top);
8668 if (fuzzy)
8670 /* The left fuzz-factor is 10 pixels. The top fuzz-factor is 40
8671 pixels. */
8673 if (eabs (current_left - left) <= 10
8674 && eabs (current_top - top) <= 40)
8675 return;
8677 else if (current_left == left && current_top == top)
8678 return;
8681 /* As a last resort, just wait 0.5 seconds and hope that XGetGeometry
8682 will then return up-to-date position info. */
8684 wait_reading_process_output (0, 500000, 0, 0, Qnil, NULL, 0);
8688 /* Wait for an event on frame F matching EVENTTYPE. */
8689 void
8690 x_wait_for_event (struct frame *f, int eventtype)
8692 int level = interrupt_input_blocked;
8694 SELECT_TYPE fds;
8695 EMACS_TIME tmo, tmo_at, time_now;
8696 int fd = ConnectionNumber (FRAME_X_DISPLAY (f));
8698 pending_event_wait.f = f;
8699 pending_event_wait.eventtype = eventtype;
8701 /* Set timeout to 0.1 second. Hopefully not noticeable.
8702 Maybe it should be configurable. */
8703 tmo = make_emacs_time (0, 100 * 1000 * 1000);
8704 tmo_at = add_emacs_time (current_emacs_time (), tmo);
8706 while (pending_event_wait.eventtype)
8708 pending_signals = 1;
8709 totally_unblock_input ();
8710 /* XTread_socket is called after unblock. */
8711 block_input ();
8712 interrupt_input_blocked = level;
8714 FD_ZERO (&fds);
8715 FD_SET (fd, &fds);
8717 time_now = current_emacs_time ();
8718 if (EMACS_TIME_LT (tmo_at, time_now))
8719 break;
8721 tmo = sub_emacs_time (tmo_at, time_now);
8722 if (pselect (fd + 1, &fds, NULL, NULL, &tmo, NULL) == 0)
8723 break; /* Timeout */
8725 pending_event_wait.f = 0;
8726 pending_event_wait.eventtype = 0;
8730 /* Change the size of frame F's X window to COLS/ROWS in the case F
8731 doesn't have a widget. If CHANGE_GRAVITY is 1, we change to
8732 top-left-corner window gravity for this size change and subsequent
8733 size changes. Otherwise we leave the window gravity unchanged. */
8735 static void
8736 x_set_window_size_1 (struct frame *f, int change_gravity, int cols, int rows)
8738 int pixelwidth, pixelheight;
8740 check_frame_size (f, &rows, &cols);
8741 f->scroll_bar_actual_width
8742 = (!FRAME_HAS_VERTICAL_SCROLL_BARS (f)
8744 : FRAME_CONFIG_SCROLL_BAR_COLS (f) * FRAME_COLUMN_WIDTH (f));
8746 compute_fringe_widths (f, 0);
8748 pixelwidth = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, cols)
8749 + FRAME_TOOLBAR_WIDTH (f);
8750 pixelheight = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, rows)
8751 + FRAME_MENUBAR_HEIGHT (f) + FRAME_TOOLBAR_HEIGHT (f);
8753 if (change_gravity) f->win_gravity = NorthWestGravity;
8754 x_wm_set_size_hint (f, (long) 0, 0);
8755 XResizeWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
8756 pixelwidth, pixelheight);
8759 /* We've set {FRAME,PIXEL}_{WIDTH,HEIGHT} to the values we hope to
8760 receive in the ConfigureNotify event; if we get what we asked
8761 for, then the event won't cause the screen to become garbaged, so
8762 we have to make sure to do it here. */
8763 SET_FRAME_GARBAGED (f);
8765 /* Now, strictly speaking, we can't be sure that this is accurate,
8766 but the window manager will get around to dealing with the size
8767 change request eventually, and we'll hear how it went when the
8768 ConfigureNotify event gets here.
8770 We could just not bother storing any of this information here,
8771 and let the ConfigureNotify event set everything up, but that
8772 might be kind of confusing to the Lisp code, since size changes
8773 wouldn't be reported in the frame parameters until some random
8774 point in the future when the ConfigureNotify event arrives.
8776 We pass 1 for DELAY since we can't run Lisp code inside of
8777 a BLOCK_INPUT. */
8779 /* But the ConfigureNotify may in fact never arrive, and then this is
8780 not right if the frame is visible. Instead wait (with timeout)
8781 for the ConfigureNotify. */
8782 if (FRAME_VISIBLE_P (f))
8783 x_wait_for_event (f, ConfigureNotify);
8784 else
8786 change_frame_size (f, rows, cols, 0, 1, 0);
8787 FRAME_PIXEL_WIDTH (f) = pixelwidth;
8788 FRAME_PIXEL_HEIGHT (f) = pixelheight;
8789 x_sync (f);
8794 /* Call this to change the size of frame F's x-window.
8795 If CHANGE_GRAVITY is 1, we change to top-left-corner window gravity
8796 for this size change and subsequent size changes.
8797 Otherwise we leave the window gravity unchanged. */
8799 void
8800 x_set_window_size (struct frame *f, int change_gravity, int cols, int rows)
8802 block_input ();
8804 if (NILP (tip_frame) || XFRAME (tip_frame) != f)
8806 int r, c;
8808 /* When the frame is maximized/fullscreen or running under for
8809 example Xmonad, x_set_window_size_1 will be a no-op.
8810 In that case, the right thing to do is extend rows/cols to
8811 the current frame size. We do that first if x_set_window_size_1
8812 turns out to not be a no-op (there is no way to know).
8813 The size will be adjusted again if the frame gets a
8814 ConfigureNotify event as a result of x_set_window_size. */
8815 int pixelh = FRAME_PIXEL_HEIGHT (f);
8816 #ifdef USE_X_TOOLKIT
8817 /* The menu bar is not part of text lines. The tool bar
8818 is however. */
8819 pixelh -= FRAME_MENUBAR_HEIGHT (f);
8820 #endif
8821 r = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, pixelh);
8822 /* Update f->scroll_bar_actual_width because it is used in
8823 FRAME_PIXEL_WIDTH_TO_TEXT_COLS. */
8824 f->scroll_bar_actual_width
8825 = FRAME_SCROLL_BAR_COLS (f) * FRAME_COLUMN_WIDTH (f);
8826 c = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, FRAME_PIXEL_WIDTH (f));
8827 change_frame_size (f, r, c, 0, 1, 0);
8830 #ifdef USE_GTK
8831 if (FRAME_GTK_WIDGET (f))
8832 xg_frame_set_char_size (f, cols, rows);
8833 else
8834 x_set_window_size_1 (f, change_gravity, cols, rows);
8835 #else /* not USE_GTK */
8837 x_set_window_size_1 (f, change_gravity, cols, rows);
8839 #endif /* not USE_GTK */
8841 /* If cursor was outside the new size, mark it as off. */
8842 mark_window_cursors_off (XWINDOW (f->root_window));
8844 /* Clear out any recollection of where the mouse highlighting was,
8845 since it might be in a place that's outside the new frame size.
8846 Actually checking whether it is outside is a pain in the neck,
8847 so don't try--just let the highlighting be done afresh with new size. */
8848 cancel_mouse_face (f);
8850 unblock_input ();
8853 /* Mouse warping. */
8855 void
8856 x_set_mouse_position (struct frame *f, int x, int y)
8858 int pix_x, pix_y;
8860 pix_x = FRAME_COL_TO_PIXEL_X (f, x) + FRAME_COLUMN_WIDTH (f) / 2;
8861 pix_y = FRAME_LINE_TO_PIXEL_Y (f, y) + FRAME_LINE_HEIGHT (f) / 2;
8863 if (pix_x < 0) pix_x = 0;
8864 if (pix_x > FRAME_PIXEL_WIDTH (f)) pix_x = FRAME_PIXEL_WIDTH (f);
8866 if (pix_y < 0) pix_y = 0;
8867 if (pix_y > FRAME_PIXEL_HEIGHT (f)) pix_y = FRAME_PIXEL_HEIGHT (f);
8869 block_input ();
8871 XWarpPointer (FRAME_X_DISPLAY (f), None, FRAME_X_WINDOW (f),
8872 0, 0, 0, 0, pix_x, pix_y);
8873 unblock_input ();
8876 /* Move the mouse to position pixel PIX_X, PIX_Y relative to frame F. */
8878 void
8879 x_set_mouse_pixel_position (struct frame *f, int pix_x, int pix_y)
8881 block_input ();
8883 XWarpPointer (FRAME_X_DISPLAY (f), None, FRAME_X_WINDOW (f),
8884 0, 0, 0, 0, pix_x, pix_y);
8885 unblock_input ();
8888 /* Raise frame F. */
8890 void
8891 x_raise_frame (struct frame *f)
8893 block_input ();
8894 if (FRAME_VISIBLE_P (f))
8895 XRaiseWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f));
8896 XFlush (FRAME_X_DISPLAY (f));
8897 unblock_input ();
8900 /* Lower frame F. */
8902 static void
8903 x_lower_frame (struct frame *f)
8905 if (FRAME_VISIBLE_P (f))
8907 block_input ();
8908 XLowerWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f));
8909 XFlush (FRAME_X_DISPLAY (f));
8910 unblock_input ();
8914 /* Request focus with XEmbed */
8916 void
8917 xembed_request_focus (struct frame *f)
8919 /* See XEmbed Protocol Specification at
8920 http://freedesktop.org/wiki/Specifications/xembed-spec */
8921 if (FRAME_VISIBLE_P (f))
8922 xembed_send_message (f, CurrentTime,
8923 XEMBED_REQUEST_FOCUS, 0, 0, 0);
8926 /* Activate frame with Extended Window Manager Hints */
8928 void
8929 x_ewmh_activate_frame (struct frame *f)
8931 /* See Window Manager Specification/Extended Window Manager Hints at
8932 http://freedesktop.org/wiki/Specifications/wm-spec */
8934 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
8936 if (FRAME_VISIBLE_P (f) && wm_supports (f, dpyinfo->Xatom_net_active_window))
8938 Lisp_Object frame;
8939 XSETFRAME (frame, f);
8940 x_send_client_event (frame, make_number (0), frame,
8941 dpyinfo->Xatom_net_active_window,
8942 make_number (32), list2i (1, last_user_time));
8946 static void
8947 XTframe_raise_lower (struct frame *f, int raise_flag)
8949 if (raise_flag)
8950 x_raise_frame (f);
8951 else
8952 x_lower_frame (f);
8955 /* XEmbed implementation. */
8957 #if defined USE_X_TOOLKIT || ! defined USE_GTK
8959 /* XEmbed implementation. */
8961 #define XEMBED_VERSION 0
8963 static void
8964 xembed_set_info (struct frame *f, enum xembed_info flags)
8966 unsigned long data[2];
8967 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
8969 data[0] = XEMBED_VERSION;
8970 data[1] = flags;
8972 XChangeProperty (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
8973 dpyinfo->Xatom_XEMBED_INFO, dpyinfo->Xatom_XEMBED_INFO,
8974 32, PropModeReplace, (unsigned char *) data, 2);
8976 #endif /* defined USE_X_TOOLKIT || ! defined USE_GTK */
8978 static void
8979 xembed_send_message (struct frame *f, Time t, enum xembed_message msg,
8980 long int detail, long int data1, long int data2)
8982 XEvent event;
8984 event.xclient.type = ClientMessage;
8985 event.xclient.window = FRAME_X_OUTPUT (f)->parent_desc;
8986 event.xclient.message_type = FRAME_X_DISPLAY_INFO (f)->Xatom_XEMBED;
8987 event.xclient.format = 32;
8988 event.xclient.data.l[0] = t;
8989 event.xclient.data.l[1] = msg;
8990 event.xclient.data.l[2] = detail;
8991 event.xclient.data.l[3] = data1;
8992 event.xclient.data.l[4] = data2;
8994 XSendEvent (FRAME_X_DISPLAY (f), FRAME_X_OUTPUT (f)->parent_desc,
8995 False, NoEventMask, &event);
8996 XSync (FRAME_X_DISPLAY (f), False);
8999 /* Change of visibility. */
9001 /* This tries to wait until the frame is really visible.
9002 However, if the window manager asks the user where to position
9003 the frame, this will return before the user finishes doing that.
9004 The frame will not actually be visible at that time,
9005 but it will become visible later when the window manager
9006 finishes with it. */
9008 void
9009 x_make_frame_visible (struct frame *f)
9011 Lisp_Object type;
9012 int original_top, original_left;
9013 int retry_count = 2;
9015 retry:
9017 block_input ();
9019 type = x_icon_type (f);
9020 if (!NILP (type))
9021 x_bitmap_icon (f, type);
9023 if (! FRAME_VISIBLE_P (f))
9025 /* We test FRAME_GARBAGED_P here to make sure we don't
9026 call x_set_offset a second time
9027 if we get to x_make_frame_visible a second time
9028 before the window gets really visible. */
9029 if (! FRAME_ICONIFIED_P (f)
9030 && ! FRAME_X_EMBEDDED_P (f)
9031 && ! f->output_data.x->asked_for_visible)
9032 x_set_offset (f, f->left_pos, f->top_pos, 0);
9034 f->output_data.x->asked_for_visible = 1;
9036 if (! EQ (Vx_no_window_manager, Qt))
9037 x_wm_set_window_state (f, NormalState);
9038 #ifdef USE_X_TOOLKIT
9039 if (FRAME_X_EMBEDDED_P (f))
9040 xembed_set_info (f, XEMBED_MAPPED);
9041 else
9043 /* This was XtPopup, but that did nothing for an iconified frame. */
9044 XtMapWidget (f->output_data.x->widget);
9046 #else /* not USE_X_TOOLKIT */
9047 #ifdef USE_GTK
9048 gtk_widget_show_all (FRAME_GTK_OUTER_WIDGET (f));
9049 gtk_window_deiconify (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
9050 #else
9051 if (FRAME_X_EMBEDDED_P (f))
9052 xembed_set_info (f, XEMBED_MAPPED);
9053 else
9054 XMapRaised (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
9055 #endif /* not USE_GTK */
9056 #endif /* not USE_X_TOOLKIT */
9059 XFlush (FRAME_X_DISPLAY (f));
9061 /* Synchronize to ensure Emacs knows the frame is visible
9062 before we do anything else. We do this loop with input not blocked
9063 so that incoming events are handled. */
9065 Lisp_Object frame;
9066 int count;
9067 /* This must be before UNBLOCK_INPUT
9068 since events that arrive in response to the actions above
9069 will set it when they are handled. */
9070 int previously_visible = f->output_data.x->has_been_visible;
9072 original_left = f->left_pos;
9073 original_top = f->top_pos;
9075 /* This must come after we set COUNT. */
9076 unblock_input ();
9078 /* We unblock here so that arriving X events are processed. */
9080 /* Now move the window back to where it was "supposed to be".
9081 But don't do it if the gravity is negative.
9082 When the gravity is negative, this uses a position
9083 that is 3 pixels too low. Perhaps that's really the border width.
9085 Don't do this if the window has never been visible before,
9086 because the window manager may choose the position
9087 and we don't want to override it. */
9089 if (! FRAME_VISIBLE_P (f)
9090 && ! FRAME_ICONIFIED_P (f)
9091 && ! FRAME_X_EMBEDDED_P (f)
9092 && f->win_gravity == NorthWestGravity
9093 && previously_visible)
9095 Drawable rootw;
9096 int x, y;
9097 unsigned int width, height, border, depth;
9099 block_input ();
9101 /* On some window managers (such as FVWM) moving an existing
9102 window, even to the same place, causes the window manager
9103 to introduce an offset. This can cause the window to move
9104 to an unexpected location. Check the geometry (a little
9105 slow here) and then verify that the window is in the right
9106 place. If the window is not in the right place, move it
9107 there, and take the potential window manager hit. */
9108 XGetGeometry (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
9109 &rootw, &x, &y, &width, &height, &border, &depth);
9111 if (original_left != x || original_top != y)
9112 XMoveWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
9113 original_left, original_top);
9115 unblock_input ();
9118 XSETFRAME (frame, f);
9120 /* Wait until the frame is visible. Process X events until a
9121 MapNotify event has been seen, or until we think we won't get a
9122 MapNotify at all.. */
9123 for (count = input_signal_count + 10;
9124 input_signal_count < count && !FRAME_VISIBLE_P (f);)
9126 /* Force processing of queued events. */
9127 x_sync (f);
9129 /* Machines that do polling rather than SIGIO have been
9130 observed to go into a busy-wait here. So we'll fake an
9131 alarm signal to let the handler know that there's something
9132 to be read. We used to raise a real alarm, but it seems
9133 that the handler isn't always enabled here. This is
9134 probably a bug. */
9135 if (input_polling_used ())
9137 /* It could be confusing if a real alarm arrives while
9138 processing the fake one. Turn it off and let the
9139 handler reset it. */
9140 int old_poll_suppress_count = poll_suppress_count;
9141 poll_suppress_count = 1;
9142 poll_for_input_1 ();
9143 poll_suppress_count = old_poll_suppress_count;
9147 /* 2000-09-28: In
9149 (let ((f (selected-frame)))
9150 (iconify-frame f)
9151 (raise-frame f))
9153 the frame is not raised with various window managers on
9154 FreeBSD, GNU/Linux and Solaris. It turns out that, for some
9155 unknown reason, the call to XtMapWidget is completely ignored.
9156 Mapping the widget a second time works. */
9158 if (!FRAME_VISIBLE_P (f) && --retry_count != 0)
9159 goto retry;
9163 /* Change from mapped state to withdrawn state. */
9165 /* Make the frame visible (mapped and not iconified). */
9167 void
9168 x_make_frame_invisible (struct frame *f)
9170 Window window;
9172 /* Use the frame's outermost window, not the one we normally draw on. */
9173 window = FRAME_OUTER_WINDOW (f);
9175 /* Don't keep the highlight on an invisible frame. */
9176 if (FRAME_X_DISPLAY_INFO (f)->x_highlight_frame == f)
9177 FRAME_X_DISPLAY_INFO (f)->x_highlight_frame = 0;
9179 block_input ();
9181 /* Before unmapping the window, update the WM_SIZE_HINTS property to claim
9182 that the current position of the window is user-specified, rather than
9183 program-specified, so that when the window is mapped again, it will be
9184 placed at the same location, without forcing the user to position it
9185 by hand again (they have already done that once for this window.) */
9186 x_wm_set_size_hint (f, (long) 0, 1);
9188 #ifdef USE_GTK
9189 if (FRAME_GTK_OUTER_WIDGET (f))
9190 gtk_widget_hide (FRAME_GTK_OUTER_WIDGET (f));
9191 else
9192 #else
9193 if (FRAME_X_EMBEDDED_P (f))
9194 xembed_set_info (f, 0);
9195 else
9196 #endif
9199 if (! XWithdrawWindow (FRAME_X_DISPLAY (f), window,
9200 DefaultScreen (FRAME_X_DISPLAY (f))))
9202 unblock_input ();
9203 error ("Can't notify window manager of window withdrawal");
9207 /* We can't distinguish this from iconification
9208 just by the event that we get from the server.
9209 So we can't win using the usual strategy of letting
9210 FRAME_SAMPLE_VISIBILITY set this. So do it by hand,
9211 and synchronize with the server to make sure we agree. */
9212 SET_FRAME_VISIBLE (f, 0);
9213 SET_FRAME_ICONIFIED (f, 0);
9215 x_sync (f);
9217 unblock_input ();
9220 /* Change window state from mapped to iconified. */
9222 void
9223 x_iconify_frame (struct frame *f)
9225 #ifdef USE_X_TOOLKIT
9226 int result;
9227 #endif
9228 Lisp_Object type;
9230 /* Don't keep the highlight on an invisible frame. */
9231 if (FRAME_X_DISPLAY_INFO (f)->x_highlight_frame == f)
9232 FRAME_X_DISPLAY_INFO (f)->x_highlight_frame = 0;
9234 if (FRAME_ICONIFIED_P (f))
9235 return;
9237 block_input ();
9239 type = x_icon_type (f);
9240 if (!NILP (type))
9241 x_bitmap_icon (f, type);
9243 #if defined (USE_GTK)
9244 if (FRAME_GTK_OUTER_WIDGET (f))
9246 if (! FRAME_VISIBLE_P (f))
9247 gtk_widget_show_all (FRAME_GTK_OUTER_WIDGET (f));
9249 gtk_window_iconify (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
9250 SET_FRAME_VISIBLE (f, 0);
9251 SET_FRAME_ICONIFIED (f, 1);
9252 unblock_input ();
9253 return;
9255 #endif
9257 #ifdef USE_X_TOOLKIT
9259 if (! FRAME_VISIBLE_P (f))
9261 if (! EQ (Vx_no_window_manager, Qt))
9262 x_wm_set_window_state (f, IconicState);
9263 /* This was XtPopup, but that did nothing for an iconified frame. */
9264 XtMapWidget (f->output_data.x->widget);
9265 /* The server won't give us any event to indicate
9266 that an invisible frame was changed to an icon,
9267 so we have to record it here. */
9268 SET_FRAME_VISIBLE (f, 0);
9269 SET_FRAME_ICONIFIED (f, 1);
9270 unblock_input ();
9271 return;
9274 result = XIconifyWindow (FRAME_X_DISPLAY (f),
9275 XtWindow (f->output_data.x->widget),
9276 DefaultScreen (FRAME_X_DISPLAY (f)));
9277 unblock_input ();
9279 if (!result)
9280 error ("Can't notify window manager of iconification");
9282 SET_FRAME_ICONIFIED (f, 1);
9283 SET_FRAME_VISIBLE (f, 0);
9285 block_input ();
9286 XFlush (FRAME_X_DISPLAY (f));
9287 unblock_input ();
9288 #else /* not USE_X_TOOLKIT */
9290 /* Make sure the X server knows where the window should be positioned,
9291 in case the user deiconifies with the window manager. */
9292 if (! FRAME_VISIBLE_P (f)
9293 && ! FRAME_ICONIFIED_P (f)
9294 && ! FRAME_X_EMBEDDED_P (f))
9295 x_set_offset (f, f->left_pos, f->top_pos, 0);
9297 /* Since we don't know which revision of X we're running, we'll use both
9298 the X11R3 and X11R4 techniques. I don't know if this is a good idea. */
9300 /* X11R4: send a ClientMessage to the window manager using the
9301 WM_CHANGE_STATE type. */
9303 XEvent msg;
9305 msg.xclient.window = FRAME_X_WINDOW (f);
9306 msg.xclient.type = ClientMessage;
9307 msg.xclient.message_type = FRAME_X_DISPLAY_INFO (f)->Xatom_wm_change_state;
9308 msg.xclient.format = 32;
9309 msg.xclient.data.l[0] = IconicState;
9311 if (! XSendEvent (FRAME_X_DISPLAY (f),
9312 DefaultRootWindow (FRAME_X_DISPLAY (f)),
9313 False,
9314 SubstructureRedirectMask | SubstructureNotifyMask,
9315 &msg))
9317 unblock_input ();
9318 error ("Can't notify window manager of iconification");
9322 /* X11R3: set the initial_state field of the window manager hints to
9323 IconicState. */
9324 x_wm_set_window_state (f, IconicState);
9326 if (!FRAME_VISIBLE_P (f))
9328 /* If the frame was withdrawn, before, we must map it. */
9329 XMapRaised (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
9332 SET_FRAME_ICONIFIED (f, 1);
9333 SET_FRAME_VISIBLE (f, 0);
9335 XFlush (FRAME_X_DISPLAY (f));
9336 unblock_input ();
9337 #endif /* not USE_X_TOOLKIT */
9341 /* Free X resources of frame F. */
9343 void
9344 x_free_frame_resources (struct frame *f)
9346 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
9347 Mouse_HLInfo *hlinfo = &dpyinfo->mouse_highlight;
9348 #ifdef USE_X_TOOLKIT
9349 Lisp_Object bar;
9350 struct scroll_bar *b;
9351 #endif
9353 block_input ();
9355 /* If a display connection is dead, don't try sending more
9356 commands to the X server. */
9357 if (dpyinfo->display)
9359 /* We must free faces before destroying windows because some
9360 font-driver (e.g. xft) access a window while finishing a
9361 face. */
9362 if (FRAME_FACE_CACHE (f))
9363 free_frame_faces (f);
9365 if (f->output_data.x->icon_desc)
9366 XDestroyWindow (FRAME_X_DISPLAY (f), f->output_data.x->icon_desc);
9368 #ifdef USE_X_TOOLKIT
9369 /* Explicitly destroy the scroll bars of the frame. Without
9370 this, we get "BadDrawable" errors from the toolkit later on,
9371 presumably from expose events generated for the disappearing
9372 toolkit scroll bars. */
9373 for (bar = FRAME_SCROLL_BARS (f); !NILP (bar); bar = b->next)
9375 b = XSCROLL_BAR (bar);
9376 x_scroll_bar_remove (b);
9378 #endif
9380 #ifdef HAVE_X_I18N
9381 if (FRAME_XIC (f))
9382 free_frame_xic (f);
9383 #endif
9385 #ifdef USE_X_TOOLKIT
9386 if (f->output_data.x->widget)
9388 XtDestroyWidget (f->output_data.x->widget);
9389 f->output_data.x->widget = NULL;
9391 /* Tooltips don't have widgets, only a simple X window, even if
9392 we are using a toolkit. */
9393 else if (FRAME_X_WINDOW (f))
9394 XDestroyWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
9396 free_frame_menubar (f);
9397 #else /* !USE_X_TOOLKIT */
9399 #ifdef USE_GTK
9400 xg_free_frame_widgets (f);
9401 #endif /* USE_GTK */
9403 if (FRAME_X_WINDOW (f))
9404 XDestroyWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
9405 #endif /* !USE_X_TOOLKIT */
9407 unload_color (f, FRAME_FOREGROUND_PIXEL (f));
9408 unload_color (f, FRAME_BACKGROUND_PIXEL (f));
9409 unload_color (f, f->output_data.x->cursor_pixel);
9410 unload_color (f, f->output_data.x->cursor_foreground_pixel);
9411 unload_color (f, f->output_data.x->border_pixel);
9412 unload_color (f, f->output_data.x->mouse_pixel);
9414 if (f->output_data.x->scroll_bar_background_pixel != -1)
9415 unload_color (f, f->output_data.x->scroll_bar_background_pixel);
9416 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
9417 unload_color (f, f->output_data.x->scroll_bar_foreground_pixel);
9418 #ifdef USE_TOOLKIT_SCROLL_BARS
9419 /* Scrollbar shadow colors. */
9420 if (f->output_data.x->scroll_bar_top_shadow_pixel != -1)
9421 unload_color (f, f->output_data.x->scroll_bar_top_shadow_pixel);
9422 if (f->output_data.x->scroll_bar_bottom_shadow_pixel != -1)
9423 unload_color (f, f->output_data.x->scroll_bar_bottom_shadow_pixel);
9424 #endif /* USE_TOOLKIT_SCROLL_BARS */
9425 if (f->output_data.x->white_relief.allocated_p)
9426 unload_color (f, f->output_data.x->white_relief.pixel);
9427 if (f->output_data.x->black_relief.allocated_p)
9428 unload_color (f, f->output_data.x->black_relief.pixel);
9430 x_free_gcs (f);
9432 /* Free extra GCs allocated by x_setup_relief_colors. */
9433 if (f->output_data.x->white_relief.gc)
9435 XFreeGC (dpyinfo->display, f->output_data.x->white_relief.gc);
9436 f->output_data.x->white_relief.gc = 0;
9438 if (f->output_data.x->black_relief.gc)
9440 XFreeGC (dpyinfo->display, f->output_data.x->black_relief.gc);
9441 f->output_data.x->black_relief.gc = 0;
9444 XFlush (FRAME_X_DISPLAY (f));
9447 xfree (f->output_data.x->saved_menu_event);
9448 xfree (f->output_data.x);
9449 f->output_data.x = NULL;
9451 if (f == dpyinfo->x_focus_frame)
9452 dpyinfo->x_focus_frame = 0;
9453 if (f == dpyinfo->x_focus_event_frame)
9454 dpyinfo->x_focus_event_frame = 0;
9455 if (f == dpyinfo->x_highlight_frame)
9456 dpyinfo->x_highlight_frame = 0;
9458 if (f == hlinfo->mouse_face_mouse_frame)
9460 hlinfo->mouse_face_beg_row
9461 = hlinfo->mouse_face_beg_col = -1;
9462 hlinfo->mouse_face_end_row
9463 = hlinfo->mouse_face_end_col = -1;
9464 hlinfo->mouse_face_window = Qnil;
9465 hlinfo->mouse_face_mouse_frame = 0;
9468 unblock_input ();
9472 /* Destroy the X window of frame F. */
9474 static void
9475 x_destroy_window (struct frame *f)
9477 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
9479 /* If a display connection is dead, don't try sending more
9480 commands to the X server. */
9481 if (dpyinfo->display != 0)
9482 x_free_frame_resources (f);
9484 dpyinfo->reference_count--;
9488 /* Setting window manager hints. */
9490 /* Set the normal size hints for the window manager, for frame F.
9491 FLAGS is the flags word to use--or 0 meaning preserve the flags
9492 that the window now has.
9493 If USER_POSITION, set the USPosition
9494 flag (this is useful when FLAGS is 0).
9495 The GTK version is in gtkutils.c. */
9497 #ifndef USE_GTK
9498 void
9499 x_wm_set_size_hint (struct frame *f, long flags, bool user_position)
9501 XSizeHints size_hints;
9502 Window window = FRAME_OUTER_WINDOW (f);
9504 #ifdef USE_X_TOOLKIT
9505 if (f->output_data.x->widget)
9507 widget_update_wm_size_hints (f->output_data.x->widget);
9508 return;
9510 #endif
9512 /* Setting PMaxSize caused various problems. */
9513 size_hints.flags = PResizeInc | PMinSize /* | PMaxSize */;
9515 size_hints.x = f->left_pos;
9516 size_hints.y = f->top_pos;
9518 size_hints.height = FRAME_PIXEL_HEIGHT (f);
9519 size_hints.width = FRAME_PIXEL_WIDTH (f);
9521 size_hints.width_inc = FRAME_COLUMN_WIDTH (f);
9522 size_hints.height_inc = FRAME_LINE_HEIGHT (f);
9523 size_hints.max_width = x_display_pixel_width (FRAME_X_DISPLAY_INFO (f))
9524 - FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, 0);
9525 size_hints.max_height = x_display_pixel_height (FRAME_X_DISPLAY_INFO (f))
9526 - FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, 0);
9528 /* Calculate the base and minimum sizes. */
9530 int base_width, base_height;
9531 int min_rows = 0, min_cols = 0;
9533 base_width = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, 0);
9534 base_height = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, 0);
9536 check_frame_size (f, &min_rows, &min_cols);
9538 /* The window manager uses the base width hints to calculate the
9539 current number of rows and columns in the frame while
9540 resizing; min_width and min_height aren't useful for this
9541 purpose, since they might not give the dimensions for a
9542 zero-row, zero-column frame.
9544 We use the base_width and base_height members if we have
9545 them; otherwise, we set the min_width and min_height members
9546 to the size for a zero x zero frame. */
9548 size_hints.flags |= PBaseSize;
9549 size_hints.base_width = base_width;
9550 size_hints.base_height = base_height + FRAME_MENUBAR_HEIGHT (f);
9551 size_hints.min_width = base_width + min_cols * size_hints.width_inc;
9552 size_hints.min_height = base_height + min_rows * size_hints.height_inc;
9555 /* If we don't need the old flags, we don't need the old hint at all. */
9556 if (flags)
9558 size_hints.flags |= flags;
9559 goto no_read;
9563 XSizeHints hints; /* Sometimes I hate X Windows... */
9564 long supplied_return;
9565 int value;
9567 value = XGetWMNormalHints (FRAME_X_DISPLAY (f), window, &hints,
9568 &supplied_return);
9570 if (flags)
9571 size_hints.flags |= flags;
9572 else
9574 if (value == 0)
9575 hints.flags = 0;
9576 if (hints.flags & PSize)
9577 size_hints.flags |= PSize;
9578 if (hints.flags & PPosition)
9579 size_hints.flags |= PPosition;
9580 if (hints.flags & USPosition)
9581 size_hints.flags |= USPosition;
9582 if (hints.flags & USSize)
9583 size_hints.flags |= USSize;
9587 no_read:
9589 #ifdef PWinGravity
9590 size_hints.win_gravity = f->win_gravity;
9591 size_hints.flags |= PWinGravity;
9593 if (user_position)
9595 size_hints.flags &= ~ PPosition;
9596 size_hints.flags |= USPosition;
9598 #endif /* PWinGravity */
9600 XSetWMNormalHints (FRAME_X_DISPLAY (f), window, &size_hints);
9602 #endif /* not USE_GTK */
9604 /* Used for IconicState or NormalState */
9606 static void
9607 x_wm_set_window_state (struct frame *f, int state)
9609 #ifdef USE_X_TOOLKIT
9610 Arg al[1];
9612 XtSetArg (al[0], XtNinitialState, state);
9613 XtSetValues (f->output_data.x->widget, al, 1);
9614 #else /* not USE_X_TOOLKIT */
9615 Window window = FRAME_X_WINDOW (f);
9617 f->output_data.x->wm_hints.flags |= StateHint;
9618 f->output_data.x->wm_hints.initial_state = state;
9620 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints);
9621 #endif /* not USE_X_TOOLKIT */
9624 static void
9625 x_wm_set_icon_pixmap (struct frame *f, ptrdiff_t pixmap_id)
9627 Pixmap icon_pixmap, icon_mask;
9629 #if !defined USE_X_TOOLKIT && !defined USE_GTK
9630 Window window = FRAME_OUTER_WINDOW (f);
9631 #endif
9633 if (pixmap_id > 0)
9635 icon_pixmap = x_bitmap_pixmap (f, pixmap_id);
9636 f->output_data.x->wm_hints.icon_pixmap = icon_pixmap;
9637 icon_mask = x_bitmap_mask (f, pixmap_id);
9638 f->output_data.x->wm_hints.icon_mask = icon_mask;
9640 else
9642 /* It seems there is no way to turn off use of an icon
9643 pixmap. */
9644 return;
9648 #ifdef USE_GTK
9650 xg_set_frame_icon (f, icon_pixmap, icon_mask);
9651 return;
9654 #elif defined (USE_X_TOOLKIT) /* same as in x_wm_set_window_state. */
9657 Arg al[1];
9658 XtSetArg (al[0], XtNiconPixmap, icon_pixmap);
9659 XtSetValues (f->output_data.x->widget, al, 1);
9660 XtSetArg (al[0], XtNiconMask, icon_mask);
9661 XtSetValues (f->output_data.x->widget, al, 1);
9664 #else /* not USE_X_TOOLKIT && not USE_GTK */
9666 f->output_data.x->wm_hints.flags |= (IconPixmapHint | IconMaskHint);
9667 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints);
9669 #endif /* not USE_X_TOOLKIT && not USE_GTK */
9672 void
9673 x_wm_set_icon_position (struct frame *f, int icon_x, int icon_y)
9675 Window window = FRAME_OUTER_WINDOW (f);
9677 f->output_data.x->wm_hints.flags |= IconPositionHint;
9678 f->output_data.x->wm_hints.icon_x = icon_x;
9679 f->output_data.x->wm_hints.icon_y = icon_y;
9681 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints);
9685 /***********************************************************************
9686 Fonts
9687 ***********************************************************************/
9689 #ifdef GLYPH_DEBUG
9691 /* Check that FONT is valid on frame F. It is if it can be found in F's
9692 font table. */
9694 static void
9695 x_check_font (struct frame *f, struct font *font)
9697 eassert (font != NULL && ! NILP (font->props[FONT_TYPE_INDEX]));
9698 if (font->driver->check)
9699 eassert (font->driver->check (f, font) == 0);
9702 #endif /* GLYPH_DEBUG */
9705 /***********************************************************************
9706 Initialization
9707 ***********************************************************************/
9709 #ifdef USE_X_TOOLKIT
9710 static XrmOptionDescRec emacs_options[] = {
9711 {"-geometry", ".geometry", XrmoptionSepArg, NULL},
9712 {"-iconic", ".iconic", XrmoptionNoArg, (XtPointer) "yes"},
9714 {"-internal-border-width", "*EmacsScreen.internalBorderWidth",
9715 XrmoptionSepArg, NULL},
9716 {"-ib", "*EmacsScreen.internalBorderWidth", XrmoptionSepArg, NULL},
9718 {"-T", "*EmacsShell.title", XrmoptionSepArg, (XtPointer) NULL},
9719 {"-wn", "*EmacsShell.title", XrmoptionSepArg, (XtPointer) NULL},
9720 {"-title", "*EmacsShell.title", XrmoptionSepArg, (XtPointer) NULL},
9721 {"-iconname", "*EmacsShell.iconName", XrmoptionSepArg, (XtPointer) NULL},
9722 {"-in", "*EmacsShell.iconName", XrmoptionSepArg, (XtPointer) NULL},
9723 {"-mc", "*pointerColor", XrmoptionSepArg, (XtPointer) NULL},
9724 {"-cr", "*cursorColor", XrmoptionSepArg, (XtPointer) NULL}
9727 /* Whether atimer for Xt timeouts is activated or not. */
9729 static int x_timeout_atimer_activated_flag;
9731 #endif /* USE_X_TOOLKIT */
9733 static int x_initialized;
9735 /* Test whether two display-name strings agree up to the dot that separates
9736 the screen number from the server number. */
9737 static int
9738 same_x_server (const char *name1, const char *name2)
9740 int seen_colon = 0;
9741 const char *system_name = SSDATA (Vsystem_name);
9742 ptrdiff_t system_name_length = SBYTES (Vsystem_name);
9743 ptrdiff_t length_until_period = 0;
9745 while (system_name[length_until_period] != 0
9746 && system_name[length_until_period] != '.')
9747 length_until_period++;
9749 /* Treat `unix' like an empty host name. */
9750 if (! strncmp (name1, "unix:", 5))
9751 name1 += 4;
9752 if (! strncmp (name2, "unix:", 5))
9753 name2 += 4;
9754 /* Treat this host's name like an empty host name. */
9755 if (! strncmp (name1, system_name, system_name_length)
9756 && name1[system_name_length] == ':')
9757 name1 += system_name_length;
9758 if (! strncmp (name2, system_name, system_name_length)
9759 && name2[system_name_length] == ':')
9760 name2 += system_name_length;
9761 /* Treat this host's domainless name like an empty host name. */
9762 if (! strncmp (name1, system_name, length_until_period)
9763 && name1[length_until_period] == ':')
9764 name1 += length_until_period;
9765 if (! strncmp (name2, system_name, length_until_period)
9766 && name2[length_until_period] == ':')
9767 name2 += length_until_period;
9769 for (; *name1 != '\0' && *name1 == *name2; name1++, name2++)
9771 if (*name1 == ':')
9772 seen_colon = 1;
9773 if (seen_colon && *name1 == '.')
9774 return 1;
9776 return (seen_colon
9777 && (*name1 == '.' || *name1 == '\0')
9778 && (*name2 == '.' || *name2 == '\0'));
9781 /* Count number of set bits in mask and number of bits to shift to
9782 get to the first bit. With MASK 0x7e0, *BITS is set to 6, and *OFFSET
9783 to 5. */
9784 static void
9785 get_bits_and_offset (long unsigned int mask, int *bits, int *offset)
9787 int nr = 0;
9788 int off = 0;
9790 while (!(mask & 1))
9792 off++;
9793 mask >>= 1;
9796 while (mask & 1)
9798 nr++;
9799 mask >>= 1;
9802 *offset = off;
9803 *bits = nr;
9806 /* Return 1 if display DISPLAY is available for use, 0 otherwise.
9807 But don't permanently open it, just test its availability. */
9809 bool
9810 x_display_ok (const char *display)
9812 Display *dpy = XOpenDisplay (display);
9813 return dpy ? (XCloseDisplay (dpy), 1) : 0;
9816 #ifdef USE_GTK
9817 static void
9818 my_log_handler (const gchar *log_domain, GLogLevelFlags log_level,
9819 const gchar *msg, gpointer user_data)
9821 if (!strstr (msg, "g_set_prgname"))
9822 fprintf (stderr, "%s-WARNING **: %s\n", log_domain, msg);
9824 #endif
9826 /* Open a connection to X display DISPLAY_NAME, and return
9827 the structure that describes the open display.
9828 If we cannot contact the display, return null. */
9830 struct x_display_info *
9831 x_term_init (Lisp_Object display_name, char *xrm_option, char *resource_name)
9833 int connection;
9834 Display *dpy;
9835 struct terminal *terminal;
9836 struct x_display_info *dpyinfo;
9837 XrmDatabase xrdb;
9838 Mouse_HLInfo *hlinfo;
9839 ptrdiff_t lim;
9841 block_input ();
9843 if (!x_initialized)
9845 x_initialize ();
9846 ++x_initialized;
9849 if (! x_display_ok (SSDATA (display_name)))
9850 error ("Display %s can't be opened", SSDATA (display_name));
9852 #ifdef USE_GTK
9854 #define NUM_ARGV 10
9855 int argc;
9856 char *argv[NUM_ARGV];
9857 char **argv2 = argv;
9858 guint id;
9860 if (x_initialized++ > 1)
9862 xg_display_open (SSDATA (display_name), &dpy);
9864 else
9866 static char display_opt[] = "--display";
9867 static char name_opt[] = "--name";
9869 for (argc = 0; argc < NUM_ARGV; ++argc)
9870 argv[argc] = 0;
9872 argc = 0;
9873 argv[argc++] = initial_argv[0];
9875 if (! NILP (display_name))
9877 argv[argc++] = display_opt;
9878 argv[argc++] = SSDATA (display_name);
9881 argv[argc++] = name_opt;
9882 argv[argc++] = resource_name;
9884 XSetLocaleModifiers ("");
9886 /* Emacs can only handle core input events, so make sure
9887 Gtk doesn't use Xinput or Xinput2 extensions. */
9888 xputenv ("GDK_CORE_DEVICE_EVENTS=1");
9890 /* Work around GLib bug that outputs a faulty warning. See
9891 https://bugzilla.gnome.org/show_bug.cgi?id=563627. */
9892 id = g_log_set_handler ("GLib", G_LOG_LEVEL_WARNING | G_LOG_FLAG_FATAL
9893 | G_LOG_FLAG_RECURSION, my_log_handler, NULL);
9895 /* NULL window -> events for all windows go to our function.
9896 Call before gtk_init so Gtk+ event filters comes after our. */
9897 gdk_window_add_filter (NULL, event_handler_gdk, NULL);
9899 /* gtk_init does set_locale. Fix locale before and after. */
9900 fixup_locale ();
9901 gtk_init (&argc, &argv2);
9902 fixup_locale ();
9904 g_log_remove_handler ("GLib", id);
9906 xg_initialize ();
9908 dpy = DEFAULT_GDK_DISPLAY ();
9910 #if ! GTK_CHECK_VERSION (2, 90, 0)
9911 /* Load our own gtkrc if it exists. */
9913 const char *file = "~/.emacs.d/gtkrc";
9914 Lisp_Object s, abs_file;
9916 s = build_string (file);
9917 abs_file = Fexpand_file_name (s, Qnil);
9919 if (! NILP (abs_file) && !NILP (Ffile_readable_p (abs_file)))
9920 gtk_rc_parse (SSDATA (abs_file));
9922 #endif
9924 XSetErrorHandler (x_error_handler);
9925 XSetIOErrorHandler (x_io_error_quitter);
9928 #else /* not USE_GTK */
9929 #ifdef USE_X_TOOLKIT
9930 /* weiner@footloose.sps.mot.com reports that this causes
9931 errors with X11R5:
9932 X protocol error: BadAtom (invalid Atom parameter)
9933 on protocol request 18skiloaf.
9934 So let's not use it until R6. */
9935 #ifdef HAVE_X11XTR6
9936 XtSetLanguageProc (NULL, NULL, NULL);
9937 #endif
9940 int argc = 0;
9941 char *argv[3];
9943 argv[0] = "";
9944 argc = 1;
9945 if (xrm_option)
9947 argv[argc++] = "-xrm";
9948 argv[argc++] = xrm_option;
9950 turn_on_atimers (0);
9951 dpy = XtOpenDisplay (Xt_app_con, SSDATA (display_name),
9952 resource_name, EMACS_CLASS,
9953 emacs_options, XtNumber (emacs_options),
9954 &argc, argv);
9955 turn_on_atimers (1);
9957 #ifdef HAVE_X11XTR6
9958 /* I think this is to compensate for XtSetLanguageProc. */
9959 fixup_locale ();
9960 #endif
9963 #else /* not USE_X_TOOLKIT */
9964 XSetLocaleModifiers ("");
9965 dpy = XOpenDisplay (SSDATA (display_name));
9966 #endif /* not USE_X_TOOLKIT */
9967 #endif /* not USE_GTK*/
9969 /* Detect failure. */
9970 if (dpy == 0)
9972 unblock_input ();
9973 return 0;
9976 /* We have definitely succeeded. Record the new connection. */
9978 dpyinfo = xzalloc (sizeof *dpyinfo);
9979 hlinfo = &dpyinfo->mouse_highlight;
9981 terminal = x_create_terminal (dpyinfo);
9984 struct x_display_info *share;
9985 Lisp_Object tail;
9987 for (share = x_display_list, tail = x_display_name_list; share;
9988 share = share->next, tail = XCDR (tail))
9989 if (same_x_server (SSDATA (XCAR (XCAR (tail))),
9990 SSDATA (display_name)))
9991 break;
9992 if (share)
9993 terminal->kboard = share->terminal->kboard;
9994 else
9996 terminal->kboard = xmalloc (sizeof *terminal->kboard);
9997 init_kboard (terminal->kboard);
9998 kset_window_system (terminal->kboard, Qx);
10000 /* Add the keyboard to the list before running Lisp code (via
10001 Qvendor_specific_keysyms below), since these are not traced
10002 via terminals but only through all_kboards. */
10003 terminal->kboard->next_kboard = all_kboards;
10004 all_kboards = terminal->kboard;
10006 if (!EQ (XSYMBOL (Qvendor_specific_keysyms)->function, Qunbound))
10008 char *vendor = ServerVendor (dpy);
10010 /* Protect terminal from GC before removing it from the
10011 list of terminals. */
10012 struct gcpro gcpro1;
10013 Lisp_Object gcpro_term;
10014 XSETTERMINAL (gcpro_term, terminal);
10015 GCPRO1 (gcpro_term);
10017 /* Temporarily hide the partially initialized terminal. */
10018 terminal_list = terminal->next_terminal;
10019 unblock_input ();
10020 kset_system_key_alist
10021 (terminal->kboard,
10022 call1 (Qvendor_specific_keysyms,
10023 vendor ? build_string (vendor) : empty_unibyte_string));
10024 block_input ();
10025 terminal->next_terminal = terminal_list;
10026 terminal_list = terminal;
10027 UNGCPRO;
10030 /* Don't let the initial kboard remain current longer than necessary.
10031 That would cause problems if a file loaded on startup tries to
10032 prompt in the mini-buffer. */
10033 if (current_kboard == initial_kboard)
10034 current_kboard = terminal->kboard;
10036 terminal->kboard->reference_count++;
10039 /* Put this display on the chain. */
10040 dpyinfo->next = x_display_list;
10041 x_display_list = dpyinfo;
10043 /* Put it on x_display_name_list as well, to keep them parallel. */
10044 x_display_name_list = Fcons (Fcons (display_name, Qnil),
10045 x_display_name_list);
10046 dpyinfo->name_list_element = XCAR (x_display_name_list);
10048 dpyinfo->display = dpy;
10050 /* Set the name of the terminal. */
10051 terminal->name = xmalloc (SBYTES (display_name) + 1);
10052 memcpy (terminal->name, SSDATA (display_name), SBYTES (display_name));
10053 terminal->name[SBYTES (display_name)] = 0;
10055 #if 0
10056 XSetAfterFunction (x_current_display, x_trace_wire);
10057 #endif /* ! 0 */
10059 lim = min (PTRDIFF_MAX, SIZE_MAX) - sizeof "@";
10060 if (lim - SBYTES (Vinvocation_name) < SBYTES (Vsystem_name))
10061 memory_full (SIZE_MAX);
10062 dpyinfo->x_id_name = xmalloc (SBYTES (Vinvocation_name)
10063 + SBYTES (Vsystem_name) + 2);
10064 strcat (strcat (strcpy (dpyinfo->x_id_name, SSDATA (Vinvocation_name)), "@"),
10065 SSDATA (Vsystem_name));
10067 /* Figure out which modifier bits mean what. */
10068 x_find_modifier_meanings (dpyinfo);
10070 /* Get the scroll bar cursor. */
10071 #ifdef USE_GTK
10072 /* We must create a GTK cursor, it is required for GTK widgets. */
10073 dpyinfo->xg_cursor = xg_create_default_cursor (dpyinfo->display);
10074 #endif /* USE_GTK */
10076 dpyinfo->vertical_scroll_bar_cursor
10077 = XCreateFontCursor (dpyinfo->display, XC_sb_v_double_arrow);
10079 xrdb = x_load_resources (dpyinfo->display, xrm_option,
10080 resource_name, EMACS_CLASS);
10081 #ifdef HAVE_XRMSETDATABASE
10082 XrmSetDatabase (dpyinfo->display, xrdb);
10083 #else
10084 dpyinfo->display->db = xrdb;
10085 #endif
10086 /* Put the rdb where we can find it in a way that works on
10087 all versions. */
10088 dpyinfo->xrdb = xrdb;
10090 dpyinfo->screen = ScreenOfDisplay (dpyinfo->display,
10091 DefaultScreen (dpyinfo->display));
10092 select_visual (dpyinfo);
10093 dpyinfo->cmap = DefaultColormapOfScreen (dpyinfo->screen);
10094 dpyinfo->root_window = RootWindowOfScreen (dpyinfo->screen);
10095 dpyinfo->client_leader_window = 0;
10096 dpyinfo->grabbed = 0;
10097 dpyinfo->reference_count = 0;
10098 dpyinfo->icon_bitmap_id = -1;
10099 dpyinfo->n_fonts = 0;
10100 dpyinfo->bitmaps = 0;
10101 dpyinfo->bitmaps_size = 0;
10102 dpyinfo->bitmaps_last = 0;
10103 dpyinfo->scratch_cursor_gc = 0;
10104 hlinfo->mouse_face_mouse_frame = 0;
10105 hlinfo->mouse_face_beg_row = hlinfo->mouse_face_beg_col = -1;
10106 hlinfo->mouse_face_end_row = hlinfo->mouse_face_end_col = -1;
10107 hlinfo->mouse_face_face_id = DEFAULT_FACE_ID;
10108 hlinfo->mouse_face_window = Qnil;
10109 hlinfo->mouse_face_overlay = Qnil;
10110 hlinfo->mouse_face_mouse_x = hlinfo->mouse_face_mouse_y = 0;
10111 hlinfo->mouse_face_defer = 0;
10112 hlinfo->mouse_face_hidden = 0;
10113 dpyinfo->x_focus_frame = 0;
10114 dpyinfo->x_focus_event_frame = 0;
10115 dpyinfo->x_highlight_frame = 0;
10116 dpyinfo->wm_type = X_WMTYPE_UNKNOWN;
10118 /* See if we can construct pixel values from RGB values. */
10119 dpyinfo->red_bits = dpyinfo->blue_bits = dpyinfo->green_bits = 0;
10120 dpyinfo->red_offset = dpyinfo->blue_offset = dpyinfo->green_offset = 0;
10122 if (dpyinfo->visual->class == TrueColor)
10124 get_bits_and_offset (dpyinfo->visual->red_mask,
10125 &dpyinfo->red_bits, &dpyinfo->red_offset);
10126 get_bits_and_offset (dpyinfo->visual->blue_mask,
10127 &dpyinfo->blue_bits, &dpyinfo->blue_offset);
10128 get_bits_and_offset (dpyinfo->visual->green_mask,
10129 &dpyinfo->green_bits, &dpyinfo->green_offset);
10132 /* See if a private colormap is requested. */
10133 if (dpyinfo->visual == DefaultVisualOfScreen (dpyinfo->screen))
10135 if (dpyinfo->visual->class == PseudoColor)
10137 Lisp_Object value;
10138 value = display_x_get_resource (dpyinfo,
10139 build_string ("privateColormap"),
10140 build_string ("PrivateColormap"),
10141 Qnil, Qnil);
10142 if (STRINGP (value)
10143 && (!strcmp (SSDATA (value), "true")
10144 || !strcmp (SSDATA (value), "on")))
10145 dpyinfo->cmap = XCopyColormapAndFree (dpyinfo->display, dpyinfo->cmap);
10148 else
10149 dpyinfo->cmap = XCreateColormap (dpyinfo->display, dpyinfo->root_window,
10150 dpyinfo->visual, AllocNone);
10152 #ifdef HAVE_XFT
10154 /* If we are using Xft, check dpi value in X resources.
10155 It is better we use it as well, since Xft will use it, as will all
10156 Gnome applications. If our real DPI is smaller or larger than the
10157 one Xft uses, our font will look smaller or larger than other
10158 for other applications, even if it is the same font name (monospace-10
10159 for example). */
10160 char *v = XGetDefault (dpyinfo->display, "Xft", "dpi");
10161 double d;
10162 if (v != NULL && sscanf (v, "%lf", &d) == 1)
10163 dpyinfo->resy = dpyinfo->resx = d;
10165 #endif
10167 if (dpyinfo->resy < 1)
10169 int screen_number = XScreenNumberOfScreen (dpyinfo->screen);
10170 double pixels = DisplayHeight (dpyinfo->display, screen_number);
10171 double mm = DisplayHeightMM (dpyinfo->display, screen_number);
10172 /* Mac OS X 10.3's Xserver sometimes reports 0.0mm. */
10173 dpyinfo->resy = (mm < 1) ? 100 : pixels * 25.4 / mm;
10174 pixels = DisplayWidth (dpyinfo->display, screen_number);
10175 mm = DisplayWidthMM (dpyinfo->display, screen_number);
10176 /* Mac OS X 10.3's Xserver sometimes reports 0.0mm. */
10177 dpyinfo->resx = (mm < 1) ? 100 : pixels * 25.4 / mm;
10181 static const struct
10183 const char *name;
10184 int offset;
10185 } atom_refs[] = {
10186 #define ATOM_REFS_INIT(string, member) \
10187 { string, offsetof (struct x_display_info, member) },
10188 ATOM_REFS_INIT ("WM_PROTOCOLS", Xatom_wm_protocols)
10189 ATOM_REFS_INIT ("WM_TAKE_FOCUS", Xatom_wm_take_focus)
10190 ATOM_REFS_INIT ("WM_SAVE_YOURSELF", Xatom_wm_save_yourself)
10191 ATOM_REFS_INIT ("WM_DELETE_WINDOW", Xatom_wm_delete_window)
10192 ATOM_REFS_INIT ("WM_CHANGE_STATE", Xatom_wm_change_state)
10193 ATOM_REFS_INIT ("WM_CONFIGURE_DENIED", Xatom_wm_configure_denied)
10194 ATOM_REFS_INIT ("WM_MOVED", Xatom_wm_window_moved)
10195 ATOM_REFS_INIT ("WM_CLIENT_LEADER", Xatom_wm_client_leader)
10196 ATOM_REFS_INIT ("Editres", Xatom_editres)
10197 ATOM_REFS_INIT ("CLIPBOARD", Xatom_CLIPBOARD)
10198 ATOM_REFS_INIT ("TIMESTAMP", Xatom_TIMESTAMP)
10199 ATOM_REFS_INIT ("TEXT", Xatom_TEXT)
10200 ATOM_REFS_INIT ("COMPOUND_TEXT", Xatom_COMPOUND_TEXT)
10201 ATOM_REFS_INIT ("UTF8_STRING", Xatom_UTF8_STRING)
10202 ATOM_REFS_INIT ("DELETE", Xatom_DELETE)
10203 ATOM_REFS_INIT ("MULTIPLE", Xatom_MULTIPLE)
10204 ATOM_REFS_INIT ("INCR", Xatom_INCR)
10205 ATOM_REFS_INIT ("_EMACS_TMP_", Xatom_EMACS_TMP)
10206 ATOM_REFS_INIT ("TARGETS", Xatom_TARGETS)
10207 ATOM_REFS_INIT ("NULL", Xatom_NULL)
10208 ATOM_REFS_INIT ("ATOM", Xatom_ATOM)
10209 ATOM_REFS_INIT ("ATOM_PAIR", Xatom_ATOM_PAIR)
10210 ATOM_REFS_INIT ("CLIPBOARD_MANAGER", Xatom_CLIPBOARD_MANAGER)
10211 ATOM_REFS_INIT ("_XEMBED_INFO", Xatom_XEMBED_INFO)
10212 /* For properties of font. */
10213 ATOM_REFS_INIT ("PIXEL_SIZE", Xatom_PIXEL_SIZE)
10214 ATOM_REFS_INIT ("AVERAGE_WIDTH", Xatom_AVERAGE_WIDTH)
10215 ATOM_REFS_INIT ("_MULE_BASELINE_OFFSET", Xatom_MULE_BASELINE_OFFSET)
10216 ATOM_REFS_INIT ("_MULE_RELATIVE_COMPOSE", Xatom_MULE_RELATIVE_COMPOSE)
10217 ATOM_REFS_INIT ("_MULE_DEFAULT_ASCENT", Xatom_MULE_DEFAULT_ASCENT)
10218 /* Ghostscript support. */
10219 ATOM_REFS_INIT ("DONE", Xatom_DONE)
10220 ATOM_REFS_INIT ("PAGE", Xatom_PAGE)
10221 ATOM_REFS_INIT ("SCROLLBAR", Xatom_Scrollbar)
10222 ATOM_REFS_INIT ("_XEMBED", Xatom_XEMBED)
10223 /* EWMH */
10224 ATOM_REFS_INIT ("_NET_WM_STATE", Xatom_net_wm_state)
10225 ATOM_REFS_INIT ("_NET_WM_STATE_FULLSCREEN", Xatom_net_wm_state_fullscreen)
10226 ATOM_REFS_INIT ("_NET_WM_STATE_MAXIMIZED_HORZ",
10227 Xatom_net_wm_state_maximized_horz)
10228 ATOM_REFS_INIT ("_NET_WM_STATE_MAXIMIZED_VERT",
10229 Xatom_net_wm_state_maximized_vert)
10230 ATOM_REFS_INIT ("_NET_WM_STATE_STICKY", Xatom_net_wm_state_sticky)
10231 ATOM_REFS_INIT ("_NET_WM_STATE_HIDDEN", Xatom_net_wm_state_hidden)
10232 ATOM_REFS_INIT ("_NET_WM_WINDOW_TYPE", Xatom_net_window_type)
10233 ATOM_REFS_INIT ("_NET_WM_WINDOW_TYPE_TOOLTIP",
10234 Xatom_net_window_type_tooltip)
10235 ATOM_REFS_INIT ("_NET_WM_ICON_NAME", Xatom_net_wm_icon_name)
10236 ATOM_REFS_INIT ("_NET_WM_NAME", Xatom_net_wm_name)
10237 ATOM_REFS_INIT ("_NET_SUPPORTED", Xatom_net_supported)
10238 ATOM_REFS_INIT ("_NET_SUPPORTING_WM_CHECK", Xatom_net_supporting_wm_check)
10239 ATOM_REFS_INIT ("_NET_WM_WINDOW_OPACITY", Xatom_net_wm_window_opacity)
10240 ATOM_REFS_INIT ("_NET_ACTIVE_WINDOW", Xatom_net_active_window)
10241 ATOM_REFS_INIT ("_NET_FRAME_EXTENTS", Xatom_net_frame_extents)
10242 ATOM_REFS_INIT ("_NET_CURRENT_DESKTOP", Xatom_net_current_desktop)
10243 ATOM_REFS_INIT ("_NET_WORKAREA", Xatom_net_workarea)
10244 /* Session management */
10245 ATOM_REFS_INIT ("SM_CLIENT_ID", Xatom_SM_CLIENT_ID)
10246 ATOM_REFS_INIT ("_XSETTINGS_SETTINGS", Xatom_xsettings_prop)
10247 ATOM_REFS_INIT ("MANAGER", Xatom_xsettings_mgr)
10250 int i;
10251 const int atom_count = sizeof (atom_refs) / sizeof (atom_refs[0]);
10252 /* 1 for _XSETTINGS_SN */
10253 const int total_atom_count = 1 + atom_count;
10254 Atom *atoms_return = xmalloc (total_atom_count * sizeof *atoms_return);
10255 char **atom_names = xmalloc (total_atom_count * sizeof *atom_names);
10256 static char const xsettings_fmt[] = "_XSETTINGS_S%d";
10257 char xsettings_atom_name[sizeof xsettings_fmt - 2
10258 + INT_STRLEN_BOUND (int)];
10260 for (i = 0; i < atom_count; i++)
10261 atom_names[i] = (char *) atom_refs[i].name;
10263 /* Build _XSETTINGS_SN atom name */
10264 sprintf (xsettings_atom_name, xsettings_fmt,
10265 XScreenNumberOfScreen (dpyinfo->screen));
10266 atom_names[i] = xsettings_atom_name;
10268 XInternAtoms (dpyinfo->display, atom_names, total_atom_count,
10269 False, atoms_return);
10271 for (i = 0; i < atom_count; i++)
10272 *(Atom *) ((char *) dpyinfo + atom_refs[i].offset) = atoms_return[i];
10274 /* Manual copy of last atom */
10275 dpyinfo->Xatom_xsettings_sel = atoms_return[i];
10277 xfree (atom_names);
10278 xfree (atoms_return);
10281 dpyinfo->x_dnd_atoms_size = 8;
10282 dpyinfo->x_dnd_atoms_length = 0;
10283 dpyinfo->x_dnd_atoms = xmalloc (sizeof *dpyinfo->x_dnd_atoms
10284 * dpyinfo->x_dnd_atoms_size);
10286 dpyinfo->net_supported_atoms = NULL;
10287 dpyinfo->nr_net_supported_atoms = 0;
10288 dpyinfo->net_supported_window = 0;
10290 connection = ConnectionNumber (dpyinfo->display);
10291 dpyinfo->connection = connection;
10292 dpyinfo->gray
10293 = XCreatePixmapFromBitmapData (dpyinfo->display, dpyinfo->root_window,
10294 gray_bits, gray_width, gray_height,
10295 1, 0, 1);
10297 #ifdef HAVE_X_I18N
10298 xim_initialize (dpyinfo, resource_name);
10299 #endif
10301 xsettings_initialize (dpyinfo);
10303 /* This is only needed for distinguishing keyboard and process input. */
10304 if (connection != 0)
10305 add_keyboard_wait_descriptor (connection);
10307 #ifdef F_SETOWN
10308 fcntl (connection, F_SETOWN, getpid ());
10309 #endif /* ! defined (F_SETOWN) */
10311 if (interrupt_input)
10312 init_sigio (connection);
10314 #ifdef USE_LUCID
10316 XrmValue d, fr, to;
10317 Font font;
10319 dpy = dpyinfo->display;
10320 d.addr = (XPointer)&dpy;
10321 d.size = sizeof (Display *);
10322 fr.addr = XtDefaultFont;
10323 fr.size = sizeof (XtDefaultFont);
10324 to.size = sizeof (Font *);
10325 to.addr = (XPointer)&font;
10326 x_catch_errors (dpy);
10327 if (!XtCallConverter (dpy, XtCvtStringToFont, &d, 1, &fr, &to, NULL))
10328 emacs_abort ();
10329 if (x_had_errors_p (dpy) || !XQueryFont (dpy, font))
10330 XrmPutLineResource (&xrdb, "Emacs.dialog.*.font: 9x15");
10331 x_uncatch_errors ();
10333 #endif
10335 /* See if we should run in synchronous mode. This is useful
10336 for debugging X code. */
10338 Lisp_Object value;
10339 value = display_x_get_resource (dpyinfo,
10340 build_string ("synchronous"),
10341 build_string ("Synchronous"),
10342 Qnil, Qnil);
10343 if (STRINGP (value)
10344 && (!strcmp (SSDATA (value), "true")
10345 || !strcmp (SSDATA (value), "on")))
10346 XSynchronize (dpyinfo->display, True);
10350 Lisp_Object value;
10351 value = display_x_get_resource (dpyinfo,
10352 build_string ("useXIM"),
10353 build_string ("UseXIM"),
10354 Qnil, Qnil);
10355 #ifdef USE_XIM
10356 if (STRINGP (value)
10357 && (!strcmp (SSDATA (value), "false")
10358 || !strcmp (SSDATA (value), "off")))
10359 use_xim = 0;
10360 #else
10361 if (STRINGP (value)
10362 && (!strcmp (SSDATA (value), "true")
10363 || !strcmp (SSDATA (value), "on")))
10364 use_xim = 1;
10365 #endif
10368 #ifdef HAVE_X_SM
10369 /* Only do this for the very first display in the Emacs session.
10370 Ignore X session management when Emacs was first started on a
10371 tty. */
10372 if (terminal->id == 1)
10373 x_session_initialize (dpyinfo);
10374 #endif
10376 unblock_input ();
10378 return dpyinfo;
10381 /* Get rid of display DPYINFO, deleting all frames on it,
10382 and without sending any more commands to the X server. */
10384 static void
10385 x_delete_display (struct x_display_info *dpyinfo)
10387 struct terminal *t;
10389 /* Close all frames and delete the generic struct terminal for this
10390 X display. */
10391 for (t = terminal_list; t; t = t->next_terminal)
10392 if (t->type == output_x_window && t->display_info.x == dpyinfo)
10394 #ifdef HAVE_X_SM
10395 /* Close X session management when we close its display. */
10396 if (t->id == 1 && x_session_have_connection ())
10397 x_session_close ();
10398 #endif
10399 delete_terminal (t);
10400 break;
10403 delete_keyboard_wait_descriptor (dpyinfo->connection);
10405 /* Discard this display from x_display_name_list and x_display_list.
10406 We can't use Fdelq because that can quit. */
10407 if (! NILP (x_display_name_list)
10408 && EQ (XCAR (x_display_name_list), dpyinfo->name_list_element))
10409 x_display_name_list = XCDR (x_display_name_list);
10410 else
10412 Lisp_Object tail;
10414 tail = x_display_name_list;
10415 while (CONSP (tail) && CONSP (XCDR (tail)))
10417 if (EQ (XCAR (XCDR (tail)), dpyinfo->name_list_element))
10419 XSETCDR (tail, XCDR (XCDR (tail)));
10420 break;
10422 tail = XCDR (tail);
10426 if (next_noop_dpyinfo == dpyinfo)
10427 next_noop_dpyinfo = dpyinfo->next;
10429 if (x_display_list == dpyinfo)
10430 x_display_list = dpyinfo->next;
10431 else
10433 struct x_display_info *tail;
10435 for (tail = x_display_list; tail; tail = tail->next)
10436 if (tail->next == dpyinfo)
10437 tail->next = tail->next->next;
10440 xfree (dpyinfo->x_id_name);
10441 xfree (dpyinfo->x_dnd_atoms);
10442 xfree (dpyinfo->color_cells);
10443 xfree (dpyinfo);
10446 #ifdef USE_X_TOOLKIT
10448 /* Atimer callback function for TIMER. Called every 0.1s to process
10449 Xt timeouts, if needed. We must avoid calling XtAppPending as
10450 much as possible because that function does an implicit XFlush
10451 that slows us down. */
10453 static void
10454 x_process_timeouts (struct atimer *timer)
10456 block_input ();
10457 x_timeout_atimer_activated_flag = 0;
10458 if (toolkit_scroll_bar_interaction || popup_activated ())
10460 while (XtAppPending (Xt_app_con) & XtIMTimer)
10461 XtAppProcessEvent (Xt_app_con, XtIMTimer);
10462 /* Reactivate the atimer for next time. */
10463 x_activate_timeout_atimer ();
10465 unblock_input ();
10468 /* Install an asynchronous timer that processes Xt timeout events
10469 every 0.1s as long as either `toolkit_scroll_bar_interaction' or
10470 `popup_activated_flag' (in xmenu.c) is set. Make sure to call this
10471 function whenever these variables are set. This is necessary
10472 because some widget sets use timeouts internally, for example the
10473 LessTif menu bar, or the Xaw3d scroll bar. When Xt timeouts aren't
10474 processed, these widgets don't behave normally. */
10476 void
10477 x_activate_timeout_atimer (void)
10479 block_input ();
10480 if (!x_timeout_atimer_activated_flag)
10482 EMACS_TIME interval = make_emacs_time (0, 100 * 1000 * 1000);
10483 start_atimer (ATIMER_RELATIVE, interval, x_process_timeouts, 0);
10484 x_timeout_atimer_activated_flag = 1;
10486 unblock_input ();
10489 #endif /* USE_X_TOOLKIT */
10492 /* Set up use of X before we make the first connection. */
10494 static struct redisplay_interface x_redisplay_interface =
10496 x_frame_parm_handlers,
10497 x_produce_glyphs,
10498 x_write_glyphs,
10499 x_insert_glyphs,
10500 x_clear_end_of_line,
10501 x_scroll_run,
10502 x_after_update_window_line,
10503 x_update_window_begin,
10504 x_update_window_end,
10505 x_cursor_to,
10506 x_flush,
10507 #ifdef XFlush
10508 x_flush,
10509 #else
10510 0, /* flush_display_optional */
10511 #endif
10512 x_clear_window_mouse_face,
10513 x_get_glyph_overhangs,
10514 x_fix_overlapping_area,
10515 x_draw_fringe_bitmap,
10516 0, /* define_fringe_bitmap */
10517 0, /* destroy_fringe_bitmap */
10518 x_compute_glyph_string_overhangs,
10519 x_draw_glyph_string,
10520 x_define_frame_cursor,
10521 x_clear_frame_area,
10522 x_draw_window_cursor,
10523 x_draw_vertical_window_border,
10524 x_shift_glyphs_for_insert
10528 /* This function is called when the last frame on a display is deleted. */
10529 void
10530 x_delete_terminal (struct terminal *terminal)
10532 struct x_display_info *dpyinfo = terminal->display_info.x;
10534 /* Protect against recursive calls. delete_frame in
10535 delete_terminal calls us back when it deletes our last frame. */
10536 if (!terminal->name)
10537 return;
10539 block_input ();
10540 #ifdef HAVE_X_I18N
10541 /* We must close our connection to the XIM server before closing the
10542 X display. */
10543 if (dpyinfo->xim)
10544 xim_close_dpy (dpyinfo);
10545 #endif
10547 /* If called from x_connection_closed, the display may already be closed
10548 and dpyinfo->display was set to 0 to indicate that. */
10549 if (dpyinfo->display)
10551 x_destroy_all_bitmaps (dpyinfo);
10552 XSetCloseDownMode (dpyinfo->display, DestroyAll);
10554 /* Whether or not XCloseDisplay destroys the associated resource
10555 database depends on the version of libX11. To avoid both
10556 crash and memory leak, we dissociate the database from the
10557 display and then destroy dpyinfo->xrdb ourselves.
10559 Unfortunately, the above strategy does not work in some
10560 situations due to a bug in newer versions of libX11: because
10561 XrmSetDatabase doesn't clear the flag XlibDisplayDfltRMDB if
10562 dpy->db is NULL, XCloseDisplay destroys the associated
10563 database whereas it has not been created by XGetDefault
10564 (Bug#21974 in freedesktop.org Bugzilla). As a workaround, we
10565 don't destroy the database here in order to avoid the crash
10566 in the above situations for now, though that may cause memory
10567 leaks in other situations. */
10568 #if 0
10569 #ifdef HAVE_XRMSETDATABASE
10570 XrmSetDatabase (dpyinfo->display, NULL);
10571 #else
10572 dpyinfo->display->db = NULL;
10573 #endif
10574 /* We used to call XrmDestroyDatabase from x_delete_display, but
10575 some older versions of libX11 crash if we call it after
10576 closing all the displays. */
10577 XrmDestroyDatabase (dpyinfo->xrdb);
10578 #endif
10580 #ifdef USE_GTK
10581 xg_display_close (dpyinfo->display);
10582 #else
10583 #ifdef USE_X_TOOLKIT
10584 XtCloseDisplay (dpyinfo->display);
10585 #else
10586 XCloseDisplay (dpyinfo->display);
10587 #endif
10588 #endif /* ! USE_GTK */
10591 /* Mark as dead. */
10592 dpyinfo->display = NULL;
10593 x_delete_display (dpyinfo);
10594 unblock_input ();
10597 /* Create a struct terminal, initialize it with the X11 specific
10598 functions and make DISPLAY->TERMINAL point to it. */
10600 static struct terminal *
10601 x_create_terminal (struct x_display_info *dpyinfo)
10603 struct terminal *terminal;
10605 terminal = create_terminal ();
10607 terminal->type = output_x_window;
10608 terminal->display_info.x = dpyinfo;
10609 dpyinfo->terminal = terminal;
10611 /* kboard is initialized in x_term_init. */
10613 terminal->clear_frame_hook = x_clear_frame;
10614 terminal->ins_del_lines_hook = x_ins_del_lines;
10615 terminal->delete_glyphs_hook = x_delete_glyphs;
10616 terminal->ring_bell_hook = XTring_bell;
10617 terminal->toggle_invisible_pointer_hook = XTtoggle_invisible_pointer;
10618 terminal->reset_terminal_modes_hook = XTreset_terminal_modes;
10619 terminal->set_terminal_modes_hook = XTset_terminal_modes;
10620 terminal->update_begin_hook = x_update_begin;
10621 terminal->update_end_hook = x_update_end;
10622 terminal->set_terminal_window_hook = XTset_terminal_window;
10623 terminal->read_socket_hook = XTread_socket;
10624 terminal->frame_up_to_date_hook = XTframe_up_to_date;
10625 terminal->mouse_position_hook = XTmouse_position;
10626 terminal->frame_rehighlight_hook = XTframe_rehighlight;
10627 terminal->frame_raise_lower_hook = XTframe_raise_lower;
10628 terminal->fullscreen_hook = XTfullscreen_hook;
10629 terminal->set_vertical_scroll_bar_hook = XTset_vertical_scroll_bar;
10630 terminal->condemn_scroll_bars_hook = XTcondemn_scroll_bars;
10631 terminal->redeem_scroll_bar_hook = XTredeem_scroll_bar;
10632 terminal->judge_scroll_bars_hook = XTjudge_scroll_bars;
10634 terminal->delete_frame_hook = x_destroy_window;
10635 terminal->delete_terminal_hook = x_delete_terminal;
10637 terminal->rif = &x_redisplay_interface;
10638 terminal->scroll_region_ok = 1; /* We'll scroll partial frames. */
10639 terminal->char_ins_del_ok = 1;
10640 terminal->line_ins_del_ok = 1; /* We'll just blt 'em. */
10641 terminal->fast_clear_end_of_line = 1; /* X does this well. */
10642 terminal->memory_below_frame = 0; /* We don't remember what scrolls
10643 off the bottom. */
10645 return terminal;
10648 void
10649 x_initialize (void)
10651 baud_rate = 19200;
10653 x_noop_count = 0;
10654 last_tool_bar_item = -1;
10655 any_help_event_p = 0;
10656 ignore_next_mouse_click_timeout = 0;
10658 #ifdef USE_GTK
10659 current_count = -1;
10660 #endif
10662 /* Try to use interrupt input; if we can't, then start polling. */
10663 Fset_input_interrupt_mode (Qt);
10665 #ifdef USE_X_TOOLKIT
10666 XtToolkitInitialize ();
10668 Xt_app_con = XtCreateApplicationContext ();
10670 /* Register a converter from strings to pixels, which uses
10671 Emacs' color allocation infrastructure. */
10672 XtAppSetTypeConverter (Xt_app_con,
10673 XtRString, XtRPixel, cvt_string_to_pixel,
10674 cvt_string_to_pixel_args,
10675 XtNumber (cvt_string_to_pixel_args),
10676 XtCacheByDisplay, cvt_pixel_dtor);
10678 XtAppSetFallbackResources (Xt_app_con, Xt_default_resources);
10679 #endif
10681 #ifdef USE_TOOLKIT_SCROLL_BARS
10682 #ifndef USE_GTK
10683 xaw3d_arrow_scroll = False;
10684 xaw3d_pick_top = True;
10685 #endif
10686 #endif
10688 pending_autoraise_frame = 0;
10689 pending_event_wait.f = 0;
10690 pending_event_wait.eventtype = 0;
10692 /* Note that there is no real way portable across R3/R4 to get the
10693 original error handler. */
10694 XSetErrorHandler (x_error_handler);
10695 XSetIOErrorHandler (x_io_error_quitter);
10699 void
10700 syms_of_xterm (void)
10702 x_error_message = NULL;
10704 staticpro (&x_display_name_list);
10705 x_display_name_list = Qnil;
10707 staticpro (&last_mouse_scroll_bar);
10708 last_mouse_scroll_bar = Qnil;
10710 DEFSYM (Qvendor_specific_keysyms, "vendor-specific-keysyms");
10711 DEFSYM (Qlatin_1, "latin-1");
10713 #ifdef USE_GTK
10714 xg_default_icon_file = build_pure_c_string ("icons/hicolor/scalable/apps/emacs.svg");
10715 staticpro (&xg_default_icon_file);
10717 DEFSYM (Qx_gtk_map_stock, "x-gtk-map-stock");
10718 #endif
10720 DEFVAR_BOOL ("x-use-underline-position-properties",
10721 x_use_underline_position_properties,
10722 doc: /* Non-nil means make use of UNDERLINE_POSITION font properties.
10723 A value of nil means ignore them. If you encounter fonts with bogus
10724 UNDERLINE_POSITION font properties, for example 7x13 on XFree prior
10725 to 4.1, set this to nil. You can also use `underline-minimum-offset'
10726 to override the font's UNDERLINE_POSITION for small font display
10727 sizes. */);
10728 x_use_underline_position_properties = 1;
10730 DEFVAR_BOOL ("x-underline-at-descent-line",
10731 x_underline_at_descent_line,
10732 doc: /* Non-nil means to draw the underline at the same place as the descent line.
10733 A value of nil means to draw the underline according to the value of the
10734 variable `x-use-underline-position-properties', which is usually at the
10735 baseline level. The default value is nil. */);
10736 x_underline_at_descent_line = 0;
10738 DEFVAR_BOOL ("x-mouse-click-focus-ignore-position",
10739 x_mouse_click_focus_ignore_position,
10740 doc: /* Non-nil means that a mouse click to focus a frame does not move point.
10741 This variable is only used when the window manager requires that you
10742 click on a frame to select it (give it focus). In that case, a value
10743 of nil, means that the selected window and cursor position changes to
10744 reflect the mouse click position, while a non-nil value means that the
10745 selected window or cursor position is preserved. */);
10746 x_mouse_click_focus_ignore_position = 0;
10748 DEFVAR_LISP ("x-toolkit-scroll-bars", Vx_toolkit_scroll_bars,
10749 doc: /* Which toolkit scroll bars Emacs uses, if any.
10750 A value of nil means Emacs doesn't use toolkit scroll bars.
10751 With the X Window system, the value is a symbol describing the
10752 X toolkit. Possible values are: gtk, motif, xaw, or xaw3d.
10753 With MS Windows or Nextstep, the value is t. */);
10754 #ifdef USE_TOOLKIT_SCROLL_BARS
10755 #ifdef USE_MOTIF
10756 Vx_toolkit_scroll_bars = intern_c_string ("motif");
10757 #elif defined HAVE_XAW3D
10758 Vx_toolkit_scroll_bars = intern_c_string ("xaw3d");
10759 #elif USE_GTK
10760 Vx_toolkit_scroll_bars = intern_c_string ("gtk");
10761 #else
10762 Vx_toolkit_scroll_bars = intern_c_string ("xaw");
10763 #endif
10764 #else
10765 Vx_toolkit_scroll_bars = Qnil;
10766 #endif
10768 staticpro (&last_mouse_motion_frame);
10769 last_mouse_motion_frame = Qnil;
10771 Qmodifier_value = intern_c_string ("modifier-value");
10772 Qalt = intern_c_string ("alt");
10773 Fput (Qalt, Qmodifier_value, make_number (alt_modifier));
10774 Qhyper = intern_c_string ("hyper");
10775 Fput (Qhyper, Qmodifier_value, make_number (hyper_modifier));
10776 Qmeta = intern_c_string ("meta");
10777 Fput (Qmeta, Qmodifier_value, make_number (meta_modifier));
10778 Qsuper = intern_c_string ("super");
10779 Fput (Qsuper, Qmodifier_value, make_number (super_modifier));
10781 DEFVAR_LISP ("x-alt-keysym", Vx_alt_keysym,
10782 doc: /* Which keys Emacs uses for the alt modifier.
10783 This should be one of the symbols `alt', `hyper', `meta', `super'.
10784 For example, `alt' means use the Alt_L and Alt_R keysyms. The default
10785 is nil, which is the same as `alt'. */);
10786 Vx_alt_keysym = Qnil;
10788 DEFVAR_LISP ("x-hyper-keysym", Vx_hyper_keysym,
10789 doc: /* Which keys Emacs uses for the hyper modifier.
10790 This should be one of the symbols `alt', `hyper', `meta', `super'.
10791 For example, `hyper' means use the Hyper_L and Hyper_R keysyms. The
10792 default is nil, which is the same as `hyper'. */);
10793 Vx_hyper_keysym = Qnil;
10795 DEFVAR_LISP ("x-meta-keysym", Vx_meta_keysym,
10796 doc: /* Which keys Emacs uses for the meta modifier.
10797 This should be one of the symbols `alt', `hyper', `meta', `super'.
10798 For example, `meta' means use the Meta_L and Meta_R keysyms. The
10799 default is nil, which is the same as `meta'. */);
10800 Vx_meta_keysym = Qnil;
10802 DEFVAR_LISP ("x-super-keysym", Vx_super_keysym,
10803 doc: /* Which keys Emacs uses for the super modifier.
10804 This should be one of the symbols `alt', `hyper', `meta', `super'.
10805 For example, `super' means use the Super_L and Super_R keysyms. The
10806 default is nil, which is the same as `super'. */);
10807 Vx_super_keysym = Qnil;
10809 DEFVAR_LISP ("x-keysym-table", Vx_keysym_table,
10810 doc: /* Hash table of character codes indexed by X keysym codes. */);
10811 Vx_keysym_table = make_hash_table (hashtest_eql, make_number (900),
10812 make_float (DEFAULT_REHASH_SIZE),
10813 make_float (DEFAULT_REHASH_THRESHOLD),
10814 Qnil);
10817 #endif /* HAVE_X_WINDOWS */