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