lisp/desktop.el (desktop--select-frame): Try harder to reuse the initial frame.
[emacs.git] / src / xterm.c
blobb3534871da9964671a8b59e4766763827af5f6a9
1 /* X Communication module for terminals which understand the X protocol.
3 Copyright (C) 1989, 1993-2013 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
20 /* New display code by Gerd Moellmann <gerd@gnu.org>. */
21 /* Xt features made by Fred Pierresteguy. */
23 #include <config.h>
24 #include <stdio.h>
26 #ifdef HAVE_X_WINDOWS
28 #include "lisp.h"
29 #include "blockinput.h"
30 #include "syssignal.h"
32 /* This may include sys/types.h, and that somehow loses
33 if this is not done before the other system files. */
34 #include "xterm.h"
35 #include <X11/cursorfont.h>
37 /* Load sys/types.h if not already loaded.
38 In some systems loading it twice is suicidal. */
39 #ifndef makedev
40 #include <sys/types.h>
41 #endif /* makedev */
43 #include <sys/ioctl.h>
45 #include "systime.h"
47 #include <fcntl.h>
48 #include <errno.h>
49 #include <sys/stat.h>
50 /* Caused redefinition of DBL_DIG on Netbsd; seems not to be needed. */
51 /* #include <sys/param.h> */
53 #include "charset.h"
54 #include "character.h"
55 #include "coding.h"
56 #include "frame.h"
57 #include "dispextern.h"
58 #include "fontset.h"
59 #include "termhooks.h"
60 #include "termopts.h"
61 #include "termchar.h"
62 #include "emacs-icon.h"
63 #include "disptab.h"
64 #include "buffer.h"
65 #include "window.h"
66 #include "keyboard.h"
67 #include "intervals.h"
68 #include "process.h"
69 #include "atimer.h"
70 #include "keymap.h"
71 #include "font.h"
72 #include "xsettings.h"
73 #include "xgselect.h"
74 #include "sysselect.h"
76 #ifdef USE_X_TOOLKIT
77 #include <X11/Shell.h>
78 #endif
80 #include <unistd.h>
82 #ifdef USE_GTK
83 #include "gtkutil.h"
84 #ifdef HAVE_GTK3
85 #include <X11/Xproto.h>
86 #endif
87 #endif
89 #ifdef USE_LUCID
90 #include "../lwlib/xlwmenu.h"
91 #endif
93 #ifdef USE_X_TOOLKIT
94 #if !defined (NO_EDITRES)
95 #define HACK_EDITRES
96 extern void _XEditResCheckMessages (Widget, XtPointer, XEvent *, Boolean *);
97 #endif /* not NO_EDITRES */
99 /* Include toolkit specific headers for the scroll bar widget. */
101 #ifdef USE_TOOLKIT_SCROLL_BARS
102 #if defined USE_MOTIF
103 #include <Xm/Xm.h> /* for LESSTIF_VERSION */
104 #include <Xm/ScrollBar.h>
105 #else /* !USE_MOTIF i.e. use Xaw */
107 #ifdef HAVE_XAW3D
108 #include <X11/Xaw3d/Simple.h>
109 #include <X11/Xaw3d/Scrollbar.h>
110 #include <X11/Xaw3d/ThreeD.h>
111 #else /* !HAVE_XAW3D */
112 #include <X11/Xaw/Simple.h>
113 #include <X11/Xaw/Scrollbar.h>
114 #endif /* !HAVE_XAW3D */
115 #ifndef XtNpickTop
116 #define XtNpickTop "pickTop"
117 #endif /* !XtNpickTop */
118 #endif /* !USE_MOTIF */
119 #endif /* USE_TOOLKIT_SCROLL_BARS */
121 #endif /* USE_X_TOOLKIT */
123 #ifdef USE_X_TOOLKIT
124 #include "widget.h"
125 #ifndef XtNinitialState
126 #define XtNinitialState "initialState"
127 #endif
128 #endif
130 #include "bitmaps/gray.xbm"
132 #ifdef HAVE_XKB
133 #include <X11/XKBlib.h>
134 #endif
136 /* Default to using XIM if available. */
137 #ifdef USE_XIM
138 int use_xim = 1;
139 #else
140 int use_xim = 0; /* configure --without-xim */
141 #endif
145 /* Non-zero means that a HELP_EVENT has been generated since Emacs
146 start. */
148 static int any_help_event_p;
150 /* Last window where we saw the mouse. Used by mouse-autoselect-window. */
151 static Lisp_Object last_window;
153 /* This is a chain of structures for all the X displays currently in
154 use. */
156 struct x_display_info *x_display_list;
158 /* This is a list of cons cells, each of the form (NAME
159 . FONT-LIST-CACHE), one for each element of x_display_list and in
160 the same order. NAME is the name of the frame. FONT-LIST-CACHE
161 records previous values returned by x-list-fonts. */
163 Lisp_Object x_display_name_list;
165 /* This is a frame waiting to be auto-raised, within XTread_socket. */
167 static struct frame *pending_autoraise_frame;
169 /* This is a frame waiting for an event matching mask, within XTread_socket. */
171 static struct {
172 struct frame *f;
173 int eventtype;
174 } pending_event_wait;
176 #ifdef USE_X_TOOLKIT
177 /* The application context for Xt use. */
178 XtAppContext Xt_app_con;
179 static String Xt_default_resources[] = {0};
181 /* Non-zero means user is interacting with a toolkit scroll bar. */
183 static int toolkit_scroll_bar_interaction;
184 #endif /* USE_X_TOOLKIT */
186 /* Non-zero timeout value means ignore next mouse click if it arrives
187 before that timeout elapses (i.e. as part of the same sequence of
188 events resulting from clicking on a frame to select it). */
190 static unsigned long ignore_next_mouse_click_timeout;
192 /* Mouse movement.
194 Formerly, we used PointerMotionHintMask (in standard_event_mask)
195 so that we would have to call XQueryPointer after each MotionNotify
196 event to ask for another such event. However, this made mouse tracking
197 slow, and there was a bug that made it eventually stop.
199 Simply asking for MotionNotify all the time seems to work better.
201 In order to avoid asking for motion events and then throwing most
202 of them away or busy-polling the server for mouse positions, we ask
203 the server for pointer motion hints. This means that we get only
204 one event per group of mouse movements. "Groups" are delimited by
205 other kinds of events (focus changes and button clicks, for
206 example), or by XQueryPointer calls; when one of these happens, we
207 get another MotionNotify event the next time the mouse moves. This
208 is at least as efficient as getting motion events when mouse
209 tracking is on, and I suspect only negligibly worse when tracking
210 is off. */
212 /* Where the mouse was last time we reported a mouse event. */
214 static XRectangle last_mouse_glyph;
215 static FRAME_PTR last_mouse_glyph_frame;
216 static Lisp_Object last_mouse_press_frame;
218 /* The scroll bar in which the last X motion event occurred.
220 If the last X motion event occurred in a scroll bar, we set this so
221 XTmouse_position can know whether to report a scroll bar motion or
222 an ordinary motion.
224 If the last X motion event didn't occur in a scroll bar, we set
225 this to Qnil, to tell XTmouse_position to return an ordinary motion
226 event. */
228 static Lisp_Object last_mouse_scroll_bar;
230 /* This is a hack. We would really prefer that XTmouse_position would
231 return the time associated with the position it returns, but there
232 doesn't seem to be any way to wrest the time-stamp from the server
233 along with the position query. So, we just keep track of the time
234 of the last movement we received, and return that in hopes that
235 it's somewhat accurate. */
237 static Time last_mouse_movement_time;
239 /* Time for last user interaction as returned in X events. */
241 static Time last_user_time;
243 /* Incremented by XTread_socket whenever it really tries to read
244 events. */
246 static int volatile input_signal_count;
248 /* Used locally within XTread_socket. */
250 static int x_noop_count;
252 static Lisp_Object Qalt, Qhyper, Qmeta, Qsuper, Qmodifier_value;
254 static Lisp_Object Qvendor_specific_keysyms;
255 static Lisp_Object Qlatin_1;
257 #ifdef USE_GTK
258 /* The name of the Emacs icon file. */
259 static Lisp_Object xg_default_icon_file;
261 /* Used in gtkutil.c. */
262 Lisp_Object Qx_gtk_map_stock;
263 #endif
265 /* Some functions take this as char *, not const char *. */
266 static char emacs_class[] = EMACS_CLASS;
268 enum xembed_info
270 XEMBED_MAPPED = 1 << 0
273 enum xembed_message
275 XEMBED_EMBEDDED_NOTIFY = 0,
276 XEMBED_WINDOW_ACTIVATE = 1,
277 XEMBED_WINDOW_DEACTIVATE = 2,
278 XEMBED_REQUEST_FOCUS = 3,
279 XEMBED_FOCUS_IN = 4,
280 XEMBED_FOCUS_OUT = 5,
281 XEMBED_FOCUS_NEXT = 6,
282 XEMBED_FOCUS_PREV = 7,
284 XEMBED_MODALITY_ON = 10,
285 XEMBED_MODALITY_OFF = 11,
286 XEMBED_REGISTER_ACCELERATOR = 12,
287 XEMBED_UNREGISTER_ACCELERATOR = 13,
288 XEMBED_ACTIVATE_ACCELERATOR = 14
291 /* Used in x_flush. */
293 static bool x_alloc_nearest_color_1 (Display *, Colormap, XColor *);
294 static void x_set_window_size_1 (struct frame *, int, int, int);
295 static void x_raise_frame (struct frame *);
296 static void x_lower_frame (struct frame *);
297 static const XColor *x_color_cells (Display *, int *);
298 static void x_update_window_end (struct window *, int, int);
300 static int x_io_error_quitter (Display *);
301 static struct terminal *x_create_terminal (struct x_display_info *);
302 void x_delete_terminal (struct terminal *);
303 static void x_update_end (struct frame *);
304 static void XTframe_up_to_date (struct frame *);
305 static void XTset_terminal_modes (struct terminal *);
306 static void XTreset_terminal_modes (struct terminal *);
307 static void x_clear_frame (struct frame *);
308 static _Noreturn void x_ins_del_lines (struct frame *, int, int);
309 static void frame_highlight (struct frame *);
310 static void frame_unhighlight (struct frame *);
311 static void x_new_focus_frame (struct x_display_info *, struct frame *);
312 static void x_focus_changed (int, int, struct x_display_info *,
313 struct frame *, struct input_event *);
314 static void x_detect_focus_change (struct x_display_info *,
315 XEvent *, struct input_event *);
316 static void XTframe_rehighlight (struct frame *);
317 static void x_frame_rehighlight (struct x_display_info *);
318 static void x_draw_hollow_cursor (struct window *, struct glyph_row *);
319 static void x_draw_bar_cursor (struct window *, struct glyph_row *, int,
320 enum text_cursor_kinds);
322 static void x_clip_to_row (struct window *, struct glyph_row *, int, GC);
323 static void x_flush (struct frame *f);
324 static void x_update_begin (struct frame *);
325 static void x_update_window_begin (struct window *);
326 static void x_after_update_window_line (struct glyph_row *);
327 static struct scroll_bar *x_window_to_scroll_bar (Display *, Window);
328 static void x_scroll_bar_report_motion (struct frame **, Lisp_Object *,
329 enum scroll_bar_part *,
330 Lisp_Object *, Lisp_Object *,
331 Time *);
332 static int x_handle_net_wm_state (struct frame *, XPropertyEvent *);
333 static void x_check_fullscreen (struct frame *);
334 static void x_check_expected_move (struct frame *, int, int);
335 static void x_sync_with_move (struct frame *, int, int, int);
336 static int handle_one_xevent (struct x_display_info *, XEvent *,
337 int *, struct input_event *);
338 #ifdef USE_GTK
339 static int x_dispatch_event (XEvent *, Display *);
340 #endif
341 /* Don't declare this _Noreturn because we want no
342 interference with debugging failing X calls. */
343 static void x_connection_closed (Display *, const char *);
344 static void x_wm_set_window_state (struct frame *, int);
345 static void x_wm_set_icon_pixmap (struct frame *, ptrdiff_t);
346 static void x_initialize (void);
349 /* Flush display of frame F, or of all frames if F is null. */
351 static void
352 x_flush (struct frame *f)
354 /* Don't call XFlush when it is not safe to redisplay; the X
355 connection may be broken. */
356 if (!NILP (Vinhibit_redisplay))
357 return;
359 block_input ();
360 if (f == NULL)
362 Lisp_Object rest, frame;
363 FOR_EACH_FRAME (rest, frame)
364 if (FRAME_X_P (XFRAME (frame)))
365 x_flush (XFRAME (frame));
367 else if (FRAME_X_P (f))
368 XFlush (FRAME_X_DISPLAY (f));
369 unblock_input ();
373 /* Remove calls to XFlush by defining XFlush to an empty replacement.
374 Calls to XFlush should be unnecessary because the X output buffer
375 is flushed automatically as needed by calls to XPending,
376 XNextEvent, or XWindowEvent according to the XFlush man page.
377 XTread_socket calls XPending. Removing XFlush improves
378 performance. */
380 #define XFlush(DISPLAY) (void) 0
383 /***********************************************************************
384 Debugging
385 ***********************************************************************/
387 #if 0
389 /* This is a function useful for recording debugging information about
390 the sequence of occurrences in this file. */
392 struct record
394 char *locus;
395 int type;
398 struct record event_record[100];
400 int event_record_index;
402 void
403 record_event (char *locus, int type)
405 if (event_record_index == sizeof (event_record) / sizeof (struct record))
406 event_record_index = 0;
408 event_record[event_record_index].locus = locus;
409 event_record[event_record_index].type = type;
410 event_record_index++;
413 #endif /* 0 */
417 /* Return the struct x_display_info corresponding to DPY. */
419 struct x_display_info *
420 x_display_info_for_display (Display *dpy)
422 struct x_display_info *dpyinfo;
424 for (dpyinfo = x_display_list; dpyinfo; dpyinfo = dpyinfo->next)
425 if (dpyinfo->display == dpy)
426 return dpyinfo;
428 return 0;
431 static Window
432 x_find_topmost_parent (struct frame *f)
434 struct x_output *x = f->output_data.x;
435 Window win = None, wi = x->parent_desc;
436 Display *dpy = FRAME_X_DISPLAY (f);
438 while (wi != FRAME_X_DISPLAY_INFO (f)->root_window)
440 Window root;
441 Window *children;
442 unsigned int nchildren;
444 win = wi;
445 XQueryTree (dpy, win, &root, &wi, &children, &nchildren);
446 XFree (children);
449 return win;
452 #define OPAQUE 0xffffffff
454 void
455 x_set_frame_alpha (struct frame *f)
457 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
458 Display *dpy = FRAME_X_DISPLAY (f);
459 Window win = FRAME_OUTER_WINDOW (f);
460 double alpha = 1.0;
461 double alpha_min = 1.0;
462 unsigned long opac;
463 Window parent;
465 if (dpyinfo->x_highlight_frame == f)
466 alpha = f->alpha[0];
467 else
468 alpha = f->alpha[1];
470 if (FLOATP (Vframe_alpha_lower_limit))
471 alpha_min = XFLOAT_DATA (Vframe_alpha_lower_limit);
472 else if (INTEGERP (Vframe_alpha_lower_limit))
473 alpha_min = (XINT (Vframe_alpha_lower_limit)) / 100.0;
475 if (alpha < 0.0)
476 return;
477 else if (alpha > 1.0)
478 alpha = 1.0;
479 else if (0.0 <= alpha && alpha < alpha_min && alpha_min <= 1.0)
480 alpha = alpha_min;
482 opac = alpha * OPAQUE;
484 x_catch_errors (dpy);
486 /* If there is a parent from the window manager, put the property there
487 also, to work around broken window managers that fail to do that.
488 Do this unconditionally as this function is called on reparent when
489 alpha has not changed on the frame. */
491 parent = x_find_topmost_parent (f);
492 if (parent != None)
493 XChangeProperty (dpy, parent, dpyinfo->Xatom_net_wm_window_opacity,
494 XA_CARDINAL, 32, PropModeReplace,
495 (unsigned char *) &opac, 1L);
497 /* return unless necessary */
499 unsigned char *data;
500 Atom actual;
501 int rc, format;
502 unsigned long n, left;
504 rc = XGetWindowProperty (dpy, win, dpyinfo->Xatom_net_wm_window_opacity,
505 0L, 1L, False, XA_CARDINAL,
506 &actual, &format, &n, &left,
507 &data);
509 if (rc == Success && actual != None)
511 unsigned long value = *(unsigned long *)data;
512 XFree (data);
513 if (value == opac)
515 x_uncatch_errors ();
516 return;
521 XChangeProperty (dpy, win, dpyinfo->Xatom_net_wm_window_opacity,
522 XA_CARDINAL, 32, PropModeReplace,
523 (unsigned char *) &opac, 1L);
524 x_uncatch_errors ();
528 x_display_pixel_height (struct x_display_info *dpyinfo)
530 return HeightOfScreen (dpyinfo->screen);
534 x_display_pixel_width (struct x_display_info *dpyinfo)
536 return WidthOfScreen (dpyinfo->screen);
540 /***********************************************************************
541 Starting and ending an update
542 ***********************************************************************/
544 /* Start an update of frame F. This function is installed as a hook
545 for update_begin, i.e. it is called when update_begin is called.
546 This function is called prior to calls to x_update_window_begin for
547 each window being updated. Currently, there is nothing to do here
548 because all interesting stuff is done on a window basis. */
550 static void
551 x_update_begin (struct frame *f)
553 /* Nothing to do. */
557 /* Start update of window W. Set the global variable updated_window
558 to the window being updated and set output_cursor to the cursor
559 position of W. */
561 static void
562 x_update_window_begin (struct window *w)
564 struct frame *f = XFRAME (WINDOW_FRAME (w));
565 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
567 updated_window = w;
568 set_output_cursor (&w->cursor);
570 block_input ();
572 if (f == hlinfo->mouse_face_mouse_frame)
574 /* Don't do highlighting for mouse motion during the update. */
575 hlinfo->mouse_face_defer = 1;
577 /* If F needs to be redrawn, simply forget about any prior mouse
578 highlighting. */
579 if (FRAME_GARBAGED_P (f))
580 hlinfo->mouse_face_window = Qnil;
583 unblock_input ();
587 /* Draw a vertical window border from (x,y0) to (x,y1) */
589 static void
590 x_draw_vertical_window_border (struct window *w, int x, int y0, int y1)
592 struct frame *f = XFRAME (WINDOW_FRAME (w));
593 struct face *face;
595 face = FACE_FROM_ID (f, VERTICAL_BORDER_FACE_ID);
596 if (face)
597 XSetForeground (FRAME_X_DISPLAY (f), f->output_data.x->normal_gc,
598 face->foreground);
600 XDrawLine (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
601 f->output_data.x->normal_gc, x, y0, x, y1);
604 /* End update of window W (which is equal to updated_window).
606 Draw vertical borders between horizontally adjacent windows, and
607 display W's cursor if CURSOR_ON_P is non-zero.
609 MOUSE_FACE_OVERWRITTEN_P non-zero means that some row containing
610 glyphs in mouse-face were overwritten. In that case we have to
611 make sure that the mouse-highlight is properly redrawn.
613 W may be a menu bar pseudo-window in case we don't have X toolkit
614 support. Such windows don't have a cursor, so don't display it
615 here. */
617 static void
618 x_update_window_end (struct window *w, int cursor_on_p, int mouse_face_overwritten_p)
620 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (XFRAME (w->frame));
622 if (!w->pseudo_window_p)
624 block_input ();
626 if (cursor_on_p)
627 display_and_set_cursor (w, 1, output_cursor.hpos,
628 output_cursor.vpos,
629 output_cursor.x, output_cursor.y);
631 if (draw_window_fringes (w, 1))
632 x_draw_vertical_border (w);
634 unblock_input ();
637 /* If a row with mouse-face was overwritten, arrange for
638 XTframe_up_to_date to redisplay the mouse highlight. */
639 if (mouse_face_overwritten_p)
641 hlinfo->mouse_face_beg_row = hlinfo->mouse_face_beg_col = -1;
642 hlinfo->mouse_face_end_row = hlinfo->mouse_face_end_col = -1;
643 hlinfo->mouse_face_window = Qnil;
646 updated_window = NULL;
650 /* End update of frame F. This function is installed as a hook in
651 update_end. */
653 static void
654 x_update_end (struct frame *f)
656 /* Mouse highlight may be displayed again. */
657 MOUSE_HL_INFO (f)->mouse_face_defer = 0;
659 #ifndef XFlush
660 block_input ();
661 XFlush (FRAME_X_DISPLAY (f));
662 unblock_input ();
663 #endif
667 /* This function is called from various places in xdisp.c whenever a
668 complete update has been performed. The global variable
669 updated_window is not available here. */
671 static void
672 XTframe_up_to_date (struct frame *f)
674 if (FRAME_X_P (f))
675 FRAME_MOUSE_UPDATE (f);
679 /* Draw truncation mark bitmaps, continuation mark bitmaps, overlay
680 arrow bitmaps, or clear the fringes if no bitmaps are required
681 before DESIRED_ROW is made current. The window being updated is
682 found in updated_window. This function It is called from
683 update_window_line only if it is known that there are differences
684 between bitmaps to be drawn between current row and DESIRED_ROW. */
686 static void
687 x_after_update_window_line (struct glyph_row *desired_row)
689 struct window *w = updated_window;
690 struct frame *f;
691 int width, height;
693 eassert (w);
695 if (!desired_row->mode_line_p && !w->pseudo_window_p)
696 desired_row->redraw_fringe_bitmaps_p = 1;
698 /* When a window has disappeared, make sure that no rest of
699 full-width rows stays visible in the internal border. Could
700 check here if updated_window is the leftmost/rightmost window,
701 but I guess it's not worth doing since vertically split windows
702 are almost never used, internal border is rarely set, and the
703 overhead is very small. */
704 if (windows_or_buffers_changed
705 && desired_row->full_width_p
706 && (f = XFRAME (w->frame),
707 width = FRAME_INTERNAL_BORDER_WIDTH (f),
708 width != 0)
709 && (height = desired_row->visible_height,
710 height > 0))
712 int y = WINDOW_TO_FRAME_PIXEL_Y (w, max (0, desired_row->y));
714 block_input ();
715 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
716 0, y, width, height, False);
717 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
718 FRAME_PIXEL_WIDTH (f) - width,
719 y, width, height, False);
720 unblock_input ();
724 static void
725 x_draw_fringe_bitmap (struct window *w, struct glyph_row *row, struct draw_fringe_bitmap_params *p)
727 struct frame *f = XFRAME (WINDOW_FRAME (w));
728 Display *display = FRAME_X_DISPLAY (f);
729 Window window = FRAME_X_WINDOW (f);
730 GC gc = f->output_data.x->normal_gc;
731 struct face *face = p->face;
733 /* Must clip because of partially visible lines. */
734 x_clip_to_row (w, row, -1, gc);
736 if (!p->overlay_p)
738 int bx = p->bx, by = p->by, nx = p->nx, ny = p->ny;
740 /* In case the same realized face is used for fringes and
741 for something displayed in the text (e.g. face `region' on
742 mono-displays, the fill style may have been changed to
743 FillSolid in x_draw_glyph_string_background. */
744 if (face->stipple)
745 XSetFillStyle (display, face->gc, FillOpaqueStippled);
746 else
747 XSetForeground (display, face->gc, face->background);
749 #ifdef USE_TOOLKIT_SCROLL_BARS
750 /* If the fringe is adjacent to the left (right) scroll bar of a
751 leftmost (rightmost, respectively) window, then extend its
752 background to the gap between the fringe and the bar. */
753 if ((WINDOW_LEFTMOST_P (w)
754 && WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w))
755 || (WINDOW_RIGHTMOST_P (w)
756 && WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w)))
758 int sb_width = WINDOW_CONFIG_SCROLL_BAR_WIDTH (w);
760 if (sb_width > 0)
762 int bar_area_x = WINDOW_SCROLL_BAR_AREA_X (w);
763 int bar_area_width = (WINDOW_CONFIG_SCROLL_BAR_COLS (w)
764 * FRAME_COLUMN_WIDTH (f));
766 if (bx < 0)
768 /* Bitmap fills the fringe. */
769 if (bar_area_x + bar_area_width == p->x)
770 bx = bar_area_x + sb_width;
771 else if (p->x + p->wd == bar_area_x)
772 bx = bar_area_x;
773 if (bx >= 0)
775 int header_line_height = WINDOW_HEADER_LINE_HEIGHT (w);
777 nx = bar_area_width - sb_width;
778 by = WINDOW_TO_FRAME_PIXEL_Y (w, max (header_line_height,
779 row->y));
780 ny = row->visible_height;
783 else
785 if (bar_area_x + bar_area_width == bx)
787 bx = bar_area_x + sb_width;
788 nx += bar_area_width - sb_width;
790 else if (bx + nx == bar_area_x)
791 nx += bar_area_width - sb_width;
795 #endif
796 if (bx >= 0 && nx > 0)
797 XFillRectangle (display, window, face->gc, bx, by, nx, ny);
799 if (!face->stipple)
800 XSetForeground (display, face->gc, face->foreground);
803 if (p->which)
805 char *bits;
806 Pixmap pixmap, clipmask = (Pixmap) 0;
807 int depth = DefaultDepthOfScreen (FRAME_X_SCREEN (f));
808 XGCValues gcv;
810 if (p->wd > 8)
811 bits = (char *) (p->bits + p->dh);
812 else
813 bits = (char *) p->bits + p->dh;
815 /* Draw the bitmap. I believe these small pixmaps can be cached
816 by the server. */
817 pixmap = XCreatePixmapFromBitmapData (display, window, bits, p->wd, p->h,
818 (p->cursor_p
819 ? (p->overlay_p ? face->background
820 : f->output_data.x->cursor_pixel)
821 : face->foreground),
822 face->background, depth);
824 if (p->overlay_p)
826 clipmask = XCreatePixmapFromBitmapData (display,
827 FRAME_X_DISPLAY_INFO (f)->root_window,
828 bits, p->wd, p->h,
829 1, 0, 1);
830 gcv.clip_mask = clipmask;
831 gcv.clip_x_origin = p->x;
832 gcv.clip_y_origin = p->y;
833 XChangeGC (display, gc, GCClipMask | GCClipXOrigin | GCClipYOrigin, &gcv);
836 XCopyArea (display, pixmap, window, gc, 0, 0,
837 p->wd, p->h, p->x, p->y);
838 XFreePixmap (display, pixmap);
840 if (p->overlay_p)
842 gcv.clip_mask = (Pixmap) 0;
843 XChangeGC (display, gc, GCClipMask, &gcv);
844 XFreePixmap (display, clipmask);
848 XSetClipMask (display, gc, None);
853 /* This is called when starting Emacs and when restarting after
854 suspend. When starting Emacs, no X window is mapped. And nothing
855 must be done to Emacs's own window if it is suspended (though that
856 rarely happens). */
858 static void
859 XTset_terminal_modes (struct terminal *terminal)
863 /* This is called when exiting or suspending Emacs. Exiting will make
864 the X-windows go away, and suspending requires no action. */
866 static void
867 XTreset_terminal_modes (struct terminal *terminal)
872 /***********************************************************************
873 Glyph display
874 ***********************************************************************/
878 static void x_set_glyph_string_clipping (struct glyph_string *);
879 static void x_set_glyph_string_gc (struct glyph_string *);
880 static void x_draw_glyph_string_background (struct glyph_string *,
881 int);
882 static void x_draw_glyph_string_foreground (struct glyph_string *);
883 static void x_draw_composite_glyph_string_foreground (struct glyph_string *);
884 static void x_draw_glyph_string_box (struct glyph_string *);
885 static void x_draw_glyph_string (struct glyph_string *);
886 static _Noreturn void x_delete_glyphs (struct frame *, int);
887 static void x_compute_glyph_string_overhangs (struct glyph_string *);
888 static void x_set_cursor_gc (struct glyph_string *);
889 static void x_set_mode_line_face_gc (struct glyph_string *);
890 static void x_set_mouse_face_gc (struct glyph_string *);
891 static bool x_alloc_lighter_color (struct frame *, Display *, Colormap,
892 unsigned long *, double, int);
893 static void x_setup_relief_color (struct frame *, struct relief *,
894 double, int, unsigned long);
895 static void x_setup_relief_colors (struct glyph_string *);
896 static void x_draw_image_glyph_string (struct glyph_string *);
897 static void x_draw_image_relief (struct glyph_string *);
898 static void x_draw_image_foreground (struct glyph_string *);
899 static void x_draw_image_foreground_1 (struct glyph_string *, Pixmap);
900 static void x_clear_glyph_string_rect (struct glyph_string *, int,
901 int, int, int);
902 static void x_draw_relief_rect (struct frame *, int, int, int, int,
903 int, int, int, int, int, int,
904 XRectangle *);
905 static void x_draw_box_rect (struct glyph_string *, int, int, int, int,
906 int, int, int, XRectangle *);
907 static void x_scroll_bar_clear (struct frame *);
909 #ifdef GLYPH_DEBUG
910 static void x_check_font (struct frame *, struct font *);
911 #endif
914 /* Set S->gc to a suitable GC for drawing glyph string S in cursor
915 face. */
917 static void
918 x_set_cursor_gc (struct glyph_string *s)
920 if (s->font == FRAME_FONT (s->f)
921 && s->face->background == FRAME_BACKGROUND_PIXEL (s->f)
922 && s->face->foreground == FRAME_FOREGROUND_PIXEL (s->f)
923 && !s->cmp)
924 s->gc = s->f->output_data.x->cursor_gc;
925 else
927 /* Cursor on non-default face: must merge. */
928 XGCValues xgcv;
929 unsigned long mask;
931 xgcv.background = s->f->output_data.x->cursor_pixel;
932 xgcv.foreground = s->face->background;
934 /* If the glyph would be invisible, try a different foreground. */
935 if (xgcv.foreground == xgcv.background)
936 xgcv.foreground = s->face->foreground;
937 if (xgcv.foreground == xgcv.background)
938 xgcv.foreground = s->f->output_data.x->cursor_foreground_pixel;
939 if (xgcv.foreground == xgcv.background)
940 xgcv.foreground = s->face->foreground;
942 /* Make sure the cursor is distinct from text in this face. */
943 if (xgcv.background == s->face->background
944 && xgcv.foreground == s->face->foreground)
946 xgcv.background = s->face->foreground;
947 xgcv.foreground = s->face->background;
950 IF_DEBUG (x_check_font (s->f, s->font));
951 xgcv.graphics_exposures = False;
952 mask = GCForeground | GCBackground | GCGraphicsExposures;
954 if (FRAME_X_DISPLAY_INFO (s->f)->scratch_cursor_gc)
955 XChangeGC (s->display, FRAME_X_DISPLAY_INFO (s->f)->scratch_cursor_gc,
956 mask, &xgcv);
957 else
958 FRAME_X_DISPLAY_INFO (s->f)->scratch_cursor_gc
959 = XCreateGC (s->display, s->window, mask, &xgcv);
961 s->gc = FRAME_X_DISPLAY_INFO (s->f)->scratch_cursor_gc;
966 /* Set up S->gc of glyph string S for drawing text in mouse face. */
968 static void
969 x_set_mouse_face_gc (struct glyph_string *s)
971 int face_id;
972 struct face *face;
974 /* What face has to be used last for the mouse face? */
975 face_id = MOUSE_HL_INFO (s->f)->mouse_face_face_id;
976 face = FACE_FROM_ID (s->f, face_id);
977 if (face == NULL)
978 face = FACE_FROM_ID (s->f, MOUSE_FACE_ID);
980 if (s->first_glyph->type == CHAR_GLYPH)
981 face_id = FACE_FOR_CHAR (s->f, face, s->first_glyph->u.ch, -1, Qnil);
982 else
983 face_id = FACE_FOR_CHAR (s->f, face, 0, -1, Qnil);
984 s->face = FACE_FROM_ID (s->f, face_id);
985 PREPARE_FACE_FOR_DISPLAY (s->f, s->face);
987 if (s->font == s->face->font)
988 s->gc = s->face->gc;
989 else
991 /* Otherwise construct scratch_cursor_gc with values from FACE
992 except for FONT. */
993 XGCValues xgcv;
994 unsigned long mask;
996 xgcv.background = s->face->background;
997 xgcv.foreground = s->face->foreground;
998 xgcv.graphics_exposures = False;
999 mask = GCForeground | GCBackground | GCGraphicsExposures;
1001 if (FRAME_X_DISPLAY_INFO (s->f)->scratch_cursor_gc)
1002 XChangeGC (s->display, FRAME_X_DISPLAY_INFO (s->f)->scratch_cursor_gc,
1003 mask, &xgcv);
1004 else
1005 FRAME_X_DISPLAY_INFO (s->f)->scratch_cursor_gc
1006 = XCreateGC (s->display, s->window, mask, &xgcv);
1008 s->gc = FRAME_X_DISPLAY_INFO (s->f)->scratch_cursor_gc;
1011 eassert (s->gc != 0);
1015 /* Set S->gc of glyph string S to a GC suitable for drawing a mode line.
1016 Faces to use in the mode line have already been computed when the
1017 matrix was built, so there isn't much to do, here. */
1019 static void
1020 x_set_mode_line_face_gc (struct glyph_string *s)
1022 s->gc = s->face->gc;
1026 /* Set S->gc of glyph string S for drawing that glyph string. Set
1027 S->stippled_p to a non-zero value if the face of S has a stipple
1028 pattern. */
1030 static void
1031 x_set_glyph_string_gc (struct glyph_string *s)
1033 PREPARE_FACE_FOR_DISPLAY (s->f, s->face);
1035 if (s->hl == DRAW_NORMAL_TEXT)
1037 s->gc = s->face->gc;
1038 s->stippled_p = s->face->stipple != 0;
1040 else if (s->hl == DRAW_INVERSE_VIDEO)
1042 x_set_mode_line_face_gc (s);
1043 s->stippled_p = s->face->stipple != 0;
1045 else if (s->hl == DRAW_CURSOR)
1047 x_set_cursor_gc (s);
1048 s->stippled_p = 0;
1050 else if (s->hl == DRAW_MOUSE_FACE)
1052 x_set_mouse_face_gc (s);
1053 s->stippled_p = s->face->stipple != 0;
1055 else if (s->hl == DRAW_IMAGE_RAISED
1056 || s->hl == DRAW_IMAGE_SUNKEN)
1058 s->gc = s->face->gc;
1059 s->stippled_p = s->face->stipple != 0;
1061 else
1063 s->gc = s->face->gc;
1064 s->stippled_p = s->face->stipple != 0;
1067 /* GC must have been set. */
1068 eassert (s->gc != 0);
1072 /* Set clipping for output of glyph string S. S may be part of a mode
1073 line or menu if we don't have X toolkit support. */
1075 static void
1076 x_set_glyph_string_clipping (struct glyph_string *s)
1078 XRectangle *r = s->clip;
1079 int n = get_glyph_string_clip_rects (s, r, 2);
1081 if (n > 0)
1082 XSetClipRectangles (s->display, s->gc, 0, 0, r, n, Unsorted);
1083 s->num_clips = n;
1087 /* Set SRC's clipping for output of glyph string DST. This is called
1088 when we are drawing DST's left_overhang or right_overhang only in
1089 the area of SRC. */
1091 static void
1092 x_set_glyph_string_clipping_exactly (struct glyph_string *src, struct glyph_string *dst)
1094 XRectangle r;
1096 r.x = src->x;
1097 r.width = src->width;
1098 r.y = src->y;
1099 r.height = src->height;
1100 dst->clip[0] = r;
1101 dst->num_clips = 1;
1102 XSetClipRectangles (dst->display, dst->gc, 0, 0, &r, 1, Unsorted);
1106 /* RIF:
1107 Compute left and right overhang of glyph string S. */
1109 static void
1110 x_compute_glyph_string_overhangs (struct glyph_string *s)
1112 if (s->cmp == NULL
1113 && (s->first_glyph->type == CHAR_GLYPH
1114 || s->first_glyph->type == COMPOSITE_GLYPH))
1116 struct font_metrics metrics;
1118 if (s->first_glyph->type == CHAR_GLYPH)
1120 unsigned *code = alloca (sizeof (unsigned) * s->nchars);
1121 struct font *font = s->font;
1122 int i;
1124 for (i = 0; i < s->nchars; i++)
1125 code[i] = (s->char2b[i].byte1 << 8) | s->char2b[i].byte2;
1126 font->driver->text_extents (font, code, s->nchars, &metrics);
1128 else
1130 Lisp_Object gstring = composition_gstring_from_id (s->cmp_id);
1132 composition_gstring_width (gstring, s->cmp_from, s->cmp_to, &metrics);
1134 s->right_overhang = (metrics.rbearing > metrics.width
1135 ? metrics.rbearing - metrics.width : 0);
1136 s->left_overhang = metrics.lbearing < 0 ? - metrics.lbearing : 0;
1138 else if (s->cmp)
1140 s->right_overhang = s->cmp->rbearing - s->cmp->pixel_width;
1141 s->left_overhang = - s->cmp->lbearing;
1146 /* Fill rectangle X, Y, W, H with background color of glyph string S. */
1148 static void
1149 x_clear_glyph_string_rect (struct glyph_string *s, int x, int y, int w, int h)
1151 XGCValues xgcv;
1152 XGetGCValues (s->display, s->gc, GCForeground | GCBackground, &xgcv);
1153 XSetForeground (s->display, s->gc, xgcv.background);
1154 XFillRectangle (s->display, s->window, s->gc, x, y, w, h);
1155 XSetForeground (s->display, s->gc, xgcv.foreground);
1159 /* Draw the background of glyph_string S. If S->background_filled_p
1160 is non-zero don't draw it. FORCE_P non-zero means draw the
1161 background even if it wouldn't be drawn normally. This is used
1162 when a string preceding S draws into the background of S, or S
1163 contains the first component of a composition. */
1165 static void
1166 x_draw_glyph_string_background (struct glyph_string *s, int force_p)
1168 /* Nothing to do if background has already been drawn or if it
1169 shouldn't be drawn in the first place. */
1170 if (!s->background_filled_p)
1172 int box_line_width = max (s->face->box_line_width, 0);
1174 if (s->stippled_p)
1176 /* Fill background with a stipple pattern. */
1177 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
1178 XFillRectangle (s->display, s->window, s->gc, s->x,
1179 s->y + box_line_width,
1180 s->background_width,
1181 s->height - 2 * box_line_width);
1182 XSetFillStyle (s->display, s->gc, FillSolid);
1183 s->background_filled_p = 1;
1185 else if (FONT_HEIGHT (s->font) < s->height - 2 * box_line_width
1186 || s->font_not_found_p
1187 || s->extends_to_end_of_line_p
1188 || force_p)
1190 x_clear_glyph_string_rect (s, s->x, s->y + box_line_width,
1191 s->background_width,
1192 s->height - 2 * box_line_width);
1193 s->background_filled_p = 1;
1199 /* Draw the foreground of glyph string S. */
1201 static void
1202 x_draw_glyph_string_foreground (struct glyph_string *s)
1204 int i, x;
1206 /* If first glyph of S has a left box line, start drawing the text
1207 of S to the right of that box line. */
1208 if (s->face->box != FACE_NO_BOX
1209 && s->first_glyph->left_box_line_p)
1210 x = s->x + eabs (s->face->box_line_width);
1211 else
1212 x = s->x;
1214 /* Draw characters of S as rectangles if S's font could not be
1215 loaded. */
1216 if (s->font_not_found_p)
1218 for (i = 0; i < s->nchars; ++i)
1220 struct glyph *g = s->first_glyph + i;
1221 XDrawRectangle (s->display, s->window,
1222 s->gc, x, s->y, g->pixel_width - 1,
1223 s->height - 1);
1224 x += g->pixel_width;
1227 else
1229 struct font *font = s->font;
1230 int boff = font->baseline_offset;
1231 int y;
1233 if (font->vertical_centering)
1234 boff = VCENTER_BASELINE_OFFSET (font, s->f) - boff;
1236 y = s->ybase - boff;
1237 if (s->for_overlaps
1238 || (s->background_filled_p && s->hl != DRAW_CURSOR))
1239 font->driver->draw (s, 0, s->nchars, x, y, 0);
1240 else
1241 font->driver->draw (s, 0, s->nchars, x, y, 1);
1242 if (s->face->overstrike)
1243 font->driver->draw (s, 0, s->nchars, x + 1, y, 0);
1247 /* Draw the foreground of composite glyph string S. */
1249 static void
1250 x_draw_composite_glyph_string_foreground (struct glyph_string *s)
1252 int i, j, x;
1253 struct font *font = s->font;
1255 /* If first glyph of S has a left box line, start drawing the text
1256 of S to the right of that box line. */
1257 if (s->face && s->face->box != FACE_NO_BOX
1258 && s->first_glyph->left_box_line_p)
1259 x = s->x + eabs (s->face->box_line_width);
1260 else
1261 x = s->x;
1263 /* S is a glyph string for a composition. S->cmp_from is the index
1264 of the first character drawn for glyphs of this composition.
1265 S->cmp_from == 0 means we are drawing the very first character of
1266 this composition. */
1268 /* Draw a rectangle for the composition if the font for the very
1269 first character of the composition could not be loaded. */
1270 if (s->font_not_found_p)
1272 if (s->cmp_from == 0)
1273 XDrawRectangle (s->display, s->window, s->gc, x, s->y,
1274 s->width - 1, s->height - 1);
1276 else if (! s->first_glyph->u.cmp.automatic)
1278 int y = s->ybase;
1280 for (i = 0, j = s->cmp_from; i < s->nchars; i++, j++)
1281 /* TAB in a composition means display glyphs with padding
1282 space on the left or right. */
1283 if (COMPOSITION_GLYPH (s->cmp, j) != '\t')
1285 int xx = x + s->cmp->offsets[j * 2];
1286 int yy = y - s->cmp->offsets[j * 2 + 1];
1288 font->driver->draw (s, j, j + 1, xx, yy, 0);
1289 if (s->face->overstrike)
1290 font->driver->draw (s, j, j + 1, xx + 1, yy, 0);
1293 else
1295 Lisp_Object gstring = composition_gstring_from_id (s->cmp_id);
1296 Lisp_Object glyph;
1297 int y = s->ybase;
1298 int width = 0;
1300 for (i = j = s->cmp_from; i < s->cmp_to; i++)
1302 glyph = LGSTRING_GLYPH (gstring, i);
1303 if (NILP (LGLYPH_ADJUSTMENT (glyph)))
1304 width += LGLYPH_WIDTH (glyph);
1305 else
1307 int xoff, yoff, wadjust;
1309 if (j < i)
1311 font->driver->draw (s, j, i, x, y, 0);
1312 if (s->face->overstrike)
1313 font->driver->draw (s, j, i, x + 1, y, 0);
1314 x += width;
1316 xoff = LGLYPH_XOFF (glyph);
1317 yoff = LGLYPH_YOFF (glyph);
1318 wadjust = LGLYPH_WADJUST (glyph);
1319 font->driver->draw (s, i, i + 1, x + xoff, y + yoff, 0);
1320 if (s->face->overstrike)
1321 font->driver->draw (s, i, i + 1, x + xoff + 1, y + yoff, 0);
1322 x += wadjust;
1323 j = i + 1;
1324 width = 0;
1327 if (j < i)
1329 font->driver->draw (s, j, i, x, y, 0);
1330 if (s->face->overstrike)
1331 font->driver->draw (s, j, i, x + 1, y, 0);
1337 /* Draw the foreground of glyph string S for glyphless characters. */
1339 static void
1340 x_draw_glyphless_glyph_string_foreground (struct glyph_string *s)
1342 struct glyph *glyph = s->first_glyph;
1343 XChar2b char2b[8];
1344 int x, i, j;
1346 /* If first glyph of S has a left box line, start drawing the text
1347 of S to the right of that box line. */
1348 if (s->face && s->face->box != FACE_NO_BOX
1349 && s->first_glyph->left_box_line_p)
1350 x = s->x + eabs (s->face->box_line_width);
1351 else
1352 x = s->x;
1354 s->char2b = char2b;
1356 for (i = 0; i < s->nchars; i++, glyph++)
1358 char buf[7], *str = NULL;
1359 int len = glyph->u.glyphless.len;
1361 if (glyph->u.glyphless.method == GLYPHLESS_DISPLAY_ACRONYM)
1363 if (len > 0
1364 && CHAR_TABLE_P (Vglyphless_char_display)
1365 && (CHAR_TABLE_EXTRA_SLOTS (XCHAR_TABLE (Vglyphless_char_display))
1366 >= 1))
1368 Lisp_Object acronym
1369 = (! glyph->u.glyphless.for_no_font
1370 ? CHAR_TABLE_REF (Vglyphless_char_display,
1371 glyph->u.glyphless.ch)
1372 : XCHAR_TABLE (Vglyphless_char_display)->extras[0]);
1373 if (STRINGP (acronym))
1374 str = SSDATA (acronym);
1377 else if (glyph->u.glyphless.method == GLYPHLESS_DISPLAY_HEX_CODE)
1379 sprintf ((char *) buf, "%0*X",
1380 glyph->u.glyphless.ch < 0x10000 ? 4 : 6,
1381 glyph->u.glyphless.ch);
1382 str = buf;
1385 if (str)
1387 int upper_len = (len + 1) / 2;
1388 unsigned code;
1390 /* It is assured that all LEN characters in STR is ASCII. */
1391 for (j = 0; j < len; j++)
1393 code = s->font->driver->encode_char (s->font, str[j]);
1394 STORE_XCHAR2B (char2b + j, code >> 8, code & 0xFF);
1396 s->font->driver->draw (s, 0, upper_len,
1397 x + glyph->slice.glyphless.upper_xoff,
1398 s->ybase + glyph->slice.glyphless.upper_yoff,
1400 s->font->driver->draw (s, upper_len, len,
1401 x + glyph->slice.glyphless.lower_xoff,
1402 s->ybase + glyph->slice.glyphless.lower_yoff,
1405 if (glyph->u.glyphless.method != GLYPHLESS_DISPLAY_THIN_SPACE)
1406 XDrawRectangle (s->display, s->window, s->gc,
1407 x, s->ybase - glyph->ascent,
1408 glyph->pixel_width - 1,
1409 glyph->ascent + glyph->descent - 1);
1410 x += glyph->pixel_width;
1414 #ifdef USE_X_TOOLKIT
1416 static Boolean cvt_string_to_pixel (Display *, XrmValue *, Cardinal *,
1417 XrmValue *, XrmValue *, XtPointer *);
1418 static void cvt_pixel_dtor (XtAppContext, XrmValue *, XtPointer,
1419 XrmValue *, Cardinal *);
1421 #ifdef USE_LUCID
1423 /* Return the frame on which widget WIDGET is used.. Abort if frame
1424 cannot be determined. */
1426 static struct frame *
1427 x_frame_of_widget (Widget widget)
1429 struct x_display_info *dpyinfo;
1430 Lisp_Object tail, frame;
1431 struct frame *f;
1433 dpyinfo = x_display_info_for_display (XtDisplay (widget));
1435 /* Find the top-level shell of the widget. Note that this function
1436 can be called when the widget is not yet realized, so XtWindow
1437 (widget) == 0. That's the reason we can't simply use
1438 x_any_window_to_frame. */
1439 while (!XtIsTopLevelShell (widget))
1440 widget = XtParent (widget);
1442 /* Look for a frame with that top-level widget. Allocate the color
1443 on that frame to get the right gamma correction value. */
1444 FOR_EACH_FRAME (tail, frame)
1446 f = XFRAME (frame);
1447 if (FRAME_X_P (f)
1448 && f->output_data.nothing != 1
1449 && FRAME_X_DISPLAY_INFO (f) == dpyinfo
1450 && f->output_data.x->widget == widget)
1451 return f;
1453 emacs_abort ();
1456 /* Allocate a color which is lighter or darker than *PIXEL by FACTOR
1457 or DELTA. Try a color with RGB values multiplied by FACTOR first.
1458 If this produces the same color as PIXEL, try a color where all RGB
1459 values have DELTA added. Return the allocated color in *PIXEL.
1460 DISPLAY is the X display, CMAP is the colormap to operate on.
1461 Value is true if successful. */
1463 bool
1464 x_alloc_lighter_color_for_widget (Widget widget, Display *display, Colormap cmap,
1465 unsigned long *pixel, double factor, int delta)
1467 struct frame *f = x_frame_of_widget (widget);
1468 return x_alloc_lighter_color (f, display, cmap, pixel, factor, delta);
1471 #endif /* USE_LUCID */
1474 /* Structure specifying which arguments should be passed by Xt to
1475 cvt_string_to_pixel. We want the widget's screen and colormap. */
1477 static XtConvertArgRec cvt_string_to_pixel_args[] =
1479 {XtWidgetBaseOffset, (XtPointer) XtOffset (Widget, core.screen),
1480 sizeof (Screen *)},
1481 {XtWidgetBaseOffset, (XtPointer) XtOffset (Widget, core.colormap),
1482 sizeof (Colormap)}
1486 /* The address of this variable is returned by
1487 cvt_string_to_pixel. */
1489 static Pixel cvt_string_to_pixel_value;
1492 /* Convert a color name to a pixel color.
1494 DPY is the display we are working on.
1496 ARGS is an array of *NARGS XrmValue structures holding additional
1497 information about the widget for which the conversion takes place.
1498 The contents of this array are determined by the specification
1499 in cvt_string_to_pixel_args.
1501 FROM is a pointer to an XrmValue which points to the color name to
1502 convert. TO is an XrmValue in which to return the pixel color.
1504 CLOSURE_RET is a pointer to user-data, in which we record if
1505 we allocated the color or not.
1507 Value is True if successful, False otherwise. */
1509 static Boolean
1510 cvt_string_to_pixel (Display *dpy, XrmValue *args, Cardinal *nargs,
1511 XrmValue *from, XrmValue *to,
1512 XtPointer *closure_ret)
1514 Screen *screen;
1515 Colormap cmap;
1516 Pixel pixel;
1517 String color_name;
1518 XColor color;
1520 if (*nargs != 2)
1522 XtAppWarningMsg (XtDisplayToApplicationContext (dpy),
1523 "wrongParameters", "cvt_string_to_pixel",
1524 "XtToolkitError",
1525 "Screen and colormap args required", NULL, NULL);
1526 return False;
1529 screen = *(Screen **) args[0].addr;
1530 cmap = *(Colormap *) args[1].addr;
1531 color_name = (String) from->addr;
1533 if (strcmp (color_name, XtDefaultBackground) == 0)
1535 *closure_ret = (XtPointer) False;
1536 pixel = WhitePixelOfScreen (screen);
1538 else if (strcmp (color_name, XtDefaultForeground) == 0)
1540 *closure_ret = (XtPointer) False;
1541 pixel = BlackPixelOfScreen (screen);
1543 else if (XParseColor (dpy, cmap, color_name, &color)
1544 && x_alloc_nearest_color_1 (dpy, cmap, &color))
1546 pixel = color.pixel;
1547 *closure_ret = (XtPointer) True;
1549 else
1551 String params[1];
1552 Cardinal nparams = 1;
1554 params[0] = color_name;
1555 XtAppWarningMsg (XtDisplayToApplicationContext (dpy),
1556 "badValue", "cvt_string_to_pixel",
1557 "XtToolkitError", "Invalid color `%s'",
1558 params, &nparams);
1559 return False;
1562 if (to->addr != NULL)
1564 if (to->size < sizeof (Pixel))
1566 to->size = sizeof (Pixel);
1567 return False;
1570 *(Pixel *) to->addr = pixel;
1572 else
1574 cvt_string_to_pixel_value = pixel;
1575 to->addr = (XtPointer) &cvt_string_to_pixel_value;
1578 to->size = sizeof (Pixel);
1579 return True;
1583 /* Free a pixel color which was previously allocated via
1584 cvt_string_to_pixel. This is registered as the destructor
1585 for this type of resource via XtSetTypeConverter.
1587 APP is the application context in which we work.
1589 TO is a pointer to an XrmValue holding the color to free.
1590 CLOSURE is the value we stored in CLOSURE_RET for this color
1591 in cvt_string_to_pixel.
1593 ARGS and NARGS are like for cvt_string_to_pixel. */
1595 static void
1596 cvt_pixel_dtor (XtAppContext app, XrmValuePtr to, XtPointer closure, XrmValuePtr args,
1597 Cardinal *nargs)
1599 if (*nargs != 2)
1601 XtAppWarningMsg (app, "wrongParameters", "cvt_pixel_dtor",
1602 "XtToolkitError",
1603 "Screen and colormap arguments required",
1604 NULL, NULL);
1606 else if (closure != NULL)
1608 /* We did allocate the pixel, so free it. */
1609 Screen *screen = *(Screen **) args[0].addr;
1610 Colormap cmap = *(Colormap *) args[1].addr;
1611 x_free_dpy_colors (DisplayOfScreen (screen), screen, cmap,
1612 (Pixel *) to->addr, 1);
1617 #endif /* USE_X_TOOLKIT */
1620 /* Value is an array of XColor structures for the contents of the
1621 color map of display DPY. Set *NCELLS to the size of the array.
1622 Note that this probably shouldn't be called for large color maps,
1623 say a 24-bit TrueColor map. */
1625 static const XColor *
1626 x_color_cells (Display *dpy, int *ncells)
1628 struct x_display_info *dpyinfo = x_display_info_for_display (dpy);
1630 if (dpyinfo->color_cells == NULL)
1632 Screen *screen = dpyinfo->screen;
1633 int ncolor_cells = XDisplayCells (dpy, XScreenNumberOfScreen (screen));
1634 int i;
1636 dpyinfo->color_cells = xnmalloc (ncolor_cells,
1637 sizeof *dpyinfo->color_cells);
1638 dpyinfo->ncolor_cells = ncolor_cells;
1640 for (i = 0; i < ncolor_cells; ++i)
1641 dpyinfo->color_cells[i].pixel = i;
1643 XQueryColors (dpy, dpyinfo->cmap,
1644 dpyinfo->color_cells, ncolor_cells);
1647 *ncells = dpyinfo->ncolor_cells;
1648 return dpyinfo->color_cells;
1652 /* On frame F, translate pixel colors to RGB values for the NCOLORS
1653 colors in COLORS. Use cached information, if available. */
1655 void
1656 x_query_colors (struct frame *f, XColor *colors, int ncolors)
1658 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
1660 if (dpyinfo->color_cells)
1662 int i;
1663 for (i = 0; i < ncolors; ++i)
1665 unsigned long pixel = colors[i].pixel;
1666 eassert (pixel < dpyinfo->ncolor_cells);
1667 eassert (dpyinfo->color_cells[pixel].pixel == pixel);
1668 colors[i] = dpyinfo->color_cells[pixel];
1671 else
1672 XQueryColors (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f), colors, ncolors);
1676 /* On frame F, translate pixel color to RGB values for the color in
1677 COLOR. Use cached information, if available. */
1679 void
1680 x_query_color (struct frame *f, XColor *color)
1682 x_query_colors (f, color, 1);
1686 /* Allocate the color COLOR->pixel on DISPLAY, colormap CMAP. If an
1687 exact match can't be allocated, try the nearest color available.
1688 Value is true if successful. Set *COLOR to the color
1689 allocated. */
1691 static bool
1692 x_alloc_nearest_color_1 (Display *dpy, Colormap cmap, XColor *color)
1694 bool rc;
1696 rc = XAllocColor (dpy, cmap, color) != 0;
1697 if (rc == 0)
1699 /* If we got to this point, the colormap is full, so we're going
1700 to try to get the next closest color. The algorithm used is
1701 a least-squares matching, which is what X uses for closest
1702 color matching with StaticColor visuals. */
1703 int nearest, i;
1704 int max_color_delta = 255;
1705 int max_delta = 3 * max_color_delta;
1706 int nearest_delta = max_delta + 1;
1707 int ncells;
1708 const XColor *cells = x_color_cells (dpy, &ncells);
1710 for (nearest = i = 0; i < ncells; ++i)
1712 int dred = (color->red >> 8) - (cells[i].red >> 8);
1713 int dgreen = (color->green >> 8) - (cells[i].green >> 8);
1714 int dblue = (color->blue >> 8) - (cells[i].blue >> 8);
1715 int delta = dred * dred + dgreen * dgreen + dblue * dblue;
1717 if (delta < nearest_delta)
1719 nearest = i;
1720 nearest_delta = delta;
1724 color->red = cells[nearest].red;
1725 color->green = cells[nearest].green;
1726 color->blue = cells[nearest].blue;
1727 rc = XAllocColor (dpy, cmap, color) != 0;
1729 else
1731 /* If allocation succeeded, and the allocated pixel color is not
1732 equal to a cached pixel color recorded earlier, there was a
1733 change in the colormap, so clear the color cache. */
1734 struct x_display_info *dpyinfo = x_display_info_for_display (dpy);
1735 XColor *cached_color;
1737 if (dpyinfo->color_cells
1738 && (cached_color = &dpyinfo->color_cells[color->pixel],
1739 (cached_color->red != color->red
1740 || cached_color->blue != color->blue
1741 || cached_color->green != color->green)))
1743 xfree (dpyinfo->color_cells);
1744 dpyinfo->color_cells = NULL;
1745 dpyinfo->ncolor_cells = 0;
1749 #ifdef DEBUG_X_COLORS
1750 if (rc)
1751 register_color (color->pixel);
1752 #endif /* DEBUG_X_COLORS */
1754 return rc;
1758 /* Allocate the color COLOR->pixel on frame F, colormap CMAP. If an
1759 exact match can't be allocated, try the nearest color available.
1760 Value is true if successful. Set *COLOR to the color
1761 allocated. */
1763 bool
1764 x_alloc_nearest_color (struct frame *f, Colormap cmap, XColor *color)
1766 gamma_correct (f, color);
1767 return x_alloc_nearest_color_1 (FRAME_X_DISPLAY (f), cmap, color);
1771 /* Allocate color PIXEL on frame F. PIXEL must already be allocated.
1772 It's necessary to do this instead of just using PIXEL directly to
1773 get color reference counts right. */
1775 unsigned long
1776 x_copy_color (struct frame *f, long unsigned int pixel)
1778 XColor color;
1780 color.pixel = pixel;
1781 block_input ();
1782 x_query_color (f, &color);
1783 XAllocColor (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f), &color);
1784 unblock_input ();
1785 #ifdef DEBUG_X_COLORS
1786 register_color (pixel);
1787 #endif
1788 return color.pixel;
1792 /* Brightness beyond which a color won't have its highlight brightness
1793 boosted.
1795 Nominally, highlight colors for `3d' faces are calculated by
1796 brightening an object's color by a constant scale factor, but this
1797 doesn't yield good results for dark colors, so for colors who's
1798 brightness is less than this value (on a scale of 0-65535) have an
1799 use an additional additive factor.
1801 The value here is set so that the default menu-bar/mode-line color
1802 (grey75) will not have its highlights changed at all. */
1803 #define HIGHLIGHT_COLOR_DARK_BOOST_LIMIT 48000
1806 /* Allocate a color which is lighter or darker than *PIXEL by FACTOR
1807 or DELTA. Try a color with RGB values multiplied by FACTOR first.
1808 If this produces the same color as PIXEL, try a color where all RGB
1809 values have DELTA added. Return the allocated color in *PIXEL.
1810 DISPLAY is the X display, CMAP is the colormap to operate on.
1811 Value is non-zero if successful. */
1813 static bool
1814 x_alloc_lighter_color (struct frame *f, Display *display, Colormap cmap, long unsigned int *pixel, double factor, int delta)
1816 XColor color, new;
1817 long bright;
1818 bool success_p;
1820 /* Get RGB color values. */
1821 color.pixel = *pixel;
1822 x_query_color (f, &color);
1824 /* Change RGB values by specified FACTOR. Avoid overflow! */
1825 eassert (factor >= 0);
1826 new.red = min (0xffff, factor * color.red);
1827 new.green = min (0xffff, factor * color.green);
1828 new.blue = min (0xffff, factor * color.blue);
1830 /* Calculate brightness of COLOR. */
1831 bright = (2 * color.red + 3 * color.green + color.blue) / 6;
1833 /* We only boost colors that are darker than
1834 HIGHLIGHT_COLOR_DARK_BOOST_LIMIT. */
1835 if (bright < HIGHLIGHT_COLOR_DARK_BOOST_LIMIT)
1836 /* Make an additive adjustment to NEW, because it's dark enough so
1837 that scaling by FACTOR alone isn't enough. */
1839 /* How far below the limit this color is (0 - 1, 1 being darker). */
1840 double dimness = 1 - (double)bright / HIGHLIGHT_COLOR_DARK_BOOST_LIMIT;
1841 /* The additive adjustment. */
1842 int min_delta = delta * dimness * factor / 2;
1844 if (factor < 1)
1846 new.red = max (0, new.red - min_delta);
1847 new.green = max (0, new.green - min_delta);
1848 new.blue = max (0, new.blue - min_delta);
1850 else
1852 new.red = min (0xffff, min_delta + new.red);
1853 new.green = min (0xffff, min_delta + new.green);
1854 new.blue = min (0xffff, min_delta + new.blue);
1858 /* Try to allocate the color. */
1859 success_p = x_alloc_nearest_color (f, cmap, &new);
1860 if (success_p)
1862 if (new.pixel == *pixel)
1864 /* If we end up with the same color as before, try adding
1865 delta to the RGB values. */
1866 x_free_colors (f, &new.pixel, 1);
1868 new.red = min (0xffff, delta + color.red);
1869 new.green = min (0xffff, delta + color.green);
1870 new.blue = min (0xffff, delta + color.blue);
1871 success_p = x_alloc_nearest_color (f, cmap, &new);
1873 else
1874 success_p = 1;
1875 *pixel = new.pixel;
1878 return success_p;
1882 /* Set up the foreground color for drawing relief lines of glyph
1883 string S. RELIEF is a pointer to a struct relief containing the GC
1884 with which lines will be drawn. Use a color that is FACTOR or
1885 DELTA lighter or darker than the relief's background which is found
1886 in S->f->output_data.x->relief_background. If such a color cannot
1887 be allocated, use DEFAULT_PIXEL, instead. */
1889 static void
1890 x_setup_relief_color (struct frame *f, struct relief *relief, double factor, int delta, long unsigned int default_pixel)
1892 XGCValues xgcv;
1893 struct x_output *di = f->output_data.x;
1894 unsigned long mask = GCForeground | GCLineWidth | GCGraphicsExposures;
1895 unsigned long pixel;
1896 unsigned long background = di->relief_background;
1897 Colormap cmap = FRAME_X_COLORMAP (f);
1898 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
1899 Display *dpy = FRAME_X_DISPLAY (f);
1901 xgcv.graphics_exposures = False;
1902 xgcv.line_width = 1;
1904 /* Free previously allocated color. The color cell will be reused
1905 when it has been freed as many times as it was allocated, so this
1906 doesn't affect faces using the same colors. */
1907 if (relief->gc
1908 && relief->allocated_p)
1910 x_free_colors (f, &relief->pixel, 1);
1911 relief->allocated_p = 0;
1914 /* Allocate new color. */
1915 xgcv.foreground = default_pixel;
1916 pixel = background;
1917 if (dpyinfo->n_planes != 1
1918 && x_alloc_lighter_color (f, dpy, cmap, &pixel, factor, delta))
1920 relief->allocated_p = 1;
1921 xgcv.foreground = relief->pixel = pixel;
1924 if (relief->gc == 0)
1926 xgcv.stipple = dpyinfo->gray;
1927 mask |= GCStipple;
1928 relief->gc = XCreateGC (dpy, FRAME_X_WINDOW (f), mask, &xgcv);
1930 else
1931 XChangeGC (dpy, relief->gc, mask, &xgcv);
1935 /* Set up colors for the relief lines around glyph string S. */
1937 static void
1938 x_setup_relief_colors (struct glyph_string *s)
1940 struct x_output *di = s->f->output_data.x;
1941 unsigned long color;
1943 if (s->face->use_box_color_for_shadows_p)
1944 color = s->face->box_color;
1945 else if (s->first_glyph->type == IMAGE_GLYPH
1946 && s->img->pixmap
1947 && !IMAGE_BACKGROUND_TRANSPARENT (s->img, s->f, 0))
1948 color = IMAGE_BACKGROUND (s->img, s->f, 0);
1949 else
1951 XGCValues xgcv;
1953 /* Get the background color of the face. */
1954 XGetGCValues (s->display, s->gc, GCBackground, &xgcv);
1955 color = xgcv.background;
1958 if (di->white_relief.gc == 0
1959 || color != di->relief_background)
1961 di->relief_background = color;
1962 x_setup_relief_color (s->f, &di->white_relief, 1.2, 0x8000,
1963 WHITE_PIX_DEFAULT (s->f));
1964 x_setup_relief_color (s->f, &di->black_relief, 0.6, 0x4000,
1965 BLACK_PIX_DEFAULT (s->f));
1970 /* Draw a relief on frame F inside the rectangle given by LEFT_X,
1971 TOP_Y, RIGHT_X, and BOTTOM_Y. WIDTH is the thickness of the relief
1972 to draw, it must be >= 0. RAISED_P non-zero means draw a raised
1973 relief. LEFT_P non-zero means draw a relief on the left side of
1974 the rectangle. RIGHT_P non-zero means draw a relief on the right
1975 side of the rectangle. CLIP_RECT is the clipping rectangle to use
1976 when drawing. */
1978 static void
1979 x_draw_relief_rect (struct frame *f,
1980 int left_x, int top_y, int right_x, int bottom_y, int width,
1981 int raised_p, int top_p, int bot_p, int left_p, int right_p,
1982 XRectangle *clip_rect)
1984 Display *dpy = FRAME_X_DISPLAY (f);
1985 Window window = FRAME_X_WINDOW (f);
1986 int i;
1987 GC gc;
1989 if (raised_p)
1990 gc = f->output_data.x->white_relief.gc;
1991 else
1992 gc = f->output_data.x->black_relief.gc;
1993 XSetClipRectangles (dpy, gc, 0, 0, clip_rect, 1, Unsorted);
1995 /* This code is more complicated than it has to be, because of two
1996 minor hacks to make the boxes look nicer: (i) if width > 1, draw
1997 the outermost line using the black relief. (ii) Omit the four
1998 corner pixels. */
2000 /* Top. */
2001 if (top_p)
2003 if (width == 1)
2004 XDrawLine (dpy, window, gc,
2005 left_x + (left_p ? 1 : 0), top_y,
2006 right_x + (right_p ? 0 : 1), top_y);
2008 for (i = 1; i < width; ++i)
2009 XDrawLine (dpy, window, gc,
2010 left_x + i * left_p, top_y + i,
2011 right_x + 1 - i * right_p, top_y + i);
2014 /* Left. */
2015 if (left_p)
2017 if (width == 1)
2018 XDrawLine (dpy, window, gc, left_x, top_y + 1, left_x, bottom_y);
2020 XClearArea (dpy, window, left_x, top_y, 1, 1, False);
2021 XClearArea (dpy, window, left_x, bottom_y, 1, 1, False);
2023 for (i = (width > 1 ? 1 : 0); i < width; ++i)
2024 XDrawLine (dpy, window, gc,
2025 left_x + i, top_y + (i + 1) * top_p,
2026 left_x + i, bottom_y + 1 - (i + 1) * bot_p);
2029 XSetClipMask (dpy, gc, None);
2030 if (raised_p)
2031 gc = f->output_data.x->black_relief.gc;
2032 else
2033 gc = f->output_data.x->white_relief.gc;
2034 XSetClipRectangles (dpy, gc, 0, 0, clip_rect, 1, Unsorted);
2036 if (width > 1)
2038 /* Outermost top line. */
2039 if (top_p)
2040 XDrawLine (dpy, window, gc,
2041 left_x + (left_p ? 1 : 0), top_y,
2042 right_x + (right_p ? 0 : 1), top_y);
2044 /* Outermost left line. */
2045 if (left_p)
2046 XDrawLine (dpy, window, gc, left_x, top_y + 1, left_x, bottom_y);
2049 /* Bottom. */
2050 if (bot_p)
2052 XDrawLine (dpy, window, gc,
2053 left_x + (left_p ? 1 : 0), bottom_y,
2054 right_x + (right_p ? 0 : 1), bottom_y);
2055 for (i = 1; i < width; ++i)
2056 XDrawLine (dpy, window, gc,
2057 left_x + i * left_p, bottom_y - i,
2058 right_x + 1 - i * right_p, bottom_y - i);
2061 /* Right. */
2062 if (right_p)
2064 XClearArea (dpy, window, right_x, top_y, 1, 1, False);
2065 XClearArea (dpy, window, right_x, bottom_y, 1, 1, False);
2066 for (i = 0; i < width; ++i)
2067 XDrawLine (dpy, window, gc,
2068 right_x - i, top_y + (i + 1) * top_p,
2069 right_x - i, bottom_y + 1 - (i + 1) * bot_p);
2072 XSetClipMask (dpy, gc, None);
2076 /* Draw a box on frame F inside the rectangle given by LEFT_X, TOP_Y,
2077 RIGHT_X, and BOTTOM_Y. WIDTH is the thickness of the lines to
2078 draw, it must be >= 0. LEFT_P non-zero means draw a line on the
2079 left side of the rectangle. RIGHT_P non-zero means draw a line
2080 on the right side of the rectangle. CLIP_RECT is the clipping
2081 rectangle to use when drawing. */
2083 static void
2084 x_draw_box_rect (struct glyph_string *s,
2085 int left_x, int top_y, int right_x, int bottom_y, int width,
2086 int left_p, int right_p, XRectangle *clip_rect)
2088 XGCValues xgcv;
2090 XGetGCValues (s->display, s->gc, GCForeground, &xgcv);
2091 XSetForeground (s->display, s->gc, s->face->box_color);
2092 XSetClipRectangles (s->display, s->gc, 0, 0, clip_rect, 1, Unsorted);
2094 /* Top. */
2095 XFillRectangle (s->display, s->window, s->gc,
2096 left_x, top_y, right_x - left_x + 1, width);
2098 /* Left. */
2099 if (left_p)
2100 XFillRectangle (s->display, s->window, s->gc,
2101 left_x, top_y, width, bottom_y - top_y + 1);
2103 /* Bottom. */
2104 XFillRectangle (s->display, s->window, s->gc,
2105 left_x, bottom_y - width + 1, right_x - left_x + 1, width);
2107 /* Right. */
2108 if (right_p)
2109 XFillRectangle (s->display, s->window, s->gc,
2110 right_x - width + 1, top_y, width, bottom_y - top_y + 1);
2112 XSetForeground (s->display, s->gc, xgcv.foreground);
2113 XSetClipMask (s->display, s->gc, None);
2117 /* Draw a box around glyph string S. */
2119 static void
2120 x_draw_glyph_string_box (struct glyph_string *s)
2122 int width, left_x, right_x, top_y, bottom_y, last_x, raised_p;
2123 int left_p, right_p;
2124 struct glyph *last_glyph;
2125 XRectangle clip_rect;
2127 last_x = ((s->row->full_width_p && !s->w->pseudo_window_p)
2128 ? WINDOW_RIGHT_EDGE_X (s->w)
2129 : window_box_right (s->w, s->area));
2131 /* The glyph that may have a right box line. */
2132 last_glyph = (s->cmp || s->img
2133 ? s->first_glyph
2134 : s->first_glyph + s->nchars - 1);
2136 width = eabs (s->face->box_line_width);
2137 raised_p = s->face->box == FACE_RAISED_BOX;
2138 left_x = s->x;
2139 right_x = (s->row->full_width_p && s->extends_to_end_of_line_p
2140 ? last_x - 1
2141 : min (last_x, s->x + s->background_width) - 1);
2142 top_y = s->y;
2143 bottom_y = top_y + s->height - 1;
2145 left_p = (s->first_glyph->left_box_line_p
2146 || (s->hl == DRAW_MOUSE_FACE
2147 && (s->prev == NULL
2148 || s->prev->hl != s->hl)));
2149 right_p = (last_glyph->right_box_line_p
2150 || (s->hl == DRAW_MOUSE_FACE
2151 && (s->next == NULL
2152 || s->next->hl != s->hl)));
2154 get_glyph_string_clip_rect (s, &clip_rect);
2156 if (s->face->box == FACE_SIMPLE_BOX)
2157 x_draw_box_rect (s, left_x, top_y, right_x, bottom_y, width,
2158 left_p, right_p, &clip_rect);
2159 else
2161 x_setup_relief_colors (s);
2162 x_draw_relief_rect (s->f, left_x, top_y, right_x, bottom_y,
2163 width, raised_p, 1, 1, left_p, right_p, &clip_rect);
2168 /* Draw foreground of image glyph string S. */
2170 static void
2171 x_draw_image_foreground (struct glyph_string *s)
2173 int x = s->x;
2174 int y = s->ybase - image_ascent (s->img, s->face, &s->slice);
2176 /* If first glyph of S has a left box line, start drawing it to the
2177 right of that line. */
2178 if (s->face->box != FACE_NO_BOX
2179 && s->first_glyph->left_box_line_p
2180 && s->slice.x == 0)
2181 x += eabs (s->face->box_line_width);
2183 /* If there is a margin around the image, adjust x- and y-position
2184 by that margin. */
2185 if (s->slice.x == 0)
2186 x += s->img->hmargin;
2187 if (s->slice.y == 0)
2188 y += s->img->vmargin;
2190 if (s->img->pixmap)
2192 if (s->img->mask)
2194 /* We can't set both a clip mask and use XSetClipRectangles
2195 because the latter also sets a clip mask. We also can't
2196 trust on the shape extension to be available
2197 (XShapeCombineRegion). So, compute the rectangle to draw
2198 manually. */
2199 unsigned long mask = (GCClipMask | GCClipXOrigin | GCClipYOrigin
2200 | GCFunction);
2201 XGCValues xgcv;
2202 XRectangle clip_rect, image_rect, r;
2204 xgcv.clip_mask = s->img->mask;
2205 xgcv.clip_x_origin = x;
2206 xgcv.clip_y_origin = y;
2207 xgcv.function = GXcopy;
2208 XChangeGC (s->display, s->gc, mask, &xgcv);
2210 get_glyph_string_clip_rect (s, &clip_rect);
2211 image_rect.x = x;
2212 image_rect.y = y;
2213 image_rect.width = s->slice.width;
2214 image_rect.height = s->slice.height;
2215 if (x_intersect_rectangles (&clip_rect, &image_rect, &r))
2216 XCopyArea (s->display, s->img->pixmap, s->window, s->gc,
2217 s->slice.x + r.x - x, s->slice.y + r.y - y,
2218 r.width, r.height, r.x, r.y);
2220 else
2222 XRectangle clip_rect, image_rect, r;
2224 get_glyph_string_clip_rect (s, &clip_rect);
2225 image_rect.x = x;
2226 image_rect.y = y;
2227 image_rect.width = s->slice.width;
2228 image_rect.height = s->slice.height;
2229 if (x_intersect_rectangles (&clip_rect, &image_rect, &r))
2230 XCopyArea (s->display, s->img->pixmap, s->window, s->gc,
2231 s->slice.x + r.x - x, s->slice.y + r.y - y,
2232 r.width, r.height, r.x, r.y);
2234 /* When the image has a mask, we can expect that at
2235 least part of a mouse highlight or a block cursor will
2236 be visible. If the image doesn't have a mask, make
2237 a block cursor visible by drawing a rectangle around
2238 the image. I believe it's looking better if we do
2239 nothing here for mouse-face. */
2240 if (s->hl == DRAW_CURSOR)
2242 int relief = eabs (s->img->relief);
2243 XDrawRectangle (s->display, s->window, s->gc,
2244 x - relief, y - relief,
2245 s->slice.width + relief*2 - 1,
2246 s->slice.height + relief*2 - 1);
2250 else
2251 /* Draw a rectangle if image could not be loaded. */
2252 XDrawRectangle (s->display, s->window, s->gc, x, y,
2253 s->slice.width - 1, s->slice.height - 1);
2257 /* Draw a relief around the image glyph string S. */
2259 static void
2260 x_draw_image_relief (struct glyph_string *s)
2262 int x1, y1, thick, raised_p, top_p, bot_p, left_p, right_p;
2263 XRectangle r;
2264 int x = s->x;
2265 int y = s->ybase - image_ascent (s->img, s->face, &s->slice);
2267 /* If first glyph of S has a left box line, start drawing it to the
2268 right of that line. */
2269 if (s->face->box != FACE_NO_BOX
2270 && s->first_glyph->left_box_line_p
2271 && s->slice.x == 0)
2272 x += eabs (s->face->box_line_width);
2274 /* If there is a margin around the image, adjust x- and y-position
2275 by that margin. */
2276 if (s->slice.x == 0)
2277 x += s->img->hmargin;
2278 if (s->slice.y == 0)
2279 y += s->img->vmargin;
2281 if (s->hl == DRAW_IMAGE_SUNKEN
2282 || s->hl == DRAW_IMAGE_RAISED)
2284 thick = tool_bar_button_relief >= 0 ? tool_bar_button_relief : DEFAULT_TOOL_BAR_BUTTON_RELIEF;
2285 raised_p = s->hl == DRAW_IMAGE_RAISED;
2287 else
2289 thick = eabs (s->img->relief);
2290 raised_p = s->img->relief > 0;
2293 x1 = x + s->slice.width - 1;
2294 y1 = y + s->slice.height - 1;
2295 top_p = bot_p = left_p = right_p = 0;
2297 if (s->slice.x == 0)
2298 x -= thick, left_p = 1;
2299 if (s->slice.y == 0)
2300 y -= thick, top_p = 1;
2301 if (s->slice.x + s->slice.width == s->img->width)
2302 x1 += thick, right_p = 1;
2303 if (s->slice.y + s->slice.height == s->img->height)
2304 y1 += thick, bot_p = 1;
2306 x_setup_relief_colors (s);
2307 get_glyph_string_clip_rect (s, &r);
2308 x_draw_relief_rect (s->f, x, y, x1, y1, thick, raised_p,
2309 top_p, bot_p, left_p, right_p, &r);
2313 /* Draw the foreground of image glyph string S to PIXMAP. */
2315 static void
2316 x_draw_image_foreground_1 (struct glyph_string *s, Pixmap pixmap)
2318 int x = 0;
2319 int y = s->ybase - s->y - image_ascent (s->img, s->face, &s->slice);
2321 /* If first glyph of S has a left box line, start drawing it to the
2322 right of that line. */
2323 if (s->face->box != FACE_NO_BOX
2324 && s->first_glyph->left_box_line_p
2325 && s->slice.x == 0)
2326 x += eabs (s->face->box_line_width);
2328 /* If there is a margin around the image, adjust x- and y-position
2329 by that margin. */
2330 if (s->slice.x == 0)
2331 x += s->img->hmargin;
2332 if (s->slice.y == 0)
2333 y += s->img->vmargin;
2335 if (s->img->pixmap)
2337 if (s->img->mask)
2339 /* We can't set both a clip mask and use XSetClipRectangles
2340 because the latter also sets a clip mask. We also can't
2341 trust on the shape extension to be available
2342 (XShapeCombineRegion). So, compute the rectangle to draw
2343 manually. */
2344 unsigned long mask = (GCClipMask | GCClipXOrigin | GCClipYOrigin
2345 | GCFunction);
2346 XGCValues xgcv;
2348 xgcv.clip_mask = s->img->mask;
2349 xgcv.clip_x_origin = x - s->slice.x;
2350 xgcv.clip_y_origin = y - s->slice.y;
2351 xgcv.function = GXcopy;
2352 XChangeGC (s->display, s->gc, mask, &xgcv);
2354 XCopyArea (s->display, s->img->pixmap, pixmap, s->gc,
2355 s->slice.x, s->slice.y,
2356 s->slice.width, s->slice.height, x, y);
2357 XSetClipMask (s->display, s->gc, None);
2359 else
2361 XCopyArea (s->display, s->img->pixmap, pixmap, s->gc,
2362 s->slice.x, s->slice.y,
2363 s->slice.width, s->slice.height, x, y);
2365 /* When the image has a mask, we can expect that at
2366 least part of a mouse highlight or a block cursor will
2367 be visible. If the image doesn't have a mask, make
2368 a block cursor visible by drawing a rectangle around
2369 the image. I believe it's looking better if we do
2370 nothing here for mouse-face. */
2371 if (s->hl == DRAW_CURSOR)
2373 int r = eabs (s->img->relief);
2374 XDrawRectangle (s->display, s->window, s->gc, x - r, y - r,
2375 s->slice.width + r*2 - 1,
2376 s->slice.height + r*2 - 1);
2380 else
2381 /* Draw a rectangle if image could not be loaded. */
2382 XDrawRectangle (s->display, pixmap, s->gc, x, y,
2383 s->slice.width - 1, s->slice.height - 1);
2387 /* Draw part of the background of glyph string S. X, Y, W, and H
2388 give the rectangle to draw. */
2390 static void
2391 x_draw_glyph_string_bg_rect (struct glyph_string *s, int x, int y, int w, int h)
2393 if (s->stippled_p)
2395 /* Fill background with a stipple pattern. */
2396 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
2397 XFillRectangle (s->display, s->window, s->gc, x, y, w, h);
2398 XSetFillStyle (s->display, s->gc, FillSolid);
2400 else
2401 x_clear_glyph_string_rect (s, x, y, w, h);
2405 /* Draw image glyph string S.
2407 s->y
2408 s->x +-------------------------
2409 | s->face->box
2411 | +-------------------------
2412 | | s->img->margin
2414 | | +-------------------
2415 | | | the image
2419 static void
2420 x_draw_image_glyph_string (struct glyph_string *s)
2422 int box_line_hwidth = eabs (s->face->box_line_width);
2423 int box_line_vwidth = max (s->face->box_line_width, 0);
2424 int height;
2425 Pixmap pixmap = None;
2427 height = s->height;
2428 if (s->slice.y == 0)
2429 height -= box_line_vwidth;
2430 if (s->slice.y + s->slice.height >= s->img->height)
2431 height -= box_line_vwidth;
2433 /* Fill background with face under the image. Do it only if row is
2434 taller than image or if image has a clip mask to reduce
2435 flickering. */
2436 s->stippled_p = s->face->stipple != 0;
2437 if (height > s->slice.height
2438 || s->img->hmargin
2439 || s->img->vmargin
2440 || s->img->mask
2441 || s->img->pixmap == 0
2442 || s->width != s->background_width)
2444 if (s->img->mask)
2446 /* Create a pixmap as large as the glyph string. Fill it
2447 with the background color. Copy the image to it, using
2448 its mask. Copy the temporary pixmap to the display. */
2449 Screen *screen = FRAME_X_SCREEN (s->f);
2450 int depth = DefaultDepthOfScreen (screen);
2452 /* Create a pixmap as large as the glyph string. */
2453 pixmap = XCreatePixmap (s->display, s->window,
2454 s->background_width,
2455 s->height, depth);
2457 /* Don't clip in the following because we're working on the
2458 pixmap. */
2459 XSetClipMask (s->display, s->gc, None);
2461 /* Fill the pixmap with the background color/stipple. */
2462 if (s->stippled_p)
2464 /* Fill background with a stipple pattern. */
2465 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
2466 XSetTSOrigin (s->display, s->gc, - s->x, - s->y);
2467 XFillRectangle (s->display, pixmap, s->gc,
2468 0, 0, s->background_width, s->height);
2469 XSetFillStyle (s->display, s->gc, FillSolid);
2470 XSetTSOrigin (s->display, s->gc, 0, 0);
2472 else
2474 XGCValues xgcv;
2475 XGetGCValues (s->display, s->gc, GCForeground | GCBackground,
2476 &xgcv);
2477 XSetForeground (s->display, s->gc, xgcv.background);
2478 XFillRectangle (s->display, pixmap, s->gc,
2479 0, 0, s->background_width, s->height);
2480 XSetForeground (s->display, s->gc, xgcv.foreground);
2483 else
2485 int x = s->x;
2486 int y = s->y;
2488 if (s->first_glyph->left_box_line_p
2489 && s->slice.x == 0)
2490 x += box_line_hwidth;
2492 if (s->slice.y == 0)
2493 y += box_line_vwidth;
2495 x_draw_glyph_string_bg_rect (s, x, y, s->background_width, height);
2498 s->background_filled_p = 1;
2501 /* Draw the foreground. */
2502 if (pixmap != None)
2504 x_draw_image_foreground_1 (s, pixmap);
2505 x_set_glyph_string_clipping (s);
2506 XCopyArea (s->display, pixmap, s->window, s->gc,
2507 0, 0, s->background_width, s->height, s->x, s->y);
2508 XFreePixmap (s->display, pixmap);
2510 else
2511 x_draw_image_foreground (s);
2513 /* If we must draw a relief around the image, do it. */
2514 if (s->img->relief
2515 || s->hl == DRAW_IMAGE_RAISED
2516 || s->hl == DRAW_IMAGE_SUNKEN)
2517 x_draw_image_relief (s);
2521 /* Draw stretch glyph string S. */
2523 static void
2524 x_draw_stretch_glyph_string (struct glyph_string *s)
2526 eassert (s->first_glyph->type == STRETCH_GLYPH);
2528 if (s->hl == DRAW_CURSOR
2529 && !x_stretch_cursor_p)
2531 /* If `x-stretch-cursor' is nil, don't draw a block cursor as
2532 wide as the stretch glyph. */
2533 int width, background_width = s->background_width;
2534 int x = s->x;
2536 if (!s->row->reversed_p)
2538 int left_x = window_box_left_offset (s->w, TEXT_AREA);
2540 if (x < left_x)
2542 background_width -= left_x - x;
2543 x = left_x;
2546 else
2548 /* In R2L rows, draw the cursor on the right edge of the
2549 stretch glyph. */
2550 int right_x = window_box_right_offset (s->w, TEXT_AREA);
2552 if (x + background_width > right_x)
2553 background_width -= x - right_x;
2554 x += background_width;
2556 width = min (FRAME_COLUMN_WIDTH (s->f), background_width);
2557 if (s->row->reversed_p)
2558 x -= width;
2560 /* Draw cursor. */
2561 x_draw_glyph_string_bg_rect (s, x, s->y, width, s->height);
2563 /* Clear rest using the GC of the original non-cursor face. */
2564 if (width < background_width)
2566 int y = s->y;
2567 int w = background_width - width, h = s->height;
2568 XRectangle r;
2569 GC gc;
2571 if (!s->row->reversed_p)
2572 x += width;
2573 else
2574 x = s->x;
2575 if (s->row->mouse_face_p
2576 && cursor_in_mouse_face_p (s->w))
2578 x_set_mouse_face_gc (s);
2579 gc = s->gc;
2581 else
2582 gc = s->face->gc;
2584 get_glyph_string_clip_rect (s, &r);
2585 XSetClipRectangles (s->display, gc, 0, 0, &r, 1, Unsorted);
2587 if (s->face->stipple)
2589 /* Fill background with a stipple pattern. */
2590 XSetFillStyle (s->display, gc, FillOpaqueStippled);
2591 XFillRectangle (s->display, s->window, gc, x, y, w, h);
2592 XSetFillStyle (s->display, gc, FillSolid);
2594 else
2596 XGCValues xgcv;
2597 XGetGCValues (s->display, gc, GCForeground | GCBackground, &xgcv);
2598 XSetForeground (s->display, gc, xgcv.background);
2599 XFillRectangle (s->display, s->window, gc, x, y, w, h);
2600 XSetForeground (s->display, gc, xgcv.foreground);
2604 else if (!s->background_filled_p)
2606 int background_width = s->background_width;
2607 int x = s->x, left_x = window_box_left_offset (s->w, TEXT_AREA);
2609 /* Don't draw into left margin, fringe or scrollbar area
2610 except for header line and mode line. */
2611 if (x < left_x && !s->row->mode_line_p)
2613 background_width -= left_x - x;
2614 x = left_x;
2616 if (background_width > 0)
2617 x_draw_glyph_string_bg_rect (s, x, s->y, background_width, s->height);
2620 s->background_filled_p = 1;
2624 Draw a wavy line under S. The wave fills wave_height pixels from y0.
2626 x0 wave_length = 2
2628 y0 * * * * *
2629 |* * * * * * * * *
2630 wave_height = 3 | * * * *
2634 static void
2635 x_draw_underwave (struct glyph_string *s)
2637 int wave_height = 3, wave_length = 2;
2638 int dx, dy, x0, y0, width, x1, y1, x2, y2, odd, xmax;
2639 XRectangle wave_clip, string_clip, final_clip;
2641 dx = wave_length;
2642 dy = wave_height - 1;
2643 x0 = s->x;
2644 y0 = s->ybase - wave_height + 3;
2645 width = s->width;
2646 xmax = x0 + width;
2648 /* Find and set clipping rectangle */
2650 wave_clip.x = x0;
2651 wave_clip.y = y0;
2652 wave_clip.width = width;
2653 wave_clip.height = wave_height;
2654 get_glyph_string_clip_rect (s, &string_clip);
2656 if (!x_intersect_rectangles (&wave_clip, &string_clip, &final_clip))
2657 return;
2659 XSetClipRectangles (s->display, s->gc, 0, 0, &final_clip, 1, Unsorted);
2661 /* Draw the waves */
2663 x1 = x0 - (x0 % dx);
2664 x2 = x1 + dx;
2665 odd = (x1/dx) % 2;
2666 y1 = y2 = y0;
2668 if (odd)
2669 y1 += dy;
2670 else
2671 y2 += dy;
2673 if (INT_MAX - dx < xmax)
2674 emacs_abort ();
2676 while (x1 <= xmax)
2678 XDrawLine (s->display, s->window, s->gc, x1, y1, x2, y2);
2679 x1 = x2, y1 = y2;
2680 x2 += dx, y2 = y0 + odd*dy;
2681 odd = !odd;
2684 /* Restore previous clipping rectangle(s) */
2685 XSetClipRectangles (s->display, s->gc, 0, 0, s->clip, s->num_clips, Unsorted);
2689 /* Draw glyph string S. */
2691 static void
2692 x_draw_glyph_string (struct glyph_string *s)
2694 int relief_drawn_p = 0;
2696 /* If S draws into the background of its successors, draw the
2697 background of the successors first so that S can draw into it.
2698 This makes S->next use XDrawString instead of XDrawImageString. */
2699 if (s->next && s->right_overhang && !s->for_overlaps)
2701 int width;
2702 struct glyph_string *next;
2704 for (width = 0, next = s->next;
2705 next && width < s->right_overhang;
2706 width += next->width, next = next->next)
2707 if (next->first_glyph->type != IMAGE_GLYPH)
2709 x_set_glyph_string_gc (next);
2710 x_set_glyph_string_clipping (next);
2711 if (next->first_glyph->type == STRETCH_GLYPH)
2712 x_draw_stretch_glyph_string (next);
2713 else
2714 x_draw_glyph_string_background (next, 1);
2715 next->num_clips = 0;
2719 /* Set up S->gc, set clipping and draw S. */
2720 x_set_glyph_string_gc (s);
2722 /* Draw relief (if any) in advance for char/composition so that the
2723 glyph string can be drawn over it. */
2724 if (!s->for_overlaps
2725 && s->face->box != FACE_NO_BOX
2726 && (s->first_glyph->type == CHAR_GLYPH
2727 || s->first_glyph->type == COMPOSITE_GLYPH))
2730 x_set_glyph_string_clipping (s);
2731 x_draw_glyph_string_background (s, 1);
2732 x_draw_glyph_string_box (s);
2733 x_set_glyph_string_clipping (s);
2734 relief_drawn_p = 1;
2736 else if (!s->clip_head /* draw_glyphs didn't specify a clip mask. */
2737 && !s->clip_tail
2738 && ((s->prev && s->prev->hl != s->hl && s->left_overhang)
2739 || (s->next && s->next->hl != s->hl && s->right_overhang)))
2740 /* We must clip just this glyph. left_overhang part has already
2741 drawn when s->prev was drawn, and right_overhang part will be
2742 drawn later when s->next is drawn. */
2743 x_set_glyph_string_clipping_exactly (s, s);
2744 else
2745 x_set_glyph_string_clipping (s);
2747 switch (s->first_glyph->type)
2749 case IMAGE_GLYPH:
2750 x_draw_image_glyph_string (s);
2751 break;
2753 case STRETCH_GLYPH:
2754 x_draw_stretch_glyph_string (s);
2755 break;
2757 case CHAR_GLYPH:
2758 if (s->for_overlaps)
2759 s->background_filled_p = 1;
2760 else
2761 x_draw_glyph_string_background (s, 0);
2762 x_draw_glyph_string_foreground (s);
2763 break;
2765 case COMPOSITE_GLYPH:
2766 if (s->for_overlaps || (s->cmp_from > 0
2767 && ! s->first_glyph->u.cmp.automatic))
2768 s->background_filled_p = 1;
2769 else
2770 x_draw_glyph_string_background (s, 1);
2771 x_draw_composite_glyph_string_foreground (s);
2772 break;
2774 case GLYPHLESS_GLYPH:
2775 if (s->for_overlaps)
2776 s->background_filled_p = 1;
2777 else
2778 x_draw_glyph_string_background (s, 1);
2779 x_draw_glyphless_glyph_string_foreground (s);
2780 break;
2782 default:
2783 emacs_abort ();
2786 if (!s->for_overlaps)
2788 /* Draw underline. */
2789 if (s->face->underline_p)
2791 if (s->face->underline_type == FACE_UNDER_WAVE)
2793 if (s->face->underline_defaulted_p)
2794 x_draw_underwave (s);
2795 else
2797 XGCValues xgcv;
2798 XGetGCValues (s->display, s->gc, GCForeground, &xgcv);
2799 XSetForeground (s->display, s->gc, s->face->underline_color);
2800 x_draw_underwave (s);
2801 XSetForeground (s->display, s->gc, xgcv.foreground);
2804 else if (s->face->underline_type == FACE_UNDER_LINE)
2806 unsigned long thickness, position;
2807 int y;
2809 if (s->prev && s->prev->face->underline_p
2810 && s->prev->face->underline_type == FACE_UNDER_LINE)
2812 /* We use the same underline style as the previous one. */
2813 thickness = s->prev->underline_thickness;
2814 position = s->prev->underline_position;
2816 else
2818 /* Get the underline thickness. Default is 1 pixel. */
2819 if (s->font && s->font->underline_thickness > 0)
2820 thickness = s->font->underline_thickness;
2821 else
2822 thickness = 1;
2823 if (x_underline_at_descent_line)
2824 position = (s->height - thickness) - (s->ybase - s->y);
2825 else
2827 /* Get the underline position. This is the recommended
2828 vertical offset in pixels from the baseline to the top of
2829 the underline. This is a signed value according to the
2830 specs, and its default is
2832 ROUND ((maximum descent) / 2), with
2833 ROUND(x) = floor (x + 0.5) */
2835 if (x_use_underline_position_properties
2836 && s->font && s->font->underline_position >= 0)
2837 position = s->font->underline_position;
2838 else if (s->font)
2839 position = (s->font->descent + 1) / 2;
2840 else
2841 position = underline_minimum_offset;
2843 position = max (position, underline_minimum_offset);
2845 /* Check the sanity of thickness and position. We should
2846 avoid drawing underline out of the current line area. */
2847 if (s->y + s->height <= s->ybase + position)
2848 position = (s->height - 1) - (s->ybase - s->y);
2849 if (s->y + s->height < s->ybase + position + thickness)
2850 thickness = (s->y + s->height) - (s->ybase + position);
2851 s->underline_thickness = thickness;
2852 s->underline_position = position;
2853 y = s->ybase + position;
2854 if (s->face->underline_defaulted_p)
2855 XFillRectangle (s->display, s->window, s->gc,
2856 s->x, y, s->width, thickness);
2857 else
2859 XGCValues xgcv;
2860 XGetGCValues (s->display, s->gc, GCForeground, &xgcv);
2861 XSetForeground (s->display, s->gc, s->face->underline_color);
2862 XFillRectangle (s->display, s->window, s->gc,
2863 s->x, y, s->width, thickness);
2864 XSetForeground (s->display, s->gc, xgcv.foreground);
2868 /* Draw overline. */
2869 if (s->face->overline_p)
2871 unsigned long dy = 0, h = 1;
2873 if (s->face->overline_color_defaulted_p)
2874 XFillRectangle (s->display, s->window, s->gc, s->x, s->y + dy,
2875 s->width, h);
2876 else
2878 XGCValues xgcv;
2879 XGetGCValues (s->display, s->gc, GCForeground, &xgcv);
2880 XSetForeground (s->display, s->gc, s->face->overline_color);
2881 XFillRectangle (s->display, s->window, s->gc, s->x, s->y + dy,
2882 s->width, h);
2883 XSetForeground (s->display, s->gc, xgcv.foreground);
2887 /* Draw strike-through. */
2888 if (s->face->strike_through_p)
2890 unsigned long h = 1;
2891 unsigned long dy = (s->height - h) / 2;
2893 if (s->face->strike_through_color_defaulted_p)
2894 XFillRectangle (s->display, s->window, s->gc, s->x, s->y + dy,
2895 s->width, h);
2896 else
2898 XGCValues xgcv;
2899 XGetGCValues (s->display, s->gc, GCForeground, &xgcv);
2900 XSetForeground (s->display, s->gc, s->face->strike_through_color);
2901 XFillRectangle (s->display, s->window, s->gc, s->x, s->y + dy,
2902 s->width, h);
2903 XSetForeground (s->display, s->gc, xgcv.foreground);
2907 /* Draw relief if not yet drawn. */
2908 if (!relief_drawn_p && s->face->box != FACE_NO_BOX)
2909 x_draw_glyph_string_box (s);
2911 if (s->prev)
2913 struct glyph_string *prev;
2915 for (prev = s->prev; prev; prev = prev->prev)
2916 if (prev->hl != s->hl
2917 && prev->x + prev->width + prev->right_overhang > s->x)
2919 /* As prev was drawn while clipped to its own area, we
2920 must draw the right_overhang part using s->hl now. */
2921 enum draw_glyphs_face save = prev->hl;
2923 prev->hl = s->hl;
2924 x_set_glyph_string_gc (prev);
2925 x_set_glyph_string_clipping_exactly (s, prev);
2926 if (prev->first_glyph->type == CHAR_GLYPH)
2927 x_draw_glyph_string_foreground (prev);
2928 else
2929 x_draw_composite_glyph_string_foreground (prev);
2930 XSetClipMask (prev->display, prev->gc, None);
2931 prev->hl = save;
2932 prev->num_clips = 0;
2936 if (s->next)
2938 struct glyph_string *next;
2940 for (next = s->next; next; next = next->next)
2941 if (next->hl != s->hl
2942 && next->x - next->left_overhang < s->x + s->width)
2944 /* As next will be drawn while clipped to its own area,
2945 we must draw the left_overhang part using s->hl now. */
2946 enum draw_glyphs_face save = next->hl;
2948 next->hl = s->hl;
2949 x_set_glyph_string_gc (next);
2950 x_set_glyph_string_clipping_exactly (s, next);
2951 if (next->first_glyph->type == CHAR_GLYPH)
2952 x_draw_glyph_string_foreground (next);
2953 else
2954 x_draw_composite_glyph_string_foreground (next);
2955 XSetClipMask (next->display, next->gc, None);
2956 next->hl = save;
2957 next->num_clips = 0;
2958 next->clip_head = s->next;
2963 /* Reset clipping. */
2964 XSetClipMask (s->display, s->gc, None);
2965 s->num_clips = 0;
2968 /* Shift display to make room for inserted glyphs. */
2970 static void
2971 x_shift_glyphs_for_insert (struct frame *f, int x, int y, int width, int height, int shift_by)
2973 XCopyArea (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), FRAME_X_WINDOW (f),
2974 f->output_data.x->normal_gc,
2975 x, y, width, height,
2976 x + shift_by, y);
2979 /* Delete N glyphs at the nominal cursor position. Not implemented
2980 for X frames. */
2982 static void
2983 x_delete_glyphs (struct frame *f, register int n)
2985 emacs_abort ();
2989 /* Like XClearArea, but check that WIDTH and HEIGHT are reasonable.
2990 If they are <= 0, this is probably an error. */
2992 void
2993 x_clear_area (Display *dpy, Window window, int x, int y, int width, int height, int exposures)
2995 eassert (width > 0 && height > 0);
2996 XClearArea (dpy, window, x, y, width, height, exposures);
3000 /* Clear an entire frame. */
3002 static void
3003 x_clear_frame (struct frame *f)
3005 /* Clearing the frame will erase any cursor, so mark them all as no
3006 longer visible. */
3007 mark_window_cursors_off (XWINDOW (FRAME_ROOT_WINDOW (f)));
3008 output_cursor.hpos = output_cursor.vpos = 0;
3009 output_cursor.x = -1;
3011 /* We don't set the output cursor here because there will always
3012 follow an explicit cursor_to. */
3013 block_input ();
3015 XClearWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
3017 /* We have to clear the scroll bars. If we have changed colors or
3018 something like that, then they should be notified. */
3019 x_scroll_bar_clear (f);
3021 #if defined (USE_GTK) && defined (USE_TOOLKIT_SCROLL_BARS)
3022 /* Make sure scroll bars are redrawn. As they aren't redrawn by
3023 redisplay, do it here. */
3024 if (FRAME_GTK_WIDGET (f))
3025 gtk_widget_queue_draw (FRAME_GTK_WIDGET (f));
3026 #endif
3028 XFlush (FRAME_X_DISPLAY (f));
3030 unblock_input ();
3035 /* Invert the middle quarter of the frame for .15 sec. */
3037 static void
3038 XTflash (struct frame *f)
3040 block_input ();
3043 #ifdef USE_GTK
3044 /* Use Gdk routines to draw. This way, we won't draw over scroll bars
3045 when the scroll bars and the edit widget share the same X window. */
3046 GdkWindow *window = gtk_widget_get_window (FRAME_GTK_WIDGET (f));
3047 #ifdef HAVE_GTK3
3048 cairo_t *cr = gdk_cairo_create (window);
3049 cairo_set_source_rgb (cr, 1, 1, 1);
3050 cairo_set_operator (cr, CAIRO_OPERATOR_DIFFERENCE);
3051 #define XFillRectangle(d, win, gc, x, y, w, h) \
3052 do { \
3053 cairo_rectangle (cr, x, y, w, h); \
3054 cairo_fill (cr); \
3056 while (0)
3057 #else /* ! HAVE_GTK3 */
3058 GdkGCValues vals;
3059 GdkGC *gc;
3060 vals.foreground.pixel = (FRAME_FOREGROUND_PIXEL (f)
3061 ^ FRAME_BACKGROUND_PIXEL (f));
3062 vals.function = GDK_XOR;
3063 gc = gdk_gc_new_with_values (window,
3064 &vals, GDK_GC_FUNCTION | GDK_GC_FOREGROUND);
3065 #define XFillRectangle(d, win, gc, x, y, w, h) \
3066 gdk_draw_rectangle (window, gc, TRUE, x, y, w, h)
3067 #endif /* ! HAVE_GTK3 */
3068 #else /* ! USE_GTK */
3069 GC gc;
3071 /* Create a GC that will use the GXxor function to flip foreground
3072 pixels into background pixels. */
3074 XGCValues values;
3076 values.function = GXxor;
3077 values.foreground = (FRAME_FOREGROUND_PIXEL (f)
3078 ^ FRAME_BACKGROUND_PIXEL (f));
3080 gc = XCreateGC (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3081 GCFunction | GCForeground, &values);
3083 #endif
3085 /* Get the height not including a menu bar widget. */
3086 int height = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, FRAME_LINES (f));
3087 /* Height of each line to flash. */
3088 int flash_height = FRAME_LINE_HEIGHT (f);
3089 /* These will be the left and right margins of the rectangles. */
3090 int flash_left = FRAME_INTERNAL_BORDER_WIDTH (f);
3091 int flash_right = FRAME_PIXEL_WIDTH (f) - FRAME_INTERNAL_BORDER_WIDTH (f);
3093 int width;
3095 /* Don't flash the area between a scroll bar and the frame
3096 edge it is next to. */
3097 switch (FRAME_VERTICAL_SCROLL_BAR_TYPE (f))
3099 case vertical_scroll_bar_left:
3100 flash_left += VERTICAL_SCROLL_BAR_WIDTH_TRIM;
3101 break;
3103 case vertical_scroll_bar_right:
3104 flash_right -= VERTICAL_SCROLL_BAR_WIDTH_TRIM;
3105 break;
3107 default:
3108 break;
3111 width = flash_right - flash_left;
3113 /* If window is tall, flash top and bottom line. */
3114 if (height > 3 * FRAME_LINE_HEIGHT (f))
3116 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
3117 flash_left,
3118 (FRAME_INTERNAL_BORDER_WIDTH (f)
3119 + FRAME_TOP_MARGIN_HEIGHT (f)),
3120 width, flash_height);
3121 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
3122 flash_left,
3123 (height - flash_height
3124 - FRAME_INTERNAL_BORDER_WIDTH (f)),
3125 width, flash_height);
3128 else
3129 /* If it is short, flash it all. */
3130 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
3131 flash_left, FRAME_INTERNAL_BORDER_WIDTH (f),
3132 width, height - 2 * FRAME_INTERNAL_BORDER_WIDTH (f));
3134 x_flush (f);
3137 EMACS_TIME delay = make_emacs_time (0, 150 * 1000 * 1000);
3138 EMACS_TIME wakeup = add_emacs_time (current_emacs_time (), delay);
3140 /* Keep waiting until past the time wakeup or any input gets
3141 available. */
3142 while (! detect_input_pending ())
3144 EMACS_TIME current = current_emacs_time ();
3145 EMACS_TIME timeout;
3147 /* Break if result would not be positive. */
3148 if (EMACS_TIME_LE (wakeup, current))
3149 break;
3151 /* How long `select' should wait. */
3152 timeout = make_emacs_time (0, 10 * 1000 * 1000);
3154 /* Try to wait that long--but we might wake up sooner. */
3155 pselect (0, NULL, NULL, NULL, &timeout, NULL);
3159 /* If window is tall, flash top and bottom line. */
3160 if (height > 3 * FRAME_LINE_HEIGHT (f))
3162 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
3163 flash_left,
3164 (FRAME_INTERNAL_BORDER_WIDTH (f)
3165 + FRAME_TOP_MARGIN_HEIGHT (f)),
3166 width, flash_height);
3167 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
3168 flash_left,
3169 (height - flash_height
3170 - FRAME_INTERNAL_BORDER_WIDTH (f)),
3171 width, flash_height);
3173 else
3174 /* If it is short, flash it all. */
3175 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
3176 flash_left, FRAME_INTERNAL_BORDER_WIDTH (f),
3177 width, height - 2 * FRAME_INTERNAL_BORDER_WIDTH (f));
3179 #ifdef USE_GTK
3180 #ifdef HAVE_GTK3
3181 cairo_destroy (cr);
3182 #else
3183 g_object_unref (G_OBJECT (gc));
3184 #endif
3185 #undef XFillRectangle
3186 #else
3187 XFreeGC (FRAME_X_DISPLAY (f), gc);
3188 #endif
3189 x_flush (f);
3193 unblock_input ();
3197 static void
3198 XTtoggle_invisible_pointer (FRAME_PTR f, int invisible)
3200 block_input ();
3201 if (invisible)
3203 if (FRAME_X_DISPLAY_INFO (f)->invisible_cursor != 0)
3204 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3205 FRAME_X_DISPLAY_INFO (f)->invisible_cursor);
3207 else
3208 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3209 f->output_data.x->current_cursor);
3210 f->pointer_invisible = invisible;
3211 unblock_input ();
3215 /* Make audible bell. */
3217 static void
3218 XTring_bell (struct frame *f)
3220 if (FRAME_X_DISPLAY (f))
3222 if (visible_bell)
3223 XTflash (f);
3224 else
3226 block_input ();
3227 #ifdef HAVE_XKB
3228 XkbBell (FRAME_X_DISPLAY (f), None, 0, None);
3229 #else
3230 XBell (FRAME_X_DISPLAY (f), 0);
3231 #endif
3232 XFlush (FRAME_X_DISPLAY (f));
3233 unblock_input ();
3239 /* Specify how many text lines, from the top of the window,
3240 should be affected by insert-lines and delete-lines operations.
3241 This, and those operations, are used only within an update
3242 that is bounded by calls to x_update_begin and x_update_end. */
3244 static void
3245 XTset_terminal_window (struct frame *f, int n)
3247 /* This function intentionally left blank. */
3252 /***********************************************************************
3253 Line Dance
3254 ***********************************************************************/
3256 /* Perform an insert-lines or delete-lines operation, inserting N
3257 lines or deleting -N lines at vertical position VPOS. */
3259 static void
3260 x_ins_del_lines (struct frame *f, int vpos, int n)
3262 emacs_abort ();
3266 /* Scroll part of the display as described by RUN. */
3268 static void
3269 x_scroll_run (struct window *w, struct run *run)
3271 struct frame *f = XFRAME (w->frame);
3272 int x, y, width, height, from_y, to_y, bottom_y;
3274 /* Get frame-relative bounding box of the text display area of W,
3275 without mode lines. Include in this box the left and right
3276 fringe of W. */
3277 window_box (w, -1, &x, &y, &width, &height);
3279 #ifdef USE_TOOLKIT_SCROLL_BARS
3280 /* If the fringe is adjacent to the left (right) scroll bar of a
3281 leftmost (rightmost, respectively) window, then extend its
3282 background to the gap between the fringe and the bar. */
3283 if ((WINDOW_LEFTMOST_P (w)
3284 && WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w))
3285 || (WINDOW_RIGHTMOST_P (w)
3286 && WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w)))
3288 int sb_width = WINDOW_CONFIG_SCROLL_BAR_WIDTH (w);
3290 if (sb_width > 0)
3292 int bar_area_x = WINDOW_SCROLL_BAR_AREA_X (w);
3293 int bar_area_width = (WINDOW_CONFIG_SCROLL_BAR_COLS (w)
3294 * FRAME_COLUMN_WIDTH (f));
3296 if (bar_area_x + bar_area_width == x)
3298 x = bar_area_x + sb_width;
3299 width += bar_area_width - sb_width;
3301 else if (x + width == bar_area_x)
3302 width += bar_area_width - sb_width;
3305 #endif
3307 from_y = WINDOW_TO_FRAME_PIXEL_Y (w, run->current_y);
3308 to_y = WINDOW_TO_FRAME_PIXEL_Y (w, run->desired_y);
3309 bottom_y = y + height;
3311 if (to_y < from_y)
3313 /* Scrolling up. Make sure we don't copy part of the mode
3314 line at the bottom. */
3315 if (from_y + run->height > bottom_y)
3316 height = bottom_y - from_y;
3317 else
3318 height = run->height;
3320 else
3322 /* Scrolling down. Make sure we don't copy over the mode line.
3323 at the bottom. */
3324 if (to_y + run->height > bottom_y)
3325 height = bottom_y - to_y;
3326 else
3327 height = run->height;
3330 block_input ();
3332 /* Cursor off. Will be switched on again in x_update_window_end. */
3333 updated_window = w;
3334 x_clear_cursor (w);
3336 XCopyArea (FRAME_X_DISPLAY (f),
3337 FRAME_X_WINDOW (f), FRAME_X_WINDOW (f),
3338 f->output_data.x->normal_gc,
3339 x, from_y,
3340 width, height,
3341 x, to_y);
3343 unblock_input ();
3348 /***********************************************************************
3349 Exposure Events
3350 ***********************************************************************/
3353 static void
3354 frame_highlight (struct frame *f)
3356 /* We used to only do this if Vx_no_window_manager was non-nil, but
3357 the ICCCM (section 4.1.6) says that the window's border pixmap
3358 and border pixel are window attributes which are "private to the
3359 client", so we can always change it to whatever we want. */
3360 block_input ();
3361 /* I recently started to get errors in this XSetWindowBorder, depending on
3362 the window-manager in use, tho something more is at play since I've been
3363 using that same window-manager binary for ever. Let's not crash just
3364 because of this (bug#9310). */
3365 x_catch_errors (FRAME_X_DISPLAY (f));
3366 XSetWindowBorder (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3367 f->output_data.x->border_pixel);
3368 x_uncatch_errors ();
3369 unblock_input ();
3370 x_update_cursor (f, 1);
3371 x_set_frame_alpha (f);
3374 static void
3375 frame_unhighlight (struct frame *f)
3377 /* We used to only do this if Vx_no_window_manager was non-nil, but
3378 the ICCCM (section 4.1.6) says that the window's border pixmap
3379 and border pixel are window attributes which are "private to the
3380 client", so we can always change it to whatever we want. */
3381 block_input ();
3382 /* Same as above for XSetWindowBorder (bug#9310). */
3383 x_catch_errors (FRAME_X_DISPLAY (f));
3384 XSetWindowBorderPixmap (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3385 f->output_data.x->border_tile);
3386 x_uncatch_errors ();
3387 unblock_input ();
3388 x_update_cursor (f, 1);
3389 x_set_frame_alpha (f);
3392 /* The focus has changed. Update the frames as necessary to reflect
3393 the new situation. Note that we can't change the selected frame
3394 here, because the Lisp code we are interrupting might become confused.
3395 Each event gets marked with the frame in which it occurred, so the
3396 Lisp code can tell when the switch took place by examining the events. */
3398 static void
3399 x_new_focus_frame (struct x_display_info *dpyinfo, struct frame *frame)
3401 struct frame *old_focus = dpyinfo->x_focus_frame;
3403 if (frame != dpyinfo->x_focus_frame)
3405 /* Set this before calling other routines, so that they see
3406 the correct value of x_focus_frame. */
3407 dpyinfo->x_focus_frame = frame;
3409 if (old_focus && old_focus->auto_lower)
3410 x_lower_frame (old_focus);
3412 if (dpyinfo->x_focus_frame && dpyinfo->x_focus_frame->auto_raise)
3413 pending_autoraise_frame = dpyinfo->x_focus_frame;
3414 else
3415 pending_autoraise_frame = 0;
3418 x_frame_rehighlight (dpyinfo);
3421 /* Handle FocusIn and FocusOut state changes for FRAME.
3422 If FRAME has focus and there exists more than one frame, puts
3423 a FOCUS_IN_EVENT into *BUFP. */
3425 static void
3426 x_focus_changed (int type, int state, struct x_display_info *dpyinfo, struct frame *frame, struct input_event *bufp)
3428 if (type == FocusIn)
3430 if (dpyinfo->x_focus_event_frame != frame)
3432 x_new_focus_frame (dpyinfo, frame);
3433 dpyinfo->x_focus_event_frame = frame;
3435 /* Don't stop displaying the initial startup message
3436 for a switch-frame event we don't need. */
3437 /* When run as a daemon, Vterminal_frame is always NIL. */
3438 bufp->arg = (((NILP (Vterminal_frame) || EQ (Fdaemonp (), Qt))
3439 && CONSP (Vframe_list)
3440 && !NILP (XCDR (Vframe_list)))
3441 ? Qt : Qnil);
3442 bufp->kind = FOCUS_IN_EVENT;
3443 XSETFRAME (bufp->frame_or_window, frame);
3446 frame->output_data.x->focus_state |= state;
3448 #ifdef HAVE_X_I18N
3449 if (FRAME_XIC (frame))
3450 XSetICFocus (FRAME_XIC (frame));
3451 #endif
3453 else if (type == FocusOut)
3455 frame->output_data.x->focus_state &= ~state;
3457 if (dpyinfo->x_focus_event_frame == frame)
3459 dpyinfo->x_focus_event_frame = 0;
3460 x_new_focus_frame (dpyinfo, 0);
3462 bufp->kind = FOCUS_OUT_EVENT;
3463 XSETFRAME (bufp->frame_or_window, frame);
3466 #ifdef HAVE_X_I18N
3467 if (FRAME_XIC (frame))
3468 XUnsetICFocus (FRAME_XIC (frame));
3469 #endif
3470 if (frame->pointer_invisible)
3471 XTtoggle_invisible_pointer (frame, 0);
3475 /* The focus may have changed. Figure out if it is a real focus change,
3476 by checking both FocusIn/Out and Enter/LeaveNotify events.
3478 Returns FOCUS_IN_EVENT event in *BUFP. */
3480 static void
3481 x_detect_focus_change (struct x_display_info *dpyinfo, XEvent *event, struct input_event *bufp)
3483 struct frame *frame;
3485 frame = x_any_window_to_frame (dpyinfo, event->xany.window);
3486 if (! frame)
3487 return;
3489 switch (event->type)
3491 case EnterNotify:
3492 case LeaveNotify:
3494 struct frame *focus_frame = dpyinfo->x_focus_event_frame;
3495 int focus_state
3496 = focus_frame ? focus_frame->output_data.x->focus_state : 0;
3498 if (event->xcrossing.detail != NotifyInferior
3499 && event->xcrossing.focus
3500 && ! (focus_state & FOCUS_EXPLICIT))
3501 x_focus_changed ((event->type == EnterNotify ? FocusIn : FocusOut),
3502 FOCUS_IMPLICIT,
3503 dpyinfo, frame, bufp);
3505 break;
3507 case FocusIn:
3508 case FocusOut:
3509 x_focus_changed (event->type,
3510 (event->xfocus.detail == NotifyPointer ?
3511 FOCUS_IMPLICIT : FOCUS_EXPLICIT),
3512 dpyinfo, frame, bufp);
3513 break;
3515 case ClientMessage:
3516 if (event->xclient.message_type == dpyinfo->Xatom_XEMBED)
3518 enum xembed_message msg = event->xclient.data.l[1];
3519 x_focus_changed ((msg == XEMBED_FOCUS_IN ? FocusIn : FocusOut),
3520 FOCUS_EXPLICIT, dpyinfo, frame, bufp);
3522 break;
3527 #if defined HAVE_MENUS && !defined USE_X_TOOLKIT && !defined USE_GTK
3528 /* Handle an event saying the mouse has moved out of an Emacs frame. */
3530 void
3531 x_mouse_leave (struct x_display_info *dpyinfo)
3533 x_new_focus_frame (dpyinfo, dpyinfo->x_focus_event_frame);
3535 #endif
3537 /* The focus has changed, or we have redirected a frame's focus to
3538 another frame (this happens when a frame uses a surrogate
3539 mini-buffer frame). Shift the highlight as appropriate.
3541 The FRAME argument doesn't necessarily have anything to do with which
3542 frame is being highlighted or un-highlighted; we only use it to find
3543 the appropriate X display info. */
3545 static void
3546 XTframe_rehighlight (struct frame *frame)
3548 x_frame_rehighlight (FRAME_X_DISPLAY_INFO (frame));
3551 static void
3552 x_frame_rehighlight (struct x_display_info *dpyinfo)
3554 struct frame *old_highlight = dpyinfo->x_highlight_frame;
3556 if (dpyinfo->x_focus_frame)
3558 dpyinfo->x_highlight_frame
3559 = ((FRAMEP (FRAME_FOCUS_FRAME (dpyinfo->x_focus_frame)))
3560 ? XFRAME (FRAME_FOCUS_FRAME (dpyinfo->x_focus_frame))
3561 : dpyinfo->x_focus_frame);
3562 if (! FRAME_LIVE_P (dpyinfo->x_highlight_frame))
3564 fset_focus_frame (dpyinfo->x_focus_frame, Qnil);
3565 dpyinfo->x_highlight_frame = dpyinfo->x_focus_frame;
3568 else
3569 dpyinfo->x_highlight_frame = 0;
3571 if (dpyinfo->x_highlight_frame != old_highlight)
3573 if (old_highlight)
3574 frame_unhighlight (old_highlight);
3575 if (dpyinfo->x_highlight_frame)
3576 frame_highlight (dpyinfo->x_highlight_frame);
3582 /* Keyboard processing - modifier keys, vendor-specific keysyms, etc. */
3584 /* Initialize mode_switch_bit and modifier_meaning. */
3585 static void
3586 x_find_modifier_meanings (struct x_display_info *dpyinfo)
3588 int min_code, max_code;
3589 KeySym *syms;
3590 int syms_per_code;
3591 XModifierKeymap *mods;
3593 dpyinfo->meta_mod_mask = 0;
3594 dpyinfo->shift_lock_mask = 0;
3595 dpyinfo->alt_mod_mask = 0;
3596 dpyinfo->super_mod_mask = 0;
3597 dpyinfo->hyper_mod_mask = 0;
3599 XDisplayKeycodes (dpyinfo->display, &min_code, &max_code);
3601 syms = XGetKeyboardMapping (dpyinfo->display,
3602 min_code, max_code - min_code + 1,
3603 &syms_per_code);
3604 mods = XGetModifierMapping (dpyinfo->display);
3606 /* Scan the modifier table to see which modifier bits the Meta and
3607 Alt keysyms are on. */
3609 int row, col; /* The row and column in the modifier table. */
3610 int found_alt_or_meta;
3612 for (row = 3; row < 8; row++)
3614 found_alt_or_meta = 0;
3615 for (col = 0; col < mods->max_keypermod; col++)
3617 KeyCode code = mods->modifiermap[(row * mods->max_keypermod) + col];
3619 /* Zeroes are used for filler. Skip them. */
3620 if (code == 0)
3621 continue;
3623 /* Are any of this keycode's keysyms a meta key? */
3625 int code_col;
3627 for (code_col = 0; code_col < syms_per_code; code_col++)
3629 int sym = syms[((code - min_code) * syms_per_code) + code_col];
3631 switch (sym)
3633 case XK_Meta_L:
3634 case XK_Meta_R:
3635 found_alt_or_meta = 1;
3636 dpyinfo->meta_mod_mask |= (1 << row);
3637 break;
3639 case XK_Alt_L:
3640 case XK_Alt_R:
3641 found_alt_or_meta = 1;
3642 dpyinfo->alt_mod_mask |= (1 << row);
3643 break;
3645 case XK_Hyper_L:
3646 case XK_Hyper_R:
3647 if (!found_alt_or_meta)
3648 dpyinfo->hyper_mod_mask |= (1 << row);
3649 code_col = syms_per_code;
3650 col = mods->max_keypermod;
3651 break;
3653 case XK_Super_L:
3654 case XK_Super_R:
3655 if (!found_alt_or_meta)
3656 dpyinfo->super_mod_mask |= (1 << row);
3657 code_col = syms_per_code;
3658 col = mods->max_keypermod;
3659 break;
3661 case XK_Shift_Lock:
3662 /* Ignore this if it's not on the lock modifier. */
3663 if (!found_alt_or_meta && ((1 << row) == LockMask))
3664 dpyinfo->shift_lock_mask = LockMask;
3665 code_col = syms_per_code;
3666 col = mods->max_keypermod;
3667 break;
3675 /* If we couldn't find any meta keys, accept any alt keys as meta keys. */
3676 if (! dpyinfo->meta_mod_mask)
3678 dpyinfo->meta_mod_mask = dpyinfo->alt_mod_mask;
3679 dpyinfo->alt_mod_mask = 0;
3682 /* If some keys are both alt and meta,
3683 make them just meta, not alt. */
3684 if (dpyinfo->alt_mod_mask & dpyinfo->meta_mod_mask)
3686 dpyinfo->alt_mod_mask &= ~dpyinfo->meta_mod_mask;
3689 XFree (syms);
3690 XFreeModifiermap (mods);
3693 /* Convert between the modifier bits X uses and the modifier bits
3694 Emacs uses. */
3697 x_x_to_emacs_modifiers (struct x_display_info *dpyinfo, int state)
3699 int mod_meta = meta_modifier;
3700 int mod_alt = alt_modifier;
3701 int mod_hyper = hyper_modifier;
3702 int mod_super = super_modifier;
3703 Lisp_Object tem;
3705 tem = Fget (Vx_alt_keysym, Qmodifier_value);
3706 if (INTEGERP (tem)) mod_alt = XINT (tem) & INT_MAX;
3707 tem = Fget (Vx_meta_keysym, Qmodifier_value);
3708 if (INTEGERP (tem)) mod_meta = XINT (tem) & INT_MAX;
3709 tem = Fget (Vx_hyper_keysym, Qmodifier_value);
3710 if (INTEGERP (tem)) mod_hyper = XINT (tem) & INT_MAX;
3711 tem = Fget (Vx_super_keysym, Qmodifier_value);
3712 if (INTEGERP (tem)) mod_super = XINT (tem) & INT_MAX;
3714 return ( ((state & (ShiftMask | dpyinfo->shift_lock_mask)) ? shift_modifier : 0)
3715 | ((state & ControlMask) ? ctrl_modifier : 0)
3716 | ((state & dpyinfo->meta_mod_mask) ? mod_meta : 0)
3717 | ((state & dpyinfo->alt_mod_mask) ? mod_alt : 0)
3718 | ((state & dpyinfo->super_mod_mask) ? mod_super : 0)
3719 | ((state & dpyinfo->hyper_mod_mask) ? mod_hyper : 0));
3722 static int
3723 x_emacs_to_x_modifiers (struct x_display_info *dpyinfo, EMACS_INT state)
3725 EMACS_INT mod_meta = meta_modifier;
3726 EMACS_INT mod_alt = alt_modifier;
3727 EMACS_INT mod_hyper = hyper_modifier;
3728 EMACS_INT mod_super = super_modifier;
3730 Lisp_Object tem;
3732 tem = Fget (Vx_alt_keysym, Qmodifier_value);
3733 if (INTEGERP (tem)) mod_alt = XINT (tem);
3734 tem = Fget (Vx_meta_keysym, Qmodifier_value);
3735 if (INTEGERP (tem)) mod_meta = XINT (tem);
3736 tem = Fget (Vx_hyper_keysym, Qmodifier_value);
3737 if (INTEGERP (tem)) mod_hyper = XINT (tem);
3738 tem = Fget (Vx_super_keysym, Qmodifier_value);
3739 if (INTEGERP (tem)) mod_super = XINT (tem);
3742 return ( ((state & mod_alt) ? dpyinfo->alt_mod_mask : 0)
3743 | ((state & mod_super) ? dpyinfo->super_mod_mask : 0)
3744 | ((state & mod_hyper) ? dpyinfo->hyper_mod_mask : 0)
3745 | ((state & shift_modifier) ? ShiftMask : 0)
3746 | ((state & ctrl_modifier) ? ControlMask : 0)
3747 | ((state & mod_meta) ? dpyinfo->meta_mod_mask : 0));
3750 /* Convert a keysym to its name. */
3752 char *
3753 x_get_keysym_name (int keysym)
3755 char *value;
3757 block_input ();
3758 value = XKeysymToString (keysym);
3759 unblock_input ();
3761 return value;
3766 /* Mouse clicks and mouse movement. Rah. */
3768 /* Prepare a mouse-event in *RESULT for placement in the input queue.
3770 If the event is a button press, then note that we have grabbed
3771 the mouse. */
3773 static Lisp_Object
3774 construct_mouse_click (struct input_event *result, XButtonEvent *event, struct frame *f)
3776 /* Make the event type NO_EVENT; we'll change that when we decide
3777 otherwise. */
3778 result->kind = MOUSE_CLICK_EVENT;
3779 result->code = event->button - Button1;
3780 result->timestamp = event->time;
3781 result->modifiers = (x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO (f),
3782 event->state)
3783 | (event->type == ButtonRelease
3784 ? up_modifier
3785 : down_modifier));
3787 XSETINT (result->x, event->x);
3788 XSETINT (result->y, event->y);
3789 XSETFRAME (result->frame_or_window, f);
3790 result->arg = Qnil;
3791 return Qnil;
3795 /* Function to report a mouse movement to the mainstream Emacs code.
3796 The input handler calls this.
3798 We have received a mouse movement event, which is given in *event.
3799 If the mouse is over a different glyph than it was last time, tell
3800 the mainstream emacs code by setting mouse_moved. If not, ask for
3801 another motion event, so we can check again the next time it moves. */
3803 static XMotionEvent last_mouse_motion_event;
3804 static Lisp_Object last_mouse_motion_frame;
3806 static int
3807 note_mouse_movement (FRAME_PTR frame, XMotionEvent *event)
3809 last_mouse_movement_time = event->time;
3810 last_mouse_motion_event = *event;
3811 XSETFRAME (last_mouse_motion_frame, frame);
3813 if (!FRAME_X_OUTPUT (frame))
3814 return 0;
3816 if (event->window != FRAME_X_WINDOW (frame))
3818 frame->mouse_moved = 1;
3819 last_mouse_scroll_bar = Qnil;
3820 note_mouse_highlight (frame, -1, -1);
3821 last_mouse_glyph_frame = 0;
3822 return 1;
3826 /* Has the mouse moved off the glyph it was on at the last sighting? */
3827 if (frame != last_mouse_glyph_frame
3828 || event->x < last_mouse_glyph.x
3829 || event->x >= last_mouse_glyph.x + last_mouse_glyph.width
3830 || event->y < last_mouse_glyph.y
3831 || event->y >= last_mouse_glyph.y + last_mouse_glyph.height)
3833 frame->mouse_moved = 1;
3834 last_mouse_scroll_bar = Qnil;
3835 note_mouse_highlight (frame, event->x, event->y);
3836 /* Remember which glyph we're now on. */
3837 remember_mouse_glyph (frame, event->x, event->y, &last_mouse_glyph);
3838 last_mouse_glyph_frame = frame;
3839 return 1;
3842 return 0;
3846 /************************************************************************
3847 Mouse Face
3848 ************************************************************************/
3850 static void
3851 redo_mouse_highlight (void)
3853 if (!NILP (last_mouse_motion_frame)
3854 && FRAME_LIVE_P (XFRAME (last_mouse_motion_frame)))
3855 note_mouse_highlight (XFRAME (last_mouse_motion_frame),
3856 last_mouse_motion_event.x,
3857 last_mouse_motion_event.y);
3862 /* Return the current position of the mouse.
3863 *FP should be a frame which indicates which display to ask about.
3865 If the mouse movement started in a scroll bar, set *FP, *BAR_WINDOW,
3866 and *PART to the frame, window, and scroll bar part that the mouse
3867 is over. Set *X and *Y to the portion and whole of the mouse's
3868 position on the scroll bar.
3870 If the mouse movement started elsewhere, set *FP to the frame the
3871 mouse is on, *BAR_WINDOW to nil, and *X and *Y to the character cell
3872 the mouse is over.
3874 Set *TIMESTAMP to the server time-stamp for the time at which the mouse
3875 was at this position.
3877 Don't store anything if we don't have a valid set of values to report.
3879 This clears the mouse_moved flag, so we can wait for the next mouse
3880 movement. */
3882 static void
3883 XTmouse_position (FRAME_PTR *fp, int insist, Lisp_Object *bar_window,
3884 enum scroll_bar_part *part, Lisp_Object *x, Lisp_Object *y,
3885 Time *timestamp)
3887 FRAME_PTR f1;
3889 block_input ();
3891 if (! NILP (last_mouse_scroll_bar) && insist == 0)
3892 x_scroll_bar_report_motion (fp, bar_window, part, x, y, timestamp);
3893 else
3895 Window root;
3896 int root_x, root_y;
3898 Window dummy_window;
3899 int dummy;
3901 Lisp_Object frame, tail;
3903 /* Clear the mouse-moved flag for every frame on this display. */
3904 FOR_EACH_FRAME (tail, frame)
3905 if (FRAME_X_P (XFRAME (frame))
3906 && FRAME_X_DISPLAY (XFRAME (frame)) == FRAME_X_DISPLAY (*fp))
3907 XFRAME (frame)->mouse_moved = 0;
3909 last_mouse_scroll_bar = Qnil;
3911 /* Figure out which root window we're on. */
3912 XQueryPointer (FRAME_X_DISPLAY (*fp),
3913 DefaultRootWindow (FRAME_X_DISPLAY (*fp)),
3915 /* The root window which contains the pointer. */
3916 &root,
3918 /* Trash which we can't trust if the pointer is on
3919 a different screen. */
3920 &dummy_window,
3922 /* The position on that root window. */
3923 &root_x, &root_y,
3925 /* More trash we can't trust. */
3926 &dummy, &dummy,
3928 /* Modifier keys and pointer buttons, about which
3929 we don't care. */
3930 (unsigned int *) &dummy);
3932 /* Now we have a position on the root; find the innermost window
3933 containing the pointer. */
3935 Window win, child;
3936 int win_x, win_y;
3937 int parent_x = 0, parent_y = 0;
3939 win = root;
3941 /* XTranslateCoordinates can get errors if the window
3942 structure is changing at the same time this function
3943 is running. So at least we must not crash from them. */
3945 x_catch_errors (FRAME_X_DISPLAY (*fp));
3947 if (FRAME_X_DISPLAY_INFO (*fp)->grabbed && last_mouse_frame
3948 && FRAME_LIVE_P (last_mouse_frame))
3950 /* If mouse was grabbed on a frame, give coords for that frame
3951 even if the mouse is now outside it. */
3952 XTranslateCoordinates (FRAME_X_DISPLAY (*fp),
3954 /* From-window, to-window. */
3955 root, FRAME_X_WINDOW (last_mouse_frame),
3957 /* From-position, to-position. */
3958 root_x, root_y, &win_x, &win_y,
3960 /* Child of win. */
3961 &child);
3962 f1 = last_mouse_frame;
3964 else
3966 while (1)
3968 XTranslateCoordinates (FRAME_X_DISPLAY (*fp),
3970 /* From-window, to-window. */
3971 root, win,
3973 /* From-position, to-position. */
3974 root_x, root_y, &win_x, &win_y,
3976 /* Child of win. */
3977 &child);
3979 if (child == None || child == win)
3980 break;
3981 #ifdef USE_GTK
3982 /* We don't wan't to know the innermost window. We
3983 want the edit window. For non-Gtk+ the innermost
3984 window is the edit window. For Gtk+ it might not
3985 be. It might be the tool bar for example. */
3986 if (x_window_to_frame (FRAME_X_DISPLAY_INFO (*fp), win))
3987 break;
3988 #endif
3989 win = child;
3990 parent_x = win_x;
3991 parent_y = win_y;
3994 /* Now we know that:
3995 win is the innermost window containing the pointer
3996 (XTC says it has no child containing the pointer),
3997 win_x and win_y are the pointer's position in it
3998 (XTC did this the last time through), and
3999 parent_x and parent_y are the pointer's position in win's parent.
4000 (They are what win_x and win_y were when win was child.
4001 If win is the root window, it has no parent, and
4002 parent_{x,y} are invalid, but that's okay, because we'll
4003 never use them in that case.) */
4005 #ifdef USE_GTK
4006 /* We don't wan't to know the innermost window. We
4007 want the edit window. */
4008 f1 = x_window_to_frame (FRAME_X_DISPLAY_INFO (*fp), win);
4009 #else
4010 /* Is win one of our frames? */
4011 f1 = x_any_window_to_frame (FRAME_X_DISPLAY_INFO (*fp), win);
4012 #endif
4014 #ifdef USE_X_TOOLKIT
4015 /* If we end up with the menu bar window, say it's not
4016 on the frame. */
4017 if (f1 != NULL
4018 && f1->output_data.x->menubar_widget
4019 && win == XtWindow (f1->output_data.x->menubar_widget))
4020 f1 = NULL;
4021 #endif /* USE_X_TOOLKIT */
4024 if (x_had_errors_p (FRAME_X_DISPLAY (*fp)))
4025 f1 = 0;
4027 x_uncatch_errors ();
4029 /* If not, is it one of our scroll bars? */
4030 if (! f1)
4032 struct scroll_bar *bar;
4034 bar = x_window_to_scroll_bar (FRAME_X_DISPLAY (*fp), win);
4036 if (bar)
4038 f1 = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
4039 win_x = parent_x;
4040 win_y = parent_y;
4044 if (f1 == 0 && insist > 0)
4045 f1 = SELECTED_FRAME ();
4047 if (f1)
4049 /* Ok, we found a frame. Store all the values.
4050 last_mouse_glyph is a rectangle used to reduce the
4051 generation of mouse events. To not miss any motion
4052 events, we must divide the frame into rectangles of the
4053 size of the smallest character that could be displayed
4054 on it, i.e. into the same rectangles that matrices on
4055 the frame are divided into. */
4057 remember_mouse_glyph (f1, win_x, win_y, &last_mouse_glyph);
4058 last_mouse_glyph_frame = f1;
4060 *bar_window = Qnil;
4061 *part = 0;
4062 *fp = f1;
4063 XSETINT (*x, win_x);
4064 XSETINT (*y, win_y);
4065 *timestamp = last_mouse_movement_time;
4070 unblock_input ();
4075 /***********************************************************************
4076 Scroll bars
4077 ***********************************************************************/
4079 /* Scroll bar support. */
4081 /* Given an X window ID and a DISPLAY, find the struct scroll_bar which
4082 manages it.
4083 This can be called in GC, so we have to make sure to strip off mark
4084 bits. */
4086 static struct scroll_bar *
4087 x_window_to_scroll_bar (Display *display, Window window_id)
4089 Lisp_Object tail, frame;
4091 #if defined (USE_GTK) && defined (USE_TOOLKIT_SCROLL_BARS)
4092 window_id = (Window) xg_get_scroll_id_for_window (display, window_id);
4093 #endif /* USE_GTK && USE_TOOLKIT_SCROLL_BARS */
4095 FOR_EACH_FRAME (tail, frame)
4097 Lisp_Object bar, condemned;
4099 if (! FRAME_X_P (XFRAME (frame)))
4100 continue;
4102 /* Scan this frame's scroll bar list for a scroll bar with the
4103 right window ID. */
4104 condemned = FRAME_CONDEMNED_SCROLL_BARS (XFRAME (frame));
4105 for (bar = FRAME_SCROLL_BARS (XFRAME (frame));
4106 /* This trick allows us to search both the ordinary and
4107 condemned scroll bar lists with one loop. */
4108 ! NILP (bar) || (bar = condemned,
4109 condemned = Qnil,
4110 ! NILP (bar));
4111 bar = XSCROLL_BAR (bar)->next)
4112 if (XSCROLL_BAR (bar)->x_window == window_id &&
4113 FRAME_X_DISPLAY (XFRAME (frame)) == display)
4114 return XSCROLL_BAR (bar);
4117 return NULL;
4121 #if defined USE_LUCID
4123 /* Return the Lucid menu bar WINDOW is part of. Return null
4124 if WINDOW is not part of a menu bar. */
4126 static Widget
4127 x_window_to_menu_bar (Window window)
4129 Lisp_Object tail, frame;
4131 FOR_EACH_FRAME (tail, frame)
4132 if (FRAME_X_P (XFRAME (frame)))
4134 Widget menu_bar = XFRAME (frame)->output_data.x->menubar_widget;
4136 if (menu_bar && xlwmenu_window_p (menu_bar, window))
4137 return menu_bar;
4139 return NULL;
4142 #endif /* USE_LUCID */
4145 /************************************************************************
4146 Toolkit scroll bars
4147 ************************************************************************/
4149 #ifdef USE_TOOLKIT_SCROLL_BARS
4151 static void x_scroll_bar_to_input_event (XEvent *, struct input_event *);
4152 static void x_send_scroll_bar_event (Lisp_Object, int, int, int);
4153 static void x_create_toolkit_scroll_bar (struct frame *,
4154 struct scroll_bar *);
4155 static void x_set_toolkit_scroll_bar_thumb (struct scroll_bar *,
4156 int, int, int);
4159 /* Lisp window being scrolled. Set when starting to interact with
4160 a toolkit scroll bar, reset to nil when ending the interaction. */
4162 static Lisp_Object window_being_scrolled;
4164 /* Last scroll bar part sent in xm_scroll_callback. */
4166 static int last_scroll_bar_part;
4168 /* Whether this is an Xaw with arrow-scrollbars. This should imply
4169 that movements of 1/20 of the screen size are mapped to up/down. */
4171 #ifndef USE_GTK
4172 /* Id of action hook installed for scroll bars. */
4174 static XtActionHookId action_hook_id;
4176 static Boolean xaw3d_arrow_scroll;
4178 /* Whether the drag scrolling maintains the mouse at the top of the
4179 thumb. If not, resizing the thumb needs to be done more carefully
4180 to avoid jerkiness. */
4182 static Boolean xaw3d_pick_top;
4184 /* Action hook installed via XtAppAddActionHook when toolkit scroll
4185 bars are used.. The hook is responsible for detecting when
4186 the user ends an interaction with the scroll bar, and generates
4187 a `end-scroll' SCROLL_BAR_CLICK_EVENT' event if so. */
4189 static void
4190 xt_action_hook (Widget widget, XtPointer client_data, String action_name,
4191 XEvent *event, String *params, Cardinal *num_params)
4193 int scroll_bar_p;
4194 const char *end_action;
4196 #ifdef USE_MOTIF
4197 scroll_bar_p = XmIsScrollBar (widget);
4198 end_action = "Release";
4199 #else /* !USE_MOTIF i.e. use Xaw */
4200 scroll_bar_p = XtIsSubclass (widget, scrollbarWidgetClass);
4201 end_action = "EndScroll";
4202 #endif /* USE_MOTIF */
4204 if (scroll_bar_p
4205 && strcmp (action_name, end_action) == 0
4206 && WINDOWP (window_being_scrolled))
4208 struct window *w;
4210 x_send_scroll_bar_event (window_being_scrolled,
4211 scroll_bar_end_scroll, 0, 0);
4212 w = XWINDOW (window_being_scrolled);
4214 if (!NILP (XSCROLL_BAR (w->vertical_scroll_bar)->dragging))
4216 XSCROLL_BAR (w->vertical_scroll_bar)->dragging = Qnil;
4217 /* The thumb size is incorrect while dragging: fix it. */
4218 set_vertical_scroll_bar (w);
4220 window_being_scrolled = Qnil;
4221 last_scroll_bar_part = -1;
4223 /* Xt timeouts no longer needed. */
4224 toolkit_scroll_bar_interaction = 0;
4227 #endif /* not USE_GTK */
4229 /* A vector of windows used for communication between
4230 x_send_scroll_bar_event and x_scroll_bar_to_input_event. */
4232 static struct window **scroll_bar_windows;
4233 static ptrdiff_t scroll_bar_windows_size;
4236 /* Send a client message with message type Xatom_Scrollbar for a
4237 scroll action to the frame of WINDOW. PART is a value identifying
4238 the part of the scroll bar that was clicked on. PORTION is the
4239 amount to scroll of a whole of WHOLE. */
4241 static void
4242 x_send_scroll_bar_event (Lisp_Object window, int part, int portion, int whole)
4244 XEvent event;
4245 XClientMessageEvent *ev = (XClientMessageEvent *) &event;
4246 struct window *w = XWINDOW (window);
4247 struct frame *f = XFRAME (w->frame);
4248 ptrdiff_t i;
4250 block_input ();
4252 /* Construct a ClientMessage event to send to the frame. */
4253 ev->type = ClientMessage;
4254 ev->message_type = FRAME_X_DISPLAY_INFO (f)->Xatom_Scrollbar;
4255 ev->display = FRAME_X_DISPLAY (f);
4256 ev->window = FRAME_X_WINDOW (f);
4257 ev->format = 32;
4259 /* We can only transfer 32 bits in the XClientMessageEvent, which is
4260 not enough to store a pointer or Lisp_Object on a 64 bit system.
4261 So, store the window in scroll_bar_windows and pass the index
4262 into that array in the event. */
4263 for (i = 0; i < scroll_bar_windows_size; ++i)
4264 if (scroll_bar_windows[i] == NULL)
4265 break;
4267 if (i == scroll_bar_windows_size)
4269 ptrdiff_t old_nbytes =
4270 scroll_bar_windows_size * sizeof *scroll_bar_windows;
4271 ptrdiff_t nbytes;
4272 enum { XClientMessageEvent_MAX = 0x7fffffff };
4273 scroll_bar_windows =
4274 xpalloc (scroll_bar_windows, &scroll_bar_windows_size, 1,
4275 XClientMessageEvent_MAX, sizeof *scroll_bar_windows);
4276 nbytes = scroll_bar_windows_size * sizeof *scroll_bar_windows;
4277 memset (&scroll_bar_windows[i], 0, nbytes - old_nbytes);
4280 scroll_bar_windows[i] = w;
4281 ev->data.l[0] = (long) i;
4282 ev->data.l[1] = (long) part;
4283 ev->data.l[2] = (long) 0;
4284 ev->data.l[3] = (long) portion;
4285 ev->data.l[4] = (long) whole;
4287 /* Make Xt timeouts work while the scroll bar is active. */
4288 #ifdef USE_X_TOOLKIT
4289 toolkit_scroll_bar_interaction = 1;
4290 x_activate_timeout_atimer ();
4291 #endif
4293 /* Setting the event mask to zero means that the message will
4294 be sent to the client that created the window, and if that
4295 window no longer exists, no event will be sent. */
4296 XSendEvent (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), False, 0, &event);
4297 unblock_input ();
4301 /* Transform a scroll bar ClientMessage EVENT to an Emacs input event
4302 in *IEVENT. */
4304 static void
4305 x_scroll_bar_to_input_event (XEvent *event, struct input_event *ievent)
4307 XClientMessageEvent *ev = (XClientMessageEvent *) event;
4308 Lisp_Object window;
4309 struct window *w;
4311 w = scroll_bar_windows[ev->data.l[0]];
4312 scroll_bar_windows[ev->data.l[0]] = NULL;
4314 XSETWINDOW (window, w);
4316 ievent->kind = SCROLL_BAR_CLICK_EVENT;
4317 ievent->frame_or_window = window;
4318 ievent->arg = Qnil;
4319 #ifdef USE_GTK
4320 ievent->timestamp = CurrentTime;
4321 #else
4322 ievent->timestamp =
4323 XtLastTimestampProcessed (FRAME_X_DISPLAY (XFRAME (w->frame)));
4324 #endif
4325 ievent->part = ev->data.l[1];
4326 ievent->code = ev->data.l[2];
4327 ievent->x = make_number ((int) ev->data.l[3]);
4328 ievent->y = make_number ((int) ev->data.l[4]);
4329 ievent->modifiers = 0;
4333 #ifdef USE_MOTIF
4335 /* Minimum and maximum values used for Motif scroll bars. */
4337 #define XM_SB_MAX 10000000
4340 /* Scroll bar callback for Motif scroll bars. WIDGET is the scroll
4341 bar widget. CLIENT_DATA is a pointer to the scroll_bar structure.
4342 CALL_DATA is a pointer to a XmScrollBarCallbackStruct. */
4344 static void
4345 xm_scroll_callback (Widget widget, XtPointer client_data, XtPointer call_data)
4347 struct scroll_bar *bar = (struct scroll_bar *) client_data;
4348 XmScrollBarCallbackStruct *cs = (XmScrollBarCallbackStruct *) call_data;
4349 int part = -1, whole = 0, portion = 0;
4351 switch (cs->reason)
4353 case XmCR_DECREMENT:
4354 bar->dragging = Qnil;
4355 part = scroll_bar_up_arrow;
4356 break;
4358 case XmCR_INCREMENT:
4359 bar->dragging = Qnil;
4360 part = scroll_bar_down_arrow;
4361 break;
4363 case XmCR_PAGE_DECREMENT:
4364 bar->dragging = Qnil;
4365 part = scroll_bar_above_handle;
4366 break;
4368 case XmCR_PAGE_INCREMENT:
4369 bar->dragging = Qnil;
4370 part = scroll_bar_below_handle;
4371 break;
4373 case XmCR_TO_TOP:
4374 bar->dragging = Qnil;
4375 part = scroll_bar_to_top;
4376 break;
4378 case XmCR_TO_BOTTOM:
4379 bar->dragging = Qnil;
4380 part = scroll_bar_to_bottom;
4381 break;
4383 case XmCR_DRAG:
4385 int slider_size;
4387 /* Get the slider size. */
4388 block_input ();
4389 XtVaGetValues (widget, XmNsliderSize, &slider_size, NULL);
4390 unblock_input ();
4392 whole = XM_SB_MAX - slider_size;
4393 portion = min (cs->value, whole);
4394 part = scroll_bar_handle;
4395 bar->dragging = make_number (cs->value);
4397 break;
4399 case XmCR_VALUE_CHANGED:
4400 break;
4403 if (part >= 0)
4405 window_being_scrolled = bar->window;
4406 last_scroll_bar_part = part;
4407 x_send_scroll_bar_event (bar->window, part, portion, whole);
4411 #elif defined USE_GTK
4413 /* Scroll bar callback for GTK scroll bars. WIDGET is the scroll
4414 bar widget. DATA is a pointer to the scroll_bar structure. */
4416 static gboolean
4417 xg_scroll_callback (GtkRange *range,
4418 GtkScrollType scroll,
4419 gdouble value,
4420 gpointer user_data)
4422 struct scroll_bar *bar = (struct scroll_bar *) user_data;
4423 gdouble position;
4424 int part = -1, whole = 0, portion = 0;
4425 GtkAdjustment *adj = GTK_ADJUSTMENT (gtk_range_get_adjustment (range));
4426 FRAME_PTR f = (FRAME_PTR) g_object_get_data (G_OBJECT (range), XG_FRAME_DATA);
4428 if (xg_ignore_gtk_scrollbar) return FALSE;
4429 position = gtk_adjustment_get_value (adj);
4432 switch (scroll)
4434 case GTK_SCROLL_JUMP:
4435 /* Buttons 1 2 or 3 must be grabbed. */
4436 if (FRAME_X_DISPLAY_INFO (f)->grabbed != 0
4437 && FRAME_X_DISPLAY_INFO (f)->grabbed < (1 << 4))
4439 part = scroll_bar_handle;
4440 whole = gtk_adjustment_get_upper (adj) -
4441 gtk_adjustment_get_page_size (adj);
4442 portion = min ((int)position, whole);
4443 bar->dragging = make_number ((int)portion);
4445 break;
4446 case GTK_SCROLL_STEP_BACKWARD:
4447 part = scroll_bar_up_arrow;
4448 bar->dragging = Qnil;
4449 break;
4450 case GTK_SCROLL_STEP_FORWARD:
4451 part = scroll_bar_down_arrow;
4452 bar->dragging = Qnil;
4453 break;
4454 case GTK_SCROLL_PAGE_BACKWARD:
4455 part = scroll_bar_above_handle;
4456 bar->dragging = Qnil;
4457 break;
4458 case GTK_SCROLL_PAGE_FORWARD:
4459 part = scroll_bar_below_handle;
4460 bar->dragging = Qnil;
4461 break;
4464 if (part >= 0)
4466 window_being_scrolled = bar->window;
4467 last_scroll_bar_part = part;
4468 x_send_scroll_bar_event (bar->window, part, portion, whole);
4471 return FALSE;
4474 /* Callback for button release. Sets dragging to Qnil when dragging is done. */
4476 static gboolean
4477 xg_end_scroll_callback (GtkWidget *widget,
4478 GdkEventButton *event,
4479 gpointer user_data)
4481 struct scroll_bar *bar = (struct scroll_bar *) user_data;
4482 bar->dragging = Qnil;
4483 if (WINDOWP (window_being_scrolled))
4485 x_send_scroll_bar_event (window_being_scrolled,
4486 scroll_bar_end_scroll, 0, 0);
4487 window_being_scrolled = Qnil;
4490 return FALSE;
4494 #else /* not USE_GTK and not USE_MOTIF */
4496 /* Xaw scroll bar callback. Invoked when the thumb is dragged.
4497 WIDGET is the scroll bar widget. CLIENT_DATA is a pointer to the
4498 scroll bar struct. CALL_DATA is a pointer to a float saying where
4499 the thumb is. */
4501 static void
4502 xaw_jump_callback (Widget widget, XtPointer client_data, XtPointer call_data)
4504 struct scroll_bar *bar = (struct scroll_bar *) client_data;
4505 float top = *(float *) call_data;
4506 float shown;
4507 int whole, portion, height;
4508 int part;
4510 /* Get the size of the thumb, a value between 0 and 1. */
4511 block_input ();
4512 XtVaGetValues (widget, XtNshown, &shown, XtNheight, &height, NULL);
4513 unblock_input ();
4515 whole = 10000000;
4516 portion = shown < 1 ? top * whole : 0;
4518 if (shown < 1 && (eabs (top + shown - 1) < 1.0f / height))
4519 /* Some derivatives of Xaw refuse to shrink the thumb when you reach
4520 the bottom, so we force the scrolling whenever we see that we're
4521 too close to the bottom (in x_set_toolkit_scroll_bar_thumb
4522 we try to ensure that we always stay two pixels away from the
4523 bottom). */
4524 part = scroll_bar_down_arrow;
4525 else
4526 part = scroll_bar_handle;
4528 window_being_scrolled = bar->window;
4529 bar->dragging = make_number (portion);
4530 last_scroll_bar_part = part;
4531 x_send_scroll_bar_event (bar->window, part, portion, whole);
4535 /* Xaw scroll bar callback. Invoked for incremental scrolling.,
4536 i.e. line or page up or down. WIDGET is the Xaw scroll bar
4537 widget. CLIENT_DATA is a pointer to the scroll_bar structure for
4538 the scroll bar. CALL_DATA is an integer specifying the action that
4539 has taken place. Its magnitude is in the range 0..height of the
4540 scroll bar. Negative values mean scroll towards buffer start.
4541 Values < height of scroll bar mean line-wise movement. */
4543 static void
4544 xaw_scroll_callback (Widget widget, XtPointer client_data, XtPointer call_data)
4546 struct scroll_bar *bar = (struct scroll_bar *) client_data;
4547 /* The position really is stored cast to a pointer. */
4548 int position = (long) call_data;
4549 Dimension height;
4550 int part;
4552 /* Get the height of the scroll bar. */
4553 block_input ();
4554 XtVaGetValues (widget, XtNheight, &height, NULL);
4555 unblock_input ();
4557 if (eabs (position) >= height)
4558 part = (position < 0) ? scroll_bar_above_handle : scroll_bar_below_handle;
4560 /* If Xaw3d was compiled with ARROW_SCROLLBAR,
4561 it maps line-movement to call_data = max(5, height/20). */
4562 else if (xaw3d_arrow_scroll && eabs (position) <= max (5, height / 20))
4563 part = (position < 0) ? scroll_bar_up_arrow : scroll_bar_down_arrow;
4564 else
4565 part = scroll_bar_move_ratio;
4567 window_being_scrolled = bar->window;
4568 bar->dragging = Qnil;
4569 last_scroll_bar_part = part;
4570 x_send_scroll_bar_event (bar->window, part, position, height);
4573 #endif /* not USE_GTK and not USE_MOTIF */
4575 #define SCROLL_BAR_NAME "verticalScrollBar"
4577 /* Create the widget for scroll bar BAR on frame F. Record the widget
4578 and X window of the scroll bar in BAR. */
4580 #ifdef USE_GTK
4581 static void
4582 x_create_toolkit_scroll_bar (struct frame *f, struct scroll_bar *bar)
4584 const char *scroll_bar_name = SCROLL_BAR_NAME;
4586 block_input ();
4587 xg_create_scroll_bar (f, bar, G_CALLBACK (xg_scroll_callback),
4588 G_CALLBACK (xg_end_scroll_callback),
4589 scroll_bar_name);
4590 unblock_input ();
4593 #else /* not USE_GTK */
4595 static void
4596 x_create_toolkit_scroll_bar (struct frame *f, struct scroll_bar *bar)
4598 Window xwindow;
4599 Widget widget;
4600 Arg av[20];
4601 int ac = 0;
4602 const char *scroll_bar_name = SCROLL_BAR_NAME;
4603 unsigned long pixel;
4605 block_input ();
4607 #ifdef USE_MOTIF
4608 /* Set resources. Create the widget. */
4609 XtSetArg (av[ac], XtNmappedWhenManaged, False); ++ac;
4610 XtSetArg (av[ac], XmNminimum, 0); ++ac;
4611 XtSetArg (av[ac], XmNmaximum, XM_SB_MAX); ++ac;
4612 XtSetArg (av[ac], XmNorientation, XmVERTICAL); ++ac;
4613 XtSetArg (av[ac], XmNprocessingDirection, XmMAX_ON_BOTTOM), ++ac;
4614 XtSetArg (av[ac], XmNincrement, 1); ++ac;
4615 XtSetArg (av[ac], XmNpageIncrement, 1); ++ac;
4617 pixel = f->output_data.x->scroll_bar_foreground_pixel;
4618 if (pixel != -1)
4620 XtSetArg (av[ac], XmNforeground, pixel);
4621 ++ac;
4624 pixel = f->output_data.x->scroll_bar_background_pixel;
4625 if (pixel != -1)
4627 XtSetArg (av[ac], XmNbackground, pixel);
4628 ++ac;
4631 widget = XmCreateScrollBar (f->output_data.x->edit_widget,
4632 (char *) scroll_bar_name, av, ac);
4634 /* Add one callback for everything that can happen. */
4635 XtAddCallback (widget, XmNdecrementCallback, xm_scroll_callback,
4636 (XtPointer) bar);
4637 XtAddCallback (widget, XmNdragCallback, xm_scroll_callback,
4638 (XtPointer) bar);
4639 XtAddCallback (widget, XmNincrementCallback, xm_scroll_callback,
4640 (XtPointer) bar);
4641 XtAddCallback (widget, XmNpageDecrementCallback, xm_scroll_callback,
4642 (XtPointer) bar);
4643 XtAddCallback (widget, XmNpageIncrementCallback, xm_scroll_callback,
4644 (XtPointer) bar);
4645 XtAddCallback (widget, XmNtoBottomCallback, xm_scroll_callback,
4646 (XtPointer) bar);
4647 XtAddCallback (widget, XmNtoTopCallback, xm_scroll_callback,
4648 (XtPointer) bar);
4650 /* Realize the widget. Only after that is the X window created. */
4651 XtRealizeWidget (widget);
4653 /* Set the cursor to an arrow. I didn't find a resource to do that.
4654 And I'm wondering why it hasn't an arrow cursor by default. */
4655 XDefineCursor (XtDisplay (widget), XtWindow (widget),
4656 f->output_data.x->nontext_cursor);
4658 #else /* !USE_MOTIF i.e. use Xaw */
4660 /* Set resources. Create the widget. The background of the
4661 Xaw3d scroll bar widget is a little bit light for my taste.
4662 We don't alter it here to let users change it according
4663 to their taste with `emacs*verticalScrollBar.background: xxx'. */
4664 XtSetArg (av[ac], XtNmappedWhenManaged, False); ++ac;
4665 XtSetArg (av[ac], XtNorientation, XtorientVertical); ++ac;
4666 /* For smoother scrolling with Xaw3d -sm */
4667 /* XtSetArg (av[ac], XtNpickTop, True); ++ac; */
4669 pixel = f->output_data.x->scroll_bar_foreground_pixel;
4670 if (pixel != -1)
4672 XtSetArg (av[ac], XtNforeground, pixel);
4673 ++ac;
4676 pixel = f->output_data.x->scroll_bar_background_pixel;
4677 if (pixel != -1)
4679 XtSetArg (av[ac], XtNbackground, pixel);
4680 ++ac;
4683 /* Top/bottom shadow colors. */
4685 /* Allocate them, if necessary. */
4686 if (f->output_data.x->scroll_bar_top_shadow_pixel == -1)
4688 pixel = f->output_data.x->scroll_bar_background_pixel;
4689 if (pixel != -1)
4691 if (!x_alloc_lighter_color (f, FRAME_X_DISPLAY (f),
4692 FRAME_X_COLORMAP (f),
4693 &pixel, 1.2, 0x8000))
4694 pixel = -1;
4695 f->output_data.x->scroll_bar_top_shadow_pixel = pixel;
4698 if (f->output_data.x->scroll_bar_bottom_shadow_pixel == -1)
4700 pixel = f->output_data.x->scroll_bar_background_pixel;
4701 if (pixel != -1)
4703 if (!x_alloc_lighter_color (f, FRAME_X_DISPLAY (f),
4704 FRAME_X_COLORMAP (f),
4705 &pixel, 0.6, 0x4000))
4706 pixel = -1;
4707 f->output_data.x->scroll_bar_bottom_shadow_pixel = pixel;
4711 #ifdef XtNbeNiceToColormap
4712 /* Tell the toolkit about them. */
4713 if (f->output_data.x->scroll_bar_top_shadow_pixel == -1
4714 || f->output_data.x->scroll_bar_bottom_shadow_pixel == -1)
4715 /* We tried to allocate a color for the top/bottom shadow, and
4716 failed, so tell Xaw3d to use dithering instead. */
4717 /* But only if we have a small colormap. Xaw3d can allocate nice
4718 colors itself. */
4720 XtSetArg (av[ac], XtNbeNiceToColormap,
4721 DefaultDepthOfScreen (FRAME_X_SCREEN (f)) < 16);
4722 ++ac;
4724 else
4725 /* Tell what colors Xaw3d should use for the top/bottom shadow, to
4726 be more consistent with other emacs 3d colors, and since Xaw3d is
4727 not good at dealing with allocation failure. */
4729 /* This tells Xaw3d to use real colors instead of dithering for
4730 the shadows. */
4731 XtSetArg (av[ac], XtNbeNiceToColormap, False);
4732 ++ac;
4734 /* Specify the colors. */
4735 pixel = f->output_data.x->scroll_bar_top_shadow_pixel;
4736 if (pixel != -1)
4738 XtSetArg (av[ac], XtNtopShadowPixel, pixel);
4739 ++ac;
4741 pixel = f->output_data.x->scroll_bar_bottom_shadow_pixel;
4742 if (pixel != -1)
4744 XtSetArg (av[ac], XtNbottomShadowPixel, pixel);
4745 ++ac;
4748 #endif
4750 widget = XtCreateWidget (scroll_bar_name, scrollbarWidgetClass,
4751 f->output_data.x->edit_widget, av, ac);
4754 char const *initial = "";
4755 char const *val = initial;
4756 XtVaGetValues (widget, XtNscrollVCursor, (XtPointer) &val,
4757 #ifdef XtNarrowScrollbars
4758 XtNarrowScrollbars, (XtPointer) &xaw3d_arrow_scroll,
4759 #endif
4760 XtNpickTop, (XtPointer) &xaw3d_pick_top, NULL);
4761 if (xaw3d_arrow_scroll || val == initial)
4762 { /* ARROW_SCROLL */
4763 xaw3d_arrow_scroll = True;
4764 /* Isn't that just a personal preference ? --Stef */
4765 XtVaSetValues (widget, XtNcursorName, "top_left_arrow", NULL);
4769 /* Define callbacks. */
4770 XtAddCallback (widget, XtNjumpProc, xaw_jump_callback, (XtPointer) bar);
4771 XtAddCallback (widget, XtNscrollProc, xaw_scroll_callback,
4772 (XtPointer) bar);
4774 /* Realize the widget. Only after that is the X window created. */
4775 XtRealizeWidget (widget);
4777 #endif /* !USE_MOTIF */
4779 /* Install an action hook that lets us detect when the user
4780 finishes interacting with a scroll bar. */
4781 if (action_hook_id == 0)
4782 action_hook_id = XtAppAddActionHook (Xt_app_con, xt_action_hook, 0);
4784 /* Remember X window and widget in the scroll bar vector. */
4785 SET_SCROLL_BAR_X_WIDGET (bar, widget);
4786 xwindow = XtWindow (widget);
4787 bar->x_window = xwindow;
4789 unblock_input ();
4791 #endif /* not USE_GTK */
4794 /* Set the thumb size and position of scroll bar BAR. We are currently
4795 displaying PORTION out of a whole WHOLE, and our position POSITION. */
4797 #ifdef USE_GTK
4798 static void
4799 x_set_toolkit_scroll_bar_thumb (struct scroll_bar *bar, int portion, int position, int whole)
4801 xg_set_toolkit_scroll_bar_thumb (bar, portion, position, whole);
4804 #else /* not USE_GTK */
4805 static void
4806 x_set_toolkit_scroll_bar_thumb (struct scroll_bar *bar, int portion, int position,
4807 int whole)
4809 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
4810 Widget widget = SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f), bar);
4811 float top, shown;
4813 block_input ();
4815 #ifdef USE_MOTIF
4817 if (scroll_bar_adjust_thumb_portion_p)
4819 /* We use an estimate of 30 chars per line rather than the real
4820 `portion' value. This has the disadvantage that the thumb size
4821 is not very representative, but it makes our life a lot easier.
4822 Otherwise, we have to constantly adjust the thumb size, which
4823 we can't always do quickly enough: while dragging, the size of
4824 the thumb might prevent the user from dragging the thumb all the
4825 way to the end. but Motif and some versions of Xaw3d don't allow
4826 updating the thumb size while dragging. Also, even if we can update
4827 its size, the update will often happen too late.
4828 If you don't believe it, check out revision 1.650 of xterm.c to see
4829 what hoops we were going through and the still poor behavior we got. */
4830 portion = WINDOW_TOTAL_LINES (XWINDOW (bar->window)) * 30;
4831 /* When the thumb is at the bottom, position == whole.
4832 So we need to increase `whole' to make space for the thumb. */
4833 whole += portion;
4836 if (whole <= 0)
4837 top = 0, shown = 1;
4838 else
4840 top = (float) position / whole;
4841 shown = (float) portion / whole;
4844 if (NILP (bar->dragging))
4846 int size, value;
4848 /* Slider size. Must be in the range [1 .. MAX - MIN] where MAX
4849 is the scroll bar's maximum and MIN is the scroll bar's minimum
4850 value. */
4851 size = clip_to_bounds (1, shown * XM_SB_MAX, XM_SB_MAX);
4853 /* Position. Must be in the range [MIN .. MAX - SLIDER_SIZE]. */
4854 value = top * XM_SB_MAX;
4855 value = min (value, XM_SB_MAX - size);
4857 XmScrollBarSetValues (widget, value, size, 0, 0, False);
4859 #else /* !USE_MOTIF i.e. use Xaw */
4861 if (whole == 0)
4862 top = 0, shown = 1;
4863 else
4865 top = (float) position / whole;
4866 shown = (float) portion / whole;
4870 float old_top, old_shown;
4871 Dimension height;
4872 XtVaGetValues (widget,
4873 XtNtopOfThumb, &old_top,
4874 XtNshown, &old_shown,
4875 XtNheight, &height,
4876 NULL);
4878 /* Massage the top+shown values. */
4879 if (NILP (bar->dragging) || last_scroll_bar_part == scroll_bar_down_arrow)
4880 top = max (0, min (1, top));
4881 else
4882 top = old_top;
4883 /* Keep two pixels available for moving the thumb down. */
4884 shown = max (0, min (1 - top - (2.0f / height), shown));
4886 /* If the call to XawScrollbarSetThumb below doesn't seem to work,
4887 check that your system's configuration file contains a define
4888 for `NARROWPROTO'. See s/freebsd.h for an example. */
4889 if (top != old_top || shown != old_shown)
4891 if (NILP (bar->dragging))
4892 XawScrollbarSetThumb (widget, top, shown);
4893 else
4895 /* Try to make the scrolling a tad smoother. */
4896 if (!xaw3d_pick_top)
4897 shown = min (shown, old_shown);
4899 XawScrollbarSetThumb (widget, top, shown);
4903 #endif /* !USE_MOTIF */
4905 unblock_input ();
4907 #endif /* not USE_GTK */
4909 #endif /* USE_TOOLKIT_SCROLL_BARS */
4913 /************************************************************************
4914 Scroll bars, general
4915 ************************************************************************/
4917 /* Create a scroll bar and return the scroll bar vector for it. W is
4918 the Emacs window on which to create the scroll bar. TOP, LEFT,
4919 WIDTH and HEIGHT are the pixel coordinates and dimensions of the
4920 scroll bar. */
4922 static struct scroll_bar *
4923 x_scroll_bar_create (struct window *w, int top, int left, int width, int height)
4925 struct frame *f = XFRAME (w->frame);
4926 struct scroll_bar *bar
4927 = ALLOCATE_PSEUDOVECTOR (struct scroll_bar, x_window, PVEC_OTHER);
4928 Lisp_Object barobj;
4930 block_input ();
4932 #ifdef USE_TOOLKIT_SCROLL_BARS
4933 x_create_toolkit_scroll_bar (f, bar);
4934 #else /* not USE_TOOLKIT_SCROLL_BARS */
4936 XSetWindowAttributes a;
4937 unsigned long mask;
4938 Window window;
4940 a.background_pixel = f->output_data.x->scroll_bar_background_pixel;
4941 if (a.background_pixel == -1)
4942 a.background_pixel = FRAME_BACKGROUND_PIXEL (f);
4944 a.event_mask = (ButtonPressMask | ButtonReleaseMask
4945 | ButtonMotionMask | PointerMotionHintMask
4946 | ExposureMask);
4947 a.cursor = FRAME_X_DISPLAY_INFO (f)->vertical_scroll_bar_cursor;
4949 mask = (CWBackPixel | CWEventMask | CWCursor);
4951 /* Clear the area of W that will serve as a scroll bar. This is
4952 for the case that a window has been split horizontally. In
4953 this case, no clear_frame is generated to reduce flickering. */
4954 if (width > 0 && height > 0)
4955 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
4956 left, top, width,
4957 window_box_height (w), False);
4959 window = XCreateWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
4960 /* Position and size of scroll bar. */
4961 left + VERTICAL_SCROLL_BAR_WIDTH_TRIM,
4962 top,
4963 width - VERTICAL_SCROLL_BAR_WIDTH_TRIM * 2,
4964 height,
4965 /* Border width, depth, class, and visual. */
4967 CopyFromParent,
4968 CopyFromParent,
4969 CopyFromParent,
4970 /* Attributes. */
4971 mask, &a);
4972 bar->x_window = window;
4974 #endif /* not USE_TOOLKIT_SCROLL_BARS */
4976 XSETWINDOW (bar->window, w);
4977 bar->top = top;
4978 bar->left = left;
4979 bar->width = width;
4980 bar->height = height;
4981 bar->start = 0;
4982 bar->end = 0;
4983 bar->dragging = Qnil;
4984 bar->fringe_extended_p = 0;
4986 /* Add bar to its frame's list of scroll bars. */
4987 bar->next = FRAME_SCROLL_BARS (f);
4988 bar->prev = Qnil;
4989 XSETVECTOR (barobj, bar);
4990 fset_scroll_bars (f, barobj);
4991 if (!NILP (bar->next))
4992 XSETVECTOR (XSCROLL_BAR (bar->next)->prev, bar);
4994 /* Map the window/widget. */
4995 #ifdef USE_TOOLKIT_SCROLL_BARS
4997 #ifdef USE_GTK
4998 xg_update_scrollbar_pos (f,
4999 bar->x_window,
5000 top,
5001 left + VERTICAL_SCROLL_BAR_WIDTH_TRIM,
5002 width - VERTICAL_SCROLL_BAR_WIDTH_TRIM * 2,
5003 max (height, 1));
5004 #else /* not USE_GTK */
5005 Widget scroll_bar = SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f), bar);
5006 XtConfigureWidget (scroll_bar,
5007 left + VERTICAL_SCROLL_BAR_WIDTH_TRIM,
5008 top,
5009 width - VERTICAL_SCROLL_BAR_WIDTH_TRIM * 2,
5010 max (height, 1), 0);
5011 XtMapWidget (scroll_bar);
5012 #endif /* not USE_GTK */
5014 #else /* not USE_TOOLKIT_SCROLL_BARS */
5015 XMapRaised (FRAME_X_DISPLAY (f), bar->x_window);
5016 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5018 unblock_input ();
5019 return bar;
5023 #ifndef USE_TOOLKIT_SCROLL_BARS
5025 /* Draw BAR's handle in the proper position.
5027 If the handle is already drawn from START to END, don't bother
5028 redrawing it, unless REBUILD is non-zero; in that case, always
5029 redraw it. (REBUILD is handy for drawing the handle after expose
5030 events.)
5032 Normally, we want to constrain the start and end of the handle to
5033 fit inside its rectangle, but if the user is dragging the scroll
5034 bar handle, we want to let them drag it down all the way, so that
5035 the bar's top is as far down as it goes; otherwise, there's no way
5036 to move to the very end of the buffer. */
5038 static void
5039 x_scroll_bar_set_handle (struct scroll_bar *bar, int start, int end, int rebuild)
5041 int dragging = ! NILP (bar->dragging);
5042 Window w = bar->x_window;
5043 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
5044 GC gc = f->output_data.x->normal_gc;
5046 /* If the display is already accurate, do nothing. */
5047 if (! rebuild
5048 && start == bar->start
5049 && end == bar->end)
5050 return;
5052 block_input ();
5055 int inside_width = VERTICAL_SCROLL_BAR_INSIDE_WIDTH (f, bar->width);
5056 int inside_height = VERTICAL_SCROLL_BAR_INSIDE_HEIGHT (f, bar->height);
5057 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, bar->height);
5059 /* Make sure the values are reasonable, and try to preserve
5060 the distance between start and end. */
5062 int length = end - start;
5064 if (start < 0)
5065 start = 0;
5066 else if (start > top_range)
5067 start = top_range;
5068 end = start + length;
5070 if (end < start)
5071 end = start;
5072 else if (end > top_range && ! dragging)
5073 end = top_range;
5076 /* Store the adjusted setting in the scroll bar. */
5077 bar->start = start;
5078 bar->end = end;
5080 /* Clip the end position, just for display. */
5081 if (end > top_range)
5082 end = top_range;
5084 /* Draw bottom positions VERTICAL_SCROLL_BAR_MIN_HANDLE pixels
5085 below top positions, to make sure the handle is always at least
5086 that many pixels tall. */
5087 end += VERTICAL_SCROLL_BAR_MIN_HANDLE;
5089 /* Draw the empty space above the handle. Note that we can't clear
5090 zero-height areas; that means "clear to end of window." */
5091 if (start > 0)
5092 x_clear_area (FRAME_X_DISPLAY (f), w,
5093 /* x, y, width, height, and exposures. */
5094 VERTICAL_SCROLL_BAR_LEFT_BORDER,
5095 VERTICAL_SCROLL_BAR_TOP_BORDER,
5096 inside_width, start,
5097 False);
5099 /* Change to proper foreground color if one is specified. */
5100 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
5101 XSetForeground (FRAME_X_DISPLAY (f), gc,
5102 f->output_data.x->scroll_bar_foreground_pixel);
5104 /* Draw the handle itself. */
5105 XFillRectangle (FRAME_X_DISPLAY (f), w, gc,
5106 /* x, y, width, height */
5107 VERTICAL_SCROLL_BAR_LEFT_BORDER,
5108 VERTICAL_SCROLL_BAR_TOP_BORDER + start,
5109 inside_width, end - start);
5111 /* Restore the foreground color of the GC if we changed it above. */
5112 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
5113 XSetForeground (FRAME_X_DISPLAY (f), gc,
5114 FRAME_FOREGROUND_PIXEL (f));
5116 /* Draw the empty space below the handle. Note that we can't
5117 clear zero-height areas; that means "clear to end of window." */
5118 if (end < inside_height)
5119 x_clear_area (FRAME_X_DISPLAY (f), w,
5120 /* x, y, width, height, and exposures. */
5121 VERTICAL_SCROLL_BAR_LEFT_BORDER,
5122 VERTICAL_SCROLL_BAR_TOP_BORDER + end,
5123 inside_width, inside_height - end,
5124 False);
5128 unblock_input ();
5131 #endif /* !USE_TOOLKIT_SCROLL_BARS */
5133 /* Destroy scroll bar BAR, and set its Emacs window's scroll bar to
5134 nil. */
5136 static void
5137 x_scroll_bar_remove (struct scroll_bar *bar)
5139 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
5140 block_input ();
5142 #ifdef USE_TOOLKIT_SCROLL_BARS
5143 #ifdef USE_GTK
5144 xg_remove_scroll_bar (f, bar->x_window);
5145 #else /* not USE_GTK */
5146 XtDestroyWidget (SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f), bar));
5147 #endif /* not USE_GTK */
5148 #else
5149 XDestroyWindow (FRAME_X_DISPLAY (f), bar->x_window);
5150 #endif
5152 /* Dissociate this scroll bar from its window. */
5153 wset_vertical_scroll_bar (XWINDOW (bar->window), Qnil);
5155 unblock_input ();
5159 /* Set the handle of the vertical scroll bar for WINDOW to indicate
5160 that we are displaying PORTION characters out of a total of WHOLE
5161 characters, starting at POSITION. If WINDOW has no scroll bar,
5162 create one. */
5164 static void
5165 XTset_vertical_scroll_bar (struct window *w, int portion, int whole, int position)
5167 struct frame *f = XFRAME (w->frame);
5168 Lisp_Object barobj;
5169 struct scroll_bar *bar;
5170 int top, height, left, sb_left, width, sb_width;
5171 int window_y, window_height;
5172 #ifdef USE_TOOLKIT_SCROLL_BARS
5173 int fringe_extended_p;
5174 #endif
5176 /* Get window dimensions. */
5177 window_box (w, -1, 0, &window_y, 0, &window_height);
5178 top = window_y;
5179 width = WINDOW_CONFIG_SCROLL_BAR_COLS (w) * FRAME_COLUMN_WIDTH (f);
5180 height = window_height;
5182 /* Compute the left edge of the scroll bar area. */
5183 left = WINDOW_SCROLL_BAR_AREA_X (w);
5185 /* Compute the width of the scroll bar which might be less than
5186 the width of the area reserved for the scroll bar. */
5187 if (WINDOW_CONFIG_SCROLL_BAR_WIDTH (w) > 0)
5188 sb_width = WINDOW_CONFIG_SCROLL_BAR_WIDTH (w);
5189 else
5190 sb_width = width;
5192 /* Compute the left edge of the scroll bar. */
5193 #ifdef USE_TOOLKIT_SCROLL_BARS
5194 if (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w))
5195 sb_left = left + (WINDOW_RIGHTMOST_P (w) ? width - sb_width : 0);
5196 else
5197 sb_left = left + (WINDOW_LEFTMOST_P (w) ? 0 : width - sb_width);
5198 #else
5199 if (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w))
5200 sb_left = left + width - sb_width;
5201 else
5202 sb_left = left;
5203 #endif
5205 #ifdef USE_TOOLKIT_SCROLL_BARS
5206 if (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w))
5207 fringe_extended_p = (WINDOW_LEFTMOST_P (w)
5208 && WINDOW_LEFT_FRINGE_WIDTH (w)
5209 && (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
5210 || WINDOW_LEFT_MARGIN_COLS (w) == 0));
5211 else
5212 fringe_extended_p = (WINDOW_RIGHTMOST_P (w)
5213 && WINDOW_RIGHT_FRINGE_WIDTH (w)
5214 && (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
5215 || WINDOW_RIGHT_MARGIN_COLS (w) == 0));
5216 #endif
5218 /* Does the scroll bar exist yet? */
5219 if (NILP (w->vertical_scroll_bar))
5221 if (width > 0 && height > 0)
5223 block_input ();
5224 #ifdef USE_TOOLKIT_SCROLL_BARS
5225 if (fringe_extended_p)
5226 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5227 sb_left, top, sb_width, height, False);
5228 else
5229 #endif
5230 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5231 left, top, width, height, False);
5232 unblock_input ();
5235 bar = x_scroll_bar_create (w, top, sb_left, sb_width, height);
5237 else
5239 /* It may just need to be moved and resized. */
5240 unsigned int mask = 0;
5242 bar = XSCROLL_BAR (w->vertical_scroll_bar);
5244 block_input ();
5246 if (sb_left != bar->left)
5247 mask |= CWX;
5248 if (top != bar->top)
5249 mask |= CWY;
5250 if (sb_width != bar->width)
5251 mask |= CWWidth;
5252 if (height != bar->height)
5253 mask |= CWHeight;
5255 #ifdef USE_TOOLKIT_SCROLL_BARS
5257 /* Move/size the scroll bar widget. */
5258 if (mask || bar->fringe_extended_p != fringe_extended_p)
5260 /* Since toolkit scroll bars are smaller than the space reserved
5261 for them on the frame, we have to clear "under" them. */
5262 if (width > 0 && height > 0)
5264 if (fringe_extended_p)
5265 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5266 sb_left, top, sb_width, height, False);
5267 else
5268 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5269 left, top, width, height, False);
5271 #ifdef USE_GTK
5272 xg_update_scrollbar_pos (f,
5273 bar->x_window,
5274 top,
5275 sb_left + VERTICAL_SCROLL_BAR_WIDTH_TRIM,
5276 sb_width - VERTICAL_SCROLL_BAR_WIDTH_TRIM *2,
5277 max (height, 1));
5278 #else /* not USE_GTK */
5279 XtConfigureWidget (SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f), bar),
5280 sb_left + VERTICAL_SCROLL_BAR_WIDTH_TRIM,
5281 top,
5282 sb_width - VERTICAL_SCROLL_BAR_WIDTH_TRIM * 2,
5283 max (height, 1), 0);
5284 #endif /* not USE_GTK */
5286 #else /* not USE_TOOLKIT_SCROLL_BARS */
5288 /* Clear areas not covered by the scroll bar because of
5289 VERTICAL_SCROLL_BAR_WIDTH_TRIM. */
5290 if (VERTICAL_SCROLL_BAR_WIDTH_TRIM)
5292 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5293 left, top, VERTICAL_SCROLL_BAR_WIDTH_TRIM,
5294 height, False);
5295 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5296 left + width - VERTICAL_SCROLL_BAR_WIDTH_TRIM,
5297 top, VERTICAL_SCROLL_BAR_WIDTH_TRIM,
5298 height, False);
5301 /* Clear areas not covered by the scroll bar because it's not as
5302 wide as the area reserved for it. This makes sure a
5303 previous mode line display is cleared after C-x 2 C-x 1, for
5304 example. */
5306 int area_width = WINDOW_CONFIG_SCROLL_BAR_COLS (w) * FRAME_COLUMN_WIDTH (f);
5307 int rest = area_width - sb_width;
5308 if (rest > 0 && height > 0)
5310 if (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w))
5311 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5312 left + area_width - rest, top,
5313 rest, height, False);
5314 else
5315 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5316 left, top, rest, height, False);
5320 /* Move/size the scroll bar window. */
5321 if (mask)
5323 XWindowChanges wc;
5325 wc.x = sb_left + VERTICAL_SCROLL_BAR_WIDTH_TRIM;
5326 wc.y = top;
5327 wc.width = sb_width - VERTICAL_SCROLL_BAR_WIDTH_TRIM * 2;
5328 wc.height = height;
5329 XConfigureWindow (FRAME_X_DISPLAY (f), bar->x_window,
5330 mask, &wc);
5333 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5335 /* Remember new settings. */
5336 bar->left = sb_left;
5337 bar->top = top;
5338 bar->width = sb_width;
5339 bar->height = height;
5341 unblock_input ();
5344 #ifdef USE_TOOLKIT_SCROLL_BARS
5345 bar->fringe_extended_p = fringe_extended_p;
5347 x_set_toolkit_scroll_bar_thumb (bar, portion, position, whole);
5348 #else /* not USE_TOOLKIT_SCROLL_BARS */
5349 /* Set the scroll bar's current state, unless we're currently being
5350 dragged. */
5351 if (NILP (bar->dragging))
5353 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, height);
5355 if (whole == 0)
5356 x_scroll_bar_set_handle (bar, 0, top_range, 0);
5357 else
5359 int start = ((double) position * top_range) / whole;
5360 int end = ((double) (position + portion) * top_range) / whole;
5361 x_scroll_bar_set_handle (bar, start, end, 0);
5364 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5366 XSETVECTOR (barobj, bar);
5367 wset_vertical_scroll_bar (w, barobj);
5371 /* The following three hooks are used when we're doing a thorough
5372 redisplay of the frame. We don't explicitly know which scroll bars
5373 are going to be deleted, because keeping track of when windows go
5374 away is a real pain - "Can you say set-window-configuration, boys
5375 and girls?" Instead, we just assert at the beginning of redisplay
5376 that *all* scroll bars are to be removed, and then save a scroll bar
5377 from the fiery pit when we actually redisplay its window. */
5379 /* Arrange for all scroll bars on FRAME to be removed at the next call
5380 to `*judge_scroll_bars_hook'. A scroll bar may be spared if
5381 `*redeem_scroll_bar_hook' is applied to its window before the judgment. */
5383 static void
5384 XTcondemn_scroll_bars (FRAME_PTR frame)
5386 /* Transfer all the scroll bars to FRAME_CONDEMNED_SCROLL_BARS. */
5387 while (! NILP (FRAME_SCROLL_BARS (frame)))
5389 Lisp_Object bar;
5390 bar = FRAME_SCROLL_BARS (frame);
5391 fset_scroll_bars (frame, XSCROLL_BAR (bar)->next);
5392 XSCROLL_BAR (bar)->next = FRAME_CONDEMNED_SCROLL_BARS (frame);
5393 XSCROLL_BAR (bar)->prev = Qnil;
5394 if (! NILP (FRAME_CONDEMNED_SCROLL_BARS (frame)))
5395 XSCROLL_BAR (FRAME_CONDEMNED_SCROLL_BARS (frame))->prev = bar;
5396 fset_condemned_scroll_bars (frame, bar);
5401 /* Un-mark WINDOW's scroll bar for deletion in this judgment cycle.
5402 Note that WINDOW isn't necessarily condemned at all. */
5404 static void
5405 XTredeem_scroll_bar (struct window *window)
5407 struct scroll_bar *bar;
5408 struct frame *f;
5409 Lisp_Object barobj;
5411 /* We can't redeem this window's scroll bar if it doesn't have one. */
5412 if (NILP (window->vertical_scroll_bar))
5413 emacs_abort ();
5415 bar = XSCROLL_BAR (window->vertical_scroll_bar);
5417 /* Unlink it from the condemned list. */
5418 f = XFRAME (WINDOW_FRAME (window));
5419 if (NILP (bar->prev))
5421 /* If the prev pointer is nil, it must be the first in one of
5422 the lists. */
5423 if (EQ (FRAME_SCROLL_BARS (f), window->vertical_scroll_bar))
5424 /* It's not condemned. Everything's fine. */
5425 return;
5426 else if (EQ (FRAME_CONDEMNED_SCROLL_BARS (f),
5427 window->vertical_scroll_bar))
5428 fset_condemned_scroll_bars (f, bar->next);
5429 else
5430 /* If its prev pointer is nil, it must be at the front of
5431 one or the other! */
5432 emacs_abort ();
5434 else
5435 XSCROLL_BAR (bar->prev)->next = bar->next;
5437 if (! NILP (bar->next))
5438 XSCROLL_BAR (bar->next)->prev = bar->prev;
5440 bar->next = FRAME_SCROLL_BARS (f);
5441 bar->prev = Qnil;
5442 XSETVECTOR (barobj, bar);
5443 fset_scroll_bars (f, barobj);
5444 if (! NILP (bar->next))
5445 XSETVECTOR (XSCROLL_BAR (bar->next)->prev, bar);
5448 /* Remove all scroll bars on FRAME that haven't been saved since the
5449 last call to `*condemn_scroll_bars_hook'. */
5451 static void
5452 XTjudge_scroll_bars (FRAME_PTR f)
5454 Lisp_Object bar, next;
5456 bar = FRAME_CONDEMNED_SCROLL_BARS (f);
5458 /* Clear out the condemned list now so we won't try to process any
5459 more events on the hapless scroll bars. */
5460 fset_condemned_scroll_bars (f, Qnil);
5462 for (; ! NILP (bar); bar = next)
5464 struct scroll_bar *b = XSCROLL_BAR (bar);
5466 x_scroll_bar_remove (b);
5468 next = b->next;
5469 b->next = b->prev = Qnil;
5472 /* Now there should be no references to the condemned scroll bars,
5473 and they should get garbage-collected. */
5477 #ifndef USE_TOOLKIT_SCROLL_BARS
5478 /* Handle an Expose or GraphicsExpose event on a scroll bar. This
5479 is a no-op when using toolkit scroll bars.
5481 This may be called from a signal handler, so we have to ignore GC
5482 mark bits. */
5484 static void
5485 x_scroll_bar_expose (struct scroll_bar *bar, XEvent *event)
5487 Window w = bar->x_window;
5488 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
5489 GC gc = f->output_data.x->normal_gc;
5490 int width_trim = VERTICAL_SCROLL_BAR_WIDTH_TRIM;
5492 block_input ();
5494 x_scroll_bar_set_handle (bar, bar->start, bar->end, 1);
5496 /* Switch to scroll bar foreground color. */
5497 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
5498 XSetForeground (FRAME_X_DISPLAY (f), gc,
5499 f->output_data.x->scroll_bar_foreground_pixel);
5501 /* Draw a one-pixel border just inside the edges of the scroll bar. */
5502 XDrawRectangle (FRAME_X_DISPLAY (f), w, gc,
5504 /* x, y, width, height */
5505 0, 0,
5506 bar->width - 1 - width_trim - width_trim,
5507 bar->height - 1);
5509 /* Restore the foreground color of the GC if we changed it above. */
5510 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
5511 XSetForeground (FRAME_X_DISPLAY (f), gc,
5512 FRAME_FOREGROUND_PIXEL (f));
5514 unblock_input ();
5517 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5519 /* Handle a mouse click on the scroll bar BAR. If *EMACS_EVENT's kind
5520 is set to something other than NO_EVENT, it is enqueued.
5522 This may be called from a signal handler, so we have to ignore GC
5523 mark bits. */
5526 static void
5527 x_scroll_bar_handle_click (struct scroll_bar *bar, XEvent *event, struct input_event *emacs_event)
5529 if (! WINDOWP (bar->window))
5530 emacs_abort ();
5532 emacs_event->kind = SCROLL_BAR_CLICK_EVENT;
5533 emacs_event->code = event->xbutton.button - Button1;
5534 emacs_event->modifiers
5535 = (x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO
5536 (XFRAME (WINDOW_FRAME (XWINDOW (bar->window)))),
5537 event->xbutton.state)
5538 | (event->type == ButtonRelease
5539 ? up_modifier
5540 : down_modifier));
5541 emacs_event->frame_or_window = bar->window;
5542 emacs_event->arg = Qnil;
5543 emacs_event->timestamp = event->xbutton.time;
5545 int top_range
5546 = VERTICAL_SCROLL_BAR_TOP_RANGE (f, bar->height);
5547 int y = event->xbutton.y - VERTICAL_SCROLL_BAR_TOP_BORDER;
5549 if (y < 0) y = 0;
5550 if (y > top_range) y = top_range;
5552 if (y < bar->start)
5553 emacs_event->part = scroll_bar_above_handle;
5554 else if (y < bar->end + VERTICAL_SCROLL_BAR_MIN_HANDLE)
5555 emacs_event->part = scroll_bar_handle;
5556 else
5557 emacs_event->part = scroll_bar_below_handle;
5559 #ifndef USE_TOOLKIT_SCROLL_BARS
5560 /* If the user has released the handle, set it to its final position. */
5561 if (event->type == ButtonRelease
5562 && ! NILP (bar->dragging))
5564 int new_start = y - XINT (bar->dragging);
5565 int new_end = new_start + bar->end - bar->start;
5567 x_scroll_bar_set_handle (bar, new_start, new_end, 0);
5568 bar->dragging = Qnil;
5570 #endif
5572 XSETINT (emacs_event->x, y);
5573 XSETINT (emacs_event->y, top_range);
5577 #ifndef USE_TOOLKIT_SCROLL_BARS
5579 /* Handle some mouse motion while someone is dragging the scroll bar.
5581 This may be called from a signal handler, so we have to ignore GC
5582 mark bits. */
5584 static void
5585 x_scroll_bar_note_movement (struct scroll_bar *bar, XEvent *event)
5587 FRAME_PTR f = XFRAME (XWINDOW (bar->window)->frame);
5589 last_mouse_movement_time = event->xmotion.time;
5591 f->mouse_moved = 1;
5592 XSETVECTOR (last_mouse_scroll_bar, bar);
5594 /* If we're dragging the bar, display it. */
5595 if (! NILP (bar->dragging))
5597 /* Where should the handle be now? */
5598 int new_start = event->xmotion.y - XINT (bar->dragging);
5600 if (new_start != bar->start)
5602 int new_end = new_start + bar->end - bar->start;
5604 x_scroll_bar_set_handle (bar, new_start, new_end, 0);
5609 #endif /* !USE_TOOLKIT_SCROLL_BARS */
5611 /* Return information to the user about the current position of the mouse
5612 on the scroll bar. */
5614 static void
5615 x_scroll_bar_report_motion (FRAME_PTR *fp, Lisp_Object *bar_window,
5616 enum scroll_bar_part *part, Lisp_Object *x,
5617 Lisp_Object *y, Time *timestamp)
5619 struct scroll_bar *bar = XSCROLL_BAR (last_mouse_scroll_bar);
5620 Window w = bar->x_window;
5621 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
5622 int win_x, win_y;
5623 Window dummy_window;
5624 int dummy_coord;
5625 unsigned int dummy_mask;
5627 block_input ();
5629 /* Get the mouse's position relative to the scroll bar window, and
5630 report that. */
5631 if (! XQueryPointer (FRAME_X_DISPLAY (f), w,
5633 /* Root, child, root x and root y. */
5634 &dummy_window, &dummy_window,
5635 &dummy_coord, &dummy_coord,
5637 /* Position relative to scroll bar. */
5638 &win_x, &win_y,
5640 /* Mouse buttons and modifier keys. */
5641 &dummy_mask))
5643 else
5645 int top_range
5646 = VERTICAL_SCROLL_BAR_TOP_RANGE (f, bar->height);
5648 win_y -= VERTICAL_SCROLL_BAR_TOP_BORDER;
5650 if (! NILP (bar->dragging))
5651 win_y -= XINT (bar->dragging);
5653 if (win_y < 0)
5654 win_y = 0;
5655 if (win_y > top_range)
5656 win_y = top_range;
5658 *fp = f;
5659 *bar_window = bar->window;
5661 if (! NILP (bar->dragging))
5662 *part = scroll_bar_handle;
5663 else if (win_y < bar->start)
5664 *part = scroll_bar_above_handle;
5665 else if (win_y < bar->end + VERTICAL_SCROLL_BAR_MIN_HANDLE)
5666 *part = scroll_bar_handle;
5667 else
5668 *part = scroll_bar_below_handle;
5670 XSETINT (*x, win_y);
5671 XSETINT (*y, top_range);
5673 f->mouse_moved = 0;
5674 last_mouse_scroll_bar = Qnil;
5677 *timestamp = last_mouse_movement_time;
5679 unblock_input ();
5683 /* The screen has been cleared so we may have changed foreground or
5684 background colors, and the scroll bars may need to be redrawn.
5685 Clear out the scroll bars, and ask for expose events, so we can
5686 redraw them. */
5688 static void
5689 x_scroll_bar_clear (FRAME_PTR f)
5691 #ifndef USE_TOOLKIT_SCROLL_BARS
5692 Lisp_Object bar;
5694 /* We can have scroll bars even if this is 0,
5695 if we just turned off scroll bar mode.
5696 But in that case we should not clear them. */
5697 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
5698 for (bar = FRAME_SCROLL_BARS (f); VECTORP (bar);
5699 bar = XSCROLL_BAR (bar)->next)
5700 XClearArea (FRAME_X_DISPLAY (f),
5701 XSCROLL_BAR (bar)->x_window,
5702 0, 0, 0, 0, True);
5703 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5707 /* The main X event-reading loop - XTread_socket. */
5709 /* This holds the state XLookupString needs to implement dead keys
5710 and other tricks known as "compose processing". _X Window System_
5711 says that a portable program can't use this, but Stephen Gildea assures
5712 me that letting the compiler initialize it to zeros will work okay.
5714 This must be defined outside of XTread_socket, for the same reasons
5715 given for enter_timestamp, above. */
5717 static XComposeStatus compose_status;
5719 /* Record the last 100 characters stored
5720 to help debug the loss-of-chars-during-GC problem. */
5722 static int temp_index;
5723 static short temp_buffer[100];
5725 #define STORE_KEYSYM_FOR_DEBUG(keysym) \
5726 if (temp_index == sizeof temp_buffer / sizeof (short)) \
5727 temp_index = 0; \
5728 temp_buffer[temp_index++] = (keysym)
5730 /* Set this to nonzero to fake an "X I/O error"
5731 on a particular display. */
5733 static struct x_display_info *XTread_socket_fake_io_error;
5735 /* When we find no input here, we occasionally do a no-op command
5736 to verify that the X server is still running and we can still talk with it.
5737 We try all the open displays, one by one.
5738 This variable is used for cycling thru the displays. */
5740 static struct x_display_info *next_noop_dpyinfo;
5742 #if defined USE_X_TOOLKIT || defined USE_GTK
5743 #define SET_SAVED_BUTTON_EVENT \
5744 do \
5746 if (f->output_data.x->saved_menu_event == 0) \
5747 f->output_data.x->saved_menu_event = \
5748 xmalloc (sizeof (XEvent)); \
5749 *f->output_data.x->saved_menu_event = event; \
5750 inev.ie.kind = MENU_BAR_ACTIVATE_EVENT; \
5751 XSETFRAME (inev.ie.frame_or_window, f); \
5753 while (0)
5754 #endif
5756 enum
5758 X_EVENT_NORMAL,
5759 X_EVENT_GOTO_OUT,
5760 X_EVENT_DROP
5763 /* Filter events for the current X input method.
5764 DPYINFO is the display this event is for.
5765 EVENT is the X event to filter.
5767 Returns non-zero if the event was filtered, caller shall not process
5768 this event further.
5769 Returns zero if event is wasn't filtered. */
5771 #ifdef HAVE_X_I18N
5772 static int
5773 x_filter_event (struct x_display_info *dpyinfo, XEvent *event)
5775 /* XFilterEvent returns non-zero if the input method has
5776 consumed the event. We pass the frame's X window to
5777 XFilterEvent because that's the one for which the IC
5778 was created. */
5780 struct frame *f1 = x_any_window_to_frame (dpyinfo,
5781 event->xclient.window);
5783 return XFilterEvent (event, f1 ? FRAME_X_WINDOW (f1) : None);
5785 #endif
5787 #ifdef USE_GTK
5788 static int current_count;
5789 static int current_finish;
5790 static struct input_event *current_hold_quit;
5792 /* This is the filter function invoked by the GTK event loop.
5793 It is invoked before the XEvent is translated to a GdkEvent,
5794 so we have a chance to act on the event before GTK. */
5795 static GdkFilterReturn
5796 event_handler_gdk (GdkXEvent *gxev, GdkEvent *ev, gpointer data)
5798 XEvent *xev = (XEvent *) gxev;
5800 block_input ();
5801 if (current_count >= 0)
5803 struct x_display_info *dpyinfo;
5805 dpyinfo = x_display_info_for_display (xev->xany.display);
5807 #ifdef HAVE_X_I18N
5808 /* Filter events for the current X input method.
5809 GTK calls XFilterEvent but not for key press and release,
5810 so we do it here. */
5811 if ((xev->type == KeyPress || xev->type == KeyRelease)
5812 && dpyinfo
5813 && x_filter_event (dpyinfo, xev))
5815 unblock_input ();
5816 return GDK_FILTER_REMOVE;
5818 #endif
5820 if (! dpyinfo)
5821 current_finish = X_EVENT_NORMAL;
5822 else
5823 current_count +=
5824 handle_one_xevent (dpyinfo, xev, &current_finish,
5825 current_hold_quit);
5827 else
5828 current_finish = x_dispatch_event (xev, xev->xany.display);
5830 unblock_input ();
5832 if (current_finish == X_EVENT_GOTO_OUT || current_finish == X_EVENT_DROP)
5833 return GDK_FILTER_REMOVE;
5835 return GDK_FILTER_CONTINUE;
5837 #endif /* USE_GTK */
5840 static void xembed_send_message (struct frame *f, Time,
5841 enum xembed_message,
5842 long detail, long data1, long data2);
5844 /* Handles the XEvent EVENT on display DPYINFO.
5846 *FINISH is X_EVENT_GOTO_OUT if caller should stop reading events.
5847 *FINISH is zero if caller should continue reading events.
5848 *FINISH is X_EVENT_DROP if event should not be passed to the toolkit.
5850 We return the number of characters stored into the buffer. */
5852 static int
5853 handle_one_xevent (struct x_display_info *dpyinfo, XEvent *eventptr,
5854 int *finish, struct input_event *hold_quit)
5856 union {
5857 struct input_event ie;
5858 struct selection_input_event sie;
5859 } inev;
5860 int count = 0;
5861 int do_help = 0;
5862 ptrdiff_t nbytes = 0;
5863 struct frame *f = NULL;
5864 struct coding_system coding;
5865 XEvent event = *eventptr;
5866 Mouse_HLInfo *hlinfo = &dpyinfo->mouse_highlight;
5867 USE_SAFE_ALLOCA;
5869 *finish = X_EVENT_NORMAL;
5871 EVENT_INIT (inev.ie);
5872 inev.ie.kind = NO_EVENT;
5873 inev.ie.arg = Qnil;
5875 if (pending_event_wait.eventtype == event.type)
5876 pending_event_wait.eventtype = 0; /* Indicates we got it. */
5878 switch (event.type)
5880 case ClientMessage:
5882 if (event.xclient.message_type
5883 == dpyinfo->Xatom_wm_protocols
5884 && event.xclient.format == 32)
5886 if (event.xclient.data.l[0]
5887 == dpyinfo->Xatom_wm_take_focus)
5889 /* Use x_any_window_to_frame because this
5890 could be the shell widget window
5891 if the frame has no title bar. */
5892 f = x_any_window_to_frame (dpyinfo, event.xclient.window);
5893 #ifdef HAVE_X_I18N
5894 /* Not quite sure this is needed -pd */
5895 if (f && FRAME_XIC (f))
5896 XSetICFocus (FRAME_XIC (f));
5897 #endif
5898 #if 0 /* Emacs sets WM hints whose `input' field is `true'. This
5899 instructs the WM to set the input focus automatically for
5900 Emacs with a call to XSetInputFocus. Setting WM_TAKE_FOCUS
5901 tells the WM to send us a ClientMessage WM_TAKE_FOCUS after
5902 it has set the focus. So, XSetInputFocus below is not
5903 needed.
5905 The call to XSetInputFocus below has also caused trouble. In
5906 cases where the XSetInputFocus done by the WM and the one
5907 below are temporally close (on a fast machine), the call
5908 below can generate additional FocusIn events which confuse
5909 Emacs. */
5911 /* Since we set WM_TAKE_FOCUS, we must call
5912 XSetInputFocus explicitly. But not if f is null,
5913 since that might be an event for a deleted frame. */
5914 if (f)
5916 Display *d = event.xclient.display;
5917 /* Catch and ignore errors, in case window has been
5918 iconified by a window manager such as GWM. */
5919 x_catch_errors (d);
5920 XSetInputFocus (d, event.xclient.window,
5921 /* The ICCCM says this is
5922 the only valid choice. */
5923 RevertToParent,
5924 event.xclient.data.l[1]);
5925 /* This is needed to detect the error
5926 if there is an error. */
5927 XSync (d, False);
5928 x_uncatch_errors ();
5930 /* Not certain about handling scroll bars here */
5931 #endif /* 0 */
5932 goto done;
5935 if (event.xclient.data.l[0]
5936 == dpyinfo->Xatom_wm_save_yourself)
5938 /* Save state modify the WM_COMMAND property to
5939 something which can reinstate us. This notifies
5940 the session manager, who's looking for such a
5941 PropertyNotify. Can restart processing when
5942 a keyboard or mouse event arrives. */
5943 /* If we have a session manager, don't set this.
5944 KDE will then start two Emacsen, one for the
5945 session manager and one for this. */
5946 #ifdef HAVE_X_SM
5947 if (! x_session_have_connection ())
5948 #endif
5950 f = x_top_window_to_frame (dpyinfo,
5951 event.xclient.window);
5952 /* This is just so we only give real data once
5953 for a single Emacs process. */
5954 if (f == SELECTED_FRAME ())
5955 XSetCommand (FRAME_X_DISPLAY (f),
5956 event.xclient.window,
5957 initial_argv, initial_argc);
5958 else if (f)
5959 XSetCommand (FRAME_X_DISPLAY (f),
5960 event.xclient.window,
5961 0, 0);
5963 goto done;
5966 if (event.xclient.data.l[0]
5967 == dpyinfo->Xatom_wm_delete_window)
5969 f = x_any_window_to_frame (dpyinfo,
5970 event.xclient.window);
5971 if (!f)
5972 goto OTHER; /* May be a dialog that is to be removed */
5974 inev.ie.kind = DELETE_WINDOW_EVENT;
5975 XSETFRAME (inev.ie.frame_or_window, f);
5976 goto done;
5979 goto done;
5982 if (event.xclient.message_type
5983 == dpyinfo->Xatom_wm_configure_denied)
5985 goto done;
5988 if (event.xclient.message_type
5989 == dpyinfo->Xatom_wm_window_moved)
5991 int new_x, new_y;
5992 f = x_window_to_frame (dpyinfo, event.xclient.window);
5994 new_x = event.xclient.data.s[0];
5995 new_y = event.xclient.data.s[1];
5997 if (f)
5999 f->left_pos = new_x;
6000 f->top_pos = new_y;
6002 goto done;
6005 #ifdef HACK_EDITRES
6006 if (event.xclient.message_type
6007 == dpyinfo->Xatom_editres)
6009 f = x_any_window_to_frame (dpyinfo, event.xclient.window);
6010 if (f)
6011 _XEditResCheckMessages (f->output_data.x->widget, NULL,
6012 &event, NULL);
6013 goto done;
6015 #endif /* HACK_EDITRES */
6017 if ((event.xclient.message_type
6018 == dpyinfo->Xatom_DONE)
6019 || (event.xclient.message_type
6020 == dpyinfo->Xatom_PAGE))
6022 /* Ghostview job completed. Kill it. We could
6023 reply with "Next" if we received "Page", but we
6024 currently never do because we are interested in
6025 images, only, which should have 1 page. */
6026 Pixmap pixmap = (Pixmap) event.xclient.data.l[1];
6027 f = x_window_to_frame (dpyinfo, event.xclient.window);
6028 if (!f)
6029 goto OTHER;
6030 x_kill_gs_process (pixmap, f);
6031 expose_frame (f, 0, 0, 0, 0);
6032 goto done;
6035 #ifdef USE_TOOLKIT_SCROLL_BARS
6036 /* Scroll bar callbacks send a ClientMessage from which
6037 we construct an input_event. */
6038 if (event.xclient.message_type
6039 == dpyinfo->Xatom_Scrollbar)
6041 x_scroll_bar_to_input_event (&event, &inev.ie);
6042 *finish = X_EVENT_GOTO_OUT;
6043 goto done;
6045 #endif /* USE_TOOLKIT_SCROLL_BARS */
6047 /* XEmbed messages from the embedder (if any). */
6048 if (event.xclient.message_type
6049 == dpyinfo->Xatom_XEMBED)
6051 enum xembed_message msg = event.xclient.data.l[1];
6052 if (msg == XEMBED_FOCUS_IN || msg == XEMBED_FOCUS_OUT)
6053 x_detect_focus_change (dpyinfo, &event, &inev.ie);
6055 *finish = X_EVENT_GOTO_OUT;
6056 goto done;
6059 xft_settings_event (dpyinfo, &event);
6061 f = x_any_window_to_frame (dpyinfo, event.xclient.window);
6062 if (!f)
6063 goto OTHER;
6064 if (x_handle_dnd_message (f, &event.xclient, dpyinfo, &inev.ie))
6065 *finish = X_EVENT_DROP;
6067 break;
6069 case SelectionNotify:
6070 last_user_time = event.xselection.time;
6071 #ifdef USE_X_TOOLKIT
6072 if (! x_window_to_frame (dpyinfo, event.xselection.requestor))
6073 goto OTHER;
6074 #endif /* not USE_X_TOOLKIT */
6075 x_handle_selection_notify (&event.xselection);
6076 break;
6078 case SelectionClear: /* Someone has grabbed ownership. */
6079 last_user_time = event.xselectionclear.time;
6080 #ifdef USE_X_TOOLKIT
6081 if (! x_window_to_frame (dpyinfo, event.xselectionclear.window))
6082 goto OTHER;
6083 #endif /* USE_X_TOOLKIT */
6085 XSelectionClearEvent *eventp = &(event.xselectionclear);
6087 inev.ie.kind = SELECTION_CLEAR_EVENT;
6088 SELECTION_EVENT_DISPLAY (&inev.sie) = eventp->display;
6089 SELECTION_EVENT_SELECTION (&inev.sie) = eventp->selection;
6090 SELECTION_EVENT_TIME (&inev.sie) = eventp->time;
6092 break;
6094 case SelectionRequest: /* Someone wants our selection. */
6095 last_user_time = event.xselectionrequest.time;
6096 #ifdef USE_X_TOOLKIT
6097 if (!x_window_to_frame (dpyinfo, event.xselectionrequest.owner))
6098 goto OTHER;
6099 #endif /* USE_X_TOOLKIT */
6101 XSelectionRequestEvent *eventp = &(event.xselectionrequest);
6103 inev.ie.kind = SELECTION_REQUEST_EVENT;
6104 SELECTION_EVENT_DISPLAY (&inev.sie) = eventp->display;
6105 SELECTION_EVENT_REQUESTOR (&inev.sie) = eventp->requestor;
6106 SELECTION_EVENT_SELECTION (&inev.sie) = eventp->selection;
6107 SELECTION_EVENT_TARGET (&inev.sie) = eventp->target;
6108 SELECTION_EVENT_PROPERTY (&inev.sie) = eventp->property;
6109 SELECTION_EVENT_TIME (&inev.sie) = eventp->time;
6111 break;
6113 case PropertyNotify:
6114 last_user_time = event.xproperty.time;
6115 f = x_top_window_to_frame (dpyinfo, event.xproperty.window);
6116 if (f && event.xproperty.atom == dpyinfo->Xatom_net_wm_state)
6117 if (x_handle_net_wm_state (f, &event.xproperty)
6118 && FRAME_ICONIFIED_P (f)
6119 && f->output_data.x->net_wm_state_hidden_seen)
6121 /* Gnome shell does not iconify us when C-z is pressed.
6122 It hides the frame. So if our state says we aren't
6123 hidden anymore, treat it as deiconified. */
6124 SET_FRAME_VISIBLE (f, 1);
6125 SET_FRAME_ICONIFIED (f, 0);
6126 f->output_data.x->has_been_visible = 1;
6127 f->output_data.x->net_wm_state_hidden_seen = 0;
6128 inev.ie.kind = DEICONIFY_EVENT;
6129 XSETFRAME (inev.ie.frame_or_window, f);
6132 x_handle_property_notify (&event.xproperty);
6133 xft_settings_event (dpyinfo, &event);
6134 goto OTHER;
6136 case ReparentNotify:
6137 f = x_top_window_to_frame (dpyinfo, event.xreparent.window);
6138 if (f)
6140 int x, y;
6141 f->output_data.x->parent_desc = event.xreparent.parent;
6142 x_real_positions (f, &x, &y);
6143 f->left_pos = x;
6144 f->top_pos = y;
6146 /* Perhaps reparented due to a WM restart. Reset this. */
6147 FRAME_X_DISPLAY_INFO (f)->wm_type = X_WMTYPE_UNKNOWN;
6148 FRAME_X_DISPLAY_INFO (f)->net_supported_window = 0;
6150 x_set_frame_alpha (f);
6152 goto OTHER;
6154 case Expose:
6155 f = x_window_to_frame (dpyinfo, event.xexpose.window);
6156 if (f)
6158 #ifdef USE_GTK
6159 /* This seems to be needed for GTK 2.6. */
6160 x_clear_area (event.xexpose.display,
6161 event.xexpose.window,
6162 event.xexpose.x, event.xexpose.y,
6163 event.xexpose.width, event.xexpose.height,
6164 FALSE);
6165 #endif
6166 if (!FRAME_VISIBLE_P (f))
6168 SET_FRAME_VISIBLE (f, 1);
6169 SET_FRAME_ICONIFIED (f, 0);
6170 f->output_data.x->has_been_visible = 1;
6171 SET_FRAME_GARBAGED (f);
6173 else
6174 expose_frame (f,
6175 event.xexpose.x, event.xexpose.y,
6176 event.xexpose.width, event.xexpose.height);
6178 else
6180 #ifndef USE_TOOLKIT_SCROLL_BARS
6181 struct scroll_bar *bar;
6182 #endif
6183 #if defined USE_LUCID
6184 /* Submenus of the Lucid menu bar aren't widgets
6185 themselves, so there's no way to dispatch events
6186 to them. Recognize this case separately. */
6188 Widget widget
6189 = x_window_to_menu_bar (event.xexpose.window);
6190 if (widget)
6191 xlwmenu_redisplay (widget);
6193 #endif /* USE_LUCID */
6195 #ifdef USE_TOOLKIT_SCROLL_BARS
6196 /* Dispatch event to the widget. */
6197 goto OTHER;
6198 #else /* not USE_TOOLKIT_SCROLL_BARS */
6199 bar = x_window_to_scroll_bar (event.xexpose.display,
6200 event.xexpose.window);
6202 if (bar)
6203 x_scroll_bar_expose (bar, &event);
6204 #ifdef USE_X_TOOLKIT
6205 else
6206 goto OTHER;
6207 #endif /* USE_X_TOOLKIT */
6208 #endif /* not USE_TOOLKIT_SCROLL_BARS */
6210 break;
6212 case GraphicsExpose: /* This occurs when an XCopyArea's
6213 source area was obscured or not
6214 available. */
6215 f = x_window_to_frame (dpyinfo, event.xgraphicsexpose.drawable);
6216 if (f)
6218 expose_frame (f,
6219 event.xgraphicsexpose.x, event.xgraphicsexpose.y,
6220 event.xgraphicsexpose.width,
6221 event.xgraphicsexpose.height);
6223 #ifdef USE_X_TOOLKIT
6224 else
6225 goto OTHER;
6226 #endif /* USE_X_TOOLKIT */
6227 break;
6229 case NoExpose: /* This occurs when an XCopyArea's
6230 source area was completely
6231 available. */
6232 break;
6234 case UnmapNotify:
6235 /* Redo the mouse-highlight after the tooltip has gone. */
6236 if (event.xmap.window == tip_window)
6238 tip_window = 0;
6239 redo_mouse_highlight ();
6242 f = x_top_window_to_frame (dpyinfo, event.xunmap.window);
6243 if (f) /* F may no longer exist if
6244 the frame was deleted. */
6246 bool visible = FRAME_VISIBLE_P (f);
6247 /* While a frame is unmapped, display generation is
6248 disabled; you don't want to spend time updating a
6249 display that won't ever be seen. */
6250 SET_FRAME_VISIBLE (f, 0);
6251 /* We can't distinguish, from the event, whether the window
6252 has become iconified or invisible. So assume, if it
6253 was previously visible, than now it is iconified.
6254 But x_make_frame_invisible clears both
6255 the visible flag and the iconified flag;
6256 and that way, we know the window is not iconified now. */
6257 if (visible || FRAME_ICONIFIED_P (f))
6259 SET_FRAME_ICONIFIED (f, 1);
6260 inev.ie.kind = ICONIFY_EVENT;
6261 XSETFRAME (inev.ie.frame_or_window, f);
6264 goto OTHER;
6266 case MapNotify:
6267 if (event.xmap.window == tip_window)
6268 /* The tooltip has been drawn already. Avoid
6269 the SET_FRAME_GARBAGED below. */
6270 goto OTHER;
6272 /* We use x_top_window_to_frame because map events can
6273 come for sub-windows and they don't mean that the
6274 frame is visible. */
6275 f = x_top_window_to_frame (dpyinfo, event.xmap.window);
6276 if (f)
6278 bool iconified = FRAME_ICONIFIED_P (f);
6279 /* wait_reading_process_output will notice this and update
6280 the frame's display structures.
6281 If we where iconified, we should not set garbaged,
6282 because that stops redrawing on Expose events. This looks
6283 bad if we are called from a recursive event loop
6284 (x_dispatch_event), for example when a dialog is up. */
6285 if (!iconified)
6286 SET_FRAME_GARBAGED (f);
6288 /* Check if fullscreen was specified before we where mapped the
6289 first time, i.e. from the command line. */
6290 if (!f->output_data.x->has_been_visible)
6291 x_check_fullscreen (f);
6293 SET_FRAME_VISIBLE (f, 1);
6294 SET_FRAME_ICONIFIED (f, 0);
6295 f->output_data.x->has_been_visible = 1;
6297 if (iconified)
6299 inev.ie.kind = DEICONIFY_EVENT;
6300 XSETFRAME (inev.ie.frame_or_window, f);
6302 else if (! NILP (Vframe_list) && ! NILP (XCDR (Vframe_list)))
6303 /* Force a redisplay sooner or later to update the
6304 frame titles in case this is the second frame. */
6305 record_asynch_buffer_change ();
6307 #ifdef USE_GTK
6308 xg_frame_resized (f, -1, -1);
6309 #endif
6311 goto OTHER;
6313 case KeyPress:
6315 last_user_time = event.xkey.time;
6316 ignore_next_mouse_click_timeout = 0;
6318 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
6319 /* Dispatch KeyPress events when in menu. */
6320 if (popup_activated ())
6321 goto OTHER;
6322 #endif
6324 f = x_any_window_to_frame (dpyinfo, event.xkey.window);
6326 /* If mouse-highlight is an integer, input clears out
6327 mouse highlighting. */
6328 if (!hlinfo->mouse_face_hidden && INTEGERP (Vmouse_highlight)
6329 && (f == 0
6330 || !EQ (f->tool_bar_window, hlinfo->mouse_face_window)))
6332 clear_mouse_face (hlinfo);
6333 hlinfo->mouse_face_hidden = 1;
6336 #if defined USE_MOTIF && defined USE_TOOLKIT_SCROLL_BARS
6337 if (f == 0)
6339 /* Scroll bars consume key events, but we want
6340 the keys to go to the scroll bar's frame. */
6341 Widget widget = XtWindowToWidget (dpyinfo->display,
6342 event.xkey.window);
6343 if (widget && XmIsScrollBar (widget))
6345 widget = XtParent (widget);
6346 f = x_any_window_to_frame (dpyinfo, XtWindow (widget));
6349 #endif /* USE_MOTIF and USE_TOOLKIT_SCROLL_BARS */
6351 if (f != 0)
6353 KeySym keysym, orig_keysym;
6354 /* al%imercury@uunet.uu.net says that making this 81
6355 instead of 80 fixed a bug whereby meta chars made
6356 his Emacs hang.
6358 It seems that some version of XmbLookupString has
6359 a bug of not returning XBufferOverflow in
6360 status_return even if the input is too long to
6361 fit in 81 bytes. So, we must prepare sufficient
6362 bytes for copy_buffer. 513 bytes (256 chars for
6363 two-byte character set) seems to be a fairly good
6364 approximation. -- 2000.8.10 handa@etl.go.jp */
6365 unsigned char copy_buffer[513];
6366 unsigned char *copy_bufptr = copy_buffer;
6367 int copy_bufsiz = sizeof (copy_buffer);
6368 int modifiers;
6369 Lisp_Object coding_system = Qlatin_1;
6370 Lisp_Object c;
6372 #ifdef USE_GTK
6373 /* Don't pass keys to GTK. A Tab will shift focus to the
6374 tool bar in GTK 2.4. Keys will still go to menus and
6375 dialogs because in that case popup_activated is TRUE
6376 (see above). */
6377 *finish = X_EVENT_DROP;
6378 #endif
6380 event.xkey.state
6381 |= x_emacs_to_x_modifiers (FRAME_X_DISPLAY_INFO (f),
6382 extra_keyboard_modifiers);
6383 modifiers = event.xkey.state;
6385 /* This will have to go some day... */
6387 /* make_lispy_event turns chars into control chars.
6388 Don't do it here because XLookupString is too eager. */
6389 event.xkey.state &= ~ControlMask;
6390 event.xkey.state &= ~(dpyinfo->meta_mod_mask
6391 | dpyinfo->super_mod_mask
6392 | dpyinfo->hyper_mod_mask
6393 | dpyinfo->alt_mod_mask);
6395 /* In case Meta is ComposeCharacter,
6396 clear its status. According to Markus Ehrnsperger
6397 Markus.Ehrnsperger@lehrstuhl-bross.physik.uni-muenchen.de
6398 this enables ComposeCharacter to work whether or
6399 not it is combined with Meta. */
6400 if (modifiers & dpyinfo->meta_mod_mask)
6401 memset (&compose_status, 0, sizeof (compose_status));
6403 #ifdef HAVE_X_I18N
6404 if (FRAME_XIC (f))
6406 Status status_return;
6408 coding_system = Vlocale_coding_system;
6409 nbytes = XmbLookupString (FRAME_XIC (f),
6410 &event.xkey, (char *) copy_bufptr,
6411 copy_bufsiz, &keysym,
6412 &status_return);
6413 if (status_return == XBufferOverflow)
6415 copy_bufsiz = nbytes + 1;
6416 copy_bufptr = alloca (copy_bufsiz);
6417 nbytes = XmbLookupString (FRAME_XIC (f),
6418 &event.xkey, (char *) copy_bufptr,
6419 copy_bufsiz, &keysym,
6420 &status_return);
6422 /* Xutf8LookupString is a new but already deprecated interface. -stef */
6423 if (status_return == XLookupNone)
6424 break;
6425 else if (status_return == XLookupChars)
6427 keysym = NoSymbol;
6428 modifiers = 0;
6430 else if (status_return != XLookupKeySym
6431 && status_return != XLookupBoth)
6432 emacs_abort ();
6434 else
6435 nbytes = XLookupString (&event.xkey, (char *) copy_bufptr,
6436 copy_bufsiz, &keysym,
6437 &compose_status);
6438 #else
6439 nbytes = XLookupString (&event.xkey, (char *) copy_bufptr,
6440 copy_bufsiz, &keysym,
6441 &compose_status);
6442 #endif
6444 /* If not using XIM/XIC, and a compose sequence is in progress,
6445 we break here. Otherwise, chars_matched is always 0. */
6446 if (compose_status.chars_matched > 0 && nbytes == 0)
6447 break;
6449 memset (&compose_status, 0, sizeof (compose_status));
6450 orig_keysym = keysym;
6452 /* Common for all keysym input events. */
6453 XSETFRAME (inev.ie.frame_or_window, f);
6454 inev.ie.modifiers
6455 = x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO (f), modifiers);
6456 inev.ie.timestamp = event.xkey.time;
6458 /* First deal with keysyms which have defined
6459 translations to characters. */
6460 if (keysym >= 32 && keysym < 128)
6461 /* Avoid explicitly decoding each ASCII character. */
6463 inev.ie.kind = ASCII_KEYSTROKE_EVENT;
6464 inev.ie.code = keysym;
6465 goto done_keysym;
6468 /* Keysyms directly mapped to Unicode characters. */
6469 if (keysym >= 0x01000000 && keysym <= 0x0110FFFF)
6471 if (keysym < 0x01000080)
6472 inev.ie.kind = ASCII_KEYSTROKE_EVENT;
6473 else
6474 inev.ie.kind = MULTIBYTE_CHAR_KEYSTROKE_EVENT;
6475 inev.ie.code = keysym & 0xFFFFFF;
6476 goto done_keysym;
6479 /* Now non-ASCII. */
6480 if (HASH_TABLE_P (Vx_keysym_table)
6481 && (c = Fgethash (make_number (keysym),
6482 Vx_keysym_table,
6483 Qnil),
6484 NATNUMP (c)))
6486 inev.ie.kind = (SINGLE_BYTE_CHAR_P (XFASTINT (c))
6487 ? ASCII_KEYSTROKE_EVENT
6488 : MULTIBYTE_CHAR_KEYSTROKE_EVENT);
6489 inev.ie.code = XFASTINT (c);
6490 goto done_keysym;
6493 /* Random non-modifier sorts of keysyms. */
6494 if (((keysym >= XK_BackSpace && keysym <= XK_Escape)
6495 || keysym == XK_Delete
6496 #ifdef XK_ISO_Left_Tab
6497 || (keysym >= XK_ISO_Left_Tab
6498 && keysym <= XK_ISO_Enter)
6499 #endif
6500 || IsCursorKey (keysym) /* 0xff50 <= x < 0xff60 */
6501 || IsMiscFunctionKey (keysym) /* 0xff60 <= x < VARIES */
6502 #ifdef HPUX
6503 /* This recognizes the "extended function
6504 keys". It seems there's no cleaner way.
6505 Test IsModifierKey to avoid handling
6506 mode_switch incorrectly. */
6507 || (XK_Select <= keysym && keysym < XK_KP_Space)
6508 #endif
6509 #ifdef XK_dead_circumflex
6510 || orig_keysym == XK_dead_circumflex
6511 #endif
6512 #ifdef XK_dead_grave
6513 || orig_keysym == XK_dead_grave
6514 #endif
6515 #ifdef XK_dead_tilde
6516 || orig_keysym == XK_dead_tilde
6517 #endif
6518 #ifdef XK_dead_diaeresis
6519 || orig_keysym == XK_dead_diaeresis
6520 #endif
6521 #ifdef XK_dead_macron
6522 || orig_keysym == XK_dead_macron
6523 #endif
6524 #ifdef XK_dead_degree
6525 || orig_keysym == XK_dead_degree
6526 #endif
6527 #ifdef XK_dead_acute
6528 || orig_keysym == XK_dead_acute
6529 #endif
6530 #ifdef XK_dead_cedilla
6531 || orig_keysym == XK_dead_cedilla
6532 #endif
6533 #ifdef XK_dead_breve
6534 || orig_keysym == XK_dead_breve
6535 #endif
6536 #ifdef XK_dead_ogonek
6537 || orig_keysym == XK_dead_ogonek
6538 #endif
6539 #ifdef XK_dead_caron
6540 || orig_keysym == XK_dead_caron
6541 #endif
6542 #ifdef XK_dead_doubleacute
6543 || orig_keysym == XK_dead_doubleacute
6544 #endif
6545 #ifdef XK_dead_abovedot
6546 || orig_keysym == XK_dead_abovedot
6547 #endif
6548 || IsKeypadKey (keysym) /* 0xff80 <= x < 0xffbe */
6549 || IsFunctionKey (keysym) /* 0xffbe <= x < 0xffe1 */
6550 /* Any "vendor-specific" key is ok. */
6551 || (orig_keysym & (1 << 28))
6552 || (keysym != NoSymbol && nbytes == 0))
6553 && ! (IsModifierKey (orig_keysym)
6554 /* The symbols from XK_ISO_Lock
6555 to XK_ISO_Last_Group_Lock
6556 don't have real modifiers but
6557 should be treated similarly to
6558 Mode_switch by Emacs. */
6559 #if defined XK_ISO_Lock && defined XK_ISO_Last_Group_Lock
6560 || (XK_ISO_Lock <= orig_keysym
6561 && orig_keysym <= XK_ISO_Last_Group_Lock)
6562 #endif
6565 STORE_KEYSYM_FOR_DEBUG (keysym);
6566 /* make_lispy_event will convert this to a symbolic
6567 key. */
6568 inev.ie.kind = NON_ASCII_KEYSTROKE_EVENT;
6569 inev.ie.code = keysym;
6570 goto done_keysym;
6573 { /* Raw bytes, not keysym. */
6574 ptrdiff_t i;
6575 int nchars, len;
6577 for (i = 0, nchars = 0; i < nbytes; i++)
6579 if (ASCII_BYTE_P (copy_bufptr[i]))
6580 nchars++;
6581 STORE_KEYSYM_FOR_DEBUG (copy_bufptr[i]);
6584 if (nchars < nbytes)
6586 /* Decode the input data. */
6588 /* The input should be decoded with `coding_system'
6589 which depends on which X*LookupString function
6590 we used just above and the locale. */
6591 setup_coding_system (coding_system, &coding);
6592 coding.src_multibyte = 0;
6593 coding.dst_multibyte = 1;
6594 /* The input is converted to events, thus we can't
6595 handle composition. Anyway, there's no XIM that
6596 gives us composition information. */
6597 coding.common_flags &= ~CODING_ANNOTATION_MASK;
6599 SAFE_NALLOCA (coding.destination, MAX_MULTIBYTE_LENGTH,
6600 nbytes);
6601 coding.dst_bytes = MAX_MULTIBYTE_LENGTH * nbytes;
6602 coding.mode |= CODING_MODE_LAST_BLOCK;
6603 decode_coding_c_string (&coding, copy_bufptr, nbytes, Qnil);
6604 nbytes = coding.produced;
6605 nchars = coding.produced_char;
6606 copy_bufptr = coding.destination;
6609 /* Convert the input data to a sequence of
6610 character events. */
6611 for (i = 0; i < nbytes; i += len)
6613 int ch;
6614 if (nchars == nbytes)
6615 ch = copy_bufptr[i], len = 1;
6616 else
6617 ch = STRING_CHAR_AND_LENGTH (copy_bufptr + i, len);
6618 inev.ie.kind = (SINGLE_BYTE_CHAR_P (ch)
6619 ? ASCII_KEYSTROKE_EVENT
6620 : MULTIBYTE_CHAR_KEYSTROKE_EVENT);
6621 inev.ie.code = ch;
6622 kbd_buffer_store_event_hold (&inev.ie, hold_quit);
6625 count += nchars;
6627 inev.ie.kind = NO_EVENT; /* Already stored above. */
6629 if (keysym == NoSymbol)
6630 break;
6633 done_keysym:
6634 #ifdef HAVE_X_I18N
6635 /* Don't dispatch this event since XtDispatchEvent calls
6636 XFilterEvent, and two calls in a row may freeze the
6637 client. */
6638 break;
6639 #else
6640 goto OTHER;
6641 #endif
6643 case KeyRelease:
6644 last_user_time = event.xkey.time;
6645 #ifdef HAVE_X_I18N
6646 /* Don't dispatch this event since XtDispatchEvent calls
6647 XFilterEvent, and two calls in a row may freeze the
6648 client. */
6649 break;
6650 #else
6651 goto OTHER;
6652 #endif
6654 case EnterNotify:
6655 last_user_time = event.xcrossing.time;
6656 x_detect_focus_change (dpyinfo, &event, &inev.ie);
6658 f = x_any_window_to_frame (dpyinfo, event.xcrossing.window);
6660 if (f && x_mouse_click_focus_ignore_position)
6661 ignore_next_mouse_click_timeout = event.xmotion.time + 200;
6663 /* EnterNotify counts as mouse movement,
6664 so update things that depend on mouse position. */
6665 if (f && !f->output_data.x->hourglass_p)
6666 note_mouse_movement (f, &event.xmotion);
6667 #ifdef USE_GTK
6668 /* We may get an EnterNotify on the buttons in the toolbar. In that
6669 case we moved out of any highlighted area and need to note this. */
6670 if (!f && last_mouse_glyph_frame)
6671 note_mouse_movement (last_mouse_glyph_frame, &event.xmotion);
6672 #endif
6673 goto OTHER;
6675 case FocusIn:
6676 x_detect_focus_change (dpyinfo, &event, &inev.ie);
6677 goto OTHER;
6679 case LeaveNotify:
6680 last_user_time = event.xcrossing.time;
6681 x_detect_focus_change (dpyinfo, &event, &inev.ie);
6683 f = x_top_window_to_frame (dpyinfo, event.xcrossing.window);
6684 if (f)
6686 if (f == hlinfo->mouse_face_mouse_frame)
6688 /* If we move outside the frame, then we're
6689 certainly no longer on any text in the frame. */
6690 clear_mouse_face (hlinfo);
6691 hlinfo->mouse_face_mouse_frame = 0;
6694 /* Generate a nil HELP_EVENT to cancel a help-echo.
6695 Do it only if there's something to cancel.
6696 Otherwise, the startup message is cleared when
6697 the mouse leaves the frame. */
6698 if (any_help_event_p)
6699 do_help = -1;
6701 #ifdef USE_GTK
6702 /* See comment in EnterNotify above */
6703 else if (last_mouse_glyph_frame)
6704 note_mouse_movement (last_mouse_glyph_frame, &event.xmotion);
6705 #endif
6706 goto OTHER;
6708 case FocusOut:
6709 x_detect_focus_change (dpyinfo, &event, &inev.ie);
6710 goto OTHER;
6712 case MotionNotify:
6714 last_user_time = event.xmotion.time;
6715 previous_help_echo_string = help_echo_string;
6716 help_echo_string = Qnil;
6718 if (dpyinfo->grabbed && last_mouse_frame
6719 && FRAME_LIVE_P (last_mouse_frame))
6720 f = last_mouse_frame;
6721 else
6722 f = x_window_to_frame (dpyinfo, event.xmotion.window);
6724 if (hlinfo->mouse_face_hidden)
6726 hlinfo->mouse_face_hidden = 0;
6727 clear_mouse_face (hlinfo);
6730 #ifdef USE_GTK
6731 if (f && xg_event_is_for_scrollbar (f, &event))
6732 f = 0;
6733 #endif
6734 if (f)
6737 /* Generate SELECT_WINDOW_EVENTs when needed.
6738 Don't let popup menus influence things (bug#1261). */
6739 if (!NILP (Vmouse_autoselect_window) && !popup_activated ())
6741 Lisp_Object window;
6743 window = window_from_coordinates (f,
6744 event.xmotion.x, event.xmotion.y,
6745 0, 0);
6747 /* Window will be selected only when it is not selected now and
6748 last mouse movement event was not in it. Minibuffer window
6749 will be selected only when it is active. */
6750 if (WINDOWP (window)
6751 && !EQ (window, last_window)
6752 && !EQ (window, selected_window)
6753 /* For click-to-focus window managers
6754 create event iff we don't leave the
6755 selected frame. */
6756 && (focus_follows_mouse
6757 || (EQ (XWINDOW (window)->frame,
6758 XWINDOW (selected_window)->frame))))
6760 inev.ie.kind = SELECT_WINDOW_EVENT;
6761 inev.ie.frame_or_window = window;
6764 last_window=window;
6766 if (!note_mouse_movement (f, &event.xmotion))
6767 help_echo_string = previous_help_echo_string;
6769 else
6771 #ifndef USE_TOOLKIT_SCROLL_BARS
6772 struct scroll_bar *bar
6773 = x_window_to_scroll_bar (event.xmotion.display,
6774 event.xmotion.window);
6776 if (bar)
6777 x_scroll_bar_note_movement (bar, &event);
6778 #endif /* USE_TOOLKIT_SCROLL_BARS */
6780 /* If we move outside the frame, then we're
6781 certainly no longer on any text in the frame. */
6782 clear_mouse_face (hlinfo);
6785 /* If the contents of the global variable help_echo_string
6786 has changed, generate a HELP_EVENT. */
6787 if (!NILP (help_echo_string)
6788 || !NILP (previous_help_echo_string))
6789 do_help = 1;
6790 goto OTHER;
6793 case ConfigureNotify:
6794 f = x_top_window_to_frame (dpyinfo, event.xconfigure.window);
6795 #ifdef USE_GTK
6796 if (!f
6797 && (f = x_any_window_to_frame (dpyinfo, event.xconfigure.window))
6798 && event.xconfigure.window == FRAME_X_WINDOW (f))
6800 xg_frame_resized (f, event.xconfigure.width,
6801 event.xconfigure.height);
6802 f = 0;
6804 #endif
6805 if (f)
6807 #ifndef USE_X_TOOLKIT
6808 #ifndef USE_GTK
6809 int rows = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, event.xconfigure.height);
6810 int columns = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, event.xconfigure.width);
6812 /* In the toolkit version, change_frame_size
6813 is called by the code that handles resizing
6814 of the EmacsFrame widget. */
6816 /* Even if the number of character rows and columns has
6817 not changed, the font size may have changed, so we need
6818 to check the pixel dimensions as well. */
6819 if (columns != FRAME_COLS (f)
6820 || rows != FRAME_LINES (f)
6821 || event.xconfigure.width != FRAME_PIXEL_WIDTH (f)
6822 || event.xconfigure.height != FRAME_PIXEL_HEIGHT (f))
6824 change_frame_size (f, rows, columns, 0, 1, 0);
6825 SET_FRAME_GARBAGED (f);
6826 cancel_mouse_face (f);
6829 FRAME_PIXEL_WIDTH (f) = event.xconfigure.width;
6830 FRAME_PIXEL_HEIGHT (f) = event.xconfigure.height;
6831 #endif /* not USE_GTK */
6832 #endif
6834 #ifdef USE_GTK
6835 /* GTK creates windows but doesn't map them.
6836 Only get real positions when mapped. */
6837 if (FRAME_GTK_OUTER_WIDGET (f)
6838 && gtk_widget_get_mapped (FRAME_GTK_OUTER_WIDGET (f)))
6839 #endif
6841 x_real_positions (f, &f->left_pos, &f->top_pos);
6844 #ifdef HAVE_X_I18N
6845 if (FRAME_XIC (f) && (FRAME_XIC_STYLE (f) & XIMStatusArea))
6846 xic_set_statusarea (f);
6847 #endif
6850 goto OTHER;
6852 case ButtonRelease:
6853 case ButtonPress:
6855 /* If we decide we want to generate an event to be seen
6856 by the rest of Emacs, we put it here. */
6857 int tool_bar_p = 0;
6859 memset (&compose_status, 0, sizeof (compose_status));
6860 last_mouse_glyph_frame = 0;
6861 last_user_time = event.xbutton.time;
6863 if (dpyinfo->grabbed
6864 && last_mouse_frame
6865 && FRAME_LIVE_P (last_mouse_frame))
6866 f = last_mouse_frame;
6867 else
6868 f = x_window_to_frame (dpyinfo, event.xbutton.window);
6870 #ifdef USE_GTK
6871 if (f && xg_event_is_for_scrollbar (f, &event))
6872 f = 0;
6873 #endif
6874 if (f)
6876 /* Is this in the tool-bar? */
6877 if (WINDOWP (f->tool_bar_window)
6878 && WINDOW_TOTAL_LINES (XWINDOW (f->tool_bar_window)))
6880 Lisp_Object window;
6881 int x = event.xbutton.x;
6882 int y = event.xbutton.y;
6884 window = window_from_coordinates (f, x, y, 0, 1);
6885 tool_bar_p = EQ (window, f->tool_bar_window);
6887 if (tool_bar_p && event.xbutton.button < 4)
6889 handle_tool_bar_click (f, x, y,
6890 event.xbutton.type == ButtonPress,
6891 x_x_to_emacs_modifiers (dpyinfo,
6892 event.xbutton.state));
6896 if (!tool_bar_p)
6897 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
6898 if (! popup_activated ())
6899 #endif
6901 if (ignore_next_mouse_click_timeout)
6903 if (event.type == ButtonPress
6904 && (int)(event.xbutton.time - ignore_next_mouse_click_timeout) > 0)
6906 ignore_next_mouse_click_timeout = 0;
6907 construct_mouse_click (&inev.ie, &event.xbutton, f);
6909 if (event.type == ButtonRelease)
6910 ignore_next_mouse_click_timeout = 0;
6912 else
6913 construct_mouse_click (&inev.ie, &event.xbutton, f);
6915 if (FRAME_X_EMBEDDED_P (f))
6916 xembed_send_message (f, event.xbutton.time,
6917 XEMBED_REQUEST_FOCUS, 0, 0, 0);
6919 else
6921 struct scroll_bar *bar
6922 = x_window_to_scroll_bar (event.xbutton.display,
6923 event.xbutton.window);
6925 #ifdef USE_TOOLKIT_SCROLL_BARS
6926 /* Make the "Ctrl-Mouse-2 splits window" work for toolkit
6927 scroll bars. */
6928 if (bar && event.xbutton.state & ControlMask)
6930 x_scroll_bar_handle_click (bar, &event, &inev.ie);
6931 *finish = X_EVENT_DROP;
6933 #else /* not USE_TOOLKIT_SCROLL_BARS */
6934 if (bar)
6935 x_scroll_bar_handle_click (bar, &event, &inev.ie);
6936 #endif /* not USE_TOOLKIT_SCROLL_BARS */
6939 if (event.type == ButtonPress)
6941 dpyinfo->grabbed |= (1 << event.xbutton.button);
6942 last_mouse_frame = f;
6944 if (!tool_bar_p)
6945 last_tool_bar_item = -1;
6947 else
6948 dpyinfo->grabbed &= ~(1 << event.xbutton.button);
6950 /* Ignore any mouse motion that happened before this event;
6951 any subsequent mouse-movement Emacs events should reflect
6952 only motion after the ButtonPress/Release. */
6953 if (f != 0)
6954 f->mouse_moved = 0;
6956 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
6957 f = x_menubar_window_to_frame (dpyinfo, &event);
6958 /* For a down-event in the menu bar,
6959 don't pass it to Xt right now.
6960 Instead, save it away
6961 and we will pass it to Xt from kbd_buffer_get_event.
6962 That way, we can run some Lisp code first. */
6963 if (! popup_activated ()
6964 #ifdef USE_GTK
6965 /* Gtk+ menus only react to the first three buttons. */
6966 && event.xbutton.button < 3
6967 #endif
6968 && f && event.type == ButtonPress
6969 /* Verify the event is really within the menu bar
6970 and not just sent to it due to grabbing. */
6971 && event.xbutton.x >= 0
6972 && event.xbutton.x < FRAME_PIXEL_WIDTH (f)
6973 && event.xbutton.y >= 0
6974 && event.xbutton.y < f->output_data.x->menubar_height
6975 && event.xbutton.same_screen)
6977 SET_SAVED_BUTTON_EVENT;
6978 XSETFRAME (last_mouse_press_frame, f);
6979 *finish = X_EVENT_DROP;
6981 else if (event.type == ButtonPress)
6983 last_mouse_press_frame = Qnil;
6984 goto OTHER;
6986 else
6987 goto OTHER;
6988 #endif /* USE_X_TOOLKIT || USE_GTK */
6990 break;
6992 case CirculateNotify:
6993 goto OTHER;
6995 case CirculateRequest:
6996 goto OTHER;
6998 case VisibilityNotify:
6999 goto OTHER;
7001 case MappingNotify:
7002 /* Someone has changed the keyboard mapping - update the
7003 local cache. */
7004 switch (event.xmapping.request)
7006 case MappingModifier:
7007 x_find_modifier_meanings (dpyinfo);
7008 /* This is meant to fall through. */
7009 case MappingKeyboard:
7010 XRefreshKeyboardMapping (&event.xmapping);
7012 goto OTHER;
7014 case DestroyNotify:
7015 xft_settings_event (dpyinfo, &event);
7016 break;
7018 default:
7019 OTHER:
7020 #ifdef USE_X_TOOLKIT
7021 block_input ();
7022 if (*finish != X_EVENT_DROP)
7023 XtDispatchEvent (&event);
7024 unblock_input ();
7025 #endif /* USE_X_TOOLKIT */
7026 break;
7029 done:
7030 if (inev.ie.kind != NO_EVENT)
7032 kbd_buffer_store_event_hold (&inev.ie, hold_quit);
7033 count++;
7036 if (do_help
7037 && !(hold_quit && hold_quit->kind != NO_EVENT))
7039 Lisp_Object frame;
7041 if (f)
7042 XSETFRAME (frame, f);
7043 else
7044 frame = Qnil;
7046 if (do_help > 0)
7048 any_help_event_p = 1;
7049 gen_help_event (help_echo_string, frame, help_echo_window,
7050 help_echo_object, help_echo_pos);
7052 else
7054 help_echo_string = Qnil;
7055 gen_help_event (Qnil, frame, Qnil, Qnil, 0);
7057 count++;
7060 SAFE_FREE ();
7061 *eventptr = event;
7062 return count;
7065 #if defined USE_GTK || defined USE_X_TOOLKIT
7067 /* Handles the XEvent EVENT on display DISPLAY.
7068 This is used for event loops outside the normal event handling,
7069 i.e. looping while a popup menu or a dialog is posted.
7071 Returns the value handle_one_xevent sets in the finish argument. */
7073 x_dispatch_event (XEvent *event, Display *display)
7075 struct x_display_info *dpyinfo;
7076 int finish = X_EVENT_NORMAL;
7078 dpyinfo = x_display_info_for_display (display);
7080 if (dpyinfo)
7081 handle_one_xevent (dpyinfo, event, &finish, 0);
7083 return finish;
7085 #endif
7088 /* Read events coming from the X server.
7089 Return as soon as there are no more events to be read.
7091 Return the number of characters stored into the buffer,
7092 thus pretending to be `read' (except the characters we store
7093 in the keyboard buffer can be multibyte, so are not necessarily
7094 C chars). */
7096 static int
7097 XTread_socket (struct terminal *terminal, struct input_event *hold_quit)
7099 int count = 0;
7100 int event_found = 0;
7102 block_input ();
7104 /* So people can tell when we have read the available input. */
7105 input_signal_count++;
7107 /* For debugging, this gives a way to fake an I/O error. */
7108 if (terminal->display_info.x == XTread_socket_fake_io_error)
7110 XTread_socket_fake_io_error = 0;
7111 x_io_error_quitter (terminal->display_info.x->display);
7114 #ifndef USE_GTK
7115 while (XPending (terminal->display_info.x->display))
7117 int finish;
7118 XEvent event;
7120 XNextEvent (terminal->display_info.x->display, &event);
7122 #ifdef HAVE_X_I18N
7123 /* Filter events for the current X input method. */
7124 if (x_filter_event (terminal->display_info.x, &event))
7125 continue;
7126 #endif
7127 event_found = 1;
7129 count += handle_one_xevent (terminal->display_info.x,
7130 &event, &finish, hold_quit);
7132 if (finish == X_EVENT_GOTO_OUT)
7133 goto out;
7136 out:;
7138 #else /* USE_GTK */
7140 /* For GTK we must use the GTK event loop. But XEvents gets passed
7141 to our filter function above, and then to the big event switch.
7142 We use a bunch of globals to communicate with our filter function,
7143 that is kind of ugly, but it works.
7145 There is no way to do one display at the time, GTK just does events
7146 from all displays. */
7148 while (gtk_events_pending ())
7150 current_count = count;
7151 current_hold_quit = hold_quit;
7153 gtk_main_iteration ();
7155 count = current_count;
7156 current_count = -1;
7157 current_hold_quit = 0;
7159 if (current_finish == X_EVENT_GOTO_OUT)
7160 break;
7162 #endif /* USE_GTK */
7164 /* On some systems, an X bug causes Emacs to get no more events
7165 when the window is destroyed. Detect that. (1994.) */
7166 if (! event_found)
7168 /* Emacs and the X Server eats up CPU time if XNoOp is done every time.
7169 One XNOOP in 100 loops will make Emacs terminate.
7170 B. Bretthauer, 1994 */
7171 x_noop_count++;
7172 if (x_noop_count >= 100)
7174 x_noop_count=0;
7176 if (next_noop_dpyinfo == 0)
7177 next_noop_dpyinfo = x_display_list;
7179 XNoOp (next_noop_dpyinfo->display);
7181 /* Each time we get here, cycle through the displays now open. */
7182 next_noop_dpyinfo = next_noop_dpyinfo->next;
7186 /* If the focus was just given to an auto-raising frame,
7187 raise it now. */
7188 /* ??? This ought to be able to handle more than one such frame. */
7189 if (pending_autoraise_frame)
7191 x_raise_frame (pending_autoraise_frame);
7192 pending_autoraise_frame = 0;
7195 unblock_input ();
7197 return count;
7203 /***********************************************************************
7204 Text Cursor
7205 ***********************************************************************/
7207 /* Set clipping for output in glyph row ROW. W is the window in which
7208 we operate. GC is the graphics context to set clipping in.
7210 ROW may be a text row or, e.g., a mode line. Text rows must be
7211 clipped to the interior of the window dedicated to text display,
7212 mode lines must be clipped to the whole window. */
7214 static void
7215 x_clip_to_row (struct window *w, struct glyph_row *row, int area, GC gc)
7217 struct frame *f = XFRAME (WINDOW_FRAME (w));
7218 XRectangle clip_rect;
7219 int window_x, window_y, window_width;
7221 window_box (w, area, &window_x, &window_y, &window_width, 0);
7223 clip_rect.x = window_x;
7224 clip_rect.y = WINDOW_TO_FRAME_PIXEL_Y (w, max (0, row->y));
7225 clip_rect.y = max (clip_rect.y, window_y);
7226 clip_rect.width = window_width;
7227 clip_rect.height = row->visible_height;
7229 XSetClipRectangles (FRAME_X_DISPLAY (f), gc, 0, 0, &clip_rect, 1, Unsorted);
7233 /* Draw a hollow box cursor on window W in glyph row ROW. */
7235 static void
7236 x_draw_hollow_cursor (struct window *w, struct glyph_row *row)
7238 struct frame *f = XFRAME (WINDOW_FRAME (w));
7239 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
7240 Display *dpy = FRAME_X_DISPLAY (f);
7241 int x, y, wd, h;
7242 XGCValues xgcv;
7243 struct glyph *cursor_glyph;
7244 GC gc;
7246 /* Get the glyph the cursor is on. If we can't tell because
7247 the current matrix is invalid or such, give up. */
7248 cursor_glyph = get_phys_cursor_glyph (w);
7249 if (cursor_glyph == NULL)
7250 return;
7252 /* Compute frame-relative coordinates for phys cursor. */
7253 get_phys_cursor_geometry (w, row, cursor_glyph, &x, &y, &h);
7254 wd = w->phys_cursor_width;
7256 /* The foreground of cursor_gc is typically the same as the normal
7257 background color, which can cause the cursor box to be invisible. */
7258 xgcv.foreground = f->output_data.x->cursor_pixel;
7259 if (dpyinfo->scratch_cursor_gc)
7260 XChangeGC (dpy, dpyinfo->scratch_cursor_gc, GCForeground, &xgcv);
7261 else
7262 dpyinfo->scratch_cursor_gc = XCreateGC (dpy, FRAME_X_WINDOW (f),
7263 GCForeground, &xgcv);
7264 gc = dpyinfo->scratch_cursor_gc;
7266 /* Set clipping, draw the rectangle, and reset clipping again. */
7267 x_clip_to_row (w, row, TEXT_AREA, gc);
7268 XDrawRectangle (dpy, FRAME_X_WINDOW (f), gc, x, y, wd, h - 1);
7269 XSetClipMask (dpy, gc, None);
7273 /* Draw a bar cursor on window W in glyph row ROW.
7275 Implementation note: One would like to draw a bar cursor with an
7276 angle equal to the one given by the font property XA_ITALIC_ANGLE.
7277 Unfortunately, I didn't find a font yet that has this property set.
7278 --gerd. */
7280 static void
7281 x_draw_bar_cursor (struct window *w, struct glyph_row *row, int width, enum text_cursor_kinds kind)
7283 struct frame *f = XFRAME (w->frame);
7284 struct glyph *cursor_glyph;
7286 /* If cursor is out of bounds, don't draw garbage. This can happen
7287 in mini-buffer windows when switching between echo area glyphs
7288 and mini-buffer. */
7289 cursor_glyph = get_phys_cursor_glyph (w);
7290 if (cursor_glyph == NULL)
7291 return;
7293 /* If on an image, draw like a normal cursor. That's usually better
7294 visible than drawing a bar, esp. if the image is large so that
7295 the bar might not be in the window. */
7296 if (cursor_glyph->type == IMAGE_GLYPH)
7298 struct glyph_row *r;
7299 r = MATRIX_ROW (w->current_matrix, w->phys_cursor.vpos);
7300 draw_phys_cursor_glyph (w, r, DRAW_CURSOR);
7302 else
7304 Display *dpy = FRAME_X_DISPLAY (f);
7305 Window window = FRAME_X_WINDOW (f);
7306 GC gc = FRAME_X_DISPLAY_INFO (f)->scratch_cursor_gc;
7307 unsigned long mask = GCForeground | GCBackground | GCGraphicsExposures;
7308 struct face *face = FACE_FROM_ID (f, cursor_glyph->face_id);
7309 XGCValues xgcv;
7311 /* If the glyph's background equals the color we normally draw
7312 the bars cursor in, the bar cursor in its normal color is
7313 invisible. Use the glyph's foreground color instead in this
7314 case, on the assumption that the glyph's colors are chosen so
7315 that the glyph is legible. */
7316 if (face->background == f->output_data.x->cursor_pixel)
7317 xgcv.background = xgcv.foreground = face->foreground;
7318 else
7319 xgcv.background = xgcv.foreground = f->output_data.x->cursor_pixel;
7320 xgcv.graphics_exposures = 0;
7322 if (gc)
7323 XChangeGC (dpy, gc, mask, &xgcv);
7324 else
7326 gc = XCreateGC (dpy, window, mask, &xgcv);
7327 FRAME_X_DISPLAY_INFO (f)->scratch_cursor_gc = gc;
7330 x_clip_to_row (w, row, TEXT_AREA, gc);
7332 if (kind == BAR_CURSOR)
7334 int x = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x);
7336 if (width < 0)
7337 width = FRAME_CURSOR_WIDTH (f);
7338 width = min (cursor_glyph->pixel_width, width);
7340 w->phys_cursor_width = width;
7342 /* If the character under cursor is R2L, draw the bar cursor
7343 on the right of its glyph, rather than on the left. */
7344 if ((cursor_glyph->resolved_level & 1) != 0)
7345 x += cursor_glyph->pixel_width - width;
7347 XFillRectangle (dpy, window, gc, x,
7348 WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y),
7349 width, row->height);
7351 else
7353 int dummy_x, dummy_y, dummy_h;
7355 if (width < 0)
7356 width = row->height;
7358 width = min (row->height, width);
7360 get_phys_cursor_geometry (w, row, cursor_glyph, &dummy_x,
7361 &dummy_y, &dummy_h);
7363 XFillRectangle (dpy, window, gc,
7364 WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x),
7365 WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y +
7366 row->height - width),
7367 w->phys_cursor_width, width);
7370 XSetClipMask (dpy, gc, None);
7375 /* RIF: Define cursor CURSOR on frame F. */
7377 static void
7378 x_define_frame_cursor (struct frame *f, Cursor cursor)
7380 if (!f->pointer_invisible
7381 && f->output_data.x->current_cursor != cursor)
7382 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), cursor);
7383 f->output_data.x->current_cursor = cursor;
7387 /* RIF: Clear area on frame F. */
7389 static void
7390 x_clear_frame_area (struct frame *f, int x, int y, int width, int height)
7392 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
7393 x, y, width, height, False);
7394 #ifdef USE_GTK
7395 /* Must queue a redraw, because scroll bars might have been cleared. */
7396 if (FRAME_GTK_WIDGET (f))
7397 gtk_widget_queue_draw (FRAME_GTK_WIDGET (f));
7398 #endif
7402 /* RIF: Draw cursor on window W. */
7404 static void
7405 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)
7407 struct frame *f = XFRAME (WINDOW_FRAME (w));
7409 if (on_p)
7411 w->phys_cursor_type = cursor_type;
7412 w->phys_cursor_on_p = 1;
7414 if (glyph_row->exact_window_width_line_p
7415 && (glyph_row->reversed_p
7416 ? (w->phys_cursor.hpos < 0)
7417 : (w->phys_cursor.hpos >= glyph_row->used[TEXT_AREA])))
7419 glyph_row->cursor_in_fringe_p = 1;
7420 draw_fringe_bitmap (w, glyph_row, glyph_row->reversed_p);
7422 else
7424 switch (cursor_type)
7426 case HOLLOW_BOX_CURSOR:
7427 x_draw_hollow_cursor (w, glyph_row);
7428 break;
7430 case FILLED_BOX_CURSOR:
7431 draw_phys_cursor_glyph (w, glyph_row, DRAW_CURSOR);
7432 break;
7434 case BAR_CURSOR:
7435 x_draw_bar_cursor (w, glyph_row, cursor_width, BAR_CURSOR);
7436 break;
7438 case HBAR_CURSOR:
7439 x_draw_bar_cursor (w, glyph_row, cursor_width, HBAR_CURSOR);
7440 break;
7442 case NO_CURSOR:
7443 w->phys_cursor_width = 0;
7444 break;
7446 default:
7447 emacs_abort ();
7451 #ifdef HAVE_X_I18N
7452 if (w == XWINDOW (f->selected_window))
7453 if (FRAME_XIC (f) && (FRAME_XIC_STYLE (f) & XIMPreeditPosition))
7454 xic_set_preeditarea (w, x, y);
7455 #endif
7458 #ifndef XFlush
7459 XFlush (FRAME_X_DISPLAY (f));
7460 #endif
7464 /* Icons. */
7466 /* Make the x-window of frame F use the gnu icon bitmap. */
7469 x_bitmap_icon (struct frame *f, Lisp_Object file)
7471 ptrdiff_t bitmap_id;
7473 if (FRAME_X_WINDOW (f) == 0)
7474 return 1;
7476 /* Free up our existing icon bitmap and mask if any. */
7477 if (f->output_data.x->icon_bitmap > 0)
7478 x_destroy_bitmap (f, f->output_data.x->icon_bitmap);
7479 f->output_data.x->icon_bitmap = 0;
7481 if (STRINGP (file))
7483 #ifdef USE_GTK
7484 /* Use gtk_window_set_icon_from_file () if available,
7485 It's not restricted to bitmaps */
7486 if (xg_set_icon (f, file))
7487 return 0;
7488 #endif /* USE_GTK */
7489 bitmap_id = x_create_bitmap_from_file (f, file);
7490 x_create_bitmap_mask (f, bitmap_id);
7492 else
7494 /* Create the GNU bitmap and mask if necessary. */
7495 if (FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id < 0)
7497 ptrdiff_t rc = -1;
7499 #ifdef USE_GTK
7501 if (xg_set_icon (f, xg_default_icon_file)
7502 || xg_set_icon_from_xpm_data (f, gnu_xpm_bits))
7503 return 0;
7505 #elif defined (HAVE_XPM) && defined (HAVE_X_WINDOWS)
7507 rc = x_create_bitmap_from_xpm_data (f, gnu_xpm_bits);
7508 if (rc != -1)
7509 FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id = rc;
7511 #endif
7513 /* If all else fails, use the (black and white) xbm image. */
7514 if (rc == -1)
7516 rc = x_create_bitmap_from_data (f, (char *) gnu_xbm_bits,
7517 gnu_xbm_width, gnu_xbm_height);
7518 if (rc == -1)
7519 return 1;
7521 FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id = rc;
7522 x_create_bitmap_mask (f, FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id);
7526 /* The first time we create the GNU bitmap and mask,
7527 this increments the ref-count one extra time.
7528 As a result, the GNU bitmap and mask are never freed.
7529 That way, we don't have to worry about allocating it again. */
7530 x_reference_bitmap (f, FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id);
7532 bitmap_id = FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id;
7535 x_wm_set_icon_pixmap (f, bitmap_id);
7536 f->output_data.x->icon_bitmap = bitmap_id;
7538 return 0;
7542 /* Make the x-window of frame F use a rectangle with text.
7543 Use ICON_NAME as the text. */
7546 x_text_icon (struct frame *f, const char *icon_name)
7548 if (FRAME_X_WINDOW (f) == 0)
7549 return 1;
7552 XTextProperty text;
7553 text.value = (unsigned char *) icon_name;
7554 text.encoding = XA_STRING;
7555 text.format = 8;
7556 text.nitems = strlen (icon_name);
7557 XSetWMIconName (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f), &text);
7560 if (f->output_data.x->icon_bitmap > 0)
7561 x_destroy_bitmap (f, f->output_data.x->icon_bitmap);
7562 f->output_data.x->icon_bitmap = 0;
7563 x_wm_set_icon_pixmap (f, 0);
7565 return 0;
7568 #define X_ERROR_MESSAGE_SIZE 200
7570 /* If non-nil, this should be a string.
7571 It means catch X errors and store the error message in this string.
7573 The reason we use a stack is that x_catch_error/x_uncatch_error can
7574 be called from a signal handler.
7577 struct x_error_message_stack {
7578 char string[X_ERROR_MESSAGE_SIZE];
7579 Display *dpy;
7580 struct x_error_message_stack *prev;
7582 static struct x_error_message_stack *x_error_message;
7584 /* An X error handler which stores the error message in
7585 *x_error_message. This is called from x_error_handler if
7586 x_catch_errors is in effect. */
7588 static void
7589 x_error_catcher (Display *display, XErrorEvent *event)
7591 XGetErrorText (display, event->error_code,
7592 x_error_message->string,
7593 X_ERROR_MESSAGE_SIZE);
7596 /* Begin trapping X errors for display DPY. Actually we trap X errors
7597 for all displays, but DPY should be the display you are actually
7598 operating on.
7600 After calling this function, X protocol errors no longer cause
7601 Emacs to exit; instead, they are recorded in the string
7602 stored in *x_error_message.
7604 Calling x_check_errors signals an Emacs error if an X error has
7605 occurred since the last call to x_catch_errors or x_check_errors.
7607 Calling x_uncatch_errors resumes the normal error handling. */
7609 void
7610 x_catch_errors (Display *dpy)
7612 struct x_error_message_stack *data = xmalloc (sizeof *data);
7614 /* Make sure any errors from previous requests have been dealt with. */
7615 XSync (dpy, False);
7617 data->dpy = dpy;
7618 data->string[0] = 0;
7619 data->prev = x_error_message;
7620 x_error_message = data;
7623 /* Undo the last x_catch_errors call.
7624 DPY should be the display that was passed to x_catch_errors. */
7626 void
7627 x_uncatch_errors (void)
7629 struct x_error_message_stack *tmp;
7631 block_input ();
7633 /* The display may have been closed before this function is called.
7634 Check if it is still open before calling XSync. */
7635 if (x_display_info_for_display (x_error_message->dpy) != 0)
7636 XSync (x_error_message->dpy, False);
7638 tmp = x_error_message;
7639 x_error_message = x_error_message->prev;
7640 xfree (tmp);
7641 unblock_input ();
7644 /* If any X protocol errors have arrived since the last call to
7645 x_catch_errors or x_check_errors, signal an Emacs error using
7646 sprintf (a buffer, FORMAT, the x error message text) as the text. */
7648 void
7649 x_check_errors (Display *dpy, const char *format)
7651 /* Make sure to catch any errors incurred so far. */
7652 XSync (dpy, False);
7654 if (x_error_message->string[0])
7656 char string[X_ERROR_MESSAGE_SIZE];
7657 memcpy (string, x_error_message->string, X_ERROR_MESSAGE_SIZE);
7658 x_uncatch_errors ();
7659 error (format, string);
7663 /* Nonzero if we had any X protocol errors
7664 since we did x_catch_errors on DPY. */
7667 x_had_errors_p (Display *dpy)
7669 /* Make sure to catch any errors incurred so far. */
7670 XSync (dpy, False);
7672 return x_error_message->string[0] != 0;
7675 /* Forget about any errors we have had, since we did x_catch_errors on DPY. */
7677 void
7678 x_clear_errors (Display *dpy)
7680 x_error_message->string[0] = 0;
7683 #if 0 /* See comment in unwind_to_catch why calling this is a bad
7684 * idea. --lorentey */
7685 /* Close off all unclosed x_catch_errors calls. */
7687 void
7688 x_fully_uncatch_errors (void)
7690 while (x_error_message)
7691 x_uncatch_errors ();
7693 #endif
7695 #if 0
7696 static unsigned int x_wire_count;
7697 x_trace_wire (void)
7699 fprintf (stderr, "Lib call: %d\n", ++x_wire_count);
7701 #endif /* ! 0 */
7704 /************************************************************************
7705 Handling X errors
7706 ************************************************************************/
7708 /* Error message passed to x_connection_closed. */
7710 static char *error_msg;
7712 /* Handle the loss of connection to display DPY. ERROR_MESSAGE is
7713 the text of an error message that lead to the connection loss. */
7715 static void
7716 x_connection_closed (Display *dpy, const char *error_message)
7718 struct x_display_info *dpyinfo = x_display_info_for_display (dpy);
7719 Lisp_Object frame, tail;
7720 ptrdiff_t idx = SPECPDL_INDEX ();
7722 error_msg = alloca (strlen (error_message) + 1);
7723 strcpy (error_msg, error_message);
7725 /* Inhibit redisplay while frames are being deleted. */
7726 specbind (Qinhibit_redisplay, Qt);
7728 if (dpyinfo)
7730 /* Protect display from being closed when we delete the last
7731 frame on it. */
7732 dpyinfo->reference_count++;
7733 dpyinfo->terminal->reference_count++;
7736 /* First delete frames whose mini-buffers are on frames
7737 that are on the dead display. */
7738 FOR_EACH_FRAME (tail, frame)
7740 Lisp_Object minibuf_frame;
7741 minibuf_frame
7742 = WINDOW_FRAME (XWINDOW (FRAME_MINIBUF_WINDOW (XFRAME (frame))));
7743 if (FRAME_X_P (XFRAME (frame))
7744 && FRAME_X_P (XFRAME (minibuf_frame))
7745 && ! EQ (frame, minibuf_frame)
7746 && FRAME_X_DISPLAY_INFO (XFRAME (minibuf_frame)) == dpyinfo)
7747 delete_frame (frame, Qnoelisp);
7750 /* Now delete all remaining frames on the dead display.
7751 We are now sure none of these is used as the mini-buffer
7752 for another frame that we need to delete. */
7753 FOR_EACH_FRAME (tail, frame)
7754 if (FRAME_X_P (XFRAME (frame))
7755 && FRAME_X_DISPLAY_INFO (XFRAME (frame)) == dpyinfo)
7757 /* Set this to t so that delete_frame won't get confused
7758 trying to find a replacement. */
7759 kset_default_minibuffer_frame (FRAME_KBOARD (XFRAME (frame)), Qt);
7760 delete_frame (frame, Qnoelisp);
7763 /* If DPYINFO is null, this means we didn't open the display in the
7764 first place, so don't try to close it. */
7765 if (dpyinfo)
7767 /* We can not call XtCloseDisplay here because it calls XSync.
7768 XSync inside the error handler apparently hangs Emacs. On
7769 current Xt versions, this isn't needed either. */
7770 #ifdef USE_GTK
7771 /* A long-standing GTK bug prevents proper disconnect handling
7772 (https://bugzilla.gnome.org/show_bug.cgi?id=85715). Once,
7773 the resulting Glib error message loop filled a user's disk.
7774 To avoid this, kill Emacs unconditionally on disconnect. */
7775 shut_down_emacs (0, Qnil);
7776 fprintf (stderr, "%s\n\
7777 When compiled with GTK, Emacs cannot recover from X disconnects.\n\
7778 This is a GTK bug: https://bugzilla.gnome.org/show_bug.cgi?id=85715\n\
7779 For details, see etc/PROBLEMS.\n",
7780 error_msg);
7781 emacs_abort ();
7782 #endif /* USE_GTK */
7784 /* Indicate that this display is dead. */
7785 dpyinfo->display = 0;
7787 dpyinfo->reference_count--;
7788 dpyinfo->terminal->reference_count--;
7789 if (dpyinfo->reference_count != 0)
7790 /* We have just closed all frames on this display. */
7791 emacs_abort ();
7794 Lisp_Object tmp;
7795 XSETTERMINAL (tmp, dpyinfo->terminal);
7796 Fdelete_terminal (tmp, Qnoelisp);
7800 if (terminal_list == 0)
7802 fprintf (stderr, "%s\n", error_msg);
7803 Fkill_emacs (make_number (70));
7804 /* NOTREACHED */
7807 totally_unblock_input ();
7809 unbind_to (idx, Qnil);
7810 clear_waiting_for_input ();
7812 /* Tell GCC not to suggest attribute 'noreturn' for this function. */
7813 IF_LINT (if (! terminal_list) return; )
7815 /* Here, we absolutely have to use a non-local exit (e.g. signal, throw,
7816 longjmp), because returning from this function would get us back into
7817 Xlib's code which will directly call `exit'. */
7818 error ("%s", error_msg);
7821 /* We specifically use it before defining it, so that gcc doesn't inline it,
7822 otherwise gdb doesn't know how to properly put a breakpoint on it. */
7823 static void x_error_quitter (Display *, XErrorEvent *);
7825 /* This is the first-level handler for X protocol errors.
7826 It calls x_error_quitter or x_error_catcher. */
7828 static int
7829 x_error_handler (Display *display, XErrorEvent *event)
7831 #if defined USE_GTK && defined HAVE_GTK3
7832 if (event->error_code == BadMatch
7833 && event->request_code == X_SetInputFocus
7834 && event->minor_code == 0)
7836 return 0;
7838 #endif
7840 if (x_error_message)
7841 x_error_catcher (display, event);
7842 else
7843 x_error_quitter (display, event);
7844 return 0;
7847 /* This is the usual handler for X protocol errors.
7848 It kills all frames on the display that we got the error for.
7849 If that was the only one, it prints an error message and kills Emacs. */
7851 /* .gdbinit puts a breakpoint here, so make sure it is not inlined. */
7853 /* On older GCC versions, just putting x_error_quitter
7854 after x_error_handler prevents inlining into the former. */
7856 static void NO_INLINE
7857 x_error_quitter (Display *display, XErrorEvent *event)
7859 char buf[256], buf1[356];
7861 /* Ignore BadName errors. They can happen because of fonts
7862 or colors that are not defined. */
7864 if (event->error_code == BadName)
7865 return;
7867 /* Note that there is no real way portable across R3/R4 to get the
7868 original error handler. */
7870 XGetErrorText (display, event->error_code, buf, sizeof (buf));
7871 sprintf (buf1, "X protocol error: %s on protocol request %d",
7872 buf, event->request_code);
7873 x_connection_closed (display, buf1);
7877 /* This is the handler for X IO errors, always.
7878 It kills all frames on the display that we lost touch with.
7879 If that was the only one, it prints an error message and kills Emacs. */
7881 static int
7882 x_io_error_quitter (Display *display)
7884 char buf[256];
7886 snprintf (buf, sizeof buf, "Connection lost to X server `%s'",
7887 DisplayString (display));
7888 x_connection_closed (display, buf);
7889 return 0;
7892 /* Changing the font of the frame. */
7894 /* Give frame F the font FONT-OBJECT as its default font. The return
7895 value is FONT-OBJECT. FONTSET is an ID of the fontset for the
7896 frame. If it is negative, generate a new fontset from
7897 FONT-OBJECT. */
7899 Lisp_Object
7900 x_new_font (struct frame *f, Lisp_Object font_object, int fontset)
7902 struct font *font = XFONT_OBJECT (font_object);
7904 if (fontset < 0)
7905 fontset = fontset_from_font (font_object);
7906 FRAME_FONTSET (f) = fontset;
7907 if (FRAME_FONT (f) == font)
7908 /* This font is already set in frame F. There's nothing more to
7909 do. */
7910 return font_object;
7912 FRAME_FONT (f) = font;
7913 FRAME_BASELINE_OFFSET (f) = font->baseline_offset;
7914 FRAME_COLUMN_WIDTH (f) = font->average_width;
7915 FRAME_LINE_HEIGHT (f) = FONT_HEIGHT (font);
7917 compute_fringe_widths (f, 1);
7919 /* Compute the scroll bar width in character columns. */
7920 if (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) > 0)
7922 int wid = FRAME_COLUMN_WIDTH (f);
7923 FRAME_CONFIG_SCROLL_BAR_COLS (f)
7924 = (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) + wid-1) / wid;
7926 else
7928 int wid = FRAME_COLUMN_WIDTH (f);
7929 FRAME_CONFIG_SCROLL_BAR_COLS (f) = (14 + wid - 1) / wid;
7932 if (FRAME_X_WINDOW (f) != 0)
7934 /* Don't change the size of a tip frame; there's no point in
7935 doing it because it's done in Fx_show_tip, and it leads to
7936 problems because the tip frame has no widget. */
7937 if (NILP (tip_frame) || XFRAME (tip_frame) != f)
7938 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
7941 #ifdef HAVE_X_I18N
7942 if (FRAME_XIC (f)
7943 && (FRAME_XIC_STYLE (f) & (XIMPreeditPosition | XIMStatusArea)))
7945 block_input ();
7946 xic_set_xfontset (f, SSDATA (fontset_ascii (fontset)));
7947 unblock_input ();
7949 #endif
7951 return font_object;
7955 /***********************************************************************
7956 X Input Methods
7957 ***********************************************************************/
7959 #ifdef HAVE_X_I18N
7961 #ifdef HAVE_X11R6
7963 /* XIM destroy callback function, which is called whenever the
7964 connection to input method XIM dies. CLIENT_DATA contains a
7965 pointer to the x_display_info structure corresponding to XIM. */
7967 static void
7968 xim_destroy_callback (XIM xim, XPointer client_data, XPointer call_data)
7970 struct x_display_info *dpyinfo = (struct x_display_info *) client_data;
7971 Lisp_Object frame, tail;
7973 block_input ();
7975 /* No need to call XDestroyIC.. */
7976 FOR_EACH_FRAME (tail, frame)
7978 struct frame *f = XFRAME (frame);
7979 if (FRAME_X_P (f) && FRAME_X_DISPLAY_INFO (f) == dpyinfo)
7981 FRAME_XIC (f) = NULL;
7982 xic_free_xfontset (f);
7986 /* No need to call XCloseIM. */
7987 dpyinfo->xim = NULL;
7988 XFree (dpyinfo->xim_styles);
7989 unblock_input ();
7992 #endif /* HAVE_X11R6 */
7994 #ifdef HAVE_X11R6
7995 /* This isn't prototyped in OSF 5.0 or 5.1a. */
7996 extern char *XSetIMValues (XIM, ...);
7997 #endif
7999 /* Open the connection to the XIM server on display DPYINFO.
8000 RESOURCE_NAME is the resource name Emacs uses. */
8002 static void
8003 xim_open_dpy (struct x_display_info *dpyinfo, char *resource_name)
8005 XIM xim;
8007 #ifdef HAVE_XIM
8008 if (use_xim)
8010 if (dpyinfo->xim)
8011 XCloseIM (dpyinfo->xim);
8012 xim = XOpenIM (dpyinfo->display, dpyinfo->xrdb, resource_name,
8013 emacs_class);
8014 dpyinfo->xim = xim;
8016 if (xim)
8018 #ifdef HAVE_X11R6
8019 XIMCallback destroy;
8020 #endif
8022 /* Get supported styles and XIM values. */
8023 XGetIMValues (xim, XNQueryInputStyle, &dpyinfo->xim_styles, NULL);
8025 #ifdef HAVE_X11R6
8026 destroy.callback = xim_destroy_callback;
8027 destroy.client_data = (XPointer)dpyinfo;
8028 XSetIMValues (xim, XNDestroyCallback, &destroy, NULL);
8029 #endif
8033 else
8034 #endif /* HAVE_XIM */
8035 dpyinfo->xim = NULL;
8039 #ifdef HAVE_X11R6_XIM
8041 /* XIM instantiate callback function, which is called whenever an XIM
8042 server is available. DISPLAY is the display of the XIM.
8043 CLIENT_DATA contains a pointer to an xim_inst_t structure created
8044 when the callback was registered. */
8046 static void
8047 xim_instantiate_callback (Display *display, XPointer client_data, XPointer call_data)
8049 struct xim_inst_t *xim_inst = (struct xim_inst_t *) client_data;
8050 struct x_display_info *dpyinfo = xim_inst->dpyinfo;
8052 /* We don't support multiple XIM connections. */
8053 if (dpyinfo->xim)
8054 return;
8056 xim_open_dpy (dpyinfo, xim_inst->resource_name);
8058 /* Create XIC for the existing frames on the same display, as long
8059 as they have no XIC. */
8060 if (dpyinfo->xim && dpyinfo->reference_count > 0)
8062 Lisp_Object tail, frame;
8064 block_input ();
8065 FOR_EACH_FRAME (tail, frame)
8067 struct frame *f = XFRAME (frame);
8069 if (FRAME_X_P (f)
8070 && FRAME_X_DISPLAY_INFO (f) == xim_inst->dpyinfo)
8071 if (FRAME_XIC (f) == NULL)
8073 create_frame_xic (f);
8074 if (FRAME_XIC_STYLE (f) & XIMStatusArea)
8075 xic_set_statusarea (f);
8076 if (FRAME_XIC_STYLE (f) & XIMPreeditPosition)
8078 struct window *w = XWINDOW (f->selected_window);
8079 xic_set_preeditarea (w, w->cursor.x, w->cursor.y);
8084 unblock_input ();
8088 #endif /* HAVE_X11R6_XIM */
8091 /* Open a connection to the XIM server on display DPYINFO.
8092 RESOURCE_NAME is the resource name for Emacs. On X11R5, open the
8093 connection only at the first time. On X11R6, open the connection
8094 in the XIM instantiate callback function. */
8096 static void
8097 xim_initialize (struct x_display_info *dpyinfo, char *resource_name)
8099 dpyinfo->xim = NULL;
8100 #ifdef HAVE_XIM
8101 if (use_xim)
8103 #ifdef HAVE_X11R6_XIM
8104 struct xim_inst_t *xim_inst = xmalloc (sizeof *xim_inst);
8105 ptrdiff_t len;
8107 dpyinfo->xim_callback_data = xim_inst;
8108 xim_inst->dpyinfo = dpyinfo;
8109 len = strlen (resource_name);
8110 xim_inst->resource_name = xmalloc (len + 1);
8111 memcpy (xim_inst->resource_name, resource_name, len + 1);
8112 XRegisterIMInstantiateCallback (dpyinfo->display, dpyinfo->xrdb,
8113 resource_name, emacs_class,
8114 xim_instantiate_callback,
8115 /* This is XPointer in XFree86
8116 but (XPointer *) on Tru64, at
8117 least, hence the configure test. */
8118 (XRegisterIMInstantiateCallback_arg6) xim_inst);
8119 #else /* not HAVE_X11R6_XIM */
8120 xim_open_dpy (dpyinfo, resource_name);
8121 #endif /* not HAVE_X11R6_XIM */
8123 #endif /* HAVE_XIM */
8127 /* Close the connection to the XIM server on display DPYINFO. */
8129 static void
8130 xim_close_dpy (struct x_display_info *dpyinfo)
8132 #ifdef HAVE_XIM
8133 if (use_xim)
8135 #ifdef HAVE_X11R6_XIM
8136 if (dpyinfo->display)
8137 XUnregisterIMInstantiateCallback (dpyinfo->display, dpyinfo->xrdb,
8138 NULL, emacs_class,
8139 xim_instantiate_callback, NULL);
8140 xfree (dpyinfo->xim_callback_data->resource_name);
8141 xfree (dpyinfo->xim_callback_data);
8142 #endif /* HAVE_X11R6_XIM */
8143 if (dpyinfo->display)
8144 XCloseIM (dpyinfo->xim);
8145 dpyinfo->xim = NULL;
8146 XFree (dpyinfo->xim_styles);
8148 #endif /* HAVE_XIM */
8151 #endif /* not HAVE_X11R6_XIM */
8155 /* Calculate the absolute position in frame F
8156 from its current recorded position values and gravity. */
8158 static void
8159 x_calc_absolute_position (struct frame *f)
8161 int flags = f->size_hint_flags;
8163 /* We have nothing to do if the current position
8164 is already for the top-left corner. */
8165 if (! ((flags & XNegative) || (flags & YNegative)))
8166 return;
8168 /* Treat negative positions as relative to the leftmost bottommost
8169 position that fits on the screen. */
8170 if (flags & XNegative)
8171 f->left_pos = x_display_pixel_width (FRAME_X_DISPLAY_INFO (f))
8172 - FRAME_PIXEL_WIDTH (f) + f->left_pos;
8175 int height = FRAME_PIXEL_HEIGHT (f);
8177 #if defined USE_X_TOOLKIT && defined USE_MOTIF
8178 /* Something is fishy here. When using Motif, starting Emacs with
8179 `-g -0-0', the frame appears too low by a few pixels.
8181 This seems to be so because initially, while Emacs is starting,
8182 the column widget's height and the frame's pixel height are
8183 different. The column widget's height is the right one. In
8184 later invocations, when Emacs is up, the frame's pixel height
8185 is right, though.
8187 It's not obvious where the initial small difference comes from.
8188 2000-12-01, gerd. */
8190 XtVaGetValues (f->output_data.x->column_widget, XtNheight, &height, NULL);
8191 #endif
8193 if (flags & YNegative)
8194 f->top_pos = x_display_pixel_height (FRAME_X_DISPLAY_INFO (f))
8195 - height + f->top_pos;
8198 /* The left_pos and top_pos
8199 are now relative to the top and left screen edges,
8200 so the flags should correspond. */
8201 f->size_hint_flags &= ~ (XNegative | YNegative);
8204 /* CHANGE_GRAVITY is 1 when calling from Fset_frame_position,
8205 to really change the position, and 0 when calling from
8206 x_make_frame_visible (in that case, XOFF and YOFF are the current
8207 position values). It is -1 when calling from x_set_frame_parameters,
8208 which means, do adjust for borders but don't change the gravity. */
8210 void
8211 x_set_offset (struct frame *f, register int xoff, register int yoff, int change_gravity)
8213 int modified_top, modified_left;
8215 if (change_gravity > 0)
8217 FRAME_X_OUTPUT (f)->left_before_move = f->left_pos;
8218 FRAME_X_OUTPUT (f)->top_before_move = f->top_pos;
8220 f->top_pos = yoff;
8221 f->left_pos = xoff;
8222 f->size_hint_flags &= ~ (XNegative | YNegative);
8223 if (xoff < 0)
8224 f->size_hint_flags |= XNegative;
8225 if (yoff < 0)
8226 f->size_hint_flags |= YNegative;
8227 f->win_gravity = NorthWestGravity;
8229 x_calc_absolute_position (f);
8231 block_input ();
8232 x_wm_set_size_hint (f, (long) 0, 0);
8234 modified_left = f->left_pos;
8235 modified_top = f->top_pos;
8237 if (change_gravity != 0 && FRAME_X_DISPLAY_INFO (f)->wm_type == X_WMTYPE_A)
8239 /* Some WMs (twm, wmaker at least) has an offset that is smaller
8240 than the WM decorations. So we use the calculated offset instead
8241 of the WM decoration sizes here (x/y_pixels_outer_diff). */
8242 modified_left += FRAME_X_OUTPUT (f)->move_offset_left;
8243 modified_top += FRAME_X_OUTPUT (f)->move_offset_top;
8246 XMoveWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
8247 modified_left, modified_top);
8249 x_sync_with_move (f, f->left_pos, f->top_pos,
8250 FRAME_X_DISPLAY_INFO (f)->wm_type == X_WMTYPE_UNKNOWN
8251 ? 1 : 0);
8253 /* change_gravity is non-zero when this function is called from Lisp to
8254 programmatically move a frame. In that case, we call
8255 x_check_expected_move to discover if we have a "Type A" or "Type B"
8256 window manager, and, for a "Type A" window manager, adjust the position
8257 of the frame.
8259 We call x_check_expected_move if a programmatic move occurred, and
8260 either the window manager type (A/B) is unknown or it is Type A but we
8261 need to compute the top/left offset adjustment for this frame. */
8263 if (change_gravity != 0 &&
8264 (FRAME_X_DISPLAY_INFO (f)->wm_type == X_WMTYPE_UNKNOWN
8265 || (FRAME_X_DISPLAY_INFO (f)->wm_type == X_WMTYPE_A
8266 && (FRAME_X_OUTPUT (f)->move_offset_left == 0
8267 && FRAME_X_OUTPUT (f)->move_offset_top == 0))))
8268 x_check_expected_move (f, modified_left, modified_top);
8270 unblock_input ();
8273 /* Return non-zero if _NET_SUPPORTING_WM_CHECK window exists and _NET_SUPPORTED
8274 on the root window for frame F contains ATOMNAME.
8275 This is how a WM check shall be done according to the Window Manager
8276 Specification/Extended Window Manager Hints at
8277 http://freedesktop.org/wiki/Specifications/wm-spec. */
8279 static int
8280 wm_supports (struct frame *f, Atom want_atom)
8282 Atom actual_type;
8283 unsigned long actual_size, bytes_remaining;
8284 int i, rc, actual_format;
8285 Window wmcheck_window;
8286 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
8287 Window target_window = dpyinfo->root_window;
8288 long max_len = 65536;
8289 Display *dpy = FRAME_X_DISPLAY (f);
8290 unsigned char *tmp_data = NULL;
8291 Atom target_type = XA_WINDOW;
8293 block_input ();
8295 x_catch_errors (dpy);
8296 rc = XGetWindowProperty (dpy, target_window,
8297 dpyinfo->Xatom_net_supporting_wm_check,
8298 0, max_len, False, target_type,
8299 &actual_type, &actual_format, &actual_size,
8300 &bytes_remaining, &tmp_data);
8302 if (rc != Success || actual_type != XA_WINDOW || x_had_errors_p (dpy))
8304 if (tmp_data) XFree (tmp_data);
8305 x_uncatch_errors ();
8306 unblock_input ();
8307 return 0;
8310 wmcheck_window = *(Window *) tmp_data;
8311 XFree (tmp_data);
8313 /* Check if window exists. */
8314 XSelectInput (dpy, wmcheck_window, StructureNotifyMask);
8315 x_sync (f);
8316 if (x_had_errors_p (dpy))
8318 x_uncatch_errors ();
8319 unblock_input ();
8320 return 0;
8323 if (dpyinfo->net_supported_window != wmcheck_window)
8325 /* Window changed, reload atoms */
8326 if (dpyinfo->net_supported_atoms != NULL)
8327 XFree (dpyinfo->net_supported_atoms);
8328 dpyinfo->net_supported_atoms = NULL;
8329 dpyinfo->nr_net_supported_atoms = 0;
8330 dpyinfo->net_supported_window = 0;
8332 target_type = XA_ATOM;
8333 tmp_data = NULL;
8334 rc = XGetWindowProperty (dpy, target_window,
8335 dpyinfo->Xatom_net_supported,
8336 0, max_len, False, target_type,
8337 &actual_type, &actual_format, &actual_size,
8338 &bytes_remaining, &tmp_data);
8340 if (rc != Success || actual_type != XA_ATOM || x_had_errors_p (dpy))
8342 if (tmp_data) XFree (tmp_data);
8343 x_uncatch_errors ();
8344 unblock_input ();
8345 return 0;
8348 dpyinfo->net_supported_atoms = (Atom *)tmp_data;
8349 dpyinfo->nr_net_supported_atoms = actual_size;
8350 dpyinfo->net_supported_window = wmcheck_window;
8353 rc = 0;
8355 for (i = 0; rc == 0 && i < dpyinfo->nr_net_supported_atoms; ++i)
8356 rc = dpyinfo->net_supported_atoms[i] == want_atom;
8358 x_uncatch_errors ();
8359 unblock_input ();
8361 return rc;
8364 static void
8365 set_wm_state (Lisp_Object frame, int add, Atom atom, Atom value)
8367 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (XFRAME (frame));
8369 x_send_client_event (frame, make_number (0), frame,
8370 dpyinfo->Xatom_net_wm_state,
8371 make_number (32),
8372 /* 1 = add, 0 = remove */
8373 Fcons
8374 (make_number (add ? 1 : 0),
8375 Fcons
8376 (make_fixnum_or_float (atom),
8377 (value != 0
8378 ? list1 (make_fixnum_or_float (value))
8379 : Qnil))));
8382 void
8383 x_set_sticky (struct frame *f, Lisp_Object new_value, Lisp_Object old_value)
8385 Lisp_Object frame;
8386 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
8388 XSETFRAME (frame, f);
8390 set_wm_state (frame, NILP (new_value) ? 0 : 1,
8391 dpyinfo->Xatom_net_wm_state_sticky, None);
8394 /* Return the current _NET_WM_STATE.
8395 SIZE_STATE is set to one of the FULLSCREEN_* values.
8396 STICKY is set to 1 if the sticky state is set, 0 if not.
8398 Return non-zero if we are not hidden, zero if we are. */
8400 static int
8401 get_current_wm_state (struct frame *f,
8402 Window window,
8403 int *size_state,
8404 int *sticky)
8406 Atom actual_type;
8407 unsigned long actual_size, bytes_remaining;
8408 int i, rc, actual_format, is_hidden = 0;
8409 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
8410 long max_len = 65536;
8411 Display *dpy = FRAME_X_DISPLAY (f);
8412 unsigned char *tmp_data = NULL;
8413 Atom target_type = XA_ATOM;
8415 *sticky = 0;
8416 *size_state = FULLSCREEN_NONE;
8418 block_input ();
8419 x_catch_errors (dpy);
8420 rc = XGetWindowProperty (dpy, window, dpyinfo->Xatom_net_wm_state,
8421 0, max_len, False, target_type,
8422 &actual_type, &actual_format, &actual_size,
8423 &bytes_remaining, &tmp_data);
8425 if (rc != Success || actual_type != target_type || x_had_errors_p (dpy))
8427 if (tmp_data) XFree (tmp_data);
8428 x_uncatch_errors ();
8429 unblock_input ();
8430 return !FRAME_ICONIFIED_P (f);
8433 x_uncatch_errors ();
8435 for (i = 0; i < actual_size; ++i)
8437 Atom a = ((Atom*)tmp_data)[i];
8438 if (a == dpyinfo->Xatom_net_wm_state_hidden)
8440 is_hidden = 1;
8441 f->output_data.x->net_wm_state_hidden_seen = 1;
8443 else if (a == dpyinfo->Xatom_net_wm_state_maximized_horz)
8445 if (*size_state == FULLSCREEN_HEIGHT)
8446 *size_state = FULLSCREEN_MAXIMIZED;
8447 else
8448 *size_state = FULLSCREEN_WIDTH;
8450 else if (a == dpyinfo->Xatom_net_wm_state_maximized_vert)
8452 if (*size_state == FULLSCREEN_WIDTH)
8453 *size_state = FULLSCREEN_MAXIMIZED;
8454 else
8455 *size_state = FULLSCREEN_HEIGHT;
8457 else if (a == dpyinfo->Xatom_net_wm_state_fullscreen)
8458 *size_state = FULLSCREEN_BOTH;
8459 else if (a == dpyinfo->Xatom_net_wm_state_sticky)
8460 *sticky = 1;
8463 if (tmp_data) XFree (tmp_data);
8464 unblock_input ();
8465 return ! is_hidden;
8468 /* Do fullscreen as specified in extended window manager hints */
8470 static int
8471 do_ewmh_fullscreen (struct frame *f)
8473 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
8474 int have_net_atom = wm_supports (f, dpyinfo->Xatom_net_wm_state);
8475 int cur, dummy;
8477 (void)get_current_wm_state (f, FRAME_OUTER_WINDOW (f), &cur, &dummy);
8479 /* Some window managers don't say they support _NET_WM_STATE, but they do say
8480 they support _NET_WM_STATE_FULLSCREEN. Try that also. */
8481 if (!have_net_atom)
8482 have_net_atom = wm_supports (f, dpyinfo->Xatom_net_wm_state_fullscreen);
8484 if (have_net_atom && cur != f->want_fullscreen)
8486 Lisp_Object frame;
8488 XSETFRAME (frame, f);
8490 /* Keep number of calls to set_wm_state as low as possible.
8491 Some window managers, or possible Gtk+, hangs when too many
8492 are sent at once. */
8493 switch (f->want_fullscreen)
8495 case FULLSCREEN_BOTH:
8496 if (cur == FULLSCREEN_WIDTH || cur == FULLSCREEN_MAXIMIZED
8497 || cur == FULLSCREEN_HEIGHT)
8498 set_wm_state (frame, 0, dpyinfo->Xatom_net_wm_state_maximized_horz,
8499 dpyinfo->Xatom_net_wm_state_maximized_vert);
8500 set_wm_state (frame, 1, dpyinfo->Xatom_net_wm_state_fullscreen, None);
8501 break;
8502 case FULLSCREEN_WIDTH:
8503 if (cur == FULLSCREEN_BOTH || cur == FULLSCREEN_HEIGHT
8504 || cur == FULLSCREEN_MAXIMIZED)
8505 set_wm_state (frame, 0, dpyinfo->Xatom_net_wm_state_fullscreen,
8506 dpyinfo->Xatom_net_wm_state_maximized_vert);
8507 if (cur != FULLSCREEN_MAXIMIZED)
8508 set_wm_state (frame, 1, dpyinfo->Xatom_net_wm_state_maximized_horz, None);
8509 break;
8510 case FULLSCREEN_HEIGHT:
8511 if (cur == FULLSCREEN_BOTH || cur == FULLSCREEN_WIDTH
8512 || cur == FULLSCREEN_MAXIMIZED)
8513 set_wm_state (frame, 0, dpyinfo->Xatom_net_wm_state_fullscreen,
8514 dpyinfo->Xatom_net_wm_state_maximized_horz);
8515 if (cur != FULLSCREEN_MAXIMIZED)
8516 set_wm_state (frame, 1, dpyinfo->Xatom_net_wm_state_maximized_vert, None);
8517 break;
8518 case FULLSCREEN_MAXIMIZED:
8519 if (cur == FULLSCREEN_BOTH)
8520 set_wm_state (frame, 0, dpyinfo->Xatom_net_wm_state_fullscreen, None);
8521 set_wm_state (frame, 1, dpyinfo->Xatom_net_wm_state_maximized_horz,
8522 dpyinfo->Xatom_net_wm_state_maximized_vert);
8523 break;
8524 case FULLSCREEN_NONE:
8525 if (cur == FULLSCREEN_BOTH)
8526 set_wm_state (frame, 0, dpyinfo->Xatom_net_wm_state_fullscreen, None);
8527 else
8528 set_wm_state (frame, 0, dpyinfo->Xatom_net_wm_state_maximized_horz,
8529 dpyinfo->Xatom_net_wm_state_maximized_vert);
8532 f->want_fullscreen = FULLSCREEN_NONE;
8536 return have_net_atom;
8539 static void
8540 XTfullscreen_hook (FRAME_PTR f)
8542 if (FRAME_VISIBLE_P (f))
8544 block_input ();
8545 x_check_fullscreen (f);
8546 x_sync (f);
8547 unblock_input ();
8552 static int
8553 x_handle_net_wm_state (struct frame *f, XPropertyEvent *event)
8555 int value = FULLSCREEN_NONE;
8556 Lisp_Object lval;
8557 int sticky = 0;
8558 int not_hidden = get_current_wm_state (f, event->window, &value, &sticky);
8560 lval = Qnil;
8561 switch (value)
8563 case FULLSCREEN_WIDTH:
8564 lval = Qfullwidth;
8565 break;
8566 case FULLSCREEN_HEIGHT:
8567 lval = Qfullheight;
8568 break;
8569 case FULLSCREEN_BOTH:
8570 lval = Qfullboth;
8571 break;
8572 case FULLSCREEN_MAXIMIZED:
8573 lval = Qmaximized;
8574 break;
8577 store_frame_param (f, Qfullscreen, lval);
8578 store_frame_param (f, Qsticky, sticky ? Qt : Qnil);
8580 return not_hidden;
8583 /* Check if we need to resize the frame due to a fullscreen request.
8584 If so needed, resize the frame. */
8585 static void
8586 x_check_fullscreen (struct frame *f)
8588 if (do_ewmh_fullscreen (f))
8589 return;
8591 if (f->output_data.x->parent_desc != FRAME_X_DISPLAY_INFO (f)->root_window)
8592 return; /* Only fullscreen without WM or with EWM hints (above). */
8594 /* Setting fullscreen to nil doesn't do anything. We could save the
8595 last non-fullscreen size and restore it, but it seems like a
8596 lot of work for this unusual case (no window manager running). */
8598 if (f->want_fullscreen != FULLSCREEN_NONE)
8600 int width = FRAME_PIXEL_WIDTH (f), height = FRAME_PIXEL_HEIGHT (f);
8601 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
8603 switch (f->want_fullscreen)
8605 /* No difference between these two when there is no WM */
8606 case FULLSCREEN_BOTH:
8607 case FULLSCREEN_MAXIMIZED:
8608 width = x_display_pixel_width (dpyinfo);
8609 height = x_display_pixel_height (dpyinfo);
8610 break;
8611 case FULLSCREEN_WIDTH:
8612 width = x_display_pixel_width (dpyinfo);
8613 break;
8614 case FULLSCREEN_HEIGHT:
8615 height = x_display_pixel_height (dpyinfo);
8618 XResizeWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
8619 width, height);
8623 /* This function is called by x_set_offset to determine whether the window
8624 manager interfered with the positioning of the frame. Type A window
8625 managers position the surrounding window manager decorations a small
8626 amount above and left of the user-supplied position. Type B window
8627 managers position the surrounding window manager decorations at the
8628 user-specified position. If we detect a Type A window manager, we
8629 compensate by moving the window right and down by the proper amount. */
8631 static void
8632 x_check_expected_move (struct frame *f, int expected_left, int expected_top)
8634 int current_left = 0, current_top = 0;
8636 /* x_real_positions returns the left and top offsets of the outermost
8637 window manager window around the frame. */
8639 x_real_positions (f, &current_left, &current_top);
8641 if (current_left != expected_left || current_top != expected_top)
8643 /* It's a "Type A" window manager. */
8645 int adjusted_left;
8646 int adjusted_top;
8648 FRAME_X_DISPLAY_INFO (f)->wm_type = X_WMTYPE_A;
8649 FRAME_X_OUTPUT (f)->move_offset_left = expected_left - current_left;
8650 FRAME_X_OUTPUT (f)->move_offset_top = expected_top - current_top;
8652 /* Now fix the mispositioned frame's location. */
8654 adjusted_left = expected_left + FRAME_X_OUTPUT (f)->move_offset_left;
8655 adjusted_top = expected_top + FRAME_X_OUTPUT (f)->move_offset_top;
8657 XMoveWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
8658 adjusted_left, adjusted_top);
8660 x_sync_with_move (f, expected_left, expected_top, 0);
8662 else
8663 /* It's a "Type B" window manager. We don't have to adjust the
8664 frame's position. */
8666 FRAME_X_DISPLAY_INFO (f)->wm_type = X_WMTYPE_B;
8670 /* Wait for XGetGeometry to return up-to-date position information for a
8671 recently-moved frame. Call this immediately after calling XMoveWindow.
8672 If FUZZY is non-zero, then LEFT and TOP are just estimates of where the
8673 frame has been moved to, so we use a fuzzy position comparison instead
8674 of an exact comparison. */
8676 static void
8677 x_sync_with_move (struct frame *f, int left, int top, int fuzzy)
8679 int count = 0;
8681 while (count++ < 50)
8683 int current_left = 0, current_top = 0;
8685 /* In theory, this call to XSync only needs to happen once, but in
8686 practice, it doesn't seem to work, hence the need for the surrounding
8687 loop. */
8689 XSync (FRAME_X_DISPLAY (f), False);
8690 x_real_positions (f, &current_left, &current_top);
8692 if (fuzzy)
8694 /* The left fuzz-factor is 10 pixels. The top fuzz-factor is 40
8695 pixels. */
8697 if (eabs (current_left - left) <= 10
8698 && eabs (current_top - top) <= 40)
8699 return;
8701 else if (current_left == left && current_top == top)
8702 return;
8705 /* As a last resort, just wait 0.5 seconds and hope that XGetGeometry
8706 will then return up-to-date position info. */
8708 wait_reading_process_output (0, 500000, 0, 0, Qnil, NULL, 0);
8712 /* Wait for an event on frame F matching EVENTTYPE. */
8713 void
8714 x_wait_for_event (struct frame *f, int eventtype)
8716 int level = interrupt_input_blocked;
8718 SELECT_TYPE fds;
8719 EMACS_TIME tmo, tmo_at, time_now;
8720 int fd = ConnectionNumber (FRAME_X_DISPLAY (f));
8722 pending_event_wait.f = f;
8723 pending_event_wait.eventtype = eventtype;
8725 /* Set timeout to 0.1 second. Hopefully not noticeable.
8726 Maybe it should be configurable. */
8727 tmo = make_emacs_time (0, 100 * 1000 * 1000);
8728 tmo_at = add_emacs_time (current_emacs_time (), tmo);
8730 while (pending_event_wait.eventtype)
8732 pending_signals = 1;
8733 totally_unblock_input ();
8734 /* XTread_socket is called after unblock. */
8735 block_input ();
8736 interrupt_input_blocked = level;
8738 FD_ZERO (&fds);
8739 FD_SET (fd, &fds);
8741 time_now = current_emacs_time ();
8742 if (EMACS_TIME_LT (tmo_at, time_now))
8743 break;
8745 tmo = sub_emacs_time (tmo_at, time_now);
8746 if (pselect (fd + 1, &fds, NULL, NULL, &tmo, NULL) == 0)
8747 break; /* Timeout */
8749 pending_event_wait.f = 0;
8750 pending_event_wait.eventtype = 0;
8754 /* Change the size of frame F's X window to COLS/ROWS in the case F
8755 doesn't have a widget. If CHANGE_GRAVITY is 1, we change to
8756 top-left-corner window gravity for this size change and subsequent
8757 size changes. Otherwise we leave the window gravity unchanged. */
8759 static void
8760 x_set_window_size_1 (struct frame *f, int change_gravity, int cols, int rows)
8762 int pixelwidth, pixelheight;
8764 check_frame_size (f, &rows, &cols);
8765 f->scroll_bar_actual_width
8766 = (!FRAME_HAS_VERTICAL_SCROLL_BARS (f)
8768 : FRAME_CONFIG_SCROLL_BAR_COLS (f) * FRAME_COLUMN_WIDTH (f));
8770 compute_fringe_widths (f, 0);
8772 pixelwidth = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, cols)
8773 + FRAME_TOOLBAR_WIDTH (f);
8774 pixelheight = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, rows)
8775 + FRAME_MENUBAR_HEIGHT (f) + FRAME_TOOLBAR_HEIGHT (f);
8777 if (change_gravity) f->win_gravity = NorthWestGravity;
8778 x_wm_set_size_hint (f, (long) 0, 0);
8779 XResizeWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
8780 pixelwidth, pixelheight);
8783 /* We've set {FRAME,PIXEL}_{WIDTH,HEIGHT} to the values we hope to
8784 receive in the ConfigureNotify event; if we get what we asked
8785 for, then the event won't cause the screen to become garbaged, so
8786 we have to make sure to do it here. */
8787 SET_FRAME_GARBAGED (f);
8789 /* Now, strictly speaking, we can't be sure that this is accurate,
8790 but the window manager will get around to dealing with the size
8791 change request eventually, and we'll hear how it went when the
8792 ConfigureNotify event gets here.
8794 We could just not bother storing any of this information here,
8795 and let the ConfigureNotify event set everything up, but that
8796 might be kind of confusing to the Lisp code, since size changes
8797 wouldn't be reported in the frame parameters until some random
8798 point in the future when the ConfigureNotify event arrives.
8800 We pass 1 for DELAY since we can't run Lisp code inside of
8801 a BLOCK_INPUT. */
8803 /* But the ConfigureNotify may in fact never arrive, and then this is
8804 not right if the frame is visible. Instead wait (with timeout)
8805 for the ConfigureNotify. */
8806 if (FRAME_VISIBLE_P (f))
8807 x_wait_for_event (f, ConfigureNotify);
8808 else
8810 change_frame_size (f, rows, cols, 0, 1, 0);
8811 FRAME_PIXEL_WIDTH (f) = pixelwidth;
8812 FRAME_PIXEL_HEIGHT (f) = pixelheight;
8813 x_sync (f);
8818 /* Call this to change the size of frame F's x-window.
8819 If CHANGE_GRAVITY is 1, we change to top-left-corner window gravity
8820 for this size change and subsequent size changes.
8821 Otherwise we leave the window gravity unchanged. */
8823 void
8824 x_set_window_size (struct frame *f, int change_gravity, int cols, int rows)
8826 block_input ();
8828 if (NILP (tip_frame) || XFRAME (tip_frame) != f)
8830 int r, c;
8832 /* When the frame is maximized/fullscreen or running under for
8833 example Xmonad, x_set_window_size_1 will be a no-op.
8834 In that case, the right thing to do is extend rows/cols to
8835 the current frame size. We do that first if x_set_window_size_1
8836 turns out to not be a no-op (there is no way to know).
8837 The size will be adjusted again if the frame gets a
8838 ConfigureNotify event as a result of x_set_window_size. */
8839 int pixelh = FRAME_PIXEL_HEIGHT (f);
8840 #ifdef USE_X_TOOLKIT
8841 /* The menu bar is not part of text lines. The tool bar
8842 is however. */
8843 pixelh -= FRAME_MENUBAR_HEIGHT (f);
8844 #endif
8845 r = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, pixelh);
8846 /* Update f->scroll_bar_actual_width because it is used in
8847 FRAME_PIXEL_WIDTH_TO_TEXT_COLS. */
8848 f->scroll_bar_actual_width
8849 = FRAME_SCROLL_BAR_COLS (f) * FRAME_COLUMN_WIDTH (f);
8850 c = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, FRAME_PIXEL_WIDTH (f));
8851 change_frame_size (f, r, c, 0, 1, 0);
8854 #ifdef USE_GTK
8855 if (FRAME_GTK_WIDGET (f))
8856 xg_frame_set_char_size (f, cols, rows);
8857 else
8858 x_set_window_size_1 (f, change_gravity, cols, rows);
8859 #else /* not USE_GTK */
8861 x_set_window_size_1 (f, change_gravity, cols, rows);
8863 #endif /* not USE_GTK */
8865 /* If cursor was outside the new size, mark it as off. */
8866 mark_window_cursors_off (XWINDOW (f->root_window));
8868 /* Clear out any recollection of where the mouse highlighting was,
8869 since it might be in a place that's outside the new frame size.
8870 Actually checking whether it is outside is a pain in the neck,
8871 so don't try--just let the highlighting be done afresh with new size. */
8872 cancel_mouse_face (f);
8874 unblock_input ();
8877 /* Mouse warping. */
8879 void
8880 x_set_mouse_position (struct frame *f, int x, int y)
8882 int pix_x, pix_y;
8884 pix_x = FRAME_COL_TO_PIXEL_X (f, x) + FRAME_COLUMN_WIDTH (f) / 2;
8885 pix_y = FRAME_LINE_TO_PIXEL_Y (f, y) + FRAME_LINE_HEIGHT (f) / 2;
8887 if (pix_x < 0) pix_x = 0;
8888 if (pix_x > FRAME_PIXEL_WIDTH (f)) pix_x = FRAME_PIXEL_WIDTH (f);
8890 if (pix_y < 0) pix_y = 0;
8891 if (pix_y > FRAME_PIXEL_HEIGHT (f)) pix_y = FRAME_PIXEL_HEIGHT (f);
8893 block_input ();
8895 XWarpPointer (FRAME_X_DISPLAY (f), None, FRAME_X_WINDOW (f),
8896 0, 0, 0, 0, pix_x, pix_y);
8897 unblock_input ();
8900 /* Move the mouse to position pixel PIX_X, PIX_Y relative to frame F. */
8902 void
8903 x_set_mouse_pixel_position (struct frame *f, int pix_x, int pix_y)
8905 block_input ();
8907 XWarpPointer (FRAME_X_DISPLAY (f), None, FRAME_X_WINDOW (f),
8908 0, 0, 0, 0, pix_x, pix_y);
8909 unblock_input ();
8912 /* Raise frame F. */
8914 void
8915 x_raise_frame (struct frame *f)
8917 block_input ();
8918 if (FRAME_VISIBLE_P (f))
8919 XRaiseWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f));
8920 XFlush (FRAME_X_DISPLAY (f));
8921 unblock_input ();
8924 /* Lower frame F. */
8926 static void
8927 x_lower_frame (struct frame *f)
8929 if (FRAME_VISIBLE_P (f))
8931 block_input ();
8932 XLowerWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f));
8933 XFlush (FRAME_X_DISPLAY (f));
8934 unblock_input ();
8938 /* Request focus with XEmbed */
8940 void
8941 xembed_request_focus (FRAME_PTR f)
8943 /* See XEmbed Protocol Specification at
8944 http://freedesktop.org/wiki/Specifications/xembed-spec */
8945 if (FRAME_VISIBLE_P (f))
8946 xembed_send_message (f, CurrentTime,
8947 XEMBED_REQUEST_FOCUS, 0, 0, 0);
8950 /* Activate frame with Extended Window Manager Hints */
8952 void
8953 x_ewmh_activate_frame (FRAME_PTR f)
8955 /* See Window Manager Specification/Extended Window Manager Hints at
8956 http://freedesktop.org/wiki/Specifications/wm-spec */
8958 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
8960 if (FRAME_VISIBLE_P (f) && wm_supports (f, dpyinfo->Xatom_net_active_window))
8962 Lisp_Object frame;
8963 XSETFRAME (frame, f);
8964 x_send_client_event (frame, make_number (0), frame,
8965 dpyinfo->Xatom_net_active_window,
8966 make_number (32), list2i (1, last_user_time));
8970 static void
8971 XTframe_raise_lower (FRAME_PTR f, int raise_flag)
8973 if (raise_flag)
8974 x_raise_frame (f);
8975 else
8976 x_lower_frame (f);
8979 /* XEmbed implementation. */
8981 #if defined USE_X_TOOLKIT || ! defined USE_GTK
8983 /* XEmbed implementation. */
8985 #define XEMBED_VERSION 0
8987 static void
8988 xembed_set_info (struct frame *f, enum xembed_info flags)
8990 unsigned long data[2];
8991 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
8993 data[0] = XEMBED_VERSION;
8994 data[1] = flags;
8996 XChangeProperty (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
8997 dpyinfo->Xatom_XEMBED_INFO, dpyinfo->Xatom_XEMBED_INFO,
8998 32, PropModeReplace, (unsigned char *) data, 2);
9000 #endif /* defined USE_X_TOOLKIT || ! defined USE_GTK */
9002 static void
9003 xembed_send_message (struct frame *f, Time t, enum xembed_message msg,
9004 long int detail, long int data1, long int data2)
9006 XEvent event;
9008 event.xclient.type = ClientMessage;
9009 event.xclient.window = FRAME_X_OUTPUT (f)->parent_desc;
9010 event.xclient.message_type = FRAME_X_DISPLAY_INFO (f)->Xatom_XEMBED;
9011 event.xclient.format = 32;
9012 event.xclient.data.l[0] = t;
9013 event.xclient.data.l[1] = msg;
9014 event.xclient.data.l[2] = detail;
9015 event.xclient.data.l[3] = data1;
9016 event.xclient.data.l[4] = data2;
9018 XSendEvent (FRAME_X_DISPLAY (f), FRAME_X_OUTPUT (f)->parent_desc,
9019 False, NoEventMask, &event);
9020 XSync (FRAME_X_DISPLAY (f), False);
9023 /* Change of visibility. */
9025 /* This tries to wait until the frame is really visible.
9026 However, if the window manager asks the user where to position
9027 the frame, this will return before the user finishes doing that.
9028 The frame will not actually be visible at that time,
9029 but it will become visible later when the window manager
9030 finishes with it. */
9032 void
9033 x_make_frame_visible (struct frame *f)
9035 Lisp_Object type;
9036 int original_top, original_left;
9037 int retry_count = 2;
9039 retry:
9041 block_input ();
9043 type = x_icon_type (f);
9044 if (!NILP (type))
9045 x_bitmap_icon (f, type);
9047 if (! FRAME_VISIBLE_P (f))
9049 /* We test FRAME_GARBAGED_P here to make sure we don't
9050 call x_set_offset a second time
9051 if we get to x_make_frame_visible a second time
9052 before the window gets really visible. */
9053 if (! FRAME_ICONIFIED_P (f)
9054 && ! FRAME_X_EMBEDDED_P (f)
9055 && ! f->output_data.x->asked_for_visible)
9056 x_set_offset (f, f->left_pos, f->top_pos, 0);
9058 f->output_data.x->asked_for_visible = 1;
9060 if (! EQ (Vx_no_window_manager, Qt))
9061 x_wm_set_window_state (f, NormalState);
9062 #ifdef USE_X_TOOLKIT
9063 if (FRAME_X_EMBEDDED_P (f))
9064 xembed_set_info (f, XEMBED_MAPPED);
9065 else
9067 /* This was XtPopup, but that did nothing for an iconified frame. */
9068 XtMapWidget (f->output_data.x->widget);
9070 #else /* not USE_X_TOOLKIT */
9071 #ifdef USE_GTK
9072 gtk_widget_show_all (FRAME_GTK_OUTER_WIDGET (f));
9073 gtk_window_deiconify (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
9074 #else
9075 if (FRAME_X_EMBEDDED_P (f))
9076 xembed_set_info (f, XEMBED_MAPPED);
9077 else
9078 XMapRaised (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
9079 #endif /* not USE_GTK */
9080 #endif /* not USE_X_TOOLKIT */
9083 XFlush (FRAME_X_DISPLAY (f));
9085 /* Synchronize to ensure Emacs knows the frame is visible
9086 before we do anything else. We do this loop with input not blocked
9087 so that incoming events are handled. */
9089 Lisp_Object frame;
9090 int count;
9091 /* This must be before UNBLOCK_INPUT
9092 since events that arrive in response to the actions above
9093 will set it when they are handled. */
9094 int previously_visible = f->output_data.x->has_been_visible;
9096 original_left = f->left_pos;
9097 original_top = f->top_pos;
9099 /* This must come after we set COUNT. */
9100 unblock_input ();
9102 /* We unblock here so that arriving X events are processed. */
9104 /* Now move the window back to where it was "supposed to be".
9105 But don't do it if the gravity is negative.
9106 When the gravity is negative, this uses a position
9107 that is 3 pixels too low. Perhaps that's really the border width.
9109 Don't do this if the window has never been visible before,
9110 because the window manager may choose the position
9111 and we don't want to override it. */
9113 if (! FRAME_VISIBLE_P (f)
9114 && ! FRAME_ICONIFIED_P (f)
9115 && ! FRAME_X_EMBEDDED_P (f)
9116 && f->win_gravity == NorthWestGravity
9117 && previously_visible)
9119 Drawable rootw;
9120 int x, y;
9121 unsigned int width, height, border, depth;
9123 block_input ();
9125 /* On some window managers (such as FVWM) moving an existing
9126 window, even to the same place, causes the window manager
9127 to introduce an offset. This can cause the window to move
9128 to an unexpected location. Check the geometry (a little
9129 slow here) and then verify that the window is in the right
9130 place. If the window is not in the right place, move it
9131 there, and take the potential window manager hit. */
9132 XGetGeometry (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
9133 &rootw, &x, &y, &width, &height, &border, &depth);
9135 if (original_left != x || original_top != y)
9136 XMoveWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
9137 original_left, original_top);
9139 unblock_input ();
9142 XSETFRAME (frame, f);
9144 /* Wait until the frame is visible. Process X events until a
9145 MapNotify event has been seen, or until we think we won't get a
9146 MapNotify at all.. */
9147 for (count = input_signal_count + 10;
9148 input_signal_count < count && !FRAME_VISIBLE_P (f);)
9150 /* Force processing of queued events. */
9151 x_sync (f);
9153 /* Machines that do polling rather than SIGIO have been
9154 observed to go into a busy-wait here. So we'll fake an
9155 alarm signal to let the handler know that there's something
9156 to be read. We used to raise a real alarm, but it seems
9157 that the handler isn't always enabled here. This is
9158 probably a bug. */
9159 if (input_polling_used ())
9161 /* It could be confusing if a real alarm arrives while
9162 processing the fake one. Turn it off and let the
9163 handler reset it. */
9164 int old_poll_suppress_count = poll_suppress_count;
9165 poll_suppress_count = 1;
9166 poll_for_input_1 ();
9167 poll_suppress_count = old_poll_suppress_count;
9171 /* 2000-09-28: In
9173 (let ((f (selected-frame)))
9174 (iconify-frame f)
9175 (raise-frame f))
9177 the frame is not raised with various window managers on
9178 FreeBSD, GNU/Linux and Solaris. It turns out that, for some
9179 unknown reason, the call to XtMapWidget is completely ignored.
9180 Mapping the widget a second time works. */
9182 if (!FRAME_VISIBLE_P (f) && --retry_count != 0)
9183 goto retry;
9187 /* Change from mapped state to withdrawn state. */
9189 /* Make the frame visible (mapped and not iconified). */
9191 void
9192 x_make_frame_invisible (struct frame *f)
9194 Window window;
9196 /* Use the frame's outermost window, not the one we normally draw on. */
9197 window = FRAME_OUTER_WINDOW (f);
9199 /* Don't keep the highlight on an invisible frame. */
9200 if (FRAME_X_DISPLAY_INFO (f)->x_highlight_frame == f)
9201 FRAME_X_DISPLAY_INFO (f)->x_highlight_frame = 0;
9203 block_input ();
9205 /* Before unmapping the window, update the WM_SIZE_HINTS property to claim
9206 that the current position of the window is user-specified, rather than
9207 program-specified, so that when the window is mapped again, it will be
9208 placed at the same location, without forcing the user to position it
9209 by hand again (they have already done that once for this window.) */
9210 x_wm_set_size_hint (f, (long) 0, 1);
9212 #ifdef USE_GTK
9213 if (FRAME_GTK_OUTER_WIDGET (f))
9214 gtk_widget_hide (FRAME_GTK_OUTER_WIDGET (f));
9215 else
9216 #else
9217 if (FRAME_X_EMBEDDED_P (f))
9218 xembed_set_info (f, 0);
9219 else
9220 #endif
9223 if (! XWithdrawWindow (FRAME_X_DISPLAY (f), window,
9224 DefaultScreen (FRAME_X_DISPLAY (f))))
9226 unblock_input ();
9227 error ("Can't notify window manager of window withdrawal");
9231 /* We can't distinguish this from iconification
9232 just by the event that we get from the server.
9233 So we can't win using the usual strategy of letting
9234 FRAME_SAMPLE_VISIBILITY set this. So do it by hand,
9235 and synchronize with the server to make sure we agree. */
9236 SET_FRAME_VISIBLE (f, 0);
9237 SET_FRAME_ICONIFIED (f, 0);
9239 x_sync (f);
9241 unblock_input ();
9244 /* Change window state from mapped to iconified. */
9246 void
9247 x_iconify_frame (struct frame *f)
9249 #ifdef USE_X_TOOLKIT
9250 int result;
9251 #endif
9252 Lisp_Object type;
9254 /* Don't keep the highlight on an invisible frame. */
9255 if (FRAME_X_DISPLAY_INFO (f)->x_highlight_frame == f)
9256 FRAME_X_DISPLAY_INFO (f)->x_highlight_frame = 0;
9258 if (FRAME_ICONIFIED_P (f))
9259 return;
9261 block_input ();
9263 type = x_icon_type (f);
9264 if (!NILP (type))
9265 x_bitmap_icon (f, type);
9267 #if defined (USE_GTK)
9268 if (FRAME_GTK_OUTER_WIDGET (f))
9270 if (! FRAME_VISIBLE_P (f))
9271 gtk_widget_show_all (FRAME_GTK_OUTER_WIDGET (f));
9273 gtk_window_iconify (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
9274 SET_FRAME_VISIBLE (f, 0);
9275 SET_FRAME_ICONIFIED (f, 1);
9276 unblock_input ();
9277 return;
9279 #endif
9281 #ifdef USE_X_TOOLKIT
9283 if (! FRAME_VISIBLE_P (f))
9285 if (! EQ (Vx_no_window_manager, Qt))
9286 x_wm_set_window_state (f, IconicState);
9287 /* This was XtPopup, but that did nothing for an iconified frame. */
9288 XtMapWidget (f->output_data.x->widget);
9289 /* The server won't give us any event to indicate
9290 that an invisible frame was changed to an icon,
9291 so we have to record it here. */
9292 SET_FRAME_VISIBLE (f, 0);
9293 SET_FRAME_ICONIFIED (f, 1);
9294 unblock_input ();
9295 return;
9298 result = XIconifyWindow (FRAME_X_DISPLAY (f),
9299 XtWindow (f->output_data.x->widget),
9300 DefaultScreen (FRAME_X_DISPLAY (f)));
9301 unblock_input ();
9303 if (!result)
9304 error ("Can't notify window manager of iconification");
9306 SET_FRAME_ICONIFIED (f, 1);
9307 SET_FRAME_VISIBLE (f, 0);
9309 block_input ();
9310 XFlush (FRAME_X_DISPLAY (f));
9311 unblock_input ();
9312 #else /* not USE_X_TOOLKIT */
9314 /* Make sure the X server knows where the window should be positioned,
9315 in case the user deiconifies with the window manager. */
9316 if (! FRAME_VISIBLE_P (f)
9317 && ! FRAME_ICONIFIED_P (f)
9318 && ! FRAME_X_EMBEDDED_P (f))
9319 x_set_offset (f, f->left_pos, f->top_pos, 0);
9321 /* Since we don't know which revision of X we're running, we'll use both
9322 the X11R3 and X11R4 techniques. I don't know if this is a good idea. */
9324 /* X11R4: send a ClientMessage to the window manager using the
9325 WM_CHANGE_STATE type. */
9327 XEvent msg;
9329 msg.xclient.window = FRAME_X_WINDOW (f);
9330 msg.xclient.type = ClientMessage;
9331 msg.xclient.message_type = FRAME_X_DISPLAY_INFO (f)->Xatom_wm_change_state;
9332 msg.xclient.format = 32;
9333 msg.xclient.data.l[0] = IconicState;
9335 if (! XSendEvent (FRAME_X_DISPLAY (f),
9336 DefaultRootWindow (FRAME_X_DISPLAY (f)),
9337 False,
9338 SubstructureRedirectMask | SubstructureNotifyMask,
9339 &msg))
9341 unblock_input ();
9342 error ("Can't notify window manager of iconification");
9346 /* X11R3: set the initial_state field of the window manager hints to
9347 IconicState. */
9348 x_wm_set_window_state (f, IconicState);
9350 if (!FRAME_VISIBLE_P (f))
9352 /* If the frame was withdrawn, before, we must map it. */
9353 XMapRaised (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
9356 SET_FRAME_ICONIFIED (f, 1);
9357 SET_FRAME_VISIBLE (f, 0);
9359 XFlush (FRAME_X_DISPLAY (f));
9360 unblock_input ();
9361 #endif /* not USE_X_TOOLKIT */
9365 /* Free X resources of frame F. */
9367 void
9368 x_free_frame_resources (struct frame *f)
9370 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
9371 Mouse_HLInfo *hlinfo = &dpyinfo->mouse_highlight;
9372 #ifdef USE_X_TOOLKIT
9373 Lisp_Object bar;
9374 struct scroll_bar *b;
9375 #endif
9377 block_input ();
9379 /* If a display connection is dead, don't try sending more
9380 commands to the X server. */
9381 if (dpyinfo->display)
9383 /* We must free faces before destroying windows because some
9384 font-driver (e.g. xft) access a window while finishing a
9385 face. */
9386 if (FRAME_FACE_CACHE (f))
9387 free_frame_faces (f);
9389 if (f->output_data.x->icon_desc)
9390 XDestroyWindow (FRAME_X_DISPLAY (f), f->output_data.x->icon_desc);
9392 #ifdef USE_X_TOOLKIT
9393 /* Explicitly destroy the scroll bars of the frame. Without
9394 this, we get "BadDrawable" errors from the toolkit later on,
9395 presumably from expose events generated for the disappearing
9396 toolkit scroll bars. */
9397 for (bar = FRAME_SCROLL_BARS (f); !NILP (bar); bar = b->next)
9399 b = XSCROLL_BAR (bar);
9400 x_scroll_bar_remove (b);
9402 #endif
9404 #ifdef HAVE_X_I18N
9405 if (FRAME_XIC (f))
9406 free_frame_xic (f);
9407 #endif
9409 #ifdef USE_X_TOOLKIT
9410 if (f->output_data.x->widget)
9412 XtDestroyWidget (f->output_data.x->widget);
9413 f->output_data.x->widget = NULL;
9415 /* Tooltips don't have widgets, only a simple X window, even if
9416 we are using a toolkit. */
9417 else if (FRAME_X_WINDOW (f))
9418 XDestroyWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
9420 free_frame_menubar (f);
9421 #else /* !USE_X_TOOLKIT */
9423 #ifdef USE_GTK
9424 xg_free_frame_widgets (f);
9425 #endif /* USE_GTK */
9427 if (FRAME_X_WINDOW (f))
9428 XDestroyWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
9429 #endif /* !USE_X_TOOLKIT */
9431 unload_color (f, FRAME_FOREGROUND_PIXEL (f));
9432 unload_color (f, FRAME_BACKGROUND_PIXEL (f));
9433 unload_color (f, f->output_data.x->cursor_pixel);
9434 unload_color (f, f->output_data.x->cursor_foreground_pixel);
9435 unload_color (f, f->output_data.x->border_pixel);
9436 unload_color (f, f->output_data.x->mouse_pixel);
9438 if (f->output_data.x->scroll_bar_background_pixel != -1)
9439 unload_color (f, f->output_data.x->scroll_bar_background_pixel);
9440 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
9441 unload_color (f, f->output_data.x->scroll_bar_foreground_pixel);
9442 #ifdef USE_TOOLKIT_SCROLL_BARS
9443 /* Scrollbar shadow colors. */
9444 if (f->output_data.x->scroll_bar_top_shadow_pixel != -1)
9445 unload_color (f, f->output_data.x->scroll_bar_top_shadow_pixel);
9446 if (f->output_data.x->scroll_bar_bottom_shadow_pixel != -1)
9447 unload_color (f, f->output_data.x->scroll_bar_bottom_shadow_pixel);
9448 #endif /* USE_TOOLKIT_SCROLL_BARS */
9449 if (f->output_data.x->white_relief.allocated_p)
9450 unload_color (f, f->output_data.x->white_relief.pixel);
9451 if (f->output_data.x->black_relief.allocated_p)
9452 unload_color (f, f->output_data.x->black_relief.pixel);
9454 x_free_gcs (f);
9455 XFlush (FRAME_X_DISPLAY (f));
9458 xfree (f->output_data.x->saved_menu_event);
9459 xfree (f->output_data.x);
9460 f->output_data.x = NULL;
9462 if (f == dpyinfo->x_focus_frame)
9463 dpyinfo->x_focus_frame = 0;
9464 if (f == dpyinfo->x_focus_event_frame)
9465 dpyinfo->x_focus_event_frame = 0;
9466 if (f == dpyinfo->x_highlight_frame)
9467 dpyinfo->x_highlight_frame = 0;
9469 if (f == hlinfo->mouse_face_mouse_frame)
9471 hlinfo->mouse_face_beg_row
9472 = hlinfo->mouse_face_beg_col = -1;
9473 hlinfo->mouse_face_end_row
9474 = hlinfo->mouse_face_end_col = -1;
9475 hlinfo->mouse_face_window = Qnil;
9476 hlinfo->mouse_face_mouse_frame = 0;
9479 unblock_input ();
9483 /* Destroy the X window of frame F. */
9485 static void
9486 x_destroy_window (struct frame *f)
9488 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
9490 /* If a display connection is dead, don't try sending more
9491 commands to the X server. */
9492 if (dpyinfo->display != 0)
9493 x_free_frame_resources (f);
9495 dpyinfo->reference_count--;
9499 /* Setting window manager hints. */
9501 /* Set the normal size hints for the window manager, for frame F.
9502 FLAGS is the flags word to use--or 0 meaning preserve the flags
9503 that the window now has.
9504 If USER_POSITION, set the USPosition
9505 flag (this is useful when FLAGS is 0).
9506 The GTK version is in gtkutils.c. */
9508 #ifndef USE_GTK
9509 void
9510 x_wm_set_size_hint (struct frame *f, long flags, bool user_position)
9512 XSizeHints size_hints;
9513 Window window = FRAME_OUTER_WINDOW (f);
9515 #ifdef USE_X_TOOLKIT
9516 if (f->output_data.x->widget)
9518 widget_update_wm_size_hints (f->output_data.x->widget);
9519 return;
9521 #endif
9523 /* Setting PMaxSize caused various problems. */
9524 size_hints.flags = PResizeInc | PMinSize /* | PMaxSize */;
9526 size_hints.x = f->left_pos;
9527 size_hints.y = f->top_pos;
9529 size_hints.height = FRAME_PIXEL_HEIGHT (f);
9530 size_hints.width = FRAME_PIXEL_WIDTH (f);
9532 size_hints.width_inc = FRAME_COLUMN_WIDTH (f);
9533 size_hints.height_inc = FRAME_LINE_HEIGHT (f);
9534 size_hints.max_width = x_display_pixel_width (FRAME_X_DISPLAY_INFO (f))
9535 - FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, 0);
9536 size_hints.max_height = x_display_pixel_height (FRAME_X_DISPLAY_INFO (f))
9537 - FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, 0);
9539 /* Calculate the base and minimum sizes. */
9541 int base_width, base_height;
9542 int min_rows = 0, min_cols = 0;
9544 base_width = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, 0);
9545 base_height = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, 0);
9547 check_frame_size (f, &min_rows, &min_cols);
9549 /* The window manager uses the base width hints to calculate the
9550 current number of rows and columns in the frame while
9551 resizing; min_width and min_height aren't useful for this
9552 purpose, since they might not give the dimensions for a
9553 zero-row, zero-column frame.
9555 We use the base_width and base_height members if we have
9556 them; otherwise, we set the min_width and min_height members
9557 to the size for a zero x zero frame. */
9559 size_hints.flags |= PBaseSize;
9560 size_hints.base_width = base_width;
9561 size_hints.base_height = base_height + FRAME_MENUBAR_HEIGHT (f);
9562 size_hints.min_width = base_width + min_cols * size_hints.width_inc;
9563 size_hints.min_height = base_height + min_rows * size_hints.height_inc;
9566 /* If we don't need the old flags, we don't need the old hint at all. */
9567 if (flags)
9569 size_hints.flags |= flags;
9570 goto no_read;
9574 XSizeHints hints; /* Sometimes I hate X Windows... */
9575 long supplied_return;
9576 int value;
9578 value = XGetWMNormalHints (FRAME_X_DISPLAY (f), window, &hints,
9579 &supplied_return);
9581 if (flags)
9582 size_hints.flags |= flags;
9583 else
9585 if (value == 0)
9586 hints.flags = 0;
9587 if (hints.flags & PSize)
9588 size_hints.flags |= PSize;
9589 if (hints.flags & PPosition)
9590 size_hints.flags |= PPosition;
9591 if (hints.flags & USPosition)
9592 size_hints.flags |= USPosition;
9593 if (hints.flags & USSize)
9594 size_hints.flags |= USSize;
9598 no_read:
9600 #ifdef PWinGravity
9601 size_hints.win_gravity = f->win_gravity;
9602 size_hints.flags |= PWinGravity;
9604 if (user_position)
9606 size_hints.flags &= ~ PPosition;
9607 size_hints.flags |= USPosition;
9609 #endif /* PWinGravity */
9611 XSetWMNormalHints (FRAME_X_DISPLAY (f), window, &size_hints);
9613 #endif /* not USE_GTK */
9615 /* Used for IconicState or NormalState */
9617 static void
9618 x_wm_set_window_state (struct frame *f, int state)
9620 #ifdef USE_X_TOOLKIT
9621 Arg al[1];
9623 XtSetArg (al[0], XtNinitialState, state);
9624 XtSetValues (f->output_data.x->widget, al, 1);
9625 #else /* not USE_X_TOOLKIT */
9626 Window window = FRAME_X_WINDOW (f);
9628 f->output_data.x->wm_hints.flags |= StateHint;
9629 f->output_data.x->wm_hints.initial_state = state;
9631 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints);
9632 #endif /* not USE_X_TOOLKIT */
9635 static void
9636 x_wm_set_icon_pixmap (struct frame *f, ptrdiff_t pixmap_id)
9638 Pixmap icon_pixmap, icon_mask;
9640 #if !defined USE_X_TOOLKIT && !defined USE_GTK
9641 Window window = FRAME_OUTER_WINDOW (f);
9642 #endif
9644 if (pixmap_id > 0)
9646 icon_pixmap = x_bitmap_pixmap (f, pixmap_id);
9647 f->output_data.x->wm_hints.icon_pixmap = icon_pixmap;
9648 icon_mask = x_bitmap_mask (f, pixmap_id);
9649 f->output_data.x->wm_hints.icon_mask = icon_mask;
9651 else
9653 /* It seems there is no way to turn off use of an icon
9654 pixmap. */
9655 return;
9659 #ifdef USE_GTK
9661 xg_set_frame_icon (f, icon_pixmap, icon_mask);
9662 return;
9665 #elif defined (USE_X_TOOLKIT) /* same as in x_wm_set_window_state. */
9668 Arg al[1];
9669 XtSetArg (al[0], XtNiconPixmap, icon_pixmap);
9670 XtSetValues (f->output_data.x->widget, al, 1);
9671 XtSetArg (al[0], XtNiconMask, icon_mask);
9672 XtSetValues (f->output_data.x->widget, al, 1);
9675 #else /* not USE_X_TOOLKIT && not USE_GTK */
9677 f->output_data.x->wm_hints.flags |= (IconPixmapHint | IconMaskHint);
9678 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints);
9680 #endif /* not USE_X_TOOLKIT && not USE_GTK */
9683 void
9684 x_wm_set_icon_position (struct frame *f, int icon_x, int icon_y)
9686 Window window = FRAME_OUTER_WINDOW (f);
9688 f->output_data.x->wm_hints.flags |= IconPositionHint;
9689 f->output_data.x->wm_hints.icon_x = icon_x;
9690 f->output_data.x->wm_hints.icon_y = icon_y;
9692 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints);
9696 /***********************************************************************
9697 Fonts
9698 ***********************************************************************/
9700 #ifdef GLYPH_DEBUG
9702 /* Check that FONT is valid on frame F. It is if it can be found in F's
9703 font table. */
9705 static void
9706 x_check_font (struct frame *f, struct font *font)
9708 eassert (font != NULL && ! NILP (font->props[FONT_TYPE_INDEX]));
9709 if (font->driver->check)
9710 eassert (font->driver->check (f, font) == 0);
9713 #endif /* GLYPH_DEBUG */
9716 /***********************************************************************
9717 Initialization
9718 ***********************************************************************/
9720 #ifdef USE_X_TOOLKIT
9721 static XrmOptionDescRec emacs_options[] = {
9722 {"-geometry", ".geometry", XrmoptionSepArg, NULL},
9723 {"-iconic", ".iconic", XrmoptionNoArg, (XtPointer) "yes"},
9725 {"-internal-border-width", "*EmacsScreen.internalBorderWidth",
9726 XrmoptionSepArg, NULL},
9727 {"-ib", "*EmacsScreen.internalBorderWidth", XrmoptionSepArg, NULL},
9729 {"-T", "*EmacsShell.title", XrmoptionSepArg, (XtPointer) NULL},
9730 {"-wn", "*EmacsShell.title", XrmoptionSepArg, (XtPointer) NULL},
9731 {"-title", "*EmacsShell.title", XrmoptionSepArg, (XtPointer) NULL},
9732 {"-iconname", "*EmacsShell.iconName", XrmoptionSepArg, (XtPointer) NULL},
9733 {"-in", "*EmacsShell.iconName", XrmoptionSepArg, (XtPointer) NULL},
9734 {"-mc", "*pointerColor", XrmoptionSepArg, (XtPointer) NULL},
9735 {"-cr", "*cursorColor", XrmoptionSepArg, (XtPointer) NULL}
9738 /* Whether atimer for Xt timeouts is activated or not. */
9740 static int x_timeout_atimer_activated_flag;
9742 #endif /* USE_X_TOOLKIT */
9744 static int x_initialized;
9746 /* Test whether two display-name strings agree up to the dot that separates
9747 the screen number from the server number. */
9748 static int
9749 same_x_server (const char *name1, const char *name2)
9751 int seen_colon = 0;
9752 const char *system_name = SSDATA (Vsystem_name);
9753 ptrdiff_t system_name_length = SBYTES (Vsystem_name);
9754 ptrdiff_t length_until_period = 0;
9756 while (system_name[length_until_period] != 0
9757 && system_name[length_until_period] != '.')
9758 length_until_period++;
9760 /* Treat `unix' like an empty host name. */
9761 if (! strncmp (name1, "unix:", 5))
9762 name1 += 4;
9763 if (! strncmp (name2, "unix:", 5))
9764 name2 += 4;
9765 /* Treat this host's name like an empty host name. */
9766 if (! strncmp (name1, system_name, system_name_length)
9767 && name1[system_name_length] == ':')
9768 name1 += system_name_length;
9769 if (! strncmp (name2, system_name, system_name_length)
9770 && name2[system_name_length] == ':')
9771 name2 += system_name_length;
9772 /* Treat this host's domainless name like an empty host name. */
9773 if (! strncmp (name1, system_name, length_until_period)
9774 && name1[length_until_period] == ':')
9775 name1 += length_until_period;
9776 if (! strncmp (name2, system_name, length_until_period)
9777 && name2[length_until_period] == ':')
9778 name2 += length_until_period;
9780 for (; *name1 != '\0' && *name1 == *name2; name1++, name2++)
9782 if (*name1 == ':')
9783 seen_colon = 1;
9784 if (seen_colon && *name1 == '.')
9785 return 1;
9787 return (seen_colon
9788 && (*name1 == '.' || *name1 == '\0')
9789 && (*name2 == '.' || *name2 == '\0'));
9792 /* Count number of set bits in mask and number of bits to shift to
9793 get to the first bit. With MASK 0x7e0, *BITS is set to 6, and *OFFSET
9794 to 5. */
9795 static void
9796 get_bits_and_offset (long unsigned int mask, int *bits, int *offset)
9798 int nr = 0;
9799 int off = 0;
9801 while (!(mask & 1))
9803 off++;
9804 mask >>= 1;
9807 while (mask & 1)
9809 nr++;
9810 mask >>= 1;
9813 *offset = off;
9814 *bits = nr;
9817 /* Return 1 if display DISPLAY is available for use, 0 otherwise.
9818 But don't permanently open it, just test its availability. */
9821 x_display_ok (const char *display)
9823 int dpy_ok = 1;
9824 Display *dpy;
9826 dpy = XOpenDisplay (display);
9827 if (dpy)
9828 XCloseDisplay (dpy);
9829 else
9830 dpy_ok = 0;
9831 return dpy_ok;
9834 #ifdef USE_GTK
9835 static void
9836 my_log_handler (const gchar *log_domain, GLogLevelFlags log_level,
9837 const gchar *msg, gpointer user_data)
9839 if (!strstr (msg, "g_set_prgname"))
9840 fprintf (stderr, "%s-WARNING **: %s\n", log_domain, msg);
9842 #endif
9844 /* Open a connection to X display DISPLAY_NAME, and return
9845 the structure that describes the open display.
9846 If we cannot contact the display, return null. */
9848 struct x_display_info *
9849 x_term_init (Lisp_Object display_name, char *xrm_option, char *resource_name)
9851 int connection;
9852 Display *dpy;
9853 struct terminal *terminal;
9854 struct x_display_info *dpyinfo;
9855 XrmDatabase xrdb;
9856 Mouse_HLInfo *hlinfo;
9857 ptrdiff_t lim;
9859 block_input ();
9861 if (!x_initialized)
9863 x_initialize ();
9864 ++x_initialized;
9867 if (! x_display_ok (SSDATA (display_name)))
9868 error ("Display %s can't be opened", SSDATA (display_name));
9870 #ifdef USE_GTK
9872 #define NUM_ARGV 10
9873 int argc;
9874 char *argv[NUM_ARGV];
9875 char **argv2 = argv;
9876 guint id;
9878 if (x_initialized++ > 1)
9880 xg_display_open (SSDATA (display_name), &dpy);
9882 else
9884 static char display_opt[] = "--display";
9885 static char name_opt[] = "--name";
9887 for (argc = 0; argc < NUM_ARGV; ++argc)
9888 argv[argc] = 0;
9890 argc = 0;
9891 argv[argc++] = initial_argv[0];
9893 if (! NILP (display_name))
9895 argv[argc++] = display_opt;
9896 argv[argc++] = SSDATA (display_name);
9899 argv[argc++] = name_opt;
9900 argv[argc++] = resource_name;
9902 XSetLocaleModifiers ("");
9904 /* Emacs can only handle core input events, so make sure
9905 Gtk doesn't use Xinput or Xinput2 extensions. */
9906 xputenv ("GDK_CORE_DEVICE_EVENTS=1");
9908 /* Work around GLib bug that outputs a faulty warning. See
9909 https://bugzilla.gnome.org/show_bug.cgi?id=563627. */
9910 id = g_log_set_handler ("GLib", G_LOG_LEVEL_WARNING | G_LOG_FLAG_FATAL
9911 | G_LOG_FLAG_RECURSION, my_log_handler, NULL);
9913 /* NULL window -> events for all windows go to our function.
9914 Call before gtk_init so Gtk+ event filters comes after our. */
9915 gdk_window_add_filter (NULL, event_handler_gdk, NULL);
9917 /* gtk_init does set_locale. Fix locale before and after. */
9918 fixup_locale ();
9919 gtk_init (&argc, &argv2);
9920 fixup_locale ();
9922 g_log_remove_handler ("GLib", id);
9924 xg_initialize ();
9926 dpy = DEFAULT_GDK_DISPLAY ();
9928 #if ! GTK_CHECK_VERSION (2, 90, 0)
9929 /* Load our own gtkrc if it exists. */
9931 const char *file = "~/.emacs.d/gtkrc";
9932 Lisp_Object s, abs_file;
9934 s = build_string (file);
9935 abs_file = Fexpand_file_name (s, Qnil);
9937 if (! NILP (abs_file) && !NILP (Ffile_readable_p (abs_file)))
9938 gtk_rc_parse (SSDATA (abs_file));
9940 #endif
9942 XSetErrorHandler (x_error_handler);
9943 XSetIOErrorHandler (x_io_error_quitter);
9946 #else /* not USE_GTK */
9947 #ifdef USE_X_TOOLKIT
9948 /* weiner@footloose.sps.mot.com reports that this causes
9949 errors with X11R5:
9950 X protocol error: BadAtom (invalid Atom parameter)
9951 on protocol request 18skiloaf.
9952 So let's not use it until R6. */
9953 #ifdef HAVE_X11XTR6
9954 XtSetLanguageProc (NULL, NULL, NULL);
9955 #endif
9958 int argc = 0;
9959 char *argv[3];
9961 argv[0] = "";
9962 argc = 1;
9963 if (xrm_option)
9965 argv[argc++] = "-xrm";
9966 argv[argc++] = xrm_option;
9968 turn_on_atimers (0);
9969 dpy = XtOpenDisplay (Xt_app_con, SSDATA (display_name),
9970 resource_name, EMACS_CLASS,
9971 emacs_options, XtNumber (emacs_options),
9972 &argc, argv);
9973 turn_on_atimers (1);
9975 #ifdef HAVE_X11XTR6
9976 /* I think this is to compensate for XtSetLanguageProc. */
9977 fixup_locale ();
9978 #endif
9981 #else /* not USE_X_TOOLKIT */
9982 XSetLocaleModifiers ("");
9983 dpy = XOpenDisplay (SSDATA (display_name));
9984 #endif /* not USE_X_TOOLKIT */
9985 #endif /* not USE_GTK*/
9987 /* Detect failure. */
9988 if (dpy == 0)
9990 unblock_input ();
9991 return 0;
9994 /* We have definitely succeeded. Record the new connection. */
9996 dpyinfo = xzalloc (sizeof *dpyinfo);
9997 hlinfo = &dpyinfo->mouse_highlight;
9999 terminal = x_create_terminal (dpyinfo);
10002 struct x_display_info *share;
10003 Lisp_Object tail;
10005 for (share = x_display_list, tail = x_display_name_list; share;
10006 share = share->next, tail = XCDR (tail))
10007 if (same_x_server (SSDATA (XCAR (XCAR (tail))),
10008 SSDATA (display_name)))
10009 break;
10010 if (share)
10011 terminal->kboard = share->terminal->kboard;
10012 else
10014 terminal->kboard = xmalloc (sizeof *terminal->kboard);
10015 init_kboard (terminal->kboard);
10016 kset_window_system (terminal->kboard, Qx);
10018 /* Add the keyboard to the list before running Lisp code (via
10019 Qvendor_specific_keysyms below), since these are not traced
10020 via terminals but only through all_kboards. */
10021 terminal->kboard->next_kboard = all_kboards;
10022 all_kboards = terminal->kboard;
10024 if (!EQ (XSYMBOL (Qvendor_specific_keysyms)->function, Qunbound))
10026 char *vendor = ServerVendor (dpy);
10028 /* Protect terminal from GC before removing it from the
10029 list of terminals. */
10030 struct gcpro gcpro1;
10031 Lisp_Object gcpro_term;
10032 XSETTERMINAL (gcpro_term, terminal);
10033 GCPRO1 (gcpro_term);
10035 /* Temporarily hide the partially initialized terminal. */
10036 terminal_list = terminal->next_terminal;
10037 unblock_input ();
10038 kset_system_key_alist
10039 (terminal->kboard,
10040 call1 (Qvendor_specific_keysyms,
10041 vendor ? build_string (vendor) : empty_unibyte_string));
10042 block_input ();
10043 terminal->next_terminal = terminal_list;
10044 terminal_list = terminal;
10045 UNGCPRO;
10048 /* Don't let the initial kboard remain current longer than necessary.
10049 That would cause problems if a file loaded on startup tries to
10050 prompt in the mini-buffer. */
10051 if (current_kboard == initial_kboard)
10052 current_kboard = terminal->kboard;
10054 terminal->kboard->reference_count++;
10057 /* Put this display on the chain. */
10058 dpyinfo->next = x_display_list;
10059 x_display_list = dpyinfo;
10061 /* Put it on x_display_name_list as well, to keep them parallel. */
10062 x_display_name_list = Fcons (Fcons (display_name, Qnil),
10063 x_display_name_list);
10064 dpyinfo->name_list_element = XCAR (x_display_name_list);
10066 dpyinfo->display = dpy;
10068 /* Set the name of the terminal. */
10069 terminal->name = xmalloc (SBYTES (display_name) + 1);
10070 memcpy (terminal->name, SSDATA (display_name), SBYTES (display_name));
10071 terminal->name[SBYTES (display_name)] = 0;
10073 #if 0
10074 XSetAfterFunction (x_current_display, x_trace_wire);
10075 #endif /* ! 0 */
10077 lim = min (PTRDIFF_MAX, SIZE_MAX) - sizeof "@";
10078 if (lim - SBYTES (Vinvocation_name) < SBYTES (Vsystem_name))
10079 memory_full (SIZE_MAX);
10080 dpyinfo->x_id_name = xmalloc (SBYTES (Vinvocation_name)
10081 + SBYTES (Vsystem_name) + 2);
10082 strcat (strcat (strcpy (dpyinfo->x_id_name, SSDATA (Vinvocation_name)), "@"),
10083 SSDATA (Vsystem_name));
10085 /* Figure out which modifier bits mean what. */
10086 x_find_modifier_meanings (dpyinfo);
10088 /* Get the scroll bar cursor. */
10089 #ifdef USE_GTK
10090 /* We must create a GTK cursor, it is required for GTK widgets. */
10091 dpyinfo->xg_cursor = xg_create_default_cursor (dpyinfo->display);
10092 #endif /* USE_GTK */
10094 dpyinfo->vertical_scroll_bar_cursor
10095 = XCreateFontCursor (dpyinfo->display, XC_sb_v_double_arrow);
10097 xrdb = x_load_resources (dpyinfo->display, xrm_option,
10098 resource_name, EMACS_CLASS);
10099 #ifdef HAVE_XRMSETDATABASE
10100 XrmSetDatabase (dpyinfo->display, xrdb);
10101 #else
10102 dpyinfo->display->db = xrdb;
10103 #endif
10104 /* Put the rdb where we can find it in a way that works on
10105 all versions. */
10106 dpyinfo->xrdb = xrdb;
10108 dpyinfo->screen = ScreenOfDisplay (dpyinfo->display,
10109 DefaultScreen (dpyinfo->display));
10110 select_visual (dpyinfo);
10111 dpyinfo->cmap = DefaultColormapOfScreen (dpyinfo->screen);
10112 dpyinfo->root_window = RootWindowOfScreen (dpyinfo->screen);
10113 dpyinfo->client_leader_window = 0;
10114 dpyinfo->grabbed = 0;
10115 dpyinfo->reference_count = 0;
10116 dpyinfo->icon_bitmap_id = -1;
10117 dpyinfo->n_fonts = 0;
10118 dpyinfo->bitmaps = 0;
10119 dpyinfo->bitmaps_size = 0;
10120 dpyinfo->bitmaps_last = 0;
10121 dpyinfo->scratch_cursor_gc = 0;
10122 hlinfo->mouse_face_mouse_frame = 0;
10123 hlinfo->mouse_face_beg_row = hlinfo->mouse_face_beg_col = -1;
10124 hlinfo->mouse_face_end_row = hlinfo->mouse_face_end_col = -1;
10125 hlinfo->mouse_face_face_id = DEFAULT_FACE_ID;
10126 hlinfo->mouse_face_window = Qnil;
10127 hlinfo->mouse_face_overlay = Qnil;
10128 hlinfo->mouse_face_mouse_x = hlinfo->mouse_face_mouse_y = 0;
10129 hlinfo->mouse_face_defer = 0;
10130 hlinfo->mouse_face_hidden = 0;
10131 dpyinfo->x_focus_frame = 0;
10132 dpyinfo->x_focus_event_frame = 0;
10133 dpyinfo->x_highlight_frame = 0;
10134 dpyinfo->wm_type = X_WMTYPE_UNKNOWN;
10136 /* See if we can construct pixel values from RGB values. */
10137 dpyinfo->red_bits = dpyinfo->blue_bits = dpyinfo->green_bits = 0;
10138 dpyinfo->red_offset = dpyinfo->blue_offset = dpyinfo->green_offset = 0;
10140 if (dpyinfo->visual->class == TrueColor)
10142 get_bits_and_offset (dpyinfo->visual->red_mask,
10143 &dpyinfo->red_bits, &dpyinfo->red_offset);
10144 get_bits_and_offset (dpyinfo->visual->blue_mask,
10145 &dpyinfo->blue_bits, &dpyinfo->blue_offset);
10146 get_bits_and_offset (dpyinfo->visual->green_mask,
10147 &dpyinfo->green_bits, &dpyinfo->green_offset);
10150 /* See if a private colormap is requested. */
10151 if (dpyinfo->visual == DefaultVisualOfScreen (dpyinfo->screen))
10153 if (dpyinfo->visual->class == PseudoColor)
10155 Lisp_Object value;
10156 value = display_x_get_resource (dpyinfo,
10157 build_string ("privateColormap"),
10158 build_string ("PrivateColormap"),
10159 Qnil, Qnil);
10160 if (STRINGP (value)
10161 && (!strcmp (SSDATA (value), "true")
10162 || !strcmp (SSDATA (value), "on")))
10163 dpyinfo->cmap = XCopyColormapAndFree (dpyinfo->display, dpyinfo->cmap);
10166 else
10167 dpyinfo->cmap = XCreateColormap (dpyinfo->display, dpyinfo->root_window,
10168 dpyinfo->visual, AllocNone);
10170 #ifdef HAVE_XFT
10172 /* If we are using Xft, check dpi value in X resources.
10173 It is better we use it as well, since Xft will use it, as will all
10174 Gnome applications. If our real DPI is smaller or larger than the
10175 one Xft uses, our font will look smaller or larger than other
10176 for other applications, even if it is the same font name (monospace-10
10177 for example). */
10178 char *v = XGetDefault (dpyinfo->display, "Xft", "dpi");
10179 double d;
10180 if (v != NULL && sscanf (v, "%lf", &d) == 1)
10181 dpyinfo->resy = dpyinfo->resx = d;
10183 #endif
10185 if (dpyinfo->resy < 1)
10187 int screen_number = XScreenNumberOfScreen (dpyinfo->screen);
10188 double pixels = DisplayHeight (dpyinfo->display, screen_number);
10189 double mm = DisplayHeightMM (dpyinfo->display, screen_number);
10190 /* Mac OS X 10.3's Xserver sometimes reports 0.0mm. */
10191 dpyinfo->resy = (mm < 1) ? 100 : pixels * 25.4 / mm;
10192 pixels = DisplayWidth (dpyinfo->display, screen_number);
10193 mm = DisplayWidthMM (dpyinfo->display, screen_number);
10194 /* Mac OS X 10.3's Xserver sometimes reports 0.0mm. */
10195 dpyinfo->resx = (mm < 1) ? 100 : pixels * 25.4 / mm;
10199 static const struct
10201 const char *name;
10202 int offset;
10203 } atom_refs[] = {
10204 #define ATOM_REFS_INIT(string, member) \
10205 { string, offsetof (struct x_display_info, member) },
10206 ATOM_REFS_INIT ("WM_PROTOCOLS", Xatom_wm_protocols)
10207 ATOM_REFS_INIT ("WM_TAKE_FOCUS", Xatom_wm_take_focus)
10208 ATOM_REFS_INIT ("WM_SAVE_YOURSELF", Xatom_wm_save_yourself)
10209 ATOM_REFS_INIT ("WM_DELETE_WINDOW", Xatom_wm_delete_window)
10210 ATOM_REFS_INIT ("WM_CHANGE_STATE", Xatom_wm_change_state)
10211 ATOM_REFS_INIT ("WM_CONFIGURE_DENIED", Xatom_wm_configure_denied)
10212 ATOM_REFS_INIT ("WM_MOVED", Xatom_wm_window_moved)
10213 ATOM_REFS_INIT ("WM_CLIENT_LEADER", Xatom_wm_client_leader)
10214 ATOM_REFS_INIT ("Editres", Xatom_editres)
10215 ATOM_REFS_INIT ("CLIPBOARD", Xatom_CLIPBOARD)
10216 ATOM_REFS_INIT ("TIMESTAMP", Xatom_TIMESTAMP)
10217 ATOM_REFS_INIT ("TEXT", Xatom_TEXT)
10218 ATOM_REFS_INIT ("COMPOUND_TEXT", Xatom_COMPOUND_TEXT)
10219 ATOM_REFS_INIT ("UTF8_STRING", Xatom_UTF8_STRING)
10220 ATOM_REFS_INIT ("DELETE", Xatom_DELETE)
10221 ATOM_REFS_INIT ("MULTIPLE", Xatom_MULTIPLE)
10222 ATOM_REFS_INIT ("INCR", Xatom_INCR)
10223 ATOM_REFS_INIT ("_EMACS_TMP_", Xatom_EMACS_TMP)
10224 ATOM_REFS_INIT ("TARGETS", Xatom_TARGETS)
10225 ATOM_REFS_INIT ("NULL", Xatom_NULL)
10226 ATOM_REFS_INIT ("ATOM", Xatom_ATOM)
10227 ATOM_REFS_INIT ("ATOM_PAIR", Xatom_ATOM_PAIR)
10228 ATOM_REFS_INIT ("CLIPBOARD_MANAGER", Xatom_CLIPBOARD_MANAGER)
10229 ATOM_REFS_INIT ("_XEMBED_INFO", Xatom_XEMBED_INFO)
10230 /* For properties of font. */
10231 ATOM_REFS_INIT ("PIXEL_SIZE", Xatom_PIXEL_SIZE)
10232 ATOM_REFS_INIT ("AVERAGE_WIDTH", Xatom_AVERAGE_WIDTH)
10233 ATOM_REFS_INIT ("_MULE_BASELINE_OFFSET", Xatom_MULE_BASELINE_OFFSET)
10234 ATOM_REFS_INIT ("_MULE_RELATIVE_COMPOSE", Xatom_MULE_RELATIVE_COMPOSE)
10235 ATOM_REFS_INIT ("_MULE_DEFAULT_ASCENT", Xatom_MULE_DEFAULT_ASCENT)
10236 /* Ghostscript support. */
10237 ATOM_REFS_INIT ("DONE", Xatom_DONE)
10238 ATOM_REFS_INIT ("PAGE", Xatom_PAGE)
10239 ATOM_REFS_INIT ("SCROLLBAR", Xatom_Scrollbar)
10240 ATOM_REFS_INIT ("_XEMBED", Xatom_XEMBED)
10241 /* EWMH */
10242 ATOM_REFS_INIT ("_NET_WM_STATE", Xatom_net_wm_state)
10243 ATOM_REFS_INIT ("_NET_WM_STATE_FULLSCREEN", Xatom_net_wm_state_fullscreen)
10244 ATOM_REFS_INIT ("_NET_WM_STATE_MAXIMIZED_HORZ",
10245 Xatom_net_wm_state_maximized_horz)
10246 ATOM_REFS_INIT ("_NET_WM_STATE_MAXIMIZED_VERT",
10247 Xatom_net_wm_state_maximized_vert)
10248 ATOM_REFS_INIT ("_NET_WM_STATE_STICKY", Xatom_net_wm_state_sticky)
10249 ATOM_REFS_INIT ("_NET_WM_STATE_HIDDEN", Xatom_net_wm_state_hidden)
10250 ATOM_REFS_INIT ("_NET_WM_WINDOW_TYPE", Xatom_net_window_type)
10251 ATOM_REFS_INIT ("_NET_WM_WINDOW_TYPE_TOOLTIP",
10252 Xatom_net_window_type_tooltip)
10253 ATOM_REFS_INIT ("_NET_WM_ICON_NAME", Xatom_net_wm_icon_name)
10254 ATOM_REFS_INIT ("_NET_WM_NAME", Xatom_net_wm_name)
10255 ATOM_REFS_INIT ("_NET_SUPPORTED", Xatom_net_supported)
10256 ATOM_REFS_INIT ("_NET_SUPPORTING_WM_CHECK", Xatom_net_supporting_wm_check)
10257 ATOM_REFS_INIT ("_NET_WM_WINDOW_OPACITY", Xatom_net_wm_window_opacity)
10258 ATOM_REFS_INIT ("_NET_ACTIVE_WINDOW", Xatom_net_active_window)
10259 ATOM_REFS_INIT ("_NET_FRAME_EXTENTS", Xatom_net_frame_extents)
10260 ATOM_REFS_INIT ("_NET_CURRENT_DESKTOP", Xatom_net_current_desktop)
10261 ATOM_REFS_INIT ("_NET_WORKAREA", Xatom_net_workarea)
10262 /* Session management */
10263 ATOM_REFS_INIT ("SM_CLIENT_ID", Xatom_SM_CLIENT_ID)
10264 ATOM_REFS_INIT ("_XSETTINGS_SETTINGS", Xatom_xsettings_prop)
10265 ATOM_REFS_INIT ("MANAGER", Xatom_xsettings_mgr)
10268 int i;
10269 const int atom_count = sizeof (atom_refs) / sizeof (atom_refs[0]);
10270 /* 1 for _XSETTINGS_SN */
10271 const int total_atom_count = 1 + atom_count;
10272 Atom *atoms_return = xmalloc (total_atom_count * sizeof *atoms_return);
10273 char **atom_names = xmalloc (total_atom_count * sizeof *atom_names);
10274 static char const xsettings_fmt[] = "_XSETTINGS_S%d";
10275 char xsettings_atom_name[sizeof xsettings_fmt - 2
10276 + INT_STRLEN_BOUND (int)];
10278 for (i = 0; i < atom_count; i++)
10279 atom_names[i] = (char *) atom_refs[i].name;
10281 /* Build _XSETTINGS_SN atom name */
10282 sprintf (xsettings_atom_name, xsettings_fmt,
10283 XScreenNumberOfScreen (dpyinfo->screen));
10284 atom_names[i] = xsettings_atom_name;
10286 XInternAtoms (dpyinfo->display, atom_names, total_atom_count,
10287 False, atoms_return);
10289 for (i = 0; i < atom_count; i++)
10290 *(Atom *) ((char *) dpyinfo + atom_refs[i].offset) = atoms_return[i];
10292 /* Manual copy of last atom */
10293 dpyinfo->Xatom_xsettings_sel = atoms_return[i];
10295 xfree (atom_names);
10296 xfree (atoms_return);
10299 dpyinfo->x_dnd_atoms_size = 8;
10300 dpyinfo->x_dnd_atoms_length = 0;
10301 dpyinfo->x_dnd_atoms = xmalloc (sizeof *dpyinfo->x_dnd_atoms
10302 * dpyinfo->x_dnd_atoms_size);
10304 dpyinfo->net_supported_atoms = NULL;
10305 dpyinfo->nr_net_supported_atoms = 0;
10306 dpyinfo->net_supported_window = 0;
10308 connection = ConnectionNumber (dpyinfo->display);
10309 dpyinfo->connection = connection;
10310 dpyinfo->gray
10311 = XCreatePixmapFromBitmapData (dpyinfo->display, dpyinfo->root_window,
10312 gray_bits, gray_width, gray_height,
10313 1, 0, 1);
10315 #ifdef HAVE_X_I18N
10316 xim_initialize (dpyinfo, resource_name);
10317 #endif
10319 xsettings_initialize (dpyinfo);
10321 /* This is only needed for distinguishing keyboard and process input. */
10322 if (connection != 0)
10323 add_keyboard_wait_descriptor (connection);
10325 #ifdef F_SETOWN
10326 fcntl (connection, F_SETOWN, getpid ());
10327 #endif /* ! defined (F_SETOWN) */
10329 if (interrupt_input)
10330 init_sigio (connection);
10332 #ifdef USE_LUCID
10334 XrmValue d, fr, to;
10335 Font font;
10337 dpy = dpyinfo->display;
10338 d.addr = (XPointer)&dpy;
10339 d.size = sizeof (Display *);
10340 fr.addr = XtDefaultFont;
10341 fr.size = sizeof (XtDefaultFont);
10342 to.size = sizeof (Font *);
10343 to.addr = (XPointer)&font;
10344 x_catch_errors (dpy);
10345 if (!XtCallConverter (dpy, XtCvtStringToFont, &d, 1, &fr, &to, NULL))
10346 emacs_abort ();
10347 if (x_had_errors_p (dpy) || !XQueryFont (dpy, font))
10348 XrmPutLineResource (&xrdb, "Emacs.dialog.*.font: 9x15");
10349 x_uncatch_errors ();
10351 #endif
10353 /* See if we should run in synchronous mode. This is useful
10354 for debugging X code. */
10356 Lisp_Object value;
10357 value = display_x_get_resource (dpyinfo,
10358 build_string ("synchronous"),
10359 build_string ("Synchronous"),
10360 Qnil, Qnil);
10361 if (STRINGP (value)
10362 && (!strcmp (SSDATA (value), "true")
10363 || !strcmp (SSDATA (value), "on")))
10364 XSynchronize (dpyinfo->display, True);
10368 Lisp_Object value;
10369 value = display_x_get_resource (dpyinfo,
10370 build_string ("useXIM"),
10371 build_string ("UseXIM"),
10372 Qnil, Qnil);
10373 #ifdef USE_XIM
10374 if (STRINGP (value)
10375 && (!strcmp (SSDATA (value), "false")
10376 || !strcmp (SSDATA (value), "off")))
10377 use_xim = 0;
10378 #else
10379 if (STRINGP (value)
10380 && (!strcmp (SSDATA (value), "true")
10381 || !strcmp (SSDATA (value), "on")))
10382 use_xim = 1;
10383 #endif
10386 #ifdef HAVE_X_SM
10387 /* Only do this for the very first display in the Emacs session.
10388 Ignore X session management when Emacs was first started on a
10389 tty. */
10390 if (terminal->id == 1)
10391 x_session_initialize (dpyinfo);
10392 #endif
10394 unblock_input ();
10396 return dpyinfo;
10399 /* Get rid of display DPYINFO, deleting all frames on it,
10400 and without sending any more commands to the X server. */
10402 static void
10403 x_delete_display (struct x_display_info *dpyinfo)
10405 struct terminal *t;
10407 /* Close all frames and delete the generic struct terminal for this
10408 X display. */
10409 for (t = terminal_list; t; t = t->next_terminal)
10410 if (t->type == output_x_window && t->display_info.x == dpyinfo)
10412 #ifdef HAVE_X_SM
10413 /* Close X session management when we close its display. */
10414 if (t->id == 1 && x_session_have_connection ())
10415 x_session_close ();
10416 #endif
10417 delete_terminal (t);
10418 break;
10421 delete_keyboard_wait_descriptor (dpyinfo->connection);
10423 /* Discard this display from x_display_name_list and x_display_list.
10424 We can't use Fdelq because that can quit. */
10425 if (! NILP (x_display_name_list)
10426 && EQ (XCAR (x_display_name_list), dpyinfo->name_list_element))
10427 x_display_name_list = XCDR (x_display_name_list);
10428 else
10430 Lisp_Object tail;
10432 tail = x_display_name_list;
10433 while (CONSP (tail) && CONSP (XCDR (tail)))
10435 if (EQ (XCAR (XCDR (tail)), dpyinfo->name_list_element))
10437 XSETCDR (tail, XCDR (XCDR (tail)));
10438 break;
10440 tail = XCDR (tail);
10444 if (next_noop_dpyinfo == dpyinfo)
10445 next_noop_dpyinfo = dpyinfo->next;
10447 if (x_display_list == dpyinfo)
10448 x_display_list = dpyinfo->next;
10449 else
10451 struct x_display_info *tail;
10453 for (tail = x_display_list; tail; tail = tail->next)
10454 if (tail->next == dpyinfo)
10455 tail->next = tail->next->next;
10458 xfree (dpyinfo->x_id_name);
10459 xfree (dpyinfo->x_dnd_atoms);
10460 xfree (dpyinfo->color_cells);
10461 xfree (dpyinfo);
10464 #ifdef USE_X_TOOLKIT
10466 /* Atimer callback function for TIMER. Called every 0.1s to process
10467 Xt timeouts, if needed. We must avoid calling XtAppPending as
10468 much as possible because that function does an implicit XFlush
10469 that slows us down. */
10471 static void
10472 x_process_timeouts (struct atimer *timer)
10474 block_input ();
10475 x_timeout_atimer_activated_flag = 0;
10476 if (toolkit_scroll_bar_interaction || popup_activated ())
10478 while (XtAppPending (Xt_app_con) & XtIMTimer)
10479 XtAppProcessEvent (Xt_app_con, XtIMTimer);
10480 /* Reactivate the atimer for next time. */
10481 x_activate_timeout_atimer ();
10483 unblock_input ();
10486 /* Install an asynchronous timer that processes Xt timeout events
10487 every 0.1s as long as either `toolkit_scroll_bar_interaction' or
10488 `popup_activated_flag' (in xmenu.c) is set. Make sure to call this
10489 function whenever these variables are set. This is necessary
10490 because some widget sets use timeouts internally, for example the
10491 LessTif menu bar, or the Xaw3d scroll bar. When Xt timeouts aren't
10492 processed, these widgets don't behave normally. */
10494 void
10495 x_activate_timeout_atimer (void)
10497 block_input ();
10498 if (!x_timeout_atimer_activated_flag)
10500 EMACS_TIME interval = make_emacs_time (0, 100 * 1000 * 1000);
10501 start_atimer (ATIMER_RELATIVE, interval, x_process_timeouts, 0);
10502 x_timeout_atimer_activated_flag = 1;
10504 unblock_input ();
10507 #endif /* USE_X_TOOLKIT */
10510 /* Set up use of X before we make the first connection. */
10512 static struct redisplay_interface x_redisplay_interface =
10514 x_frame_parm_handlers,
10515 x_produce_glyphs,
10516 x_write_glyphs,
10517 x_insert_glyphs,
10518 x_clear_end_of_line,
10519 x_scroll_run,
10520 x_after_update_window_line,
10521 x_update_window_begin,
10522 x_update_window_end,
10523 x_cursor_to,
10524 x_flush,
10525 #ifdef XFlush
10526 x_flush,
10527 #else
10528 0, /* flush_display_optional */
10529 #endif
10530 x_clear_window_mouse_face,
10531 x_get_glyph_overhangs,
10532 x_fix_overlapping_area,
10533 x_draw_fringe_bitmap,
10534 0, /* define_fringe_bitmap */
10535 0, /* destroy_fringe_bitmap */
10536 x_compute_glyph_string_overhangs,
10537 x_draw_glyph_string,
10538 x_define_frame_cursor,
10539 x_clear_frame_area,
10540 x_draw_window_cursor,
10541 x_draw_vertical_window_border,
10542 x_shift_glyphs_for_insert
10546 /* This function is called when the last frame on a display is deleted. */
10547 void
10548 x_delete_terminal (struct terminal *terminal)
10550 struct x_display_info *dpyinfo = terminal->display_info.x;
10552 /* Protect against recursive calls. delete_frame in
10553 delete_terminal calls us back when it deletes our last frame. */
10554 if (!terminal->name)
10555 return;
10557 block_input ();
10558 #ifdef HAVE_X_I18N
10559 /* We must close our connection to the XIM server before closing the
10560 X display. */
10561 if (dpyinfo->xim)
10562 xim_close_dpy (dpyinfo);
10563 #endif
10565 /* If called from x_connection_closed, the display may already be closed
10566 and dpyinfo->display was set to 0 to indicate that. */
10567 if (dpyinfo->display)
10569 x_destroy_all_bitmaps (dpyinfo);
10570 XSetCloseDownMode (dpyinfo->display, DestroyAll);
10572 /* Whether or not XCloseDisplay destroys the associated resource
10573 database depends on the version of libX11. To avoid both
10574 crash and memory leak, we dissociate the database from the
10575 display and then destroy dpyinfo->xrdb ourselves.
10577 Unfortunately, the above strategy does not work in some
10578 situations due to a bug in newer versions of libX11: because
10579 XrmSetDatabase doesn't clear the flag XlibDisplayDfltRMDB if
10580 dpy->db is NULL, XCloseDisplay destroys the associated
10581 database whereas it has not been created by XGetDefault
10582 (Bug#21974 in freedesktop.org Bugzilla). As a workaround, we
10583 don't destroy the database here in order to avoid the crash
10584 in the above situations for now, though that may cause memory
10585 leaks in other situations. */
10586 #if 0
10587 #ifdef HAVE_XRMSETDATABASE
10588 XrmSetDatabase (dpyinfo->display, NULL);
10589 #else
10590 dpyinfo->display->db = NULL;
10591 #endif
10592 /* We used to call XrmDestroyDatabase from x_delete_display, but
10593 some older versions of libX11 crash if we call it after
10594 closing all the displays. */
10595 XrmDestroyDatabase (dpyinfo->xrdb);
10596 #endif
10598 #ifdef USE_GTK
10599 xg_display_close (dpyinfo->display);
10600 #else
10601 #ifdef USE_X_TOOLKIT
10602 XtCloseDisplay (dpyinfo->display);
10603 #else
10604 XCloseDisplay (dpyinfo->display);
10605 #endif
10606 #endif /* ! USE_GTK */
10609 /* Mark as dead. */
10610 dpyinfo->display = NULL;
10611 x_delete_display (dpyinfo);
10612 unblock_input ();
10615 /* Create a struct terminal, initialize it with the X11 specific
10616 functions and make DISPLAY->TERMINAL point to it. */
10618 static struct terminal *
10619 x_create_terminal (struct x_display_info *dpyinfo)
10621 struct terminal *terminal;
10623 terminal = create_terminal ();
10625 terminal->type = output_x_window;
10626 terminal->display_info.x = dpyinfo;
10627 dpyinfo->terminal = terminal;
10629 /* kboard is initialized in x_term_init. */
10631 terminal->clear_frame_hook = x_clear_frame;
10632 terminal->ins_del_lines_hook = x_ins_del_lines;
10633 terminal->delete_glyphs_hook = x_delete_glyphs;
10634 terminal->ring_bell_hook = XTring_bell;
10635 terminal->toggle_invisible_pointer_hook = XTtoggle_invisible_pointer;
10636 terminal->reset_terminal_modes_hook = XTreset_terminal_modes;
10637 terminal->set_terminal_modes_hook = XTset_terminal_modes;
10638 terminal->update_begin_hook = x_update_begin;
10639 terminal->update_end_hook = x_update_end;
10640 terminal->set_terminal_window_hook = XTset_terminal_window;
10641 terminal->read_socket_hook = XTread_socket;
10642 terminal->frame_up_to_date_hook = XTframe_up_to_date;
10643 terminal->mouse_position_hook = XTmouse_position;
10644 terminal->frame_rehighlight_hook = XTframe_rehighlight;
10645 terminal->frame_raise_lower_hook = XTframe_raise_lower;
10646 terminal->fullscreen_hook = XTfullscreen_hook;
10647 terminal->set_vertical_scroll_bar_hook = XTset_vertical_scroll_bar;
10648 terminal->condemn_scroll_bars_hook = XTcondemn_scroll_bars;
10649 terminal->redeem_scroll_bar_hook = XTredeem_scroll_bar;
10650 terminal->judge_scroll_bars_hook = XTjudge_scroll_bars;
10652 terminal->delete_frame_hook = x_destroy_window;
10653 terminal->delete_terminal_hook = x_delete_terminal;
10655 terminal->rif = &x_redisplay_interface;
10656 terminal->scroll_region_ok = 1; /* We'll scroll partial frames. */
10657 terminal->char_ins_del_ok = 1;
10658 terminal->line_ins_del_ok = 1; /* We'll just blt 'em. */
10659 terminal->fast_clear_end_of_line = 1; /* X does this well. */
10660 terminal->memory_below_frame = 0; /* We don't remember what scrolls
10661 off the bottom. */
10663 return terminal;
10666 void
10667 x_initialize (void)
10669 baud_rate = 19200;
10671 x_noop_count = 0;
10672 last_tool_bar_item = -1;
10673 any_help_event_p = 0;
10674 ignore_next_mouse_click_timeout = 0;
10676 #ifdef USE_GTK
10677 current_count = -1;
10678 #endif
10680 /* Try to use interrupt input; if we can't, then start polling. */
10681 Fset_input_interrupt_mode (Qt);
10683 #ifdef USE_X_TOOLKIT
10684 XtToolkitInitialize ();
10686 Xt_app_con = XtCreateApplicationContext ();
10688 /* Register a converter from strings to pixels, which uses
10689 Emacs' color allocation infrastructure. */
10690 XtAppSetTypeConverter (Xt_app_con,
10691 XtRString, XtRPixel, cvt_string_to_pixel,
10692 cvt_string_to_pixel_args,
10693 XtNumber (cvt_string_to_pixel_args),
10694 XtCacheByDisplay, cvt_pixel_dtor);
10696 XtAppSetFallbackResources (Xt_app_con, Xt_default_resources);
10697 #endif
10699 #ifdef USE_TOOLKIT_SCROLL_BARS
10700 #ifndef USE_GTK
10701 xaw3d_arrow_scroll = False;
10702 xaw3d_pick_top = True;
10703 #endif
10704 #endif
10706 pending_autoraise_frame = 0;
10707 pending_event_wait.f = 0;
10708 pending_event_wait.eventtype = 0;
10710 /* Note that there is no real way portable across R3/R4 to get the
10711 original error handler. */
10712 XSetErrorHandler (x_error_handler);
10713 XSetIOErrorHandler (x_io_error_quitter);
10717 void
10718 syms_of_xterm (void)
10720 x_error_message = NULL;
10722 staticpro (&x_display_name_list);
10723 x_display_name_list = Qnil;
10725 staticpro (&last_mouse_scroll_bar);
10726 last_mouse_scroll_bar = Qnil;
10728 DEFSYM (Qvendor_specific_keysyms, "vendor-specific-keysyms");
10729 DEFSYM (Qlatin_1, "latin-1");
10731 staticpro (&last_mouse_press_frame);
10732 last_mouse_press_frame = Qnil;
10734 #ifdef USE_GTK
10735 xg_default_icon_file = build_pure_c_string ("icons/hicolor/scalable/apps/emacs.svg");
10736 staticpro (&xg_default_icon_file);
10738 DEFSYM (Qx_gtk_map_stock, "x-gtk-map-stock");
10739 #endif
10741 DEFVAR_BOOL ("x-use-underline-position-properties",
10742 x_use_underline_position_properties,
10743 doc: /* Non-nil means make use of UNDERLINE_POSITION font properties.
10744 A value of nil means ignore them. If you encounter fonts with bogus
10745 UNDERLINE_POSITION font properties, for example 7x13 on XFree prior
10746 to 4.1, set this to nil. You can also use `underline-minimum-offset'
10747 to override the font's UNDERLINE_POSITION for small font display
10748 sizes. */);
10749 x_use_underline_position_properties = 1;
10751 DEFVAR_BOOL ("x-underline-at-descent-line",
10752 x_underline_at_descent_line,
10753 doc: /* Non-nil means to draw the underline at the same place as the descent line.
10754 A value of nil means to draw the underline according to the value of the
10755 variable `x-use-underline-position-properties', which is usually at the
10756 baseline level. The default value is nil. */);
10757 x_underline_at_descent_line = 0;
10759 DEFVAR_BOOL ("x-mouse-click-focus-ignore-position",
10760 x_mouse_click_focus_ignore_position,
10761 doc: /* Non-nil means that a mouse click to focus a frame does not move point.
10762 This variable is only used when the window manager requires that you
10763 click on a frame to select it (give it focus). In that case, a value
10764 of nil, means that the selected window and cursor position changes to
10765 reflect the mouse click position, while a non-nil value means that the
10766 selected window or cursor position is preserved. */);
10767 x_mouse_click_focus_ignore_position = 0;
10769 DEFVAR_LISP ("x-toolkit-scroll-bars", Vx_toolkit_scroll_bars,
10770 doc: /* Which toolkit scroll bars Emacs uses, if any.
10771 A value of nil means Emacs doesn't use toolkit scroll bars.
10772 With the X Window system, the value is a symbol describing the
10773 X toolkit. Possible values are: gtk, motif, xaw, or xaw3d.
10774 With MS Windows or Nextstep, the value is t. */);
10775 #ifdef USE_TOOLKIT_SCROLL_BARS
10776 #ifdef USE_MOTIF
10777 Vx_toolkit_scroll_bars = intern_c_string ("motif");
10778 #elif defined HAVE_XAW3D
10779 Vx_toolkit_scroll_bars = intern_c_string ("xaw3d");
10780 #elif USE_GTK
10781 Vx_toolkit_scroll_bars = intern_c_string ("gtk");
10782 #else
10783 Vx_toolkit_scroll_bars = intern_c_string ("xaw");
10784 #endif
10785 #else
10786 Vx_toolkit_scroll_bars = Qnil;
10787 #endif
10789 staticpro (&last_mouse_motion_frame);
10790 last_mouse_motion_frame = Qnil;
10792 Qmodifier_value = intern_c_string ("modifier-value");
10793 Qalt = intern_c_string ("alt");
10794 Fput (Qalt, Qmodifier_value, make_number (alt_modifier));
10795 Qhyper = intern_c_string ("hyper");
10796 Fput (Qhyper, Qmodifier_value, make_number (hyper_modifier));
10797 Qmeta = intern_c_string ("meta");
10798 Fput (Qmeta, Qmodifier_value, make_number (meta_modifier));
10799 Qsuper = intern_c_string ("super");
10800 Fput (Qsuper, Qmodifier_value, make_number (super_modifier));
10802 DEFVAR_LISP ("x-alt-keysym", Vx_alt_keysym,
10803 doc: /* Which keys Emacs uses for the alt modifier.
10804 This should be one of the symbols `alt', `hyper', `meta', `super'.
10805 For example, `alt' means use the Alt_L and Alt_R keysyms. The default
10806 is nil, which is the same as `alt'. */);
10807 Vx_alt_keysym = Qnil;
10809 DEFVAR_LISP ("x-hyper-keysym", Vx_hyper_keysym,
10810 doc: /* Which keys Emacs uses for the hyper modifier.
10811 This should be one of the symbols `alt', `hyper', `meta', `super'.
10812 For example, `hyper' means use the Hyper_L and Hyper_R keysyms. The
10813 default is nil, which is the same as `hyper'. */);
10814 Vx_hyper_keysym = Qnil;
10816 DEFVAR_LISP ("x-meta-keysym", Vx_meta_keysym,
10817 doc: /* Which keys Emacs uses for the meta modifier.
10818 This should be one of the symbols `alt', `hyper', `meta', `super'.
10819 For example, `meta' means use the Meta_L and Meta_R keysyms. The
10820 default is nil, which is the same as `meta'. */);
10821 Vx_meta_keysym = Qnil;
10823 DEFVAR_LISP ("x-super-keysym", Vx_super_keysym,
10824 doc: /* Which keys Emacs uses for the super modifier.
10825 This should be one of the symbols `alt', `hyper', `meta', `super'.
10826 For example, `super' means use the Super_L and Super_R keysyms. The
10827 default is nil, which is the same as `super'. */);
10828 Vx_super_keysym = Qnil;
10830 DEFVAR_LISP ("x-keysym-table", Vx_keysym_table,
10831 doc: /* Hash table of character codes indexed by X keysym codes. */);
10832 Vx_keysym_table = make_hash_table (hashtest_eql, make_number (900),
10833 make_float (DEFAULT_REHASH_SIZE),
10834 make_float (DEFAULT_REHASH_THRESHOLD),
10835 Qnil);
10838 #endif /* HAVE_X_WINDOWS */