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