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