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