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