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