Fix port to 32-bit AIX with xlc.
[bpt/emacs.git] / src / xterm.c
1 /* X Communication module for terminals which understand the X protocol.
2
3 Copyright (C) 1989, 1993-2014 Free Software Foundation, Inc.
4
5 This file is part of GNU Emacs.
6
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.
11
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.
16
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/>. */
19
20 /* New display code by Gerd Moellmann <gerd@gnu.org>. */
21 /* Xt features made by Fred Pierresteguy. */
22
23 #include <config.h>
24 #include <stdio.h>
25
26 #include "lisp.h"
27 #include "blockinput.h"
28 #include "syssignal.h"
29
30 /* This may include sys/types.h, and that somehow loses
31 if this is not done before the other system files. */
32 #include "xterm.h"
33 #include <X11/cursorfont.h>
34
35 /* Load sys/types.h if not already loaded.
36 In some systems loading it twice is suicidal. */
37 #ifndef makedev
38 #include <sys/types.h>
39 #endif /* makedev */
40
41 #include <sys/ioctl.h>
42
43 #include "systime.h"
44
45 #include <fcntl.h>
46 #include <errno.h>
47 #include <sys/stat.h>
48 /* Caused redefinition of DBL_DIG on Netbsd; seems not to be needed. */
49 /* #include <sys/param.h> */
50
51 #include "charset.h"
52 #include "character.h"
53 #include "coding.h"
54 #include "frame.h"
55 #include "dispextern.h"
56 #include "fontset.h"
57 #include "termhooks.h"
58 #include "termopts.h"
59 #include "termchar.h"
60 #include "emacs-icon.h"
61 #include "disptab.h"
62 #include "buffer.h"
63 #include "window.h"
64 #include "keyboard.h"
65 #include "intervals.h"
66 #include "process.h"
67 #include "atimer.h"
68 #include "keymap.h"
69 #include "font.h"
70 #include "xsettings.h"
71 #include "xgselect.h"
72 #include "sysselect.h"
73
74 #ifdef USE_X_TOOLKIT
75 #include <X11/Shell.h>
76 #endif
77
78 #include <unistd.h>
79
80 #ifdef USE_GTK
81 #include "gtkutil.h"
82 #ifdef HAVE_GTK3
83 #include <X11/Xproto.h>
84 #endif
85 #endif
86
87 #if defined (USE_LUCID) || defined (USE_MOTIF)
88 #include "../lwlib/xlwmenu.h"
89 #endif
90
91 #ifdef USE_X_TOOLKIT
92 #if !defined (NO_EDITRES)
93 #define HACK_EDITRES
94 extern void _XEditResCheckMessages (Widget, XtPointer, XEvent *, Boolean *);
95 #endif /* not NO_EDITRES */
96
97 /* Include toolkit specific headers for the scroll bar widget. */
98
99 #ifdef USE_TOOLKIT_SCROLL_BARS
100 #if defined USE_MOTIF
101 #include <Xm/Xm.h> /* For LESSTIF_VERSION */
102 #include <Xm/ScrollBar.h>
103 #else /* !USE_MOTIF i.e. use Xaw */
104
105 #ifdef HAVE_XAW3D
106 #include <X11/Xaw3d/Simple.h>
107 #include <X11/Xaw3d/Scrollbar.h>
108 #include <X11/Xaw3d/ThreeD.h>
109 #else /* !HAVE_XAW3D */
110 #include <X11/Xaw/Simple.h>
111 #include <X11/Xaw/Scrollbar.h>
112 #endif /* !HAVE_XAW3D */
113 #ifndef XtNpickTop
114 #define XtNpickTop "pickTop"
115 #endif /* !XtNpickTop */
116 #endif /* !USE_MOTIF */
117 #endif /* USE_TOOLKIT_SCROLL_BARS */
118
119 #endif /* USE_X_TOOLKIT */
120
121 #ifdef USE_X_TOOLKIT
122 #include "widget.h"
123 #ifndef XtNinitialState
124 #define XtNinitialState "initialState"
125 #endif
126 #endif
127
128 #include "bitmaps/gray.xbm"
129
130 #ifdef HAVE_XKB
131 #include <X11/XKBlib.h>
132 #endif
133
134 /* Default to using XIM if available. */
135 #ifdef USE_XIM
136 bool use_xim = true;
137 #else
138 bool use_xim = false; /* configure --without-xim */
139 #endif
140
141 /* Non-zero means that a HELP_EVENT has been generated since Emacs
142 start. */
143
144 static bool any_help_event_p;
145
146 /* This is a chain of structures for all the X displays currently in
147 use. */
148
149 struct x_display_info *x_display_list;
150
151 #ifdef USE_X_TOOLKIT
152
153 /* The application context for Xt use. */
154 XtAppContext Xt_app_con;
155 static String Xt_default_resources[] = {0};
156
157 /* Non-zero means user is interacting with a toolkit scroll bar. */
158 static bool toolkit_scroll_bar_interaction;
159
160 #endif /* USE_X_TOOLKIT */
161
162 /* Non-zero timeout value means ignore next mouse click if it arrives
163 before that timeout elapses (i.e. as part of the same sequence of
164 events resulting from clicking on a frame to select it). */
165
166 static Time ignore_next_mouse_click_timeout;
167
168 /* Used locally within XTread_socket. */
169
170 static int x_noop_count;
171
172 static Lisp_Object Qalt, Qhyper, Qmeta, Qsuper, Qmodifier_value;
173
174 static Lisp_Object Qvendor_specific_keysyms;
175 static Lisp_Object Qlatin_1;
176
177 #ifdef USE_GTK
178 /* The name of the Emacs icon file. */
179 static Lisp_Object xg_default_icon_file;
180
181 /* Used in gtkutil.c. */
182 Lisp_Object Qx_gtk_map_stock;
183 #endif
184
185 /* Some functions take this as char *, not const char *. */
186 static char emacs_class[] = EMACS_CLASS;
187
188 enum xembed_info
189 {
190 XEMBED_MAPPED = 1 << 0
191 };
192
193 enum xembed_message
194 {
195 XEMBED_EMBEDDED_NOTIFY = 0,
196 XEMBED_WINDOW_ACTIVATE = 1,
197 XEMBED_WINDOW_DEACTIVATE = 2,
198 XEMBED_REQUEST_FOCUS = 3,
199 XEMBED_FOCUS_IN = 4,
200 XEMBED_FOCUS_OUT = 5,
201 XEMBED_FOCUS_NEXT = 6,
202 XEMBED_FOCUS_PREV = 7,
203
204 XEMBED_MODALITY_ON = 10,
205 XEMBED_MODALITY_OFF = 11,
206 XEMBED_REGISTER_ACCELERATOR = 12,
207 XEMBED_UNREGISTER_ACCELERATOR = 13,
208 XEMBED_ACTIVATE_ACCELERATOR = 14
209 };
210
211 static bool x_alloc_nearest_color_1 (Display *, Colormap, XColor *);
212 static void x_set_window_size_1 (struct frame *, int, int, int, bool);
213 static void x_raise_frame (struct frame *);
214 static void x_lower_frame (struct frame *);
215 static const XColor *x_color_cells (Display *, int *);
216 static int x_io_error_quitter (Display *);
217 static struct terminal *x_create_terminal (struct x_display_info *);
218 void x_delete_terminal (struct terminal *);
219 static void x_update_end (struct frame *);
220 static void XTframe_up_to_date (struct frame *);
221 static void x_clear_frame (struct frame *);
222 static _Noreturn void x_ins_del_lines (struct frame *, int, int);
223 static void frame_highlight (struct frame *);
224 static void frame_unhighlight (struct frame *);
225 static void x_new_focus_frame (struct x_display_info *, struct frame *);
226 static void x_focus_changed (int, int, struct x_display_info *,
227 struct frame *, struct input_event *);
228 static void XTframe_rehighlight (struct frame *);
229 static void x_frame_rehighlight (struct x_display_info *);
230 static void x_draw_hollow_cursor (struct window *, struct glyph_row *);
231 static void x_draw_bar_cursor (struct window *, struct glyph_row *, int,
232 enum text_cursor_kinds);
233
234 static void x_clip_to_row (struct window *, struct glyph_row *,
235 enum glyph_row_area, GC);
236 static void x_flush (struct frame *f);
237 static void x_update_begin (struct frame *);
238 static void x_update_window_begin (struct window *);
239 static struct scroll_bar *x_window_to_scroll_bar (Display *, Window);
240 static void x_scroll_bar_report_motion (struct frame **, Lisp_Object *,
241 enum scroll_bar_part *,
242 Lisp_Object *, Lisp_Object *,
243 Time *);
244 static int x_handle_net_wm_state (struct frame *, const XPropertyEvent *);
245 static void x_check_fullscreen (struct frame *);
246 static void x_check_expected_move (struct frame *, int, int);
247 static void x_sync_with_move (struct frame *, int, int, int);
248 static int handle_one_xevent (struct x_display_info *,
249 const XEvent *, int *,
250 struct input_event *);
251 #if ! (defined USE_X_TOOLKIT || defined USE_MOTIF)
252 static int x_dispatch_event (XEvent *, Display *);
253 #endif
254 /* Don't declare this _Noreturn because we want no
255 interference with debugging failing X calls. */
256 static void x_connection_closed (Display *, const char *);
257 static void x_wm_set_window_state (struct frame *, int);
258 static void x_wm_set_icon_pixmap (struct frame *, ptrdiff_t);
259 static void x_initialize (void);
260
261
262 /* Flush display of frame F. */
263
264 static void
265 x_flush (struct frame *f)
266 {
267 eassert (f && FRAME_X_P (f));
268 /* Don't call XFlush when it is not safe to redisplay; the X
269 connection may be broken. */
270 if (!NILP (Vinhibit_redisplay))
271 return;
272
273 block_input ();
274 XFlush (FRAME_X_DISPLAY (f));
275 unblock_input ();
276 }
277
278
279 /* Remove calls to XFlush by defining XFlush to an empty replacement.
280 Calls to XFlush should be unnecessary because the X output buffer
281 is flushed automatically as needed by calls to XPending,
282 XNextEvent, or XWindowEvent according to the XFlush man page.
283 XTread_socket calls XPending. Removing XFlush improves
284 performance. */
285
286 #define XFlush(DISPLAY) (void) 0
287
288 \f
289 /***********************************************************************
290 Debugging
291 ***********************************************************************/
292
293 #if 0
294
295 /* This is a function useful for recording debugging information about
296 the sequence of occurrences in this file. */
297
298 struct record
299 {
300 char *locus;
301 int type;
302 };
303
304 struct record event_record[100];
305
306 int event_record_index;
307
308 void
309 record_event (char *locus, int type)
310 {
311 if (event_record_index == sizeof (event_record) / sizeof (struct record))
312 event_record_index = 0;
313
314 event_record[event_record_index].locus = locus;
315 event_record[event_record_index].type = type;
316 event_record_index++;
317 }
318
319 #endif /* 0 */
320
321
322 \f
323 /* Return the struct x_display_info corresponding to DPY. */
324
325 struct x_display_info *
326 x_display_info_for_display (Display *dpy)
327 {
328 struct x_display_info *dpyinfo;
329
330 for (dpyinfo = x_display_list; dpyinfo; dpyinfo = dpyinfo->next)
331 if (dpyinfo->display == dpy)
332 return dpyinfo;
333
334 return 0;
335 }
336
337 static Window
338 x_find_topmost_parent (struct frame *f)
339 {
340 struct x_output *x = f->output_data.x;
341 Window win = None, wi = x->parent_desc;
342 Display *dpy = FRAME_X_DISPLAY (f);
343
344 while (wi != FRAME_DISPLAY_INFO (f)->root_window)
345 {
346 Window root;
347 Window *children;
348 unsigned int nchildren;
349
350 win = wi;
351 XQueryTree (dpy, win, &root, &wi, &children, &nchildren);
352 XFree (children);
353 }
354
355 return win;
356 }
357
358 #define OPAQUE 0xffffffff
359
360 void
361 x_set_frame_alpha (struct frame *f)
362 {
363 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
364 Display *dpy = FRAME_X_DISPLAY (f);
365 Window win = FRAME_OUTER_WINDOW (f);
366 double alpha = 1.0;
367 double alpha_min = 1.0;
368 unsigned long opac;
369 Window parent;
370
371 if (dpyinfo->x_highlight_frame == f)
372 alpha = f->alpha[0];
373 else
374 alpha = f->alpha[1];
375
376 if (FLOATP (Vframe_alpha_lower_limit))
377 alpha_min = XFLOAT_DATA (Vframe_alpha_lower_limit);
378 else if (INTEGERP (Vframe_alpha_lower_limit))
379 alpha_min = (XINT (Vframe_alpha_lower_limit)) / 100.0;
380
381 if (alpha < 0.0)
382 return;
383 else if (alpha > 1.0)
384 alpha = 1.0;
385 else if (0.0 <= alpha && alpha < alpha_min && alpha_min <= 1.0)
386 alpha = alpha_min;
387
388 opac = alpha * OPAQUE;
389
390 x_catch_errors (dpy);
391
392 /* If there is a parent from the window manager, put the property there
393 also, to work around broken window managers that fail to do that.
394 Do this unconditionally as this function is called on reparent when
395 alpha has not changed on the frame. */
396
397 parent = x_find_topmost_parent (f);
398 if (parent != None)
399 XChangeProperty (dpy, parent, dpyinfo->Xatom_net_wm_window_opacity,
400 XA_CARDINAL, 32, PropModeReplace,
401 (unsigned char *) &opac, 1L);
402
403 /* return unless necessary */
404 {
405 unsigned char *data;
406 Atom actual;
407 int rc, format;
408 unsigned long n, left;
409
410 rc = XGetWindowProperty (dpy, win, dpyinfo->Xatom_net_wm_window_opacity,
411 0L, 1L, False, XA_CARDINAL,
412 &actual, &format, &n, &left,
413 &data);
414
415 if (rc == Success && actual != None)
416 {
417 unsigned long value = *(unsigned long *)data;
418 XFree (data);
419 if (value == opac)
420 {
421 x_uncatch_errors ();
422 return;
423 }
424 }
425 }
426
427 XChangeProperty (dpy, win, dpyinfo->Xatom_net_wm_window_opacity,
428 XA_CARDINAL, 32, PropModeReplace,
429 (unsigned char *) &opac, 1L);
430 x_uncatch_errors ();
431 }
432
433 int
434 x_display_pixel_height (struct x_display_info *dpyinfo)
435 {
436 return HeightOfScreen (dpyinfo->screen);
437 }
438
439 int
440 x_display_pixel_width (struct x_display_info *dpyinfo)
441 {
442 return WidthOfScreen (dpyinfo->screen);
443 }
444
445 \f
446 /***********************************************************************
447 Starting and ending an update
448 ***********************************************************************/
449
450 /* Start an update of frame F. This function is installed as a hook
451 for update_begin, i.e. it is called when update_begin is called.
452 This function is called prior to calls to x_update_window_begin for
453 each window being updated. Currently, there is nothing to do here
454 because all interesting stuff is done on a window basis. */
455
456 static void
457 x_update_begin (struct frame *f)
458 {
459 /* Nothing to do. */
460 }
461
462
463 /* Start update of window W. */
464
465 static void
466 x_update_window_begin (struct window *w)
467 {
468 struct frame *f = XFRAME (WINDOW_FRAME (w));
469 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
470
471 w->output_cursor = w->cursor;
472
473 block_input ();
474
475 if (f == hlinfo->mouse_face_mouse_frame)
476 {
477 /* Don't do highlighting for mouse motion during the update. */
478 hlinfo->mouse_face_defer = 1;
479
480 /* If F needs to be redrawn, simply forget about any prior mouse
481 highlighting. */
482 if (FRAME_GARBAGED_P (f))
483 hlinfo->mouse_face_window = Qnil;
484 }
485
486 unblock_input ();
487 }
488
489
490 /* Draw a vertical window border from (x,y0) to (x,y1) */
491
492 static void
493 x_draw_vertical_window_border (struct window *w, int x, int y0, int y1)
494 {
495 struct frame *f = XFRAME (WINDOW_FRAME (w));
496 struct face *face;
497
498 face = FACE_FROM_ID (f, VERTICAL_BORDER_FACE_ID);
499 if (face)
500 XSetForeground (FRAME_X_DISPLAY (f), f->output_data.x->normal_gc,
501 face->foreground);
502
503 XDrawLine (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
504 f->output_data.x->normal_gc, x, y0, x, y1);
505 }
506
507 /* Draw a window divider from (x0,y0) to (x1,y1) */
508
509 static void
510 x_draw_window_divider (struct window *w, int x0, int x1, int y0, int y1)
511 {
512 struct frame *f = XFRAME (WINDOW_FRAME (w));
513 struct face *face = FACE_FROM_ID (f, WINDOW_DIVIDER_FACE_ID);
514 struct face *face_first = FACE_FROM_ID (f, WINDOW_DIVIDER_FIRST_PIXEL_FACE_ID);
515 struct face *face_last = FACE_FROM_ID (f, WINDOW_DIVIDER_LAST_PIXEL_FACE_ID);
516 unsigned long color = face ? face->foreground : FRAME_FOREGROUND_PIXEL (f);
517 unsigned long color_first = (face_first
518 ? face_first->foreground
519 : FRAME_FOREGROUND_PIXEL (f));
520 unsigned long color_last = (face_last
521 ? face_last->foreground
522 : FRAME_FOREGROUND_PIXEL (f));
523 Display *display = FRAME_X_DISPLAY (f);
524 Window window = FRAME_X_WINDOW (f);
525
526 if (y1 - y0 > x1 - x0 && x1 - x0 > 2)
527 /* Vertical. */
528 {
529 XSetForeground (display, f->output_data.x->normal_gc, color_first);
530 XFillRectangle (display, window, f->output_data.x->normal_gc,
531 x0, y0, 1, y1 - y0);
532 XSetForeground (display, f->output_data.x->normal_gc, color);
533 XFillRectangle (display, window, f->output_data.x->normal_gc,
534 x0 + 1, y0, x1 - x0 - 2, y1 - y0);
535 XSetForeground (display, f->output_data.x->normal_gc, color_last);
536 XFillRectangle (display, window, f->output_data.x->normal_gc,
537 x1 - 1, y0, 1, y1 - y0);
538 }
539 else if (x1 - x0 > y1 - y0 && y1 - y0 > 3)
540 /* Horizontal. */
541 {
542 XSetForeground (display, f->output_data.x->normal_gc, color_first);
543 XFillRectangle (display, window, f->output_data.x->normal_gc,
544 x0, y0, x1 - x0, 1);
545 XSetForeground (display, f->output_data.x->normal_gc, color);
546 XFillRectangle (display, window, f->output_data.x->normal_gc,
547 x0, y0 + 1, x1 - x0, y1 - y0 - 2);
548 XSetForeground (display, f->output_data.x->normal_gc, color_last);
549 XFillRectangle (display, window, f->output_data.x->normal_gc,
550 x0, y1 - 1, x1 - x0, 1);
551 }
552 else
553 {
554 XSetForeground (display, f->output_data.x->normal_gc, color);
555 XFillRectangle (display, window, f->output_data.x->normal_gc,
556 x0, y0, x1 - x0, y1 - y0);
557 }
558 }
559
560 /* End update of window W.
561
562 Draw vertical borders between horizontally adjacent windows, and
563 display W's cursor if CURSOR_ON_P is non-zero.
564
565 MOUSE_FACE_OVERWRITTEN_P non-zero means that some row containing
566 glyphs in mouse-face were overwritten. In that case we have to
567 make sure that the mouse-highlight is properly redrawn.
568
569 W may be a menu bar pseudo-window in case we don't have X toolkit
570 support. Such windows don't have a cursor, so don't display it
571 here. */
572
573 static void
574 x_update_window_end (struct window *w, bool cursor_on_p,
575 bool mouse_face_overwritten_p)
576 {
577 if (!w->pseudo_window_p)
578 {
579 block_input ();
580
581 if (cursor_on_p)
582 display_and_set_cursor (w, 1,
583 w->output_cursor.hpos, w->output_cursor.vpos,
584 w->output_cursor.x, w->output_cursor.y);
585
586 if (draw_window_fringes (w, 1))
587 {
588 if (WINDOW_RIGHT_DIVIDER_WIDTH (w))
589 x_draw_right_divider (w);
590 else
591 x_draw_vertical_border (w);
592 }
593
594 unblock_input ();
595 }
596
597 /* If a row with mouse-face was overwritten, arrange for
598 XTframe_up_to_date to redisplay the mouse highlight. */
599 if (mouse_face_overwritten_p)
600 {
601 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (XFRAME (w->frame));
602
603 hlinfo->mouse_face_beg_row = hlinfo->mouse_face_beg_col = -1;
604 hlinfo->mouse_face_end_row = hlinfo->mouse_face_end_col = -1;
605 hlinfo->mouse_face_window = Qnil;
606 }
607 }
608
609
610 /* End update of frame F. This function is installed as a hook in
611 update_end. */
612
613 static void
614 x_update_end (struct frame *f)
615 {
616 /* Mouse highlight may be displayed again. */
617 MOUSE_HL_INFO (f)->mouse_face_defer = 0;
618
619 #ifndef XFlush
620 block_input ();
621 XFlush (FRAME_X_DISPLAY (f));
622 unblock_input ();
623 #endif
624 }
625
626
627 /* This function is called from various places in xdisp.c
628 whenever a complete update has been performed. */
629
630 static void
631 XTframe_up_to_date (struct frame *f)
632 {
633 if (FRAME_X_P (f))
634 FRAME_MOUSE_UPDATE (f);
635 }
636
637
638 /* Clear under internal border if any for non-toolkit builds. */
639
640
641 #if !defined USE_X_TOOLKIT && !defined USE_GTK
642 void
643 x_clear_under_internal_border (struct frame *f)
644 {
645 if (FRAME_INTERNAL_BORDER_WIDTH (f) > 0)
646 {
647 Display *display = FRAME_X_DISPLAY (f);
648 Window window = FRAME_X_WINDOW (f);
649 int border = FRAME_INTERNAL_BORDER_WIDTH (f);
650 int width = FRAME_PIXEL_WIDTH (f);
651 int height = FRAME_PIXEL_HEIGHT (f);
652 int margin = FRAME_TOP_MARGIN_HEIGHT (f);
653
654 block_input ();
655 x_clear_area (display, window, 0, 0, border, height);
656 x_clear_area (display, window, 0, margin, width, border);
657 x_clear_area (display, window, width - border, 0, border, height);
658 x_clear_area (display, window, 0, height - border, width, border);
659 unblock_input ();
660 }
661 }
662 #endif
663
664 /* Draw truncation mark bitmaps, continuation mark bitmaps, overlay
665 arrow bitmaps, or clear the fringes if no bitmaps are required
666 before DESIRED_ROW is made current. This function is called from
667 update_window_line only if it is known that there are differences
668 between bitmaps to be drawn between current row and DESIRED_ROW. */
669
670 static void
671 x_after_update_window_line (struct window *w, struct glyph_row *desired_row)
672 {
673 eassert (w);
674
675 if (!desired_row->mode_line_p && !w->pseudo_window_p)
676 desired_row->redraw_fringe_bitmaps_p = 1;
677
678 #ifdef USE_X_TOOLKIT
679 /* When a window has disappeared, make sure that no rest of
680 full-width rows stays visible in the internal border. Could
681 check here if updated window is the leftmost/rightmost window,
682 but I guess it's not worth doing since vertically split windows
683 are almost never used, internal border is rarely set, and the
684 overhead is very small. */
685 {
686 struct frame *f;
687 int width, height;
688
689 if (windows_or_buffers_changed
690 && desired_row->full_width_p
691 && (f = XFRAME (w->frame),
692 width = FRAME_INTERNAL_BORDER_WIDTH (f),
693 width != 0)
694 && (height = desired_row->visible_height,
695 height > 0))
696 {
697 int y = WINDOW_TO_FRAME_PIXEL_Y (w, max (0, desired_row->y));
698
699 block_input ();
700 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
701 0, y, width, height);
702 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
703 FRAME_PIXEL_WIDTH (f) - width,
704 y, width, height);
705 unblock_input ();
706 }
707 }
708 #endif
709 }
710
711 static void
712 x_draw_fringe_bitmap (struct window *w, struct glyph_row *row, struct draw_fringe_bitmap_params *p)
713 {
714 struct frame *f = XFRAME (WINDOW_FRAME (w));
715 Display *display = FRAME_X_DISPLAY (f);
716 Window window = FRAME_X_WINDOW (f);
717 GC gc = f->output_data.x->normal_gc;
718 struct face *face = p->face;
719
720 /* Must clip because of partially visible lines. */
721 x_clip_to_row (w, row, ANY_AREA, gc);
722
723 if (p->bx >= 0 && !p->overlay_p)
724 {
725 /* In case the same realized face is used for fringes and
726 for something displayed in the text (e.g. face `region' on
727 mono-displays, the fill style may have been changed to
728 FillSolid in x_draw_glyph_string_background. */
729 if (face->stipple)
730 XSetFillStyle (display, face->gc, FillOpaqueStippled);
731 else
732 XSetForeground (display, face->gc, face->background);
733
734 XFillRectangle (display, window, face->gc,
735 p->bx, p->by, p->nx, p->ny);
736
737 if (!face->stipple)
738 XSetForeground (display, face->gc, face->foreground);
739 }
740
741 if (p->which)
742 {
743 char *bits;
744 Pixmap pixmap, clipmask = (Pixmap) 0;
745 int depth = DefaultDepthOfScreen (FRAME_X_SCREEN (f));
746 XGCValues gcv;
747
748 if (p->wd > 8)
749 bits = (char *) (p->bits + p->dh);
750 else
751 bits = (char *) p->bits + p->dh;
752
753 /* Draw the bitmap. I believe these small pixmaps can be cached
754 by the server. */
755 pixmap = XCreatePixmapFromBitmapData (display, window, bits, p->wd, p->h,
756 (p->cursor_p
757 ? (p->overlay_p ? face->background
758 : f->output_data.x->cursor_pixel)
759 : face->foreground),
760 face->background, depth);
761
762 if (p->overlay_p)
763 {
764 clipmask = XCreatePixmapFromBitmapData (display,
765 FRAME_DISPLAY_INFO (f)->root_window,
766 bits, p->wd, p->h,
767 1, 0, 1);
768 gcv.clip_mask = clipmask;
769 gcv.clip_x_origin = p->x;
770 gcv.clip_y_origin = p->y;
771 XChangeGC (display, gc, GCClipMask | GCClipXOrigin | GCClipYOrigin, &gcv);
772 }
773
774 XCopyArea (display, pixmap, window, gc, 0, 0,
775 p->wd, p->h, p->x, p->y);
776 XFreePixmap (display, pixmap);
777
778 if (p->overlay_p)
779 {
780 gcv.clip_mask = (Pixmap) 0;
781 XChangeGC (display, gc, GCClipMask, &gcv);
782 XFreePixmap (display, clipmask);
783 }
784 }
785
786 XSetClipMask (display, gc, None);
787 }
788
789 /***********************************************************************
790 Glyph display
791 ***********************************************************************/
792
793
794
795 static void x_set_glyph_string_clipping (struct glyph_string *);
796 static void x_set_glyph_string_gc (struct glyph_string *);
797 static void x_draw_glyph_string_foreground (struct glyph_string *);
798 static void x_draw_composite_glyph_string_foreground (struct glyph_string *);
799 static void x_draw_glyph_string_box (struct glyph_string *);
800 static void x_draw_glyph_string (struct glyph_string *);
801 static _Noreturn void x_delete_glyphs (struct frame *, int);
802 static void x_compute_glyph_string_overhangs (struct glyph_string *);
803 static void x_set_cursor_gc (struct glyph_string *);
804 static void x_set_mode_line_face_gc (struct glyph_string *);
805 static void x_set_mouse_face_gc (struct glyph_string *);
806 static bool x_alloc_lighter_color (struct frame *, Display *, Colormap,
807 unsigned long *, double, int);
808 static void x_setup_relief_color (struct frame *, struct relief *,
809 double, int, unsigned long);
810 static void x_setup_relief_colors (struct glyph_string *);
811 static void x_draw_image_glyph_string (struct glyph_string *);
812 static void x_draw_image_relief (struct glyph_string *);
813 static void x_draw_image_foreground (struct glyph_string *);
814 static void x_draw_image_foreground_1 (struct glyph_string *, Pixmap);
815 static void x_clear_glyph_string_rect (struct glyph_string *, int,
816 int, int, int);
817 static void x_draw_relief_rect (struct frame *, int, int, int, int,
818 int, int, int, int, int, int,
819 XRectangle *);
820 static void x_draw_box_rect (struct glyph_string *, int, int, int, int,
821 int, int, int, XRectangle *);
822 static void x_scroll_bar_clear (struct frame *);
823
824 #ifdef GLYPH_DEBUG
825 static void x_check_font (struct frame *, struct font *);
826 #endif
827
828
829 /* Set S->gc to a suitable GC for drawing glyph string S in cursor
830 face. */
831
832 static void
833 x_set_cursor_gc (struct glyph_string *s)
834 {
835 if (s->font == FRAME_FONT (s->f)
836 && s->face->background == FRAME_BACKGROUND_PIXEL (s->f)
837 && s->face->foreground == FRAME_FOREGROUND_PIXEL (s->f)
838 && !s->cmp)
839 s->gc = s->f->output_data.x->cursor_gc;
840 else
841 {
842 /* Cursor on non-default face: must merge. */
843 XGCValues xgcv;
844 unsigned long mask;
845
846 xgcv.background = s->f->output_data.x->cursor_pixel;
847 xgcv.foreground = s->face->background;
848
849 /* If the glyph would be invisible, try a different foreground. */
850 if (xgcv.foreground == xgcv.background)
851 xgcv.foreground = s->face->foreground;
852 if (xgcv.foreground == xgcv.background)
853 xgcv.foreground = s->f->output_data.x->cursor_foreground_pixel;
854 if (xgcv.foreground == xgcv.background)
855 xgcv.foreground = s->face->foreground;
856
857 /* Make sure the cursor is distinct from text in this face. */
858 if (xgcv.background == s->face->background
859 && xgcv.foreground == s->face->foreground)
860 {
861 xgcv.background = s->face->foreground;
862 xgcv.foreground = s->face->background;
863 }
864
865 IF_DEBUG (x_check_font (s->f, s->font));
866 xgcv.graphics_exposures = False;
867 mask = GCForeground | GCBackground | GCGraphicsExposures;
868
869 if (FRAME_DISPLAY_INFO (s->f)->scratch_cursor_gc)
870 XChangeGC (s->display, FRAME_DISPLAY_INFO (s->f)->scratch_cursor_gc,
871 mask, &xgcv);
872 else
873 FRAME_DISPLAY_INFO (s->f)->scratch_cursor_gc
874 = XCreateGC (s->display, s->window, mask, &xgcv);
875
876 s->gc = FRAME_DISPLAY_INFO (s->f)->scratch_cursor_gc;
877 }
878 }
879
880
881 /* Set up S->gc of glyph string S for drawing text in mouse face. */
882
883 static void
884 x_set_mouse_face_gc (struct glyph_string *s)
885 {
886 int face_id;
887 struct face *face;
888
889 /* What face has to be used last for the mouse face? */
890 face_id = MOUSE_HL_INFO (s->f)->mouse_face_face_id;
891 face = FACE_FROM_ID (s->f, face_id);
892 if (face == NULL)
893 face = FACE_FROM_ID (s->f, MOUSE_FACE_ID);
894
895 if (s->first_glyph->type == CHAR_GLYPH)
896 face_id = FACE_FOR_CHAR (s->f, face, s->first_glyph->u.ch, -1, Qnil);
897 else
898 face_id = FACE_FOR_CHAR (s->f, face, 0, -1, Qnil);
899 s->face = FACE_FROM_ID (s->f, face_id);
900 PREPARE_FACE_FOR_DISPLAY (s->f, s->face);
901
902 if (s->font == s->face->font)
903 s->gc = s->face->gc;
904 else
905 {
906 /* Otherwise construct scratch_cursor_gc with values from FACE
907 except for FONT. */
908 XGCValues xgcv;
909 unsigned long mask;
910
911 xgcv.background = s->face->background;
912 xgcv.foreground = s->face->foreground;
913 xgcv.graphics_exposures = False;
914 mask = GCForeground | GCBackground | GCGraphicsExposures;
915
916 if (FRAME_DISPLAY_INFO (s->f)->scratch_cursor_gc)
917 XChangeGC (s->display, FRAME_DISPLAY_INFO (s->f)->scratch_cursor_gc,
918 mask, &xgcv);
919 else
920 FRAME_DISPLAY_INFO (s->f)->scratch_cursor_gc
921 = XCreateGC (s->display, s->window, mask, &xgcv);
922
923 s->gc = FRAME_DISPLAY_INFO (s->f)->scratch_cursor_gc;
924
925 }
926 eassert (s->gc != 0);
927 }
928
929
930 /* Set S->gc of glyph string S to a GC suitable for drawing a mode line.
931 Faces to use in the mode line have already been computed when the
932 matrix was built, so there isn't much to do, here. */
933
934 static void
935 x_set_mode_line_face_gc (struct glyph_string *s)
936 {
937 s->gc = s->face->gc;
938 }
939
940
941 /* Set S->gc of glyph string S for drawing that glyph string. Set
942 S->stippled_p to a non-zero value if the face of S has a stipple
943 pattern. */
944
945 static void
946 x_set_glyph_string_gc (struct glyph_string *s)
947 {
948 PREPARE_FACE_FOR_DISPLAY (s->f, s->face);
949
950 if (s->hl == DRAW_NORMAL_TEXT)
951 {
952 s->gc = s->face->gc;
953 s->stippled_p = s->face->stipple != 0;
954 }
955 else if (s->hl == DRAW_INVERSE_VIDEO)
956 {
957 x_set_mode_line_face_gc (s);
958 s->stippled_p = s->face->stipple != 0;
959 }
960 else if (s->hl == DRAW_CURSOR)
961 {
962 x_set_cursor_gc (s);
963 s->stippled_p = 0;
964 }
965 else if (s->hl == DRAW_MOUSE_FACE)
966 {
967 x_set_mouse_face_gc (s);
968 s->stippled_p = s->face->stipple != 0;
969 }
970 else if (s->hl == DRAW_IMAGE_RAISED
971 || s->hl == DRAW_IMAGE_SUNKEN)
972 {
973 s->gc = s->face->gc;
974 s->stippled_p = s->face->stipple != 0;
975 }
976 else
977 {
978 s->gc = s->face->gc;
979 s->stippled_p = s->face->stipple != 0;
980 }
981
982 /* GC must have been set. */
983 eassert (s->gc != 0);
984 }
985
986
987 /* Set clipping for output of glyph string S. S may be part of a mode
988 line or menu if we don't have X toolkit support. */
989
990 static void
991 x_set_glyph_string_clipping (struct glyph_string *s)
992 {
993 XRectangle *r = s->clip;
994 int n = get_glyph_string_clip_rects (s, r, 2);
995
996 if (n > 0)
997 XSetClipRectangles (s->display, s->gc, 0, 0, r, n, Unsorted);
998 s->num_clips = n;
999 }
1000
1001
1002 /* Set SRC's clipping for output of glyph string DST. This is called
1003 when we are drawing DST's left_overhang or right_overhang only in
1004 the area of SRC. */
1005
1006 static void
1007 x_set_glyph_string_clipping_exactly (struct glyph_string *src, struct glyph_string *dst)
1008 {
1009 XRectangle r;
1010
1011 r.x = src->x;
1012 r.width = src->width;
1013 r.y = src->y;
1014 r.height = src->height;
1015 dst->clip[0] = r;
1016 dst->num_clips = 1;
1017 XSetClipRectangles (dst->display, dst->gc, 0, 0, &r, 1, Unsorted);
1018 }
1019
1020
1021 /* RIF:
1022 Compute left and right overhang of glyph string S. */
1023
1024 static void
1025 x_compute_glyph_string_overhangs (struct glyph_string *s)
1026 {
1027 if (s->cmp == NULL
1028 && (s->first_glyph->type == CHAR_GLYPH
1029 || s->first_glyph->type == COMPOSITE_GLYPH))
1030 {
1031 struct font_metrics metrics;
1032
1033 if (s->first_glyph->type == CHAR_GLYPH)
1034 {
1035 unsigned *code = alloca (sizeof (unsigned) * s->nchars);
1036 struct font *font = s->font;
1037 int i;
1038
1039 for (i = 0; i < s->nchars; i++)
1040 code[i] = (s->char2b[i].byte1 << 8) | s->char2b[i].byte2;
1041 font->driver->text_extents (font, code, s->nchars, &metrics);
1042 }
1043 else
1044 {
1045 Lisp_Object gstring = composition_gstring_from_id (s->cmp_id);
1046
1047 composition_gstring_width (gstring, s->cmp_from, s->cmp_to, &metrics);
1048 }
1049 s->right_overhang = (metrics.rbearing > metrics.width
1050 ? metrics.rbearing - metrics.width : 0);
1051 s->left_overhang = metrics.lbearing < 0 ? - metrics.lbearing : 0;
1052 }
1053 else if (s->cmp)
1054 {
1055 s->right_overhang = s->cmp->rbearing - s->cmp->pixel_width;
1056 s->left_overhang = - s->cmp->lbearing;
1057 }
1058 }
1059
1060
1061 /* Fill rectangle X, Y, W, H with background color of glyph string S. */
1062
1063 static void
1064 x_clear_glyph_string_rect (struct glyph_string *s, int x, int y, int w, int h)
1065 {
1066 XGCValues xgcv;
1067 XGetGCValues (s->display, s->gc, GCForeground | GCBackground, &xgcv);
1068 XSetForeground (s->display, s->gc, xgcv.background);
1069 XFillRectangle (s->display, s->window, s->gc, x, y, w, h);
1070 XSetForeground (s->display, s->gc, xgcv.foreground);
1071 }
1072
1073
1074 /* Draw the background of glyph_string S. If S->background_filled_p
1075 is non-zero don't draw it. FORCE_P non-zero means draw the
1076 background even if it wouldn't be drawn normally. This is used
1077 when a string preceding S draws into the background of S, or S
1078 contains the first component of a composition. */
1079
1080 static void
1081 x_draw_glyph_string_background (struct glyph_string *s, bool force_p)
1082 {
1083 /* Nothing to do if background has already been drawn or if it
1084 shouldn't be drawn in the first place. */
1085 if (!s->background_filled_p)
1086 {
1087 int box_line_width = max (s->face->box_line_width, 0);
1088
1089 if (s->stippled_p)
1090 {
1091 /* Fill background with a stipple pattern. */
1092 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
1093 XFillRectangle (s->display, s->window, s->gc, s->x,
1094 s->y + box_line_width,
1095 s->background_width,
1096 s->height - 2 * box_line_width);
1097 XSetFillStyle (s->display, s->gc, FillSolid);
1098 s->background_filled_p = 1;
1099 }
1100 else if (FONT_HEIGHT (s->font) < s->height - 2 * box_line_width
1101 || s->font_not_found_p
1102 || s->extends_to_end_of_line_p
1103 || force_p)
1104 {
1105 x_clear_glyph_string_rect (s, s->x, s->y + box_line_width,
1106 s->background_width,
1107 s->height - 2 * box_line_width);
1108 s->background_filled_p = 1;
1109 }
1110 }
1111 }
1112
1113
1114 /* Draw the foreground of glyph string S. */
1115
1116 static void
1117 x_draw_glyph_string_foreground (struct glyph_string *s)
1118 {
1119 int i, x;
1120
1121 /* If first glyph of S has a left box line, start drawing the text
1122 of S to the right of that box line. */
1123 if (s->face->box != FACE_NO_BOX
1124 && s->first_glyph->left_box_line_p)
1125 x = s->x + eabs (s->face->box_line_width);
1126 else
1127 x = s->x;
1128
1129 /* Draw characters of S as rectangles if S's font could not be
1130 loaded. */
1131 if (s->font_not_found_p)
1132 {
1133 for (i = 0; i < s->nchars; ++i)
1134 {
1135 struct glyph *g = s->first_glyph + i;
1136 XDrawRectangle (s->display, s->window,
1137 s->gc, x, s->y, g->pixel_width - 1,
1138 s->height - 1);
1139 x += g->pixel_width;
1140 }
1141 }
1142 else
1143 {
1144 struct font *font = s->font;
1145 int boff = font->baseline_offset;
1146 int y;
1147
1148 if (font->vertical_centering)
1149 boff = VCENTER_BASELINE_OFFSET (font, s->f) - boff;
1150
1151 y = s->ybase - boff;
1152 if (s->for_overlaps
1153 || (s->background_filled_p && s->hl != DRAW_CURSOR))
1154 font->driver->draw (s, 0, s->nchars, x, y, 0);
1155 else
1156 font->driver->draw (s, 0, s->nchars, x, y, 1);
1157 if (s->face->overstrike)
1158 font->driver->draw (s, 0, s->nchars, x + 1, y, 0);
1159 }
1160 }
1161
1162 /* Draw the foreground of composite glyph string S. */
1163
1164 static void
1165 x_draw_composite_glyph_string_foreground (struct glyph_string *s)
1166 {
1167 int i, j, x;
1168 struct font *font = s->font;
1169
1170 /* If first glyph of S has a left box line, start drawing the text
1171 of S to the right of that box line. */
1172 if (s->face && s->face->box != FACE_NO_BOX
1173 && s->first_glyph->left_box_line_p)
1174 x = s->x + eabs (s->face->box_line_width);
1175 else
1176 x = s->x;
1177
1178 /* S is a glyph string for a composition. S->cmp_from is the index
1179 of the first character drawn for glyphs of this composition.
1180 S->cmp_from == 0 means we are drawing the very first character of
1181 this composition. */
1182
1183 /* Draw a rectangle for the composition if the font for the very
1184 first character of the composition could not be loaded. */
1185 if (s->font_not_found_p)
1186 {
1187 if (s->cmp_from == 0)
1188 XDrawRectangle (s->display, s->window, s->gc, x, s->y,
1189 s->width - 1, s->height - 1);
1190 }
1191 else if (! s->first_glyph->u.cmp.automatic)
1192 {
1193 int y = s->ybase;
1194
1195 for (i = 0, j = s->cmp_from; i < s->nchars; i++, j++)
1196 /* TAB in a composition means display glyphs with padding
1197 space on the left or right. */
1198 if (COMPOSITION_GLYPH (s->cmp, j) != '\t')
1199 {
1200 int xx = x + s->cmp->offsets[j * 2];
1201 int yy = y - s->cmp->offsets[j * 2 + 1];
1202
1203 font->driver->draw (s, j, j + 1, xx, yy, 0);
1204 if (s->face->overstrike)
1205 font->driver->draw (s, j, j + 1, xx + 1, yy, 0);
1206 }
1207 }
1208 else
1209 {
1210 Lisp_Object gstring = composition_gstring_from_id (s->cmp_id);
1211 Lisp_Object glyph;
1212 int y = s->ybase;
1213 int width = 0;
1214
1215 for (i = j = s->cmp_from; i < s->cmp_to; i++)
1216 {
1217 glyph = LGSTRING_GLYPH (gstring, i);
1218 if (NILP (LGLYPH_ADJUSTMENT (glyph)))
1219 width += LGLYPH_WIDTH (glyph);
1220 else
1221 {
1222 int xoff, yoff, wadjust;
1223
1224 if (j < i)
1225 {
1226 font->driver->draw (s, j, i, x, y, 0);
1227 if (s->face->overstrike)
1228 font->driver->draw (s, j, i, x + 1, y, 0);
1229 x += width;
1230 }
1231 xoff = LGLYPH_XOFF (glyph);
1232 yoff = LGLYPH_YOFF (glyph);
1233 wadjust = LGLYPH_WADJUST (glyph);
1234 font->driver->draw (s, i, i + 1, x + xoff, y + yoff, 0);
1235 if (s->face->overstrike)
1236 font->driver->draw (s, i, i + 1, x + xoff + 1, y + yoff, 0);
1237 x += wadjust;
1238 j = i + 1;
1239 width = 0;
1240 }
1241 }
1242 if (j < i)
1243 {
1244 font->driver->draw (s, j, i, x, y, 0);
1245 if (s->face->overstrike)
1246 font->driver->draw (s, j, i, x + 1, y, 0);
1247 }
1248 }
1249 }
1250
1251
1252 /* Draw the foreground of glyph string S for glyphless characters. */
1253
1254 static void
1255 x_draw_glyphless_glyph_string_foreground (struct glyph_string *s)
1256 {
1257 struct glyph *glyph = s->first_glyph;
1258 XChar2b char2b[8];
1259 int x, i, j;
1260
1261 /* If first glyph of S has a left box line, start drawing the text
1262 of S to the right of that box line. */
1263 if (s->face && s->face->box != FACE_NO_BOX
1264 && s->first_glyph->left_box_line_p)
1265 x = s->x + eabs (s->face->box_line_width);
1266 else
1267 x = s->x;
1268
1269 s->char2b = char2b;
1270
1271 for (i = 0; i < s->nchars; i++, glyph++)
1272 {
1273 char buf[7], *str = NULL;
1274 int len = glyph->u.glyphless.len;
1275
1276 if (glyph->u.glyphless.method == GLYPHLESS_DISPLAY_ACRONYM)
1277 {
1278 if (len > 0
1279 && CHAR_TABLE_P (Vglyphless_char_display)
1280 && (CHAR_TABLE_EXTRA_SLOTS (XCHAR_TABLE (Vglyphless_char_display))
1281 >= 1))
1282 {
1283 Lisp_Object acronym
1284 = (! glyph->u.glyphless.for_no_font
1285 ? CHAR_TABLE_REF (Vglyphless_char_display,
1286 glyph->u.glyphless.ch)
1287 : XCHAR_TABLE (Vglyphless_char_display)->extras[0]);
1288 if (STRINGP (acronym))
1289 str = SSDATA (acronym);
1290 }
1291 }
1292 else if (glyph->u.glyphless.method == GLYPHLESS_DISPLAY_HEX_CODE)
1293 {
1294 sprintf (buf, "%0*X",
1295 glyph->u.glyphless.ch < 0x10000 ? 4 : 6,
1296 glyph->u.glyphless.ch);
1297 str = buf;
1298 }
1299
1300 if (str)
1301 {
1302 int upper_len = (len + 1) / 2;
1303 unsigned code;
1304
1305 /* It is assured that all LEN characters in STR is ASCII. */
1306 for (j = 0; j < len; j++)
1307 {
1308 code = s->font->driver->encode_char (s->font, str[j]);
1309 STORE_XCHAR2B (char2b + j, code >> 8, code & 0xFF);
1310 }
1311 s->font->driver->draw (s, 0, upper_len,
1312 x + glyph->slice.glyphless.upper_xoff,
1313 s->ybase + glyph->slice.glyphless.upper_yoff,
1314 0);
1315 s->font->driver->draw (s, upper_len, len,
1316 x + glyph->slice.glyphless.lower_xoff,
1317 s->ybase + glyph->slice.glyphless.lower_yoff,
1318 0);
1319 }
1320 if (glyph->u.glyphless.method != GLYPHLESS_DISPLAY_THIN_SPACE)
1321 XDrawRectangle (s->display, s->window, s->gc,
1322 x, s->ybase - glyph->ascent,
1323 glyph->pixel_width - 1,
1324 glyph->ascent + glyph->descent - 1);
1325 x += glyph->pixel_width;
1326 }
1327 }
1328
1329 #ifdef USE_X_TOOLKIT
1330
1331 #ifdef USE_LUCID
1332
1333 /* Return the frame on which widget WIDGET is used.. Abort if frame
1334 cannot be determined. */
1335
1336 static struct frame *
1337 x_frame_of_widget (Widget widget)
1338 {
1339 struct x_display_info *dpyinfo;
1340 Lisp_Object tail, frame;
1341 struct frame *f;
1342
1343 dpyinfo = x_display_info_for_display (XtDisplay (widget));
1344
1345 /* Find the top-level shell of the widget. Note that this function
1346 can be called when the widget is not yet realized, so XtWindow
1347 (widget) == 0. That's the reason we can't simply use
1348 x_any_window_to_frame. */
1349 while (!XtIsTopLevelShell (widget))
1350 widget = XtParent (widget);
1351
1352 /* Look for a frame with that top-level widget. Allocate the color
1353 on that frame to get the right gamma correction value. */
1354 FOR_EACH_FRAME (tail, frame)
1355 {
1356 f = XFRAME (frame);
1357 if (FRAME_X_P (f)
1358 && f->output_data.nothing != 1
1359 && FRAME_DISPLAY_INFO (f) == dpyinfo
1360 && f->output_data.x->widget == widget)
1361 return f;
1362 }
1363 emacs_abort ();
1364 }
1365
1366 /* Allocate a color which is lighter or darker than *PIXEL by FACTOR
1367 or DELTA. Try a color with RGB values multiplied by FACTOR first.
1368 If this produces the same color as PIXEL, try a color where all RGB
1369 values have DELTA added. Return the allocated color in *PIXEL.
1370 DISPLAY is the X display, CMAP is the colormap to operate on.
1371 Value is true if successful. */
1372
1373 bool
1374 x_alloc_lighter_color_for_widget (Widget widget, Display *display, Colormap cmap,
1375 unsigned long *pixel, double factor, int delta)
1376 {
1377 struct frame *f = x_frame_of_widget (widget);
1378 return x_alloc_lighter_color (f, display, cmap, pixel, factor, delta);
1379 }
1380
1381 #endif /* USE_LUCID */
1382
1383
1384 /* Structure specifying which arguments should be passed by Xt to
1385 cvt_string_to_pixel. We want the widget's screen and colormap. */
1386
1387 static XtConvertArgRec cvt_string_to_pixel_args[] =
1388 {
1389 {XtWidgetBaseOffset, (XtPointer) XtOffset (Widget, core.screen),
1390 sizeof (Screen *)},
1391 {XtWidgetBaseOffset, (XtPointer) XtOffset (Widget, core.colormap),
1392 sizeof (Colormap)}
1393 };
1394
1395
1396 /* The address of this variable is returned by
1397 cvt_string_to_pixel. */
1398
1399 static Pixel cvt_string_to_pixel_value;
1400
1401
1402 /* Convert a color name to a pixel color.
1403
1404 DPY is the display we are working on.
1405
1406 ARGS is an array of *NARGS XrmValue structures holding additional
1407 information about the widget for which the conversion takes place.
1408 The contents of this array are determined by the specification
1409 in cvt_string_to_pixel_args.
1410
1411 FROM is a pointer to an XrmValue which points to the color name to
1412 convert. TO is an XrmValue in which to return the pixel color.
1413
1414 CLOSURE_RET is a pointer to user-data, in which we record if
1415 we allocated the color or not.
1416
1417 Value is True if successful, False otherwise. */
1418
1419 static Boolean
1420 cvt_string_to_pixel (Display *dpy, XrmValue *args, Cardinal *nargs,
1421 XrmValue *from, XrmValue *to,
1422 XtPointer *closure_ret)
1423 {
1424 Screen *screen;
1425 Colormap cmap;
1426 Pixel pixel;
1427 String color_name;
1428 XColor color;
1429
1430 if (*nargs != 2)
1431 {
1432 XtAppWarningMsg (XtDisplayToApplicationContext (dpy),
1433 "wrongParameters", "cvt_string_to_pixel",
1434 "XtToolkitError",
1435 "Screen and colormap args required", NULL, NULL);
1436 return False;
1437 }
1438
1439 screen = *(Screen **) args[0].addr;
1440 cmap = *(Colormap *) args[1].addr;
1441 color_name = (String) from->addr;
1442
1443 if (strcmp (color_name, XtDefaultBackground) == 0)
1444 {
1445 *closure_ret = (XtPointer) False;
1446 pixel = WhitePixelOfScreen (screen);
1447 }
1448 else if (strcmp (color_name, XtDefaultForeground) == 0)
1449 {
1450 *closure_ret = (XtPointer) False;
1451 pixel = BlackPixelOfScreen (screen);
1452 }
1453 else if (XParseColor (dpy, cmap, color_name, &color)
1454 && x_alloc_nearest_color_1 (dpy, cmap, &color))
1455 {
1456 pixel = color.pixel;
1457 *closure_ret = (XtPointer) True;
1458 }
1459 else
1460 {
1461 String params[1];
1462 Cardinal nparams = 1;
1463
1464 params[0] = color_name;
1465 XtAppWarningMsg (XtDisplayToApplicationContext (dpy),
1466 "badValue", "cvt_string_to_pixel",
1467 "XtToolkitError", "Invalid color `%s'",
1468 params, &nparams);
1469 return False;
1470 }
1471
1472 if (to->addr != NULL)
1473 {
1474 if (to->size < sizeof (Pixel))
1475 {
1476 to->size = sizeof (Pixel);
1477 return False;
1478 }
1479
1480 *(Pixel *) to->addr = pixel;
1481 }
1482 else
1483 {
1484 cvt_string_to_pixel_value = pixel;
1485 to->addr = (XtPointer) &cvt_string_to_pixel_value;
1486 }
1487
1488 to->size = sizeof (Pixel);
1489 return True;
1490 }
1491
1492
1493 /* Free a pixel color which was previously allocated via
1494 cvt_string_to_pixel. This is registered as the destructor
1495 for this type of resource via XtSetTypeConverter.
1496
1497 APP is the application context in which we work.
1498
1499 TO is a pointer to an XrmValue holding the color to free.
1500 CLOSURE is the value we stored in CLOSURE_RET for this color
1501 in cvt_string_to_pixel.
1502
1503 ARGS and NARGS are like for cvt_string_to_pixel. */
1504
1505 static void
1506 cvt_pixel_dtor (XtAppContext app, XrmValuePtr to, XtPointer closure, XrmValuePtr args,
1507 Cardinal *nargs)
1508 {
1509 if (*nargs != 2)
1510 {
1511 XtAppWarningMsg (app, "wrongParameters", "cvt_pixel_dtor",
1512 "XtToolkitError",
1513 "Screen and colormap arguments required",
1514 NULL, NULL);
1515 }
1516 else if (closure != NULL)
1517 {
1518 /* We did allocate the pixel, so free it. */
1519 Screen *screen = *(Screen **) args[0].addr;
1520 Colormap cmap = *(Colormap *) args[1].addr;
1521 x_free_dpy_colors (DisplayOfScreen (screen), screen, cmap,
1522 (Pixel *) to->addr, 1);
1523 }
1524 }
1525
1526
1527 #endif /* USE_X_TOOLKIT */
1528
1529
1530 /* Value is an array of XColor structures for the contents of the
1531 color map of display DPY. Set *NCELLS to the size of the array.
1532 Note that this probably shouldn't be called for large color maps,
1533 say a 24-bit TrueColor map. */
1534
1535 static const XColor *
1536 x_color_cells (Display *dpy, int *ncells)
1537 {
1538 struct x_display_info *dpyinfo = x_display_info_for_display (dpy);
1539
1540 if (dpyinfo->color_cells == NULL)
1541 {
1542 Screen *screen = dpyinfo->screen;
1543 int ncolor_cells = XDisplayCells (dpy, XScreenNumberOfScreen (screen));
1544 int i;
1545
1546 dpyinfo->color_cells = xnmalloc (ncolor_cells,
1547 sizeof *dpyinfo->color_cells);
1548 dpyinfo->ncolor_cells = ncolor_cells;
1549
1550 for (i = 0; i < ncolor_cells; ++i)
1551 dpyinfo->color_cells[i].pixel = i;
1552
1553 XQueryColors (dpy, dpyinfo->cmap,
1554 dpyinfo->color_cells, ncolor_cells);
1555 }
1556
1557 *ncells = dpyinfo->ncolor_cells;
1558 return dpyinfo->color_cells;
1559 }
1560
1561
1562 /* On frame F, translate pixel colors to RGB values for the NCOLORS
1563 colors in COLORS. Use cached information, if available. */
1564
1565 void
1566 x_query_colors (struct frame *f, XColor *colors, int ncolors)
1567 {
1568 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
1569
1570 if (dpyinfo->color_cells)
1571 {
1572 int i;
1573 for (i = 0; i < ncolors; ++i)
1574 {
1575 unsigned long pixel = colors[i].pixel;
1576 eassert (pixel < dpyinfo->ncolor_cells);
1577 eassert (dpyinfo->color_cells[pixel].pixel == pixel);
1578 colors[i] = dpyinfo->color_cells[pixel];
1579 }
1580 }
1581 else
1582 XQueryColors (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f), colors, ncolors);
1583 }
1584
1585
1586 /* On frame F, translate pixel color to RGB values for the color in
1587 COLOR. Use cached information, if available. */
1588
1589 void
1590 x_query_color (struct frame *f, XColor *color)
1591 {
1592 x_query_colors (f, color, 1);
1593 }
1594
1595
1596 /* Allocate the color COLOR->pixel on DISPLAY, colormap CMAP. If an
1597 exact match can't be allocated, try the nearest color available.
1598 Value is true if successful. Set *COLOR to the color
1599 allocated. */
1600
1601 static bool
1602 x_alloc_nearest_color_1 (Display *dpy, Colormap cmap, XColor *color)
1603 {
1604 bool rc;
1605
1606 rc = XAllocColor (dpy, cmap, color) != 0;
1607 if (rc == 0)
1608 {
1609 /* If we got to this point, the colormap is full, so we're going
1610 to try to get the next closest color. The algorithm used is
1611 a least-squares matching, which is what X uses for closest
1612 color matching with StaticColor visuals. */
1613 int nearest, i;
1614 int max_color_delta = 255;
1615 int max_delta = 3 * max_color_delta;
1616 int nearest_delta = max_delta + 1;
1617 int ncells;
1618 const XColor *cells = x_color_cells (dpy, &ncells);
1619
1620 for (nearest = i = 0; i < ncells; ++i)
1621 {
1622 int dred = (color->red >> 8) - (cells[i].red >> 8);
1623 int dgreen = (color->green >> 8) - (cells[i].green >> 8);
1624 int dblue = (color->blue >> 8) - (cells[i].blue >> 8);
1625 int delta = dred * dred + dgreen * dgreen + dblue * dblue;
1626
1627 if (delta < nearest_delta)
1628 {
1629 nearest = i;
1630 nearest_delta = delta;
1631 }
1632 }
1633
1634 color->red = cells[nearest].red;
1635 color->green = cells[nearest].green;
1636 color->blue = cells[nearest].blue;
1637 rc = XAllocColor (dpy, cmap, color) != 0;
1638 }
1639 else
1640 {
1641 /* If allocation succeeded, and the allocated pixel color is not
1642 equal to a cached pixel color recorded earlier, there was a
1643 change in the colormap, so clear the color cache. */
1644 struct x_display_info *dpyinfo = x_display_info_for_display (dpy);
1645 XColor *cached_color;
1646
1647 if (dpyinfo->color_cells
1648 && (cached_color = &dpyinfo->color_cells[color->pixel],
1649 (cached_color->red != color->red
1650 || cached_color->blue != color->blue
1651 || cached_color->green != color->green)))
1652 {
1653 xfree (dpyinfo->color_cells);
1654 dpyinfo->color_cells = NULL;
1655 dpyinfo->ncolor_cells = 0;
1656 }
1657 }
1658
1659 #ifdef DEBUG_X_COLORS
1660 if (rc)
1661 register_color (color->pixel);
1662 #endif /* DEBUG_X_COLORS */
1663
1664 return rc;
1665 }
1666
1667
1668 /* Allocate the color COLOR->pixel on frame F, colormap CMAP. If an
1669 exact match can't be allocated, try the nearest color available.
1670 Value is true if successful. Set *COLOR to the color
1671 allocated. */
1672
1673 bool
1674 x_alloc_nearest_color (struct frame *f, Colormap cmap, XColor *color)
1675 {
1676 gamma_correct (f, color);
1677 return x_alloc_nearest_color_1 (FRAME_X_DISPLAY (f), cmap, color);
1678 }
1679
1680
1681 /* Allocate color PIXEL on frame F. PIXEL must already be allocated.
1682 It's necessary to do this instead of just using PIXEL directly to
1683 get color reference counts right. */
1684
1685 unsigned long
1686 x_copy_color (struct frame *f, unsigned long pixel)
1687 {
1688 XColor color;
1689
1690 color.pixel = pixel;
1691 block_input ();
1692 x_query_color (f, &color);
1693 XAllocColor (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f), &color);
1694 unblock_input ();
1695 #ifdef DEBUG_X_COLORS
1696 register_color (pixel);
1697 #endif
1698 return color.pixel;
1699 }
1700
1701
1702 /* Brightness beyond which a color won't have its highlight brightness
1703 boosted.
1704
1705 Nominally, highlight colors for `3d' faces are calculated by
1706 brightening an object's color by a constant scale factor, but this
1707 doesn't yield good results for dark colors, so for colors who's
1708 brightness is less than this value (on a scale of 0-65535) have an
1709 use an additional additive factor.
1710
1711 The value here is set so that the default menu-bar/mode-line color
1712 (grey75) will not have its highlights changed at all. */
1713 #define HIGHLIGHT_COLOR_DARK_BOOST_LIMIT 48000
1714
1715
1716 /* Allocate a color which is lighter or darker than *PIXEL by FACTOR
1717 or DELTA. Try a color with RGB values multiplied by FACTOR first.
1718 If this produces the same color as PIXEL, try a color where all RGB
1719 values have DELTA added. Return the allocated color in *PIXEL.
1720 DISPLAY is the X display, CMAP is the colormap to operate on.
1721 Value is non-zero if successful. */
1722
1723 static bool
1724 x_alloc_lighter_color (struct frame *f, Display *display, Colormap cmap,
1725 unsigned long *pixel, double factor, int delta)
1726 {
1727 XColor color, new;
1728 long bright;
1729 bool success_p;
1730
1731 /* Get RGB color values. */
1732 color.pixel = *pixel;
1733 x_query_color (f, &color);
1734
1735 /* Change RGB values by specified FACTOR. Avoid overflow! */
1736 eassert (factor >= 0);
1737 new.red = min (0xffff, factor * color.red);
1738 new.green = min (0xffff, factor * color.green);
1739 new.blue = min (0xffff, factor * color.blue);
1740
1741 /* Calculate brightness of COLOR. */
1742 bright = (2 * color.red + 3 * color.green + color.blue) / 6;
1743
1744 /* We only boost colors that are darker than
1745 HIGHLIGHT_COLOR_DARK_BOOST_LIMIT. */
1746 if (bright < HIGHLIGHT_COLOR_DARK_BOOST_LIMIT)
1747 /* Make an additive adjustment to NEW, because it's dark enough so
1748 that scaling by FACTOR alone isn't enough. */
1749 {
1750 /* How far below the limit this color is (0 - 1, 1 being darker). */
1751 double dimness = 1 - (double)bright / HIGHLIGHT_COLOR_DARK_BOOST_LIMIT;
1752 /* The additive adjustment. */
1753 int min_delta = delta * dimness * factor / 2;
1754
1755 if (factor < 1)
1756 {
1757 new.red = max (0, new.red - min_delta);
1758 new.green = max (0, new.green - min_delta);
1759 new.blue = max (0, new.blue - min_delta);
1760 }
1761 else
1762 {
1763 new.red = min (0xffff, min_delta + new.red);
1764 new.green = min (0xffff, min_delta + new.green);
1765 new.blue = min (0xffff, min_delta + new.blue);
1766 }
1767 }
1768
1769 /* Try to allocate the color. */
1770 success_p = x_alloc_nearest_color (f, cmap, &new);
1771 if (success_p)
1772 {
1773 if (new.pixel == *pixel)
1774 {
1775 /* If we end up with the same color as before, try adding
1776 delta to the RGB values. */
1777 x_free_colors (f, &new.pixel, 1);
1778
1779 new.red = min (0xffff, delta + color.red);
1780 new.green = min (0xffff, delta + color.green);
1781 new.blue = min (0xffff, delta + color.blue);
1782 success_p = x_alloc_nearest_color (f, cmap, &new);
1783 }
1784 else
1785 success_p = 1;
1786 *pixel = new.pixel;
1787 }
1788
1789 return success_p;
1790 }
1791
1792
1793 /* Set up the foreground color for drawing relief lines of glyph
1794 string S. RELIEF is a pointer to a struct relief containing the GC
1795 with which lines will be drawn. Use a color that is FACTOR or
1796 DELTA lighter or darker than the relief's background which is found
1797 in S->f->output_data.x->relief_background. If such a color cannot
1798 be allocated, use DEFAULT_PIXEL, instead. */
1799
1800 static void
1801 x_setup_relief_color (struct frame *f, struct relief *relief, double factor,
1802 int delta, unsigned long default_pixel)
1803 {
1804 XGCValues xgcv;
1805 struct x_output *di = f->output_data.x;
1806 unsigned long mask = GCForeground | GCLineWidth | GCGraphicsExposures;
1807 unsigned long pixel;
1808 unsigned long background = di->relief_background;
1809 Colormap cmap = FRAME_X_COLORMAP (f);
1810 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
1811 Display *dpy = FRAME_X_DISPLAY (f);
1812
1813 xgcv.graphics_exposures = False;
1814 xgcv.line_width = 1;
1815
1816 /* Free previously allocated color. The color cell will be reused
1817 when it has been freed as many times as it was allocated, so this
1818 doesn't affect faces using the same colors. */
1819 if (relief->gc && relief->pixel != -1)
1820 {
1821 x_free_colors (f, &relief->pixel, 1);
1822 relief->pixel = -1;
1823 }
1824
1825 /* Allocate new color. */
1826 xgcv.foreground = default_pixel;
1827 pixel = background;
1828 if (dpyinfo->n_planes != 1
1829 && x_alloc_lighter_color (f, dpy, cmap, &pixel, factor, delta))
1830 xgcv.foreground = relief->pixel = pixel;
1831
1832 if (relief->gc == 0)
1833 {
1834 xgcv.stipple = dpyinfo->gray;
1835 mask |= GCStipple;
1836 relief->gc = XCreateGC (dpy, FRAME_X_WINDOW (f), mask, &xgcv);
1837 }
1838 else
1839 XChangeGC (dpy, relief->gc, mask, &xgcv);
1840 }
1841
1842
1843 /* Set up colors for the relief lines around glyph string S. */
1844
1845 static void
1846 x_setup_relief_colors (struct glyph_string *s)
1847 {
1848 struct x_output *di = s->f->output_data.x;
1849 unsigned long color;
1850
1851 if (s->face->use_box_color_for_shadows_p)
1852 color = s->face->box_color;
1853 else if (s->first_glyph->type == IMAGE_GLYPH
1854 && s->img->pixmap
1855 && !IMAGE_BACKGROUND_TRANSPARENT (s->img, s->f, 0))
1856 color = IMAGE_BACKGROUND (s->img, s->f, 0);
1857 else
1858 {
1859 XGCValues xgcv;
1860
1861 /* Get the background color of the face. */
1862 XGetGCValues (s->display, s->gc, GCBackground, &xgcv);
1863 color = xgcv.background;
1864 }
1865
1866 if (di->white_relief.gc == 0
1867 || color != di->relief_background)
1868 {
1869 di->relief_background = color;
1870 x_setup_relief_color (s->f, &di->white_relief, 1.2, 0x8000,
1871 WHITE_PIX_DEFAULT (s->f));
1872 x_setup_relief_color (s->f, &di->black_relief, 0.6, 0x4000,
1873 BLACK_PIX_DEFAULT (s->f));
1874 }
1875 }
1876
1877
1878 /* Draw a relief on frame F inside the rectangle given by LEFT_X,
1879 TOP_Y, RIGHT_X, and BOTTOM_Y. WIDTH is the thickness of the relief
1880 to draw, it must be >= 0. RAISED_P non-zero means draw a raised
1881 relief. LEFT_P non-zero means draw a relief on the left side of
1882 the rectangle. RIGHT_P non-zero means draw a relief on the right
1883 side of the rectangle. CLIP_RECT is the clipping rectangle to use
1884 when drawing. */
1885
1886 static void
1887 x_draw_relief_rect (struct frame *f,
1888 int left_x, int top_y, int right_x, int bottom_y, int width,
1889 int raised_p, int top_p, int bot_p, int left_p, int right_p,
1890 XRectangle *clip_rect)
1891 {
1892 Display *dpy = FRAME_X_DISPLAY (f);
1893 Window window = FRAME_X_WINDOW (f);
1894 int i;
1895 GC gc;
1896
1897 if (raised_p)
1898 gc = f->output_data.x->white_relief.gc;
1899 else
1900 gc = f->output_data.x->black_relief.gc;
1901 XSetClipRectangles (dpy, gc, 0, 0, clip_rect, 1, Unsorted);
1902
1903 /* This code is more complicated than it has to be, because of two
1904 minor hacks to make the boxes look nicer: (i) if width > 1, draw
1905 the outermost line using the black relief. (ii) Omit the four
1906 corner pixels. */
1907
1908 /* Top. */
1909 if (top_p)
1910 {
1911 if (width == 1)
1912 XDrawLine (dpy, window, gc,
1913 left_x + (left_p ? 1 : 0), top_y,
1914 right_x + (right_p ? 0 : 1), top_y);
1915
1916 for (i = 1; i < width; ++i)
1917 XDrawLine (dpy, window, gc,
1918 left_x + i * left_p, top_y + i,
1919 right_x + 1 - i * right_p, top_y + i);
1920 }
1921
1922 /* Left. */
1923 if (left_p)
1924 {
1925 if (width == 1)
1926 XDrawLine (dpy, window, gc, left_x, top_y + 1, left_x, bottom_y);
1927
1928 XClearArea (dpy, window, left_x, top_y, 1, 1, False);
1929 XClearArea (dpy, window, left_x, bottom_y, 1, 1, False);
1930
1931 for (i = (width > 1 ? 1 : 0); i < width; ++i)
1932 XDrawLine (dpy, window, gc,
1933 left_x + i, top_y + (i + 1) * top_p,
1934 left_x + i, bottom_y + 1 - (i + 1) * bot_p);
1935 }
1936
1937 XSetClipMask (dpy, gc, None);
1938 if (raised_p)
1939 gc = f->output_data.x->black_relief.gc;
1940 else
1941 gc = f->output_data.x->white_relief.gc;
1942 XSetClipRectangles (dpy, gc, 0, 0, clip_rect, 1, Unsorted);
1943
1944 if (width > 1)
1945 {
1946 /* Outermost top line. */
1947 if (top_p)
1948 XDrawLine (dpy, window, gc,
1949 left_x + (left_p ? 1 : 0), top_y,
1950 right_x + (right_p ? 0 : 1), top_y);
1951
1952 /* Outermost left line. */
1953 if (left_p)
1954 XDrawLine (dpy, window, gc, left_x, top_y + 1, left_x, bottom_y);
1955 }
1956
1957 /* Bottom. */
1958 if (bot_p)
1959 {
1960 XDrawLine (dpy, window, gc,
1961 left_x + (left_p ? 1 : 0), bottom_y,
1962 right_x + (right_p ? 0 : 1), bottom_y);
1963 for (i = 1; i < width; ++i)
1964 XDrawLine (dpy, window, gc,
1965 left_x + i * left_p, bottom_y - i,
1966 right_x + 1 - i * right_p, bottom_y - i);
1967 }
1968
1969 /* Right. */
1970 if (right_p)
1971 {
1972 XClearArea (dpy, window, right_x, top_y, 1, 1, False);
1973 XClearArea (dpy, window, right_x, bottom_y, 1, 1, False);
1974 for (i = 0; i < width; ++i)
1975 XDrawLine (dpy, window, gc,
1976 right_x - i, top_y + (i + 1) * top_p,
1977 right_x - i, bottom_y + 1 - (i + 1) * bot_p);
1978 }
1979
1980 XSetClipMask (dpy, gc, None);
1981 }
1982
1983
1984 /* Draw a box on frame F inside the rectangle given by LEFT_X, TOP_Y,
1985 RIGHT_X, and BOTTOM_Y. WIDTH is the thickness of the lines to
1986 draw, it must be >= 0. LEFT_P non-zero means draw a line on the
1987 left side of the rectangle. RIGHT_P non-zero means draw a line
1988 on the right side of the rectangle. CLIP_RECT is the clipping
1989 rectangle to use when drawing. */
1990
1991 static void
1992 x_draw_box_rect (struct glyph_string *s,
1993 int left_x, int top_y, int right_x, int bottom_y, int width,
1994 int left_p, int right_p, XRectangle *clip_rect)
1995 {
1996 XGCValues xgcv;
1997
1998 XGetGCValues (s->display, s->gc, GCForeground, &xgcv);
1999 XSetForeground (s->display, s->gc, s->face->box_color);
2000 XSetClipRectangles (s->display, s->gc, 0, 0, clip_rect, 1, Unsorted);
2001
2002 /* Top. */
2003 XFillRectangle (s->display, s->window, s->gc,
2004 left_x, top_y, right_x - left_x + 1, width);
2005
2006 /* Left. */
2007 if (left_p)
2008 XFillRectangle (s->display, s->window, s->gc,
2009 left_x, top_y, width, bottom_y - top_y + 1);
2010
2011 /* Bottom. */
2012 XFillRectangle (s->display, s->window, s->gc,
2013 left_x, bottom_y - width + 1, right_x - left_x + 1, width);
2014
2015 /* Right. */
2016 if (right_p)
2017 XFillRectangle (s->display, s->window, s->gc,
2018 right_x - width + 1, top_y, width, bottom_y - top_y + 1);
2019
2020 XSetForeground (s->display, s->gc, xgcv.foreground);
2021 XSetClipMask (s->display, s->gc, None);
2022 }
2023
2024
2025 /* Draw a box around glyph string S. */
2026
2027 static void
2028 x_draw_glyph_string_box (struct glyph_string *s)
2029 {
2030 int width, left_x, right_x, top_y, bottom_y, last_x, raised_p;
2031 int left_p, right_p;
2032 struct glyph *last_glyph;
2033 XRectangle clip_rect;
2034
2035 last_x = ((s->row->full_width_p && !s->w->pseudo_window_p)
2036 ? WINDOW_RIGHT_EDGE_X (s->w)
2037 : window_box_right (s->w, s->area));
2038
2039 /* The glyph that may have a right box line. */
2040 last_glyph = (s->cmp || s->img
2041 ? s->first_glyph
2042 : s->first_glyph + s->nchars - 1);
2043
2044 width = eabs (s->face->box_line_width);
2045 raised_p = s->face->box == FACE_RAISED_BOX;
2046 left_x = s->x;
2047 right_x = (s->row->full_width_p && s->extends_to_end_of_line_p
2048 ? last_x - 1
2049 : min (last_x, s->x + s->background_width) - 1);
2050 top_y = s->y;
2051 bottom_y = top_y + s->height - 1;
2052
2053 left_p = (s->first_glyph->left_box_line_p
2054 || (s->hl == DRAW_MOUSE_FACE
2055 && (s->prev == NULL
2056 || s->prev->hl != s->hl)));
2057 right_p = (last_glyph->right_box_line_p
2058 || (s->hl == DRAW_MOUSE_FACE
2059 && (s->next == NULL
2060 || s->next->hl != s->hl)));
2061
2062 get_glyph_string_clip_rect (s, &clip_rect);
2063
2064 if (s->face->box == FACE_SIMPLE_BOX)
2065 x_draw_box_rect (s, left_x, top_y, right_x, bottom_y, width,
2066 left_p, right_p, &clip_rect);
2067 else
2068 {
2069 x_setup_relief_colors (s);
2070 x_draw_relief_rect (s->f, left_x, top_y, right_x, bottom_y,
2071 width, raised_p, 1, 1, left_p, right_p, &clip_rect);
2072 }
2073 }
2074
2075
2076 /* Draw foreground of image glyph string S. */
2077
2078 static void
2079 x_draw_image_foreground (struct glyph_string *s)
2080 {
2081 int x = s->x;
2082 int y = s->ybase - image_ascent (s->img, s->face, &s->slice);
2083
2084 /* If first glyph of S has a left box line, start drawing it to the
2085 right of that line. */
2086 if (s->face->box != FACE_NO_BOX
2087 && s->first_glyph->left_box_line_p
2088 && s->slice.x == 0)
2089 x += eabs (s->face->box_line_width);
2090
2091 /* If there is a margin around the image, adjust x- and y-position
2092 by that margin. */
2093 if (s->slice.x == 0)
2094 x += s->img->hmargin;
2095 if (s->slice.y == 0)
2096 y += s->img->vmargin;
2097
2098 if (s->img->pixmap)
2099 {
2100 if (s->img->mask)
2101 {
2102 /* We can't set both a clip mask and use XSetClipRectangles
2103 because the latter also sets a clip mask. We also can't
2104 trust on the shape extension to be available
2105 (XShapeCombineRegion). So, compute the rectangle to draw
2106 manually. */
2107 unsigned long mask = (GCClipMask | GCClipXOrigin | GCClipYOrigin
2108 | GCFunction);
2109 XGCValues xgcv;
2110 XRectangle clip_rect, image_rect, r;
2111
2112 xgcv.clip_mask = s->img->mask;
2113 xgcv.clip_x_origin = x;
2114 xgcv.clip_y_origin = y;
2115 xgcv.function = GXcopy;
2116 XChangeGC (s->display, s->gc, mask, &xgcv);
2117
2118 get_glyph_string_clip_rect (s, &clip_rect);
2119 image_rect.x = x;
2120 image_rect.y = y;
2121 image_rect.width = s->slice.width;
2122 image_rect.height = s->slice.height;
2123 if (x_intersect_rectangles (&clip_rect, &image_rect, &r))
2124 XCopyArea (s->display, s->img->pixmap, s->window, s->gc,
2125 s->slice.x + r.x - x, s->slice.y + r.y - y,
2126 r.width, r.height, r.x, r.y);
2127 }
2128 else
2129 {
2130 XRectangle clip_rect, image_rect, r;
2131
2132 get_glyph_string_clip_rect (s, &clip_rect);
2133 image_rect.x = x;
2134 image_rect.y = y;
2135 image_rect.width = s->slice.width;
2136 image_rect.height = s->slice.height;
2137 if (x_intersect_rectangles (&clip_rect, &image_rect, &r))
2138 XCopyArea (s->display, s->img->pixmap, s->window, s->gc,
2139 s->slice.x + r.x - x, s->slice.y + r.y - y,
2140 r.width, r.height, r.x, r.y);
2141
2142 /* When the image has a mask, we can expect that at
2143 least part of a mouse highlight or a block cursor will
2144 be visible. If the image doesn't have a mask, make
2145 a block cursor visible by drawing a rectangle around
2146 the image. I believe it's looking better if we do
2147 nothing here for mouse-face. */
2148 if (s->hl == DRAW_CURSOR)
2149 {
2150 int relief = eabs (s->img->relief);
2151 XDrawRectangle (s->display, s->window, s->gc,
2152 x - relief, y - relief,
2153 s->slice.width + relief*2 - 1,
2154 s->slice.height + relief*2 - 1);
2155 }
2156 }
2157 }
2158 else
2159 /* Draw a rectangle if image could not be loaded. */
2160 XDrawRectangle (s->display, s->window, s->gc, x, y,
2161 s->slice.width - 1, s->slice.height - 1);
2162 }
2163
2164
2165 /* Draw a relief around the image glyph string S. */
2166
2167 static void
2168 x_draw_image_relief (struct glyph_string *s)
2169 {
2170 int x1, y1, thick, raised_p, top_p, bot_p, left_p, right_p;
2171 int extra_x, extra_y;
2172 XRectangle r;
2173 int x = s->x;
2174 int y = s->ybase - image_ascent (s->img, s->face, &s->slice);
2175
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);
2182
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;
2189
2190 if (s->hl == DRAW_IMAGE_SUNKEN
2191 || s->hl == DRAW_IMAGE_RAISED)
2192 {
2193 thick = tool_bar_button_relief >= 0 ? tool_bar_button_relief : DEFAULT_TOOL_BAR_BUTTON_RELIEF;
2194 raised_p = s->hl == DRAW_IMAGE_RAISED;
2195 }
2196 else
2197 {
2198 thick = eabs (s->img->relief);
2199 raised_p = s->img->relief > 0;
2200 }
2201
2202 x1 = x + s->slice.width - 1;
2203 y1 = y + s->slice.height - 1;
2204
2205 extra_x = extra_y = 0;
2206 if (s->face->id == TOOL_BAR_FACE_ID)
2207 {
2208 if (CONSP (Vtool_bar_button_margin)
2209 && INTEGERP (XCAR (Vtool_bar_button_margin))
2210 && INTEGERP (XCDR (Vtool_bar_button_margin)))
2211 {
2212 extra_x = XINT (XCAR (Vtool_bar_button_margin));
2213 extra_y = XINT (XCDR (Vtool_bar_button_margin));
2214 }
2215 else if (INTEGERP (Vtool_bar_button_margin))
2216 extra_x = extra_y = XINT (Vtool_bar_button_margin);
2217 }
2218
2219 top_p = bot_p = left_p = right_p = 0;
2220
2221 if (s->slice.x == 0)
2222 x -= thick + extra_x, left_p = 1;
2223 if (s->slice.y == 0)
2224 y -= thick + extra_y, top_p = 1;
2225 if (s->slice.x + s->slice.width == s->img->width)
2226 x1 += thick + extra_x, right_p = 1;
2227 if (s->slice.y + s->slice.height == s->img->height)
2228 y1 += thick + extra_y, bot_p = 1;
2229
2230 x_setup_relief_colors (s);
2231 get_glyph_string_clip_rect (s, &r);
2232 x_draw_relief_rect (s->f, x, y, x1, y1, thick, raised_p,
2233 top_p, bot_p, left_p, right_p, &r);
2234 }
2235
2236
2237 /* Draw the foreground of image glyph string S to PIXMAP. */
2238
2239 static void
2240 x_draw_image_foreground_1 (struct glyph_string *s, Pixmap pixmap)
2241 {
2242 int x = 0;
2243 int y = s->ybase - s->y - image_ascent (s->img, s->face, &s->slice);
2244
2245 /* If first glyph of S has a left box line, start drawing it to the
2246 right of that line. */
2247 if (s->face->box != FACE_NO_BOX
2248 && s->first_glyph->left_box_line_p
2249 && s->slice.x == 0)
2250 x += eabs (s->face->box_line_width);
2251
2252 /* If there is a margin around the image, adjust x- and y-position
2253 by that margin. */
2254 if (s->slice.x == 0)
2255 x += s->img->hmargin;
2256 if (s->slice.y == 0)
2257 y += s->img->vmargin;
2258
2259 if (s->img->pixmap)
2260 {
2261 if (s->img->mask)
2262 {
2263 /* We can't set both a clip mask and use XSetClipRectangles
2264 because the latter also sets a clip mask. We also can't
2265 trust on the shape extension to be available
2266 (XShapeCombineRegion). So, compute the rectangle to draw
2267 manually. */
2268 unsigned long mask = (GCClipMask | GCClipXOrigin | GCClipYOrigin
2269 | GCFunction);
2270 XGCValues xgcv;
2271
2272 xgcv.clip_mask = s->img->mask;
2273 xgcv.clip_x_origin = x - s->slice.x;
2274 xgcv.clip_y_origin = y - s->slice.y;
2275 xgcv.function = GXcopy;
2276 XChangeGC (s->display, s->gc, mask, &xgcv);
2277
2278 XCopyArea (s->display, s->img->pixmap, pixmap, s->gc,
2279 s->slice.x, s->slice.y,
2280 s->slice.width, s->slice.height, x, y);
2281 XSetClipMask (s->display, s->gc, None);
2282 }
2283 else
2284 {
2285 XCopyArea (s->display, s->img->pixmap, pixmap, s->gc,
2286 s->slice.x, s->slice.y,
2287 s->slice.width, s->slice.height, x, y);
2288
2289 /* When the image has a mask, we can expect that at
2290 least part of a mouse highlight or a block cursor will
2291 be visible. If the image doesn't have a mask, make
2292 a block cursor visible by drawing a rectangle around
2293 the image. I believe it's looking better if we do
2294 nothing here for mouse-face. */
2295 if (s->hl == DRAW_CURSOR)
2296 {
2297 int r = eabs (s->img->relief);
2298 XDrawRectangle (s->display, s->window, s->gc, x - r, y - r,
2299 s->slice.width + r*2 - 1,
2300 s->slice.height + r*2 - 1);
2301 }
2302 }
2303 }
2304 else
2305 /* Draw a rectangle if image could not be loaded. */
2306 XDrawRectangle (s->display, pixmap, s->gc, x, y,
2307 s->slice.width - 1, s->slice.height - 1);
2308 }
2309
2310
2311 /* Draw part of the background of glyph string S. X, Y, W, and H
2312 give the rectangle to draw. */
2313
2314 static void
2315 x_draw_glyph_string_bg_rect (struct glyph_string *s, int x, int y, int w, int h)
2316 {
2317 if (s->stippled_p)
2318 {
2319 /* Fill background with a stipple pattern. */
2320 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
2321 XFillRectangle (s->display, s->window, s->gc, x, y, w, h);
2322 XSetFillStyle (s->display, s->gc, FillSolid);
2323 }
2324 else
2325 x_clear_glyph_string_rect (s, x, y, w, h);
2326 }
2327
2328
2329 /* Draw image glyph string S.
2330
2331 s->y
2332 s->x +-------------------------
2333 | s->face->box
2334 |
2335 | +-------------------------
2336 | | s->img->margin
2337 | |
2338 | | +-------------------
2339 | | | the image
2340
2341 */
2342
2343 static void
2344 x_draw_image_glyph_string (struct glyph_string *s)
2345 {
2346 int box_line_hwidth = eabs (s->face->box_line_width);
2347 int box_line_vwidth = max (s->face->box_line_width, 0);
2348 int height;
2349 Pixmap pixmap = None;
2350
2351 height = s->height;
2352 if (s->slice.y == 0)
2353 height -= box_line_vwidth;
2354 if (s->slice.y + s->slice.height >= s->img->height)
2355 height -= box_line_vwidth;
2356
2357 /* Fill background with face under the image. Do it only if row is
2358 taller than image or if image has a clip mask to reduce
2359 flickering. */
2360 s->stippled_p = s->face->stipple != 0;
2361 if (height > s->slice.height
2362 || s->img->hmargin
2363 || s->img->vmargin
2364 || s->img->mask
2365 || s->img->pixmap == 0
2366 || s->width != s->background_width)
2367 {
2368 if (s->img->mask)
2369 {
2370 /* Create a pixmap as large as the glyph string. Fill it
2371 with the background color. Copy the image to it, using
2372 its mask. Copy the temporary pixmap to the display. */
2373 Screen *screen = FRAME_X_SCREEN (s->f);
2374 int depth = DefaultDepthOfScreen (screen);
2375
2376 /* Create a pixmap as large as the glyph string. */
2377 pixmap = XCreatePixmap (s->display, s->window,
2378 s->background_width,
2379 s->height, depth);
2380
2381 /* Don't clip in the following because we're working on the
2382 pixmap. */
2383 XSetClipMask (s->display, s->gc, None);
2384
2385 /* Fill the pixmap with the background color/stipple. */
2386 if (s->stippled_p)
2387 {
2388 /* Fill background with a stipple pattern. */
2389 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
2390 XSetTSOrigin (s->display, s->gc, - s->x, - s->y);
2391 XFillRectangle (s->display, pixmap, s->gc,
2392 0, 0, s->background_width, s->height);
2393 XSetFillStyle (s->display, s->gc, FillSolid);
2394 XSetTSOrigin (s->display, s->gc, 0, 0);
2395 }
2396 else
2397 {
2398 XGCValues xgcv;
2399 XGetGCValues (s->display, s->gc, GCForeground | GCBackground,
2400 &xgcv);
2401 XSetForeground (s->display, s->gc, xgcv.background);
2402 XFillRectangle (s->display, pixmap, s->gc,
2403 0, 0, s->background_width, s->height);
2404 XSetForeground (s->display, s->gc, xgcv.foreground);
2405 }
2406 }
2407 else
2408 {
2409 int x = s->x;
2410 int y = s->y;
2411 int width = s->background_width;
2412
2413 if (s->first_glyph->left_box_line_p
2414 && s->slice.x == 0)
2415 {
2416 x += box_line_hwidth;
2417 width -= box_line_hwidth;
2418 }
2419
2420 if (s->slice.y == 0)
2421 y += box_line_vwidth;
2422
2423 x_draw_glyph_string_bg_rect (s, x, y, width, height);
2424 }
2425
2426 s->background_filled_p = 1;
2427 }
2428
2429 /* Draw the foreground. */
2430 if (pixmap != None)
2431 {
2432 x_draw_image_foreground_1 (s, pixmap);
2433 x_set_glyph_string_clipping (s);
2434 XCopyArea (s->display, pixmap, s->window, s->gc,
2435 0, 0, s->background_width, s->height, s->x, s->y);
2436 XFreePixmap (s->display, pixmap);
2437 }
2438 else
2439 x_draw_image_foreground (s);
2440
2441 /* If we must draw a relief around the image, do it. */
2442 if (s->img->relief
2443 || s->hl == DRAW_IMAGE_RAISED
2444 || s->hl == DRAW_IMAGE_SUNKEN)
2445 x_draw_image_relief (s);
2446 }
2447
2448
2449 /* Draw stretch glyph string S. */
2450
2451 static void
2452 x_draw_stretch_glyph_string (struct glyph_string *s)
2453 {
2454 eassert (s->first_glyph->type == STRETCH_GLYPH);
2455
2456 if (s->hl == DRAW_CURSOR
2457 && !x_stretch_cursor_p)
2458 {
2459 /* If `x-stretch-cursor' is nil, don't draw a block cursor as
2460 wide as the stretch glyph. */
2461 int width, background_width = s->background_width;
2462 int x = s->x;
2463
2464 if (!s->row->reversed_p)
2465 {
2466 int left_x = window_box_left_offset (s->w, TEXT_AREA);
2467
2468 if (x < left_x)
2469 {
2470 background_width -= left_x - x;
2471 x = left_x;
2472 }
2473 }
2474 else
2475 {
2476 /* In R2L rows, draw the cursor on the right edge of the
2477 stretch glyph. */
2478 int right_x = window_box_right_offset (s->w, TEXT_AREA);
2479
2480 if (x + background_width > right_x)
2481 background_width -= x - right_x;
2482 x += background_width;
2483 }
2484 width = min (FRAME_COLUMN_WIDTH (s->f), background_width);
2485 if (s->row->reversed_p)
2486 x -= width;
2487
2488 /* Draw cursor. */
2489 x_draw_glyph_string_bg_rect (s, x, s->y, width, s->height);
2490
2491 /* Clear rest using the GC of the original non-cursor face. */
2492 if (width < background_width)
2493 {
2494 int y = s->y;
2495 int w = background_width - width, h = s->height;
2496 XRectangle r;
2497 GC gc;
2498
2499 if (!s->row->reversed_p)
2500 x += width;
2501 else
2502 x = s->x;
2503 if (s->row->mouse_face_p
2504 && cursor_in_mouse_face_p (s->w))
2505 {
2506 x_set_mouse_face_gc (s);
2507 gc = s->gc;
2508 }
2509 else
2510 gc = s->face->gc;
2511
2512 get_glyph_string_clip_rect (s, &r);
2513 XSetClipRectangles (s->display, gc, 0, 0, &r, 1, Unsorted);
2514
2515 if (s->face->stipple)
2516 {
2517 /* Fill background with a stipple pattern. */
2518 XSetFillStyle (s->display, gc, FillOpaqueStippled);
2519 XFillRectangle (s->display, s->window, gc, x, y, w, h);
2520 XSetFillStyle (s->display, gc, FillSolid);
2521 }
2522 else
2523 {
2524 XGCValues xgcv;
2525 XGetGCValues (s->display, gc, GCForeground | GCBackground, &xgcv);
2526 XSetForeground (s->display, gc, xgcv.background);
2527 XFillRectangle (s->display, s->window, gc, x, y, w, h);
2528 XSetForeground (s->display, gc, xgcv.foreground);
2529 }
2530
2531 XSetClipMask (s->display, gc, None);
2532 }
2533 }
2534 else if (!s->background_filled_p)
2535 {
2536 int background_width = s->background_width;
2537 int x = s->x, left_x = window_box_left_offset (s->w, TEXT_AREA);
2538
2539 /* Don't draw into left margin, fringe or scrollbar area
2540 except for header line and mode line. */
2541 if (x < left_x && !s->row->mode_line_p)
2542 {
2543 background_width -= left_x - x;
2544 x = left_x;
2545 }
2546 if (background_width > 0)
2547 x_draw_glyph_string_bg_rect (s, x, s->y, background_width, s->height);
2548 }
2549
2550 s->background_filled_p = 1;
2551 }
2552
2553 /*
2554 Draw a wavy line under S. The wave fills wave_height pixels from y0.
2555
2556 x0 wave_length = 2
2557 --
2558 y0 * * * * *
2559 |* * * * * * * * *
2560 wave_height = 3 | * * * *
2561
2562 */
2563
2564 static void
2565 x_draw_underwave (struct glyph_string *s)
2566 {
2567 int wave_height = 3, wave_length = 2;
2568 int dx, dy, x0, y0, width, x1, y1, x2, y2, odd, xmax;
2569 XRectangle wave_clip, string_clip, final_clip;
2570
2571 dx = wave_length;
2572 dy = wave_height - 1;
2573 x0 = s->x;
2574 y0 = s->ybase - wave_height + 3;
2575 width = s->width;
2576 xmax = x0 + width;
2577
2578 /* Find and set clipping rectangle */
2579
2580 wave_clip.x = x0;
2581 wave_clip.y = y0;
2582 wave_clip.width = width;
2583 wave_clip.height = wave_height;
2584 get_glyph_string_clip_rect (s, &string_clip);
2585
2586 if (!x_intersect_rectangles (&wave_clip, &string_clip, &final_clip))
2587 return;
2588
2589 XSetClipRectangles (s->display, s->gc, 0, 0, &final_clip, 1, Unsorted);
2590
2591 /* Draw the waves */
2592
2593 x1 = x0 - (x0 % dx);
2594 x2 = x1 + dx;
2595 odd = (x1/dx) % 2;
2596 y1 = y2 = y0;
2597
2598 if (odd)
2599 y1 += dy;
2600 else
2601 y2 += dy;
2602
2603 if (INT_MAX - dx < xmax)
2604 emacs_abort ();
2605
2606 while (x1 <= xmax)
2607 {
2608 XDrawLine (s->display, s->window, s->gc, x1, y1, x2, y2);
2609 x1 = x2, y1 = y2;
2610 x2 += dx, y2 = y0 + odd*dy;
2611 odd = !odd;
2612 }
2613
2614 /* Restore previous clipping rectangle(s) */
2615 XSetClipRectangles (s->display, s->gc, 0, 0, s->clip, s->num_clips, Unsorted);
2616 }
2617
2618
2619 /* Draw glyph string S. */
2620
2621 static void
2622 x_draw_glyph_string (struct glyph_string *s)
2623 {
2624 bool relief_drawn_p = 0;
2625
2626 /* If S draws into the background of its successors, draw the
2627 background of the successors first so that S can draw into it.
2628 This makes S->next use XDrawString instead of XDrawImageString. */
2629 if (s->next && s->right_overhang && !s->for_overlaps)
2630 {
2631 int width;
2632 struct glyph_string *next;
2633
2634 for (width = 0, next = s->next;
2635 next && width < s->right_overhang;
2636 width += next->width, next = next->next)
2637 if (next->first_glyph->type != IMAGE_GLYPH)
2638 {
2639 x_set_glyph_string_gc (next);
2640 x_set_glyph_string_clipping (next);
2641 if (next->first_glyph->type == STRETCH_GLYPH)
2642 x_draw_stretch_glyph_string (next);
2643 else
2644 x_draw_glyph_string_background (next, 1);
2645 next->num_clips = 0;
2646 }
2647 }
2648
2649 /* Set up S->gc, set clipping and draw S. */
2650 x_set_glyph_string_gc (s);
2651
2652 /* Draw relief (if any) in advance for char/composition so that the
2653 glyph string can be drawn over it. */
2654 if (!s->for_overlaps
2655 && s->face->box != FACE_NO_BOX
2656 && (s->first_glyph->type == CHAR_GLYPH
2657 || s->first_glyph->type == COMPOSITE_GLYPH))
2658
2659 {
2660 x_set_glyph_string_clipping (s);
2661 x_draw_glyph_string_background (s, 1);
2662 x_draw_glyph_string_box (s);
2663 x_set_glyph_string_clipping (s);
2664 relief_drawn_p = 1;
2665 }
2666 else if (!s->clip_head /* draw_glyphs didn't specify a clip mask. */
2667 && !s->clip_tail
2668 && ((s->prev && s->prev->hl != s->hl && s->left_overhang)
2669 || (s->next && s->next->hl != s->hl && s->right_overhang)))
2670 /* We must clip just this glyph. left_overhang part has already
2671 drawn when s->prev was drawn, and right_overhang part will be
2672 drawn later when s->next is drawn. */
2673 x_set_glyph_string_clipping_exactly (s, s);
2674 else
2675 x_set_glyph_string_clipping (s);
2676
2677 switch (s->first_glyph->type)
2678 {
2679 case IMAGE_GLYPH:
2680 x_draw_image_glyph_string (s);
2681 break;
2682
2683 case STRETCH_GLYPH:
2684 x_draw_stretch_glyph_string (s);
2685 break;
2686
2687 case CHAR_GLYPH:
2688 if (s->for_overlaps)
2689 s->background_filled_p = 1;
2690 else
2691 x_draw_glyph_string_background (s, 0);
2692 x_draw_glyph_string_foreground (s);
2693 break;
2694
2695 case COMPOSITE_GLYPH:
2696 if (s->for_overlaps || (s->cmp_from > 0
2697 && ! s->first_glyph->u.cmp.automatic))
2698 s->background_filled_p = 1;
2699 else
2700 x_draw_glyph_string_background (s, 1);
2701 x_draw_composite_glyph_string_foreground (s);
2702 break;
2703
2704 case GLYPHLESS_GLYPH:
2705 if (s->for_overlaps)
2706 s->background_filled_p = 1;
2707 else
2708 x_draw_glyph_string_background (s, 1);
2709 x_draw_glyphless_glyph_string_foreground (s);
2710 break;
2711
2712 default:
2713 emacs_abort ();
2714 }
2715
2716 if (!s->for_overlaps)
2717 {
2718 /* Draw underline. */
2719 if (s->face->underline_p)
2720 {
2721 if (s->face->underline_type == FACE_UNDER_WAVE)
2722 {
2723 if (s->face->underline_defaulted_p)
2724 x_draw_underwave (s);
2725 else
2726 {
2727 XGCValues xgcv;
2728 XGetGCValues (s->display, s->gc, GCForeground, &xgcv);
2729 XSetForeground (s->display, s->gc, s->face->underline_color);
2730 x_draw_underwave (s);
2731 XSetForeground (s->display, s->gc, xgcv.foreground);
2732 }
2733 }
2734 else if (s->face->underline_type == FACE_UNDER_LINE)
2735 {
2736 unsigned long thickness, position;
2737 int y;
2738
2739 if (s->prev && s->prev->face->underline_p
2740 && s->prev->face->underline_type == FACE_UNDER_LINE)
2741 {
2742 /* We use the same underline style as the previous one. */
2743 thickness = s->prev->underline_thickness;
2744 position = s->prev->underline_position;
2745 }
2746 else
2747 {
2748 /* Get the underline thickness. Default is 1 pixel. */
2749 if (s->font && s->font->underline_thickness > 0)
2750 thickness = s->font->underline_thickness;
2751 else
2752 thickness = 1;
2753 if (x_underline_at_descent_line)
2754 position = (s->height - thickness) - (s->ybase - s->y);
2755 else
2756 {
2757 /* Get the underline position. This is the recommended
2758 vertical offset in pixels from the baseline to the top of
2759 the underline. This is a signed value according to the
2760 specs, and its default is
2761
2762 ROUND ((maximum descent) / 2), with
2763 ROUND(x) = floor (x + 0.5) */
2764
2765 if (x_use_underline_position_properties
2766 && s->font && s->font->underline_position >= 0)
2767 position = s->font->underline_position;
2768 else if (s->font)
2769 position = (s->font->descent + 1) / 2;
2770 else
2771 position = underline_minimum_offset;
2772 }
2773 position = max (position, underline_minimum_offset);
2774 }
2775 /* Check the sanity of thickness and position. We should
2776 avoid drawing underline out of the current line area. */
2777 if (s->y + s->height <= s->ybase + position)
2778 position = (s->height - 1) - (s->ybase - s->y);
2779 if (s->y + s->height < s->ybase + position + thickness)
2780 thickness = (s->y + s->height) - (s->ybase + position);
2781 s->underline_thickness = thickness;
2782 s->underline_position = position;
2783 y = s->ybase + position;
2784 if (s->face->underline_defaulted_p)
2785 XFillRectangle (s->display, s->window, s->gc,
2786 s->x, y, s->width, thickness);
2787 else
2788 {
2789 XGCValues xgcv;
2790 XGetGCValues (s->display, s->gc, GCForeground, &xgcv);
2791 XSetForeground (s->display, s->gc, s->face->underline_color);
2792 XFillRectangle (s->display, s->window, s->gc,
2793 s->x, y, s->width, thickness);
2794 XSetForeground (s->display, s->gc, xgcv.foreground);
2795 }
2796 }
2797 }
2798 /* Draw overline. */
2799 if (s->face->overline_p)
2800 {
2801 unsigned long dy = 0, h = 1;
2802
2803 if (s->face->overline_color_defaulted_p)
2804 XFillRectangle (s->display, s->window, s->gc, s->x, s->y + dy,
2805 s->width, h);
2806 else
2807 {
2808 XGCValues xgcv;
2809 XGetGCValues (s->display, s->gc, GCForeground, &xgcv);
2810 XSetForeground (s->display, s->gc, s->face->overline_color);
2811 XFillRectangle (s->display, s->window, s->gc, s->x, s->y + dy,
2812 s->width, h);
2813 XSetForeground (s->display, s->gc, xgcv.foreground);
2814 }
2815 }
2816
2817 /* Draw strike-through. */
2818 if (s->face->strike_through_p)
2819 {
2820 unsigned long h = 1;
2821 unsigned long dy = (s->height - h) / 2;
2822
2823 if (s->face->strike_through_color_defaulted_p)
2824 XFillRectangle (s->display, s->window, s->gc, s->x, s->y + dy,
2825 s->width, h);
2826 else
2827 {
2828 XGCValues xgcv;
2829 XGetGCValues (s->display, s->gc, GCForeground, &xgcv);
2830 XSetForeground (s->display, s->gc, s->face->strike_through_color);
2831 XFillRectangle (s->display, s->window, s->gc, s->x, s->y + dy,
2832 s->width, h);
2833 XSetForeground (s->display, s->gc, xgcv.foreground);
2834 }
2835 }
2836
2837 /* Draw relief if not yet drawn. */
2838 if (!relief_drawn_p && s->face->box != FACE_NO_BOX)
2839 x_draw_glyph_string_box (s);
2840
2841 if (s->prev)
2842 {
2843 struct glyph_string *prev;
2844
2845 for (prev = s->prev; prev; prev = prev->prev)
2846 if (prev->hl != s->hl
2847 && prev->x + prev->width + prev->right_overhang > s->x)
2848 {
2849 /* As prev was drawn while clipped to its own area, we
2850 must draw the right_overhang part using s->hl now. */
2851 enum draw_glyphs_face save = prev->hl;
2852
2853 prev->hl = s->hl;
2854 x_set_glyph_string_gc (prev);
2855 x_set_glyph_string_clipping_exactly (s, prev);
2856 if (prev->first_glyph->type == CHAR_GLYPH)
2857 x_draw_glyph_string_foreground (prev);
2858 else
2859 x_draw_composite_glyph_string_foreground (prev);
2860 XSetClipMask (prev->display, prev->gc, None);
2861 prev->hl = save;
2862 prev->num_clips = 0;
2863 }
2864 }
2865
2866 if (s->next)
2867 {
2868 struct glyph_string *next;
2869
2870 for (next = s->next; next; next = next->next)
2871 if (next->hl != s->hl
2872 && next->x - next->left_overhang < s->x + s->width)
2873 {
2874 /* As next will be drawn while clipped to its own area,
2875 we must draw the left_overhang part using s->hl now. */
2876 enum draw_glyphs_face save = next->hl;
2877
2878 next->hl = s->hl;
2879 x_set_glyph_string_gc (next);
2880 x_set_glyph_string_clipping_exactly (s, next);
2881 if (next->first_glyph->type == CHAR_GLYPH)
2882 x_draw_glyph_string_foreground (next);
2883 else
2884 x_draw_composite_glyph_string_foreground (next);
2885 XSetClipMask (next->display, next->gc, None);
2886 next->hl = save;
2887 next->num_clips = 0;
2888 next->clip_head = s->next;
2889 }
2890 }
2891 }
2892
2893 /* Reset clipping. */
2894 XSetClipMask (s->display, s->gc, None);
2895 s->num_clips = 0;
2896 }
2897
2898 /* Shift display to make room for inserted glyphs. */
2899
2900 static void
2901 x_shift_glyphs_for_insert (struct frame *f, int x, int y, int width, int height, int shift_by)
2902 {
2903 XCopyArea (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), FRAME_X_WINDOW (f),
2904 f->output_data.x->normal_gc,
2905 x, y, width, height,
2906 x + shift_by, y);
2907 }
2908
2909 /* Delete N glyphs at the nominal cursor position. Not implemented
2910 for X frames. */
2911
2912 static void
2913 x_delete_glyphs (struct frame *f, register int n)
2914 {
2915 emacs_abort ();
2916 }
2917
2918
2919 /* Like XClearArea, but check that WIDTH and HEIGHT are reasonable.
2920 If they are <= 0, this is probably an error. */
2921
2922 void
2923 x_clear_area (Display *dpy, Window window, int x, int y, int width, int height)
2924 {
2925 eassert (width > 0 && height > 0);
2926 XClearArea (dpy, window, x, y, width, height, False);
2927 }
2928
2929
2930 /* Clear an entire frame. */
2931
2932 static void
2933 x_clear_frame (struct frame *f)
2934 {
2935 /* Clearing the frame will erase any cursor, so mark them all as no
2936 longer visible. */
2937 mark_window_cursors_off (XWINDOW (FRAME_ROOT_WINDOW (f)));
2938
2939 block_input ();
2940
2941 XClearWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
2942
2943 /* We have to clear the scroll bars. If we have changed colors or
2944 something like that, then they should be notified. */
2945 x_scroll_bar_clear (f);
2946
2947 #if defined (USE_GTK) && defined (USE_TOOLKIT_SCROLL_BARS)
2948 /* Make sure scroll bars are redrawn. As they aren't redrawn by
2949 redisplay, do it here. */
2950 if (FRAME_GTK_WIDGET (f))
2951 gtk_widget_queue_draw (FRAME_GTK_WIDGET (f));
2952 #endif
2953
2954 XFlush (FRAME_X_DISPLAY (f));
2955
2956 unblock_input ();
2957 }
2958
2959
2960 \f
2961 /* Invert the middle quarter of the frame for .15 sec. */
2962
2963 static void
2964 XTflash (struct frame *f)
2965 {
2966 block_input ();
2967
2968 {
2969 #ifdef USE_GTK
2970 /* Use Gdk routines to draw. This way, we won't draw over scroll bars
2971 when the scroll bars and the edit widget share the same X window. */
2972 GdkWindow *window = gtk_widget_get_window (FRAME_GTK_WIDGET (f));
2973 #ifdef HAVE_GTK3
2974 cairo_t *cr = gdk_cairo_create (window);
2975 cairo_set_source_rgb (cr, 1, 1, 1);
2976 cairo_set_operator (cr, CAIRO_OPERATOR_DIFFERENCE);
2977 #define XFillRectangle(d, win, gc, x, y, w, h) \
2978 do { \
2979 cairo_rectangle (cr, x, y, w, h); \
2980 cairo_fill (cr); \
2981 } \
2982 while (0)
2983 #else /* ! HAVE_GTK3 */
2984 GdkGCValues vals;
2985 GdkGC *gc;
2986 vals.foreground.pixel = (FRAME_FOREGROUND_PIXEL (f)
2987 ^ FRAME_BACKGROUND_PIXEL (f));
2988 vals.function = GDK_XOR;
2989 gc = gdk_gc_new_with_values (window,
2990 &vals, GDK_GC_FUNCTION | GDK_GC_FOREGROUND);
2991 #define XFillRectangle(d, win, gc, x, y, w, h) \
2992 gdk_draw_rectangle (window, gc, TRUE, x, y, w, h)
2993 #endif /* ! HAVE_GTK3 */
2994 #else /* ! USE_GTK */
2995 GC gc;
2996
2997 /* Create a GC that will use the GXxor function to flip foreground
2998 pixels into background pixels. */
2999 {
3000 XGCValues values;
3001
3002 values.function = GXxor;
3003 values.foreground = (FRAME_FOREGROUND_PIXEL (f)
3004 ^ FRAME_BACKGROUND_PIXEL (f));
3005
3006 gc = XCreateGC (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3007 GCFunction | GCForeground, &values);
3008 }
3009 #endif
3010 {
3011 /* Get the height not including a menu bar widget. */
3012 int height = FRAME_PIXEL_HEIGHT (f);
3013 /* Height of each line to flash. */
3014 int flash_height = FRAME_LINE_HEIGHT (f);
3015 /* These will be the left and right margins of the rectangles. */
3016 int flash_left = FRAME_INTERNAL_BORDER_WIDTH (f);
3017 int flash_right = FRAME_PIXEL_WIDTH (f) - FRAME_INTERNAL_BORDER_WIDTH (f);
3018 int width = flash_right - flash_left;
3019
3020 /* If window is tall, flash top and bottom line. */
3021 if (height > 3 * FRAME_LINE_HEIGHT (f))
3022 {
3023 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
3024 flash_left,
3025 (FRAME_INTERNAL_BORDER_WIDTH (f)
3026 + FRAME_TOP_MARGIN_HEIGHT (f)),
3027 width, flash_height);
3028 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
3029 flash_left,
3030 (height - flash_height
3031 - FRAME_INTERNAL_BORDER_WIDTH (f)),
3032 width, flash_height);
3033
3034 }
3035 else
3036 /* If it is short, flash it all. */
3037 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
3038 flash_left, FRAME_INTERNAL_BORDER_WIDTH (f),
3039 width, height - 2 * FRAME_INTERNAL_BORDER_WIDTH (f));
3040
3041 x_flush (f);
3042
3043 {
3044 struct timespec delay = make_timespec (0, 150 * 1000 * 1000);
3045 struct timespec wakeup = timespec_add (current_timespec (), delay);
3046
3047 /* Keep waiting until past the time wakeup or any input gets
3048 available. */
3049 while (! detect_input_pending ())
3050 {
3051 struct timespec current = current_timespec ();
3052 struct timespec timeout;
3053
3054 /* Break if result would not be positive. */
3055 if (timespec_cmp (wakeup, current) <= 0)
3056 break;
3057
3058 /* How long `select' should wait. */
3059 timeout = make_timespec (0, 10 * 1000 * 1000);
3060
3061 /* Try to wait that long--but we might wake up sooner. */
3062 pselect (0, NULL, NULL, NULL, &timeout, NULL);
3063 }
3064 }
3065
3066 /* If window is tall, flash top and bottom line. */
3067 if (height > 3 * FRAME_LINE_HEIGHT (f))
3068 {
3069 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
3070 flash_left,
3071 (FRAME_INTERNAL_BORDER_WIDTH (f)
3072 + FRAME_TOP_MARGIN_HEIGHT (f)),
3073 width, flash_height);
3074 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
3075 flash_left,
3076 (height - flash_height
3077 - FRAME_INTERNAL_BORDER_WIDTH (f)),
3078 width, flash_height);
3079 }
3080 else
3081 /* If it is short, flash it all. */
3082 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
3083 flash_left, FRAME_INTERNAL_BORDER_WIDTH (f),
3084 width, height - 2 * FRAME_INTERNAL_BORDER_WIDTH (f));
3085
3086 #ifdef USE_GTK
3087 #ifdef HAVE_GTK3
3088 cairo_destroy (cr);
3089 #else
3090 g_object_unref (G_OBJECT (gc));
3091 #endif
3092 #undef XFillRectangle
3093 #else
3094 XFreeGC (FRAME_X_DISPLAY (f), gc);
3095 #endif
3096 x_flush (f);
3097 }
3098 }
3099
3100 unblock_input ();
3101 }
3102
3103
3104 static void
3105 XTtoggle_invisible_pointer (struct frame *f, int invisible)
3106 {
3107 block_input ();
3108 if (invisible)
3109 {
3110 if (FRAME_DISPLAY_INFO (f)->invisible_cursor != 0)
3111 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3112 FRAME_DISPLAY_INFO (f)->invisible_cursor);
3113 }
3114 else
3115 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3116 f->output_data.x->current_cursor);
3117 f->pointer_invisible = invisible;
3118 unblock_input ();
3119 }
3120
3121
3122 /* Make audible bell. */
3123
3124 static void
3125 XTring_bell (struct frame *f)
3126 {
3127 if (FRAME_X_DISPLAY (f))
3128 {
3129 if (visible_bell)
3130 XTflash (f);
3131 else
3132 {
3133 block_input ();
3134 #ifdef HAVE_XKB
3135 XkbBell (FRAME_X_DISPLAY (f), None, 0, None);
3136 #else
3137 XBell (FRAME_X_DISPLAY (f), 0);
3138 #endif
3139 XFlush (FRAME_X_DISPLAY (f));
3140 unblock_input ();
3141 }
3142 }
3143 }
3144
3145 /***********************************************************************
3146 Line Dance
3147 ***********************************************************************/
3148
3149 /* Perform an insert-lines or delete-lines operation, inserting N
3150 lines or deleting -N lines at vertical position VPOS. */
3151
3152 static void
3153 x_ins_del_lines (struct frame *f, int vpos, int n)
3154 {
3155 emacs_abort ();
3156 }
3157
3158
3159 /* Scroll part of the display as described by RUN. */
3160
3161 static void
3162 x_scroll_run (struct window *w, struct run *run)
3163 {
3164 struct frame *f = XFRAME (w->frame);
3165 int x, y, width, height, from_y, to_y, bottom_y;
3166
3167 /* Get frame-relative bounding box of the text display area of W,
3168 without mode lines. Include in this box the left and right
3169 fringe of W. */
3170 window_box (w, ANY_AREA, &x, &y, &width, &height);
3171
3172 from_y = WINDOW_TO_FRAME_PIXEL_Y (w, run->current_y);
3173 to_y = WINDOW_TO_FRAME_PIXEL_Y (w, run->desired_y);
3174 bottom_y = y + height;
3175
3176 if (to_y < from_y)
3177 {
3178 /* Scrolling up. Make sure we don't copy part of the mode
3179 line at the bottom. */
3180 if (from_y + run->height > bottom_y)
3181 height = bottom_y - from_y;
3182 else
3183 height = run->height;
3184 }
3185 else
3186 {
3187 /* Scrolling down. Make sure we don't copy over the mode line.
3188 at the bottom. */
3189 if (to_y + run->height > bottom_y)
3190 height = bottom_y - to_y;
3191 else
3192 height = run->height;
3193 }
3194
3195 block_input ();
3196
3197 /* Cursor off. Will be switched on again in x_update_window_end. */
3198 x_clear_cursor (w);
3199
3200 XCopyArea (FRAME_X_DISPLAY (f),
3201 FRAME_X_WINDOW (f), FRAME_X_WINDOW (f),
3202 f->output_data.x->normal_gc,
3203 x, from_y,
3204 width, height,
3205 x, to_y);
3206
3207 unblock_input ();
3208 }
3209
3210
3211 \f
3212 /***********************************************************************
3213 Exposure Events
3214 ***********************************************************************/
3215
3216 \f
3217 static void
3218 frame_highlight (struct frame *f)
3219 {
3220 /* We used to only do this if Vx_no_window_manager was non-nil, but
3221 the ICCCM (section 4.1.6) says that the window's border pixmap
3222 and border pixel are window attributes which are "private to the
3223 client", so we can always change it to whatever we want. */
3224 block_input ();
3225 /* I recently started to get errors in this XSetWindowBorder, depending on
3226 the window-manager in use, tho something more is at play since I've been
3227 using that same window-manager binary for ever. Let's not crash just
3228 because of this (bug#9310). */
3229 x_catch_errors (FRAME_X_DISPLAY (f));
3230 XSetWindowBorder (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3231 f->output_data.x->border_pixel);
3232 x_uncatch_errors ();
3233 unblock_input ();
3234 x_update_cursor (f, 1);
3235 x_set_frame_alpha (f);
3236 }
3237
3238 static void
3239 frame_unhighlight (struct frame *f)
3240 {
3241 /* We used to only do this if Vx_no_window_manager was non-nil, but
3242 the ICCCM (section 4.1.6) says that the window's border pixmap
3243 and border pixel are window attributes which are "private to the
3244 client", so we can always change it to whatever we want. */
3245 block_input ();
3246 /* Same as above for XSetWindowBorder (bug#9310). */
3247 x_catch_errors (FRAME_X_DISPLAY (f));
3248 XSetWindowBorderPixmap (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3249 f->output_data.x->border_tile);
3250 x_uncatch_errors ();
3251 unblock_input ();
3252 x_update_cursor (f, 1);
3253 x_set_frame_alpha (f);
3254 }
3255
3256 /* The focus has changed. Update the frames as necessary to reflect
3257 the new situation. Note that we can't change the selected frame
3258 here, because the Lisp code we are interrupting might become confused.
3259 Each event gets marked with the frame in which it occurred, so the
3260 Lisp code can tell when the switch took place by examining the events. */
3261
3262 static void
3263 x_new_focus_frame (struct x_display_info *dpyinfo, struct frame *frame)
3264 {
3265 struct frame *old_focus = dpyinfo->x_focus_frame;
3266
3267 if (frame != dpyinfo->x_focus_frame)
3268 {
3269 /* Set this before calling other routines, so that they see
3270 the correct value of x_focus_frame. */
3271 dpyinfo->x_focus_frame = frame;
3272
3273 if (old_focus && old_focus->auto_lower)
3274 x_lower_frame (old_focus);
3275
3276 if (dpyinfo->x_focus_frame && dpyinfo->x_focus_frame->auto_raise)
3277 dpyinfo->x_pending_autoraise_frame = dpyinfo->x_focus_frame;
3278 else
3279 dpyinfo->x_pending_autoraise_frame = NULL;
3280 }
3281
3282 x_frame_rehighlight (dpyinfo);
3283 }
3284
3285 /* Handle FocusIn and FocusOut state changes for FRAME.
3286 If FRAME has focus and there exists more than one frame, puts
3287 a FOCUS_IN_EVENT into *BUFP. */
3288
3289 static void
3290 x_focus_changed (int type, int state, struct x_display_info *dpyinfo, struct frame *frame, struct input_event *bufp)
3291 {
3292 if (type == FocusIn)
3293 {
3294 if (dpyinfo->x_focus_event_frame != frame)
3295 {
3296 x_new_focus_frame (dpyinfo, frame);
3297 dpyinfo->x_focus_event_frame = frame;
3298
3299 /* Don't stop displaying the initial startup message
3300 for a switch-frame event we don't need. */
3301 /* When run as a daemon, Vterminal_frame is always NIL. */
3302 bufp->arg = (((NILP (Vterminal_frame)
3303 || ! FRAME_X_P (XFRAME (Vterminal_frame))
3304 || EQ (Fdaemonp (), Qt))
3305 && CONSP (Vframe_list)
3306 && !NILP (XCDR (Vframe_list)))
3307 ? Qt : Qnil);
3308 bufp->kind = FOCUS_IN_EVENT;
3309 XSETFRAME (bufp->frame_or_window, frame);
3310 }
3311
3312 frame->output_data.x->focus_state |= state;
3313
3314 #ifdef HAVE_X_I18N
3315 if (FRAME_XIC (frame))
3316 XSetICFocus (FRAME_XIC (frame));
3317 #endif
3318 }
3319 else if (type == FocusOut)
3320 {
3321 frame->output_data.x->focus_state &= ~state;
3322
3323 if (dpyinfo->x_focus_event_frame == frame)
3324 {
3325 dpyinfo->x_focus_event_frame = 0;
3326 x_new_focus_frame (dpyinfo, 0);
3327
3328 bufp->kind = FOCUS_OUT_EVENT;
3329 XSETFRAME (bufp->frame_or_window, frame);
3330 }
3331
3332 #ifdef HAVE_X_I18N
3333 if (FRAME_XIC (frame))
3334 XUnsetICFocus (FRAME_XIC (frame));
3335 #endif
3336 if (frame->pointer_invisible)
3337 XTtoggle_invisible_pointer (frame, 0);
3338 }
3339 }
3340
3341 /* Return the Emacs frame-object corresponding to an X window.
3342 It could be the frame's main window or an icon window. */
3343
3344 static struct frame *
3345 x_window_to_frame (struct x_display_info *dpyinfo, int wdesc)
3346 {
3347 Lisp_Object tail, frame;
3348 struct frame *f;
3349
3350 if (wdesc == None)
3351 return NULL;
3352
3353 FOR_EACH_FRAME (tail, frame)
3354 {
3355 f = XFRAME (frame);
3356 if (!FRAME_X_P (f) || FRAME_DISPLAY_INFO (f) != dpyinfo)
3357 continue;
3358 if (f->output_data.x->hourglass_window == wdesc)
3359 return f;
3360 #ifdef USE_X_TOOLKIT
3361 if ((f->output_data.x->edit_widget
3362 && XtWindow (f->output_data.x->edit_widget) == wdesc)
3363 /* A tooltip frame? */
3364 || (!f->output_data.x->edit_widget
3365 && FRAME_X_WINDOW (f) == wdesc)
3366 || f->output_data.x->icon_desc == wdesc)
3367 return f;
3368 #else /* not USE_X_TOOLKIT */
3369 #ifdef USE_GTK
3370 if (f->output_data.x->edit_widget)
3371 {
3372 GtkWidget *gwdesc = xg_win_to_widget (dpyinfo->display, wdesc);
3373 struct x_output *x = f->output_data.x;
3374 if (gwdesc != 0 && gwdesc == x->edit_widget)
3375 return f;
3376 }
3377 #endif /* USE_GTK */
3378 if (FRAME_X_WINDOW (f) == wdesc
3379 || f->output_data.x->icon_desc == wdesc)
3380 return f;
3381 #endif /* not USE_X_TOOLKIT */
3382 }
3383 return 0;
3384 }
3385
3386 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
3387
3388 /* Like x_window_to_frame but also compares the window with the widget's
3389 windows. */
3390
3391 static struct frame *
3392 x_any_window_to_frame (struct x_display_info *dpyinfo, int wdesc)
3393 {
3394 Lisp_Object tail, frame;
3395 struct frame *f, *found = NULL;
3396 struct x_output *x;
3397
3398 if (wdesc == None)
3399 return NULL;
3400
3401 FOR_EACH_FRAME (tail, frame)
3402 {
3403 if (found)
3404 break;
3405 f = XFRAME (frame);
3406 if (FRAME_X_P (f) && FRAME_DISPLAY_INFO (f) == dpyinfo)
3407 {
3408 /* This frame matches if the window is any of its widgets. */
3409 x = f->output_data.x;
3410 if (x->hourglass_window == wdesc)
3411 found = f;
3412 else if (x->widget)
3413 {
3414 #ifdef USE_GTK
3415 GtkWidget *gwdesc = xg_win_to_widget (dpyinfo->display, wdesc);
3416 if (gwdesc != 0
3417 && gtk_widget_get_toplevel (gwdesc) == x->widget)
3418 found = f;
3419 #else
3420 if (wdesc == XtWindow (x->widget)
3421 || wdesc == XtWindow (x->column_widget)
3422 || wdesc == XtWindow (x->edit_widget))
3423 found = f;
3424 /* Match if the window is this frame's menubar. */
3425 else if (lw_window_is_in_menubar (wdesc, x->menubar_widget))
3426 found = f;
3427 #endif
3428 }
3429 else if (FRAME_X_WINDOW (f) == wdesc)
3430 /* A tooltip frame. */
3431 found = f;
3432 }
3433 }
3434
3435 return found;
3436 }
3437
3438 /* Likewise, but consider only the menu bar widget. */
3439
3440 static struct frame *
3441 x_menubar_window_to_frame (struct x_display_info *dpyinfo,
3442 const XEvent *event)
3443 {
3444 Window wdesc = event->xany.window;
3445 Lisp_Object tail, frame;
3446 struct frame *f;
3447 struct x_output *x;
3448
3449 if (wdesc == None)
3450 return NULL;
3451
3452 FOR_EACH_FRAME (tail, frame)
3453 {
3454 f = XFRAME (frame);
3455 if (!FRAME_X_P (f) || FRAME_DISPLAY_INFO (f) != dpyinfo)
3456 continue;
3457 x = f->output_data.x;
3458 #ifdef USE_GTK
3459 if (x->menubar_widget && xg_event_is_for_menubar (f, event))
3460 return f;
3461 #else
3462 /* Match if the window is this frame's menubar. */
3463 if (x->menubar_widget
3464 && lw_window_is_in_menubar (wdesc, x->menubar_widget))
3465 return f;
3466 #endif
3467 }
3468 return 0;
3469 }
3470
3471 /* Return the frame whose principal (outermost) window is WDESC.
3472 If WDESC is some other (smaller) window, we return 0. */
3473
3474 struct frame *
3475 x_top_window_to_frame (struct x_display_info *dpyinfo, int wdesc)
3476 {
3477 Lisp_Object tail, frame;
3478 struct frame *f;
3479 struct x_output *x;
3480
3481 if (wdesc == None)
3482 return NULL;
3483
3484 FOR_EACH_FRAME (tail, frame)
3485 {
3486 f = XFRAME (frame);
3487 if (!FRAME_X_P (f) || FRAME_DISPLAY_INFO (f) != dpyinfo)
3488 continue;
3489 x = f->output_data.x;
3490
3491 if (x->widget)
3492 {
3493 /* This frame matches if the window is its topmost widget. */
3494 #ifdef USE_GTK
3495 GtkWidget *gwdesc = xg_win_to_widget (dpyinfo->display, wdesc);
3496 if (gwdesc == x->widget)
3497 return f;
3498 #else
3499 if (wdesc == XtWindow (x->widget))
3500 return f;
3501 #endif
3502 }
3503 else if (FRAME_X_WINDOW (f) == wdesc)
3504 /* Tooltip frame. */
3505 return f;
3506 }
3507 return 0;
3508 }
3509
3510 #else /* !USE_X_TOOLKIT && !USE_GTK */
3511
3512 #define x_any_window_to_frame(d, i) x_window_to_frame (d, i)
3513 #define x_top_window_to_frame(d, i) x_window_to_frame (d, i)
3514
3515 #endif /* USE_X_TOOLKIT || USE_GTK */
3516
3517 /* The focus may have changed. Figure out if it is a real focus change,
3518 by checking both FocusIn/Out and Enter/LeaveNotify events.
3519
3520 Returns FOCUS_IN_EVENT event in *BUFP. */
3521
3522 static void
3523 x_detect_focus_change (struct x_display_info *dpyinfo, struct frame *frame,
3524 const XEvent *event, struct input_event *bufp)
3525 {
3526 if (!frame)
3527 return;
3528
3529 switch (event->type)
3530 {
3531 case EnterNotify:
3532 case LeaveNotify:
3533 {
3534 struct frame *focus_frame = dpyinfo->x_focus_event_frame;
3535 int focus_state
3536 = focus_frame ? focus_frame->output_data.x->focus_state : 0;
3537
3538 if (event->xcrossing.detail != NotifyInferior
3539 && event->xcrossing.focus
3540 && ! (focus_state & FOCUS_EXPLICIT))
3541 x_focus_changed ((event->type == EnterNotify ? FocusIn : FocusOut),
3542 FOCUS_IMPLICIT,
3543 dpyinfo, frame, bufp);
3544 }
3545 break;
3546
3547 case FocusIn:
3548 case FocusOut:
3549 x_focus_changed (event->type,
3550 (event->xfocus.detail == NotifyPointer ?
3551 FOCUS_IMPLICIT : FOCUS_EXPLICIT),
3552 dpyinfo, frame, bufp);
3553 break;
3554
3555 case ClientMessage:
3556 if (event->xclient.message_type == dpyinfo->Xatom_XEMBED)
3557 {
3558 enum xembed_message msg = event->xclient.data.l[1];
3559 x_focus_changed ((msg == XEMBED_FOCUS_IN ? FocusIn : FocusOut),
3560 FOCUS_EXPLICIT, dpyinfo, frame, bufp);
3561 }
3562 break;
3563 }
3564 }
3565
3566
3567 #if !defined USE_X_TOOLKIT && !defined USE_GTK
3568 /* Handle an event saying the mouse has moved out of an Emacs frame. */
3569
3570 void
3571 x_mouse_leave (struct x_display_info *dpyinfo)
3572 {
3573 x_new_focus_frame (dpyinfo, dpyinfo->x_focus_event_frame);
3574 }
3575 #endif
3576
3577 /* The focus has changed, or we have redirected a frame's focus to
3578 another frame (this happens when a frame uses a surrogate
3579 mini-buffer frame). Shift the highlight as appropriate.
3580
3581 The FRAME argument doesn't necessarily have anything to do with which
3582 frame is being highlighted or un-highlighted; we only use it to find
3583 the appropriate X display info. */
3584
3585 static void
3586 XTframe_rehighlight (struct frame *frame)
3587 {
3588 x_frame_rehighlight (FRAME_DISPLAY_INFO (frame));
3589 }
3590
3591 static void
3592 x_frame_rehighlight (struct x_display_info *dpyinfo)
3593 {
3594 struct frame *old_highlight = dpyinfo->x_highlight_frame;
3595
3596 if (dpyinfo->x_focus_frame)
3597 {
3598 dpyinfo->x_highlight_frame
3599 = ((FRAMEP (FRAME_FOCUS_FRAME (dpyinfo->x_focus_frame)))
3600 ? XFRAME (FRAME_FOCUS_FRAME (dpyinfo->x_focus_frame))
3601 : dpyinfo->x_focus_frame);
3602 if (! FRAME_LIVE_P (dpyinfo->x_highlight_frame))
3603 {
3604 fset_focus_frame (dpyinfo->x_focus_frame, Qnil);
3605 dpyinfo->x_highlight_frame = dpyinfo->x_focus_frame;
3606 }
3607 }
3608 else
3609 dpyinfo->x_highlight_frame = 0;
3610
3611 if (dpyinfo->x_highlight_frame != old_highlight)
3612 {
3613 if (old_highlight)
3614 frame_unhighlight (old_highlight);
3615 if (dpyinfo->x_highlight_frame)
3616 frame_highlight (dpyinfo->x_highlight_frame);
3617 }
3618 }
3619
3620
3621 \f
3622 /* Keyboard processing - modifier keys, vendor-specific keysyms, etc. */
3623
3624 /* Initialize mode_switch_bit and modifier_meaning. */
3625 static void
3626 x_find_modifier_meanings (struct x_display_info *dpyinfo)
3627 {
3628 int min_code, max_code;
3629 KeySym *syms;
3630 int syms_per_code;
3631 XModifierKeymap *mods;
3632
3633 dpyinfo->meta_mod_mask = 0;
3634 dpyinfo->shift_lock_mask = 0;
3635 dpyinfo->alt_mod_mask = 0;
3636 dpyinfo->super_mod_mask = 0;
3637 dpyinfo->hyper_mod_mask = 0;
3638
3639 XDisplayKeycodes (dpyinfo->display, &min_code, &max_code);
3640
3641 syms = XGetKeyboardMapping (dpyinfo->display,
3642 min_code, max_code - min_code + 1,
3643 &syms_per_code);
3644 mods = XGetModifierMapping (dpyinfo->display);
3645
3646 /* Scan the modifier table to see which modifier bits the Meta and
3647 Alt keysyms are on. */
3648 {
3649 int row, col; /* The row and column in the modifier table. */
3650 int found_alt_or_meta;
3651
3652 for (row = 3; row < 8; row++)
3653 {
3654 found_alt_or_meta = 0;
3655 for (col = 0; col < mods->max_keypermod; col++)
3656 {
3657 KeyCode code = mods->modifiermap[(row * mods->max_keypermod) + col];
3658
3659 /* Zeroes are used for filler. Skip them. */
3660 if (code == 0)
3661 continue;
3662
3663 /* Are any of this keycode's keysyms a meta key? */
3664 {
3665 int code_col;
3666
3667 for (code_col = 0; code_col < syms_per_code; code_col++)
3668 {
3669 int sym = syms[((code - min_code) * syms_per_code) + code_col];
3670
3671 switch (sym)
3672 {
3673 case XK_Meta_L:
3674 case XK_Meta_R:
3675 found_alt_or_meta = 1;
3676 dpyinfo->meta_mod_mask |= (1 << row);
3677 break;
3678
3679 case XK_Alt_L:
3680 case XK_Alt_R:
3681 found_alt_or_meta = 1;
3682 dpyinfo->alt_mod_mask |= (1 << row);
3683 break;
3684
3685 case XK_Hyper_L:
3686 case XK_Hyper_R:
3687 if (!found_alt_or_meta)
3688 dpyinfo->hyper_mod_mask |= (1 << row);
3689 code_col = syms_per_code;
3690 col = mods->max_keypermod;
3691 break;
3692
3693 case XK_Super_L:
3694 case XK_Super_R:
3695 if (!found_alt_or_meta)
3696 dpyinfo->super_mod_mask |= (1 << row);
3697 code_col = syms_per_code;
3698 col = mods->max_keypermod;
3699 break;
3700
3701 case XK_Shift_Lock:
3702 /* Ignore this if it's not on the lock modifier. */
3703 if (!found_alt_or_meta && ((1 << row) == LockMask))
3704 dpyinfo->shift_lock_mask = LockMask;
3705 code_col = syms_per_code;
3706 col = mods->max_keypermod;
3707 break;
3708 }
3709 }
3710 }
3711 }
3712 }
3713 }
3714
3715 /* If we couldn't find any meta keys, accept any alt keys as meta keys. */
3716 if (! dpyinfo->meta_mod_mask)
3717 {
3718 dpyinfo->meta_mod_mask = dpyinfo->alt_mod_mask;
3719 dpyinfo->alt_mod_mask = 0;
3720 }
3721
3722 /* If some keys are both alt and meta,
3723 make them just meta, not alt. */
3724 if (dpyinfo->alt_mod_mask & dpyinfo->meta_mod_mask)
3725 {
3726 dpyinfo->alt_mod_mask &= ~dpyinfo->meta_mod_mask;
3727 }
3728
3729 XFree (syms);
3730 XFreeModifiermap (mods);
3731 }
3732
3733 /* Convert between the modifier bits X uses and the modifier bits
3734 Emacs uses. */
3735
3736 int
3737 x_x_to_emacs_modifiers (struct x_display_info *dpyinfo, int state)
3738 {
3739 int mod_meta = meta_modifier;
3740 int mod_alt = alt_modifier;
3741 int mod_hyper = hyper_modifier;
3742 int mod_super = super_modifier;
3743 Lisp_Object tem;
3744
3745 tem = Fget (Vx_alt_keysym, Qmodifier_value);
3746 if (INTEGERP (tem)) mod_alt = XINT (tem) & INT_MAX;
3747 tem = Fget (Vx_meta_keysym, Qmodifier_value);
3748 if (INTEGERP (tem)) mod_meta = XINT (tem) & INT_MAX;
3749 tem = Fget (Vx_hyper_keysym, Qmodifier_value);
3750 if (INTEGERP (tem)) mod_hyper = XINT (tem) & INT_MAX;
3751 tem = Fget (Vx_super_keysym, Qmodifier_value);
3752 if (INTEGERP (tem)) mod_super = XINT (tem) & INT_MAX;
3753
3754 return ( ((state & (ShiftMask | dpyinfo->shift_lock_mask)) ? shift_modifier : 0)
3755 | ((state & ControlMask) ? ctrl_modifier : 0)
3756 | ((state & dpyinfo->meta_mod_mask) ? mod_meta : 0)
3757 | ((state & dpyinfo->alt_mod_mask) ? mod_alt : 0)
3758 | ((state & dpyinfo->super_mod_mask) ? mod_super : 0)
3759 | ((state & dpyinfo->hyper_mod_mask) ? mod_hyper : 0));
3760 }
3761
3762 static int
3763 x_emacs_to_x_modifiers (struct x_display_info *dpyinfo, EMACS_INT state)
3764 {
3765 EMACS_INT mod_meta = meta_modifier;
3766 EMACS_INT mod_alt = alt_modifier;
3767 EMACS_INT mod_hyper = hyper_modifier;
3768 EMACS_INT mod_super = super_modifier;
3769
3770 Lisp_Object tem;
3771
3772 tem = Fget (Vx_alt_keysym, Qmodifier_value);
3773 if (INTEGERP (tem)) mod_alt = XINT (tem);
3774 tem = Fget (Vx_meta_keysym, Qmodifier_value);
3775 if (INTEGERP (tem)) mod_meta = XINT (tem);
3776 tem = Fget (Vx_hyper_keysym, Qmodifier_value);
3777 if (INTEGERP (tem)) mod_hyper = XINT (tem);
3778 tem = Fget (Vx_super_keysym, Qmodifier_value);
3779 if (INTEGERP (tem)) mod_super = XINT (tem);
3780
3781
3782 return ( ((state & mod_alt) ? dpyinfo->alt_mod_mask : 0)
3783 | ((state & mod_super) ? dpyinfo->super_mod_mask : 0)
3784 | ((state & mod_hyper) ? dpyinfo->hyper_mod_mask : 0)
3785 | ((state & shift_modifier) ? ShiftMask : 0)
3786 | ((state & ctrl_modifier) ? ControlMask : 0)
3787 | ((state & mod_meta) ? dpyinfo->meta_mod_mask : 0));
3788 }
3789
3790 /* Convert a keysym to its name. */
3791
3792 char *
3793 x_get_keysym_name (int keysym)
3794 {
3795 char *value;
3796
3797 block_input ();
3798 value = XKeysymToString (keysym);
3799 unblock_input ();
3800
3801 return value;
3802 }
3803
3804 /* Mouse clicks and mouse movement. Rah.
3805
3806 Formerly, we used PointerMotionHintMask (in standard_event_mask)
3807 so that we would have to call XQueryPointer after each MotionNotify
3808 event to ask for another such event. However, this made mouse tracking
3809 slow, and there was a bug that made it eventually stop.
3810
3811 Simply asking for MotionNotify all the time seems to work better.
3812
3813 In order to avoid asking for motion events and then throwing most
3814 of them away or busy-polling the server for mouse positions, we ask
3815 the server for pointer motion hints. This means that we get only
3816 one event per group of mouse movements. "Groups" are delimited by
3817 other kinds of events (focus changes and button clicks, for
3818 example), or by XQueryPointer calls; when one of these happens, we
3819 get another MotionNotify event the next time the mouse moves. This
3820 is at least as efficient as getting motion events when mouse
3821 tracking is on, and I suspect only negligibly worse when tracking
3822 is off. */
3823
3824 /* Prepare a mouse-event in *RESULT for placement in the input queue.
3825
3826 If the event is a button press, then note that we have grabbed
3827 the mouse. */
3828
3829 static Lisp_Object
3830 construct_mouse_click (struct input_event *result,
3831 const XButtonEvent *event,
3832 struct frame *f)
3833 {
3834 /* Make the event type NO_EVENT; we'll change that when we decide
3835 otherwise. */
3836 result->kind = MOUSE_CLICK_EVENT;
3837 result->code = event->button - Button1;
3838 result->timestamp = event->time;
3839 result->modifiers = (x_x_to_emacs_modifiers (FRAME_DISPLAY_INFO (f),
3840 event->state)
3841 | (event->type == ButtonRelease
3842 ? up_modifier
3843 : down_modifier));
3844
3845 XSETINT (result->x, event->x);
3846 XSETINT (result->y, event->y);
3847 XSETFRAME (result->frame_or_window, f);
3848 result->arg = Qnil;
3849 return Qnil;
3850 }
3851
3852 /* Function to report a mouse movement to the mainstream Emacs code.
3853 The input handler calls this.
3854
3855 We have received a mouse movement event, which is given in *event.
3856 If the mouse is over a different glyph than it was last time, tell
3857 the mainstream emacs code by setting mouse_moved. If not, ask for
3858 another motion event, so we can check again the next time it moves. */
3859
3860 static int
3861 note_mouse_movement (struct frame *frame, const XMotionEvent *event)
3862 {
3863 XRectangle *r;
3864 struct x_display_info *dpyinfo;
3865
3866 if (!FRAME_X_OUTPUT (frame))
3867 return 0;
3868
3869 dpyinfo = FRAME_DISPLAY_INFO (frame);
3870 dpyinfo->last_mouse_movement_time = event->time;
3871 dpyinfo->last_mouse_motion_frame = frame;
3872 dpyinfo->last_mouse_motion_x = event->x;
3873 dpyinfo->last_mouse_motion_y = event->y;
3874
3875 if (event->window != FRAME_X_WINDOW (frame))
3876 {
3877 frame->mouse_moved = 1;
3878 dpyinfo->last_mouse_scroll_bar = NULL;
3879 note_mouse_highlight (frame, -1, -1);
3880 dpyinfo->last_mouse_glyph_frame = NULL;
3881 return 1;
3882 }
3883
3884
3885 /* Has the mouse moved off the glyph it was on at the last sighting? */
3886 r = &dpyinfo->last_mouse_glyph;
3887 if (frame != dpyinfo->last_mouse_glyph_frame
3888 || event->x < r->x || event->x >= r->x + r->width
3889 || event->y < r->y || event->y >= r->y + r->height)
3890 {
3891 frame->mouse_moved = 1;
3892 dpyinfo->last_mouse_scroll_bar = NULL;
3893 note_mouse_highlight (frame, event->x, event->y);
3894 /* Remember which glyph we're now on. */
3895 remember_mouse_glyph (frame, event->x, event->y, r);
3896 dpyinfo->last_mouse_glyph_frame = frame;
3897 return 1;
3898 }
3899
3900 return 0;
3901 }
3902
3903 /* Return the current position of the mouse.
3904 *FP should be a frame which indicates which display to ask about.
3905
3906 If the mouse movement started in a scroll bar, set *FP, *BAR_WINDOW,
3907 and *PART to the frame, window, and scroll bar part that the mouse
3908 is over. Set *X and *Y to the portion and whole of the mouse's
3909 position on the scroll bar.
3910
3911 If the mouse movement started elsewhere, set *FP to the frame the
3912 mouse is on, *BAR_WINDOW to nil, and *X and *Y to the character cell
3913 the mouse is over.
3914
3915 Set *TIMESTAMP to the server time-stamp for the time at which the mouse
3916 was at this position.
3917
3918 Don't store anything if we don't have a valid set of values to report.
3919
3920 This clears the mouse_moved flag, so we can wait for the next mouse
3921 movement. */
3922
3923 static void
3924 XTmouse_position (struct frame **fp, int insist, Lisp_Object *bar_window,
3925 enum scroll_bar_part *part, Lisp_Object *x, Lisp_Object *y,
3926 Time *timestamp)
3927 {
3928 struct frame *f1;
3929 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (*fp);
3930
3931 block_input ();
3932
3933 if (dpyinfo->last_mouse_scroll_bar && insist == 0)
3934 x_scroll_bar_report_motion (fp, bar_window, part, x, y, timestamp);
3935 else
3936 {
3937 Window root;
3938 int root_x, root_y;
3939
3940 Window dummy_window;
3941 int dummy;
3942
3943 Lisp_Object frame, tail;
3944
3945 /* Clear the mouse-moved flag for every frame on this display. */
3946 FOR_EACH_FRAME (tail, frame)
3947 if (FRAME_X_P (XFRAME (frame))
3948 && FRAME_X_DISPLAY (XFRAME (frame)) == FRAME_X_DISPLAY (*fp))
3949 XFRAME (frame)->mouse_moved = 0;
3950
3951 dpyinfo->last_mouse_scroll_bar = NULL;
3952
3953 /* Figure out which root window we're on. */
3954 XQueryPointer (FRAME_X_DISPLAY (*fp),
3955 DefaultRootWindow (FRAME_X_DISPLAY (*fp)),
3956
3957 /* The root window which contains the pointer. */
3958 &root,
3959
3960 /* Trash which we can't trust if the pointer is on
3961 a different screen. */
3962 &dummy_window,
3963
3964 /* The position on that root window. */
3965 &root_x, &root_y,
3966
3967 /* More trash we can't trust. */
3968 &dummy, &dummy,
3969
3970 /* Modifier keys and pointer buttons, about which
3971 we don't care. */
3972 (unsigned int *) &dummy);
3973
3974 /* Now we have a position on the root; find the innermost window
3975 containing the pointer. */
3976 {
3977 Window win, child;
3978 int win_x, win_y;
3979 int parent_x = 0, parent_y = 0;
3980
3981 win = root;
3982
3983 /* XTranslateCoordinates can get errors if the window
3984 structure is changing at the same time this function
3985 is running. So at least we must not crash from them. */
3986
3987 x_catch_errors (FRAME_X_DISPLAY (*fp));
3988
3989 if (x_mouse_grabbed (dpyinfo))
3990 {
3991 /* If mouse was grabbed on a frame, give coords for that frame
3992 even if the mouse is now outside it. */
3993 XTranslateCoordinates (FRAME_X_DISPLAY (*fp),
3994
3995 /* From-window. */
3996 root,
3997
3998 /* To-window. */
3999 FRAME_X_WINDOW (dpyinfo->last_mouse_frame),
4000
4001 /* From-position, to-position. */
4002 root_x, root_y, &win_x, &win_y,
4003
4004 /* Child of win. */
4005 &child);
4006 f1 = dpyinfo->last_mouse_frame;
4007 }
4008 else
4009 {
4010 while (1)
4011 {
4012 XTranslateCoordinates (FRAME_X_DISPLAY (*fp),
4013
4014 /* From-window, to-window. */
4015 root, win,
4016
4017 /* From-position, to-position. */
4018 root_x, root_y, &win_x, &win_y,
4019
4020 /* Child of win. */
4021 &child);
4022
4023 if (child == None || child == win)
4024 break;
4025 #ifdef USE_GTK
4026 /* We don't wan't to know the innermost window. We
4027 want the edit window. For non-Gtk+ the innermost
4028 window is the edit window. For Gtk+ it might not
4029 be. It might be the tool bar for example. */
4030 if (x_window_to_frame (dpyinfo, win))
4031 break;
4032 #endif
4033 win = child;
4034 parent_x = win_x;
4035 parent_y = win_y;
4036 }
4037
4038 /* Now we know that:
4039 win is the innermost window containing the pointer
4040 (XTC says it has no child containing the pointer),
4041 win_x and win_y are the pointer's position in it
4042 (XTC did this the last time through), and
4043 parent_x and parent_y are the pointer's position in win's parent.
4044 (They are what win_x and win_y were when win was child.
4045 If win is the root window, it has no parent, and
4046 parent_{x,y} are invalid, but that's okay, because we'll
4047 never use them in that case.) */
4048
4049 #ifdef USE_GTK
4050 /* We don't wan't to know the innermost window. We
4051 want the edit window. */
4052 f1 = x_window_to_frame (dpyinfo, win);
4053 #else
4054 /* Is win one of our frames? */
4055 f1 = x_any_window_to_frame (dpyinfo, win);
4056 #endif
4057
4058 #ifdef USE_X_TOOLKIT
4059 /* If we end up with the menu bar window, say it's not
4060 on the frame. */
4061 if (f1 != NULL
4062 && f1->output_data.x->menubar_widget
4063 && win == XtWindow (f1->output_data.x->menubar_widget))
4064 f1 = NULL;
4065 #endif /* USE_X_TOOLKIT */
4066 }
4067
4068 if (x_had_errors_p (FRAME_X_DISPLAY (*fp)))
4069 f1 = 0;
4070
4071 x_uncatch_errors ();
4072
4073 /* If not, is it one of our scroll bars? */
4074 if (! f1)
4075 {
4076 struct scroll_bar *bar;
4077
4078 bar = x_window_to_scroll_bar (FRAME_X_DISPLAY (*fp), win);
4079
4080 if (bar)
4081 {
4082 f1 = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
4083 win_x = parent_x;
4084 win_y = parent_y;
4085 }
4086 }
4087
4088 if (f1 == 0 && insist > 0)
4089 f1 = SELECTED_FRAME ();
4090
4091 if (f1)
4092 {
4093 /* Ok, we found a frame. Store all the values.
4094 last_mouse_glyph is a rectangle used to reduce the
4095 generation of mouse events. To not miss any motion
4096 events, we must divide the frame into rectangles of the
4097 size of the smallest character that could be displayed
4098 on it, i.e. into the same rectangles that matrices on
4099 the frame are divided into. */
4100
4101 /* FIXME: what if F1 is not an X frame? */
4102 dpyinfo = FRAME_DISPLAY_INFO (f1);
4103 remember_mouse_glyph (f1, win_x, win_y, &dpyinfo->last_mouse_glyph);
4104 dpyinfo->last_mouse_glyph_frame = f1;
4105
4106 *bar_window = Qnil;
4107 *part = 0;
4108 *fp = f1;
4109 XSETINT (*x, win_x);
4110 XSETINT (*y, win_y);
4111 *timestamp = dpyinfo->last_mouse_movement_time;
4112 }
4113 }
4114 }
4115
4116 unblock_input ();
4117 }
4118
4119
4120 \f
4121 /***********************************************************************
4122 Scroll bars
4123 ***********************************************************************/
4124
4125 /* Scroll bar support. */
4126
4127 /* Given an X window ID and a DISPLAY, find the struct scroll_bar which
4128 manages it.
4129 This can be called in GC, so we have to make sure to strip off mark
4130 bits. */
4131
4132 static struct scroll_bar *
4133 x_window_to_scroll_bar (Display *display, Window window_id)
4134 {
4135 Lisp_Object tail, frame;
4136
4137 #if defined (USE_GTK) && defined (USE_TOOLKIT_SCROLL_BARS)
4138 window_id = (Window) xg_get_scroll_id_for_window (display, window_id);
4139 #endif /* USE_GTK && USE_TOOLKIT_SCROLL_BARS */
4140
4141 FOR_EACH_FRAME (tail, frame)
4142 {
4143 Lisp_Object bar, condemned;
4144
4145 if (! FRAME_X_P (XFRAME (frame)))
4146 continue;
4147
4148 /* Scan this frame's scroll bar list for a scroll bar with the
4149 right window ID. */
4150 condemned = FRAME_CONDEMNED_SCROLL_BARS (XFRAME (frame));
4151 for (bar = FRAME_SCROLL_BARS (XFRAME (frame));
4152 /* This trick allows us to search both the ordinary and
4153 condemned scroll bar lists with one loop. */
4154 ! NILP (bar) || (bar = condemned,
4155 condemned = Qnil,
4156 ! NILP (bar));
4157 bar = XSCROLL_BAR (bar)->next)
4158 if (XSCROLL_BAR (bar)->x_window == window_id &&
4159 FRAME_X_DISPLAY (XFRAME (frame)) == display)
4160 return XSCROLL_BAR (bar);
4161 }
4162
4163 return NULL;
4164 }
4165
4166
4167 #if defined USE_LUCID
4168
4169 /* Return the Lucid menu bar WINDOW is part of. Return null
4170 if WINDOW is not part of a menu bar. */
4171
4172 static Widget
4173 x_window_to_menu_bar (Window window)
4174 {
4175 Lisp_Object tail, frame;
4176
4177 FOR_EACH_FRAME (tail, frame)
4178 if (FRAME_X_P (XFRAME (frame)))
4179 {
4180 Widget menu_bar = XFRAME (frame)->output_data.x->menubar_widget;
4181
4182 if (menu_bar && xlwmenu_window_p (menu_bar, window))
4183 return menu_bar;
4184 }
4185 return NULL;
4186 }
4187
4188 #endif /* USE_LUCID */
4189
4190 \f
4191 /************************************************************************
4192 Toolkit scroll bars
4193 ************************************************************************/
4194
4195 #ifdef USE_TOOLKIT_SCROLL_BARS
4196
4197 static void x_send_scroll_bar_event (Lisp_Object, int, int, int);
4198
4199 /* Lisp window being scrolled. Set when starting to interact with
4200 a toolkit scroll bar, reset to nil when ending the interaction. */
4201
4202 static Lisp_Object window_being_scrolled;
4203
4204 /* Whether this is an Xaw with arrow-scrollbars. This should imply
4205 that movements of 1/20 of the screen size are mapped to up/down. */
4206
4207 #ifndef USE_GTK
4208 /* Id of action hook installed for scroll bars. */
4209
4210 static XtActionHookId action_hook_id;
4211
4212 static Boolean xaw3d_arrow_scroll;
4213
4214 /* Whether the drag scrolling maintains the mouse at the top of the
4215 thumb. If not, resizing the thumb needs to be done more carefully
4216 to avoid jerkiness. */
4217
4218 static Boolean xaw3d_pick_top;
4219
4220 /* Action hook installed via XtAppAddActionHook when toolkit scroll
4221 bars are used.. The hook is responsible for detecting when
4222 the user ends an interaction with the scroll bar, and generates
4223 a `end-scroll' SCROLL_BAR_CLICK_EVENT' event if so. */
4224
4225 static void
4226 xt_action_hook (Widget widget, XtPointer client_data, String action_name,
4227 XEvent *event, String *params, Cardinal *num_params)
4228 {
4229 int scroll_bar_p;
4230 const char *end_action;
4231
4232 #ifdef USE_MOTIF
4233 scroll_bar_p = XmIsScrollBar (widget);
4234 end_action = "Release";
4235 #else /* !USE_MOTIF i.e. use Xaw */
4236 scroll_bar_p = XtIsSubclass (widget, scrollbarWidgetClass);
4237 end_action = "EndScroll";
4238 #endif /* USE_MOTIF */
4239
4240 if (scroll_bar_p
4241 && strcmp (action_name, end_action) == 0
4242 && WINDOWP (window_being_scrolled))
4243 {
4244 struct window *w;
4245 struct scroll_bar *bar;
4246
4247 x_send_scroll_bar_event (window_being_scrolled,
4248 scroll_bar_end_scroll, 0, 0);
4249 w = XWINDOW (window_being_scrolled);
4250 bar = XSCROLL_BAR (w->vertical_scroll_bar);
4251
4252 if (bar->dragging != -1)
4253 {
4254 bar->dragging = -1;
4255 /* The thumb size is incorrect while dragging: fix it. */
4256 set_vertical_scroll_bar (w);
4257 }
4258 window_being_scrolled = Qnil;
4259 #if defined (USE_LUCID)
4260 bar->last_seen_part = scroll_bar_nowhere;
4261 #endif
4262 /* Xt timeouts no longer needed. */
4263 toolkit_scroll_bar_interaction = 0;
4264 }
4265 }
4266 #endif /* not USE_GTK */
4267
4268 /* Send a client message with message type Xatom_Scrollbar for a
4269 scroll action to the frame of WINDOW. PART is a value identifying
4270 the part of the scroll bar that was clicked on. PORTION is the
4271 amount to scroll of a whole of WHOLE. */
4272
4273 static void
4274 x_send_scroll_bar_event (Lisp_Object window, int part, int portion, int whole)
4275 {
4276 XEvent event;
4277 XClientMessageEvent *ev = &event.xclient;
4278 struct window *w = XWINDOW (window);
4279 struct frame *f = XFRAME (w->frame);
4280 intptr_t iw = (intptr_t) w;
4281 enum { BITS_PER_INTPTR = CHAR_BIT * sizeof iw };
4282 verify (BITS_PER_INTPTR <= 64);
4283 int sign_shift = BITS_PER_INTPTR - 32;
4284
4285 block_input ();
4286
4287 /* Construct a ClientMessage event to send to the frame. */
4288 ev->type = ClientMessage;
4289 ev->message_type = FRAME_DISPLAY_INFO (f)->Xatom_Scrollbar;
4290 ev->display = FRAME_X_DISPLAY (f);
4291 ev->window = FRAME_X_WINDOW (f);
4292 ev->format = 32;
4293
4294 /* A 32-bit X client on a 64-bit X server can pass a window pointer
4295 as-is. A 64-bit client on a 32-bit X server is in trouble
4296 because a pointer does not fit and would be truncated while
4297 passing through the server. So use two slots and hope that X12
4298 will resolve such issues someday. */
4299 ev->data.l[0] = iw >> 31 >> 1;
4300 ev->data.l[1] = sign_shift <= 0 ? iw : iw << sign_shift >> sign_shift;
4301 ev->data.l[2] = part;
4302 ev->data.l[3] = portion;
4303 ev->data.l[4] = whole;
4304
4305 /* Make Xt timeouts work while the scroll bar is active. */
4306 #ifdef USE_X_TOOLKIT
4307 toolkit_scroll_bar_interaction = 1;
4308 x_activate_timeout_atimer ();
4309 #endif
4310
4311 /* Setting the event mask to zero means that the message will
4312 be sent to the client that created the window, and if that
4313 window no longer exists, no event will be sent. */
4314 XSendEvent (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), False, 0, &event);
4315 unblock_input ();
4316 }
4317
4318
4319 /* Transform a scroll bar ClientMessage EVENT to an Emacs input event
4320 in *IEVENT. */
4321
4322 static void
4323 x_scroll_bar_to_input_event (const XEvent *event,
4324 struct input_event *ievent)
4325 {
4326 const XClientMessageEvent *ev = &event->xclient;
4327 Lisp_Object window;
4328 struct window *w;
4329
4330 /* See the comment in the function above. */
4331 intptr_t iw0 = ev->data.l[0];
4332 intptr_t iw1 = ev->data.l[1];
4333 intptr_t iw = (iw0 << 31 << 1) + (iw1 & 0xffffffffu);
4334 w = (struct window *) iw;
4335
4336 XSETWINDOW (window, w);
4337
4338 ievent->kind = SCROLL_BAR_CLICK_EVENT;
4339 ievent->frame_or_window = window;
4340 ievent->arg = Qnil;
4341 #ifdef USE_GTK
4342 ievent->timestamp = CurrentTime;
4343 #else
4344 ievent->timestamp =
4345 XtLastTimestampProcessed (FRAME_X_DISPLAY (XFRAME (w->frame)));
4346 #endif
4347 ievent->code = 0;
4348 ievent->part = ev->data.l[2];
4349 ievent->x = make_number (ev->data.l[3]);
4350 ievent->y = make_number (ev->data.l[4]);
4351 ievent->modifiers = 0;
4352 }
4353
4354
4355 #ifdef USE_MOTIF
4356
4357 /* Minimum and maximum values used for Motif scroll bars. */
4358
4359 #define XM_SB_MAX 10000000
4360
4361
4362 /* Scroll bar callback for Motif scroll bars. WIDGET is the scroll
4363 bar widget. CLIENT_DATA is a pointer to the scroll_bar structure.
4364 CALL_DATA is a pointer to a XmScrollBarCallbackStruct. */
4365
4366 static void
4367 xm_scroll_callback (Widget widget, XtPointer client_data, XtPointer call_data)
4368 {
4369 struct scroll_bar *bar = client_data;
4370 XmScrollBarCallbackStruct *cs = call_data;
4371 int part = -1, whole = 0, portion = 0;
4372
4373 switch (cs->reason)
4374 {
4375 case XmCR_DECREMENT:
4376 bar->dragging = -1;
4377 part = scroll_bar_up_arrow;
4378 break;
4379
4380 case XmCR_INCREMENT:
4381 bar->dragging = -1;
4382 part = scroll_bar_down_arrow;
4383 break;
4384
4385 case XmCR_PAGE_DECREMENT:
4386 bar->dragging = -1;
4387 part = scroll_bar_above_handle;
4388 break;
4389
4390 case XmCR_PAGE_INCREMENT:
4391 bar->dragging = -1;
4392 part = scroll_bar_below_handle;
4393 break;
4394
4395 case XmCR_TO_TOP:
4396 bar->dragging = -1;
4397 part = scroll_bar_to_top;
4398 break;
4399
4400 case XmCR_TO_BOTTOM:
4401 bar->dragging = -1;
4402 part = scroll_bar_to_bottom;
4403 break;
4404
4405 case XmCR_DRAG:
4406 {
4407 int slider_size;
4408
4409 /* Get the slider size. */
4410 block_input ();
4411 XtVaGetValues (widget, XmNsliderSize, &slider_size, NULL);
4412 unblock_input ();
4413
4414 whole = XM_SB_MAX - slider_size;
4415 portion = min (cs->value, whole);
4416 part = scroll_bar_handle;
4417 bar->dragging = cs->value;
4418 }
4419 break;
4420
4421 case XmCR_VALUE_CHANGED:
4422 break;
4423 };
4424
4425 if (part >= 0)
4426 {
4427 window_being_scrolled = bar->window;
4428 x_send_scroll_bar_event (bar->window, part, portion, whole);
4429 }
4430 }
4431
4432 #elif defined USE_GTK
4433
4434 /* Scroll bar callback for GTK scroll bars. WIDGET is the scroll
4435 bar widget. DATA is a pointer to the scroll_bar structure. */
4436
4437 static gboolean
4438 xg_scroll_callback (GtkRange *range,
4439 GtkScrollType scroll,
4440 gdouble value,
4441 gpointer user_data)
4442 {
4443 struct scroll_bar *bar = user_data;
4444 gdouble position;
4445 int part = -1, whole = 0, portion = 0;
4446 GtkAdjustment *adj = GTK_ADJUSTMENT (gtk_range_get_adjustment (range));
4447 struct frame *f = g_object_get_data (G_OBJECT (range), XG_FRAME_DATA);
4448
4449 if (xg_ignore_gtk_scrollbar) return FALSE;
4450 position = gtk_adjustment_get_value (adj);
4451
4452
4453 switch (scroll)
4454 {
4455 case GTK_SCROLL_JUMP:
4456 /* Buttons 1 2 or 3 must be grabbed. */
4457 if (FRAME_DISPLAY_INFO (f)->grabbed != 0
4458 && FRAME_DISPLAY_INFO (f)->grabbed < (1 << 4))
4459 {
4460 part = scroll_bar_handle;
4461 whole = gtk_adjustment_get_upper (adj) -
4462 gtk_adjustment_get_page_size (adj);
4463 portion = min ((int)position, whole);
4464 bar->dragging = portion;
4465 }
4466 break;
4467 case GTK_SCROLL_STEP_BACKWARD:
4468 part = scroll_bar_up_arrow;
4469 bar->dragging = -1;
4470 break;
4471 case GTK_SCROLL_STEP_FORWARD:
4472 part = scroll_bar_down_arrow;
4473 bar->dragging = -1;
4474 break;
4475 case GTK_SCROLL_PAGE_BACKWARD:
4476 part = scroll_bar_above_handle;
4477 bar->dragging = -1;
4478 break;
4479 case GTK_SCROLL_PAGE_FORWARD:
4480 part = scroll_bar_below_handle;
4481 bar->dragging = -1;
4482 break;
4483 }
4484
4485 if (part >= 0)
4486 {
4487 window_being_scrolled = bar->window;
4488 x_send_scroll_bar_event (bar->window, part, portion, whole);
4489 }
4490
4491 return FALSE;
4492 }
4493
4494 /* Callback for button release. Sets dragging to -1 when dragging is done. */
4495
4496 static gboolean
4497 xg_end_scroll_callback (GtkWidget *widget,
4498 GdkEventButton *event,
4499 gpointer user_data)
4500 {
4501 struct scroll_bar *bar = user_data;
4502 bar->dragging = -1;
4503 if (WINDOWP (window_being_scrolled))
4504 {
4505 x_send_scroll_bar_event (window_being_scrolled,
4506 scroll_bar_end_scroll, 0, 0);
4507 window_being_scrolled = Qnil;
4508 }
4509
4510 return FALSE;
4511 }
4512
4513
4514 #else /* not USE_GTK and not USE_MOTIF */
4515
4516 /* Xaw scroll bar callback. Invoked when the thumb is dragged.
4517 WIDGET is the scroll bar widget. CLIENT_DATA is a pointer to the
4518 scroll bar struct. CALL_DATA is a pointer to a float saying where
4519 the thumb is. */
4520
4521 static void
4522 xaw_jump_callback (Widget widget, XtPointer client_data, XtPointer call_data)
4523 {
4524 struct scroll_bar *bar = client_data;
4525 float *top_addr = call_data;
4526 float top = *top_addr;
4527 float shown;
4528 int whole, portion, height;
4529 enum scroll_bar_part part;
4530
4531 /* Get the size of the thumb, a value between 0 and 1. */
4532 block_input ();
4533 XtVaGetValues (widget, XtNshown, &shown, XtNheight, &height, NULL);
4534 unblock_input ();
4535
4536 whole = 10000000;
4537 portion = shown < 1 ? top * whole : 0;
4538
4539 if (shown < 1 && (eabs (top + shown - 1) < 1.0f / height))
4540 /* Some derivatives of Xaw refuse to shrink the thumb when you reach
4541 the bottom, so we force the scrolling whenever we see that we're
4542 too close to the bottom (in x_set_toolkit_scroll_bar_thumb
4543 we try to ensure that we always stay two pixels away from the
4544 bottom). */
4545 part = scroll_bar_down_arrow;
4546 else
4547 part = scroll_bar_handle;
4548
4549 window_being_scrolled = bar->window;
4550 bar->dragging = portion;
4551 bar->last_seen_part = part;
4552 x_send_scroll_bar_event (bar->window, part, portion, whole);
4553 }
4554
4555
4556 /* Xaw scroll bar callback. Invoked for incremental scrolling.,
4557 i.e. line or page up or down. WIDGET is the Xaw scroll bar
4558 widget. CLIENT_DATA is a pointer to the scroll_bar structure for
4559 the scroll bar. CALL_DATA is an integer specifying the action that
4560 has taken place. Its magnitude is in the range 0..height of the
4561 scroll bar. Negative values mean scroll towards buffer start.
4562 Values < height of scroll bar mean line-wise movement. */
4563
4564 static void
4565 xaw_scroll_callback (Widget widget, XtPointer client_data, XtPointer call_data)
4566 {
4567 struct scroll_bar *bar = client_data;
4568 /* The position really is stored cast to a pointer. */
4569 int position = (intptr_t) call_data;
4570 Dimension height;
4571 enum scroll_bar_part part;
4572
4573 /* Get the height of the scroll bar. */
4574 block_input ();
4575 XtVaGetValues (widget, XtNheight, &height, NULL);
4576 unblock_input ();
4577
4578 if (eabs (position) >= height)
4579 part = (position < 0) ? scroll_bar_above_handle : scroll_bar_below_handle;
4580
4581 /* If Xaw3d was compiled with ARROW_SCROLLBAR,
4582 it maps line-movement to call_data = max(5, height/20). */
4583 else if (xaw3d_arrow_scroll && eabs (position) <= max (5, height / 20))
4584 part = (position < 0) ? scroll_bar_up_arrow : scroll_bar_down_arrow;
4585 else
4586 part = scroll_bar_move_ratio;
4587
4588 window_being_scrolled = bar->window;
4589 bar->dragging = -1;
4590 bar->last_seen_part = part;
4591 x_send_scroll_bar_event (bar->window, part, position, height);
4592 }
4593
4594 #endif /* not USE_GTK and not USE_MOTIF */
4595
4596 #define SCROLL_BAR_NAME "verticalScrollBar"
4597
4598 /* Create the widget for scroll bar BAR on frame F. Record the widget
4599 and X window of the scroll bar in BAR. */
4600
4601 #ifdef USE_GTK
4602 static void
4603 x_create_toolkit_scroll_bar (struct frame *f, struct scroll_bar *bar)
4604 {
4605 const char *scroll_bar_name = SCROLL_BAR_NAME;
4606
4607 block_input ();
4608 xg_create_scroll_bar (f, bar, G_CALLBACK (xg_scroll_callback),
4609 G_CALLBACK (xg_end_scroll_callback),
4610 scroll_bar_name);
4611 unblock_input ();
4612 }
4613
4614 #else /* not USE_GTK */
4615
4616 static void
4617 x_create_toolkit_scroll_bar (struct frame *f, struct scroll_bar *bar)
4618 {
4619 Window xwindow;
4620 Widget widget;
4621 Arg av[20];
4622 int ac = 0;
4623 const char *scroll_bar_name = SCROLL_BAR_NAME;
4624 unsigned long pixel;
4625
4626 block_input ();
4627
4628 #ifdef USE_MOTIF
4629 /* Set resources. Create the widget. */
4630 XtSetArg (av[ac], XtNmappedWhenManaged, False); ++ac;
4631 XtSetArg (av[ac], XmNminimum, 0); ++ac;
4632 XtSetArg (av[ac], XmNmaximum, XM_SB_MAX); ++ac;
4633 XtSetArg (av[ac], XmNorientation, XmVERTICAL); ++ac;
4634 XtSetArg (av[ac], XmNprocessingDirection, XmMAX_ON_BOTTOM), ++ac;
4635 XtSetArg (av[ac], XmNincrement, 1); ++ac;
4636 XtSetArg (av[ac], XmNpageIncrement, 1); ++ac;
4637
4638 pixel = f->output_data.x->scroll_bar_foreground_pixel;
4639 if (pixel != -1)
4640 {
4641 XtSetArg (av[ac], XmNforeground, pixel);
4642 ++ac;
4643 }
4644
4645 pixel = f->output_data.x->scroll_bar_background_pixel;
4646 if (pixel != -1)
4647 {
4648 XtSetArg (av[ac], XmNbackground, pixel);
4649 ++ac;
4650 }
4651
4652 widget = XmCreateScrollBar (f->output_data.x->edit_widget,
4653 (char *) scroll_bar_name, av, ac);
4654
4655 /* Add one callback for everything that can happen. */
4656 XtAddCallback (widget, XmNdecrementCallback, xm_scroll_callback,
4657 (XtPointer) bar);
4658 XtAddCallback (widget, XmNdragCallback, xm_scroll_callback,
4659 (XtPointer) bar);
4660 XtAddCallback (widget, XmNincrementCallback, xm_scroll_callback,
4661 (XtPointer) bar);
4662 XtAddCallback (widget, XmNpageDecrementCallback, xm_scroll_callback,
4663 (XtPointer) bar);
4664 XtAddCallback (widget, XmNpageIncrementCallback, xm_scroll_callback,
4665 (XtPointer) bar);
4666 XtAddCallback (widget, XmNtoBottomCallback, xm_scroll_callback,
4667 (XtPointer) bar);
4668 XtAddCallback (widget, XmNtoTopCallback, xm_scroll_callback,
4669 (XtPointer) bar);
4670
4671 /* Realize the widget. Only after that is the X window created. */
4672 XtRealizeWidget (widget);
4673
4674 /* Set the cursor to an arrow. I didn't find a resource to do that.
4675 And I'm wondering why it hasn't an arrow cursor by default. */
4676 XDefineCursor (XtDisplay (widget), XtWindow (widget),
4677 f->output_data.x->nontext_cursor);
4678
4679 #else /* !USE_MOTIF i.e. use Xaw */
4680
4681 /* Set resources. Create the widget. The background of the
4682 Xaw3d scroll bar widget is a little bit light for my taste.
4683 We don't alter it here to let users change it according
4684 to their taste with `emacs*verticalScrollBar.background: xxx'. */
4685 XtSetArg (av[ac], XtNmappedWhenManaged, False); ++ac;
4686 XtSetArg (av[ac], XtNorientation, XtorientVertical); ++ac;
4687 /* For smoother scrolling with Xaw3d -sm */
4688 /* XtSetArg (av[ac], XtNpickTop, True); ++ac; */
4689
4690 pixel = f->output_data.x->scroll_bar_foreground_pixel;
4691 if (pixel != -1)
4692 {
4693 XtSetArg (av[ac], XtNforeground, pixel);
4694 ++ac;
4695 }
4696
4697 pixel = f->output_data.x->scroll_bar_background_pixel;
4698 if (pixel != -1)
4699 {
4700 XtSetArg (av[ac], XtNbackground, pixel);
4701 ++ac;
4702 }
4703
4704 /* Top/bottom shadow colors. */
4705
4706 /* Allocate them, if necessary. */
4707 if (f->output_data.x->scroll_bar_top_shadow_pixel == -1)
4708 {
4709 pixel = f->output_data.x->scroll_bar_background_pixel;
4710 if (pixel != -1)
4711 {
4712 if (!x_alloc_lighter_color (f, FRAME_X_DISPLAY (f),
4713 FRAME_X_COLORMAP (f),
4714 &pixel, 1.2, 0x8000))
4715 pixel = -1;
4716 f->output_data.x->scroll_bar_top_shadow_pixel = pixel;
4717 }
4718 }
4719 if (f->output_data.x->scroll_bar_bottom_shadow_pixel == -1)
4720 {
4721 pixel = f->output_data.x->scroll_bar_background_pixel;
4722 if (pixel != -1)
4723 {
4724 if (!x_alloc_lighter_color (f, FRAME_X_DISPLAY (f),
4725 FRAME_X_COLORMAP (f),
4726 &pixel, 0.6, 0x4000))
4727 pixel = -1;
4728 f->output_data.x->scroll_bar_bottom_shadow_pixel = pixel;
4729 }
4730 }
4731
4732 #ifdef XtNbeNiceToColormap
4733 /* Tell the toolkit about them. */
4734 if (f->output_data.x->scroll_bar_top_shadow_pixel == -1
4735 || f->output_data.x->scroll_bar_bottom_shadow_pixel == -1)
4736 /* We tried to allocate a color for the top/bottom shadow, and
4737 failed, so tell Xaw3d to use dithering instead. */
4738 /* But only if we have a small colormap. Xaw3d can allocate nice
4739 colors itself. */
4740 {
4741 XtSetArg (av[ac], XtNbeNiceToColormap,
4742 DefaultDepthOfScreen (FRAME_X_SCREEN (f)) < 16);
4743 ++ac;
4744 }
4745 else
4746 /* Tell what colors Xaw3d should use for the top/bottom shadow, to
4747 be more consistent with other emacs 3d colors, and since Xaw3d is
4748 not good at dealing with allocation failure. */
4749 {
4750 /* This tells Xaw3d to use real colors instead of dithering for
4751 the shadows. */
4752 XtSetArg (av[ac], XtNbeNiceToColormap, False);
4753 ++ac;
4754
4755 /* Specify the colors. */
4756 pixel = f->output_data.x->scroll_bar_top_shadow_pixel;
4757 if (pixel != -1)
4758 {
4759 XtSetArg (av[ac], XtNtopShadowPixel, pixel);
4760 ++ac;
4761 }
4762 pixel = f->output_data.x->scroll_bar_bottom_shadow_pixel;
4763 if (pixel != -1)
4764 {
4765 XtSetArg (av[ac], XtNbottomShadowPixel, pixel);
4766 ++ac;
4767 }
4768 }
4769 #endif
4770
4771 widget = XtCreateWidget (scroll_bar_name, scrollbarWidgetClass,
4772 f->output_data.x->edit_widget, av, ac);
4773
4774 {
4775 char const *initial = "";
4776 char const *val = initial;
4777 XtVaGetValues (widget, XtNscrollVCursor, (XtPointer) &val,
4778 #ifdef XtNarrowScrollbars
4779 XtNarrowScrollbars, (XtPointer) &xaw3d_arrow_scroll,
4780 #endif
4781 XtNpickTop, (XtPointer) &xaw3d_pick_top, NULL);
4782 if (xaw3d_arrow_scroll || val == initial)
4783 { /* ARROW_SCROLL */
4784 xaw3d_arrow_scroll = True;
4785 /* Isn't that just a personal preference ? --Stef */
4786 XtVaSetValues (widget, XtNcursorName, "top_left_arrow", NULL);
4787 }
4788 }
4789
4790 /* Define callbacks. */
4791 XtAddCallback (widget, XtNjumpProc, xaw_jump_callback, (XtPointer) bar);
4792 XtAddCallback (widget, XtNscrollProc, xaw_scroll_callback,
4793 (XtPointer) bar);
4794
4795 /* Realize the widget. Only after that is the X window created. */
4796 XtRealizeWidget (widget);
4797
4798 #endif /* !USE_MOTIF */
4799
4800 /* Install an action hook that lets us detect when the user
4801 finishes interacting with a scroll bar. */
4802 if (action_hook_id == 0)
4803 action_hook_id = XtAppAddActionHook (Xt_app_con, xt_action_hook, 0);
4804
4805 /* Remember X window and widget in the scroll bar vector. */
4806 SET_SCROLL_BAR_X_WIDGET (bar, widget);
4807 xwindow = XtWindow (widget);
4808 bar->x_window = xwindow;
4809
4810 unblock_input ();
4811 }
4812 #endif /* not USE_GTK */
4813
4814
4815 /* Set the thumb size and position of scroll bar BAR. We are currently
4816 displaying PORTION out of a whole WHOLE, and our position POSITION. */
4817
4818 #ifdef USE_GTK
4819 static void
4820 x_set_toolkit_scroll_bar_thumb (struct scroll_bar *bar, int portion, int position, int whole)
4821 {
4822 xg_set_toolkit_scroll_bar_thumb (bar, portion, position, whole);
4823 }
4824
4825 #else /* not USE_GTK */
4826 static void
4827 x_set_toolkit_scroll_bar_thumb (struct scroll_bar *bar, int portion, int position,
4828 int whole)
4829 {
4830 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
4831 Widget widget = SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f), bar);
4832 float top, shown;
4833
4834 block_input ();
4835
4836 #ifdef USE_MOTIF
4837
4838 if (scroll_bar_adjust_thumb_portion_p)
4839 {
4840 /* We use an estimate of 30 chars per line rather than the real
4841 `portion' value. This has the disadvantage that the thumb size
4842 is not very representative, but it makes our life a lot easier.
4843 Otherwise, we have to constantly adjust the thumb size, which
4844 we can't always do quickly enough: while dragging, the size of
4845 the thumb might prevent the user from dragging the thumb all the
4846 way to the end. but Motif and some versions of Xaw3d don't allow
4847 updating the thumb size while dragging. Also, even if we can update
4848 its size, the update will often happen too late.
4849 If you don't believe it, check out revision 1.650 of xterm.c to see
4850 what hoops we were going through and the still poor behavior we got. */
4851 portion = WINDOW_TOTAL_LINES (XWINDOW (bar->window)) * 30;
4852 /* When the thumb is at the bottom, position == whole.
4853 So we need to increase `whole' to make space for the thumb. */
4854 whole += portion;
4855 }
4856
4857 if (whole <= 0)
4858 top = 0, shown = 1;
4859 else
4860 {
4861 top = (float) position / whole;
4862 shown = (float) portion / whole;
4863 }
4864
4865 if (bar->dragging == -1)
4866 {
4867 int size, value;
4868
4869 /* Slider size. Must be in the range [1 .. MAX - MIN] where MAX
4870 is the scroll bar's maximum and MIN is the scroll bar's minimum
4871 value. */
4872 size = clip_to_bounds (1, shown * XM_SB_MAX, XM_SB_MAX);
4873
4874 /* Position. Must be in the range [MIN .. MAX - SLIDER_SIZE]. */
4875 value = top * XM_SB_MAX;
4876 value = min (value, XM_SB_MAX - size);
4877
4878 XmScrollBarSetValues (widget, value, size, 0, 0, False);
4879 }
4880 #else /* !USE_MOTIF i.e. use Xaw */
4881
4882 if (whole == 0)
4883 top = 0, shown = 1;
4884 else
4885 {
4886 top = (float) position / whole;
4887 shown = (float) portion / whole;
4888 }
4889
4890 {
4891 float old_top, old_shown;
4892 Dimension height;
4893 XtVaGetValues (widget,
4894 XtNtopOfThumb, &old_top,
4895 XtNshown, &old_shown,
4896 XtNheight, &height,
4897 NULL);
4898
4899 /* Massage the top+shown values. */
4900 if (bar->dragging == -1 || bar->last_seen_part == scroll_bar_down_arrow)
4901 top = max (0, min (1, top));
4902 else
4903 top = old_top;
4904 #if ! defined (HAVE_XAW3D)
4905 /* With Xaw, 'top' values too closer to 1.0 may
4906 cause the thumb to disappear. Fix that. */
4907 top = min (top, 0.99f);
4908 #endif
4909 /* Keep two pixels available for moving the thumb down. */
4910 shown = max (0, min (1 - top - (2.0f / height), shown));
4911 #if ! defined (HAVE_XAW3D)
4912 /* Likewise with too small 'shown'. */
4913 shown = max (shown, 0.01f);
4914 #endif
4915
4916 /* If the call to XawScrollbarSetThumb below doesn't seem to
4917 work, check that 'NARROWPROTO' is defined in src/config.h.
4918 If this is not so, most likely you need to fix configure. */
4919 if (top != old_top || shown != old_shown)
4920 {
4921 if (bar->dragging == -1)
4922 XawScrollbarSetThumb (widget, top, shown);
4923 else
4924 {
4925 /* Try to make the scrolling a tad smoother. */
4926 if (!xaw3d_pick_top)
4927 shown = min (shown, old_shown);
4928
4929 XawScrollbarSetThumb (widget, top, shown);
4930 }
4931 }
4932 }
4933 #endif /* !USE_MOTIF */
4934
4935 unblock_input ();
4936 }
4937 #endif /* not USE_GTK */
4938
4939 #endif /* USE_TOOLKIT_SCROLL_BARS */
4940
4941
4942 \f
4943 /************************************************************************
4944 Scroll bars, general
4945 ************************************************************************/
4946
4947 /* Create a scroll bar and return the scroll bar vector for it. W is
4948 the Emacs window on which to create the scroll bar. TOP, LEFT,
4949 WIDTH and HEIGHT are the pixel coordinates and dimensions of the
4950 scroll bar. */
4951
4952 static struct scroll_bar *
4953 x_scroll_bar_create (struct window *w, int top, int left, int width, int height)
4954 {
4955 struct frame *f = XFRAME (w->frame);
4956 struct scroll_bar *bar
4957 = ALLOCATE_PSEUDOVECTOR (struct scroll_bar, x_window, PVEC_OTHER);
4958 Lisp_Object barobj;
4959
4960 block_input ();
4961
4962 #ifdef USE_TOOLKIT_SCROLL_BARS
4963 x_create_toolkit_scroll_bar (f, bar);
4964 #else /* not USE_TOOLKIT_SCROLL_BARS */
4965 {
4966 XSetWindowAttributes a;
4967 unsigned long mask;
4968 Window window;
4969
4970 a.background_pixel = f->output_data.x->scroll_bar_background_pixel;
4971 if (a.background_pixel == -1)
4972 a.background_pixel = FRAME_BACKGROUND_PIXEL (f);
4973
4974 a.event_mask = (ButtonPressMask | ButtonReleaseMask
4975 | ButtonMotionMask | PointerMotionHintMask
4976 | ExposureMask);
4977 a.cursor = FRAME_DISPLAY_INFO (f)->vertical_scroll_bar_cursor;
4978
4979 mask = (CWBackPixel | CWEventMask | CWCursor);
4980
4981 /* Clear the area of W that will serve as a scroll bar. This is
4982 for the case that a window has been split horizontally. In
4983 this case, no clear_frame is generated to reduce flickering. */
4984 if (width > 0 && window_box_height (w) > 0)
4985 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
4986 left, top, width, window_box_height (w));
4987
4988 window = XCreateWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
4989 /* Position and size of scroll bar. */
4990 left, top, width, height,
4991 /* Border width, depth, class, and visual. */
4992 0,
4993 CopyFromParent,
4994 CopyFromParent,
4995 CopyFromParent,
4996 /* Attributes. */
4997 mask, &a);
4998 bar->x_window = window;
4999 }
5000 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5001
5002 XSETWINDOW (bar->window, w);
5003 bar->top = top;
5004 bar->left = left;
5005 bar->width = width;
5006 bar->height = height;
5007 bar->start = 0;
5008 bar->end = 0;
5009 bar->dragging = -1;
5010 #if defined (USE_TOOLKIT_SCROLL_BARS) && defined (USE_LUCID)
5011 bar->last_seen_part = scroll_bar_nowhere;
5012 #endif
5013
5014 /* Add bar to its frame's list of scroll bars. */
5015 bar->next = FRAME_SCROLL_BARS (f);
5016 bar->prev = Qnil;
5017 XSETVECTOR (barobj, bar);
5018 fset_scroll_bars (f, barobj);
5019 if (!NILP (bar->next))
5020 XSETVECTOR (XSCROLL_BAR (bar->next)->prev, bar);
5021
5022 /* Map the window/widget. */
5023 #ifdef USE_TOOLKIT_SCROLL_BARS
5024 {
5025 #ifdef USE_GTK
5026 xg_update_scrollbar_pos (f, bar->x_window, top,
5027 left,width, max (height, 1));
5028 #else /* not USE_GTK */
5029 Widget scroll_bar = SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f), bar);
5030 XtConfigureWidget (scroll_bar, left, top, width, max (height, 1), 0);
5031 XtMapWidget (scroll_bar);
5032 #endif /* not USE_GTK */
5033 }
5034 #else /* not USE_TOOLKIT_SCROLL_BARS */
5035 XMapRaised (FRAME_X_DISPLAY (f), bar->x_window);
5036 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5037
5038 unblock_input ();
5039 return bar;
5040 }
5041
5042
5043 #ifndef USE_TOOLKIT_SCROLL_BARS
5044
5045 /* Draw BAR's handle in the proper position.
5046
5047 If the handle is already drawn from START to END, don't bother
5048 redrawing it, unless REBUILD is non-zero; in that case, always
5049 redraw it. (REBUILD is handy for drawing the handle after expose
5050 events.)
5051
5052 Normally, we want to constrain the start and end of the handle to
5053 fit inside its rectangle, but if the user is dragging the scroll
5054 bar handle, we want to let them drag it down all the way, so that
5055 the bar's top is as far down as it goes; otherwise, there's no way
5056 to move to the very end of the buffer. */
5057
5058 static void
5059 x_scroll_bar_set_handle (struct scroll_bar *bar, int start, int end, int rebuild)
5060 {
5061 bool dragging = bar->dragging != -1;
5062 Window w = bar->x_window;
5063 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
5064 GC gc = f->output_data.x->normal_gc;
5065
5066 /* If the display is already accurate, do nothing. */
5067 if (! rebuild
5068 && start == bar->start
5069 && end == bar->end)
5070 return;
5071
5072 block_input ();
5073
5074 {
5075 int inside_width = VERTICAL_SCROLL_BAR_INSIDE_WIDTH (f, bar->width);
5076 int inside_height = VERTICAL_SCROLL_BAR_INSIDE_HEIGHT (f, bar->height);
5077 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, bar->height);
5078
5079 /* Make sure the values are reasonable, and try to preserve
5080 the distance between start and end. */
5081 {
5082 int length = end - start;
5083
5084 if (start < 0)
5085 start = 0;
5086 else if (start > top_range)
5087 start = top_range;
5088 end = start + length;
5089
5090 if (end < start)
5091 end = start;
5092 else if (end > top_range && ! dragging)
5093 end = top_range;
5094 }
5095
5096 /* Store the adjusted setting in the scroll bar. */
5097 bar->start = start;
5098 bar->end = end;
5099
5100 /* Clip the end position, just for display. */
5101 if (end > top_range)
5102 end = top_range;
5103
5104 /* Draw bottom positions VERTICAL_SCROLL_BAR_MIN_HANDLE pixels
5105 below top positions, to make sure the handle is always at least
5106 that many pixels tall. */
5107 end += VERTICAL_SCROLL_BAR_MIN_HANDLE;
5108
5109 /* Draw the empty space above the handle. Note that we can't clear
5110 zero-height areas; that means "clear to end of window." */
5111 if (start > 0)
5112 x_clear_area (FRAME_X_DISPLAY (f), w,
5113 VERTICAL_SCROLL_BAR_LEFT_BORDER,
5114 VERTICAL_SCROLL_BAR_TOP_BORDER,
5115 inside_width, start);
5116
5117 /* Change to proper foreground color if one is specified. */
5118 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
5119 XSetForeground (FRAME_X_DISPLAY (f), gc,
5120 f->output_data.x->scroll_bar_foreground_pixel);
5121
5122 /* Draw the handle itself. */
5123 XFillRectangle (FRAME_X_DISPLAY (f), w, gc,
5124 /* x, y, width, height */
5125 VERTICAL_SCROLL_BAR_LEFT_BORDER,
5126 VERTICAL_SCROLL_BAR_TOP_BORDER + start,
5127 inside_width, end - start);
5128
5129 /* Restore the foreground color of the GC if we changed it above. */
5130 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
5131 XSetForeground (FRAME_X_DISPLAY (f), gc,
5132 FRAME_FOREGROUND_PIXEL (f));
5133
5134 /* Draw the empty space below the handle. Note that we can't
5135 clear zero-height areas; that means "clear to end of window." */
5136 if (end < inside_height)
5137 x_clear_area (FRAME_X_DISPLAY (f), w,
5138 VERTICAL_SCROLL_BAR_LEFT_BORDER,
5139 VERTICAL_SCROLL_BAR_TOP_BORDER + end,
5140 inside_width, inside_height - end);
5141 }
5142
5143 unblock_input ();
5144 }
5145
5146 #endif /* !USE_TOOLKIT_SCROLL_BARS */
5147
5148 /* Destroy scroll bar BAR, and set its Emacs window's scroll bar to
5149 nil. */
5150
5151 static void
5152 x_scroll_bar_remove (struct scroll_bar *bar)
5153 {
5154 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
5155 block_input ();
5156
5157 #ifdef USE_TOOLKIT_SCROLL_BARS
5158 #ifdef USE_GTK
5159 xg_remove_scroll_bar (f, bar->x_window);
5160 #else /* not USE_GTK */
5161 XtDestroyWidget (SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f), bar));
5162 #endif /* not USE_GTK */
5163 #else
5164 XDestroyWindow (FRAME_X_DISPLAY (f), bar->x_window);
5165 #endif
5166
5167 /* Dissociate this scroll bar from its window. */
5168 wset_vertical_scroll_bar (XWINDOW (bar->window), Qnil);
5169
5170 unblock_input ();
5171 }
5172
5173
5174 /* Set the handle of the vertical scroll bar for WINDOW to indicate
5175 that we are displaying PORTION characters out of a total of WHOLE
5176 characters, starting at POSITION. If WINDOW has no scroll bar,
5177 create one. */
5178
5179 static void
5180 XTset_vertical_scroll_bar (struct window *w, int portion, int whole, int position)
5181 {
5182 struct frame *f = XFRAME (w->frame);
5183 Lisp_Object barobj;
5184 struct scroll_bar *bar;
5185 int top, height, left, width;
5186 int window_y, window_height;
5187
5188 /* Get window dimensions. */
5189 window_box (w, ANY_AREA, 0, &window_y, 0, &window_height);
5190 top = window_y;
5191 height = window_height;
5192
5193 /* Compute the left edge and the width of the scroll bar area. */
5194 left = WINDOW_SCROLL_BAR_AREA_X (w);
5195 width = WINDOW_SCROLL_BAR_AREA_WIDTH (w);
5196
5197 /* Does the scroll bar exist yet? */
5198 if (NILP (w->vertical_scroll_bar))
5199 {
5200 if (width > 0 && height > 0)
5201 {
5202 block_input ();
5203 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5204 left, top, width, height);
5205 unblock_input ();
5206 }
5207
5208 bar = x_scroll_bar_create (w, top, left, width, max (height, 1));
5209 }
5210 else
5211 {
5212 /* It may just need to be moved and resized. */
5213 unsigned int mask = 0;
5214
5215 bar = XSCROLL_BAR (w->vertical_scroll_bar);
5216
5217 block_input ();
5218
5219 if (left != bar->left)
5220 mask |= CWX;
5221 if (top != bar->top)
5222 mask |= CWY;
5223 if (width != bar->width)
5224 mask |= CWWidth;
5225 if (height != bar->height)
5226 mask |= CWHeight;
5227
5228 #ifdef USE_TOOLKIT_SCROLL_BARS
5229
5230 /* Move/size the scroll bar widget. */
5231 if (mask)
5232 {
5233 /* Since toolkit scroll bars are smaller than the space reserved
5234 for them on the frame, we have to clear "under" them. */
5235 if (width > 0 && height > 0)
5236 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5237 left, top, width, height);
5238 #ifdef USE_GTK
5239 xg_update_scrollbar_pos (f, bar->x_window, top,
5240 left, width, max (height, 1));
5241 #else /* not USE_GTK */
5242 XtConfigureWidget (SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f), bar),
5243 left, top, width, max (height, 1), 0);
5244 #endif /* not USE_GTK */
5245 }
5246 #else /* not USE_TOOLKIT_SCROLL_BARS */
5247
5248 /* Move/size the scroll bar window. */
5249 if (mask)
5250 {
5251 XWindowChanges wc;
5252
5253 wc.x = left;
5254 wc.y = top;
5255 wc.width = width;
5256 wc.height = height;
5257 XConfigureWindow (FRAME_X_DISPLAY (f), bar->x_window,
5258 mask, &wc);
5259 }
5260
5261 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5262
5263 /* Remember new settings. */
5264 bar->left = left;
5265 bar->top = top;
5266 bar->width = width;
5267 bar->height = height;
5268
5269 unblock_input ();
5270 }
5271
5272 #ifdef USE_TOOLKIT_SCROLL_BARS
5273 x_set_toolkit_scroll_bar_thumb (bar, portion, position, whole);
5274 #else /* not USE_TOOLKIT_SCROLL_BARS */
5275 /* Set the scroll bar's current state, unless we're currently being
5276 dragged. */
5277 if (bar->dragging == -1)
5278 {
5279 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, height);
5280
5281 if (whole == 0)
5282 x_scroll_bar_set_handle (bar, 0, top_range, 0);
5283 else
5284 {
5285 int start = ((double) position * top_range) / whole;
5286 int end = ((double) (position + portion) * top_range) / whole;
5287 x_scroll_bar_set_handle (bar, start, end, 0);
5288 }
5289 }
5290 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5291
5292 XSETVECTOR (barobj, bar);
5293 wset_vertical_scroll_bar (w, barobj);
5294 }
5295
5296
5297 /* The following three hooks are used when we're doing a thorough
5298 redisplay of the frame. We don't explicitly know which scroll bars
5299 are going to be deleted, because keeping track of when windows go
5300 away is a real pain - "Can you say set-window-configuration, boys
5301 and girls?" Instead, we just assert at the beginning of redisplay
5302 that *all* scroll bars are to be removed, and then save a scroll bar
5303 from the fiery pit when we actually redisplay its window. */
5304
5305 /* Arrange for all scroll bars on FRAME to be removed at the next call
5306 to `*judge_scroll_bars_hook'. A scroll bar may be spared if
5307 `*redeem_scroll_bar_hook' is applied to its window before the judgment. */
5308
5309 static void
5310 XTcondemn_scroll_bars (struct frame *frame)
5311 {
5312 /* Transfer all the scroll bars to FRAME_CONDEMNED_SCROLL_BARS. */
5313 while (! NILP (FRAME_SCROLL_BARS (frame)))
5314 {
5315 Lisp_Object bar;
5316 bar = FRAME_SCROLL_BARS (frame);
5317 fset_scroll_bars (frame, XSCROLL_BAR (bar)->next);
5318 XSCROLL_BAR (bar)->next = FRAME_CONDEMNED_SCROLL_BARS (frame);
5319 XSCROLL_BAR (bar)->prev = Qnil;
5320 if (! NILP (FRAME_CONDEMNED_SCROLL_BARS (frame)))
5321 XSCROLL_BAR (FRAME_CONDEMNED_SCROLL_BARS (frame))->prev = bar;
5322 fset_condemned_scroll_bars (frame, bar);
5323 }
5324 }
5325
5326
5327 /* Un-mark WINDOW's scroll bar for deletion in this judgment cycle.
5328 Note that WINDOW isn't necessarily condemned at all. */
5329
5330 static void
5331 XTredeem_scroll_bar (struct window *window)
5332 {
5333 struct scroll_bar *bar;
5334 struct frame *f;
5335 Lisp_Object barobj;
5336
5337 /* We can't redeem this window's scroll bar if it doesn't have one. */
5338 if (NILP (window->vertical_scroll_bar))
5339 emacs_abort ();
5340
5341 bar = XSCROLL_BAR (window->vertical_scroll_bar);
5342
5343 /* Unlink it from the condemned list. */
5344 f = XFRAME (WINDOW_FRAME (window));
5345 if (NILP (bar->prev))
5346 {
5347 /* If the prev pointer is nil, it must be the first in one of
5348 the lists. */
5349 if (EQ (FRAME_SCROLL_BARS (f), window->vertical_scroll_bar))
5350 /* It's not condemned. Everything's fine. */
5351 return;
5352 else if (EQ (FRAME_CONDEMNED_SCROLL_BARS (f),
5353 window->vertical_scroll_bar))
5354 fset_condemned_scroll_bars (f, bar->next);
5355 else
5356 /* If its prev pointer is nil, it must be at the front of
5357 one or the other! */
5358 emacs_abort ();
5359 }
5360 else
5361 XSCROLL_BAR (bar->prev)->next = bar->next;
5362
5363 if (! NILP (bar->next))
5364 XSCROLL_BAR (bar->next)->prev = bar->prev;
5365
5366 bar->next = FRAME_SCROLL_BARS (f);
5367 bar->prev = Qnil;
5368 XSETVECTOR (barobj, bar);
5369 fset_scroll_bars (f, barobj);
5370 if (! NILP (bar->next))
5371 XSETVECTOR (XSCROLL_BAR (bar->next)->prev, bar);
5372 }
5373
5374 /* Remove all scroll bars on FRAME that haven't been saved since the
5375 last call to `*condemn_scroll_bars_hook'. */
5376
5377 static void
5378 XTjudge_scroll_bars (struct frame *f)
5379 {
5380 Lisp_Object bar, next;
5381
5382 bar = FRAME_CONDEMNED_SCROLL_BARS (f);
5383
5384 /* Clear out the condemned list now so we won't try to process any
5385 more events on the hapless scroll bars. */
5386 fset_condemned_scroll_bars (f, Qnil);
5387
5388 for (; ! NILP (bar); bar = next)
5389 {
5390 struct scroll_bar *b = XSCROLL_BAR (bar);
5391
5392 x_scroll_bar_remove (b);
5393
5394 next = b->next;
5395 b->next = b->prev = Qnil;
5396 }
5397
5398 /* Now there should be no references to the condemned scroll bars,
5399 and they should get garbage-collected. */
5400 }
5401
5402
5403 #ifndef USE_TOOLKIT_SCROLL_BARS
5404 /* Handle an Expose or GraphicsExpose event on a scroll bar. This
5405 is a no-op when using toolkit scroll bars.
5406
5407 This may be called from a signal handler, so we have to ignore GC
5408 mark bits. */
5409
5410 static void
5411 x_scroll_bar_expose (struct scroll_bar *bar, const XEvent *event)
5412 {
5413 Window w = bar->x_window;
5414 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
5415 GC gc = f->output_data.x->normal_gc;
5416
5417 block_input ();
5418
5419 x_scroll_bar_set_handle (bar, bar->start, bar->end, 1);
5420
5421 /* Switch to scroll bar foreground color. */
5422 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
5423 XSetForeground (FRAME_X_DISPLAY (f), gc,
5424 f->output_data.x->scroll_bar_foreground_pixel);
5425
5426 /* Draw a one-pixel border just inside the edges of the scroll bar. */
5427 XDrawRectangle (FRAME_X_DISPLAY (f), w, gc,
5428 /* x, y, width, height */
5429 0, 0, bar->width - 1, bar->height - 1);
5430
5431 /* Restore the foreground color of the GC if we changed it above. */
5432 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
5433 XSetForeground (FRAME_X_DISPLAY (f), gc,
5434 FRAME_FOREGROUND_PIXEL (f));
5435
5436 unblock_input ();
5437
5438 }
5439 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5440
5441 /* Handle a mouse click on the scroll bar BAR. If *EMACS_EVENT's kind
5442 is set to something other than NO_EVENT, it is enqueued.
5443
5444 This may be called from a signal handler, so we have to ignore GC
5445 mark bits. */
5446
5447
5448 static void
5449 x_scroll_bar_handle_click (struct scroll_bar *bar,
5450 const XEvent *event,
5451 struct input_event *emacs_event)
5452 {
5453 if (! WINDOWP (bar->window))
5454 emacs_abort ();
5455
5456 emacs_event->kind = SCROLL_BAR_CLICK_EVENT;
5457 emacs_event->code = event->xbutton.button - Button1;
5458 emacs_event->modifiers
5459 = (x_x_to_emacs_modifiers (FRAME_DISPLAY_INFO
5460 (XFRAME (WINDOW_FRAME (XWINDOW (bar->window)))),
5461 event->xbutton.state)
5462 | (event->type == ButtonRelease
5463 ? up_modifier
5464 : down_modifier));
5465 emacs_event->frame_or_window = bar->window;
5466 emacs_event->arg = Qnil;
5467 emacs_event->timestamp = event->xbutton.time;
5468 {
5469 int top_range
5470 = VERTICAL_SCROLL_BAR_TOP_RANGE (f, bar->height);
5471 int y = event->xbutton.y - VERTICAL_SCROLL_BAR_TOP_BORDER;
5472
5473 if (y < 0) y = 0;
5474 if (y > top_range) y = top_range;
5475
5476 if (y < bar->start)
5477 emacs_event->part = scroll_bar_above_handle;
5478 else if (y < bar->end + VERTICAL_SCROLL_BAR_MIN_HANDLE)
5479 emacs_event->part = scroll_bar_handle;
5480 else
5481 emacs_event->part = scroll_bar_below_handle;
5482
5483 #ifndef USE_TOOLKIT_SCROLL_BARS
5484 /* If the user has released the handle, set it to its final position. */
5485 if (event->type == ButtonRelease && bar->dragging != -1)
5486 {
5487 int new_start = y - bar->dragging;
5488 int new_end = new_start + bar->end - bar->start;
5489
5490 x_scroll_bar_set_handle (bar, new_start, new_end, 0);
5491 bar->dragging = -1;
5492 }
5493 #endif
5494
5495 XSETINT (emacs_event->x, y);
5496 XSETINT (emacs_event->y, top_range);
5497 }
5498 }
5499
5500 #ifndef USE_TOOLKIT_SCROLL_BARS
5501
5502 /* Handle some mouse motion while someone is dragging the scroll bar.
5503
5504 This may be called from a signal handler, so we have to ignore GC
5505 mark bits. */
5506
5507 static void
5508 x_scroll_bar_note_movement (struct scroll_bar *bar,
5509 const XMotionEvent *event)
5510 {
5511 struct frame *f = XFRAME (XWINDOW (bar->window)->frame);
5512 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
5513
5514 dpyinfo->last_mouse_movement_time = event->time;
5515 dpyinfo->last_mouse_scroll_bar = bar;
5516 f->mouse_moved = 1;
5517
5518 /* If we're dragging the bar, display it. */
5519 if (bar->dragging != -1)
5520 {
5521 /* Where should the handle be now? */
5522 int new_start = event->y - bar->dragging;
5523
5524 if (new_start != bar->start)
5525 {
5526 int new_end = new_start + bar->end - bar->start;
5527
5528 x_scroll_bar_set_handle (bar, new_start, new_end, 0);
5529 }
5530 }
5531 }
5532
5533 #endif /* !USE_TOOLKIT_SCROLL_BARS */
5534
5535 /* Return information to the user about the current position of the mouse
5536 on the scroll bar. */
5537
5538 static void
5539 x_scroll_bar_report_motion (struct frame **fp, Lisp_Object *bar_window,
5540 enum scroll_bar_part *part, Lisp_Object *x,
5541 Lisp_Object *y, Time *timestamp)
5542 {
5543 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (*fp);
5544 struct scroll_bar *bar = dpyinfo->last_mouse_scroll_bar;
5545 Window w = bar->x_window;
5546 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
5547 int win_x, win_y;
5548 Window dummy_window;
5549 int dummy_coord;
5550 unsigned int dummy_mask;
5551
5552 block_input ();
5553
5554 /* Get the mouse's position relative to the scroll bar window, and
5555 report that. */
5556 if (XQueryPointer (FRAME_X_DISPLAY (f), w,
5557
5558 /* Root, child, root x and root y. */
5559 &dummy_window, &dummy_window,
5560 &dummy_coord, &dummy_coord,
5561
5562 /* Position relative to scroll bar. */
5563 &win_x, &win_y,
5564
5565 /* Mouse buttons and modifier keys. */
5566 &dummy_mask))
5567 {
5568 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, bar->height);
5569
5570 win_y -= VERTICAL_SCROLL_BAR_TOP_BORDER;
5571
5572 if (bar->dragging != -1)
5573 win_y -= bar->dragging;
5574
5575 if (win_y < 0)
5576 win_y = 0;
5577 if (win_y > top_range)
5578 win_y = top_range;
5579
5580 *fp = f;
5581 *bar_window = bar->window;
5582
5583 if (bar->dragging != -1)
5584 *part = scroll_bar_handle;
5585 else if (win_y < bar->start)
5586 *part = scroll_bar_above_handle;
5587 else if (win_y < bar->end + VERTICAL_SCROLL_BAR_MIN_HANDLE)
5588 *part = scroll_bar_handle;
5589 else
5590 *part = scroll_bar_below_handle;
5591
5592 XSETINT (*x, win_y);
5593 XSETINT (*y, top_range);
5594
5595 f->mouse_moved = 0;
5596 dpyinfo->last_mouse_scroll_bar = NULL;
5597 *timestamp = dpyinfo->last_mouse_movement_time;
5598 }
5599
5600 unblock_input ();
5601 }
5602
5603
5604 /* The screen has been cleared so we may have changed foreground or
5605 background colors, and the scroll bars may need to be redrawn.
5606 Clear out the scroll bars, and ask for expose events, so we can
5607 redraw them. */
5608
5609 static void
5610 x_scroll_bar_clear (struct frame *f)
5611 {
5612 #ifndef USE_TOOLKIT_SCROLL_BARS
5613 Lisp_Object bar;
5614
5615 /* We can have scroll bars even if this is 0,
5616 if we just turned off scroll bar mode.
5617 But in that case we should not clear them. */
5618 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
5619 for (bar = FRAME_SCROLL_BARS (f); VECTORP (bar);
5620 bar = XSCROLL_BAR (bar)->next)
5621 XClearArea (FRAME_X_DISPLAY (f),
5622 XSCROLL_BAR (bar)->x_window,
5623 0, 0, 0, 0, True);
5624 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5625 }
5626
5627 #ifdef ENABLE_CHECKING
5628
5629 /* Record the last 100 characters stored
5630 to help debug the loss-of-chars-during-GC problem. */
5631
5632 static int temp_index;
5633 static short temp_buffer[100];
5634
5635 #define STORE_KEYSYM_FOR_DEBUG(keysym) \
5636 if (temp_index == sizeof temp_buffer / sizeof (short)) \
5637 temp_index = 0; \
5638 temp_buffer[temp_index++] = (keysym)
5639
5640 #else /* not ENABLE_CHECKING */
5641
5642 #define STORE_KEYSYM_FOR_DEBUG(keysym) ((void)0)
5643
5644 #endif /* ENABLE_CHECKING */
5645
5646 /* Set this to nonzero to fake an "X I/O error"
5647 on a particular display. */
5648
5649 static struct x_display_info *XTread_socket_fake_io_error;
5650
5651 /* When we find no input here, we occasionally do a no-op command
5652 to verify that the X server is still running and we can still talk with it.
5653 We try all the open displays, one by one.
5654 This variable is used for cycling thru the displays. */
5655
5656 static struct x_display_info *next_noop_dpyinfo;
5657
5658 enum
5659 {
5660 X_EVENT_NORMAL,
5661 X_EVENT_GOTO_OUT,
5662 X_EVENT_DROP
5663 };
5664
5665 /* Filter events for the current X input method.
5666 DPYINFO is the display this event is for.
5667 EVENT is the X event to filter.
5668
5669 Returns non-zero if the event was filtered, caller shall not process
5670 this event further.
5671 Returns zero if event is wasn't filtered. */
5672
5673 #ifdef HAVE_X_I18N
5674 static int
5675 x_filter_event (struct x_display_info *dpyinfo, XEvent *event)
5676 {
5677 /* XFilterEvent returns non-zero if the input method has
5678 consumed the event. We pass the frame's X window to
5679 XFilterEvent because that's the one for which the IC
5680 was created. */
5681
5682 struct frame *f1 = x_any_window_to_frame (dpyinfo,
5683 event->xclient.window);
5684
5685 return XFilterEvent (event, f1 ? FRAME_X_WINDOW (f1) : None);
5686 }
5687 #endif
5688
5689 #ifdef USE_GTK
5690 static int current_count;
5691 static int current_finish;
5692 static struct input_event *current_hold_quit;
5693
5694 /* This is the filter function invoked by the GTK event loop.
5695 It is invoked before the XEvent is translated to a GdkEvent,
5696 so we have a chance to act on the event before GTK. */
5697 static GdkFilterReturn
5698 event_handler_gdk (GdkXEvent *gxev, GdkEvent *ev, gpointer data)
5699 {
5700 XEvent *xev = (XEvent *) gxev;
5701
5702 block_input ();
5703 if (current_count >= 0)
5704 {
5705 struct x_display_info *dpyinfo;
5706
5707 dpyinfo = x_display_info_for_display (xev->xany.display);
5708
5709 #ifdef HAVE_X_I18N
5710 /* Filter events for the current X input method.
5711 GTK calls XFilterEvent but not for key press and release,
5712 so we do it here. */
5713 if ((xev->type == KeyPress || xev->type == KeyRelease)
5714 && dpyinfo
5715 && x_filter_event (dpyinfo, xev))
5716 {
5717 unblock_input ();
5718 return GDK_FILTER_REMOVE;
5719 }
5720 #endif
5721
5722 if (! dpyinfo)
5723 current_finish = X_EVENT_NORMAL;
5724 else
5725 current_count
5726 += handle_one_xevent (dpyinfo, xev, &current_finish,
5727 current_hold_quit);
5728 }
5729 else
5730 current_finish = x_dispatch_event (xev, xev->xany.display);
5731
5732 unblock_input ();
5733
5734 if (current_finish == X_EVENT_GOTO_OUT || current_finish == X_EVENT_DROP)
5735 return GDK_FILTER_REMOVE;
5736
5737 return GDK_FILTER_CONTINUE;
5738 }
5739 #endif /* USE_GTK */
5740
5741
5742 static void xembed_send_message (struct frame *f, Time,
5743 enum xembed_message,
5744 long detail, long data1, long data2);
5745
5746 /* Handles the XEvent EVENT on display DPYINFO.
5747
5748 *FINISH is X_EVENT_GOTO_OUT if caller should stop reading events.
5749 *FINISH is zero if caller should continue reading events.
5750 *FINISH is X_EVENT_DROP if event should not be passed to the toolkit.
5751 *EVENT is unchanged unless we're processing KeyPress event.
5752
5753 We return the number of characters stored into the buffer. */
5754
5755 static int
5756 handle_one_xevent (struct x_display_info *dpyinfo,
5757 const XEvent *event,
5758 int *finish, struct input_event *hold_quit)
5759 {
5760 union {
5761 struct input_event ie;
5762 struct selection_input_event sie;
5763 } inev;
5764 int count = 0;
5765 int do_help = 0;
5766 ptrdiff_t nbytes = 0;
5767 struct frame *any, *f = NULL;
5768 struct coding_system coding;
5769 Mouse_HLInfo *hlinfo = &dpyinfo->mouse_highlight;
5770 /* This holds the state XLookupString needs to implement dead keys
5771 and other tricks known as "compose processing". _X Window System_
5772 says that a portable program can't use this, but Stephen Gildea assures
5773 me that letting the compiler initialize it to zeros will work okay. */
5774 static XComposeStatus compose_status;
5775
5776 USE_SAFE_ALLOCA;
5777
5778 *finish = X_EVENT_NORMAL;
5779
5780 EVENT_INIT (inev.ie);
5781 inev.ie.kind = NO_EVENT;
5782 inev.ie.arg = Qnil;
5783
5784 any = x_any_window_to_frame (dpyinfo, event->xany.window);
5785
5786 if (any && any->wait_event_type == event->type)
5787 any->wait_event_type = 0; /* Indicates we got it. */
5788
5789 switch (event->type)
5790 {
5791 case ClientMessage:
5792 {
5793 if (event->xclient.message_type == dpyinfo->Xatom_wm_protocols
5794 && event->xclient.format == 32)
5795 {
5796 if (event->xclient.data.l[0] == dpyinfo->Xatom_wm_take_focus)
5797 {
5798 /* Use the value returned by x_any_window_to_frame
5799 because this could be the shell widget window
5800 if the frame has no title bar. */
5801 f = any;
5802 #ifdef HAVE_X_I18N
5803 /* Not quite sure this is needed -pd */
5804 if (f && FRAME_XIC (f))
5805 XSetICFocus (FRAME_XIC (f));
5806 #endif
5807 #if 0 /* Emacs sets WM hints whose `input' field is `true'. This
5808 instructs the WM to set the input focus automatically for
5809 Emacs with a call to XSetInputFocus. Setting WM_TAKE_FOCUS
5810 tells the WM to send us a ClientMessage WM_TAKE_FOCUS after
5811 it has set the focus. So, XSetInputFocus below is not
5812 needed.
5813
5814 The call to XSetInputFocus below has also caused trouble. In
5815 cases where the XSetInputFocus done by the WM and the one
5816 below are temporally close (on a fast machine), the call
5817 below can generate additional FocusIn events which confuse
5818 Emacs. */
5819
5820 /* Since we set WM_TAKE_FOCUS, we must call
5821 XSetInputFocus explicitly. But not if f is null,
5822 since that might be an event for a deleted frame. */
5823 if (f)
5824 {
5825 Display *d = event->xclient.display;
5826 /* Catch and ignore errors, in case window has been
5827 iconified by a window manager such as GWM. */
5828 x_catch_errors (d);
5829 XSetInputFocus (d, event->xclient.window,
5830 /* The ICCCM says this is
5831 the only valid choice. */
5832 RevertToParent,
5833 event->xclient.data.l[1]);
5834 /* This is needed to detect the error
5835 if there is an error. */
5836 XSync (d, False);
5837 x_uncatch_errors ();
5838 }
5839 /* Not certain about handling scroll bars here */
5840 #endif /* 0 */
5841 goto done;
5842 }
5843
5844 if (event->xclient.data.l[0] == dpyinfo->Xatom_wm_save_yourself)
5845 {
5846 /* Save state modify the WM_COMMAND property to
5847 something which can reinstate us. This notifies
5848 the session manager, who's looking for such a
5849 PropertyNotify. Can restart processing when
5850 a keyboard or mouse event arrives. */
5851 /* If we have a session manager, don't set this.
5852 KDE will then start two Emacsen, one for the
5853 session manager and one for this. */
5854 #ifdef HAVE_X_SM
5855 if (! x_session_have_connection ())
5856 #endif
5857 {
5858 f = x_top_window_to_frame (dpyinfo,
5859 event->xclient.window);
5860 /* This is just so we only give real data once
5861 for a single Emacs process. */
5862 if (f == SELECTED_FRAME ())
5863 XSetCommand (FRAME_X_DISPLAY (f),
5864 event->xclient.window,
5865 initial_argv, initial_argc);
5866 else if (f)
5867 XSetCommand (FRAME_X_DISPLAY (f),
5868 event->xclient.window,
5869 0, 0);
5870 }
5871 goto done;
5872 }
5873
5874 if (event->xclient.data.l[0] == dpyinfo->Xatom_wm_delete_window)
5875 {
5876 f = any;
5877 if (!f)
5878 goto OTHER; /* May be a dialog that is to be removed */
5879
5880 inev.ie.kind = DELETE_WINDOW_EVENT;
5881 XSETFRAME (inev.ie.frame_or_window, f);
5882 goto done;
5883 }
5884
5885 goto done;
5886 }
5887
5888 if (event->xclient.message_type == dpyinfo->Xatom_wm_configure_denied)
5889 goto done;
5890
5891 if (event->xclient.message_type == dpyinfo->Xatom_wm_window_moved)
5892 {
5893 int new_x, new_y;
5894 f = x_window_to_frame (dpyinfo, event->xclient.window);
5895
5896 new_x = event->xclient.data.s[0];
5897 new_y = event->xclient.data.s[1];
5898
5899 if (f)
5900 {
5901 f->left_pos = new_x;
5902 f->top_pos = new_y;
5903 }
5904 goto done;
5905 }
5906
5907 #ifdef HACK_EDITRES
5908 if (event->xclient.message_type == dpyinfo->Xatom_editres)
5909 {
5910 f = any;
5911 if (f)
5912 _XEditResCheckMessages (f->output_data.x->widget,
5913 NULL, (XEvent *) event, NULL);
5914 goto done;
5915 }
5916 #endif /* HACK_EDITRES */
5917
5918 if (event->xclient.message_type == dpyinfo->Xatom_DONE
5919 || event->xclient.message_type == dpyinfo->Xatom_PAGE)
5920 {
5921 /* Ghostview job completed. Kill it. We could
5922 reply with "Next" if we received "Page", but we
5923 currently never do because we are interested in
5924 images, only, which should have 1 page. */
5925 Pixmap pixmap = (Pixmap) event->xclient.data.l[1];
5926 f = x_window_to_frame (dpyinfo, event->xclient.window);
5927 if (!f)
5928 goto OTHER;
5929 x_kill_gs_process (pixmap, f);
5930 expose_frame (f, 0, 0, 0, 0);
5931 goto done;
5932 }
5933
5934 #ifdef USE_TOOLKIT_SCROLL_BARS
5935 /* Scroll bar callbacks send a ClientMessage from which
5936 we construct an input_event. */
5937 if (event->xclient.message_type == dpyinfo->Xatom_Scrollbar)
5938 {
5939 x_scroll_bar_to_input_event (event, &inev.ie);
5940 *finish = X_EVENT_GOTO_OUT;
5941 goto done;
5942 }
5943 #endif /* USE_TOOLKIT_SCROLL_BARS */
5944
5945 /* XEmbed messages from the embedder (if any). */
5946 if (event->xclient.message_type == dpyinfo->Xatom_XEMBED)
5947 {
5948 enum xembed_message msg = event->xclient.data.l[1];
5949 if (msg == XEMBED_FOCUS_IN || msg == XEMBED_FOCUS_OUT)
5950 x_detect_focus_change (dpyinfo, any, event, &inev.ie);
5951
5952 *finish = X_EVENT_GOTO_OUT;
5953 goto done;
5954 }
5955
5956 xft_settings_event (dpyinfo, event);
5957
5958 f = any;
5959 if (!f)
5960 goto OTHER;
5961 if (x_handle_dnd_message (f, &event->xclient, dpyinfo, &inev.ie))
5962 *finish = X_EVENT_DROP;
5963 }
5964 break;
5965
5966 case SelectionNotify:
5967 dpyinfo->last_user_time = event->xselection.time;
5968 #ifdef USE_X_TOOLKIT
5969 if (! x_window_to_frame (dpyinfo, event->xselection.requestor))
5970 goto OTHER;
5971 #endif /* not USE_X_TOOLKIT */
5972 x_handle_selection_notify (&event->xselection);
5973 break;
5974
5975 case SelectionClear: /* Someone has grabbed ownership. */
5976 dpyinfo->last_user_time = event->xselectionclear.time;
5977 #ifdef USE_X_TOOLKIT
5978 if (! x_window_to_frame (dpyinfo, event->xselectionclear.window))
5979 goto OTHER;
5980 #endif /* USE_X_TOOLKIT */
5981 {
5982 const XSelectionClearEvent *eventp = &event->xselectionclear;
5983
5984 inev.ie.kind = SELECTION_CLEAR_EVENT;
5985 SELECTION_EVENT_DISPLAY (&inev.sie) = eventp->display;
5986 SELECTION_EVENT_SELECTION (&inev.sie) = eventp->selection;
5987 SELECTION_EVENT_TIME (&inev.sie) = eventp->time;
5988 }
5989 break;
5990
5991 case SelectionRequest: /* Someone wants our selection. */
5992 dpyinfo->last_user_time = event->xselectionrequest.time;
5993 #ifdef USE_X_TOOLKIT
5994 if (!x_window_to_frame (dpyinfo, event->xselectionrequest.owner))
5995 goto OTHER;
5996 #endif /* USE_X_TOOLKIT */
5997 {
5998 const XSelectionRequestEvent *eventp = &event->xselectionrequest;
5999
6000 inev.ie.kind = SELECTION_REQUEST_EVENT;
6001 SELECTION_EVENT_DISPLAY (&inev.sie) = eventp->display;
6002 SELECTION_EVENT_REQUESTOR (&inev.sie) = eventp->requestor;
6003 SELECTION_EVENT_SELECTION (&inev.sie) = eventp->selection;
6004 SELECTION_EVENT_TARGET (&inev.sie) = eventp->target;
6005 SELECTION_EVENT_PROPERTY (&inev.sie) = eventp->property;
6006 SELECTION_EVENT_TIME (&inev.sie) = eventp->time;
6007 }
6008 break;
6009
6010 case PropertyNotify:
6011 dpyinfo->last_user_time = event->xproperty.time;
6012 f = x_top_window_to_frame (dpyinfo, event->xproperty.window);
6013 if (f && event->xproperty.atom == dpyinfo->Xatom_net_wm_state)
6014 if (x_handle_net_wm_state (f, &event->xproperty)
6015 && FRAME_ICONIFIED_P (f)
6016 && f->output_data.x->net_wm_state_hidden_seen)
6017 {
6018 /* Gnome shell does not iconify us when C-z is pressed.
6019 It hides the frame. So if our state says we aren't
6020 hidden anymore, treat it as deiconified. */
6021 SET_FRAME_VISIBLE (f, 1);
6022 SET_FRAME_ICONIFIED (f, 0);
6023 f->output_data.x->has_been_visible = 1;
6024 f->output_data.x->net_wm_state_hidden_seen = 0;
6025 inev.ie.kind = DEICONIFY_EVENT;
6026 XSETFRAME (inev.ie.frame_or_window, f);
6027 }
6028
6029 x_handle_property_notify (&event->xproperty);
6030 xft_settings_event (dpyinfo, event);
6031 goto OTHER;
6032
6033 case ReparentNotify:
6034 f = x_top_window_to_frame (dpyinfo, event->xreparent.window);
6035 if (f)
6036 {
6037 f->output_data.x->parent_desc = event->xreparent.parent;
6038 x_real_positions (f, &f->left_pos, &f->top_pos);
6039
6040 /* Perhaps reparented due to a WM restart. Reset this. */
6041 FRAME_DISPLAY_INFO (f)->wm_type = X_WMTYPE_UNKNOWN;
6042 FRAME_DISPLAY_INFO (f)->net_supported_window = 0;
6043
6044 x_set_frame_alpha (f);
6045 }
6046 goto OTHER;
6047
6048 case Expose:
6049 f = x_window_to_frame (dpyinfo, event->xexpose.window);
6050 if (f)
6051 {
6052 if (!FRAME_VISIBLE_P (f))
6053 {
6054 SET_FRAME_VISIBLE (f, 1);
6055 SET_FRAME_ICONIFIED (f, 0);
6056 f->output_data.x->has_been_visible = 1;
6057 SET_FRAME_GARBAGED (f);
6058 }
6059 else
6060 {
6061 #ifdef USE_GTK
6062 /* This seems to be needed for GTK 2.6 and later, see
6063 http://debbugs.gnu.org/cgi/bugreport.cgi?bug=15398. */
6064 x_clear_area (event->xexpose.display,
6065 event->xexpose.window,
6066 event->xexpose.x, event->xexpose.y,
6067 event->xexpose.width, event->xexpose.height);
6068 #endif
6069 expose_frame (f, event->xexpose.x, event->xexpose.y,
6070 event->xexpose.width, event->xexpose.height);
6071 }
6072 }
6073 else
6074 {
6075 #ifndef USE_TOOLKIT_SCROLL_BARS
6076 struct scroll_bar *bar;
6077 #endif
6078 #if defined USE_LUCID
6079 /* Submenus of the Lucid menu bar aren't widgets
6080 themselves, so there's no way to dispatch events
6081 to them. Recognize this case separately. */
6082 {
6083 Widget widget = x_window_to_menu_bar (event->xexpose.window);
6084 if (widget)
6085 xlwmenu_redisplay (widget);
6086 }
6087 #endif /* USE_LUCID */
6088
6089 #ifdef USE_TOOLKIT_SCROLL_BARS
6090 /* Dispatch event to the widget. */
6091 goto OTHER;
6092 #else /* not USE_TOOLKIT_SCROLL_BARS */
6093 bar = x_window_to_scroll_bar (event->xexpose.display,
6094 event->xexpose.window);
6095
6096 if (bar)
6097 x_scroll_bar_expose (bar, event);
6098 #ifdef USE_X_TOOLKIT
6099 else
6100 goto OTHER;
6101 #endif /* USE_X_TOOLKIT */
6102 #endif /* not USE_TOOLKIT_SCROLL_BARS */
6103 }
6104 break;
6105
6106 case GraphicsExpose: /* This occurs when an XCopyArea's
6107 source area was obscured or not
6108 available. */
6109 f = x_window_to_frame (dpyinfo, event->xgraphicsexpose.drawable);
6110 if (f)
6111 expose_frame (f, event->xgraphicsexpose.x,
6112 event->xgraphicsexpose.y,
6113 event->xgraphicsexpose.width,
6114 event->xgraphicsexpose.height);
6115 #ifdef USE_X_TOOLKIT
6116 else
6117 goto OTHER;
6118 #endif /* USE_X_TOOLKIT */
6119 break;
6120
6121 case NoExpose: /* This occurs when an XCopyArea's
6122 source area was completely
6123 available. */
6124 break;
6125
6126 case UnmapNotify:
6127 /* Redo the mouse-highlight after the tooltip has gone. */
6128 if (event->xunmap.window == tip_window)
6129 {
6130 tip_window = 0;
6131 x_redo_mouse_highlight (dpyinfo);
6132 }
6133
6134 f = x_top_window_to_frame (dpyinfo, event->xunmap.window);
6135 if (f) /* F may no longer exist if
6136 the frame was deleted. */
6137 {
6138 bool visible = FRAME_VISIBLE_P (f);
6139 /* While a frame is unmapped, display generation is
6140 disabled; you don't want to spend time updating a
6141 display that won't ever be seen. */
6142 SET_FRAME_VISIBLE (f, 0);
6143 /* We can't distinguish, from the event, whether the window
6144 has become iconified or invisible. So assume, if it
6145 was previously visible, than now it is iconified.
6146 But x_make_frame_invisible clears both
6147 the visible flag and the iconified flag;
6148 and that way, we know the window is not iconified now. */
6149 if (visible || FRAME_ICONIFIED_P (f))
6150 {
6151 SET_FRAME_ICONIFIED (f, 1);
6152 inev.ie.kind = ICONIFY_EVENT;
6153 XSETFRAME (inev.ie.frame_or_window, f);
6154 }
6155 }
6156 goto OTHER;
6157
6158 case MapNotify:
6159 if (event->xmap.window == tip_window)
6160 /* The tooltip has been drawn already. Avoid
6161 the SET_FRAME_GARBAGED below. */
6162 goto OTHER;
6163
6164 /* We use x_top_window_to_frame because map events can
6165 come for sub-windows and they don't mean that the
6166 frame is visible. */
6167 f = x_top_window_to_frame (dpyinfo, event->xmap.window);
6168 if (f)
6169 {
6170 bool iconified = FRAME_ICONIFIED_P (f);
6171
6172 /* Check if fullscreen was specified before we where mapped the
6173 first time, i.e. from the command line. */
6174 if (!f->output_data.x->has_been_visible)
6175 x_check_fullscreen (f);
6176
6177 SET_FRAME_VISIBLE (f, 1);
6178 SET_FRAME_ICONIFIED (f, 0);
6179 f->output_data.x->has_been_visible = 1;
6180
6181 if (iconified)
6182 {
6183 inev.ie.kind = DEICONIFY_EVENT;
6184 XSETFRAME (inev.ie.frame_or_window, f);
6185 }
6186 else if (! NILP (Vframe_list) && ! NILP (XCDR (Vframe_list)))
6187 /* Force a redisplay sooner or later to update the
6188 frame titles in case this is the second frame. */
6189 record_asynch_buffer_change ();
6190
6191 #ifdef USE_GTK
6192 xg_frame_resized (f, -1, -1);
6193 #endif
6194 }
6195 goto OTHER;
6196
6197 case KeyPress:
6198
6199 dpyinfo->last_user_time = event->xkey.time;
6200 ignore_next_mouse_click_timeout = 0;
6201
6202 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
6203 /* Dispatch KeyPress events when in menu. */
6204 if (popup_activated ())
6205 goto OTHER;
6206 #endif
6207
6208 f = any;
6209
6210 #if ! defined (USE_GTK)
6211 /* If mouse-highlight is an integer, input clears out
6212 mouse highlighting. */
6213 if (!hlinfo->mouse_face_hidden && INTEGERP (Vmouse_highlight)
6214 && (f == 0
6215 || !EQ (f->tool_bar_window, hlinfo->mouse_face_window)))
6216 {
6217 clear_mouse_face (hlinfo);
6218 hlinfo->mouse_face_hidden = 1;
6219 }
6220 #endif
6221
6222 #if defined USE_MOTIF && defined USE_TOOLKIT_SCROLL_BARS
6223 if (f == 0)
6224 {
6225 /* Scroll bars consume key events, but we want
6226 the keys to go to the scroll bar's frame. */
6227 Widget widget = XtWindowToWidget (dpyinfo->display,
6228 event->xkey.window);
6229 if (widget && XmIsScrollBar (widget))
6230 {
6231 widget = XtParent (widget);
6232 f = x_any_window_to_frame (dpyinfo, XtWindow (widget));
6233 }
6234 }
6235 #endif /* USE_MOTIF and USE_TOOLKIT_SCROLL_BARS */
6236
6237 if (f != 0)
6238 {
6239 KeySym keysym, orig_keysym;
6240 /* al%imercury@uunet.uu.net says that making this 81
6241 instead of 80 fixed a bug whereby meta chars made
6242 his Emacs hang.
6243
6244 It seems that some version of XmbLookupString has
6245 a bug of not returning XBufferOverflow in
6246 status_return even if the input is too long to
6247 fit in 81 bytes. So, we must prepare sufficient
6248 bytes for copy_buffer. 513 bytes (256 chars for
6249 two-byte character set) seems to be a fairly good
6250 approximation. -- 2000.8.10 handa@etl.go.jp */
6251 unsigned char copy_buffer[513];
6252 unsigned char *copy_bufptr = copy_buffer;
6253 int copy_bufsiz = sizeof (copy_buffer);
6254 int modifiers;
6255 Lisp_Object coding_system = Qlatin_1;
6256 Lisp_Object c;
6257 /* Event will be modified. */
6258 XKeyEvent xkey = event->xkey;
6259
6260 #ifdef USE_GTK
6261 /* Don't pass keys to GTK. A Tab will shift focus to the
6262 tool bar in GTK 2.4. Keys will still go to menus and
6263 dialogs because in that case popup_activated is nonzero
6264 (see above). */
6265 *finish = X_EVENT_DROP;
6266 #endif
6267
6268 xkey.state |= x_emacs_to_x_modifiers (FRAME_DISPLAY_INFO (f),
6269 extra_keyboard_modifiers);
6270 modifiers = xkey.state;
6271
6272 /* This will have to go some day... */
6273
6274 /* make_lispy_event turns chars into control chars.
6275 Don't do it here because XLookupString is too eager. */
6276 xkey.state &= ~ControlMask;
6277 xkey.state &= ~(dpyinfo->meta_mod_mask
6278 | dpyinfo->super_mod_mask
6279 | dpyinfo->hyper_mod_mask
6280 | dpyinfo->alt_mod_mask);
6281
6282 /* In case Meta is ComposeCharacter,
6283 clear its status. According to Markus Ehrnsperger
6284 Markus.Ehrnsperger@lehrstuhl-bross.physik.uni-muenchen.de
6285 this enables ComposeCharacter to work whether or
6286 not it is combined with Meta. */
6287 if (modifiers & dpyinfo->meta_mod_mask)
6288 memset (&compose_status, 0, sizeof (compose_status));
6289
6290 #ifdef HAVE_X_I18N
6291 if (FRAME_XIC (f))
6292 {
6293 Status status_return;
6294
6295 coding_system = Vlocale_coding_system;
6296 nbytes = XmbLookupString (FRAME_XIC (f),
6297 &xkey, (char *) copy_bufptr,
6298 copy_bufsiz, &keysym,
6299 &status_return);
6300 if (status_return == XBufferOverflow)
6301 {
6302 copy_bufsiz = nbytes + 1;
6303 copy_bufptr = alloca (copy_bufsiz);
6304 nbytes = XmbLookupString (FRAME_XIC (f),
6305 &xkey, (char *) copy_bufptr,
6306 copy_bufsiz, &keysym,
6307 &status_return);
6308 }
6309 /* Xutf8LookupString is a new but already deprecated interface. -stef */
6310 if (status_return == XLookupNone)
6311 break;
6312 else if (status_return == XLookupChars)
6313 {
6314 keysym = NoSymbol;
6315 modifiers = 0;
6316 }
6317 else if (status_return != XLookupKeySym
6318 && status_return != XLookupBoth)
6319 emacs_abort ();
6320 }
6321 else
6322 nbytes = XLookupString (&xkey, (char *) copy_bufptr,
6323 copy_bufsiz, &keysym,
6324 &compose_status);
6325 #else
6326 nbytes = XLookupString (&xkey, (char *) copy_bufptr,
6327 copy_bufsiz, &keysym,
6328 &compose_status);
6329 #endif
6330
6331 /* If not using XIM/XIC, and a compose sequence is in progress,
6332 we break here. Otherwise, chars_matched is always 0. */
6333 if (compose_status.chars_matched > 0 && nbytes == 0)
6334 break;
6335
6336 memset (&compose_status, 0, sizeof (compose_status));
6337 orig_keysym = keysym;
6338
6339 /* Common for all keysym input events. */
6340 XSETFRAME (inev.ie.frame_or_window, f);
6341 inev.ie.modifiers
6342 = x_x_to_emacs_modifiers (FRAME_DISPLAY_INFO (f), modifiers);
6343 inev.ie.timestamp = xkey.time;
6344
6345 /* First deal with keysyms which have defined
6346 translations to characters. */
6347 if (keysym >= 32 && keysym < 128)
6348 /* Avoid explicitly decoding each ASCII character. */
6349 {
6350 inev.ie.kind = ASCII_KEYSTROKE_EVENT;
6351 inev.ie.code = keysym;
6352 goto done_keysym;
6353 }
6354
6355 /* Keysyms directly mapped to Unicode characters. */
6356 if (keysym >= 0x01000000 && keysym <= 0x0110FFFF)
6357 {
6358 if (keysym < 0x01000080)
6359 inev.ie.kind = ASCII_KEYSTROKE_EVENT;
6360 else
6361 inev.ie.kind = MULTIBYTE_CHAR_KEYSTROKE_EVENT;
6362 inev.ie.code = keysym & 0xFFFFFF;
6363 goto done_keysym;
6364 }
6365
6366 /* Now non-ASCII. */
6367 if (HASH_TABLE_P (Vx_keysym_table)
6368 && (c = Fgethash (make_number (keysym),
6369 Vx_keysym_table,
6370 Qnil),
6371 NATNUMP (c)))
6372 {
6373 inev.ie.kind = (SINGLE_BYTE_CHAR_P (XFASTINT (c))
6374 ? ASCII_KEYSTROKE_EVENT
6375 : MULTIBYTE_CHAR_KEYSTROKE_EVENT);
6376 inev.ie.code = XFASTINT (c);
6377 goto done_keysym;
6378 }
6379
6380 /* Random non-modifier sorts of keysyms. */
6381 if (((keysym >= XK_BackSpace && keysym <= XK_Escape)
6382 || keysym == XK_Delete
6383 #ifdef XK_ISO_Left_Tab
6384 || (keysym >= XK_ISO_Left_Tab
6385 && keysym <= XK_ISO_Enter)
6386 #endif
6387 || IsCursorKey (keysym) /* 0xff50 <= x < 0xff60 */
6388 || IsMiscFunctionKey (keysym) /* 0xff60 <= x < VARIES */
6389 #ifdef HPUX
6390 /* This recognizes the "extended function
6391 keys". It seems there's no cleaner way.
6392 Test IsModifierKey to avoid handling
6393 mode_switch incorrectly. */
6394 || (XK_Select <= keysym && keysym < XK_KP_Space)
6395 #endif
6396 #ifdef XK_dead_circumflex
6397 || orig_keysym == XK_dead_circumflex
6398 #endif
6399 #ifdef XK_dead_grave
6400 || orig_keysym == XK_dead_grave
6401 #endif
6402 #ifdef XK_dead_tilde
6403 || orig_keysym == XK_dead_tilde
6404 #endif
6405 #ifdef XK_dead_diaeresis
6406 || orig_keysym == XK_dead_diaeresis
6407 #endif
6408 #ifdef XK_dead_macron
6409 || orig_keysym == XK_dead_macron
6410 #endif
6411 #ifdef XK_dead_degree
6412 || orig_keysym == XK_dead_degree
6413 #endif
6414 #ifdef XK_dead_acute
6415 || orig_keysym == XK_dead_acute
6416 #endif
6417 #ifdef XK_dead_cedilla
6418 || orig_keysym == XK_dead_cedilla
6419 #endif
6420 #ifdef XK_dead_breve
6421 || orig_keysym == XK_dead_breve
6422 #endif
6423 #ifdef XK_dead_ogonek
6424 || orig_keysym == XK_dead_ogonek
6425 #endif
6426 #ifdef XK_dead_caron
6427 || orig_keysym == XK_dead_caron
6428 #endif
6429 #ifdef XK_dead_doubleacute
6430 || orig_keysym == XK_dead_doubleacute
6431 #endif
6432 #ifdef XK_dead_abovedot
6433 || orig_keysym == XK_dead_abovedot
6434 #endif
6435 || IsKeypadKey (keysym) /* 0xff80 <= x < 0xffbe */
6436 || IsFunctionKey (keysym) /* 0xffbe <= x < 0xffe1 */
6437 /* Any "vendor-specific" key is ok. */
6438 || (orig_keysym & (1 << 28))
6439 || (keysym != NoSymbol && nbytes == 0))
6440 && ! (IsModifierKey (orig_keysym)
6441 /* The symbols from XK_ISO_Lock
6442 to XK_ISO_Last_Group_Lock
6443 don't have real modifiers but
6444 should be treated similarly to
6445 Mode_switch by Emacs. */
6446 #if defined XK_ISO_Lock && defined XK_ISO_Last_Group_Lock
6447 || (XK_ISO_Lock <= orig_keysym
6448 && orig_keysym <= XK_ISO_Last_Group_Lock)
6449 #endif
6450 ))
6451 {
6452 STORE_KEYSYM_FOR_DEBUG (keysym);
6453 /* make_lispy_event will convert this to a symbolic
6454 key. */
6455 inev.ie.kind = NON_ASCII_KEYSTROKE_EVENT;
6456 inev.ie.code = keysym;
6457 goto done_keysym;
6458 }
6459
6460 { /* Raw bytes, not keysym. */
6461 ptrdiff_t i;
6462 int nchars, len;
6463
6464 for (i = 0, nchars = 0; i < nbytes; i++)
6465 {
6466 if (ASCII_BYTE_P (copy_bufptr[i]))
6467 nchars++;
6468 STORE_KEYSYM_FOR_DEBUG (copy_bufptr[i]);
6469 }
6470
6471 if (nchars < nbytes)
6472 {
6473 /* Decode the input data. */
6474
6475 /* The input should be decoded with `coding_system'
6476 which depends on which X*LookupString function
6477 we used just above and the locale. */
6478 setup_coding_system (coding_system, &coding);
6479 coding.src_multibyte = 0;
6480 coding.dst_multibyte = 1;
6481 /* The input is converted to events, thus we can't
6482 handle composition. Anyway, there's no XIM that
6483 gives us composition information. */
6484 coding.common_flags &= ~CODING_ANNOTATION_MASK;
6485
6486 SAFE_NALLOCA (coding.destination, MAX_MULTIBYTE_LENGTH,
6487 nbytes);
6488 coding.dst_bytes = MAX_MULTIBYTE_LENGTH * nbytes;
6489 coding.mode |= CODING_MODE_LAST_BLOCK;
6490 decode_coding_c_string (&coding, copy_bufptr, nbytes, Qnil);
6491 nbytes = coding.produced;
6492 nchars = coding.produced_char;
6493 copy_bufptr = coding.destination;
6494 }
6495
6496 /* Convert the input data to a sequence of
6497 character events. */
6498 for (i = 0; i < nbytes; i += len)
6499 {
6500 int ch;
6501 if (nchars == nbytes)
6502 ch = copy_bufptr[i], len = 1;
6503 else
6504 ch = STRING_CHAR_AND_LENGTH (copy_bufptr + i, len);
6505 inev.ie.kind = (SINGLE_BYTE_CHAR_P (ch)
6506 ? ASCII_KEYSTROKE_EVENT
6507 : MULTIBYTE_CHAR_KEYSTROKE_EVENT);
6508 inev.ie.code = ch;
6509 kbd_buffer_store_event_hold (&inev.ie, hold_quit);
6510 }
6511
6512 count += nchars;
6513
6514 inev.ie.kind = NO_EVENT; /* Already stored above. */
6515
6516 if (keysym == NoSymbol)
6517 break;
6518 }
6519 /* FIXME: check side effects and remove this. */
6520 ((XEvent *) event)->xkey = xkey;
6521 }
6522 done_keysym:
6523 #ifdef HAVE_X_I18N
6524 /* Don't dispatch this event since XtDispatchEvent calls
6525 XFilterEvent, and two calls in a row may freeze the
6526 client. */
6527 break;
6528 #else
6529 goto OTHER;
6530 #endif
6531
6532 case KeyRelease:
6533 dpyinfo->last_user_time = event->xkey.time;
6534 #ifdef HAVE_X_I18N
6535 /* Don't dispatch this event since XtDispatchEvent calls
6536 XFilterEvent, and two calls in a row may freeze the
6537 client. */
6538 break;
6539 #else
6540 goto OTHER;
6541 #endif
6542
6543 case EnterNotify:
6544 dpyinfo->last_user_time = event->xcrossing.time;
6545 x_detect_focus_change (dpyinfo, any, event, &inev.ie);
6546
6547 f = any;
6548
6549 if (f && x_mouse_click_focus_ignore_position)
6550 ignore_next_mouse_click_timeout = event->xmotion.time + 200;
6551
6552 /* EnterNotify counts as mouse movement,
6553 so update things that depend on mouse position. */
6554 if (f && !f->output_data.x->hourglass_p)
6555 note_mouse_movement (f, &event->xmotion);
6556 #ifdef USE_GTK
6557 /* We may get an EnterNotify on the buttons in the toolbar. In that
6558 case we moved out of any highlighted area and need to note this. */
6559 if (!f && dpyinfo->last_mouse_glyph_frame)
6560 note_mouse_movement (dpyinfo->last_mouse_glyph_frame, &event->xmotion);
6561 #endif
6562 goto OTHER;
6563
6564 case FocusIn:
6565 x_detect_focus_change (dpyinfo, any, event, &inev.ie);
6566 goto OTHER;
6567
6568 case LeaveNotify:
6569 dpyinfo->last_user_time = event->xcrossing.time;
6570 x_detect_focus_change (dpyinfo, any, event, &inev.ie);
6571
6572 f = x_top_window_to_frame (dpyinfo, event->xcrossing.window);
6573 if (f)
6574 {
6575 if (f == hlinfo->mouse_face_mouse_frame)
6576 {
6577 /* If we move outside the frame, then we're
6578 certainly no longer on any text in the frame. */
6579 clear_mouse_face (hlinfo);
6580 hlinfo->mouse_face_mouse_frame = 0;
6581 }
6582
6583 /* Generate a nil HELP_EVENT to cancel a help-echo.
6584 Do it only if there's something to cancel.
6585 Otherwise, the startup message is cleared when
6586 the mouse leaves the frame. */
6587 if (any_help_event_p)
6588 do_help = -1;
6589 }
6590 #ifdef USE_GTK
6591 /* See comment in EnterNotify above */
6592 else if (dpyinfo->last_mouse_glyph_frame)
6593 note_mouse_movement (dpyinfo->last_mouse_glyph_frame, &event->xmotion);
6594 #endif
6595 goto OTHER;
6596
6597 case FocusOut:
6598 x_detect_focus_change (dpyinfo, any, event, &inev.ie);
6599 goto OTHER;
6600
6601 case MotionNotify:
6602 {
6603 dpyinfo->last_user_time = event->xmotion.time;
6604 previous_help_echo_string = help_echo_string;
6605 help_echo_string = Qnil;
6606
6607 f = (x_mouse_grabbed (dpyinfo) ? dpyinfo->last_mouse_frame
6608 : x_window_to_frame (dpyinfo, event->xmotion.window));
6609
6610 if (hlinfo->mouse_face_hidden)
6611 {
6612 hlinfo->mouse_face_hidden = 0;
6613 clear_mouse_face (hlinfo);
6614 }
6615
6616 #ifdef USE_GTK
6617 if (f && xg_event_is_for_scrollbar (f, event))
6618 f = 0;
6619 #endif
6620 if (f)
6621 {
6622
6623 /* Generate SELECT_WINDOW_EVENTs when needed.
6624 Don't let popup menus influence things (bug#1261). */
6625 if (!NILP (Vmouse_autoselect_window) && !popup_activated ())
6626 {
6627 static Lisp_Object last_mouse_window;
6628 Lisp_Object window = window_from_coordinates
6629 (f, event->xmotion.x, event->xmotion.y, 0, 0);
6630
6631 /* Window will be selected only when it is not selected now and
6632 last mouse movement event was not in it. Minibuffer window
6633 will be selected only when it is active. */
6634 if (WINDOWP (window)
6635 && !EQ (window, last_mouse_window)
6636 && !EQ (window, selected_window)
6637 /* For click-to-focus window managers
6638 create event iff we don't leave the
6639 selected frame. */
6640 && (focus_follows_mouse
6641 || (EQ (XWINDOW (window)->frame,
6642 XWINDOW (selected_window)->frame))))
6643 {
6644 inev.ie.kind = SELECT_WINDOW_EVENT;
6645 inev.ie.frame_or_window = window;
6646 }
6647 /* Remember the last window where we saw the mouse. */
6648 last_mouse_window = window;
6649 }
6650 if (!note_mouse_movement (f, &event->xmotion))
6651 help_echo_string = previous_help_echo_string;
6652 }
6653 else
6654 {
6655 #ifndef USE_TOOLKIT_SCROLL_BARS
6656 struct scroll_bar *bar
6657 = x_window_to_scroll_bar (event->xmotion.display,
6658 event->xmotion.window);
6659
6660 if (bar)
6661 x_scroll_bar_note_movement (bar, &event->xmotion);
6662 #endif /* USE_TOOLKIT_SCROLL_BARS */
6663
6664 /* If we move outside the frame, then we're
6665 certainly no longer on any text in the frame. */
6666 clear_mouse_face (hlinfo);
6667 }
6668
6669 /* If the contents of the global variable help_echo_string
6670 has changed, generate a HELP_EVENT. */
6671 if (!NILP (help_echo_string)
6672 || !NILP (previous_help_echo_string))
6673 do_help = 1;
6674 goto OTHER;
6675 }
6676
6677 case ConfigureNotify:
6678 f = x_top_window_to_frame (dpyinfo, event->xconfigure.window);
6679 #ifdef USE_GTK
6680 if (!f
6681 && (f = any)
6682 && event->xconfigure.window == FRAME_X_WINDOW (f))
6683 {
6684 xg_frame_resized (f, event->xconfigure.width,
6685 event->xconfigure.height);
6686 f = 0;
6687 }
6688 #endif
6689 if (f)
6690 {
6691 #ifndef USE_X_TOOLKIT
6692 #ifndef USE_GTK
6693 int width = FRAME_PIXEL_TO_TEXT_WIDTH (f, event->xconfigure.width);
6694 int height = FRAME_PIXEL_TO_TEXT_HEIGHT (f, event->xconfigure.height);
6695
6696 /* In the toolkit version, change_frame_size
6697 is called by the code that handles resizing
6698 of the EmacsFrame widget. */
6699
6700 /* Even if the number of character rows and columns has
6701 not changed, the font size may have changed, so we need
6702 to check the pixel dimensions as well. */
6703 if (width != FRAME_TEXT_WIDTH (f)
6704 || height != FRAME_TEXT_HEIGHT (f)
6705 || event->xconfigure.width != FRAME_PIXEL_WIDTH (f)
6706 || event->xconfigure.height != FRAME_PIXEL_HEIGHT (f))
6707 {
6708 change_frame_size (f, width, height, 0, 1, 0, 1);
6709 x_clear_under_internal_border (f);
6710 SET_FRAME_GARBAGED (f);
6711 cancel_mouse_face (f);
6712 }
6713
6714 /** FRAME_PIXEL_WIDTH (f) = event->xconfigure.width; **/
6715 /** FRAME_PIXEL_HEIGHT (f) = event->xconfigure.height; **/
6716 #endif /* not USE_GTK */
6717 #endif
6718
6719 #ifdef USE_GTK
6720 /* GTK creates windows but doesn't map them.
6721 Only get real positions when mapped. */
6722 if (FRAME_GTK_OUTER_WIDGET (f)
6723 && gtk_widget_get_mapped (FRAME_GTK_OUTER_WIDGET (f)))
6724 #endif
6725 x_real_positions (f, &f->left_pos, &f->top_pos);
6726
6727 #ifdef HAVE_X_I18N
6728 if (FRAME_XIC (f) && (FRAME_XIC_STYLE (f) & XIMStatusArea))
6729 xic_set_statusarea (f);
6730 #endif
6731
6732 }
6733 goto OTHER;
6734
6735 case ButtonRelease:
6736 case ButtonPress:
6737 {
6738 /* If we decide we want to generate an event to be seen
6739 by the rest of Emacs, we put it here. */
6740 bool tool_bar_p = 0;
6741
6742 memset (&compose_status, 0, sizeof (compose_status));
6743 dpyinfo->last_mouse_glyph_frame = NULL;
6744 dpyinfo->last_user_time = event->xbutton.time;
6745
6746 f = (x_mouse_grabbed (dpyinfo) ? dpyinfo->last_mouse_frame
6747 : x_window_to_frame (dpyinfo, event->xbutton.window));
6748
6749 #ifdef USE_GTK
6750 if (f && xg_event_is_for_scrollbar (f, event))
6751 f = 0;
6752 #endif
6753 if (f)
6754 {
6755 #if ! defined (USE_GTK)
6756 /* Is this in the tool-bar? */
6757 if (WINDOWP (f->tool_bar_window)
6758 && WINDOW_TOTAL_LINES (XWINDOW (f->tool_bar_window)))
6759 {
6760 Lisp_Object window;
6761 int x = event->xbutton.x;
6762 int y = event->xbutton.y;
6763
6764 window = window_from_coordinates (f, x, y, 0, 1);
6765 tool_bar_p = EQ (window, f->tool_bar_window);
6766
6767 if (tool_bar_p && event->xbutton.button < 4)
6768 handle_tool_bar_click
6769 (f, x, y, event->xbutton.type == ButtonPress,
6770 x_x_to_emacs_modifiers (dpyinfo, event->xbutton.state));
6771 }
6772 #endif /* !USE_GTK */
6773
6774 if (!tool_bar_p)
6775 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
6776 if (! popup_activated ())
6777 #endif
6778 {
6779 if (ignore_next_mouse_click_timeout)
6780 {
6781 if (event->type == ButtonPress
6782 && event->xbutton.time > ignore_next_mouse_click_timeout)
6783 {
6784 ignore_next_mouse_click_timeout = 0;
6785 construct_mouse_click (&inev.ie, &event->xbutton, f);
6786 }
6787 if (event->type == ButtonRelease)
6788 ignore_next_mouse_click_timeout = 0;
6789 }
6790 else
6791 construct_mouse_click (&inev.ie, &event->xbutton, f);
6792 }
6793 if (FRAME_X_EMBEDDED_P (f))
6794 xembed_send_message (f, event->xbutton.time,
6795 XEMBED_REQUEST_FOCUS, 0, 0, 0);
6796 }
6797 else
6798 {
6799 struct scroll_bar *bar
6800 = x_window_to_scroll_bar (event->xbutton.display,
6801 event->xbutton.window);
6802
6803 #ifdef USE_TOOLKIT_SCROLL_BARS
6804 /* Make the "Ctrl-Mouse-2 splits window" work for toolkit
6805 scroll bars. */
6806 if (bar && event->xbutton.state & ControlMask)
6807 {
6808 x_scroll_bar_handle_click (bar, event, &inev.ie);
6809 *finish = X_EVENT_DROP;
6810 }
6811 #else /* not USE_TOOLKIT_SCROLL_BARS */
6812 if (bar)
6813 x_scroll_bar_handle_click (bar, event, &inev.ie);
6814 #endif /* not USE_TOOLKIT_SCROLL_BARS */
6815 }
6816
6817 if (event->type == ButtonPress)
6818 {
6819 dpyinfo->grabbed |= (1 << event->xbutton.button);
6820 dpyinfo->last_mouse_frame = f;
6821
6822 if (!tool_bar_p)
6823 last_tool_bar_item = -1;
6824 }
6825 else
6826 dpyinfo->grabbed &= ~(1 << event->xbutton.button);
6827
6828 /* Ignore any mouse motion that happened before this event;
6829 any subsequent mouse-movement Emacs events should reflect
6830 only motion after the ButtonPress/Release. */
6831 if (f != 0)
6832 f->mouse_moved = 0;
6833
6834 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
6835 f = x_menubar_window_to_frame (dpyinfo, event);
6836 /* For a down-event in the menu bar,
6837 don't pass it to Xt right now.
6838 Instead, save it away
6839 and we will pass it to Xt from kbd_buffer_get_event.
6840 That way, we can run some Lisp code first. */
6841 if (! popup_activated ()
6842 #ifdef USE_GTK
6843 /* Gtk+ menus only react to the first three buttons. */
6844 && event->xbutton.button < 3
6845 #endif
6846 && f && event->type == ButtonPress
6847 /* Verify the event is really within the menu bar
6848 and not just sent to it due to grabbing. */
6849 && event->xbutton.x >= 0
6850 && event->xbutton.x < FRAME_PIXEL_WIDTH (f)
6851 && event->xbutton.y >= 0
6852 && event->xbutton.y < f->output_data.x->menubar_height
6853 && event->xbutton.same_screen)
6854 {
6855 if (!f->output_data.x->saved_menu_event)
6856 f->output_data.x->saved_menu_event = xmalloc (sizeof *event);
6857 *f->output_data.x->saved_menu_event = *event;
6858 inev.ie.kind = MENU_BAR_ACTIVATE_EVENT;
6859 XSETFRAME (inev.ie.frame_or_window, f);
6860 *finish = X_EVENT_DROP;
6861 }
6862 else
6863 goto OTHER;
6864 #endif /* USE_X_TOOLKIT || USE_GTK */
6865 }
6866 break;
6867
6868 case CirculateNotify:
6869 goto OTHER;
6870
6871 case CirculateRequest:
6872 goto OTHER;
6873
6874 case VisibilityNotify:
6875 goto OTHER;
6876
6877 case MappingNotify:
6878 /* Someone has changed the keyboard mapping - update the
6879 local cache. */
6880 switch (event->xmapping.request)
6881 {
6882 case MappingModifier:
6883 x_find_modifier_meanings (dpyinfo);
6884 /* This is meant to fall through. */
6885 case MappingKeyboard:
6886 XRefreshKeyboardMapping ((XMappingEvent *) &event->xmapping);
6887 }
6888 goto OTHER;
6889
6890 case DestroyNotify:
6891 xft_settings_event (dpyinfo, event);
6892 break;
6893
6894 default:
6895 OTHER:
6896 #ifdef USE_X_TOOLKIT
6897 block_input ();
6898 if (*finish != X_EVENT_DROP)
6899 XtDispatchEvent ((XEvent *) event);
6900 unblock_input ();
6901 #endif /* USE_X_TOOLKIT */
6902 break;
6903 }
6904
6905 done:
6906 if (inev.ie.kind != NO_EVENT)
6907 {
6908 kbd_buffer_store_event_hold (&inev.ie, hold_quit);
6909 count++;
6910 }
6911
6912 if (do_help
6913 && !(hold_quit && hold_quit->kind != NO_EVENT))
6914 {
6915 Lisp_Object frame;
6916
6917 if (f)
6918 XSETFRAME (frame, f);
6919 else
6920 frame = Qnil;
6921
6922 if (do_help > 0)
6923 {
6924 any_help_event_p = 1;
6925 gen_help_event (help_echo_string, frame, help_echo_window,
6926 help_echo_object, help_echo_pos);
6927 }
6928 else
6929 {
6930 help_echo_string = Qnil;
6931 gen_help_event (Qnil, frame, Qnil, Qnil, 0);
6932 }
6933 count++;
6934 }
6935
6936 SAFE_FREE ();
6937 return count;
6938 }
6939
6940 /* Handles the XEvent EVENT on display DISPLAY.
6941 This is used for event loops outside the normal event handling,
6942 i.e. looping while a popup menu or a dialog is posted.
6943
6944 Returns the value handle_one_xevent sets in the finish argument. */
6945 int
6946 x_dispatch_event (XEvent *event, Display *display)
6947 {
6948 struct x_display_info *dpyinfo;
6949 int finish = X_EVENT_NORMAL;
6950
6951 dpyinfo = x_display_info_for_display (display);
6952
6953 if (dpyinfo)
6954 handle_one_xevent (dpyinfo, event, &finish, 0);
6955
6956 return finish;
6957 }
6958
6959 /* Read events coming from the X server.
6960 Return as soon as there are no more events to be read.
6961
6962 Return the number of characters stored into the buffer,
6963 thus pretending to be `read' (except the characters we store
6964 in the keyboard buffer can be multibyte, so are not necessarily
6965 C chars). */
6966
6967 static int
6968 XTread_socket (struct terminal *terminal, struct input_event *hold_quit)
6969 {
6970 int count = 0;
6971 int event_found = 0;
6972 struct x_display_info *dpyinfo = terminal->display_info.x;
6973
6974 block_input ();
6975
6976 /* For debugging, this gives a way to fake an I/O error. */
6977 if (dpyinfo == XTread_socket_fake_io_error)
6978 {
6979 XTread_socket_fake_io_error = 0;
6980 x_io_error_quitter (dpyinfo->display);
6981 }
6982
6983 #ifndef USE_GTK
6984 while (XPending (dpyinfo->display))
6985 {
6986 int finish;
6987 XEvent event;
6988
6989 XNextEvent (dpyinfo->display, &event);
6990
6991 #ifdef HAVE_X_I18N
6992 /* Filter events for the current X input method. */
6993 if (x_filter_event (dpyinfo, &event))
6994 continue;
6995 #endif
6996 event_found = 1;
6997
6998 count += handle_one_xevent (dpyinfo, &event, &finish, hold_quit);
6999
7000 if (finish == X_EVENT_GOTO_OUT)
7001 break;
7002 }
7003
7004 #else /* USE_GTK */
7005
7006 /* For GTK we must use the GTK event loop. But XEvents gets passed
7007 to our filter function above, and then to the big event switch.
7008 We use a bunch of globals to communicate with our filter function,
7009 that is kind of ugly, but it works.
7010
7011 There is no way to do one display at the time, GTK just does events
7012 from all displays. */
7013
7014 while (gtk_events_pending ())
7015 {
7016 current_count = count;
7017 current_hold_quit = hold_quit;
7018
7019 gtk_main_iteration ();
7020
7021 count = current_count;
7022 current_count = -1;
7023 current_hold_quit = 0;
7024
7025 if (current_finish == X_EVENT_GOTO_OUT)
7026 break;
7027 }
7028 #endif /* USE_GTK */
7029
7030 /* On some systems, an X bug causes Emacs to get no more events
7031 when the window is destroyed. Detect that. (1994.) */
7032 if (! event_found)
7033 {
7034 /* Emacs and the X Server eats up CPU time if XNoOp is done every time.
7035 One XNOOP in 100 loops will make Emacs terminate.
7036 B. Bretthauer, 1994 */
7037 x_noop_count++;
7038 if (x_noop_count >= 100)
7039 {
7040 x_noop_count=0;
7041
7042 if (next_noop_dpyinfo == 0)
7043 next_noop_dpyinfo = x_display_list;
7044
7045 XNoOp (next_noop_dpyinfo->display);
7046
7047 /* Each time we get here, cycle through the displays now open. */
7048 next_noop_dpyinfo = next_noop_dpyinfo->next;
7049 }
7050 }
7051
7052 /* If the focus was just given to an auto-raising frame,
7053 raise it now. FIXME: handle more than one such frame. */
7054 if (dpyinfo->x_pending_autoraise_frame)
7055 {
7056 x_raise_frame (dpyinfo->x_pending_autoraise_frame);
7057 dpyinfo->x_pending_autoraise_frame = NULL;
7058 }
7059
7060 unblock_input ();
7061
7062 return count;
7063 }
7064
7065
7066
7067 \f
7068 /***********************************************************************
7069 Text Cursor
7070 ***********************************************************************/
7071
7072 /* Set clipping for output in glyph row ROW. W is the window in which
7073 we operate. GC is the graphics context to set clipping in.
7074
7075 ROW may be a text row or, e.g., a mode line. Text rows must be
7076 clipped to the interior of the window dedicated to text display,
7077 mode lines must be clipped to the whole window. */
7078
7079 static void
7080 x_clip_to_row (struct window *w, struct glyph_row *row,
7081 enum glyph_row_area area, GC gc)
7082 {
7083 struct frame *f = XFRAME (WINDOW_FRAME (w));
7084 XRectangle clip_rect;
7085 int window_x, window_y, window_width;
7086
7087 window_box (w, area, &window_x, &window_y, &window_width, 0);
7088
7089 clip_rect.x = window_x;
7090 clip_rect.y = WINDOW_TO_FRAME_PIXEL_Y (w, max (0, row->y));
7091 clip_rect.y = max (clip_rect.y, window_y);
7092 clip_rect.width = window_width;
7093 clip_rect.height = row->visible_height;
7094
7095 XSetClipRectangles (FRAME_X_DISPLAY (f), gc, 0, 0, &clip_rect, 1, Unsorted);
7096 }
7097
7098
7099 /* Draw a hollow box cursor on window W in glyph row ROW. */
7100
7101 static void
7102 x_draw_hollow_cursor (struct window *w, struct glyph_row *row)
7103 {
7104 struct frame *f = XFRAME (WINDOW_FRAME (w));
7105 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
7106 Display *dpy = FRAME_X_DISPLAY (f);
7107 int x, y, wd, h;
7108 XGCValues xgcv;
7109 struct glyph *cursor_glyph;
7110 GC gc;
7111
7112 /* Get the glyph the cursor is on. If we can't tell because
7113 the current matrix is invalid or such, give up. */
7114 cursor_glyph = get_phys_cursor_glyph (w);
7115 if (cursor_glyph == NULL)
7116 return;
7117
7118 /* Compute frame-relative coordinates for phys cursor. */
7119 get_phys_cursor_geometry (w, row, cursor_glyph, &x, &y, &h);
7120 wd = w->phys_cursor_width;
7121
7122 /* The foreground of cursor_gc is typically the same as the normal
7123 background color, which can cause the cursor box to be invisible. */
7124 xgcv.foreground = f->output_data.x->cursor_pixel;
7125 if (dpyinfo->scratch_cursor_gc)
7126 XChangeGC (dpy, dpyinfo->scratch_cursor_gc, GCForeground, &xgcv);
7127 else
7128 dpyinfo->scratch_cursor_gc = XCreateGC (dpy, FRAME_X_WINDOW (f),
7129 GCForeground, &xgcv);
7130 gc = dpyinfo->scratch_cursor_gc;
7131
7132 /* Set clipping, draw the rectangle, and reset clipping again. */
7133 x_clip_to_row (w, row, TEXT_AREA, gc);
7134 XDrawRectangle (dpy, FRAME_X_WINDOW (f), gc, x, y, wd, h - 1);
7135 XSetClipMask (dpy, gc, None);
7136 }
7137
7138
7139 /* Draw a bar cursor on window W in glyph row ROW.
7140
7141 Implementation note: One would like to draw a bar cursor with an
7142 angle equal to the one given by the font property XA_ITALIC_ANGLE.
7143 Unfortunately, I didn't find a font yet that has this property set.
7144 --gerd. */
7145
7146 static void
7147 x_draw_bar_cursor (struct window *w, struct glyph_row *row, int width, enum text_cursor_kinds kind)
7148 {
7149 struct frame *f = XFRAME (w->frame);
7150 struct glyph *cursor_glyph;
7151
7152 /* If cursor is out of bounds, don't draw garbage. This can happen
7153 in mini-buffer windows when switching between echo area glyphs
7154 and mini-buffer. */
7155 cursor_glyph = get_phys_cursor_glyph (w);
7156 if (cursor_glyph == NULL)
7157 return;
7158
7159 /* If on an image, draw like a normal cursor. That's usually better
7160 visible than drawing a bar, esp. if the image is large so that
7161 the bar might not be in the window. */
7162 if (cursor_glyph->type == IMAGE_GLYPH)
7163 {
7164 struct glyph_row *r;
7165 r = MATRIX_ROW (w->current_matrix, w->phys_cursor.vpos);
7166 draw_phys_cursor_glyph (w, r, DRAW_CURSOR);
7167 }
7168 else
7169 {
7170 Display *dpy = FRAME_X_DISPLAY (f);
7171 Window window = FRAME_X_WINDOW (f);
7172 GC gc = FRAME_DISPLAY_INFO (f)->scratch_cursor_gc;
7173 unsigned long mask = GCForeground | GCBackground | GCGraphicsExposures;
7174 struct face *face = FACE_FROM_ID (f, cursor_glyph->face_id);
7175 XGCValues xgcv;
7176
7177 /* If the glyph's background equals the color we normally draw
7178 the bars cursor in, the bar cursor in its normal color is
7179 invisible. Use the glyph's foreground color instead in this
7180 case, on the assumption that the glyph's colors are chosen so
7181 that the glyph is legible. */
7182 if (face->background == f->output_data.x->cursor_pixel)
7183 xgcv.background = xgcv.foreground = face->foreground;
7184 else
7185 xgcv.background = xgcv.foreground = f->output_data.x->cursor_pixel;
7186 xgcv.graphics_exposures = 0;
7187
7188 if (gc)
7189 XChangeGC (dpy, gc, mask, &xgcv);
7190 else
7191 {
7192 gc = XCreateGC (dpy, window, mask, &xgcv);
7193 FRAME_DISPLAY_INFO (f)->scratch_cursor_gc = gc;
7194 }
7195
7196 x_clip_to_row (w, row, TEXT_AREA, gc);
7197
7198 if (kind == BAR_CURSOR)
7199 {
7200 int x = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x);
7201
7202 if (width < 0)
7203 width = FRAME_CURSOR_WIDTH (f);
7204 width = min (cursor_glyph->pixel_width, width);
7205
7206 w->phys_cursor_width = width;
7207
7208 /* If the character under cursor is R2L, draw the bar cursor
7209 on the right of its glyph, rather than on the left. */
7210 if ((cursor_glyph->resolved_level & 1) != 0)
7211 x += cursor_glyph->pixel_width - width;
7212
7213 XFillRectangle (dpy, window, gc, x,
7214 WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y),
7215 width, row->height);
7216 }
7217 else
7218 {
7219 int dummy_x, dummy_y, dummy_h;
7220
7221 if (width < 0)
7222 width = row->height;
7223
7224 width = min (row->height, width);
7225
7226 get_phys_cursor_geometry (w, row, cursor_glyph, &dummy_x,
7227 &dummy_y, &dummy_h);
7228
7229 XFillRectangle (dpy, window, gc,
7230 WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x),
7231 WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y +
7232 row->height - width),
7233 w->phys_cursor_width, width);
7234 }
7235
7236 XSetClipMask (dpy, gc, None);
7237 }
7238 }
7239
7240
7241 /* RIF: Define cursor CURSOR on frame F. */
7242
7243 static void
7244 x_define_frame_cursor (struct frame *f, Cursor cursor)
7245 {
7246 if (!f->pointer_invisible
7247 && f->output_data.x->current_cursor != cursor)
7248 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), cursor);
7249 f->output_data.x->current_cursor = cursor;
7250 }
7251
7252
7253 /* RIF: Clear area on frame F. */
7254
7255 static void
7256 x_clear_frame_area (struct frame *f, int x, int y, int width, int height)
7257 {
7258 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), x, y, width, height);
7259 #ifdef USE_GTK
7260 /* Must queue a redraw, because scroll bars might have been cleared. */
7261 if (FRAME_GTK_WIDGET (f))
7262 gtk_widget_queue_draw (FRAME_GTK_WIDGET (f));
7263 #endif
7264 }
7265
7266
7267 /* RIF: Draw cursor on window W. */
7268
7269 static void
7270 x_draw_window_cursor (struct window *w, struct glyph_row *glyph_row, int x,
7271 int y, enum text_cursor_kinds cursor_type,
7272 int cursor_width, bool on_p, bool active_p)
7273 {
7274 struct frame *f = XFRAME (WINDOW_FRAME (w));
7275
7276 if (on_p)
7277 {
7278 w->phys_cursor_type = cursor_type;
7279 w->phys_cursor_on_p = 1;
7280
7281 if (glyph_row->exact_window_width_line_p
7282 && (glyph_row->reversed_p
7283 ? (w->phys_cursor.hpos < 0)
7284 : (w->phys_cursor.hpos >= glyph_row->used[TEXT_AREA])))
7285 {
7286 glyph_row->cursor_in_fringe_p = 1;
7287 draw_fringe_bitmap (w, glyph_row, glyph_row->reversed_p);
7288 }
7289 else
7290 {
7291 switch (cursor_type)
7292 {
7293 case HOLLOW_BOX_CURSOR:
7294 x_draw_hollow_cursor (w, glyph_row);
7295 break;
7296
7297 case FILLED_BOX_CURSOR:
7298 draw_phys_cursor_glyph (w, glyph_row, DRAW_CURSOR);
7299 break;
7300
7301 case BAR_CURSOR:
7302 x_draw_bar_cursor (w, glyph_row, cursor_width, BAR_CURSOR);
7303 break;
7304
7305 case HBAR_CURSOR:
7306 x_draw_bar_cursor (w, glyph_row, cursor_width, HBAR_CURSOR);
7307 break;
7308
7309 case NO_CURSOR:
7310 w->phys_cursor_width = 0;
7311 break;
7312
7313 default:
7314 emacs_abort ();
7315 }
7316 }
7317
7318 #ifdef HAVE_X_I18N
7319 if (w == XWINDOW (f->selected_window))
7320 if (FRAME_XIC (f) && (FRAME_XIC_STYLE (f) & XIMPreeditPosition))
7321 xic_set_preeditarea (w, x, y);
7322 #endif
7323 }
7324
7325 XFlush (FRAME_X_DISPLAY (f));
7326 }
7327
7328 \f
7329 /* Icons. */
7330
7331 /* Make the x-window of frame F use the gnu icon bitmap. */
7332
7333 int
7334 x_bitmap_icon (struct frame *f, Lisp_Object file)
7335 {
7336 ptrdiff_t bitmap_id;
7337
7338 if (FRAME_X_WINDOW (f) == 0)
7339 return 1;
7340
7341 /* Free up our existing icon bitmap and mask if any. */
7342 if (f->output_data.x->icon_bitmap > 0)
7343 x_destroy_bitmap (f, f->output_data.x->icon_bitmap);
7344 f->output_data.x->icon_bitmap = 0;
7345
7346 if (STRINGP (file))
7347 {
7348 #ifdef USE_GTK
7349 /* Use gtk_window_set_icon_from_file () if available,
7350 It's not restricted to bitmaps */
7351 if (xg_set_icon (f, file))
7352 return 0;
7353 #endif /* USE_GTK */
7354 bitmap_id = x_create_bitmap_from_file (f, file);
7355 x_create_bitmap_mask (f, bitmap_id);
7356 }
7357 else
7358 {
7359 /* Create the GNU bitmap and mask if necessary. */
7360 if (FRAME_DISPLAY_INFO (f)->icon_bitmap_id < 0)
7361 {
7362 ptrdiff_t rc = -1;
7363
7364 #ifdef USE_GTK
7365
7366 if (xg_set_icon (f, xg_default_icon_file)
7367 || xg_set_icon_from_xpm_data (f, gnu_xpm_bits))
7368 return 0;
7369
7370 #elif defined (HAVE_XPM) && defined (HAVE_X_WINDOWS)
7371
7372 rc = x_create_bitmap_from_xpm_data (f, gnu_xpm_bits);
7373 if (rc != -1)
7374 FRAME_DISPLAY_INFO (f)->icon_bitmap_id = rc;
7375
7376 #endif
7377
7378 /* If all else fails, use the (black and white) xbm image. */
7379 if (rc == -1)
7380 {
7381 rc = x_create_bitmap_from_data (f, (char *) gnu_xbm_bits,
7382 gnu_xbm_width, gnu_xbm_height);
7383 if (rc == -1)
7384 return 1;
7385
7386 FRAME_DISPLAY_INFO (f)->icon_bitmap_id = rc;
7387 x_create_bitmap_mask (f, FRAME_DISPLAY_INFO (f)->icon_bitmap_id);
7388 }
7389 }
7390
7391 /* The first time we create the GNU bitmap and mask,
7392 this increments the ref-count one extra time.
7393 As a result, the GNU bitmap and mask are never freed.
7394 That way, we don't have to worry about allocating it again. */
7395 x_reference_bitmap (f, FRAME_DISPLAY_INFO (f)->icon_bitmap_id);
7396
7397 bitmap_id = FRAME_DISPLAY_INFO (f)->icon_bitmap_id;
7398 }
7399
7400 x_wm_set_icon_pixmap (f, bitmap_id);
7401 f->output_data.x->icon_bitmap = bitmap_id;
7402
7403 return 0;
7404 }
7405
7406
7407 /* Make the x-window of frame F use a rectangle with text.
7408 Use ICON_NAME as the text. */
7409
7410 int
7411 x_text_icon (struct frame *f, const char *icon_name)
7412 {
7413 if (FRAME_X_WINDOW (f) == 0)
7414 return 1;
7415
7416 {
7417 XTextProperty text;
7418 text.value = (unsigned char *) icon_name;
7419 text.encoding = XA_STRING;
7420 text.format = 8;
7421 text.nitems = strlen (icon_name);
7422 XSetWMIconName (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f), &text);
7423 }
7424
7425 if (f->output_data.x->icon_bitmap > 0)
7426 x_destroy_bitmap (f, f->output_data.x->icon_bitmap);
7427 f->output_data.x->icon_bitmap = 0;
7428 x_wm_set_icon_pixmap (f, 0);
7429
7430 return 0;
7431 }
7432 \f
7433 #define X_ERROR_MESSAGE_SIZE 200
7434
7435 /* If non-nil, this should be a string.
7436 It means catch X errors and store the error message in this string.
7437
7438 The reason we use a stack is that x_catch_error/x_uncatch_error can
7439 be called from a signal handler.
7440 */
7441
7442 struct x_error_message_stack {
7443 char string[X_ERROR_MESSAGE_SIZE];
7444 Display *dpy;
7445 struct x_error_message_stack *prev;
7446 };
7447 static struct x_error_message_stack *x_error_message;
7448
7449 /* An X error handler which stores the error message in
7450 *x_error_message. This is called from x_error_handler if
7451 x_catch_errors is in effect. */
7452
7453 static void
7454 x_error_catcher (Display *display, XErrorEvent *event)
7455 {
7456 XGetErrorText (display, event->error_code,
7457 x_error_message->string,
7458 X_ERROR_MESSAGE_SIZE);
7459 }
7460
7461 /* Begin trapping X errors for display DPY. Actually we trap X errors
7462 for all displays, but DPY should be the display you are actually
7463 operating on.
7464
7465 After calling this function, X protocol errors no longer cause
7466 Emacs to exit; instead, they are recorded in the string
7467 stored in *x_error_message.
7468
7469 Calling x_check_errors signals an Emacs error if an X error has
7470 occurred since the last call to x_catch_errors or x_check_errors.
7471
7472 Calling x_uncatch_errors resumes the normal error handling. */
7473
7474 void
7475 x_catch_errors (Display *dpy)
7476 {
7477 struct x_error_message_stack *data = xmalloc (sizeof *data);
7478
7479 /* Make sure any errors from previous requests have been dealt with. */
7480 XSync (dpy, False);
7481
7482 data->dpy = dpy;
7483 data->string[0] = 0;
7484 data->prev = x_error_message;
7485 x_error_message = data;
7486 }
7487
7488 /* Undo the last x_catch_errors call.
7489 DPY should be the display that was passed to x_catch_errors. */
7490
7491 void
7492 x_uncatch_errors (void)
7493 {
7494 struct x_error_message_stack *tmp;
7495
7496 block_input ();
7497
7498 /* The display may have been closed before this function is called.
7499 Check if it is still open before calling XSync. */
7500 if (x_display_info_for_display (x_error_message->dpy) != 0)
7501 XSync (x_error_message->dpy, False);
7502
7503 tmp = x_error_message;
7504 x_error_message = x_error_message->prev;
7505 xfree (tmp);
7506 unblock_input ();
7507 }
7508
7509 /* If any X protocol errors have arrived since the last call to
7510 x_catch_errors or x_check_errors, signal an Emacs error using
7511 sprintf (a buffer, FORMAT, the x error message text) as the text. */
7512
7513 void
7514 x_check_errors (Display *dpy, const char *format)
7515 {
7516 /* Make sure to catch any errors incurred so far. */
7517 XSync (dpy, False);
7518
7519 if (x_error_message->string[0])
7520 {
7521 char string[X_ERROR_MESSAGE_SIZE];
7522 memcpy (string, x_error_message->string, X_ERROR_MESSAGE_SIZE);
7523 x_uncatch_errors ();
7524 error (format, string);
7525 }
7526 }
7527
7528 /* Nonzero if we had any X protocol errors
7529 since we did x_catch_errors on DPY. */
7530
7531 bool
7532 x_had_errors_p (Display *dpy)
7533 {
7534 /* Make sure to catch any errors incurred so far. */
7535 XSync (dpy, False);
7536
7537 return x_error_message->string[0] != 0;
7538 }
7539
7540 /* Forget about any errors we have had, since we did x_catch_errors on DPY. */
7541
7542 void
7543 x_clear_errors (Display *dpy)
7544 {
7545 x_error_message->string[0] = 0;
7546 }
7547
7548 #if 0 /* See comment in unwind_to_catch why calling this is a bad
7549 * idea. --lorentey */
7550 /* Close off all unclosed x_catch_errors calls. */
7551
7552 void
7553 x_fully_uncatch_errors (void)
7554 {
7555 while (x_error_message)
7556 x_uncatch_errors ();
7557 }
7558 #endif
7559
7560 #if 0
7561 static unsigned int x_wire_count;
7562 x_trace_wire (void)
7563 {
7564 fprintf (stderr, "Lib call: %d\n", ++x_wire_count);
7565 }
7566 #endif /* ! 0 */
7567
7568 \f
7569 /************************************************************************
7570 Handling X errors
7571 ************************************************************************/
7572
7573 /* Error message passed to x_connection_closed. */
7574
7575 static char *error_msg;
7576
7577 /* Handle the loss of connection to display DPY. ERROR_MESSAGE is
7578 the text of an error message that lead to the connection loss. */
7579
7580 static void
7581 x_connection_closed (Display *dpy, const char *error_message)
7582 {
7583 struct x_display_info *dpyinfo = x_display_info_for_display (dpy);
7584 Lisp_Object frame, tail;
7585 ptrdiff_t idx = SPECPDL_INDEX ();
7586
7587 error_msg = alloca (strlen (error_message) + 1);
7588 strcpy (error_msg, error_message);
7589
7590 /* Inhibit redisplay while frames are being deleted. */
7591 specbind (Qinhibit_redisplay, Qt);
7592
7593 if (dpyinfo)
7594 {
7595 /* Protect display from being closed when we delete the last
7596 frame on it. */
7597 dpyinfo->reference_count++;
7598 dpyinfo->terminal->reference_count++;
7599 }
7600
7601 /* First delete frames whose mini-buffers are on frames
7602 that are on the dead display. */
7603 FOR_EACH_FRAME (tail, frame)
7604 {
7605 Lisp_Object minibuf_frame;
7606 minibuf_frame
7607 = WINDOW_FRAME (XWINDOW (FRAME_MINIBUF_WINDOW (XFRAME (frame))));
7608 if (FRAME_X_P (XFRAME (frame))
7609 && FRAME_X_P (XFRAME (minibuf_frame))
7610 && ! EQ (frame, minibuf_frame)
7611 && FRAME_DISPLAY_INFO (XFRAME (minibuf_frame)) == dpyinfo)
7612 delete_frame (frame, Qnoelisp);
7613 }
7614
7615 /* Now delete all remaining frames on the dead display.
7616 We are now sure none of these is used as the mini-buffer
7617 for another frame that we need to delete. */
7618 FOR_EACH_FRAME (tail, frame)
7619 if (FRAME_X_P (XFRAME (frame))
7620 && FRAME_DISPLAY_INFO (XFRAME (frame)) == dpyinfo)
7621 {
7622 /* Set this to t so that delete_frame won't get confused
7623 trying to find a replacement. */
7624 kset_default_minibuffer_frame (FRAME_KBOARD (XFRAME (frame)), Qt);
7625 delete_frame (frame, Qnoelisp);
7626 }
7627
7628 /* If DPYINFO is null, this means we didn't open the display in the
7629 first place, so don't try to close it. */
7630 if (dpyinfo)
7631 {
7632 /* We can not call XtCloseDisplay here because it calls XSync.
7633 XSync inside the error handler apparently hangs Emacs. On
7634 current Xt versions, this isn't needed either. */
7635 #ifdef USE_GTK
7636 /* A long-standing GTK bug prevents proper disconnect handling
7637 (https://bugzilla.gnome.org/show_bug.cgi?id=85715). Once,
7638 the resulting Glib error message loop filled a user's disk.
7639 To avoid this, kill Emacs unconditionally on disconnect. */
7640 shut_down_emacs (0, Qnil);
7641 fprintf (stderr, "%s\n\
7642 When compiled with GTK, Emacs cannot recover from X disconnects.\n\
7643 This is a GTK bug: https://bugzilla.gnome.org/show_bug.cgi?id=85715\n\
7644 For details, see etc/PROBLEMS.\n",
7645 error_msg);
7646 emacs_abort ();
7647 #endif /* USE_GTK */
7648
7649 /* Indicate that this display is dead. */
7650 dpyinfo->display = 0;
7651
7652 dpyinfo->reference_count--;
7653 dpyinfo->terminal->reference_count--;
7654 if (dpyinfo->reference_count != 0)
7655 /* We have just closed all frames on this display. */
7656 emacs_abort ();
7657
7658 {
7659 Lisp_Object tmp;
7660 XSETTERMINAL (tmp, dpyinfo->terminal);
7661 Fdelete_terminal (tmp, Qnoelisp);
7662 }
7663 }
7664
7665 if (terminal_list == 0)
7666 {
7667 fprintf (stderr, "%s\n", error_msg);
7668 Fkill_emacs (make_number (70));
7669 /* NOTREACHED */
7670 }
7671
7672 totally_unblock_input ();
7673
7674 unbind_to (idx, Qnil);
7675 clear_waiting_for_input ();
7676
7677 /* Tell GCC not to suggest attribute 'noreturn' for this function. */
7678 IF_LINT (if (! terminal_list) return; )
7679
7680 /* Here, we absolutely have to use a non-local exit (e.g. signal, throw,
7681 longjmp), because returning from this function would get us back into
7682 Xlib's code which will directly call `exit'. */
7683 error ("%s", error_msg);
7684 }
7685
7686 /* We specifically use it before defining it, so that gcc doesn't inline it,
7687 otherwise gdb doesn't know how to properly put a breakpoint on it. */
7688 static void x_error_quitter (Display *, XErrorEvent *);
7689
7690 /* This is the first-level handler for X protocol errors.
7691 It calls x_error_quitter or x_error_catcher. */
7692
7693 static int
7694 x_error_handler (Display *display, XErrorEvent *event)
7695 {
7696 #if defined USE_GTK && defined HAVE_GTK3
7697 if ((event->error_code == BadMatch || event->error_code == BadWindow)
7698 && event->request_code == X_SetInputFocus)
7699 {
7700 return 0;
7701 }
7702 #endif
7703
7704 if (x_error_message)
7705 x_error_catcher (display, event);
7706 else
7707 x_error_quitter (display, event);
7708 return 0;
7709 }
7710
7711 /* This is the usual handler for X protocol errors.
7712 It kills all frames on the display that we got the error for.
7713 If that was the only one, it prints an error message and kills Emacs. */
7714
7715 /* .gdbinit puts a breakpoint here, so make sure it is not inlined. */
7716
7717 /* On older GCC versions, just putting x_error_quitter
7718 after x_error_handler prevents inlining into the former. */
7719
7720 static void NO_INLINE
7721 x_error_quitter (Display *display, XErrorEvent *event)
7722 {
7723 char buf[256], buf1[356];
7724
7725 /* Ignore BadName errors. They can happen because of fonts
7726 or colors that are not defined. */
7727
7728 if (event->error_code == BadName)
7729 return;
7730
7731 /* Note that there is no real way portable across R3/R4 to get the
7732 original error handler. */
7733
7734 XGetErrorText (display, event->error_code, buf, sizeof (buf));
7735 sprintf (buf1, "X protocol error: %s on protocol request %d",
7736 buf, event->request_code);
7737 x_connection_closed (display, buf1);
7738 }
7739
7740
7741 /* This is the handler for X IO errors, always.
7742 It kills all frames on the display that we lost touch with.
7743 If that was the only one, it prints an error message and kills Emacs. */
7744
7745 static int
7746 x_io_error_quitter (Display *display)
7747 {
7748 char buf[256];
7749
7750 snprintf (buf, sizeof buf, "Connection lost to X server `%s'",
7751 DisplayString (display));
7752 x_connection_closed (display, buf);
7753 return 0;
7754 }
7755 \f
7756 /* Changing the font of the frame. */
7757
7758 /* Give frame F the font FONT-OBJECT as its default font. The return
7759 value is FONT-OBJECT. FONTSET is an ID of the fontset for the
7760 frame. If it is negative, generate a new fontset from
7761 FONT-OBJECT. */
7762
7763 Lisp_Object
7764 x_new_font (struct frame *f, Lisp_Object font_object, int fontset)
7765 {
7766 struct font *font = XFONT_OBJECT (font_object);
7767 int unit;
7768
7769 if (fontset < 0)
7770 fontset = fontset_from_font (font_object);
7771 FRAME_FONTSET (f) = fontset;
7772 if (FRAME_FONT (f) == font)
7773 /* This font is already set in frame F. There's nothing more to
7774 do. */
7775 return font_object;
7776
7777 FRAME_FONT (f) = font;
7778 FRAME_BASELINE_OFFSET (f) = font->baseline_offset;
7779 FRAME_COLUMN_WIDTH (f) = font->average_width;
7780 FRAME_LINE_HEIGHT (f) = FONT_HEIGHT (font);
7781
7782 FRAME_TOOL_BAR_HEIGHT (f) = FRAME_TOOL_BAR_LINES (f) * FRAME_LINE_HEIGHT (f);
7783 FRAME_MENU_BAR_HEIGHT (f) = FRAME_MENU_BAR_LINES (f) * FRAME_LINE_HEIGHT (f);
7784
7785 compute_fringe_widths (f, 1);
7786
7787 /* Compute character columns occupied by scrollbar.
7788
7789 Don't do things differently for non-toolkit scrollbars
7790 (Bug#17163). */
7791 unit = FRAME_COLUMN_WIDTH (f);
7792 if (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) > 0)
7793 FRAME_CONFIG_SCROLL_BAR_COLS (f)
7794 = (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) + unit - 1) / unit;
7795 else
7796 FRAME_CONFIG_SCROLL_BAR_COLS (f) = (14 + unit - 1) / unit;
7797
7798 if (FRAME_X_WINDOW (f) != 0)
7799 {
7800 /* Don't change the size of a tip frame; there's no point in
7801 doing it because it's done in Fx_show_tip, and it leads to
7802 problems because the tip frame has no widget. */
7803 if (NILP (tip_frame) || XFRAME (tip_frame) != f)
7804 x_set_window_size (f, 0, FRAME_COLS (f) * FRAME_COLUMN_WIDTH (f),
7805 FRAME_LINES (f) * FRAME_LINE_HEIGHT (f), 1);
7806 }
7807
7808 #ifdef HAVE_X_I18N
7809 if (FRAME_XIC (f)
7810 && (FRAME_XIC_STYLE (f) & (XIMPreeditPosition | XIMStatusArea)))
7811 {
7812 block_input ();
7813 xic_set_xfontset (f, SSDATA (fontset_ascii (fontset)));
7814 unblock_input ();
7815 }
7816 #endif
7817
7818 return font_object;
7819 }
7820
7821 \f
7822 /***********************************************************************
7823 X Input Methods
7824 ***********************************************************************/
7825
7826 #ifdef HAVE_X_I18N
7827
7828 #ifdef HAVE_X11R6
7829
7830 /* XIM destroy callback function, which is called whenever the
7831 connection to input method XIM dies. CLIENT_DATA contains a
7832 pointer to the x_display_info structure corresponding to XIM. */
7833
7834 static void
7835 xim_destroy_callback (XIM xim, XPointer client_data, XPointer call_data)
7836 {
7837 struct x_display_info *dpyinfo = (struct x_display_info *) client_data;
7838 Lisp_Object frame, tail;
7839
7840 block_input ();
7841
7842 /* No need to call XDestroyIC.. */
7843 FOR_EACH_FRAME (tail, frame)
7844 {
7845 struct frame *f = XFRAME (frame);
7846 if (FRAME_X_P (f) && FRAME_DISPLAY_INFO (f) == dpyinfo)
7847 {
7848 FRAME_XIC (f) = NULL;
7849 xic_free_xfontset (f);
7850 }
7851 }
7852
7853 /* No need to call XCloseIM. */
7854 dpyinfo->xim = NULL;
7855 XFree (dpyinfo->xim_styles);
7856 unblock_input ();
7857 }
7858
7859 #endif /* HAVE_X11R6 */
7860
7861 #ifdef HAVE_X11R6
7862 /* This isn't prototyped in OSF 5.0 or 5.1a. */
7863 extern char *XSetIMValues (XIM, ...);
7864 #endif
7865
7866 /* Open the connection to the XIM server on display DPYINFO.
7867 RESOURCE_NAME is the resource name Emacs uses. */
7868
7869 static void
7870 xim_open_dpy (struct x_display_info *dpyinfo, char *resource_name)
7871 {
7872 XIM xim;
7873
7874 #ifdef HAVE_XIM
7875 if (use_xim)
7876 {
7877 if (dpyinfo->xim)
7878 XCloseIM (dpyinfo->xim);
7879 xim = XOpenIM (dpyinfo->display, dpyinfo->xrdb, resource_name,
7880 emacs_class);
7881 dpyinfo->xim = xim;
7882
7883 if (xim)
7884 {
7885 #ifdef HAVE_X11R6
7886 XIMCallback destroy;
7887 #endif
7888
7889 /* Get supported styles and XIM values. */
7890 XGetIMValues (xim, XNQueryInputStyle, &dpyinfo->xim_styles, NULL);
7891
7892 #ifdef HAVE_X11R6
7893 destroy.callback = xim_destroy_callback;
7894 destroy.client_data = (XPointer)dpyinfo;
7895 XSetIMValues (xim, XNDestroyCallback, &destroy, NULL);
7896 #endif
7897 }
7898 }
7899
7900 else
7901 #endif /* HAVE_XIM */
7902 dpyinfo->xim = NULL;
7903 }
7904
7905
7906 #ifdef HAVE_X11R6_XIM
7907
7908 /* XIM instantiate callback function, which is called whenever an XIM
7909 server is available. DISPLAY is the display of the XIM.
7910 CLIENT_DATA contains a pointer to an xim_inst_t structure created
7911 when the callback was registered. */
7912
7913 static void
7914 xim_instantiate_callback (Display *display, XPointer client_data, XPointer call_data)
7915 {
7916 struct xim_inst_t *xim_inst = (struct xim_inst_t *) client_data;
7917 struct x_display_info *dpyinfo = xim_inst->dpyinfo;
7918
7919 /* We don't support multiple XIM connections. */
7920 if (dpyinfo->xim)
7921 return;
7922
7923 xim_open_dpy (dpyinfo, xim_inst->resource_name);
7924
7925 /* Create XIC for the existing frames on the same display, as long
7926 as they have no XIC. */
7927 if (dpyinfo->xim && dpyinfo->reference_count > 0)
7928 {
7929 Lisp_Object tail, frame;
7930
7931 block_input ();
7932 FOR_EACH_FRAME (tail, frame)
7933 {
7934 struct frame *f = XFRAME (frame);
7935
7936 if (FRAME_X_P (f)
7937 && FRAME_DISPLAY_INFO (f) == xim_inst->dpyinfo)
7938 if (FRAME_XIC (f) == NULL)
7939 {
7940 create_frame_xic (f);
7941 if (FRAME_XIC_STYLE (f) & XIMStatusArea)
7942 xic_set_statusarea (f);
7943 if (FRAME_XIC_STYLE (f) & XIMPreeditPosition)
7944 {
7945 struct window *w = XWINDOW (f->selected_window);
7946 xic_set_preeditarea (w, w->cursor.x, w->cursor.y);
7947 }
7948 }
7949 }
7950
7951 unblock_input ();
7952 }
7953 }
7954
7955 #endif /* HAVE_X11R6_XIM */
7956
7957
7958 /* Open a connection to the XIM server on display DPYINFO.
7959 RESOURCE_NAME is the resource name for Emacs. On X11R5, open the
7960 connection only at the first time. On X11R6, open the connection
7961 in the XIM instantiate callback function. */
7962
7963 static void
7964 xim_initialize (struct x_display_info *dpyinfo, char *resource_name)
7965 {
7966 dpyinfo->xim = NULL;
7967 #ifdef HAVE_XIM
7968 if (use_xim)
7969 {
7970 #ifdef HAVE_X11R6_XIM
7971 struct xim_inst_t *xim_inst = xmalloc (sizeof *xim_inst);
7972 Bool ret;
7973
7974 dpyinfo->xim_callback_data = xim_inst;
7975 xim_inst->dpyinfo = dpyinfo;
7976 xim_inst->resource_name = xstrdup (resource_name);
7977 ret = XRegisterIMInstantiateCallback
7978 (dpyinfo->display, dpyinfo->xrdb, xim_inst->resource_name,
7979 emacs_class, xim_instantiate_callback,
7980 /* This is XPointer in XFree86 but (XPointer *)
7981 on Tru64, at least, hence the configure test. */
7982 (XRegisterIMInstantiateCallback_arg6) xim_inst);
7983 eassert (ret == True);
7984 #else /* not HAVE_X11R6_XIM */
7985 xim_open_dpy (dpyinfo, resource_name);
7986 #endif /* not HAVE_X11R6_XIM */
7987 }
7988 #endif /* HAVE_XIM */
7989 }
7990
7991
7992 /* Close the connection to the XIM server on display DPYINFO. */
7993
7994 static void
7995 xim_close_dpy (struct x_display_info *dpyinfo)
7996 {
7997 #ifdef HAVE_XIM
7998 if (use_xim)
7999 {
8000 #ifdef HAVE_X11R6_XIM
8001 struct xim_inst_t *xim_inst = dpyinfo->xim_callback_data;
8002
8003 if (dpyinfo->display)
8004 {
8005 Bool ret = XUnregisterIMInstantiateCallback
8006 (dpyinfo->display, dpyinfo->xrdb, xim_inst->resource_name,
8007 emacs_class, xim_instantiate_callback,
8008 (XRegisterIMInstantiateCallback_arg6) xim_inst);
8009 eassert (ret == True);
8010 }
8011 xfree (xim_inst->resource_name);
8012 xfree (xim_inst);
8013 #endif /* HAVE_X11R6_XIM */
8014 if (dpyinfo->display)
8015 XCloseIM (dpyinfo->xim);
8016 dpyinfo->xim = NULL;
8017 XFree (dpyinfo->xim_styles);
8018 }
8019 #endif /* HAVE_XIM */
8020 }
8021
8022 #endif /* not HAVE_X11R6_XIM */
8023
8024
8025 \f
8026 /* Calculate the absolute position in frame F
8027 from its current recorded position values and gravity. */
8028
8029 static void
8030 x_calc_absolute_position (struct frame *f)
8031 {
8032 int flags = f->size_hint_flags;
8033
8034 /* We have nothing to do if the current position
8035 is already for the top-left corner. */
8036 if (! ((flags & XNegative) || (flags & YNegative)))
8037 return;
8038
8039 /* Treat negative positions as relative to the leftmost bottommost
8040 position that fits on the screen. */
8041 if (flags & XNegative)
8042 f->left_pos = x_display_pixel_width (FRAME_DISPLAY_INFO (f))
8043 - FRAME_PIXEL_WIDTH (f) + f->left_pos;
8044
8045 {
8046 int height = FRAME_PIXEL_HEIGHT (f);
8047
8048 #if defined USE_X_TOOLKIT && defined USE_MOTIF
8049 /* Something is fishy here. When using Motif, starting Emacs with
8050 `-g -0-0', the frame appears too low by a few pixels.
8051
8052 This seems to be so because initially, while Emacs is starting,
8053 the column widget's height and the frame's pixel height are
8054 different. The column widget's height is the right one. In
8055 later invocations, when Emacs is up, the frame's pixel height
8056 is right, though.
8057
8058 It's not obvious where the initial small difference comes from.
8059 2000-12-01, gerd. */
8060
8061 XtVaGetValues (f->output_data.x->column_widget, XtNheight, &height, NULL);
8062 #endif
8063
8064 if (flags & YNegative)
8065 f->top_pos = x_display_pixel_height (FRAME_DISPLAY_INFO (f))
8066 - height + f->top_pos;
8067 }
8068
8069 /* The left_pos and top_pos
8070 are now relative to the top and left screen edges,
8071 so the flags should correspond. */
8072 f->size_hint_flags &= ~ (XNegative | YNegative);
8073 }
8074
8075 /* CHANGE_GRAVITY is 1 when calling from Fset_frame_position,
8076 to really change the position, and 0 when calling from
8077 x_make_frame_visible (in that case, XOFF and YOFF are the current
8078 position values). It is -1 when calling from x_set_frame_parameters,
8079 which means, do adjust for borders but don't change the gravity. */
8080
8081 void
8082 x_set_offset (struct frame *f, register int xoff, register int yoff, int change_gravity)
8083 {
8084 int modified_top, modified_left;
8085
8086 if (change_gravity > 0)
8087 {
8088 f->top_pos = yoff;
8089 f->left_pos = xoff;
8090 f->size_hint_flags &= ~ (XNegative | YNegative);
8091 if (xoff < 0)
8092 f->size_hint_flags |= XNegative;
8093 if (yoff < 0)
8094 f->size_hint_flags |= YNegative;
8095 f->win_gravity = NorthWestGravity;
8096 }
8097 x_calc_absolute_position (f);
8098
8099 block_input ();
8100 x_wm_set_size_hint (f, (long) 0, 0);
8101
8102 modified_left = f->left_pos;
8103 modified_top = f->top_pos;
8104
8105 if (change_gravity != 0 && FRAME_DISPLAY_INFO (f)->wm_type == X_WMTYPE_A)
8106 {
8107 /* Some WMs (twm, wmaker at least) has an offset that is smaller
8108 than the WM decorations. So we use the calculated offset instead
8109 of the WM decoration sizes here (x/y_pixels_outer_diff). */
8110 modified_left += FRAME_X_OUTPUT (f)->move_offset_left;
8111 modified_top += FRAME_X_OUTPUT (f)->move_offset_top;
8112 }
8113
8114 XMoveWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
8115 modified_left, modified_top);
8116
8117 x_sync_with_move (f, f->left_pos, f->top_pos,
8118 FRAME_DISPLAY_INFO (f)->wm_type == X_WMTYPE_UNKNOWN
8119 ? 1 : 0);
8120
8121 /* change_gravity is non-zero when this function is called from Lisp to
8122 programmatically move a frame. In that case, we call
8123 x_check_expected_move to discover if we have a "Type A" or "Type B"
8124 window manager, and, for a "Type A" window manager, adjust the position
8125 of the frame.
8126
8127 We call x_check_expected_move if a programmatic move occurred, and
8128 either the window manager type (A/B) is unknown or it is Type A but we
8129 need to compute the top/left offset adjustment for this frame. */
8130
8131 if (change_gravity != 0 &&
8132 (FRAME_DISPLAY_INFO (f)->wm_type == X_WMTYPE_UNKNOWN
8133 || (FRAME_DISPLAY_INFO (f)->wm_type == X_WMTYPE_A
8134 && (FRAME_X_OUTPUT (f)->move_offset_left == 0
8135 && FRAME_X_OUTPUT (f)->move_offset_top == 0))))
8136 x_check_expected_move (f, modified_left, modified_top);
8137
8138 unblock_input ();
8139 }
8140
8141 /* Return non-zero if _NET_SUPPORTING_WM_CHECK window exists and _NET_SUPPORTED
8142 on the root window for frame F contains ATOMNAME.
8143 This is how a WM check shall be done according to the Window Manager
8144 Specification/Extended Window Manager Hints at
8145 http://freedesktop.org/wiki/Specifications/wm-spec. */
8146
8147 static int
8148 wm_supports (struct frame *f, Atom want_atom)
8149 {
8150 Atom actual_type;
8151 unsigned long actual_size, bytes_remaining;
8152 int i, rc, actual_format;
8153 Window wmcheck_window;
8154 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
8155 Window target_window = dpyinfo->root_window;
8156 long max_len = 65536;
8157 Display *dpy = FRAME_X_DISPLAY (f);
8158 unsigned char *tmp_data = NULL;
8159 Atom target_type = XA_WINDOW;
8160
8161 block_input ();
8162
8163 x_catch_errors (dpy);
8164 rc = XGetWindowProperty (dpy, target_window,
8165 dpyinfo->Xatom_net_supporting_wm_check,
8166 0, max_len, False, target_type,
8167 &actual_type, &actual_format, &actual_size,
8168 &bytes_remaining, &tmp_data);
8169
8170 if (rc != Success || actual_type != XA_WINDOW || x_had_errors_p (dpy))
8171 {
8172 if (tmp_data) XFree (tmp_data);
8173 x_uncatch_errors ();
8174 unblock_input ();
8175 return 0;
8176 }
8177
8178 wmcheck_window = *(Window *) tmp_data;
8179 XFree (tmp_data);
8180
8181 /* Check if window exists. */
8182 XSelectInput (dpy, wmcheck_window, StructureNotifyMask);
8183 x_sync (f);
8184 if (x_had_errors_p (dpy))
8185 {
8186 x_uncatch_errors ();
8187 unblock_input ();
8188 return 0;
8189 }
8190
8191 if (dpyinfo->net_supported_window != wmcheck_window)
8192 {
8193 /* Window changed, reload atoms */
8194 if (dpyinfo->net_supported_atoms != NULL)
8195 XFree (dpyinfo->net_supported_atoms);
8196 dpyinfo->net_supported_atoms = NULL;
8197 dpyinfo->nr_net_supported_atoms = 0;
8198 dpyinfo->net_supported_window = 0;
8199
8200 target_type = XA_ATOM;
8201 tmp_data = NULL;
8202 rc = XGetWindowProperty (dpy, target_window,
8203 dpyinfo->Xatom_net_supported,
8204 0, max_len, False, target_type,
8205 &actual_type, &actual_format, &actual_size,
8206 &bytes_remaining, &tmp_data);
8207
8208 if (rc != Success || actual_type != XA_ATOM || x_had_errors_p (dpy))
8209 {
8210 if (tmp_data) XFree (tmp_data);
8211 x_uncatch_errors ();
8212 unblock_input ();
8213 return 0;
8214 }
8215
8216 dpyinfo->net_supported_atoms = (Atom *)tmp_data;
8217 dpyinfo->nr_net_supported_atoms = actual_size;
8218 dpyinfo->net_supported_window = wmcheck_window;
8219 }
8220
8221 rc = 0;
8222
8223 for (i = 0; rc == 0 && i < dpyinfo->nr_net_supported_atoms; ++i)
8224 rc = dpyinfo->net_supported_atoms[i] == want_atom;
8225
8226 x_uncatch_errors ();
8227 unblock_input ();
8228
8229 return rc;
8230 }
8231
8232 static void
8233 set_wm_state (Lisp_Object frame, int add, Atom atom, Atom value)
8234 {
8235 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (XFRAME (frame));
8236
8237 x_send_client_event (frame, make_number (0), frame,
8238 dpyinfo->Xatom_net_wm_state,
8239 make_number (32),
8240 /* 1 = add, 0 = remove */
8241 Fcons
8242 (make_number (add ? 1 : 0),
8243 Fcons
8244 (make_fixnum_or_float (atom),
8245 (value != 0
8246 ? list1 (make_fixnum_or_float (value))
8247 : Qnil))));
8248 }
8249
8250 void
8251 x_set_sticky (struct frame *f, Lisp_Object new_value, Lisp_Object old_value)
8252 {
8253 Lisp_Object frame;
8254 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
8255
8256 XSETFRAME (frame, f);
8257
8258 set_wm_state (frame, NILP (new_value) ? 0 : 1,
8259 dpyinfo->Xatom_net_wm_state_sticky, None);
8260 }
8261
8262 /* Return the current _NET_WM_STATE.
8263 SIZE_STATE is set to one of the FULLSCREEN_* values.
8264 STICKY is set to 1 if the sticky state is set, 0 if not.
8265
8266 Return non-zero if we are not hidden, zero if we are. */
8267
8268 static int
8269 get_current_wm_state (struct frame *f,
8270 Window window,
8271 int *size_state,
8272 int *sticky)
8273 {
8274 Atom actual_type;
8275 unsigned long actual_size, bytes_remaining;
8276 int i, rc, actual_format, is_hidden = 0;
8277 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
8278 long max_len = 65536;
8279 Display *dpy = FRAME_X_DISPLAY (f);
8280 unsigned char *tmp_data = NULL;
8281 Atom target_type = XA_ATOM;
8282
8283 *sticky = 0;
8284 *size_state = FULLSCREEN_NONE;
8285
8286 block_input ();
8287 x_catch_errors (dpy);
8288 rc = XGetWindowProperty (dpy, window, dpyinfo->Xatom_net_wm_state,
8289 0, max_len, False, target_type,
8290 &actual_type, &actual_format, &actual_size,
8291 &bytes_remaining, &tmp_data);
8292
8293 if (rc != Success || actual_type != target_type || x_had_errors_p (dpy))
8294 {
8295 if (tmp_data) XFree (tmp_data);
8296 x_uncatch_errors ();
8297 unblock_input ();
8298 return !FRAME_ICONIFIED_P (f);
8299 }
8300
8301 x_uncatch_errors ();
8302
8303 for (i = 0; i < actual_size; ++i)
8304 {
8305 Atom a = ((Atom*)tmp_data)[i];
8306 if (a == dpyinfo->Xatom_net_wm_state_hidden)
8307 {
8308 is_hidden = 1;
8309 f->output_data.x->net_wm_state_hidden_seen = 1;
8310 }
8311 else if (a == dpyinfo->Xatom_net_wm_state_maximized_horz)
8312 {
8313 if (*size_state == FULLSCREEN_HEIGHT)
8314 *size_state = FULLSCREEN_MAXIMIZED;
8315 else
8316 *size_state = FULLSCREEN_WIDTH;
8317 }
8318 else if (a == dpyinfo->Xatom_net_wm_state_maximized_vert)
8319 {
8320 if (*size_state == FULLSCREEN_WIDTH)
8321 *size_state = FULLSCREEN_MAXIMIZED;
8322 else
8323 *size_state = FULLSCREEN_HEIGHT;
8324 }
8325 else if (a == dpyinfo->Xatom_net_wm_state_fullscreen)
8326 *size_state = FULLSCREEN_BOTH;
8327 else if (a == dpyinfo->Xatom_net_wm_state_sticky)
8328 *sticky = 1;
8329 }
8330
8331 if (tmp_data) XFree (tmp_data);
8332 unblock_input ();
8333 return ! is_hidden;
8334 }
8335
8336 /* Do fullscreen as specified in extended window manager hints */
8337
8338 static int
8339 do_ewmh_fullscreen (struct frame *f)
8340 {
8341 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
8342 int have_net_atom = wm_supports (f, dpyinfo->Xatom_net_wm_state);
8343 int cur, dummy;
8344
8345 (void)get_current_wm_state (f, FRAME_OUTER_WINDOW (f), &cur, &dummy);
8346
8347 /* Some window managers don't say they support _NET_WM_STATE, but they do say
8348 they support _NET_WM_STATE_FULLSCREEN. Try that also. */
8349 if (!have_net_atom)
8350 have_net_atom = wm_supports (f, dpyinfo->Xatom_net_wm_state_fullscreen);
8351
8352 if (have_net_atom && cur != f->want_fullscreen)
8353 {
8354 Lisp_Object frame;
8355
8356 XSETFRAME (frame, f);
8357
8358 /* Keep number of calls to set_wm_state as low as possible.
8359 Some window managers, or possible Gtk+, hangs when too many
8360 are sent at once. */
8361 switch (f->want_fullscreen)
8362 {
8363 case FULLSCREEN_BOTH:
8364 if (cur == FULLSCREEN_WIDTH || cur == FULLSCREEN_MAXIMIZED
8365 || cur == FULLSCREEN_HEIGHT)
8366 set_wm_state (frame, 0, dpyinfo->Xatom_net_wm_state_maximized_horz,
8367 dpyinfo->Xatom_net_wm_state_maximized_vert);
8368 set_wm_state (frame, 1, dpyinfo->Xatom_net_wm_state_fullscreen, None);
8369 break;
8370 case FULLSCREEN_WIDTH:
8371 if (cur == FULLSCREEN_BOTH || cur == FULLSCREEN_HEIGHT
8372 || cur == FULLSCREEN_MAXIMIZED)
8373 set_wm_state (frame, 0, dpyinfo->Xatom_net_wm_state_fullscreen,
8374 dpyinfo->Xatom_net_wm_state_maximized_vert);
8375 if (cur != FULLSCREEN_MAXIMIZED)
8376 set_wm_state (frame, 1, dpyinfo->Xatom_net_wm_state_maximized_horz, None);
8377 break;
8378 case FULLSCREEN_HEIGHT:
8379 if (cur == FULLSCREEN_BOTH || cur == FULLSCREEN_WIDTH
8380 || cur == FULLSCREEN_MAXIMIZED)
8381 set_wm_state (frame, 0, dpyinfo->Xatom_net_wm_state_fullscreen,
8382 dpyinfo->Xatom_net_wm_state_maximized_horz);
8383 if (cur != FULLSCREEN_MAXIMIZED)
8384 set_wm_state (frame, 1, dpyinfo->Xatom_net_wm_state_maximized_vert, None);
8385 break;
8386 case FULLSCREEN_MAXIMIZED:
8387 if (cur == FULLSCREEN_BOTH)
8388 set_wm_state (frame, 0, dpyinfo->Xatom_net_wm_state_fullscreen, None);
8389 set_wm_state (frame, 1, dpyinfo->Xatom_net_wm_state_maximized_horz,
8390 dpyinfo->Xatom_net_wm_state_maximized_vert);
8391 break;
8392 case FULLSCREEN_NONE:
8393 if (cur == FULLSCREEN_BOTH)
8394 set_wm_state (frame, 0, dpyinfo->Xatom_net_wm_state_fullscreen, None);
8395 else
8396 set_wm_state (frame, 0, dpyinfo->Xatom_net_wm_state_maximized_horz,
8397 dpyinfo->Xatom_net_wm_state_maximized_vert);
8398 }
8399
8400 f->want_fullscreen = FULLSCREEN_NONE;
8401
8402 }
8403
8404 return have_net_atom;
8405 }
8406
8407 static void
8408 XTfullscreen_hook (struct frame *f)
8409 {
8410 if (FRAME_VISIBLE_P (f))
8411 {
8412 block_input ();
8413 x_check_fullscreen (f);
8414 x_sync (f);
8415 unblock_input ();
8416 }
8417 }
8418
8419
8420 static int
8421 x_handle_net_wm_state (struct frame *f, const XPropertyEvent *event)
8422 {
8423 int value = FULLSCREEN_NONE;
8424 Lisp_Object lval;
8425 int sticky = 0;
8426 int not_hidden = get_current_wm_state (f, event->window, &value, &sticky);
8427
8428 lval = Qnil;
8429 switch (value)
8430 {
8431 case FULLSCREEN_WIDTH:
8432 lval = Qfullwidth;
8433 break;
8434 case FULLSCREEN_HEIGHT:
8435 lval = Qfullheight;
8436 break;
8437 case FULLSCREEN_BOTH:
8438 lval = Qfullboth;
8439 break;
8440 case FULLSCREEN_MAXIMIZED:
8441 lval = Qmaximized;
8442 break;
8443 }
8444
8445 store_frame_param (f, Qfullscreen, lval);
8446 store_frame_param (f, Qsticky, sticky ? Qt : Qnil);
8447
8448 return not_hidden;
8449 }
8450
8451 /* Check if we need to resize the frame due to a fullscreen request.
8452 If so needed, resize the frame. */
8453 static void
8454 x_check_fullscreen (struct frame *f)
8455 {
8456 if (do_ewmh_fullscreen (f))
8457 return;
8458
8459 if (f->output_data.x->parent_desc != FRAME_DISPLAY_INFO (f)->root_window)
8460 return; /* Only fullscreen without WM or with EWM hints (above). */
8461
8462 /* Setting fullscreen to nil doesn't do anything. We could save the
8463 last non-fullscreen size and restore it, but it seems like a
8464 lot of work for this unusual case (no window manager running). */
8465
8466 if (f->want_fullscreen != FULLSCREEN_NONE)
8467 {
8468 int width = FRAME_PIXEL_WIDTH (f), height = FRAME_PIXEL_HEIGHT (f);
8469 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
8470
8471 switch (f->want_fullscreen)
8472 {
8473 /* No difference between these two when there is no WM */
8474 case FULLSCREEN_BOTH:
8475 case FULLSCREEN_MAXIMIZED:
8476 width = x_display_pixel_width (dpyinfo);
8477 height = x_display_pixel_height (dpyinfo);
8478 break;
8479 case FULLSCREEN_WIDTH:
8480 width = x_display_pixel_width (dpyinfo);
8481 break;
8482 case FULLSCREEN_HEIGHT:
8483 height = x_display_pixel_height (dpyinfo);
8484 }
8485
8486 XResizeWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
8487 width, height);
8488 }
8489 }
8490
8491 /* This function is called by x_set_offset to determine whether the window
8492 manager interfered with the positioning of the frame. Type A window
8493 managers position the surrounding window manager decorations a small
8494 amount above and left of the user-supplied position. Type B window
8495 managers position the surrounding window manager decorations at the
8496 user-specified position. If we detect a Type A window manager, we
8497 compensate by moving the window right and down by the proper amount. */
8498
8499 static void
8500 x_check_expected_move (struct frame *f, int expected_left, int expected_top)
8501 {
8502 int current_left = 0, current_top = 0;
8503
8504 /* x_real_positions returns the left and top offsets of the outermost
8505 window manager window around the frame. */
8506
8507 x_real_positions (f, &current_left, &current_top);
8508
8509 if (current_left != expected_left || current_top != expected_top)
8510 {
8511 /* It's a "Type A" window manager. */
8512
8513 int adjusted_left;
8514 int adjusted_top;
8515
8516 FRAME_DISPLAY_INFO (f)->wm_type = X_WMTYPE_A;
8517 FRAME_X_OUTPUT (f)->move_offset_left = expected_left - current_left;
8518 FRAME_X_OUTPUT (f)->move_offset_top = expected_top - current_top;
8519
8520 /* Now fix the mispositioned frame's location. */
8521
8522 adjusted_left = expected_left + FRAME_X_OUTPUT (f)->move_offset_left;
8523 adjusted_top = expected_top + FRAME_X_OUTPUT (f)->move_offset_top;
8524
8525 XMoveWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
8526 adjusted_left, adjusted_top);
8527
8528 x_sync_with_move (f, expected_left, expected_top, 0);
8529 }
8530 else
8531 /* It's a "Type B" window manager. We don't have to adjust the
8532 frame's position. */
8533
8534 FRAME_DISPLAY_INFO (f)->wm_type = X_WMTYPE_B;
8535 }
8536
8537
8538 /* Wait for XGetGeometry to return up-to-date position information for a
8539 recently-moved frame. Call this immediately after calling XMoveWindow.
8540 If FUZZY is non-zero, then LEFT and TOP are just estimates of where the
8541 frame has been moved to, so we use a fuzzy position comparison instead
8542 of an exact comparison. */
8543
8544 static void
8545 x_sync_with_move (struct frame *f, int left, int top, int fuzzy)
8546 {
8547 int count = 0;
8548
8549 while (count++ < 50)
8550 {
8551 int current_left = 0, current_top = 0;
8552
8553 /* In theory, this call to XSync only needs to happen once, but in
8554 practice, it doesn't seem to work, hence the need for the surrounding
8555 loop. */
8556
8557 XSync (FRAME_X_DISPLAY (f), False);
8558 x_real_positions (f, &current_left, &current_top);
8559
8560 if (fuzzy)
8561 {
8562 /* The left fuzz-factor is 10 pixels. The top fuzz-factor is 40
8563 pixels. */
8564
8565 if (eabs (current_left - left) <= 10
8566 && eabs (current_top - top) <= 40)
8567 return;
8568 }
8569 else if (current_left == left && current_top == top)
8570 return;
8571 }
8572
8573 /* As a last resort, just wait 0.5 seconds and hope that XGetGeometry
8574 will then return up-to-date position info. */
8575
8576 wait_reading_process_output (0, 500000, 0, 0, Qnil, NULL, 0);
8577 }
8578
8579
8580 /* Wait for an event on frame F matching EVENTTYPE. */
8581 void
8582 x_wait_for_event (struct frame *f, int eventtype)
8583 {
8584 int level = interrupt_input_blocked;
8585
8586 fd_set fds;
8587 struct timespec tmo, tmo_at, time_now;
8588 int fd = ConnectionNumber (FRAME_X_DISPLAY (f));
8589
8590 f->wait_event_type = eventtype;
8591
8592 /* Set timeout to 0.1 second. Hopefully not noticeable.
8593 Maybe it should be configurable. */
8594 tmo = make_timespec (0, 100 * 1000 * 1000);
8595 tmo_at = timespec_add (current_timespec (), tmo);
8596
8597 while (f->wait_event_type)
8598 {
8599 pending_signals = 1;
8600 totally_unblock_input ();
8601 /* XTread_socket is called after unblock. */
8602 block_input ();
8603 interrupt_input_blocked = level;
8604
8605 FD_ZERO (&fds);
8606 FD_SET (fd, &fds);
8607
8608 time_now = current_timespec ();
8609 if (timespec_cmp (tmo_at, time_now) < 0)
8610 break;
8611
8612 tmo = timespec_sub (tmo_at, time_now);
8613 if (pselect (fd + 1, &fds, NULL, NULL, &tmo, NULL) == 0)
8614 break; /* Timeout */
8615 }
8616
8617 f->wait_event_type = 0;
8618 }
8619
8620
8621 /* Change the size of frame F's X window to COLS/ROWS in the case F
8622 doesn't have a widget. If CHANGE_GRAVITY is 1, we change to
8623 top-left-corner window gravity for this size change and subsequent
8624 size changes. Otherwise we leave the window gravity unchanged. */
8625
8626 static void
8627 x_set_window_size_1 (struct frame *f, int change_gravity, int width, int height, bool pixelwise)
8628 {
8629 int pixelwidth, pixelheight;
8630
8631 check_frame_size (f, &width, &height, pixelwise);
8632
8633 compute_fringe_widths (f, 0);
8634
8635 pixelwidth = ((pixelwise
8636 ? FRAME_TEXT_TO_PIXEL_WIDTH (f, width)
8637 : FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, width))
8638 + FRAME_TOOLBAR_WIDTH (f));
8639 pixelheight = ((pixelwise
8640 ? FRAME_TEXT_TO_PIXEL_HEIGHT (f, height)
8641 : FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, height))
8642 + FRAME_MENUBAR_HEIGHT (f)
8643 + FRAME_TOOLBAR_HEIGHT (f));
8644 if (change_gravity) f->win_gravity = NorthWestGravity;
8645 x_wm_set_size_hint (f, (long) 0, 0);
8646 XResizeWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
8647 pixelwidth, pixelheight);
8648
8649
8650 /* We've set {FRAME,PIXEL}_{WIDTH,HEIGHT} to the values we hope to
8651 receive in the ConfigureNotify event; if we get what we asked
8652 for, then the event won't cause the screen to become garbaged, so
8653 we have to make sure to do it here. */
8654 SET_FRAME_GARBAGED (f);
8655
8656 /* Now, strictly speaking, we can't be sure that this is accurate,
8657 but the window manager will get around to dealing with the size
8658 change request eventually, and we'll hear how it went when the
8659 ConfigureNotify event gets here.
8660
8661 We could just not bother storing any of this information here,
8662 and let the ConfigureNotify event set everything up, but that
8663 might be kind of confusing to the Lisp code, since size changes
8664 wouldn't be reported in the frame parameters until some random
8665 point in the future when the ConfigureNotify event arrives.
8666
8667 We pass 1 for DELAY since we can't run Lisp code inside of
8668 a BLOCK_INPUT. */
8669
8670 /* But the ConfigureNotify may in fact never arrive, and then this is
8671 not right if the frame is visible. Instead wait (with timeout)
8672 for the ConfigureNotify. */
8673 if (FRAME_VISIBLE_P (f))
8674 x_wait_for_event (f, ConfigureNotify);
8675 else
8676 {
8677 change_frame_size (f, width, height, 0, 1, 0, 1);
8678 x_sync (f);
8679 }
8680 }
8681
8682
8683 /* Call this to change the size of frame F's x-window.
8684 If CHANGE_GRAVITY is 1, we change to top-left-corner window gravity
8685 for this size change and subsequent size changes.
8686 Otherwise we leave the window gravity unchanged. */
8687
8688 void
8689 x_set_window_size (struct frame *f, int change_gravity, int width, int height, bool pixelwise)
8690 {
8691 block_input ();
8692
8693 check_frame_size (f, &width, &height, pixelwise);
8694
8695 if (NILP (tip_frame) || XFRAME (tip_frame) != f)
8696 {
8697 int text_width, text_height;
8698
8699 /* When the frame is maximized/fullscreen or running under for
8700 example Xmonad, x_set_window_size_1 will be a no-op.
8701 In that case, the right thing to do is extend rows/width to
8702 the current frame size. We do that first if x_set_window_size_1
8703 turns out to not be a no-op (there is no way to know).
8704 The size will be adjusted again if the frame gets a
8705 ConfigureNotify event as a result of x_set_window_size. */
8706 int pixelh = FRAME_PIXEL_HEIGHT (f);
8707 #ifdef USE_X_TOOLKIT
8708 /* The menu bar is not part of text lines. The tool bar
8709 is however. */
8710 pixelh -= FRAME_MENUBAR_HEIGHT (f);
8711 #endif
8712 text_width = FRAME_PIXEL_TO_TEXT_WIDTH (f, FRAME_PIXEL_WIDTH (f));
8713 text_height = FRAME_PIXEL_TO_TEXT_HEIGHT (f, pixelh);
8714
8715 change_frame_size (f, text_width, text_height, 0, 1, 0, 1);
8716 }
8717
8718 #ifdef USE_GTK
8719 if (FRAME_GTK_WIDGET (f))
8720 if (! pixelwise)
8721 xg_frame_set_char_size (f, width * FRAME_COLUMN_WIDTH (f),
8722 height * FRAME_LINE_HEIGHT (f));
8723 else
8724 xg_frame_set_char_size (f, width, height);
8725 else
8726 x_set_window_size_1 (f, change_gravity, width, height, pixelwise);
8727 #else /* not USE_GTK */
8728
8729 x_set_window_size_1 (f, change_gravity, width, height, pixelwise);
8730 #if !defined USE_X_TOOLKIT
8731 x_clear_under_internal_border (f);
8732 #endif
8733
8734 #endif /* not USE_GTK */
8735
8736 /* If cursor was outside the new size, mark it as off. */
8737 mark_window_cursors_off (XWINDOW (f->root_window));
8738
8739 /* Clear out any recollection of where the mouse highlighting was,
8740 since it might be in a place that's outside the new frame size.
8741 Actually checking whether it is outside is a pain in the neck,
8742 so don't try--just let the highlighting be done afresh with new size. */
8743 cancel_mouse_face (f);
8744
8745 unblock_input ();
8746 }
8747 \f
8748 /* Mouse warping. */
8749
8750 void
8751 x_set_mouse_position (struct frame *f, int x, int y)
8752 {
8753 int pix_x, pix_y;
8754
8755 pix_x = FRAME_COL_TO_PIXEL_X (f, x) + FRAME_COLUMN_WIDTH (f) / 2;
8756 pix_y = FRAME_LINE_TO_PIXEL_Y (f, y) + FRAME_LINE_HEIGHT (f) / 2;
8757
8758 if (pix_x < 0) pix_x = 0;
8759 if (pix_x > FRAME_PIXEL_WIDTH (f)) pix_x = FRAME_PIXEL_WIDTH (f);
8760
8761 if (pix_y < 0) pix_y = 0;
8762 if (pix_y > FRAME_PIXEL_HEIGHT (f)) pix_y = FRAME_PIXEL_HEIGHT (f);
8763
8764 block_input ();
8765
8766 XWarpPointer (FRAME_X_DISPLAY (f), None, FRAME_X_WINDOW (f),
8767 0, 0, 0, 0, pix_x, pix_y);
8768 unblock_input ();
8769 }
8770
8771 /* Move the mouse to position pixel PIX_X, PIX_Y relative to frame F. */
8772
8773 void
8774 x_set_mouse_pixel_position (struct frame *f, int pix_x, int pix_y)
8775 {
8776 block_input ();
8777
8778 XWarpPointer (FRAME_X_DISPLAY (f), None, FRAME_X_WINDOW (f),
8779 0, 0, 0, 0, pix_x, pix_y);
8780 unblock_input ();
8781 }
8782 \f
8783 /* Raise frame F. */
8784
8785 void
8786 x_raise_frame (struct frame *f)
8787 {
8788 block_input ();
8789 if (FRAME_VISIBLE_P (f))
8790 XRaiseWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f));
8791 XFlush (FRAME_X_DISPLAY (f));
8792 unblock_input ();
8793 }
8794
8795 /* Lower frame F. */
8796
8797 static void
8798 x_lower_frame (struct frame *f)
8799 {
8800 if (FRAME_VISIBLE_P (f))
8801 {
8802 block_input ();
8803 XLowerWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f));
8804 XFlush (FRAME_X_DISPLAY (f));
8805 unblock_input ();
8806 }
8807 }
8808
8809 /* Request focus with XEmbed */
8810
8811 void
8812 xembed_request_focus (struct frame *f)
8813 {
8814 /* See XEmbed Protocol Specification at
8815 http://freedesktop.org/wiki/Specifications/xembed-spec */
8816 if (FRAME_VISIBLE_P (f))
8817 xembed_send_message (f, CurrentTime,
8818 XEMBED_REQUEST_FOCUS, 0, 0, 0);
8819 }
8820
8821 /* Activate frame with Extended Window Manager Hints */
8822
8823 void
8824 x_ewmh_activate_frame (struct frame *f)
8825 {
8826 /* See Window Manager Specification/Extended Window Manager Hints at
8827 http://freedesktop.org/wiki/Specifications/wm-spec */
8828
8829 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
8830
8831 if (FRAME_VISIBLE_P (f) && wm_supports (f, dpyinfo->Xatom_net_active_window))
8832 {
8833 Lisp_Object frame;
8834 XSETFRAME (frame, f);
8835 x_send_client_event (frame, make_number (0), frame,
8836 dpyinfo->Xatom_net_active_window,
8837 make_number (32),
8838 list2i (1, dpyinfo->last_user_time));
8839 }
8840 }
8841
8842 static void
8843 XTframe_raise_lower (struct frame *f, int raise_flag)
8844 {
8845 if (raise_flag)
8846 x_raise_frame (f);
8847 else
8848 x_lower_frame (f);
8849 }
8850 \f
8851 /* XEmbed implementation. */
8852
8853 #if defined USE_X_TOOLKIT || ! defined USE_GTK
8854
8855 /* XEmbed implementation. */
8856
8857 #define XEMBED_VERSION 0
8858
8859 static void
8860 xembed_set_info (struct frame *f, enum xembed_info flags)
8861 {
8862 unsigned long data[2];
8863 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
8864
8865 data[0] = XEMBED_VERSION;
8866 data[1] = flags;
8867
8868 XChangeProperty (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
8869 dpyinfo->Xatom_XEMBED_INFO, dpyinfo->Xatom_XEMBED_INFO,
8870 32, PropModeReplace, (unsigned char *) data, 2);
8871 }
8872 #endif /* defined USE_X_TOOLKIT || ! defined USE_GTK */
8873
8874 static void
8875 xembed_send_message (struct frame *f, Time t, enum xembed_message msg,
8876 long int detail, long int data1, long int data2)
8877 {
8878 XEvent event;
8879
8880 event.xclient.type = ClientMessage;
8881 event.xclient.window = FRAME_X_OUTPUT (f)->parent_desc;
8882 event.xclient.message_type = FRAME_DISPLAY_INFO (f)->Xatom_XEMBED;
8883 event.xclient.format = 32;
8884 event.xclient.data.l[0] = t;
8885 event.xclient.data.l[1] = msg;
8886 event.xclient.data.l[2] = detail;
8887 event.xclient.data.l[3] = data1;
8888 event.xclient.data.l[4] = data2;
8889
8890 XSendEvent (FRAME_X_DISPLAY (f), FRAME_X_OUTPUT (f)->parent_desc,
8891 False, NoEventMask, &event);
8892 XSync (FRAME_X_DISPLAY (f), False);
8893 }
8894 \f
8895 /* Change of visibility. */
8896
8897 /* This tries to wait until the frame is really visible.
8898 However, if the window manager asks the user where to position
8899 the frame, this will return before the user finishes doing that.
8900 The frame will not actually be visible at that time,
8901 but it will become visible later when the window manager
8902 finishes with it. */
8903
8904 void
8905 x_make_frame_visible (struct frame *f)
8906 {
8907 int original_top, original_left;
8908 int tries = 0;
8909
8910 block_input ();
8911
8912 x_set_bitmap_icon (f);
8913
8914 if (! FRAME_VISIBLE_P (f))
8915 {
8916 /* We test FRAME_GARBAGED_P here to make sure we don't
8917 call x_set_offset a second time
8918 if we get to x_make_frame_visible a second time
8919 before the window gets really visible. */
8920 if (! FRAME_ICONIFIED_P (f)
8921 && ! FRAME_X_EMBEDDED_P (f)
8922 && ! f->output_data.x->asked_for_visible)
8923 x_set_offset (f, f->left_pos, f->top_pos, 0);
8924
8925 f->output_data.x->asked_for_visible = 1;
8926
8927 if (! EQ (Vx_no_window_manager, Qt))
8928 x_wm_set_window_state (f, NormalState);
8929 #ifdef USE_X_TOOLKIT
8930 if (FRAME_X_EMBEDDED_P (f))
8931 xembed_set_info (f, XEMBED_MAPPED);
8932 else
8933 {
8934 /* This was XtPopup, but that did nothing for an iconified frame. */
8935 XtMapWidget (f->output_data.x->widget);
8936 }
8937 #else /* not USE_X_TOOLKIT */
8938 #ifdef USE_GTK
8939 gtk_widget_show_all (FRAME_GTK_OUTER_WIDGET (f));
8940 gtk_window_deiconify (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
8941 #else
8942 if (FRAME_X_EMBEDDED_P (f))
8943 xembed_set_info (f, XEMBED_MAPPED);
8944 else
8945 XMapRaised (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
8946 #endif /* not USE_GTK */
8947 #endif /* not USE_X_TOOLKIT */
8948 }
8949
8950 XFlush (FRAME_X_DISPLAY (f));
8951
8952 /* Synchronize to ensure Emacs knows the frame is visible
8953 before we do anything else. We do this loop with input not blocked
8954 so that incoming events are handled. */
8955 {
8956 Lisp_Object frame;
8957 /* This must be before UNBLOCK_INPUT
8958 since events that arrive in response to the actions above
8959 will set it when they are handled. */
8960 int previously_visible = f->output_data.x->has_been_visible;
8961
8962 original_left = f->left_pos;
8963 original_top = f->top_pos;
8964
8965 /* This must come after we set COUNT. */
8966 unblock_input ();
8967
8968 /* We unblock here so that arriving X events are processed. */
8969
8970 /* Now move the window back to where it was "supposed to be".
8971 But don't do it if the gravity is negative.
8972 When the gravity is negative, this uses a position
8973 that is 3 pixels too low. Perhaps that's really the border width.
8974
8975 Don't do this if the window has never been visible before,
8976 because the window manager may choose the position
8977 and we don't want to override it. */
8978
8979 if (! FRAME_VISIBLE_P (f)
8980 && ! FRAME_ICONIFIED_P (f)
8981 && ! FRAME_X_EMBEDDED_P (f)
8982 && f->win_gravity == NorthWestGravity
8983 && previously_visible)
8984 {
8985 Drawable rootw;
8986 int x, y;
8987 unsigned int width, height, border, depth;
8988
8989 block_input ();
8990
8991 /* On some window managers (such as FVWM) moving an existing
8992 window, even to the same place, causes the window manager
8993 to introduce an offset. This can cause the window to move
8994 to an unexpected location. Check the geometry (a little
8995 slow here) and then verify that the window is in the right
8996 place. If the window is not in the right place, move it
8997 there, and take the potential window manager hit. */
8998 XGetGeometry (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
8999 &rootw, &x, &y, &width, &height, &border, &depth);
9000
9001 if (original_left != x || original_top != y)
9002 XMoveWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
9003 original_left, original_top);
9004
9005 unblock_input ();
9006 }
9007
9008 XSETFRAME (frame, f);
9009
9010 /* Process X events until a MapNotify event has been seen. */
9011 while (!FRAME_VISIBLE_P (f))
9012 {
9013 /* Force processing of queued events. */
9014 x_sync (f);
9015
9016 /* If on another desktop, the deiconify/map may be ignored and the
9017 frame never becomes visible. XMonad does this.
9018 Prevent an endless loop. */
9019 if (FRAME_ICONIFIED_P (f) && ++tries > 100)
9020 break;
9021
9022 /* This hack is still in use at least for Cygwin. See
9023 http://lists.gnu.org/archive/html/emacs-devel/2013-12/msg00351.html.
9024
9025 Machines that do polling rather than SIGIO have been
9026 observed to go into a busy-wait here. So we'll fake an
9027 alarm signal to let the handler know that there's something
9028 to be read. We used to raise a real alarm, but it seems
9029 that the handler isn't always enabled here. This is
9030 probably a bug. */
9031 if (input_polling_used ())
9032 {
9033 /* It could be confusing if a real alarm arrives while
9034 processing the fake one. Turn it off and let the
9035 handler reset it. */
9036 int old_poll_suppress_count = poll_suppress_count;
9037 poll_suppress_count = 1;
9038 poll_for_input_1 ();
9039 poll_suppress_count = old_poll_suppress_count;
9040 }
9041
9042 if (XPending (FRAME_X_DISPLAY (f)))
9043 {
9044 XEvent xev;
9045 XNextEvent (FRAME_X_DISPLAY (f), &xev);
9046 x_dispatch_event (&xev, FRAME_X_DISPLAY (f));
9047 }
9048 }
9049 }
9050 }
9051
9052 /* Change from mapped state to withdrawn state. */
9053
9054 /* Make the frame visible (mapped and not iconified). */
9055
9056 void
9057 x_make_frame_invisible (struct frame *f)
9058 {
9059 Window window;
9060
9061 /* Use the frame's outermost window, not the one we normally draw on. */
9062 window = FRAME_OUTER_WINDOW (f);
9063
9064 /* Don't keep the highlight on an invisible frame. */
9065 if (FRAME_DISPLAY_INFO (f)->x_highlight_frame == f)
9066 FRAME_DISPLAY_INFO (f)->x_highlight_frame = 0;
9067
9068 block_input ();
9069
9070 /* Before unmapping the window, update the WM_SIZE_HINTS property to claim
9071 that the current position of the window is user-specified, rather than
9072 program-specified, so that when the window is mapped again, it will be
9073 placed at the same location, without forcing the user to position it
9074 by hand again (they have already done that once for this window.) */
9075 x_wm_set_size_hint (f, (long) 0, 1);
9076
9077 #ifdef USE_GTK
9078 if (FRAME_GTK_OUTER_WIDGET (f))
9079 gtk_widget_hide (FRAME_GTK_OUTER_WIDGET (f));
9080 else
9081 #else
9082 if (FRAME_X_EMBEDDED_P (f))
9083 xembed_set_info (f, 0);
9084 else
9085 #endif
9086 {
9087
9088 if (! XWithdrawWindow (FRAME_X_DISPLAY (f), window,
9089 DefaultScreen (FRAME_X_DISPLAY (f))))
9090 {
9091 unblock_input ();
9092 error ("Can't notify window manager of window withdrawal");
9093 }
9094 }
9095
9096 /* We can't distinguish this from iconification
9097 just by the event that we get from the server.
9098 So we can't win using the usual strategy of letting
9099 FRAME_SAMPLE_VISIBILITY set this. So do it by hand,
9100 and synchronize with the server to make sure we agree. */
9101 SET_FRAME_VISIBLE (f, 0);
9102 SET_FRAME_ICONIFIED (f, 0);
9103
9104 x_sync (f);
9105
9106 unblock_input ();
9107 }
9108
9109 /* Change window state from mapped to iconified. */
9110
9111 void
9112 x_iconify_frame (struct frame *f)
9113 {
9114 #ifdef USE_X_TOOLKIT
9115 int result;
9116 #endif
9117
9118 /* Don't keep the highlight on an invisible frame. */
9119 if (FRAME_DISPLAY_INFO (f)->x_highlight_frame == f)
9120 FRAME_DISPLAY_INFO (f)->x_highlight_frame = 0;
9121
9122 if (FRAME_ICONIFIED_P (f))
9123 return;
9124
9125 block_input ();
9126
9127 x_set_bitmap_icon (f);
9128
9129 #if defined (USE_GTK)
9130 if (FRAME_GTK_OUTER_WIDGET (f))
9131 {
9132 if (! FRAME_VISIBLE_P (f))
9133 gtk_widget_show_all (FRAME_GTK_OUTER_WIDGET (f));
9134
9135 gtk_window_iconify (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
9136 SET_FRAME_VISIBLE (f, 0);
9137 SET_FRAME_ICONIFIED (f, 1);
9138 unblock_input ();
9139 return;
9140 }
9141 #endif
9142
9143 #ifdef USE_X_TOOLKIT
9144
9145 if (! FRAME_VISIBLE_P (f))
9146 {
9147 if (! EQ (Vx_no_window_manager, Qt))
9148 x_wm_set_window_state (f, IconicState);
9149 /* This was XtPopup, but that did nothing for an iconified frame. */
9150 XtMapWidget (f->output_data.x->widget);
9151 /* The server won't give us any event to indicate
9152 that an invisible frame was changed to an icon,
9153 so we have to record it here. */
9154 SET_FRAME_VISIBLE (f, 0);
9155 SET_FRAME_ICONIFIED (f, 1);
9156 unblock_input ();
9157 return;
9158 }
9159
9160 result = XIconifyWindow (FRAME_X_DISPLAY (f),
9161 XtWindow (f->output_data.x->widget),
9162 DefaultScreen (FRAME_X_DISPLAY (f)));
9163 unblock_input ();
9164
9165 if (!result)
9166 error ("Can't notify window manager of iconification");
9167
9168 SET_FRAME_ICONIFIED (f, 1);
9169 SET_FRAME_VISIBLE (f, 0);
9170
9171 block_input ();
9172 XFlush (FRAME_X_DISPLAY (f));
9173 unblock_input ();
9174 #else /* not USE_X_TOOLKIT */
9175
9176 /* Make sure the X server knows where the window should be positioned,
9177 in case the user deiconifies with the window manager. */
9178 if (! FRAME_VISIBLE_P (f)
9179 && ! FRAME_ICONIFIED_P (f)
9180 && ! FRAME_X_EMBEDDED_P (f))
9181 x_set_offset (f, f->left_pos, f->top_pos, 0);
9182
9183 /* Since we don't know which revision of X we're running, we'll use both
9184 the X11R3 and X11R4 techniques. I don't know if this is a good idea. */
9185
9186 /* X11R4: send a ClientMessage to the window manager using the
9187 WM_CHANGE_STATE type. */
9188 {
9189 XEvent msg;
9190
9191 msg.xclient.window = FRAME_X_WINDOW (f);
9192 msg.xclient.type = ClientMessage;
9193 msg.xclient.message_type = FRAME_DISPLAY_INFO (f)->Xatom_wm_change_state;
9194 msg.xclient.format = 32;
9195 msg.xclient.data.l[0] = IconicState;
9196
9197 if (! XSendEvent (FRAME_X_DISPLAY (f),
9198 DefaultRootWindow (FRAME_X_DISPLAY (f)),
9199 False,
9200 SubstructureRedirectMask | SubstructureNotifyMask,
9201 &msg))
9202 {
9203 unblock_input ();
9204 error ("Can't notify window manager of iconification");
9205 }
9206 }
9207
9208 /* X11R3: set the initial_state field of the window manager hints to
9209 IconicState. */
9210 x_wm_set_window_state (f, IconicState);
9211
9212 if (!FRAME_VISIBLE_P (f))
9213 {
9214 /* If the frame was withdrawn, before, we must map it. */
9215 XMapRaised (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
9216 }
9217
9218 SET_FRAME_ICONIFIED (f, 1);
9219 SET_FRAME_VISIBLE (f, 0);
9220
9221 XFlush (FRAME_X_DISPLAY (f));
9222 unblock_input ();
9223 #endif /* not USE_X_TOOLKIT */
9224 }
9225
9226 \f
9227 /* Free X resources of frame F. */
9228
9229 void
9230 x_free_frame_resources (struct frame *f)
9231 {
9232 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
9233 Mouse_HLInfo *hlinfo = &dpyinfo->mouse_highlight;
9234 #ifdef USE_X_TOOLKIT
9235 Lisp_Object bar;
9236 struct scroll_bar *b;
9237 #endif
9238
9239 block_input ();
9240
9241 /* If a display connection is dead, don't try sending more
9242 commands to the X server. */
9243 if (dpyinfo->display)
9244 {
9245 /* We must free faces before destroying windows because some
9246 font-driver (e.g. xft) access a window while finishing a
9247 face. */
9248 free_frame_faces (f);
9249
9250 if (f->output_data.x->icon_desc)
9251 XDestroyWindow (FRAME_X_DISPLAY (f), f->output_data.x->icon_desc);
9252
9253 #ifdef USE_X_TOOLKIT
9254 /* Explicitly destroy the scroll bars of the frame. Without
9255 this, we get "BadDrawable" errors from the toolkit later on,
9256 presumably from expose events generated for the disappearing
9257 toolkit scroll bars. */
9258 for (bar = FRAME_SCROLL_BARS (f); !NILP (bar); bar = b->next)
9259 {
9260 b = XSCROLL_BAR (bar);
9261 x_scroll_bar_remove (b);
9262 }
9263 #endif
9264
9265 #ifdef HAVE_X_I18N
9266 if (FRAME_XIC (f))
9267 free_frame_xic (f);
9268 #endif
9269
9270 #ifdef USE_X_TOOLKIT
9271 if (f->output_data.x->widget)
9272 {
9273 XtDestroyWidget (f->output_data.x->widget);
9274 f->output_data.x->widget = NULL;
9275 }
9276 /* Tooltips don't have widgets, only a simple X window, even if
9277 we are using a toolkit. */
9278 else if (FRAME_X_WINDOW (f))
9279 XDestroyWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
9280
9281 free_frame_menubar (f);
9282 #else /* !USE_X_TOOLKIT */
9283
9284 #ifdef USE_GTK
9285 xg_free_frame_widgets (f);
9286 #endif /* USE_GTK */
9287
9288 if (FRAME_X_WINDOW (f))
9289 XDestroyWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
9290 #endif /* !USE_X_TOOLKIT */
9291
9292 unload_color (f, FRAME_FOREGROUND_PIXEL (f));
9293 unload_color (f, FRAME_BACKGROUND_PIXEL (f));
9294 unload_color (f, f->output_data.x->cursor_pixel);
9295 unload_color (f, f->output_data.x->cursor_foreground_pixel);
9296 unload_color (f, f->output_data.x->border_pixel);
9297 unload_color (f, f->output_data.x->mouse_pixel);
9298
9299 if (f->output_data.x->scroll_bar_background_pixel != -1)
9300 unload_color (f, f->output_data.x->scroll_bar_background_pixel);
9301 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
9302 unload_color (f, f->output_data.x->scroll_bar_foreground_pixel);
9303 #ifdef USE_TOOLKIT_SCROLL_BARS
9304 /* Scrollbar shadow colors. */
9305 if (f->output_data.x->scroll_bar_top_shadow_pixel != -1)
9306 unload_color (f, f->output_data.x->scroll_bar_top_shadow_pixel);
9307 if (f->output_data.x->scroll_bar_bottom_shadow_pixel != -1)
9308 unload_color (f, f->output_data.x->scroll_bar_bottom_shadow_pixel);
9309 #endif /* USE_TOOLKIT_SCROLL_BARS */
9310 if (f->output_data.x->white_relief.pixel != -1)
9311 unload_color (f, f->output_data.x->white_relief.pixel);
9312 if (f->output_data.x->black_relief.pixel != -1)
9313 unload_color (f, f->output_data.x->black_relief.pixel);
9314
9315 x_free_gcs (f);
9316
9317 /* Free extra GCs allocated by x_setup_relief_colors. */
9318 if (f->output_data.x->white_relief.gc)
9319 {
9320 XFreeGC (dpyinfo->display, f->output_data.x->white_relief.gc);
9321 f->output_data.x->white_relief.gc = 0;
9322 }
9323 if (f->output_data.x->black_relief.gc)
9324 {
9325 XFreeGC (dpyinfo->display, f->output_data.x->black_relief.gc);
9326 f->output_data.x->black_relief.gc = 0;
9327 }
9328
9329 /* Free cursors. */
9330 if (f->output_data.x->text_cursor != 0)
9331 XFreeCursor (FRAME_X_DISPLAY (f), f->output_data.x->text_cursor);
9332 if (f->output_data.x->nontext_cursor != 0)
9333 XFreeCursor (FRAME_X_DISPLAY (f), f->output_data.x->nontext_cursor);
9334 if (f->output_data.x->modeline_cursor != 0)
9335 XFreeCursor (FRAME_X_DISPLAY (f), f->output_data.x->modeline_cursor);
9336 if (f->output_data.x->hand_cursor != 0)
9337 XFreeCursor (FRAME_X_DISPLAY (f), f->output_data.x->hand_cursor);
9338 if (f->output_data.x->hourglass_cursor != 0)
9339 XFreeCursor (FRAME_X_DISPLAY (f), f->output_data.x->hourglass_cursor);
9340 if (f->output_data.x->horizontal_drag_cursor != 0)
9341 XFreeCursor (FRAME_X_DISPLAY (f), f->output_data.x->horizontal_drag_cursor);
9342 if (f->output_data.x->vertical_drag_cursor != 0)
9343 XFreeCursor (FRAME_X_DISPLAY (f), f->output_data.x->vertical_drag_cursor);
9344
9345 XFlush (FRAME_X_DISPLAY (f));
9346 }
9347
9348 xfree (f->output_data.x->saved_menu_event);
9349 xfree (f->output_data.x);
9350 f->output_data.x = NULL;
9351
9352 if (f == dpyinfo->x_focus_frame)
9353 dpyinfo->x_focus_frame = 0;
9354 if (f == dpyinfo->x_focus_event_frame)
9355 dpyinfo->x_focus_event_frame = 0;
9356 if (f == dpyinfo->x_highlight_frame)
9357 dpyinfo->x_highlight_frame = 0;
9358 if (f == hlinfo->mouse_face_mouse_frame)
9359 reset_mouse_highlight (hlinfo);
9360
9361 unblock_input ();
9362 }
9363
9364
9365 /* Destroy the X window of frame F. */
9366
9367 static void
9368 x_destroy_window (struct frame *f)
9369 {
9370 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
9371
9372 /* If a display connection is dead, don't try sending more
9373 commands to the X server. */
9374 if (dpyinfo->display != 0)
9375 x_free_frame_resources (f);
9376
9377 dpyinfo->reference_count--;
9378 }
9379
9380 \f
9381 /* Setting window manager hints. */
9382
9383 /* Set the normal size hints for the window manager, for frame F.
9384 FLAGS is the flags word to use--or 0 meaning preserve the flags
9385 that the window now has.
9386 If USER_POSITION, set the USPosition
9387 flag (this is useful when FLAGS is 0).
9388 The GTK version is in gtkutils.c. */
9389
9390 #ifndef USE_GTK
9391 void
9392 x_wm_set_size_hint (struct frame *f, long flags, bool user_position)
9393 {
9394 XSizeHints size_hints;
9395 Window window = FRAME_OUTER_WINDOW (f);
9396
9397 #ifdef USE_X_TOOLKIT
9398 if (f->output_data.x->widget)
9399 {
9400 widget_update_wm_size_hints (f->output_data.x->widget);
9401 return;
9402 }
9403 #endif
9404
9405 /* Setting PMaxSize caused various problems. */
9406 size_hints.flags = PResizeInc | PMinSize /* | PMaxSize */;
9407
9408 size_hints.x = f->left_pos;
9409 size_hints.y = f->top_pos;
9410
9411 size_hints.height = FRAME_PIXEL_HEIGHT (f);
9412 size_hints.width = FRAME_PIXEL_WIDTH (f);
9413
9414 size_hints.width_inc = frame_resize_pixelwise ? 1 : FRAME_COLUMN_WIDTH (f);
9415 size_hints.height_inc = frame_resize_pixelwise ? 1 : FRAME_LINE_HEIGHT (f);
9416
9417 size_hints.max_width = x_display_pixel_width (FRAME_DISPLAY_INFO (f))
9418 - FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, 0);
9419 size_hints.max_height = x_display_pixel_height (FRAME_DISPLAY_INFO (f))
9420 - FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, 0);
9421
9422 /* Calculate the base and minimum sizes. */
9423 {
9424 int base_width, base_height;
9425 int min_rows = 0, min_cols = 0;
9426
9427 base_width = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, 0);
9428 base_height = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, 0);
9429
9430 check_frame_size (f, &min_cols, &min_rows, 0);
9431
9432 if (frame_resize_pixelwise)
9433 /* Needed to prevent a bad protocol error crash when making the
9434 frame size very small. */
9435 {
9436 min_cols = 2 * min_cols;
9437 min_rows = 2 * min_rows;
9438 }
9439
9440 /* The window manager uses the base width hints to calculate the
9441 current number of rows and columns in the frame while
9442 resizing; min_width and min_height aren't useful for this
9443 purpose, since they might not give the dimensions for a
9444 zero-row, zero-column frame.
9445
9446 We use the base_width and base_height members if we have
9447 them; otherwise, we set the min_width and min_height members
9448 to the size for a zero x zero frame. */
9449
9450 size_hints.flags |= PBaseSize;
9451 size_hints.base_width = base_width;
9452 size_hints.base_height = base_height + FRAME_MENUBAR_HEIGHT (f);
9453 size_hints.min_width = base_width + min_cols * FRAME_COLUMN_WIDTH (f);
9454 size_hints.min_height = base_height + min_rows * FRAME_LINE_HEIGHT (f);
9455 }
9456
9457 /* If we don't need the old flags, we don't need the old hint at all. */
9458 if (flags)
9459 {
9460 size_hints.flags |= flags;
9461 goto no_read;
9462 }
9463
9464 {
9465 XSizeHints hints; /* Sometimes I hate X Windows... */
9466 long supplied_return;
9467 int value;
9468
9469 value = XGetWMNormalHints (FRAME_X_DISPLAY (f), window, &hints,
9470 &supplied_return);
9471
9472 if (flags)
9473 size_hints.flags |= flags;
9474 else
9475 {
9476 if (value == 0)
9477 hints.flags = 0;
9478 if (hints.flags & PSize)
9479 size_hints.flags |= PSize;
9480 if (hints.flags & PPosition)
9481 size_hints.flags |= PPosition;
9482 if (hints.flags & USPosition)
9483 size_hints.flags |= USPosition;
9484 if (hints.flags & USSize)
9485 size_hints.flags |= USSize;
9486 }
9487 }
9488
9489 no_read:
9490
9491 #ifdef PWinGravity
9492 size_hints.win_gravity = f->win_gravity;
9493 size_hints.flags |= PWinGravity;
9494
9495 if (user_position)
9496 {
9497 size_hints.flags &= ~ PPosition;
9498 size_hints.flags |= USPosition;
9499 }
9500 #endif /* PWinGravity */
9501
9502 XSetWMNormalHints (FRAME_X_DISPLAY (f), window, &size_hints);
9503 }
9504 #endif /* not USE_GTK */
9505
9506 /* Used for IconicState or NormalState */
9507
9508 static void
9509 x_wm_set_window_state (struct frame *f, int state)
9510 {
9511 #ifdef USE_X_TOOLKIT
9512 Arg al[1];
9513
9514 XtSetArg (al[0], XtNinitialState, state);
9515 XtSetValues (f->output_data.x->widget, al, 1);
9516 #else /* not USE_X_TOOLKIT */
9517 Window window = FRAME_X_WINDOW (f);
9518
9519 f->output_data.x->wm_hints.flags |= StateHint;
9520 f->output_data.x->wm_hints.initial_state = state;
9521
9522 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints);
9523 #endif /* not USE_X_TOOLKIT */
9524 }
9525
9526 static void
9527 x_wm_set_icon_pixmap (struct frame *f, ptrdiff_t pixmap_id)
9528 {
9529 Pixmap icon_pixmap, icon_mask;
9530
9531 #if !defined USE_X_TOOLKIT && !defined USE_GTK
9532 Window window = FRAME_OUTER_WINDOW (f);
9533 #endif
9534
9535 if (pixmap_id > 0)
9536 {
9537 icon_pixmap = x_bitmap_pixmap (f, pixmap_id);
9538 f->output_data.x->wm_hints.icon_pixmap = icon_pixmap;
9539 icon_mask = x_bitmap_mask (f, pixmap_id);
9540 f->output_data.x->wm_hints.icon_mask = icon_mask;
9541 }
9542 else
9543 {
9544 /* It seems there is no way to turn off use of an icon
9545 pixmap. */
9546 return;
9547 }
9548
9549
9550 #ifdef USE_GTK
9551 {
9552 xg_set_frame_icon (f, icon_pixmap, icon_mask);
9553 return;
9554 }
9555
9556 #elif defined (USE_X_TOOLKIT) /* same as in x_wm_set_window_state. */
9557
9558 {
9559 Arg al[1];
9560 XtSetArg (al[0], XtNiconPixmap, icon_pixmap);
9561 XtSetValues (f->output_data.x->widget, al, 1);
9562 XtSetArg (al[0], XtNiconMask, icon_mask);
9563 XtSetValues (f->output_data.x->widget, al, 1);
9564 }
9565
9566 #else /* not USE_X_TOOLKIT && not USE_GTK */
9567
9568 f->output_data.x->wm_hints.flags |= (IconPixmapHint | IconMaskHint);
9569 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints);
9570
9571 #endif /* not USE_X_TOOLKIT && not USE_GTK */
9572 }
9573
9574 void
9575 x_wm_set_icon_position (struct frame *f, int icon_x, int icon_y)
9576 {
9577 Window window = FRAME_OUTER_WINDOW (f);
9578
9579 f->output_data.x->wm_hints.flags |= IconPositionHint;
9580 f->output_data.x->wm_hints.icon_x = icon_x;
9581 f->output_data.x->wm_hints.icon_y = icon_y;
9582
9583 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints);
9584 }
9585
9586 \f
9587 /***********************************************************************
9588 Fonts
9589 ***********************************************************************/
9590
9591 #ifdef GLYPH_DEBUG
9592
9593 /* Check that FONT is valid on frame F. It is if it can be found in F's
9594 font table. */
9595
9596 static void
9597 x_check_font (struct frame *f, struct font *font)
9598 {
9599 eassert (font != NULL && ! NILP (font->props[FONT_TYPE_INDEX]));
9600 if (font->driver->check)
9601 eassert (font->driver->check (f, font) == 0);
9602 }
9603
9604 #endif /* GLYPH_DEBUG */
9605
9606 \f
9607 /***********************************************************************
9608 Initialization
9609 ***********************************************************************/
9610
9611 #ifdef USE_X_TOOLKIT
9612 static XrmOptionDescRec emacs_options[] = {
9613 {"-geometry", ".geometry", XrmoptionSepArg, NULL},
9614 {"-iconic", ".iconic", XrmoptionNoArg, (XtPointer) "yes"},
9615
9616 {"-internal-border-width", "*EmacsScreen.internalBorderWidth",
9617 XrmoptionSepArg, NULL},
9618 {"-ib", "*EmacsScreen.internalBorderWidth", XrmoptionSepArg, NULL},
9619
9620 {"-T", "*EmacsShell.title", XrmoptionSepArg, (XtPointer) NULL},
9621 {"-wn", "*EmacsShell.title", XrmoptionSepArg, (XtPointer) NULL},
9622 {"-title", "*EmacsShell.title", XrmoptionSepArg, (XtPointer) NULL},
9623 {"-iconname", "*EmacsShell.iconName", XrmoptionSepArg, (XtPointer) NULL},
9624 {"-in", "*EmacsShell.iconName", XrmoptionSepArg, (XtPointer) NULL},
9625 {"-mc", "*pointerColor", XrmoptionSepArg, (XtPointer) NULL},
9626 {"-cr", "*cursorColor", XrmoptionSepArg, (XtPointer) NULL}
9627 };
9628
9629 /* Whether atimer for Xt timeouts is activated or not. */
9630
9631 static int x_timeout_atimer_activated_flag;
9632
9633 #endif /* USE_X_TOOLKIT */
9634
9635 static int x_initialized;
9636
9637 /* Test whether two display-name strings agree up to the dot that separates
9638 the screen number from the server number. */
9639 static int
9640 same_x_server (const char *name1, const char *name2)
9641 {
9642 int seen_colon = 0;
9643 const char *system_name = SSDATA (Vsystem_name);
9644 ptrdiff_t system_name_length = SBYTES (Vsystem_name);
9645 ptrdiff_t length_until_period = 0;
9646
9647 while (system_name[length_until_period] != 0
9648 && system_name[length_until_period] != '.')
9649 length_until_period++;
9650
9651 /* Treat `unix' like an empty host name. */
9652 if (! strncmp (name1, "unix:", 5))
9653 name1 += 4;
9654 if (! strncmp (name2, "unix:", 5))
9655 name2 += 4;
9656 /* Treat this host's name like an empty host name. */
9657 if (! strncmp (name1, system_name, system_name_length)
9658 && name1[system_name_length] == ':')
9659 name1 += system_name_length;
9660 if (! strncmp (name2, system_name, system_name_length)
9661 && name2[system_name_length] == ':')
9662 name2 += system_name_length;
9663 /* Treat this host's domainless name like an empty host name. */
9664 if (! strncmp (name1, system_name, length_until_period)
9665 && name1[length_until_period] == ':')
9666 name1 += length_until_period;
9667 if (! strncmp (name2, system_name, length_until_period)
9668 && name2[length_until_period] == ':')
9669 name2 += length_until_period;
9670
9671 for (; *name1 != '\0' && *name1 == *name2; name1++, name2++)
9672 {
9673 if (*name1 == ':')
9674 seen_colon = 1;
9675 if (seen_colon && *name1 == '.')
9676 return 1;
9677 }
9678 return (seen_colon
9679 && (*name1 == '.' || *name1 == '\0')
9680 && (*name2 == '.' || *name2 == '\0'));
9681 }
9682
9683 /* Count number of set bits in mask and number of bits to shift to
9684 get to the first bit. With MASK 0x7e0, *BITS is set to 6, and *OFFSET
9685 to 5. */
9686 static void
9687 get_bits_and_offset (unsigned long mask, int *bits, int *offset)
9688 {
9689 int nr = 0;
9690 int off = 0;
9691
9692 while (!(mask & 1))
9693 {
9694 off++;
9695 mask >>= 1;
9696 }
9697
9698 while (mask & 1)
9699 {
9700 nr++;
9701 mask >>= 1;
9702 }
9703
9704 *offset = off;
9705 *bits = nr;
9706 }
9707
9708 /* Return 1 if display DISPLAY is available for use, 0 otherwise.
9709 But don't permanently open it, just test its availability. */
9710
9711 bool
9712 x_display_ok (const char *display)
9713 {
9714 Display *dpy = XOpenDisplay (display);
9715 return dpy ? (XCloseDisplay (dpy), 1) : 0;
9716 }
9717
9718 #ifdef USE_GTK
9719 static void
9720 my_log_handler (const gchar *log_domain, GLogLevelFlags log_level,
9721 const gchar *msg, gpointer user_data)
9722 {
9723 if (!strstr (msg, "g_set_prgname"))
9724 fprintf (stderr, "%s-WARNING **: %s\n", log_domain, msg);
9725 }
9726 #endif
9727
9728 /* Current X display connection identifier. Incremented for each next
9729 connection established. */
9730 static unsigned x_display_id;
9731
9732 /* Open a connection to X display DISPLAY_NAME, and return
9733 the structure that describes the open display.
9734 If we cannot contact the display, return null. */
9735
9736 struct x_display_info *
9737 x_term_init (Lisp_Object display_name, char *xrm_option, char *resource_name)
9738 {
9739 int connection;
9740 Display *dpy;
9741 struct terminal *terminal;
9742 struct x_display_info *dpyinfo;
9743 XrmDatabase xrdb;
9744 ptrdiff_t lim;
9745
9746 block_input ();
9747
9748 if (!x_initialized)
9749 {
9750 x_initialize ();
9751 ++x_initialized;
9752 }
9753
9754 if (! x_display_ok (SSDATA (display_name)))
9755 error ("Display %s can't be opened", SSDATA (display_name));
9756
9757 #ifdef USE_GTK
9758 {
9759 #define NUM_ARGV 10
9760 int argc;
9761 char *argv[NUM_ARGV];
9762 char **argv2 = argv;
9763 guint id;
9764
9765 if (x_initialized++ > 1)
9766 {
9767 xg_display_open (SSDATA (display_name), &dpy);
9768 }
9769 else
9770 {
9771 static char display_opt[] = "--display";
9772 static char name_opt[] = "--name";
9773
9774 for (argc = 0; argc < NUM_ARGV; ++argc)
9775 argv[argc] = 0;
9776
9777 argc = 0;
9778 argv[argc++] = initial_argv[0];
9779
9780 if (! NILP (display_name))
9781 {
9782 argv[argc++] = display_opt;
9783 argv[argc++] = SSDATA (display_name);
9784 }
9785
9786 argv[argc++] = name_opt;
9787 argv[argc++] = resource_name;
9788
9789 XSetLocaleModifiers ("");
9790
9791 /* Emacs can only handle core input events, so make sure
9792 Gtk doesn't use Xinput or Xinput2 extensions. */
9793 xputenv ("GDK_CORE_DEVICE_EVENTS=1");
9794
9795 /* Work around GLib bug that outputs a faulty warning. See
9796 https://bugzilla.gnome.org/show_bug.cgi?id=563627. */
9797 id = g_log_set_handler ("GLib", G_LOG_LEVEL_WARNING | G_LOG_FLAG_FATAL
9798 | G_LOG_FLAG_RECURSION, my_log_handler, NULL);
9799
9800 /* NULL window -> events for all windows go to our function.
9801 Call before gtk_init so Gtk+ event filters comes after our. */
9802 gdk_window_add_filter (NULL, event_handler_gdk, NULL);
9803
9804 /* gtk_init does set_locale. Fix locale before and after. */
9805 fixup_locale ();
9806 gtk_init (&argc, &argv2);
9807 fixup_locale ();
9808
9809 g_log_remove_handler ("GLib", id);
9810
9811 xg_initialize ();
9812
9813 dpy = DEFAULT_GDK_DISPLAY ();
9814
9815 #if ! GTK_CHECK_VERSION (2, 90, 0)
9816 /* Load our own gtkrc if it exists. */
9817 {
9818 const char *file = "~/.emacs.d/gtkrc";
9819 Lisp_Object s, abs_file;
9820
9821 s = build_string (file);
9822 abs_file = Fexpand_file_name (s, Qnil);
9823
9824 if (! NILP (abs_file) && !NILP (Ffile_readable_p (abs_file)))
9825 gtk_rc_parse (SSDATA (abs_file));
9826 }
9827 #endif
9828
9829 XSetErrorHandler (x_error_handler);
9830 XSetIOErrorHandler (x_io_error_quitter);
9831 }
9832 }
9833 #else /* not USE_GTK */
9834 #ifdef USE_X_TOOLKIT
9835 /* weiner@footloose.sps.mot.com reports that this causes
9836 errors with X11R5:
9837 X protocol error: BadAtom (invalid Atom parameter)
9838 on protocol request 18skiloaf.
9839 So let's not use it until R6. */
9840 #ifdef HAVE_X11XTR6
9841 XtSetLanguageProc (NULL, NULL, NULL);
9842 #endif
9843
9844 {
9845 int argc = 0;
9846 char *argv[3];
9847
9848 argv[0] = "";
9849 argc = 1;
9850 if (xrm_option)
9851 {
9852 argv[argc++] = "-xrm";
9853 argv[argc++] = xrm_option;
9854 }
9855 turn_on_atimers (0);
9856 dpy = XtOpenDisplay (Xt_app_con, SSDATA (display_name),
9857 resource_name, EMACS_CLASS,
9858 emacs_options, XtNumber (emacs_options),
9859 &argc, argv);
9860 turn_on_atimers (1);
9861
9862 #ifdef HAVE_X11XTR6
9863 /* I think this is to compensate for XtSetLanguageProc. */
9864 fixup_locale ();
9865 #endif
9866 }
9867
9868 #else /* not USE_X_TOOLKIT */
9869 XSetLocaleModifiers ("");
9870 dpy = XOpenDisplay (SSDATA (display_name));
9871 #endif /* not USE_X_TOOLKIT */
9872 #endif /* not USE_GTK*/
9873
9874 /* Detect failure. */
9875 if (dpy == 0)
9876 {
9877 unblock_input ();
9878 return 0;
9879 }
9880
9881 /* We have definitely succeeded. Record the new connection. */
9882
9883 dpyinfo = xzalloc (sizeof *dpyinfo);
9884 terminal = x_create_terminal (dpyinfo);
9885
9886 {
9887 struct x_display_info *share;
9888
9889 for (share = x_display_list; share; share = share->next)
9890 if (same_x_server (SSDATA (XCAR (share->name_list_element)),
9891 SSDATA (display_name)))
9892 break;
9893 if (share)
9894 terminal->kboard = share->terminal->kboard;
9895 else
9896 {
9897 terminal->kboard = allocate_kboard (Qx);
9898
9899 if (!EQ (XSYMBOL (Qvendor_specific_keysyms)->function, Qunbound))
9900 {
9901 char *vendor = ServerVendor (dpy);
9902
9903 /* Protect terminal from GC before removing it from the
9904 list of terminals. */
9905 struct gcpro gcpro1;
9906 Lisp_Object gcpro_term;
9907 XSETTERMINAL (gcpro_term, terminal);
9908 GCPRO1 (gcpro_term);
9909
9910 /* Temporarily hide the partially initialized terminal. */
9911 terminal_list = terminal->next_terminal;
9912 unblock_input ();
9913 kset_system_key_alist
9914 (terminal->kboard,
9915 call1 (Qvendor_specific_keysyms,
9916 vendor ? build_string (vendor) : empty_unibyte_string));
9917 block_input ();
9918 terminal->next_terminal = terminal_list;
9919 terminal_list = terminal;
9920 UNGCPRO;
9921 }
9922
9923 /* Don't let the initial kboard remain current longer than necessary.
9924 That would cause problems if a file loaded on startup tries to
9925 prompt in the mini-buffer. */
9926 if (current_kboard == initial_kboard)
9927 current_kboard = terminal->kboard;
9928 }
9929 terminal->kboard->reference_count++;
9930 }
9931
9932 /* Put this display on the chain. */
9933 dpyinfo->next = x_display_list;
9934 x_display_list = dpyinfo;
9935
9936 dpyinfo->name_list_element = Fcons (display_name, Qnil);
9937 dpyinfo->display = dpy;
9938
9939 /* Set the name of the terminal. */
9940 terminal->name = xlispstrdup (display_name);
9941
9942 #if 0
9943 XSetAfterFunction (x_current_display, x_trace_wire);
9944 #endif /* ! 0 */
9945
9946 lim = min (PTRDIFF_MAX, SIZE_MAX) - sizeof "@";
9947 if (lim - SBYTES (Vinvocation_name) < SBYTES (Vsystem_name))
9948 memory_full (SIZE_MAX);
9949 dpyinfo->x_id = ++x_display_id;
9950 dpyinfo->x_id_name = xmalloc (SBYTES (Vinvocation_name)
9951 + SBYTES (Vsystem_name) + 2);
9952 strcat (strcat (strcpy (dpyinfo->x_id_name, SSDATA (Vinvocation_name)), "@"),
9953 SSDATA (Vsystem_name));
9954
9955 /* Figure out which modifier bits mean what. */
9956 x_find_modifier_meanings (dpyinfo);
9957
9958 /* Get the scroll bar cursor. */
9959 #ifdef USE_GTK
9960 /* We must create a GTK cursor, it is required for GTK widgets. */
9961 dpyinfo->xg_cursor = xg_create_default_cursor (dpyinfo->display);
9962 #endif /* USE_GTK */
9963
9964 dpyinfo->vertical_scroll_bar_cursor
9965 = XCreateFontCursor (dpyinfo->display, XC_sb_v_double_arrow);
9966
9967 xrdb = x_load_resources (dpyinfo->display, xrm_option,
9968 resource_name, EMACS_CLASS);
9969 #ifdef HAVE_XRMSETDATABASE
9970 XrmSetDatabase (dpyinfo->display, xrdb);
9971 #else
9972 dpyinfo->display->db = xrdb;
9973 #endif
9974 /* Put the rdb where we can find it in a way that works on
9975 all versions. */
9976 dpyinfo->xrdb = xrdb;
9977
9978 dpyinfo->screen = ScreenOfDisplay (dpyinfo->display,
9979 DefaultScreen (dpyinfo->display));
9980 select_visual (dpyinfo);
9981 dpyinfo->cmap = DefaultColormapOfScreen (dpyinfo->screen);
9982 dpyinfo->root_window = RootWindowOfScreen (dpyinfo->screen);
9983 dpyinfo->icon_bitmap_id = -1;
9984 dpyinfo->wm_type = X_WMTYPE_UNKNOWN;
9985
9986 reset_mouse_highlight (&dpyinfo->mouse_highlight);
9987
9988 /* See if we can construct pixel values from RGB values. */
9989 if (dpyinfo->visual->class == TrueColor)
9990 {
9991 get_bits_and_offset (dpyinfo->visual->red_mask,
9992 &dpyinfo->red_bits, &dpyinfo->red_offset);
9993 get_bits_and_offset (dpyinfo->visual->blue_mask,
9994 &dpyinfo->blue_bits, &dpyinfo->blue_offset);
9995 get_bits_and_offset (dpyinfo->visual->green_mask,
9996 &dpyinfo->green_bits, &dpyinfo->green_offset);
9997 }
9998
9999 /* See if a private colormap is requested. */
10000 if (dpyinfo->visual == DefaultVisualOfScreen (dpyinfo->screen))
10001 {
10002 if (dpyinfo->visual->class == PseudoColor)
10003 {
10004 Lisp_Object value;
10005 value = display_x_get_resource (dpyinfo,
10006 build_string ("privateColormap"),
10007 build_string ("PrivateColormap"),
10008 Qnil, Qnil);
10009 if (STRINGP (value)
10010 && (!strcmp (SSDATA (value), "true")
10011 || !strcmp (SSDATA (value), "on")))
10012 dpyinfo->cmap = XCopyColormapAndFree (dpyinfo->display, dpyinfo->cmap);
10013 }
10014 }
10015 else
10016 dpyinfo->cmap = XCreateColormap (dpyinfo->display, dpyinfo->root_window,
10017 dpyinfo->visual, AllocNone);
10018
10019 #ifdef HAVE_XFT
10020 {
10021 /* If we are using Xft, check dpi value in X resources.
10022 It is better we use it as well, since Xft will use it, as will all
10023 Gnome applications. If our real DPI is smaller or larger than the
10024 one Xft uses, our font will look smaller or larger than other
10025 for other applications, even if it is the same font name (monospace-10
10026 for example). */
10027 char *v = XGetDefault (dpyinfo->display, "Xft", "dpi");
10028 double d;
10029 if (v != NULL && sscanf (v, "%lf", &d) == 1)
10030 dpyinfo->resy = dpyinfo->resx = d;
10031 }
10032 #endif
10033
10034 if (dpyinfo->resy < 1)
10035 {
10036 int screen_number = XScreenNumberOfScreen (dpyinfo->screen);
10037 double pixels = DisplayHeight (dpyinfo->display, screen_number);
10038 double mm = DisplayHeightMM (dpyinfo->display, screen_number);
10039 /* Mac OS X 10.3's Xserver sometimes reports 0.0mm. */
10040 dpyinfo->resy = (mm < 1) ? 100 : pixels * 25.4 / mm;
10041 pixels = DisplayWidth (dpyinfo->display, screen_number);
10042 mm = DisplayWidthMM (dpyinfo->display, screen_number);
10043 /* Mac OS X 10.3's Xserver sometimes reports 0.0mm. */
10044 dpyinfo->resx = (mm < 1) ? 100 : pixels * 25.4 / mm;
10045 }
10046
10047 {
10048 static const struct
10049 {
10050 const char *name;
10051 int offset;
10052 } atom_refs[] = {
10053 #define ATOM_REFS_INIT(string, member) \
10054 { string, offsetof (struct x_display_info, member) },
10055 ATOM_REFS_INIT ("WM_PROTOCOLS", Xatom_wm_protocols)
10056 ATOM_REFS_INIT ("WM_TAKE_FOCUS", Xatom_wm_take_focus)
10057 ATOM_REFS_INIT ("WM_SAVE_YOURSELF", Xatom_wm_save_yourself)
10058 ATOM_REFS_INIT ("WM_DELETE_WINDOW", Xatom_wm_delete_window)
10059 ATOM_REFS_INIT ("WM_CHANGE_STATE", Xatom_wm_change_state)
10060 ATOM_REFS_INIT ("WM_CONFIGURE_DENIED", Xatom_wm_configure_denied)
10061 ATOM_REFS_INIT ("WM_MOVED", Xatom_wm_window_moved)
10062 ATOM_REFS_INIT ("WM_CLIENT_LEADER", Xatom_wm_client_leader)
10063 ATOM_REFS_INIT ("Editres", Xatom_editres)
10064 ATOM_REFS_INIT ("CLIPBOARD", Xatom_CLIPBOARD)
10065 ATOM_REFS_INIT ("TIMESTAMP", Xatom_TIMESTAMP)
10066 ATOM_REFS_INIT ("TEXT", Xatom_TEXT)
10067 ATOM_REFS_INIT ("COMPOUND_TEXT", Xatom_COMPOUND_TEXT)
10068 ATOM_REFS_INIT ("UTF8_STRING", Xatom_UTF8_STRING)
10069 ATOM_REFS_INIT ("DELETE", Xatom_DELETE)
10070 ATOM_REFS_INIT ("MULTIPLE", Xatom_MULTIPLE)
10071 ATOM_REFS_INIT ("INCR", Xatom_INCR)
10072 ATOM_REFS_INIT ("_EMACS_TMP_", Xatom_EMACS_TMP)
10073 ATOM_REFS_INIT ("TARGETS", Xatom_TARGETS)
10074 ATOM_REFS_INIT ("NULL", Xatom_NULL)
10075 ATOM_REFS_INIT ("ATOM", Xatom_ATOM)
10076 ATOM_REFS_INIT ("ATOM_PAIR", Xatom_ATOM_PAIR)
10077 ATOM_REFS_INIT ("CLIPBOARD_MANAGER", Xatom_CLIPBOARD_MANAGER)
10078 ATOM_REFS_INIT ("_XEMBED_INFO", Xatom_XEMBED_INFO)
10079 /* For properties of font. */
10080 ATOM_REFS_INIT ("PIXEL_SIZE", Xatom_PIXEL_SIZE)
10081 ATOM_REFS_INIT ("AVERAGE_WIDTH", Xatom_AVERAGE_WIDTH)
10082 ATOM_REFS_INIT ("_MULE_BASELINE_OFFSET", Xatom_MULE_BASELINE_OFFSET)
10083 ATOM_REFS_INIT ("_MULE_RELATIVE_COMPOSE", Xatom_MULE_RELATIVE_COMPOSE)
10084 ATOM_REFS_INIT ("_MULE_DEFAULT_ASCENT", Xatom_MULE_DEFAULT_ASCENT)
10085 /* Ghostscript support. */
10086 ATOM_REFS_INIT ("DONE", Xatom_DONE)
10087 ATOM_REFS_INIT ("PAGE", Xatom_PAGE)
10088 ATOM_REFS_INIT ("SCROLLBAR", Xatom_Scrollbar)
10089 ATOM_REFS_INIT ("_XEMBED", Xatom_XEMBED)
10090 /* EWMH */
10091 ATOM_REFS_INIT ("_NET_WM_STATE", Xatom_net_wm_state)
10092 ATOM_REFS_INIT ("_NET_WM_STATE_FULLSCREEN", Xatom_net_wm_state_fullscreen)
10093 ATOM_REFS_INIT ("_NET_WM_STATE_MAXIMIZED_HORZ",
10094 Xatom_net_wm_state_maximized_horz)
10095 ATOM_REFS_INIT ("_NET_WM_STATE_MAXIMIZED_VERT",
10096 Xatom_net_wm_state_maximized_vert)
10097 ATOM_REFS_INIT ("_NET_WM_STATE_STICKY", Xatom_net_wm_state_sticky)
10098 ATOM_REFS_INIT ("_NET_WM_STATE_HIDDEN", Xatom_net_wm_state_hidden)
10099 ATOM_REFS_INIT ("_NET_WM_WINDOW_TYPE", Xatom_net_window_type)
10100 ATOM_REFS_INIT ("_NET_WM_WINDOW_TYPE_TOOLTIP",
10101 Xatom_net_window_type_tooltip)
10102 ATOM_REFS_INIT ("_NET_WM_ICON_NAME", Xatom_net_wm_icon_name)
10103 ATOM_REFS_INIT ("_NET_WM_NAME", Xatom_net_wm_name)
10104 ATOM_REFS_INIT ("_NET_SUPPORTED", Xatom_net_supported)
10105 ATOM_REFS_INIT ("_NET_SUPPORTING_WM_CHECK", Xatom_net_supporting_wm_check)
10106 ATOM_REFS_INIT ("_NET_WM_WINDOW_OPACITY", Xatom_net_wm_window_opacity)
10107 ATOM_REFS_INIT ("_NET_ACTIVE_WINDOW", Xatom_net_active_window)
10108 ATOM_REFS_INIT ("_NET_FRAME_EXTENTS", Xatom_net_frame_extents)
10109 ATOM_REFS_INIT ("_NET_CURRENT_DESKTOP", Xatom_net_current_desktop)
10110 ATOM_REFS_INIT ("_NET_WORKAREA", Xatom_net_workarea)
10111 /* Session management */
10112 ATOM_REFS_INIT ("SM_CLIENT_ID", Xatom_SM_CLIENT_ID)
10113 ATOM_REFS_INIT ("_XSETTINGS_SETTINGS", Xatom_xsettings_prop)
10114 ATOM_REFS_INIT ("MANAGER", Xatom_xsettings_mgr)
10115 };
10116
10117 int i;
10118 const int atom_count = sizeof (atom_refs) / sizeof (atom_refs[0]);
10119 /* 1 for _XSETTINGS_SN */
10120 const int total_atom_count = 1 + atom_count;
10121 Atom *atoms_return = xmalloc (total_atom_count * sizeof *atoms_return);
10122 char **atom_names = xmalloc (total_atom_count * sizeof *atom_names);
10123 static char const xsettings_fmt[] = "_XSETTINGS_S%d";
10124 char xsettings_atom_name[sizeof xsettings_fmt - 2
10125 + INT_STRLEN_BOUND (int)];
10126
10127 for (i = 0; i < atom_count; i++)
10128 atom_names[i] = (char *) atom_refs[i].name;
10129
10130 /* Build _XSETTINGS_SN atom name */
10131 sprintf (xsettings_atom_name, xsettings_fmt,
10132 XScreenNumberOfScreen (dpyinfo->screen));
10133 atom_names[i] = xsettings_atom_name;
10134
10135 XInternAtoms (dpyinfo->display, atom_names, total_atom_count,
10136 False, atoms_return);
10137
10138 for (i = 0; i < atom_count; i++)
10139 *(Atom *) ((char *) dpyinfo + atom_refs[i].offset) = atoms_return[i];
10140
10141 /* Manual copy of last atom */
10142 dpyinfo->Xatom_xsettings_sel = atoms_return[i];
10143
10144 xfree (atom_names);
10145 xfree (atoms_return);
10146 }
10147
10148 dpyinfo->x_dnd_atoms_size = 8;
10149 dpyinfo->x_dnd_atoms = xmalloc (sizeof *dpyinfo->x_dnd_atoms
10150 * dpyinfo->x_dnd_atoms_size);
10151 dpyinfo->gray
10152 = XCreatePixmapFromBitmapData (dpyinfo->display, dpyinfo->root_window,
10153 gray_bits, gray_width, gray_height,
10154 1, 0, 1);
10155
10156 #ifdef HAVE_X_I18N
10157 xim_initialize (dpyinfo, resource_name);
10158 #endif
10159
10160 xsettings_initialize (dpyinfo);
10161
10162 connection = ConnectionNumber (dpyinfo->display);
10163
10164 /* This is only needed for distinguishing keyboard and process input. */
10165 if (connection != 0)
10166 add_keyboard_wait_descriptor (connection);
10167
10168 #ifdef F_SETOWN
10169 fcntl (connection, F_SETOWN, getpid ());
10170 #endif /* ! defined (F_SETOWN) */
10171
10172 if (interrupt_input)
10173 init_sigio (connection);
10174
10175 #ifdef USE_LUCID
10176 {
10177 XrmValue d, fr, to;
10178 Font font;
10179
10180 dpy = dpyinfo->display;
10181 d.addr = (XPointer)&dpy;
10182 d.size = sizeof (Display *);
10183 fr.addr = XtDefaultFont;
10184 fr.size = sizeof (XtDefaultFont);
10185 to.size = sizeof (Font *);
10186 to.addr = (XPointer)&font;
10187 x_catch_errors (dpy);
10188 if (!XtCallConverter (dpy, XtCvtStringToFont, &d, 1, &fr, &to, NULL))
10189 emacs_abort ();
10190 if (x_had_errors_p (dpy) || !XQueryFont (dpy, font))
10191 XrmPutLineResource (&xrdb, "Emacs.dialog.*.font: 9x15");
10192 x_uncatch_errors ();
10193 }
10194 #endif
10195
10196 /* See if we should run in synchronous mode. This is useful
10197 for debugging X code. */
10198 {
10199 Lisp_Object value;
10200 value = display_x_get_resource (dpyinfo,
10201 build_string ("synchronous"),
10202 build_string ("Synchronous"),
10203 Qnil, Qnil);
10204 if (STRINGP (value)
10205 && (!strcmp (SSDATA (value), "true")
10206 || !strcmp (SSDATA (value), "on")))
10207 XSynchronize (dpyinfo->display, True);
10208 }
10209
10210 {
10211 Lisp_Object value;
10212 value = display_x_get_resource (dpyinfo,
10213 build_string ("useXIM"),
10214 build_string ("UseXIM"),
10215 Qnil, Qnil);
10216 #ifdef USE_XIM
10217 if (STRINGP (value)
10218 && (!strcmp (SSDATA (value), "false")
10219 || !strcmp (SSDATA (value), "off")))
10220 use_xim = false;
10221 #else
10222 if (STRINGP (value)
10223 && (!strcmp (SSDATA (value), "true")
10224 || !strcmp (SSDATA (value), "on")))
10225 use_xim = true;
10226 #endif
10227 }
10228
10229 #ifdef HAVE_X_SM
10230 /* Only do this for the very first display in the Emacs session.
10231 Ignore X session management when Emacs was first started on a
10232 tty. */
10233 if (terminal->id == 1)
10234 x_session_initialize (dpyinfo);
10235 #endif
10236
10237 unblock_input ();
10238
10239 return dpyinfo;
10240 }
10241 \f
10242 /* Get rid of display DPYINFO, deleting all frames on it,
10243 and without sending any more commands to the X server. */
10244
10245 static void
10246 x_delete_display (struct x_display_info *dpyinfo)
10247 {
10248 struct terminal *t;
10249
10250 /* Close all frames and delete the generic struct terminal for this
10251 X display. */
10252 for (t = terminal_list; t; t = t->next_terminal)
10253 if (t->type == output_x_window && t->display_info.x == dpyinfo)
10254 {
10255 #ifdef HAVE_X_SM
10256 /* Close X session management when we close its display. */
10257 if (t->id == 1 && x_session_have_connection ())
10258 x_session_close ();
10259 #endif
10260 delete_terminal (t);
10261 break;
10262 }
10263
10264 if (next_noop_dpyinfo == dpyinfo)
10265 next_noop_dpyinfo = dpyinfo->next;
10266
10267 if (x_display_list == dpyinfo)
10268 x_display_list = dpyinfo->next;
10269 else
10270 {
10271 struct x_display_info *tail;
10272
10273 for (tail = x_display_list; tail; tail = tail->next)
10274 if (tail->next == dpyinfo)
10275 tail->next = tail->next->next;
10276 }
10277
10278 xfree (dpyinfo->x_id_name);
10279 xfree (dpyinfo->x_dnd_atoms);
10280 xfree (dpyinfo->color_cells);
10281 xfree (dpyinfo);
10282 }
10283
10284 #ifdef USE_X_TOOLKIT
10285
10286 /* Atimer callback function for TIMER. Called every 0.1s to process
10287 Xt timeouts, if needed. We must avoid calling XtAppPending as
10288 much as possible because that function does an implicit XFlush
10289 that slows us down. */
10290
10291 static void
10292 x_process_timeouts (struct atimer *timer)
10293 {
10294 block_input ();
10295 x_timeout_atimer_activated_flag = 0;
10296 if (toolkit_scroll_bar_interaction || popup_activated ())
10297 {
10298 while (XtAppPending (Xt_app_con) & XtIMTimer)
10299 XtAppProcessEvent (Xt_app_con, XtIMTimer);
10300 /* Reactivate the atimer for next time. */
10301 x_activate_timeout_atimer ();
10302 }
10303 unblock_input ();
10304 }
10305
10306 /* Install an asynchronous timer that processes Xt timeout events
10307 every 0.1s as long as either `toolkit_scroll_bar_interaction' or
10308 `popup_activated_flag' (in xmenu.c) is set. Make sure to call this
10309 function whenever these variables are set. This is necessary
10310 because some widget sets use timeouts internally, for example the
10311 LessTif menu bar, or the Xaw3d scroll bar. When Xt timeouts aren't
10312 processed, these widgets don't behave normally. */
10313
10314 void
10315 x_activate_timeout_atimer (void)
10316 {
10317 block_input ();
10318 if (!x_timeout_atimer_activated_flag)
10319 {
10320 struct timespec interval = make_timespec (0, 100 * 1000 * 1000);
10321 start_atimer (ATIMER_RELATIVE, interval, x_process_timeouts, 0);
10322 x_timeout_atimer_activated_flag = 1;
10323 }
10324 unblock_input ();
10325 }
10326
10327 #endif /* USE_X_TOOLKIT */
10328
10329 \f
10330 /* Set up use of X before we make the first connection. */
10331
10332 static struct redisplay_interface x_redisplay_interface =
10333 {
10334 x_frame_parm_handlers,
10335 x_produce_glyphs,
10336 x_write_glyphs,
10337 x_insert_glyphs,
10338 x_clear_end_of_line,
10339 x_scroll_run,
10340 x_after_update_window_line,
10341 x_update_window_begin,
10342 x_update_window_end,
10343 x_flush,
10344 x_clear_window_mouse_face,
10345 x_get_glyph_overhangs,
10346 x_fix_overlapping_area,
10347 x_draw_fringe_bitmap,
10348 0, /* define_fringe_bitmap */
10349 0, /* destroy_fringe_bitmap */
10350 x_compute_glyph_string_overhangs,
10351 x_draw_glyph_string,
10352 x_define_frame_cursor,
10353 x_clear_frame_area,
10354 x_draw_window_cursor,
10355 x_draw_vertical_window_border,
10356 x_draw_window_divider,
10357 x_shift_glyphs_for_insert
10358 };
10359
10360
10361 /* This function is called when the last frame on a display is deleted. */
10362 void
10363 x_delete_terminal (struct terminal *terminal)
10364 {
10365 struct x_display_info *dpyinfo = terminal->display_info.x;
10366 int connection = -1;
10367
10368 /* Protect against recursive calls. delete_frame in
10369 delete_terminal calls us back when it deletes our last frame. */
10370 if (!terminal->name)
10371 return;
10372
10373 block_input ();
10374 #ifdef HAVE_X_I18N
10375 /* We must close our connection to the XIM server before closing the
10376 X display. */
10377 if (dpyinfo->xim)
10378 xim_close_dpy (dpyinfo);
10379 #endif
10380
10381 /* If called from x_connection_closed, the display may already be closed
10382 and dpyinfo->display was set to 0 to indicate that. */
10383 if (dpyinfo->display)
10384 {
10385 connection = ConnectionNumber (dpyinfo->display);
10386
10387 x_destroy_all_bitmaps (dpyinfo);
10388 XSetCloseDownMode (dpyinfo->display, DestroyAll);
10389
10390 /* Whether or not XCloseDisplay destroys the associated resource
10391 database depends on the version of libX11. To avoid both
10392 crash and memory leak, we dissociate the database from the
10393 display and then destroy dpyinfo->xrdb ourselves.
10394
10395 Unfortunately, the above strategy does not work in some
10396 situations due to a bug in newer versions of libX11: because
10397 XrmSetDatabase doesn't clear the flag XlibDisplayDfltRMDB if
10398 dpy->db is NULL, XCloseDisplay destroys the associated
10399 database whereas it has not been created by XGetDefault
10400 (Bug#21974 in freedesktop.org Bugzilla). As a workaround, we
10401 don't destroy the database here in order to avoid the crash
10402 in the above situations for now, though that may cause memory
10403 leaks in other situations. */
10404 #if 0
10405 #ifdef HAVE_XRMSETDATABASE
10406 XrmSetDatabase (dpyinfo->display, NULL);
10407 #else
10408 dpyinfo->display->db = NULL;
10409 #endif
10410 /* We used to call XrmDestroyDatabase from x_delete_display, but
10411 some older versions of libX11 crash if we call it after
10412 closing all the displays. */
10413 XrmDestroyDatabase (dpyinfo->xrdb);
10414 #endif
10415
10416 #ifdef USE_GTK
10417 xg_display_close (dpyinfo->display);
10418 #else
10419 #ifdef USE_X_TOOLKIT
10420 XtCloseDisplay (dpyinfo->display);
10421 #else
10422 XCloseDisplay (dpyinfo->display);
10423 #endif
10424 #endif /* ! USE_GTK */
10425 }
10426
10427 /* No more input on this descriptor. */
10428 if (connection != -1)
10429 delete_keyboard_wait_descriptor (connection);
10430
10431 /* Mark as dead. */
10432 dpyinfo->display = NULL;
10433 x_delete_display (dpyinfo);
10434 unblock_input ();
10435 }
10436
10437 /* Create a struct terminal, initialize it with the X11 specific
10438 functions and make DISPLAY->TERMINAL point to it. */
10439
10440 static struct terminal *
10441 x_create_terminal (struct x_display_info *dpyinfo)
10442 {
10443 struct terminal *terminal;
10444
10445 terminal = create_terminal ();
10446
10447 terminal->type = output_x_window;
10448 terminal->display_info.x = dpyinfo;
10449 dpyinfo->terminal = terminal;
10450
10451 /* kboard is initialized in x_term_init. */
10452
10453 terminal->clear_frame_hook = x_clear_frame;
10454 terminal->ins_del_lines_hook = x_ins_del_lines;
10455 terminal->delete_glyphs_hook = x_delete_glyphs;
10456 terminal->ring_bell_hook = XTring_bell;
10457 terminal->toggle_invisible_pointer_hook = XTtoggle_invisible_pointer;
10458 terminal->reset_terminal_modes_hook = NULL;
10459 terminal->set_terminal_modes_hook = NULL;
10460 terminal->update_begin_hook = x_update_begin;
10461 terminal->update_end_hook = x_update_end;
10462 terminal->set_terminal_window_hook = NULL;
10463 terminal->read_socket_hook = XTread_socket;
10464 terminal->frame_up_to_date_hook = XTframe_up_to_date;
10465 terminal->mouse_position_hook = XTmouse_position;
10466 terminal->frame_rehighlight_hook = XTframe_rehighlight;
10467 terminal->frame_raise_lower_hook = XTframe_raise_lower;
10468 terminal->fullscreen_hook = XTfullscreen_hook;
10469 terminal->set_vertical_scroll_bar_hook = XTset_vertical_scroll_bar;
10470 terminal->condemn_scroll_bars_hook = XTcondemn_scroll_bars;
10471 terminal->redeem_scroll_bar_hook = XTredeem_scroll_bar;
10472 terminal->judge_scroll_bars_hook = XTjudge_scroll_bars;
10473
10474 terminal->delete_frame_hook = x_destroy_window;
10475 terminal->delete_terminal_hook = x_delete_terminal;
10476
10477 terminal->rif = &x_redisplay_interface;
10478
10479 return terminal;
10480 }
10481
10482 void
10483 x_initialize (void)
10484 {
10485 baud_rate = 19200;
10486
10487 x_noop_count = 0;
10488 last_tool_bar_item = -1;
10489 any_help_event_p = 0;
10490 ignore_next_mouse_click_timeout = 0;
10491
10492 #ifdef USE_GTK
10493 current_count = -1;
10494 #endif
10495
10496 /* Try to use interrupt input; if we can't, then start polling. */
10497 Fset_input_interrupt_mode (Qt);
10498
10499 #ifdef USE_X_TOOLKIT
10500 XtToolkitInitialize ();
10501
10502 Xt_app_con = XtCreateApplicationContext ();
10503
10504 /* Register a converter from strings to pixels, which uses
10505 Emacs' color allocation infrastructure. */
10506 XtAppSetTypeConverter (Xt_app_con,
10507 XtRString, XtRPixel, cvt_string_to_pixel,
10508 cvt_string_to_pixel_args,
10509 XtNumber (cvt_string_to_pixel_args),
10510 XtCacheByDisplay, cvt_pixel_dtor);
10511
10512 XtAppSetFallbackResources (Xt_app_con, Xt_default_resources);
10513 #endif
10514
10515 #ifdef USE_TOOLKIT_SCROLL_BARS
10516 #ifndef USE_GTK
10517 xaw3d_arrow_scroll = False;
10518 xaw3d_pick_top = True;
10519 #endif
10520 #endif
10521
10522 /* Note that there is no real way portable across R3/R4 to get the
10523 original error handler. */
10524 XSetErrorHandler (x_error_handler);
10525 XSetIOErrorHandler (x_io_error_quitter);
10526 }
10527
10528
10529 void
10530 syms_of_xterm (void)
10531 {
10532 x_error_message = NULL;
10533
10534 DEFSYM (Qvendor_specific_keysyms, "vendor-specific-keysyms");
10535 DEFSYM (Qlatin_1, "latin-1");
10536
10537 #ifdef USE_GTK
10538 xg_default_icon_file = build_pure_c_string ("icons/hicolor/scalable/apps/emacs.svg");
10539 staticpro (&xg_default_icon_file);
10540
10541 DEFSYM (Qx_gtk_map_stock, "x-gtk-map-stock");
10542 #endif
10543
10544 DEFVAR_BOOL ("x-use-underline-position-properties",
10545 x_use_underline_position_properties,
10546 doc: /* Non-nil means make use of UNDERLINE_POSITION font properties.
10547 A value of nil means ignore them. If you encounter fonts with bogus
10548 UNDERLINE_POSITION font properties, for example 7x13 on XFree prior
10549 to 4.1, set this to nil. You can also use `underline-minimum-offset'
10550 to override the font's UNDERLINE_POSITION for small font display
10551 sizes. */);
10552 x_use_underline_position_properties = 1;
10553
10554 DEFVAR_BOOL ("x-underline-at-descent-line",
10555 x_underline_at_descent_line,
10556 doc: /* Non-nil means to draw the underline at the same place as the descent line.
10557 A value of nil means to draw the underline according to the value of the
10558 variable `x-use-underline-position-properties', which is usually at the
10559 baseline level. The default value is nil. */);
10560 x_underline_at_descent_line = 0;
10561
10562 DEFVAR_BOOL ("x-mouse-click-focus-ignore-position",
10563 x_mouse_click_focus_ignore_position,
10564 doc: /* Non-nil means that a mouse click to focus a frame does not move point.
10565 This variable is only used when the window manager requires that you
10566 click on a frame to select it (give it focus). In that case, a value
10567 of nil, means that the selected window and cursor position changes to
10568 reflect the mouse click position, while a non-nil value means that the
10569 selected window or cursor position is preserved. */);
10570 x_mouse_click_focus_ignore_position = 0;
10571
10572 DEFVAR_LISP ("x-toolkit-scroll-bars", Vx_toolkit_scroll_bars,
10573 doc: /* Which toolkit scroll bars Emacs uses, if any.
10574 A value of nil means Emacs doesn't use toolkit scroll bars.
10575 With the X Window system, the value is a symbol describing the
10576 X toolkit. Possible values are: gtk, motif, xaw, or xaw3d.
10577 With MS Windows or Nextstep, the value is t. */);
10578 #ifdef USE_TOOLKIT_SCROLL_BARS
10579 #ifdef USE_MOTIF
10580 Vx_toolkit_scroll_bars = intern_c_string ("motif");
10581 #elif defined HAVE_XAW3D
10582 Vx_toolkit_scroll_bars = intern_c_string ("xaw3d");
10583 #elif USE_GTK
10584 Vx_toolkit_scroll_bars = intern_c_string ("gtk");
10585 #else
10586 Vx_toolkit_scroll_bars = intern_c_string ("xaw");
10587 #endif
10588 #else
10589 Vx_toolkit_scroll_bars = Qnil;
10590 #endif
10591
10592 DEFSYM (Qmodifier_value, "modifier-value");
10593 DEFSYM (Qalt, "alt");
10594 Fput (Qalt, Qmodifier_value, make_number (alt_modifier));
10595 DEFSYM (Qhyper, "hyper");
10596 Fput (Qhyper, Qmodifier_value, make_number (hyper_modifier));
10597 DEFSYM (Qmeta, "meta");
10598 Fput (Qmeta, Qmodifier_value, make_number (meta_modifier));
10599 DEFSYM (Qsuper, "super");
10600 Fput (Qsuper, Qmodifier_value, make_number (super_modifier));
10601
10602 DEFVAR_LISP ("x-alt-keysym", Vx_alt_keysym,
10603 doc: /* Which keys Emacs uses for the alt modifier.
10604 This should be one of the symbols `alt', `hyper', `meta', `super'.
10605 For example, `alt' means use the Alt_L and Alt_R keysyms. The default
10606 is nil, which is the same as `alt'. */);
10607 Vx_alt_keysym = Qnil;
10608
10609 DEFVAR_LISP ("x-hyper-keysym", Vx_hyper_keysym,
10610 doc: /* Which keys Emacs uses for the hyper modifier.
10611 This should be one of the symbols `alt', `hyper', `meta', `super'.
10612 For example, `hyper' means use the Hyper_L and Hyper_R keysyms. The
10613 default is nil, which is the same as `hyper'. */);
10614 Vx_hyper_keysym = Qnil;
10615
10616 DEFVAR_LISP ("x-meta-keysym", Vx_meta_keysym,
10617 doc: /* Which keys Emacs uses for the meta modifier.
10618 This should be one of the symbols `alt', `hyper', `meta', `super'.
10619 For example, `meta' means use the Meta_L and Meta_R keysyms. The
10620 default is nil, which is the same as `meta'. */);
10621 Vx_meta_keysym = Qnil;
10622
10623 DEFVAR_LISP ("x-super-keysym", Vx_super_keysym,
10624 doc: /* Which keys Emacs uses for the super modifier.
10625 This should be one of the symbols `alt', `hyper', `meta', `super'.
10626 For example, `super' means use the Super_L and Super_R keysyms. The
10627 default is nil, which is the same as `super'. */);
10628 Vx_super_keysym = Qnil;
10629
10630 DEFVAR_LISP ("x-keysym-table", Vx_keysym_table,
10631 doc: /* Hash table of character codes indexed by X keysym codes. */);
10632 Vx_keysym_table = make_hash_table (hashtest_eql, make_number (900),
10633 make_float (DEFAULT_REHASH_SIZE),
10634 make_float (DEFAULT_REHASH_THRESHOLD),
10635 Qnil);
10636 }