* process.c (allocate_pty) [PTY_OPEN]: Set fd's FD_CLOEXEC flag.
[emacs.git] / src / xterm.c
blobb5c5a5cb5840129ac7327d9098778241ced6b099
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 (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 = client_data;
4332 XmScrollBarCallbackStruct *cs = 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 = 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 = g_object_get_data (G_OBJECT (range), XG_FRAME_DATA);
4412 if (xg_ignore_gtk_scrollbar) return FALSE;
4413 position = gtk_adjustment_get_value (adj);
4416 switch (scroll)
4418 case GTK_SCROLL_JUMP:
4419 /* Buttons 1 2 or 3 must be grabbed. */
4420 if (FRAME_X_DISPLAY_INFO (f)->grabbed != 0
4421 && FRAME_X_DISPLAY_INFO (f)->grabbed < (1 << 4))
4423 part = scroll_bar_handle;
4424 whole = gtk_adjustment_get_upper (adj) -
4425 gtk_adjustment_get_page_size (adj);
4426 portion = min ((int)position, whole);
4427 bar->dragging = make_number ((int)portion);
4429 break;
4430 case GTK_SCROLL_STEP_BACKWARD:
4431 part = scroll_bar_up_arrow;
4432 bar->dragging = Qnil;
4433 break;
4434 case GTK_SCROLL_STEP_FORWARD:
4435 part = scroll_bar_down_arrow;
4436 bar->dragging = Qnil;
4437 break;
4438 case GTK_SCROLL_PAGE_BACKWARD:
4439 part = scroll_bar_above_handle;
4440 bar->dragging = Qnil;
4441 break;
4442 case GTK_SCROLL_PAGE_FORWARD:
4443 part = scroll_bar_below_handle;
4444 bar->dragging = Qnil;
4445 break;
4448 if (part >= 0)
4450 window_being_scrolled = bar->window;
4451 last_scroll_bar_part = part;
4452 x_send_scroll_bar_event (bar->window, part, portion, whole);
4455 return FALSE;
4458 /* Callback for button release. Sets dragging to Qnil when dragging is done. */
4460 static gboolean
4461 xg_end_scroll_callback (GtkWidget *widget,
4462 GdkEventButton *event,
4463 gpointer user_data)
4465 struct scroll_bar *bar = user_data;
4466 bar->dragging = Qnil;
4467 if (WINDOWP (window_being_scrolled))
4469 x_send_scroll_bar_event (window_being_scrolled,
4470 scroll_bar_end_scroll, 0, 0);
4471 window_being_scrolled = Qnil;
4474 return FALSE;
4478 #else /* not USE_GTK and not USE_MOTIF */
4480 /* Xaw scroll bar callback. Invoked when the thumb is dragged.
4481 WIDGET is the scroll bar widget. CLIENT_DATA is a pointer to the
4482 scroll bar struct. CALL_DATA is a pointer to a float saying where
4483 the thumb is. */
4485 static void
4486 xaw_jump_callback (Widget widget, XtPointer client_data, XtPointer call_data)
4488 struct scroll_bar *bar = client_data;
4489 float *top_addr = call_data;
4490 float top = *top_addr;
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 = client_data;
4532 /* The position really is stored cast to a pointer. */
4533 int position = (intptr_t) 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 bool 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 fringe_extended_p = WINDOW_FRINGE_EXTENDED_P (w);
5192 #endif
5194 /* Does the scroll bar exist yet? */
5195 if (NILP (w->vertical_scroll_bar))
5197 if (width > 0 && height > 0)
5199 block_input ();
5200 #ifdef USE_TOOLKIT_SCROLL_BARS
5201 if (fringe_extended_p)
5202 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5203 sb_left, top, sb_width, height, False);
5204 else
5205 #endif
5206 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5207 left, top, width, height, False);
5208 unblock_input ();
5211 bar = x_scroll_bar_create (w, top, sb_left, sb_width, height);
5213 else
5215 /* It may just need to be moved and resized. */
5216 unsigned int mask = 0;
5218 bar = XSCROLL_BAR (w->vertical_scroll_bar);
5220 block_input ();
5222 if (sb_left != bar->left)
5223 mask |= CWX;
5224 if (top != bar->top)
5225 mask |= CWY;
5226 if (sb_width != bar->width)
5227 mask |= CWWidth;
5228 if (height != bar->height)
5229 mask |= CWHeight;
5231 #ifdef USE_TOOLKIT_SCROLL_BARS
5233 /* Move/size the scroll bar widget. */
5234 if (mask || bar->fringe_extended_p != fringe_extended_p)
5236 /* Since toolkit scroll bars are smaller than the space reserved
5237 for them on the frame, we have to clear "under" them. */
5238 if (width > 0 && height > 0)
5240 if (fringe_extended_p)
5241 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5242 sb_left, top, sb_width, height, False);
5243 else
5244 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5245 left, top, width, height, False);
5247 #ifdef USE_GTK
5248 xg_update_scrollbar_pos (f,
5249 bar->x_window,
5250 top,
5251 sb_left + VERTICAL_SCROLL_BAR_WIDTH_TRIM,
5252 sb_width - VERTICAL_SCROLL_BAR_WIDTH_TRIM *2,
5253 max (height, 1));
5254 #else /* not USE_GTK */
5255 XtConfigureWidget (SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f), bar),
5256 sb_left + VERTICAL_SCROLL_BAR_WIDTH_TRIM,
5257 top,
5258 sb_width - VERTICAL_SCROLL_BAR_WIDTH_TRIM * 2,
5259 max (height, 1), 0);
5260 #endif /* not USE_GTK */
5262 #else /* not USE_TOOLKIT_SCROLL_BARS */
5264 /* Clear areas not covered by the scroll bar because of
5265 VERTICAL_SCROLL_BAR_WIDTH_TRIM. */
5266 if (VERTICAL_SCROLL_BAR_WIDTH_TRIM)
5268 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5269 left, top, VERTICAL_SCROLL_BAR_WIDTH_TRIM,
5270 height, False);
5271 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5272 left + width - VERTICAL_SCROLL_BAR_WIDTH_TRIM,
5273 top, VERTICAL_SCROLL_BAR_WIDTH_TRIM,
5274 height, False);
5277 /* Clear areas not covered by the scroll bar because it's not as
5278 wide as the area reserved for it. This makes sure a
5279 previous mode line display is cleared after C-x 2 C-x 1, for
5280 example. */
5282 int area_width = WINDOW_CONFIG_SCROLL_BAR_COLS (w) * FRAME_COLUMN_WIDTH (f);
5283 int rest = area_width - sb_width;
5284 if (rest > 0 && height > 0)
5286 if (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w))
5287 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5288 left + area_width - rest, top,
5289 rest, height, False);
5290 else
5291 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5292 left, top, rest, height, False);
5296 /* Move/size the scroll bar window. */
5297 if (mask)
5299 XWindowChanges wc;
5301 wc.x = sb_left + VERTICAL_SCROLL_BAR_WIDTH_TRIM;
5302 wc.y = top;
5303 wc.width = sb_width - VERTICAL_SCROLL_BAR_WIDTH_TRIM * 2;
5304 wc.height = height;
5305 XConfigureWindow (FRAME_X_DISPLAY (f), bar->x_window,
5306 mask, &wc);
5309 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5311 /* Remember new settings. */
5312 bar->left = sb_left;
5313 bar->top = top;
5314 bar->width = sb_width;
5315 bar->height = height;
5317 unblock_input ();
5320 #ifdef USE_TOOLKIT_SCROLL_BARS
5321 bar->fringe_extended_p = fringe_extended_p;
5323 x_set_toolkit_scroll_bar_thumb (bar, portion, position, whole);
5324 #else /* not USE_TOOLKIT_SCROLL_BARS */
5325 /* Set the scroll bar's current state, unless we're currently being
5326 dragged. */
5327 if (NILP (bar->dragging))
5329 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, height);
5331 if (whole == 0)
5332 x_scroll_bar_set_handle (bar, 0, top_range, 0);
5333 else
5335 int start = ((double) position * top_range) / whole;
5336 int end = ((double) (position + portion) * top_range) / whole;
5337 x_scroll_bar_set_handle (bar, start, end, 0);
5340 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5342 XSETVECTOR (barobj, bar);
5343 wset_vertical_scroll_bar (w, barobj);
5347 /* The following three hooks are used when we're doing a thorough
5348 redisplay of the frame. We don't explicitly know which scroll bars
5349 are going to be deleted, because keeping track of when windows go
5350 away is a real pain - "Can you say set-window-configuration, boys
5351 and girls?" Instead, we just assert at the beginning of redisplay
5352 that *all* scroll bars are to be removed, and then save a scroll bar
5353 from the fiery pit when we actually redisplay its window. */
5355 /* Arrange for all scroll bars on FRAME to be removed at the next call
5356 to `*judge_scroll_bars_hook'. A scroll bar may be spared if
5357 `*redeem_scroll_bar_hook' is applied to its window before the judgment. */
5359 static void
5360 XTcondemn_scroll_bars (struct frame *frame)
5362 /* Transfer all the scroll bars to FRAME_CONDEMNED_SCROLL_BARS. */
5363 while (! NILP (FRAME_SCROLL_BARS (frame)))
5365 Lisp_Object bar;
5366 bar = FRAME_SCROLL_BARS (frame);
5367 fset_scroll_bars (frame, XSCROLL_BAR (bar)->next);
5368 XSCROLL_BAR (bar)->next = FRAME_CONDEMNED_SCROLL_BARS (frame);
5369 XSCROLL_BAR (bar)->prev = Qnil;
5370 if (! NILP (FRAME_CONDEMNED_SCROLL_BARS (frame)))
5371 XSCROLL_BAR (FRAME_CONDEMNED_SCROLL_BARS (frame))->prev = bar;
5372 fset_condemned_scroll_bars (frame, bar);
5377 /* Un-mark WINDOW's scroll bar for deletion in this judgment cycle.
5378 Note that WINDOW isn't necessarily condemned at all. */
5380 static void
5381 XTredeem_scroll_bar (struct window *window)
5383 struct scroll_bar *bar;
5384 struct frame *f;
5385 Lisp_Object barobj;
5387 /* We can't redeem this window's scroll bar if it doesn't have one. */
5388 if (NILP (window->vertical_scroll_bar))
5389 emacs_abort ();
5391 bar = XSCROLL_BAR (window->vertical_scroll_bar);
5393 /* Unlink it from the condemned list. */
5394 f = XFRAME (WINDOW_FRAME (window));
5395 if (NILP (bar->prev))
5397 /* If the prev pointer is nil, it must be the first in one of
5398 the lists. */
5399 if (EQ (FRAME_SCROLL_BARS (f), window->vertical_scroll_bar))
5400 /* It's not condemned. Everything's fine. */
5401 return;
5402 else if (EQ (FRAME_CONDEMNED_SCROLL_BARS (f),
5403 window->vertical_scroll_bar))
5404 fset_condemned_scroll_bars (f, bar->next);
5405 else
5406 /* If its prev pointer is nil, it must be at the front of
5407 one or the other! */
5408 emacs_abort ();
5410 else
5411 XSCROLL_BAR (bar->prev)->next = bar->next;
5413 if (! NILP (bar->next))
5414 XSCROLL_BAR (bar->next)->prev = bar->prev;
5416 bar->next = FRAME_SCROLL_BARS (f);
5417 bar->prev = Qnil;
5418 XSETVECTOR (barobj, bar);
5419 fset_scroll_bars (f, barobj);
5420 if (! NILP (bar->next))
5421 XSETVECTOR (XSCROLL_BAR (bar->next)->prev, bar);
5424 /* Remove all scroll bars on FRAME that haven't been saved since the
5425 last call to `*condemn_scroll_bars_hook'. */
5427 static void
5428 XTjudge_scroll_bars (struct frame *f)
5430 Lisp_Object bar, next;
5432 bar = FRAME_CONDEMNED_SCROLL_BARS (f);
5434 /* Clear out the condemned list now so we won't try to process any
5435 more events on the hapless scroll bars. */
5436 fset_condemned_scroll_bars (f, Qnil);
5438 for (; ! NILP (bar); bar = next)
5440 struct scroll_bar *b = XSCROLL_BAR (bar);
5442 x_scroll_bar_remove (b);
5444 next = b->next;
5445 b->next = b->prev = Qnil;
5448 /* Now there should be no references to the condemned scroll bars,
5449 and they should get garbage-collected. */
5453 #ifndef USE_TOOLKIT_SCROLL_BARS
5454 /* Handle an Expose or GraphicsExpose event on a scroll bar. This
5455 is a no-op when using toolkit scroll bars.
5457 This may be called from a signal handler, so we have to ignore GC
5458 mark bits. */
5460 static void
5461 x_scroll_bar_expose (struct scroll_bar *bar, XEvent *event)
5463 Window w = bar->x_window;
5464 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
5465 GC gc = f->output_data.x->normal_gc;
5466 int width_trim = VERTICAL_SCROLL_BAR_WIDTH_TRIM;
5468 block_input ();
5470 x_scroll_bar_set_handle (bar, bar->start, bar->end, 1);
5472 /* Switch to scroll bar foreground color. */
5473 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
5474 XSetForeground (FRAME_X_DISPLAY (f), gc,
5475 f->output_data.x->scroll_bar_foreground_pixel);
5477 /* Draw a one-pixel border just inside the edges of the scroll bar. */
5478 XDrawRectangle (FRAME_X_DISPLAY (f), w, gc,
5480 /* x, y, width, height */
5481 0, 0,
5482 bar->width - 1 - width_trim - width_trim,
5483 bar->height - 1);
5485 /* Restore the foreground color of the GC if we changed it above. */
5486 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
5487 XSetForeground (FRAME_X_DISPLAY (f), gc,
5488 FRAME_FOREGROUND_PIXEL (f));
5490 unblock_input ();
5493 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5495 /* Handle a mouse click on the scroll bar BAR. If *EMACS_EVENT's kind
5496 is set to something other than NO_EVENT, it is enqueued.
5498 This may be called from a signal handler, so we have to ignore GC
5499 mark bits. */
5502 static void
5503 x_scroll_bar_handle_click (struct scroll_bar *bar, XEvent *event, struct input_event *emacs_event)
5505 if (! WINDOWP (bar->window))
5506 emacs_abort ();
5508 emacs_event->kind = SCROLL_BAR_CLICK_EVENT;
5509 emacs_event->code = event->xbutton.button - Button1;
5510 emacs_event->modifiers
5511 = (x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO
5512 (XFRAME (WINDOW_FRAME (XWINDOW (bar->window)))),
5513 event->xbutton.state)
5514 | (event->type == ButtonRelease
5515 ? up_modifier
5516 : down_modifier));
5517 emacs_event->frame_or_window = bar->window;
5518 emacs_event->arg = Qnil;
5519 emacs_event->timestamp = event->xbutton.time;
5521 int top_range
5522 = VERTICAL_SCROLL_BAR_TOP_RANGE (f, bar->height);
5523 int y = event->xbutton.y - VERTICAL_SCROLL_BAR_TOP_BORDER;
5525 if (y < 0) y = 0;
5526 if (y > top_range) y = top_range;
5528 if (y < bar->start)
5529 emacs_event->part = scroll_bar_above_handle;
5530 else if (y < bar->end + VERTICAL_SCROLL_BAR_MIN_HANDLE)
5531 emacs_event->part = scroll_bar_handle;
5532 else
5533 emacs_event->part = scroll_bar_below_handle;
5535 #ifndef USE_TOOLKIT_SCROLL_BARS
5536 /* If the user has released the handle, set it to its final position. */
5537 if (event->type == ButtonRelease
5538 && ! NILP (bar->dragging))
5540 int new_start = y - XINT (bar->dragging);
5541 int new_end = new_start + bar->end - bar->start;
5543 x_scroll_bar_set_handle (bar, new_start, new_end, 0);
5544 bar->dragging = Qnil;
5546 #endif
5548 XSETINT (emacs_event->x, y);
5549 XSETINT (emacs_event->y, top_range);
5553 #ifndef USE_TOOLKIT_SCROLL_BARS
5555 /* Handle some mouse motion while someone is dragging the scroll bar.
5557 This may be called from a signal handler, so we have to ignore GC
5558 mark bits. */
5560 static void
5561 x_scroll_bar_note_movement (struct scroll_bar *bar, XEvent *event)
5563 struct frame *f = XFRAME (XWINDOW (bar->window)->frame);
5565 last_mouse_movement_time = event->xmotion.time;
5567 f->mouse_moved = 1;
5568 XSETVECTOR (last_mouse_scroll_bar, bar);
5570 /* If we're dragging the bar, display it. */
5571 if (! NILP (bar->dragging))
5573 /* Where should the handle be now? */
5574 int new_start = event->xmotion.y - XINT (bar->dragging);
5576 if (new_start != bar->start)
5578 int new_end = new_start + bar->end - bar->start;
5580 x_scroll_bar_set_handle (bar, new_start, new_end, 0);
5585 #endif /* !USE_TOOLKIT_SCROLL_BARS */
5587 /* Return information to the user about the current position of the mouse
5588 on the scroll bar. */
5590 static void
5591 x_scroll_bar_report_motion (struct frame **fp, Lisp_Object *bar_window,
5592 enum scroll_bar_part *part, Lisp_Object *x,
5593 Lisp_Object *y, Time *timestamp)
5595 struct scroll_bar *bar = XSCROLL_BAR (last_mouse_scroll_bar);
5596 Window w = bar->x_window;
5597 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
5598 int win_x, win_y;
5599 Window dummy_window;
5600 int dummy_coord;
5601 unsigned int dummy_mask;
5603 block_input ();
5605 /* Get the mouse's position relative to the scroll bar window, and
5606 report that. */
5607 if (! XQueryPointer (FRAME_X_DISPLAY (f), w,
5609 /* Root, child, root x and root y. */
5610 &dummy_window, &dummy_window,
5611 &dummy_coord, &dummy_coord,
5613 /* Position relative to scroll bar. */
5614 &win_x, &win_y,
5616 /* Mouse buttons and modifier keys. */
5617 &dummy_mask))
5619 else
5621 int top_range
5622 = VERTICAL_SCROLL_BAR_TOP_RANGE (f, bar->height);
5624 win_y -= VERTICAL_SCROLL_BAR_TOP_BORDER;
5626 if (! NILP (bar->dragging))
5627 win_y -= XINT (bar->dragging);
5629 if (win_y < 0)
5630 win_y = 0;
5631 if (win_y > top_range)
5632 win_y = top_range;
5634 *fp = f;
5635 *bar_window = bar->window;
5637 if (! NILP (bar->dragging))
5638 *part = scroll_bar_handle;
5639 else if (win_y < bar->start)
5640 *part = scroll_bar_above_handle;
5641 else if (win_y < bar->end + VERTICAL_SCROLL_BAR_MIN_HANDLE)
5642 *part = scroll_bar_handle;
5643 else
5644 *part = scroll_bar_below_handle;
5646 XSETINT (*x, win_y);
5647 XSETINT (*y, top_range);
5649 f->mouse_moved = 0;
5650 last_mouse_scroll_bar = Qnil;
5653 *timestamp = last_mouse_movement_time;
5655 unblock_input ();
5659 /* The screen has been cleared so we may have changed foreground or
5660 background colors, and the scroll bars may need to be redrawn.
5661 Clear out the scroll bars, and ask for expose events, so we can
5662 redraw them. */
5664 static void
5665 x_scroll_bar_clear (struct frame *f)
5667 #ifndef USE_TOOLKIT_SCROLL_BARS
5668 Lisp_Object bar;
5670 /* We can have scroll bars even if this is 0,
5671 if we just turned off scroll bar mode.
5672 But in that case we should not clear them. */
5673 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
5674 for (bar = FRAME_SCROLL_BARS (f); VECTORP (bar);
5675 bar = XSCROLL_BAR (bar)->next)
5676 XClearArea (FRAME_X_DISPLAY (f),
5677 XSCROLL_BAR (bar)->x_window,
5678 0, 0, 0, 0, True);
5679 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5683 /* The main X event-reading loop - XTread_socket. */
5685 /* This holds the state XLookupString needs to implement dead keys
5686 and other tricks known as "compose processing". _X Window System_
5687 says that a portable program can't use this, but Stephen Gildea assures
5688 me that letting the compiler initialize it to zeros will work okay.
5690 This must be defined outside of XTread_socket, for the same reasons
5691 given for enter_timestamp, above. */
5693 static XComposeStatus compose_status;
5695 /* Record the last 100 characters stored
5696 to help debug the loss-of-chars-during-GC problem. */
5698 static int temp_index;
5699 static short temp_buffer[100];
5701 #define STORE_KEYSYM_FOR_DEBUG(keysym) \
5702 if (temp_index == sizeof temp_buffer / sizeof (short)) \
5703 temp_index = 0; \
5704 temp_buffer[temp_index++] = (keysym)
5706 /* Set this to nonzero to fake an "X I/O error"
5707 on a particular display. */
5709 static struct x_display_info *XTread_socket_fake_io_error;
5711 /* When we find no input here, we occasionally do a no-op command
5712 to verify that the X server is still running and we can still talk with it.
5713 We try all the open displays, one by one.
5714 This variable is used for cycling thru the displays. */
5716 static struct x_display_info *next_noop_dpyinfo;
5718 #if defined USE_X_TOOLKIT || defined USE_GTK
5719 #define SET_SAVED_BUTTON_EVENT \
5720 do \
5722 if (f->output_data.x->saved_menu_event == 0) \
5723 f->output_data.x->saved_menu_event = \
5724 xmalloc (sizeof (XEvent)); \
5725 *f->output_data.x->saved_menu_event = event; \
5726 inev.ie.kind = MENU_BAR_ACTIVATE_EVENT; \
5727 XSETFRAME (inev.ie.frame_or_window, f); \
5729 while (0)
5730 #endif
5732 enum
5734 X_EVENT_NORMAL,
5735 X_EVENT_GOTO_OUT,
5736 X_EVENT_DROP
5739 /* Filter events for the current X input method.
5740 DPYINFO is the display this event is for.
5741 EVENT is the X event to filter.
5743 Returns non-zero if the event was filtered, caller shall not process
5744 this event further.
5745 Returns zero if event is wasn't filtered. */
5747 #ifdef HAVE_X_I18N
5748 static int
5749 x_filter_event (struct x_display_info *dpyinfo, XEvent *event)
5751 /* XFilterEvent returns non-zero if the input method has
5752 consumed the event. We pass the frame's X window to
5753 XFilterEvent because that's the one for which the IC
5754 was created. */
5756 struct frame *f1 = x_any_window_to_frame (dpyinfo,
5757 event->xclient.window);
5759 return XFilterEvent (event, f1 ? FRAME_X_WINDOW (f1) : None);
5761 #endif
5763 #ifdef USE_GTK
5764 static int current_count;
5765 static int current_finish;
5766 static struct input_event *current_hold_quit;
5768 /* This is the filter function invoked by the GTK event loop.
5769 It is invoked before the XEvent is translated to a GdkEvent,
5770 so we have a chance to act on the event before GTK. */
5771 static GdkFilterReturn
5772 event_handler_gdk (GdkXEvent *gxev, GdkEvent *ev, gpointer data)
5774 XEvent *xev = (XEvent *) gxev;
5776 block_input ();
5777 if (current_count >= 0)
5779 struct x_display_info *dpyinfo;
5781 dpyinfo = x_display_info_for_display (xev->xany.display);
5783 #ifdef HAVE_X_I18N
5784 /* Filter events for the current X input method.
5785 GTK calls XFilterEvent but not for key press and release,
5786 so we do it here. */
5787 if ((xev->type == KeyPress || xev->type == KeyRelease)
5788 && dpyinfo
5789 && x_filter_event (dpyinfo, xev))
5791 unblock_input ();
5792 return GDK_FILTER_REMOVE;
5794 #endif
5796 if (! dpyinfo)
5797 current_finish = X_EVENT_NORMAL;
5798 else
5799 current_count +=
5800 handle_one_xevent (dpyinfo, xev, &current_finish,
5801 current_hold_quit);
5803 else
5804 current_finish = x_dispatch_event (xev, xev->xany.display);
5806 unblock_input ();
5808 if (current_finish == X_EVENT_GOTO_OUT || current_finish == X_EVENT_DROP)
5809 return GDK_FILTER_REMOVE;
5811 return GDK_FILTER_CONTINUE;
5813 #endif /* USE_GTK */
5816 static void xembed_send_message (struct frame *f, Time,
5817 enum xembed_message,
5818 long detail, long data1, long data2);
5820 /* Handles the XEvent EVENT on display DPYINFO.
5822 *FINISH is X_EVENT_GOTO_OUT if caller should stop reading events.
5823 *FINISH is zero if caller should continue reading events.
5824 *FINISH is X_EVENT_DROP if event should not be passed to the toolkit.
5826 We return the number of characters stored into the buffer. */
5828 static int
5829 handle_one_xevent (struct x_display_info *dpyinfo, XEvent *eventptr,
5830 int *finish, struct input_event *hold_quit)
5832 union {
5833 struct input_event ie;
5834 struct selection_input_event sie;
5835 } inev;
5836 int count = 0;
5837 int do_help = 0;
5838 ptrdiff_t nbytes = 0;
5839 struct frame *f = NULL;
5840 struct coding_system coding;
5841 XEvent event = *eventptr;
5842 Mouse_HLInfo *hlinfo = &dpyinfo->mouse_highlight;
5843 USE_SAFE_ALLOCA;
5845 *finish = X_EVENT_NORMAL;
5847 EVENT_INIT (inev.ie);
5848 inev.ie.kind = NO_EVENT;
5849 inev.ie.arg = Qnil;
5851 if (pending_event_wait.eventtype == event.type)
5852 pending_event_wait.eventtype = 0; /* Indicates we got it. */
5854 switch (event.type)
5856 case ClientMessage:
5858 if (event.xclient.message_type
5859 == dpyinfo->Xatom_wm_protocols
5860 && event.xclient.format == 32)
5862 if (event.xclient.data.l[0]
5863 == dpyinfo->Xatom_wm_take_focus)
5865 /* Use x_any_window_to_frame because this
5866 could be the shell widget window
5867 if the frame has no title bar. */
5868 f = x_any_window_to_frame (dpyinfo, event.xclient.window);
5869 #ifdef HAVE_X_I18N
5870 /* Not quite sure this is needed -pd */
5871 if (f && FRAME_XIC (f))
5872 XSetICFocus (FRAME_XIC (f));
5873 #endif
5874 #if 0 /* Emacs sets WM hints whose `input' field is `true'. This
5875 instructs the WM to set the input focus automatically for
5876 Emacs with a call to XSetInputFocus. Setting WM_TAKE_FOCUS
5877 tells the WM to send us a ClientMessage WM_TAKE_FOCUS after
5878 it has set the focus. So, XSetInputFocus below is not
5879 needed.
5881 The call to XSetInputFocus below has also caused trouble. In
5882 cases where the XSetInputFocus done by the WM and the one
5883 below are temporally close (on a fast machine), the call
5884 below can generate additional FocusIn events which confuse
5885 Emacs. */
5887 /* Since we set WM_TAKE_FOCUS, we must call
5888 XSetInputFocus explicitly. But not if f is null,
5889 since that might be an event for a deleted frame. */
5890 if (f)
5892 Display *d = event.xclient.display;
5893 /* Catch and ignore errors, in case window has been
5894 iconified by a window manager such as GWM. */
5895 x_catch_errors (d);
5896 XSetInputFocus (d, event.xclient.window,
5897 /* The ICCCM says this is
5898 the only valid choice. */
5899 RevertToParent,
5900 event.xclient.data.l[1]);
5901 /* This is needed to detect the error
5902 if there is an error. */
5903 XSync (d, False);
5904 x_uncatch_errors ();
5906 /* Not certain about handling scroll bars here */
5907 #endif /* 0 */
5908 goto done;
5911 if (event.xclient.data.l[0]
5912 == dpyinfo->Xatom_wm_save_yourself)
5914 /* Save state modify the WM_COMMAND property to
5915 something which can reinstate us. This notifies
5916 the session manager, who's looking for such a
5917 PropertyNotify. Can restart processing when
5918 a keyboard or mouse event arrives. */
5919 /* If we have a session manager, don't set this.
5920 KDE will then start two Emacsen, one for the
5921 session manager and one for this. */
5922 #ifdef HAVE_X_SM
5923 if (! x_session_have_connection ())
5924 #endif
5926 f = x_top_window_to_frame (dpyinfo,
5927 event.xclient.window);
5928 /* This is just so we only give real data once
5929 for a single Emacs process. */
5930 if (f == SELECTED_FRAME ())
5931 XSetCommand (FRAME_X_DISPLAY (f),
5932 event.xclient.window,
5933 initial_argv, initial_argc);
5934 else if (f)
5935 XSetCommand (FRAME_X_DISPLAY (f),
5936 event.xclient.window,
5937 0, 0);
5939 goto done;
5942 if (event.xclient.data.l[0]
5943 == dpyinfo->Xatom_wm_delete_window)
5945 f = x_any_window_to_frame (dpyinfo,
5946 event.xclient.window);
5947 if (!f)
5948 goto OTHER; /* May be a dialog that is to be removed */
5950 inev.ie.kind = DELETE_WINDOW_EVENT;
5951 XSETFRAME (inev.ie.frame_or_window, f);
5952 goto done;
5955 goto done;
5958 if (event.xclient.message_type
5959 == dpyinfo->Xatom_wm_configure_denied)
5961 goto done;
5964 if (event.xclient.message_type
5965 == dpyinfo->Xatom_wm_window_moved)
5967 int new_x, new_y;
5968 f = x_window_to_frame (dpyinfo, event.xclient.window);
5970 new_x = event.xclient.data.s[0];
5971 new_y = event.xclient.data.s[1];
5973 if (f)
5975 f->left_pos = new_x;
5976 f->top_pos = new_y;
5978 goto done;
5981 #ifdef HACK_EDITRES
5982 if (event.xclient.message_type
5983 == dpyinfo->Xatom_editres)
5985 f = x_any_window_to_frame (dpyinfo, event.xclient.window);
5986 if (f)
5987 _XEditResCheckMessages (f->output_data.x->widget, NULL,
5988 &event, NULL);
5989 goto done;
5991 #endif /* HACK_EDITRES */
5993 if ((event.xclient.message_type
5994 == dpyinfo->Xatom_DONE)
5995 || (event.xclient.message_type
5996 == dpyinfo->Xatom_PAGE))
5998 /* Ghostview job completed. Kill it. We could
5999 reply with "Next" if we received "Page", but we
6000 currently never do because we are interested in
6001 images, only, which should have 1 page. */
6002 Pixmap pixmap = (Pixmap) event.xclient.data.l[1];
6003 f = x_window_to_frame (dpyinfo, event.xclient.window);
6004 if (!f)
6005 goto OTHER;
6006 x_kill_gs_process (pixmap, f);
6007 expose_frame (f, 0, 0, 0, 0);
6008 goto done;
6011 #ifdef USE_TOOLKIT_SCROLL_BARS
6012 /* Scroll bar callbacks send a ClientMessage from which
6013 we construct an input_event. */
6014 if (event.xclient.message_type
6015 == dpyinfo->Xatom_Scrollbar)
6017 x_scroll_bar_to_input_event (&event, &inev.ie);
6018 *finish = X_EVENT_GOTO_OUT;
6019 goto done;
6021 #endif /* USE_TOOLKIT_SCROLL_BARS */
6023 /* XEmbed messages from the embedder (if any). */
6024 if (event.xclient.message_type
6025 == dpyinfo->Xatom_XEMBED)
6027 enum xembed_message msg = event.xclient.data.l[1];
6028 if (msg == XEMBED_FOCUS_IN || msg == XEMBED_FOCUS_OUT)
6029 x_detect_focus_change (dpyinfo, &event, &inev.ie);
6031 *finish = X_EVENT_GOTO_OUT;
6032 goto done;
6035 xft_settings_event (dpyinfo, &event);
6037 f = x_any_window_to_frame (dpyinfo, event.xclient.window);
6038 if (!f)
6039 goto OTHER;
6040 if (x_handle_dnd_message (f, &event.xclient, dpyinfo, &inev.ie))
6041 *finish = X_EVENT_DROP;
6043 break;
6045 case SelectionNotify:
6046 last_user_time = event.xselection.time;
6047 #ifdef USE_X_TOOLKIT
6048 if (! x_window_to_frame (dpyinfo, event.xselection.requestor))
6049 goto OTHER;
6050 #endif /* not USE_X_TOOLKIT */
6051 x_handle_selection_notify (&event.xselection);
6052 break;
6054 case SelectionClear: /* Someone has grabbed ownership. */
6055 last_user_time = event.xselectionclear.time;
6056 #ifdef USE_X_TOOLKIT
6057 if (! x_window_to_frame (dpyinfo, event.xselectionclear.window))
6058 goto OTHER;
6059 #endif /* USE_X_TOOLKIT */
6061 XSelectionClearEvent *eventp = &(event.xselectionclear);
6063 inev.ie.kind = SELECTION_CLEAR_EVENT;
6064 SELECTION_EVENT_DISPLAY (&inev.sie) = eventp->display;
6065 SELECTION_EVENT_SELECTION (&inev.sie) = eventp->selection;
6066 SELECTION_EVENT_TIME (&inev.sie) = eventp->time;
6068 break;
6070 case SelectionRequest: /* Someone wants our selection. */
6071 last_user_time = event.xselectionrequest.time;
6072 #ifdef USE_X_TOOLKIT
6073 if (!x_window_to_frame (dpyinfo, event.xselectionrequest.owner))
6074 goto OTHER;
6075 #endif /* USE_X_TOOLKIT */
6077 XSelectionRequestEvent *eventp = &(event.xselectionrequest);
6079 inev.ie.kind = SELECTION_REQUEST_EVENT;
6080 SELECTION_EVENT_DISPLAY (&inev.sie) = eventp->display;
6081 SELECTION_EVENT_REQUESTOR (&inev.sie) = eventp->requestor;
6082 SELECTION_EVENT_SELECTION (&inev.sie) = eventp->selection;
6083 SELECTION_EVENT_TARGET (&inev.sie) = eventp->target;
6084 SELECTION_EVENT_PROPERTY (&inev.sie) = eventp->property;
6085 SELECTION_EVENT_TIME (&inev.sie) = eventp->time;
6087 break;
6089 case PropertyNotify:
6090 last_user_time = event.xproperty.time;
6091 f = x_top_window_to_frame (dpyinfo, event.xproperty.window);
6092 if (f && event.xproperty.atom == dpyinfo->Xatom_net_wm_state)
6093 if (x_handle_net_wm_state (f, &event.xproperty)
6094 && FRAME_ICONIFIED_P (f)
6095 && f->output_data.x->net_wm_state_hidden_seen)
6097 /* Gnome shell does not iconify us when C-z is pressed.
6098 It hides the frame. So if our state says we aren't
6099 hidden anymore, treat it as deiconified. */
6100 SET_FRAME_VISIBLE (f, 1);
6101 SET_FRAME_ICONIFIED (f, 0);
6102 f->output_data.x->has_been_visible = 1;
6103 f->output_data.x->net_wm_state_hidden_seen = 0;
6104 inev.ie.kind = DEICONIFY_EVENT;
6105 XSETFRAME (inev.ie.frame_or_window, f);
6108 x_handle_property_notify (&event.xproperty);
6109 xft_settings_event (dpyinfo, &event);
6110 goto OTHER;
6112 case ReparentNotify:
6113 f = x_top_window_to_frame (dpyinfo, event.xreparent.window);
6114 if (f)
6116 int x, y;
6117 f->output_data.x->parent_desc = event.xreparent.parent;
6118 x_real_positions (f, &x, &y);
6119 f->left_pos = x;
6120 f->top_pos = y;
6122 /* Perhaps reparented due to a WM restart. Reset this. */
6123 FRAME_X_DISPLAY_INFO (f)->wm_type = X_WMTYPE_UNKNOWN;
6124 FRAME_X_DISPLAY_INFO (f)->net_supported_window = 0;
6126 x_set_frame_alpha (f);
6128 goto OTHER;
6130 case Expose:
6131 f = x_window_to_frame (dpyinfo, event.xexpose.window);
6132 if (f)
6134 #ifdef USE_GTK
6135 /* This seems to be needed for GTK 2.6. */
6136 x_clear_area (event.xexpose.display,
6137 event.xexpose.window,
6138 event.xexpose.x, event.xexpose.y,
6139 event.xexpose.width, event.xexpose.height,
6140 FALSE);
6141 #endif
6142 if (!FRAME_VISIBLE_P (f))
6144 SET_FRAME_VISIBLE (f, 1);
6145 SET_FRAME_ICONIFIED (f, 0);
6146 f->output_data.x->has_been_visible = 1;
6147 SET_FRAME_GARBAGED (f);
6149 else
6150 expose_frame (f,
6151 event.xexpose.x, event.xexpose.y,
6152 event.xexpose.width, event.xexpose.height);
6154 else
6156 #ifndef USE_TOOLKIT_SCROLL_BARS
6157 struct scroll_bar *bar;
6158 #endif
6159 #if defined USE_LUCID
6160 /* Submenus of the Lucid menu bar aren't widgets
6161 themselves, so there's no way to dispatch events
6162 to them. Recognize this case separately. */
6164 Widget widget
6165 = x_window_to_menu_bar (event.xexpose.window);
6166 if (widget)
6167 xlwmenu_redisplay (widget);
6169 #endif /* USE_LUCID */
6171 #ifdef USE_TOOLKIT_SCROLL_BARS
6172 /* Dispatch event to the widget. */
6173 goto OTHER;
6174 #else /* not USE_TOOLKIT_SCROLL_BARS */
6175 bar = x_window_to_scroll_bar (event.xexpose.display,
6176 event.xexpose.window);
6178 if (bar)
6179 x_scroll_bar_expose (bar, &event);
6180 #ifdef USE_X_TOOLKIT
6181 else
6182 goto OTHER;
6183 #endif /* USE_X_TOOLKIT */
6184 #endif /* not USE_TOOLKIT_SCROLL_BARS */
6186 break;
6188 case GraphicsExpose: /* This occurs when an XCopyArea's
6189 source area was obscured or not
6190 available. */
6191 f = x_window_to_frame (dpyinfo, event.xgraphicsexpose.drawable);
6192 if (f)
6194 expose_frame (f,
6195 event.xgraphicsexpose.x, event.xgraphicsexpose.y,
6196 event.xgraphicsexpose.width,
6197 event.xgraphicsexpose.height);
6199 #ifdef USE_X_TOOLKIT
6200 else
6201 goto OTHER;
6202 #endif /* USE_X_TOOLKIT */
6203 break;
6205 case NoExpose: /* This occurs when an XCopyArea's
6206 source area was completely
6207 available. */
6208 break;
6210 case UnmapNotify:
6211 /* Redo the mouse-highlight after the tooltip has gone. */
6212 if (event.xmap.window == tip_window)
6214 tip_window = 0;
6215 redo_mouse_highlight ();
6218 f = x_top_window_to_frame (dpyinfo, event.xunmap.window);
6219 if (f) /* F may no longer exist if
6220 the frame was deleted. */
6222 bool visible = FRAME_VISIBLE_P (f);
6223 /* While a frame is unmapped, display generation is
6224 disabled; you don't want to spend time updating a
6225 display that won't ever be seen. */
6226 SET_FRAME_VISIBLE (f, 0);
6227 /* We can't distinguish, from the event, whether the window
6228 has become iconified or invisible. So assume, if it
6229 was previously visible, than now it is iconified.
6230 But x_make_frame_invisible clears both
6231 the visible flag and the iconified flag;
6232 and that way, we know the window is not iconified now. */
6233 if (visible || FRAME_ICONIFIED_P (f))
6235 SET_FRAME_ICONIFIED (f, 1);
6236 inev.ie.kind = ICONIFY_EVENT;
6237 XSETFRAME (inev.ie.frame_or_window, f);
6240 goto OTHER;
6242 case MapNotify:
6243 if (event.xmap.window == tip_window)
6244 /* The tooltip has been drawn already. Avoid
6245 the SET_FRAME_GARBAGED below. */
6246 goto OTHER;
6248 /* We use x_top_window_to_frame because map events can
6249 come for sub-windows and they don't mean that the
6250 frame is visible. */
6251 f = x_top_window_to_frame (dpyinfo, event.xmap.window);
6252 if (f)
6254 bool iconified = FRAME_ICONIFIED_P (f);
6255 /* wait_reading_process_output will notice this and update
6256 the frame's display structures.
6257 If we where iconified, we should not set garbaged,
6258 because that stops redrawing on Expose events. This looks
6259 bad if we are called from a recursive event loop
6260 (x_dispatch_event), for example when a dialog is up. */
6261 if (!iconified)
6262 SET_FRAME_GARBAGED (f);
6264 /* Check if fullscreen was specified before we where mapped the
6265 first time, i.e. from the command line. */
6266 if (!f->output_data.x->has_been_visible)
6267 x_check_fullscreen (f);
6269 SET_FRAME_VISIBLE (f, 1);
6270 SET_FRAME_ICONIFIED (f, 0);
6271 f->output_data.x->has_been_visible = 1;
6273 if (iconified)
6275 inev.ie.kind = DEICONIFY_EVENT;
6276 XSETFRAME (inev.ie.frame_or_window, f);
6278 else if (! NILP (Vframe_list) && ! NILP (XCDR (Vframe_list)))
6279 /* Force a redisplay sooner or later to update the
6280 frame titles in case this is the second frame. */
6281 record_asynch_buffer_change ();
6283 #ifdef USE_GTK
6284 xg_frame_resized (f, -1, -1);
6285 #endif
6287 goto OTHER;
6289 case KeyPress:
6291 last_user_time = event.xkey.time;
6292 ignore_next_mouse_click_timeout = 0;
6294 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
6295 /* Dispatch KeyPress events when in menu. */
6296 if (popup_activated ())
6297 goto OTHER;
6298 #endif
6300 f = x_any_window_to_frame (dpyinfo, event.xkey.window);
6302 /* If mouse-highlight is an integer, input clears out
6303 mouse highlighting. */
6304 if (!hlinfo->mouse_face_hidden && INTEGERP (Vmouse_highlight)
6305 && (f == 0
6306 || !EQ (f->tool_bar_window, hlinfo->mouse_face_window)))
6308 clear_mouse_face (hlinfo);
6309 hlinfo->mouse_face_hidden = 1;
6312 #if defined USE_MOTIF && defined USE_TOOLKIT_SCROLL_BARS
6313 if (f == 0)
6315 /* Scroll bars consume key events, but we want
6316 the keys to go to the scroll bar's frame. */
6317 Widget widget = XtWindowToWidget (dpyinfo->display,
6318 event.xkey.window);
6319 if (widget && XmIsScrollBar (widget))
6321 widget = XtParent (widget);
6322 f = x_any_window_to_frame (dpyinfo, XtWindow (widget));
6325 #endif /* USE_MOTIF and USE_TOOLKIT_SCROLL_BARS */
6327 if (f != 0)
6329 KeySym keysym, orig_keysym;
6330 /* al%imercury@uunet.uu.net says that making this 81
6331 instead of 80 fixed a bug whereby meta chars made
6332 his Emacs hang.
6334 It seems that some version of XmbLookupString has
6335 a bug of not returning XBufferOverflow in
6336 status_return even if the input is too long to
6337 fit in 81 bytes. So, we must prepare sufficient
6338 bytes for copy_buffer. 513 bytes (256 chars for
6339 two-byte character set) seems to be a fairly good
6340 approximation. -- 2000.8.10 handa@etl.go.jp */
6341 unsigned char copy_buffer[513];
6342 unsigned char *copy_bufptr = copy_buffer;
6343 int copy_bufsiz = sizeof (copy_buffer);
6344 int modifiers;
6345 Lisp_Object coding_system = Qlatin_1;
6346 Lisp_Object c;
6348 #ifdef USE_GTK
6349 /* Don't pass keys to GTK. A Tab will shift focus to the
6350 tool bar in GTK 2.4. Keys will still go to menus and
6351 dialogs because in that case popup_activated is TRUE
6352 (see above). */
6353 *finish = X_EVENT_DROP;
6354 #endif
6356 event.xkey.state
6357 |= x_emacs_to_x_modifiers (FRAME_X_DISPLAY_INFO (f),
6358 extra_keyboard_modifiers);
6359 modifiers = event.xkey.state;
6361 /* This will have to go some day... */
6363 /* make_lispy_event turns chars into control chars.
6364 Don't do it here because XLookupString is too eager. */
6365 event.xkey.state &= ~ControlMask;
6366 event.xkey.state &= ~(dpyinfo->meta_mod_mask
6367 | dpyinfo->super_mod_mask
6368 | dpyinfo->hyper_mod_mask
6369 | dpyinfo->alt_mod_mask);
6371 /* In case Meta is ComposeCharacter,
6372 clear its status. According to Markus Ehrnsperger
6373 Markus.Ehrnsperger@lehrstuhl-bross.physik.uni-muenchen.de
6374 this enables ComposeCharacter to work whether or
6375 not it is combined with Meta. */
6376 if (modifiers & dpyinfo->meta_mod_mask)
6377 memset (&compose_status, 0, sizeof (compose_status));
6379 #ifdef HAVE_X_I18N
6380 if (FRAME_XIC (f))
6382 Status status_return;
6384 coding_system = Vlocale_coding_system;
6385 nbytes = XmbLookupString (FRAME_XIC (f),
6386 &event.xkey, (char *) copy_bufptr,
6387 copy_bufsiz, &keysym,
6388 &status_return);
6389 if (status_return == XBufferOverflow)
6391 copy_bufsiz = nbytes + 1;
6392 copy_bufptr = alloca (copy_bufsiz);
6393 nbytes = XmbLookupString (FRAME_XIC (f),
6394 &event.xkey, (char *) copy_bufptr,
6395 copy_bufsiz, &keysym,
6396 &status_return);
6398 /* Xutf8LookupString is a new but already deprecated interface. -stef */
6399 if (status_return == XLookupNone)
6400 break;
6401 else if (status_return == XLookupChars)
6403 keysym = NoSymbol;
6404 modifiers = 0;
6406 else if (status_return != XLookupKeySym
6407 && status_return != XLookupBoth)
6408 emacs_abort ();
6410 else
6411 nbytes = XLookupString (&event.xkey, (char *) copy_bufptr,
6412 copy_bufsiz, &keysym,
6413 &compose_status);
6414 #else
6415 nbytes = XLookupString (&event.xkey, (char *) copy_bufptr,
6416 copy_bufsiz, &keysym,
6417 &compose_status);
6418 #endif
6420 /* If not using XIM/XIC, and a compose sequence is in progress,
6421 we break here. Otherwise, chars_matched is always 0. */
6422 if (compose_status.chars_matched > 0 && nbytes == 0)
6423 break;
6425 memset (&compose_status, 0, sizeof (compose_status));
6426 orig_keysym = keysym;
6428 /* Common for all keysym input events. */
6429 XSETFRAME (inev.ie.frame_or_window, f);
6430 inev.ie.modifiers
6431 = x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO (f), modifiers);
6432 inev.ie.timestamp = event.xkey.time;
6434 /* First deal with keysyms which have defined
6435 translations to characters. */
6436 if (keysym >= 32 && keysym < 128)
6437 /* Avoid explicitly decoding each ASCII character. */
6439 inev.ie.kind = ASCII_KEYSTROKE_EVENT;
6440 inev.ie.code = keysym;
6441 goto done_keysym;
6444 /* Keysyms directly mapped to Unicode characters. */
6445 if (keysym >= 0x01000000 && keysym <= 0x0110FFFF)
6447 if (keysym < 0x01000080)
6448 inev.ie.kind = ASCII_KEYSTROKE_EVENT;
6449 else
6450 inev.ie.kind = MULTIBYTE_CHAR_KEYSTROKE_EVENT;
6451 inev.ie.code = keysym & 0xFFFFFF;
6452 goto done_keysym;
6455 /* Now non-ASCII. */
6456 if (HASH_TABLE_P (Vx_keysym_table)
6457 && (c = Fgethash (make_number (keysym),
6458 Vx_keysym_table,
6459 Qnil),
6460 NATNUMP (c)))
6462 inev.ie.kind = (SINGLE_BYTE_CHAR_P (XFASTINT (c))
6463 ? ASCII_KEYSTROKE_EVENT
6464 : MULTIBYTE_CHAR_KEYSTROKE_EVENT);
6465 inev.ie.code = XFASTINT (c);
6466 goto done_keysym;
6469 /* Random non-modifier sorts of keysyms. */
6470 if (((keysym >= XK_BackSpace && keysym <= XK_Escape)
6471 || keysym == XK_Delete
6472 #ifdef XK_ISO_Left_Tab
6473 || (keysym >= XK_ISO_Left_Tab
6474 && keysym <= XK_ISO_Enter)
6475 #endif
6476 || IsCursorKey (keysym) /* 0xff50 <= x < 0xff60 */
6477 || IsMiscFunctionKey (keysym) /* 0xff60 <= x < VARIES */
6478 #ifdef HPUX
6479 /* This recognizes the "extended function
6480 keys". It seems there's no cleaner way.
6481 Test IsModifierKey to avoid handling
6482 mode_switch incorrectly. */
6483 || (XK_Select <= keysym && keysym < XK_KP_Space)
6484 #endif
6485 #ifdef XK_dead_circumflex
6486 || orig_keysym == XK_dead_circumflex
6487 #endif
6488 #ifdef XK_dead_grave
6489 || orig_keysym == XK_dead_grave
6490 #endif
6491 #ifdef XK_dead_tilde
6492 || orig_keysym == XK_dead_tilde
6493 #endif
6494 #ifdef XK_dead_diaeresis
6495 || orig_keysym == XK_dead_diaeresis
6496 #endif
6497 #ifdef XK_dead_macron
6498 || orig_keysym == XK_dead_macron
6499 #endif
6500 #ifdef XK_dead_degree
6501 || orig_keysym == XK_dead_degree
6502 #endif
6503 #ifdef XK_dead_acute
6504 || orig_keysym == XK_dead_acute
6505 #endif
6506 #ifdef XK_dead_cedilla
6507 || orig_keysym == XK_dead_cedilla
6508 #endif
6509 #ifdef XK_dead_breve
6510 || orig_keysym == XK_dead_breve
6511 #endif
6512 #ifdef XK_dead_ogonek
6513 || orig_keysym == XK_dead_ogonek
6514 #endif
6515 #ifdef XK_dead_caron
6516 || orig_keysym == XK_dead_caron
6517 #endif
6518 #ifdef XK_dead_doubleacute
6519 || orig_keysym == XK_dead_doubleacute
6520 #endif
6521 #ifdef XK_dead_abovedot
6522 || orig_keysym == XK_dead_abovedot
6523 #endif
6524 || IsKeypadKey (keysym) /* 0xff80 <= x < 0xffbe */
6525 || IsFunctionKey (keysym) /* 0xffbe <= x < 0xffe1 */
6526 /* Any "vendor-specific" key is ok. */
6527 || (orig_keysym & (1 << 28))
6528 || (keysym != NoSymbol && nbytes == 0))
6529 && ! (IsModifierKey (orig_keysym)
6530 /* The symbols from XK_ISO_Lock
6531 to XK_ISO_Last_Group_Lock
6532 don't have real modifiers but
6533 should be treated similarly to
6534 Mode_switch by Emacs. */
6535 #if defined XK_ISO_Lock && defined XK_ISO_Last_Group_Lock
6536 || (XK_ISO_Lock <= orig_keysym
6537 && orig_keysym <= XK_ISO_Last_Group_Lock)
6538 #endif
6541 STORE_KEYSYM_FOR_DEBUG (keysym);
6542 /* make_lispy_event will convert this to a symbolic
6543 key. */
6544 inev.ie.kind = NON_ASCII_KEYSTROKE_EVENT;
6545 inev.ie.code = keysym;
6546 goto done_keysym;
6549 { /* Raw bytes, not keysym. */
6550 ptrdiff_t i;
6551 int nchars, len;
6553 for (i = 0, nchars = 0; i < nbytes; i++)
6555 if (ASCII_BYTE_P (copy_bufptr[i]))
6556 nchars++;
6557 STORE_KEYSYM_FOR_DEBUG (copy_bufptr[i]);
6560 if (nchars < nbytes)
6562 /* Decode the input data. */
6564 /* The input should be decoded with `coding_system'
6565 which depends on which X*LookupString function
6566 we used just above and the locale. */
6567 setup_coding_system (coding_system, &coding);
6568 coding.src_multibyte = 0;
6569 coding.dst_multibyte = 1;
6570 /* The input is converted to events, thus we can't
6571 handle composition. Anyway, there's no XIM that
6572 gives us composition information. */
6573 coding.common_flags &= ~CODING_ANNOTATION_MASK;
6575 SAFE_NALLOCA (coding.destination, MAX_MULTIBYTE_LENGTH,
6576 nbytes);
6577 coding.dst_bytes = MAX_MULTIBYTE_LENGTH * nbytes;
6578 coding.mode |= CODING_MODE_LAST_BLOCK;
6579 decode_coding_c_string (&coding, copy_bufptr, nbytes, Qnil);
6580 nbytes = coding.produced;
6581 nchars = coding.produced_char;
6582 copy_bufptr = coding.destination;
6585 /* Convert the input data to a sequence of
6586 character events. */
6587 for (i = 0; i < nbytes; i += len)
6589 int ch;
6590 if (nchars == nbytes)
6591 ch = copy_bufptr[i], len = 1;
6592 else
6593 ch = STRING_CHAR_AND_LENGTH (copy_bufptr + i, len);
6594 inev.ie.kind = (SINGLE_BYTE_CHAR_P (ch)
6595 ? ASCII_KEYSTROKE_EVENT
6596 : MULTIBYTE_CHAR_KEYSTROKE_EVENT);
6597 inev.ie.code = ch;
6598 kbd_buffer_store_event_hold (&inev.ie, hold_quit);
6601 count += nchars;
6603 inev.ie.kind = NO_EVENT; /* Already stored above. */
6605 if (keysym == NoSymbol)
6606 break;
6609 done_keysym:
6610 #ifdef HAVE_X_I18N
6611 /* Don't dispatch this event since XtDispatchEvent calls
6612 XFilterEvent, and two calls in a row may freeze the
6613 client. */
6614 break;
6615 #else
6616 goto OTHER;
6617 #endif
6619 case KeyRelease:
6620 last_user_time = event.xkey.time;
6621 #ifdef HAVE_X_I18N
6622 /* Don't dispatch this event since XtDispatchEvent calls
6623 XFilterEvent, and two calls in a row may freeze the
6624 client. */
6625 break;
6626 #else
6627 goto OTHER;
6628 #endif
6630 case EnterNotify:
6631 last_user_time = event.xcrossing.time;
6632 x_detect_focus_change (dpyinfo, &event, &inev.ie);
6634 f = x_any_window_to_frame (dpyinfo, event.xcrossing.window);
6636 if (f && x_mouse_click_focus_ignore_position)
6637 ignore_next_mouse_click_timeout = event.xmotion.time + 200;
6639 /* EnterNotify counts as mouse movement,
6640 so update things that depend on mouse position. */
6641 if (f && !f->output_data.x->hourglass_p)
6642 note_mouse_movement (f, &event.xmotion);
6643 #ifdef USE_GTK
6644 /* We may get an EnterNotify on the buttons in the toolbar. In that
6645 case we moved out of any highlighted area and need to note this. */
6646 if (!f && last_mouse_glyph_frame)
6647 note_mouse_movement (last_mouse_glyph_frame, &event.xmotion);
6648 #endif
6649 goto OTHER;
6651 case FocusIn:
6652 x_detect_focus_change (dpyinfo, &event, &inev.ie);
6653 goto OTHER;
6655 case LeaveNotify:
6656 last_user_time = event.xcrossing.time;
6657 x_detect_focus_change (dpyinfo, &event, &inev.ie);
6659 f = x_top_window_to_frame (dpyinfo, event.xcrossing.window);
6660 if (f)
6662 if (f == hlinfo->mouse_face_mouse_frame)
6664 /* If we move outside the frame, then we're
6665 certainly no longer on any text in the frame. */
6666 clear_mouse_face (hlinfo);
6667 hlinfo->mouse_face_mouse_frame = 0;
6670 /* Generate a nil HELP_EVENT to cancel a help-echo.
6671 Do it only if there's something to cancel.
6672 Otherwise, the startup message is cleared when
6673 the mouse leaves the frame. */
6674 if (any_help_event_p)
6675 do_help = -1;
6677 #ifdef USE_GTK
6678 /* See comment in EnterNotify above */
6679 else if (last_mouse_glyph_frame)
6680 note_mouse_movement (last_mouse_glyph_frame, &event.xmotion);
6681 #endif
6682 goto OTHER;
6684 case FocusOut:
6685 x_detect_focus_change (dpyinfo, &event, &inev.ie);
6686 goto OTHER;
6688 case MotionNotify:
6690 last_user_time = event.xmotion.time;
6691 previous_help_echo_string = help_echo_string;
6692 help_echo_string = Qnil;
6694 if (dpyinfo->grabbed && last_mouse_frame
6695 && FRAME_LIVE_P (last_mouse_frame))
6696 f = last_mouse_frame;
6697 else
6698 f = x_window_to_frame (dpyinfo, event.xmotion.window);
6700 if (hlinfo->mouse_face_hidden)
6702 hlinfo->mouse_face_hidden = 0;
6703 clear_mouse_face (hlinfo);
6706 #ifdef USE_GTK
6707 if (f && xg_event_is_for_scrollbar (f, &event))
6708 f = 0;
6709 #endif
6710 if (f)
6713 /* Generate SELECT_WINDOW_EVENTs when needed.
6714 Don't let popup menus influence things (bug#1261). */
6715 if (!NILP (Vmouse_autoselect_window) && !popup_activated ())
6717 Lisp_Object window;
6719 window = window_from_coordinates (f,
6720 event.xmotion.x, event.xmotion.y,
6721 0, 0);
6723 /* Window will be selected only when it is not selected now and
6724 last mouse movement event was not in it. Minibuffer window
6725 will be selected only when it is active. */
6726 if (WINDOWP (window)
6727 && !EQ (window, last_window)
6728 && !EQ (window, selected_window)
6729 /* For click-to-focus window managers
6730 create event iff we don't leave the
6731 selected frame. */
6732 && (focus_follows_mouse
6733 || (EQ (XWINDOW (window)->frame,
6734 XWINDOW (selected_window)->frame))))
6736 inev.ie.kind = SELECT_WINDOW_EVENT;
6737 inev.ie.frame_or_window = window;
6740 last_window=window;
6742 if (!note_mouse_movement (f, &event.xmotion))
6743 help_echo_string = previous_help_echo_string;
6745 else
6747 #ifndef USE_TOOLKIT_SCROLL_BARS
6748 struct scroll_bar *bar
6749 = x_window_to_scroll_bar (event.xmotion.display,
6750 event.xmotion.window);
6752 if (bar)
6753 x_scroll_bar_note_movement (bar, &event);
6754 #endif /* USE_TOOLKIT_SCROLL_BARS */
6756 /* If we move outside the frame, then we're
6757 certainly no longer on any text in the frame. */
6758 clear_mouse_face (hlinfo);
6761 /* If the contents of the global variable help_echo_string
6762 has changed, generate a HELP_EVENT. */
6763 if (!NILP (help_echo_string)
6764 || !NILP (previous_help_echo_string))
6765 do_help = 1;
6766 goto OTHER;
6769 case ConfigureNotify:
6770 f = x_top_window_to_frame (dpyinfo, event.xconfigure.window);
6771 #ifdef USE_GTK
6772 if (!f
6773 && (f = x_any_window_to_frame (dpyinfo, event.xconfigure.window))
6774 && event.xconfigure.window == FRAME_X_WINDOW (f))
6776 xg_frame_resized (f, event.xconfigure.width,
6777 event.xconfigure.height);
6778 f = 0;
6780 #endif
6781 if (f)
6783 #ifndef USE_X_TOOLKIT
6784 #ifndef USE_GTK
6785 int rows = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, event.xconfigure.height);
6786 int columns = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, event.xconfigure.width);
6788 /* In the toolkit version, change_frame_size
6789 is called by the code that handles resizing
6790 of the EmacsFrame widget. */
6792 /* Even if the number of character rows and columns has
6793 not changed, the font size may have changed, so we need
6794 to check the pixel dimensions as well. */
6795 if (columns != FRAME_COLS (f)
6796 || rows != FRAME_LINES (f)
6797 || event.xconfigure.width != FRAME_PIXEL_WIDTH (f)
6798 || event.xconfigure.height != FRAME_PIXEL_HEIGHT (f))
6800 change_frame_size (f, rows, columns, 0, 1, 0);
6801 SET_FRAME_GARBAGED (f);
6802 cancel_mouse_face (f);
6805 FRAME_PIXEL_WIDTH (f) = event.xconfigure.width;
6806 FRAME_PIXEL_HEIGHT (f) = event.xconfigure.height;
6807 #endif /* not USE_GTK */
6808 #endif
6810 #ifdef USE_GTK
6811 /* GTK creates windows but doesn't map them.
6812 Only get real positions when mapped. */
6813 if (FRAME_GTK_OUTER_WIDGET (f)
6814 && gtk_widget_get_mapped (FRAME_GTK_OUTER_WIDGET (f)))
6815 #endif
6817 x_real_positions (f, &f->left_pos, &f->top_pos);
6820 #ifdef HAVE_X_I18N
6821 if (FRAME_XIC (f) && (FRAME_XIC_STYLE (f) & XIMStatusArea))
6822 xic_set_statusarea (f);
6823 #endif
6826 goto OTHER;
6828 case ButtonRelease:
6829 case ButtonPress:
6831 /* If we decide we want to generate an event to be seen
6832 by the rest of Emacs, we put it here. */
6833 bool tool_bar_p = 0;
6835 memset (&compose_status, 0, sizeof (compose_status));
6836 last_mouse_glyph_frame = 0;
6837 last_user_time = event.xbutton.time;
6839 if (dpyinfo->grabbed
6840 && last_mouse_frame
6841 && FRAME_LIVE_P (last_mouse_frame))
6842 f = last_mouse_frame;
6843 else
6844 f = x_window_to_frame (dpyinfo, event.xbutton.window);
6846 #ifdef USE_GTK
6847 if (f && xg_event_is_for_scrollbar (f, &event))
6848 f = 0;
6849 #endif
6850 if (f)
6852 /* Is this in the tool-bar? */
6853 if (WINDOWP (f->tool_bar_window)
6854 && WINDOW_TOTAL_LINES (XWINDOW (f->tool_bar_window)))
6856 Lisp_Object window;
6857 int x = event.xbutton.x;
6858 int y = event.xbutton.y;
6860 window = window_from_coordinates (f, x, y, 0, 1);
6861 tool_bar_p = EQ (window, f->tool_bar_window);
6863 if (tool_bar_p && event.xbutton.button < 4)
6865 handle_tool_bar_click (f, x, y,
6866 event.xbutton.type == ButtonPress,
6867 x_x_to_emacs_modifiers (dpyinfo,
6868 event.xbutton.state));
6872 if (!tool_bar_p)
6873 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
6874 if (! popup_activated ())
6875 #endif
6877 if (ignore_next_mouse_click_timeout)
6879 if (event.type == ButtonPress
6880 && (int)(event.xbutton.time - ignore_next_mouse_click_timeout) > 0)
6882 ignore_next_mouse_click_timeout = 0;
6883 construct_mouse_click (&inev.ie, &event.xbutton, f);
6885 if (event.type == ButtonRelease)
6886 ignore_next_mouse_click_timeout = 0;
6888 else
6889 construct_mouse_click (&inev.ie, &event.xbutton, f);
6891 if (FRAME_X_EMBEDDED_P (f))
6892 xembed_send_message (f, event.xbutton.time,
6893 XEMBED_REQUEST_FOCUS, 0, 0, 0);
6895 else
6897 struct scroll_bar *bar
6898 = x_window_to_scroll_bar (event.xbutton.display,
6899 event.xbutton.window);
6901 #ifdef USE_TOOLKIT_SCROLL_BARS
6902 /* Make the "Ctrl-Mouse-2 splits window" work for toolkit
6903 scroll bars. */
6904 if (bar && event.xbutton.state & ControlMask)
6906 x_scroll_bar_handle_click (bar, &event, &inev.ie);
6907 *finish = X_EVENT_DROP;
6909 #else /* not USE_TOOLKIT_SCROLL_BARS */
6910 if (bar)
6911 x_scroll_bar_handle_click (bar, &event, &inev.ie);
6912 #endif /* not USE_TOOLKIT_SCROLL_BARS */
6915 if (event.type == ButtonPress)
6917 dpyinfo->grabbed |= (1 << event.xbutton.button);
6918 last_mouse_frame = f;
6920 if (!tool_bar_p)
6921 last_tool_bar_item = -1;
6923 else
6924 dpyinfo->grabbed &= ~(1 << event.xbutton.button);
6926 /* Ignore any mouse motion that happened before this event;
6927 any subsequent mouse-movement Emacs events should reflect
6928 only motion after the ButtonPress/Release. */
6929 if (f != 0)
6930 f->mouse_moved = 0;
6932 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
6933 f = x_menubar_window_to_frame (dpyinfo, &event);
6934 /* For a down-event in the menu bar,
6935 don't pass it to Xt right now.
6936 Instead, save it away
6937 and we will pass it to Xt from kbd_buffer_get_event.
6938 That way, we can run some Lisp code first. */
6939 if (! popup_activated ()
6940 #ifdef USE_GTK
6941 /* Gtk+ menus only react to the first three buttons. */
6942 && event.xbutton.button < 3
6943 #endif
6944 && f && event.type == ButtonPress
6945 /* Verify the event is really within the menu bar
6946 and not just sent to it due to grabbing. */
6947 && event.xbutton.x >= 0
6948 && event.xbutton.x < FRAME_PIXEL_WIDTH (f)
6949 && event.xbutton.y >= 0
6950 && event.xbutton.y < f->output_data.x->menubar_height
6951 && event.xbutton.same_screen)
6953 SET_SAVED_BUTTON_EVENT;
6954 *finish = X_EVENT_DROP;
6956 else
6957 goto OTHER;
6958 #endif /* USE_X_TOOLKIT || USE_GTK */
6960 break;
6962 case CirculateNotify:
6963 goto OTHER;
6965 case CirculateRequest:
6966 goto OTHER;
6968 case VisibilityNotify:
6969 goto OTHER;
6971 case MappingNotify:
6972 /* Someone has changed the keyboard mapping - update the
6973 local cache. */
6974 switch (event.xmapping.request)
6976 case MappingModifier:
6977 x_find_modifier_meanings (dpyinfo);
6978 /* This is meant to fall through. */
6979 case MappingKeyboard:
6980 XRefreshKeyboardMapping (&event.xmapping);
6982 goto OTHER;
6984 case DestroyNotify:
6985 xft_settings_event (dpyinfo, &event);
6986 break;
6988 default:
6989 OTHER:
6990 #ifdef USE_X_TOOLKIT
6991 block_input ();
6992 if (*finish != X_EVENT_DROP)
6993 XtDispatchEvent (&event);
6994 unblock_input ();
6995 #endif /* USE_X_TOOLKIT */
6996 break;
6999 done:
7000 if (inev.ie.kind != NO_EVENT)
7002 kbd_buffer_store_event_hold (&inev.ie, hold_quit);
7003 count++;
7006 if (do_help
7007 && !(hold_quit && hold_quit->kind != NO_EVENT))
7009 Lisp_Object frame;
7011 if (f)
7012 XSETFRAME (frame, f);
7013 else
7014 frame = Qnil;
7016 if (do_help > 0)
7018 any_help_event_p = 1;
7019 gen_help_event (help_echo_string, frame, help_echo_window,
7020 help_echo_object, help_echo_pos);
7022 else
7024 help_echo_string = Qnil;
7025 gen_help_event (Qnil, frame, Qnil, Qnil, 0);
7027 count++;
7030 SAFE_FREE ();
7031 *eventptr = event;
7032 return count;
7035 #if defined USE_GTK || defined USE_X_TOOLKIT
7037 /* Handles the XEvent EVENT on display DISPLAY.
7038 This is used for event loops outside the normal event handling,
7039 i.e. looping while a popup menu or a dialog is posted.
7041 Returns the value handle_one_xevent sets in the finish argument. */
7043 x_dispatch_event (XEvent *event, Display *display)
7045 struct x_display_info *dpyinfo;
7046 int finish = X_EVENT_NORMAL;
7048 dpyinfo = x_display_info_for_display (display);
7050 if (dpyinfo)
7051 handle_one_xevent (dpyinfo, event, &finish, 0);
7053 return finish;
7055 #endif
7058 /* Read events coming from the X server.
7059 Return as soon as there are no more events to be read.
7061 Return the number of characters stored into the buffer,
7062 thus pretending to be `read' (except the characters we store
7063 in the keyboard buffer can be multibyte, so are not necessarily
7064 C chars). */
7066 static int
7067 XTread_socket (struct terminal *terminal, struct input_event *hold_quit)
7069 int count = 0;
7070 int event_found = 0;
7072 block_input ();
7074 /* So people can tell when we have read the available input. */
7075 input_signal_count++;
7077 /* For debugging, this gives a way to fake an I/O error. */
7078 if (terminal->display_info.x == XTread_socket_fake_io_error)
7080 XTread_socket_fake_io_error = 0;
7081 x_io_error_quitter (terminal->display_info.x->display);
7084 #ifndef USE_GTK
7085 while (XPending (terminal->display_info.x->display))
7087 int finish;
7088 XEvent event;
7090 XNextEvent (terminal->display_info.x->display, &event);
7092 #ifdef HAVE_X_I18N
7093 /* Filter events for the current X input method. */
7094 if (x_filter_event (terminal->display_info.x, &event))
7095 continue;
7096 #endif
7097 event_found = 1;
7099 count += handle_one_xevent (terminal->display_info.x,
7100 &event, &finish, hold_quit);
7102 if (finish == X_EVENT_GOTO_OUT)
7103 goto out;
7106 out:;
7108 #else /* USE_GTK */
7110 /* For GTK we must use the GTK event loop. But XEvents gets passed
7111 to our filter function above, and then to the big event switch.
7112 We use a bunch of globals to communicate with our filter function,
7113 that is kind of ugly, but it works.
7115 There is no way to do one display at the time, GTK just does events
7116 from all displays. */
7118 while (gtk_events_pending ())
7120 current_count = count;
7121 current_hold_quit = hold_quit;
7123 gtk_main_iteration ();
7125 count = current_count;
7126 current_count = -1;
7127 current_hold_quit = 0;
7129 if (current_finish == X_EVENT_GOTO_OUT)
7130 break;
7132 #endif /* USE_GTK */
7134 /* On some systems, an X bug causes Emacs to get no more events
7135 when the window is destroyed. Detect that. (1994.) */
7136 if (! event_found)
7138 /* Emacs and the X Server eats up CPU time if XNoOp is done every time.
7139 One XNOOP in 100 loops will make Emacs terminate.
7140 B. Bretthauer, 1994 */
7141 x_noop_count++;
7142 if (x_noop_count >= 100)
7144 x_noop_count=0;
7146 if (next_noop_dpyinfo == 0)
7147 next_noop_dpyinfo = x_display_list;
7149 XNoOp (next_noop_dpyinfo->display);
7151 /* Each time we get here, cycle through the displays now open. */
7152 next_noop_dpyinfo = next_noop_dpyinfo->next;
7156 /* If the focus was just given to an auto-raising frame,
7157 raise it now. */
7158 /* ??? This ought to be able to handle more than one such frame. */
7159 if (pending_autoraise_frame)
7161 x_raise_frame (pending_autoraise_frame);
7162 pending_autoraise_frame = 0;
7165 unblock_input ();
7167 return count;
7173 /***********************************************************************
7174 Text Cursor
7175 ***********************************************************************/
7177 /* Set clipping for output in glyph row ROW. W is the window in which
7178 we operate. GC is the graphics context to set clipping in.
7180 ROW may be a text row or, e.g., a mode line. Text rows must be
7181 clipped to the interior of the window dedicated to text display,
7182 mode lines must be clipped to the whole window. */
7184 static void
7185 x_clip_to_row (struct window *w, struct glyph_row *row, int area, GC gc)
7187 struct frame *f = XFRAME (WINDOW_FRAME (w));
7188 XRectangle clip_rect;
7189 int window_x, window_y, window_width;
7191 window_box (w, area, &window_x, &window_y, &window_width, 0);
7193 clip_rect.x = window_x;
7194 clip_rect.y = WINDOW_TO_FRAME_PIXEL_Y (w, max (0, row->y));
7195 clip_rect.y = max (clip_rect.y, window_y);
7196 clip_rect.width = window_width;
7197 clip_rect.height = row->visible_height;
7199 XSetClipRectangles (FRAME_X_DISPLAY (f), gc, 0, 0, &clip_rect, 1, Unsorted);
7203 /* Draw a hollow box cursor on window W in glyph row ROW. */
7205 static void
7206 x_draw_hollow_cursor (struct window *w, struct glyph_row *row)
7208 struct frame *f = XFRAME (WINDOW_FRAME (w));
7209 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
7210 Display *dpy = FRAME_X_DISPLAY (f);
7211 int x, y, wd, h;
7212 XGCValues xgcv;
7213 struct glyph *cursor_glyph;
7214 GC gc;
7216 /* Get the glyph the cursor is on. If we can't tell because
7217 the current matrix is invalid or such, give up. */
7218 cursor_glyph = get_phys_cursor_glyph (w);
7219 if (cursor_glyph == NULL)
7220 return;
7222 /* Compute frame-relative coordinates for phys cursor. */
7223 get_phys_cursor_geometry (w, row, cursor_glyph, &x, &y, &h);
7224 wd = w->phys_cursor_width;
7226 /* The foreground of cursor_gc is typically the same as the normal
7227 background color, which can cause the cursor box to be invisible. */
7228 xgcv.foreground = f->output_data.x->cursor_pixel;
7229 if (dpyinfo->scratch_cursor_gc)
7230 XChangeGC (dpy, dpyinfo->scratch_cursor_gc, GCForeground, &xgcv);
7231 else
7232 dpyinfo->scratch_cursor_gc = XCreateGC (dpy, FRAME_X_WINDOW (f),
7233 GCForeground, &xgcv);
7234 gc = dpyinfo->scratch_cursor_gc;
7236 /* Set clipping, draw the rectangle, and reset clipping again. */
7237 x_clip_to_row (w, row, TEXT_AREA, gc);
7238 XDrawRectangle (dpy, FRAME_X_WINDOW (f), gc, x, y, wd, h - 1);
7239 XSetClipMask (dpy, gc, None);
7243 /* Draw a bar cursor on window W in glyph row ROW.
7245 Implementation note: One would like to draw a bar cursor with an
7246 angle equal to the one given by the font property XA_ITALIC_ANGLE.
7247 Unfortunately, I didn't find a font yet that has this property set.
7248 --gerd. */
7250 static void
7251 x_draw_bar_cursor (struct window *w, struct glyph_row *row, int width, enum text_cursor_kinds kind)
7253 struct frame *f = XFRAME (w->frame);
7254 struct glyph *cursor_glyph;
7256 /* If cursor is out of bounds, don't draw garbage. This can happen
7257 in mini-buffer windows when switching between echo area glyphs
7258 and mini-buffer. */
7259 cursor_glyph = get_phys_cursor_glyph (w);
7260 if (cursor_glyph == NULL)
7261 return;
7263 /* If on an image, draw like a normal cursor. That's usually better
7264 visible than drawing a bar, esp. if the image is large so that
7265 the bar might not be in the window. */
7266 if (cursor_glyph->type == IMAGE_GLYPH)
7268 struct glyph_row *r;
7269 r = MATRIX_ROW (w->current_matrix, w->phys_cursor.vpos);
7270 draw_phys_cursor_glyph (w, r, DRAW_CURSOR);
7272 else
7274 Display *dpy = FRAME_X_DISPLAY (f);
7275 Window window = FRAME_X_WINDOW (f);
7276 GC gc = FRAME_X_DISPLAY_INFO (f)->scratch_cursor_gc;
7277 unsigned long mask = GCForeground | GCBackground | GCGraphicsExposures;
7278 struct face *face = FACE_FROM_ID (f, cursor_glyph->face_id);
7279 XGCValues xgcv;
7281 /* If the glyph's background equals the color we normally draw
7282 the bars cursor in, the bar cursor in its normal color is
7283 invisible. Use the glyph's foreground color instead in this
7284 case, on the assumption that the glyph's colors are chosen so
7285 that the glyph is legible. */
7286 if (face->background == f->output_data.x->cursor_pixel)
7287 xgcv.background = xgcv.foreground = face->foreground;
7288 else
7289 xgcv.background = xgcv.foreground = f->output_data.x->cursor_pixel;
7290 xgcv.graphics_exposures = 0;
7292 if (gc)
7293 XChangeGC (dpy, gc, mask, &xgcv);
7294 else
7296 gc = XCreateGC (dpy, window, mask, &xgcv);
7297 FRAME_X_DISPLAY_INFO (f)->scratch_cursor_gc = gc;
7300 x_clip_to_row (w, row, TEXT_AREA, gc);
7302 if (kind == BAR_CURSOR)
7304 int x = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x);
7306 if (width < 0)
7307 width = FRAME_CURSOR_WIDTH (f);
7308 width = min (cursor_glyph->pixel_width, width);
7310 w->phys_cursor_width = width;
7312 /* If the character under cursor is R2L, draw the bar cursor
7313 on the right of its glyph, rather than on the left. */
7314 if ((cursor_glyph->resolved_level & 1) != 0)
7315 x += cursor_glyph->pixel_width - width;
7317 XFillRectangle (dpy, window, gc, x,
7318 WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y),
7319 width, row->height);
7321 else
7323 int dummy_x, dummy_y, dummy_h;
7325 if (width < 0)
7326 width = row->height;
7328 width = min (row->height, width);
7330 get_phys_cursor_geometry (w, row, cursor_glyph, &dummy_x,
7331 &dummy_y, &dummy_h);
7333 XFillRectangle (dpy, window, gc,
7334 WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x),
7335 WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y +
7336 row->height - width),
7337 w->phys_cursor_width, width);
7340 XSetClipMask (dpy, gc, None);
7345 /* RIF: Define cursor CURSOR on frame F. */
7347 static void
7348 x_define_frame_cursor (struct frame *f, Cursor cursor)
7350 if (!f->pointer_invisible
7351 && f->output_data.x->current_cursor != cursor)
7352 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), cursor);
7353 f->output_data.x->current_cursor = cursor;
7357 /* RIF: Clear area on frame F. */
7359 static void
7360 x_clear_frame_area (struct frame *f, int x, int y, int width, int height)
7362 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
7363 x, y, width, height, False);
7364 #ifdef USE_GTK
7365 /* Must queue a redraw, because scroll bars might have been cleared. */
7366 if (FRAME_GTK_WIDGET (f))
7367 gtk_widget_queue_draw (FRAME_GTK_WIDGET (f));
7368 #endif
7372 /* RIF: Draw cursor on window W. */
7374 static void
7375 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)
7377 struct frame *f = XFRAME (WINDOW_FRAME (w));
7379 if (on_p)
7381 w->phys_cursor_type = cursor_type;
7382 w->phys_cursor_on_p = 1;
7384 if (glyph_row->exact_window_width_line_p
7385 && (glyph_row->reversed_p
7386 ? (w->phys_cursor.hpos < 0)
7387 : (w->phys_cursor.hpos >= glyph_row->used[TEXT_AREA])))
7389 glyph_row->cursor_in_fringe_p = 1;
7390 draw_fringe_bitmap (w, glyph_row, glyph_row->reversed_p);
7392 else
7394 switch (cursor_type)
7396 case HOLLOW_BOX_CURSOR:
7397 x_draw_hollow_cursor (w, glyph_row);
7398 break;
7400 case FILLED_BOX_CURSOR:
7401 draw_phys_cursor_glyph (w, glyph_row, DRAW_CURSOR);
7402 break;
7404 case BAR_CURSOR:
7405 x_draw_bar_cursor (w, glyph_row, cursor_width, BAR_CURSOR);
7406 break;
7408 case HBAR_CURSOR:
7409 x_draw_bar_cursor (w, glyph_row, cursor_width, HBAR_CURSOR);
7410 break;
7412 case NO_CURSOR:
7413 w->phys_cursor_width = 0;
7414 break;
7416 default:
7417 emacs_abort ();
7421 #ifdef HAVE_X_I18N
7422 if (w == XWINDOW (f->selected_window))
7423 if (FRAME_XIC (f) && (FRAME_XIC_STYLE (f) & XIMPreeditPosition))
7424 xic_set_preeditarea (w, x, y);
7425 #endif
7428 #ifndef XFlush
7429 XFlush (FRAME_X_DISPLAY (f));
7430 #endif
7434 /* Icons. */
7436 /* Make the x-window of frame F use the gnu icon bitmap. */
7439 x_bitmap_icon (struct frame *f, Lisp_Object file)
7441 ptrdiff_t bitmap_id;
7443 if (FRAME_X_WINDOW (f) == 0)
7444 return 1;
7446 /* Free up our existing icon bitmap and mask if any. */
7447 if (f->output_data.x->icon_bitmap > 0)
7448 x_destroy_bitmap (f, f->output_data.x->icon_bitmap);
7449 f->output_data.x->icon_bitmap = 0;
7451 if (STRINGP (file))
7453 #ifdef USE_GTK
7454 /* Use gtk_window_set_icon_from_file () if available,
7455 It's not restricted to bitmaps */
7456 if (xg_set_icon (f, file))
7457 return 0;
7458 #endif /* USE_GTK */
7459 bitmap_id = x_create_bitmap_from_file (f, file);
7460 x_create_bitmap_mask (f, bitmap_id);
7462 else
7464 /* Create the GNU bitmap and mask if necessary. */
7465 if (FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id < 0)
7467 ptrdiff_t rc = -1;
7469 #ifdef USE_GTK
7471 if (xg_set_icon (f, xg_default_icon_file)
7472 || xg_set_icon_from_xpm_data (f, gnu_xpm_bits))
7473 return 0;
7475 #elif defined (HAVE_XPM) && defined (HAVE_X_WINDOWS)
7477 rc = x_create_bitmap_from_xpm_data (f, gnu_xpm_bits);
7478 if (rc != -1)
7479 FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id = rc;
7481 #endif
7483 /* If all else fails, use the (black and white) xbm image. */
7484 if (rc == -1)
7486 rc = x_create_bitmap_from_data (f, (char *) gnu_xbm_bits,
7487 gnu_xbm_width, gnu_xbm_height);
7488 if (rc == -1)
7489 return 1;
7491 FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id = rc;
7492 x_create_bitmap_mask (f, FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id);
7496 /* The first time we create the GNU bitmap and mask,
7497 this increments the ref-count one extra time.
7498 As a result, the GNU bitmap and mask are never freed.
7499 That way, we don't have to worry about allocating it again. */
7500 x_reference_bitmap (f, FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id);
7502 bitmap_id = FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id;
7505 x_wm_set_icon_pixmap (f, bitmap_id);
7506 f->output_data.x->icon_bitmap = bitmap_id;
7508 return 0;
7512 /* Make the x-window of frame F use a rectangle with text.
7513 Use ICON_NAME as the text. */
7516 x_text_icon (struct frame *f, const char *icon_name)
7518 if (FRAME_X_WINDOW (f) == 0)
7519 return 1;
7522 XTextProperty text;
7523 text.value = (unsigned char *) icon_name;
7524 text.encoding = XA_STRING;
7525 text.format = 8;
7526 text.nitems = strlen (icon_name);
7527 XSetWMIconName (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f), &text);
7530 if (f->output_data.x->icon_bitmap > 0)
7531 x_destroy_bitmap (f, f->output_data.x->icon_bitmap);
7532 f->output_data.x->icon_bitmap = 0;
7533 x_wm_set_icon_pixmap (f, 0);
7535 return 0;
7538 #define X_ERROR_MESSAGE_SIZE 200
7540 /* If non-nil, this should be a string.
7541 It means catch X errors and store the error message in this string.
7543 The reason we use a stack is that x_catch_error/x_uncatch_error can
7544 be called from a signal handler.
7547 struct x_error_message_stack {
7548 char string[X_ERROR_MESSAGE_SIZE];
7549 Display *dpy;
7550 struct x_error_message_stack *prev;
7552 static struct x_error_message_stack *x_error_message;
7554 /* An X error handler which stores the error message in
7555 *x_error_message. This is called from x_error_handler if
7556 x_catch_errors is in effect. */
7558 static void
7559 x_error_catcher (Display *display, XErrorEvent *event)
7561 XGetErrorText (display, event->error_code,
7562 x_error_message->string,
7563 X_ERROR_MESSAGE_SIZE);
7566 /* Begin trapping X errors for display DPY. Actually we trap X errors
7567 for all displays, but DPY should be the display you are actually
7568 operating on.
7570 After calling this function, X protocol errors no longer cause
7571 Emacs to exit; instead, they are recorded in the string
7572 stored in *x_error_message.
7574 Calling x_check_errors signals an Emacs error if an X error has
7575 occurred since the last call to x_catch_errors or x_check_errors.
7577 Calling x_uncatch_errors resumes the normal error handling. */
7579 void
7580 x_catch_errors (Display *dpy)
7582 struct x_error_message_stack *data = xmalloc (sizeof *data);
7584 /* Make sure any errors from previous requests have been dealt with. */
7585 XSync (dpy, False);
7587 data->dpy = dpy;
7588 data->string[0] = 0;
7589 data->prev = x_error_message;
7590 x_error_message = data;
7593 /* Undo the last x_catch_errors call.
7594 DPY should be the display that was passed to x_catch_errors. */
7596 void
7597 x_uncatch_errors (void)
7599 struct x_error_message_stack *tmp;
7601 block_input ();
7603 /* The display may have been closed before this function is called.
7604 Check if it is still open before calling XSync. */
7605 if (x_display_info_for_display (x_error_message->dpy) != 0)
7606 XSync (x_error_message->dpy, False);
7608 tmp = x_error_message;
7609 x_error_message = x_error_message->prev;
7610 xfree (tmp);
7611 unblock_input ();
7614 /* If any X protocol errors have arrived since the last call to
7615 x_catch_errors or x_check_errors, signal an Emacs error using
7616 sprintf (a buffer, FORMAT, the x error message text) as the text. */
7618 void
7619 x_check_errors (Display *dpy, const char *format)
7621 /* Make sure to catch any errors incurred so far. */
7622 XSync (dpy, False);
7624 if (x_error_message->string[0])
7626 char string[X_ERROR_MESSAGE_SIZE];
7627 memcpy (string, x_error_message->string, X_ERROR_MESSAGE_SIZE);
7628 x_uncatch_errors ();
7629 error (format, string);
7633 /* Nonzero if we had any X protocol errors
7634 since we did x_catch_errors on DPY. */
7636 bool
7637 x_had_errors_p (Display *dpy)
7639 /* Make sure to catch any errors incurred so far. */
7640 XSync (dpy, False);
7642 return x_error_message->string[0] != 0;
7645 /* Forget about any errors we have had, since we did x_catch_errors on DPY. */
7647 void
7648 x_clear_errors (Display *dpy)
7650 x_error_message->string[0] = 0;
7653 #if 0 /* See comment in unwind_to_catch why calling this is a bad
7654 * idea. --lorentey */
7655 /* Close off all unclosed x_catch_errors calls. */
7657 void
7658 x_fully_uncatch_errors (void)
7660 while (x_error_message)
7661 x_uncatch_errors ();
7663 #endif
7665 #if 0
7666 static unsigned int x_wire_count;
7667 x_trace_wire (void)
7669 fprintf (stderr, "Lib call: %d\n", ++x_wire_count);
7671 #endif /* ! 0 */
7674 /************************************************************************
7675 Handling X errors
7676 ************************************************************************/
7678 /* Error message passed to x_connection_closed. */
7680 static char *error_msg;
7682 /* Handle the loss of connection to display DPY. ERROR_MESSAGE is
7683 the text of an error message that lead to the connection loss. */
7685 static void
7686 x_connection_closed (Display *dpy, const char *error_message)
7688 struct x_display_info *dpyinfo = x_display_info_for_display (dpy);
7689 Lisp_Object frame, tail;
7690 ptrdiff_t idx = SPECPDL_INDEX ();
7692 error_msg = alloca (strlen (error_message) + 1);
7693 strcpy (error_msg, error_message);
7695 /* Inhibit redisplay while frames are being deleted. */
7696 specbind (Qinhibit_redisplay, Qt);
7698 if (dpyinfo)
7700 /* Protect display from being closed when we delete the last
7701 frame on it. */
7702 dpyinfo->reference_count++;
7703 dpyinfo->terminal->reference_count++;
7706 /* First delete frames whose mini-buffers are on frames
7707 that are on the dead display. */
7708 FOR_EACH_FRAME (tail, frame)
7710 Lisp_Object minibuf_frame;
7711 minibuf_frame
7712 = WINDOW_FRAME (XWINDOW (FRAME_MINIBUF_WINDOW (XFRAME (frame))));
7713 if (FRAME_X_P (XFRAME (frame))
7714 && FRAME_X_P (XFRAME (minibuf_frame))
7715 && ! EQ (frame, minibuf_frame)
7716 && FRAME_X_DISPLAY_INFO (XFRAME (minibuf_frame)) == dpyinfo)
7717 delete_frame (frame, Qnoelisp);
7720 /* Now delete all remaining frames on the dead display.
7721 We are now sure none of these is used as the mini-buffer
7722 for another frame that we need to delete. */
7723 FOR_EACH_FRAME (tail, frame)
7724 if (FRAME_X_P (XFRAME (frame))
7725 && FRAME_X_DISPLAY_INFO (XFRAME (frame)) == dpyinfo)
7727 /* Set this to t so that delete_frame won't get confused
7728 trying to find a replacement. */
7729 kset_default_minibuffer_frame (FRAME_KBOARD (XFRAME (frame)), Qt);
7730 delete_frame (frame, Qnoelisp);
7733 /* If DPYINFO is null, this means we didn't open the display in the
7734 first place, so don't try to close it. */
7735 if (dpyinfo)
7737 /* We can not call XtCloseDisplay here because it calls XSync.
7738 XSync inside the error handler apparently hangs Emacs. On
7739 current Xt versions, this isn't needed either. */
7740 #ifdef USE_GTK
7741 /* A long-standing GTK bug prevents proper disconnect handling
7742 (https://bugzilla.gnome.org/show_bug.cgi?id=85715). Once,
7743 the resulting Glib error message loop filled a user's disk.
7744 To avoid this, kill Emacs unconditionally on disconnect. */
7745 shut_down_emacs (0, Qnil);
7746 fprintf (stderr, "%s\n\
7747 When compiled with GTK, Emacs cannot recover from X disconnects.\n\
7748 This is a GTK bug: https://bugzilla.gnome.org/show_bug.cgi?id=85715\n\
7749 For details, see etc/PROBLEMS.\n",
7750 error_msg);
7751 emacs_abort ();
7752 #endif /* USE_GTK */
7754 /* Indicate that this display is dead. */
7755 dpyinfo->display = 0;
7757 dpyinfo->reference_count--;
7758 dpyinfo->terminal->reference_count--;
7759 if (dpyinfo->reference_count != 0)
7760 /* We have just closed all frames on this display. */
7761 emacs_abort ();
7764 Lisp_Object tmp;
7765 XSETTERMINAL (tmp, dpyinfo->terminal);
7766 Fdelete_terminal (tmp, Qnoelisp);
7770 if (terminal_list == 0)
7772 fprintf (stderr, "%s\n", error_msg);
7773 Fkill_emacs (make_number (70));
7774 /* NOTREACHED */
7777 totally_unblock_input ();
7779 unbind_to (idx, Qnil);
7780 clear_waiting_for_input ();
7782 /* Tell GCC not to suggest attribute 'noreturn' for this function. */
7783 IF_LINT (if (! terminal_list) return; )
7785 /* Here, we absolutely have to use a non-local exit (e.g. signal, throw,
7786 longjmp), because returning from this function would get us back into
7787 Xlib's code which will directly call `exit'. */
7788 error ("%s", error_msg);
7791 /* We specifically use it before defining it, so that gcc doesn't inline it,
7792 otherwise gdb doesn't know how to properly put a breakpoint on it. */
7793 static void x_error_quitter (Display *, XErrorEvent *);
7795 /* This is the first-level handler for X protocol errors.
7796 It calls x_error_quitter or x_error_catcher. */
7798 static int
7799 x_error_handler (Display *display, XErrorEvent *event)
7801 #if defined USE_GTK && defined HAVE_GTK3
7802 if ((event->error_code == BadMatch || event->error_code == BadWindow)
7803 && event->request_code == X_SetInputFocus)
7805 return 0;
7807 #endif
7809 if (x_error_message)
7810 x_error_catcher (display, event);
7811 else
7812 x_error_quitter (display, event);
7813 return 0;
7816 /* This is the usual handler for X protocol errors.
7817 It kills all frames on the display that we got the error for.
7818 If that was the only one, it prints an error message and kills Emacs. */
7820 /* .gdbinit puts a breakpoint here, so make sure it is not inlined. */
7822 /* On older GCC versions, just putting x_error_quitter
7823 after x_error_handler prevents inlining into the former. */
7825 static void NO_INLINE
7826 x_error_quitter (Display *display, XErrorEvent *event)
7828 char buf[256], buf1[356];
7830 /* Ignore BadName errors. They can happen because of fonts
7831 or colors that are not defined. */
7833 if (event->error_code == BadName)
7834 return;
7836 /* Note that there is no real way portable across R3/R4 to get the
7837 original error handler. */
7839 XGetErrorText (display, event->error_code, buf, sizeof (buf));
7840 sprintf (buf1, "X protocol error: %s on protocol request %d",
7841 buf, event->request_code);
7842 x_connection_closed (display, buf1);
7846 /* This is the handler for X IO errors, always.
7847 It kills all frames on the display that we lost touch with.
7848 If that was the only one, it prints an error message and kills Emacs. */
7850 static int
7851 x_io_error_quitter (Display *display)
7853 char buf[256];
7855 snprintf (buf, sizeof buf, "Connection lost to X server `%s'",
7856 DisplayString (display));
7857 x_connection_closed (display, buf);
7858 return 0;
7861 /* Changing the font of the frame. */
7863 /* Give frame F the font FONT-OBJECT as its default font. The return
7864 value is FONT-OBJECT. FONTSET is an ID of the fontset for the
7865 frame. If it is negative, generate a new fontset from
7866 FONT-OBJECT. */
7868 Lisp_Object
7869 x_new_font (struct frame *f, Lisp_Object font_object, int fontset)
7871 struct font *font = XFONT_OBJECT (font_object);
7873 if (fontset < 0)
7874 fontset = fontset_from_font (font_object);
7875 FRAME_FONTSET (f) = fontset;
7876 if (FRAME_FONT (f) == font)
7877 /* This font is already set in frame F. There's nothing more to
7878 do. */
7879 return font_object;
7881 FRAME_FONT (f) = font;
7882 FRAME_BASELINE_OFFSET (f) = font->baseline_offset;
7883 FRAME_COLUMN_WIDTH (f) = font->average_width;
7884 FRAME_LINE_HEIGHT (f) = FONT_HEIGHT (font);
7886 compute_fringe_widths (f, 1);
7888 /* Compute the scroll bar width in character columns. */
7889 if (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) > 0)
7891 int wid = FRAME_COLUMN_WIDTH (f);
7892 FRAME_CONFIG_SCROLL_BAR_COLS (f)
7893 = (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) + wid-1) / wid;
7895 else
7897 int wid = FRAME_COLUMN_WIDTH (f);
7898 FRAME_CONFIG_SCROLL_BAR_COLS (f) = (14 + wid - 1) / wid;
7901 if (FRAME_X_WINDOW (f) != 0)
7903 /* Don't change the size of a tip frame; there's no point in
7904 doing it because it's done in Fx_show_tip, and it leads to
7905 problems because the tip frame has no widget. */
7906 if (NILP (tip_frame) || XFRAME (tip_frame) != f)
7907 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
7910 #ifdef HAVE_X_I18N
7911 if (FRAME_XIC (f)
7912 && (FRAME_XIC_STYLE (f) & (XIMPreeditPosition | XIMStatusArea)))
7914 block_input ();
7915 xic_set_xfontset (f, SSDATA (fontset_ascii (fontset)));
7916 unblock_input ();
7918 #endif
7920 return font_object;
7924 /***********************************************************************
7925 X Input Methods
7926 ***********************************************************************/
7928 #ifdef HAVE_X_I18N
7930 #ifdef HAVE_X11R6
7932 /* XIM destroy callback function, which is called whenever the
7933 connection to input method XIM dies. CLIENT_DATA contains a
7934 pointer to the x_display_info structure corresponding to XIM. */
7936 static void
7937 xim_destroy_callback (XIM xim, XPointer client_data, XPointer call_data)
7939 struct x_display_info *dpyinfo = (struct x_display_info *) client_data;
7940 Lisp_Object frame, tail;
7942 block_input ();
7944 /* No need to call XDestroyIC.. */
7945 FOR_EACH_FRAME (tail, frame)
7947 struct frame *f = XFRAME (frame);
7948 if (FRAME_X_P (f) && FRAME_X_DISPLAY_INFO (f) == dpyinfo)
7950 FRAME_XIC (f) = NULL;
7951 xic_free_xfontset (f);
7955 /* No need to call XCloseIM. */
7956 dpyinfo->xim = NULL;
7957 XFree (dpyinfo->xim_styles);
7958 unblock_input ();
7961 #endif /* HAVE_X11R6 */
7963 #ifdef HAVE_X11R6
7964 /* This isn't prototyped in OSF 5.0 or 5.1a. */
7965 extern char *XSetIMValues (XIM, ...);
7966 #endif
7968 /* Open the connection to the XIM server on display DPYINFO.
7969 RESOURCE_NAME is the resource name Emacs uses. */
7971 static void
7972 xim_open_dpy (struct x_display_info *dpyinfo, char *resource_name)
7974 XIM xim;
7976 #ifdef HAVE_XIM
7977 if (use_xim)
7979 if (dpyinfo->xim)
7980 XCloseIM (dpyinfo->xim);
7981 xim = XOpenIM (dpyinfo->display, dpyinfo->xrdb, resource_name,
7982 emacs_class);
7983 dpyinfo->xim = xim;
7985 if (xim)
7987 #ifdef HAVE_X11R6
7988 XIMCallback destroy;
7989 #endif
7991 /* Get supported styles and XIM values. */
7992 XGetIMValues (xim, XNQueryInputStyle, &dpyinfo->xim_styles, NULL);
7994 #ifdef HAVE_X11R6
7995 destroy.callback = xim_destroy_callback;
7996 destroy.client_data = (XPointer)dpyinfo;
7997 XSetIMValues (xim, XNDestroyCallback, &destroy, NULL);
7998 #endif
8002 else
8003 #endif /* HAVE_XIM */
8004 dpyinfo->xim = NULL;
8008 #ifdef HAVE_X11R6_XIM
8010 /* XIM instantiate callback function, which is called whenever an XIM
8011 server is available. DISPLAY is the display of the XIM.
8012 CLIENT_DATA contains a pointer to an xim_inst_t structure created
8013 when the callback was registered. */
8015 static void
8016 xim_instantiate_callback (Display *display, XPointer client_data, XPointer call_data)
8018 struct xim_inst_t *xim_inst = (struct xim_inst_t *) client_data;
8019 struct x_display_info *dpyinfo = xim_inst->dpyinfo;
8021 /* We don't support multiple XIM connections. */
8022 if (dpyinfo->xim)
8023 return;
8025 xim_open_dpy (dpyinfo, xim_inst->resource_name);
8027 /* Create XIC for the existing frames on the same display, as long
8028 as they have no XIC. */
8029 if (dpyinfo->xim && dpyinfo->reference_count > 0)
8031 Lisp_Object tail, frame;
8033 block_input ();
8034 FOR_EACH_FRAME (tail, frame)
8036 struct frame *f = XFRAME (frame);
8038 if (FRAME_X_P (f)
8039 && FRAME_X_DISPLAY_INFO (f) == xim_inst->dpyinfo)
8040 if (FRAME_XIC (f) == NULL)
8042 create_frame_xic (f);
8043 if (FRAME_XIC_STYLE (f) & XIMStatusArea)
8044 xic_set_statusarea (f);
8045 if (FRAME_XIC_STYLE (f) & XIMPreeditPosition)
8047 struct window *w = XWINDOW (f->selected_window);
8048 xic_set_preeditarea (w, w->cursor.x, w->cursor.y);
8053 unblock_input ();
8057 #endif /* HAVE_X11R6_XIM */
8060 /* Open a connection to the XIM server on display DPYINFO.
8061 RESOURCE_NAME is the resource name for Emacs. On X11R5, open the
8062 connection only at the first time. On X11R6, open the connection
8063 in the XIM instantiate callback function. */
8065 static void
8066 xim_initialize (struct x_display_info *dpyinfo, char *resource_name)
8068 dpyinfo->xim = NULL;
8069 #ifdef HAVE_XIM
8070 if (use_xim)
8072 #ifdef HAVE_X11R6_XIM
8073 struct xim_inst_t *xim_inst = xmalloc (sizeof *xim_inst);
8075 dpyinfo->xim_callback_data = xim_inst;
8076 xim_inst->dpyinfo = dpyinfo;
8077 xim_inst->resource_name = xstrdup (resource_name);
8078 XRegisterIMInstantiateCallback (dpyinfo->display, dpyinfo->xrdb,
8079 resource_name, emacs_class,
8080 xim_instantiate_callback,
8081 /* This is XPointer in XFree86
8082 but (XPointer *) on Tru64, at
8083 least, hence the configure test. */
8084 (XRegisterIMInstantiateCallback_arg6) xim_inst);
8085 #else /* not HAVE_X11R6_XIM */
8086 xim_open_dpy (dpyinfo, resource_name);
8087 #endif /* not HAVE_X11R6_XIM */
8089 #endif /* HAVE_XIM */
8093 /* Close the connection to the XIM server on display DPYINFO. */
8095 static void
8096 xim_close_dpy (struct x_display_info *dpyinfo)
8098 #ifdef HAVE_XIM
8099 if (use_xim)
8101 #ifdef HAVE_X11R6_XIM
8102 if (dpyinfo->display)
8103 XUnregisterIMInstantiateCallback (dpyinfo->display, dpyinfo->xrdb,
8104 NULL, emacs_class,
8105 xim_instantiate_callback, NULL);
8106 xfree (dpyinfo->xim_callback_data->resource_name);
8107 xfree (dpyinfo->xim_callback_data);
8108 #endif /* HAVE_X11R6_XIM */
8109 if (dpyinfo->display)
8110 XCloseIM (dpyinfo->xim);
8111 dpyinfo->xim = NULL;
8112 XFree (dpyinfo->xim_styles);
8114 #endif /* HAVE_XIM */
8117 #endif /* not HAVE_X11R6_XIM */
8121 /* Calculate the absolute position in frame F
8122 from its current recorded position values and gravity. */
8124 static void
8125 x_calc_absolute_position (struct frame *f)
8127 int flags = f->size_hint_flags;
8129 /* We have nothing to do if the current position
8130 is already for the top-left corner. */
8131 if (! ((flags & XNegative) || (flags & YNegative)))
8132 return;
8134 /* Treat negative positions as relative to the leftmost bottommost
8135 position that fits on the screen. */
8136 if (flags & XNegative)
8137 f->left_pos = x_display_pixel_width (FRAME_X_DISPLAY_INFO (f))
8138 - FRAME_PIXEL_WIDTH (f) + f->left_pos;
8141 int height = FRAME_PIXEL_HEIGHT (f);
8143 #if defined USE_X_TOOLKIT && defined USE_MOTIF
8144 /* Something is fishy here. When using Motif, starting Emacs with
8145 `-g -0-0', the frame appears too low by a few pixels.
8147 This seems to be so because initially, while Emacs is starting,
8148 the column widget's height and the frame's pixel height are
8149 different. The column widget's height is the right one. In
8150 later invocations, when Emacs is up, the frame's pixel height
8151 is right, though.
8153 It's not obvious where the initial small difference comes from.
8154 2000-12-01, gerd. */
8156 XtVaGetValues (f->output_data.x->column_widget, XtNheight, &height, NULL);
8157 #endif
8159 if (flags & YNegative)
8160 f->top_pos = x_display_pixel_height (FRAME_X_DISPLAY_INFO (f))
8161 - height + f->top_pos;
8164 /* The left_pos and top_pos
8165 are now relative to the top and left screen edges,
8166 so the flags should correspond. */
8167 f->size_hint_flags &= ~ (XNegative | YNegative);
8170 /* CHANGE_GRAVITY is 1 when calling from Fset_frame_position,
8171 to really change the position, and 0 when calling from
8172 x_make_frame_visible (in that case, XOFF and YOFF are the current
8173 position values). It is -1 when calling from x_set_frame_parameters,
8174 which means, do adjust for borders but don't change the gravity. */
8176 void
8177 x_set_offset (struct frame *f, register int xoff, register int yoff, int change_gravity)
8179 int modified_top, modified_left;
8181 if (change_gravity > 0)
8183 FRAME_X_OUTPUT (f)->left_before_move = f->left_pos;
8184 FRAME_X_OUTPUT (f)->top_before_move = f->top_pos;
8186 f->top_pos = yoff;
8187 f->left_pos = xoff;
8188 f->size_hint_flags &= ~ (XNegative | YNegative);
8189 if (xoff < 0)
8190 f->size_hint_flags |= XNegative;
8191 if (yoff < 0)
8192 f->size_hint_flags |= YNegative;
8193 f->win_gravity = NorthWestGravity;
8195 x_calc_absolute_position (f);
8197 block_input ();
8198 x_wm_set_size_hint (f, (long) 0, 0);
8200 modified_left = f->left_pos;
8201 modified_top = f->top_pos;
8203 if (change_gravity != 0 && FRAME_X_DISPLAY_INFO (f)->wm_type == X_WMTYPE_A)
8205 /* Some WMs (twm, wmaker at least) has an offset that is smaller
8206 than the WM decorations. So we use the calculated offset instead
8207 of the WM decoration sizes here (x/y_pixels_outer_diff). */
8208 modified_left += FRAME_X_OUTPUT (f)->move_offset_left;
8209 modified_top += FRAME_X_OUTPUT (f)->move_offset_top;
8212 XMoveWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
8213 modified_left, modified_top);
8215 x_sync_with_move (f, f->left_pos, f->top_pos,
8216 FRAME_X_DISPLAY_INFO (f)->wm_type == X_WMTYPE_UNKNOWN
8217 ? 1 : 0);
8219 /* change_gravity is non-zero when this function is called from Lisp to
8220 programmatically move a frame. In that case, we call
8221 x_check_expected_move to discover if we have a "Type A" or "Type B"
8222 window manager, and, for a "Type A" window manager, adjust the position
8223 of the frame.
8225 We call x_check_expected_move if a programmatic move occurred, and
8226 either the window manager type (A/B) is unknown or it is Type A but we
8227 need to compute the top/left offset adjustment for this frame. */
8229 if (change_gravity != 0 &&
8230 (FRAME_X_DISPLAY_INFO (f)->wm_type == X_WMTYPE_UNKNOWN
8231 || (FRAME_X_DISPLAY_INFO (f)->wm_type == X_WMTYPE_A
8232 && (FRAME_X_OUTPUT (f)->move_offset_left == 0
8233 && FRAME_X_OUTPUT (f)->move_offset_top == 0))))
8234 x_check_expected_move (f, modified_left, modified_top);
8236 unblock_input ();
8239 /* Return non-zero if _NET_SUPPORTING_WM_CHECK window exists and _NET_SUPPORTED
8240 on the root window for frame F contains ATOMNAME.
8241 This is how a WM check shall be done according to the Window Manager
8242 Specification/Extended Window Manager Hints at
8243 http://freedesktop.org/wiki/Specifications/wm-spec. */
8245 static int
8246 wm_supports (struct frame *f, Atom want_atom)
8248 Atom actual_type;
8249 unsigned long actual_size, bytes_remaining;
8250 int i, rc, actual_format;
8251 Window wmcheck_window;
8252 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
8253 Window target_window = dpyinfo->root_window;
8254 long max_len = 65536;
8255 Display *dpy = FRAME_X_DISPLAY (f);
8256 unsigned char *tmp_data = NULL;
8257 Atom target_type = XA_WINDOW;
8259 block_input ();
8261 x_catch_errors (dpy);
8262 rc = XGetWindowProperty (dpy, target_window,
8263 dpyinfo->Xatom_net_supporting_wm_check,
8264 0, max_len, False, target_type,
8265 &actual_type, &actual_format, &actual_size,
8266 &bytes_remaining, &tmp_data);
8268 if (rc != Success || actual_type != XA_WINDOW || x_had_errors_p (dpy))
8270 if (tmp_data) XFree (tmp_data);
8271 x_uncatch_errors ();
8272 unblock_input ();
8273 return 0;
8276 wmcheck_window = *(Window *) tmp_data;
8277 XFree (tmp_data);
8279 /* Check if window exists. */
8280 XSelectInput (dpy, wmcheck_window, StructureNotifyMask);
8281 x_sync (f);
8282 if (x_had_errors_p (dpy))
8284 x_uncatch_errors ();
8285 unblock_input ();
8286 return 0;
8289 if (dpyinfo->net_supported_window != wmcheck_window)
8291 /* Window changed, reload atoms */
8292 if (dpyinfo->net_supported_atoms != NULL)
8293 XFree (dpyinfo->net_supported_atoms);
8294 dpyinfo->net_supported_atoms = NULL;
8295 dpyinfo->nr_net_supported_atoms = 0;
8296 dpyinfo->net_supported_window = 0;
8298 target_type = XA_ATOM;
8299 tmp_data = NULL;
8300 rc = XGetWindowProperty (dpy, target_window,
8301 dpyinfo->Xatom_net_supported,
8302 0, max_len, False, target_type,
8303 &actual_type, &actual_format, &actual_size,
8304 &bytes_remaining, &tmp_data);
8306 if (rc != Success || actual_type != XA_ATOM || x_had_errors_p (dpy))
8308 if (tmp_data) XFree (tmp_data);
8309 x_uncatch_errors ();
8310 unblock_input ();
8311 return 0;
8314 dpyinfo->net_supported_atoms = (Atom *)tmp_data;
8315 dpyinfo->nr_net_supported_atoms = actual_size;
8316 dpyinfo->net_supported_window = wmcheck_window;
8319 rc = 0;
8321 for (i = 0; rc == 0 && i < dpyinfo->nr_net_supported_atoms; ++i)
8322 rc = dpyinfo->net_supported_atoms[i] == want_atom;
8324 x_uncatch_errors ();
8325 unblock_input ();
8327 return rc;
8330 static void
8331 set_wm_state (Lisp_Object frame, int add, Atom atom, Atom value)
8333 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (XFRAME (frame));
8335 x_send_client_event (frame, make_number (0), frame,
8336 dpyinfo->Xatom_net_wm_state,
8337 make_number (32),
8338 /* 1 = add, 0 = remove */
8339 Fcons
8340 (make_number (add ? 1 : 0),
8341 Fcons
8342 (make_fixnum_or_float (atom),
8343 (value != 0
8344 ? list1 (make_fixnum_or_float (value))
8345 : Qnil))));
8348 void
8349 x_set_sticky (struct frame *f, Lisp_Object new_value, Lisp_Object old_value)
8351 Lisp_Object frame;
8352 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
8354 XSETFRAME (frame, f);
8356 set_wm_state (frame, NILP (new_value) ? 0 : 1,
8357 dpyinfo->Xatom_net_wm_state_sticky, None);
8360 /* Return the current _NET_WM_STATE.
8361 SIZE_STATE is set to one of the FULLSCREEN_* values.
8362 STICKY is set to 1 if the sticky state is set, 0 if not.
8364 Return non-zero if we are not hidden, zero if we are. */
8366 static int
8367 get_current_wm_state (struct frame *f,
8368 Window window,
8369 int *size_state,
8370 int *sticky)
8372 Atom actual_type;
8373 unsigned long actual_size, bytes_remaining;
8374 int i, rc, actual_format, is_hidden = 0;
8375 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
8376 long max_len = 65536;
8377 Display *dpy = FRAME_X_DISPLAY (f);
8378 unsigned char *tmp_data = NULL;
8379 Atom target_type = XA_ATOM;
8381 *sticky = 0;
8382 *size_state = FULLSCREEN_NONE;
8384 block_input ();
8385 x_catch_errors (dpy);
8386 rc = XGetWindowProperty (dpy, window, dpyinfo->Xatom_net_wm_state,
8387 0, max_len, False, target_type,
8388 &actual_type, &actual_format, &actual_size,
8389 &bytes_remaining, &tmp_data);
8391 if (rc != Success || actual_type != target_type || x_had_errors_p (dpy))
8393 if (tmp_data) XFree (tmp_data);
8394 x_uncatch_errors ();
8395 unblock_input ();
8396 return !FRAME_ICONIFIED_P (f);
8399 x_uncatch_errors ();
8401 for (i = 0; i < actual_size; ++i)
8403 Atom a = ((Atom*)tmp_data)[i];
8404 if (a == dpyinfo->Xatom_net_wm_state_hidden)
8406 is_hidden = 1;
8407 f->output_data.x->net_wm_state_hidden_seen = 1;
8409 else if (a == dpyinfo->Xatom_net_wm_state_maximized_horz)
8411 if (*size_state == FULLSCREEN_HEIGHT)
8412 *size_state = FULLSCREEN_MAXIMIZED;
8413 else
8414 *size_state = FULLSCREEN_WIDTH;
8416 else if (a == dpyinfo->Xatom_net_wm_state_maximized_vert)
8418 if (*size_state == FULLSCREEN_WIDTH)
8419 *size_state = FULLSCREEN_MAXIMIZED;
8420 else
8421 *size_state = FULLSCREEN_HEIGHT;
8423 else if (a == dpyinfo->Xatom_net_wm_state_fullscreen)
8424 *size_state = FULLSCREEN_BOTH;
8425 else if (a == dpyinfo->Xatom_net_wm_state_sticky)
8426 *sticky = 1;
8429 if (tmp_data) XFree (tmp_data);
8430 unblock_input ();
8431 return ! is_hidden;
8434 /* Do fullscreen as specified in extended window manager hints */
8436 static int
8437 do_ewmh_fullscreen (struct frame *f)
8439 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
8440 int have_net_atom = wm_supports (f, dpyinfo->Xatom_net_wm_state);
8441 int cur, dummy;
8443 (void)get_current_wm_state (f, FRAME_OUTER_WINDOW (f), &cur, &dummy);
8445 /* Some window managers don't say they support _NET_WM_STATE, but they do say
8446 they support _NET_WM_STATE_FULLSCREEN. Try that also. */
8447 if (!have_net_atom)
8448 have_net_atom = wm_supports (f, dpyinfo->Xatom_net_wm_state_fullscreen);
8450 if (have_net_atom && cur != f->want_fullscreen)
8452 Lisp_Object frame;
8454 XSETFRAME (frame, f);
8456 /* Keep number of calls to set_wm_state as low as possible.
8457 Some window managers, or possible Gtk+, hangs when too many
8458 are sent at once. */
8459 switch (f->want_fullscreen)
8461 case FULLSCREEN_BOTH:
8462 if (cur == FULLSCREEN_WIDTH || cur == FULLSCREEN_MAXIMIZED
8463 || cur == FULLSCREEN_HEIGHT)
8464 set_wm_state (frame, 0, dpyinfo->Xatom_net_wm_state_maximized_horz,
8465 dpyinfo->Xatom_net_wm_state_maximized_vert);
8466 set_wm_state (frame, 1, dpyinfo->Xatom_net_wm_state_fullscreen, None);
8467 break;
8468 case FULLSCREEN_WIDTH:
8469 if (cur == FULLSCREEN_BOTH || cur == FULLSCREEN_HEIGHT
8470 || cur == FULLSCREEN_MAXIMIZED)
8471 set_wm_state (frame, 0, dpyinfo->Xatom_net_wm_state_fullscreen,
8472 dpyinfo->Xatom_net_wm_state_maximized_vert);
8473 if (cur != FULLSCREEN_MAXIMIZED)
8474 set_wm_state (frame, 1, dpyinfo->Xatom_net_wm_state_maximized_horz, None);
8475 break;
8476 case FULLSCREEN_HEIGHT:
8477 if (cur == FULLSCREEN_BOTH || cur == FULLSCREEN_WIDTH
8478 || cur == FULLSCREEN_MAXIMIZED)
8479 set_wm_state (frame, 0, dpyinfo->Xatom_net_wm_state_fullscreen,
8480 dpyinfo->Xatom_net_wm_state_maximized_horz);
8481 if (cur != FULLSCREEN_MAXIMIZED)
8482 set_wm_state (frame, 1, dpyinfo->Xatom_net_wm_state_maximized_vert, None);
8483 break;
8484 case FULLSCREEN_MAXIMIZED:
8485 if (cur == FULLSCREEN_BOTH)
8486 set_wm_state (frame, 0, dpyinfo->Xatom_net_wm_state_fullscreen, None);
8487 set_wm_state (frame, 1, dpyinfo->Xatom_net_wm_state_maximized_horz,
8488 dpyinfo->Xatom_net_wm_state_maximized_vert);
8489 break;
8490 case FULLSCREEN_NONE:
8491 if (cur == FULLSCREEN_BOTH)
8492 set_wm_state (frame, 0, dpyinfo->Xatom_net_wm_state_fullscreen, None);
8493 else
8494 set_wm_state (frame, 0, dpyinfo->Xatom_net_wm_state_maximized_horz,
8495 dpyinfo->Xatom_net_wm_state_maximized_vert);
8498 f->want_fullscreen = FULLSCREEN_NONE;
8502 return have_net_atom;
8505 static void
8506 XTfullscreen_hook (struct frame *f)
8508 if (FRAME_VISIBLE_P (f))
8510 block_input ();
8511 x_check_fullscreen (f);
8512 x_sync (f);
8513 unblock_input ();
8518 static int
8519 x_handle_net_wm_state (struct frame *f, XPropertyEvent *event)
8521 int value = FULLSCREEN_NONE;
8522 Lisp_Object lval;
8523 int sticky = 0;
8524 int not_hidden = get_current_wm_state (f, event->window, &value, &sticky);
8526 lval = Qnil;
8527 switch (value)
8529 case FULLSCREEN_WIDTH:
8530 lval = Qfullwidth;
8531 break;
8532 case FULLSCREEN_HEIGHT:
8533 lval = Qfullheight;
8534 break;
8535 case FULLSCREEN_BOTH:
8536 lval = Qfullboth;
8537 break;
8538 case FULLSCREEN_MAXIMIZED:
8539 lval = Qmaximized;
8540 break;
8543 store_frame_param (f, Qfullscreen, lval);
8544 store_frame_param (f, Qsticky, sticky ? Qt : Qnil);
8546 return not_hidden;
8549 /* Check if we need to resize the frame due to a fullscreen request.
8550 If so needed, resize the frame. */
8551 static void
8552 x_check_fullscreen (struct frame *f)
8554 if (do_ewmh_fullscreen (f))
8555 return;
8557 if (f->output_data.x->parent_desc != FRAME_X_DISPLAY_INFO (f)->root_window)
8558 return; /* Only fullscreen without WM or with EWM hints (above). */
8560 /* Setting fullscreen to nil doesn't do anything. We could save the
8561 last non-fullscreen size and restore it, but it seems like a
8562 lot of work for this unusual case (no window manager running). */
8564 if (f->want_fullscreen != FULLSCREEN_NONE)
8566 int width = FRAME_PIXEL_WIDTH (f), height = FRAME_PIXEL_HEIGHT (f);
8567 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
8569 switch (f->want_fullscreen)
8571 /* No difference between these two when there is no WM */
8572 case FULLSCREEN_BOTH:
8573 case FULLSCREEN_MAXIMIZED:
8574 width = x_display_pixel_width (dpyinfo);
8575 height = x_display_pixel_height (dpyinfo);
8576 break;
8577 case FULLSCREEN_WIDTH:
8578 width = x_display_pixel_width (dpyinfo);
8579 break;
8580 case FULLSCREEN_HEIGHT:
8581 height = x_display_pixel_height (dpyinfo);
8584 XResizeWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
8585 width, height);
8589 /* This function is called by x_set_offset to determine whether the window
8590 manager interfered with the positioning of the frame. Type A window
8591 managers position the surrounding window manager decorations a small
8592 amount above and left of the user-supplied position. Type B window
8593 managers position the surrounding window manager decorations at the
8594 user-specified position. If we detect a Type A window manager, we
8595 compensate by moving the window right and down by the proper amount. */
8597 static void
8598 x_check_expected_move (struct frame *f, int expected_left, int expected_top)
8600 int current_left = 0, current_top = 0;
8602 /* x_real_positions returns the left and top offsets of the outermost
8603 window manager window around the frame. */
8605 x_real_positions (f, &current_left, &current_top);
8607 if (current_left != expected_left || current_top != expected_top)
8609 /* It's a "Type A" window manager. */
8611 int adjusted_left;
8612 int adjusted_top;
8614 FRAME_X_DISPLAY_INFO (f)->wm_type = X_WMTYPE_A;
8615 FRAME_X_OUTPUT (f)->move_offset_left = expected_left - current_left;
8616 FRAME_X_OUTPUT (f)->move_offset_top = expected_top - current_top;
8618 /* Now fix the mispositioned frame's location. */
8620 adjusted_left = expected_left + FRAME_X_OUTPUT (f)->move_offset_left;
8621 adjusted_top = expected_top + FRAME_X_OUTPUT (f)->move_offset_top;
8623 XMoveWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
8624 adjusted_left, adjusted_top);
8626 x_sync_with_move (f, expected_left, expected_top, 0);
8628 else
8629 /* It's a "Type B" window manager. We don't have to adjust the
8630 frame's position. */
8632 FRAME_X_DISPLAY_INFO (f)->wm_type = X_WMTYPE_B;
8636 /* Wait for XGetGeometry to return up-to-date position information for a
8637 recently-moved frame. Call this immediately after calling XMoveWindow.
8638 If FUZZY is non-zero, then LEFT and TOP are just estimates of where the
8639 frame has been moved to, so we use a fuzzy position comparison instead
8640 of an exact comparison. */
8642 static void
8643 x_sync_with_move (struct frame *f, int left, int top, int fuzzy)
8645 int count = 0;
8647 while (count++ < 50)
8649 int current_left = 0, current_top = 0;
8651 /* In theory, this call to XSync only needs to happen once, but in
8652 practice, it doesn't seem to work, hence the need for the surrounding
8653 loop. */
8655 XSync (FRAME_X_DISPLAY (f), False);
8656 x_real_positions (f, &current_left, &current_top);
8658 if (fuzzy)
8660 /* The left fuzz-factor is 10 pixels. The top fuzz-factor is 40
8661 pixels. */
8663 if (eabs (current_left - left) <= 10
8664 && eabs (current_top - top) <= 40)
8665 return;
8667 else if (current_left == left && current_top == top)
8668 return;
8671 /* As a last resort, just wait 0.5 seconds and hope that XGetGeometry
8672 will then return up-to-date position info. */
8674 wait_reading_process_output (0, 500000, 0, 0, Qnil, NULL, 0);
8678 /* Wait for an event on frame F matching EVENTTYPE. */
8679 void
8680 x_wait_for_event (struct frame *f, int eventtype)
8682 int level = interrupt_input_blocked;
8684 SELECT_TYPE fds;
8685 EMACS_TIME tmo, tmo_at, time_now;
8686 int fd = ConnectionNumber (FRAME_X_DISPLAY (f));
8688 pending_event_wait.f = f;
8689 pending_event_wait.eventtype = eventtype;
8691 /* Set timeout to 0.1 second. Hopefully not noticeable.
8692 Maybe it should be configurable. */
8693 tmo = make_emacs_time (0, 100 * 1000 * 1000);
8694 tmo_at = add_emacs_time (current_emacs_time (), tmo);
8696 while (pending_event_wait.eventtype)
8698 pending_signals = 1;
8699 totally_unblock_input ();
8700 /* XTread_socket is called after unblock. */
8701 block_input ();
8702 interrupt_input_blocked = level;
8704 FD_ZERO (&fds);
8705 FD_SET (fd, &fds);
8707 time_now = current_emacs_time ();
8708 if (EMACS_TIME_LT (tmo_at, time_now))
8709 break;
8711 tmo = sub_emacs_time (tmo_at, time_now);
8712 if (pselect (fd + 1, &fds, NULL, NULL, &tmo, NULL) == 0)
8713 break; /* Timeout */
8715 pending_event_wait.f = 0;
8716 pending_event_wait.eventtype = 0;
8720 /* Change the size of frame F's X window to COLS/ROWS in the case F
8721 doesn't have a widget. If CHANGE_GRAVITY is 1, we change to
8722 top-left-corner window gravity for this size change and subsequent
8723 size changes. Otherwise we leave the window gravity unchanged. */
8725 static void
8726 x_set_window_size_1 (struct frame *f, int change_gravity, int cols, int rows)
8728 int pixelwidth, pixelheight;
8730 check_frame_size (f, &rows, &cols);
8731 f->scroll_bar_actual_width
8732 = (!FRAME_HAS_VERTICAL_SCROLL_BARS (f)
8734 : FRAME_CONFIG_SCROLL_BAR_COLS (f) * FRAME_COLUMN_WIDTH (f));
8736 compute_fringe_widths (f, 0);
8738 pixelwidth = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, cols)
8739 + FRAME_TOOLBAR_WIDTH (f);
8740 pixelheight = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, rows)
8741 + FRAME_MENUBAR_HEIGHT (f) + FRAME_TOOLBAR_HEIGHT (f);
8743 if (change_gravity) f->win_gravity = NorthWestGravity;
8744 x_wm_set_size_hint (f, (long) 0, 0);
8745 XResizeWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
8746 pixelwidth, pixelheight);
8749 /* We've set {FRAME,PIXEL}_{WIDTH,HEIGHT} to the values we hope to
8750 receive in the ConfigureNotify event; if we get what we asked
8751 for, then the event won't cause the screen to become garbaged, so
8752 we have to make sure to do it here. */
8753 SET_FRAME_GARBAGED (f);
8755 /* Now, strictly speaking, we can't be sure that this is accurate,
8756 but the window manager will get around to dealing with the size
8757 change request eventually, and we'll hear how it went when the
8758 ConfigureNotify event gets here.
8760 We could just not bother storing any of this information here,
8761 and let the ConfigureNotify event set everything up, but that
8762 might be kind of confusing to the Lisp code, since size changes
8763 wouldn't be reported in the frame parameters until some random
8764 point in the future when the ConfigureNotify event arrives.
8766 We pass 1 for DELAY since we can't run Lisp code inside of
8767 a BLOCK_INPUT. */
8769 /* But the ConfigureNotify may in fact never arrive, and then this is
8770 not right if the frame is visible. Instead wait (with timeout)
8771 for the ConfigureNotify. */
8772 if (FRAME_VISIBLE_P (f))
8773 x_wait_for_event (f, ConfigureNotify);
8774 else
8776 change_frame_size (f, rows, cols, 0, 1, 0);
8777 FRAME_PIXEL_WIDTH (f) = pixelwidth;
8778 FRAME_PIXEL_HEIGHT (f) = pixelheight;
8779 x_sync (f);
8784 /* Call this to change the size of frame F's x-window.
8785 If CHANGE_GRAVITY is 1, we change to top-left-corner window gravity
8786 for this size change and subsequent size changes.
8787 Otherwise we leave the window gravity unchanged. */
8789 void
8790 x_set_window_size (struct frame *f, int change_gravity, int cols, int rows)
8792 block_input ();
8794 if (NILP (tip_frame) || XFRAME (tip_frame) != f)
8796 int r, c;
8798 /* When the frame is maximized/fullscreen or running under for
8799 example Xmonad, x_set_window_size_1 will be a no-op.
8800 In that case, the right thing to do is extend rows/cols to
8801 the current frame size. We do that first if x_set_window_size_1
8802 turns out to not be a no-op (there is no way to know).
8803 The size will be adjusted again if the frame gets a
8804 ConfigureNotify event as a result of x_set_window_size. */
8805 int pixelh = FRAME_PIXEL_HEIGHT (f);
8806 #ifdef USE_X_TOOLKIT
8807 /* The menu bar is not part of text lines. The tool bar
8808 is however. */
8809 pixelh -= FRAME_MENUBAR_HEIGHT (f);
8810 #endif
8811 r = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, pixelh);
8812 /* Update f->scroll_bar_actual_width because it is used in
8813 FRAME_PIXEL_WIDTH_TO_TEXT_COLS. */
8814 f->scroll_bar_actual_width
8815 = FRAME_SCROLL_BAR_COLS (f) * FRAME_COLUMN_WIDTH (f);
8816 c = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, FRAME_PIXEL_WIDTH (f));
8817 change_frame_size (f, r, c, 0, 1, 0);
8820 #ifdef USE_GTK
8821 if (FRAME_GTK_WIDGET (f))
8822 xg_frame_set_char_size (f, cols, rows);
8823 else
8824 x_set_window_size_1 (f, change_gravity, cols, rows);
8825 #else /* not USE_GTK */
8827 x_set_window_size_1 (f, change_gravity, cols, rows);
8829 #endif /* not USE_GTK */
8831 /* If cursor was outside the new size, mark it as off. */
8832 mark_window_cursors_off (XWINDOW (f->root_window));
8834 /* Clear out any recollection of where the mouse highlighting was,
8835 since it might be in a place that's outside the new frame size.
8836 Actually checking whether it is outside is a pain in the neck,
8837 so don't try--just let the highlighting be done afresh with new size. */
8838 cancel_mouse_face (f);
8840 unblock_input ();
8843 /* Mouse warping. */
8845 void
8846 x_set_mouse_position (struct frame *f, int x, int y)
8848 int pix_x, pix_y;
8850 pix_x = FRAME_COL_TO_PIXEL_X (f, x) + FRAME_COLUMN_WIDTH (f) / 2;
8851 pix_y = FRAME_LINE_TO_PIXEL_Y (f, y) + FRAME_LINE_HEIGHT (f) / 2;
8853 if (pix_x < 0) pix_x = 0;
8854 if (pix_x > FRAME_PIXEL_WIDTH (f)) pix_x = FRAME_PIXEL_WIDTH (f);
8856 if (pix_y < 0) pix_y = 0;
8857 if (pix_y > FRAME_PIXEL_HEIGHT (f)) pix_y = FRAME_PIXEL_HEIGHT (f);
8859 block_input ();
8861 XWarpPointer (FRAME_X_DISPLAY (f), None, FRAME_X_WINDOW (f),
8862 0, 0, 0, 0, pix_x, pix_y);
8863 unblock_input ();
8866 /* Move the mouse to position pixel PIX_X, PIX_Y relative to frame F. */
8868 void
8869 x_set_mouse_pixel_position (struct frame *f, int pix_x, int pix_y)
8871 block_input ();
8873 XWarpPointer (FRAME_X_DISPLAY (f), None, FRAME_X_WINDOW (f),
8874 0, 0, 0, 0, pix_x, pix_y);
8875 unblock_input ();
8878 /* Raise frame F. */
8880 void
8881 x_raise_frame (struct frame *f)
8883 block_input ();
8884 if (FRAME_VISIBLE_P (f))
8885 XRaiseWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f));
8886 XFlush (FRAME_X_DISPLAY (f));
8887 unblock_input ();
8890 /* Lower frame F. */
8892 static void
8893 x_lower_frame (struct frame *f)
8895 if (FRAME_VISIBLE_P (f))
8897 block_input ();
8898 XLowerWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f));
8899 XFlush (FRAME_X_DISPLAY (f));
8900 unblock_input ();
8904 /* Request focus with XEmbed */
8906 void
8907 xembed_request_focus (struct frame *f)
8909 /* See XEmbed Protocol Specification at
8910 http://freedesktop.org/wiki/Specifications/xembed-spec */
8911 if (FRAME_VISIBLE_P (f))
8912 xembed_send_message (f, CurrentTime,
8913 XEMBED_REQUEST_FOCUS, 0, 0, 0);
8916 /* Activate frame with Extended Window Manager Hints */
8918 void
8919 x_ewmh_activate_frame (struct frame *f)
8921 /* See Window Manager Specification/Extended Window Manager Hints at
8922 http://freedesktop.org/wiki/Specifications/wm-spec */
8924 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
8926 if (FRAME_VISIBLE_P (f) && wm_supports (f, dpyinfo->Xatom_net_active_window))
8928 Lisp_Object frame;
8929 XSETFRAME (frame, f);
8930 x_send_client_event (frame, make_number (0), frame,
8931 dpyinfo->Xatom_net_active_window,
8932 make_number (32), list2i (1, last_user_time));
8936 static void
8937 XTframe_raise_lower (struct frame *f, int raise_flag)
8939 if (raise_flag)
8940 x_raise_frame (f);
8941 else
8942 x_lower_frame (f);
8945 /* XEmbed implementation. */
8947 #if defined USE_X_TOOLKIT || ! defined USE_GTK
8949 /* XEmbed implementation. */
8951 #define XEMBED_VERSION 0
8953 static void
8954 xembed_set_info (struct frame *f, enum xembed_info flags)
8956 unsigned long data[2];
8957 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
8959 data[0] = XEMBED_VERSION;
8960 data[1] = flags;
8962 XChangeProperty (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
8963 dpyinfo->Xatom_XEMBED_INFO, dpyinfo->Xatom_XEMBED_INFO,
8964 32, PropModeReplace, (unsigned char *) data, 2);
8966 #endif /* defined USE_X_TOOLKIT || ! defined USE_GTK */
8968 static void
8969 xembed_send_message (struct frame *f, Time t, enum xembed_message msg,
8970 long int detail, long int data1, long int data2)
8972 XEvent event;
8974 event.xclient.type = ClientMessage;
8975 event.xclient.window = FRAME_X_OUTPUT (f)->parent_desc;
8976 event.xclient.message_type = FRAME_X_DISPLAY_INFO (f)->Xatom_XEMBED;
8977 event.xclient.format = 32;
8978 event.xclient.data.l[0] = t;
8979 event.xclient.data.l[1] = msg;
8980 event.xclient.data.l[2] = detail;
8981 event.xclient.data.l[3] = data1;
8982 event.xclient.data.l[4] = data2;
8984 XSendEvent (FRAME_X_DISPLAY (f), FRAME_X_OUTPUT (f)->parent_desc,
8985 False, NoEventMask, &event);
8986 XSync (FRAME_X_DISPLAY (f), False);
8989 /* Change of visibility. */
8991 /* This tries to wait until the frame is really visible.
8992 However, if the window manager asks the user where to position
8993 the frame, this will return before the user finishes doing that.
8994 The frame will not actually be visible at that time,
8995 but it will become visible later when the window manager
8996 finishes with it. */
8998 void
8999 x_make_frame_visible (struct frame *f)
9001 Lisp_Object type;
9002 int original_top, original_left;
9003 int retry_count = 2;
9005 retry:
9007 block_input ();
9009 type = x_icon_type (f);
9010 if (!NILP (type))
9011 x_bitmap_icon (f, type);
9013 if (! FRAME_VISIBLE_P (f))
9015 /* We test FRAME_GARBAGED_P here to make sure we don't
9016 call x_set_offset a second time
9017 if we get to x_make_frame_visible a second time
9018 before the window gets really visible. */
9019 if (! FRAME_ICONIFIED_P (f)
9020 && ! FRAME_X_EMBEDDED_P (f)
9021 && ! f->output_data.x->asked_for_visible)
9022 x_set_offset (f, f->left_pos, f->top_pos, 0);
9024 f->output_data.x->asked_for_visible = 1;
9026 if (! EQ (Vx_no_window_manager, Qt))
9027 x_wm_set_window_state (f, NormalState);
9028 #ifdef USE_X_TOOLKIT
9029 if (FRAME_X_EMBEDDED_P (f))
9030 xembed_set_info (f, XEMBED_MAPPED);
9031 else
9033 /* This was XtPopup, but that did nothing for an iconified frame. */
9034 XtMapWidget (f->output_data.x->widget);
9036 #else /* not USE_X_TOOLKIT */
9037 #ifdef USE_GTK
9038 gtk_widget_show_all (FRAME_GTK_OUTER_WIDGET (f));
9039 gtk_window_deiconify (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
9040 #else
9041 if (FRAME_X_EMBEDDED_P (f))
9042 xembed_set_info (f, XEMBED_MAPPED);
9043 else
9044 XMapRaised (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
9045 #endif /* not USE_GTK */
9046 #endif /* not USE_X_TOOLKIT */
9049 XFlush (FRAME_X_DISPLAY (f));
9051 /* Synchronize to ensure Emacs knows the frame is visible
9052 before we do anything else. We do this loop with input not blocked
9053 so that incoming events are handled. */
9055 Lisp_Object frame;
9056 int count;
9057 /* This must be before UNBLOCK_INPUT
9058 since events that arrive in response to the actions above
9059 will set it when they are handled. */
9060 int previously_visible = f->output_data.x->has_been_visible;
9062 original_left = f->left_pos;
9063 original_top = f->top_pos;
9065 /* This must come after we set COUNT. */
9066 unblock_input ();
9068 /* We unblock here so that arriving X events are processed. */
9070 /* Now move the window back to where it was "supposed to be".
9071 But don't do it if the gravity is negative.
9072 When the gravity is negative, this uses a position
9073 that is 3 pixels too low. Perhaps that's really the border width.
9075 Don't do this if the window has never been visible before,
9076 because the window manager may choose the position
9077 and we don't want to override it. */
9079 if (! FRAME_VISIBLE_P (f)
9080 && ! FRAME_ICONIFIED_P (f)
9081 && ! FRAME_X_EMBEDDED_P (f)
9082 && f->win_gravity == NorthWestGravity
9083 && previously_visible)
9085 Drawable rootw;
9086 int x, y;
9087 unsigned int width, height, border, depth;
9089 block_input ();
9091 /* On some window managers (such as FVWM) moving an existing
9092 window, even to the same place, causes the window manager
9093 to introduce an offset. This can cause the window to move
9094 to an unexpected location. Check the geometry (a little
9095 slow here) and then verify that the window is in the right
9096 place. If the window is not in the right place, move it
9097 there, and take the potential window manager hit. */
9098 XGetGeometry (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
9099 &rootw, &x, &y, &width, &height, &border, &depth);
9101 if (original_left != x || original_top != y)
9102 XMoveWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
9103 original_left, original_top);
9105 unblock_input ();
9108 XSETFRAME (frame, f);
9110 /* Wait until the frame is visible. Process X events until a
9111 MapNotify event has been seen, or until we think we won't get a
9112 MapNotify at all.. */
9113 for (count = input_signal_count + 10;
9114 input_signal_count < count && !FRAME_VISIBLE_P (f);)
9116 /* Force processing of queued events. */
9117 x_sync (f);
9119 /* Machines that do polling rather than SIGIO have been
9120 observed to go into a busy-wait here. So we'll fake an
9121 alarm signal to let the handler know that there's something
9122 to be read. We used to raise a real alarm, but it seems
9123 that the handler isn't always enabled here. This is
9124 probably a bug. */
9125 if (input_polling_used ())
9127 /* It could be confusing if a real alarm arrives while
9128 processing the fake one. Turn it off and let the
9129 handler reset it. */
9130 int old_poll_suppress_count = poll_suppress_count;
9131 poll_suppress_count = 1;
9132 poll_for_input_1 ();
9133 poll_suppress_count = old_poll_suppress_count;
9137 /* 2000-09-28: In
9139 (let ((f (selected-frame)))
9140 (iconify-frame f)
9141 (raise-frame f))
9143 the frame is not raised with various window managers on
9144 FreeBSD, GNU/Linux and Solaris. It turns out that, for some
9145 unknown reason, the call to XtMapWidget is completely ignored.
9146 Mapping the widget a second time works. */
9148 if (!FRAME_VISIBLE_P (f) && --retry_count != 0)
9149 goto retry;
9153 /* Change from mapped state to withdrawn state. */
9155 /* Make the frame visible (mapped and not iconified). */
9157 void
9158 x_make_frame_invisible (struct frame *f)
9160 Window window;
9162 /* Use the frame's outermost window, not the one we normally draw on. */
9163 window = FRAME_OUTER_WINDOW (f);
9165 /* Don't keep the highlight on an invisible frame. */
9166 if (FRAME_X_DISPLAY_INFO (f)->x_highlight_frame == f)
9167 FRAME_X_DISPLAY_INFO (f)->x_highlight_frame = 0;
9169 block_input ();
9171 /* Before unmapping the window, update the WM_SIZE_HINTS property to claim
9172 that the current position of the window is user-specified, rather than
9173 program-specified, so that when the window is mapped again, it will be
9174 placed at the same location, without forcing the user to position it
9175 by hand again (they have already done that once for this window.) */
9176 x_wm_set_size_hint (f, (long) 0, 1);
9178 #ifdef USE_GTK
9179 if (FRAME_GTK_OUTER_WIDGET (f))
9180 gtk_widget_hide (FRAME_GTK_OUTER_WIDGET (f));
9181 else
9182 #else
9183 if (FRAME_X_EMBEDDED_P (f))
9184 xembed_set_info (f, 0);
9185 else
9186 #endif
9189 if (! XWithdrawWindow (FRAME_X_DISPLAY (f), window,
9190 DefaultScreen (FRAME_X_DISPLAY (f))))
9192 unblock_input ();
9193 error ("Can't notify window manager of window withdrawal");
9197 /* We can't distinguish this from iconification
9198 just by the event that we get from the server.
9199 So we can't win using the usual strategy of letting
9200 FRAME_SAMPLE_VISIBILITY set this. So do it by hand,
9201 and synchronize with the server to make sure we agree. */
9202 SET_FRAME_VISIBLE (f, 0);
9203 SET_FRAME_ICONIFIED (f, 0);
9205 x_sync (f);
9207 unblock_input ();
9210 /* Change window state from mapped to iconified. */
9212 void
9213 x_iconify_frame (struct frame *f)
9215 #ifdef USE_X_TOOLKIT
9216 int result;
9217 #endif
9218 Lisp_Object type;
9220 /* Don't keep the highlight on an invisible frame. */
9221 if (FRAME_X_DISPLAY_INFO (f)->x_highlight_frame == f)
9222 FRAME_X_DISPLAY_INFO (f)->x_highlight_frame = 0;
9224 if (FRAME_ICONIFIED_P (f))
9225 return;
9227 block_input ();
9229 type = x_icon_type (f);
9230 if (!NILP (type))
9231 x_bitmap_icon (f, type);
9233 #if defined (USE_GTK)
9234 if (FRAME_GTK_OUTER_WIDGET (f))
9236 if (! FRAME_VISIBLE_P (f))
9237 gtk_widget_show_all (FRAME_GTK_OUTER_WIDGET (f));
9239 gtk_window_iconify (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
9240 SET_FRAME_VISIBLE (f, 0);
9241 SET_FRAME_ICONIFIED (f, 1);
9242 unblock_input ();
9243 return;
9245 #endif
9247 #ifdef USE_X_TOOLKIT
9249 if (! FRAME_VISIBLE_P (f))
9251 if (! EQ (Vx_no_window_manager, Qt))
9252 x_wm_set_window_state (f, IconicState);
9253 /* This was XtPopup, but that did nothing for an iconified frame. */
9254 XtMapWidget (f->output_data.x->widget);
9255 /* The server won't give us any event to indicate
9256 that an invisible frame was changed to an icon,
9257 so we have to record it here. */
9258 SET_FRAME_VISIBLE (f, 0);
9259 SET_FRAME_ICONIFIED (f, 1);
9260 unblock_input ();
9261 return;
9264 result = XIconifyWindow (FRAME_X_DISPLAY (f),
9265 XtWindow (f->output_data.x->widget),
9266 DefaultScreen (FRAME_X_DISPLAY (f)));
9267 unblock_input ();
9269 if (!result)
9270 error ("Can't notify window manager of iconification");
9272 SET_FRAME_ICONIFIED (f, 1);
9273 SET_FRAME_VISIBLE (f, 0);
9275 block_input ();
9276 XFlush (FRAME_X_DISPLAY (f));
9277 unblock_input ();
9278 #else /* not USE_X_TOOLKIT */
9280 /* Make sure the X server knows where the window should be positioned,
9281 in case the user deiconifies with the window manager. */
9282 if (! FRAME_VISIBLE_P (f)
9283 && ! FRAME_ICONIFIED_P (f)
9284 && ! FRAME_X_EMBEDDED_P (f))
9285 x_set_offset (f, f->left_pos, f->top_pos, 0);
9287 /* Since we don't know which revision of X we're running, we'll use both
9288 the X11R3 and X11R4 techniques. I don't know if this is a good idea. */
9290 /* X11R4: send a ClientMessage to the window manager using the
9291 WM_CHANGE_STATE type. */
9293 XEvent msg;
9295 msg.xclient.window = FRAME_X_WINDOW (f);
9296 msg.xclient.type = ClientMessage;
9297 msg.xclient.message_type = FRAME_X_DISPLAY_INFO (f)->Xatom_wm_change_state;
9298 msg.xclient.format = 32;
9299 msg.xclient.data.l[0] = IconicState;
9301 if (! XSendEvent (FRAME_X_DISPLAY (f),
9302 DefaultRootWindow (FRAME_X_DISPLAY (f)),
9303 False,
9304 SubstructureRedirectMask | SubstructureNotifyMask,
9305 &msg))
9307 unblock_input ();
9308 error ("Can't notify window manager of iconification");
9312 /* X11R3: set the initial_state field of the window manager hints to
9313 IconicState. */
9314 x_wm_set_window_state (f, IconicState);
9316 if (!FRAME_VISIBLE_P (f))
9318 /* If the frame was withdrawn, before, we must map it. */
9319 XMapRaised (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
9322 SET_FRAME_ICONIFIED (f, 1);
9323 SET_FRAME_VISIBLE (f, 0);
9325 XFlush (FRAME_X_DISPLAY (f));
9326 unblock_input ();
9327 #endif /* not USE_X_TOOLKIT */
9331 /* Free X resources of frame F. */
9333 void
9334 x_free_frame_resources (struct frame *f)
9336 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
9337 Mouse_HLInfo *hlinfo = &dpyinfo->mouse_highlight;
9338 #ifdef USE_X_TOOLKIT
9339 Lisp_Object bar;
9340 struct scroll_bar *b;
9341 #endif
9343 block_input ();
9345 /* If a display connection is dead, don't try sending more
9346 commands to the X server. */
9347 if (dpyinfo->display)
9349 /* We must free faces before destroying windows because some
9350 font-driver (e.g. xft) access a window while finishing a
9351 face. */
9352 if (FRAME_FACE_CACHE (f))
9353 free_frame_faces (f);
9355 if (f->output_data.x->icon_desc)
9356 XDestroyWindow (FRAME_X_DISPLAY (f), f->output_data.x->icon_desc);
9358 #ifdef USE_X_TOOLKIT
9359 /* Explicitly destroy the scroll bars of the frame. Without
9360 this, we get "BadDrawable" errors from the toolkit later on,
9361 presumably from expose events generated for the disappearing
9362 toolkit scroll bars. */
9363 for (bar = FRAME_SCROLL_BARS (f); !NILP (bar); bar = b->next)
9365 b = XSCROLL_BAR (bar);
9366 x_scroll_bar_remove (b);
9368 #endif
9370 #ifdef HAVE_X_I18N
9371 if (FRAME_XIC (f))
9372 free_frame_xic (f);
9373 #endif
9375 #ifdef USE_X_TOOLKIT
9376 if (f->output_data.x->widget)
9378 XtDestroyWidget (f->output_data.x->widget);
9379 f->output_data.x->widget = NULL;
9381 /* Tooltips don't have widgets, only a simple X window, even if
9382 we are using a toolkit. */
9383 else if (FRAME_X_WINDOW (f))
9384 XDestroyWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
9386 free_frame_menubar (f);
9387 #else /* !USE_X_TOOLKIT */
9389 #ifdef USE_GTK
9390 xg_free_frame_widgets (f);
9391 #endif /* USE_GTK */
9393 if (FRAME_X_WINDOW (f))
9394 XDestroyWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
9395 #endif /* !USE_X_TOOLKIT */
9397 unload_color (f, FRAME_FOREGROUND_PIXEL (f));
9398 unload_color (f, FRAME_BACKGROUND_PIXEL (f));
9399 unload_color (f, f->output_data.x->cursor_pixel);
9400 unload_color (f, f->output_data.x->cursor_foreground_pixel);
9401 unload_color (f, f->output_data.x->border_pixel);
9402 unload_color (f, f->output_data.x->mouse_pixel);
9404 if (f->output_data.x->scroll_bar_background_pixel != -1)
9405 unload_color (f, f->output_data.x->scroll_bar_background_pixel);
9406 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
9407 unload_color (f, f->output_data.x->scroll_bar_foreground_pixel);
9408 #ifdef USE_TOOLKIT_SCROLL_BARS
9409 /* Scrollbar shadow colors. */
9410 if (f->output_data.x->scroll_bar_top_shadow_pixel != -1)
9411 unload_color (f, f->output_data.x->scroll_bar_top_shadow_pixel);
9412 if (f->output_data.x->scroll_bar_bottom_shadow_pixel != -1)
9413 unload_color (f, f->output_data.x->scroll_bar_bottom_shadow_pixel);
9414 #endif /* USE_TOOLKIT_SCROLL_BARS */
9415 if (f->output_data.x->white_relief.allocated_p)
9416 unload_color (f, f->output_data.x->white_relief.pixel);
9417 if (f->output_data.x->black_relief.allocated_p)
9418 unload_color (f, f->output_data.x->black_relief.pixel);
9420 x_free_gcs (f);
9422 /* Free extra GCs allocated by x_setup_relief_colors. */
9423 if (f->output_data.x->white_relief.gc)
9425 XFreeGC (dpyinfo->display, f->output_data.x->white_relief.gc);
9426 f->output_data.x->white_relief.gc = 0;
9428 if (f->output_data.x->black_relief.gc)
9430 XFreeGC (dpyinfo->display, f->output_data.x->black_relief.gc);
9431 f->output_data.x->black_relief.gc = 0;
9434 XFlush (FRAME_X_DISPLAY (f));
9437 xfree (f->output_data.x->saved_menu_event);
9438 xfree (f->output_data.x);
9439 f->output_data.x = NULL;
9441 if (f == dpyinfo->x_focus_frame)
9442 dpyinfo->x_focus_frame = 0;
9443 if (f == dpyinfo->x_focus_event_frame)
9444 dpyinfo->x_focus_event_frame = 0;
9445 if (f == dpyinfo->x_highlight_frame)
9446 dpyinfo->x_highlight_frame = 0;
9448 if (f == hlinfo->mouse_face_mouse_frame)
9450 hlinfo->mouse_face_beg_row
9451 = hlinfo->mouse_face_beg_col = -1;
9452 hlinfo->mouse_face_end_row
9453 = hlinfo->mouse_face_end_col = -1;
9454 hlinfo->mouse_face_window = Qnil;
9455 hlinfo->mouse_face_mouse_frame = 0;
9458 unblock_input ();
9462 /* Destroy the X window of frame F. */
9464 static void
9465 x_destroy_window (struct frame *f)
9467 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
9469 /* If a display connection is dead, don't try sending more
9470 commands to the X server. */
9471 if (dpyinfo->display != 0)
9472 x_free_frame_resources (f);
9474 dpyinfo->reference_count--;
9478 /* Setting window manager hints. */
9480 /* Set the normal size hints for the window manager, for frame F.
9481 FLAGS is the flags word to use--or 0 meaning preserve the flags
9482 that the window now has.
9483 If USER_POSITION, set the USPosition
9484 flag (this is useful when FLAGS is 0).
9485 The GTK version is in gtkutils.c. */
9487 #ifndef USE_GTK
9488 void
9489 x_wm_set_size_hint (struct frame *f, long flags, bool user_position)
9491 XSizeHints size_hints;
9492 Window window = FRAME_OUTER_WINDOW (f);
9494 #ifdef USE_X_TOOLKIT
9495 if (f->output_data.x->widget)
9497 widget_update_wm_size_hints (f->output_data.x->widget);
9498 return;
9500 #endif
9502 /* Setting PMaxSize caused various problems. */
9503 size_hints.flags = PResizeInc | PMinSize /* | PMaxSize */;
9505 size_hints.x = f->left_pos;
9506 size_hints.y = f->top_pos;
9508 size_hints.height = FRAME_PIXEL_HEIGHT (f);
9509 size_hints.width = FRAME_PIXEL_WIDTH (f);
9511 size_hints.width_inc = FRAME_COLUMN_WIDTH (f);
9512 size_hints.height_inc = FRAME_LINE_HEIGHT (f);
9513 size_hints.max_width = x_display_pixel_width (FRAME_X_DISPLAY_INFO (f))
9514 - FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, 0);
9515 size_hints.max_height = x_display_pixel_height (FRAME_X_DISPLAY_INFO (f))
9516 - FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, 0);
9518 /* Calculate the base and minimum sizes. */
9520 int base_width, base_height;
9521 int min_rows = 0, min_cols = 0;
9523 base_width = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, 0);
9524 base_height = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, 0);
9526 check_frame_size (f, &min_rows, &min_cols);
9528 /* The window manager uses the base width hints to calculate the
9529 current number of rows and columns in the frame while
9530 resizing; min_width and min_height aren't useful for this
9531 purpose, since they might not give the dimensions for a
9532 zero-row, zero-column frame.
9534 We use the base_width and base_height members if we have
9535 them; otherwise, we set the min_width and min_height members
9536 to the size for a zero x zero frame. */
9538 size_hints.flags |= PBaseSize;
9539 size_hints.base_width = base_width;
9540 size_hints.base_height = base_height + FRAME_MENUBAR_HEIGHT (f);
9541 size_hints.min_width = base_width + min_cols * size_hints.width_inc;
9542 size_hints.min_height = base_height + min_rows * size_hints.height_inc;
9545 /* If we don't need the old flags, we don't need the old hint at all. */
9546 if (flags)
9548 size_hints.flags |= flags;
9549 goto no_read;
9553 XSizeHints hints; /* Sometimes I hate X Windows... */
9554 long supplied_return;
9555 int value;
9557 value = XGetWMNormalHints (FRAME_X_DISPLAY (f), window, &hints,
9558 &supplied_return);
9560 if (flags)
9561 size_hints.flags |= flags;
9562 else
9564 if (value == 0)
9565 hints.flags = 0;
9566 if (hints.flags & PSize)
9567 size_hints.flags |= PSize;
9568 if (hints.flags & PPosition)
9569 size_hints.flags |= PPosition;
9570 if (hints.flags & USPosition)
9571 size_hints.flags |= USPosition;
9572 if (hints.flags & USSize)
9573 size_hints.flags |= USSize;
9577 no_read:
9579 #ifdef PWinGravity
9580 size_hints.win_gravity = f->win_gravity;
9581 size_hints.flags |= PWinGravity;
9583 if (user_position)
9585 size_hints.flags &= ~ PPosition;
9586 size_hints.flags |= USPosition;
9588 #endif /* PWinGravity */
9590 XSetWMNormalHints (FRAME_X_DISPLAY (f), window, &size_hints);
9592 #endif /* not USE_GTK */
9594 /* Used for IconicState or NormalState */
9596 static void
9597 x_wm_set_window_state (struct frame *f, int state)
9599 #ifdef USE_X_TOOLKIT
9600 Arg al[1];
9602 XtSetArg (al[0], XtNinitialState, state);
9603 XtSetValues (f->output_data.x->widget, al, 1);
9604 #else /* not USE_X_TOOLKIT */
9605 Window window = FRAME_X_WINDOW (f);
9607 f->output_data.x->wm_hints.flags |= StateHint;
9608 f->output_data.x->wm_hints.initial_state = state;
9610 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints);
9611 #endif /* not USE_X_TOOLKIT */
9614 static void
9615 x_wm_set_icon_pixmap (struct frame *f, ptrdiff_t pixmap_id)
9617 Pixmap icon_pixmap, icon_mask;
9619 #if !defined USE_X_TOOLKIT && !defined USE_GTK
9620 Window window = FRAME_OUTER_WINDOW (f);
9621 #endif
9623 if (pixmap_id > 0)
9625 icon_pixmap = x_bitmap_pixmap (f, pixmap_id);
9626 f->output_data.x->wm_hints.icon_pixmap = icon_pixmap;
9627 icon_mask = x_bitmap_mask (f, pixmap_id);
9628 f->output_data.x->wm_hints.icon_mask = icon_mask;
9630 else
9632 /* It seems there is no way to turn off use of an icon
9633 pixmap. */
9634 return;
9638 #ifdef USE_GTK
9640 xg_set_frame_icon (f, icon_pixmap, icon_mask);
9641 return;
9644 #elif defined (USE_X_TOOLKIT) /* same as in x_wm_set_window_state. */
9647 Arg al[1];
9648 XtSetArg (al[0], XtNiconPixmap, icon_pixmap);
9649 XtSetValues (f->output_data.x->widget, al, 1);
9650 XtSetArg (al[0], XtNiconMask, icon_mask);
9651 XtSetValues (f->output_data.x->widget, al, 1);
9654 #else /* not USE_X_TOOLKIT && not USE_GTK */
9656 f->output_data.x->wm_hints.flags |= (IconPixmapHint | IconMaskHint);
9657 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints);
9659 #endif /* not USE_X_TOOLKIT && not USE_GTK */
9662 void
9663 x_wm_set_icon_position (struct frame *f, int icon_x, int icon_y)
9665 Window window = FRAME_OUTER_WINDOW (f);
9667 f->output_data.x->wm_hints.flags |= IconPositionHint;
9668 f->output_data.x->wm_hints.icon_x = icon_x;
9669 f->output_data.x->wm_hints.icon_y = icon_y;
9671 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints);
9675 /***********************************************************************
9676 Fonts
9677 ***********************************************************************/
9679 #ifdef GLYPH_DEBUG
9681 /* Check that FONT is valid on frame F. It is if it can be found in F's
9682 font table. */
9684 static void
9685 x_check_font (struct frame *f, struct font *font)
9687 eassert (font != NULL && ! NILP (font->props[FONT_TYPE_INDEX]));
9688 if (font->driver->check)
9689 eassert (font->driver->check (f, font) == 0);
9692 #endif /* GLYPH_DEBUG */
9695 /***********************************************************************
9696 Initialization
9697 ***********************************************************************/
9699 #ifdef USE_X_TOOLKIT
9700 static XrmOptionDescRec emacs_options[] = {
9701 {"-geometry", ".geometry", XrmoptionSepArg, NULL},
9702 {"-iconic", ".iconic", XrmoptionNoArg, (XtPointer) "yes"},
9704 {"-internal-border-width", "*EmacsScreen.internalBorderWidth",
9705 XrmoptionSepArg, NULL},
9706 {"-ib", "*EmacsScreen.internalBorderWidth", XrmoptionSepArg, NULL},
9708 {"-T", "*EmacsShell.title", XrmoptionSepArg, (XtPointer) NULL},
9709 {"-wn", "*EmacsShell.title", XrmoptionSepArg, (XtPointer) NULL},
9710 {"-title", "*EmacsShell.title", XrmoptionSepArg, (XtPointer) NULL},
9711 {"-iconname", "*EmacsShell.iconName", XrmoptionSepArg, (XtPointer) NULL},
9712 {"-in", "*EmacsShell.iconName", XrmoptionSepArg, (XtPointer) NULL},
9713 {"-mc", "*pointerColor", XrmoptionSepArg, (XtPointer) NULL},
9714 {"-cr", "*cursorColor", XrmoptionSepArg, (XtPointer) NULL}
9717 /* Whether atimer for Xt timeouts is activated or not. */
9719 static int x_timeout_atimer_activated_flag;
9721 #endif /* USE_X_TOOLKIT */
9723 static int x_initialized;
9725 /* Test whether two display-name strings agree up to the dot that separates
9726 the screen number from the server number. */
9727 static int
9728 same_x_server (const char *name1, const char *name2)
9730 int seen_colon = 0;
9731 const char *system_name = SSDATA (Vsystem_name);
9732 ptrdiff_t system_name_length = SBYTES (Vsystem_name);
9733 ptrdiff_t length_until_period = 0;
9735 while (system_name[length_until_period] != 0
9736 && system_name[length_until_period] != '.')
9737 length_until_period++;
9739 /* Treat `unix' like an empty host name. */
9740 if (! strncmp (name1, "unix:", 5))
9741 name1 += 4;
9742 if (! strncmp (name2, "unix:", 5))
9743 name2 += 4;
9744 /* Treat this host's name like an empty host name. */
9745 if (! strncmp (name1, system_name, system_name_length)
9746 && name1[system_name_length] == ':')
9747 name1 += system_name_length;
9748 if (! strncmp (name2, system_name, system_name_length)
9749 && name2[system_name_length] == ':')
9750 name2 += system_name_length;
9751 /* Treat this host's domainless name like an empty host name. */
9752 if (! strncmp (name1, system_name, length_until_period)
9753 && name1[length_until_period] == ':')
9754 name1 += length_until_period;
9755 if (! strncmp (name2, system_name, length_until_period)
9756 && name2[length_until_period] == ':')
9757 name2 += length_until_period;
9759 for (; *name1 != '\0' && *name1 == *name2; name1++, name2++)
9761 if (*name1 == ':')
9762 seen_colon = 1;
9763 if (seen_colon && *name1 == '.')
9764 return 1;
9766 return (seen_colon
9767 && (*name1 == '.' || *name1 == '\0')
9768 && (*name2 == '.' || *name2 == '\0'));
9771 /* Count number of set bits in mask and number of bits to shift to
9772 get to the first bit. With MASK 0x7e0, *BITS is set to 6, and *OFFSET
9773 to 5. */
9774 static void
9775 get_bits_and_offset (long unsigned int mask, int *bits, int *offset)
9777 int nr = 0;
9778 int off = 0;
9780 while (!(mask & 1))
9782 off++;
9783 mask >>= 1;
9786 while (mask & 1)
9788 nr++;
9789 mask >>= 1;
9792 *offset = off;
9793 *bits = nr;
9796 /* Return 1 if display DISPLAY is available for use, 0 otherwise.
9797 But don't permanently open it, just test its availability. */
9799 bool
9800 x_display_ok (const char *display)
9802 Display *dpy = XOpenDisplay (display);
9803 return dpy ? (XCloseDisplay (dpy), 1) : 0;
9806 #ifdef USE_GTK
9807 static void
9808 my_log_handler (const gchar *log_domain, GLogLevelFlags log_level,
9809 const gchar *msg, gpointer user_data)
9811 if (!strstr (msg, "g_set_prgname"))
9812 fprintf (stderr, "%s-WARNING **: %s\n", log_domain, msg);
9814 #endif
9816 /* Open a connection to X display DISPLAY_NAME, and return
9817 the structure that describes the open display.
9818 If we cannot contact the display, return null. */
9820 struct x_display_info *
9821 x_term_init (Lisp_Object display_name, char *xrm_option, char *resource_name)
9823 int connection;
9824 Display *dpy;
9825 struct terminal *terminal;
9826 struct x_display_info *dpyinfo;
9827 XrmDatabase xrdb;
9828 Mouse_HLInfo *hlinfo;
9829 ptrdiff_t lim;
9831 block_input ();
9833 if (!x_initialized)
9835 x_initialize ();
9836 ++x_initialized;
9839 if (! x_display_ok (SSDATA (display_name)))
9840 error ("Display %s can't be opened", SSDATA (display_name));
9842 #ifdef USE_GTK
9844 #define NUM_ARGV 10
9845 int argc;
9846 char *argv[NUM_ARGV];
9847 char **argv2 = argv;
9848 guint id;
9850 if (x_initialized++ > 1)
9852 xg_display_open (SSDATA (display_name), &dpy);
9854 else
9856 static char display_opt[] = "--display";
9857 static char name_opt[] = "--name";
9859 for (argc = 0; argc < NUM_ARGV; ++argc)
9860 argv[argc] = 0;
9862 argc = 0;
9863 argv[argc++] = initial_argv[0];
9865 if (! NILP (display_name))
9867 argv[argc++] = display_opt;
9868 argv[argc++] = SSDATA (display_name);
9871 argv[argc++] = name_opt;
9872 argv[argc++] = resource_name;
9874 XSetLocaleModifiers ("");
9876 /* Emacs can only handle core input events, so make sure
9877 Gtk doesn't use Xinput or Xinput2 extensions. */
9878 xputenv ("GDK_CORE_DEVICE_EVENTS=1");
9880 /* Work around GLib bug that outputs a faulty warning. See
9881 https://bugzilla.gnome.org/show_bug.cgi?id=563627. */
9882 id = g_log_set_handler ("GLib", G_LOG_LEVEL_WARNING | G_LOG_FLAG_FATAL
9883 | G_LOG_FLAG_RECURSION, my_log_handler, NULL);
9885 /* NULL window -> events for all windows go to our function.
9886 Call before gtk_init so Gtk+ event filters comes after our. */
9887 gdk_window_add_filter (NULL, event_handler_gdk, NULL);
9889 /* gtk_init does set_locale. Fix locale before and after. */
9890 fixup_locale ();
9891 gtk_init (&argc, &argv2);
9892 fixup_locale ();
9894 g_log_remove_handler ("GLib", id);
9896 xg_initialize ();
9898 dpy = DEFAULT_GDK_DISPLAY ();
9900 #if ! GTK_CHECK_VERSION (2, 90, 0)
9901 /* Load our own gtkrc if it exists. */
9903 const char *file = "~/.emacs.d/gtkrc";
9904 Lisp_Object s, abs_file;
9906 s = build_string (file);
9907 abs_file = Fexpand_file_name (s, Qnil);
9909 if (! NILP (abs_file) && !NILP (Ffile_readable_p (abs_file)))
9910 gtk_rc_parse (SSDATA (abs_file));
9912 #endif
9914 XSetErrorHandler (x_error_handler);
9915 XSetIOErrorHandler (x_io_error_quitter);
9918 #else /* not USE_GTK */
9919 #ifdef USE_X_TOOLKIT
9920 /* weiner@footloose.sps.mot.com reports that this causes
9921 errors with X11R5:
9922 X protocol error: BadAtom (invalid Atom parameter)
9923 on protocol request 18skiloaf.
9924 So let's not use it until R6. */
9925 #ifdef HAVE_X11XTR6
9926 XtSetLanguageProc (NULL, NULL, NULL);
9927 #endif
9930 int argc = 0;
9931 char *argv[3];
9933 argv[0] = "";
9934 argc = 1;
9935 if (xrm_option)
9937 argv[argc++] = "-xrm";
9938 argv[argc++] = xrm_option;
9940 turn_on_atimers (0);
9941 dpy = XtOpenDisplay (Xt_app_con, SSDATA (display_name),
9942 resource_name, EMACS_CLASS,
9943 emacs_options, XtNumber (emacs_options),
9944 &argc, argv);
9945 turn_on_atimers (1);
9947 #ifdef HAVE_X11XTR6
9948 /* I think this is to compensate for XtSetLanguageProc. */
9949 fixup_locale ();
9950 #endif
9953 #else /* not USE_X_TOOLKIT */
9954 XSetLocaleModifiers ("");
9955 dpy = XOpenDisplay (SSDATA (display_name));
9956 #endif /* not USE_X_TOOLKIT */
9957 #endif /* not USE_GTK*/
9959 /* Detect failure. */
9960 if (dpy == 0)
9962 unblock_input ();
9963 return 0;
9966 /* We have definitely succeeded. Record the new connection. */
9968 dpyinfo = xzalloc (sizeof *dpyinfo);
9969 hlinfo = &dpyinfo->mouse_highlight;
9971 terminal = x_create_terminal (dpyinfo);
9974 struct x_display_info *share;
9975 Lisp_Object tail;
9977 for (share = x_display_list, tail = x_display_name_list; share;
9978 share = share->next, tail = XCDR (tail))
9979 if (same_x_server (SSDATA (XCAR (XCAR (tail))),
9980 SSDATA (display_name)))
9981 break;
9982 if (share)
9983 terminal->kboard = share->terminal->kboard;
9984 else
9986 terminal->kboard = xmalloc (sizeof *terminal->kboard);
9987 init_kboard (terminal->kboard);
9988 kset_window_system (terminal->kboard, Qx);
9990 /* Add the keyboard to the list before running Lisp code (via
9991 Qvendor_specific_keysyms below), since these are not traced
9992 via terminals but only through all_kboards. */
9993 terminal->kboard->next_kboard = all_kboards;
9994 all_kboards = terminal->kboard;
9996 if (!EQ (XSYMBOL (Qvendor_specific_keysyms)->function, Qunbound))
9998 char *vendor = ServerVendor (dpy);
10000 /* Protect terminal from GC before removing it from the
10001 list of terminals. */
10002 struct gcpro gcpro1;
10003 Lisp_Object gcpro_term;
10004 XSETTERMINAL (gcpro_term, terminal);
10005 GCPRO1 (gcpro_term);
10007 /* Temporarily hide the partially initialized terminal. */
10008 terminal_list = terminal->next_terminal;
10009 unblock_input ();
10010 kset_system_key_alist
10011 (terminal->kboard,
10012 call1 (Qvendor_specific_keysyms,
10013 vendor ? build_string (vendor) : empty_unibyte_string));
10014 block_input ();
10015 terminal->next_terminal = terminal_list;
10016 terminal_list = terminal;
10017 UNGCPRO;
10020 /* Don't let the initial kboard remain current longer than necessary.
10021 That would cause problems if a file loaded on startup tries to
10022 prompt in the mini-buffer. */
10023 if (current_kboard == initial_kboard)
10024 current_kboard = terminal->kboard;
10026 terminal->kboard->reference_count++;
10029 /* Put this display on the chain. */
10030 dpyinfo->next = x_display_list;
10031 x_display_list = dpyinfo;
10033 /* Put it on x_display_name_list as well, to keep them parallel. */
10034 x_display_name_list = Fcons (Fcons (display_name, Qnil),
10035 x_display_name_list);
10036 dpyinfo->name_list_element = XCAR (x_display_name_list);
10038 dpyinfo->display = dpy;
10040 /* Set the name of the terminal. */
10041 terminal->name = xlispstrdup (display_name);
10043 #if 0
10044 XSetAfterFunction (x_current_display, x_trace_wire);
10045 #endif /* ! 0 */
10047 lim = min (PTRDIFF_MAX, SIZE_MAX) - sizeof "@";
10048 if (lim - SBYTES (Vinvocation_name) < SBYTES (Vsystem_name))
10049 memory_full (SIZE_MAX);
10050 dpyinfo->x_id_name = xmalloc (SBYTES (Vinvocation_name)
10051 + SBYTES (Vsystem_name) + 2);
10052 strcat (strcat (strcpy (dpyinfo->x_id_name, SSDATA (Vinvocation_name)), "@"),
10053 SSDATA (Vsystem_name));
10055 /* Figure out which modifier bits mean what. */
10056 x_find_modifier_meanings (dpyinfo);
10058 /* Get the scroll bar cursor. */
10059 #ifdef USE_GTK
10060 /* We must create a GTK cursor, it is required for GTK widgets. */
10061 dpyinfo->xg_cursor = xg_create_default_cursor (dpyinfo->display);
10062 #endif /* USE_GTK */
10064 dpyinfo->vertical_scroll_bar_cursor
10065 = XCreateFontCursor (dpyinfo->display, XC_sb_v_double_arrow);
10067 xrdb = x_load_resources (dpyinfo->display, xrm_option,
10068 resource_name, EMACS_CLASS);
10069 #ifdef HAVE_XRMSETDATABASE
10070 XrmSetDatabase (dpyinfo->display, xrdb);
10071 #else
10072 dpyinfo->display->db = xrdb;
10073 #endif
10074 /* Put the rdb where we can find it in a way that works on
10075 all versions. */
10076 dpyinfo->xrdb = xrdb;
10078 dpyinfo->screen = ScreenOfDisplay (dpyinfo->display,
10079 DefaultScreen (dpyinfo->display));
10080 select_visual (dpyinfo);
10081 dpyinfo->cmap = DefaultColormapOfScreen (dpyinfo->screen);
10082 dpyinfo->root_window = RootWindowOfScreen (dpyinfo->screen);
10083 dpyinfo->icon_bitmap_id = -1;
10084 hlinfo->mouse_face_beg_row = hlinfo->mouse_face_beg_col = -1;
10085 hlinfo->mouse_face_end_row = hlinfo->mouse_face_end_col = -1;
10086 hlinfo->mouse_face_face_id = DEFAULT_FACE_ID;
10087 hlinfo->mouse_face_window = Qnil;
10088 hlinfo->mouse_face_overlay = Qnil;
10089 dpyinfo->wm_type = X_WMTYPE_UNKNOWN;
10091 /* See if we can construct pixel values from RGB values. */
10092 if (dpyinfo->visual->class == TrueColor)
10094 get_bits_and_offset (dpyinfo->visual->red_mask,
10095 &dpyinfo->red_bits, &dpyinfo->red_offset);
10096 get_bits_and_offset (dpyinfo->visual->blue_mask,
10097 &dpyinfo->blue_bits, &dpyinfo->blue_offset);
10098 get_bits_and_offset (dpyinfo->visual->green_mask,
10099 &dpyinfo->green_bits, &dpyinfo->green_offset);
10102 /* See if a private colormap is requested. */
10103 if (dpyinfo->visual == DefaultVisualOfScreen (dpyinfo->screen))
10105 if (dpyinfo->visual->class == PseudoColor)
10107 Lisp_Object value;
10108 value = display_x_get_resource (dpyinfo,
10109 build_string ("privateColormap"),
10110 build_string ("PrivateColormap"),
10111 Qnil, Qnil);
10112 if (STRINGP (value)
10113 && (!strcmp (SSDATA (value), "true")
10114 || !strcmp (SSDATA (value), "on")))
10115 dpyinfo->cmap = XCopyColormapAndFree (dpyinfo->display, dpyinfo->cmap);
10118 else
10119 dpyinfo->cmap = XCreateColormap (dpyinfo->display, dpyinfo->root_window,
10120 dpyinfo->visual, AllocNone);
10122 #ifdef HAVE_XFT
10124 /* If we are using Xft, check dpi value in X resources.
10125 It is better we use it as well, since Xft will use it, as will all
10126 Gnome applications. If our real DPI is smaller or larger than the
10127 one Xft uses, our font will look smaller or larger than other
10128 for other applications, even if it is the same font name (monospace-10
10129 for example). */
10130 char *v = XGetDefault (dpyinfo->display, "Xft", "dpi");
10131 double d;
10132 if (v != NULL && sscanf (v, "%lf", &d) == 1)
10133 dpyinfo->resy = dpyinfo->resx = d;
10135 #endif
10137 if (dpyinfo->resy < 1)
10139 int screen_number = XScreenNumberOfScreen (dpyinfo->screen);
10140 double pixels = DisplayHeight (dpyinfo->display, screen_number);
10141 double mm = DisplayHeightMM (dpyinfo->display, screen_number);
10142 /* Mac OS X 10.3's Xserver sometimes reports 0.0mm. */
10143 dpyinfo->resy = (mm < 1) ? 100 : pixels * 25.4 / mm;
10144 pixels = DisplayWidth (dpyinfo->display, screen_number);
10145 mm = DisplayWidthMM (dpyinfo->display, screen_number);
10146 /* Mac OS X 10.3's Xserver sometimes reports 0.0mm. */
10147 dpyinfo->resx = (mm < 1) ? 100 : pixels * 25.4 / mm;
10151 static const struct
10153 const char *name;
10154 int offset;
10155 } atom_refs[] = {
10156 #define ATOM_REFS_INIT(string, member) \
10157 { string, offsetof (struct x_display_info, member) },
10158 ATOM_REFS_INIT ("WM_PROTOCOLS", Xatom_wm_protocols)
10159 ATOM_REFS_INIT ("WM_TAKE_FOCUS", Xatom_wm_take_focus)
10160 ATOM_REFS_INIT ("WM_SAVE_YOURSELF", Xatom_wm_save_yourself)
10161 ATOM_REFS_INIT ("WM_DELETE_WINDOW", Xatom_wm_delete_window)
10162 ATOM_REFS_INIT ("WM_CHANGE_STATE", Xatom_wm_change_state)
10163 ATOM_REFS_INIT ("WM_CONFIGURE_DENIED", Xatom_wm_configure_denied)
10164 ATOM_REFS_INIT ("WM_MOVED", Xatom_wm_window_moved)
10165 ATOM_REFS_INIT ("WM_CLIENT_LEADER", Xatom_wm_client_leader)
10166 ATOM_REFS_INIT ("Editres", Xatom_editres)
10167 ATOM_REFS_INIT ("CLIPBOARD", Xatom_CLIPBOARD)
10168 ATOM_REFS_INIT ("TIMESTAMP", Xatom_TIMESTAMP)
10169 ATOM_REFS_INIT ("TEXT", Xatom_TEXT)
10170 ATOM_REFS_INIT ("COMPOUND_TEXT", Xatom_COMPOUND_TEXT)
10171 ATOM_REFS_INIT ("UTF8_STRING", Xatom_UTF8_STRING)
10172 ATOM_REFS_INIT ("DELETE", Xatom_DELETE)
10173 ATOM_REFS_INIT ("MULTIPLE", Xatom_MULTIPLE)
10174 ATOM_REFS_INIT ("INCR", Xatom_INCR)
10175 ATOM_REFS_INIT ("_EMACS_TMP_", Xatom_EMACS_TMP)
10176 ATOM_REFS_INIT ("TARGETS", Xatom_TARGETS)
10177 ATOM_REFS_INIT ("NULL", Xatom_NULL)
10178 ATOM_REFS_INIT ("ATOM", Xatom_ATOM)
10179 ATOM_REFS_INIT ("ATOM_PAIR", Xatom_ATOM_PAIR)
10180 ATOM_REFS_INIT ("CLIPBOARD_MANAGER", Xatom_CLIPBOARD_MANAGER)
10181 ATOM_REFS_INIT ("_XEMBED_INFO", Xatom_XEMBED_INFO)
10182 /* For properties of font. */
10183 ATOM_REFS_INIT ("PIXEL_SIZE", Xatom_PIXEL_SIZE)
10184 ATOM_REFS_INIT ("AVERAGE_WIDTH", Xatom_AVERAGE_WIDTH)
10185 ATOM_REFS_INIT ("_MULE_BASELINE_OFFSET", Xatom_MULE_BASELINE_OFFSET)
10186 ATOM_REFS_INIT ("_MULE_RELATIVE_COMPOSE", Xatom_MULE_RELATIVE_COMPOSE)
10187 ATOM_REFS_INIT ("_MULE_DEFAULT_ASCENT", Xatom_MULE_DEFAULT_ASCENT)
10188 /* Ghostscript support. */
10189 ATOM_REFS_INIT ("DONE", Xatom_DONE)
10190 ATOM_REFS_INIT ("PAGE", Xatom_PAGE)
10191 ATOM_REFS_INIT ("SCROLLBAR", Xatom_Scrollbar)
10192 ATOM_REFS_INIT ("_XEMBED", Xatom_XEMBED)
10193 /* EWMH */
10194 ATOM_REFS_INIT ("_NET_WM_STATE", Xatom_net_wm_state)
10195 ATOM_REFS_INIT ("_NET_WM_STATE_FULLSCREEN", Xatom_net_wm_state_fullscreen)
10196 ATOM_REFS_INIT ("_NET_WM_STATE_MAXIMIZED_HORZ",
10197 Xatom_net_wm_state_maximized_horz)
10198 ATOM_REFS_INIT ("_NET_WM_STATE_MAXIMIZED_VERT",
10199 Xatom_net_wm_state_maximized_vert)
10200 ATOM_REFS_INIT ("_NET_WM_STATE_STICKY", Xatom_net_wm_state_sticky)
10201 ATOM_REFS_INIT ("_NET_WM_STATE_HIDDEN", Xatom_net_wm_state_hidden)
10202 ATOM_REFS_INIT ("_NET_WM_WINDOW_TYPE", Xatom_net_window_type)
10203 ATOM_REFS_INIT ("_NET_WM_WINDOW_TYPE_TOOLTIP",
10204 Xatom_net_window_type_tooltip)
10205 ATOM_REFS_INIT ("_NET_WM_ICON_NAME", Xatom_net_wm_icon_name)
10206 ATOM_REFS_INIT ("_NET_WM_NAME", Xatom_net_wm_name)
10207 ATOM_REFS_INIT ("_NET_SUPPORTED", Xatom_net_supported)
10208 ATOM_REFS_INIT ("_NET_SUPPORTING_WM_CHECK", Xatom_net_supporting_wm_check)
10209 ATOM_REFS_INIT ("_NET_WM_WINDOW_OPACITY", Xatom_net_wm_window_opacity)
10210 ATOM_REFS_INIT ("_NET_ACTIVE_WINDOW", Xatom_net_active_window)
10211 ATOM_REFS_INIT ("_NET_FRAME_EXTENTS", Xatom_net_frame_extents)
10212 ATOM_REFS_INIT ("_NET_CURRENT_DESKTOP", Xatom_net_current_desktop)
10213 ATOM_REFS_INIT ("_NET_WORKAREA", Xatom_net_workarea)
10214 /* Session management */
10215 ATOM_REFS_INIT ("SM_CLIENT_ID", Xatom_SM_CLIENT_ID)
10216 ATOM_REFS_INIT ("_XSETTINGS_SETTINGS", Xatom_xsettings_prop)
10217 ATOM_REFS_INIT ("MANAGER", Xatom_xsettings_mgr)
10220 int i;
10221 const int atom_count = sizeof (atom_refs) / sizeof (atom_refs[0]);
10222 /* 1 for _XSETTINGS_SN */
10223 const int total_atom_count = 1 + atom_count;
10224 Atom *atoms_return = xmalloc (total_atom_count * sizeof *atoms_return);
10225 char **atom_names = xmalloc (total_atom_count * sizeof *atom_names);
10226 static char const xsettings_fmt[] = "_XSETTINGS_S%d";
10227 char xsettings_atom_name[sizeof xsettings_fmt - 2
10228 + INT_STRLEN_BOUND (int)];
10230 for (i = 0; i < atom_count; i++)
10231 atom_names[i] = (char *) atom_refs[i].name;
10233 /* Build _XSETTINGS_SN atom name */
10234 sprintf (xsettings_atom_name, xsettings_fmt,
10235 XScreenNumberOfScreen (dpyinfo->screen));
10236 atom_names[i] = xsettings_atom_name;
10238 XInternAtoms (dpyinfo->display, atom_names, total_atom_count,
10239 False, atoms_return);
10241 for (i = 0; i < atom_count; i++)
10242 *(Atom *) ((char *) dpyinfo + atom_refs[i].offset) = atoms_return[i];
10244 /* Manual copy of last atom */
10245 dpyinfo->Xatom_xsettings_sel = atoms_return[i];
10247 xfree (atom_names);
10248 xfree (atoms_return);
10251 dpyinfo->x_dnd_atoms_size = 8;
10252 dpyinfo->x_dnd_atoms = xmalloc (sizeof *dpyinfo->x_dnd_atoms
10253 * dpyinfo->x_dnd_atoms_size);
10255 connection = ConnectionNumber (dpyinfo->display);
10256 dpyinfo->connection = connection;
10257 dpyinfo->gray
10258 = XCreatePixmapFromBitmapData (dpyinfo->display, dpyinfo->root_window,
10259 gray_bits, gray_width, gray_height,
10260 1, 0, 1);
10262 #ifdef HAVE_X_I18N
10263 xim_initialize (dpyinfo, resource_name);
10264 #endif
10266 xsettings_initialize (dpyinfo);
10268 /* This is only needed for distinguishing keyboard and process input. */
10269 if (connection != 0)
10270 add_keyboard_wait_descriptor (connection);
10272 #ifdef F_SETOWN
10273 fcntl (connection, F_SETOWN, getpid ());
10274 #endif /* ! defined (F_SETOWN) */
10276 if (interrupt_input)
10277 init_sigio (connection);
10279 #ifdef USE_LUCID
10281 XrmValue d, fr, to;
10282 Font font;
10284 dpy = dpyinfo->display;
10285 d.addr = (XPointer)&dpy;
10286 d.size = sizeof (Display *);
10287 fr.addr = XtDefaultFont;
10288 fr.size = sizeof (XtDefaultFont);
10289 to.size = sizeof (Font *);
10290 to.addr = (XPointer)&font;
10291 x_catch_errors (dpy);
10292 if (!XtCallConverter (dpy, XtCvtStringToFont, &d, 1, &fr, &to, NULL))
10293 emacs_abort ();
10294 if (x_had_errors_p (dpy) || !XQueryFont (dpy, font))
10295 XrmPutLineResource (&xrdb, "Emacs.dialog.*.font: 9x15");
10296 x_uncatch_errors ();
10298 #endif
10300 /* See if we should run in synchronous mode. This is useful
10301 for debugging X code. */
10303 Lisp_Object value;
10304 value = display_x_get_resource (dpyinfo,
10305 build_string ("synchronous"),
10306 build_string ("Synchronous"),
10307 Qnil, Qnil);
10308 if (STRINGP (value)
10309 && (!strcmp (SSDATA (value), "true")
10310 || !strcmp (SSDATA (value), "on")))
10311 XSynchronize (dpyinfo->display, True);
10315 Lisp_Object value;
10316 value = display_x_get_resource (dpyinfo,
10317 build_string ("useXIM"),
10318 build_string ("UseXIM"),
10319 Qnil, Qnil);
10320 #ifdef USE_XIM
10321 if (STRINGP (value)
10322 && (!strcmp (SSDATA (value), "false")
10323 || !strcmp (SSDATA (value), "off")))
10324 use_xim = 0;
10325 #else
10326 if (STRINGP (value)
10327 && (!strcmp (SSDATA (value), "true")
10328 || !strcmp (SSDATA (value), "on")))
10329 use_xim = 1;
10330 #endif
10333 #ifdef HAVE_X_SM
10334 /* Only do this for the very first display in the Emacs session.
10335 Ignore X session management when Emacs was first started on a
10336 tty. */
10337 if (terminal->id == 1)
10338 x_session_initialize (dpyinfo);
10339 #endif
10341 unblock_input ();
10343 return dpyinfo;
10346 /* Get rid of display DPYINFO, deleting all frames on it,
10347 and without sending any more commands to the X server. */
10349 static void
10350 x_delete_display (struct x_display_info *dpyinfo)
10352 struct terminal *t;
10354 /* Close all frames and delete the generic struct terminal for this
10355 X display. */
10356 for (t = terminal_list; t; t = t->next_terminal)
10357 if (t->type == output_x_window && t->display_info.x == dpyinfo)
10359 #ifdef HAVE_X_SM
10360 /* Close X session management when we close its display. */
10361 if (t->id == 1 && x_session_have_connection ())
10362 x_session_close ();
10363 #endif
10364 delete_terminal (t);
10365 break;
10368 delete_keyboard_wait_descriptor (dpyinfo->connection);
10370 /* Discard this display from x_display_name_list and x_display_list.
10371 We can't use Fdelq because that can quit. */
10372 if (! NILP (x_display_name_list)
10373 && EQ (XCAR (x_display_name_list), dpyinfo->name_list_element))
10374 x_display_name_list = XCDR (x_display_name_list);
10375 else
10377 Lisp_Object tail;
10379 tail = x_display_name_list;
10380 while (CONSP (tail) && CONSP (XCDR (tail)))
10382 if (EQ (XCAR (XCDR (tail)), dpyinfo->name_list_element))
10384 XSETCDR (tail, XCDR (XCDR (tail)));
10385 break;
10387 tail = XCDR (tail);
10391 if (next_noop_dpyinfo == dpyinfo)
10392 next_noop_dpyinfo = dpyinfo->next;
10394 if (x_display_list == dpyinfo)
10395 x_display_list = dpyinfo->next;
10396 else
10398 struct x_display_info *tail;
10400 for (tail = x_display_list; tail; tail = tail->next)
10401 if (tail->next == dpyinfo)
10402 tail->next = tail->next->next;
10405 xfree (dpyinfo->x_id_name);
10406 xfree (dpyinfo->x_dnd_atoms);
10407 xfree (dpyinfo->color_cells);
10408 xfree (dpyinfo);
10411 #ifdef USE_X_TOOLKIT
10413 /* Atimer callback function for TIMER. Called every 0.1s to process
10414 Xt timeouts, if needed. We must avoid calling XtAppPending as
10415 much as possible because that function does an implicit XFlush
10416 that slows us down. */
10418 static void
10419 x_process_timeouts (struct atimer *timer)
10421 block_input ();
10422 x_timeout_atimer_activated_flag = 0;
10423 if (toolkit_scroll_bar_interaction || popup_activated ())
10425 while (XtAppPending (Xt_app_con) & XtIMTimer)
10426 XtAppProcessEvent (Xt_app_con, XtIMTimer);
10427 /* Reactivate the atimer for next time. */
10428 x_activate_timeout_atimer ();
10430 unblock_input ();
10433 /* Install an asynchronous timer that processes Xt timeout events
10434 every 0.1s as long as either `toolkit_scroll_bar_interaction' or
10435 `popup_activated_flag' (in xmenu.c) is set. Make sure to call this
10436 function whenever these variables are set. This is necessary
10437 because some widget sets use timeouts internally, for example the
10438 LessTif menu bar, or the Xaw3d scroll bar. When Xt timeouts aren't
10439 processed, these widgets don't behave normally. */
10441 void
10442 x_activate_timeout_atimer (void)
10444 block_input ();
10445 if (!x_timeout_atimer_activated_flag)
10447 EMACS_TIME interval = make_emacs_time (0, 100 * 1000 * 1000);
10448 start_atimer (ATIMER_RELATIVE, interval, x_process_timeouts, 0);
10449 x_timeout_atimer_activated_flag = 1;
10451 unblock_input ();
10454 #endif /* USE_X_TOOLKIT */
10457 /* Set up use of X before we make the first connection. */
10459 static struct redisplay_interface x_redisplay_interface =
10461 x_frame_parm_handlers,
10462 x_produce_glyphs,
10463 x_write_glyphs,
10464 x_insert_glyphs,
10465 x_clear_end_of_line,
10466 x_scroll_run,
10467 x_after_update_window_line,
10468 x_update_window_begin,
10469 x_update_window_end,
10470 x_cursor_to,
10471 x_flush,
10472 #ifdef XFlush
10473 x_flush,
10474 #else
10475 0, /* flush_display_optional */
10476 #endif
10477 x_clear_window_mouse_face,
10478 x_get_glyph_overhangs,
10479 x_fix_overlapping_area,
10480 x_draw_fringe_bitmap,
10481 0, /* define_fringe_bitmap */
10482 0, /* destroy_fringe_bitmap */
10483 x_compute_glyph_string_overhangs,
10484 x_draw_glyph_string,
10485 x_define_frame_cursor,
10486 x_clear_frame_area,
10487 x_draw_window_cursor,
10488 x_draw_vertical_window_border,
10489 x_shift_glyphs_for_insert
10493 /* This function is called when the last frame on a display is deleted. */
10494 void
10495 x_delete_terminal (struct terminal *terminal)
10497 struct x_display_info *dpyinfo = terminal->display_info.x;
10499 /* Protect against recursive calls. delete_frame in
10500 delete_terminal calls us back when it deletes our last frame. */
10501 if (!terminal->name)
10502 return;
10504 block_input ();
10505 #ifdef HAVE_X_I18N
10506 /* We must close our connection to the XIM server before closing the
10507 X display. */
10508 if (dpyinfo->xim)
10509 xim_close_dpy (dpyinfo);
10510 #endif
10512 /* If called from x_connection_closed, the display may already be closed
10513 and dpyinfo->display was set to 0 to indicate that. */
10514 if (dpyinfo->display)
10516 x_destroy_all_bitmaps (dpyinfo);
10517 XSetCloseDownMode (dpyinfo->display, DestroyAll);
10519 /* Whether or not XCloseDisplay destroys the associated resource
10520 database depends on the version of libX11. To avoid both
10521 crash and memory leak, we dissociate the database from the
10522 display and then destroy dpyinfo->xrdb ourselves.
10524 Unfortunately, the above strategy does not work in some
10525 situations due to a bug in newer versions of libX11: because
10526 XrmSetDatabase doesn't clear the flag XlibDisplayDfltRMDB if
10527 dpy->db is NULL, XCloseDisplay destroys the associated
10528 database whereas it has not been created by XGetDefault
10529 (Bug#21974 in freedesktop.org Bugzilla). As a workaround, we
10530 don't destroy the database here in order to avoid the crash
10531 in the above situations for now, though that may cause memory
10532 leaks in other situations. */
10533 #if 0
10534 #ifdef HAVE_XRMSETDATABASE
10535 XrmSetDatabase (dpyinfo->display, NULL);
10536 #else
10537 dpyinfo->display->db = NULL;
10538 #endif
10539 /* We used to call XrmDestroyDatabase from x_delete_display, but
10540 some older versions of libX11 crash if we call it after
10541 closing all the displays. */
10542 XrmDestroyDatabase (dpyinfo->xrdb);
10543 #endif
10545 #ifdef USE_GTK
10546 xg_display_close (dpyinfo->display);
10547 #else
10548 #ifdef USE_X_TOOLKIT
10549 XtCloseDisplay (dpyinfo->display);
10550 #else
10551 XCloseDisplay (dpyinfo->display);
10552 #endif
10553 #endif /* ! USE_GTK */
10556 /* Mark as dead. */
10557 dpyinfo->display = NULL;
10558 x_delete_display (dpyinfo);
10559 unblock_input ();
10562 /* Create a struct terminal, initialize it with the X11 specific
10563 functions and make DISPLAY->TERMINAL point to it. */
10565 static struct terminal *
10566 x_create_terminal (struct x_display_info *dpyinfo)
10568 struct terminal *terminal;
10570 terminal = create_terminal ();
10572 terminal->type = output_x_window;
10573 terminal->display_info.x = dpyinfo;
10574 dpyinfo->terminal = terminal;
10576 /* kboard is initialized in x_term_init. */
10578 terminal->clear_frame_hook = x_clear_frame;
10579 terminal->ins_del_lines_hook = x_ins_del_lines;
10580 terminal->delete_glyphs_hook = x_delete_glyphs;
10581 terminal->ring_bell_hook = XTring_bell;
10582 terminal->toggle_invisible_pointer_hook = XTtoggle_invisible_pointer;
10583 terminal->reset_terminal_modes_hook = XTreset_terminal_modes;
10584 terminal->set_terminal_modes_hook = XTset_terminal_modes;
10585 terminal->update_begin_hook = x_update_begin;
10586 terminal->update_end_hook = x_update_end;
10587 terminal->set_terminal_window_hook = XTset_terminal_window;
10588 terminal->read_socket_hook = XTread_socket;
10589 terminal->frame_up_to_date_hook = XTframe_up_to_date;
10590 terminal->mouse_position_hook = XTmouse_position;
10591 terminal->frame_rehighlight_hook = XTframe_rehighlight;
10592 terminal->frame_raise_lower_hook = XTframe_raise_lower;
10593 terminal->fullscreen_hook = XTfullscreen_hook;
10594 terminal->set_vertical_scroll_bar_hook = XTset_vertical_scroll_bar;
10595 terminal->condemn_scroll_bars_hook = XTcondemn_scroll_bars;
10596 terminal->redeem_scroll_bar_hook = XTredeem_scroll_bar;
10597 terminal->judge_scroll_bars_hook = XTjudge_scroll_bars;
10599 terminal->delete_frame_hook = x_destroy_window;
10600 terminal->delete_terminal_hook = x_delete_terminal;
10602 terminal->rif = &x_redisplay_interface;
10603 terminal->scroll_region_ok = 1; /* We'll scroll partial frames. */
10604 terminal->char_ins_del_ok = 1;
10605 terminal->line_ins_del_ok = 1; /* We'll just blt 'em. */
10606 terminal->fast_clear_end_of_line = 1; /* X does this well. */
10607 terminal->memory_below_frame = 0; /* We don't remember what scrolls
10608 off the bottom. */
10610 return terminal;
10613 void
10614 x_initialize (void)
10616 baud_rate = 19200;
10618 x_noop_count = 0;
10619 last_tool_bar_item = -1;
10620 any_help_event_p = 0;
10621 ignore_next_mouse_click_timeout = 0;
10623 #ifdef USE_GTK
10624 current_count = -1;
10625 #endif
10627 /* Try to use interrupt input; if we can't, then start polling. */
10628 Fset_input_interrupt_mode (Qt);
10630 #ifdef USE_X_TOOLKIT
10631 XtToolkitInitialize ();
10633 Xt_app_con = XtCreateApplicationContext ();
10635 /* Register a converter from strings to pixels, which uses
10636 Emacs' color allocation infrastructure. */
10637 XtAppSetTypeConverter (Xt_app_con,
10638 XtRString, XtRPixel, cvt_string_to_pixel,
10639 cvt_string_to_pixel_args,
10640 XtNumber (cvt_string_to_pixel_args),
10641 XtCacheByDisplay, cvt_pixel_dtor);
10643 XtAppSetFallbackResources (Xt_app_con, Xt_default_resources);
10644 #endif
10646 #ifdef USE_TOOLKIT_SCROLL_BARS
10647 #ifndef USE_GTK
10648 xaw3d_arrow_scroll = False;
10649 xaw3d_pick_top = True;
10650 #endif
10651 #endif
10653 pending_autoraise_frame = 0;
10654 pending_event_wait.f = 0;
10655 pending_event_wait.eventtype = 0;
10657 /* Note that there is no real way portable across R3/R4 to get the
10658 original error handler. */
10659 XSetErrorHandler (x_error_handler);
10660 XSetIOErrorHandler (x_io_error_quitter);
10664 void
10665 syms_of_xterm (void)
10667 x_error_message = NULL;
10669 staticpro (&x_display_name_list);
10670 x_display_name_list = Qnil;
10672 staticpro (&last_mouse_scroll_bar);
10673 last_mouse_scroll_bar = Qnil;
10675 DEFSYM (Qvendor_specific_keysyms, "vendor-specific-keysyms");
10676 DEFSYM (Qlatin_1, "latin-1");
10678 #ifdef USE_GTK
10679 xg_default_icon_file = build_pure_c_string ("icons/hicolor/scalable/apps/emacs.svg");
10680 staticpro (&xg_default_icon_file);
10682 DEFSYM (Qx_gtk_map_stock, "x-gtk-map-stock");
10683 #endif
10685 DEFVAR_BOOL ("x-use-underline-position-properties",
10686 x_use_underline_position_properties,
10687 doc: /* Non-nil means make use of UNDERLINE_POSITION font properties.
10688 A value of nil means ignore them. If you encounter fonts with bogus
10689 UNDERLINE_POSITION font properties, for example 7x13 on XFree prior
10690 to 4.1, set this to nil. You can also use `underline-minimum-offset'
10691 to override the font's UNDERLINE_POSITION for small font display
10692 sizes. */);
10693 x_use_underline_position_properties = 1;
10695 DEFVAR_BOOL ("x-underline-at-descent-line",
10696 x_underline_at_descent_line,
10697 doc: /* Non-nil means to draw the underline at the same place as the descent line.
10698 A value of nil means to draw the underline according to the value of the
10699 variable `x-use-underline-position-properties', which is usually at the
10700 baseline level. The default value is nil. */);
10701 x_underline_at_descent_line = 0;
10703 DEFVAR_BOOL ("x-mouse-click-focus-ignore-position",
10704 x_mouse_click_focus_ignore_position,
10705 doc: /* Non-nil means that a mouse click to focus a frame does not move point.
10706 This variable is only used when the window manager requires that you
10707 click on a frame to select it (give it focus). In that case, a value
10708 of nil, means that the selected window and cursor position changes to
10709 reflect the mouse click position, while a non-nil value means that the
10710 selected window or cursor position is preserved. */);
10711 x_mouse_click_focus_ignore_position = 0;
10713 DEFVAR_LISP ("x-toolkit-scroll-bars", Vx_toolkit_scroll_bars,
10714 doc: /* Which toolkit scroll bars Emacs uses, if any.
10715 A value of nil means Emacs doesn't use toolkit scroll bars.
10716 With the X Window system, the value is a symbol describing the
10717 X toolkit. Possible values are: gtk, motif, xaw, or xaw3d.
10718 With MS Windows or Nextstep, the value is t. */);
10719 #ifdef USE_TOOLKIT_SCROLL_BARS
10720 #ifdef USE_MOTIF
10721 Vx_toolkit_scroll_bars = intern_c_string ("motif");
10722 #elif defined HAVE_XAW3D
10723 Vx_toolkit_scroll_bars = intern_c_string ("xaw3d");
10724 #elif USE_GTK
10725 Vx_toolkit_scroll_bars = intern_c_string ("gtk");
10726 #else
10727 Vx_toolkit_scroll_bars = intern_c_string ("xaw");
10728 #endif
10729 #else
10730 Vx_toolkit_scroll_bars = Qnil;
10731 #endif
10733 staticpro (&last_mouse_motion_frame);
10734 last_mouse_motion_frame = Qnil;
10736 Qmodifier_value = intern_c_string ("modifier-value");
10737 Qalt = intern_c_string ("alt");
10738 Fput (Qalt, Qmodifier_value, make_number (alt_modifier));
10739 Qhyper = intern_c_string ("hyper");
10740 Fput (Qhyper, Qmodifier_value, make_number (hyper_modifier));
10741 Qmeta = intern_c_string ("meta");
10742 Fput (Qmeta, Qmodifier_value, make_number (meta_modifier));
10743 Qsuper = intern_c_string ("super");
10744 Fput (Qsuper, Qmodifier_value, make_number (super_modifier));
10746 DEFVAR_LISP ("x-alt-keysym", Vx_alt_keysym,
10747 doc: /* Which keys Emacs uses for the alt modifier.
10748 This should be one of the symbols `alt', `hyper', `meta', `super'.
10749 For example, `alt' means use the Alt_L and Alt_R keysyms. The default
10750 is nil, which is the same as `alt'. */);
10751 Vx_alt_keysym = Qnil;
10753 DEFVAR_LISP ("x-hyper-keysym", Vx_hyper_keysym,
10754 doc: /* Which keys Emacs uses for the hyper modifier.
10755 This should be one of the symbols `alt', `hyper', `meta', `super'.
10756 For example, `hyper' means use the Hyper_L and Hyper_R keysyms. The
10757 default is nil, which is the same as `hyper'. */);
10758 Vx_hyper_keysym = Qnil;
10760 DEFVAR_LISP ("x-meta-keysym", Vx_meta_keysym,
10761 doc: /* Which keys Emacs uses for the meta modifier.
10762 This should be one of the symbols `alt', `hyper', `meta', `super'.
10763 For example, `meta' means use the Meta_L and Meta_R keysyms. The
10764 default is nil, which is the same as `meta'. */);
10765 Vx_meta_keysym = Qnil;
10767 DEFVAR_LISP ("x-super-keysym", Vx_super_keysym,
10768 doc: /* Which keys Emacs uses for the super modifier.
10769 This should be one of the symbols `alt', `hyper', `meta', `super'.
10770 For example, `super' means use the Super_L and Super_R keysyms. The
10771 default is nil, which is the same as `super'. */);
10772 Vx_super_keysym = Qnil;
10774 DEFVAR_LISP ("x-keysym-table", Vx_keysym_table,
10775 doc: /* Hash table of character codes indexed by X keysym codes. */);
10776 Vx_keysym_table = make_hash_table (hashtest_eql, make_number (900),
10777 make_float (DEFAULT_REHASH_SIZE),
10778 make_float (DEFAULT_REHASH_THRESHOLD),
10779 Qnil);
10782 #endif /* HAVE_X_WINDOWS */