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