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