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