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