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