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