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