* process.h (PSET): Remove.
[emacs.git] / src / xterm.c
blob118c8767c23e55c72a9e00a67d1f22954fe87d3e
1 /* X Communication module for terminals which understand the X protocol.
3 Copyright (C) 1989, 1993-2012 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 <signal.h>
25 #include <stdio.h>
26 #include <setjmp.h>
28 #ifdef HAVE_X_WINDOWS
30 #include "lisp.h"
31 #include "blockinput.h"
33 /* Need syssignal.h for various externs and definitions that may be required
34 by some configurations for calls to signal later in this source file. */
35 #include "syssignal.h"
37 /* This may include sys/types.h, and that somehow loses
38 if this is not done before the other system files. */
39 #include "xterm.h"
40 #include <X11/cursorfont.h>
42 /* Load sys/types.h if not already loaded.
43 In some systems loading it twice is suicidal. */
44 #ifndef makedev
45 #include <sys/types.h>
46 #endif /* makedev */
48 #include <sys/ioctl.h>
50 #include "systime.h"
52 #include <fcntl.h>
53 #include <errno.h>
54 #include <setjmp.h>
55 #include <sys/stat.h>
56 /* Caused redefinition of DBL_DIG on Netbsd; seems not to be needed. */
57 /* #include <sys/param.h> */
59 #include "charset.h"
60 #include "character.h"
61 #include "coding.h"
62 #include "frame.h"
63 #include "dispextern.h"
64 #include "fontset.h"
65 #include "termhooks.h"
66 #include "termopts.h"
67 #include "termchar.h"
68 #include "emacs-icon.h"
69 #include "disptab.h"
70 #include "buffer.h"
71 #include "window.h"
72 #include "keyboard.h"
73 #include "intervals.h"
74 #include "process.h"
75 #include "atimer.h"
76 #include "keymap.h"
77 #include "font.h"
78 #include "fontset.h"
79 #include "xsettings.h"
80 #include "xgselect.h"
81 #include "sysselect.h"
83 #ifdef USE_X_TOOLKIT
84 #include <X11/Shell.h>
85 #endif
87 #include <unistd.h>
89 #ifdef USE_GTK
90 #include "gtkutil.h"
91 #ifdef HAVE_GTK3
92 #include <X11/Xproto.h>
93 #endif
94 #endif
96 #ifdef USE_LUCID
97 #include "../lwlib/xlwmenu.h"
98 #endif
100 #ifdef USE_X_TOOLKIT
101 #if !defined (NO_EDITRES)
102 #define HACK_EDITRES
103 extern void _XEditResCheckMessages (Widget, XtPointer, XEvent *, Boolean *);
104 #endif /* not NO_EDITRES */
106 /* Include toolkit specific headers for the scroll bar widget. */
108 #ifdef USE_TOOLKIT_SCROLL_BARS
109 #if defined USE_MOTIF
110 #include <Xm/Xm.h> /* for LESSTIF_VERSION */
111 #include <Xm/ScrollBar.h>
112 #else /* !USE_MOTIF i.e. use Xaw */
114 #ifdef HAVE_XAW3D
115 #include <X11/Xaw3d/Simple.h>
116 #include <X11/Xaw3d/Scrollbar.h>
117 #include <X11/Xaw3d/ThreeD.h>
118 #else /* !HAVE_XAW3D */
119 #include <X11/Xaw/Simple.h>
120 #include <X11/Xaw/Scrollbar.h>
121 #endif /* !HAVE_XAW3D */
122 #ifndef XtNpickTop
123 #define XtNpickTop "pickTop"
124 #endif /* !XtNpickTop */
125 #endif /* !USE_MOTIF */
126 #endif /* USE_TOOLKIT_SCROLL_BARS */
128 #endif /* USE_X_TOOLKIT */
130 #ifdef USE_X_TOOLKIT
131 #include "widget.h"
132 #ifndef XtNinitialState
133 #define XtNinitialState "initialState"
134 #endif
135 #endif
137 #include "bitmaps/gray.xbm"
139 /* Default to using XIM if available. */
140 #ifdef USE_XIM
141 int use_xim = 1;
142 #else
143 int use_xim = 0; /* configure --without-xim */
144 #endif
148 /* Non-zero means that a HELP_EVENT has been generated since Emacs
149 start. */
151 static int any_help_event_p;
153 /* Last window where we saw the mouse. Used by mouse-autoselect-window. */
154 static Lisp_Object last_window;
156 /* This is a chain of structures for all the X displays currently in
157 use. */
159 struct x_display_info *x_display_list;
161 /* This is a list of cons cells, each of the form (NAME
162 . FONT-LIST-CACHE), one for each element of x_display_list and in
163 the same order. NAME is the name of the frame. FONT-LIST-CACHE
164 records previous values returned by x-list-fonts. */
166 Lisp_Object x_display_name_list;
168 /* Frame being updated by update_frame. This is declared in term.c.
169 This is set by update_begin and looked at by all the XT functions.
170 It is zero while not inside an update. In that case, the XT
171 functions assume that `selected_frame' is the frame to apply to. */
173 extern struct frame *updating_frame;
175 /* This is a frame waiting to be auto-raised, within XTread_socket. */
177 static struct frame *pending_autoraise_frame;
179 /* This is a frame waiting for an event matching mask, within XTread_socket. */
181 static struct {
182 struct frame *f;
183 int eventtype;
184 } pending_event_wait;
186 #ifdef USE_X_TOOLKIT
187 /* The application context for Xt use. */
188 XtAppContext Xt_app_con;
189 static String Xt_default_resources[] = {0};
191 /* Non-zero means user is interacting with a toolkit scroll bar. */
193 static int toolkit_scroll_bar_interaction;
194 #endif /* USE_X_TOOLKIT */
196 /* Non-zero timeout value means ignore next mouse click if it arrives
197 before that timeout elapses (i.e. as part of the same sequence of
198 events resulting from clicking on a frame to select it). */
200 static unsigned long ignore_next_mouse_click_timeout;
202 /* Mouse movement.
204 Formerly, we used PointerMotionHintMask (in standard_event_mask)
205 so that we would have to call XQueryPointer after each MotionNotify
206 event to ask for another such event. However, this made mouse tracking
207 slow, and there was a bug that made it eventually stop.
209 Simply asking for MotionNotify all the time seems to work better.
211 In order to avoid asking for motion events and then throwing most
212 of them away or busy-polling the server for mouse positions, we ask
213 the server for pointer motion hints. This means that we get only
214 one event per group of mouse movements. "Groups" are delimited by
215 other kinds of events (focus changes and button clicks, for
216 example), or by XQueryPointer calls; when one of these happens, we
217 get another MotionNotify event the next time the mouse moves. This
218 is at least as efficient as getting motion events when mouse
219 tracking is on, and I suspect only negligibly worse when tracking
220 is off. */
222 /* Where the mouse was last time we reported a mouse event. */
224 static XRectangle last_mouse_glyph;
225 static FRAME_PTR last_mouse_glyph_frame;
226 static Lisp_Object last_mouse_press_frame;
228 /* The scroll bar in which the last X motion event occurred.
230 If the last X motion event occurred in a scroll bar, we set this so
231 XTmouse_position can know whether to report a scroll bar motion or
232 an ordinary motion.
234 If the last X motion event didn't occur in a scroll bar, we set
235 this to Qnil, to tell XTmouse_position to return an ordinary motion
236 event. */
238 static Lisp_Object last_mouse_scroll_bar;
240 /* This is a hack. We would really prefer that XTmouse_position would
241 return the time associated with the position it returns, but there
242 doesn't seem to be any way to wrest the time-stamp from the server
243 along with the position query. So, we just keep track of the time
244 of the last movement we received, and return that in hopes that
245 it's somewhat accurate. */
247 static Time last_mouse_movement_time;
249 /* Time for last user interaction as returned in X events. */
251 static Time last_user_time;
253 /* Incremented by XTread_socket whenever it really tries to read
254 events. */
256 static int volatile input_signal_count;
258 /* Used locally within XTread_socket. */
260 static int x_noop_count;
262 static Lisp_Object Qalt, Qhyper, Qmeta, Qsuper, Qmodifier_value;
264 static Lisp_Object Qvendor_specific_keysyms;
265 static Lisp_Object Qlatin_1;
267 #ifdef USE_GTK
268 /* The name of the Emacs icon file. */
269 static Lisp_Object xg_default_icon_file;
271 /* Used in gtkutil.c. */
272 Lisp_Object Qx_gtk_map_stock;
273 #endif
275 /* Some functions take this as char *, not const char *. */
276 static char emacs_class[] = EMACS_CLASS;
278 enum xembed_info
280 XEMBED_MAPPED = 1 << 0
283 enum xembed_message
285 XEMBED_EMBEDDED_NOTIFY = 0,
286 XEMBED_WINDOW_ACTIVATE = 1,
287 XEMBED_WINDOW_DEACTIVATE = 2,
288 XEMBED_REQUEST_FOCUS = 3,
289 XEMBED_FOCUS_IN = 4,
290 XEMBED_FOCUS_OUT = 5,
291 XEMBED_FOCUS_NEXT = 6,
292 XEMBED_FOCUS_PREV = 7,
294 XEMBED_MODALITY_ON = 10,
295 XEMBED_MODALITY_OFF = 11,
296 XEMBED_REGISTER_ACCELERATOR = 12,
297 XEMBED_UNREGISTER_ACCELERATOR = 13,
298 XEMBED_ACTIVATE_ACCELERATOR = 14
301 /* Used in x_flush. */
303 static int x_alloc_nearest_color_1 (Display *, Colormap, XColor *);
304 static void x_set_window_size_1 (struct frame *, int, int, int);
305 static void x_raise_frame (struct frame *);
306 static void x_lower_frame (struct frame *);
307 static const XColor *x_color_cells (Display *, int *);
308 static void x_update_window_end (struct window *, int, int);
310 static int x_io_error_quitter (Display *);
311 static struct terminal *x_create_terminal (struct x_display_info *);
312 void x_delete_terminal (struct terminal *);
313 static void x_update_end (struct frame *);
314 static void XTframe_up_to_date (struct frame *);
315 static void XTset_terminal_modes (struct terminal *);
316 static void XTreset_terminal_modes (struct terminal *);
317 static void x_clear_frame (struct frame *);
318 static _Noreturn void x_ins_del_lines (struct frame *, int, int);
319 static void frame_highlight (struct frame *);
320 static void frame_unhighlight (struct frame *);
321 static void x_new_focus_frame (struct x_display_info *, struct frame *);
322 static void x_focus_changed (int, int, struct x_display_info *,
323 struct frame *, struct input_event *);
324 static void x_detect_focus_change (struct x_display_info *,
325 XEvent *, struct input_event *);
326 static void XTframe_rehighlight (struct frame *);
327 static void x_frame_rehighlight (struct x_display_info *);
328 static void x_draw_hollow_cursor (struct window *, struct glyph_row *);
329 static void x_draw_bar_cursor (struct window *, struct glyph_row *, int,
330 enum text_cursor_kinds);
332 static void x_clip_to_row (struct window *, struct glyph_row *, int, GC);
333 static void x_flush (struct frame *f);
334 static void x_update_begin (struct frame *);
335 static void x_update_window_begin (struct window *);
336 static void x_after_update_window_line (struct glyph_row *);
337 static struct scroll_bar *x_window_to_scroll_bar (Display *, Window);
338 static void x_scroll_bar_report_motion (struct frame **, Lisp_Object *,
339 enum scroll_bar_part *,
340 Lisp_Object *, Lisp_Object *,
341 Time *);
342 static int x_handle_net_wm_state (struct frame *, XPropertyEvent *);
343 static void x_check_fullscreen (struct frame *);
344 static void x_check_expected_move (struct frame *, int, int);
345 static void x_sync_with_move (struct frame *, int, int, int);
346 static int handle_one_xevent (struct x_display_info *, XEvent *,
347 int *, struct input_event *);
348 #ifdef USE_GTK
349 static int x_dispatch_event (XEvent *, Display *);
350 #endif
351 /* Don't declare this _Noreturn because we want no
352 interference with debugging failing X calls. */
353 static void x_connection_closed (Display *, const char *);
354 static void x_wm_set_window_state (struct frame *, int);
355 static void x_wm_set_icon_pixmap (struct frame *, ptrdiff_t);
356 static void x_initialize (void);
359 /* Flush display of frame F, or of all frames if F is null. */
361 static void
362 x_flush (struct frame *f)
364 /* Don't call XFlush when it is not safe to redisplay; the X
365 connection may be broken. */
366 if (!NILP (Vinhibit_redisplay))
367 return;
369 BLOCK_INPUT;
370 if (f == NULL)
372 Lisp_Object rest, frame;
373 FOR_EACH_FRAME (rest, frame)
374 if (FRAME_X_P (XFRAME (frame)))
375 x_flush (XFRAME (frame));
377 else if (FRAME_X_P (f))
378 XFlush (FRAME_X_DISPLAY (f));
379 UNBLOCK_INPUT;
383 /* Remove calls to XFlush by defining XFlush to an empty replacement.
384 Calls to XFlush should be unnecessary because the X output buffer
385 is flushed automatically as needed by calls to XPending,
386 XNextEvent, or XWindowEvent according to the XFlush man page.
387 XTread_socket calls XPending. Removing XFlush improves
388 performance. */
390 #define XFlush(DISPLAY) (void) 0
393 /***********************************************************************
394 Debugging
395 ***********************************************************************/
397 #if 0
399 /* This is a function useful for recording debugging information about
400 the sequence of occurrences in this file. */
402 struct record
404 char *locus;
405 int type;
408 struct record event_record[100];
410 int event_record_index;
412 void
413 record_event (char *locus, int type)
415 if (event_record_index == sizeof (event_record) / sizeof (struct record))
416 event_record_index = 0;
418 event_record[event_record_index].locus = locus;
419 event_record[event_record_index].type = type;
420 event_record_index++;
423 #endif /* 0 */
427 /* Return the struct x_display_info corresponding to DPY. */
429 struct x_display_info *
430 x_display_info_for_display (Display *dpy)
432 struct x_display_info *dpyinfo;
434 for (dpyinfo = x_display_list; dpyinfo; dpyinfo = dpyinfo->next)
435 if (dpyinfo->display == dpy)
436 return dpyinfo;
438 return 0;
441 static Window
442 x_find_topmost_parent (struct frame *f)
444 struct x_output *x = f->output_data.x;
445 Window win = None, wi = x->parent_desc;
446 Display *dpy = FRAME_X_DISPLAY (f);
448 while (wi != FRAME_X_DISPLAY_INFO (f)->root_window)
450 Window root;
451 Window *children;
452 unsigned int nchildren;
454 win = wi;
455 XQueryTree (dpy, win, &root, &wi, &children, &nchildren);
456 XFree (children);
459 return win;
462 #define OPAQUE 0xffffffff
464 void
465 x_set_frame_alpha (struct frame *f)
467 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
468 Display *dpy = FRAME_X_DISPLAY (f);
469 Window win = FRAME_OUTER_WINDOW (f);
470 double alpha = 1.0;
471 double alpha_min = 1.0;
472 unsigned long opac;
473 Window parent;
475 if (dpyinfo->x_highlight_frame == f)
476 alpha = f->alpha[0];
477 else
478 alpha = f->alpha[1];
480 if (FLOATP (Vframe_alpha_lower_limit))
481 alpha_min = XFLOAT_DATA (Vframe_alpha_lower_limit);
482 else if (INTEGERP (Vframe_alpha_lower_limit))
483 alpha_min = (XINT (Vframe_alpha_lower_limit)) / 100.0;
485 if (alpha < 0.0)
486 return;
487 else if (alpha > 1.0)
488 alpha = 1.0;
489 else if (0.0 <= alpha && alpha < alpha_min && alpha_min <= 1.0)
490 alpha = alpha_min;
492 opac = alpha * OPAQUE;
494 x_catch_errors (dpy);
496 /* If there is a parent from the window manager, put the property there
497 also, to work around broken window managers that fail to do that.
498 Do this unconditionally as this function is called on reparent when
499 alpha has not changed on the frame. */
501 parent = x_find_topmost_parent (f);
502 if (parent != None)
503 XChangeProperty (dpy, parent, dpyinfo->Xatom_net_wm_window_opacity,
504 XA_CARDINAL, 32, PropModeReplace,
505 (unsigned char *) &opac, 1L);
507 /* return unless necessary */
509 unsigned char *data;
510 Atom actual;
511 int rc, format;
512 unsigned long n, left;
514 rc = XGetWindowProperty (dpy, win, dpyinfo->Xatom_net_wm_window_opacity,
515 0L, 1L, False, XA_CARDINAL,
516 &actual, &format, &n, &left,
517 &data);
519 if (rc == Success && actual != None)
521 unsigned long value = *(unsigned long *)data;
522 XFree (data);
523 if (value == opac)
525 x_uncatch_errors ();
526 return;
531 XChangeProperty (dpy, win, dpyinfo->Xatom_net_wm_window_opacity,
532 XA_CARDINAL, 32, PropModeReplace,
533 (unsigned char *) &opac, 1L);
534 x_uncatch_errors ();
538 x_display_pixel_height (struct x_display_info *dpyinfo)
540 return HeightOfScreen (dpyinfo->screen);
544 x_display_pixel_width (struct x_display_info *dpyinfo)
546 return WidthOfScreen (dpyinfo->screen);
550 /***********************************************************************
551 Starting and ending an update
552 ***********************************************************************/
554 /* Start an update of frame F. This function is installed as a hook
555 for update_begin, i.e. it is called when update_begin is called.
556 This function is called prior to calls to x_update_window_begin for
557 each window being updated. Currently, there is nothing to do here
558 because all interesting stuff is done on a window basis. */
560 static void
561 x_update_begin (struct frame *f)
563 /* Nothing to do. */
567 /* Start update of window W. Set the global variable updated_window
568 to the window being updated and set output_cursor to the cursor
569 position of W. */
571 static void
572 x_update_window_begin (struct window *w)
574 struct frame *f = XFRAME (WINDOW_FRAME (w));
575 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
577 updated_window = w;
578 set_output_cursor (&w->cursor);
580 BLOCK_INPUT;
582 if (f == hlinfo->mouse_face_mouse_frame)
584 /* Don't do highlighting for mouse motion during the update. */
585 hlinfo->mouse_face_defer = 1;
587 /* If F needs to be redrawn, simply forget about any prior mouse
588 highlighting. */
589 if (FRAME_GARBAGED_P (f))
590 hlinfo->mouse_face_window = Qnil;
593 UNBLOCK_INPUT;
597 /* Draw a vertical window border from (x,y0) to (x,y1) */
599 static void
600 x_draw_vertical_window_border (struct window *w, int x, int y0, int y1)
602 struct frame *f = XFRAME (WINDOW_FRAME (w));
603 struct face *face;
605 face = FACE_FROM_ID (f, VERTICAL_BORDER_FACE_ID);
606 if (face)
607 XSetForeground (FRAME_X_DISPLAY (f), f->output_data.x->normal_gc,
608 face->foreground);
610 XDrawLine (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
611 f->output_data.x->normal_gc, x, y0, x, y1);
614 /* End update of window W (which is equal to updated_window).
616 Draw vertical borders between horizontally adjacent windows, and
617 display W's cursor if CURSOR_ON_P is non-zero.
619 MOUSE_FACE_OVERWRITTEN_P non-zero means that some row containing
620 glyphs in mouse-face were overwritten. In that case we have to
621 make sure that the mouse-highlight is properly redrawn.
623 W may be a menu bar pseudo-window in case we don't have X toolkit
624 support. Such windows don't have a cursor, so don't display it
625 here. */
627 static void
628 x_update_window_end (struct window *w, int cursor_on_p, int mouse_face_overwritten_p)
630 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (XFRAME (w->frame));
632 if (!w->pseudo_window_p)
634 BLOCK_INPUT;
636 if (cursor_on_p)
637 display_and_set_cursor (w, 1, output_cursor.hpos,
638 output_cursor.vpos,
639 output_cursor.x, output_cursor.y);
641 if (draw_window_fringes (w, 1))
642 x_draw_vertical_border (w);
644 UNBLOCK_INPUT;
647 /* If a row with mouse-face was overwritten, arrange for
648 XTframe_up_to_date to redisplay the mouse highlight. */
649 if (mouse_face_overwritten_p)
651 hlinfo->mouse_face_beg_row = hlinfo->mouse_face_beg_col = -1;
652 hlinfo->mouse_face_end_row = hlinfo->mouse_face_end_col = -1;
653 hlinfo->mouse_face_window = Qnil;
656 updated_window = NULL;
660 /* End update of frame F. This function is installed as a hook in
661 update_end. */
663 static void
664 x_update_end (struct frame *f)
666 /* Mouse highlight may be displayed again. */
667 MOUSE_HL_INFO (f)->mouse_face_defer = 0;
669 #ifndef XFlush
670 BLOCK_INPUT;
671 XFlush (FRAME_X_DISPLAY (f));
672 UNBLOCK_INPUT;
673 #endif
677 /* This function is called from various places in xdisp.c whenever a
678 complete update has been performed. The global variable
679 updated_window is not available here. */
681 static void
682 XTframe_up_to_date (struct frame *f)
684 if (FRAME_X_P (f))
686 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
688 if (hlinfo->mouse_face_deferred_gc
689 || f == hlinfo->mouse_face_mouse_frame)
691 BLOCK_INPUT;
692 if (hlinfo->mouse_face_mouse_frame)
693 note_mouse_highlight (hlinfo->mouse_face_mouse_frame,
694 hlinfo->mouse_face_mouse_x,
695 hlinfo->mouse_face_mouse_y);
696 hlinfo->mouse_face_deferred_gc = 0;
697 UNBLOCK_INPUT;
703 /* Draw truncation mark bitmaps, continuation mark bitmaps, overlay
704 arrow bitmaps, or clear the fringes if no bitmaps are required
705 before DESIRED_ROW is made current. The window being updated is
706 found in updated_window. This function It is called from
707 update_window_line only if it is known that there are differences
708 between bitmaps to be drawn between current row and DESIRED_ROW. */
710 static void
711 x_after_update_window_line (struct glyph_row *desired_row)
713 struct window *w = updated_window;
714 struct frame *f;
715 int width, height;
717 eassert (w);
719 if (!desired_row->mode_line_p && !w->pseudo_window_p)
720 desired_row->redraw_fringe_bitmaps_p = 1;
722 /* When a window has disappeared, make sure that no rest of
723 full-width rows stays visible in the internal border. Could
724 check here if updated_window is the leftmost/rightmost window,
725 but I guess it's not worth doing since vertically split windows
726 are almost never used, internal border is rarely set, and the
727 overhead is very small. */
728 if (windows_or_buffers_changed
729 && desired_row->full_width_p
730 && (f = XFRAME (w->frame),
731 width = FRAME_INTERNAL_BORDER_WIDTH (f),
732 width != 0)
733 && (height = desired_row->visible_height,
734 height > 0))
736 int y = WINDOW_TO_FRAME_PIXEL_Y (w, max (0, desired_row->y));
738 BLOCK_INPUT;
739 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
740 0, y, width, height, False);
741 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
742 FRAME_PIXEL_WIDTH (f) - width,
743 y, width, height, False);
744 UNBLOCK_INPUT;
748 static void
749 x_draw_fringe_bitmap (struct window *w, struct glyph_row *row, struct draw_fringe_bitmap_params *p)
751 struct frame *f = XFRAME (WINDOW_FRAME (w));
752 Display *display = FRAME_X_DISPLAY (f);
753 Window window = FRAME_X_WINDOW (f);
754 GC gc = f->output_data.x->normal_gc;
755 struct face *face = p->face;
757 /* Must clip because of partially visible lines. */
758 x_clip_to_row (w, row, -1, gc);
760 if (!p->overlay_p)
762 int bx = p->bx, by = p->by, nx = p->nx, ny = p->ny;
764 /* In case the same realized face is used for fringes and
765 for something displayed in the text (e.g. face `region' on
766 mono-displays, the fill style may have been changed to
767 FillSolid in x_draw_glyph_string_background. */
768 if (face->stipple)
769 XSetFillStyle (display, face->gc, FillOpaqueStippled);
770 else
771 XSetForeground (display, face->gc, face->background);
773 #ifdef USE_TOOLKIT_SCROLL_BARS
774 /* If the fringe is adjacent to the left (right) scroll bar of a
775 leftmost (rightmost, respectively) window, then extend its
776 background to the gap between the fringe and the bar. */
777 if ((WINDOW_LEFTMOST_P (w)
778 && WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w))
779 || (WINDOW_RIGHTMOST_P (w)
780 && WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w)))
782 int sb_width = WINDOW_CONFIG_SCROLL_BAR_WIDTH (w);
784 if (sb_width > 0)
786 int bar_area_x = WINDOW_SCROLL_BAR_AREA_X (w);
787 int bar_area_width = (WINDOW_CONFIG_SCROLL_BAR_COLS (w)
788 * FRAME_COLUMN_WIDTH (f));
790 if (bx < 0)
792 /* Bitmap fills the fringe. */
793 if (bar_area_x + bar_area_width == p->x)
794 bx = bar_area_x + sb_width;
795 else if (p->x + p->wd == bar_area_x)
796 bx = bar_area_x;
797 if (bx >= 0)
799 int header_line_height = WINDOW_HEADER_LINE_HEIGHT (w);
801 nx = bar_area_width - sb_width;
802 by = WINDOW_TO_FRAME_PIXEL_Y (w, max (header_line_height,
803 row->y));
804 ny = row->visible_height;
807 else
809 if (bar_area_x + bar_area_width == bx)
811 bx = bar_area_x + sb_width;
812 nx += bar_area_width - sb_width;
814 else if (bx + nx == bar_area_x)
815 nx += bar_area_width - sb_width;
819 #endif
820 if (bx >= 0 && nx > 0)
821 XFillRectangle (display, window, face->gc, bx, by, nx, ny);
823 if (!face->stipple)
824 XSetForeground (display, face->gc, face->foreground);
827 if (p->which)
829 char *bits;
830 Pixmap pixmap, clipmask = (Pixmap) 0;
831 int depth = DefaultDepthOfScreen (FRAME_X_SCREEN (f));
832 XGCValues gcv;
834 if (p->wd > 8)
835 bits = (char *) (p->bits + p->dh);
836 else
837 bits = (char *) p->bits + p->dh;
839 /* Draw the bitmap. I believe these small pixmaps can be cached
840 by the server. */
841 pixmap = XCreatePixmapFromBitmapData (display, window, bits, p->wd, p->h,
842 (p->cursor_p
843 ? (p->overlay_p ? face->background
844 : f->output_data.x->cursor_pixel)
845 : face->foreground),
846 face->background, depth);
848 if (p->overlay_p)
850 clipmask = XCreatePixmapFromBitmapData (display,
851 FRAME_X_DISPLAY_INFO (f)->root_window,
852 bits, p->wd, p->h,
853 1, 0, 1);
854 gcv.clip_mask = clipmask;
855 gcv.clip_x_origin = p->x;
856 gcv.clip_y_origin = p->y;
857 XChangeGC (display, gc, GCClipMask | GCClipXOrigin | GCClipYOrigin, &gcv);
860 XCopyArea (display, pixmap, window, gc, 0, 0,
861 p->wd, p->h, p->x, p->y);
862 XFreePixmap (display, pixmap);
864 if (p->overlay_p)
866 gcv.clip_mask = (Pixmap) 0;
867 XChangeGC (display, gc, GCClipMask, &gcv);
868 XFreePixmap (display, clipmask);
872 XSetClipMask (display, gc, None);
877 /* This is called when starting Emacs and when restarting after
878 suspend. When starting Emacs, no X window is mapped. And nothing
879 must be done to Emacs's own window if it is suspended (though that
880 rarely happens). */
882 static void
883 XTset_terminal_modes (struct terminal *terminal)
887 /* This is called when exiting or suspending Emacs. Exiting will make
888 the X-windows go away, and suspending requires no action. */
890 static void
891 XTreset_terminal_modes (struct terminal *terminal)
896 /***********************************************************************
897 Glyph display
898 ***********************************************************************/
902 static void x_set_glyph_string_clipping (struct glyph_string *);
903 static void x_set_glyph_string_gc (struct glyph_string *);
904 static void x_draw_glyph_string_background (struct glyph_string *,
905 int);
906 static void x_draw_glyph_string_foreground (struct glyph_string *);
907 static void x_draw_composite_glyph_string_foreground (struct glyph_string *);
908 static void x_draw_glyph_string_box (struct glyph_string *);
909 static void x_draw_glyph_string (struct glyph_string *);
910 static _Noreturn void x_delete_glyphs (struct frame *, int);
911 static void x_compute_glyph_string_overhangs (struct glyph_string *);
912 static void x_set_cursor_gc (struct glyph_string *);
913 static void x_set_mode_line_face_gc (struct glyph_string *);
914 static void x_set_mouse_face_gc (struct glyph_string *);
915 static int x_alloc_lighter_color (struct frame *, Display *, Colormap,
916 unsigned long *, double, int);
917 static void x_setup_relief_color (struct frame *, struct relief *,
918 double, int, unsigned long);
919 static void x_setup_relief_colors (struct glyph_string *);
920 static void x_draw_image_glyph_string (struct glyph_string *);
921 static void x_draw_image_relief (struct glyph_string *);
922 static void x_draw_image_foreground (struct glyph_string *);
923 static void x_draw_image_foreground_1 (struct glyph_string *, Pixmap);
924 static void x_clear_glyph_string_rect (struct glyph_string *, int,
925 int, int, int);
926 static void x_draw_relief_rect (struct frame *, int, int, int, int,
927 int, int, int, int, int, int,
928 XRectangle *);
929 static void x_draw_box_rect (struct glyph_string *, int, int, int, int,
930 int, int, int, XRectangle *);
931 static void x_scroll_bar_clear (struct frame *);
933 #ifdef GLYPH_DEBUG
934 static void x_check_font (struct frame *, struct font *);
935 #endif
938 /* Set S->gc to a suitable GC for drawing glyph string S in cursor
939 face. */
941 static void
942 x_set_cursor_gc (struct glyph_string *s)
944 if (s->font == FRAME_FONT (s->f)
945 && s->face->background == FRAME_BACKGROUND_PIXEL (s->f)
946 && s->face->foreground == FRAME_FOREGROUND_PIXEL (s->f)
947 && !s->cmp)
948 s->gc = s->f->output_data.x->cursor_gc;
949 else
951 /* Cursor on non-default face: must merge. */
952 XGCValues xgcv;
953 unsigned long mask;
955 xgcv.background = s->f->output_data.x->cursor_pixel;
956 xgcv.foreground = s->face->background;
958 /* If the glyph would be invisible, try a different foreground. */
959 if (xgcv.foreground == xgcv.background)
960 xgcv.foreground = s->face->foreground;
961 if (xgcv.foreground == xgcv.background)
962 xgcv.foreground = s->f->output_data.x->cursor_foreground_pixel;
963 if (xgcv.foreground == xgcv.background)
964 xgcv.foreground = s->face->foreground;
966 /* Make sure the cursor is distinct from text in this face. */
967 if (xgcv.background == s->face->background
968 && xgcv.foreground == s->face->foreground)
970 xgcv.background = s->face->foreground;
971 xgcv.foreground = s->face->background;
974 IF_DEBUG (x_check_font (s->f, s->font));
975 xgcv.graphics_exposures = False;
976 mask = GCForeground | GCBackground | GCGraphicsExposures;
978 if (FRAME_X_DISPLAY_INFO (s->f)->scratch_cursor_gc)
979 XChangeGC (s->display, FRAME_X_DISPLAY_INFO (s->f)->scratch_cursor_gc,
980 mask, &xgcv);
981 else
982 FRAME_X_DISPLAY_INFO (s->f)->scratch_cursor_gc
983 = XCreateGC (s->display, s->window, mask, &xgcv);
985 s->gc = FRAME_X_DISPLAY_INFO (s->f)->scratch_cursor_gc;
990 /* Set up S->gc of glyph string S for drawing text in mouse face. */
992 static void
993 x_set_mouse_face_gc (struct glyph_string *s)
995 int face_id;
996 struct face *face;
998 /* What face has to be used last for the mouse face? */
999 face_id = MOUSE_HL_INFO (s->f)->mouse_face_face_id;
1000 face = FACE_FROM_ID (s->f, face_id);
1001 if (face == NULL)
1002 face = FACE_FROM_ID (s->f, MOUSE_FACE_ID);
1004 if (s->first_glyph->type == CHAR_GLYPH)
1005 face_id = FACE_FOR_CHAR (s->f, face, s->first_glyph->u.ch, -1, Qnil);
1006 else
1007 face_id = FACE_FOR_CHAR (s->f, face, 0, -1, Qnil);
1008 s->face = FACE_FROM_ID (s->f, face_id);
1009 PREPARE_FACE_FOR_DISPLAY (s->f, s->face);
1011 if (s->font == s->face->font)
1012 s->gc = s->face->gc;
1013 else
1015 /* Otherwise construct scratch_cursor_gc with values from FACE
1016 except for FONT. */
1017 XGCValues xgcv;
1018 unsigned long mask;
1020 xgcv.background = s->face->background;
1021 xgcv.foreground = s->face->foreground;
1022 xgcv.graphics_exposures = False;
1023 mask = GCForeground | GCBackground | GCGraphicsExposures;
1025 if (FRAME_X_DISPLAY_INFO (s->f)->scratch_cursor_gc)
1026 XChangeGC (s->display, FRAME_X_DISPLAY_INFO (s->f)->scratch_cursor_gc,
1027 mask, &xgcv);
1028 else
1029 FRAME_X_DISPLAY_INFO (s->f)->scratch_cursor_gc
1030 = XCreateGC (s->display, s->window, mask, &xgcv);
1032 s->gc = FRAME_X_DISPLAY_INFO (s->f)->scratch_cursor_gc;
1035 eassert (s->gc != 0);
1039 /* Set S->gc of glyph string S to a GC suitable for drawing a mode line.
1040 Faces to use in the mode line have already been computed when the
1041 matrix was built, so there isn't much to do, here. */
1043 static inline void
1044 x_set_mode_line_face_gc (struct glyph_string *s)
1046 s->gc = s->face->gc;
1050 /* Set S->gc of glyph string S for drawing that glyph string. Set
1051 S->stippled_p to a non-zero value if the face of S has a stipple
1052 pattern. */
1054 static inline void
1055 x_set_glyph_string_gc (struct glyph_string *s)
1057 PREPARE_FACE_FOR_DISPLAY (s->f, s->face);
1059 if (s->hl == DRAW_NORMAL_TEXT)
1061 s->gc = s->face->gc;
1062 s->stippled_p = s->face->stipple != 0;
1064 else if (s->hl == DRAW_INVERSE_VIDEO)
1066 x_set_mode_line_face_gc (s);
1067 s->stippled_p = s->face->stipple != 0;
1069 else if (s->hl == DRAW_CURSOR)
1071 x_set_cursor_gc (s);
1072 s->stippled_p = 0;
1074 else if (s->hl == DRAW_MOUSE_FACE)
1076 x_set_mouse_face_gc (s);
1077 s->stippled_p = s->face->stipple != 0;
1079 else if (s->hl == DRAW_IMAGE_RAISED
1080 || s->hl == DRAW_IMAGE_SUNKEN)
1082 s->gc = s->face->gc;
1083 s->stippled_p = s->face->stipple != 0;
1085 else
1087 s->gc = s->face->gc;
1088 s->stippled_p = s->face->stipple != 0;
1091 /* GC must have been set. */
1092 eassert (s->gc != 0);
1096 /* Set clipping for output of glyph string S. S may be part of a mode
1097 line or menu if we don't have X toolkit support. */
1099 static inline void
1100 x_set_glyph_string_clipping (struct glyph_string *s)
1102 XRectangle *r = s->clip;
1103 int n = get_glyph_string_clip_rects (s, r, 2);
1105 if (n > 0)
1106 XSetClipRectangles (s->display, s->gc, 0, 0, r, n, Unsorted);
1107 s->num_clips = n;
1111 /* Set SRC's clipping for output of glyph string DST. This is called
1112 when we are drawing DST's left_overhang or right_overhang only in
1113 the area of SRC. */
1115 static void
1116 x_set_glyph_string_clipping_exactly (struct glyph_string *src, struct glyph_string *dst)
1118 XRectangle r;
1120 r.x = src->x;
1121 r.width = src->width;
1122 r.y = src->y;
1123 r.height = src->height;
1124 dst->clip[0] = r;
1125 dst->num_clips = 1;
1126 XSetClipRectangles (dst->display, dst->gc, 0, 0, &r, 1, Unsorted);
1130 /* RIF:
1131 Compute left and right overhang of glyph string S. */
1133 static void
1134 x_compute_glyph_string_overhangs (struct glyph_string *s)
1136 if (s->cmp == NULL
1137 && (s->first_glyph->type == CHAR_GLYPH
1138 || s->first_glyph->type == COMPOSITE_GLYPH))
1140 struct font_metrics metrics;
1142 if (s->first_glyph->type == CHAR_GLYPH)
1144 unsigned *code = alloca (sizeof (unsigned) * s->nchars);
1145 struct font *font = s->font;
1146 int i;
1148 for (i = 0; i < s->nchars; i++)
1149 code[i] = (s->char2b[i].byte1 << 8) | s->char2b[i].byte2;
1150 font->driver->text_extents (font, code, s->nchars, &metrics);
1152 else
1154 Lisp_Object gstring = composition_gstring_from_id (s->cmp_id);
1156 composition_gstring_width (gstring, s->cmp_from, s->cmp_to, &metrics);
1158 s->right_overhang = (metrics.rbearing > metrics.width
1159 ? metrics.rbearing - metrics.width : 0);
1160 s->left_overhang = metrics.lbearing < 0 ? - metrics.lbearing : 0;
1162 else if (s->cmp)
1164 s->right_overhang = s->cmp->rbearing - s->cmp->pixel_width;
1165 s->left_overhang = - s->cmp->lbearing;
1170 /* Fill rectangle X, Y, W, H with background color of glyph string S. */
1172 static inline void
1173 x_clear_glyph_string_rect (struct glyph_string *s, int x, int y, int w, int h)
1175 XGCValues xgcv;
1176 XGetGCValues (s->display, s->gc, GCForeground | GCBackground, &xgcv);
1177 XSetForeground (s->display, s->gc, xgcv.background);
1178 XFillRectangle (s->display, s->window, s->gc, x, y, w, h);
1179 XSetForeground (s->display, s->gc, xgcv.foreground);
1183 /* Draw the background of glyph_string S. If S->background_filled_p
1184 is non-zero don't draw it. FORCE_P non-zero means draw the
1185 background even if it wouldn't be drawn normally. This is used
1186 when a string preceding S draws into the background of S, or S
1187 contains the first component of a composition. */
1189 static void
1190 x_draw_glyph_string_background (struct glyph_string *s, int force_p)
1192 /* Nothing to do if background has already been drawn or if it
1193 shouldn't be drawn in the first place. */
1194 if (!s->background_filled_p)
1196 int box_line_width = max (s->face->box_line_width, 0);
1198 if (s->stippled_p)
1200 /* Fill background with a stipple pattern. */
1201 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
1202 XFillRectangle (s->display, s->window, s->gc, s->x,
1203 s->y + box_line_width,
1204 s->background_width,
1205 s->height - 2 * box_line_width);
1206 XSetFillStyle (s->display, s->gc, FillSolid);
1207 s->background_filled_p = 1;
1209 else if (FONT_HEIGHT (s->font) < s->height - 2 * box_line_width
1210 || s->font_not_found_p
1211 || s->extends_to_end_of_line_p
1212 || force_p)
1214 x_clear_glyph_string_rect (s, s->x, s->y + box_line_width,
1215 s->background_width,
1216 s->height - 2 * box_line_width);
1217 s->background_filled_p = 1;
1223 /* Draw the foreground of glyph string S. */
1225 static void
1226 x_draw_glyph_string_foreground (struct glyph_string *s)
1228 int i, x;
1230 /* If first glyph of S has a left box line, start drawing the text
1231 of S to the right of that box line. */
1232 if (s->face->box != FACE_NO_BOX
1233 && s->first_glyph->left_box_line_p)
1234 x = s->x + eabs (s->face->box_line_width);
1235 else
1236 x = s->x;
1238 /* Draw characters of S as rectangles if S's font could not be
1239 loaded. */
1240 if (s->font_not_found_p)
1242 for (i = 0; i < s->nchars; ++i)
1244 struct glyph *g = s->first_glyph + i;
1245 XDrawRectangle (s->display, s->window,
1246 s->gc, x, s->y, g->pixel_width - 1,
1247 s->height - 1);
1248 x += g->pixel_width;
1251 else
1253 struct font *font = s->font;
1254 int boff = font->baseline_offset;
1255 int y;
1257 if (font->vertical_centering)
1258 boff = VCENTER_BASELINE_OFFSET (font, s->f) - boff;
1260 y = s->ybase - boff;
1261 if (s->for_overlaps
1262 || (s->background_filled_p && s->hl != DRAW_CURSOR))
1263 font->driver->draw (s, 0, s->nchars, x, y, 0);
1264 else
1265 font->driver->draw (s, 0, s->nchars, x, y, 1);
1266 if (s->face->overstrike)
1267 font->driver->draw (s, 0, s->nchars, x + 1, y, 0);
1271 /* Draw the foreground of composite glyph string S. */
1273 static void
1274 x_draw_composite_glyph_string_foreground (struct glyph_string *s)
1276 int i, j, x;
1277 struct font *font = s->font;
1279 /* If first glyph of S has a left box line, start drawing the text
1280 of S to the right of that box line. */
1281 if (s->face && s->face->box != FACE_NO_BOX
1282 && s->first_glyph->left_box_line_p)
1283 x = s->x + eabs (s->face->box_line_width);
1284 else
1285 x = s->x;
1287 /* S is a glyph string for a composition. S->cmp_from is the index
1288 of the first character drawn for glyphs of this composition.
1289 S->cmp_from == 0 means we are drawing the very first character of
1290 this composition. */
1292 /* Draw a rectangle for the composition if the font for the very
1293 first character of the composition could not be loaded. */
1294 if (s->font_not_found_p)
1296 if (s->cmp_from == 0)
1297 XDrawRectangle (s->display, s->window, s->gc, x, s->y,
1298 s->width - 1, s->height - 1);
1300 else if (! s->first_glyph->u.cmp.automatic)
1302 int y = s->ybase;
1304 for (i = 0, j = s->cmp_from; i < s->nchars; i++, j++)
1305 /* TAB in a composition means display glyphs with padding
1306 space on the left or right. */
1307 if (COMPOSITION_GLYPH (s->cmp, j) != '\t')
1309 int xx = x + s->cmp->offsets[j * 2];
1310 int yy = y - s->cmp->offsets[j * 2 + 1];
1312 font->driver->draw (s, j, j + 1, xx, yy, 0);
1313 if (s->face->overstrike)
1314 font->driver->draw (s, j, j + 1, xx + 1, yy, 0);
1317 else
1319 Lisp_Object gstring = composition_gstring_from_id (s->cmp_id);
1320 Lisp_Object glyph;
1321 int y = s->ybase;
1322 int width = 0;
1324 for (i = j = s->cmp_from; i < s->cmp_to; i++)
1326 glyph = LGSTRING_GLYPH (gstring, i);
1327 if (NILP (LGLYPH_ADJUSTMENT (glyph)))
1328 width += LGLYPH_WIDTH (glyph);
1329 else
1331 int xoff, yoff, wadjust;
1333 if (j < i)
1335 font->driver->draw (s, j, i, x, y, 0);
1336 if (s->face->overstrike)
1337 font->driver->draw (s, j, i, x + 1, y, 0);
1338 x += width;
1340 xoff = LGLYPH_XOFF (glyph);
1341 yoff = LGLYPH_YOFF (glyph);
1342 wadjust = LGLYPH_WADJUST (glyph);
1343 font->driver->draw (s, i, i + 1, x + xoff, y + yoff, 0);
1344 if (s->face->overstrike)
1345 font->driver->draw (s, i, i + 1, x + xoff + 1, y + yoff, 0);
1346 x += wadjust;
1347 j = i + 1;
1348 width = 0;
1351 if (j < i)
1353 font->driver->draw (s, j, i, x, y, 0);
1354 if (s->face->overstrike)
1355 font->driver->draw (s, j, i, x + 1, y, 0);
1361 /* Draw the foreground of glyph string S for glyphless characters. */
1363 static void
1364 x_draw_glyphless_glyph_string_foreground (struct glyph_string *s)
1366 struct glyph *glyph = s->first_glyph;
1367 XChar2b char2b[8];
1368 int x, i, j;
1370 /* If first glyph of S has a left box line, start drawing the text
1371 of S to the right of that box line. */
1372 if (s->face && s->face->box != FACE_NO_BOX
1373 && s->first_glyph->left_box_line_p)
1374 x = s->x + eabs (s->face->box_line_width);
1375 else
1376 x = s->x;
1378 s->char2b = char2b;
1380 for (i = 0; i < s->nchars; i++, glyph++)
1382 char buf[7], *str = NULL;
1383 int len = glyph->u.glyphless.len;
1385 if (glyph->u.glyphless.method == GLYPHLESS_DISPLAY_ACRONYM)
1387 if (len > 0
1388 && CHAR_TABLE_P (Vglyphless_char_display)
1389 && (CHAR_TABLE_EXTRA_SLOTS (XCHAR_TABLE (Vglyphless_char_display))
1390 >= 1))
1392 Lisp_Object acronym
1393 = (! glyph->u.glyphless.for_no_font
1394 ? CHAR_TABLE_REF (Vglyphless_char_display,
1395 glyph->u.glyphless.ch)
1396 : XCHAR_TABLE (Vglyphless_char_display)->extras[0]);
1397 if (STRINGP (acronym))
1398 str = SSDATA (acronym);
1401 else if (glyph->u.glyphless.method == GLYPHLESS_DISPLAY_HEX_CODE)
1403 sprintf ((char *) buf, "%0*X",
1404 glyph->u.glyphless.ch < 0x10000 ? 4 : 6,
1405 glyph->u.glyphless.ch);
1406 str = buf;
1409 if (str)
1411 int upper_len = (len + 1) / 2;
1412 unsigned code;
1414 /* It is assured that all LEN characters in STR is ASCII. */
1415 for (j = 0; j < len; j++)
1417 code = s->font->driver->encode_char (s->font, str[j]);
1418 STORE_XCHAR2B (char2b + j, code >> 8, code & 0xFF);
1420 s->font->driver->draw (s, 0, upper_len,
1421 x + glyph->slice.glyphless.upper_xoff,
1422 s->ybase + glyph->slice.glyphless.upper_yoff,
1424 s->font->driver->draw (s, upper_len, len,
1425 x + glyph->slice.glyphless.lower_xoff,
1426 s->ybase + glyph->slice.glyphless.lower_yoff,
1429 if (glyph->u.glyphless.method != GLYPHLESS_DISPLAY_THIN_SPACE)
1430 XDrawRectangle (s->display, s->window, s->gc,
1431 x, s->ybase - glyph->ascent,
1432 glyph->pixel_width - 1,
1433 glyph->ascent + glyph->descent - 1);
1434 x += glyph->pixel_width;
1438 #ifdef USE_X_TOOLKIT
1440 static Boolean cvt_string_to_pixel (Display *, XrmValue *, Cardinal *,
1441 XrmValue *, XrmValue *, XtPointer *);
1442 static void cvt_pixel_dtor (XtAppContext, XrmValue *, XtPointer,
1443 XrmValue *, Cardinal *);
1445 #ifdef USE_LUCID
1447 /* Return the frame on which widget WIDGET is used.. Abort if frame
1448 cannot be determined. */
1450 static struct frame *
1451 x_frame_of_widget (Widget widget)
1453 struct x_display_info *dpyinfo;
1454 Lisp_Object tail;
1455 struct frame *f;
1457 dpyinfo = x_display_info_for_display (XtDisplay (widget));
1459 /* Find the top-level shell of the widget. Note that this function
1460 can be called when the widget is not yet realized, so XtWindow
1461 (widget) == 0. That's the reason we can't simply use
1462 x_any_window_to_frame. */
1463 while (!XtIsTopLevelShell (widget))
1464 widget = XtParent (widget);
1466 /* Look for a frame with that top-level widget. Allocate the color
1467 on that frame to get the right gamma correction value. */
1468 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
1469 if (FRAMEP (XCAR (tail))
1470 && (f = XFRAME (XCAR (tail)),
1471 (FRAME_X_P (f)
1472 && f->output_data.nothing != 1
1473 && FRAME_X_DISPLAY_INFO (f) == dpyinfo))
1474 && f->output_data.x->widget == widget)
1475 return f;
1477 abort ();
1480 /* Allocate a color which is lighter or darker than *PIXEL by FACTOR
1481 or DELTA. Try a color with RGB values multiplied by FACTOR first.
1482 If this produces the same color as PIXEL, try a color where all RGB
1483 values have DELTA added. Return the allocated color in *PIXEL.
1484 DISPLAY is the X display, CMAP is the colormap to operate on.
1485 Value is non-zero if successful. */
1488 x_alloc_lighter_color_for_widget (Widget widget, Display *display, Colormap cmap,
1489 unsigned long *pixel, double factor, int delta)
1491 struct frame *f = x_frame_of_widget (widget);
1492 return x_alloc_lighter_color (f, display, cmap, pixel, factor, delta);
1495 #endif /* USE_LUCID */
1498 /* Structure specifying which arguments should be passed by Xt to
1499 cvt_string_to_pixel. We want the widget's screen and colormap. */
1501 static XtConvertArgRec cvt_string_to_pixel_args[] =
1503 {XtWidgetBaseOffset, (XtPointer) XtOffset (Widget, core.screen),
1504 sizeof (Screen *)},
1505 {XtWidgetBaseOffset, (XtPointer) XtOffset (Widget, core.colormap),
1506 sizeof (Colormap)}
1510 /* The address of this variable is returned by
1511 cvt_string_to_pixel. */
1513 static Pixel cvt_string_to_pixel_value;
1516 /* Convert a color name to a pixel color.
1518 DPY is the display we are working on.
1520 ARGS is an array of *NARGS XrmValue structures holding additional
1521 information about the widget for which the conversion takes place.
1522 The contents of this array are determined by the specification
1523 in cvt_string_to_pixel_args.
1525 FROM is a pointer to an XrmValue which points to the color name to
1526 convert. TO is an XrmValue in which to return the pixel color.
1528 CLOSURE_RET is a pointer to user-data, in which we record if
1529 we allocated the color or not.
1531 Value is True if successful, False otherwise. */
1533 static Boolean
1534 cvt_string_to_pixel (Display *dpy, XrmValue *args, Cardinal *nargs,
1535 XrmValue *from, XrmValue *to,
1536 XtPointer *closure_ret)
1538 Screen *screen;
1539 Colormap cmap;
1540 Pixel pixel;
1541 String color_name;
1542 XColor color;
1544 if (*nargs != 2)
1546 XtAppWarningMsg (XtDisplayToApplicationContext (dpy),
1547 "wrongParameters", "cvt_string_to_pixel",
1548 "XtToolkitError",
1549 "Screen and colormap args required", NULL, NULL);
1550 return False;
1553 screen = *(Screen **) args[0].addr;
1554 cmap = *(Colormap *) args[1].addr;
1555 color_name = (String) from->addr;
1557 if (strcmp (color_name, XtDefaultBackground) == 0)
1559 *closure_ret = (XtPointer) False;
1560 pixel = WhitePixelOfScreen (screen);
1562 else if (strcmp (color_name, XtDefaultForeground) == 0)
1564 *closure_ret = (XtPointer) False;
1565 pixel = BlackPixelOfScreen (screen);
1567 else if (XParseColor (dpy, cmap, color_name, &color)
1568 && x_alloc_nearest_color_1 (dpy, cmap, &color))
1570 pixel = color.pixel;
1571 *closure_ret = (XtPointer) True;
1573 else
1575 String params[1];
1576 Cardinal nparams = 1;
1578 params[0] = color_name;
1579 XtAppWarningMsg (XtDisplayToApplicationContext (dpy),
1580 "badValue", "cvt_string_to_pixel",
1581 "XtToolkitError", "Invalid color `%s'",
1582 params, &nparams);
1583 return False;
1586 if (to->addr != NULL)
1588 if (to->size < sizeof (Pixel))
1590 to->size = sizeof (Pixel);
1591 return False;
1594 *(Pixel *) to->addr = pixel;
1596 else
1598 cvt_string_to_pixel_value = pixel;
1599 to->addr = (XtPointer) &cvt_string_to_pixel_value;
1602 to->size = sizeof (Pixel);
1603 return True;
1607 /* Free a pixel color which was previously allocated via
1608 cvt_string_to_pixel. This is registered as the destructor
1609 for this type of resource via XtSetTypeConverter.
1611 APP is the application context in which we work.
1613 TO is a pointer to an XrmValue holding the color to free.
1614 CLOSURE is the value we stored in CLOSURE_RET for this color
1615 in cvt_string_to_pixel.
1617 ARGS and NARGS are like for cvt_string_to_pixel. */
1619 static void
1620 cvt_pixel_dtor (XtAppContext app, XrmValuePtr to, XtPointer closure, XrmValuePtr args,
1621 Cardinal *nargs)
1623 if (*nargs != 2)
1625 XtAppWarningMsg (app, "wrongParameters", "cvt_pixel_dtor",
1626 "XtToolkitError",
1627 "Screen and colormap arguments required",
1628 NULL, NULL);
1630 else if (closure != NULL)
1632 /* We did allocate the pixel, so free it. */
1633 Screen *screen = *(Screen **) args[0].addr;
1634 Colormap cmap = *(Colormap *) args[1].addr;
1635 x_free_dpy_colors (DisplayOfScreen (screen), screen, cmap,
1636 (Pixel *) to->addr, 1);
1641 #endif /* USE_X_TOOLKIT */
1644 /* Value is an array of XColor structures for the contents of the
1645 color map of display DPY. Set *NCELLS to the size of the array.
1646 Note that this probably shouldn't be called for large color maps,
1647 say a 24-bit TrueColor map. */
1649 static const XColor *
1650 x_color_cells (Display *dpy, int *ncells)
1652 struct x_display_info *dpyinfo = x_display_info_for_display (dpy);
1654 if (dpyinfo->color_cells == NULL)
1656 Screen *screen = dpyinfo->screen;
1657 int ncolor_cells = XDisplayCells (dpy, XScreenNumberOfScreen (screen));
1658 int i;
1660 dpyinfo->color_cells = xnmalloc (ncolor_cells,
1661 sizeof *dpyinfo->color_cells);
1662 dpyinfo->ncolor_cells = ncolor_cells;
1664 for (i = 0; i < ncolor_cells; ++i)
1665 dpyinfo->color_cells[i].pixel = i;
1667 XQueryColors (dpy, dpyinfo->cmap,
1668 dpyinfo->color_cells, ncolor_cells);
1671 *ncells = dpyinfo->ncolor_cells;
1672 return dpyinfo->color_cells;
1676 /* On frame F, translate pixel colors to RGB values for the NCOLORS
1677 colors in COLORS. Use cached information, if available. */
1679 void
1680 x_query_colors (struct frame *f, XColor *colors, int ncolors)
1682 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
1684 if (dpyinfo->color_cells)
1686 int i;
1687 for (i = 0; i < ncolors; ++i)
1689 unsigned long pixel = colors[i].pixel;
1690 eassert (pixel < dpyinfo->ncolor_cells);
1691 eassert (dpyinfo->color_cells[pixel].pixel == pixel);
1692 colors[i] = dpyinfo->color_cells[pixel];
1695 else
1696 XQueryColors (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f), colors, ncolors);
1700 /* On frame F, translate pixel color to RGB values for the color in
1701 COLOR. Use cached information, if available. */
1703 void
1704 x_query_color (struct frame *f, XColor *color)
1706 x_query_colors (f, color, 1);
1710 /* Allocate the color COLOR->pixel on DISPLAY, colormap CMAP. If an
1711 exact match can't be allocated, try the nearest color available.
1712 Value is non-zero if successful. Set *COLOR to the color
1713 allocated. */
1715 static int
1716 x_alloc_nearest_color_1 (Display *dpy, Colormap cmap, XColor *color)
1718 int rc;
1720 rc = XAllocColor (dpy, cmap, color);
1721 if (rc == 0)
1723 /* If we got to this point, the colormap is full, so we're going
1724 to try to get the next closest color. The algorithm used is
1725 a least-squares matching, which is what X uses for closest
1726 color matching with StaticColor visuals. */
1727 int nearest, i;
1728 int max_color_delta = 255;
1729 int max_delta = 3 * max_color_delta;
1730 int nearest_delta = max_delta + 1;
1731 int ncells;
1732 const XColor *cells = x_color_cells (dpy, &ncells);
1734 for (nearest = i = 0; i < ncells; ++i)
1736 int dred = (color->red >> 8) - (cells[i].red >> 8);
1737 int dgreen = (color->green >> 8) - (cells[i].green >> 8);
1738 int dblue = (color->blue >> 8) - (cells[i].blue >> 8);
1739 int delta = dred * dred + dgreen * dgreen + dblue * dblue;
1741 if (delta < nearest_delta)
1743 nearest = i;
1744 nearest_delta = delta;
1748 color->red = cells[nearest].red;
1749 color->green = cells[nearest].green;
1750 color->blue = cells[nearest].blue;
1751 rc = XAllocColor (dpy, cmap, color);
1753 else
1755 /* If allocation succeeded, and the allocated pixel color is not
1756 equal to a cached pixel color recorded earlier, there was a
1757 change in the colormap, so clear the color cache. */
1758 struct x_display_info *dpyinfo = x_display_info_for_display (dpy);
1759 XColor *cached_color;
1761 if (dpyinfo->color_cells
1762 && (cached_color = &dpyinfo->color_cells[color->pixel],
1763 (cached_color->red != color->red
1764 || cached_color->blue != color->blue
1765 || cached_color->green != color->green)))
1767 xfree (dpyinfo->color_cells);
1768 dpyinfo->color_cells = NULL;
1769 dpyinfo->ncolor_cells = 0;
1773 #ifdef DEBUG_X_COLORS
1774 if (rc)
1775 register_color (color->pixel);
1776 #endif /* DEBUG_X_COLORS */
1778 return rc;
1782 /* Allocate the color COLOR->pixel on frame F, colormap CMAP. If an
1783 exact match can't be allocated, try the nearest color available.
1784 Value is non-zero if successful. Set *COLOR to the color
1785 allocated. */
1788 x_alloc_nearest_color (struct frame *f, Colormap cmap, XColor *color)
1790 gamma_correct (f, color);
1791 return x_alloc_nearest_color_1 (FRAME_X_DISPLAY (f), cmap, color);
1795 /* Allocate color PIXEL on frame F. PIXEL must already be allocated.
1796 It's necessary to do this instead of just using PIXEL directly to
1797 get color reference counts right. */
1799 unsigned long
1800 x_copy_color (struct frame *f, long unsigned int pixel)
1802 XColor color;
1804 color.pixel = pixel;
1805 BLOCK_INPUT;
1806 x_query_color (f, &color);
1807 XAllocColor (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f), &color);
1808 UNBLOCK_INPUT;
1809 #ifdef DEBUG_X_COLORS
1810 register_color (pixel);
1811 #endif
1812 return color.pixel;
1816 /* Brightness beyond which a color won't have its highlight brightness
1817 boosted.
1819 Nominally, highlight colors for `3d' faces are calculated by
1820 brightening an object's color by a constant scale factor, but this
1821 doesn't yield good results for dark colors, so for colors who's
1822 brightness is less than this value (on a scale of 0-65535) have an
1823 use an additional additive factor.
1825 The value here is set so that the default menu-bar/mode-line color
1826 (grey75) will not have its highlights changed at all. */
1827 #define HIGHLIGHT_COLOR_DARK_BOOST_LIMIT 48000
1830 /* Allocate a color which is lighter or darker than *PIXEL by FACTOR
1831 or DELTA. Try a color with RGB values multiplied by FACTOR first.
1832 If this produces the same color as PIXEL, try a color where all RGB
1833 values have DELTA added. Return the allocated color in *PIXEL.
1834 DISPLAY is the X display, CMAP is the colormap to operate on.
1835 Value is non-zero if successful. */
1837 static int
1838 x_alloc_lighter_color (struct frame *f, Display *display, Colormap cmap, long unsigned int *pixel, double factor, int delta)
1840 XColor color, new;
1841 long bright;
1842 int success_p;
1844 /* Get RGB color values. */
1845 color.pixel = *pixel;
1846 x_query_color (f, &color);
1848 /* Change RGB values by specified FACTOR. Avoid overflow! */
1849 eassert (factor >= 0);
1850 new.red = min (0xffff, factor * color.red);
1851 new.green = min (0xffff, factor * color.green);
1852 new.blue = min (0xffff, factor * color.blue);
1854 /* Calculate brightness of COLOR. */
1855 bright = (2 * color.red + 3 * color.green + color.blue) / 6;
1857 /* We only boost colors that are darker than
1858 HIGHLIGHT_COLOR_DARK_BOOST_LIMIT. */
1859 if (bright < HIGHLIGHT_COLOR_DARK_BOOST_LIMIT)
1860 /* Make an additive adjustment to NEW, because it's dark enough so
1861 that scaling by FACTOR alone isn't enough. */
1863 /* How far below the limit this color is (0 - 1, 1 being darker). */
1864 double dimness = 1 - (double)bright / HIGHLIGHT_COLOR_DARK_BOOST_LIMIT;
1865 /* The additive adjustment. */
1866 int min_delta = delta * dimness * factor / 2;
1868 if (factor < 1)
1870 new.red = max (0, new.red - min_delta);
1871 new.green = max (0, new.green - min_delta);
1872 new.blue = max (0, new.blue - min_delta);
1874 else
1876 new.red = min (0xffff, min_delta + new.red);
1877 new.green = min (0xffff, min_delta + new.green);
1878 new.blue = min (0xffff, min_delta + new.blue);
1882 /* Try to allocate the color. */
1883 success_p = x_alloc_nearest_color (f, cmap, &new);
1884 if (success_p)
1886 if (new.pixel == *pixel)
1888 /* If we end up with the same color as before, try adding
1889 delta to the RGB values. */
1890 x_free_colors (f, &new.pixel, 1);
1892 new.red = min (0xffff, delta + color.red);
1893 new.green = min (0xffff, delta + color.green);
1894 new.blue = min (0xffff, delta + color.blue);
1895 success_p = x_alloc_nearest_color (f, cmap, &new);
1897 else
1898 success_p = 1;
1899 *pixel = new.pixel;
1902 return success_p;
1906 /* Set up the foreground color for drawing relief lines of glyph
1907 string S. RELIEF is a pointer to a struct relief containing the GC
1908 with which lines will be drawn. Use a color that is FACTOR or
1909 DELTA lighter or darker than the relief's background which is found
1910 in S->f->output_data.x->relief_background. If such a color cannot
1911 be allocated, use DEFAULT_PIXEL, instead. */
1913 static void
1914 x_setup_relief_color (struct frame *f, struct relief *relief, double factor, int delta, long unsigned int default_pixel)
1916 XGCValues xgcv;
1917 struct x_output *di = f->output_data.x;
1918 unsigned long mask = GCForeground | GCLineWidth | GCGraphicsExposures;
1919 unsigned long pixel;
1920 unsigned long background = di->relief_background;
1921 Colormap cmap = FRAME_X_COLORMAP (f);
1922 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
1923 Display *dpy = FRAME_X_DISPLAY (f);
1925 xgcv.graphics_exposures = False;
1926 xgcv.line_width = 1;
1928 /* Free previously allocated color. The color cell will be reused
1929 when it has been freed as many times as it was allocated, so this
1930 doesn't affect faces using the same colors. */
1931 if (relief->gc
1932 && relief->allocated_p)
1934 x_free_colors (f, &relief->pixel, 1);
1935 relief->allocated_p = 0;
1938 /* Allocate new color. */
1939 xgcv.foreground = default_pixel;
1940 pixel = background;
1941 if (dpyinfo->n_planes != 1
1942 && x_alloc_lighter_color (f, dpy, cmap, &pixel, factor, delta))
1944 relief->allocated_p = 1;
1945 xgcv.foreground = relief->pixel = pixel;
1948 if (relief->gc == 0)
1950 xgcv.stipple = dpyinfo->gray;
1951 mask |= GCStipple;
1952 relief->gc = XCreateGC (dpy, FRAME_X_WINDOW (f), mask, &xgcv);
1954 else
1955 XChangeGC (dpy, relief->gc, mask, &xgcv);
1959 /* Set up colors for the relief lines around glyph string S. */
1961 static void
1962 x_setup_relief_colors (struct glyph_string *s)
1964 struct x_output *di = s->f->output_data.x;
1965 unsigned long color;
1967 if (s->face->use_box_color_for_shadows_p)
1968 color = s->face->box_color;
1969 else if (s->first_glyph->type == IMAGE_GLYPH
1970 && s->img->pixmap
1971 && !IMAGE_BACKGROUND_TRANSPARENT (s->img, s->f, 0))
1972 color = IMAGE_BACKGROUND (s->img, s->f, 0);
1973 else
1975 XGCValues xgcv;
1977 /* Get the background color of the face. */
1978 XGetGCValues (s->display, s->gc, GCBackground, &xgcv);
1979 color = xgcv.background;
1982 if (di->white_relief.gc == 0
1983 || color != di->relief_background)
1985 di->relief_background = color;
1986 x_setup_relief_color (s->f, &di->white_relief, 1.2, 0x8000,
1987 WHITE_PIX_DEFAULT (s->f));
1988 x_setup_relief_color (s->f, &di->black_relief, 0.6, 0x4000,
1989 BLACK_PIX_DEFAULT (s->f));
1994 /* Draw a relief on frame F inside the rectangle given by LEFT_X,
1995 TOP_Y, RIGHT_X, and BOTTOM_Y. WIDTH is the thickness of the relief
1996 to draw, it must be >= 0. RAISED_P non-zero means draw a raised
1997 relief. LEFT_P non-zero means draw a relief on the left side of
1998 the rectangle. RIGHT_P non-zero means draw a relief on the right
1999 side of the rectangle. CLIP_RECT is the clipping rectangle to use
2000 when drawing. */
2002 static void
2003 x_draw_relief_rect (struct frame *f,
2004 int left_x, int top_y, int right_x, int bottom_y, int width,
2005 int raised_p, int top_p, int bot_p, int left_p, int right_p,
2006 XRectangle *clip_rect)
2008 Display *dpy = FRAME_X_DISPLAY (f);
2009 Window window = FRAME_X_WINDOW (f);
2010 int i;
2011 GC gc;
2013 if (raised_p)
2014 gc = f->output_data.x->white_relief.gc;
2015 else
2016 gc = f->output_data.x->black_relief.gc;
2017 XSetClipRectangles (dpy, gc, 0, 0, clip_rect, 1, Unsorted);
2019 /* This code is more complicated than it has to be, because of two
2020 minor hacks to make the boxes look nicer: (i) if width > 1, draw
2021 the outermost line using the black relief. (ii) Omit the four
2022 corner pixels. */
2024 /* Top. */
2025 if (top_p)
2027 if (width == 1)
2028 XDrawLine (dpy, window, gc,
2029 left_x + (left_p ? 1 : 0), top_y,
2030 right_x + (right_p ? 0 : 1), top_y);
2032 for (i = 1; i < width; ++i)
2033 XDrawLine (dpy, window, gc,
2034 left_x + i * left_p, top_y + i,
2035 right_x + 1 - i * right_p, top_y + i);
2038 /* Left. */
2039 if (left_p)
2041 if (width == 1)
2042 XDrawLine (dpy, window, gc, left_x, top_y + 1, left_x, bottom_y);
2044 XClearArea (dpy, window, left_x, top_y, 1, 1, False);
2045 XClearArea (dpy, window, left_x, bottom_y, 1, 1, False);
2047 for (i = (width > 1 ? 1 : 0); i < width; ++i)
2048 XDrawLine (dpy, window, gc,
2049 left_x + i, top_y + i, left_x + i, bottom_y - i + 1);
2052 XSetClipMask (dpy, gc, None);
2053 if (raised_p)
2054 gc = f->output_data.x->black_relief.gc;
2055 else
2056 gc = f->output_data.x->white_relief.gc;
2057 XSetClipRectangles (dpy, gc, 0, 0, clip_rect, 1, Unsorted);
2059 if (width > 1)
2061 /* Outermost top line. */
2062 if (top_p)
2063 XDrawLine (dpy, window, gc,
2064 left_x + (left_p ? 1 : 0), top_y,
2065 right_x + (right_p ? 0 : 1), top_y);
2067 /* Outermost left line. */
2068 if (left_p)
2069 XDrawLine (dpy, window, gc, left_x, top_y + 1, left_x, bottom_y);
2072 /* Bottom. */
2073 if (bot_p)
2075 XDrawLine (dpy, window, gc,
2076 left_x + (left_p ? 1 : 0), bottom_y,
2077 right_x + (right_p ? 0 : 1), bottom_y);
2078 for (i = 1; i < width; ++i)
2079 XDrawLine (dpy, window, gc,
2080 left_x + i * left_p, bottom_y - i,
2081 right_x + 1 - i * right_p, bottom_y - i);
2084 /* Right. */
2085 if (right_p)
2087 XClearArea (dpy, window, right_x, top_y, 1, 1, False);
2088 XClearArea (dpy, window, right_x, bottom_y, 1, 1, False);
2089 for (i = 0; i < width; ++i)
2090 XDrawLine (dpy, window, gc,
2091 right_x - i, top_y + i + 1, right_x - i, bottom_y - i);
2094 XSetClipMask (dpy, gc, None);
2098 /* Draw a box on frame F inside the rectangle given by LEFT_X, TOP_Y,
2099 RIGHT_X, and BOTTOM_Y. WIDTH is the thickness of the lines to
2100 draw, it must be >= 0. LEFT_P non-zero means draw a line on the
2101 left side of the rectangle. RIGHT_P non-zero means draw a line
2102 on the right side of the rectangle. CLIP_RECT is the clipping
2103 rectangle to use when drawing. */
2105 static void
2106 x_draw_box_rect (struct glyph_string *s,
2107 int left_x, int top_y, int right_x, int bottom_y, int width,
2108 int left_p, int right_p, XRectangle *clip_rect)
2110 XGCValues xgcv;
2112 XGetGCValues (s->display, s->gc, GCForeground, &xgcv);
2113 XSetForeground (s->display, s->gc, s->face->box_color);
2114 XSetClipRectangles (s->display, s->gc, 0, 0, clip_rect, 1, Unsorted);
2116 /* Top. */
2117 XFillRectangle (s->display, s->window, s->gc,
2118 left_x, top_y, right_x - left_x + 1, width);
2120 /* Left. */
2121 if (left_p)
2122 XFillRectangle (s->display, s->window, s->gc,
2123 left_x, top_y, width, bottom_y - top_y + 1);
2125 /* Bottom. */
2126 XFillRectangle (s->display, s->window, s->gc,
2127 left_x, bottom_y - width + 1, right_x - left_x + 1, width);
2129 /* Right. */
2130 if (right_p)
2131 XFillRectangle (s->display, s->window, s->gc,
2132 right_x - width + 1, top_y, width, bottom_y - top_y + 1);
2134 XSetForeground (s->display, s->gc, xgcv.foreground);
2135 XSetClipMask (s->display, s->gc, None);
2139 /* Draw a box around glyph string S. */
2141 static void
2142 x_draw_glyph_string_box (struct glyph_string *s)
2144 int width, left_x, right_x, top_y, bottom_y, last_x, raised_p;
2145 int left_p, right_p;
2146 struct glyph *last_glyph;
2147 XRectangle clip_rect;
2149 last_x = ((s->row->full_width_p && !s->w->pseudo_window_p)
2150 ? WINDOW_RIGHT_EDGE_X (s->w)
2151 : window_box_right (s->w, s->area));
2153 /* The glyph that may have a right box line. */
2154 last_glyph = (s->cmp || s->img
2155 ? s->first_glyph
2156 : s->first_glyph + s->nchars - 1);
2158 width = eabs (s->face->box_line_width);
2159 raised_p = s->face->box == FACE_RAISED_BOX;
2160 left_x = s->x;
2161 right_x = (s->row->full_width_p && s->extends_to_end_of_line_p
2162 ? last_x - 1
2163 : min (last_x, s->x + s->background_width) - 1);
2164 top_y = s->y;
2165 bottom_y = top_y + s->height - 1;
2167 left_p = (s->first_glyph->left_box_line_p
2168 || (s->hl == DRAW_MOUSE_FACE
2169 && (s->prev == NULL
2170 || s->prev->hl != s->hl)));
2171 right_p = (last_glyph->right_box_line_p
2172 || (s->hl == DRAW_MOUSE_FACE
2173 && (s->next == NULL
2174 || s->next->hl != s->hl)));
2176 get_glyph_string_clip_rect (s, &clip_rect);
2178 if (s->face->box == FACE_SIMPLE_BOX)
2179 x_draw_box_rect (s, left_x, top_y, right_x, bottom_y, width,
2180 left_p, right_p, &clip_rect);
2181 else
2183 x_setup_relief_colors (s);
2184 x_draw_relief_rect (s->f, left_x, top_y, right_x, bottom_y,
2185 width, raised_p, 1, 1, left_p, right_p, &clip_rect);
2190 /* Draw foreground of image glyph string S. */
2192 static void
2193 x_draw_image_foreground (struct glyph_string *s)
2195 int x = s->x;
2196 int y = s->ybase - image_ascent (s->img, s->face, &s->slice);
2198 /* If first glyph of S has a left box line, start drawing it to the
2199 right of that line. */
2200 if (s->face->box != FACE_NO_BOX
2201 && s->first_glyph->left_box_line_p
2202 && s->slice.x == 0)
2203 x += eabs (s->face->box_line_width);
2205 /* If there is a margin around the image, adjust x- and y-position
2206 by that margin. */
2207 if (s->slice.x == 0)
2208 x += s->img->hmargin;
2209 if (s->slice.y == 0)
2210 y += s->img->vmargin;
2212 if (s->img->pixmap)
2214 if (s->img->mask)
2216 /* We can't set both a clip mask and use XSetClipRectangles
2217 because the latter also sets a clip mask. We also can't
2218 trust on the shape extension to be available
2219 (XShapeCombineRegion). So, compute the rectangle to draw
2220 manually. */
2221 unsigned long mask = (GCClipMask | GCClipXOrigin | GCClipYOrigin
2222 | GCFunction);
2223 XGCValues xgcv;
2224 XRectangle clip_rect, image_rect, r;
2226 xgcv.clip_mask = s->img->mask;
2227 xgcv.clip_x_origin = x;
2228 xgcv.clip_y_origin = y;
2229 xgcv.function = GXcopy;
2230 XChangeGC (s->display, s->gc, mask, &xgcv);
2232 get_glyph_string_clip_rect (s, &clip_rect);
2233 image_rect.x = x;
2234 image_rect.y = y;
2235 image_rect.width = s->slice.width;
2236 image_rect.height = s->slice.height;
2237 if (x_intersect_rectangles (&clip_rect, &image_rect, &r))
2238 XCopyArea (s->display, s->img->pixmap, s->window, s->gc,
2239 s->slice.x + r.x - x, s->slice.y + r.y - y,
2240 r.width, r.height, r.x, r.y);
2242 else
2244 XRectangle clip_rect, image_rect, r;
2246 get_glyph_string_clip_rect (s, &clip_rect);
2247 image_rect.x = x;
2248 image_rect.y = y;
2249 image_rect.width = s->slice.width;
2250 image_rect.height = s->slice.height;
2251 if (x_intersect_rectangles (&clip_rect, &image_rect, &r))
2252 XCopyArea (s->display, s->img->pixmap, s->window, s->gc,
2253 s->slice.x + r.x - x, s->slice.y + r.y - y,
2254 r.width, r.height, r.x, r.y);
2256 /* When the image has a mask, we can expect that at
2257 least part of a mouse highlight or a block cursor will
2258 be visible. If the image doesn't have a mask, make
2259 a block cursor visible by drawing a rectangle around
2260 the image. I believe it's looking better if we do
2261 nothing here for mouse-face. */
2262 if (s->hl == DRAW_CURSOR)
2264 int relief = s->img->relief;
2265 if (relief < 0) relief = -relief;
2266 XDrawRectangle (s->display, s->window, s->gc,
2267 x - relief, y - relief,
2268 s->slice.width + relief*2 - 1,
2269 s->slice.height + relief*2 - 1);
2273 else
2274 /* Draw a rectangle if image could not be loaded. */
2275 XDrawRectangle (s->display, s->window, s->gc, x, y,
2276 s->slice.width - 1, s->slice.height - 1);
2280 /* Draw a relief around the image glyph string S. */
2282 static void
2283 x_draw_image_relief (struct glyph_string *s)
2285 int x0, y0, x1, y1, thick, raised_p;
2286 int extra_x, extra_y;
2287 XRectangle r;
2288 int x = s->x;
2289 int y = s->ybase - image_ascent (s->img, s->face, &s->slice);
2291 /* If first glyph of S has a left box line, start drawing it to the
2292 right of that line. */
2293 if (s->face->box != FACE_NO_BOX
2294 && s->first_glyph->left_box_line_p
2295 && s->slice.x == 0)
2296 x += eabs (s->face->box_line_width);
2298 /* If there is a margin around the image, adjust x- and y-position
2299 by that margin. */
2300 if (s->slice.x == 0)
2301 x += s->img->hmargin;
2302 if (s->slice.y == 0)
2303 y += s->img->vmargin;
2305 if (s->hl == DRAW_IMAGE_SUNKEN
2306 || s->hl == DRAW_IMAGE_RAISED)
2308 thick = tool_bar_button_relief >= 0 ? tool_bar_button_relief : DEFAULT_TOOL_BAR_BUTTON_RELIEF;
2309 raised_p = s->hl == DRAW_IMAGE_RAISED;
2311 else
2313 thick = eabs (s->img->relief);
2314 raised_p = s->img->relief > 0;
2317 extra_x = extra_y = 0;
2318 if (s->face->id == TOOL_BAR_FACE_ID)
2320 if (CONSP (Vtool_bar_button_margin)
2321 && INTEGERP (XCAR (Vtool_bar_button_margin))
2322 && INTEGERP (XCDR (Vtool_bar_button_margin)))
2324 extra_x = XINT (XCAR (Vtool_bar_button_margin));
2325 extra_y = XINT (XCDR (Vtool_bar_button_margin));
2327 else if (INTEGERP (Vtool_bar_button_margin))
2328 extra_x = extra_y = XINT (Vtool_bar_button_margin);
2331 x0 = x - thick - extra_x;
2332 y0 = y - thick - extra_y;
2333 x1 = x + s->slice.width + thick - 1 + extra_x;
2334 y1 = y + s->slice.height + thick - 1 + extra_y;
2336 x_setup_relief_colors (s);
2337 get_glyph_string_clip_rect (s, &r);
2338 x_draw_relief_rect (s->f, x0, y0, x1, y1, thick, raised_p,
2339 s->slice.y == 0,
2340 s->slice.y + s->slice.height == s->img->height,
2341 s->slice.x == 0,
2342 s->slice.x + s->slice.width == s->img->width,
2343 &r);
2347 /* Draw the foreground of image glyph string S to PIXMAP. */
2349 static void
2350 x_draw_image_foreground_1 (struct glyph_string *s, Pixmap pixmap)
2352 int x = 0;
2353 int y = s->ybase - s->y - image_ascent (s->img, s->face, &s->slice);
2355 /* If first glyph of S has a left box line, start drawing it to the
2356 right of that line. */
2357 if (s->face->box != FACE_NO_BOX
2358 && s->first_glyph->left_box_line_p
2359 && s->slice.x == 0)
2360 x += eabs (s->face->box_line_width);
2362 /* If there is a margin around the image, adjust x- and y-position
2363 by that margin. */
2364 if (s->slice.x == 0)
2365 x += s->img->hmargin;
2366 if (s->slice.y == 0)
2367 y += s->img->vmargin;
2369 if (s->img->pixmap)
2371 if (s->img->mask)
2373 /* We can't set both a clip mask and use XSetClipRectangles
2374 because the latter also sets a clip mask. We also can't
2375 trust on the shape extension to be available
2376 (XShapeCombineRegion). So, compute the rectangle to draw
2377 manually. */
2378 unsigned long mask = (GCClipMask | GCClipXOrigin | GCClipYOrigin
2379 | GCFunction);
2380 XGCValues xgcv;
2382 xgcv.clip_mask = s->img->mask;
2383 xgcv.clip_x_origin = x - s->slice.x;
2384 xgcv.clip_y_origin = y - s->slice.y;
2385 xgcv.function = GXcopy;
2386 XChangeGC (s->display, s->gc, mask, &xgcv);
2388 XCopyArea (s->display, s->img->pixmap, pixmap, s->gc,
2389 s->slice.x, s->slice.y,
2390 s->slice.width, s->slice.height, x, y);
2391 XSetClipMask (s->display, s->gc, None);
2393 else
2395 XCopyArea (s->display, s->img->pixmap, pixmap, s->gc,
2396 s->slice.x, s->slice.y,
2397 s->slice.width, s->slice.height, x, y);
2399 /* When the image has a mask, we can expect that at
2400 least part of a mouse highlight or a block cursor will
2401 be visible. If the image doesn't have a mask, make
2402 a block cursor visible by drawing a rectangle around
2403 the image. I believe it's looking better if we do
2404 nothing here for mouse-face. */
2405 if (s->hl == DRAW_CURSOR)
2407 int r = s->img->relief;
2408 if (r < 0) r = -r;
2409 XDrawRectangle (s->display, s->window, s->gc, x - r, y - r,
2410 s->slice.width + r*2 - 1,
2411 s->slice.height + r*2 - 1);
2415 else
2416 /* Draw a rectangle if image could not be loaded. */
2417 XDrawRectangle (s->display, pixmap, s->gc, x, y,
2418 s->slice.width - 1, s->slice.height - 1);
2422 /* Draw part of the background of glyph string S. X, Y, W, and H
2423 give the rectangle to draw. */
2425 static void
2426 x_draw_glyph_string_bg_rect (struct glyph_string *s, int x, int y, int w, int h)
2428 if (s->stippled_p)
2430 /* Fill background with a stipple pattern. */
2431 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
2432 XFillRectangle (s->display, s->window, s->gc, x, y, w, h);
2433 XSetFillStyle (s->display, s->gc, FillSolid);
2435 else
2436 x_clear_glyph_string_rect (s, x, y, w, h);
2440 /* Draw image glyph string S.
2442 s->y
2443 s->x +-------------------------
2444 | s->face->box
2446 | +-------------------------
2447 | | s->img->margin
2449 | | +-------------------
2450 | | | the image
2454 static void
2455 x_draw_image_glyph_string (struct glyph_string *s)
2457 int box_line_hwidth = eabs (s->face->box_line_width);
2458 int box_line_vwidth = max (s->face->box_line_width, 0);
2459 int height;
2460 Pixmap pixmap = None;
2462 height = s->height;
2463 if (s->slice.y == 0)
2464 height -= box_line_vwidth;
2465 if (s->slice.y + s->slice.height >= s->img->height)
2466 height -= box_line_vwidth;
2468 /* Fill background with face under the image. Do it only if row is
2469 taller than image or if image has a clip mask to reduce
2470 flickering. */
2471 s->stippled_p = s->face->stipple != 0;
2472 if (height > s->slice.height
2473 || s->img->hmargin
2474 || s->img->vmargin
2475 || s->img->mask
2476 || s->img->pixmap == 0
2477 || s->width != s->background_width)
2479 if (s->img->mask)
2481 /* Create a pixmap as large as the glyph string. Fill it
2482 with the background color. Copy the image to it, using
2483 its mask. Copy the temporary pixmap to the display. */
2484 Screen *screen = FRAME_X_SCREEN (s->f);
2485 int depth = DefaultDepthOfScreen (screen);
2487 /* Create a pixmap as large as the glyph string. */
2488 pixmap = XCreatePixmap (s->display, s->window,
2489 s->background_width,
2490 s->height, depth);
2492 /* Don't clip in the following because we're working on the
2493 pixmap. */
2494 XSetClipMask (s->display, s->gc, None);
2496 /* Fill the pixmap with the background color/stipple. */
2497 if (s->stippled_p)
2499 /* Fill background with a stipple pattern. */
2500 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
2501 XSetTSOrigin (s->display, s->gc, - s->x, - s->y);
2502 XFillRectangle (s->display, pixmap, s->gc,
2503 0, 0, s->background_width, s->height);
2504 XSetFillStyle (s->display, s->gc, FillSolid);
2505 XSetTSOrigin (s->display, s->gc, 0, 0);
2507 else
2509 XGCValues xgcv;
2510 XGetGCValues (s->display, s->gc, GCForeground | GCBackground,
2511 &xgcv);
2512 XSetForeground (s->display, s->gc, xgcv.background);
2513 XFillRectangle (s->display, pixmap, s->gc,
2514 0, 0, s->background_width, s->height);
2515 XSetForeground (s->display, s->gc, xgcv.foreground);
2518 else
2520 int x = s->x;
2521 int y = s->y;
2523 if (s->first_glyph->left_box_line_p
2524 && s->slice.x == 0)
2525 x += box_line_hwidth;
2527 if (s->slice.y == 0)
2528 y += box_line_vwidth;
2530 x_draw_glyph_string_bg_rect (s, x, y, s->background_width, height);
2533 s->background_filled_p = 1;
2536 /* Draw the foreground. */
2537 if (pixmap != None)
2539 x_draw_image_foreground_1 (s, pixmap);
2540 x_set_glyph_string_clipping (s);
2541 XCopyArea (s->display, pixmap, s->window, s->gc,
2542 0, 0, s->background_width, s->height, s->x, s->y);
2543 XFreePixmap (s->display, pixmap);
2545 else
2546 x_draw_image_foreground (s);
2548 /* If we must draw a relief around the image, do it. */
2549 if (s->img->relief
2550 || s->hl == DRAW_IMAGE_RAISED
2551 || s->hl == DRAW_IMAGE_SUNKEN)
2552 x_draw_image_relief (s);
2556 /* Draw stretch glyph string S. */
2558 static void
2559 x_draw_stretch_glyph_string (struct glyph_string *s)
2561 eassert (s->first_glyph->type == STRETCH_GLYPH);
2563 if (s->hl == DRAW_CURSOR
2564 && !x_stretch_cursor_p)
2566 /* If `x-stretch-cursor' is nil, don't draw a block cursor as
2567 wide as the stretch glyph. */
2568 int width, background_width = s->background_width;
2569 int x = s->x;
2571 if (!s->row->reversed_p)
2573 int left_x = window_box_left_offset (s->w, TEXT_AREA);
2575 if (x < left_x)
2577 background_width -= left_x - x;
2578 x = left_x;
2581 else
2583 /* In R2L rows, draw the cursor on the right edge of the
2584 stretch glyph. */
2585 int right_x = window_box_right_offset (s->w, TEXT_AREA);
2587 if (x + background_width > right_x)
2588 background_width -= x - right_x;
2589 x += background_width;
2591 width = min (FRAME_COLUMN_WIDTH (s->f), background_width);
2592 if (s->row->reversed_p)
2593 x -= width;
2595 /* Draw cursor. */
2596 x_draw_glyph_string_bg_rect (s, x, s->y, width, s->height);
2598 /* Clear rest using the GC of the original non-cursor face. */
2599 if (width < background_width)
2601 int y = s->y;
2602 int w = background_width - width, h = s->height;
2603 XRectangle r;
2604 GC gc;
2606 if (!s->row->reversed_p)
2607 x += width;
2608 else
2609 x = s->x;
2610 if (s->row->mouse_face_p
2611 && cursor_in_mouse_face_p (s->w))
2613 x_set_mouse_face_gc (s);
2614 gc = s->gc;
2616 else
2617 gc = s->face->gc;
2619 get_glyph_string_clip_rect (s, &r);
2620 XSetClipRectangles (s->display, gc, 0, 0, &r, 1, Unsorted);
2622 if (s->face->stipple)
2624 /* Fill background with a stipple pattern. */
2625 XSetFillStyle (s->display, gc, FillOpaqueStippled);
2626 XFillRectangle (s->display, s->window, gc, x, y, w, h);
2627 XSetFillStyle (s->display, gc, FillSolid);
2629 else
2631 XGCValues xgcv;
2632 XGetGCValues (s->display, gc, GCForeground | GCBackground, &xgcv);
2633 XSetForeground (s->display, gc, xgcv.background);
2634 XFillRectangle (s->display, s->window, gc, x, y, w, h);
2635 XSetForeground (s->display, gc, xgcv.foreground);
2639 else if (!s->background_filled_p)
2641 int background_width = s->background_width;
2642 int x = s->x, left_x = window_box_left_offset (s->w, TEXT_AREA);
2644 /* Don't draw into left margin, fringe or scrollbar area
2645 except for header line and mode line. */
2646 if (x < left_x && !s->row->mode_line_p)
2648 background_width -= left_x - x;
2649 x = left_x;
2651 if (background_width > 0)
2652 x_draw_glyph_string_bg_rect (s, x, s->y, background_width, s->height);
2655 s->background_filled_p = 1;
2659 Draw a wavy line under S. The wave fills wave_height pixels from y0.
2661 x0 wave_length = 2
2663 y0 * * * * *
2664 |* * * * * * * * *
2665 wave_height = 3 | * * * *
2669 static void
2670 x_draw_underwave (struct glyph_string *s)
2672 int wave_height = 2, wave_length = 3;
2673 int dx, dy, x0, y0, width, x1, y1, x2, y2, odd, xmax;
2674 XRectangle wave_clip, string_clip, final_clip;
2676 dx = wave_length;
2677 dy = wave_height - 1;
2678 x0 = s->x;
2679 y0 = s->ybase + 1;
2680 width = s->width;
2681 xmax = x0 + width;
2683 /* Find and set clipping rectangle */
2685 wave_clip = (XRectangle){ x0, y0, width, wave_height };
2686 get_glyph_string_clip_rect (s, &string_clip);
2688 if (!x_intersect_rectangles (&wave_clip, &string_clip, &final_clip))
2689 return;
2691 XSetClipRectangles (s->display, s->gc, 0, 0, &final_clip, 1, Unsorted);
2693 /* Draw the waves */
2695 x1 = x0 - (x0 % dx);
2696 x2 = x1 + dx;
2697 odd = (x1/dx) % 2;
2698 y1 = y2 = y0;
2700 if (odd)
2701 y1 += dy;
2702 else
2703 y2 += dy;
2705 if (INT_MAX - dx < xmax)
2706 abort ();
2708 while (x1 <= xmax)
2710 XDrawLine (s->display, s->window, s->gc, x1, y1, x2, y2);
2711 x1 = x2, y1 = y2;
2712 x2 += dx, y2 = y0 + odd*dy;
2713 odd = !odd;
2716 /* Restore previous clipping rectangle(s) */
2717 XSetClipRectangles (s->display, s->gc, 0, 0, s->clip, s->num_clips, Unsorted);
2721 /* Draw glyph string S. */
2723 static void
2724 x_draw_glyph_string (struct glyph_string *s)
2726 int relief_drawn_p = 0;
2728 /* If S draws into the background of its successors, draw the
2729 background of the successors first so that S can draw into it.
2730 This makes S->next use XDrawString instead of XDrawImageString. */
2731 if (s->next && s->right_overhang && !s->for_overlaps)
2733 int width;
2734 struct glyph_string *next;
2736 for (width = 0, next = s->next;
2737 next && width < s->right_overhang;
2738 width += next->width, next = next->next)
2739 if (next->first_glyph->type != IMAGE_GLYPH)
2741 x_set_glyph_string_gc (next);
2742 x_set_glyph_string_clipping (next);
2743 if (next->first_glyph->type == STRETCH_GLYPH)
2744 x_draw_stretch_glyph_string (next);
2745 else
2746 x_draw_glyph_string_background (next, 1);
2747 next->num_clips = 0;
2751 /* Set up S->gc, set clipping and draw S. */
2752 x_set_glyph_string_gc (s);
2754 /* Draw relief (if any) in advance for char/composition so that the
2755 glyph string can be drawn over it. */
2756 if (!s->for_overlaps
2757 && s->face->box != FACE_NO_BOX
2758 && (s->first_glyph->type == CHAR_GLYPH
2759 || s->first_glyph->type == COMPOSITE_GLYPH))
2762 x_set_glyph_string_clipping (s);
2763 x_draw_glyph_string_background (s, 1);
2764 x_draw_glyph_string_box (s);
2765 x_set_glyph_string_clipping (s);
2766 relief_drawn_p = 1;
2768 else if (!s->clip_head /* draw_glyphs didn't specify a clip mask. */
2769 && !s->clip_tail
2770 && ((s->prev && s->prev->hl != s->hl && s->left_overhang)
2771 || (s->next && s->next->hl != s->hl && s->right_overhang)))
2772 /* We must clip just this glyph. left_overhang part has already
2773 drawn when s->prev was drawn, and right_overhang part will be
2774 drawn later when s->next is drawn. */
2775 x_set_glyph_string_clipping_exactly (s, s);
2776 else
2777 x_set_glyph_string_clipping (s);
2779 switch (s->first_glyph->type)
2781 case IMAGE_GLYPH:
2782 x_draw_image_glyph_string (s);
2783 break;
2785 case STRETCH_GLYPH:
2786 x_draw_stretch_glyph_string (s);
2787 break;
2789 case CHAR_GLYPH:
2790 if (s->for_overlaps)
2791 s->background_filled_p = 1;
2792 else
2793 x_draw_glyph_string_background (s, 0);
2794 x_draw_glyph_string_foreground (s);
2795 break;
2797 case COMPOSITE_GLYPH:
2798 if (s->for_overlaps || (s->cmp_from > 0
2799 && ! s->first_glyph->u.cmp.automatic))
2800 s->background_filled_p = 1;
2801 else
2802 x_draw_glyph_string_background (s, 1);
2803 x_draw_composite_glyph_string_foreground (s);
2804 break;
2806 case GLYPHLESS_GLYPH:
2807 if (s->for_overlaps)
2808 s->background_filled_p = 1;
2809 else
2810 x_draw_glyph_string_background (s, 1);
2811 x_draw_glyphless_glyph_string_foreground (s);
2812 break;
2814 default:
2815 abort ();
2818 if (!s->for_overlaps)
2820 /* Draw underline. */
2821 if (s->face->underline_p)
2823 if (s->face->underline_type == FACE_UNDER_WAVE)
2825 if (s->face->underline_defaulted_p)
2826 x_draw_underwave (s);
2827 else
2829 XGCValues xgcv;
2830 XGetGCValues (s->display, s->gc, GCForeground, &xgcv);
2831 XSetForeground (s->display, s->gc, s->face->underline_color);
2832 x_draw_underwave (s);
2833 XSetForeground (s->display, s->gc, xgcv.foreground);
2836 else if (s->face->underline_type == FACE_UNDER_LINE)
2838 unsigned long thickness, position;
2839 int y;
2841 if (s->prev && s->prev->face->underline_p)
2843 /* We use the same underline style as the previous one. */
2844 thickness = s->prev->underline_thickness;
2845 position = s->prev->underline_position;
2847 else
2849 /* Get the underline thickness. Default is 1 pixel. */
2850 if (s->font && s->font->underline_thickness > 0)
2851 thickness = s->font->underline_thickness;
2852 else
2853 thickness = 1;
2854 if (x_underline_at_descent_line)
2855 position = (s->height - thickness) - (s->ybase - s->y);
2856 else
2858 /* Get the underline position. This is the recommended
2859 vertical offset in pixels from the baseline to the top of
2860 the underline. This is a signed value according to the
2861 specs, and its default is
2863 ROUND ((maximum descent) / 2), with
2864 ROUND(x) = floor (x + 0.5) */
2866 if (x_use_underline_position_properties
2867 && s->font && s->font->underline_position >= 0)
2868 position = s->font->underline_position;
2869 else if (s->font)
2870 position = (s->font->descent + 1) / 2;
2871 else
2872 position = underline_minimum_offset;
2874 position = max (position, underline_minimum_offset);
2876 /* Check the sanity of thickness and position. We should
2877 avoid drawing underline out of the current line area. */
2878 if (s->y + s->height <= s->ybase + position)
2879 position = (s->height - 1) - (s->ybase - s->y);
2880 if (s->y + s->height < s->ybase + position + thickness)
2881 thickness = (s->y + s->height) - (s->ybase + position);
2882 s->underline_thickness = thickness;
2883 s->underline_position = position;
2884 y = s->ybase + position;
2885 if (s->face->underline_defaulted_p)
2886 XFillRectangle (s->display, s->window, s->gc,
2887 s->x, y, s->width, thickness);
2888 else
2890 XGCValues xgcv;
2891 XGetGCValues (s->display, s->gc, GCForeground, &xgcv);
2892 XSetForeground (s->display, s->gc, s->face->underline_color);
2893 XFillRectangle (s->display, s->window, s->gc,
2894 s->x, y, s->width, thickness);
2895 XSetForeground (s->display, s->gc, xgcv.foreground);
2899 /* Draw overline. */
2900 if (s->face->overline_p)
2902 unsigned long dy = 0, h = 1;
2904 if (s->face->overline_color_defaulted_p)
2905 XFillRectangle (s->display, s->window, s->gc, s->x, s->y + dy,
2906 s->width, h);
2907 else
2909 XGCValues xgcv;
2910 XGetGCValues (s->display, s->gc, GCForeground, &xgcv);
2911 XSetForeground (s->display, s->gc, s->face->overline_color);
2912 XFillRectangle (s->display, s->window, s->gc, s->x, s->y + dy,
2913 s->width, h);
2914 XSetForeground (s->display, s->gc, xgcv.foreground);
2918 /* Draw strike-through. */
2919 if (s->face->strike_through_p)
2921 unsigned long h = 1;
2922 unsigned long dy = (s->height - h) / 2;
2924 if (s->face->strike_through_color_defaulted_p)
2925 XFillRectangle (s->display, s->window, s->gc, s->x, s->y + dy,
2926 s->width, h);
2927 else
2929 XGCValues xgcv;
2930 XGetGCValues (s->display, s->gc, GCForeground, &xgcv);
2931 XSetForeground (s->display, s->gc, s->face->strike_through_color);
2932 XFillRectangle (s->display, s->window, s->gc, s->x, s->y + dy,
2933 s->width, h);
2934 XSetForeground (s->display, s->gc, xgcv.foreground);
2938 /* Draw relief if not yet drawn. */
2939 if (!relief_drawn_p && s->face->box != FACE_NO_BOX)
2940 x_draw_glyph_string_box (s);
2942 if (s->prev)
2944 struct glyph_string *prev;
2946 for (prev = s->prev; prev; prev = prev->prev)
2947 if (prev->hl != s->hl
2948 && prev->x + prev->width + prev->right_overhang > s->x)
2950 /* As prev was drawn while clipped to its own area, we
2951 must draw the right_overhang part using s->hl now. */
2952 enum draw_glyphs_face save = prev->hl;
2954 prev->hl = s->hl;
2955 x_set_glyph_string_gc (prev);
2956 x_set_glyph_string_clipping_exactly (s, prev);
2957 if (prev->first_glyph->type == CHAR_GLYPH)
2958 x_draw_glyph_string_foreground (prev);
2959 else
2960 x_draw_composite_glyph_string_foreground (prev);
2961 XSetClipMask (prev->display, prev->gc, None);
2962 prev->hl = save;
2963 prev->num_clips = 0;
2967 if (s->next)
2969 struct glyph_string *next;
2971 for (next = s->next; next; next = next->next)
2972 if (next->hl != s->hl
2973 && next->x - next->left_overhang < s->x + s->width)
2975 /* As next will be drawn while clipped to its own area,
2976 we must draw the left_overhang part using s->hl now. */
2977 enum draw_glyphs_face save = next->hl;
2979 next->hl = s->hl;
2980 x_set_glyph_string_gc (next);
2981 x_set_glyph_string_clipping_exactly (s, next);
2982 if (next->first_glyph->type == CHAR_GLYPH)
2983 x_draw_glyph_string_foreground (next);
2984 else
2985 x_draw_composite_glyph_string_foreground (next);
2986 XSetClipMask (next->display, next->gc, None);
2987 next->hl = save;
2988 next->num_clips = 0;
2993 /* Reset clipping. */
2994 XSetClipMask (s->display, s->gc, None);
2995 s->num_clips = 0;
2998 /* Shift display to make room for inserted glyphs. */
3000 static void
3001 x_shift_glyphs_for_insert (struct frame *f, int x, int y, int width, int height, int shift_by)
3003 XCopyArea (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), FRAME_X_WINDOW (f),
3004 f->output_data.x->normal_gc,
3005 x, y, width, height,
3006 x + shift_by, y);
3009 /* Delete N glyphs at the nominal cursor position. Not implemented
3010 for X frames. */
3012 static void
3013 x_delete_glyphs (struct frame *f, register int n)
3015 abort ();
3019 /* Like XClearArea, but check that WIDTH and HEIGHT are reasonable.
3020 If they are <= 0, this is probably an error. */
3022 void
3023 x_clear_area (Display *dpy, Window window, int x, int y, int width, int height, int exposures)
3025 eassert (width > 0 && height > 0);
3026 XClearArea (dpy, window, x, y, width, height, exposures);
3030 /* Clear an entire frame. */
3032 static void
3033 x_clear_frame (struct frame *f)
3035 /* Clearing the frame will erase any cursor, so mark them all as no
3036 longer visible. */
3037 mark_window_cursors_off (XWINDOW (FRAME_ROOT_WINDOW (f)));
3038 output_cursor.hpos = output_cursor.vpos = 0;
3039 output_cursor.x = -1;
3041 /* We don't set the output cursor here because there will always
3042 follow an explicit cursor_to. */
3043 BLOCK_INPUT;
3045 XClearWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
3047 /* We have to clear the scroll bars. If we have changed colors or
3048 something like that, then they should be notified. */
3049 x_scroll_bar_clear (f);
3051 #if defined (USE_GTK) && defined (USE_TOOLKIT_SCROLL_BARS)
3052 /* Make sure scroll bars are redrawn. As they aren't redrawn by
3053 redisplay, do it here. */
3054 if (FRAME_GTK_WIDGET (f))
3055 gtk_widget_queue_draw (FRAME_GTK_WIDGET (f));
3056 #endif
3058 XFlush (FRAME_X_DISPLAY (f));
3060 UNBLOCK_INPUT;
3065 /* Invert the middle quarter of the frame for .15 sec. */
3067 static void
3068 XTflash (struct frame *f)
3070 BLOCK_INPUT;
3073 #ifdef USE_GTK
3074 /* Use Gdk routines to draw. This way, we won't draw over scroll bars
3075 when the scroll bars and the edit widget share the same X window. */
3076 GdkWindow *window = gtk_widget_get_window (FRAME_GTK_WIDGET (f));
3077 #ifdef HAVE_GTK3
3078 cairo_t *cr = gdk_cairo_create (window);
3079 cairo_set_source_rgb (cr, 1, 1, 1);
3080 cairo_set_operator (cr, CAIRO_OPERATOR_DIFFERENCE);
3081 #define XFillRectangle(d, win, gc, x, y, w, h) \
3082 do { \
3083 cairo_rectangle (cr, x, y, w, h); \
3084 cairo_fill (cr); \
3086 while (0)
3087 #else /* ! HAVE_GTK3 */
3088 GdkGCValues vals;
3089 GdkGC *gc;
3090 vals.foreground.pixel = (FRAME_FOREGROUND_PIXEL (f)
3091 ^ FRAME_BACKGROUND_PIXEL (f));
3092 vals.function = GDK_XOR;
3093 gc = gdk_gc_new_with_values (window,
3094 &vals, GDK_GC_FUNCTION | GDK_GC_FOREGROUND);
3095 #define XFillRectangle(d, win, gc, x, y, w, h) \
3096 gdk_draw_rectangle (window, gc, TRUE, x, y, w, h)
3097 #endif /* ! HAVE_GTK3 */
3098 #else /* ! USE_GTK */
3099 GC gc;
3101 /* Create a GC that will use the GXxor function to flip foreground
3102 pixels into background pixels. */
3104 XGCValues values;
3106 values.function = GXxor;
3107 values.foreground = (FRAME_FOREGROUND_PIXEL (f)
3108 ^ FRAME_BACKGROUND_PIXEL (f));
3110 gc = XCreateGC (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3111 GCFunction | GCForeground, &values);
3113 #endif
3115 /* Get the height not including a menu bar widget. */
3116 int height = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, FRAME_LINES (f));
3117 /* Height of each line to flash. */
3118 int flash_height = FRAME_LINE_HEIGHT (f);
3119 /* These will be the left and right margins of the rectangles. */
3120 int flash_left = FRAME_INTERNAL_BORDER_WIDTH (f);
3121 int flash_right = FRAME_PIXEL_WIDTH (f) - FRAME_INTERNAL_BORDER_WIDTH (f);
3123 int width;
3125 /* Don't flash the area between a scroll bar and the frame
3126 edge it is next to. */
3127 switch (FRAME_VERTICAL_SCROLL_BAR_TYPE (f))
3129 case vertical_scroll_bar_left:
3130 flash_left += VERTICAL_SCROLL_BAR_WIDTH_TRIM;
3131 break;
3133 case vertical_scroll_bar_right:
3134 flash_right -= VERTICAL_SCROLL_BAR_WIDTH_TRIM;
3135 break;
3137 default:
3138 break;
3141 width = flash_right - flash_left;
3143 /* If window is tall, flash top and bottom line. */
3144 if (height > 3 * FRAME_LINE_HEIGHT (f))
3146 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
3147 flash_left,
3148 (FRAME_INTERNAL_BORDER_WIDTH (f)
3149 + FRAME_TOP_MARGIN_HEIGHT (f)),
3150 width, flash_height);
3151 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
3152 flash_left,
3153 (height - flash_height
3154 - FRAME_INTERNAL_BORDER_WIDTH (f)),
3155 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 x_flush (f);
3167 EMACS_TIME delay = make_emacs_time (0, 150 * 1000 * 1000);
3168 EMACS_TIME wakeup = add_emacs_time (current_emacs_time (), delay);
3170 /* Keep waiting until past the time wakeup or any input gets
3171 available. */
3172 while (! detect_input_pending ())
3174 EMACS_TIME current = current_emacs_time ();
3175 EMACS_TIME timeout;
3177 /* Break if result would not be positive. */
3178 if (EMACS_TIME_LE (wakeup, current))
3179 break;
3181 /* How long `select' should wait. */
3182 timeout = make_emacs_time (0, 10 * 1000 * 1000);
3184 /* Try to wait that long--but we might wake up sooner. */
3185 pselect (0, NULL, NULL, NULL, &timeout, NULL);
3189 /* If window is tall, flash top and bottom line. */
3190 if (height > 3 * FRAME_LINE_HEIGHT (f))
3192 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
3193 flash_left,
3194 (FRAME_INTERNAL_BORDER_WIDTH (f)
3195 + FRAME_TOP_MARGIN_HEIGHT (f)),
3196 width, flash_height);
3197 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
3198 flash_left,
3199 (height - flash_height
3200 - FRAME_INTERNAL_BORDER_WIDTH (f)),
3201 width, flash_height);
3203 else
3204 /* If it is short, flash it all. */
3205 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
3206 flash_left, FRAME_INTERNAL_BORDER_WIDTH (f),
3207 width, height - 2 * FRAME_INTERNAL_BORDER_WIDTH (f));
3209 #ifdef USE_GTK
3210 #ifdef HAVE_GTK3
3211 cairo_destroy (cr);
3212 #else
3213 g_object_unref (G_OBJECT (gc));
3214 #endif
3215 #undef XFillRectangle
3216 #else
3217 XFreeGC (FRAME_X_DISPLAY (f), gc);
3218 #endif
3219 x_flush (f);
3223 UNBLOCK_INPUT;
3227 static void
3228 XTtoggle_invisible_pointer (FRAME_PTR f, int invisible)
3230 BLOCK_INPUT;
3231 if (invisible)
3233 if (FRAME_X_DISPLAY_INFO (f)->invisible_cursor != 0)
3234 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3235 FRAME_X_DISPLAY_INFO (f)->invisible_cursor);
3237 else
3238 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3239 f->output_data.x->current_cursor);
3240 f->pointer_invisible = invisible;
3241 UNBLOCK_INPUT;
3245 /* Make audible bell. */
3247 static void
3248 XTring_bell (struct frame *f)
3250 if (FRAME_X_DISPLAY (f))
3252 if (visible_bell)
3253 XTflash (f);
3254 else
3256 BLOCK_INPUT;
3257 XBell (FRAME_X_DISPLAY (f), 0);
3258 XFlush (FRAME_X_DISPLAY (f));
3259 UNBLOCK_INPUT;
3265 /* Specify how many text lines, from the top of the window,
3266 should be affected by insert-lines and delete-lines operations.
3267 This, and those operations, are used only within an update
3268 that is bounded by calls to x_update_begin and x_update_end. */
3270 static void
3271 XTset_terminal_window (struct frame *f, int n)
3273 /* This function intentionally left blank. */
3278 /***********************************************************************
3279 Line Dance
3280 ***********************************************************************/
3282 /* Perform an insert-lines or delete-lines operation, inserting N
3283 lines or deleting -N lines at vertical position VPOS. */
3285 static void
3286 x_ins_del_lines (struct frame *f, int vpos, int n)
3288 abort ();
3292 /* Scroll part of the display as described by RUN. */
3294 static void
3295 x_scroll_run (struct window *w, struct run *run)
3297 struct frame *f = XFRAME (w->frame);
3298 int x, y, width, height, from_y, to_y, bottom_y;
3300 /* Get frame-relative bounding box of the text display area of W,
3301 without mode lines. Include in this box the left and right
3302 fringe of W. */
3303 window_box (w, -1, &x, &y, &width, &height);
3305 #ifdef USE_TOOLKIT_SCROLL_BARS
3306 /* If the fringe is adjacent to the left (right) scroll bar of a
3307 leftmost (rightmost, respectively) window, then extend its
3308 background to the gap between the fringe and the bar. */
3309 if ((WINDOW_LEFTMOST_P (w)
3310 && WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w))
3311 || (WINDOW_RIGHTMOST_P (w)
3312 && WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w)))
3314 int sb_width = WINDOW_CONFIG_SCROLL_BAR_WIDTH (w);
3316 if (sb_width > 0)
3318 int bar_area_x = WINDOW_SCROLL_BAR_AREA_X (w);
3319 int bar_area_width = (WINDOW_CONFIG_SCROLL_BAR_COLS (w)
3320 * FRAME_COLUMN_WIDTH (f));
3322 if (bar_area_x + bar_area_width == x)
3324 x = bar_area_x + sb_width;
3325 width += bar_area_width - sb_width;
3327 else if (x + width == bar_area_x)
3328 width += bar_area_width - sb_width;
3331 #endif
3333 from_y = WINDOW_TO_FRAME_PIXEL_Y (w, run->current_y);
3334 to_y = WINDOW_TO_FRAME_PIXEL_Y (w, run->desired_y);
3335 bottom_y = y + height;
3337 if (to_y < from_y)
3339 /* Scrolling up. Make sure we don't copy part of the mode
3340 line at the bottom. */
3341 if (from_y + run->height > bottom_y)
3342 height = bottom_y - from_y;
3343 else
3344 height = run->height;
3346 else
3348 /* Scrolling down. Make sure we don't copy over the mode line.
3349 at the bottom. */
3350 if (to_y + run->height > bottom_y)
3351 height = bottom_y - to_y;
3352 else
3353 height = run->height;
3356 BLOCK_INPUT;
3358 /* Cursor off. Will be switched on again in x_update_window_end. */
3359 updated_window = w;
3360 x_clear_cursor (w);
3362 XCopyArea (FRAME_X_DISPLAY (f),
3363 FRAME_X_WINDOW (f), FRAME_X_WINDOW (f),
3364 f->output_data.x->normal_gc,
3365 x, from_y,
3366 width, height,
3367 x, to_y);
3369 UNBLOCK_INPUT;
3374 /***********************************************************************
3375 Exposure Events
3376 ***********************************************************************/
3379 static void
3380 frame_highlight (struct frame *f)
3382 /* We used to only do this if Vx_no_window_manager was non-nil, but
3383 the ICCCM (section 4.1.6) says that the window's border pixmap
3384 and border pixel are window attributes which are "private to the
3385 client", so we can always change it to whatever we want. */
3386 BLOCK_INPUT;
3387 /* I recently started to get errors in this XSetWindowBorder, depending on
3388 the window-manager in use, tho something more is at play since I've been
3389 using that same window-manager binary for ever. Let's not crash just
3390 because of this (bug#9310). */
3391 x_catch_errors (FRAME_X_DISPLAY (f));
3392 XSetWindowBorder (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3393 f->output_data.x->border_pixel);
3394 x_uncatch_errors ();
3395 UNBLOCK_INPUT;
3396 x_update_cursor (f, 1);
3397 x_set_frame_alpha (f);
3400 static void
3401 frame_unhighlight (struct frame *f)
3403 /* We used to only do this if Vx_no_window_manager was non-nil, but
3404 the ICCCM (section 4.1.6) says that the window's border pixmap
3405 and border pixel are window attributes which are "private to the
3406 client", so we can always change it to whatever we want. */
3407 BLOCK_INPUT;
3408 /* Same as above for XSetWindowBorder (bug#9310). */
3409 x_catch_errors (FRAME_X_DISPLAY (f));
3410 XSetWindowBorderPixmap (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3411 f->output_data.x->border_tile);
3412 x_uncatch_errors ();
3413 UNBLOCK_INPUT;
3414 x_update_cursor (f, 1);
3415 x_set_frame_alpha (f);
3418 /* The focus has changed. Update the frames as necessary to reflect
3419 the new situation. Note that we can't change the selected frame
3420 here, because the Lisp code we are interrupting might become confused.
3421 Each event gets marked with the frame in which it occurred, so the
3422 Lisp code can tell when the switch took place by examining the events. */
3424 static void
3425 x_new_focus_frame (struct x_display_info *dpyinfo, struct frame *frame)
3427 struct frame *old_focus = dpyinfo->x_focus_frame;
3429 if (frame != dpyinfo->x_focus_frame)
3431 /* Set this before calling other routines, so that they see
3432 the correct value of x_focus_frame. */
3433 dpyinfo->x_focus_frame = frame;
3435 if (old_focus && old_focus->auto_lower)
3436 x_lower_frame (old_focus);
3438 if (dpyinfo->x_focus_frame && dpyinfo->x_focus_frame->auto_raise)
3439 pending_autoraise_frame = dpyinfo->x_focus_frame;
3440 else
3441 pending_autoraise_frame = 0;
3444 x_frame_rehighlight (dpyinfo);
3447 /* Handle FocusIn and FocusOut state changes for FRAME.
3448 If FRAME has focus and there exists more than one frame, puts
3449 a FOCUS_IN_EVENT into *BUFP. */
3451 static void
3452 x_focus_changed (int type, int state, struct x_display_info *dpyinfo, struct frame *frame, struct input_event *bufp)
3454 if (type == FocusIn)
3456 if (dpyinfo->x_focus_event_frame != frame)
3458 x_new_focus_frame (dpyinfo, frame);
3459 dpyinfo->x_focus_event_frame = frame;
3461 /* Don't stop displaying the initial startup message
3462 for a switch-frame event we don't need. */
3463 if (NILP (Vterminal_frame)
3464 && CONSP (Vframe_list)
3465 && !NILP (XCDR (Vframe_list)))
3467 bufp->kind = FOCUS_IN_EVENT;
3468 XSETFRAME (bufp->frame_or_window, frame);
3472 frame->output_data.x->focus_state |= state;
3474 #ifdef HAVE_X_I18N
3475 if (FRAME_XIC (frame))
3476 XSetICFocus (FRAME_XIC (frame));
3477 #endif
3479 else if (type == FocusOut)
3481 frame->output_data.x->focus_state &= ~state;
3483 if (dpyinfo->x_focus_event_frame == frame)
3485 dpyinfo->x_focus_event_frame = 0;
3486 x_new_focus_frame (dpyinfo, 0);
3489 #ifdef HAVE_X_I18N
3490 if (FRAME_XIC (frame))
3491 XUnsetICFocus (FRAME_XIC (frame));
3492 #endif
3493 if (frame->pointer_invisible)
3494 XTtoggle_invisible_pointer (frame, 0);
3498 /* The focus may have changed. Figure out if it is a real focus change,
3499 by checking both FocusIn/Out and Enter/LeaveNotify events.
3501 Returns FOCUS_IN_EVENT event in *BUFP. */
3503 static void
3504 x_detect_focus_change (struct x_display_info *dpyinfo, XEvent *event, struct input_event *bufp)
3506 struct frame *frame;
3508 frame = x_any_window_to_frame (dpyinfo, event->xany.window);
3509 if (! frame)
3510 return;
3512 switch (event->type)
3514 case EnterNotify:
3515 case LeaveNotify:
3517 struct frame *focus_frame = dpyinfo->x_focus_event_frame;
3518 int focus_state
3519 = focus_frame ? focus_frame->output_data.x->focus_state : 0;
3521 if (event->xcrossing.detail != NotifyInferior
3522 && event->xcrossing.focus
3523 && ! (focus_state & FOCUS_EXPLICIT))
3524 x_focus_changed ((event->type == EnterNotify ? FocusIn : FocusOut),
3525 FOCUS_IMPLICIT,
3526 dpyinfo, frame, bufp);
3528 break;
3530 case FocusIn:
3531 case FocusOut:
3532 x_focus_changed (event->type,
3533 (event->xfocus.detail == NotifyPointer ?
3534 FOCUS_IMPLICIT : FOCUS_EXPLICIT),
3535 dpyinfo, frame, bufp);
3536 break;
3538 case ClientMessage:
3539 if (event->xclient.message_type == dpyinfo->Xatom_XEMBED)
3541 enum xembed_message msg = event->xclient.data.l[1];
3542 x_focus_changed ((msg == XEMBED_FOCUS_IN ? FocusIn : FocusOut),
3543 FOCUS_EXPLICIT, dpyinfo, frame, bufp);
3545 break;
3550 #if defined HAVE_MENUS && !defined USE_X_TOOLKIT && !defined USE_GTK
3551 /* Handle an event saying the mouse has moved out of an Emacs frame. */
3553 void
3554 x_mouse_leave (struct x_display_info *dpyinfo)
3556 x_new_focus_frame (dpyinfo, dpyinfo->x_focus_event_frame);
3558 #endif
3560 /* The focus has changed, or we have redirected a frame's focus to
3561 another frame (this happens when a frame uses a surrogate
3562 mini-buffer frame). Shift the highlight as appropriate.
3564 The FRAME argument doesn't necessarily have anything to do with which
3565 frame is being highlighted or un-highlighted; we only use it to find
3566 the appropriate X display info. */
3568 static void
3569 XTframe_rehighlight (struct frame *frame)
3571 x_frame_rehighlight (FRAME_X_DISPLAY_INFO (frame));
3574 static void
3575 x_frame_rehighlight (struct x_display_info *dpyinfo)
3577 struct frame *old_highlight = dpyinfo->x_highlight_frame;
3579 if (dpyinfo->x_focus_frame)
3581 dpyinfo->x_highlight_frame
3582 = ((FRAMEP (FRAME_FOCUS_FRAME (dpyinfo->x_focus_frame)))
3583 ? XFRAME (FRAME_FOCUS_FRAME (dpyinfo->x_focus_frame))
3584 : dpyinfo->x_focus_frame);
3585 if (! FRAME_LIVE_P (dpyinfo->x_highlight_frame))
3587 fset_focus_frame (dpyinfo->x_focus_frame, Qnil);
3588 dpyinfo->x_highlight_frame = dpyinfo->x_focus_frame;
3591 else
3592 dpyinfo->x_highlight_frame = 0;
3594 if (dpyinfo->x_highlight_frame != old_highlight)
3596 if (old_highlight)
3597 frame_unhighlight (old_highlight);
3598 if (dpyinfo->x_highlight_frame)
3599 frame_highlight (dpyinfo->x_highlight_frame);
3605 /* Keyboard processing - modifier keys, vendor-specific keysyms, etc. */
3607 /* Initialize mode_switch_bit and modifier_meaning. */
3608 static void
3609 x_find_modifier_meanings (struct x_display_info *dpyinfo)
3611 int min_code, max_code;
3612 KeySym *syms;
3613 int syms_per_code;
3614 XModifierKeymap *mods;
3616 dpyinfo->meta_mod_mask = 0;
3617 dpyinfo->shift_lock_mask = 0;
3618 dpyinfo->alt_mod_mask = 0;
3619 dpyinfo->super_mod_mask = 0;
3620 dpyinfo->hyper_mod_mask = 0;
3622 XDisplayKeycodes (dpyinfo->display, &min_code, &max_code);
3624 syms = XGetKeyboardMapping (dpyinfo->display,
3625 min_code, max_code - min_code + 1,
3626 &syms_per_code);
3627 mods = XGetModifierMapping (dpyinfo->display);
3629 /* Scan the modifier table to see which modifier bits the Meta and
3630 Alt keysyms are on. */
3632 int row, col; /* The row and column in the modifier table. */
3633 int found_alt_or_meta;
3635 for (row = 3; row < 8; row++)
3637 found_alt_or_meta = 0;
3638 for (col = 0; col < mods->max_keypermod; col++)
3640 KeyCode code = mods->modifiermap[(row * mods->max_keypermod) + col];
3642 /* Zeroes are used for filler. Skip them. */
3643 if (code == 0)
3644 continue;
3646 /* Are any of this keycode's keysyms a meta key? */
3648 int code_col;
3650 for (code_col = 0; code_col < syms_per_code; code_col++)
3652 int sym = syms[((code - min_code) * syms_per_code) + code_col];
3654 switch (sym)
3656 case XK_Meta_L:
3657 case XK_Meta_R:
3658 found_alt_or_meta = 1;
3659 dpyinfo->meta_mod_mask |= (1 << row);
3660 break;
3662 case XK_Alt_L:
3663 case XK_Alt_R:
3664 found_alt_or_meta = 1;
3665 dpyinfo->alt_mod_mask |= (1 << row);
3666 break;
3668 case XK_Hyper_L:
3669 case XK_Hyper_R:
3670 if (!found_alt_or_meta)
3671 dpyinfo->hyper_mod_mask |= (1 << row);
3672 code_col = syms_per_code;
3673 col = mods->max_keypermod;
3674 break;
3676 case XK_Super_L:
3677 case XK_Super_R:
3678 if (!found_alt_or_meta)
3679 dpyinfo->super_mod_mask |= (1 << row);
3680 code_col = syms_per_code;
3681 col = mods->max_keypermod;
3682 break;
3684 case XK_Shift_Lock:
3685 /* Ignore this if it's not on the lock modifier. */
3686 if (!found_alt_or_meta && ((1 << row) == LockMask))
3687 dpyinfo->shift_lock_mask = LockMask;
3688 code_col = syms_per_code;
3689 col = mods->max_keypermod;
3690 break;
3698 /* If we couldn't find any meta keys, accept any alt keys as meta keys. */
3699 if (! dpyinfo->meta_mod_mask)
3701 dpyinfo->meta_mod_mask = dpyinfo->alt_mod_mask;
3702 dpyinfo->alt_mod_mask = 0;
3705 /* If some keys are both alt and meta,
3706 make them just meta, not alt. */
3707 if (dpyinfo->alt_mod_mask & dpyinfo->meta_mod_mask)
3709 dpyinfo->alt_mod_mask &= ~dpyinfo->meta_mod_mask;
3712 XFree (syms);
3713 XFreeModifiermap (mods);
3716 /* Convert between the modifier bits X uses and the modifier bits
3717 Emacs uses. */
3720 x_x_to_emacs_modifiers (struct x_display_info *dpyinfo, int state)
3722 int mod_meta = meta_modifier;
3723 int mod_alt = alt_modifier;
3724 int mod_hyper = hyper_modifier;
3725 int mod_super = super_modifier;
3726 Lisp_Object tem;
3728 tem = Fget (Vx_alt_keysym, Qmodifier_value);
3729 if (INTEGERP (tem)) mod_alt = XINT (tem) & INT_MAX;
3730 tem = Fget (Vx_meta_keysym, Qmodifier_value);
3731 if (INTEGERP (tem)) mod_meta = XINT (tem) & INT_MAX;
3732 tem = Fget (Vx_hyper_keysym, Qmodifier_value);
3733 if (INTEGERP (tem)) mod_hyper = XINT (tem) & INT_MAX;
3734 tem = Fget (Vx_super_keysym, Qmodifier_value);
3735 if (INTEGERP (tem)) mod_super = XINT (tem) & INT_MAX;
3737 return ( ((state & (ShiftMask | dpyinfo->shift_lock_mask)) ? shift_modifier : 0)
3738 | ((state & ControlMask) ? ctrl_modifier : 0)
3739 | ((state & dpyinfo->meta_mod_mask) ? mod_meta : 0)
3740 | ((state & dpyinfo->alt_mod_mask) ? mod_alt : 0)
3741 | ((state & dpyinfo->super_mod_mask) ? mod_super : 0)
3742 | ((state & dpyinfo->hyper_mod_mask) ? mod_hyper : 0));
3745 static int
3746 x_emacs_to_x_modifiers (struct x_display_info *dpyinfo, EMACS_INT state)
3748 EMACS_INT mod_meta = meta_modifier;
3749 EMACS_INT mod_alt = alt_modifier;
3750 EMACS_INT mod_hyper = hyper_modifier;
3751 EMACS_INT mod_super = super_modifier;
3753 Lisp_Object tem;
3755 tem = Fget (Vx_alt_keysym, Qmodifier_value);
3756 if (INTEGERP (tem)) mod_alt = XINT (tem);
3757 tem = Fget (Vx_meta_keysym, Qmodifier_value);
3758 if (INTEGERP (tem)) mod_meta = XINT (tem);
3759 tem = Fget (Vx_hyper_keysym, Qmodifier_value);
3760 if (INTEGERP (tem)) mod_hyper = XINT (tem);
3761 tem = Fget (Vx_super_keysym, Qmodifier_value);
3762 if (INTEGERP (tem)) mod_super = XINT (tem);
3765 return ( ((state & mod_alt) ? dpyinfo->alt_mod_mask : 0)
3766 | ((state & mod_super) ? dpyinfo->super_mod_mask : 0)
3767 | ((state & mod_hyper) ? dpyinfo->hyper_mod_mask : 0)
3768 | ((state & shift_modifier) ? ShiftMask : 0)
3769 | ((state & ctrl_modifier) ? ControlMask : 0)
3770 | ((state & mod_meta) ? dpyinfo->meta_mod_mask : 0));
3773 /* Convert a keysym to its name. */
3775 char *
3776 x_get_keysym_name (int keysym)
3778 char *value;
3780 BLOCK_INPUT;
3781 value = XKeysymToString (keysym);
3782 UNBLOCK_INPUT;
3784 return value;
3789 /* Mouse clicks and mouse movement. Rah. */
3791 /* Prepare a mouse-event in *RESULT for placement in the input queue.
3793 If the event is a button press, then note that we have grabbed
3794 the mouse. */
3796 static Lisp_Object
3797 construct_mouse_click (struct input_event *result, XButtonEvent *event, struct frame *f)
3799 /* Make the event type NO_EVENT; we'll change that when we decide
3800 otherwise. */
3801 result->kind = MOUSE_CLICK_EVENT;
3802 result->code = event->button - Button1;
3803 result->timestamp = event->time;
3804 result->modifiers = (x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO (f),
3805 event->state)
3806 | (event->type == ButtonRelease
3807 ? up_modifier
3808 : down_modifier));
3810 XSETINT (result->x, event->x);
3811 XSETINT (result->y, event->y);
3812 XSETFRAME (result->frame_or_window, f);
3813 result->arg = Qnil;
3814 return Qnil;
3818 /* Function to report a mouse movement to the mainstream Emacs code.
3819 The input handler calls this.
3821 We have received a mouse movement event, which is given in *event.
3822 If the mouse is over a different glyph than it was last time, tell
3823 the mainstream emacs code by setting mouse_moved. If not, ask for
3824 another motion event, so we can check again the next time it moves. */
3826 static XMotionEvent last_mouse_motion_event;
3827 static Lisp_Object last_mouse_motion_frame;
3829 static int
3830 note_mouse_movement (FRAME_PTR frame, XMotionEvent *event)
3832 last_mouse_movement_time = event->time;
3833 last_mouse_motion_event = *event;
3834 XSETFRAME (last_mouse_motion_frame, frame);
3836 if (!FRAME_X_OUTPUT (frame))
3837 return 0;
3839 if (event->window != FRAME_X_WINDOW (frame))
3841 frame->mouse_moved = 1;
3842 last_mouse_scroll_bar = Qnil;
3843 note_mouse_highlight (frame, -1, -1);
3844 last_mouse_glyph_frame = 0;
3845 return 1;
3849 /* Has the mouse moved off the glyph it was on at the last sighting? */
3850 if (frame != last_mouse_glyph_frame
3851 || event->x < last_mouse_glyph.x
3852 || event->x >= last_mouse_glyph.x + last_mouse_glyph.width
3853 || event->y < last_mouse_glyph.y
3854 || event->y >= last_mouse_glyph.y + last_mouse_glyph.height)
3856 frame->mouse_moved = 1;
3857 last_mouse_scroll_bar = Qnil;
3858 note_mouse_highlight (frame, event->x, event->y);
3859 /* Remember which glyph we're now on. */
3860 remember_mouse_glyph (frame, event->x, event->y, &last_mouse_glyph);
3861 last_mouse_glyph_frame = frame;
3862 return 1;
3865 return 0;
3869 /************************************************************************
3870 Mouse Face
3871 ************************************************************************/
3873 static void
3874 redo_mouse_highlight (void)
3876 if (!NILP (last_mouse_motion_frame)
3877 && FRAME_LIVE_P (XFRAME (last_mouse_motion_frame)))
3878 note_mouse_highlight (XFRAME (last_mouse_motion_frame),
3879 last_mouse_motion_event.x,
3880 last_mouse_motion_event.y);
3885 /* Return the current position of the mouse.
3886 *FP should be a frame which indicates which display to ask about.
3888 If the mouse movement started in a scroll bar, set *FP, *BAR_WINDOW,
3889 and *PART to the frame, window, and scroll bar part that the mouse
3890 is over. Set *X and *Y to the portion and whole of the mouse's
3891 position on the scroll bar.
3893 If the mouse movement started elsewhere, set *FP to the frame the
3894 mouse is on, *BAR_WINDOW to nil, and *X and *Y to the character cell
3895 the mouse is over.
3897 Set *TIMESTAMP to the server time-stamp for the time at which the mouse
3898 was at this position.
3900 Don't store anything if we don't have a valid set of values to report.
3902 This clears the mouse_moved flag, so we can wait for the next mouse
3903 movement. */
3905 static void
3906 XTmouse_position (FRAME_PTR *fp, int insist, Lisp_Object *bar_window,
3907 enum scroll_bar_part *part, Lisp_Object *x, Lisp_Object *y,
3908 Time *timestamp)
3910 FRAME_PTR f1;
3912 BLOCK_INPUT;
3914 if (! NILP (last_mouse_scroll_bar) && insist == 0)
3915 x_scroll_bar_report_motion (fp, bar_window, part, x, y, timestamp);
3916 else
3918 Window root;
3919 int root_x, root_y;
3921 Window dummy_window;
3922 int dummy;
3924 Lisp_Object frame, tail;
3926 /* Clear the mouse-moved flag for every frame on this display. */
3927 FOR_EACH_FRAME (tail, frame)
3928 if (FRAME_X_P (XFRAME (frame))
3929 && FRAME_X_DISPLAY (XFRAME (frame)) == FRAME_X_DISPLAY (*fp))
3930 XFRAME (frame)->mouse_moved = 0;
3932 last_mouse_scroll_bar = Qnil;
3934 /* Figure out which root window we're on. */
3935 XQueryPointer (FRAME_X_DISPLAY (*fp),
3936 DefaultRootWindow (FRAME_X_DISPLAY (*fp)),
3938 /* The root window which contains the pointer. */
3939 &root,
3941 /* Trash which we can't trust if the pointer is on
3942 a different screen. */
3943 &dummy_window,
3945 /* The position on that root window. */
3946 &root_x, &root_y,
3948 /* More trash we can't trust. */
3949 &dummy, &dummy,
3951 /* Modifier keys and pointer buttons, about which
3952 we don't care. */
3953 (unsigned int *) &dummy);
3955 /* Now we have a position on the root; find the innermost window
3956 containing the pointer. */
3958 Window win, child;
3959 int win_x, win_y;
3960 int parent_x = 0, parent_y = 0;
3962 win = root;
3964 /* XTranslateCoordinates can get errors if the window
3965 structure is changing at the same time this function
3966 is running. So at least we must not crash from them. */
3968 x_catch_errors (FRAME_X_DISPLAY (*fp));
3970 if (FRAME_X_DISPLAY_INFO (*fp)->grabbed && last_mouse_frame
3971 && FRAME_LIVE_P (last_mouse_frame))
3973 /* If mouse was grabbed on a frame, give coords for that frame
3974 even if the mouse is now outside it. */
3975 XTranslateCoordinates (FRAME_X_DISPLAY (*fp),
3977 /* From-window, to-window. */
3978 root, FRAME_X_WINDOW (last_mouse_frame),
3980 /* From-position, to-position. */
3981 root_x, root_y, &win_x, &win_y,
3983 /* Child of win. */
3984 &child);
3985 f1 = last_mouse_frame;
3987 else
3989 while (1)
3991 XTranslateCoordinates (FRAME_X_DISPLAY (*fp),
3993 /* From-window, to-window. */
3994 root, win,
3996 /* From-position, to-position. */
3997 root_x, root_y, &win_x, &win_y,
3999 /* Child of win. */
4000 &child);
4002 if (child == None || child == win)
4003 break;
4004 #ifdef USE_GTK
4005 /* We don't wan't to know the innermost window. We
4006 want the edit window. For non-Gtk+ the innermost
4007 window is the edit window. For Gtk+ it might not
4008 be. It might be the tool bar for example. */
4009 if (x_window_to_frame (FRAME_X_DISPLAY_INFO (*fp), win))
4010 break;
4011 #endif
4012 win = child;
4013 parent_x = win_x;
4014 parent_y = win_y;
4017 /* Now we know that:
4018 win is the innermost window containing the pointer
4019 (XTC says it has no child containing the pointer),
4020 win_x and win_y are the pointer's position in it
4021 (XTC did this the last time through), and
4022 parent_x and parent_y are the pointer's position in win's parent.
4023 (They are what win_x and win_y were when win was child.
4024 If win is the root window, it has no parent, and
4025 parent_{x,y} are invalid, but that's okay, because we'll
4026 never use them in that case.) */
4028 #ifdef USE_GTK
4029 /* We don't wan't to know the innermost window. We
4030 want the edit window. */
4031 f1 = x_window_to_frame (FRAME_X_DISPLAY_INFO (*fp), win);
4032 #else
4033 /* Is win one of our frames? */
4034 f1 = x_any_window_to_frame (FRAME_X_DISPLAY_INFO (*fp), win);
4035 #endif
4037 #ifdef USE_X_TOOLKIT
4038 /* If we end up with the menu bar window, say it's not
4039 on the frame. */
4040 if (f1 != NULL
4041 && f1->output_data.x->menubar_widget
4042 && win == XtWindow (f1->output_data.x->menubar_widget))
4043 f1 = NULL;
4044 #endif /* USE_X_TOOLKIT */
4047 if (x_had_errors_p (FRAME_X_DISPLAY (*fp)))
4048 f1 = 0;
4050 x_uncatch_errors ();
4052 /* If not, is it one of our scroll bars? */
4053 if (! f1)
4055 struct scroll_bar *bar;
4057 bar = x_window_to_scroll_bar (FRAME_X_DISPLAY (*fp), win);
4059 if (bar)
4061 f1 = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
4062 win_x = parent_x;
4063 win_y = parent_y;
4067 if (f1 == 0 && insist > 0)
4068 f1 = SELECTED_FRAME ();
4070 if (f1)
4072 /* Ok, we found a frame. Store all the values.
4073 last_mouse_glyph is a rectangle used to reduce the
4074 generation of mouse events. To not miss any motion
4075 events, we must divide the frame into rectangles of the
4076 size of the smallest character that could be displayed
4077 on it, i.e. into the same rectangles that matrices on
4078 the frame are divided into. */
4080 remember_mouse_glyph (f1, win_x, win_y, &last_mouse_glyph);
4081 last_mouse_glyph_frame = f1;
4083 *bar_window = Qnil;
4084 *part = 0;
4085 *fp = f1;
4086 XSETINT (*x, win_x);
4087 XSETINT (*y, win_y);
4088 *timestamp = last_mouse_movement_time;
4093 UNBLOCK_INPUT;
4098 /***********************************************************************
4099 Scroll bars
4100 ***********************************************************************/
4102 /* Scroll bar support. */
4104 /* Given an X window ID and a DISPLAY, find the struct scroll_bar which
4105 manages it.
4106 This can be called in GC, so we have to make sure to strip off mark
4107 bits. */
4109 static struct scroll_bar *
4110 x_window_to_scroll_bar (Display *display, Window window_id)
4112 Lisp_Object tail;
4114 #if defined (USE_GTK) && defined (USE_TOOLKIT_SCROLL_BARS)
4115 window_id = (Window) xg_get_scroll_id_for_window (display, window_id);
4116 #endif /* USE_GTK && USE_TOOLKIT_SCROLL_BARS */
4118 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
4120 Lisp_Object frame, bar, condemned;
4122 frame = XCAR (tail);
4123 /* All elements of Vframe_list should be frames. */
4124 if (! FRAMEP (frame))
4125 abort ();
4127 if (! FRAME_X_P (XFRAME (frame)))
4128 continue;
4130 /* Scan this frame's scroll bar list for a scroll bar with the
4131 right window ID. */
4132 condemned = FRAME_CONDEMNED_SCROLL_BARS (XFRAME (frame));
4133 for (bar = FRAME_SCROLL_BARS (XFRAME (frame));
4134 /* This trick allows us to search both the ordinary and
4135 condemned scroll bar lists with one loop. */
4136 ! NILP (bar) || (bar = condemned,
4137 condemned = Qnil,
4138 ! NILP (bar));
4139 bar = XSCROLL_BAR (bar)->next)
4140 if (XSCROLL_BAR (bar)->x_window == window_id &&
4141 FRAME_X_DISPLAY (XFRAME (frame)) == display)
4142 return XSCROLL_BAR (bar);
4145 return NULL;
4149 #if defined USE_LUCID
4151 /* Return the Lucid menu bar WINDOW is part of. Return null
4152 if WINDOW is not part of a menu bar. */
4154 static Widget
4155 x_window_to_menu_bar (Window window)
4157 Lisp_Object tail;
4159 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
4161 if (FRAME_X_P (XFRAME (XCAR (tail))))
4163 Lisp_Object frame = XCAR (tail);
4164 Widget menu_bar = XFRAME (frame)->output_data.x->menubar_widget;
4166 if (menu_bar && xlwmenu_window_p (menu_bar, window))
4167 return menu_bar;
4171 return NULL;
4174 #endif /* USE_LUCID */
4177 /************************************************************************
4178 Toolkit scroll bars
4179 ************************************************************************/
4181 #ifdef USE_TOOLKIT_SCROLL_BARS
4183 static void x_scroll_bar_to_input_event (XEvent *, struct input_event *);
4184 static void x_send_scroll_bar_event (Lisp_Object, int, int, int);
4185 static void x_create_toolkit_scroll_bar (struct frame *,
4186 struct scroll_bar *);
4187 static void x_set_toolkit_scroll_bar_thumb (struct scroll_bar *,
4188 int, int, int);
4191 /* Lisp window being scrolled. Set when starting to interact with
4192 a toolkit scroll bar, reset to nil when ending the interaction. */
4194 static Lisp_Object window_being_scrolled;
4196 /* Last scroll bar part sent in xm_scroll_callback. */
4198 static int last_scroll_bar_part;
4200 /* Whether this is an Xaw with arrow-scrollbars. This should imply
4201 that movements of 1/20 of the screen size are mapped to up/down. */
4203 #ifndef USE_GTK
4204 /* Id of action hook installed for scroll bars. */
4206 static XtActionHookId action_hook_id;
4208 static Boolean xaw3d_arrow_scroll;
4210 /* Whether the drag scrolling maintains the mouse at the top of the
4211 thumb. If not, resizing the thumb needs to be done more carefully
4212 to avoid jerkiness. */
4214 static Boolean xaw3d_pick_top;
4216 /* Action hook installed via XtAppAddActionHook when toolkit scroll
4217 bars are used.. The hook is responsible for detecting when
4218 the user ends an interaction with the scroll bar, and generates
4219 a `end-scroll' SCROLL_BAR_CLICK_EVENT' event if so. */
4221 static void
4222 xt_action_hook (Widget widget, XtPointer client_data, String action_name,
4223 XEvent *event, String *params, Cardinal *num_params)
4225 int scroll_bar_p;
4226 const char *end_action;
4228 #ifdef USE_MOTIF
4229 scroll_bar_p = XmIsScrollBar (widget);
4230 end_action = "Release";
4231 #else /* !USE_MOTIF i.e. use Xaw */
4232 scroll_bar_p = XtIsSubclass (widget, scrollbarWidgetClass);
4233 end_action = "EndScroll";
4234 #endif /* USE_MOTIF */
4236 if (scroll_bar_p
4237 && strcmp (action_name, end_action) == 0
4238 && WINDOWP (window_being_scrolled))
4240 struct window *w;
4242 x_send_scroll_bar_event (window_being_scrolled,
4243 scroll_bar_end_scroll, 0, 0);
4244 w = XWINDOW (window_being_scrolled);
4246 if (!NILP (XSCROLL_BAR (w->vertical_scroll_bar)->dragging))
4248 XSCROLL_BAR (w->vertical_scroll_bar)->dragging = Qnil;
4249 /* The thumb size is incorrect while dragging: fix it. */
4250 set_vertical_scroll_bar (w);
4252 window_being_scrolled = Qnil;
4253 last_scroll_bar_part = -1;
4255 /* Xt timeouts no longer needed. */
4256 toolkit_scroll_bar_interaction = 0;
4259 #endif /* not USE_GTK */
4261 /* A vector of windows used for communication between
4262 x_send_scroll_bar_event and x_scroll_bar_to_input_event. */
4264 static struct window **scroll_bar_windows;
4265 static ptrdiff_t scroll_bar_windows_size;
4268 /* Send a client message with message type Xatom_Scrollbar for a
4269 scroll action to the frame of WINDOW. PART is a value identifying
4270 the part of the scroll bar that was clicked on. PORTION is the
4271 amount to scroll of a whole of WHOLE. */
4273 static void
4274 x_send_scroll_bar_event (Lisp_Object window, int part, int portion, int whole)
4276 XEvent event;
4277 XClientMessageEvent *ev = (XClientMessageEvent *) &event;
4278 struct window *w = XWINDOW (window);
4279 struct frame *f = XFRAME (w->frame);
4280 ptrdiff_t i;
4282 BLOCK_INPUT;
4284 /* Construct a ClientMessage event to send to the frame. */
4285 ev->type = ClientMessage;
4286 ev->message_type = FRAME_X_DISPLAY_INFO (f)->Xatom_Scrollbar;
4287 ev->display = FRAME_X_DISPLAY (f);
4288 ev->window = FRAME_X_WINDOW (f);
4289 ev->format = 32;
4291 /* We can only transfer 32 bits in the XClientMessageEvent, which is
4292 not enough to store a pointer or Lisp_Object on a 64 bit system.
4293 So, store the window in scroll_bar_windows and pass the index
4294 into that array in the event. */
4295 for (i = 0; i < scroll_bar_windows_size; ++i)
4296 if (scroll_bar_windows[i] == NULL)
4297 break;
4299 if (i == scroll_bar_windows_size)
4301 ptrdiff_t old_nbytes =
4302 scroll_bar_windows_size * sizeof *scroll_bar_windows;
4303 ptrdiff_t nbytes;
4304 enum { XClientMessageEvent_MAX = 0x7fffffff };
4305 scroll_bar_windows =
4306 xpalloc (scroll_bar_windows, &scroll_bar_windows_size, 1,
4307 XClientMessageEvent_MAX, sizeof *scroll_bar_windows);
4308 nbytes = scroll_bar_windows_size * sizeof *scroll_bar_windows;
4309 memset (&scroll_bar_windows[i], 0, nbytes - old_nbytes);
4312 scroll_bar_windows[i] = w;
4313 ev->data.l[0] = (long) i;
4314 ev->data.l[1] = (long) part;
4315 ev->data.l[2] = (long) 0;
4316 ev->data.l[3] = (long) portion;
4317 ev->data.l[4] = (long) whole;
4319 /* Make Xt timeouts work while the scroll bar is active. */
4320 #ifdef USE_X_TOOLKIT
4321 toolkit_scroll_bar_interaction = 1;
4322 x_activate_timeout_atimer ();
4323 #endif
4325 /* Setting the event mask to zero means that the message will
4326 be sent to the client that created the window, and if that
4327 window no longer exists, no event will be sent. */
4328 XSendEvent (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), False, 0, &event);
4329 UNBLOCK_INPUT;
4333 /* Transform a scroll bar ClientMessage EVENT to an Emacs input event
4334 in *IEVENT. */
4336 static void
4337 x_scroll_bar_to_input_event (XEvent *event, struct input_event *ievent)
4339 XClientMessageEvent *ev = (XClientMessageEvent *) event;
4340 Lisp_Object window;
4341 struct window *w;
4343 w = scroll_bar_windows[ev->data.l[0]];
4344 scroll_bar_windows[ev->data.l[0]] = NULL;
4346 XSETWINDOW (window, w);
4348 ievent->kind = SCROLL_BAR_CLICK_EVENT;
4349 ievent->frame_or_window = window;
4350 ievent->arg = Qnil;
4351 #ifdef USE_GTK
4352 ievent->timestamp = CurrentTime;
4353 #else
4354 ievent->timestamp =
4355 XtLastTimestampProcessed (FRAME_X_DISPLAY (XFRAME (w->frame)));
4356 #endif
4357 ievent->part = ev->data.l[1];
4358 ievent->code = ev->data.l[2];
4359 ievent->x = make_number ((int) ev->data.l[3]);
4360 ievent->y = make_number ((int) ev->data.l[4]);
4361 ievent->modifiers = 0;
4365 #ifdef USE_MOTIF
4367 /* Minimum and maximum values used for Motif scroll bars. */
4369 #define XM_SB_MAX 10000000
4372 /* Scroll bar callback for Motif scroll bars. WIDGET is the scroll
4373 bar widget. CLIENT_DATA is a pointer to the scroll_bar structure.
4374 CALL_DATA is a pointer to a XmScrollBarCallbackStruct. */
4376 static void
4377 xm_scroll_callback (Widget widget, XtPointer client_data, XtPointer call_data)
4379 struct scroll_bar *bar = (struct scroll_bar *) client_data;
4380 XmScrollBarCallbackStruct *cs = (XmScrollBarCallbackStruct *) call_data;
4381 int part = -1, whole = 0, portion = 0;
4383 switch (cs->reason)
4385 case XmCR_DECREMENT:
4386 bar->dragging = Qnil;
4387 part = scroll_bar_up_arrow;
4388 break;
4390 case XmCR_INCREMENT:
4391 bar->dragging = Qnil;
4392 part = scroll_bar_down_arrow;
4393 break;
4395 case XmCR_PAGE_DECREMENT:
4396 bar->dragging = Qnil;
4397 part = scroll_bar_above_handle;
4398 break;
4400 case XmCR_PAGE_INCREMENT:
4401 bar->dragging = Qnil;
4402 part = scroll_bar_below_handle;
4403 break;
4405 case XmCR_TO_TOP:
4406 bar->dragging = Qnil;
4407 part = scroll_bar_to_top;
4408 break;
4410 case XmCR_TO_BOTTOM:
4411 bar->dragging = Qnil;
4412 part = scroll_bar_to_bottom;
4413 break;
4415 case XmCR_DRAG:
4417 int slider_size;
4419 /* Get the slider size. */
4420 BLOCK_INPUT;
4421 XtVaGetValues (widget, XmNsliderSize, &slider_size, NULL);
4422 UNBLOCK_INPUT;
4424 whole = XM_SB_MAX - slider_size;
4425 portion = min (cs->value, whole);
4426 part = scroll_bar_handle;
4427 bar->dragging = make_number (cs->value);
4429 break;
4431 case XmCR_VALUE_CHANGED:
4432 break;
4435 if (part >= 0)
4437 window_being_scrolled = bar->window;
4438 last_scroll_bar_part = part;
4439 x_send_scroll_bar_event (bar->window, part, portion, whole);
4443 #elif defined USE_GTK
4445 /* Scroll bar callback for GTK scroll bars. WIDGET is the scroll
4446 bar widget. DATA is a pointer to the scroll_bar structure. */
4448 static gboolean
4449 xg_scroll_callback (GtkRange *range,
4450 GtkScrollType scroll,
4451 gdouble value,
4452 gpointer user_data)
4454 struct scroll_bar *bar = (struct scroll_bar *) user_data;
4455 gdouble position;
4456 int part = -1, whole = 0, portion = 0;
4457 GtkAdjustment *adj = GTK_ADJUSTMENT (gtk_range_get_adjustment (range));
4458 FRAME_PTR f = (FRAME_PTR) g_object_get_data (G_OBJECT (range), XG_FRAME_DATA);
4460 if (xg_ignore_gtk_scrollbar) return FALSE;
4461 position = gtk_adjustment_get_value (adj);
4464 switch (scroll)
4466 case GTK_SCROLL_JUMP:
4467 /* Buttons 1 2 or 3 must be grabbed. */
4468 if (FRAME_X_DISPLAY_INFO (f)->grabbed != 0
4469 && FRAME_X_DISPLAY_INFO (f)->grabbed < (1 << 4))
4471 part = scroll_bar_handle;
4472 whole = gtk_adjustment_get_upper (adj) -
4473 gtk_adjustment_get_page_size (adj);
4474 portion = min ((int)position, whole);
4475 bar->dragging = make_number ((int)portion);
4477 break;
4478 case GTK_SCROLL_STEP_BACKWARD:
4479 part = scroll_bar_up_arrow;
4480 bar->dragging = Qnil;
4481 break;
4482 case GTK_SCROLL_STEP_FORWARD:
4483 part = scroll_bar_down_arrow;
4484 bar->dragging = Qnil;
4485 break;
4486 case GTK_SCROLL_PAGE_BACKWARD:
4487 part = scroll_bar_above_handle;
4488 bar->dragging = Qnil;
4489 break;
4490 case GTK_SCROLL_PAGE_FORWARD:
4491 part = scroll_bar_below_handle;
4492 bar->dragging = Qnil;
4493 break;
4496 if (part >= 0)
4498 window_being_scrolled = bar->window;
4499 last_scroll_bar_part = part;
4500 x_send_scroll_bar_event (bar->window, part, portion, whole);
4503 return FALSE;
4506 /* Callback for button release. Sets dragging to Qnil when dragging is done. */
4508 static gboolean
4509 xg_end_scroll_callback (GtkWidget *widget,
4510 GdkEventButton *event,
4511 gpointer user_data)
4513 struct scroll_bar *bar = (struct scroll_bar *) user_data;
4514 bar->dragging = Qnil;
4515 if (WINDOWP (window_being_scrolled))
4517 x_send_scroll_bar_event (window_being_scrolled,
4518 scroll_bar_end_scroll, 0, 0);
4519 window_being_scrolled = Qnil;
4522 return FALSE;
4526 #else /* not USE_GTK and not USE_MOTIF */
4528 /* Xaw scroll bar callback. Invoked when the thumb is dragged.
4529 WIDGET is the scroll bar widget. CLIENT_DATA is a pointer to the
4530 scroll bar struct. CALL_DATA is a pointer to a float saying where
4531 the thumb is. */
4533 static void
4534 xaw_jump_callback (Widget widget, XtPointer client_data, XtPointer call_data)
4536 struct scroll_bar *bar = (struct scroll_bar *) client_data;
4537 float top = *(float *) call_data;
4538 float shown;
4539 int whole, portion, height;
4540 int part;
4542 /* Get the size of the thumb, a value between 0 and 1. */
4543 BLOCK_INPUT;
4544 XtVaGetValues (widget, XtNshown, &shown, XtNheight, &height, NULL);
4545 UNBLOCK_INPUT;
4547 whole = 10000000;
4548 portion = shown < 1 ? top * whole : 0;
4550 if (shown < 1 && (eabs (top + shown - 1) < 1.0f / height))
4551 /* Some derivatives of Xaw refuse to shrink the thumb when you reach
4552 the bottom, so we force the scrolling whenever we see that we're
4553 too close to the bottom (in x_set_toolkit_scroll_bar_thumb
4554 we try to ensure that we always stay two pixels away from the
4555 bottom). */
4556 part = scroll_bar_down_arrow;
4557 else
4558 part = scroll_bar_handle;
4560 window_being_scrolled = bar->window;
4561 bar->dragging = make_number (portion);
4562 last_scroll_bar_part = part;
4563 x_send_scroll_bar_event (bar->window, part, portion, whole);
4567 /* Xaw scroll bar callback. Invoked for incremental scrolling.,
4568 i.e. line or page up or down. WIDGET is the Xaw scroll bar
4569 widget. CLIENT_DATA is a pointer to the scroll_bar structure for
4570 the scroll bar. CALL_DATA is an integer specifying the action that
4571 has taken place. Its magnitude is in the range 0..height of the
4572 scroll bar. Negative values mean scroll towards buffer start.
4573 Values < height of scroll bar mean line-wise movement. */
4575 static void
4576 xaw_scroll_callback (Widget widget, XtPointer client_data, XtPointer call_data)
4578 struct scroll_bar *bar = (struct scroll_bar *) client_data;
4579 /* The position really is stored cast to a pointer. */
4580 int position = (long) call_data;
4581 Dimension height;
4582 int part;
4584 /* Get the height of the scroll bar. */
4585 BLOCK_INPUT;
4586 XtVaGetValues (widget, XtNheight, &height, NULL);
4587 UNBLOCK_INPUT;
4589 if (eabs (position) >= height)
4590 part = (position < 0) ? scroll_bar_above_handle : scroll_bar_below_handle;
4592 /* If Xaw3d was compiled with ARROW_SCROLLBAR,
4593 it maps line-movement to call_data = max(5, height/20). */
4594 else if (xaw3d_arrow_scroll && eabs (position) <= max (5, height / 20))
4595 part = (position < 0) ? scroll_bar_up_arrow : scroll_bar_down_arrow;
4596 else
4597 part = scroll_bar_move_ratio;
4599 window_being_scrolled = bar->window;
4600 bar->dragging = Qnil;
4601 last_scroll_bar_part = part;
4602 x_send_scroll_bar_event (bar->window, part, position, height);
4605 #endif /* not USE_GTK and not USE_MOTIF */
4607 #define SCROLL_BAR_NAME "verticalScrollBar"
4609 /* Create the widget for scroll bar BAR on frame F. Record the widget
4610 and X window of the scroll bar in BAR. */
4612 #ifdef USE_GTK
4613 static void
4614 x_create_toolkit_scroll_bar (struct frame *f, struct scroll_bar *bar)
4616 const char *scroll_bar_name = SCROLL_BAR_NAME;
4618 BLOCK_INPUT;
4619 xg_create_scroll_bar (f, bar, G_CALLBACK (xg_scroll_callback),
4620 G_CALLBACK (xg_end_scroll_callback),
4621 scroll_bar_name);
4622 UNBLOCK_INPUT;
4625 #else /* not USE_GTK */
4627 static void
4628 x_create_toolkit_scroll_bar (struct frame *f, struct scroll_bar *bar)
4630 Window xwindow;
4631 Widget widget;
4632 Arg av[20];
4633 int ac = 0;
4634 const char *scroll_bar_name = SCROLL_BAR_NAME;
4635 unsigned long pixel;
4637 BLOCK_INPUT;
4639 #ifdef USE_MOTIF
4640 /* Set resources. Create the widget. */
4641 XtSetArg (av[ac], XtNmappedWhenManaged, False); ++ac;
4642 XtSetArg (av[ac], XmNminimum, 0); ++ac;
4643 XtSetArg (av[ac], XmNmaximum, XM_SB_MAX); ++ac;
4644 XtSetArg (av[ac], XmNorientation, XmVERTICAL); ++ac;
4645 XtSetArg (av[ac], XmNprocessingDirection, XmMAX_ON_BOTTOM), ++ac;
4646 XtSetArg (av[ac], XmNincrement, 1); ++ac;
4647 XtSetArg (av[ac], XmNpageIncrement, 1); ++ac;
4649 pixel = f->output_data.x->scroll_bar_foreground_pixel;
4650 if (pixel != -1)
4652 XtSetArg (av[ac], XmNforeground, pixel);
4653 ++ac;
4656 pixel = f->output_data.x->scroll_bar_background_pixel;
4657 if (pixel != -1)
4659 XtSetArg (av[ac], XmNbackground, pixel);
4660 ++ac;
4663 widget = XmCreateScrollBar (f->output_data.x->edit_widget,
4664 (char *) scroll_bar_name, av, ac);
4666 /* Add one callback for everything that can happen. */
4667 XtAddCallback (widget, XmNdecrementCallback, xm_scroll_callback,
4668 (XtPointer) bar);
4669 XtAddCallback (widget, XmNdragCallback, xm_scroll_callback,
4670 (XtPointer) bar);
4671 XtAddCallback (widget, XmNincrementCallback, xm_scroll_callback,
4672 (XtPointer) bar);
4673 XtAddCallback (widget, XmNpageDecrementCallback, xm_scroll_callback,
4674 (XtPointer) bar);
4675 XtAddCallback (widget, XmNpageIncrementCallback, xm_scroll_callback,
4676 (XtPointer) bar);
4677 XtAddCallback (widget, XmNtoBottomCallback, xm_scroll_callback,
4678 (XtPointer) bar);
4679 XtAddCallback (widget, XmNtoTopCallback, xm_scroll_callback,
4680 (XtPointer) bar);
4682 /* Realize the widget. Only after that is the X window created. */
4683 XtRealizeWidget (widget);
4685 /* Set the cursor to an arrow. I didn't find a resource to do that.
4686 And I'm wondering why it hasn't an arrow cursor by default. */
4687 XDefineCursor (XtDisplay (widget), XtWindow (widget),
4688 f->output_data.x->nontext_cursor);
4690 #else /* !USE_MOTIF i.e. use Xaw */
4692 /* Set resources. Create the widget. The background of the
4693 Xaw3d scroll bar widget is a little bit light for my taste.
4694 We don't alter it here to let users change it according
4695 to their taste with `emacs*verticalScrollBar.background: xxx'. */
4696 XtSetArg (av[ac], XtNmappedWhenManaged, False); ++ac;
4697 XtSetArg (av[ac], XtNorientation, XtorientVertical); ++ac;
4698 /* For smoother scrolling with Xaw3d -sm */
4699 /* XtSetArg (av[ac], XtNpickTop, True); ++ac; */
4701 pixel = f->output_data.x->scroll_bar_foreground_pixel;
4702 if (pixel != -1)
4704 XtSetArg (av[ac], XtNforeground, pixel);
4705 ++ac;
4708 pixel = f->output_data.x->scroll_bar_background_pixel;
4709 if (pixel != -1)
4711 XtSetArg (av[ac], XtNbackground, pixel);
4712 ++ac;
4715 /* Top/bottom shadow colors. */
4717 /* Allocate them, if necessary. */
4718 if (f->output_data.x->scroll_bar_top_shadow_pixel == -1)
4720 pixel = f->output_data.x->scroll_bar_background_pixel;
4721 if (pixel != -1)
4723 if (!x_alloc_lighter_color (f, FRAME_X_DISPLAY (f),
4724 FRAME_X_COLORMAP (f),
4725 &pixel, 1.2, 0x8000))
4726 pixel = -1;
4727 f->output_data.x->scroll_bar_top_shadow_pixel = pixel;
4730 if (f->output_data.x->scroll_bar_bottom_shadow_pixel == -1)
4732 pixel = f->output_data.x->scroll_bar_background_pixel;
4733 if (pixel != -1)
4735 if (!x_alloc_lighter_color (f, FRAME_X_DISPLAY (f),
4736 FRAME_X_COLORMAP (f),
4737 &pixel, 0.6, 0x4000))
4738 pixel = -1;
4739 f->output_data.x->scroll_bar_bottom_shadow_pixel = pixel;
4743 #ifdef XtNbeNiceToColormap
4744 /* Tell the toolkit about them. */
4745 if (f->output_data.x->scroll_bar_top_shadow_pixel == -1
4746 || f->output_data.x->scroll_bar_bottom_shadow_pixel == -1)
4747 /* We tried to allocate a color for the top/bottom shadow, and
4748 failed, so tell Xaw3d to use dithering instead. */
4749 /* But only if we have a small colormap. Xaw3d can allocate nice
4750 colors itself. */
4752 XtSetArg (av[ac], XtNbeNiceToColormap,
4753 DefaultDepthOfScreen (FRAME_X_SCREEN (f)) < 16);
4754 ++ac;
4756 else
4757 /* Tell what colors Xaw3d should use for the top/bottom shadow, to
4758 be more consistent with other emacs 3d colors, and since Xaw3d is
4759 not good at dealing with allocation failure. */
4761 /* This tells Xaw3d to use real colors instead of dithering for
4762 the shadows. */
4763 XtSetArg (av[ac], XtNbeNiceToColormap, False);
4764 ++ac;
4766 /* Specify the colors. */
4767 pixel = f->output_data.x->scroll_bar_top_shadow_pixel;
4768 if (pixel != -1)
4770 XtSetArg (av[ac], XtNtopShadowPixel, pixel);
4771 ++ac;
4773 pixel = f->output_data.x->scroll_bar_bottom_shadow_pixel;
4774 if (pixel != -1)
4776 XtSetArg (av[ac], XtNbottomShadowPixel, pixel);
4777 ++ac;
4780 #endif
4782 widget = XtCreateWidget (scroll_bar_name, scrollbarWidgetClass,
4783 f->output_data.x->edit_widget, av, ac);
4786 char const *initial = "";
4787 char const *val = initial;
4788 XtVaGetValues (widget, XtNscrollVCursor, (XtPointer) &val,
4789 #ifdef XtNarrowScrollbars
4790 XtNarrowScrollbars, (XtPointer) &xaw3d_arrow_scroll,
4791 #endif
4792 XtNpickTop, (XtPointer) &xaw3d_pick_top, NULL);
4793 if (xaw3d_arrow_scroll || val == initial)
4794 { /* ARROW_SCROLL */
4795 xaw3d_arrow_scroll = True;
4796 /* Isn't that just a personal preference ? --Stef */
4797 XtVaSetValues (widget, XtNcursorName, "top_left_arrow", NULL);
4801 /* Define callbacks. */
4802 XtAddCallback (widget, XtNjumpProc, xaw_jump_callback, (XtPointer) bar);
4803 XtAddCallback (widget, XtNscrollProc, xaw_scroll_callback,
4804 (XtPointer) bar);
4806 /* Realize the widget. Only after that is the X window created. */
4807 XtRealizeWidget (widget);
4809 #endif /* !USE_MOTIF */
4811 /* Install an action hook that lets us detect when the user
4812 finishes interacting with a scroll bar. */
4813 if (action_hook_id == 0)
4814 action_hook_id = XtAppAddActionHook (Xt_app_con, xt_action_hook, 0);
4816 /* Remember X window and widget in the scroll bar vector. */
4817 SET_SCROLL_BAR_X_WIDGET (bar, widget);
4818 xwindow = XtWindow (widget);
4819 bar->x_window = xwindow;
4821 UNBLOCK_INPUT;
4823 #endif /* not USE_GTK */
4826 /* Set the thumb size and position of scroll bar BAR. We are currently
4827 displaying PORTION out of a whole WHOLE, and our position POSITION. */
4829 #ifdef USE_GTK
4830 static void
4831 x_set_toolkit_scroll_bar_thumb (struct scroll_bar *bar, int portion, int position, int whole)
4833 xg_set_toolkit_scroll_bar_thumb (bar, portion, position, whole);
4836 #else /* not USE_GTK */
4837 static void
4838 x_set_toolkit_scroll_bar_thumb (struct scroll_bar *bar, int portion, int position,
4839 int whole)
4841 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
4842 Widget widget = SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f), bar);
4843 float top, shown;
4845 BLOCK_INPUT;
4847 #ifdef USE_MOTIF
4849 /* We use an estimate of 30 chars per line rather than the real
4850 `portion' value. This has the disadvantage that the thumb size
4851 is not very representative, but it makes our life a lot easier.
4852 Otherwise, we have to constantly adjust the thumb size, which
4853 we can't always do quickly enough: while dragging, the size of
4854 the thumb might prevent the user from dragging the thumb all the
4855 way to the end. but Motif and some versions of Xaw3d don't allow
4856 updating the thumb size while dragging. Also, even if we can update
4857 its size, the update will often happen too late.
4858 If you don't believe it, check out revision 1.650 of xterm.c to see
4859 what hoops we were going through and the still poor behavior we got. */
4860 portion = WINDOW_TOTAL_LINES (XWINDOW (bar->window)) * 30;
4861 /* When the thumb is at the bottom, position == whole.
4862 So we need to increase `whole' to make space for the thumb. */
4863 whole += portion;
4865 if (whole <= 0)
4866 top = 0, shown = 1;
4867 else
4869 top = (float) position / whole;
4870 shown = (float) portion / whole;
4873 if (NILP (bar->dragging))
4875 int size, value;
4877 /* Slider size. Must be in the range [1 .. MAX - MIN] where MAX
4878 is the scroll bar's maximum and MIN is the scroll bar's minimum
4879 value. */
4880 size = shown * XM_SB_MAX;
4881 size = min (size, XM_SB_MAX);
4882 size = max (size, 1);
4884 /* Position. Must be in the range [MIN .. MAX - SLIDER_SIZE]. */
4885 value = top * XM_SB_MAX;
4886 value = min (value, XM_SB_MAX - size);
4888 XmScrollBarSetValues (widget, value, size, 0, 0, False);
4890 #else /* !USE_MOTIF i.e. use Xaw */
4892 if (whole == 0)
4893 top = 0, shown = 1;
4894 else
4896 top = (float) position / whole;
4897 shown = (float) portion / whole;
4901 float old_top, old_shown;
4902 Dimension height;
4903 XtVaGetValues (widget,
4904 XtNtopOfThumb, &old_top,
4905 XtNshown, &old_shown,
4906 XtNheight, &height,
4907 NULL);
4909 /* Massage the top+shown values. */
4910 if (NILP (bar->dragging) || last_scroll_bar_part == scroll_bar_down_arrow)
4911 top = max (0, min (1, top));
4912 else
4913 top = old_top;
4914 /* Keep two pixels available for moving the thumb down. */
4915 shown = max (0, min (1 - top - (2.0f / height), shown));
4917 /* If the call to XawScrollbarSetThumb below doesn't seem to work,
4918 check that your system's configuration file contains a define
4919 for `NARROWPROTO'. See s/freebsd.h for an example. */
4920 if (top != old_top || shown != old_shown)
4922 if (NILP (bar->dragging))
4923 XawScrollbarSetThumb (widget, top, shown);
4924 else
4926 /* Try to make the scrolling a tad smoother. */
4927 if (!xaw3d_pick_top)
4928 shown = min (shown, old_shown);
4930 XawScrollbarSetThumb (widget, top, shown);
4934 #endif /* !USE_MOTIF */
4936 UNBLOCK_INPUT;
4938 #endif /* not USE_GTK */
4940 #endif /* USE_TOOLKIT_SCROLL_BARS */
4944 /************************************************************************
4945 Scroll bars, general
4946 ************************************************************************/
4948 /* Create a scroll bar and return the scroll bar vector for it. W is
4949 the Emacs window on which to create the scroll bar. TOP, LEFT,
4950 WIDTH and HEIGHT are the pixel coordinates and dimensions of the
4951 scroll bar. */
4953 static struct scroll_bar *
4954 x_scroll_bar_create (struct window *w, int top, int left, int width, int height)
4956 struct frame *f = XFRAME (w->frame);
4957 struct scroll_bar *bar
4958 = ALLOCATE_PSEUDOVECTOR (struct scroll_bar, x_window, PVEC_OTHER);
4959 Lisp_Object barobj;
4961 BLOCK_INPUT;
4963 #ifdef USE_TOOLKIT_SCROLL_BARS
4964 x_create_toolkit_scroll_bar (f, bar);
4965 #else /* not USE_TOOLKIT_SCROLL_BARS */
4967 XSetWindowAttributes a;
4968 unsigned long mask;
4969 Window window;
4971 a.background_pixel = f->output_data.x->scroll_bar_background_pixel;
4972 if (a.background_pixel == -1)
4973 a.background_pixel = FRAME_BACKGROUND_PIXEL (f);
4975 a.event_mask = (ButtonPressMask | ButtonReleaseMask
4976 | ButtonMotionMask | PointerMotionHintMask
4977 | ExposureMask);
4978 a.cursor = FRAME_X_DISPLAY_INFO (f)->vertical_scroll_bar_cursor;
4980 mask = (CWBackPixel | CWEventMask | CWCursor);
4982 /* Clear the area of W that will serve as a scroll bar. This is
4983 for the case that a window has been split horizontally. In
4984 this case, no clear_frame is generated to reduce flickering. */
4985 if (width > 0 && height > 0)
4986 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
4987 left, top, width,
4988 window_box_height (w), False);
4990 window = XCreateWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
4991 /* Position and size of scroll bar. */
4992 left + VERTICAL_SCROLL_BAR_WIDTH_TRIM,
4993 top,
4994 width - VERTICAL_SCROLL_BAR_WIDTH_TRIM * 2,
4995 height,
4996 /* Border width, depth, class, and visual. */
4998 CopyFromParent,
4999 CopyFromParent,
5000 CopyFromParent,
5001 /* Attributes. */
5002 mask, &a);
5003 bar->x_window = window;
5005 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5007 XSETWINDOW (bar->window, w);
5008 bar->top = top;
5009 bar->left = left;
5010 bar->width = width;
5011 bar->height = height;
5012 bar->start = 0;
5013 bar->end = 0;
5014 bar->dragging = Qnil;
5015 bar->fringe_extended_p = 0;
5017 /* Add bar to its frame's list of scroll bars. */
5018 bar->next = FRAME_SCROLL_BARS (f);
5019 bar->prev = Qnil;
5020 XSETVECTOR (barobj, bar);
5021 fset_scroll_bars (f, barobj);
5022 if (!NILP (bar->next))
5023 XSETVECTOR (XSCROLL_BAR (bar->next)->prev, bar);
5025 /* Map the window/widget. */
5026 #ifdef USE_TOOLKIT_SCROLL_BARS
5028 #ifdef USE_GTK
5029 xg_update_scrollbar_pos (f,
5030 bar->x_window,
5031 top,
5032 left + VERTICAL_SCROLL_BAR_WIDTH_TRIM,
5033 width - VERTICAL_SCROLL_BAR_WIDTH_TRIM * 2,
5034 max (height, 1));
5035 #else /* not USE_GTK */
5036 Widget scroll_bar = SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f), bar);
5037 XtConfigureWidget (scroll_bar,
5038 left + VERTICAL_SCROLL_BAR_WIDTH_TRIM,
5039 top,
5040 width - VERTICAL_SCROLL_BAR_WIDTH_TRIM * 2,
5041 max (height, 1), 0);
5042 XtMapWidget (scroll_bar);
5043 #endif /* not USE_GTK */
5045 #else /* not USE_TOOLKIT_SCROLL_BARS */
5046 XMapRaised (FRAME_X_DISPLAY (f), bar->x_window);
5047 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5049 UNBLOCK_INPUT;
5050 return bar;
5054 #ifndef USE_TOOLKIT_SCROLL_BARS
5056 /* Draw BAR's handle in the proper position.
5058 If the handle is already drawn from START to END, don't bother
5059 redrawing it, unless REBUILD is non-zero; in that case, always
5060 redraw it. (REBUILD is handy for drawing the handle after expose
5061 events.)
5063 Normally, we want to constrain the start and end of the handle to
5064 fit inside its rectangle, but if the user is dragging the scroll
5065 bar handle, we want to let them drag it down all the way, so that
5066 the bar's top is as far down as it goes; otherwise, there's no way
5067 to move to the very end of the buffer. */
5069 static void
5070 x_scroll_bar_set_handle (struct scroll_bar *bar, int start, int end, int rebuild)
5072 int dragging = ! NILP (bar->dragging);
5073 Window w = bar->x_window;
5074 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
5075 GC gc = f->output_data.x->normal_gc;
5077 /* If the display is already accurate, do nothing. */
5078 if (! rebuild
5079 && start == bar->start
5080 && end == bar->end)
5081 return;
5083 BLOCK_INPUT;
5086 int inside_width = VERTICAL_SCROLL_BAR_INSIDE_WIDTH (f, bar->width);
5087 int inside_height = VERTICAL_SCROLL_BAR_INSIDE_HEIGHT (f, bar->height);
5088 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, bar->height);
5090 /* Make sure the values are reasonable, and try to preserve
5091 the distance between start and end. */
5093 int length = end - start;
5095 if (start < 0)
5096 start = 0;
5097 else if (start > top_range)
5098 start = top_range;
5099 end = start + length;
5101 if (end < start)
5102 end = start;
5103 else if (end > top_range && ! dragging)
5104 end = top_range;
5107 /* Store the adjusted setting in the scroll bar. */
5108 bar->start = start;
5109 bar->end = end;
5111 /* Clip the end position, just for display. */
5112 if (end > top_range)
5113 end = top_range;
5115 /* Draw bottom positions VERTICAL_SCROLL_BAR_MIN_HANDLE pixels
5116 below top positions, to make sure the handle is always at least
5117 that many pixels tall. */
5118 end += VERTICAL_SCROLL_BAR_MIN_HANDLE;
5120 /* Draw the empty space above the handle. Note that we can't clear
5121 zero-height areas; that means "clear to end of window." */
5122 if (0 < start)
5123 x_clear_area (FRAME_X_DISPLAY (f), w,
5124 /* x, y, width, height, and exposures. */
5125 VERTICAL_SCROLL_BAR_LEFT_BORDER,
5126 VERTICAL_SCROLL_BAR_TOP_BORDER,
5127 inside_width, start,
5128 False);
5130 /* Change to proper foreground color if one is specified. */
5131 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
5132 XSetForeground (FRAME_X_DISPLAY (f), gc,
5133 f->output_data.x->scroll_bar_foreground_pixel);
5135 /* Draw the handle itself. */
5136 XFillRectangle (FRAME_X_DISPLAY (f), w, gc,
5137 /* x, y, width, height */
5138 VERTICAL_SCROLL_BAR_LEFT_BORDER,
5139 VERTICAL_SCROLL_BAR_TOP_BORDER + start,
5140 inside_width, end - start);
5142 /* Restore the foreground color of the GC if we changed it above. */
5143 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
5144 XSetForeground (FRAME_X_DISPLAY (f), gc,
5145 FRAME_FOREGROUND_PIXEL (f));
5147 /* Draw the empty space below the handle. Note that we can't
5148 clear zero-height areas; that means "clear to end of window." */
5149 if (end < inside_height)
5150 x_clear_area (FRAME_X_DISPLAY (f), w,
5151 /* x, y, width, height, and exposures. */
5152 VERTICAL_SCROLL_BAR_LEFT_BORDER,
5153 VERTICAL_SCROLL_BAR_TOP_BORDER + end,
5154 inside_width, inside_height - end,
5155 False);
5159 UNBLOCK_INPUT;
5162 #endif /* !USE_TOOLKIT_SCROLL_BARS */
5164 /* Destroy scroll bar BAR, and set its Emacs window's scroll bar to
5165 nil. */
5167 static void
5168 x_scroll_bar_remove (struct scroll_bar *bar)
5170 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
5171 BLOCK_INPUT;
5173 #ifdef USE_TOOLKIT_SCROLL_BARS
5174 #ifdef USE_GTK
5175 xg_remove_scroll_bar (f, bar->x_window);
5176 #else /* not USE_GTK */
5177 XtDestroyWidget (SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f), bar));
5178 #endif /* not USE_GTK */
5179 #else
5180 XDestroyWindow (FRAME_X_DISPLAY (f), bar->x_window);
5181 #endif
5183 /* Dissociate this scroll bar from its window. */
5184 wset_vertical_scroll_bar (XWINDOW (bar->window), Qnil);
5186 UNBLOCK_INPUT;
5190 /* Set the handle of the vertical scroll bar for WINDOW to indicate
5191 that we are displaying PORTION characters out of a total of WHOLE
5192 characters, starting at POSITION. If WINDOW has no scroll bar,
5193 create one. */
5195 static void
5196 XTset_vertical_scroll_bar (struct window *w, int portion, int whole, int position)
5198 struct frame *f = XFRAME (w->frame);
5199 Lisp_Object barobj;
5200 struct scroll_bar *bar;
5201 int top, height, left, sb_left, width, sb_width;
5202 int window_y, window_height;
5203 #ifdef USE_TOOLKIT_SCROLL_BARS
5204 int fringe_extended_p;
5205 #endif
5207 /* Get window dimensions. */
5208 window_box (w, -1, 0, &window_y, 0, &window_height);
5209 top = window_y;
5210 width = WINDOW_CONFIG_SCROLL_BAR_COLS (w) * FRAME_COLUMN_WIDTH (f);
5211 height = window_height;
5213 /* Compute the left edge of the scroll bar area. */
5214 left = WINDOW_SCROLL_BAR_AREA_X (w);
5216 /* Compute the width of the scroll bar which might be less than
5217 the width of the area reserved for the scroll bar. */
5218 if (WINDOW_CONFIG_SCROLL_BAR_WIDTH (w) > 0)
5219 sb_width = WINDOW_CONFIG_SCROLL_BAR_WIDTH (w);
5220 else
5221 sb_width = width;
5223 /* Compute the left edge of the scroll bar. */
5224 #ifdef USE_TOOLKIT_SCROLL_BARS
5225 if (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w))
5226 sb_left = left + (WINDOW_RIGHTMOST_P (w) ? width - sb_width : 0);
5227 else
5228 sb_left = left + (WINDOW_LEFTMOST_P (w) ? 0 : width - sb_width);
5229 #else
5230 if (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w))
5231 sb_left = left + width - sb_width;
5232 else
5233 sb_left = left;
5234 #endif
5236 #ifdef USE_TOOLKIT_SCROLL_BARS
5237 if (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w))
5238 fringe_extended_p = (WINDOW_LEFTMOST_P (w)
5239 && WINDOW_LEFT_FRINGE_WIDTH (w)
5240 && (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
5241 || WINDOW_LEFT_MARGIN_COLS (w) == 0));
5242 else
5243 fringe_extended_p = (WINDOW_RIGHTMOST_P (w)
5244 && WINDOW_RIGHT_FRINGE_WIDTH (w)
5245 && (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
5246 || WINDOW_RIGHT_MARGIN_COLS (w) == 0));
5247 #endif
5249 /* Does the scroll bar exist yet? */
5250 if (NILP (w->vertical_scroll_bar))
5252 if (width > 0 && height > 0)
5254 BLOCK_INPUT;
5255 #ifdef USE_TOOLKIT_SCROLL_BARS
5256 if (fringe_extended_p)
5257 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5258 sb_left, top, sb_width, height, False);
5259 else
5260 #endif
5261 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5262 left, top, width, height, False);
5263 UNBLOCK_INPUT;
5266 bar = x_scroll_bar_create (w, top, sb_left, sb_width, height);
5268 else
5270 /* It may just need to be moved and resized. */
5271 unsigned int mask = 0;
5273 bar = XSCROLL_BAR (w->vertical_scroll_bar);
5275 BLOCK_INPUT;
5277 if (sb_left != bar->left)
5278 mask |= CWX;
5279 if (top != bar->top)
5280 mask |= CWY;
5281 if (sb_width != bar->width)
5282 mask |= CWWidth;
5283 if (height != bar->height)
5284 mask |= CWHeight;
5286 #ifdef USE_TOOLKIT_SCROLL_BARS
5288 /* Move/size the scroll bar widget. */
5289 if (mask || bar->fringe_extended_p != fringe_extended_p)
5291 /* Since toolkit scroll bars are smaller than the space reserved
5292 for them on the frame, we have to clear "under" them. */
5293 if (width > 0 && height > 0)
5295 if (fringe_extended_p)
5296 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5297 sb_left, top, sb_width, height, False);
5298 else
5299 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5300 left, top, width, height, False);
5302 #ifdef USE_GTK
5303 xg_update_scrollbar_pos (f,
5304 bar->x_window,
5305 top,
5306 sb_left + VERTICAL_SCROLL_BAR_WIDTH_TRIM,
5307 sb_width - VERTICAL_SCROLL_BAR_WIDTH_TRIM *2,
5308 max (height, 1));
5309 #else /* not USE_GTK */
5310 XtConfigureWidget (SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f), bar),
5311 sb_left + VERTICAL_SCROLL_BAR_WIDTH_TRIM,
5312 top,
5313 sb_width - VERTICAL_SCROLL_BAR_WIDTH_TRIM * 2,
5314 max (height, 1), 0);
5315 #endif /* not USE_GTK */
5317 #else /* not USE_TOOLKIT_SCROLL_BARS */
5319 /* Clear areas not covered by the scroll bar because of
5320 VERTICAL_SCROLL_BAR_WIDTH_TRIM. */
5321 if (VERTICAL_SCROLL_BAR_WIDTH_TRIM)
5323 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5324 left, top, VERTICAL_SCROLL_BAR_WIDTH_TRIM,
5325 height, False);
5326 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5327 left + width - VERTICAL_SCROLL_BAR_WIDTH_TRIM,
5328 top, VERTICAL_SCROLL_BAR_WIDTH_TRIM,
5329 height, False);
5332 /* Clear areas not covered by the scroll bar because it's not as
5333 wide as the area reserved for it. This makes sure a
5334 previous mode line display is cleared after C-x 2 C-x 1, for
5335 example. */
5337 int area_width = WINDOW_CONFIG_SCROLL_BAR_COLS (w) * FRAME_COLUMN_WIDTH (f);
5338 int rest = area_width - sb_width;
5339 if (rest > 0 && height > 0)
5341 if (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w))
5342 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5343 left + area_width - rest, top,
5344 rest, height, False);
5345 else
5346 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5347 left, top, rest, height, False);
5351 /* Move/size the scroll bar window. */
5352 if (mask)
5354 XWindowChanges wc;
5356 wc.x = sb_left + VERTICAL_SCROLL_BAR_WIDTH_TRIM;
5357 wc.y = top;
5358 wc.width = sb_width - VERTICAL_SCROLL_BAR_WIDTH_TRIM * 2;
5359 wc.height = height;
5360 XConfigureWindow (FRAME_X_DISPLAY (f), bar->x_window,
5361 mask, &wc);
5364 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5366 /* Remember new settings. */
5367 bar->left = sb_left;
5368 bar->top = top;
5369 bar->width = sb_width;
5370 bar->height = height;
5372 UNBLOCK_INPUT;
5375 #ifdef USE_TOOLKIT_SCROLL_BARS
5376 bar->fringe_extended_p = fringe_extended_p;
5378 x_set_toolkit_scroll_bar_thumb (bar, portion, position, whole);
5379 #else /* not USE_TOOLKIT_SCROLL_BARS */
5380 /* Set the scroll bar's current state, unless we're currently being
5381 dragged. */
5382 if (NILP (bar->dragging))
5384 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, height);
5386 if (whole == 0)
5387 x_scroll_bar_set_handle (bar, 0, top_range, 0);
5388 else
5390 int start = ((double) position * top_range) / whole;
5391 int end = ((double) (position + portion) * top_range) / whole;
5392 x_scroll_bar_set_handle (bar, start, end, 0);
5395 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5397 XSETVECTOR (barobj, bar);
5398 wset_vertical_scroll_bar (w, barobj);
5402 /* The following three hooks are used when we're doing a thorough
5403 redisplay of the frame. We don't explicitly know which scroll bars
5404 are going to be deleted, because keeping track of when windows go
5405 away is a real pain - "Can you say set-window-configuration, boys
5406 and girls?" Instead, we just assert at the beginning of redisplay
5407 that *all* scroll bars are to be removed, and then save a scroll bar
5408 from the fiery pit when we actually redisplay its window. */
5410 /* Arrange for all scroll bars on FRAME to be removed at the next call
5411 to `*judge_scroll_bars_hook'. A scroll bar may be spared if
5412 `*redeem_scroll_bar_hook' is applied to its window before the judgment. */
5414 static void
5415 XTcondemn_scroll_bars (FRAME_PTR frame)
5417 /* Transfer all the scroll bars to FRAME_CONDEMNED_SCROLL_BARS. */
5418 while (! NILP (FRAME_SCROLL_BARS (frame)))
5420 Lisp_Object bar;
5421 bar = FRAME_SCROLL_BARS (frame);
5422 fset_scroll_bars (frame, XSCROLL_BAR (bar)->next);
5423 XSCROLL_BAR (bar)->next = FRAME_CONDEMNED_SCROLL_BARS (frame);
5424 XSCROLL_BAR (bar)->prev = Qnil;
5425 if (! NILP (FRAME_CONDEMNED_SCROLL_BARS (frame)))
5426 XSCROLL_BAR (FRAME_CONDEMNED_SCROLL_BARS (frame))->prev = bar;
5427 fset_condemned_scroll_bars (frame, bar);
5432 /* Un-mark WINDOW's scroll bar for deletion in this judgment cycle.
5433 Note that WINDOW isn't necessarily condemned at all. */
5435 static void
5436 XTredeem_scroll_bar (struct window *window)
5438 struct scroll_bar *bar;
5439 struct frame *f;
5440 Lisp_Object barobj;
5442 /* We can't redeem this window's scroll bar if it doesn't have one. */
5443 if (NILP (window->vertical_scroll_bar))
5444 abort ();
5446 bar = XSCROLL_BAR (window->vertical_scroll_bar);
5448 /* Unlink it from the condemned list. */
5449 f = XFRAME (WINDOW_FRAME (window));
5450 if (NILP (bar->prev))
5452 /* If the prev pointer is nil, it must be the first in one of
5453 the lists. */
5454 if (EQ (FRAME_SCROLL_BARS (f), window->vertical_scroll_bar))
5455 /* It's not condemned. Everything's fine. */
5456 return;
5457 else if (EQ (FRAME_CONDEMNED_SCROLL_BARS (f),
5458 window->vertical_scroll_bar))
5459 fset_condemned_scroll_bars (f, bar->next);
5460 else
5461 /* If its prev pointer is nil, it must be at the front of
5462 one or the other! */
5463 abort ();
5465 else
5466 XSCROLL_BAR (bar->prev)->next = bar->next;
5468 if (! NILP (bar->next))
5469 XSCROLL_BAR (bar->next)->prev = bar->prev;
5471 bar->next = FRAME_SCROLL_BARS (f);
5472 bar->prev = Qnil;
5473 XSETVECTOR (barobj, bar);
5474 fset_scroll_bars (f, barobj);
5475 if (! NILP (bar->next))
5476 XSETVECTOR (XSCROLL_BAR (bar->next)->prev, bar);
5479 /* Remove all scroll bars on FRAME that haven't been saved since the
5480 last call to `*condemn_scroll_bars_hook'. */
5482 static void
5483 XTjudge_scroll_bars (FRAME_PTR f)
5485 Lisp_Object bar, next;
5487 bar = FRAME_CONDEMNED_SCROLL_BARS (f);
5489 /* Clear out the condemned list now so we won't try to process any
5490 more events on the hapless scroll bars. */
5491 fset_condemned_scroll_bars (f, Qnil);
5493 for (; ! NILP (bar); bar = next)
5495 struct scroll_bar *b = XSCROLL_BAR (bar);
5497 x_scroll_bar_remove (b);
5499 next = b->next;
5500 b->next = b->prev = Qnil;
5503 /* Now there should be no references to the condemned scroll bars,
5504 and they should get garbage-collected. */
5508 #ifndef USE_TOOLKIT_SCROLL_BARS
5509 /* Handle an Expose or GraphicsExpose event on a scroll bar. This
5510 is a no-op when using toolkit scroll bars.
5512 This may be called from a signal handler, so we have to ignore GC
5513 mark bits. */
5515 static void
5516 x_scroll_bar_expose (struct scroll_bar *bar, XEvent *event)
5518 Window w = bar->x_window;
5519 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
5520 GC gc = f->output_data.x->normal_gc;
5521 int width_trim = VERTICAL_SCROLL_BAR_WIDTH_TRIM;
5523 BLOCK_INPUT;
5525 x_scroll_bar_set_handle (bar, bar->start, bar->end, 1);
5527 /* Switch to scroll bar foreground color. */
5528 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
5529 XSetForeground (FRAME_X_DISPLAY (f), gc,
5530 f->output_data.x->scroll_bar_foreground_pixel);
5532 /* Draw a one-pixel border just inside the edges of the scroll bar. */
5533 XDrawRectangle (FRAME_X_DISPLAY (f), w, gc,
5535 /* x, y, width, height */
5536 0, 0,
5537 bar->width - 1 - width_trim - width_trim,
5538 bar->height - 1);
5540 /* Restore the foreground color of the GC if we changed it above. */
5541 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
5542 XSetForeground (FRAME_X_DISPLAY (f), gc,
5543 FRAME_FOREGROUND_PIXEL (f));
5545 UNBLOCK_INPUT;
5548 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5550 /* Handle a mouse click on the scroll bar BAR. If *EMACS_EVENT's kind
5551 is set to something other than NO_EVENT, it is enqueued.
5553 This may be called from a signal handler, so we have to ignore GC
5554 mark bits. */
5557 static void
5558 x_scroll_bar_handle_click (struct scroll_bar *bar, XEvent *event, struct input_event *emacs_event)
5560 if (! WINDOWP (bar->window))
5561 abort ();
5563 emacs_event->kind = SCROLL_BAR_CLICK_EVENT;
5564 emacs_event->code = event->xbutton.button - Button1;
5565 emacs_event->modifiers
5566 = (x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO
5567 (XFRAME (WINDOW_FRAME (XWINDOW (bar->window)))),
5568 event->xbutton.state)
5569 | (event->type == ButtonRelease
5570 ? up_modifier
5571 : down_modifier));
5572 emacs_event->frame_or_window = bar->window;
5573 emacs_event->arg = Qnil;
5574 emacs_event->timestamp = event->xbutton.time;
5576 int top_range
5577 = VERTICAL_SCROLL_BAR_TOP_RANGE (f, bar->height);
5578 int y = event->xbutton.y - VERTICAL_SCROLL_BAR_TOP_BORDER;
5580 if (y < 0) y = 0;
5581 if (y > top_range) y = top_range;
5583 if (y < bar->start)
5584 emacs_event->part = scroll_bar_above_handle;
5585 else if (y < bar->end + VERTICAL_SCROLL_BAR_MIN_HANDLE)
5586 emacs_event->part = scroll_bar_handle;
5587 else
5588 emacs_event->part = scroll_bar_below_handle;
5590 #ifndef USE_TOOLKIT_SCROLL_BARS
5591 /* If the user has released the handle, set it to its final position. */
5592 if (event->type == ButtonRelease
5593 && ! NILP (bar->dragging))
5595 int new_start = y - XINT (bar->dragging);
5596 int new_end = new_start + bar->end - bar->start;
5598 x_scroll_bar_set_handle (bar, new_start, new_end, 0);
5599 bar->dragging = Qnil;
5601 #endif
5603 XSETINT (emacs_event->x, y);
5604 XSETINT (emacs_event->y, top_range);
5608 #ifndef USE_TOOLKIT_SCROLL_BARS
5610 /* Handle some mouse motion while someone is dragging the scroll bar.
5612 This may be called from a signal handler, so we have to ignore GC
5613 mark bits. */
5615 static void
5616 x_scroll_bar_note_movement (struct scroll_bar *bar, XEvent *event)
5618 FRAME_PTR f = XFRAME (XWINDOW (bar->window)->frame);
5620 last_mouse_movement_time = event->xmotion.time;
5622 f->mouse_moved = 1;
5623 XSETVECTOR (last_mouse_scroll_bar, bar);
5625 /* If we're dragging the bar, display it. */
5626 if (! NILP (bar->dragging))
5628 /* Where should the handle be now? */
5629 int new_start = event->xmotion.y - XINT (bar->dragging);
5631 if (new_start != bar->start)
5633 int new_end = new_start + bar->end - bar->start;
5635 x_scroll_bar_set_handle (bar, new_start, new_end, 0);
5640 #endif /* !USE_TOOLKIT_SCROLL_BARS */
5642 /* Return information to the user about the current position of the mouse
5643 on the scroll bar. */
5645 static void
5646 x_scroll_bar_report_motion (FRAME_PTR *fp, Lisp_Object *bar_window,
5647 enum scroll_bar_part *part, Lisp_Object *x,
5648 Lisp_Object *y, Time *timestamp)
5650 struct scroll_bar *bar = XSCROLL_BAR (last_mouse_scroll_bar);
5651 Window w = bar->x_window;
5652 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
5653 int win_x, win_y;
5654 Window dummy_window;
5655 int dummy_coord;
5656 unsigned int dummy_mask;
5658 BLOCK_INPUT;
5660 /* Get the mouse's position relative to the scroll bar window, and
5661 report that. */
5662 if (! XQueryPointer (FRAME_X_DISPLAY (f), w,
5664 /* Root, child, root x and root y. */
5665 &dummy_window, &dummy_window,
5666 &dummy_coord, &dummy_coord,
5668 /* Position relative to scroll bar. */
5669 &win_x, &win_y,
5671 /* Mouse buttons and modifier keys. */
5672 &dummy_mask))
5674 else
5676 int top_range
5677 = VERTICAL_SCROLL_BAR_TOP_RANGE (f, bar->height);
5679 win_y -= VERTICAL_SCROLL_BAR_TOP_BORDER;
5681 if (! NILP (bar->dragging))
5682 win_y -= XINT (bar->dragging);
5684 if (win_y < 0)
5685 win_y = 0;
5686 if (win_y > top_range)
5687 win_y = top_range;
5689 *fp = f;
5690 *bar_window = bar->window;
5692 if (! NILP (bar->dragging))
5693 *part = scroll_bar_handle;
5694 else if (win_y < bar->start)
5695 *part = scroll_bar_above_handle;
5696 else if (win_y < bar->end + VERTICAL_SCROLL_BAR_MIN_HANDLE)
5697 *part = scroll_bar_handle;
5698 else
5699 *part = scroll_bar_below_handle;
5701 XSETINT (*x, win_y);
5702 XSETINT (*y, top_range);
5704 f->mouse_moved = 0;
5705 last_mouse_scroll_bar = Qnil;
5708 *timestamp = last_mouse_movement_time;
5710 UNBLOCK_INPUT;
5714 /* The screen has been cleared so we may have changed foreground or
5715 background colors, and the scroll bars may need to be redrawn.
5716 Clear out the scroll bars, and ask for expose events, so we can
5717 redraw them. */
5719 static void
5720 x_scroll_bar_clear (FRAME_PTR f)
5722 #ifndef USE_TOOLKIT_SCROLL_BARS
5723 Lisp_Object bar;
5725 /* We can have scroll bars even if this is 0,
5726 if we just turned off scroll bar mode.
5727 But in that case we should not clear them. */
5728 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
5729 for (bar = FRAME_SCROLL_BARS (f); VECTORP (bar);
5730 bar = XSCROLL_BAR (bar)->next)
5731 XClearArea (FRAME_X_DISPLAY (f),
5732 XSCROLL_BAR (bar)->x_window,
5733 0, 0, 0, 0, True);
5734 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5738 /* The main X event-reading loop - XTread_socket. */
5740 /* This holds the state XLookupString needs to implement dead keys
5741 and other tricks known as "compose processing". _X Window System_
5742 says that a portable program can't use this, but Stephen Gildea assures
5743 me that letting the compiler initialize it to zeros will work okay.
5745 This must be defined outside of XTread_socket, for the same reasons
5746 given for enter_timestamp, above. */
5748 static XComposeStatus compose_status;
5750 /* Record the last 100 characters stored
5751 to help debug the loss-of-chars-during-GC problem. */
5753 static int temp_index;
5754 static short temp_buffer[100];
5756 #define STORE_KEYSYM_FOR_DEBUG(keysym) \
5757 if (temp_index == sizeof temp_buffer / sizeof (short)) \
5758 temp_index = 0; \
5759 temp_buffer[temp_index++] = (keysym)
5761 /* Set this to nonzero to fake an "X I/O error"
5762 on a particular display. */
5764 static struct x_display_info *XTread_socket_fake_io_error;
5766 /* When we find no input here, we occasionally do a no-op command
5767 to verify that the X server is still running and we can still talk with it.
5768 We try all the open displays, one by one.
5769 This variable is used for cycling thru the displays. */
5771 static struct x_display_info *next_noop_dpyinfo;
5773 #if defined USE_X_TOOLKIT || defined USE_GTK
5774 #define SET_SAVED_BUTTON_EVENT \
5775 do \
5777 if (f->output_data.x->saved_menu_event == 0) \
5778 f->output_data.x->saved_menu_event = \
5779 xmalloc (sizeof (XEvent)); \
5780 *f->output_data.x->saved_menu_event = event; \
5781 inev.ie.kind = MENU_BAR_ACTIVATE_EVENT; \
5782 XSETFRAME (inev.ie.frame_or_window, f); \
5784 while (0)
5785 #endif
5787 enum
5789 X_EVENT_NORMAL,
5790 X_EVENT_GOTO_OUT,
5791 X_EVENT_DROP
5794 /* Filter events for the current X input method.
5795 DPYINFO is the display this event is for.
5796 EVENT is the X event to filter.
5798 Returns non-zero if the event was filtered, caller shall not process
5799 this event further.
5800 Returns zero if event is wasn't filtered. */
5802 #ifdef HAVE_X_I18N
5803 static int
5804 x_filter_event (struct x_display_info *dpyinfo, XEvent *event)
5806 /* XFilterEvent returns non-zero if the input method has
5807 consumed the event. We pass the frame's X window to
5808 XFilterEvent because that's the one for which the IC
5809 was created. */
5811 struct frame *f1 = x_any_window_to_frame (dpyinfo,
5812 event->xclient.window);
5814 return XFilterEvent (event, f1 ? FRAME_X_WINDOW (f1) : None);
5816 #endif
5818 #ifdef USE_GTK
5819 static int current_count;
5820 static int current_finish;
5821 static struct input_event *current_hold_quit;
5823 /* This is the filter function invoked by the GTK event loop.
5824 It is invoked before the XEvent is translated to a GdkEvent,
5825 so we have a chance to act on the event before GTK. */
5826 static GdkFilterReturn
5827 event_handler_gdk (GdkXEvent *gxev, GdkEvent *ev, gpointer data)
5829 XEvent *xev = (XEvent *) gxev;
5831 BLOCK_INPUT;
5832 if (current_count >= 0)
5834 struct x_display_info *dpyinfo;
5836 dpyinfo = x_display_info_for_display (xev->xany.display);
5838 #ifdef HAVE_X_I18N
5839 /* Filter events for the current X input method.
5840 GTK calls XFilterEvent but not for key press and release,
5841 so we do it here. */
5842 if ((xev->type == KeyPress || xev->type == KeyRelease)
5843 && dpyinfo
5844 && x_filter_event (dpyinfo, xev))
5846 UNBLOCK_INPUT;
5847 return GDK_FILTER_REMOVE;
5849 #endif
5851 if (! dpyinfo)
5852 current_finish = X_EVENT_NORMAL;
5853 else
5854 current_count +=
5855 handle_one_xevent (dpyinfo, xev, &current_finish,
5856 current_hold_quit);
5858 else
5859 current_finish = x_dispatch_event (xev, xev->xany.display);
5861 UNBLOCK_INPUT;
5863 if (current_finish == X_EVENT_GOTO_OUT || current_finish == X_EVENT_DROP)
5864 return GDK_FILTER_REMOVE;
5866 return GDK_FILTER_CONTINUE;
5868 #endif /* USE_GTK */
5871 static void xembed_send_message (struct frame *f, Time,
5872 enum xembed_message,
5873 long detail, long data1, long data2);
5875 /* Handles the XEvent EVENT on display DPYINFO.
5877 *FINISH is X_EVENT_GOTO_OUT if caller should stop reading events.
5878 *FINISH is zero if caller should continue reading events.
5879 *FINISH is X_EVENT_DROP if event should not be passed to the toolkit.
5881 We return the number of characters stored into the buffer. */
5883 static int
5884 handle_one_xevent (struct x_display_info *dpyinfo, XEvent *eventptr,
5885 int *finish, struct input_event *hold_quit)
5887 union {
5888 struct input_event ie;
5889 struct selection_input_event sie;
5890 } inev;
5891 int count = 0;
5892 int do_help = 0;
5893 ptrdiff_t nbytes = 0;
5894 struct frame *f = NULL;
5895 struct coding_system coding;
5896 XEvent event = *eventptr;
5897 Mouse_HLInfo *hlinfo = &dpyinfo->mouse_highlight;
5898 USE_SAFE_ALLOCA;
5900 *finish = X_EVENT_NORMAL;
5902 EVENT_INIT (inev.ie);
5903 inev.ie.kind = NO_EVENT;
5904 inev.ie.arg = Qnil;
5906 if (pending_event_wait.eventtype == event.type)
5907 pending_event_wait.eventtype = 0; /* Indicates we got it. */
5909 switch (event.type)
5911 case ClientMessage:
5913 if (event.xclient.message_type
5914 == dpyinfo->Xatom_wm_protocols
5915 && event.xclient.format == 32)
5917 if (event.xclient.data.l[0]
5918 == dpyinfo->Xatom_wm_take_focus)
5920 /* Use x_any_window_to_frame because this
5921 could be the shell widget window
5922 if the frame has no title bar. */
5923 f = x_any_window_to_frame (dpyinfo, event.xclient.window);
5924 #ifdef HAVE_X_I18N
5925 /* Not quite sure this is needed -pd */
5926 if (f && FRAME_XIC (f))
5927 XSetICFocus (FRAME_XIC (f));
5928 #endif
5929 #if 0 /* Emacs sets WM hints whose `input' field is `true'. This
5930 instructs the WM to set the input focus automatically for
5931 Emacs with a call to XSetInputFocus. Setting WM_TAKE_FOCUS
5932 tells the WM to send us a ClientMessage WM_TAKE_FOCUS after
5933 it has set the focus. So, XSetInputFocus below is not
5934 needed.
5936 The call to XSetInputFocus below has also caused trouble. In
5937 cases where the XSetInputFocus done by the WM and the one
5938 below are temporally close (on a fast machine), the call
5939 below can generate additional FocusIn events which confuse
5940 Emacs. */
5942 /* Since we set WM_TAKE_FOCUS, we must call
5943 XSetInputFocus explicitly. But not if f is null,
5944 since that might be an event for a deleted frame. */
5945 if (f)
5947 Display *d = event.xclient.display;
5948 /* Catch and ignore errors, in case window has been
5949 iconified by a window manager such as GWM. */
5950 x_catch_errors (d);
5951 XSetInputFocus (d, event.xclient.window,
5952 /* The ICCCM says this is
5953 the only valid choice. */
5954 RevertToParent,
5955 event.xclient.data.l[1]);
5956 /* This is needed to detect the error
5957 if there is an error. */
5958 XSync (d, False);
5959 x_uncatch_errors ();
5961 /* Not certain about handling scroll bars here */
5962 #endif /* 0 */
5963 goto done;
5966 if (event.xclient.data.l[0]
5967 == dpyinfo->Xatom_wm_save_yourself)
5969 /* Save state modify the WM_COMMAND property to
5970 something which can reinstate us. This notifies
5971 the session manager, who's looking for such a
5972 PropertyNotify. Can restart processing when
5973 a keyboard or mouse event arrives. */
5974 /* If we have a session manager, don't set this.
5975 KDE will then start two Emacsen, one for the
5976 session manager and one for this. */
5977 #ifdef HAVE_X_SM
5978 if (! x_session_have_connection ())
5979 #endif
5981 f = x_top_window_to_frame (dpyinfo,
5982 event.xclient.window);
5983 /* This is just so we only give real data once
5984 for a single Emacs process. */
5985 if (f == SELECTED_FRAME ())
5986 XSetCommand (FRAME_X_DISPLAY (f),
5987 event.xclient.window,
5988 initial_argv, initial_argc);
5989 else if (f)
5990 XSetCommand (FRAME_X_DISPLAY (f),
5991 event.xclient.window,
5992 0, 0);
5994 goto done;
5997 if (event.xclient.data.l[0]
5998 == dpyinfo->Xatom_wm_delete_window)
6000 f = x_any_window_to_frame (dpyinfo,
6001 event.xclient.window);
6002 if (!f)
6003 goto OTHER; /* May be a dialog that is to be removed */
6005 inev.ie.kind = DELETE_WINDOW_EVENT;
6006 XSETFRAME (inev.ie.frame_or_window, f);
6007 goto done;
6010 goto done;
6013 if (event.xclient.message_type
6014 == dpyinfo->Xatom_wm_configure_denied)
6016 goto done;
6019 if (event.xclient.message_type
6020 == dpyinfo->Xatom_wm_window_moved)
6022 int new_x, new_y;
6023 f = x_window_to_frame (dpyinfo, event.xclient.window);
6025 new_x = event.xclient.data.s[0];
6026 new_y = event.xclient.data.s[1];
6028 if (f)
6030 f->left_pos = new_x;
6031 f->top_pos = new_y;
6033 goto done;
6036 #ifdef HACK_EDITRES
6037 if (event.xclient.message_type
6038 == dpyinfo->Xatom_editres)
6040 f = x_any_window_to_frame (dpyinfo, event.xclient.window);
6041 if (f)
6042 _XEditResCheckMessages (f->output_data.x->widget, NULL,
6043 &event, NULL);
6044 goto done;
6046 #endif /* HACK_EDITRES */
6048 if ((event.xclient.message_type
6049 == dpyinfo->Xatom_DONE)
6050 || (event.xclient.message_type
6051 == dpyinfo->Xatom_PAGE))
6053 /* Ghostview job completed. Kill it. We could
6054 reply with "Next" if we received "Page", but we
6055 currently never do because we are interested in
6056 images, only, which should have 1 page. */
6057 Pixmap pixmap = (Pixmap) event.xclient.data.l[1];
6058 f = x_window_to_frame (dpyinfo, event.xclient.window);
6059 if (!f)
6060 goto OTHER;
6061 x_kill_gs_process (pixmap, f);
6062 expose_frame (f, 0, 0, 0, 0);
6063 goto done;
6066 #ifdef USE_TOOLKIT_SCROLL_BARS
6067 /* Scroll bar callbacks send a ClientMessage from which
6068 we construct an input_event. */
6069 if (event.xclient.message_type
6070 == dpyinfo->Xatom_Scrollbar)
6072 x_scroll_bar_to_input_event (&event, &inev.ie);
6073 *finish = X_EVENT_GOTO_OUT;
6074 goto done;
6076 #endif /* USE_TOOLKIT_SCROLL_BARS */
6078 /* XEmbed messages from the embedder (if any). */
6079 if (event.xclient.message_type
6080 == dpyinfo->Xatom_XEMBED)
6082 enum xembed_message msg = event.xclient.data.l[1];
6083 if (msg == XEMBED_FOCUS_IN || msg == XEMBED_FOCUS_OUT)
6084 x_detect_focus_change (dpyinfo, &event, &inev.ie);
6086 *finish = X_EVENT_GOTO_OUT;
6087 goto done;
6090 xft_settings_event (dpyinfo, &event);
6092 f = x_any_window_to_frame (dpyinfo, event.xclient.window);
6093 if (!f)
6094 goto OTHER;
6095 if (x_handle_dnd_message (f, &event.xclient, dpyinfo, &inev.ie))
6096 *finish = X_EVENT_DROP;
6098 break;
6100 case SelectionNotify:
6101 last_user_time = event.xselection.time;
6102 #ifdef USE_X_TOOLKIT
6103 if (! x_window_to_frame (dpyinfo, event.xselection.requestor))
6104 goto OTHER;
6105 #endif /* not USE_X_TOOLKIT */
6106 x_handle_selection_notify (&event.xselection);
6107 break;
6109 case SelectionClear: /* Someone has grabbed ownership. */
6110 last_user_time = event.xselectionclear.time;
6111 #ifdef USE_X_TOOLKIT
6112 if (! x_window_to_frame (dpyinfo, event.xselectionclear.window))
6113 goto OTHER;
6114 #endif /* USE_X_TOOLKIT */
6116 XSelectionClearEvent *eventp = &(event.xselectionclear);
6118 inev.ie.kind = SELECTION_CLEAR_EVENT;
6119 SELECTION_EVENT_DISPLAY (&inev.sie) = eventp->display;
6120 SELECTION_EVENT_SELECTION (&inev.sie) = eventp->selection;
6121 SELECTION_EVENT_TIME (&inev.sie) = eventp->time;
6122 inev.ie.frame_or_window = Qnil;
6124 break;
6126 case SelectionRequest: /* Someone wants our selection. */
6127 last_user_time = event.xselectionrequest.time;
6128 #ifdef USE_X_TOOLKIT
6129 if (!x_window_to_frame (dpyinfo, event.xselectionrequest.owner))
6130 goto OTHER;
6131 #endif /* USE_X_TOOLKIT */
6133 XSelectionRequestEvent *eventp = &(event.xselectionrequest);
6135 inev.ie.kind = SELECTION_REQUEST_EVENT;
6136 SELECTION_EVENT_DISPLAY (&inev.sie) = eventp->display;
6137 SELECTION_EVENT_REQUESTOR (&inev.sie) = eventp->requestor;
6138 SELECTION_EVENT_SELECTION (&inev.sie) = eventp->selection;
6139 SELECTION_EVENT_TARGET (&inev.sie) = eventp->target;
6140 SELECTION_EVENT_PROPERTY (&inev.sie) = eventp->property;
6141 SELECTION_EVENT_TIME (&inev.sie) = eventp->time;
6142 inev.ie.frame_or_window = Qnil;
6144 break;
6146 case PropertyNotify:
6147 last_user_time = event.xproperty.time;
6148 f = x_top_window_to_frame (dpyinfo, event.xproperty.window);
6149 if (f && event.xproperty.atom == dpyinfo->Xatom_net_wm_state)
6150 if (x_handle_net_wm_state (f, &event.xproperty) && f->iconified
6151 && f->output_data.x->net_wm_state_hidden_seen)
6153 /* Gnome shell does not iconify us when C-z is pressed. It hides
6154 the frame. So if our state says we aren't hidden anymore,
6155 treat it as deiconified. */
6156 if (! f->async_iconified)
6157 SET_FRAME_GARBAGED (f);
6158 f->async_visible = 1;
6159 f->async_iconified = 0;
6160 f->output_data.x->has_been_visible = 1;
6161 f->output_data.x->net_wm_state_hidden_seen = 0;
6162 inev.ie.kind = DEICONIFY_EVENT;
6163 XSETFRAME (inev.ie.frame_or_window, f);
6166 x_handle_property_notify (&event.xproperty);
6167 xft_settings_event (dpyinfo, &event);
6168 goto OTHER;
6170 case ReparentNotify:
6171 f = x_top_window_to_frame (dpyinfo, event.xreparent.window);
6172 if (f)
6174 int x, y;
6175 f->output_data.x->parent_desc = event.xreparent.parent;
6176 x_real_positions (f, &x, &y);
6177 f->left_pos = x;
6178 f->top_pos = y;
6180 /* Perhaps reparented due to a WM restart. Reset this. */
6181 FRAME_X_DISPLAY_INFO (f)->wm_type = X_WMTYPE_UNKNOWN;
6182 FRAME_X_DISPLAY_INFO (f)->net_supported_window = 0;
6184 x_set_frame_alpha (f);
6186 goto OTHER;
6188 case Expose:
6189 f = x_window_to_frame (dpyinfo, event.xexpose.window);
6190 if (f)
6192 #ifdef USE_GTK
6193 /* This seems to be needed for GTK 2.6. */
6194 x_clear_area (event.xexpose.display,
6195 event.xexpose.window,
6196 event.xexpose.x, event.xexpose.y,
6197 event.xexpose.width, event.xexpose.height,
6198 FALSE);
6199 #endif
6200 if (f->async_visible == 0)
6202 f->async_visible = 1;
6203 f->async_iconified = 0;
6204 f->output_data.x->has_been_visible = 1;
6205 SET_FRAME_GARBAGED (f);
6207 else
6208 expose_frame (f,
6209 event.xexpose.x, event.xexpose.y,
6210 event.xexpose.width, event.xexpose.height);
6212 else
6214 #ifndef USE_TOOLKIT_SCROLL_BARS
6215 struct scroll_bar *bar;
6216 #endif
6217 #if defined USE_LUCID
6218 /* Submenus of the Lucid menu bar aren't widgets
6219 themselves, so there's no way to dispatch events
6220 to them. Recognize this case separately. */
6222 Widget widget
6223 = x_window_to_menu_bar (event.xexpose.window);
6224 if (widget)
6225 xlwmenu_redisplay (widget);
6227 #endif /* USE_LUCID */
6229 #ifdef USE_TOOLKIT_SCROLL_BARS
6230 /* Dispatch event to the widget. */
6231 goto OTHER;
6232 #else /* not USE_TOOLKIT_SCROLL_BARS */
6233 bar = x_window_to_scroll_bar (event.xexpose.display,
6234 event.xexpose.window);
6236 if (bar)
6237 x_scroll_bar_expose (bar, &event);
6238 #ifdef USE_X_TOOLKIT
6239 else
6240 goto OTHER;
6241 #endif /* USE_X_TOOLKIT */
6242 #endif /* not USE_TOOLKIT_SCROLL_BARS */
6244 break;
6246 case GraphicsExpose: /* This occurs when an XCopyArea's
6247 source area was obscured or not
6248 available. */
6249 f = x_window_to_frame (dpyinfo, event.xgraphicsexpose.drawable);
6250 if (f)
6252 expose_frame (f,
6253 event.xgraphicsexpose.x, event.xgraphicsexpose.y,
6254 event.xgraphicsexpose.width,
6255 event.xgraphicsexpose.height);
6257 #ifdef USE_X_TOOLKIT
6258 else
6259 goto OTHER;
6260 #endif /* USE_X_TOOLKIT */
6261 break;
6263 case NoExpose: /* This occurs when an XCopyArea's
6264 source area was completely
6265 available. */
6266 break;
6268 case UnmapNotify:
6269 /* Redo the mouse-highlight after the tooltip has gone. */
6270 if (event.xmap.window == tip_window)
6272 tip_window = 0;
6273 redo_mouse_highlight ();
6276 f = x_top_window_to_frame (dpyinfo, event.xunmap.window);
6277 if (f) /* F may no longer exist if
6278 the frame was deleted. */
6280 /* While a frame is unmapped, display generation is
6281 disabled; you don't want to spend time updating a
6282 display that won't ever be seen. */
6283 f->async_visible = 0;
6284 /* We can't distinguish, from the event, whether the window
6285 has become iconified or invisible. So assume, if it
6286 was previously visible, than now it is iconified.
6287 But x_make_frame_invisible clears both
6288 the visible flag and the iconified flag;
6289 and that way, we know the window is not iconified now. */
6290 if (FRAME_VISIBLE_P (f) || FRAME_ICONIFIED_P (f))
6292 f->async_iconified = 1;
6294 inev.ie.kind = ICONIFY_EVENT;
6295 XSETFRAME (inev.ie.frame_or_window, f);
6298 goto OTHER;
6300 case MapNotify:
6301 if (event.xmap.window == tip_window)
6302 /* The tooltip has been drawn already. Avoid
6303 the SET_FRAME_GARBAGED below. */
6304 goto OTHER;
6306 /* We use x_top_window_to_frame because map events can
6307 come for sub-windows and they don't mean that the
6308 frame is visible. */
6309 f = x_top_window_to_frame (dpyinfo, event.xmap.window);
6310 if (f)
6312 /* wait_reading_process_output will notice this and update
6313 the frame's display structures.
6314 If we where iconified, we should not set garbaged,
6315 because that stops redrawing on Expose events. This looks
6316 bad if we are called from a recursive event loop
6317 (x_dispatch_event), for example when a dialog is up. */
6318 if (! f->async_iconified)
6319 SET_FRAME_GARBAGED (f);
6321 /* Check if fullscreen was specified before we where mapped the
6322 first time, i.e. from the command line. */
6323 if (!f->output_data.x->has_been_visible)
6324 x_check_fullscreen (f);
6326 f->async_visible = 1;
6327 f->async_iconified = 0;
6328 f->output_data.x->has_been_visible = 1;
6330 if (f->iconified)
6332 inev.ie.kind = DEICONIFY_EVENT;
6333 XSETFRAME (inev.ie.frame_or_window, f);
6335 else if (! NILP (Vframe_list)
6336 && ! NILP (XCDR (Vframe_list)))
6337 /* Force a redisplay sooner or later
6338 to update the frame titles
6339 in case this is the second frame. */
6340 record_asynch_buffer_change ();
6342 #ifdef USE_GTK
6343 xg_frame_resized (f, -1, -1);
6344 #endif
6346 goto OTHER;
6348 case KeyPress:
6350 last_user_time = event.xkey.time;
6351 ignore_next_mouse_click_timeout = 0;
6353 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
6354 /* Dispatch KeyPress events when in menu. */
6355 if (popup_activated ())
6356 goto OTHER;
6357 #endif
6359 f = x_any_window_to_frame (dpyinfo, event.xkey.window);
6361 /* If mouse-highlight is an integer, input clears out
6362 mouse highlighting. */
6363 if (!hlinfo->mouse_face_hidden && INTEGERP (Vmouse_highlight)
6364 && (f == 0
6365 || !EQ (f->tool_bar_window, hlinfo->mouse_face_window)))
6367 clear_mouse_face (hlinfo);
6368 hlinfo->mouse_face_hidden = 1;
6371 #if defined USE_MOTIF && defined USE_TOOLKIT_SCROLL_BARS
6372 if (f == 0)
6374 /* Scroll bars consume key events, but we want
6375 the keys to go to the scroll bar's frame. */
6376 Widget widget = XtWindowToWidget (dpyinfo->display,
6377 event.xkey.window);
6378 if (widget && XmIsScrollBar (widget))
6380 widget = XtParent (widget);
6381 f = x_any_window_to_frame (dpyinfo, XtWindow (widget));
6384 #endif /* USE_MOTIF and USE_TOOLKIT_SCROLL_BARS */
6386 if (f != 0)
6388 KeySym keysym, orig_keysym;
6389 /* al%imercury@uunet.uu.net says that making this 81
6390 instead of 80 fixed a bug whereby meta chars made
6391 his Emacs hang.
6393 It seems that some version of XmbLookupString has
6394 a bug of not returning XBufferOverflow in
6395 status_return even if the input is too long to
6396 fit in 81 bytes. So, we must prepare sufficient
6397 bytes for copy_buffer. 513 bytes (256 chars for
6398 two-byte character set) seems to be a fairly good
6399 approximation. -- 2000.8.10 handa@etl.go.jp */
6400 unsigned char copy_buffer[513];
6401 unsigned char *copy_bufptr = copy_buffer;
6402 int copy_bufsiz = sizeof (copy_buffer);
6403 int modifiers;
6404 Lisp_Object coding_system = Qlatin_1;
6405 Lisp_Object c;
6407 #ifdef USE_GTK
6408 /* Don't pass keys to GTK. A Tab will shift focus to the
6409 tool bar in GTK 2.4. Keys will still go to menus and
6410 dialogs because in that case popup_activated is TRUE
6411 (see above). */
6412 *finish = X_EVENT_DROP;
6413 #endif
6415 event.xkey.state
6416 |= x_emacs_to_x_modifiers (FRAME_X_DISPLAY_INFO (f),
6417 extra_keyboard_modifiers);
6418 modifiers = event.xkey.state;
6420 /* This will have to go some day... */
6422 /* make_lispy_event turns chars into control chars.
6423 Don't do it here because XLookupString is too eager. */
6424 event.xkey.state &= ~ControlMask;
6425 event.xkey.state &= ~(dpyinfo->meta_mod_mask
6426 | dpyinfo->super_mod_mask
6427 | dpyinfo->hyper_mod_mask
6428 | dpyinfo->alt_mod_mask);
6430 /* In case Meta is ComposeCharacter,
6431 clear its status. According to Markus Ehrnsperger
6432 Markus.Ehrnsperger@lehrstuhl-bross.physik.uni-muenchen.de
6433 this enables ComposeCharacter to work whether or
6434 not it is combined with Meta. */
6435 if (modifiers & dpyinfo->meta_mod_mask)
6436 memset (&compose_status, 0, sizeof (compose_status));
6438 #ifdef HAVE_X_I18N
6439 if (FRAME_XIC (f))
6441 Status status_return;
6443 coding_system = Vlocale_coding_system;
6444 nbytes = XmbLookupString (FRAME_XIC (f),
6445 &event.xkey, (char *) copy_bufptr,
6446 copy_bufsiz, &keysym,
6447 &status_return);
6448 if (status_return == XBufferOverflow)
6450 copy_bufsiz = nbytes + 1;
6451 copy_bufptr = alloca (copy_bufsiz);
6452 nbytes = XmbLookupString (FRAME_XIC (f),
6453 &event.xkey, (char *) copy_bufptr,
6454 copy_bufsiz, &keysym,
6455 &status_return);
6457 /* Xutf8LookupString is a new but already deprecated interface. -stef */
6458 if (status_return == XLookupNone)
6459 break;
6460 else if (status_return == XLookupChars)
6462 keysym = NoSymbol;
6463 modifiers = 0;
6465 else if (status_return != XLookupKeySym
6466 && status_return != XLookupBoth)
6467 abort ();
6469 else
6470 nbytes = XLookupString (&event.xkey, (char *) copy_bufptr,
6471 copy_bufsiz, &keysym,
6472 &compose_status);
6473 #else
6474 nbytes = XLookupString (&event.xkey, (char *) copy_bufptr,
6475 copy_bufsiz, &keysym,
6476 &compose_status);
6477 #endif
6479 /* If not using XIM/XIC, and a compose sequence is in progress,
6480 we break here. Otherwise, chars_matched is always 0. */
6481 if (compose_status.chars_matched > 0 && nbytes == 0)
6482 break;
6484 memset (&compose_status, 0, sizeof (compose_status));
6485 orig_keysym = keysym;
6487 /* Common for all keysym input events. */
6488 XSETFRAME (inev.ie.frame_or_window, f);
6489 inev.ie.modifiers
6490 = x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO (f), modifiers);
6491 inev.ie.timestamp = event.xkey.time;
6493 /* First deal with keysyms which have defined
6494 translations to characters. */
6495 if (keysym >= 32 && keysym < 128)
6496 /* Avoid explicitly decoding each ASCII character. */
6498 inev.ie.kind = ASCII_KEYSTROKE_EVENT;
6499 inev.ie.code = keysym;
6500 goto done_keysym;
6503 /* Keysyms directly mapped to Unicode characters. */
6504 if (keysym >= 0x01000000 && keysym <= 0x0110FFFF)
6506 if (keysym < 0x01000080)
6507 inev.ie.kind = ASCII_KEYSTROKE_EVENT;
6508 else
6509 inev.ie.kind = MULTIBYTE_CHAR_KEYSTROKE_EVENT;
6510 inev.ie.code = keysym & 0xFFFFFF;
6511 goto done_keysym;
6514 /* Now non-ASCII. */
6515 if (HASH_TABLE_P (Vx_keysym_table)
6516 && (c = Fgethash (make_number (keysym),
6517 Vx_keysym_table,
6518 Qnil),
6519 NATNUMP (c)))
6521 inev.ie.kind = (SINGLE_BYTE_CHAR_P (XFASTINT (c))
6522 ? ASCII_KEYSTROKE_EVENT
6523 : MULTIBYTE_CHAR_KEYSTROKE_EVENT);
6524 inev.ie.code = XFASTINT (c);
6525 goto done_keysym;
6528 /* Random non-modifier sorts of keysyms. */
6529 if (((keysym >= XK_BackSpace && keysym <= XK_Escape)
6530 || keysym == XK_Delete
6531 #ifdef XK_ISO_Left_Tab
6532 || (keysym >= XK_ISO_Left_Tab
6533 && keysym <= XK_ISO_Enter)
6534 #endif
6535 || IsCursorKey (keysym) /* 0xff50 <= x < 0xff60 */
6536 || IsMiscFunctionKey (keysym) /* 0xff60 <= x < VARIES */
6537 #ifdef HPUX
6538 /* This recognizes the "extended function
6539 keys". It seems there's no cleaner way.
6540 Test IsModifierKey to avoid handling
6541 mode_switch incorrectly. */
6542 || (XK_Select <= keysym && keysym < XK_KP_Space)
6543 #endif
6544 #ifdef XK_dead_circumflex
6545 || orig_keysym == XK_dead_circumflex
6546 #endif
6547 #ifdef XK_dead_grave
6548 || orig_keysym == XK_dead_grave
6549 #endif
6550 #ifdef XK_dead_tilde
6551 || orig_keysym == XK_dead_tilde
6552 #endif
6553 #ifdef XK_dead_diaeresis
6554 || orig_keysym == XK_dead_diaeresis
6555 #endif
6556 #ifdef XK_dead_macron
6557 || orig_keysym == XK_dead_macron
6558 #endif
6559 #ifdef XK_dead_degree
6560 || orig_keysym == XK_dead_degree
6561 #endif
6562 #ifdef XK_dead_acute
6563 || orig_keysym == XK_dead_acute
6564 #endif
6565 #ifdef XK_dead_cedilla
6566 || orig_keysym == XK_dead_cedilla
6567 #endif
6568 #ifdef XK_dead_breve
6569 || orig_keysym == XK_dead_breve
6570 #endif
6571 #ifdef XK_dead_ogonek
6572 || orig_keysym == XK_dead_ogonek
6573 #endif
6574 #ifdef XK_dead_caron
6575 || orig_keysym == XK_dead_caron
6576 #endif
6577 #ifdef XK_dead_doubleacute
6578 || orig_keysym == XK_dead_doubleacute
6579 #endif
6580 #ifdef XK_dead_abovedot
6581 || orig_keysym == XK_dead_abovedot
6582 #endif
6583 || IsKeypadKey (keysym) /* 0xff80 <= x < 0xffbe */
6584 || IsFunctionKey (keysym) /* 0xffbe <= x < 0xffe1 */
6585 /* Any "vendor-specific" key is ok. */
6586 || (orig_keysym & (1 << 28))
6587 || (keysym != NoSymbol && nbytes == 0))
6588 && ! (IsModifierKey (orig_keysym)
6589 /* The symbols from XK_ISO_Lock
6590 to XK_ISO_Last_Group_Lock
6591 don't have real modifiers but
6592 should be treated similarly to
6593 Mode_switch by Emacs. */
6594 #if defined XK_ISO_Lock && defined XK_ISO_Last_Group_Lock
6595 || (XK_ISO_Lock <= orig_keysym
6596 && orig_keysym <= XK_ISO_Last_Group_Lock)
6597 #endif
6600 STORE_KEYSYM_FOR_DEBUG (keysym);
6601 /* make_lispy_event will convert this to a symbolic
6602 key. */
6603 inev.ie.kind = NON_ASCII_KEYSTROKE_EVENT;
6604 inev.ie.code = keysym;
6605 goto done_keysym;
6608 { /* Raw bytes, not keysym. */
6609 ptrdiff_t i;
6610 int nchars, len;
6612 for (i = 0, nchars = 0; i < nbytes; i++)
6614 if (ASCII_BYTE_P (copy_bufptr[i]))
6615 nchars++;
6616 STORE_KEYSYM_FOR_DEBUG (copy_bufptr[i]);
6619 if (nchars < nbytes)
6621 /* Decode the input data. */
6623 /* The input should be decoded with `coding_system'
6624 which depends on which X*LookupString function
6625 we used just above and the locale. */
6626 setup_coding_system (coding_system, &coding);
6627 coding.src_multibyte = 0;
6628 coding.dst_multibyte = 1;
6629 /* The input is converted to events, thus we can't
6630 handle composition. Anyway, there's no XIM that
6631 gives us composition information. */
6632 coding.common_flags &= ~CODING_ANNOTATION_MASK;
6634 SAFE_NALLOCA (coding.destination, MAX_MULTIBYTE_LENGTH,
6635 nbytes);
6636 coding.dst_bytes = MAX_MULTIBYTE_LENGTH * nbytes;
6637 coding.mode |= CODING_MODE_LAST_BLOCK;
6638 decode_coding_c_string (&coding, copy_bufptr, nbytes, Qnil);
6639 nbytes = coding.produced;
6640 nchars = coding.produced_char;
6641 copy_bufptr = coding.destination;
6644 /* Convert the input data to a sequence of
6645 character events. */
6646 for (i = 0; i < nbytes; i += len)
6648 int ch;
6649 if (nchars == nbytes)
6650 ch = copy_bufptr[i], len = 1;
6651 else
6652 ch = STRING_CHAR_AND_LENGTH (copy_bufptr + i, len);
6653 inev.ie.kind = (SINGLE_BYTE_CHAR_P (ch)
6654 ? ASCII_KEYSTROKE_EVENT
6655 : MULTIBYTE_CHAR_KEYSTROKE_EVENT);
6656 inev.ie.code = ch;
6657 kbd_buffer_store_event_hold (&inev.ie, hold_quit);
6660 count += nchars;
6662 inev.ie.kind = NO_EVENT; /* Already stored above. */
6664 if (keysym == NoSymbol)
6665 break;
6668 done_keysym:
6669 #ifdef HAVE_X_I18N
6670 /* Don't dispatch this event since XtDispatchEvent calls
6671 XFilterEvent, and two calls in a row may freeze the
6672 client. */
6673 break;
6674 #else
6675 goto OTHER;
6676 #endif
6678 case KeyRelease:
6679 last_user_time = event.xkey.time;
6680 #ifdef HAVE_X_I18N
6681 /* Don't dispatch this event since XtDispatchEvent calls
6682 XFilterEvent, and two calls in a row may freeze the
6683 client. */
6684 break;
6685 #else
6686 goto OTHER;
6687 #endif
6689 case EnterNotify:
6690 last_user_time = event.xcrossing.time;
6691 x_detect_focus_change (dpyinfo, &event, &inev.ie);
6693 f = x_any_window_to_frame (dpyinfo, event.xcrossing.window);
6695 if (f && x_mouse_click_focus_ignore_position)
6696 ignore_next_mouse_click_timeout = event.xmotion.time + 200;
6698 /* EnterNotify counts as mouse movement,
6699 so update things that depend on mouse position. */
6700 if (f && !f->output_data.x->hourglass_p)
6701 note_mouse_movement (f, &event.xmotion);
6702 #ifdef USE_GTK
6703 /* We may get an EnterNotify on the buttons in the toolbar. In that
6704 case we moved out of any highlighted area and need to note this. */
6705 if (!f && last_mouse_glyph_frame)
6706 note_mouse_movement (last_mouse_glyph_frame, &event.xmotion);
6707 #endif
6708 goto OTHER;
6710 case FocusIn:
6711 x_detect_focus_change (dpyinfo, &event, &inev.ie);
6712 goto OTHER;
6714 case LeaveNotify:
6715 last_user_time = event.xcrossing.time;
6716 x_detect_focus_change (dpyinfo, &event, &inev.ie);
6718 f = x_top_window_to_frame (dpyinfo, event.xcrossing.window);
6719 if (f)
6721 if (f == hlinfo->mouse_face_mouse_frame)
6723 /* If we move outside the frame, then we're
6724 certainly no longer on any text in the frame. */
6725 clear_mouse_face (hlinfo);
6726 hlinfo->mouse_face_mouse_frame = 0;
6729 /* Generate a nil HELP_EVENT to cancel a help-echo.
6730 Do it only if there's something to cancel.
6731 Otherwise, the startup message is cleared when
6732 the mouse leaves the frame. */
6733 if (any_help_event_p)
6734 do_help = -1;
6736 #ifdef USE_GTK
6737 /* See comment in EnterNotify above */
6738 else if (last_mouse_glyph_frame)
6739 note_mouse_movement (last_mouse_glyph_frame, &event.xmotion);
6740 #endif
6741 goto OTHER;
6743 case FocusOut:
6744 x_detect_focus_change (dpyinfo, &event, &inev.ie);
6745 goto OTHER;
6747 case MotionNotify:
6749 last_user_time = event.xmotion.time;
6750 previous_help_echo_string = help_echo_string;
6751 help_echo_string = Qnil;
6753 if (dpyinfo->grabbed && last_mouse_frame
6754 && FRAME_LIVE_P (last_mouse_frame))
6755 f = last_mouse_frame;
6756 else
6757 f = x_window_to_frame (dpyinfo, event.xmotion.window);
6759 if (hlinfo->mouse_face_hidden)
6761 hlinfo->mouse_face_hidden = 0;
6762 clear_mouse_face (hlinfo);
6765 #ifdef USE_GTK
6766 if (f && xg_event_is_for_scrollbar (f, &event))
6767 f = 0;
6768 #endif
6769 if (f)
6772 /* Generate SELECT_WINDOW_EVENTs when needed.
6773 Don't let popup menus influence things (bug#1261). */
6774 if (!NILP (Vmouse_autoselect_window) && !popup_activated ())
6776 Lisp_Object window;
6778 window = window_from_coordinates (f,
6779 event.xmotion.x, event.xmotion.y,
6780 0, 0);
6782 /* Window will be selected only when it is not selected now and
6783 last mouse movement event was not in it. Minibuffer window
6784 will be selected only when it is active. */
6785 if (WINDOWP (window)
6786 && !EQ (window, last_window)
6787 && !EQ (window, selected_window)
6788 /* For click-to-focus window managers
6789 create event iff we don't leave the
6790 selected frame. */
6791 && (focus_follows_mouse
6792 || (EQ (XWINDOW (window)->frame,
6793 XWINDOW (selected_window)->frame))))
6795 inev.ie.kind = SELECT_WINDOW_EVENT;
6796 inev.ie.frame_or_window = window;
6799 last_window=window;
6801 if (!note_mouse_movement (f, &event.xmotion))
6802 help_echo_string = previous_help_echo_string;
6804 else
6806 #ifndef USE_TOOLKIT_SCROLL_BARS
6807 struct scroll_bar *bar
6808 = x_window_to_scroll_bar (event.xmotion.display,
6809 event.xmotion.window);
6811 if (bar)
6812 x_scroll_bar_note_movement (bar, &event);
6813 #endif /* USE_TOOLKIT_SCROLL_BARS */
6815 /* If we move outside the frame, then we're
6816 certainly no longer on any text in the frame. */
6817 clear_mouse_face (hlinfo);
6820 /* If the contents of the global variable help_echo_string
6821 has changed, generate a HELP_EVENT. */
6822 if (!NILP (help_echo_string)
6823 || !NILP (previous_help_echo_string))
6824 do_help = 1;
6825 goto OTHER;
6828 case ConfigureNotify:
6829 f = x_top_window_to_frame (dpyinfo, event.xconfigure.window);
6830 #ifdef USE_GTK
6831 if (!f
6832 && (f = x_any_window_to_frame (dpyinfo, event.xconfigure.window))
6833 && event.xconfigure.window == FRAME_X_WINDOW (f))
6835 xg_frame_resized (f, event.xconfigure.width,
6836 event.xconfigure.height);
6837 f = 0;
6839 #endif
6840 if (f)
6842 #ifndef USE_X_TOOLKIT
6843 #ifndef USE_GTK
6844 int rows = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, event.xconfigure.height);
6845 int columns = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, event.xconfigure.width);
6847 /* In the toolkit version, change_frame_size
6848 is called by the code that handles resizing
6849 of the EmacsFrame widget. */
6851 /* Even if the number of character rows and columns has
6852 not changed, the font size may have changed, so we need
6853 to check the pixel dimensions as well. */
6854 if (columns != FRAME_COLS (f)
6855 || rows != FRAME_LINES (f)
6856 || event.xconfigure.width != FRAME_PIXEL_WIDTH (f)
6857 || event.xconfigure.height != FRAME_PIXEL_HEIGHT (f))
6859 change_frame_size (f, rows, columns, 0, 1, 0);
6860 SET_FRAME_GARBAGED (f);
6861 cancel_mouse_face (f);
6864 FRAME_PIXEL_WIDTH (f) = event.xconfigure.width;
6865 FRAME_PIXEL_HEIGHT (f) = event.xconfigure.height;
6866 #endif /* not USE_GTK */
6867 #endif
6869 #ifdef USE_GTK
6870 /* GTK creates windows but doesn't map them.
6871 Only get real positions when mapped. */
6872 if (FRAME_GTK_OUTER_WIDGET (f)
6873 && gtk_widget_get_mapped (FRAME_GTK_OUTER_WIDGET (f)))
6874 #endif
6876 x_real_positions (f, &f->left_pos, &f->top_pos);
6879 #ifdef HAVE_X_I18N
6880 if (FRAME_XIC (f) && (FRAME_XIC_STYLE (f) & XIMStatusArea))
6881 xic_set_statusarea (f);
6882 #endif
6885 goto OTHER;
6887 case ButtonRelease:
6888 case ButtonPress:
6890 /* If we decide we want to generate an event to be seen
6891 by the rest of Emacs, we put it here. */
6892 int tool_bar_p = 0;
6894 memset (&compose_status, 0, sizeof (compose_status));
6895 last_mouse_glyph_frame = 0;
6896 last_user_time = event.xbutton.time;
6898 if (dpyinfo->grabbed
6899 && last_mouse_frame
6900 && FRAME_LIVE_P (last_mouse_frame))
6901 f = last_mouse_frame;
6902 else
6903 f = x_window_to_frame (dpyinfo, event.xbutton.window);
6905 #ifdef USE_GTK
6906 if (f && xg_event_is_for_scrollbar (f, &event))
6907 f = 0;
6908 #endif
6909 if (f)
6911 /* Is this in the tool-bar? */
6912 if (WINDOWP (f->tool_bar_window)
6913 && WINDOW_TOTAL_LINES (XWINDOW (f->tool_bar_window)))
6915 Lisp_Object window;
6916 int x = event.xbutton.x;
6917 int y = event.xbutton.y;
6919 window = window_from_coordinates (f, x, y, 0, 1);
6920 tool_bar_p = EQ (window, f->tool_bar_window);
6922 if (tool_bar_p && event.xbutton.button < 4)
6924 handle_tool_bar_click (f, x, y,
6925 event.xbutton.type == ButtonPress,
6926 x_x_to_emacs_modifiers (dpyinfo,
6927 event.xbutton.state));
6931 if (!tool_bar_p)
6932 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
6933 if (! popup_activated ())
6934 #endif
6936 if (ignore_next_mouse_click_timeout)
6938 if (event.type == ButtonPress
6939 && (int)(event.xbutton.time - ignore_next_mouse_click_timeout) > 0)
6941 ignore_next_mouse_click_timeout = 0;
6942 construct_mouse_click (&inev.ie, &event.xbutton, f);
6944 if (event.type == ButtonRelease)
6945 ignore_next_mouse_click_timeout = 0;
6947 else
6948 construct_mouse_click (&inev.ie, &event.xbutton, f);
6950 if (FRAME_X_EMBEDDED_P (f))
6951 xembed_send_message (f, event.xbutton.time,
6952 XEMBED_REQUEST_FOCUS, 0, 0, 0);
6954 else
6956 struct scroll_bar *bar
6957 = x_window_to_scroll_bar (event.xbutton.display,
6958 event.xbutton.window);
6960 #ifdef USE_TOOLKIT_SCROLL_BARS
6961 /* Make the "Ctrl-Mouse-2 splits window" work for toolkit
6962 scroll bars. */
6963 if (bar && event.xbutton.state & ControlMask)
6965 x_scroll_bar_handle_click (bar, &event, &inev.ie);
6966 *finish = X_EVENT_DROP;
6968 #else /* not USE_TOOLKIT_SCROLL_BARS */
6969 if (bar)
6970 x_scroll_bar_handle_click (bar, &event, &inev.ie);
6971 #endif /* not USE_TOOLKIT_SCROLL_BARS */
6974 if (event.type == ButtonPress)
6976 dpyinfo->grabbed |= (1 << event.xbutton.button);
6977 last_mouse_frame = f;
6979 if (!tool_bar_p)
6980 last_tool_bar_item = -1;
6982 else
6983 dpyinfo->grabbed &= ~(1 << event.xbutton.button);
6985 /* Ignore any mouse motion that happened before this event;
6986 any subsequent mouse-movement Emacs events should reflect
6987 only motion after the ButtonPress/Release. */
6988 if (f != 0)
6989 f->mouse_moved = 0;
6991 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
6992 f = x_menubar_window_to_frame (dpyinfo, &event);
6993 /* For a down-event in the menu bar,
6994 don't pass it to Xt right now.
6995 Instead, save it away
6996 and we will pass it to Xt from kbd_buffer_get_event.
6997 That way, we can run some Lisp code first. */
6998 if (! popup_activated ()
6999 #ifdef USE_GTK
7000 /* Gtk+ menus only react to the first three buttons. */
7001 && event.xbutton.button < 3
7002 #endif
7003 && f && event.type == ButtonPress
7004 /* Verify the event is really within the menu bar
7005 and not just sent to it due to grabbing. */
7006 && event.xbutton.x >= 0
7007 && event.xbutton.x < FRAME_PIXEL_WIDTH (f)
7008 && event.xbutton.y >= 0
7009 && event.xbutton.y < f->output_data.x->menubar_height
7010 && event.xbutton.same_screen)
7012 SET_SAVED_BUTTON_EVENT;
7013 XSETFRAME (last_mouse_press_frame, f);
7014 *finish = X_EVENT_DROP;
7016 else if (event.type == ButtonPress)
7018 last_mouse_press_frame = Qnil;
7019 goto OTHER;
7021 else
7022 goto OTHER;
7023 #endif /* USE_X_TOOLKIT || USE_GTK */
7025 break;
7027 case CirculateNotify:
7028 goto OTHER;
7030 case CirculateRequest:
7031 goto OTHER;
7033 case VisibilityNotify:
7034 goto OTHER;
7036 case MappingNotify:
7037 /* Someone has changed the keyboard mapping - update the
7038 local cache. */
7039 switch (event.xmapping.request)
7041 case MappingModifier:
7042 x_find_modifier_meanings (dpyinfo);
7043 /* This is meant to fall through. */
7044 case MappingKeyboard:
7045 XRefreshKeyboardMapping (&event.xmapping);
7047 goto OTHER;
7049 case DestroyNotify:
7050 xft_settings_event (dpyinfo, &event);
7051 break;
7053 default:
7054 OTHER:
7055 #ifdef USE_X_TOOLKIT
7056 BLOCK_INPUT;
7057 if (*finish != X_EVENT_DROP)
7058 XtDispatchEvent (&event);
7059 UNBLOCK_INPUT;
7060 #endif /* USE_X_TOOLKIT */
7061 break;
7064 done:
7065 if (inev.ie.kind != NO_EVENT)
7067 kbd_buffer_store_event_hold (&inev.ie, hold_quit);
7068 count++;
7071 if (do_help
7072 && !(hold_quit && hold_quit->kind != NO_EVENT))
7074 Lisp_Object frame;
7076 if (f)
7077 XSETFRAME (frame, f);
7078 else
7079 frame = Qnil;
7081 if (do_help > 0)
7083 any_help_event_p = 1;
7084 gen_help_event (help_echo_string, frame, help_echo_window,
7085 help_echo_object, help_echo_pos);
7087 else
7089 help_echo_string = Qnil;
7090 gen_help_event (Qnil, frame, Qnil, Qnil, 0);
7092 count++;
7095 SAFE_FREE ();
7096 *eventptr = event;
7097 return count;
7100 #if defined USE_GTK || defined USE_X_TOOLKIT
7102 /* Handles the XEvent EVENT on display DISPLAY.
7103 This is used for event loops outside the normal event handling,
7104 i.e. looping while a popup menu or a dialog is posted.
7106 Returns the value handle_one_xevent sets in the finish argument. */
7108 x_dispatch_event (XEvent *event, Display *display)
7110 struct x_display_info *dpyinfo;
7111 int finish = X_EVENT_NORMAL;
7113 dpyinfo = x_display_info_for_display (display);
7115 if (dpyinfo)
7116 handle_one_xevent (dpyinfo, event, &finish, 0);
7118 return finish;
7120 #endif
7123 /* Read events coming from the X server.
7124 This routine is called by the SIGIO handler only if SYNC_INPUT is
7125 not defined.
7126 We return as soon as there are no more events to be read.
7128 We return the number of characters stored into the buffer,
7129 thus pretending to be `read' (except the characters we store
7130 in the keyboard buffer can be multibyte, so are not necessarily
7131 C chars).
7133 EXPECTED is nonzero if the caller knows input is available. */
7135 static int
7136 XTread_socket (struct terminal *terminal, int expected, struct input_event *hold_quit)
7138 int count = 0;
7139 int event_found = 0;
7141 if (interrupt_input_blocked)
7143 interrupt_input_pending = 1;
7144 #ifdef SYNC_INPUT
7145 pending_signals = 1;
7146 #endif
7147 return -1;
7150 interrupt_input_pending = 0;
7151 #ifdef SYNC_INPUT
7152 pending_signals = pending_atimers;
7153 #endif
7154 BLOCK_INPUT;
7156 /* So people can tell when we have read the available input. */
7157 input_signal_count++;
7159 #ifndef SYNC_INPUT
7160 ++handling_signal;
7161 #endif
7163 /* For debugging, this gives a way to fake an I/O error. */
7164 if (terminal->display_info.x == XTread_socket_fake_io_error)
7166 XTread_socket_fake_io_error = 0;
7167 x_io_error_quitter (terminal->display_info.x->display);
7170 #ifndef USE_GTK
7171 while (XPending (terminal->display_info.x->display))
7173 int finish;
7174 XEvent event;
7176 XNextEvent (terminal->display_info.x->display, &event);
7178 #ifdef HAVE_X_I18N
7179 /* Filter events for the current X input method. */
7180 if (x_filter_event (terminal->display_info.x, &event))
7181 continue;
7182 #endif
7183 event_found = 1;
7185 count += handle_one_xevent (terminal->display_info.x,
7186 &event, &finish, hold_quit);
7188 if (finish == X_EVENT_GOTO_OUT)
7189 goto out;
7192 out:;
7194 #else /* USE_GTK */
7196 /* For GTK we must use the GTK event loop. But XEvents gets passed
7197 to our filter function above, and then to the big event switch.
7198 We use a bunch of globals to communicate with our filter function,
7199 that is kind of ugly, but it works.
7201 There is no way to do one display at the time, GTK just does events
7202 from all displays. */
7204 while (gtk_events_pending ())
7206 current_count = count;
7207 current_hold_quit = hold_quit;
7209 gtk_main_iteration ();
7211 count = current_count;
7212 current_count = -1;
7213 current_hold_quit = 0;
7215 if (current_finish == X_EVENT_GOTO_OUT)
7216 break;
7218 #endif /* USE_GTK */
7220 /* On some systems, an X bug causes Emacs to get no more events
7221 when the window is destroyed. Detect that. (1994.) */
7222 if (! event_found)
7224 /* Emacs and the X Server eats up CPU time if XNoOp is done every time.
7225 One XNOOP in 100 loops will make Emacs terminate.
7226 B. Bretthauer, 1994 */
7227 x_noop_count++;
7228 if (x_noop_count >= 100)
7230 x_noop_count=0;
7232 if (next_noop_dpyinfo == 0)
7233 next_noop_dpyinfo = x_display_list;
7235 XNoOp (next_noop_dpyinfo->display);
7237 /* Each time we get here, cycle through the displays now open. */
7238 next_noop_dpyinfo = next_noop_dpyinfo->next;
7242 /* If the focus was just given to an auto-raising frame,
7243 raise it now. */
7244 /* ??? This ought to be able to handle more than one such frame. */
7245 if (pending_autoraise_frame)
7247 x_raise_frame (pending_autoraise_frame);
7248 pending_autoraise_frame = 0;
7251 #ifndef SYNC_INPUT
7252 --handling_signal;
7253 #endif
7254 UNBLOCK_INPUT;
7256 return count;
7262 /***********************************************************************
7263 Text Cursor
7264 ***********************************************************************/
7266 /* Set clipping for output in glyph row ROW. W is the window in which
7267 we operate. GC is the graphics context to set clipping in.
7269 ROW may be a text row or, e.g., a mode line. Text rows must be
7270 clipped to the interior of the window dedicated to text display,
7271 mode lines must be clipped to the whole window. */
7273 static void
7274 x_clip_to_row (struct window *w, struct glyph_row *row, int area, GC gc)
7276 struct frame *f = XFRAME (WINDOW_FRAME (w));
7277 XRectangle clip_rect;
7278 int window_x, window_y, window_width;
7280 window_box (w, area, &window_x, &window_y, &window_width, 0);
7282 clip_rect.x = window_x;
7283 clip_rect.y = WINDOW_TO_FRAME_PIXEL_Y (w, max (0, row->y));
7284 clip_rect.y = max (clip_rect.y, window_y);
7285 clip_rect.width = window_width;
7286 clip_rect.height = row->visible_height;
7288 XSetClipRectangles (FRAME_X_DISPLAY (f), gc, 0, 0, &clip_rect, 1, Unsorted);
7292 /* Draw a hollow box cursor on window W in glyph row ROW. */
7294 static void
7295 x_draw_hollow_cursor (struct window *w, struct glyph_row *row)
7297 struct frame *f = XFRAME (WINDOW_FRAME (w));
7298 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
7299 Display *dpy = FRAME_X_DISPLAY (f);
7300 int x, y, wd, h;
7301 XGCValues xgcv;
7302 struct glyph *cursor_glyph;
7303 GC gc;
7305 /* Get the glyph the cursor is on. If we can't tell because
7306 the current matrix is invalid or such, give up. */
7307 cursor_glyph = get_phys_cursor_glyph (w);
7308 if (cursor_glyph == NULL)
7309 return;
7311 /* Compute frame-relative coordinates for phys cursor. */
7312 get_phys_cursor_geometry (w, row, cursor_glyph, &x, &y, &h);
7313 wd = w->phys_cursor_width;
7315 /* The foreground of cursor_gc is typically the same as the normal
7316 background color, which can cause the cursor box to be invisible. */
7317 xgcv.foreground = f->output_data.x->cursor_pixel;
7318 if (dpyinfo->scratch_cursor_gc)
7319 XChangeGC (dpy, dpyinfo->scratch_cursor_gc, GCForeground, &xgcv);
7320 else
7321 dpyinfo->scratch_cursor_gc = XCreateGC (dpy, FRAME_X_WINDOW (f),
7322 GCForeground, &xgcv);
7323 gc = dpyinfo->scratch_cursor_gc;
7325 /* Set clipping, draw the rectangle, and reset clipping again. */
7326 x_clip_to_row (w, row, TEXT_AREA, gc);
7327 XDrawRectangle (dpy, FRAME_X_WINDOW (f), gc, x, y, wd, h - 1);
7328 XSetClipMask (dpy, gc, None);
7332 /* Draw a bar cursor on window W in glyph row ROW.
7334 Implementation note: One would like to draw a bar cursor with an
7335 angle equal to the one given by the font property XA_ITALIC_ANGLE.
7336 Unfortunately, I didn't find a font yet that has this property set.
7337 --gerd. */
7339 static void
7340 x_draw_bar_cursor (struct window *w, struct glyph_row *row, int width, enum text_cursor_kinds kind)
7342 struct frame *f = XFRAME (w->frame);
7343 struct glyph *cursor_glyph;
7345 /* If cursor is out of bounds, don't draw garbage. This can happen
7346 in mini-buffer windows when switching between echo area glyphs
7347 and mini-buffer. */
7348 cursor_glyph = get_phys_cursor_glyph (w);
7349 if (cursor_glyph == NULL)
7350 return;
7352 /* If on an image, draw like a normal cursor. That's usually better
7353 visible than drawing a bar, esp. if the image is large so that
7354 the bar might not be in the window. */
7355 if (cursor_glyph->type == IMAGE_GLYPH)
7357 struct glyph_row *r;
7358 r = MATRIX_ROW (w->current_matrix, w->phys_cursor.vpos);
7359 draw_phys_cursor_glyph (w, r, DRAW_CURSOR);
7361 else
7363 Display *dpy = FRAME_X_DISPLAY (f);
7364 Window window = FRAME_X_WINDOW (f);
7365 GC gc = FRAME_X_DISPLAY_INFO (f)->scratch_cursor_gc;
7366 unsigned long mask = GCForeground | GCBackground | GCGraphicsExposures;
7367 struct face *face = FACE_FROM_ID (f, cursor_glyph->face_id);
7368 XGCValues xgcv;
7370 /* If the glyph's background equals the color we normally draw
7371 the bars cursor in, the bar cursor in its normal color is
7372 invisible. Use the glyph's foreground color instead in this
7373 case, on the assumption that the glyph's colors are chosen so
7374 that the glyph is legible. */
7375 if (face->background == f->output_data.x->cursor_pixel)
7376 xgcv.background = xgcv.foreground = face->foreground;
7377 else
7378 xgcv.background = xgcv.foreground = f->output_data.x->cursor_pixel;
7379 xgcv.graphics_exposures = 0;
7381 if (gc)
7382 XChangeGC (dpy, gc, mask, &xgcv);
7383 else
7385 gc = XCreateGC (dpy, window, mask, &xgcv);
7386 FRAME_X_DISPLAY_INFO (f)->scratch_cursor_gc = gc;
7389 x_clip_to_row (w, row, TEXT_AREA, gc);
7391 if (kind == BAR_CURSOR)
7393 int x = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x);
7395 if (width < 0)
7396 width = FRAME_CURSOR_WIDTH (f);
7397 width = min (cursor_glyph->pixel_width, width);
7399 w->phys_cursor_width = width;
7401 /* If the character under cursor is R2L, draw the bar cursor
7402 on the right of its glyph, rather than on the left. */
7403 if ((cursor_glyph->resolved_level & 1) != 0)
7404 x += cursor_glyph->pixel_width - width;
7406 XFillRectangle (dpy, window, gc, x,
7407 WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y),
7408 width, row->height);
7410 else
7412 int dummy_x, dummy_y, dummy_h;
7414 if (width < 0)
7415 width = row->height;
7417 width = min (row->height, width);
7419 get_phys_cursor_geometry (w, row, cursor_glyph, &dummy_x,
7420 &dummy_y, &dummy_h);
7422 XFillRectangle (dpy, window, gc,
7423 WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x),
7424 WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y +
7425 row->height - width),
7426 w->phys_cursor_width, width);
7429 XSetClipMask (dpy, gc, None);
7434 /* RIF: Define cursor CURSOR on frame F. */
7436 static void
7437 x_define_frame_cursor (struct frame *f, Cursor cursor)
7439 if (!f->pointer_invisible
7440 && f->output_data.x->current_cursor != cursor)
7441 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), cursor);
7442 f->output_data.x->current_cursor = cursor;
7446 /* RIF: Clear area on frame F. */
7448 static void
7449 x_clear_frame_area (struct frame *f, int x, int y, int width, int height)
7451 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
7452 x, y, width, height, False);
7453 #ifdef USE_GTK
7454 /* Must queue a redraw, because scroll bars might have been cleared. */
7455 if (FRAME_GTK_WIDGET (f))
7456 gtk_widget_queue_draw (FRAME_GTK_WIDGET (f));
7457 #endif
7461 /* RIF: Draw cursor on window W. */
7463 static void
7464 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)
7466 struct frame *f = XFRAME (WINDOW_FRAME (w));
7468 if (on_p)
7470 w->phys_cursor_type = cursor_type;
7471 w->phys_cursor_on_p = 1;
7473 if (glyph_row->exact_window_width_line_p
7474 && (glyph_row->reversed_p
7475 ? (w->phys_cursor.hpos < 0)
7476 : (w->phys_cursor.hpos >= glyph_row->used[TEXT_AREA])))
7478 glyph_row->cursor_in_fringe_p = 1;
7479 draw_fringe_bitmap (w, glyph_row, glyph_row->reversed_p);
7481 else
7483 switch (cursor_type)
7485 case HOLLOW_BOX_CURSOR:
7486 x_draw_hollow_cursor (w, glyph_row);
7487 break;
7489 case FILLED_BOX_CURSOR:
7490 draw_phys_cursor_glyph (w, glyph_row, DRAW_CURSOR);
7491 break;
7493 case BAR_CURSOR:
7494 x_draw_bar_cursor (w, glyph_row, cursor_width, BAR_CURSOR);
7495 break;
7497 case HBAR_CURSOR:
7498 x_draw_bar_cursor (w, glyph_row, cursor_width, HBAR_CURSOR);
7499 break;
7501 case NO_CURSOR:
7502 w->phys_cursor_width = 0;
7503 break;
7505 default:
7506 abort ();
7510 #ifdef HAVE_X_I18N
7511 if (w == XWINDOW (f->selected_window))
7512 if (FRAME_XIC (f) && (FRAME_XIC_STYLE (f) & XIMPreeditPosition))
7513 xic_set_preeditarea (w, x, y);
7514 #endif
7517 #ifndef XFlush
7518 XFlush (FRAME_X_DISPLAY (f));
7519 #endif
7523 /* Icons. */
7525 /* Make the x-window of frame F use the gnu icon bitmap. */
7528 x_bitmap_icon (struct frame *f, Lisp_Object file)
7530 ptrdiff_t bitmap_id;
7532 if (FRAME_X_WINDOW (f) == 0)
7533 return 1;
7535 /* Free up our existing icon bitmap and mask if any. */
7536 if (f->output_data.x->icon_bitmap > 0)
7537 x_destroy_bitmap (f, f->output_data.x->icon_bitmap);
7538 f->output_data.x->icon_bitmap = 0;
7540 if (STRINGP (file))
7542 #ifdef USE_GTK
7543 /* Use gtk_window_set_icon_from_file () if available,
7544 It's not restricted to bitmaps */
7545 if (xg_set_icon (f, file))
7546 return 0;
7547 #endif /* USE_GTK */
7548 bitmap_id = x_create_bitmap_from_file (f, file);
7549 x_create_bitmap_mask (f, bitmap_id);
7551 else
7553 /* Create the GNU bitmap and mask if necessary. */
7554 if (FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id < 0)
7556 ptrdiff_t rc = -1;
7558 #ifdef USE_GTK
7560 if (xg_set_icon (f, xg_default_icon_file)
7561 || xg_set_icon_from_xpm_data (f, gnu_xpm_bits))
7562 return 0;
7564 #elif defined (HAVE_XPM) && defined (HAVE_X_WINDOWS)
7566 rc = x_create_bitmap_from_xpm_data (f, gnu_xpm_bits);
7567 if (rc != -1)
7568 FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id = rc;
7570 #endif
7572 /* If all else fails, use the (black and white) xbm image. */
7573 if (rc == -1)
7575 rc = x_create_bitmap_from_data (f, (char *) gnu_xbm_bits,
7576 gnu_xbm_width, gnu_xbm_height);
7577 if (rc == -1)
7578 return 1;
7580 FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id = rc;
7581 x_create_bitmap_mask (f, FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id);
7585 /* The first time we create the GNU bitmap and mask,
7586 this increments the ref-count one extra time.
7587 As a result, the GNU bitmap and mask are never freed.
7588 That way, we don't have to worry about allocating it again. */
7589 x_reference_bitmap (f, FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id);
7591 bitmap_id = FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id;
7594 x_wm_set_icon_pixmap (f, bitmap_id);
7595 f->output_data.x->icon_bitmap = bitmap_id;
7597 return 0;
7601 /* Make the x-window of frame F use a rectangle with text.
7602 Use ICON_NAME as the text. */
7605 x_text_icon (struct frame *f, const char *icon_name)
7607 if (FRAME_X_WINDOW (f) == 0)
7608 return 1;
7611 XTextProperty text;
7612 text.value = (unsigned char *) icon_name;
7613 text.encoding = XA_STRING;
7614 text.format = 8;
7615 text.nitems = strlen (icon_name);
7616 XSetWMIconName (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f), &text);
7619 if (f->output_data.x->icon_bitmap > 0)
7620 x_destroy_bitmap (f, f->output_data.x->icon_bitmap);
7621 f->output_data.x->icon_bitmap = 0;
7622 x_wm_set_icon_pixmap (f, 0);
7624 return 0;
7627 #define X_ERROR_MESSAGE_SIZE 200
7629 /* If non-nil, this should be a string.
7630 It means catch X errors and store the error message in this string.
7632 The reason we use a stack is that x_catch_error/x_uncatch_error can
7633 be called from a signal handler.
7636 struct x_error_message_stack {
7637 char string[X_ERROR_MESSAGE_SIZE];
7638 Display *dpy;
7639 struct x_error_message_stack *prev;
7641 static struct x_error_message_stack *x_error_message;
7643 /* An X error handler which stores the error message in
7644 *x_error_message. This is called from x_error_handler if
7645 x_catch_errors is in effect. */
7647 static void
7648 x_error_catcher (Display *display, XErrorEvent *event)
7650 XGetErrorText (display, event->error_code,
7651 x_error_message->string,
7652 X_ERROR_MESSAGE_SIZE);
7655 /* Begin trapping X errors for display DPY. Actually we trap X errors
7656 for all displays, but DPY should be the display you are actually
7657 operating on.
7659 After calling this function, X protocol errors no longer cause
7660 Emacs to exit; instead, they are recorded in the string
7661 stored in *x_error_message.
7663 Calling x_check_errors signals an Emacs error if an X error has
7664 occurred since the last call to x_catch_errors or x_check_errors.
7666 Calling x_uncatch_errors resumes the normal error handling. */
7668 void
7669 x_catch_errors (Display *dpy)
7671 struct x_error_message_stack *data = xmalloc (sizeof *data);
7673 /* Make sure any errors from previous requests have been dealt with. */
7674 XSync (dpy, False);
7676 data->dpy = dpy;
7677 data->string[0] = 0;
7678 data->prev = x_error_message;
7679 x_error_message = data;
7682 /* Undo the last x_catch_errors call.
7683 DPY should be the display that was passed to x_catch_errors. */
7685 void
7686 x_uncatch_errors (void)
7688 struct x_error_message_stack *tmp;
7690 BLOCK_INPUT;
7692 /* The display may have been closed before this function is called.
7693 Check if it is still open before calling XSync. */
7694 if (x_display_info_for_display (x_error_message->dpy) != 0)
7695 XSync (x_error_message->dpy, False);
7697 tmp = x_error_message;
7698 x_error_message = x_error_message->prev;
7699 xfree (tmp);
7700 UNBLOCK_INPUT;
7703 /* If any X protocol errors have arrived since the last call to
7704 x_catch_errors or x_check_errors, signal an Emacs error using
7705 sprintf (a buffer, FORMAT, the x error message text) as the text. */
7707 void
7708 x_check_errors (Display *dpy, const char *format)
7710 /* Make sure to catch any errors incurred so far. */
7711 XSync (dpy, False);
7713 if (x_error_message->string[0])
7715 char string[X_ERROR_MESSAGE_SIZE];
7716 memcpy (string, x_error_message->string, X_ERROR_MESSAGE_SIZE);
7717 x_uncatch_errors ();
7718 error (format, string);
7722 /* Nonzero if we had any X protocol errors
7723 since we did x_catch_errors on DPY. */
7726 x_had_errors_p (Display *dpy)
7728 /* Make sure to catch any errors incurred so far. */
7729 XSync (dpy, False);
7731 return x_error_message->string[0] != 0;
7734 /* Forget about any errors we have had, since we did x_catch_errors on DPY. */
7736 void
7737 x_clear_errors (Display *dpy)
7739 x_error_message->string[0] = 0;
7742 #if 0 /* See comment in unwind_to_catch why calling this is a bad
7743 * idea. --lorentey */
7744 /* Close off all unclosed x_catch_errors calls. */
7746 void
7747 x_fully_uncatch_errors (void)
7749 while (x_error_message)
7750 x_uncatch_errors ();
7752 #endif
7754 #if 0
7755 static unsigned int x_wire_count;
7756 x_trace_wire (void)
7758 fprintf (stderr, "Lib call: %d\n", ++x_wire_count);
7760 #endif /* ! 0 */
7763 /* Handle SIGPIPE, which can happen when the connection to a server
7764 simply goes away. SIGPIPE is handled by x_connection_signal.
7765 Don't need to do anything, because the write which caused the
7766 SIGPIPE will fail, causing Xlib to invoke the X IO error handler,
7767 which will do the appropriate cleanup for us. */
7769 static void
7770 x_connection_signal (int signalnum) /* If we don't have an argument, */
7771 /* some compilers complain in signal calls. */
7773 #ifdef USG
7774 /* USG systems forget handlers when they are used;
7775 must reestablish each time */
7776 signal (signalnum, x_connection_signal);
7777 #endif /* USG */
7781 /************************************************************************
7782 Handling X errors
7783 ************************************************************************/
7785 /* Error message passed to x_connection_closed. */
7787 static char *error_msg;
7789 /* Handle the loss of connection to display DPY. ERROR_MESSAGE is
7790 the text of an error message that lead to the connection loss. */
7792 static void
7793 x_connection_closed (Display *dpy, const char *error_message)
7795 struct x_display_info *dpyinfo = x_display_info_for_display (dpy);
7796 Lisp_Object frame, tail;
7797 ptrdiff_t idx = SPECPDL_INDEX ();
7799 error_msg = alloca (strlen (error_message) + 1);
7800 strcpy (error_msg, error_message);
7801 handling_signal = 0;
7803 /* Inhibit redisplay while frames are being deleted. */
7804 specbind (Qinhibit_redisplay, Qt);
7806 if (dpyinfo)
7808 /* Protect display from being closed when we delete the last
7809 frame on it. */
7810 dpyinfo->reference_count++;
7811 dpyinfo->terminal->reference_count++;
7814 /* First delete frames whose mini-buffers are on frames
7815 that are on the dead display. */
7816 FOR_EACH_FRAME (tail, frame)
7818 Lisp_Object minibuf_frame;
7819 minibuf_frame
7820 = WINDOW_FRAME (XWINDOW (FRAME_MINIBUF_WINDOW (XFRAME (frame))));
7821 if (FRAME_X_P (XFRAME (frame))
7822 && FRAME_X_P (XFRAME (minibuf_frame))
7823 && ! EQ (frame, minibuf_frame)
7824 && FRAME_X_DISPLAY_INFO (XFRAME (minibuf_frame)) == dpyinfo)
7825 delete_frame (frame, Qnoelisp);
7828 /* Now delete all remaining frames on the dead display.
7829 We are now sure none of these is used as the mini-buffer
7830 for another frame that we need to delete. */
7831 FOR_EACH_FRAME (tail, frame)
7832 if (FRAME_X_P (XFRAME (frame))
7833 && FRAME_X_DISPLAY_INFO (XFRAME (frame)) == dpyinfo)
7835 /* Set this to t so that delete_frame won't get confused
7836 trying to find a replacement. */
7837 kset_default_minibuffer_frame (FRAME_KBOARD (XFRAME (frame)), Qt);
7838 delete_frame (frame, Qnoelisp);
7841 /* If DPYINFO is null, this means we didn't open the display in the
7842 first place, so don't try to close it. */
7843 if (dpyinfo)
7845 /* We can not call XtCloseDisplay here because it calls XSync.
7846 XSync inside the error handler apparently hangs Emacs. On
7847 current Xt versions, this isn't needed either. */
7848 #ifdef USE_GTK
7849 /* A long-standing GTK bug prevents proper disconnect handling
7850 (https://bugzilla.gnome.org/show_bug.cgi?id=85715). Once,
7851 the resulting Glib error message loop filled a user's disk.
7852 To avoid this, kill Emacs unconditionally on disconnect. */
7853 shut_down_emacs (0, 0, Qnil);
7854 fprintf (stderr, "%s\n\
7855 When compiled with GTK, Emacs cannot recover from X disconnects.\n\
7856 This is a GTK bug: https://bugzilla.gnome.org/show_bug.cgi?id=85715\n\
7857 For details, see etc/PROBLEMS.\n",
7858 error_msg);
7859 abort ();
7860 #endif /* USE_GTK */
7862 /* Indicate that this display is dead. */
7863 dpyinfo->display = 0;
7865 dpyinfo->reference_count--;
7866 dpyinfo->terminal->reference_count--;
7867 if (dpyinfo->reference_count != 0)
7868 /* We have just closed all frames on this display. */
7869 abort ();
7872 Lisp_Object tmp;
7873 XSETTERMINAL (tmp, dpyinfo->terminal);
7874 Fdelete_terminal (tmp, Qnoelisp);
7878 if (terminal_list == 0)
7880 fprintf (stderr, "%s\n", error_msg);
7881 Fkill_emacs (make_number (70));
7882 /* NOTREACHED */
7885 /* Ordinary stack unwind doesn't deal with these. */
7886 #ifdef SIGIO
7887 sigunblock (sigmask (SIGIO));
7888 #endif
7889 sigunblock (sigmask (SIGALRM));
7890 TOTALLY_UNBLOCK_INPUT;
7892 unbind_to (idx, Qnil);
7893 clear_waiting_for_input ();
7895 /* Tell GCC not to suggest attribute 'noreturn' for this function. */
7896 IF_LINT (if (! terminal_list) return; )
7898 /* Here, we absolutely have to use a non-local exit (e.g. signal, throw,
7899 longjmp), because returning from this function would get us back into
7900 Xlib's code which will directly call `exit'. */
7901 error ("%s", error_msg);
7904 /* We specifically use it before defining it, so that gcc doesn't inline it,
7905 otherwise gdb doesn't know how to properly put a breakpoint on it. */
7906 static void x_error_quitter (Display *, XErrorEvent *);
7908 /* This is the first-level handler for X protocol errors.
7909 It calls x_error_quitter or x_error_catcher. */
7911 static int
7912 x_error_handler (Display *display, XErrorEvent *event)
7914 #ifdef HAVE_GTK3
7915 if (event->error_code == BadMatch
7916 && event->request_code == X_SetInputFocus
7917 && event->minor_code == 0)
7919 return 0;
7921 #endif
7923 if (x_error_message)
7924 x_error_catcher (display, event);
7925 else
7926 x_error_quitter (display, event);
7927 return 0;
7930 /* This is the usual handler for X protocol errors.
7931 It kills all frames on the display that we got the error for.
7932 If that was the only one, it prints an error message and kills Emacs. */
7934 /* .gdbinit puts a breakpoint here, so make sure it is not inlined. */
7936 /* On older GCC versions, just putting x_error_quitter
7937 after x_error_handler prevents inlining into the former. */
7939 static void NO_INLINE
7940 x_error_quitter (Display *display, XErrorEvent *event)
7942 char buf[256], buf1[356];
7944 /* Ignore BadName errors. They can happen because of fonts
7945 or colors that are not defined. */
7947 if (event->error_code == BadName)
7948 return;
7950 /* Note that there is no real way portable across R3/R4 to get the
7951 original error handler. */
7953 XGetErrorText (display, event->error_code, buf, sizeof (buf));
7954 sprintf (buf1, "X protocol error: %s on protocol request %d",
7955 buf, event->request_code);
7956 x_connection_closed (display, buf1);
7960 /* This is the handler for X IO errors, always.
7961 It kills all frames on the display that we lost touch with.
7962 If that was the only one, it prints an error message and kills Emacs. */
7964 static int
7965 x_io_error_quitter (Display *display)
7967 char buf[256];
7969 snprintf (buf, sizeof buf, "Connection lost to X server `%s'",
7970 DisplayString (display));
7971 x_connection_closed (display, buf);
7972 return 0;
7975 /* Changing the font of the frame. */
7977 /* Give frame F the font FONT-OBJECT as its default font. The return
7978 value is FONT-OBJECT. FONTSET is an ID of the fontset for the
7979 frame. If it is negative, generate a new fontset from
7980 FONT-OBJECT. */
7982 Lisp_Object
7983 x_new_font (struct frame *f, Lisp_Object font_object, int fontset)
7985 struct font *font = XFONT_OBJECT (font_object);
7987 if (fontset < 0)
7988 fontset = fontset_from_font (font_object);
7989 FRAME_FONTSET (f) = fontset;
7990 if (FRAME_FONT (f) == font)
7991 /* This font is already set in frame F. There's nothing more to
7992 do. */
7993 return font_object;
7995 FRAME_FONT (f) = font;
7996 FRAME_BASELINE_OFFSET (f) = font->baseline_offset;
7997 FRAME_COLUMN_WIDTH (f) = font->average_width;
7998 FRAME_SPACE_WIDTH (f) = font->space_width;
7999 FRAME_LINE_HEIGHT (f) = FONT_HEIGHT (font);
8001 compute_fringe_widths (f, 1);
8003 /* Compute the scroll bar width in character columns. */
8004 if (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) > 0)
8006 int wid = FRAME_COLUMN_WIDTH (f);
8007 FRAME_CONFIG_SCROLL_BAR_COLS (f)
8008 = (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) + wid-1) / wid;
8010 else
8012 int wid = FRAME_COLUMN_WIDTH (f);
8013 FRAME_CONFIG_SCROLL_BAR_COLS (f) = (14 + wid - 1) / wid;
8016 if (FRAME_X_WINDOW (f) != 0)
8018 /* Don't change the size of a tip frame; there's no point in
8019 doing it because it's done in Fx_show_tip, and it leads to
8020 problems because the tip frame has no widget. */
8021 if (NILP (tip_frame) || XFRAME (tip_frame) != f)
8022 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
8025 #ifdef HAVE_X_I18N
8026 if (FRAME_XIC (f)
8027 && (FRAME_XIC_STYLE (f) & (XIMPreeditPosition | XIMStatusArea)))
8029 BLOCK_INPUT;
8030 xic_set_xfontset (f, SSDATA (fontset_ascii (fontset)));
8031 UNBLOCK_INPUT;
8033 #endif
8035 return font_object;
8039 /***********************************************************************
8040 X Input Methods
8041 ***********************************************************************/
8043 #ifdef HAVE_X_I18N
8045 #ifdef HAVE_X11R6
8047 /* XIM destroy callback function, which is called whenever the
8048 connection to input method XIM dies. CLIENT_DATA contains a
8049 pointer to the x_display_info structure corresponding to XIM. */
8051 static void
8052 xim_destroy_callback (XIM xim, XPointer client_data, XPointer call_data)
8054 struct x_display_info *dpyinfo = (struct x_display_info *) client_data;
8055 Lisp_Object frame, tail;
8057 BLOCK_INPUT;
8059 /* No need to call XDestroyIC.. */
8060 FOR_EACH_FRAME (tail, frame)
8062 struct frame *f = XFRAME (frame);
8063 if (FRAME_X_P (f) && FRAME_X_DISPLAY_INFO (f) == dpyinfo)
8065 FRAME_XIC (f) = NULL;
8066 xic_free_xfontset (f);
8070 /* No need to call XCloseIM. */
8071 dpyinfo->xim = NULL;
8072 XFree (dpyinfo->xim_styles);
8073 UNBLOCK_INPUT;
8076 #endif /* HAVE_X11R6 */
8078 #ifdef HAVE_X11R6
8079 /* This isn't prototyped in OSF 5.0 or 5.1a. */
8080 extern char *XSetIMValues (XIM, ...);
8081 #endif
8083 /* Open the connection to the XIM server on display DPYINFO.
8084 RESOURCE_NAME is the resource name Emacs uses. */
8086 static void
8087 xim_open_dpy (struct x_display_info *dpyinfo, char *resource_name)
8089 XIM xim;
8091 #ifdef HAVE_XIM
8092 if (use_xim)
8094 if (dpyinfo->xim)
8095 XCloseIM (dpyinfo->xim);
8096 xim = XOpenIM (dpyinfo->display, dpyinfo->xrdb, resource_name,
8097 emacs_class);
8098 dpyinfo->xim = xim;
8100 if (xim)
8102 #ifdef HAVE_X11R6
8103 XIMCallback destroy;
8104 #endif
8106 /* Get supported styles and XIM values. */
8107 XGetIMValues (xim, XNQueryInputStyle, &dpyinfo->xim_styles, NULL);
8109 #ifdef HAVE_X11R6
8110 destroy.callback = xim_destroy_callback;
8111 destroy.client_data = (XPointer)dpyinfo;
8112 XSetIMValues (xim, XNDestroyCallback, &destroy, NULL);
8113 #endif
8117 else
8118 #endif /* HAVE_XIM */
8119 dpyinfo->xim = NULL;
8123 #ifdef HAVE_X11R6_XIM
8125 /* XIM instantiate callback function, which is called whenever an XIM
8126 server is available. DISPLAY is the display of the XIM.
8127 CLIENT_DATA contains a pointer to an xim_inst_t structure created
8128 when the callback was registered. */
8130 static void
8131 xim_instantiate_callback (Display *display, XPointer client_data, XPointer call_data)
8133 struct xim_inst_t *xim_inst = (struct xim_inst_t *) client_data;
8134 struct x_display_info *dpyinfo = xim_inst->dpyinfo;
8136 /* We don't support multiple XIM connections. */
8137 if (dpyinfo->xim)
8138 return;
8140 xim_open_dpy (dpyinfo, xim_inst->resource_name);
8142 /* Create XIC for the existing frames on the same display, as long
8143 as they have no XIC. */
8144 if (dpyinfo->xim && dpyinfo->reference_count > 0)
8146 Lisp_Object tail, frame;
8148 BLOCK_INPUT;
8149 FOR_EACH_FRAME (tail, frame)
8151 struct frame *f = XFRAME (frame);
8153 if (FRAME_X_P (f)
8154 && FRAME_X_DISPLAY_INFO (f) == xim_inst->dpyinfo)
8155 if (FRAME_XIC (f) == NULL)
8157 create_frame_xic (f);
8158 if (FRAME_XIC_STYLE (f) & XIMStatusArea)
8159 xic_set_statusarea (f);
8160 if (FRAME_XIC_STYLE (f) & XIMPreeditPosition)
8162 struct window *w = XWINDOW (f->selected_window);
8163 xic_set_preeditarea (w, w->cursor.x, w->cursor.y);
8168 UNBLOCK_INPUT;
8172 #endif /* HAVE_X11R6_XIM */
8175 /* Open a connection to the XIM server on display DPYINFO.
8176 RESOURCE_NAME is the resource name for Emacs. On X11R5, open the
8177 connection only at the first time. On X11R6, open the connection
8178 in the XIM instantiate callback function. */
8180 static void
8181 xim_initialize (struct x_display_info *dpyinfo, char *resource_name)
8183 dpyinfo->xim = NULL;
8184 #ifdef HAVE_XIM
8185 if (use_xim)
8187 #ifdef HAVE_X11R6_XIM
8188 struct xim_inst_t *xim_inst = xmalloc (sizeof *xim_inst);
8189 ptrdiff_t len;
8191 dpyinfo->xim_callback_data = xim_inst;
8192 xim_inst->dpyinfo = dpyinfo;
8193 len = strlen (resource_name);
8194 xim_inst->resource_name = xmalloc (len + 1);
8195 memcpy (xim_inst->resource_name, resource_name, len + 1);
8196 XRegisterIMInstantiateCallback (dpyinfo->display, dpyinfo->xrdb,
8197 resource_name, emacs_class,
8198 xim_instantiate_callback,
8199 /* This is XPointer in XFree86
8200 but (XPointer *) on Tru64, at
8201 least, hence the configure test. */
8202 (XRegisterIMInstantiateCallback_arg6) xim_inst);
8203 #else /* not HAVE_X11R6_XIM */
8204 xim_open_dpy (dpyinfo, resource_name);
8205 #endif /* not HAVE_X11R6_XIM */
8207 #endif /* HAVE_XIM */
8211 /* Close the connection to the XIM server on display DPYINFO. */
8213 static void
8214 xim_close_dpy (struct x_display_info *dpyinfo)
8216 #ifdef HAVE_XIM
8217 if (use_xim)
8219 #ifdef HAVE_X11R6_XIM
8220 if (dpyinfo->display)
8221 XUnregisterIMInstantiateCallback (dpyinfo->display, dpyinfo->xrdb,
8222 NULL, emacs_class,
8223 xim_instantiate_callback, NULL);
8224 xfree (dpyinfo->xim_callback_data->resource_name);
8225 xfree (dpyinfo->xim_callback_data);
8226 #endif /* HAVE_X11R6_XIM */
8227 if (dpyinfo->display)
8228 XCloseIM (dpyinfo->xim);
8229 dpyinfo->xim = NULL;
8230 XFree (dpyinfo->xim_styles);
8232 #endif /* HAVE_XIM */
8235 #endif /* not HAVE_X11R6_XIM */
8239 /* Calculate the absolute position in frame F
8240 from its current recorded position values and gravity. */
8242 static void
8243 x_calc_absolute_position (struct frame *f)
8245 int flags = f->size_hint_flags;
8247 /* We have nothing to do if the current position
8248 is already for the top-left corner. */
8249 if (! ((flags & XNegative) || (flags & YNegative)))
8250 return;
8252 /* Treat negative positions as relative to the leftmost bottommost
8253 position that fits on the screen. */
8254 if (flags & XNegative)
8255 f->left_pos = x_display_pixel_width (FRAME_X_DISPLAY_INFO (f))
8256 - FRAME_PIXEL_WIDTH (f) + f->left_pos;
8259 int height = FRAME_PIXEL_HEIGHT (f);
8261 #if defined USE_X_TOOLKIT && defined USE_MOTIF
8262 /* Something is fishy here. When using Motif, starting Emacs with
8263 `-g -0-0', the frame appears too low by a few pixels.
8265 This seems to be so because initially, while Emacs is starting,
8266 the column widget's height and the frame's pixel height are
8267 different. The column widget's height is the right one. In
8268 later invocations, when Emacs is up, the frame's pixel height
8269 is right, though.
8271 It's not obvious where the initial small difference comes from.
8272 2000-12-01, gerd. */
8274 XtVaGetValues (f->output_data.x->column_widget, XtNheight, &height, NULL);
8275 #endif
8277 if (flags & YNegative)
8278 f->top_pos = x_display_pixel_height (FRAME_X_DISPLAY_INFO (f))
8279 - height + f->top_pos;
8282 /* The left_pos and top_pos
8283 are now relative to the top and left screen edges,
8284 so the flags should correspond. */
8285 f->size_hint_flags &= ~ (XNegative | YNegative);
8288 /* CHANGE_GRAVITY is 1 when calling from Fset_frame_position,
8289 to really change the position, and 0 when calling from
8290 x_make_frame_visible (in that case, XOFF and YOFF are the current
8291 position values). It is -1 when calling from x_set_frame_parameters,
8292 which means, do adjust for borders but don't change the gravity. */
8294 void
8295 x_set_offset (struct frame *f, register int xoff, register int yoff, int change_gravity)
8297 int modified_top, modified_left;
8299 if (change_gravity > 0)
8301 FRAME_X_OUTPUT (f)->left_before_move = f->left_pos;
8302 FRAME_X_OUTPUT (f)->top_before_move = f->top_pos;
8304 f->top_pos = yoff;
8305 f->left_pos = xoff;
8306 f->size_hint_flags &= ~ (XNegative | YNegative);
8307 if (xoff < 0)
8308 f->size_hint_flags |= XNegative;
8309 if (yoff < 0)
8310 f->size_hint_flags |= YNegative;
8311 f->win_gravity = NorthWestGravity;
8313 x_calc_absolute_position (f);
8315 BLOCK_INPUT;
8316 x_wm_set_size_hint (f, (long) 0, 0);
8318 modified_left = f->left_pos;
8319 modified_top = f->top_pos;
8321 if (change_gravity != 0 && FRAME_X_DISPLAY_INFO (f)->wm_type == X_WMTYPE_A)
8323 /* Some WMs (twm, wmaker at least) has an offset that is smaller
8324 than the WM decorations. So we use the calculated offset instead
8325 of the WM decoration sizes here (x/y_pixels_outer_diff). */
8326 modified_left += FRAME_X_OUTPUT (f)->move_offset_left;
8327 modified_top += FRAME_X_OUTPUT (f)->move_offset_top;
8330 XMoveWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
8331 modified_left, modified_top);
8333 x_sync_with_move (f, f->left_pos, f->top_pos,
8334 FRAME_X_DISPLAY_INFO (f)->wm_type == X_WMTYPE_UNKNOWN
8335 ? 1 : 0);
8337 /* change_gravity is non-zero when this function is called from Lisp to
8338 programmatically move a frame. In that case, we call
8339 x_check_expected_move to discover if we have a "Type A" or "Type B"
8340 window manager, and, for a "Type A" window manager, adjust the position
8341 of the frame.
8343 We call x_check_expected_move if a programmatic move occurred, and
8344 either the window manager type (A/B) is unknown or it is Type A but we
8345 need to compute the top/left offset adjustment for this frame. */
8347 if (change_gravity != 0 &&
8348 (FRAME_X_DISPLAY_INFO (f)->wm_type == X_WMTYPE_UNKNOWN
8349 || (FRAME_X_DISPLAY_INFO (f)->wm_type == X_WMTYPE_A
8350 && (FRAME_X_OUTPUT (f)->move_offset_left == 0
8351 && FRAME_X_OUTPUT (f)->move_offset_top == 0))))
8352 x_check_expected_move (f, modified_left, modified_top);
8354 UNBLOCK_INPUT;
8357 /* Return non-zero if _NET_SUPPORTING_WM_CHECK window exists and _NET_SUPPORTED
8358 on the root window for frame F contains ATOMNAME.
8359 This is how a WM check shall be done according to the Window Manager
8360 Specification/Extended Window Manager Hints at
8361 http://freedesktop.org/wiki/Specifications/wm-spec. */
8363 static int
8364 wm_supports (struct frame *f, Atom want_atom)
8366 Atom actual_type;
8367 unsigned long actual_size, bytes_remaining;
8368 int i, rc, actual_format;
8369 Window wmcheck_window;
8370 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
8371 Window target_window = dpyinfo->root_window;
8372 long max_len = 65536;
8373 Display *dpy = FRAME_X_DISPLAY (f);
8374 unsigned char *tmp_data = NULL;
8375 Atom target_type = XA_WINDOW;
8377 BLOCK_INPUT;
8379 x_catch_errors (dpy);
8380 rc = XGetWindowProperty (dpy, target_window,
8381 dpyinfo->Xatom_net_supporting_wm_check,
8382 0, max_len, False, target_type,
8383 &actual_type, &actual_format, &actual_size,
8384 &bytes_remaining, &tmp_data);
8386 if (rc != Success || actual_type != XA_WINDOW || x_had_errors_p (dpy))
8388 if (tmp_data) XFree (tmp_data);
8389 x_uncatch_errors ();
8390 UNBLOCK_INPUT;
8391 return 0;
8394 wmcheck_window = *(Window *) tmp_data;
8395 XFree (tmp_data);
8397 /* Check if window exists. */
8398 XSelectInput (dpy, wmcheck_window, StructureNotifyMask);
8399 x_sync (f);
8400 if (x_had_errors_p (dpy))
8402 x_uncatch_errors ();
8403 UNBLOCK_INPUT;
8404 return 0;
8407 if (dpyinfo->net_supported_window != wmcheck_window)
8409 /* Window changed, reload atoms */
8410 if (dpyinfo->net_supported_atoms != NULL)
8411 XFree (dpyinfo->net_supported_atoms);
8412 dpyinfo->net_supported_atoms = NULL;
8413 dpyinfo->nr_net_supported_atoms = 0;
8414 dpyinfo->net_supported_window = 0;
8416 target_type = XA_ATOM;
8417 tmp_data = NULL;
8418 rc = XGetWindowProperty (dpy, target_window,
8419 dpyinfo->Xatom_net_supported,
8420 0, max_len, False, target_type,
8421 &actual_type, &actual_format, &actual_size,
8422 &bytes_remaining, &tmp_data);
8424 if (rc != Success || actual_type != XA_ATOM || x_had_errors_p (dpy))
8426 if (tmp_data) XFree (tmp_data);
8427 x_uncatch_errors ();
8428 UNBLOCK_INPUT;
8429 return 0;
8432 dpyinfo->net_supported_atoms = (Atom *)tmp_data;
8433 dpyinfo->nr_net_supported_atoms = actual_size;
8434 dpyinfo->net_supported_window = wmcheck_window;
8437 rc = 0;
8439 for (i = 0; rc == 0 && i < dpyinfo->nr_net_supported_atoms; ++i)
8440 rc = dpyinfo->net_supported_atoms[i] == want_atom;
8442 x_uncatch_errors ();
8443 UNBLOCK_INPUT;
8445 return rc;
8448 static void
8449 set_wm_state (Lisp_Object frame, int add, Atom atom, Atom value)
8451 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (XFRAME (frame));
8453 x_send_client_event (frame, make_number (0), frame,
8454 dpyinfo->Xatom_net_wm_state,
8455 make_number (32),
8456 /* 1 = add, 0 = remove */
8457 Fcons
8458 (make_number (add ? 1 : 0),
8459 Fcons
8460 (make_fixnum_or_float (atom),
8461 value != 0
8462 ? Fcons (make_fixnum_or_float (value), Qnil)
8463 : Qnil)));
8466 void
8467 x_set_sticky (struct frame *f, Lisp_Object new_value, Lisp_Object old_value)
8469 Lisp_Object frame;
8470 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
8472 XSETFRAME (frame, f);
8474 set_wm_state (frame, NILP (new_value) ? 0 : 1,
8475 dpyinfo->Xatom_net_wm_state_sticky, None);
8478 /* Return the current _NET_WM_STATE.
8479 SIZE_STATE is set to one of the FULLSCREEN_* values.
8480 STICKY is set to 1 if the sticky state is set, 0 if not.
8482 Return non-zero if we are not hidden, zero if we are. */
8484 static int
8485 get_current_wm_state (struct frame *f,
8486 Window window,
8487 int *size_state,
8488 int *sticky)
8490 Atom actual_type;
8491 unsigned long actual_size, bytes_remaining;
8492 int i, rc, actual_format, is_hidden = 0;
8493 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
8494 long max_len = 65536;
8495 Display *dpy = FRAME_X_DISPLAY (f);
8496 unsigned char *tmp_data = NULL;
8497 Atom target_type = XA_ATOM;
8499 *sticky = 0;
8500 *size_state = FULLSCREEN_NONE;
8502 BLOCK_INPUT;
8503 x_catch_errors (dpy);
8504 rc = XGetWindowProperty (dpy, window, dpyinfo->Xatom_net_wm_state,
8505 0, max_len, False, target_type,
8506 &actual_type, &actual_format, &actual_size,
8507 &bytes_remaining, &tmp_data);
8509 if (rc != Success || actual_type != target_type || x_had_errors_p (dpy))
8511 if (tmp_data) XFree (tmp_data);
8512 x_uncatch_errors ();
8513 UNBLOCK_INPUT;
8514 return ! f->iconified;
8517 x_uncatch_errors ();
8519 for (i = 0; i < actual_size; ++i)
8521 Atom a = ((Atom*)tmp_data)[i];
8522 if (a == dpyinfo->Xatom_net_wm_state_hidden)
8524 is_hidden = 1;
8525 f->output_data.x->net_wm_state_hidden_seen = 1;
8527 else if (a == dpyinfo->Xatom_net_wm_state_maximized_horz)
8529 if (*size_state == FULLSCREEN_HEIGHT)
8530 *size_state = FULLSCREEN_MAXIMIZED;
8531 else
8532 *size_state = FULLSCREEN_WIDTH;
8534 else if (a == dpyinfo->Xatom_net_wm_state_maximized_vert)
8536 if (*size_state == FULLSCREEN_WIDTH)
8537 *size_state = FULLSCREEN_MAXIMIZED;
8538 else
8539 *size_state = FULLSCREEN_HEIGHT;
8541 else if (a == dpyinfo->Xatom_net_wm_state_fullscreen)
8542 *size_state = FULLSCREEN_BOTH;
8543 else if (a == dpyinfo->Xatom_net_wm_state_sticky)
8544 *sticky = 1;
8547 if (tmp_data) XFree (tmp_data);
8548 UNBLOCK_INPUT;
8549 return ! is_hidden;
8552 /* Do fullscreen as specified in extended window manager hints */
8554 static int
8555 do_ewmh_fullscreen (struct frame *f)
8557 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
8558 int have_net_atom = wm_supports (f, dpyinfo->Xatom_net_wm_state);
8559 int cur, dummy;
8561 (void)get_current_wm_state (f, FRAME_OUTER_WINDOW (f), &cur, &dummy);
8563 /* Some window managers don't say they support _NET_WM_STATE, but they do say
8564 they support _NET_WM_STATE_FULLSCREEN. Try that also. */
8565 if (!have_net_atom)
8566 have_net_atom = wm_supports (f, dpyinfo->Xatom_net_wm_state_fullscreen);
8568 if (have_net_atom && cur != f->want_fullscreen)
8570 Lisp_Object frame;
8572 XSETFRAME (frame, f);
8574 /* Keep number of calls to set_wm_state as low as possible.
8575 Some window managers, or possible Gtk+, hangs when too many
8576 are sent at once. */
8577 switch (f->want_fullscreen)
8579 case FULLSCREEN_BOTH:
8580 if (cur == FULLSCREEN_WIDTH || cur == FULLSCREEN_MAXIMIZED
8581 || cur == FULLSCREEN_HEIGHT)
8582 set_wm_state (frame, 0, dpyinfo->Xatom_net_wm_state_maximized_horz,
8583 dpyinfo->Xatom_net_wm_state_maximized_vert);
8584 set_wm_state (frame, 1, dpyinfo->Xatom_net_wm_state_fullscreen, None);
8585 break;
8586 case FULLSCREEN_WIDTH:
8587 if (cur == FULLSCREEN_BOTH || cur == FULLSCREEN_HEIGHT
8588 || cur == FULLSCREEN_MAXIMIZED)
8589 set_wm_state (frame, 0, dpyinfo->Xatom_net_wm_state_fullscreen,
8590 dpyinfo->Xatom_net_wm_state_maximized_vert);
8591 if (cur != FULLSCREEN_MAXIMIZED)
8592 set_wm_state (frame, 1, dpyinfo->Xatom_net_wm_state_maximized_horz, None);
8593 break;
8594 case FULLSCREEN_HEIGHT:
8595 if (cur == FULLSCREEN_BOTH || cur == FULLSCREEN_WIDTH
8596 || cur == FULLSCREEN_MAXIMIZED)
8597 set_wm_state (frame, 0, dpyinfo->Xatom_net_wm_state_fullscreen,
8598 dpyinfo->Xatom_net_wm_state_maximized_horz);
8599 if (cur != FULLSCREEN_MAXIMIZED)
8600 set_wm_state (frame, 1, dpyinfo->Xatom_net_wm_state_maximized_vert, None);
8601 break;
8602 case FULLSCREEN_MAXIMIZED:
8603 if (cur == FULLSCREEN_BOTH)
8604 set_wm_state (frame, 0, dpyinfo->Xatom_net_wm_state_fullscreen, None);
8605 set_wm_state (frame, 1, dpyinfo->Xatom_net_wm_state_maximized_horz,
8606 dpyinfo->Xatom_net_wm_state_maximized_vert);
8607 break;
8608 case FULLSCREEN_NONE:
8609 if (cur == FULLSCREEN_BOTH)
8610 set_wm_state (frame, 0, dpyinfo->Xatom_net_wm_state_fullscreen, None);
8611 else
8612 set_wm_state (frame, 0, dpyinfo->Xatom_net_wm_state_maximized_horz,
8613 dpyinfo->Xatom_net_wm_state_maximized_vert);
8616 f->want_fullscreen = FULLSCREEN_NONE;
8620 return have_net_atom;
8623 static void
8624 XTfullscreen_hook (FRAME_PTR f)
8626 if (f->async_visible)
8628 BLOCK_INPUT;
8629 x_check_fullscreen (f);
8630 x_sync (f);
8631 UNBLOCK_INPUT;
8636 static int
8637 x_handle_net_wm_state (struct frame *f, XPropertyEvent *event)
8639 int value = FULLSCREEN_NONE;
8640 Lisp_Object lval;
8641 int sticky = 0;
8642 int not_hidden = get_current_wm_state (f, event->window, &value, &sticky);
8644 lval = Qnil;
8645 switch (value)
8647 case FULLSCREEN_WIDTH:
8648 lval = Qfullwidth;
8649 break;
8650 case FULLSCREEN_HEIGHT:
8651 lval = Qfullheight;
8652 break;
8653 case FULLSCREEN_BOTH:
8654 lval = Qfullboth;
8655 break;
8656 case FULLSCREEN_MAXIMIZED:
8657 lval = Qmaximized;
8658 break;
8661 store_frame_param (f, Qfullscreen, lval);
8662 store_frame_param (f, Qsticky, sticky ? Qt : Qnil);
8664 return not_hidden;
8667 /* Check if we need to resize the frame due to a fullscreen request.
8668 If so needed, resize the frame. */
8669 static void
8670 x_check_fullscreen (struct frame *f)
8672 if (do_ewmh_fullscreen (f))
8673 return;
8675 if (f->output_data.x->parent_desc != FRAME_X_DISPLAY_INFO (f)->root_window)
8676 return; /* Only fullscreen without WM or with EWM hints (above). */
8678 /* Setting fullscreen to nil doesn't do anything. We could save the
8679 last non-fullscreen size and restore it, but it seems like a
8680 lot of work for this unusual case (no window manager running). */
8682 if (f->want_fullscreen != FULLSCREEN_NONE)
8684 int width = FRAME_PIXEL_WIDTH (f), height = FRAME_PIXEL_HEIGHT (f);
8685 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
8687 switch (f->want_fullscreen)
8689 /* No difference between these two when there is no WM */
8690 case FULLSCREEN_BOTH:
8691 case FULLSCREEN_MAXIMIZED:
8692 width = x_display_pixel_width (dpyinfo);
8693 height = x_display_pixel_height (dpyinfo);
8694 break;
8695 case FULLSCREEN_WIDTH:
8696 width = x_display_pixel_width (dpyinfo);
8697 break;
8698 case FULLSCREEN_HEIGHT:
8699 height = x_display_pixel_height (dpyinfo);
8702 XResizeWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
8703 width, height);
8707 /* This function is called by x_set_offset to determine whether the window
8708 manager interfered with the positioning of the frame. Type A window
8709 managers position the surrounding window manager decorations a small
8710 amount above and left of the user-supplied position. Type B window
8711 managers position the surrounding window manager decorations at the
8712 user-specified position. If we detect a Type A window manager, we
8713 compensate by moving the window right and down by the proper amount. */
8715 static void
8716 x_check_expected_move (struct frame *f, int expected_left, int expected_top)
8718 int current_left = 0, current_top = 0;
8720 /* x_real_positions returns the left and top offsets of the outermost
8721 window manager window around the frame. */
8723 x_real_positions (f, &current_left, &current_top);
8725 if (current_left != expected_left || current_top != expected_top)
8727 /* It's a "Type A" window manager. */
8729 int adjusted_left;
8730 int adjusted_top;
8732 FRAME_X_DISPLAY_INFO (f)->wm_type = X_WMTYPE_A;
8733 FRAME_X_OUTPUT (f)->move_offset_left = expected_left - current_left;
8734 FRAME_X_OUTPUT (f)->move_offset_top = expected_top - current_top;
8736 /* Now fix the mispositioned frame's location. */
8738 adjusted_left = expected_left + FRAME_X_OUTPUT (f)->move_offset_left;
8739 adjusted_top = expected_top + FRAME_X_OUTPUT (f)->move_offset_top;
8741 XMoveWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
8742 adjusted_left, adjusted_top);
8744 x_sync_with_move (f, expected_left, expected_top, 0);
8746 else
8747 /* It's a "Type B" window manager. We don't have to adjust the
8748 frame's position. */
8750 FRAME_X_DISPLAY_INFO (f)->wm_type = X_WMTYPE_B;
8754 /* Wait for XGetGeometry to return up-to-date position information for a
8755 recently-moved frame. Call this immediately after calling XMoveWindow.
8756 If FUZZY is non-zero, then LEFT and TOP are just estimates of where the
8757 frame has been moved to, so we use a fuzzy position comparison instead
8758 of an exact comparison. */
8760 static void
8761 x_sync_with_move (struct frame *f, int left, int top, int fuzzy)
8763 int count = 0;
8765 while (count++ < 50)
8767 int current_left = 0, current_top = 0;
8769 /* In theory, this call to XSync only needs to happen once, but in
8770 practice, it doesn't seem to work, hence the need for the surrounding
8771 loop. */
8773 XSync (FRAME_X_DISPLAY (f), False);
8774 x_real_positions (f, &current_left, &current_top);
8776 if (fuzzy)
8778 /* The left fuzz-factor is 10 pixels. The top fuzz-factor is 40
8779 pixels. */
8781 if (eabs (current_left - left) <= 10
8782 && eabs (current_top - top) <= 40)
8783 return;
8785 else if (current_left == left && current_top == top)
8786 return;
8789 /* As a last resort, just wait 0.5 seconds and hope that XGetGeometry
8790 will then return up-to-date position info. */
8792 wait_reading_process_output (0, 500000, 0, 0, Qnil, NULL, 0);
8796 /* Wait for an event on frame F matching EVENTTYPE. */
8797 void
8798 x_wait_for_event (struct frame *f, int eventtype)
8800 int level = interrupt_input_blocked;
8802 SELECT_TYPE fds;
8803 EMACS_TIME tmo, tmo_at, time_now;
8804 int fd = ConnectionNumber (FRAME_X_DISPLAY (f));
8806 pending_event_wait.f = f;
8807 pending_event_wait.eventtype = eventtype;
8809 /* Set timeout to 0.1 second. Hopefully not noticeable.
8810 Maybe it should be configurable. */
8811 tmo = make_emacs_time (0, 100 * 1000 * 1000);
8812 tmo_at = add_emacs_time (current_emacs_time (), tmo);
8814 while (pending_event_wait.eventtype)
8816 interrupt_input_pending = 1;
8817 TOTALLY_UNBLOCK_INPUT;
8818 /* XTread_socket is called after unblock. */
8819 BLOCK_INPUT;
8820 interrupt_input_blocked = level;
8822 FD_ZERO (&fds);
8823 FD_SET (fd, &fds);
8825 time_now = current_emacs_time ();
8826 if (EMACS_TIME_LT (tmo_at, time_now))
8827 break;
8829 tmo = sub_emacs_time (tmo_at, time_now);
8830 if (pselect (fd + 1, &fds, NULL, NULL, &tmo, NULL) == 0)
8831 break; /* Timeout */
8833 pending_event_wait.f = 0;
8834 pending_event_wait.eventtype = 0;
8838 /* Change the size of frame F's X window to COLS/ROWS in the case F
8839 doesn't have a widget. If CHANGE_GRAVITY is 1, we change to
8840 top-left-corner window gravity for this size change and subsequent
8841 size changes. Otherwise we leave the window gravity unchanged. */
8843 static void
8844 x_set_window_size_1 (struct frame *f, int change_gravity, int cols, int rows)
8846 int pixelwidth, pixelheight;
8848 check_frame_size (f, &rows, &cols);
8849 f->scroll_bar_actual_width
8850 = (!FRAME_HAS_VERTICAL_SCROLL_BARS (f)
8852 : FRAME_CONFIG_SCROLL_BAR_COLS (f) * FRAME_COLUMN_WIDTH (f));
8854 compute_fringe_widths (f, 0);
8856 pixelwidth = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, cols)
8857 + FRAME_TOOLBAR_WIDTH (f);
8858 pixelheight = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, rows)
8859 + FRAME_MENUBAR_HEIGHT (f) + FRAME_TOOLBAR_HEIGHT (f);
8861 if (change_gravity) f->win_gravity = NorthWestGravity;
8862 x_wm_set_size_hint (f, (long) 0, 0);
8863 XResizeWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
8864 pixelwidth, pixelheight);
8867 /* We've set {FRAME,PIXEL}_{WIDTH,HEIGHT} to the values we hope to
8868 receive in the ConfigureNotify event; if we get what we asked
8869 for, then the event won't cause the screen to become garbaged, so
8870 we have to make sure to do it here. */
8871 SET_FRAME_GARBAGED (f);
8873 /* Now, strictly speaking, we can't be sure that this is accurate,
8874 but the window manager will get around to dealing with the size
8875 change request eventually, and we'll hear how it went when the
8876 ConfigureNotify event gets here.
8878 We could just not bother storing any of this information here,
8879 and let the ConfigureNotify event set everything up, but that
8880 might be kind of confusing to the Lisp code, since size changes
8881 wouldn't be reported in the frame parameters until some random
8882 point in the future when the ConfigureNotify event arrives.
8884 We pass 1 for DELAY since we can't run Lisp code inside of
8885 a BLOCK_INPUT. */
8887 /* But the ConfigureNotify may in fact never arrive, and then this is
8888 not right if the frame is visible. Instead wait (with timeout)
8889 for the ConfigureNotify. */
8890 if (f->async_visible)
8891 x_wait_for_event (f, ConfigureNotify);
8892 else
8894 change_frame_size (f, rows, cols, 0, 1, 0);
8895 FRAME_PIXEL_WIDTH (f) = pixelwidth;
8896 FRAME_PIXEL_HEIGHT (f) = pixelheight;
8897 x_sync (f);
8902 /* Call this to change the size of frame F's x-window.
8903 If CHANGE_GRAVITY is 1, we change to top-left-corner window gravity
8904 for this size change and subsequent size changes.
8905 Otherwise we leave the window gravity unchanged. */
8907 void
8908 x_set_window_size (struct frame *f, int change_gravity, int cols, int rows)
8910 BLOCK_INPUT;
8912 if (NILP (tip_frame) || XFRAME (tip_frame) != f)
8914 int r, c;
8916 /* When the frame is maximized/fullscreen or running under for
8917 example Xmonad, x_set_window_size_1 will be a no-op.
8918 In that case, the right thing to do is extend rows/cols to
8919 the current frame size. We do that first if x_set_window_size_1
8920 turns out to not be a no-op (there is no way to know).
8921 The size will be adjusted again if the frame gets a
8922 ConfigureNotify event as a result of x_set_window_size. */
8923 int pixelh = FRAME_PIXEL_HEIGHT (f);
8924 #ifdef USE_X_TOOLKIT
8925 /* The menu bar is not part of text lines. The tool bar
8926 is however. */
8927 pixelh -= FRAME_MENUBAR_HEIGHT (f);
8928 #endif
8929 r = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, pixelh);
8930 /* Update f->scroll_bar_actual_width because it is used in
8931 FRAME_PIXEL_WIDTH_TO_TEXT_COLS. */
8932 f->scroll_bar_actual_width
8933 = FRAME_SCROLL_BAR_COLS (f) * FRAME_COLUMN_WIDTH (f);
8934 c = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, FRAME_PIXEL_WIDTH (f));
8935 change_frame_size (f, r, c, 0, 1, 0);
8938 #ifdef USE_GTK
8939 if (FRAME_GTK_WIDGET (f))
8940 xg_frame_set_char_size (f, cols, rows);
8941 else
8942 x_set_window_size_1 (f, change_gravity, cols, rows);
8943 #else /* not USE_GTK */
8945 x_set_window_size_1 (f, change_gravity, cols, rows);
8947 #endif /* not USE_GTK */
8949 /* If cursor was outside the new size, mark it as off. */
8950 mark_window_cursors_off (XWINDOW (f->root_window));
8952 /* Clear out any recollection of where the mouse highlighting was,
8953 since it might be in a place that's outside the new frame size.
8954 Actually checking whether it is outside is a pain in the neck,
8955 so don't try--just let the highlighting be done afresh with new size. */
8956 cancel_mouse_face (f);
8958 UNBLOCK_INPUT;
8961 /* Mouse warping. */
8963 void
8964 x_set_mouse_position (struct frame *f, int x, int y)
8966 int pix_x, pix_y;
8968 pix_x = FRAME_COL_TO_PIXEL_X (f, x) + FRAME_COLUMN_WIDTH (f) / 2;
8969 pix_y = FRAME_LINE_TO_PIXEL_Y (f, y) + FRAME_LINE_HEIGHT (f) / 2;
8971 if (pix_x < 0) pix_x = 0;
8972 if (pix_x > FRAME_PIXEL_WIDTH (f)) pix_x = FRAME_PIXEL_WIDTH (f);
8974 if (pix_y < 0) pix_y = 0;
8975 if (pix_y > FRAME_PIXEL_HEIGHT (f)) pix_y = FRAME_PIXEL_HEIGHT (f);
8977 BLOCK_INPUT;
8979 XWarpPointer (FRAME_X_DISPLAY (f), None, FRAME_X_WINDOW (f),
8980 0, 0, 0, 0, pix_x, pix_y);
8981 UNBLOCK_INPUT;
8984 /* Move the mouse to position pixel PIX_X, PIX_Y relative to frame F. */
8986 void
8987 x_set_mouse_pixel_position (struct frame *f, int pix_x, int pix_y)
8989 BLOCK_INPUT;
8991 XWarpPointer (FRAME_X_DISPLAY (f), None, FRAME_X_WINDOW (f),
8992 0, 0, 0, 0, pix_x, pix_y);
8993 UNBLOCK_INPUT;
8996 /* Raise frame F. */
8998 void
8999 x_raise_frame (struct frame *f)
9001 BLOCK_INPUT;
9002 if (f->async_visible)
9003 XRaiseWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f));
9005 XFlush (FRAME_X_DISPLAY (f));
9006 UNBLOCK_INPUT;
9009 /* Lower frame F. */
9011 static void
9012 x_lower_frame (struct frame *f)
9014 if (f->async_visible)
9016 BLOCK_INPUT;
9017 XLowerWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f));
9018 XFlush (FRAME_X_DISPLAY (f));
9019 UNBLOCK_INPUT;
9023 /* Request focus with XEmbed */
9025 void
9026 xembed_request_focus (FRAME_PTR f)
9028 /* See XEmbed Protocol Specification at
9029 http://freedesktop.org/wiki/Specifications/xembed-spec */
9030 if (f->async_visible)
9031 xembed_send_message (f, CurrentTime,
9032 XEMBED_REQUEST_FOCUS, 0, 0, 0);
9035 /* Activate frame with Extended Window Manager Hints */
9037 void
9038 x_ewmh_activate_frame (FRAME_PTR f)
9040 /* See Window Manager Specification/Extended Window Manager Hints at
9041 http://freedesktop.org/wiki/Specifications/wm-spec */
9043 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
9044 if (f->async_visible && wm_supports (f, dpyinfo->Xatom_net_active_window))
9046 Lisp_Object frame;
9047 XSETFRAME (frame, f);
9048 x_send_client_event (frame, make_number (0), frame,
9049 dpyinfo->Xatom_net_active_window,
9050 make_number (32),
9051 Fcons (make_number (1),
9052 Fcons (make_number (last_user_time),
9053 Qnil)));
9057 static void
9058 XTframe_raise_lower (FRAME_PTR f, int raise_flag)
9060 if (raise_flag)
9061 x_raise_frame (f);
9062 else
9063 x_lower_frame (f);
9066 /* XEmbed implementation. */
9068 #if defined USE_X_TOOLKIT || ! defined USE_GTK
9070 /* XEmbed implementation. */
9072 #define XEMBED_VERSION 0
9074 static void
9075 xembed_set_info (struct frame *f, enum xembed_info flags)
9077 unsigned long data[2];
9078 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
9080 data[0] = XEMBED_VERSION;
9081 data[1] = flags;
9083 XChangeProperty (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
9084 dpyinfo->Xatom_XEMBED_INFO, dpyinfo->Xatom_XEMBED_INFO,
9085 32, PropModeReplace, (unsigned char *) data, 2);
9087 #endif /* defined USE_X_TOOLKIT || ! defined USE_GTK */
9089 static void
9090 xembed_send_message (struct frame *f, Time t, enum xembed_message msg,
9091 long int detail, long int data1, long int data2)
9093 XEvent event;
9095 event.xclient.type = ClientMessage;
9096 event.xclient.window = FRAME_X_OUTPUT (f)->parent_desc;
9097 event.xclient.message_type = FRAME_X_DISPLAY_INFO (f)->Xatom_XEMBED;
9098 event.xclient.format = 32;
9099 event.xclient.data.l[0] = t;
9100 event.xclient.data.l[1] = msg;
9101 event.xclient.data.l[2] = detail;
9102 event.xclient.data.l[3] = data1;
9103 event.xclient.data.l[4] = data2;
9105 XSendEvent (FRAME_X_DISPLAY (f), FRAME_X_OUTPUT (f)->parent_desc,
9106 False, NoEventMask, &event);
9107 XSync (FRAME_X_DISPLAY (f), False);
9110 /* Change of visibility. */
9112 /* This tries to wait until the frame is really visible.
9113 However, if the window manager asks the user where to position
9114 the frame, this will return before the user finishes doing that.
9115 The frame will not actually be visible at that time,
9116 but it will become visible later when the window manager
9117 finishes with it. */
9119 void
9120 x_make_frame_visible (struct frame *f)
9122 Lisp_Object type;
9123 int original_top, original_left;
9124 int retry_count = 2;
9126 retry:
9128 BLOCK_INPUT;
9130 type = x_icon_type (f);
9131 if (!NILP (type))
9132 x_bitmap_icon (f, type);
9134 if (! FRAME_VISIBLE_P (f))
9136 /* We test FRAME_GARBAGED_P here to make sure we don't
9137 call x_set_offset a second time
9138 if we get to x_make_frame_visible a second time
9139 before the window gets really visible. */
9140 if (! FRAME_ICONIFIED_P (f)
9141 && ! FRAME_X_EMBEDDED_P (f)
9142 && ! f->output_data.x->asked_for_visible)
9143 x_set_offset (f, f->left_pos, f->top_pos, 0);
9145 f->output_data.x->asked_for_visible = 1;
9147 if (! EQ (Vx_no_window_manager, Qt))
9148 x_wm_set_window_state (f, NormalState);
9149 #ifdef USE_X_TOOLKIT
9150 if (FRAME_X_EMBEDDED_P (f))
9151 xembed_set_info (f, XEMBED_MAPPED);
9152 else
9154 /* This was XtPopup, but that did nothing for an iconified frame. */
9155 XtMapWidget (f->output_data.x->widget);
9157 #else /* not USE_X_TOOLKIT */
9158 #ifdef USE_GTK
9159 gtk_widget_show_all (FRAME_GTK_OUTER_WIDGET (f));
9160 gtk_window_deiconify (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
9161 #else
9162 if (FRAME_X_EMBEDDED_P (f))
9163 xembed_set_info (f, XEMBED_MAPPED);
9164 else
9165 XMapRaised (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
9166 #endif /* not USE_GTK */
9167 #endif /* not USE_X_TOOLKIT */
9170 XFlush (FRAME_X_DISPLAY (f));
9172 /* Synchronize to ensure Emacs knows the frame is visible
9173 before we do anything else. We do this loop with input not blocked
9174 so that incoming events are handled. */
9176 Lisp_Object frame;
9177 int count;
9178 /* This must be before UNBLOCK_INPUT
9179 since events that arrive in response to the actions above
9180 will set it when they are handled. */
9181 int previously_visible = f->output_data.x->has_been_visible;
9183 original_left = f->left_pos;
9184 original_top = f->top_pos;
9186 /* This must come after we set COUNT. */
9187 UNBLOCK_INPUT;
9189 /* We unblock here so that arriving X events are processed. */
9191 /* Now move the window back to where it was "supposed to be".
9192 But don't do it if the gravity is negative.
9193 When the gravity is negative, this uses a position
9194 that is 3 pixels too low. Perhaps that's really the border width.
9196 Don't do this if the window has never been visible before,
9197 because the window manager may choose the position
9198 and we don't want to override it. */
9200 if (! FRAME_VISIBLE_P (f)
9201 && ! FRAME_ICONIFIED_P (f)
9202 && ! FRAME_X_EMBEDDED_P (f)
9203 && f->win_gravity == NorthWestGravity
9204 && previously_visible)
9206 Drawable rootw;
9207 int x, y;
9208 unsigned int width, height, border, depth;
9210 BLOCK_INPUT;
9212 /* On some window managers (such as FVWM) moving an existing
9213 window, even to the same place, causes the window manager
9214 to introduce an offset. This can cause the window to move
9215 to an unexpected location. Check the geometry (a little
9216 slow here) and then verify that the window is in the right
9217 place. If the window is not in the right place, move it
9218 there, and take the potential window manager hit. */
9219 XGetGeometry (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
9220 &rootw, &x, &y, &width, &height, &border, &depth);
9222 if (original_left != x || original_top != y)
9223 XMoveWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
9224 original_left, original_top);
9226 UNBLOCK_INPUT;
9229 XSETFRAME (frame, f);
9231 /* Wait until the frame is visible. Process X events until a
9232 MapNotify event has been seen, or until we think we won't get a
9233 MapNotify at all.. */
9234 for (count = input_signal_count + 10;
9235 input_signal_count < count && !FRAME_VISIBLE_P (f);)
9237 /* Force processing of queued events. */
9238 x_sync (f);
9240 /* Machines that do polling rather than SIGIO have been
9241 observed to go into a busy-wait here. So we'll fake an
9242 alarm signal to let the handler know that there's something
9243 to be read. We used to raise a real alarm, but it seems
9244 that the handler isn't always enabled here. This is
9245 probably a bug. */
9246 if (input_polling_used ())
9248 /* It could be confusing if a real alarm arrives while
9249 processing the fake one. Turn it off and let the
9250 handler reset it. */
9251 int old_poll_suppress_count = poll_suppress_count;
9252 poll_suppress_count = 1;
9253 poll_for_input_1 ();
9254 poll_suppress_count = old_poll_suppress_count;
9257 /* See if a MapNotify event has been processed. */
9258 FRAME_SAMPLE_VISIBILITY (f);
9261 /* 2000-09-28: In
9263 (let ((f (selected-frame)))
9264 (iconify-frame f)
9265 (raise-frame f))
9267 the frame is not raised with various window managers on
9268 FreeBSD, GNU/Linux and Solaris. It turns out that, for some
9269 unknown reason, the call to XtMapWidget is completely ignored.
9270 Mapping the widget a second time works. */
9272 if (!FRAME_VISIBLE_P (f) && --retry_count != 0)
9273 goto retry;
9277 /* Change from mapped state to withdrawn state. */
9279 /* Make the frame visible (mapped and not iconified). */
9281 void
9282 x_make_frame_invisible (struct frame *f)
9284 Window window;
9286 /* Use the frame's outermost window, not the one we normally draw on. */
9287 window = FRAME_OUTER_WINDOW (f);
9289 /* Don't keep the highlight on an invisible frame. */
9290 if (FRAME_X_DISPLAY_INFO (f)->x_highlight_frame == f)
9291 FRAME_X_DISPLAY_INFO (f)->x_highlight_frame = 0;
9293 BLOCK_INPUT;
9295 /* Before unmapping the window, update the WM_SIZE_HINTS property to claim
9296 that the current position of the window is user-specified, rather than
9297 program-specified, so that when the window is mapped again, it will be
9298 placed at the same location, without forcing the user to position it
9299 by hand again (they have already done that once for this window.) */
9300 x_wm_set_size_hint (f, (long) 0, 1);
9302 #ifdef USE_GTK
9303 if (FRAME_GTK_OUTER_WIDGET (f))
9304 gtk_widget_hide (FRAME_GTK_OUTER_WIDGET (f));
9305 else
9306 #else
9307 if (FRAME_X_EMBEDDED_P (f))
9308 xembed_set_info (f, 0);
9309 else
9310 #endif
9313 if (! XWithdrawWindow (FRAME_X_DISPLAY (f), window,
9314 DefaultScreen (FRAME_X_DISPLAY (f))))
9316 UNBLOCK_INPUT_RESIGNAL;
9317 error ("Can't notify window manager of window withdrawal");
9321 /* We can't distinguish this from iconification
9322 just by the event that we get from the server.
9323 So we can't win using the usual strategy of letting
9324 FRAME_SAMPLE_VISIBILITY set this. So do it by hand,
9325 and synchronize with the server to make sure we agree. */
9326 f->visible = 0;
9327 FRAME_ICONIFIED_P (f) = 0;
9328 f->async_visible = 0;
9329 f->async_iconified = 0;
9331 x_sync (f);
9333 UNBLOCK_INPUT;
9336 /* Change window state from mapped to iconified. */
9338 void
9339 x_iconify_frame (struct frame *f)
9341 #ifdef USE_X_TOOLKIT
9342 int result;
9343 #endif
9344 Lisp_Object type;
9346 /* Don't keep the highlight on an invisible frame. */
9347 if (FRAME_X_DISPLAY_INFO (f)->x_highlight_frame == f)
9348 FRAME_X_DISPLAY_INFO (f)->x_highlight_frame = 0;
9350 if (f->async_iconified)
9351 return;
9353 BLOCK_INPUT;
9355 FRAME_SAMPLE_VISIBILITY (f);
9357 type = x_icon_type (f);
9358 if (!NILP (type))
9359 x_bitmap_icon (f, type);
9361 #if defined (USE_GTK)
9362 if (FRAME_GTK_OUTER_WIDGET (f))
9364 if (! FRAME_VISIBLE_P (f))
9365 gtk_widget_show_all (FRAME_GTK_OUTER_WIDGET (f));
9367 gtk_window_iconify (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
9368 f->iconified = 1;
9369 f->visible = 1;
9370 f->async_iconified = 1;
9371 f->async_visible = 0;
9372 UNBLOCK_INPUT;
9373 return;
9375 #endif
9377 #ifdef USE_X_TOOLKIT
9379 if (! FRAME_VISIBLE_P (f))
9381 if (! EQ (Vx_no_window_manager, Qt))
9382 x_wm_set_window_state (f, IconicState);
9383 /* This was XtPopup, but that did nothing for an iconified frame. */
9384 XtMapWidget (f->output_data.x->widget);
9385 /* The server won't give us any event to indicate
9386 that an invisible frame was changed to an icon,
9387 so we have to record it here. */
9388 f->iconified = 1;
9389 f->visible = 1;
9390 f->async_iconified = 1;
9391 f->async_visible = 0;
9392 UNBLOCK_INPUT;
9393 return;
9396 result = XIconifyWindow (FRAME_X_DISPLAY (f),
9397 XtWindow (f->output_data.x->widget),
9398 DefaultScreen (FRAME_X_DISPLAY (f)));
9399 UNBLOCK_INPUT;
9401 if (!result)
9402 error ("Can't notify window manager of iconification");
9404 f->async_iconified = 1;
9405 f->async_visible = 0;
9408 BLOCK_INPUT;
9409 XFlush (FRAME_X_DISPLAY (f));
9410 UNBLOCK_INPUT;
9411 #else /* not USE_X_TOOLKIT */
9413 /* Make sure the X server knows where the window should be positioned,
9414 in case the user deiconifies with the window manager. */
9415 if (! FRAME_VISIBLE_P (f)
9416 && ! FRAME_ICONIFIED_P (f)
9417 && ! FRAME_X_EMBEDDED_P (f))
9418 x_set_offset (f, f->left_pos, f->top_pos, 0);
9420 /* Since we don't know which revision of X we're running, we'll use both
9421 the X11R3 and X11R4 techniques. I don't know if this is a good idea. */
9423 /* X11R4: send a ClientMessage to the window manager using the
9424 WM_CHANGE_STATE type. */
9426 XEvent msg;
9428 msg.xclient.window = FRAME_X_WINDOW (f);
9429 msg.xclient.type = ClientMessage;
9430 msg.xclient.message_type = FRAME_X_DISPLAY_INFO (f)->Xatom_wm_change_state;
9431 msg.xclient.format = 32;
9432 msg.xclient.data.l[0] = IconicState;
9434 if (! XSendEvent (FRAME_X_DISPLAY (f),
9435 DefaultRootWindow (FRAME_X_DISPLAY (f)),
9436 False,
9437 SubstructureRedirectMask | SubstructureNotifyMask,
9438 &msg))
9440 UNBLOCK_INPUT_RESIGNAL;
9441 error ("Can't notify window manager of iconification");
9445 /* X11R3: set the initial_state field of the window manager hints to
9446 IconicState. */
9447 x_wm_set_window_state (f, IconicState);
9449 if (!FRAME_VISIBLE_P (f))
9451 /* If the frame was withdrawn, before, we must map it. */
9452 XMapRaised (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
9455 f->async_iconified = 1;
9456 f->async_visible = 0;
9458 XFlush (FRAME_X_DISPLAY (f));
9459 UNBLOCK_INPUT;
9460 #endif /* not USE_X_TOOLKIT */
9464 /* Free X resources of frame F. */
9466 void
9467 x_free_frame_resources (struct frame *f)
9469 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
9470 Mouse_HLInfo *hlinfo = &dpyinfo->mouse_highlight;
9471 #ifdef USE_X_TOOLKIT
9472 Lisp_Object bar;
9473 struct scroll_bar *b;
9474 #endif
9476 BLOCK_INPUT;
9478 /* If a display connection is dead, don't try sending more
9479 commands to the X server. */
9480 if (dpyinfo->display)
9482 /* We must free faces before destroying windows because some
9483 font-driver (e.g. xft) access a window while finishing a
9484 face. */
9485 if (FRAME_FACE_CACHE (f))
9486 free_frame_faces (f);
9488 if (f->output_data.x->icon_desc)
9489 XDestroyWindow (FRAME_X_DISPLAY (f), f->output_data.x->icon_desc);
9491 #ifdef USE_X_TOOLKIT
9492 /* Explicitly destroy the scroll bars of the frame. Without
9493 this, we get "BadDrawable" errors from the toolkit later on,
9494 presumably from expose events generated for the disappearing
9495 toolkit scroll bars. */
9496 for (bar = FRAME_SCROLL_BARS (f); !NILP (bar); bar = b->next)
9498 b = XSCROLL_BAR (bar);
9499 x_scroll_bar_remove (b);
9501 #endif
9503 #ifdef HAVE_X_I18N
9504 if (FRAME_XIC (f))
9505 free_frame_xic (f);
9506 #endif
9508 #ifdef USE_X_TOOLKIT
9509 if (f->output_data.x->widget)
9511 XtDestroyWidget (f->output_data.x->widget);
9512 f->output_data.x->widget = NULL;
9514 /* Tooltips don't have widgets, only a simple X window, even if
9515 we are using a toolkit. */
9516 else if (FRAME_X_WINDOW (f))
9517 XDestroyWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
9519 free_frame_menubar (f);
9520 #else /* !USE_X_TOOLKIT */
9522 #ifdef USE_GTK
9523 xg_free_frame_widgets (f);
9524 #endif /* USE_GTK */
9526 if (FRAME_X_WINDOW (f))
9527 XDestroyWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
9528 #endif /* !USE_X_TOOLKIT */
9530 unload_color (f, FRAME_FOREGROUND_PIXEL (f));
9531 unload_color (f, FRAME_BACKGROUND_PIXEL (f));
9532 unload_color (f, f->output_data.x->cursor_pixel);
9533 unload_color (f, f->output_data.x->cursor_foreground_pixel);
9534 unload_color (f, f->output_data.x->border_pixel);
9535 unload_color (f, f->output_data.x->mouse_pixel);
9537 if (f->output_data.x->scroll_bar_background_pixel != -1)
9538 unload_color (f, f->output_data.x->scroll_bar_background_pixel);
9539 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
9540 unload_color (f, f->output_data.x->scroll_bar_foreground_pixel);
9541 #ifdef USE_TOOLKIT_SCROLL_BARS
9542 /* Scrollbar shadow colors. */
9543 if (f->output_data.x->scroll_bar_top_shadow_pixel != -1)
9544 unload_color (f, f->output_data.x->scroll_bar_top_shadow_pixel);
9545 if (f->output_data.x->scroll_bar_bottom_shadow_pixel != -1)
9546 unload_color (f, f->output_data.x->scroll_bar_bottom_shadow_pixel);
9547 #endif /* USE_TOOLKIT_SCROLL_BARS */
9548 if (f->output_data.x->white_relief.allocated_p)
9549 unload_color (f, f->output_data.x->white_relief.pixel);
9550 if (f->output_data.x->black_relief.allocated_p)
9551 unload_color (f, f->output_data.x->black_relief.pixel);
9553 x_free_gcs (f);
9554 XFlush (FRAME_X_DISPLAY (f));
9557 xfree (f->output_data.x->saved_menu_event);
9558 xfree (f->output_data.x);
9559 f->output_data.x = NULL;
9561 if (f == dpyinfo->x_focus_frame)
9562 dpyinfo->x_focus_frame = 0;
9563 if (f == dpyinfo->x_focus_event_frame)
9564 dpyinfo->x_focus_event_frame = 0;
9565 if (f == dpyinfo->x_highlight_frame)
9566 dpyinfo->x_highlight_frame = 0;
9568 if (f == hlinfo->mouse_face_mouse_frame)
9570 hlinfo->mouse_face_beg_row
9571 = hlinfo->mouse_face_beg_col = -1;
9572 hlinfo->mouse_face_end_row
9573 = hlinfo->mouse_face_end_col = -1;
9574 hlinfo->mouse_face_window = Qnil;
9575 hlinfo->mouse_face_deferred_gc = 0;
9576 hlinfo->mouse_face_mouse_frame = 0;
9579 UNBLOCK_INPUT;
9583 /* Destroy the X window of frame F. */
9585 static void
9586 x_destroy_window (struct frame *f)
9588 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
9590 /* If a display connection is dead, don't try sending more
9591 commands to the X server. */
9592 if (dpyinfo->display != 0)
9593 x_free_frame_resources (f);
9595 dpyinfo->reference_count--;
9599 /* Setting window manager hints. */
9601 /* Set the normal size hints for the window manager, for frame F.
9602 FLAGS is the flags word to use--or 0 meaning preserve the flags
9603 that the window now has.
9604 If USER_POSITION is nonzero, we set the USPosition
9605 flag (this is useful when FLAGS is 0).
9606 The GTK version is in gtkutils.c */
9608 #ifndef USE_GTK
9609 void
9610 x_wm_set_size_hint (struct frame *f, long flags, int user_position)
9612 XSizeHints size_hints;
9613 Window window = FRAME_OUTER_WINDOW (f);
9615 #ifdef USE_X_TOOLKIT
9616 if (f->output_data.x->widget)
9618 widget_update_wm_size_hints (f->output_data.x->widget);
9619 return;
9621 #endif
9623 /* Setting PMaxSize caused various problems. */
9624 size_hints.flags = PResizeInc | PMinSize /* | PMaxSize */;
9626 size_hints.x = f->left_pos;
9627 size_hints.y = f->top_pos;
9629 size_hints.height = FRAME_PIXEL_HEIGHT (f);
9630 size_hints.width = FRAME_PIXEL_WIDTH (f);
9632 size_hints.width_inc = FRAME_COLUMN_WIDTH (f);
9633 size_hints.height_inc = FRAME_LINE_HEIGHT (f);
9634 size_hints.max_width = x_display_pixel_width (FRAME_X_DISPLAY_INFO (f))
9635 - FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, 0);
9636 size_hints.max_height = x_display_pixel_height (FRAME_X_DISPLAY_INFO (f))
9637 - FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, 0);
9639 /* Calculate the base and minimum sizes. */
9641 int base_width, base_height;
9642 int min_rows = 0, min_cols = 0;
9644 base_width = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, 0);
9645 base_height = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, 0);
9647 check_frame_size (f, &min_rows, &min_cols);
9649 /* The window manager uses the base width hints to calculate the
9650 current number of rows and columns in the frame while
9651 resizing; min_width and min_height aren't useful for this
9652 purpose, since they might not give the dimensions for a
9653 zero-row, zero-column frame.
9655 We use the base_width and base_height members if we have
9656 them; otherwise, we set the min_width and min_height members
9657 to the size for a zero x zero frame. */
9659 size_hints.flags |= PBaseSize;
9660 size_hints.base_width = base_width;
9661 size_hints.base_height = base_height + FRAME_MENUBAR_HEIGHT (f);
9662 size_hints.min_width = base_width + min_cols * size_hints.width_inc;
9663 size_hints.min_height = base_height + min_rows * size_hints.height_inc;
9666 /* If we don't need the old flags, we don't need the old hint at all. */
9667 if (flags)
9669 size_hints.flags |= flags;
9670 goto no_read;
9674 XSizeHints hints; /* Sometimes I hate X Windows... */
9675 long supplied_return;
9676 int value;
9678 value = XGetWMNormalHints (FRAME_X_DISPLAY (f), window, &hints,
9679 &supplied_return);
9681 if (flags)
9682 size_hints.flags |= flags;
9683 else
9685 if (value == 0)
9686 hints.flags = 0;
9687 if (hints.flags & PSize)
9688 size_hints.flags |= PSize;
9689 if (hints.flags & PPosition)
9690 size_hints.flags |= PPosition;
9691 if (hints.flags & USPosition)
9692 size_hints.flags |= USPosition;
9693 if (hints.flags & USSize)
9694 size_hints.flags |= USSize;
9698 no_read:
9700 #ifdef PWinGravity
9701 size_hints.win_gravity = f->win_gravity;
9702 size_hints.flags |= PWinGravity;
9704 if (user_position)
9706 size_hints.flags &= ~ PPosition;
9707 size_hints.flags |= USPosition;
9709 #endif /* PWinGravity */
9711 XSetWMNormalHints (FRAME_X_DISPLAY (f), window, &size_hints);
9713 #endif /* not USE_GTK */
9715 /* Used for IconicState or NormalState */
9717 static void
9718 x_wm_set_window_state (struct frame *f, int state)
9720 #ifdef USE_X_TOOLKIT
9721 Arg al[1];
9723 XtSetArg (al[0], XtNinitialState, state);
9724 XtSetValues (f->output_data.x->widget, al, 1);
9725 #else /* not USE_X_TOOLKIT */
9726 Window window = FRAME_X_WINDOW (f);
9728 f->output_data.x->wm_hints.flags |= StateHint;
9729 f->output_data.x->wm_hints.initial_state = state;
9731 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints);
9732 #endif /* not USE_X_TOOLKIT */
9735 static void
9736 x_wm_set_icon_pixmap (struct frame *f, ptrdiff_t pixmap_id)
9738 Pixmap icon_pixmap, icon_mask;
9740 #if !defined USE_X_TOOLKIT && !defined USE_GTK
9741 Window window = FRAME_OUTER_WINDOW (f);
9742 #endif
9744 if (pixmap_id > 0)
9746 icon_pixmap = x_bitmap_pixmap (f, pixmap_id);
9747 f->output_data.x->wm_hints.icon_pixmap = icon_pixmap;
9748 icon_mask = x_bitmap_mask (f, pixmap_id);
9749 f->output_data.x->wm_hints.icon_mask = icon_mask;
9751 else
9753 /* It seems there is no way to turn off use of an icon
9754 pixmap. */
9755 return;
9759 #ifdef USE_GTK
9761 xg_set_frame_icon (f, icon_pixmap, icon_mask);
9762 return;
9765 #elif defined (USE_X_TOOLKIT) /* same as in x_wm_set_window_state. */
9768 Arg al[1];
9769 XtSetArg (al[0], XtNiconPixmap, icon_pixmap);
9770 XtSetValues (f->output_data.x->widget, al, 1);
9771 XtSetArg (al[0], XtNiconMask, icon_mask);
9772 XtSetValues (f->output_data.x->widget, al, 1);
9775 #else /* not USE_X_TOOLKIT && not USE_GTK */
9777 f->output_data.x->wm_hints.flags |= (IconPixmapHint | IconMaskHint);
9778 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints);
9780 #endif /* not USE_X_TOOLKIT && not USE_GTK */
9783 void
9784 x_wm_set_icon_position (struct frame *f, int icon_x, int icon_y)
9786 Window window = FRAME_OUTER_WINDOW (f);
9788 f->output_data.x->wm_hints.flags |= IconPositionHint;
9789 f->output_data.x->wm_hints.icon_x = icon_x;
9790 f->output_data.x->wm_hints.icon_y = icon_y;
9792 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints);
9796 /***********************************************************************
9797 Fonts
9798 ***********************************************************************/
9800 #ifdef GLYPH_DEBUG
9802 /* Check that FONT is valid on frame F. It is if it can be found in F's
9803 font table. */
9805 static void
9806 x_check_font (struct frame *f, struct font *font)
9808 eassert (font != NULL && ! NILP (font->props[FONT_TYPE_INDEX]));
9809 if (font->driver->check)
9810 eassert (font->driver->check (f, font) == 0);
9813 #endif /* GLYPH_DEBUG */
9816 /***********************************************************************
9817 Initialization
9818 ***********************************************************************/
9820 #ifdef USE_X_TOOLKIT
9821 static XrmOptionDescRec emacs_options[] = {
9822 {"-geometry", ".geometry", XrmoptionSepArg, NULL},
9823 {"-iconic", ".iconic", XrmoptionNoArg, (XtPointer) "yes"},
9825 {"-internal-border-width", "*EmacsScreen.internalBorderWidth",
9826 XrmoptionSepArg, NULL},
9827 {"-ib", "*EmacsScreen.internalBorderWidth", XrmoptionSepArg, NULL},
9829 {"-T", "*EmacsShell.title", XrmoptionSepArg, (XtPointer) NULL},
9830 {"-wn", "*EmacsShell.title", XrmoptionSepArg, (XtPointer) NULL},
9831 {"-title", "*EmacsShell.title", XrmoptionSepArg, (XtPointer) NULL},
9832 {"-iconname", "*EmacsShell.iconName", XrmoptionSepArg, (XtPointer) NULL},
9833 {"-in", "*EmacsShell.iconName", XrmoptionSepArg, (XtPointer) NULL},
9834 {"-mc", "*pointerColor", XrmoptionSepArg, (XtPointer) NULL},
9835 {"-cr", "*cursorColor", XrmoptionSepArg, (XtPointer) NULL}
9838 /* Whether atimer for Xt timeouts is activated or not. */
9840 static int x_timeout_atimer_activated_flag;
9842 #endif /* USE_X_TOOLKIT */
9844 static int x_initialized;
9846 /* Test whether two display-name strings agree up to the dot that separates
9847 the screen number from the server number. */
9848 static int
9849 same_x_server (const char *name1, const char *name2)
9851 int seen_colon = 0;
9852 const char *system_name = SSDATA (Vsystem_name);
9853 ptrdiff_t system_name_length = SBYTES (Vsystem_name);
9854 ptrdiff_t length_until_period = 0;
9856 while (system_name[length_until_period] != 0
9857 && system_name[length_until_period] != '.')
9858 length_until_period++;
9860 /* Treat `unix' like an empty host name. */
9861 if (! strncmp (name1, "unix:", 5))
9862 name1 += 4;
9863 if (! strncmp (name2, "unix:", 5))
9864 name2 += 4;
9865 /* Treat this host's name like an empty host name. */
9866 if (! strncmp (name1, system_name, system_name_length)
9867 && name1[system_name_length] == ':')
9868 name1 += system_name_length;
9869 if (! strncmp (name2, system_name, system_name_length)
9870 && name2[system_name_length] == ':')
9871 name2 += system_name_length;
9872 /* Treat this host's domainless name like an empty host name. */
9873 if (! strncmp (name1, system_name, length_until_period)
9874 && name1[length_until_period] == ':')
9875 name1 += length_until_period;
9876 if (! strncmp (name2, system_name, length_until_period)
9877 && name2[length_until_period] == ':')
9878 name2 += length_until_period;
9880 for (; *name1 != '\0' && *name1 == *name2; name1++, name2++)
9882 if (*name1 == ':')
9883 seen_colon = 1;
9884 if (seen_colon && *name1 == '.')
9885 return 1;
9887 return (seen_colon
9888 && (*name1 == '.' || *name1 == '\0')
9889 && (*name2 == '.' || *name2 == '\0'));
9892 /* Count number of set bits in mask and number of bits to shift to
9893 get to the first bit. With MASK 0x7e0, *BITS is set to 6, and *OFFSET
9894 to 5. */
9895 static void
9896 get_bits_and_offset (long unsigned int mask, int *bits, int *offset)
9898 int nr = 0;
9899 int off = 0;
9901 while (!(mask & 1))
9903 off++;
9904 mask >>= 1;
9907 while (mask & 1)
9909 nr++;
9910 mask >>= 1;
9913 *offset = off;
9914 *bits = nr;
9917 /* Return 1 if display DISPLAY is available for use, 0 otherwise.
9918 But don't permanently open it, just test its availability. */
9921 x_display_ok (const char *display)
9923 int dpy_ok = 1;
9924 Display *dpy;
9926 dpy = XOpenDisplay (display);
9927 if (dpy)
9928 XCloseDisplay (dpy);
9929 else
9930 dpy_ok = 0;
9931 return dpy_ok;
9934 #ifdef USE_GTK
9935 static void
9936 my_log_handler (const gchar *log_domain, GLogLevelFlags log_level,
9937 const gchar *msg, gpointer user_data)
9939 if (!strstr (msg, "g_set_prgname"))
9940 fprintf (stderr, "%s-WARNING **: %s\n", log_domain, msg);
9942 #endif
9944 /* Open a connection to X display DISPLAY_NAME, and return
9945 the structure that describes the open display.
9946 If we cannot contact the display, return null. */
9948 struct x_display_info *
9949 x_term_init (Lisp_Object display_name, char *xrm_option, char *resource_name)
9951 int connection;
9952 Display *dpy;
9953 struct terminal *terminal;
9954 struct x_display_info *dpyinfo;
9955 XrmDatabase xrdb;
9956 Mouse_HLInfo *hlinfo;
9957 ptrdiff_t lim;
9959 BLOCK_INPUT;
9961 if (!x_initialized)
9963 x_initialize ();
9964 ++x_initialized;
9967 if (! x_display_ok (SSDATA (display_name)))
9968 error ("Display %s can't be opened", SSDATA (display_name));
9970 #ifdef USE_GTK
9972 #define NUM_ARGV 10
9973 int argc;
9974 char *argv[NUM_ARGV];
9975 char **argv2 = argv;
9976 guint id;
9978 if (x_initialized++ > 1)
9980 xg_display_open (SSDATA (display_name), &dpy);
9982 else
9984 static char display_opt[] = "--display";
9985 static char name_opt[] = "--name";
9987 for (argc = 0; argc < NUM_ARGV; ++argc)
9988 argv[argc] = 0;
9990 argc = 0;
9991 argv[argc++] = initial_argv[0];
9993 if (! NILP (display_name))
9995 argv[argc++] = display_opt;
9996 argv[argc++] = SSDATA (display_name);
9999 argv[argc++] = name_opt;
10000 argv[argc++] = resource_name;
10002 XSetLocaleModifiers ("");
10004 /* Emacs can only handle core input events, so make sure
10005 Gtk doesn't use Xinput or Xinput2 extensions. */
10007 static char fix_events[] = "GDK_CORE_DEVICE_EVENTS=1";
10008 putenv (fix_events);
10011 /* Work around GLib bug that outputs a faulty warning. See
10012 https://bugzilla.gnome.org/show_bug.cgi?id=563627. */
10013 id = g_log_set_handler ("GLib", G_LOG_LEVEL_WARNING | G_LOG_FLAG_FATAL
10014 | G_LOG_FLAG_RECURSION, my_log_handler, NULL);
10016 /* NULL window -> events for all windows go to our function.
10017 Call before gtk_init so Gtk+ event filters comes after our. */
10018 gdk_window_add_filter (NULL, event_handler_gdk, NULL);
10020 gtk_init (&argc, &argv2);
10021 g_log_remove_handler ("GLib", id);
10023 /* gtk_init does set_locale. We must fix locale after calling it. */
10024 fixup_locale ();
10025 xg_initialize ();
10027 dpy = DEFAULT_GDK_DISPLAY ();
10029 #if GTK_MAJOR_VERSION <= 2 && GTK_MINOR_VERSION <= 90
10030 /* Load our own gtkrc if it exists. */
10032 const char *file = "~/.emacs.d/gtkrc";
10033 Lisp_Object s, abs_file;
10035 s = build_string (file);
10036 abs_file = Fexpand_file_name (s, Qnil);
10038 if (! NILP (abs_file) && !NILP (Ffile_readable_p (abs_file)))
10039 gtk_rc_parse (SSDATA (abs_file));
10041 #endif
10043 XSetErrorHandler (x_error_handler);
10044 XSetIOErrorHandler (x_io_error_quitter);
10047 #else /* not USE_GTK */
10048 #ifdef USE_X_TOOLKIT
10049 /* weiner@footloose.sps.mot.com reports that this causes
10050 errors with X11R5:
10051 X protocol error: BadAtom (invalid Atom parameter)
10052 on protocol request 18skiloaf.
10053 So let's not use it until R6. */
10054 #ifdef HAVE_X11XTR6
10055 XtSetLanguageProc (NULL, NULL, NULL);
10056 #endif
10059 int argc = 0;
10060 char *argv[3];
10062 argv[0] = "";
10063 argc = 1;
10064 if (xrm_option)
10066 argv[argc++] = "-xrm";
10067 argv[argc++] = xrm_option;
10069 turn_on_atimers (0);
10070 dpy = XtOpenDisplay (Xt_app_con, SSDATA (display_name),
10071 resource_name, EMACS_CLASS,
10072 emacs_options, XtNumber (emacs_options),
10073 &argc, argv);
10074 turn_on_atimers (1);
10076 #ifdef HAVE_X11XTR6
10077 /* I think this is to compensate for XtSetLanguageProc. */
10078 fixup_locale ();
10079 #endif
10082 #else /* not USE_X_TOOLKIT */
10083 XSetLocaleModifiers ("");
10084 dpy = XOpenDisplay (SSDATA (display_name));
10085 #endif /* not USE_X_TOOLKIT */
10086 #endif /* not USE_GTK*/
10088 /* Detect failure. */
10089 if (dpy == 0)
10091 UNBLOCK_INPUT;
10092 return 0;
10095 /* We have definitely succeeded. Record the new connection. */
10097 dpyinfo = xzalloc (sizeof *dpyinfo);
10098 hlinfo = &dpyinfo->mouse_highlight;
10100 terminal = x_create_terminal (dpyinfo);
10103 struct x_display_info *share;
10104 Lisp_Object tail;
10106 for (share = x_display_list, tail = x_display_name_list; share;
10107 share = share->next, tail = XCDR (tail))
10108 if (same_x_server (SSDATA (XCAR (XCAR (tail))),
10109 SSDATA (display_name)))
10110 break;
10111 if (share)
10112 terminal->kboard = share->terminal->kboard;
10113 else
10115 terminal->kboard = xmalloc (sizeof *terminal->kboard);
10116 init_kboard (terminal->kboard);
10117 kset_window_system (terminal->kboard, Qx);
10119 /* Add the keyboard to the list before running Lisp code (via
10120 Qvendor_specific_keysyms below), since these are not traced
10121 via terminals but only through all_kboards. */
10122 terminal->kboard->next_kboard = all_kboards;
10123 all_kboards = terminal->kboard;
10125 if (!EQ (XSYMBOL (Qvendor_specific_keysyms)->function, Qunbound))
10127 char *vendor = ServerVendor (dpy);
10129 /* Protect terminal from GC before removing it from the
10130 list of terminals. */
10131 struct gcpro gcpro1;
10132 Lisp_Object gcpro_term;
10133 XSETTERMINAL (gcpro_term, terminal);
10134 GCPRO1 (gcpro_term);
10136 /* Temporarily hide the partially initialized terminal. */
10137 terminal_list = terminal->next_terminal;
10138 UNBLOCK_INPUT;
10139 kset_system_key_alist
10140 (terminal->kboard,
10141 call1 (Qvendor_specific_keysyms,
10142 vendor ? build_string (vendor) : empty_unibyte_string));
10143 BLOCK_INPUT;
10144 terminal->next_terminal = terminal_list;
10145 terminal_list = terminal;
10146 UNGCPRO;
10149 /* Don't let the initial kboard remain current longer than necessary.
10150 That would cause problems if a file loaded on startup tries to
10151 prompt in the mini-buffer. */
10152 if (current_kboard == initial_kboard)
10153 current_kboard = terminal->kboard;
10155 terminal->kboard->reference_count++;
10158 /* Put this display on the chain. */
10159 dpyinfo->next = x_display_list;
10160 x_display_list = dpyinfo;
10162 /* Put it on x_display_name_list as well, to keep them parallel. */
10163 x_display_name_list = Fcons (Fcons (display_name, Qnil),
10164 x_display_name_list);
10165 dpyinfo->name_list_element = XCAR (x_display_name_list);
10167 dpyinfo->display = dpy;
10169 /* Set the name of the terminal. */
10170 terminal->name = xmalloc (SBYTES (display_name) + 1);
10171 memcpy (terminal->name, SSDATA (display_name), SBYTES (display_name));
10172 terminal->name[SBYTES (display_name)] = 0;
10174 #if 0
10175 XSetAfterFunction (x_current_display, x_trace_wire);
10176 #endif /* ! 0 */
10178 lim = min (PTRDIFF_MAX, SIZE_MAX) - sizeof "@";
10179 if (lim - SBYTES (Vinvocation_name) < SBYTES (Vsystem_name))
10180 memory_full (SIZE_MAX);
10181 dpyinfo->x_id_name = xmalloc (SBYTES (Vinvocation_name)
10182 + SBYTES (Vsystem_name) + 2);
10183 strcat (strcat (strcpy (dpyinfo->x_id_name, SSDATA (Vinvocation_name)), "@"),
10184 SSDATA (Vsystem_name));
10186 /* Figure out which modifier bits mean what. */
10187 x_find_modifier_meanings (dpyinfo);
10189 /* Get the scroll bar cursor. */
10190 #ifdef USE_GTK
10191 /* We must create a GTK cursor, it is required for GTK widgets. */
10192 dpyinfo->xg_cursor = xg_create_default_cursor (dpyinfo->display);
10193 #endif /* USE_GTK */
10195 dpyinfo->vertical_scroll_bar_cursor
10196 = XCreateFontCursor (dpyinfo->display, XC_sb_v_double_arrow);
10198 xrdb = x_load_resources (dpyinfo->display, xrm_option,
10199 resource_name, EMACS_CLASS);
10200 #ifdef HAVE_XRMSETDATABASE
10201 XrmSetDatabase (dpyinfo->display, xrdb);
10202 #else
10203 dpyinfo->display->db = xrdb;
10204 #endif
10205 /* Put the rdb where we can find it in a way that works on
10206 all versions. */
10207 dpyinfo->xrdb = xrdb;
10209 dpyinfo->screen = ScreenOfDisplay (dpyinfo->display,
10210 DefaultScreen (dpyinfo->display));
10211 select_visual (dpyinfo);
10212 dpyinfo->cmap = DefaultColormapOfScreen (dpyinfo->screen);
10213 dpyinfo->root_window = RootWindowOfScreen (dpyinfo->screen);
10214 dpyinfo->client_leader_window = 0;
10215 dpyinfo->grabbed = 0;
10216 dpyinfo->reference_count = 0;
10217 dpyinfo->icon_bitmap_id = -1;
10218 dpyinfo->n_fonts = 0;
10219 dpyinfo->bitmaps = 0;
10220 dpyinfo->bitmaps_size = 0;
10221 dpyinfo->bitmaps_last = 0;
10222 dpyinfo->scratch_cursor_gc = 0;
10223 hlinfo->mouse_face_mouse_frame = 0;
10224 hlinfo->mouse_face_deferred_gc = 0;
10225 hlinfo->mouse_face_beg_row = hlinfo->mouse_face_beg_col = -1;
10226 hlinfo->mouse_face_end_row = hlinfo->mouse_face_end_col = -1;
10227 hlinfo->mouse_face_face_id = DEFAULT_FACE_ID;
10228 hlinfo->mouse_face_window = Qnil;
10229 hlinfo->mouse_face_overlay = Qnil;
10230 hlinfo->mouse_face_mouse_x = hlinfo->mouse_face_mouse_y = 0;
10231 hlinfo->mouse_face_defer = 0;
10232 hlinfo->mouse_face_hidden = 0;
10233 dpyinfo->x_focus_frame = 0;
10234 dpyinfo->x_focus_event_frame = 0;
10235 dpyinfo->x_highlight_frame = 0;
10236 dpyinfo->wm_type = X_WMTYPE_UNKNOWN;
10238 /* See if we can construct pixel values from RGB values. */
10239 dpyinfo->red_bits = dpyinfo->blue_bits = dpyinfo->green_bits = 0;
10240 dpyinfo->red_offset = dpyinfo->blue_offset = dpyinfo->green_offset = 0;
10242 if (dpyinfo->visual->class == TrueColor)
10244 get_bits_and_offset (dpyinfo->visual->red_mask,
10245 &dpyinfo->red_bits, &dpyinfo->red_offset);
10246 get_bits_and_offset (dpyinfo->visual->blue_mask,
10247 &dpyinfo->blue_bits, &dpyinfo->blue_offset);
10248 get_bits_and_offset (dpyinfo->visual->green_mask,
10249 &dpyinfo->green_bits, &dpyinfo->green_offset);
10252 /* See if a private colormap is requested. */
10253 if (dpyinfo->visual == DefaultVisualOfScreen (dpyinfo->screen))
10255 if (dpyinfo->visual->class == PseudoColor)
10257 Lisp_Object value;
10258 value = display_x_get_resource (dpyinfo,
10259 build_string ("privateColormap"),
10260 build_string ("PrivateColormap"),
10261 Qnil, Qnil);
10262 if (STRINGP (value)
10263 && (!strcmp (SSDATA (value), "true")
10264 || !strcmp (SSDATA (value), "on")))
10265 dpyinfo->cmap = XCopyColormapAndFree (dpyinfo->display, dpyinfo->cmap);
10268 else
10269 dpyinfo->cmap = XCreateColormap (dpyinfo->display, dpyinfo->root_window,
10270 dpyinfo->visual, AllocNone);
10272 #ifdef HAVE_XFT
10274 /* If we are using Xft, check dpi value in X resources.
10275 It is better we use it as well, since Xft will use it, as will all
10276 Gnome applications. If our real DPI is smaller or larger than the
10277 one Xft uses, our font will look smaller or larger than other
10278 for other applications, even if it is the same font name (monospace-10
10279 for example). */
10280 char *v = XGetDefault (dpyinfo->display, "Xft", "dpi");
10281 double d;
10282 if (v != NULL && sscanf (v, "%lf", &d) == 1)
10283 dpyinfo->resy = dpyinfo->resx = d;
10285 #endif
10287 if (dpyinfo->resy < 1)
10289 int screen_number = XScreenNumberOfScreen (dpyinfo->screen);
10290 double pixels = DisplayHeight (dpyinfo->display, screen_number);
10291 double mm = DisplayHeightMM (dpyinfo->display, screen_number);
10292 /* Mac OS X 10.3's Xserver sometimes reports 0.0mm. */
10293 dpyinfo->resy = (mm < 1) ? 100 : pixels * 25.4 / mm;
10294 pixels = DisplayWidth (dpyinfo->display, screen_number);
10295 mm = DisplayWidthMM (dpyinfo->display, screen_number);
10296 /* Mac OS X 10.3's Xserver sometimes reports 0.0mm. */
10297 dpyinfo->resx = (mm < 1) ? 100 : pixels * 25.4 / mm;
10301 const struct
10303 const char *name;
10304 Atom *atom;
10305 } atom_refs[] = {
10306 { "WM_PROTOCOLS", &dpyinfo->Xatom_wm_protocols },
10307 { "WM_TAKE_FOCUS", &dpyinfo->Xatom_wm_take_focus },
10308 { "WM_SAVE_YOURSELF", &dpyinfo->Xatom_wm_save_yourself },
10309 { "WM_DELETE_WINDOW", &dpyinfo->Xatom_wm_delete_window },
10310 { "WM_CHANGE_STATE", &dpyinfo->Xatom_wm_change_state },
10311 { "WM_CONFIGURE_DENIED", &dpyinfo->Xatom_wm_configure_denied },
10312 { "WM_MOVED", &dpyinfo->Xatom_wm_window_moved },
10313 { "WM_CLIENT_LEADER", &dpyinfo->Xatom_wm_client_leader },
10314 { "Editres", &dpyinfo->Xatom_editres },
10315 { "CLIPBOARD", &dpyinfo->Xatom_CLIPBOARD },
10316 { "TIMESTAMP", &dpyinfo->Xatom_TIMESTAMP },
10317 { "TEXT", &dpyinfo->Xatom_TEXT },
10318 { "COMPOUND_TEXT", &dpyinfo->Xatom_COMPOUND_TEXT },
10319 { "UTF8_STRING", &dpyinfo->Xatom_UTF8_STRING },
10320 { "DELETE", &dpyinfo->Xatom_DELETE },
10321 { "MULTIPLE", &dpyinfo->Xatom_MULTIPLE },
10322 { "INCR", &dpyinfo->Xatom_INCR },
10323 { "_EMACS_TMP_", &dpyinfo->Xatom_EMACS_TMP },
10324 { "TARGETS", &dpyinfo->Xatom_TARGETS },
10325 { "NULL", &dpyinfo->Xatom_NULL },
10326 { "ATOM", &dpyinfo->Xatom_ATOM },
10327 { "ATOM_PAIR", &dpyinfo->Xatom_ATOM_PAIR },
10328 { "CLIPBOARD_MANAGER", &dpyinfo->Xatom_CLIPBOARD_MANAGER },
10329 { "_XEMBED_INFO", &dpyinfo->Xatom_XEMBED_INFO },
10330 /* For properties of font. */
10331 { "PIXEL_SIZE", &dpyinfo->Xatom_PIXEL_SIZE },
10332 { "AVERAGE_WIDTH", &dpyinfo->Xatom_AVERAGE_WIDTH },
10333 { "_MULE_BASELINE_OFFSET", &dpyinfo->Xatom_MULE_BASELINE_OFFSET },
10334 { "_MULE_RELATIVE_COMPOSE", &dpyinfo->Xatom_MULE_RELATIVE_COMPOSE },
10335 { "_MULE_DEFAULT_ASCENT", &dpyinfo->Xatom_MULE_DEFAULT_ASCENT },
10336 /* Ghostscript support. */
10337 { "DONE", &dpyinfo->Xatom_DONE },
10338 { "PAGE", &dpyinfo->Xatom_PAGE },
10339 { "SCROLLBAR", &dpyinfo->Xatom_Scrollbar },
10340 { "_XEMBED", &dpyinfo->Xatom_XEMBED },
10341 /* EWMH */
10342 { "_NET_WM_STATE", &dpyinfo->Xatom_net_wm_state },
10343 { "_NET_WM_STATE_FULLSCREEN", &dpyinfo->Xatom_net_wm_state_fullscreen },
10344 { "_NET_WM_STATE_MAXIMIZED_HORZ",
10345 &dpyinfo->Xatom_net_wm_state_maximized_horz },
10346 { "_NET_WM_STATE_MAXIMIZED_VERT",
10347 &dpyinfo->Xatom_net_wm_state_maximized_vert },
10348 { "_NET_WM_STATE_STICKY", &dpyinfo->Xatom_net_wm_state_sticky },
10349 { "_NET_WM_STATE_HIDDEN", &dpyinfo->Xatom_net_wm_state_hidden },
10350 { "_NET_WM_WINDOW_TYPE", &dpyinfo->Xatom_net_window_type },
10351 { "_NET_WM_WINDOW_TYPE_TOOLTIP",
10352 &dpyinfo->Xatom_net_window_type_tooltip },
10353 { "_NET_WM_ICON_NAME", &dpyinfo->Xatom_net_wm_icon_name },
10354 { "_NET_WM_NAME", &dpyinfo->Xatom_net_wm_name },
10355 { "_NET_SUPPORTED", &dpyinfo->Xatom_net_supported },
10356 { "_NET_SUPPORTING_WM_CHECK", &dpyinfo->Xatom_net_supporting_wm_check },
10357 { "_NET_WM_WINDOW_OPACITY", &dpyinfo->Xatom_net_wm_window_opacity },
10358 { "_NET_ACTIVE_WINDOW", &dpyinfo->Xatom_net_active_window },
10359 { "_NET_FRAME_EXTENTS", &dpyinfo->Xatom_net_frame_extents },
10360 /* Session management */
10361 { "SM_CLIENT_ID", &dpyinfo->Xatom_SM_CLIENT_ID },
10362 { "_XSETTINGS_SETTINGS", &dpyinfo->Xatom_xsettings_prop },
10363 { "MANAGER", &dpyinfo->Xatom_xsettings_mgr },
10366 int i;
10367 const int atom_count = sizeof (atom_refs) / sizeof (atom_refs[0]);
10368 /* 1 for _XSETTINGS_SN */
10369 const int total_atom_count = 1 + atom_count;
10370 Atom *atoms_return = xmalloc (total_atom_count * sizeof *atoms_return);
10371 char **atom_names = xmalloc (total_atom_count * sizeof *atom_names);
10372 static char const xsettings_fmt[] = "_XSETTINGS_S%d";
10373 char xsettings_atom_name[sizeof xsettings_fmt - 2
10374 + INT_STRLEN_BOUND (int)];
10376 for (i = 0; i < atom_count; i++)
10377 atom_names[i] = (char *) atom_refs[i].name;
10379 /* Build _XSETTINGS_SN atom name */
10380 sprintf (xsettings_atom_name, xsettings_fmt,
10381 XScreenNumberOfScreen (dpyinfo->screen));
10382 atom_names[i] = xsettings_atom_name;
10384 XInternAtoms (dpyinfo->display, atom_names, total_atom_count,
10385 False, atoms_return);
10387 for (i = 0; i < atom_count; i++)
10388 *atom_refs[i].atom = atoms_return[i];
10390 /* Manual copy of last atom */
10391 dpyinfo->Xatom_xsettings_sel = atoms_return[i];
10393 xfree (atom_names);
10394 xfree (atoms_return);
10397 dpyinfo->x_dnd_atoms_size = 8;
10398 dpyinfo->x_dnd_atoms_length = 0;
10399 dpyinfo->x_dnd_atoms = xmalloc (sizeof *dpyinfo->x_dnd_atoms
10400 * dpyinfo->x_dnd_atoms_size);
10402 dpyinfo->net_supported_atoms = NULL;
10403 dpyinfo->nr_net_supported_atoms = 0;
10404 dpyinfo->net_supported_window = 0;
10406 connection = ConnectionNumber (dpyinfo->display);
10407 dpyinfo->connection = connection;
10408 dpyinfo->gray
10409 = XCreatePixmapFromBitmapData (dpyinfo->display, dpyinfo->root_window,
10410 gray_bits, gray_width, gray_height,
10411 1, 0, 1);
10413 #ifdef HAVE_X_I18N
10414 xim_initialize (dpyinfo, resource_name);
10415 #endif
10417 xsettings_initialize (dpyinfo);
10419 /* This is only needed for distinguishing keyboard and process input. */
10420 if (connection != 0)
10421 add_keyboard_wait_descriptor (connection);
10423 #ifdef F_SETOWN
10424 fcntl (connection, F_SETOWN, getpid ());
10425 #endif /* ! defined (F_SETOWN) */
10427 #ifdef SIGIO
10428 if (interrupt_input)
10429 init_sigio (connection);
10430 #endif /* ! defined (SIGIO) */
10432 #ifdef USE_LUCID
10434 XrmValue d, fr, to;
10435 Font font;
10437 dpy = dpyinfo->display;
10438 d.addr = (XPointer)&dpy;
10439 d.size = sizeof (Display *);
10440 fr.addr = XtDefaultFont;
10441 fr.size = sizeof (XtDefaultFont);
10442 to.size = sizeof (Font *);
10443 to.addr = (XPointer)&font;
10444 x_catch_errors (dpy);
10445 if (!XtCallConverter (dpy, XtCvtStringToFont, &d, 1, &fr, &to, NULL))
10446 abort ();
10447 if (x_had_errors_p (dpy) || !XQueryFont (dpy, font))
10448 XrmPutLineResource (&xrdb, "Emacs.dialog.*.font: 9x15");
10449 x_uncatch_errors ();
10451 #endif
10453 /* See if we should run in synchronous mode. This is useful
10454 for debugging X code. */
10456 Lisp_Object value;
10457 value = display_x_get_resource (dpyinfo,
10458 build_string ("synchronous"),
10459 build_string ("Synchronous"),
10460 Qnil, Qnil);
10461 if (STRINGP (value)
10462 && (!strcmp (SSDATA (value), "true")
10463 || !strcmp (SSDATA (value), "on")))
10464 XSynchronize (dpyinfo->display, True);
10468 Lisp_Object value;
10469 value = display_x_get_resource (dpyinfo,
10470 build_string ("useXIM"),
10471 build_string ("UseXIM"),
10472 Qnil, Qnil);
10473 #ifdef USE_XIM
10474 if (STRINGP (value)
10475 && (!strcmp (SSDATA (value), "false")
10476 || !strcmp (SSDATA (value), "off")))
10477 use_xim = 0;
10478 #else
10479 if (STRINGP (value)
10480 && (!strcmp (SSDATA (value), "true")
10481 || !strcmp (SSDATA (value), "on")))
10482 use_xim = 1;
10483 #endif
10486 #ifdef HAVE_X_SM
10487 /* Only do this for the very first display in the Emacs session.
10488 Ignore X session management when Emacs was first started on a
10489 tty. */
10490 if (terminal->id == 1)
10491 x_session_initialize (dpyinfo);
10492 #endif
10494 UNBLOCK_INPUT;
10496 return dpyinfo;
10499 /* Get rid of display DPYINFO, deleting all frames on it,
10500 and without sending any more commands to the X server. */
10502 static void
10503 x_delete_display (struct x_display_info *dpyinfo)
10505 struct terminal *t;
10507 /* Close all frames and delete the generic struct terminal for this
10508 X display. */
10509 for (t = terminal_list; t; t = t->next_terminal)
10510 if (t->type == output_x_window && t->display_info.x == dpyinfo)
10512 #ifdef HAVE_X_SM
10513 /* Close X session management when we close its display. */
10514 if (t->id == 1 && x_session_have_connection ())
10515 x_session_close ();
10516 #endif
10517 delete_terminal (t);
10518 break;
10521 delete_keyboard_wait_descriptor (dpyinfo->connection);
10523 /* Discard this display from x_display_name_list and x_display_list.
10524 We can't use Fdelq because that can quit. */
10525 if (! NILP (x_display_name_list)
10526 && EQ (XCAR (x_display_name_list), dpyinfo->name_list_element))
10527 x_display_name_list = XCDR (x_display_name_list);
10528 else
10530 Lisp_Object tail;
10532 tail = x_display_name_list;
10533 while (CONSP (tail) && CONSP (XCDR (tail)))
10535 if (EQ (XCAR (XCDR (tail)), dpyinfo->name_list_element))
10537 XSETCDR (tail, XCDR (XCDR (tail)));
10538 break;
10540 tail = XCDR (tail);
10544 if (next_noop_dpyinfo == dpyinfo)
10545 next_noop_dpyinfo = dpyinfo->next;
10547 if (x_display_list == dpyinfo)
10548 x_display_list = dpyinfo->next;
10549 else
10551 struct x_display_info *tail;
10553 for (tail = x_display_list; tail; tail = tail->next)
10554 if (tail->next == dpyinfo)
10555 tail->next = tail->next->next;
10558 xfree (dpyinfo->x_id_name);
10559 xfree (dpyinfo->x_dnd_atoms);
10560 xfree (dpyinfo->color_cells);
10561 xfree (dpyinfo);
10564 #ifdef USE_X_TOOLKIT
10566 /* Atimer callback function for TIMER. Called every 0.1s to process
10567 Xt timeouts, if needed. We must avoid calling XtAppPending as
10568 much as possible because that function does an implicit XFlush
10569 that slows us down. */
10571 static void
10572 x_process_timeouts (struct atimer *timer)
10574 BLOCK_INPUT;
10575 x_timeout_atimer_activated_flag = 0;
10576 if (toolkit_scroll_bar_interaction || popup_activated ())
10578 while (XtAppPending (Xt_app_con) & XtIMTimer)
10579 XtAppProcessEvent (Xt_app_con, XtIMTimer);
10580 /* Reactivate the atimer for next time. */
10581 x_activate_timeout_atimer ();
10583 UNBLOCK_INPUT;
10586 /* Install an asynchronous timer that processes Xt timeout events
10587 every 0.1s as long as either `toolkit_scroll_bar_interaction' or
10588 `popup_activated_flag' (in xmenu.c) is set. Make sure to call this
10589 function whenever these variables are set. This is necessary
10590 because some widget sets use timeouts internally, for example the
10591 LessTif menu bar, or the Xaw3d scroll bar. When Xt timeouts aren't
10592 processed, these widgets don't behave normally. */
10594 void
10595 x_activate_timeout_atimer (void)
10597 BLOCK_INPUT;
10598 if (!x_timeout_atimer_activated_flag)
10600 EMACS_TIME interval = make_emacs_time (0, 100 * 1000 * 1000);
10601 start_atimer (ATIMER_RELATIVE, interval, x_process_timeouts, 0);
10602 x_timeout_atimer_activated_flag = 1;
10604 UNBLOCK_INPUT;
10607 #endif /* USE_X_TOOLKIT */
10610 /* Set up use of X before we make the first connection. */
10612 extern frame_parm_handler x_frame_parm_handlers[];
10614 static struct redisplay_interface x_redisplay_interface =
10616 x_frame_parm_handlers,
10617 x_produce_glyphs,
10618 x_write_glyphs,
10619 x_insert_glyphs,
10620 x_clear_end_of_line,
10621 x_scroll_run,
10622 x_after_update_window_line,
10623 x_update_window_begin,
10624 x_update_window_end,
10625 x_cursor_to,
10626 x_flush,
10627 #ifdef XFlush
10628 x_flush,
10629 #else
10630 0, /* flush_display_optional */
10631 #endif
10632 x_clear_window_mouse_face,
10633 x_get_glyph_overhangs,
10634 x_fix_overlapping_area,
10635 x_draw_fringe_bitmap,
10636 0, /* define_fringe_bitmap */
10637 0, /* destroy_fringe_bitmap */
10638 x_compute_glyph_string_overhangs,
10639 x_draw_glyph_string,
10640 x_define_frame_cursor,
10641 x_clear_frame_area,
10642 x_draw_window_cursor,
10643 x_draw_vertical_window_border,
10644 x_shift_glyphs_for_insert
10648 /* This function is called when the last frame on a display is deleted. */
10649 void
10650 x_delete_terminal (struct terminal *terminal)
10652 struct x_display_info *dpyinfo = terminal->display_info.x;
10654 /* Protect against recursive calls. delete_frame in
10655 delete_terminal calls us back when it deletes our last frame. */
10656 if (!terminal->name)
10657 return;
10659 BLOCK_INPUT;
10660 #ifdef HAVE_X_I18N
10661 /* We must close our connection to the XIM server before closing the
10662 X display. */
10663 if (dpyinfo->xim)
10664 xim_close_dpy (dpyinfo);
10665 #endif
10667 /* If called from x_connection_closed, the display may already be closed
10668 and dpyinfo->display was set to 0 to indicate that. */
10669 if (dpyinfo->display)
10671 x_destroy_all_bitmaps (dpyinfo);
10672 XSetCloseDownMode (dpyinfo->display, DestroyAll);
10674 /* Whether or not XCloseDisplay destroys the associated resource
10675 database depends on the version of libX11. To avoid both
10676 crash and memory leak, we dissociate the database from the
10677 display and then destroy dpyinfo->xrdb ourselves.
10679 Unfortunately, the above strategy does not work in some
10680 situations due to a bug in newer versions of libX11: because
10681 XrmSetDatabase doesn't clear the flag XlibDisplayDfltRMDB if
10682 dpy->db is NULL, XCloseDisplay destroys the associated
10683 database whereas it has not been created by XGetDefault
10684 (Bug#21974 in freedesktop.org Bugzilla). As a workaround, we
10685 don't destroy the database here in order to avoid the crash
10686 in the above situations for now, though that may cause memory
10687 leaks in other situations. */
10688 #if 0
10689 #ifdef HAVE_XRMSETDATABASE
10690 XrmSetDatabase (dpyinfo->display, NULL);
10691 #else
10692 dpyinfo->display->db = NULL;
10693 #endif
10694 /* We used to call XrmDestroyDatabase from x_delete_display, but
10695 some older versions of libX11 crash if we call it after
10696 closing all the displays. */
10697 XrmDestroyDatabase (dpyinfo->xrdb);
10698 #endif
10700 #ifdef USE_GTK
10701 xg_display_close (dpyinfo->display);
10702 #else
10703 #ifdef USE_X_TOOLKIT
10704 XtCloseDisplay (dpyinfo->display);
10705 #else
10706 XCloseDisplay (dpyinfo->display);
10707 #endif
10708 #endif /* ! USE_GTK */
10711 /* Mark as dead. */
10712 dpyinfo->display = NULL;
10713 x_delete_display (dpyinfo);
10714 UNBLOCK_INPUT;
10717 /* Create a struct terminal, initialize it with the X11 specific
10718 functions and make DISPLAY->TERMINAL point to it. */
10720 static struct terminal *
10721 x_create_terminal (struct x_display_info *dpyinfo)
10723 struct terminal *terminal;
10725 terminal = create_terminal ();
10727 terminal->type = output_x_window;
10728 terminal->display_info.x = dpyinfo;
10729 dpyinfo->terminal = terminal;
10731 /* kboard is initialized in x_term_init. */
10733 terminal->clear_frame_hook = x_clear_frame;
10734 terminal->ins_del_lines_hook = x_ins_del_lines;
10735 terminal->delete_glyphs_hook = x_delete_glyphs;
10736 terminal->ring_bell_hook = XTring_bell;
10737 terminal->toggle_invisible_pointer_hook = XTtoggle_invisible_pointer;
10738 terminal->reset_terminal_modes_hook = XTreset_terminal_modes;
10739 terminal->set_terminal_modes_hook = XTset_terminal_modes;
10740 terminal->update_begin_hook = x_update_begin;
10741 terminal->update_end_hook = x_update_end;
10742 terminal->set_terminal_window_hook = XTset_terminal_window;
10743 terminal->read_socket_hook = XTread_socket;
10744 terminal->frame_up_to_date_hook = XTframe_up_to_date;
10745 terminal->mouse_position_hook = XTmouse_position;
10746 terminal->frame_rehighlight_hook = XTframe_rehighlight;
10747 terminal->frame_raise_lower_hook = XTframe_raise_lower;
10748 terminal->fullscreen_hook = XTfullscreen_hook;
10749 terminal->set_vertical_scroll_bar_hook = XTset_vertical_scroll_bar;
10750 terminal->condemn_scroll_bars_hook = XTcondemn_scroll_bars;
10751 terminal->redeem_scroll_bar_hook = XTredeem_scroll_bar;
10752 terminal->judge_scroll_bars_hook = XTjudge_scroll_bars;
10754 terminal->delete_frame_hook = x_destroy_window;
10755 terminal->delete_terminal_hook = x_delete_terminal;
10757 terminal->rif = &x_redisplay_interface;
10758 terminal->scroll_region_ok = 1; /* We'll scroll partial frames. */
10759 terminal->char_ins_del_ok = 1;
10760 terminal->line_ins_del_ok = 1; /* We'll just blt 'em. */
10761 terminal->fast_clear_end_of_line = 1; /* X does this well. */
10762 terminal->memory_below_frame = 0; /* We don't remember what scrolls
10763 off the bottom. */
10765 return terminal;
10768 void
10769 x_initialize (void)
10771 baud_rate = 19200;
10773 x_noop_count = 0;
10774 last_tool_bar_item = -1;
10775 any_help_event_p = 0;
10776 ignore_next_mouse_click_timeout = 0;
10778 #ifdef USE_GTK
10779 current_count = -1;
10780 #endif
10782 /* Try to use interrupt input; if we can't, then start polling. */
10783 Fset_input_interrupt_mode (Qt);
10785 #ifdef USE_X_TOOLKIT
10786 XtToolkitInitialize ();
10788 Xt_app_con = XtCreateApplicationContext ();
10790 /* Register a converter from strings to pixels, which uses
10791 Emacs' color allocation infrastructure. */
10792 XtAppSetTypeConverter (Xt_app_con,
10793 XtRString, XtRPixel, cvt_string_to_pixel,
10794 cvt_string_to_pixel_args,
10795 XtNumber (cvt_string_to_pixel_args),
10796 XtCacheByDisplay, cvt_pixel_dtor);
10798 XtAppSetFallbackResources (Xt_app_con, Xt_default_resources);
10799 #endif
10801 #ifdef USE_TOOLKIT_SCROLL_BARS
10802 #ifndef USE_GTK
10803 xaw3d_arrow_scroll = False;
10804 xaw3d_pick_top = True;
10805 #endif
10806 #endif
10808 pending_autoraise_frame = 0;
10809 pending_event_wait.f = 0;
10810 pending_event_wait.eventtype = 0;
10812 /* Note that there is no real way portable across R3/R4 to get the
10813 original error handler. */
10814 XSetErrorHandler (x_error_handler);
10815 XSetIOErrorHandler (x_io_error_quitter);
10817 signal (SIGPIPE, x_connection_signal);
10819 xgselect_initialize ();
10823 void
10824 syms_of_xterm (void)
10826 x_error_message = NULL;
10828 staticpro (&x_display_name_list);
10829 x_display_name_list = Qnil;
10831 staticpro (&last_mouse_scroll_bar);
10832 last_mouse_scroll_bar = Qnil;
10834 DEFSYM (Qvendor_specific_keysyms, "vendor-specific-keysyms");
10835 DEFSYM (Qlatin_1, "latin-1");
10837 staticpro (&last_mouse_press_frame);
10838 last_mouse_press_frame = Qnil;
10840 #ifdef USE_GTK
10841 xg_default_icon_file = build_pure_c_string ("icons/hicolor/scalable/apps/emacs.svg");
10842 staticpro (&xg_default_icon_file);
10844 DEFSYM (Qx_gtk_map_stock, "x-gtk-map-stock");
10845 #endif
10847 DEFVAR_BOOL ("x-use-underline-position-properties",
10848 x_use_underline_position_properties,
10849 doc: /* Non-nil means make use of UNDERLINE_POSITION font properties.
10850 A value of nil means ignore them. If you encounter fonts with bogus
10851 UNDERLINE_POSITION font properties, for example 7x13 on XFree prior
10852 to 4.1, set this to nil. You can also use `underline-minimum-offset'
10853 to override the font's UNDERLINE_POSITION for small font display
10854 sizes. */);
10855 x_use_underline_position_properties = 1;
10857 DEFVAR_BOOL ("x-underline-at-descent-line",
10858 x_underline_at_descent_line,
10859 doc: /* Non-nil means to draw the underline at the same place as the descent line.
10860 A value of nil means to draw the underline according to the value of the
10861 variable `x-use-underline-position-properties', which is usually at the
10862 baseline level. The default value is nil. */);
10863 x_underline_at_descent_line = 0;
10865 DEFVAR_BOOL ("x-mouse-click-focus-ignore-position",
10866 x_mouse_click_focus_ignore_position,
10867 doc: /* Non-nil means that a mouse click to focus a frame does not move point.
10868 This variable is only used when the window manager requires that you
10869 click on a frame to select it (give it focus). In that case, a value
10870 of nil, means that the selected window and cursor position changes to
10871 reflect the mouse click position, while a non-nil value means that the
10872 selected window or cursor position is preserved. */);
10873 x_mouse_click_focus_ignore_position = 0;
10875 DEFVAR_LISP ("x-toolkit-scroll-bars", Vx_toolkit_scroll_bars,
10876 doc: /* Which toolkit scroll bars Emacs uses, if any.
10877 A value of nil means Emacs doesn't use toolkit scroll bars.
10878 With the X Window system, the value is a symbol describing the
10879 X toolkit. Possible values are: gtk, motif, xaw, or xaw3d.
10880 With MS Windows or Nextstep, the value is t. */);
10881 #ifdef USE_TOOLKIT_SCROLL_BARS
10882 #ifdef USE_MOTIF
10883 Vx_toolkit_scroll_bars = intern_c_string ("motif");
10884 #elif defined HAVE_XAW3D
10885 Vx_toolkit_scroll_bars = intern_c_string ("xaw3d");
10886 #elif USE_GTK
10887 Vx_toolkit_scroll_bars = intern_c_string ("gtk");
10888 #else
10889 Vx_toolkit_scroll_bars = intern_c_string ("xaw");
10890 #endif
10891 #else
10892 Vx_toolkit_scroll_bars = Qnil;
10893 #endif
10895 staticpro (&last_mouse_motion_frame);
10896 last_mouse_motion_frame = Qnil;
10898 Qmodifier_value = intern_c_string ("modifier-value");
10899 Qalt = intern_c_string ("alt");
10900 Fput (Qalt, Qmodifier_value, make_number (alt_modifier));
10901 Qhyper = intern_c_string ("hyper");
10902 Fput (Qhyper, Qmodifier_value, make_number (hyper_modifier));
10903 Qmeta = intern_c_string ("meta");
10904 Fput (Qmeta, Qmodifier_value, make_number (meta_modifier));
10905 Qsuper = intern_c_string ("super");
10906 Fput (Qsuper, Qmodifier_value, make_number (super_modifier));
10908 DEFVAR_LISP ("x-alt-keysym", Vx_alt_keysym,
10909 doc: /* Which keys Emacs uses for the alt modifier.
10910 This should be one of the symbols `alt', `hyper', `meta', `super'.
10911 For example, `alt' means use the Alt_L and Alt_R keysyms. The default
10912 is nil, which is the same as `alt'. */);
10913 Vx_alt_keysym = Qnil;
10915 DEFVAR_LISP ("x-hyper-keysym", Vx_hyper_keysym,
10916 doc: /* Which keys Emacs uses for the hyper modifier.
10917 This should be one of the symbols `alt', `hyper', `meta', `super'.
10918 For example, `hyper' means use the Hyper_L and Hyper_R keysyms. The
10919 default is nil, which is the same as `hyper'. */);
10920 Vx_hyper_keysym = Qnil;
10922 DEFVAR_LISP ("x-meta-keysym", Vx_meta_keysym,
10923 doc: /* Which keys Emacs uses for the meta modifier.
10924 This should be one of the symbols `alt', `hyper', `meta', `super'.
10925 For example, `meta' means use the Meta_L and Meta_R keysyms. The
10926 default is nil, which is the same as `meta'. */);
10927 Vx_meta_keysym = Qnil;
10929 DEFVAR_LISP ("x-super-keysym", Vx_super_keysym,
10930 doc: /* Which keys Emacs uses for the super modifier.
10931 This should be one of the symbols `alt', `hyper', `meta', `super'.
10932 For example, `super' means use the Super_L and Super_R keysyms. The
10933 default is nil, which is the same as `super'. */);
10934 Vx_super_keysym = Qnil;
10936 DEFVAR_LISP ("x-keysym-table", Vx_keysym_table,
10937 doc: /* Hash table of character codes indexed by X keysym codes. */);
10938 Vx_keysym_table = make_hash_table (Qeql, make_number (900),
10939 make_float (DEFAULT_REHASH_SIZE),
10940 make_float (DEFAULT_REHASH_THRESHOLD),
10941 Qnil, Qnil, Qnil);
10944 #endif /* HAVE_X_WINDOWS */