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