(Vpreloaded_file_list): New variable.
[emacs.git] / src / xterm.c
blob9690a3dd24b97e92846bfb4d156b838d189bce22
1 /* X Communication module for terminals which understand the X protocol.
2 Copyright (C) 1989, 93, 94, 95, 1996 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
21 /* Xt features made by Fred Pierresteguy. */
23 /* On 4.3 these lose if they come after xterm.h. */
24 /* On HP-UX 8.0 signal.h loses if it comes after config.h. */
25 /* Putting these at the beginning seems to be standard for other .c files. */
26 #include <signal.h>
28 #include <config.h>
30 #include <stdio.h>
32 /* Need syssignal.h for various externs and definitions that may be required
33 by some configurations for calls to signal later in this source file. */
34 #include "syssignal.h"
36 #ifdef HAVE_X_WINDOWS
38 #include "lisp.h"
39 #include "blockinput.h"
41 /* This may include sys/types.h, and that somehow loses
42 if this is not done before the other system files. */
43 #include "xterm.h"
44 #include <X11/cursorfont.h>
46 #ifndef USG
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 #endif /* USG */
54 #ifdef BSD_SYSTEM
55 #include <sys/ioctl.h>
56 #endif /* ! defined (BSD_SYSTEM) */
58 #include "systty.h"
59 #include "systime.h"
61 #ifndef INCLUDED_FCNTL
62 #include <fcntl.h>
63 #endif
64 #include <ctype.h>
65 #include <errno.h>
66 #include <setjmp.h>
67 #include <sys/stat.h>
68 /* Caused redefinition of DBL_DIG on Netbsd; seems not to be needed. */
69 /* #include <sys/param.h> */
71 #include "charset.h"
72 #include "ccl.h"
73 #include "fontset.h"
74 #include "frame.h"
75 #include "dispextern.h"
76 #include "termhooks.h"
77 #include "termopts.h"
78 #include "termchar.h"
79 #if 0
80 #include "sink.h"
81 #include "sinkmask.h"
82 #endif /* ! 0 */
83 #include "gnu.h"
84 #include "disptab.h"
85 #include "buffer.h"
86 #include "window.h"
87 #include "keyboard.h"
88 #include "intervals.h"
90 #ifdef USE_X_TOOLKIT
91 #include <X11/Shell.h>
92 #endif
94 #ifdef USE_X_TOOLKIT
95 extern void free_frame_menubar ();
96 extern FRAME_PTR x_menubar_window_to_frame ();
97 #if (XtSpecificationRelease >= 5) && !defined(NO_EDITRES)
98 #define HACK_EDITRES
99 extern void _XEditResCheckMessages ();
100 #endif /* not NO_EDITRES */
101 #endif /* USE_X_TOOLKIT */
103 #ifndef USE_X_TOOLKIT
104 #define x_any_window_to_frame x_window_to_frame
105 #define x_top_window_to_frame x_window_to_frame
106 #endif
108 #ifdef USE_X_TOOLKIT
109 #include "widget.h"
110 #ifndef XtNinitialState
111 #define XtNinitialState "initialState"
112 #endif
113 #endif
115 #ifdef HAVE_SETLOCALE
116 /* So we can do setlocale. */
117 #include <locale.h>
118 #endif
120 #ifdef SOLARIS2
121 /* memmove will be defined as a macro in Xfuncs.h unless
122 <string.h> is included beforehand. The declaration for memmove in
123 <string.h> will cause a syntax error when Xfuncs.h later includes it. */
124 #include <string.h>
125 #endif
127 #ifndef min
128 #define min(a,b) ((a)<(b) ? (a) : (b))
129 #endif
130 #ifndef max
131 #define max(a,b) ((a)>(b) ? (a) : (b))
132 #endif
134 /* This is a chain of structures for all the X displays currently in use. */
135 struct x_display_info *x_display_list;
137 /* This is a list of cons cells, each of the form (NAME . FONT-LIST-CACHE),
138 one for each element of x_display_list and in the same order.
139 NAME is the name of the frame.
140 FONT-LIST-CACHE records previous values returned by x-list-fonts. */
141 Lisp_Object x_display_name_list;
143 /* Frame being updated by update_frame. This is declared in term.c.
144 This is set by update_begin and looked at by all the
145 XT functions. It is zero while not inside an update.
146 In that case, the XT functions assume that `selected_frame'
147 is the frame to apply to. */
148 extern struct frame *updating_frame;
150 extern waiting_for_input;
152 /* This is a frame waiting to be autoraised, within XTread_socket. */
153 struct frame *pending_autoraise_frame;
155 #ifdef USE_X_TOOLKIT
156 /* The application context for Xt use. */
157 XtAppContext Xt_app_con;
159 static String Xt_default_resources[] =
163 #endif
165 /* During an update, maximum vpos for ins/del line operations to affect. */
167 static int flexlines;
169 /* During an update, nonzero if chars output now should be highlighted. */
171 static int highlight;
173 /* Nominal cursor position -- where to draw output.
174 During an update, these are different from the cursor-box position. */
176 static int curs_x;
177 static int curs_y;
179 /* Mouse movement.
181 Formerly, we used PointerMotionHintMask (in STANDARD_EVENT_MASK)
182 so that we would have to call XQueryPointer after each MotionNotify
183 event to ask for another such event. However, this made mouse tracking
184 slow, and there was a bug that made it eventually stop.
186 Simply asking for MotionNotify all the time seems to work better.
188 In order to avoid asking for motion events and then throwing most
189 of them away or busy-polling the server for mouse positions, we ask
190 the server for pointer motion hints. This means that we get only
191 one event per group of mouse movements. "Groups" are delimited by
192 other kinds of events (focus changes and button clicks, for
193 example), or by XQueryPointer calls; when one of these happens, we
194 get another MotionNotify event the next time the mouse moves. This
195 is at least as efficient as getting motion events when mouse
196 tracking is on, and I suspect only negligibly worse when tracking
197 is off. */
199 /* Where the mouse was last time we reported a mouse event. */
200 static FRAME_PTR last_mouse_frame;
201 static XRectangle last_mouse_glyph;
203 static Lisp_Object last_mouse_press_frame;
205 /* The scroll bar in which the last X motion event occurred.
207 If the last X motion event occurred in a scroll bar, we set this
208 so XTmouse_position can know whether to report a scroll bar motion or
209 an ordinary motion.
211 If the last X motion event didn't occur in a scroll bar, we set this
212 to Qnil, to tell XTmouse_position to return an ordinary motion event. */
213 static Lisp_Object last_mouse_scroll_bar;
215 /* This is a hack. We would really prefer that XTmouse_position would
216 return the time associated with the position it returns, but there
217 doesn't seem to be any way to wrest the timestamp from the server
218 along with the position query. So, we just keep track of the time
219 of the last movement we received, and return that in hopes that
220 it's somewhat accurate. */
221 static Time last_mouse_movement_time;
223 /* Incremented by XTread_socket whenever it really tries to read events. */
224 #ifdef __STDC__
225 static int volatile input_signal_count;
226 #else
227 static int input_signal_count;
228 #endif
230 /* Used locally within XTread_socket. */
231 static int x_noop_count;
233 /* Initial values of argv and argc. */
234 extern char **initial_argv;
235 extern int initial_argc;
237 extern Lisp_Object Vcommand_line_args, Vsystem_name;
239 /* Tells if a window manager is present or not. */
241 extern Lisp_Object Vx_no_window_manager;
243 extern Lisp_Object Qface, Qmouse_face;
245 extern int errno;
247 /* A mask of extra modifier bits to put into every keyboard char. */
248 extern int extra_keyboard_modifiers;
250 static Lisp_Object Qvendor_specific_keysyms;
252 extern XrmDatabase x_load_resources ();
254 extern Lisp_Object x_icon_type ();
256 void x_delete_display ();
258 static void redraw_previous_char ();
259 static void redraw_following_char ();
260 static unsigned int x_x_to_emacs_modifiers ();
262 static int fast_find_position ();
263 static void note_mouse_highlight ();
264 static void clear_mouse_face ();
265 static void show_mouse_face ();
266 static void do_line_dance ();
268 static int XTcursor_to ();
269 static int XTclear_end_of_line ();
270 static int x_io_error_quitter ();
271 int x_catch_errors ();
272 void x_uncatch_errors ();
274 #if 0
275 /* This is a function useful for recording debugging information
276 about the sequence of occurrences in this file. */
278 struct record
280 char *locus;
281 int type;
284 struct record event_record[100];
286 int event_record_index;
288 record_event (locus, type)
289 char *locus;
290 int type;
292 if (event_record_index == sizeof (event_record) / sizeof (struct record))
293 event_record_index = 0;
295 event_record[event_record_index].locus = locus;
296 event_record[event_record_index].type = type;
297 event_record_index++;
300 #endif /* 0 */
302 /* Return the struct x_display_info corresponding to DPY. */
304 struct x_display_info *
305 x_display_info_for_display (dpy)
306 Display *dpy;
308 struct x_display_info *dpyinfo;
310 for (dpyinfo = x_display_list; dpyinfo; dpyinfo = dpyinfo->next)
311 if (dpyinfo->display == dpy)
312 return dpyinfo;
314 return 0;
317 /* Starting and ending updates.
319 These hooks are called by update_frame at the beginning and end
320 of a frame update. We record in `updating_frame' the identity
321 of the frame being updated, so that the XT... functions do not
322 need to take a frame as argument. Most of the XT... functions
323 should never be called except during an update, the only exceptions
324 being XTcursor_to, XTwrite_glyphs and XTreassert_line_highlight. */
326 static
327 XTupdate_begin (f)
328 struct frame *f;
330 int mask;
332 if (f == 0)
333 abort ();
335 flexlines = f->height;
336 highlight = 0;
338 BLOCK_INPUT;
340 curs_x = FRAME_CURSOR_X (f);
341 curs_y = FRAME_CURSOR_Y (f);
343 if (f == FRAME_X_DISPLAY_INFO (f)->mouse_face_mouse_frame)
345 /* Don't do highlighting for mouse motion during the update. */
346 FRAME_X_DISPLAY_INFO (f)->mouse_face_defer = 1;
348 /* If the frame needs to be redrawn,
349 simply forget about any prior mouse highlighting. */
350 if (FRAME_GARBAGED_P (f))
351 FRAME_X_DISPLAY_INFO (f)->mouse_face_window = Qnil;
353 if (!NILP (FRAME_X_DISPLAY_INFO (f)->mouse_face_window))
355 int firstline, lastline, i;
356 struct window *w = XWINDOW (FRAME_X_DISPLAY_INFO (f)->mouse_face_window);
358 /* Find the first, and the last+1, lines affected by redisplay. */
359 for (firstline = 0; firstline < f->height; firstline++)
360 if (FRAME_DESIRED_GLYPHS (f)->enable[firstline])
361 break;
363 lastline = f->height;
364 for (i = f->height - 1; i >= 0; i--)
366 if (FRAME_DESIRED_GLYPHS (f)->enable[i])
367 break;
368 else
369 lastline = i;
372 /* Can we tell that this update does not affect the window
373 where the mouse highlight is? If so, no need to turn off.
374 Likewise, don't do anything if the frame is garbaged;
375 in that case, the FRAME_CURRENT_GLYPHS that we would use
376 are all wrong, and we will redisplay that line anyway. */
377 if (! (firstline > (XFASTINT (w->top) + window_internal_height (w))
378 || lastline < XFASTINT (w->top)))
379 clear_mouse_face (FRAME_X_DISPLAY_INFO (f));
383 UNBLOCK_INPUT;
386 static
387 XTupdate_end (f)
388 struct frame *f;
390 int mask;
392 BLOCK_INPUT;
394 do_line_dance ();
395 x_display_cursor (f, 1, curs_x, curs_y);
397 FRAME_X_DISPLAY_INFO (f)->mouse_face_defer = 0;
398 #if 0
399 /* This fails in the case of having updated only the echo area
400 if we have switched buffers. In that case, FRAME_CURRENT_GLYPHS
401 has no relation to the current contents, and its charstarts
402 have no relation to the contents of the window-buffer.
403 I don't know a clean way to check
404 for that case. window_end_valid isn't set up yet. */
405 if (f == FRAME_X_DISPLAY_INFO (f)->mouse_face_mouse_frame)
406 note_mouse_highlight (f, FRAME_X_DISPLAY_INFO (f)->mouse_face_mouse_x,
407 FRAME_X_DISPLAY_INFO (f)->mouse_face_mouse_y);
408 #endif
410 XFlush (FRAME_X_DISPLAY (f));
411 UNBLOCK_INPUT;
414 /* This is called after a redisplay on frame F. */
416 static
417 XTframe_up_to_date (f)
418 FRAME_PTR f;
420 BLOCK_INPUT;
421 if (FRAME_X_DISPLAY_INFO (f)->mouse_face_deferred_gc
422 || f == FRAME_X_DISPLAY_INFO (f)->mouse_face_mouse_frame)
424 note_mouse_highlight (FRAME_X_DISPLAY_INFO (f)->mouse_face_mouse_frame,
425 FRAME_X_DISPLAY_INFO (f)->mouse_face_mouse_x,
426 FRAME_X_DISPLAY_INFO (f)->mouse_face_mouse_y);
427 FRAME_X_DISPLAY_INFO (f)->mouse_face_deferred_gc = 0;
429 UNBLOCK_INPUT;
432 /* External interface to control of standout mode.
433 Call this when about to modify line at position VPOS
434 and not change whether it is highlighted. */
436 XTreassert_line_highlight (new, vpos)
437 int new, vpos;
439 highlight = new;
442 /* Call this when about to modify line at position VPOS
443 and change whether it is highlighted. */
445 static
446 XTchange_line_highlight (new_highlight, vpos, first_unused_hpos)
447 int new_highlight, vpos, first_unused_hpos;
449 highlight = new_highlight;
450 XTcursor_to (vpos, 0);
451 XTclear_end_of_line (FRAME_WINDOW_WIDTH (updating_frame));
454 /* This is used when starting Emacs and when restarting after suspend.
455 When starting Emacs, no X window is mapped. And nothing must be done
456 to Emacs's own window if it is suspended (though that rarely happens). */
458 static
459 XTset_terminal_modes ()
463 /* This is called when exiting or suspending Emacs.
464 Exiting will make the X-windows go away, and suspending
465 requires no action. */
467 static
468 XTreset_terminal_modes ()
470 /* XTclear_frame (); */
473 /* Set the nominal cursor position of the frame.
474 This is where display update commands will take effect.
475 This does not affect the place where the cursor-box is displayed. */
477 static int
478 XTcursor_to (row, col)
479 register int row, col;
481 int mask;
482 int orow = row;
484 curs_x = col;
485 curs_y = row;
487 if (updating_frame == 0)
489 BLOCK_INPUT;
490 x_display_cursor (selected_frame, 1, curs_x, curs_y);
491 XFlush (FRAME_X_DISPLAY (selected_frame));
492 UNBLOCK_INPUT;
497 /* Return a pointer to per char metric information in FONT of a
498 character pointed by B (*XChar2b). */
500 #define PER_CHAR_METRIC(font, b) \
501 ((font)->per_char \
502 ? ((font)->per_char + (b)->byte2 - (font)->min_char_or_byte2 \
503 + (((font)->min_byte1 || (font)->max_byte1) \
504 ? (((b)->byte1 - (font)->min_byte1) \
505 * ((font)->max_char_or_byte2 - (font)->min_char_or_byte2 + 1)) \
506 : 0)) \
507 : &((font)->max_bounds))
509 /* Display a sequence of N glyphs found at GP.
510 WINDOW is the x-window to output to. LEFT and TOP are starting coords.
511 HL is 1 if this text is highlighted, 2 if the cursor is on it,
512 3 if should appear in its mouse-face.
513 JUST_FOREGROUND if 1 means draw only the foreground;
514 don't alter the background.
516 CMPCHARP if non NULL is a pointer to the struct cmpchar_info, which
517 means drawing glyphs on the same column. This is set to non NULL
518 only when recursively called within dumpglyphs to draw a composite
519 character specified by CMPCHAR.
521 FONT is the default font to use (for glyphs whose font-code is 0).
523 Since the display generation code is responsible for calling
524 compute_char_face and compute_glyph_face on everything it puts in
525 the display structure, we can assume that the face code on each
526 glyph is a valid index into FRAME_COMPUTED_FACES (f), and the one
527 to which we can actually apply intern_face.
528 Call this function with input blocked.
530 Return overall pixel width of the drawn glyphs. */
532 #if 1
533 /* This is the multi-face code. */
535 static int
536 dumpglyphs (f, left, top, gp, n, hl, just_foreground, cmpcharp)
537 struct frame *f;
538 int left, top;
539 register GLYPH *gp; /* Points to first GLYPH. */
540 register int n; /* Number of glyphs to display. */
541 int hl;
542 int just_foreground;
543 struct cmpchar_info *cmpcharp;
545 /* Holds characters to be displayed. */
546 XChar2b *buf = (XChar2b *) alloca (FRAME_WINDOW_WIDTH (f) * sizeof (*buf));
547 register XChar2b *cp; /* Steps through buf[]. */
548 register int tlen = GLYPH_TABLE_LENGTH;
549 register Lisp_Object *tbase = GLYPH_TABLE_BASE;
550 Window window = FRAME_X_WINDOW (f);
551 int orig_left = left;
552 int gidx = 0;
553 int i;
555 while (n > 0)
557 /* Get the face-code of the next GLYPH. */
558 int cf, len;
559 GLYPH g = *gp;
560 int ch, first_ch, charset;
561 /* HIGHEST and LOWEST are used while drawing a composite
562 character. The meanings are described later. */
563 int highest, lowest;
565 GLYPH_FOLLOW_ALIASES (tbase, tlen, g);
566 cf = (cmpcharp ? cmpcharp->face_work : FAST_GLYPH_FACE (g));
567 ch = FAST_GLYPH_CHAR (g);
568 if (gidx == 0) first_ch = ch;
569 charset = CHAR_CHARSET (ch);
570 if (charset == CHARSET_COMPOSITION)
572 /* We must draw components of the composite character on the
573 same column. */
574 cmpcharp = cmpchar_table[COMPOSITE_CHAR_ID (ch)];
576 /* Set the face in the slot for work. */
577 cmpcharp->face_work = cf;
579 /* We don't need the return value ... */
580 dumpglyphs (f, left, top, cmpcharp->glyph, cmpcharp->glyph_len,
581 hl, just_foreground, cmpcharp);
582 /* ... because the width of just drawn text can be
583 calculated as follows. */
584 left += FONT_WIDTH (f->output_data.x->font) * cmpcharp->width;
586 ++gp, --n;
587 while (gp && (*gp & GLYPH_MASK_PADDING)) ++gp, --n;
588 cmpcharp = NULL;
589 continue;
592 /* Find the run of consecutive glyphs which can be drawn with
593 the same GC (i.e. the same charset and the same face-code).
594 Extract their character codes into BUF.
595 If CMPCHARP is not NULL, face-code is not checked because we
596 use only the face specified in `cmpcharp->face_work'. */
597 cp = buf;
598 while (n > 0)
600 int this_charset, c1, c2;
602 g = *gp;
603 GLYPH_FOLLOW_ALIASES (tbase, tlen, g);
604 ch = FAST_GLYPH_CHAR (g);
605 SPLIT_CHAR (ch, this_charset, c1, c2);
606 if (this_charset != charset
607 || (cmpcharp == NULL && FAST_GLYPH_FACE (g) != cf))
608 break;
610 if (c2 > 0)
611 cp->byte1 = c1, cp->byte2 = c2;
612 else
613 cp->byte1 = 0, cp->byte2 = c1;
614 ++cp;
615 ++gp, --n;
616 while (gp && (*gp & GLYPH_MASK_PADDING))
617 ++gp, --n;
620 /* LEN gets the length of the run. */
621 len = cp - buf;
622 /* Now output this run of chars, with the font and pixel values
623 determined by the face code CF. */
625 struct face *face = FRAME_DEFAULT_FACE (f);
626 XFontStruct *font = NULL;
627 GC gc;
628 int stippled = 0;
629 int line_height = f->output_data.x->line_height;
630 /* Pixel width of each glyph in this run. */
631 int glyph_width
632 = (FONT_WIDTH (f->output_data.x->font)
633 * (cmpcharp ? cmpcharp->width : CHARSET_WIDTH (charset)));
634 /* Overall pixel width of this run. */
635 int run_width
636 = (FONT_WIDTH (f->output_data.x->font)
637 * (cmpcharp ? cmpcharp->width : len * CHARSET_WIDTH (charset)));
638 /* A flag to tell if we have already filled background. We
639 fill background in advance in the following cases:
640 1) A face has stipple.
641 2) A height of font is shorter than LINE_HEIGHT.
642 3) Drawing a composite character.
643 4) Font has non-zero _MULE_BASELINE_OFFSET property.
644 After filling background, we draw glyphs by XDrawString16. */
645 int background_filled;
646 /* Baseline position of a character, offset from TOP. */
647 int baseline;
648 /* The property value of `_MULE_RELATIVE_COMPOSE' and
649 `_MULE_DEFAULT_ASCENT'. */
650 int relative_compose = 0, default_ascent = 0;
651 /* 1 if we find no font or a font of inappropriate size. */
652 int require_clipping;
654 /* HL = 3 means use a mouse face previously chosen. */
655 if (hl == 3)
656 cf = FRAME_X_DISPLAY_INFO (f)->mouse_face_face_id;
658 /* First look at the face of the text itself. */
659 if (cf != 0)
661 /* It's possible for the display table to specify
662 a face code that is out of range. Use 0 in that case. */
663 if (cf < 0 || cf >= FRAME_N_COMPUTED_FACES (f)
664 || FRAME_COMPUTED_FACES (f) [cf] == 0)
665 cf = 0;
667 if (cf == 1)
668 face = FRAME_MODE_LINE_FACE (f);
669 else
670 face = intern_face (f, FRAME_COMPUTED_FACES (f) [cf]);
671 if (FACE_STIPPLE (face))
672 stippled = 1;
675 /* Then comes the distinction between modeline and normal text. */
676 else if (hl == 0)
678 else if (hl == 1)
680 face = FRAME_MODE_LINE_FACE (f);
681 if (FACE_STIPPLE (face))
682 stippled = 1;
685 #define FACE_DEFAULT (~0)
687 /* Setting appropriate font and gc for this charset. */
688 if (charset != CHARSET_ASCII)
690 int font_id;
691 int fontset = FACE_FONTSET (face);
692 struct font_info *fontp;
694 if ((fontset < 0 && (fontset = FRAME_FONTSET (f)) < 0)
695 || !(fontp = FS_LOAD_FONT (f, FRAME_X_FONT_TABLE (f),
696 charset, NULL, fontset)))
697 goto font_not_found;
699 font = (XFontStruct *) (fontp->font);
700 gc = FACE_NON_ASCII_GC (face);
701 XSetFont (FRAME_X_DISPLAY (f), gc, font->fid);
702 baseline
703 = (font->max_byte1 != 0
704 ? (line_height + font->ascent - font->descent) / 2
705 : f->output_data.x->font_baseline - fontp->baseline_offset);
706 if (FONT_HEIGHT (font) <= line_height
707 && (font->ascent > baseline
708 || font->descent > line_height - baseline))
709 /* Adjust baseline for this font to show the whole
710 glyphs in a line. */
711 baseline = line_height - font->descent;
713 if (cmpcharp && cmpcharp->cmp_rule == NULL)
715 relative_compose = fontp->relative_compose;
716 default_ascent = fontp->default_ascent;
719 /* We have to change code points in the following cases. */
720 if (fontp->font_encoder)
722 /* This font requires CCL program to calculate code
723 point of characters. */
724 struct ccl_program *ccl = fontp->font_encoder;
726 if (CHARSET_DIMENSION (charset) == 1)
727 for (cp = buf; cp < buf + len; cp++)
729 ccl->reg[0] = charset;
730 ccl->reg[1] = cp->byte2;
731 ccl_driver (ccl, NULL, NULL, 0, 0, NULL);
732 cp->byte2 = ccl->reg[1];
734 else
735 for (cp = buf; cp < buf + len; cp++)
737 ccl->reg[0] = charset;
738 ccl->reg[1] = cp->byte1, ccl->reg[2] = cp->byte2;
739 ccl_driver (ccl, NULL, NULL, 0, 0, NULL);
740 cp->byte1 = ccl->reg[1], cp->byte2 = ccl->reg[2];
743 else if (fontp->encoding[charset])
745 int enc = fontp->encoding[charset];
747 if ((enc == 1 || enc == 2) && CHARSET_DIMENSION (charset) == 2)
748 for (cp = buf; cp < buf + len; cp++)
749 cp->byte1 |= 0x80;
750 if (enc == 1 || enc == 3)
751 for (cp = buf; cp < buf + len; cp++)
752 cp->byte2 |= 0x80;
755 else
757 font_not_found:
758 if (charset == CHARSET_ASCII || charset == charset_latin_iso8859_1)
760 font = FACE_FONT (face);
761 if (font == (XFontStruct *) FACE_DEFAULT)
762 font = f->output_data.x->font;
763 baseline = FONT_BASE (font);
764 if (charset == charset_latin_iso8859_1)
766 if (font->max_char_or_byte2 < 0x80)
767 /* This font can't display Latin1 characters. */
768 font = NULL;
769 else
771 for (cp = buf; cp < buf + len; cp++)
772 cp->byte2 |= 0x80;
776 gc = FACE_GC (face);
779 /* Now override that if the cursor's on this character. */
780 if (hl == 2)
782 /* The cursor overrides stippling. */
783 stippled = 0;
785 if (font == f->output_data.x->font
786 && face->background == f->output_data.x->background_pixel
787 && face->foreground == f->output_data.x->foreground_pixel
788 && !cmpcharp)
790 gc = f->output_data.x->cursor_gc;
792 /* Cursor on non-default face: must merge. */
793 else
795 XGCValues xgcv;
796 unsigned long mask;
798 xgcv.background = f->output_data.x->cursor_pixel;
799 xgcv.foreground = face->background;
800 /* If the glyph would be invisible,
801 try a different foreground. */
802 if (xgcv.foreground == xgcv.background)
803 xgcv.foreground = face->foreground;
804 if (xgcv.foreground == xgcv.background)
805 xgcv.foreground = f->output_data.x->cursor_foreground_pixel;
806 if (xgcv.foreground == xgcv.background)
807 xgcv.foreground = face->foreground;
808 /* Make sure the cursor is distinct from text in this face. */
809 if (xgcv.background == face->background
810 && xgcv.foreground == face->foreground)
812 xgcv.background = face->foreground;
813 xgcv.foreground = face->background;
815 if (font)
816 xgcv.font = font->fid;
817 else
818 xgcv.font = FACE_FONT (face)->fid;
819 xgcv.graphics_exposures = 0;
820 mask = GCForeground | GCBackground | GCFont | GCGraphicsExposures;
821 if (FRAME_X_DISPLAY_INFO (f)->scratch_cursor_gc)
822 XChangeGC (FRAME_X_DISPLAY (f),
823 FRAME_X_DISPLAY_INFO (f)->scratch_cursor_gc,
824 mask, &xgcv);
825 else
826 FRAME_X_DISPLAY_INFO (f)->scratch_cursor_gc
827 = XCreateGC (FRAME_X_DISPLAY (f), window, mask, &xgcv);
828 gc = FRAME_X_DISPLAY_INFO (f)->scratch_cursor_gc;
829 #if 0
830 /* If this code is restored, it must also reset to the default stipple
831 if necessary. */
832 if (face->stipple && face->stipple != FACE_DEFAULT)
833 XSetStipple (FRAME_X_DISPLAY (f), gc, face->stipple);
834 #endif
838 if (font)
839 require_clipping = (!NILP (Vclip_large_size_font)
840 && (font->ascent > baseline
841 || font->descent > line_height - baseline
842 || (!cmpcharp
843 && FONT_WIDTH (font) > glyph_width)));
845 if (font && (just_foreground || (cmpcharp && gidx > 0)))
846 background_filled = 1;
847 else if (stippled)
849 /* Turn stipple on. */
850 XSetFillStyle (FRAME_X_DISPLAY (f), gc, FillOpaqueStippled);
852 /* Draw stipple or background color on background. */
853 XFillRectangle (FRAME_X_DISPLAY (f), window, gc,
854 left, top, run_width, line_height);
856 /* Turn stipple off. */
857 XSetFillStyle (FRAME_X_DISPLAY (f), gc, FillSolid);
859 background_filled = 1;
861 else if (!font
862 || FONT_HEIGHT (font) < line_height
863 || FONT_WIDTH (font) < glyph_width
864 || cmpcharp)
866 /* Fill a area for the current run in background pixle of GC. */
867 XGCValues xgcv;
868 unsigned long mask = GCForeground | GCBackground;
869 unsigned long fore, back;
871 /* The current code at first set foreground to background,
872 fill the area, then recover the original foreground.
873 Aren't there any smarter ways? */
875 XGetGCValues (FRAME_X_DISPLAY (f), gc, mask, &xgcv);
876 XSetForeground (FRAME_X_DISPLAY (f), gc, xgcv.background);
877 XFillRectangle (FRAME_X_DISPLAY (f), window, gc,
878 left, top, run_width, line_height);
879 XSetForeground (FRAME_X_DISPLAY (f), gc, xgcv.foreground);
881 background_filled = 1;
882 if (cmpcharp)
883 /* To assure not to fill background while drawing
884 remaining components. */
885 just_foreground = 1;
887 else
888 background_filled = 0;
890 if (font)
892 if (require_clipping)
894 Region region; /* Region used for setting clip mask to GC. */
895 XPoint x[4]; /* Data used for creating REGION. */
897 x[0].x = x[3].x = left, x[1].x = x[2].x = left + glyph_width;
898 x[0].y = x[1].y = top, x[2].y = x[3].y = top + line_height;
899 region = XPolygonRegion (x, 4, EvenOddRule);
900 XSetRegion (FRAME_X_DISPLAY (f), gc, region);
901 XDestroyRegion (region);
904 if (!cmpcharp)
906 if (require_clipping || FONT_WIDTH (font) != glyph_width)
907 for (i = 0; i < len; i++)
909 if (require_clipping && i > 0)
910 XSetClipOrigin (FRAME_X_DISPLAY (f), gc,
911 glyph_width * i, 0);
912 if (background_filled)
913 XDrawString16 (FRAME_X_DISPLAY (f), window, gc,
914 left + glyph_width * i,
915 top + baseline, buf + i, 1);
916 else
917 XDrawImageString16 (FRAME_X_DISPLAY (f), window, gc,
918 left + glyph_width * i,
919 top + baseline, buf + i, 1);
921 else
923 if (background_filled)
924 XDrawString16 (FRAME_X_DISPLAY (f), window, gc,
925 left, top + baseline, buf, len);
926 else
927 XDrawImageString16 (FRAME_X_DISPLAY (f), window, gc,
928 left, top + baseline, buf, len);
931 else
933 XCharStruct *pcm; /* Pointer to per char metric info. */
935 if ((cmpcharp->cmp_rule || relative_compose)
936 && gidx == 0)
938 /* This is the first character. Initialize variables.
939 HIGHEST is the highest position of glyphs ever
940 written, LOWEST the lowest position. */
941 int x_offset = 0;
943 if (default_ascent
944 && CHAR_TABLE_P (Vuse_default_ascent)
945 && !NILP (Faref (Vuse_default_ascent, first_ch)))
947 highest = default_ascent;
948 lowest = 0;
950 else
952 pcm = PER_CHAR_METRIC (font, buf);
953 highest = pcm->ascent + 1;
954 lowest = - pcm->descent;
957 if (cmpcharp->cmp_rule)
958 x_offset = (cmpcharp->col_offset[0]
959 * FONT_WIDTH (f->output_data.x->font));
960 /* Draw the first character at the normal position. */
961 XDrawString16 (FRAME_X_DISPLAY (f), window, gc,
962 left + x_offset, top + baseline, buf, 1);
963 i = 1;
964 gidx++;
966 else
967 i = 0;
969 for (; i < len; i++, gidx++)
971 int x_offset = 0, y_offset = 0;
973 if (relative_compose)
975 pcm = PER_CHAR_METRIC (font, buf + i);
976 if (- pcm->descent >= relative_compose)
978 /* Draw above the current glyphs. */
979 y_offset = highest + pcm->descent;
980 highest += pcm->ascent + pcm->descent;
982 else if (pcm->ascent <= 0)
984 /* Draw beneath the current glyphs. */
985 y_offset = lowest - pcm->ascent;
986 lowest -= pcm->ascent + pcm->descent;
989 else if (cmpcharp->cmp_rule)
991 int gref = (cmpcharp->cmp_rule[gidx] - 0xA0) / 9;
992 int nref = (cmpcharp->cmp_rule[gidx] - 0xA0) % 9;
993 int bottom, top;
995 /* Re-encode GREF and NREF so that they specify
996 only Y-axis information:
997 0:top, 1:base, 2:bottom, 3:center */
998 gref = gref / 3 + (gref == 4) * 2;
999 nref = nref / 3 + (nref == 4) * 2;
1001 pcm = PER_CHAR_METRIC (font, buf + i);
1002 bottom = ((gref == 0 ? highest : gref == 1 ? 0
1003 : gref == 2 ? lowest
1004 : (highest + lowest) / 2)
1005 - (nref == 0 ? pcm->ascent + pcm->descent
1006 : nref == 1 ? pcm->descent : nref == 2 ? 0
1007 : (pcm->ascent + pcm->descent) / 2));
1008 top = bottom + (pcm->ascent + pcm->descent);
1009 if (top > highest)
1010 highest = top;
1011 if (bottom < lowest)
1012 lowest = bottom;
1013 y_offset = bottom + pcm->descent;
1014 x_offset = (cmpcharp->col_offset[gidx]
1015 * FONT_WIDTH (f->output_data.x->font));
1017 XDrawString16 (FRAME_X_DISPLAY (f), window, gc,
1018 left + x_offset, top + baseline - y_offset,
1019 buf + i, 1);
1022 if (require_clipping)
1023 XSetClipMask (FRAME_X_DISPLAY (f), gc, None);
1025 #if 0 /* Doesn't work, because it uses FRAME_CURRENT_GLYPHS,
1026 which often is not up to date yet. */
1027 if (!just_foreground)
1029 if (left == orig_left)
1030 redraw_previous_char (f, PIXEL_TO_CHAR_COL (f, left),
1031 PIXEL_TO_CHAR_ROW (f, top), hl == 1);
1032 if (n == 0)
1033 redraw_following_char (f, PIXEL_TO_CHAR_COL (f, left + len * FONT_WIDTH (font)),
1034 PIXEL_TO_CHAR_ROW (f, top), hl == 1);
1036 #endif
1038 if (!font)
1040 /* Show rectangles to indicate that we found no font. */
1041 int limit = cmpcharp ? 1 : len;
1043 for (i = 0; i < limit; i++)
1044 XDrawRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
1045 left + glyph_width * i, top,
1046 glyph_width - 1, line_height - 1);
1048 else if (require_clipping && !NILP (Vhighlight_wrong_size_font))
1050 /* Show ??? to indicate that we found a font of
1051 inappropriate size. */
1052 int limit = cmpcharp ? 1 : len;
1054 for (i = 0; i < limit; i++)
1056 XDrawLine (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
1057 left + glyph_width * i, top + line_height - 1,
1058 left + glyph_width * i + 1, top + line_height - 1);
1059 XDrawLine (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
1060 left + glyph_width * i, top + line_height - 3,
1061 left + glyph_width * i, top + line_height - 1);
1065 /* We should probably check for XA_UNDERLINE_POSITION and
1066 XA_UNDERLINE_THICKNESS properties on the font, but let's
1067 just get the thing working, and come back to that. */
1069 /* Setting underline position based on the metric of the
1070 current font results in shaky underline if it strides
1071 over different fonts. So, we set the position based only
1072 on the default font of this frame. */
1073 int underline_position = f->output_data.x->font_baseline + 1;
1075 if (underline_position >= line_height)
1076 underline_position = line_height - 1;
1078 if (face->underline)
1079 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
1080 FACE_GC (face),
1081 left, top + underline_position, run_width, 1);
1084 if (!cmpcharp)
1085 left += run_width;
1089 return (left - orig_left);
1091 #endif /* 1 */
1093 #if 0
1094 /* This is the old single-face code. */
1096 static void
1097 dumpglyphs (f, left, top, gp, n, hl, font)
1098 struct frame *f;
1099 int left, top;
1100 register GLYPH *gp; /* Points to first GLYPH. */
1101 register int n; /* Number of glyphs to display. */
1102 int hl;
1103 XFontStruct *font;
1105 register int len;
1106 Window window = FRAME_X_WINDOW (f);
1107 GC drawing_gc = (hl == 2 ? f->output_data.x->cursor_gc
1108 : (hl ? f->output_data.x->reverse_gc
1109 : f->output_data.x->normal_gc));
1111 if (sizeof (GLYPH) == sizeof (XChar2b))
1112 XDrawImageString16 (FRAME_X_DISPLAY (f), window, drawing_gc,
1113 left, top + FONT_BASE (font), (XChar2b *) gp, n);
1114 else if (sizeof (GLYPH) == sizeof (unsigned char))
1115 XDrawImageString (FRAME_X_DISPLAY (f), window, drawing_gc,
1116 left, top + FONT_BASE (font), (char *) gp, n);
1117 else
1118 /* What size of glyph ARE you using? And does X have a function to
1119 draw them? */
1120 abort ();
1122 #endif
1124 /* Output some text at the nominal frame cursor position.
1125 Advance the cursor over the text.
1126 Output LEN glyphs at START.
1128 `highlight', set up by XTreassert_line_highlight or XTchange_line_highlight,
1129 controls the pixel values used for foreground and background. */
1131 static
1132 XTwrite_glyphs (start, len)
1133 register GLYPH *start;
1134 int len;
1136 register int temp_length;
1137 int mask;
1138 struct frame *f;
1140 BLOCK_INPUT;
1142 do_line_dance ();
1143 f = updating_frame;
1144 if (f == 0)
1146 f = selected_frame;
1147 /* If not within an update,
1148 output at the frame's visible cursor. */
1149 curs_x = f->cursor_x;
1150 curs_y = f->cursor_y;
1153 dumpglyphs (f,
1154 CHAR_TO_PIXEL_COL (f, curs_x),
1155 CHAR_TO_PIXEL_ROW (f, curs_y),
1156 start, len, highlight, 0, NULL);
1158 /* If we drew on top of the cursor, note that it is turned off. */
1159 if (curs_y == f->phys_cursor_y
1160 && curs_x <= f->phys_cursor_x
1161 && curs_x + len > f->phys_cursor_x)
1162 f->phys_cursor_on = 0;
1164 if (updating_frame == 0)
1165 x_display_cursor (f, 1, FRAME_CURSOR_X (f) + len, FRAME_CURSOR_Y (f));
1166 else
1167 curs_x += len;
1169 UNBLOCK_INPUT;
1172 /* Clear to the end of the line.
1173 Erase the current text line from the nominal cursor position (inclusive)
1174 to column FIRST_UNUSED (exclusive). The idea is that everything
1175 from FIRST_UNUSED onward is already erased. */
1177 static
1178 XTclear_end_of_line (first_unused)
1179 register int first_unused;
1181 struct frame *f = updating_frame;
1182 int mask;
1184 if (f == 0)
1185 abort ();
1187 if (curs_y < 0 || curs_y >= f->height)
1188 return;
1189 if (first_unused <= 0)
1190 return;
1192 if (first_unused >= FRAME_WINDOW_WIDTH (f))
1193 first_unused = FRAME_WINDOW_WIDTH (f);
1195 first_unused += FRAME_LEFT_SCROLL_BAR_WIDTH (f);
1197 BLOCK_INPUT;
1199 do_line_dance ();
1201 /* Notice if the cursor will be cleared by this operation. */
1202 if (curs_y == f->phys_cursor_y
1203 && curs_x <= f->phys_cursor_x
1204 && f->phys_cursor_x < first_unused)
1205 f->phys_cursor_on = 0;
1207 XClearArea (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
1208 CHAR_TO_PIXEL_COL (f, curs_x),
1209 CHAR_TO_PIXEL_ROW (f, curs_y),
1210 FONT_WIDTH (f->output_data.x->font) * (first_unused - curs_x),
1211 f->output_data.x->line_height, False);
1212 #if 0
1213 redraw_previous_char (f, curs_x, curs_y, highlight);
1214 #endif
1216 UNBLOCK_INPUT;
1219 static
1220 XTclear_frame ()
1222 int mask;
1223 struct frame *f = updating_frame;
1225 if (f == 0)
1226 f = selected_frame;
1228 f->phys_cursor_on = 0; /* Cursor not visible. */
1229 curs_x = 0; /* Nominal cursor position is top left. */
1230 curs_y = 0;
1232 BLOCK_INPUT;
1234 XClearWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
1236 /* We have to clear the scroll bars, too. If we have changed
1237 colors or something like that, then they should be notified. */
1238 x_scroll_bar_clear (f);
1240 XFlush (FRAME_X_DISPLAY (f));
1241 UNBLOCK_INPUT;
1244 #if 0
1245 /* This currently does not work because FRAME_CURRENT_GLYPHS doesn't
1246 always contain the right glyphs to use.
1248 It also needs to be changed to look at the details of the font and
1249 see whether there is really overlap, and do nothing when there is
1250 not. This can use font_char_overlap_left and font_char_overlap_right,
1251 but just how to use them is not clear. */
1253 /* Erase the character (if any) at the position just before X, Y in frame F,
1254 then redraw it and the character before it.
1255 This is necessary when we erase starting at X,
1256 in case the character after X overlaps into the one before X.
1257 Call this function with input blocked. */
1259 static void
1260 redraw_previous_char (f, x, y, highlight_flag)
1261 FRAME_PTR f;
1262 int x, y;
1263 int highlight_flag;
1265 /* Erase the character before the new ones, in case
1266 what was here before overlaps it.
1267 Reoutput that character, and the previous character
1268 (in case the previous character overlaps it). */
1269 if (x > 0)
1271 int start_x = x - 2;
1272 if (start_x < 0)
1273 start_x = 0;
1274 XClearArea (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
1275 CHAR_TO_PIXEL_COL (f, x - 1),
1276 CHAR_TO_PIXEL_ROW (f, y),
1277 FONT_WIDTH (f->output_data.x->font),
1278 f->output_data.x->line_height, False);
1280 dumpglyphs (f, CHAR_TO_PIXEL_COL (f, start_x),
1281 CHAR_TO_PIXEL_ROW (f, y),
1282 &FRAME_CURRENT_GLYPHS (f)->glyphs[y][start_x],
1283 x - start_x, highlight_flag, 1, NULL);
1287 /* Erase the character (if any) at the position X, Y in frame F,
1288 then redraw it and the character after it.
1289 This is necessary when we erase endng at X,
1290 in case the character after X overlaps into the one before X.
1291 Call this function with input blocked. */
1293 static void
1294 redraw_following_char (f, x, y, highlight_flag)
1295 FRAME_PTR f;
1296 int x, y;
1297 int highlight_flag;
1299 int limit = FRAME_CURRENT_GLYPHS (f)->used[y];
1300 /* Erase the character after the new ones, in case
1301 what was here before overlaps it.
1302 Reoutput that character, and the following character
1303 (in case the following character overlaps it). */
1304 if (x < limit
1305 && FRAME_CURRENT_GLYPHS (f)->glyphs[y][x] != SPACEGLYPH)
1307 int end_x = x + 2;
1308 if (end_x > limit)
1309 end_x = limit;
1310 XClearArea (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
1311 CHAR_TO_PIXEL_COL (f, x),
1312 CHAR_TO_PIXEL_ROW (f, y),
1313 FONT_WIDTH (f->output_data.x->font),
1314 f->output_data.x->line_height, False);
1316 dumpglyphs (f, CHAR_TO_PIXEL_COL (f, x),
1317 CHAR_TO_PIXEL_ROW (f, y),
1318 &FRAME_CURRENT_GLYPHS (f)->glyphs[y][x],
1319 end_x - x, highlight_flag, 1, NULL);
1322 #endif /* 0 */
1324 #if 0 /* Not in use yet */
1326 /* Return 1 if character C in font F extends past its left edge. */
1328 static int
1329 font_char_overlap_left (font, c)
1330 XFontStruct *font;
1331 int c;
1333 XCharStruct *s;
1335 /* Find the bounding-box info for C. */
1336 if (font->per_char == 0)
1337 s = &font->max_bounds;
1338 else
1340 int rowlen = font->max_char_or_byte2 - font->min_char_or_byte2 + 1;
1341 int row, within;
1343 /* Decode char into row number (byte 1) and code within row (byte 2). */
1344 row = c >> 8;
1345 within = c & 0177;
1346 if (!(within >= font->min_char_or_byte2
1347 && within <= font->max_char_or_byte2
1348 && row >= font->min_byte1
1349 && row <= font->max_byte1))
1351 /* If char is out of range, try the font's default char instead. */
1352 c = font->default_char;
1353 row = c >> (BITS_PER_INT - 8);
1354 within = c & 0177;
1356 if (!(within >= font->min_char_or_byte2
1357 && within <= font->max_char_or_byte2
1358 && row >= font->min_byte1
1359 && row <= font->max_byte1))
1360 /* Still out of range means this char does not overlap. */
1361 return 0;
1362 else
1363 /* We found the info for this char. */
1364 s = (font->per_char + (within - font->min_char_or_byte2)
1365 + row * rowlen);
1368 return (s && s->lbearing < 0);
1371 /* Return 1 if character C in font F extends past its right edge. */
1373 static int
1374 font_char_overlap_right (font, c)
1375 XFontStruct *font;
1376 int c;
1378 XCharStruct *s;
1380 /* Find the bounding-box info for C. */
1381 if (font->per_char == 0)
1382 s = &font->max_bounds;
1383 else
1385 int rowlen = font->max_char_or_byte2 - font->min_char_or_byte2 + 1;
1386 int row, within;
1388 /* Decode char into row number (byte 1) and code within row (byte 2). */
1389 row = c >> 8;
1390 within = c & 0177;
1391 if (!(within >= font->min_char_or_byte2
1392 && within <= font->max_char_or_byte2
1393 && row >= font->min_byte1
1394 && row <= font->max_byte1))
1396 /* If char is out of range, try the font's default char instead. */
1397 c = font->default_char;
1398 row = c >> (BITS_PER_INT - 8);
1399 within = c & 0177;
1401 if (!(within >= font->min_char_or_byte2
1402 && within <= font->max_char_or_byte2
1403 && row >= font->min_byte1
1404 && row <= font->max_byte1))
1405 /* Still out of range means this char does not overlap. */
1406 return 0;
1407 else
1408 /* We found the info for this char. */
1409 s = (font->per_char + (within - font->min_char_or_byte2)
1410 + row * rowlen);
1413 return (s && s->rbearing >= s->width);
1415 #endif /* 0 */
1417 /* Invert the middle quarter of the frame for .15 sec. */
1419 /* We use the select system call to do the waiting, so we have to make sure
1420 it's available. If it isn't, we just won't do visual bells. */
1421 #if defined (HAVE_TIMEVAL) && defined (HAVE_SELECT)
1423 /* Subtract the `struct timeval' values X and Y,
1424 storing the result in RESULT.
1425 Return 1 if the difference is negative, otherwise 0. */
1427 static int
1428 timeval_subtract (result, x, y)
1429 struct timeval *result, x, y;
1431 /* Perform the carry for the later subtraction by updating y.
1432 This is safer because on some systems
1433 the tv_sec member is unsigned. */
1434 if (x.tv_usec < y.tv_usec)
1436 int nsec = (y.tv_usec - x.tv_usec) / 1000000 + 1;
1437 y.tv_usec -= 1000000 * nsec;
1438 y.tv_sec += nsec;
1440 if (x.tv_usec - y.tv_usec > 1000000)
1442 int nsec = (y.tv_usec - x.tv_usec) / 1000000;
1443 y.tv_usec += 1000000 * nsec;
1444 y.tv_sec -= nsec;
1447 /* Compute the time remaining to wait. tv_usec is certainly positive. */
1448 result->tv_sec = x.tv_sec - y.tv_sec;
1449 result->tv_usec = x.tv_usec - y.tv_usec;
1451 /* Return indication of whether the result should be considered negative. */
1452 return x.tv_sec < y.tv_sec;
1455 XTflash (f)
1456 struct frame *f;
1458 BLOCK_INPUT;
1461 GC gc;
1463 /* Create a GC that will use the GXxor function to flip foreground pixels
1464 into background pixels. */
1466 XGCValues values;
1468 values.function = GXxor;
1469 values.foreground = (f->output_data.x->foreground_pixel
1470 ^ f->output_data.x->background_pixel);
1472 gc = XCreateGC (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
1473 GCFunction | GCForeground, &values);
1477 /* Get the height not including a menu bar widget. */
1478 int height = CHAR_TO_PIXEL_HEIGHT (f, FRAME_HEIGHT (f));
1479 /* Height of each line to flash. */
1480 int flash_height = FRAME_LINE_HEIGHT (f);
1481 /* These will be the left and right margins of the rectangles. */
1482 int flash_left = FRAME_INTERNAL_BORDER_WIDTH (f);
1483 int flash_right = PIXEL_WIDTH (f) - FRAME_INTERNAL_BORDER_WIDTH (f);
1485 int width;
1487 /* Don't flash the area between a scroll bar and the frame
1488 edge it is next to. */
1489 switch (FRAME_VERTICAL_SCROLL_BAR_TYPE (f))
1491 case vertical_scroll_bar_left:
1492 flash_left += VERTICAL_SCROLL_BAR_WIDTH_TRIM;
1493 break;
1495 case vertical_scroll_bar_right:
1496 flash_right -= VERTICAL_SCROLL_BAR_WIDTH_TRIM;
1497 break;
1500 width = flash_right - flash_left;
1502 /* If window is tall, flash top and bottom line. */
1503 if (height > 3 * FRAME_LINE_HEIGHT (f))
1505 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
1506 flash_left, FRAME_INTERNAL_BORDER_WIDTH (f),
1507 width, flash_height);
1508 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
1509 flash_left,
1510 (height - flash_height
1511 - FRAME_INTERNAL_BORDER_WIDTH (f)),
1512 width, flash_height);
1514 else
1515 /* If it is short, flash it all. */
1516 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
1517 flash_left, FRAME_INTERNAL_BORDER_WIDTH (f),
1518 width, height - 2 * FRAME_INTERNAL_BORDER_WIDTH (f));
1520 XFlush (FRAME_X_DISPLAY (f));
1523 struct timeval wakeup, now;
1525 EMACS_GET_TIME (wakeup);
1527 /* Compute time to wait until, propagating carry from usecs. */
1528 wakeup.tv_usec += 150000;
1529 wakeup.tv_sec += (wakeup.tv_usec / 1000000);
1530 wakeup.tv_usec %= 1000000;
1532 /* Keep waiting until past the time wakeup. */
1533 while (1)
1535 struct timeval timeout;
1537 EMACS_GET_TIME (timeout);
1539 /* In effect, timeout = wakeup - timeout.
1540 Break if result would be negative. */
1541 if (timeval_subtract (&timeout, wakeup, timeout))
1542 break;
1544 /* Try to wait that long--but we might wake up sooner. */
1545 select (0, NULL, NULL, NULL, &timeout);
1549 /* If window is tall, flash top and bottom line. */
1550 if (height > 3 * FRAME_LINE_HEIGHT (f))
1552 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
1553 flash_left, FRAME_INTERNAL_BORDER_WIDTH (f),
1554 width, flash_height);
1555 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
1556 flash_left,
1557 (height - flash_height
1558 - FRAME_INTERNAL_BORDER_WIDTH (f)),
1559 width, flash_height);
1561 else
1562 /* If it is short, flash it all. */
1563 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
1564 flash_left, FRAME_INTERNAL_BORDER_WIDTH (f),
1565 width, height - 2 * FRAME_INTERNAL_BORDER_WIDTH (f));
1567 XFreeGC (FRAME_X_DISPLAY (f), gc);
1568 XFlush (FRAME_X_DISPLAY (f));
1572 UNBLOCK_INPUT;
1575 #endif
1578 /* Make audible bell. */
1580 #define XRINGBELL XBell (FRAME_X_DISPLAY (selected_frame), 0)
1582 XTring_bell ()
1584 if (FRAME_X_DISPLAY (selected_frame) == 0)
1585 return;
1587 #if defined (HAVE_TIMEVAL) && defined (HAVE_SELECT)
1588 if (visible_bell)
1589 XTflash (selected_frame);
1590 else
1591 #endif
1593 BLOCK_INPUT;
1594 XRINGBELL;
1595 XFlush (FRAME_X_DISPLAY (selected_frame));
1596 UNBLOCK_INPUT;
1600 /* Insert and delete character.
1601 These are not supposed to be used because we are supposed to turn
1602 off the feature of using them. */
1604 static
1605 XTinsert_glyphs (start, len)
1606 register char *start;
1607 register int len;
1609 abort ();
1612 static
1613 XTdelete_glyphs (n)
1614 register int n;
1616 abort ();
1619 /* Specify how many text lines, from the top of the window,
1620 should be affected by insert-lines and delete-lines operations.
1621 This, and those operations, are used only within an update
1622 that is bounded by calls to XTupdate_begin and XTupdate_end. */
1624 static
1625 XTset_terminal_window (n)
1626 register int n;
1628 if (updating_frame == 0)
1629 abort ();
1631 if ((n <= 0) || (n > updating_frame->height))
1632 flexlines = updating_frame->height;
1633 else
1634 flexlines = n;
1637 /* These variables need not be per frame
1638 because redisplay is done on a frame-by-frame basis
1639 and the line dance for one frame is finished before
1640 anything is done for anoter frame. */
1642 /* Array of line numbers from cached insert/delete operations.
1643 line_dance[i] is the old position of the line that we want
1644 to move to line i, or -1 if we want a blank line there. */
1645 static int *line_dance;
1647 /* Allocated length of that array. */
1648 static int line_dance_len;
1650 /* Flag indicating whether we've done any work. */
1651 static int line_dance_in_progress;
1653 /* Perform an insert-lines or delete-lines operation,
1654 inserting N lines or deleting -N lines at vertical position VPOS. */
1655 XTins_del_lines (vpos, n)
1656 int vpos, n;
1658 register int fence, i;
1660 if (vpos >= flexlines)
1661 return;
1663 if (!line_dance_in_progress)
1665 int ht = updating_frame->height;
1666 if (ht > line_dance_len)
1668 line_dance = (int *)xrealloc (line_dance, ht * sizeof (int));
1669 line_dance_len = ht;
1671 for (i = 0; i < ht; ++i) line_dance[i] = i;
1672 line_dance_in_progress = 1;
1674 if (n >= 0)
1676 if (n > flexlines - vpos)
1677 n = flexlines - vpos;
1678 fence = vpos + n;
1679 for (i = flexlines; --i >= fence;)
1680 line_dance[i] = line_dance[i-n];
1681 for (i = fence; --i >= vpos;)
1682 line_dance[i] = -1;
1684 else
1686 n = -n;
1687 if (n > flexlines - vpos)
1688 n = flexlines - vpos;
1689 fence = flexlines - n;
1690 for (i = vpos; i < fence; ++i)
1691 line_dance[i] = line_dance[i + n];
1692 for (i = fence; i < flexlines; ++i)
1693 line_dance[i] = -1;
1697 /* Here's where we actually move the pixels around.
1698 Must be called with input blocked. */
1699 static void
1700 do_line_dance ()
1702 register int i, j, distance;
1703 register struct frame *f;
1704 int ht;
1705 int intborder;
1707 /* Must check this flag first. If it's not set, then not only is the
1708 array uninitialized, but we might not even have a frame. */
1709 if (!line_dance_in_progress)
1710 return;
1712 f = updating_frame;
1713 if (f == 0)
1714 abort ();
1716 ht = f->height;
1717 intborder = CHAR_TO_PIXEL_COL (f, FRAME_LEFT_SCROLL_BAR_WIDTH (f));
1719 x_update_cursor (updating_frame, 0);
1721 for (i = 0; i < ht; ++i)
1722 if (line_dance[i] != -1 && (distance = line_dance[i]-i) > 0)
1724 for (j = i; (j < ht && line_dance[j] != -1
1725 && line_dance[j]-j == distance); ++j);
1726 /* Copy [i,j) upward from [i+distance,j+distance) */
1727 XCopyArea (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
1728 FRAME_X_WINDOW (f), f->output_data.x->normal_gc,
1729 intborder, CHAR_TO_PIXEL_ROW (f, i+distance),
1730 FRAME_WINDOW_WIDTH (f) * FONT_WIDTH (f->output_data.x->font),
1731 (j-i) * f->output_data.x->line_height,
1732 intborder, CHAR_TO_PIXEL_ROW (f, i));
1733 i = j-1;
1736 for (i = ht; --i >=0; )
1737 if (line_dance[i] != -1 && (distance = line_dance[i]-i) < 0)
1739 for (j = i; (--j >= 0 && line_dance[j] != -1
1740 && line_dance[j]-j == distance););
1741 /* Copy (j,i] downward from (j+distance, i+distance] */
1742 XCopyArea (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
1743 FRAME_X_WINDOW (f), f->output_data.x->normal_gc,
1744 intborder, CHAR_TO_PIXEL_ROW (f, j+1+distance),
1745 FRAME_WINDOW_WIDTH (f) * FONT_WIDTH (f->output_data.x->font),
1746 (i-j) * f->output_data.x->line_height,
1747 intborder, CHAR_TO_PIXEL_ROW (f, j+1));
1748 i = j+1;
1751 for (i = 0; i < ht; ++i)
1752 if (line_dance[i] == -1)
1754 for (j = i; j < ht && line_dance[j] == -1; ++j);
1755 /* Clear [i,j) */
1756 XClearArea (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
1757 intborder, CHAR_TO_PIXEL_ROW (f, i),
1758 FRAME_WINDOW_WIDTH (f) * FONT_WIDTH (f->output_data.x->font),
1759 (j-i) * f->output_data.x->line_height, False);
1760 i = j-1;
1762 line_dance_in_progress = 0;
1765 /* Support routines for exposure events. */
1766 static void clear_cursor ();
1768 /* Output into a rectangle of an X-window (for frame F)
1769 the characters in f->phys_lines that overlap that rectangle.
1770 TOP and LEFT are the position of the upper left corner of the rectangle.
1771 ROWS and COLS are the size of the rectangle.
1772 Call this function with input blocked. */
1774 static void
1775 dumprectangle (f, left, top, cols, rows)
1776 struct frame *f;
1777 register int left, top, cols, rows;
1779 register struct frame_glyphs *active_frame = FRAME_CURRENT_GLYPHS (f);
1780 int cursor_cleared = 0;
1781 int bottom, right;
1782 register int y;
1784 if (FRAME_GARBAGED_P (f))
1785 return;
1787 /* Express rectangle as four edges, instead of position-and-size. */
1788 bottom = top + rows;
1789 right = left + cols;
1791 /* Convert rectangle edges in pixels to edges in chars.
1792 Round down for left and top, up for right and bottom. */
1793 top = PIXEL_TO_CHAR_ROW (f, top);
1794 left = PIXEL_TO_CHAR_COL (f, left);
1795 bottom += (f->output_data.x->line_height - 1);
1796 right += (FONT_WIDTH (f->output_data.x->font) - 1);
1797 bottom = PIXEL_TO_CHAR_ROW (f, bottom);
1798 right = PIXEL_TO_CHAR_COL (f, right);
1800 /* Clip the rectangle to what can be visible. */
1801 if (left < 0)
1802 left = 0;
1803 if (top < 0)
1804 top = 0;
1805 if (right > FRAME_WINDOW_WIDTH (f))
1806 right = FRAME_WINDOW_WIDTH (f);
1807 if (bottom > f->height)
1808 bottom = f->height;
1810 /* Get size in chars of the rectangle. */
1811 cols = right - left;
1812 rows = bottom - top;
1814 /* If rectangle has zero area, return. */
1815 if (rows <= 0) return;
1816 if (cols <= 0) return;
1818 /* Turn off the cursor if it is in the rectangle.
1819 We will turn it back on afterward. */
1820 if ((f->phys_cursor_x >= left) && (f->phys_cursor_x < right)
1821 && (f->phys_cursor_y >= top) && (f->phys_cursor_y < bottom))
1823 clear_cursor (f);
1824 cursor_cleared = 1;
1827 /* Display the text in the rectangle, one text line at a time. */
1829 for (y = top; y < bottom; y++)
1831 GLYPH *line = &active_frame->glyphs[y][left];
1833 if (! active_frame->enable[y] || left > active_frame->used[y])
1834 continue;
1836 while (*line & GLYPH_MASK_PADDING)
1838 /* We must display the whole glyph of a wide-column
1839 character. */
1840 left--;
1841 line--;
1842 cols++;
1844 dumpglyphs (f,
1845 CHAR_TO_PIXEL_COL (f, left),
1846 CHAR_TO_PIXEL_ROW (f, y),
1847 line, min (cols, active_frame->used[y] - left),
1848 active_frame->highlight[y], 0, NULL);
1851 /* Turn the cursor on if we turned it off. */
1853 if (cursor_cleared)
1854 x_update_cursor (f, 1);
1857 static void
1858 frame_highlight (f)
1859 struct frame *f;
1861 /* We used to only do this if Vx_no_window_manager was non-nil, but
1862 the ICCCM (section 4.1.6) says that the window's border pixmap
1863 and border pixel are window attributes which are "private to the
1864 client", so we can always change it to whatever we want. */
1865 BLOCK_INPUT;
1866 XSetWindowBorder (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
1867 f->output_data.x->border_pixel);
1868 UNBLOCK_INPUT;
1869 x_update_cursor (f, 1);
1872 static void
1873 frame_unhighlight (f)
1874 struct frame *f;
1876 /* We used to only do this if Vx_no_window_manager was non-nil, but
1877 the ICCCM (section 4.1.6) says that the window's border pixmap
1878 and border pixel are window attributes which are "private to the
1879 client", so we can always change it to whatever we want. */
1880 BLOCK_INPUT;
1881 XSetWindowBorderPixmap (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
1882 f->output_data.x->border_tile);
1883 UNBLOCK_INPUT;
1884 x_update_cursor (f, 1);
1887 static void XTframe_rehighlight ();
1888 static void x_frame_rehighlight ();
1890 /* The focus has changed. Update the frames as necessary to reflect
1891 the new situation. Note that we can't change the selected frame
1892 here, because the Lisp code we are interrupting might become confused.
1893 Each event gets marked with the frame in which it occurred, so the
1894 Lisp code can tell when the switch took place by examining the events. */
1896 static void
1897 x_new_focus_frame (dpyinfo, frame)
1898 struct x_display_info *dpyinfo;
1899 struct frame *frame;
1901 struct frame *old_focus = dpyinfo->x_focus_frame;
1902 int events_enqueued = 0;
1904 if (frame != dpyinfo->x_focus_frame)
1906 /* Set this before calling other routines, so that they see
1907 the correct value of x_focus_frame. */
1908 dpyinfo->x_focus_frame = frame;
1910 if (old_focus && old_focus->auto_lower)
1911 x_lower_frame (old_focus);
1913 #if 0
1914 selected_frame = frame;
1915 XSETFRAME (XWINDOW (selected_frame->selected_window)->frame,
1916 selected_frame);
1917 Fselect_window (selected_frame->selected_window);
1918 choose_minibuf_frame ();
1919 #endif /* ! 0 */
1921 if (dpyinfo->x_focus_frame && dpyinfo->x_focus_frame->auto_raise)
1922 pending_autoraise_frame = dpyinfo->x_focus_frame;
1923 else
1924 pending_autoraise_frame = 0;
1927 x_frame_rehighlight (dpyinfo);
1930 /* Handle an event saying the mouse has moved out of an Emacs frame. */
1932 void
1933 x_mouse_leave (dpyinfo)
1934 struct x_display_info *dpyinfo;
1936 x_new_focus_frame (dpyinfo, dpyinfo->x_focus_event_frame);
1939 /* The focus has changed, or we have redirected a frame's focus to
1940 another frame (this happens when a frame uses a surrogate
1941 minibuffer frame). Shift the highlight as appropriate.
1943 The FRAME argument doesn't necessarily have anything to do with which
1944 frame is being highlighted or unhighlighted; we only use it to find
1945 the appropriate X display info. */
1946 static void
1947 XTframe_rehighlight (frame)
1948 struct frame *frame;
1950 x_frame_rehighlight (FRAME_X_DISPLAY_INFO (frame));
1953 static void
1954 x_frame_rehighlight (dpyinfo)
1955 struct x_display_info *dpyinfo;
1957 struct frame *old_highlight = dpyinfo->x_highlight_frame;
1959 if (dpyinfo->x_focus_frame)
1961 dpyinfo->x_highlight_frame
1962 = ((GC_FRAMEP (FRAME_FOCUS_FRAME (dpyinfo->x_focus_frame)))
1963 ? XFRAME (FRAME_FOCUS_FRAME (dpyinfo->x_focus_frame))
1964 : dpyinfo->x_focus_frame);
1965 if (! FRAME_LIVE_P (dpyinfo->x_highlight_frame))
1967 FRAME_FOCUS_FRAME (dpyinfo->x_focus_frame) = Qnil;
1968 dpyinfo->x_highlight_frame = dpyinfo->x_focus_frame;
1971 else
1972 dpyinfo->x_highlight_frame = 0;
1974 if (dpyinfo->x_highlight_frame != old_highlight)
1976 if (old_highlight)
1977 frame_unhighlight (old_highlight);
1978 if (dpyinfo->x_highlight_frame)
1979 frame_highlight (dpyinfo->x_highlight_frame);
1983 /* Keyboard processing - modifier keys, vendor-specific keysyms, etc. */
1985 /* Initialize mode_switch_bit and modifier_meaning. */
1986 static void
1987 x_find_modifier_meanings (dpyinfo)
1988 struct x_display_info *dpyinfo;
1990 int min_code, max_code;
1991 KeySym *syms;
1992 int syms_per_code;
1993 XModifierKeymap *mods;
1995 dpyinfo->meta_mod_mask = 0;
1996 dpyinfo->shift_lock_mask = 0;
1997 dpyinfo->alt_mod_mask = 0;
1998 dpyinfo->super_mod_mask = 0;
1999 dpyinfo->hyper_mod_mask = 0;
2001 #ifdef HAVE_X11R4
2002 XDisplayKeycodes (dpyinfo->display, &min_code, &max_code);
2003 #else
2004 min_code = dpyinfo->display->min_keycode;
2005 max_code = dpyinfo->display->max_keycode;
2006 #endif
2008 syms = XGetKeyboardMapping (dpyinfo->display,
2009 min_code, max_code - min_code + 1,
2010 &syms_per_code);
2011 mods = XGetModifierMapping (dpyinfo->display);
2013 /* Scan the modifier table to see which modifier bits the Meta and
2014 Alt keysyms are on. */
2016 int row, col; /* The row and column in the modifier table. */
2018 for (row = 3; row < 8; row++)
2019 for (col = 0; col < mods->max_keypermod; col++)
2021 KeyCode code
2022 = mods->modifiermap[(row * mods->max_keypermod) + col];
2024 /* Zeroes are used for filler. Skip them. */
2025 if (code == 0)
2026 continue;
2028 /* Are any of this keycode's keysyms a meta key? */
2030 int code_col;
2032 for (code_col = 0; code_col < syms_per_code; code_col++)
2034 int sym = syms[((code - min_code) * syms_per_code) + code_col];
2036 switch (sym)
2038 case XK_Meta_L:
2039 case XK_Meta_R:
2040 dpyinfo->meta_mod_mask |= (1 << row);
2041 break;
2043 case XK_Alt_L:
2044 case XK_Alt_R:
2045 dpyinfo->alt_mod_mask |= (1 << row);
2046 break;
2048 case XK_Hyper_L:
2049 case XK_Hyper_R:
2050 dpyinfo->hyper_mod_mask |= (1 << row);
2051 break;
2053 case XK_Super_L:
2054 case XK_Super_R:
2055 dpyinfo->super_mod_mask |= (1 << row);
2056 break;
2058 case XK_Shift_Lock:
2059 /* Ignore this if it's not on the lock modifier. */
2060 if ((1 << row) == LockMask)
2061 dpyinfo->shift_lock_mask = LockMask;
2062 break;
2069 /* If we couldn't find any meta keys, accept any alt keys as meta keys. */
2070 if (! dpyinfo->meta_mod_mask)
2072 dpyinfo->meta_mod_mask = dpyinfo->alt_mod_mask;
2073 dpyinfo->alt_mod_mask = 0;
2076 /* If some keys are both alt and meta,
2077 make them just meta, not alt. */
2078 if (dpyinfo->alt_mod_mask & dpyinfo->meta_mod_mask)
2080 dpyinfo->alt_mod_mask &= ~dpyinfo->meta_mod_mask;
2083 XFree ((char *) syms);
2084 XFreeModifiermap (mods);
2087 /* Convert between the modifier bits X uses and the modifier bits
2088 Emacs uses. */
2089 static unsigned int
2090 x_x_to_emacs_modifiers (dpyinfo, state)
2091 struct x_display_info *dpyinfo;
2092 unsigned int state;
2094 return ( ((state & (ShiftMask | dpyinfo->shift_lock_mask)) ? shift_modifier : 0)
2095 | ((state & ControlMask) ? ctrl_modifier : 0)
2096 | ((state & dpyinfo->meta_mod_mask) ? meta_modifier : 0)
2097 | ((state & dpyinfo->alt_mod_mask) ? alt_modifier : 0)
2098 | ((state & dpyinfo->super_mod_mask) ? super_modifier : 0)
2099 | ((state & dpyinfo->hyper_mod_mask) ? hyper_modifier : 0));
2102 static unsigned int
2103 x_emacs_to_x_modifiers (dpyinfo, state)
2104 struct x_display_info *dpyinfo;
2105 unsigned int state;
2107 return ( ((state & alt_modifier) ? dpyinfo->alt_mod_mask : 0)
2108 | ((state & super_modifier) ? dpyinfo->super_mod_mask : 0)
2109 | ((state & hyper_modifier) ? dpyinfo->hyper_mod_mask : 0)
2110 | ((state & shift_modifier) ? ShiftMask : 0)
2111 | ((state & ctrl_modifier) ? ControlMask : 0)
2112 | ((state & meta_modifier) ? dpyinfo->meta_mod_mask : 0));
2115 /* Convert a keysym to its name. */
2117 char *
2118 x_get_keysym_name (keysym)
2119 KeySym keysym;
2121 char *value;
2123 BLOCK_INPUT;
2124 value = XKeysymToString (keysym);
2125 UNBLOCK_INPUT;
2127 return value;
2130 /* Mouse clicks and mouse movement. Rah. */
2132 /* Given a pixel position (PIX_X, PIX_Y) on the frame F, return
2133 glyph co-ordinates in (*X, *Y). Set *BOUNDS to the rectangle
2134 that the glyph at X, Y occupies, if BOUNDS != 0.
2135 If NOCLIP is nonzero, do not force the value into range. */
2137 void
2138 pixel_to_glyph_coords (f, pix_x, pix_y, x, y, bounds, noclip)
2139 FRAME_PTR f;
2140 register int pix_x, pix_y;
2141 register int *x, *y;
2142 XRectangle *bounds;
2143 int noclip;
2145 /* Arrange for the division in PIXEL_TO_CHAR_COL etc. to round down
2146 even for negative values. */
2147 if (pix_x < 0)
2148 pix_x -= FONT_WIDTH ((f)->output_data.x->font) - 1;
2149 if (pix_y < 0)
2150 pix_y -= (f)->output_data.x->line_height - 1;
2152 pix_x = PIXEL_TO_CHAR_COL (f, pix_x);
2153 pix_y = PIXEL_TO_CHAR_ROW (f, pix_y);
2155 if (bounds)
2157 bounds->width = FONT_WIDTH (f->output_data.x->font);
2158 bounds->height = f->output_data.x->line_height;
2159 bounds->x = CHAR_TO_PIXEL_COL (f, pix_x);
2160 bounds->y = CHAR_TO_PIXEL_ROW (f, pix_y);
2163 if (!noclip)
2165 if (pix_x < 0)
2166 pix_x = 0;
2167 else if (pix_x > FRAME_WINDOW_WIDTH (f))
2168 pix_x = FRAME_WINDOW_WIDTH (f);
2170 if (pix_y < 0)
2171 pix_y = 0;
2172 else if (pix_y > f->height)
2173 pix_y = f->height;
2176 *x = pix_x;
2177 *y = pix_y;
2180 void
2181 glyph_to_pixel_coords (f, x, y, pix_x, pix_y)
2182 FRAME_PTR f;
2183 register int x, y;
2184 register int *pix_x, *pix_y;
2186 *pix_x = CHAR_TO_PIXEL_COL (f, x);
2187 *pix_y = CHAR_TO_PIXEL_ROW (f, y);
2190 /* Prepare a mouse-event in *RESULT for placement in the input queue.
2192 If the event is a button press, then note that we have grabbed
2193 the mouse. */
2195 static Lisp_Object
2196 construct_mouse_click (result, event, f)
2197 struct input_event *result;
2198 XButtonEvent *event;
2199 struct frame *f;
2201 /* Make the event type no_event; we'll change that when we decide
2202 otherwise. */
2203 result->kind = mouse_click;
2204 result->code = event->button - Button1;
2205 result->timestamp = event->time;
2206 result->modifiers = (x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO (f),
2207 event->state)
2208 | (event->type == ButtonRelease
2209 ? up_modifier
2210 : down_modifier));
2213 int row, column;
2215 #if 0
2216 pixel_to_glyph_coords (f, event->x, event->y, &column, &row, NULL, 0);
2217 XSETFASTINT (result->x, column);
2218 XSETFASTINT (result->y, row);
2219 #endif
2220 XSETINT (result->x, event->x);
2221 XSETINT (result->y, event->y);
2222 XSETFRAME (result->frame_or_window, f);
2226 /* Prepare a menu-event in *RESULT for placement in the input queue. */
2228 static Lisp_Object
2229 construct_menu_click (result, event, f)
2230 struct input_event *result;
2231 XButtonEvent *event;
2232 struct frame *f;
2234 /* Make the event type no_event; we'll change that when we decide
2235 otherwise. */
2236 result->kind = mouse_click;
2237 result->code = event->button - Button1;
2238 result->timestamp = event->time;
2239 result->modifiers = (x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO (f),
2240 event->state)
2241 | (event->type == ButtonRelease
2242 ? up_modifier
2243 : down_modifier));
2245 XSETINT (result->x, event->x);
2246 XSETINT (result->y, -1);
2247 XSETFRAME (result->frame_or_window, f);
2250 /* Function to report a mouse movement to the mainstream Emacs code.
2251 The input handler calls this.
2253 We have received a mouse movement event, which is given in *event.
2254 If the mouse is over a different glyph than it was last time, tell
2255 the mainstream emacs code by setting mouse_moved. If not, ask for
2256 another motion event, so we can check again the next time it moves. */
2258 static void
2259 note_mouse_movement (frame, event)
2260 FRAME_PTR frame;
2261 XMotionEvent *event;
2263 last_mouse_movement_time = event->time;
2265 if (event->window != FRAME_X_WINDOW (frame))
2267 frame->mouse_moved = 1;
2268 last_mouse_scroll_bar = Qnil;
2270 note_mouse_highlight (frame, -1, -1);
2273 /* Has the mouse moved off the glyph it was on at the last sighting? */
2274 else if (event->x < last_mouse_glyph.x
2275 || event->x >= last_mouse_glyph.x + last_mouse_glyph.width
2276 || event->y < last_mouse_glyph.y
2277 || event->y >= last_mouse_glyph.y + last_mouse_glyph.height)
2279 frame->mouse_moved = 1;
2280 last_mouse_scroll_bar = Qnil;
2282 note_mouse_highlight (frame, event->x, event->y);
2286 /* This is used for debugging, to turn off note_mouse_highlight. */
2287 static int disable_mouse_highlight;
2289 /* Take proper action when the mouse has moved to position X, Y on frame F
2290 as regards highlighting characters that have mouse-face properties.
2291 Also dehighlighting chars where the mouse was before.
2292 X and Y can be negative or out of range. */
2294 static void
2295 note_mouse_highlight (f, x, y)
2296 FRAME_PTR f;
2297 int x, y;
2299 int row, column, portion;
2300 XRectangle new_glyph;
2301 Lisp_Object window;
2302 struct window *w;
2304 if (disable_mouse_highlight)
2305 return;
2307 FRAME_X_DISPLAY_INFO (f)->mouse_face_mouse_x = x;
2308 FRAME_X_DISPLAY_INFO (f)->mouse_face_mouse_y = y;
2309 FRAME_X_DISPLAY_INFO (f)->mouse_face_mouse_frame = f;
2311 if (FRAME_X_DISPLAY_INFO (f)->mouse_face_defer)
2312 return;
2314 if (gc_in_progress)
2316 FRAME_X_DISPLAY_INFO (f)->mouse_face_deferred_gc = 1;
2317 return;
2320 /* Find out which glyph the mouse is on. */
2321 pixel_to_glyph_coords (f, x, y, &column, &row,
2322 &new_glyph, FRAME_X_DISPLAY_INFO (f)->grabbed);
2324 /* Which window is that in? */
2325 window = window_from_coordinates (f, column, row, &portion);
2326 w = XWINDOW (window);
2328 /* If we were displaying active text in another window, clear that. */
2329 if (! EQ (window, FRAME_X_DISPLAY_INFO (f)->mouse_face_window))
2330 clear_mouse_face (FRAME_X_DISPLAY_INFO (f));
2332 /* Are we in a window whose display is up to date?
2333 And verify the buffer's text has not changed. */
2334 if (WINDOWP (window) && portion == 0 && row >= 0 && column >= 0
2335 && row < FRAME_HEIGHT (f) && column < FRAME_WIDTH (f)
2336 && EQ (w->window_end_valid, w->buffer)
2337 && XFASTINT (w->last_modified) == BUF_MODIFF (XBUFFER (w->buffer))
2338 && (XFASTINT (w->last_overlay_modified)
2339 == BUF_OVERLAY_MODIFF (XBUFFER (w->buffer))))
2341 int *ptr = FRAME_CURRENT_GLYPHS (f)->charstarts[row];
2342 int i, pos;
2344 /* Find which buffer position the mouse corresponds to. */
2345 for (i = column; i >= 0; i--)
2346 if (ptr[i] > 0)
2347 break;
2348 pos = ptr[i];
2349 /* Is it outside the displayed active region (if any)? */
2350 if (pos <= 0)
2351 clear_mouse_face (FRAME_X_DISPLAY_INFO (f));
2352 else if (! (EQ (window, FRAME_X_DISPLAY_INFO (f)->mouse_face_window)
2353 && row >= FRAME_X_DISPLAY_INFO (f)->mouse_face_beg_row
2354 && row <= FRAME_X_DISPLAY_INFO (f)->mouse_face_end_row
2355 && (row > FRAME_X_DISPLAY_INFO (f)->mouse_face_beg_row
2356 || column >= FRAME_X_DISPLAY_INFO (f)->mouse_face_beg_col)
2357 && (row < FRAME_X_DISPLAY_INFO (f)->mouse_face_end_row
2358 || column < FRAME_X_DISPLAY_INFO (f)->mouse_face_end_col
2359 || FRAME_X_DISPLAY_INFO (f)->mouse_face_past_end)))
2361 Lisp_Object mouse_face, overlay, position;
2362 Lisp_Object *overlay_vec;
2363 int len, noverlays, ignor1;
2364 struct buffer *obuf;
2365 int obegv, ozv;
2367 /* If we get an out-of-range value, return now; avoid an error. */
2368 if (pos > BUF_Z (XBUFFER (w->buffer)))
2369 return;
2371 /* Make the window's buffer temporarily current for
2372 overlays_at and compute_char_face. */
2373 obuf = current_buffer;
2374 current_buffer = XBUFFER (w->buffer);
2375 obegv = BEGV;
2376 ozv = ZV;
2377 BEGV = BEG;
2378 ZV = Z;
2380 /* Yes. Clear the display of the old active region, if any. */
2381 clear_mouse_face (FRAME_X_DISPLAY_INFO (f));
2383 /* Is this char mouse-active? */
2384 XSETINT (position, pos);
2386 len = 10;
2387 overlay_vec = (Lisp_Object *) xmalloc (len * sizeof (Lisp_Object));
2389 /* Put all the overlays we want in a vector in overlay_vec.
2390 Store the length in len. */
2391 noverlays = overlays_at (pos, 1, &overlay_vec, &len,
2392 NULL, NULL);
2393 noverlays = sort_overlays (overlay_vec, noverlays, w);
2395 /* Find the highest priority overlay that has a mouse-face prop. */
2396 overlay = Qnil;
2397 for (i = 0; i < noverlays; i++)
2399 mouse_face = Foverlay_get (overlay_vec[i], Qmouse_face);
2400 if (!NILP (mouse_face))
2402 overlay = overlay_vec[i];
2403 break;
2406 free (overlay_vec);
2407 /* If no overlay applies, get a text property. */
2408 if (NILP (overlay))
2409 mouse_face = Fget_text_property (position, Qmouse_face, w->buffer);
2411 /* Handle the overlay case. */
2412 if (! NILP (overlay))
2414 /* Find the range of text around this char that
2415 should be active. */
2416 Lisp_Object before, after;
2417 int ignore;
2419 before = Foverlay_start (overlay);
2420 after = Foverlay_end (overlay);
2421 /* Record this as the current active region. */
2422 fast_find_position (window, XFASTINT (before),
2423 &FRAME_X_DISPLAY_INFO (f)->mouse_face_beg_col,
2424 &FRAME_X_DISPLAY_INFO (f)->mouse_face_beg_row);
2425 FRAME_X_DISPLAY_INFO (f)->mouse_face_past_end
2426 = !fast_find_position (window, XFASTINT (after),
2427 &FRAME_X_DISPLAY_INFO (f)->mouse_face_end_col,
2428 &FRAME_X_DISPLAY_INFO (f)->mouse_face_end_row);
2429 FRAME_X_DISPLAY_INFO (f)->mouse_face_window = window;
2430 FRAME_X_DISPLAY_INFO (f)->mouse_face_face_id
2431 = compute_char_face (f, w, pos, 0, 0,
2432 &ignore, pos + 1, 1);
2434 /* Display it as active. */
2435 show_mouse_face (FRAME_X_DISPLAY_INFO (f), 1);
2437 /* Handle the text property case. */
2438 else if (! NILP (mouse_face))
2440 /* Find the range of text around this char that
2441 should be active. */
2442 Lisp_Object before, after, beginning, end;
2443 int ignore;
2445 beginning = Fmarker_position (w->start);
2446 XSETINT (end, (BUF_Z (XBUFFER (w->buffer))
2447 - XFASTINT (w->window_end_pos)));
2448 before
2449 = Fprevious_single_property_change (make_number (pos + 1),
2450 Qmouse_face,
2451 w->buffer, beginning);
2452 after
2453 = Fnext_single_property_change (position, Qmouse_face,
2454 w->buffer, end);
2455 /* Record this as the current active region. */
2456 fast_find_position (window, XFASTINT (before),
2457 &FRAME_X_DISPLAY_INFO (f)->mouse_face_beg_col,
2458 &FRAME_X_DISPLAY_INFO (f)->mouse_face_beg_row);
2459 FRAME_X_DISPLAY_INFO (f)->mouse_face_past_end
2460 = !fast_find_position (window, XFASTINT (after),
2461 &FRAME_X_DISPLAY_INFO (f)->mouse_face_end_col,
2462 &FRAME_X_DISPLAY_INFO (f)->mouse_face_end_row);
2463 FRAME_X_DISPLAY_INFO (f)->mouse_face_window = window;
2464 FRAME_X_DISPLAY_INFO (f)->mouse_face_face_id
2465 = compute_char_face (f, w, pos, 0, 0,
2466 &ignore, pos + 1, 1);
2468 /* Display it as active. */
2469 show_mouse_face (FRAME_X_DISPLAY_INFO (f), 1);
2471 BEGV = obegv;
2472 ZV = ozv;
2473 current_buffer = obuf;
2478 /* Find the row and column of position POS in window WINDOW.
2479 Store them in *COLUMNP and *ROWP.
2480 This assumes display in WINDOW is up to date.
2481 If POS is above start of WINDOW, return coords
2482 of start of first screen line.
2483 If POS is after end of WINDOW, return coords of end of last screen line.
2485 Value is 1 if POS is in range, 0 if it was off screen. */
2487 static int
2488 fast_find_position (window, pos, columnp, rowp)
2489 Lisp_Object window;
2490 int pos;
2491 int *columnp, *rowp;
2493 struct window *w = XWINDOW (window);
2494 FRAME_PTR f = XFRAME (WINDOW_FRAME (w));
2495 int i;
2496 int row = 0;
2497 int left = WINDOW_LEFT_MARGIN (w);
2498 int top = XFASTINT (w->top);
2499 int height = XFASTINT (w->height) - ! MINI_WINDOW_P (w);
2500 int width = window_internal_width (w);
2501 int *charstarts;
2502 int lastcol;
2503 int maybe_next_line = 0;
2505 /* Find the right row. */
2506 for (i = 0;
2507 i < height;
2508 i++)
2510 int linestart = FRAME_CURRENT_GLYPHS (f)->charstarts[top + i][left];
2511 if (linestart > pos)
2512 break;
2513 /* If the position sought is the end of the buffer,
2514 don't include the blank lines at the bottom of the window. */
2515 if (linestart == pos && pos == BUF_ZV (XBUFFER (w->buffer)))
2517 maybe_next_line = 1;
2518 break;
2520 if (linestart > 0)
2521 row = i;
2524 /* Find the right column with in it. */
2525 charstarts = FRAME_CURRENT_GLYPHS (f)->charstarts[top + row];
2526 lastcol = left;
2527 for (i = 0; i < width; i++)
2529 if (charstarts[left + i] == pos)
2531 *rowp = row + top;
2532 *columnp = i + left;
2533 return 1;
2535 else if (charstarts[left + i] > pos)
2536 break;
2537 else if (charstarts[left + i] > 0)
2538 lastcol = left + i;
2541 /* If we're looking for the end of the buffer,
2542 and we didn't find it in the line we scanned,
2543 use the start of the following line. */
2544 if (maybe_next_line)
2546 row++;
2547 lastcol = left;
2550 *rowp = row + top;
2551 *columnp = lastcol;
2552 return 0;
2555 /* Display the active region described by mouse_face_*
2556 in its mouse-face if HL > 0, in its normal face if HL = 0. */
2558 static void
2559 show_mouse_face (dpyinfo, hl)
2560 struct x_display_info *dpyinfo;
2561 int hl;
2563 struct window *w = XWINDOW (dpyinfo->mouse_face_window);
2564 int width = window_internal_width (w);
2565 FRAME_PTR f = XFRAME (WINDOW_FRAME (w));
2566 int i;
2567 int cursor_off = 0;
2568 int old_curs_x = curs_x;
2569 int old_curs_y = curs_y;
2571 /* Set these variables temporarily
2572 so that if we have to turn the cursor off and on again
2573 we will put it back at the same place. */
2574 curs_x = f->phys_cursor_x;
2575 curs_y = f->phys_cursor_y;
2576 for (i = FRAME_X_DISPLAY_INFO (f)->mouse_face_beg_row;
2577 i <= FRAME_X_DISPLAY_INFO (f)->mouse_face_end_row; i++)
2579 int column = (i == FRAME_X_DISPLAY_INFO (f)->mouse_face_beg_row
2580 ? FRAME_X_DISPLAY_INFO (f)->mouse_face_beg_col
2581 : WINDOW_LEFT_MARGIN (w));
2582 int endcolumn = (i == FRAME_X_DISPLAY_INFO (f)->mouse_face_end_row
2583 ? FRAME_X_DISPLAY_INFO (f)->mouse_face_end_col
2584 : WINDOW_LEFT_MARGIN (w) + width);
2585 endcolumn = min (endcolumn, FRAME_CURRENT_GLYPHS (f)->used[i]);
2587 /* If the cursor's in the text we are about to rewrite,
2588 turn the cursor off. */
2589 if (i == curs_y
2590 && curs_x >= column - 1
2591 && curs_x <= endcolumn)
2593 x_update_cursor (f, 0);
2594 cursor_off = 1;
2597 dumpglyphs (f,
2598 CHAR_TO_PIXEL_COL (f, column),
2599 CHAR_TO_PIXEL_ROW (f, i),
2600 FRAME_CURRENT_GLYPHS (f)->glyphs[i] + column,
2601 endcolumn - column,
2602 /* Highlight with mouse face if hl > 0. */
2603 hl > 0 ? 3 : 0, 0, NULL);
2606 /* If we turned the cursor off, turn it back on. */
2607 if (cursor_off)
2608 x_display_cursor (f, 1, curs_x, curs_y);
2610 curs_x = old_curs_x;
2611 curs_y = old_curs_y;
2613 /* Change the mouse cursor according to the value of HL. */
2614 if (hl > 0)
2615 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2616 f->output_data.x->cross_cursor);
2617 else
2618 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2619 f->output_data.x->text_cursor);
2622 /* Clear out the mouse-highlighted active region.
2623 Redraw it unhighlighted first. */
2625 static void
2626 clear_mouse_face (dpyinfo)
2627 struct x_display_info *dpyinfo;
2629 if (! NILP (dpyinfo->mouse_face_window))
2630 show_mouse_face (dpyinfo, 0);
2632 dpyinfo->mouse_face_beg_row = dpyinfo->mouse_face_beg_col = -1;
2633 dpyinfo->mouse_face_end_row = dpyinfo->mouse_face_end_col = -1;
2634 dpyinfo->mouse_face_window = Qnil;
2637 /* Just discard the mouse face information for frame F, if any.
2638 This is used when the size of F is changed. */
2640 cancel_mouse_face (f)
2641 FRAME_PTR f;
2643 Lisp_Object window;
2644 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
2646 window = dpyinfo->mouse_face_window;
2647 if (! NILP (window) && XFRAME (XWINDOW (window)->frame) == f)
2649 dpyinfo->mouse_face_beg_row = dpyinfo->mouse_face_beg_col = -1;
2650 dpyinfo->mouse_face_end_row = dpyinfo->mouse_face_end_col = -1;
2651 dpyinfo->mouse_face_window = Qnil;
2655 static struct scroll_bar *x_window_to_scroll_bar ();
2656 static void x_scroll_bar_report_motion ();
2658 /* Return the current position of the mouse.
2659 *fp should be a frame which indicates which display to ask about.
2661 If the mouse movement started in a scroll bar, set *fp, *bar_window,
2662 and *part to the frame, window, and scroll bar part that the mouse
2663 is over. Set *x and *y to the portion and whole of the mouse's
2664 position on the scroll bar.
2666 If the mouse movement started elsewhere, set *fp to the frame the
2667 mouse is on, *bar_window to nil, and *x and *y to the character cell
2668 the mouse is over.
2670 Set *time to the server timestamp for the time at which the mouse
2671 was at this position.
2673 Don't store anything if we don't have a valid set of values to report.
2675 This clears the mouse_moved flag, so we can wait for the next mouse
2676 movement. */
2678 static void
2679 XTmouse_position (fp, insist, bar_window, part, x, y, time)
2680 FRAME_PTR *fp;
2681 int insist;
2682 Lisp_Object *bar_window;
2683 enum scroll_bar_part *part;
2684 Lisp_Object *x, *y;
2685 unsigned long *time;
2687 FRAME_PTR f1;
2689 BLOCK_INPUT;
2691 if (! NILP (last_mouse_scroll_bar))
2692 x_scroll_bar_report_motion (fp, bar_window, part, x, y, time);
2693 else
2695 Window root;
2696 int root_x, root_y;
2698 Window dummy_window;
2699 int dummy;
2701 Lisp_Object frame, tail;
2703 /* Clear the mouse-moved flag for every frame on this display. */
2704 FOR_EACH_FRAME (tail, frame)
2705 if (FRAME_X_DISPLAY (XFRAME (frame)) == FRAME_X_DISPLAY (*fp))
2706 XFRAME (frame)->mouse_moved = 0;
2708 last_mouse_scroll_bar = Qnil;
2710 /* Figure out which root window we're on. */
2711 XQueryPointer (FRAME_X_DISPLAY (*fp),
2712 DefaultRootWindow (FRAME_X_DISPLAY (*fp)),
2714 /* The root window which contains the pointer. */
2715 &root,
2717 /* Trash which we can't trust if the pointer is on
2718 a different screen. */
2719 &dummy_window,
2721 /* The position on that root window. */
2722 &root_x, &root_y,
2724 /* More trash we can't trust. */
2725 &dummy, &dummy,
2727 /* Modifier keys and pointer buttons, about which
2728 we don't care. */
2729 (unsigned int *) &dummy);
2731 /* Now we have a position on the root; find the innermost window
2732 containing the pointer. */
2734 Window win, child;
2735 int win_x, win_y;
2736 int parent_x, parent_y;
2737 int count;
2739 win = root;
2741 /* XTranslateCoordinates can get errors if the window
2742 structure is changing at the same time this function
2743 is running. So at least we must not crash from them. */
2745 count = x_catch_errors (FRAME_X_DISPLAY (*fp));
2747 if (FRAME_X_DISPLAY_INFO (*fp)->grabbed && last_mouse_frame
2748 && FRAME_LIVE_P (last_mouse_frame))
2750 /* If mouse was grabbed on a frame, give coords for that frame
2751 even if the mouse is now outside it. */
2752 XTranslateCoordinates (FRAME_X_DISPLAY (*fp),
2754 /* From-window, to-window. */
2755 root, FRAME_X_WINDOW (last_mouse_frame),
2757 /* From-position, to-position. */
2758 root_x, root_y, &win_x, &win_y,
2760 /* Child of win. */
2761 &child);
2762 f1 = last_mouse_frame;
2764 else
2766 while (1)
2768 XTranslateCoordinates (FRAME_X_DISPLAY (*fp),
2770 /* From-window, to-window. */
2771 root, win,
2773 /* From-position, to-position. */
2774 root_x, root_y, &win_x, &win_y,
2776 /* Child of win. */
2777 &child);
2779 if (child == None || child == win)
2780 break;
2782 win = child;
2783 parent_x = win_x;
2784 parent_y = win_y;
2787 /* Now we know that:
2788 win is the innermost window containing the pointer
2789 (XTC says it has no child containing the pointer),
2790 win_x and win_y are the pointer's position in it
2791 (XTC did this the last time through), and
2792 parent_x and parent_y are the pointer's position in win's parent.
2793 (They are what win_x and win_y were when win was child.
2794 If win is the root window, it has no parent, and
2795 parent_{x,y} are invalid, but that's okay, because we'll
2796 never use them in that case.) */
2798 /* Is win one of our frames? */
2799 f1 = x_any_window_to_frame (FRAME_X_DISPLAY_INFO (*fp), win);
2802 if (x_had_errors_p (FRAME_X_DISPLAY (*fp)))
2803 f1 = 0;
2805 x_uncatch_errors (FRAME_X_DISPLAY (*fp), count);
2807 /* If not, is it one of our scroll bars? */
2808 if (! f1)
2810 struct scroll_bar *bar = x_window_to_scroll_bar (win);
2812 if (bar)
2814 f1 = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
2815 win_x = parent_x;
2816 win_y = parent_y;
2820 if (f1 == 0 && insist)
2821 f1 = selected_frame;
2823 if (f1)
2825 int ignore1, ignore2;
2827 /* Ok, we found a frame. Store all the values. */
2829 pixel_to_glyph_coords (f1, win_x, win_y, &ignore1, &ignore2,
2830 &last_mouse_glyph,
2831 FRAME_X_DISPLAY_INFO (f1)->grabbed
2832 || insist);
2834 *bar_window = Qnil;
2835 *part = 0;
2836 *fp = f1;
2837 XSETINT (*x, win_x);
2838 XSETINT (*y, win_y);
2839 *time = last_mouse_movement_time;
2844 UNBLOCK_INPUT;
2847 /* Scroll bar support. */
2849 /* Given an X window ID, find the struct scroll_bar which manages it.
2850 This can be called in GC, so we have to make sure to strip off mark
2851 bits. */
2852 static struct scroll_bar *
2853 x_window_to_scroll_bar (window_id)
2854 Window window_id;
2856 Lisp_Object tail, frame;
2858 for (tail = Vframe_list;
2859 XGCTYPE (tail) == Lisp_Cons;
2860 tail = XCONS (tail)->cdr)
2862 Lisp_Object frame, bar, condemned;
2864 frame = XCONS (tail)->car;
2865 /* All elements of Vframe_list should be frames. */
2866 if (! GC_FRAMEP (frame))
2867 abort ();
2869 /* Scan this frame's scroll bar list for a scroll bar with the
2870 right window ID. */
2871 condemned = FRAME_CONDEMNED_SCROLL_BARS (XFRAME (frame));
2872 for (bar = FRAME_SCROLL_BARS (XFRAME (frame));
2873 /* This trick allows us to search both the ordinary and
2874 condemned scroll bar lists with one loop. */
2875 ! GC_NILP (bar) || (bar = condemned,
2876 condemned = Qnil,
2877 ! GC_NILP (bar));
2878 bar = XSCROLL_BAR (bar)->next)
2879 if (SCROLL_BAR_X_WINDOW (XSCROLL_BAR (bar)) == window_id)
2880 return XSCROLL_BAR (bar);
2883 return 0;
2886 /* Open a new X window to serve as a scroll bar, and return the
2887 scroll bar vector for it. */
2888 static struct scroll_bar *
2889 x_scroll_bar_create (window, top, left, width, height)
2890 struct window *window;
2891 int top, left, width, height;
2893 FRAME_PTR f = XFRAME (WINDOW_FRAME (window));
2894 struct scroll_bar *bar
2895 = XSCROLL_BAR (Fmake_vector (make_number (SCROLL_BAR_VEC_SIZE), Qnil));
2897 BLOCK_INPUT;
2900 XSetWindowAttributes a;
2901 unsigned long mask;
2902 a.background_pixel = f->output_data.x->background_pixel;
2903 a.event_mask = (ButtonPressMask | ButtonReleaseMask
2904 | ButtonMotionMask | PointerMotionHintMask
2905 | ExposureMask);
2906 a.cursor = FRAME_X_DISPLAY_INFO (f)->vertical_scroll_bar_cursor;
2908 mask = (CWBackPixel | CWEventMask | CWCursor);
2910 #if 0
2912 ac = 0;
2913 XtSetArg (al[ac], XtNx, left); ac++;
2914 XtSetArg (al[ac], XtNy, top); ac++;
2915 XtSetArg (al[ac], XtNwidth, width); ac++;
2916 XtSetArg (al[ac], XtNheight, height); ac++;
2917 XtSetArg (al[ac], XtNborderWidth, 0); ac++;
2918 sb_widget = XtCreateManagedWidget ("box",
2919 boxWidgetClass,
2920 f->output_data.x->edit_widget, al, ac);
2921 SET_SCROLL_BAR_X_WINDOW
2922 (bar, sb_widget->core.window);
2923 #endif
2924 SET_SCROLL_BAR_X_WINDOW
2925 (bar,
2926 XCreateWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2928 /* Position and size of scroll bar. */
2929 left + VERTICAL_SCROLL_BAR_WIDTH_TRIM, top,
2930 width - VERTICAL_SCROLL_BAR_WIDTH_TRIM * 2, height,
2932 /* Border width, depth, class, and visual. */
2933 0, CopyFromParent, CopyFromParent, CopyFromParent,
2935 /* Attributes. */
2936 mask, &a));
2939 XSETWINDOW (bar->window, window);
2940 XSETINT (bar->top, top);
2941 XSETINT (bar->left, left);
2942 XSETINT (bar->width, width);
2943 XSETINT (bar->height, height);
2944 XSETINT (bar->start, 0);
2945 XSETINT (bar->end, 0);
2946 bar->dragging = Qnil;
2948 /* Add bar to its frame's list of scroll bars. */
2949 bar->next = FRAME_SCROLL_BARS (f);
2950 bar->prev = Qnil;
2951 XSETVECTOR (FRAME_SCROLL_BARS (f), bar);
2952 if (! NILP (bar->next))
2953 XSETVECTOR (XSCROLL_BAR (bar->next)->prev, bar);
2955 XMapRaised (FRAME_X_DISPLAY (f), SCROLL_BAR_X_WINDOW (bar));
2957 UNBLOCK_INPUT;
2959 return bar;
2962 /* Draw BAR's handle in the proper position.
2963 If the handle is already drawn from START to END, don't bother
2964 redrawing it, unless REBUILD is non-zero; in that case, always
2965 redraw it. (REBUILD is handy for drawing the handle after expose
2966 events.)
2968 Normally, we want to constrain the start and end of the handle to
2969 fit inside its rectangle, but if the user is dragging the scroll bar
2970 handle, we want to let them drag it down all the way, so that the
2971 bar's top is as far down as it goes; otherwise, there's no way to
2972 move to the very end of the buffer. */
2973 static void
2974 x_scroll_bar_set_handle (bar, start, end, rebuild)
2975 struct scroll_bar *bar;
2976 int start, end;
2977 int rebuild;
2979 int dragging = ! NILP (bar->dragging);
2980 Window w = SCROLL_BAR_X_WINDOW (bar);
2981 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
2982 GC gc = f->output_data.x->normal_gc;
2984 /* If the display is already accurate, do nothing. */
2985 if (! rebuild
2986 && start == XINT (bar->start)
2987 && end == XINT (bar->end))
2988 return;
2990 BLOCK_INPUT;
2993 int inside_width = VERTICAL_SCROLL_BAR_INSIDE_WIDTH (f, XINT (bar->width));
2994 int inside_height = VERTICAL_SCROLL_BAR_INSIDE_HEIGHT (f, XINT (bar->height));
2995 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, XINT (bar->height));
2997 /* Make sure the values are reasonable, and try to preserve
2998 the distance between start and end. */
3000 int length = end - start;
3002 if (start < 0)
3003 start = 0;
3004 else if (start > top_range)
3005 start = top_range;
3006 end = start + length;
3008 if (end < start)
3009 end = start;
3010 else if (end > top_range && ! dragging)
3011 end = top_range;
3014 /* Store the adjusted setting in the scroll bar. */
3015 XSETINT (bar->start, start);
3016 XSETINT (bar->end, end);
3018 /* Clip the end position, just for display. */
3019 if (end > top_range)
3020 end = top_range;
3022 /* Draw bottom positions VERTICAL_SCROLL_BAR_MIN_HANDLE pixels
3023 below top positions, to make sure the handle is always at least
3024 that many pixels tall. */
3025 end += VERTICAL_SCROLL_BAR_MIN_HANDLE;
3027 /* Draw the empty space above the handle. Note that we can't clear
3028 zero-height areas; that means "clear to end of window." */
3029 if (0 < start)
3030 XClearArea (FRAME_X_DISPLAY (f), w,
3032 /* x, y, width, height, and exposures. */
3033 VERTICAL_SCROLL_BAR_LEFT_BORDER,
3034 VERTICAL_SCROLL_BAR_TOP_BORDER,
3035 inside_width, start,
3036 False);
3038 /* Draw the handle itself. */
3039 XFillRectangle (FRAME_X_DISPLAY (f), w, gc,
3041 /* x, y, width, height */
3042 VERTICAL_SCROLL_BAR_LEFT_BORDER,
3043 VERTICAL_SCROLL_BAR_TOP_BORDER + start,
3044 inside_width, end - start);
3047 /* Draw the empty space below the handle. Note that we can't
3048 clear zero-height areas; that means "clear to end of window." */
3049 if (end < inside_height)
3050 XClearArea (FRAME_X_DISPLAY (f), w,
3052 /* x, y, width, height, and exposures. */
3053 VERTICAL_SCROLL_BAR_LEFT_BORDER,
3054 VERTICAL_SCROLL_BAR_TOP_BORDER + end,
3055 inside_width, inside_height - end,
3056 False);
3060 UNBLOCK_INPUT;
3063 /* Move a scroll bar around on the screen, to accommodate changing
3064 window configurations. */
3065 static void
3066 x_scroll_bar_move (bar, top, left, width, height)
3067 struct scroll_bar *bar;
3068 int top, left, width, height;
3070 Window w = SCROLL_BAR_X_WINDOW (bar);
3071 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
3073 BLOCK_INPUT;
3076 XWindowChanges wc;
3077 unsigned int mask = 0;
3079 wc.x = left + VERTICAL_SCROLL_BAR_WIDTH_TRIM;
3080 wc.y = top;
3082 wc.width = width - VERTICAL_SCROLL_BAR_WIDTH_TRIM * 2;
3083 wc.height = height;
3085 if (left != XINT (bar->left)) mask |= CWX;
3086 if (top != XINT (bar->top)) mask |= CWY;
3087 if (width != XINT (bar->width)) mask |= CWWidth;
3088 if (height != XINT (bar->height)) mask |= CWHeight;
3090 if (mask)
3091 XConfigureWindow (FRAME_X_DISPLAY (f), SCROLL_BAR_X_WINDOW (bar),
3092 mask, &wc);
3095 XSETINT (bar->left, left);
3096 XSETINT (bar->top, top);
3097 XSETINT (bar->width, width);
3098 XSETINT (bar->height, height);
3100 UNBLOCK_INPUT;
3103 /* Destroy the X window for BAR, and set its Emacs window's scroll bar
3104 to nil. */
3105 static void
3106 x_scroll_bar_remove (bar)
3107 struct scroll_bar *bar;
3109 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
3111 BLOCK_INPUT;
3113 /* Destroy the window. */
3114 XDestroyWindow (FRAME_X_DISPLAY (f), SCROLL_BAR_X_WINDOW (bar));
3116 /* Disassociate this scroll bar from its window. */
3117 XWINDOW (bar->window)->vertical_scroll_bar = Qnil;
3119 UNBLOCK_INPUT;
3122 /* Set the handle of the vertical scroll bar for WINDOW to indicate
3123 that we are displaying PORTION characters out of a total of WHOLE
3124 characters, starting at POSITION. If WINDOW has no scroll bar,
3125 create one. */
3126 static void
3127 XTset_vertical_scroll_bar (window, portion, whole, position)
3128 struct window *window;
3129 int portion, whole, position;
3131 FRAME_PTR f = XFRAME (WINDOW_FRAME (window));
3132 int top = XINT (window->top);
3133 int left = WINDOW_VERTICAL_SCROLL_BAR_COLUMN (window);
3134 int height = WINDOW_VERTICAL_SCROLL_BAR_HEIGHT (window);
3136 /* Where should this scroll bar be, pixelwise? */
3137 int pixel_top = CHAR_TO_PIXEL_ROW (f, top);
3138 int pixel_left = CHAR_TO_PIXEL_COL (f, left);
3139 int pixel_width
3140 = (FRAME_SCROLL_BAR_PIXEL_WIDTH (f) > 0
3141 ? FRAME_SCROLL_BAR_PIXEL_WIDTH (f)
3142 : (FRAME_SCROLL_BAR_COLS (f) * FONT_WIDTH (f->output_data.x->font)));
3143 int pixel_height = VERTICAL_SCROLL_BAR_PIXEL_HEIGHT (f, height);
3145 struct scroll_bar *bar;
3147 /* Does the scroll bar exist yet? */
3148 if (NILP (window->vertical_scroll_bar))
3149 bar = x_scroll_bar_create (window,
3150 pixel_top, pixel_left,
3151 pixel_width, pixel_height);
3152 else
3154 /* It may just need to be moved and resized. */
3155 bar = XSCROLL_BAR (window->vertical_scroll_bar);
3156 x_scroll_bar_move (bar, pixel_top, pixel_left, pixel_width, pixel_height);
3159 /* Set the scroll bar's current state, unless we're currently being
3160 dragged. */
3161 if (NILP (bar->dragging))
3163 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, pixel_height);
3165 if (whole == 0)
3166 x_scroll_bar_set_handle (bar, 0, top_range, 0);
3167 else
3169 int start = ((double) position * top_range) / whole;
3170 int end = ((double) (position + portion) * top_range) / whole;
3172 x_scroll_bar_set_handle (bar, start, end, 0);
3176 XSETVECTOR (window->vertical_scroll_bar, bar);
3180 /* The following three hooks are used when we're doing a thorough
3181 redisplay of the frame. We don't explicitly know which scroll bars
3182 are going to be deleted, because keeping track of when windows go
3183 away is a real pain - "Can you say set-window-configuration, boys
3184 and girls?" Instead, we just assert at the beginning of redisplay
3185 that *all* scroll bars are to be removed, and then save a scroll bar
3186 from the fiery pit when we actually redisplay its window. */
3188 /* Arrange for all scroll bars on FRAME to be removed at the next call
3189 to `*judge_scroll_bars_hook'. A scroll bar may be spared if
3190 `*redeem_scroll_bar_hook' is applied to its window before the judgement. */
3191 static void
3192 XTcondemn_scroll_bars (frame)
3193 FRAME_PTR frame;
3195 /* Transfer all the scroll bars to FRAME_CONDEMNED_SCROLL_BARS. */
3196 while (! NILP (FRAME_SCROLL_BARS (frame)))
3198 Lisp_Object bar;
3199 bar = FRAME_SCROLL_BARS (frame);
3200 FRAME_SCROLL_BARS (frame) = XSCROLL_BAR (bar)->next;
3201 XSCROLL_BAR (bar)->next = FRAME_CONDEMNED_SCROLL_BARS (frame);
3202 XSCROLL_BAR (bar)->prev = Qnil;
3203 if (! NILP (FRAME_CONDEMNED_SCROLL_BARS (frame)))
3204 XSCROLL_BAR (FRAME_CONDEMNED_SCROLL_BARS (frame))->prev = bar;
3205 FRAME_CONDEMNED_SCROLL_BARS (frame) = bar;
3209 /* Unmark WINDOW's scroll bar for deletion in this judgement cycle.
3210 Note that WINDOW isn't necessarily condemned at all. */
3211 static void
3212 XTredeem_scroll_bar (window)
3213 struct window *window;
3215 struct scroll_bar *bar;
3217 /* We can't redeem this window's scroll bar if it doesn't have one. */
3218 if (NILP (window->vertical_scroll_bar))
3219 abort ();
3221 bar = XSCROLL_BAR (window->vertical_scroll_bar);
3223 /* Unlink it from the condemned list. */
3225 FRAME_PTR f = XFRAME (WINDOW_FRAME (window));
3227 if (NILP (bar->prev))
3229 /* If the prev pointer is nil, it must be the first in one of
3230 the lists. */
3231 if (EQ (FRAME_SCROLL_BARS (f), window->vertical_scroll_bar))
3232 /* It's not condemned. Everything's fine. */
3233 return;
3234 else if (EQ (FRAME_CONDEMNED_SCROLL_BARS (f),
3235 window->vertical_scroll_bar))
3236 FRAME_CONDEMNED_SCROLL_BARS (f) = bar->next;
3237 else
3238 /* If its prev pointer is nil, it must be at the front of
3239 one or the other! */
3240 abort ();
3242 else
3243 XSCROLL_BAR (bar->prev)->next = bar->next;
3245 if (! NILP (bar->next))
3246 XSCROLL_BAR (bar->next)->prev = bar->prev;
3248 bar->next = FRAME_SCROLL_BARS (f);
3249 bar->prev = Qnil;
3250 XSETVECTOR (FRAME_SCROLL_BARS (f), bar);
3251 if (! NILP (bar->next))
3252 XSETVECTOR (XSCROLL_BAR (bar->next)->prev, bar);
3256 /* Remove all scroll bars on FRAME that haven't been saved since the
3257 last call to `*condemn_scroll_bars_hook'. */
3258 static void
3259 XTjudge_scroll_bars (f)
3260 FRAME_PTR f;
3262 Lisp_Object bar, next;
3264 bar = FRAME_CONDEMNED_SCROLL_BARS (f);
3266 /* Clear out the condemned list now so we won't try to process any
3267 more events on the hapless scroll bars. */
3268 FRAME_CONDEMNED_SCROLL_BARS (f) = Qnil;
3270 for (; ! NILP (bar); bar = next)
3272 struct scroll_bar *b = XSCROLL_BAR (bar);
3274 x_scroll_bar_remove (b);
3276 next = b->next;
3277 b->next = b->prev = Qnil;
3280 /* Now there should be no references to the condemned scroll bars,
3281 and they should get garbage-collected. */
3285 /* Handle an Expose or GraphicsExpose event on a scroll bar.
3287 This may be called from a signal handler, so we have to ignore GC
3288 mark bits. */
3289 static void
3290 x_scroll_bar_expose (bar, event)
3291 struct scroll_bar *bar;
3292 XEvent *event;
3294 Window w = SCROLL_BAR_X_WINDOW (bar);
3295 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
3296 GC gc = f->output_data.x->normal_gc;
3297 int width_trim = VERTICAL_SCROLL_BAR_WIDTH_TRIM;
3299 BLOCK_INPUT;
3301 x_scroll_bar_set_handle (bar, XINT (bar->start), XINT (bar->end), 1);
3303 /* Draw a one-pixel border just inside the edges of the scroll bar. */
3304 XDrawRectangle (FRAME_X_DISPLAY (f), w, gc,
3306 /* x, y, width, height */
3307 0, 0,
3308 XINT (bar->width) - 1 - width_trim - width_trim,
3309 XINT (bar->height) - 1);
3311 UNBLOCK_INPUT;
3314 /* Handle a mouse click on the scroll bar BAR. If *EMACS_EVENT's kind
3315 is set to something other than no_event, it is enqueued.
3317 This may be called from a signal handler, so we have to ignore GC
3318 mark bits. */
3319 static void
3320 x_scroll_bar_handle_click (bar, event, emacs_event)
3321 struct scroll_bar *bar;
3322 XEvent *event;
3323 struct input_event *emacs_event;
3325 if (! GC_WINDOWP (bar->window))
3326 abort ();
3328 emacs_event->kind = scroll_bar_click;
3329 emacs_event->code = event->xbutton.button - Button1;
3330 emacs_event->modifiers
3331 = (x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO
3332 (XFRAME (WINDOW_FRAME (XWINDOW (bar->window)))),
3333 event->xbutton.state)
3334 | (event->type == ButtonRelease
3335 ? up_modifier
3336 : down_modifier));
3337 emacs_event->frame_or_window = bar->window;
3338 emacs_event->timestamp = event->xbutton.time;
3340 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
3341 int internal_height
3342 = VERTICAL_SCROLL_BAR_INSIDE_HEIGHT (f, XINT (bar->height));
3343 int top_range
3344 = VERTICAL_SCROLL_BAR_TOP_RANGE (f, XINT (bar->height));
3345 int y = event->xbutton.y - VERTICAL_SCROLL_BAR_TOP_BORDER;
3347 if (y < 0) y = 0;
3348 if (y > top_range) y = top_range;
3350 if (y < XINT (bar->start))
3351 emacs_event->part = scroll_bar_above_handle;
3352 else if (y < XINT (bar->end) + VERTICAL_SCROLL_BAR_MIN_HANDLE)
3353 emacs_event->part = scroll_bar_handle;
3354 else
3355 emacs_event->part = scroll_bar_below_handle;
3357 /* Just because the user has clicked on the handle doesn't mean
3358 they want to drag it. Lisp code needs to be able to decide
3359 whether or not we're dragging. */
3360 #if 0
3361 /* If the user has just clicked on the handle, record where they're
3362 holding it. */
3363 if (event->type == ButtonPress
3364 && emacs_event->part == scroll_bar_handle)
3365 XSETINT (bar->dragging, y - XINT (bar->start));
3366 #endif
3368 /* If the user has released the handle, set it to its final position. */
3369 if (event->type == ButtonRelease
3370 && ! NILP (bar->dragging))
3372 int new_start = y - XINT (bar->dragging);
3373 int new_end = new_start + (XINT (bar->end) - XINT (bar->start));
3375 x_scroll_bar_set_handle (bar, new_start, new_end, 0);
3376 bar->dragging = Qnil;
3379 /* Same deal here as the other #if 0. */
3380 #if 0
3381 /* Clicks on the handle are always reported as occurring at the top of
3382 the handle. */
3383 if (emacs_event->part == scroll_bar_handle)
3384 emacs_event->x = bar->start;
3385 else
3386 XSETINT (emacs_event->x, y);
3387 #else
3388 XSETINT (emacs_event->x, y);
3389 #endif
3391 XSETINT (emacs_event->y, top_range);
3395 /* Handle some mouse motion while someone is dragging the scroll bar.
3397 This may be called from a signal handler, so we have to ignore GC
3398 mark bits. */
3399 static void
3400 x_scroll_bar_note_movement (bar, event)
3401 struct scroll_bar *bar;
3402 XEvent *event;
3404 FRAME_PTR f = XFRAME (XWINDOW (bar->window)->frame);
3406 last_mouse_movement_time = event->xmotion.time;
3408 f->mouse_moved = 1;
3409 XSETVECTOR (last_mouse_scroll_bar, bar);
3411 /* If we're dragging the bar, display it. */
3412 if (! GC_NILP (bar->dragging))
3414 /* Where should the handle be now? */
3415 int new_start = event->xmotion.y - XINT (bar->dragging);
3417 if (new_start != XINT (bar->start))
3419 int new_end = new_start + (XINT (bar->end) - XINT (bar->start));
3421 x_scroll_bar_set_handle (bar, new_start, new_end, 0);
3426 /* Return information to the user about the current position of the mouse
3427 on the scroll bar. */
3428 static void
3429 x_scroll_bar_report_motion (fp, bar_window, part, x, y, time)
3430 FRAME_PTR *fp;
3431 Lisp_Object *bar_window;
3432 enum scroll_bar_part *part;
3433 Lisp_Object *x, *y;
3434 unsigned long *time;
3436 struct scroll_bar *bar = XSCROLL_BAR (last_mouse_scroll_bar);
3437 Window w = SCROLL_BAR_X_WINDOW (bar);
3438 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
3439 int win_x, win_y;
3440 Window dummy_window;
3441 int dummy_coord;
3442 unsigned int dummy_mask;
3444 BLOCK_INPUT;
3446 /* Get the mouse's position relative to the scroll bar window, and
3447 report that. */
3448 if (! XQueryPointer (FRAME_X_DISPLAY (f), w,
3450 /* Root, child, root x and root y. */
3451 &dummy_window, &dummy_window,
3452 &dummy_coord, &dummy_coord,
3454 /* Position relative to scroll bar. */
3455 &win_x, &win_y,
3457 /* Mouse buttons and modifier keys. */
3458 &dummy_mask))
3460 else
3462 int inside_height
3463 = VERTICAL_SCROLL_BAR_INSIDE_HEIGHT (f, XINT (bar->height));
3464 int top_range
3465 = VERTICAL_SCROLL_BAR_TOP_RANGE (f, XINT (bar->height));
3467 win_y -= VERTICAL_SCROLL_BAR_TOP_BORDER;
3469 if (! NILP (bar->dragging))
3470 win_y -= XINT (bar->dragging);
3472 if (win_y < 0)
3473 win_y = 0;
3474 if (win_y > top_range)
3475 win_y = top_range;
3477 *fp = f;
3478 *bar_window = bar->window;
3480 if (! NILP (bar->dragging))
3481 *part = scroll_bar_handle;
3482 else if (win_y < XINT (bar->start))
3483 *part = scroll_bar_above_handle;
3484 else if (win_y < XINT (bar->end) + VERTICAL_SCROLL_BAR_MIN_HANDLE)
3485 *part = scroll_bar_handle;
3486 else
3487 *part = scroll_bar_below_handle;
3489 XSETINT (*x, win_y);
3490 XSETINT (*y, top_range);
3492 f->mouse_moved = 0;
3493 last_mouse_scroll_bar = Qnil;
3496 *time = last_mouse_movement_time;
3498 UNBLOCK_INPUT;
3502 /* The screen has been cleared so we may have changed foreground or
3503 background colors, and the scroll bars may need to be redrawn.
3504 Clear out the scroll bars, and ask for expose events, so we can
3505 redraw them. */
3507 x_scroll_bar_clear (f)
3508 FRAME_PTR f;
3510 Lisp_Object bar;
3512 /* We can have scroll bars even if this is 0,
3513 if we just turned off scroll bar mode.
3514 But in that case we should not clear them. */
3515 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
3516 for (bar = FRAME_SCROLL_BARS (f); VECTORP (bar);
3517 bar = XSCROLL_BAR (bar)->next)
3518 XClearArea (FRAME_X_DISPLAY (f), SCROLL_BAR_X_WINDOW (XSCROLL_BAR (bar)),
3519 0, 0, 0, 0, True);
3522 /* This processes Expose events from the menubar specific X event
3523 loop in xmenu.c. This allows to redisplay the frame if necessary
3524 when handling menubar or popup items. */
3526 void
3527 process_expose_from_menu (event)
3528 XEvent event;
3530 FRAME_PTR f;
3531 struct x_display_info *dpyinfo;
3533 BLOCK_INPUT;
3535 dpyinfo = x_display_info_for_display (event.xexpose.display);
3536 f = x_window_to_frame (dpyinfo, event.xexpose.window);
3537 if (f)
3539 if (f->async_visible == 0)
3541 f->async_visible = 1;
3542 f->async_iconified = 0;
3543 f->output_data.x->has_been_visible = 1;
3544 SET_FRAME_GARBAGED (f);
3546 else
3548 dumprectangle (x_window_to_frame (dpyinfo, event.xexpose.window),
3549 event.xexpose.x, event.xexpose.y,
3550 event.xexpose.width, event.xexpose.height);
3553 else
3555 struct scroll_bar *bar
3556 = x_window_to_scroll_bar (event.xexpose.window);
3558 if (bar)
3559 x_scroll_bar_expose (bar, &event);
3562 UNBLOCK_INPUT;
3565 /* Define a queue to save up SelectionRequest events for later handling. */
3567 struct selection_event_queue
3569 XEvent event;
3570 struct selection_event_queue *next;
3573 static struct selection_event_queue *queue;
3575 /* Nonzero means queue up certain events--don't process them yet. */
3576 static int x_queue_selection_requests;
3578 /* Queue up an X event *EVENT, to be processed later. */
3580 static void
3581 x_queue_event (f, event)
3582 FRAME_PTR f;
3583 XEvent *event;
3585 struct selection_event_queue *queue_tmp
3586 = (struct selection_event_queue *) malloc (sizeof (struct selection_event_queue));
3588 if (queue_tmp != NULL)
3590 queue_tmp->event = *event;
3591 queue_tmp->next = queue;
3592 queue = queue_tmp;
3596 /* Take all the queued events and put them back
3597 so that they get processed afresh. */
3599 static void
3600 x_unqueue_events (display)
3601 Display *display;
3603 while (queue != NULL)
3605 struct selection_event_queue *queue_tmp = queue;
3606 XPutBackEvent (display, &queue_tmp->event);
3607 queue = queue_tmp->next;
3608 free ((char *)queue_tmp);
3612 /* Start queuing SelectionRequest events. */
3614 void
3615 x_start_queuing_selection_requests (display)
3616 Display *display;
3618 x_queue_selection_requests++;
3621 /* Stop queuing SelectionRequest events. */
3623 void
3624 x_stop_queuing_selection_requests (display)
3625 Display *display;
3627 x_queue_selection_requests--;
3628 x_unqueue_events (display);
3631 /* The main X event-reading loop - XTread_socket. */
3633 /* Timestamp of enter window event. This is only used by XTread_socket,
3634 but we have to put it out here, since static variables within functions
3635 sometimes don't work. */
3636 static Time enter_timestamp;
3638 /* This holds the state XLookupString needs to implement dead keys
3639 and other tricks known as "compose processing". _X Window System_
3640 says that a portable program can't use this, but Stephen Gildea assures
3641 me that letting the compiler initialize it to zeros will work okay.
3643 This must be defined outside of XTread_socket, for the same reasons
3644 given for enter_timestamp, above. */
3645 static XComposeStatus compose_status;
3647 /* Record the last 100 characters stored
3648 to help debug the loss-of-chars-during-GC problem. */
3649 static int temp_index;
3650 static short temp_buffer[100];
3652 /* Set this to nonzero to fake an "X I/O error"
3653 on a particular display. */
3654 struct x_display_info *XTread_socket_fake_io_error;
3656 /* When we find no input here, we occasionally do a no-op command
3657 to verify that the X server is still running and we can still talk with it.
3658 We try all the open displays, one by one.
3659 This variable is used for cycling thru the displays. */
3660 static struct x_display_info *next_noop_dpyinfo;
3662 #define SET_SAVED_MENU_EVENT(size) { \
3663 if (f->output_data.x->saved_menu_event == 0) \
3664 f->output_data.x->saved_menu_event = (XEvent*)xmalloc (sizeof (XEvent)); \
3665 bcopy (&event, f->output_data.x->saved_menu_event, size); \
3666 if (numchars >= 1) \
3668 bufp->kind = menu_bar_activate_event; \
3669 XSETFRAME (bufp->frame_or_window, f); \
3670 bufp++; \
3671 count++; \
3672 numchars--; \
3675 #define SET_SAVED_BUTTON_EVENT SET_SAVED_MENU_EVENT (sizeof (XButtonEvent))
3676 #define SET_SAVED_KEY_EVENT SET_SAVED_MENU_EVENT (sizeof (XKeyEvent))
3678 /* Read events coming from the X server.
3679 This routine is called by the SIGIO handler.
3680 We return as soon as there are no more events to be read.
3682 Events representing keys are stored in buffer BUFP,
3683 which can hold up to NUMCHARS characters.
3684 We return the number of characters stored into the buffer,
3685 thus pretending to be `read'.
3687 EXPECTED is nonzero if the caller knows input is available. */
3690 XTread_socket (sd, bufp, numchars, expected)
3691 register int sd;
3692 /* register */ struct input_event *bufp;
3693 /* register */ int numchars;
3694 int expected;
3696 int count = 0;
3697 int nbytes = 0;
3698 int mask;
3699 int items_pending; /* How many items are in the X queue. */
3700 XEvent event;
3701 struct frame *f;
3702 int event_found = 0;
3703 int prefix;
3704 Lisp_Object part;
3705 struct x_display_info *dpyinfo;
3706 #ifdef HAVE_X_I18N
3707 Status status_return;
3708 #endif
3710 if (interrupt_input_blocked)
3712 interrupt_input_pending = 1;
3713 return -1;
3716 interrupt_input_pending = 0;
3717 BLOCK_INPUT;
3719 /* So people can tell when we have read the available input. */
3720 input_signal_count++;
3722 if (numchars <= 0)
3723 abort (); /* Don't think this happens. */
3725 /* Find the display we are supposed to read input for.
3726 It's the one communicating on descriptor SD. */
3727 for (dpyinfo = x_display_list; dpyinfo; dpyinfo = dpyinfo->next)
3729 #if 0 /* This ought to be unnecessary; let's verify it. */
3730 #ifdef FIOSNBIO
3731 /* If available, Xlib uses FIOSNBIO to make the socket
3732 non-blocking, and then looks for EWOULDBLOCK. If O_NDELAY is set,
3733 FIOSNBIO is ignored, and instead of signaling EWOULDBLOCK,
3734 a read returns 0, which Xlib interprets as equivalent to EPIPE. */
3735 fcntl (dpyinfo->connection, F_SETFL, 0);
3736 #endif /* ! defined (FIOSNBIO) */
3737 #endif
3739 #if 0 /* This code can't be made to work, with multiple displays,
3740 and appears not to be used on any system any more.
3741 Also keyboard.c doesn't turn O_NDELAY on and off
3742 for X connections. */
3743 #ifndef SIGIO
3744 #ifndef HAVE_SELECT
3745 if (! (fcntl (dpyinfo->connection, F_GETFL, 0) & O_NDELAY))
3747 extern int read_alarm_should_throw;
3748 read_alarm_should_throw = 1;
3749 XPeekEvent (dpyinfo->display, &event);
3750 read_alarm_should_throw = 0;
3752 #endif /* HAVE_SELECT */
3753 #endif /* SIGIO */
3754 #endif
3756 /* For debugging, this gives a way to fake an I/O error. */
3757 if (dpyinfo == XTread_socket_fake_io_error)
3759 XTread_socket_fake_io_error = 0;
3760 x_io_error_quitter (dpyinfo->display);
3763 while (XPending (dpyinfo->display) != 0)
3765 #ifdef USE_X_TOOLKIT
3766 /* needed to raise Motif submenus */
3767 XtAppNextEvent (Xt_app_con, &event);
3768 #else
3769 XNextEvent (dpyinfo->display, &event);
3770 #endif
3771 #ifdef HAVE_X_I18N
3773 struct frame *f1 = x_any_window_to_frame (dpyinfo,
3774 &event.xclient.window);
3775 /* The necessity of the following line took me
3776 a full work-day to decipher from the docs!! */
3777 if (f1 != 0 && FRAME_XIC (f1) && XFilterEvent (&event, None))
3778 break;
3780 #endif
3781 event_found = 1;
3783 switch (event.type)
3785 case ClientMessage:
3787 if (event.xclient.message_type
3788 == dpyinfo->Xatom_wm_protocols
3789 && event.xclient.format == 32)
3791 if (event.xclient.data.l[0]
3792 == dpyinfo->Xatom_wm_take_focus)
3794 f = x_window_to_frame (dpyinfo, event.xclient.window);
3795 /* Since we set WM_TAKE_FOCUS, we must call
3796 XSetInputFocus explicitly. But not if f is null,
3797 since that might be an event for a deleted frame. */
3798 #ifdef HAVE_X_I18N
3799 /* Not quite sure this is needed -pd */
3800 if (f)
3801 XSetICFocus (FRAME_XIC (f));
3802 #endif
3803 if (f)
3804 XSetInputFocus (event.xclient.display,
3805 event.xclient.window,
3806 RevertToPointerRoot,
3807 event.xclient.data.l[1]);
3808 /* Not certain about handling scroll bars here */
3810 else if (event.xclient.data.l[0]
3811 == dpyinfo->Xatom_wm_save_yourself)
3813 /* Save state modify the WM_COMMAND property to
3814 something which can reinstate us. This notifies
3815 the session manager, who's looking for such a
3816 PropertyNotify. Can restart processing when
3817 a keyboard or mouse event arrives. */
3818 if (numchars > 0)
3820 f = x_top_window_to_frame (dpyinfo,
3821 event.xclient.window);
3823 /* This is just so we only give real data once
3824 for a single Emacs process. */
3825 if (f == selected_frame)
3826 XSetCommand (FRAME_X_DISPLAY (f),
3827 event.xclient.window,
3828 initial_argv, initial_argc);
3829 else if (f)
3830 XSetCommand (FRAME_X_DISPLAY (f),
3831 event.xclient.window,
3832 0, 0);
3835 else if (event.xclient.data.l[0]
3836 == dpyinfo->Xatom_wm_delete_window)
3838 struct frame *f
3839 = x_any_window_to_frame (dpyinfo,
3840 event.xclient.window);
3842 if (f)
3844 if (numchars == 0)
3845 abort ();
3847 bufp->kind = delete_window_event;
3848 XSETFRAME (bufp->frame_or_window, f);
3849 bufp++;
3851 count += 1;
3852 numchars -= 1;
3856 else if (event.xclient.message_type
3857 == dpyinfo->Xatom_wm_configure_denied)
3860 else if (event.xclient.message_type
3861 == dpyinfo->Xatom_wm_window_moved)
3863 int new_x, new_y;
3864 struct frame *f
3865 = x_window_to_frame (dpyinfo, event.xclient.window);
3867 new_x = event.xclient.data.s[0];
3868 new_y = event.xclient.data.s[1];
3870 if (f)
3872 f->output_data.x->left_pos = new_x;
3873 f->output_data.x->top_pos = new_y;
3876 #ifdef HACK_EDITRES
3877 else if (event.xclient.message_type
3878 == dpyinfo->Xatom_editres)
3880 struct frame *f
3881 = x_any_window_to_frame (dpyinfo, event.xclient.window);
3882 _XEditResCheckMessages (f->output_data.x->widget, NULL,
3883 &event, NULL);
3885 #endif /* HACK_EDITRES */
3887 break;
3889 case SelectionNotify:
3890 #ifdef USE_X_TOOLKIT
3891 if (! x_window_to_frame (dpyinfo, event.xselection.requestor))
3892 goto OTHER;
3893 #endif /* not USE_X_TOOLKIT */
3894 x_handle_selection_notify (&event);
3895 break;
3897 case SelectionClear: /* Someone has grabbed ownership. */
3898 #ifdef USE_X_TOOLKIT
3899 if (! x_window_to_frame (dpyinfo, event.xselectionclear.window))
3900 goto OTHER;
3901 #endif /* USE_X_TOOLKIT */
3903 XSelectionClearEvent *eventp = (XSelectionClearEvent *) &event;
3905 if (numchars == 0)
3906 abort ();
3908 bufp->kind = selection_clear_event;
3909 SELECTION_EVENT_DISPLAY (bufp) = eventp->display;
3910 SELECTION_EVENT_SELECTION (bufp) = eventp->selection;
3911 SELECTION_EVENT_TIME (bufp) = eventp->time;
3912 bufp->frame_or_window = Qnil;
3913 bufp++;
3915 count += 1;
3916 numchars -= 1;
3918 break;
3920 case SelectionRequest: /* Someone wants our selection. */
3921 #ifdef USE_X_TOOLKIT
3922 if (!x_window_to_frame (dpyinfo, event.xselectionrequest.owner))
3923 goto OTHER;
3924 #endif /* USE_X_TOOLKIT */
3925 if (x_queue_selection_requests)
3926 x_queue_event (x_window_to_frame (dpyinfo, event.xselectionrequest.owner),
3927 &event);
3928 else
3930 XSelectionRequestEvent *eventp = (XSelectionRequestEvent *) &event;
3932 if (numchars == 0)
3933 abort ();
3935 bufp->kind = selection_request_event;
3936 SELECTION_EVENT_DISPLAY (bufp) = eventp->display;
3937 SELECTION_EVENT_REQUESTOR (bufp) = eventp->requestor;
3938 SELECTION_EVENT_SELECTION (bufp) = eventp->selection;
3939 SELECTION_EVENT_TARGET (bufp) = eventp->target;
3940 SELECTION_EVENT_PROPERTY (bufp) = eventp->property;
3941 SELECTION_EVENT_TIME (bufp) = eventp->time;
3942 bufp->frame_or_window = Qnil;
3943 bufp++;
3945 count += 1;
3946 numchars -= 1;
3948 break;
3950 case PropertyNotify:
3951 #ifdef USE_X_TOOLKIT
3952 if (!x_any_window_to_frame (dpyinfo, event.xproperty.window))
3953 goto OTHER;
3954 #endif /* not USE_X_TOOLKIT */
3955 x_handle_property_notify (&event);
3956 break;
3958 case ReparentNotify:
3959 f = x_top_window_to_frame (dpyinfo, event.xreparent.window);
3960 if (f)
3962 int x, y;
3963 f->output_data.x->parent_desc = event.xreparent.parent;
3964 x_real_positions (f, &x, &y);
3965 f->output_data.x->left_pos = x;
3966 f->output_data.x->top_pos = y;
3968 break;
3970 case Expose:
3971 f = x_window_to_frame (dpyinfo, event.xexpose.window);
3972 if (f)
3974 if (f->async_visible == 0)
3976 f->async_visible = 1;
3977 f->async_iconified = 0;
3978 f->output_data.x->has_been_visible = 1;
3979 SET_FRAME_GARBAGED (f);
3981 else
3982 dumprectangle (x_window_to_frame (dpyinfo,
3983 event.xexpose.window),
3984 event.xexpose.x, event.xexpose.y,
3985 event.xexpose.width, event.xexpose.height);
3987 else
3989 struct scroll_bar *bar
3990 = x_window_to_scroll_bar (event.xexpose.window);
3992 if (bar)
3993 x_scroll_bar_expose (bar, &event);
3994 #ifdef USE_X_TOOLKIT
3995 else
3996 goto OTHER;
3997 #endif /* USE_X_TOOLKIT */
3999 break;
4001 case GraphicsExpose: /* This occurs when an XCopyArea's
4002 source area was obscured or not
4003 available.*/
4004 f = x_window_to_frame (dpyinfo, event.xgraphicsexpose.drawable);
4005 if (f)
4007 dumprectangle (f,
4008 event.xgraphicsexpose.x, event.xgraphicsexpose.y,
4009 event.xgraphicsexpose.width,
4010 event.xgraphicsexpose.height);
4012 #ifdef USE_X_TOOLKIT
4013 else
4014 goto OTHER;
4015 #endif /* USE_X_TOOLKIT */
4016 break;
4018 case NoExpose: /* This occurs when an XCopyArea's
4019 source area was completely
4020 available */
4021 break;
4023 case UnmapNotify:
4024 f = x_top_window_to_frame (dpyinfo, event.xunmap.window);
4025 if (f) /* F may no longer exist if
4026 the frame was deleted. */
4028 /* While a frame is unmapped, display generation is
4029 disabled; you don't want to spend time updating a
4030 display that won't ever be seen. */
4031 f->async_visible = 0;
4032 /* We can't distinguish, from the event, whether the window
4033 has become iconified or invisible. So assume, if it
4034 was previously visible, than now it is iconified.
4035 But x_make_frame_invisible clears both
4036 the visible flag and the iconified flag;
4037 and that way, we know the window is not iconified now. */
4038 if (FRAME_VISIBLE_P (f) || FRAME_ICONIFIED_P (f))
4040 f->async_iconified = 1;
4042 bufp->kind = iconify_event;
4043 XSETFRAME (bufp->frame_or_window, f);
4044 bufp++;
4045 count++;
4046 numchars--;
4049 goto OTHER;
4051 case MapNotify:
4052 /* We use x_top_window_to_frame because map events can come
4053 for subwindows and they don't mean that the frame is visible. */
4054 f = x_top_window_to_frame (dpyinfo, event.xmap.window);
4055 if (f)
4057 f->async_visible = 1;
4058 f->async_iconified = 0;
4059 f->output_data.x->has_been_visible = 1;
4061 /* wait_reading_process_input will notice this and update
4062 the frame's display structures. */
4063 SET_FRAME_GARBAGED (f);
4065 if (f->iconified)
4067 bufp->kind = deiconify_event;
4068 XSETFRAME (bufp->frame_or_window, f);
4069 bufp++;
4070 count++;
4071 numchars--;
4073 else if (! NILP (Vframe_list)
4074 && ! NILP (XCONS (Vframe_list)->cdr))
4075 /* Force a redisplay sooner or later
4076 to update the frame titles
4077 in case this is the second frame. */
4078 record_asynch_buffer_change ();
4080 goto OTHER;
4082 /* Turn off processing if we become fully obscured. */
4083 case VisibilityNotify:
4084 break;
4086 case KeyPress:
4087 f = x_any_window_to_frame (dpyinfo, event.xkey.window);
4089 if (f != 0)
4091 KeySym keysym, orig_keysym;
4092 /* al%imercury@uunet.uu.net says that making this 81 instead of
4093 80 fixed a bug whereby meta chars made his Emacs hang. */
4094 unsigned char copy_buffer[81];
4095 int modifiers;
4097 #if 0 /* This was how we made f10 work in Motif.
4098 The drawback is, you can't type at Emacs when the
4099 the mouse is in the menu bar. So it is better to
4100 turn off f10 in Motif and let Emacs handle it. */
4101 #ifdef USE_MOTIF
4102 if (lw_window_is_in_menubar (event.xkey.window,
4103 f->output_data.x->menubar_widget
4106 SET_SAVED_KEY_EVENT;
4107 break;
4109 #endif /* USE_MOTIF */
4110 #endif /* 0 */
4112 event.xkey.state
4113 |= x_emacs_to_x_modifiers (FRAME_X_DISPLAY_INFO (f),
4114 extra_keyboard_modifiers);
4115 modifiers = event.xkey.state;
4117 /* This will have to go some day... */
4119 /* make_lispy_event turns chars into control chars.
4120 Don't do it here because XLookupString is too eager. */
4121 event.xkey.state &= ~ControlMask;
4122 event.xkey.state &= ~(dpyinfo->meta_mod_mask
4123 | dpyinfo->super_mod_mask
4124 | dpyinfo->hyper_mod_mask
4125 | dpyinfo->alt_mod_mask);
4127 /* In case Meta is ComposeCharacter,
4128 clear its status. According to Markus Ehrnsperger
4129 Markus.Ehrnsperger@lehrstuhl-bross.physik.uni-muenchen.de
4130 this enables ComposeCharacter to work whether or
4131 not it is combined with Meta. */
4132 if (modifiers & dpyinfo->meta_mod_mask)
4133 bzero (&compose_status, sizeof (compose_status));
4135 #ifdef HAVE_X_I18N
4136 if (FRAME_XIC (f))
4138 nbytes = XmbLookupString (FRAME_XIC (f),
4139 &event.xkey, copy_buffer,
4140 80, &keysym,
4141 &status_return);
4143 else
4144 nbytes = XLookupString (&event.xkey, copy_buffer,
4145 80, &keysym, &compose_status);
4146 #else
4147 nbytes = XLookupString (&event.xkey, copy_buffer,
4148 80, &keysym, &compose_status);
4149 #endif
4151 orig_keysym = keysym;
4153 if (numchars > 1)
4155 if (((keysym >= XK_BackSpace && keysym <= XK_Escape)
4156 || keysym == XK_Delete
4157 #ifdef XK_ISO_Left_Tab
4158 || (keysym >= XK_ISO_Left_Tab && keysym <= XK_ISO_Enter)
4159 #endif
4160 || IsCursorKey (keysym) /* 0xff50 <= x < 0xff60 */
4161 || IsMiscFunctionKey (keysym) /* 0xff60 <= x < VARIES */
4162 #ifdef HPUX
4163 /* This recognizes the "extended function keys".
4164 It seems there's no cleaner way.
4165 Test IsModifierKey to avoid handling mode_switch
4166 incorrectly. */
4167 || ((unsigned) (keysym) >= XK_Select
4168 && (unsigned)(keysym) < XK_KP_Space)
4169 #endif
4170 #ifdef XK_dead_circumflex
4171 || orig_keysym == XK_dead_circumflex
4172 #endif
4173 #ifdef XK_dead_grave
4174 || orig_keysym == XK_dead_grave
4175 #endif
4176 #ifdef XK_dead_tilde
4177 || orig_keysym == XK_dead_tilde
4178 #endif
4179 #ifdef XK_dead_diaeresis
4180 || orig_keysym == XK_dead_diaeresis
4181 #endif
4182 #ifdef XK_dead_macron
4183 || orig_keysym == XK_dead_macron
4184 #endif
4185 #ifdef XK_dead_degree
4186 || orig_keysym == XK_dead_degree
4187 #endif
4188 #ifdef XK_dead_acute
4189 || orig_keysym == XK_dead_acute
4190 #endif
4191 #ifdef XK_dead_cedilla
4192 || orig_keysym == XK_dead_cedilla
4193 #endif
4194 #ifdef XK_dead_breve
4195 || orig_keysym == XK_dead_breve
4196 #endif
4197 #ifdef XK_dead_ogonek
4198 || orig_keysym == XK_dead_ogonek
4199 #endif
4200 #ifdef XK_dead_caron
4201 || orig_keysym == XK_dead_caron
4202 #endif
4203 #ifdef XK_dead_doubleacute
4204 || orig_keysym == XK_dead_doubleacute
4205 #endif
4206 #ifdef XK_dead_abovedot
4207 || orig_keysym == XK_dead_abovedot
4208 #endif
4209 || IsKeypadKey (keysym) /* 0xff80 <= x < 0xffbe */
4210 || IsFunctionKey (keysym) /* 0xffbe <= x < 0xffe1 */
4211 /* Any "vendor-specific" key is ok. */
4212 || (orig_keysym & (1 << 28)))
4213 && ! (IsModifierKey (orig_keysym)
4214 #ifndef HAVE_X11R5
4215 #ifdef XK_Mode_switch
4216 || ((unsigned)(orig_keysym) == XK_Mode_switch)
4217 #endif
4218 #ifdef XK_Num_Lock
4219 || ((unsigned)(orig_keysym) == XK_Num_Lock)
4220 #endif
4221 #endif /* not HAVE_X11R5 */
4224 if (temp_index == sizeof temp_buffer / sizeof (short))
4225 temp_index = 0;
4226 temp_buffer[temp_index++] = keysym;
4227 bufp->kind = non_ascii_keystroke;
4228 bufp->code = keysym;
4229 XSETFRAME (bufp->frame_or_window, f);
4230 bufp->modifiers
4231 = x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO (f),
4232 modifiers);
4233 bufp->timestamp = event.xkey.time;
4234 bufp++;
4235 count++;
4236 numchars--;
4238 else if (numchars > nbytes)
4240 register int i;
4242 for (i = 0; i < nbytes; i++)
4244 if (temp_index == sizeof temp_buffer / sizeof (short))
4245 temp_index = 0;
4246 temp_buffer[temp_index++] = copy_buffer[i];
4247 bufp->kind = ascii_keystroke;
4248 bufp->code = copy_buffer[i];
4249 XSETFRAME (bufp->frame_or_window, f);
4250 bufp->modifiers
4251 = x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO (f),
4252 modifiers);
4253 bufp->timestamp = event.xkey.time;
4254 bufp++;
4257 count += nbytes;
4258 numchars -= nbytes;
4260 else
4261 abort ();
4263 else
4264 abort ();
4266 goto OTHER;
4268 /* Here's a possible interpretation of the whole
4269 FocusIn-EnterNotify FocusOut-LeaveNotify mess. If you get a
4270 FocusIn event, you have to get a FocusOut event before you
4271 relinquish the focus. If you haven't received a FocusIn event,
4272 then a mere LeaveNotify is enough to free you. */
4274 case EnterNotify:
4275 f = x_any_window_to_frame (dpyinfo, event.xcrossing.window);
4277 if (event.xcrossing.focus) /* Entered Window */
4279 /* Avoid nasty pop/raise loops. */
4280 if (f && (!(f->auto_raise)
4281 || !(f->auto_lower)
4282 || (event.xcrossing.time - enter_timestamp) > 500))
4284 x_new_focus_frame (dpyinfo, f);
4285 enter_timestamp = event.xcrossing.time;
4288 else if (f == dpyinfo->x_focus_frame)
4289 x_new_focus_frame (dpyinfo, 0);
4290 /* EnterNotify counts as mouse movement,
4291 so update things that depend on mouse position. */
4292 if (f)
4293 note_mouse_movement (f, &event.xmotion);
4294 goto OTHER;
4296 case FocusIn:
4297 f = x_any_window_to_frame (dpyinfo, event.xfocus.window);
4298 if (event.xfocus.detail != NotifyPointer)
4299 dpyinfo->x_focus_event_frame = f;
4300 if (f)
4301 x_new_focus_frame (dpyinfo, f);
4303 #ifdef HAVE_X_I18N
4304 if (f && FRAME_XIC (f))
4305 XSetICFocus (FRAME_XIC (f));
4306 #endif
4308 goto OTHER;
4310 case LeaveNotify:
4311 f = x_top_window_to_frame (dpyinfo, event.xcrossing.window);
4312 if (f)
4314 if (f == dpyinfo->mouse_face_mouse_frame)
4315 /* If we move outside the frame,
4316 then we're certainly no longer on any text in the frame. */
4317 clear_mouse_face (dpyinfo);
4319 if (event.xcrossing.focus)
4320 x_mouse_leave (dpyinfo);
4321 else
4323 if (f == dpyinfo->x_focus_event_frame)
4324 dpyinfo->x_focus_event_frame = 0;
4325 if (f == dpyinfo->x_focus_frame)
4326 x_new_focus_frame (dpyinfo, 0);
4329 goto OTHER;
4331 case FocusOut:
4332 f = x_any_window_to_frame (dpyinfo, event.xfocus.window);
4333 if (event.xfocus.detail != NotifyPointer
4334 && f == dpyinfo->x_focus_event_frame)
4335 dpyinfo->x_focus_event_frame = 0;
4336 if (f && f == dpyinfo->x_focus_frame)
4337 x_new_focus_frame (dpyinfo, 0);
4339 #ifdef HAVE_X_I18N
4340 if (f && FRAME_XIC (f))
4341 XUnsetICFocus (FRAME_XIC (f));
4342 #endif
4344 goto OTHER;
4346 case MotionNotify:
4348 if (dpyinfo->grabbed && last_mouse_frame
4349 && FRAME_LIVE_P (last_mouse_frame))
4350 f = last_mouse_frame;
4351 else
4352 f = x_window_to_frame (dpyinfo, event.xmotion.window);
4353 if (f)
4354 note_mouse_movement (f, &event.xmotion);
4355 else
4357 struct scroll_bar *bar
4358 = x_window_to_scroll_bar (event.xmotion.window);
4360 if (bar)
4361 x_scroll_bar_note_movement (bar, &event);
4363 /* If we move outside the frame,
4364 then we're certainly no longer on any text in the frame. */
4365 clear_mouse_face (dpyinfo);
4368 goto OTHER;
4370 case ConfigureNotify:
4371 f = x_top_window_to_frame (dpyinfo, event.xconfigure.window);
4372 if (f)
4374 #ifndef USE_X_TOOLKIT
4375 /* In the toolkit version, change_frame_size
4376 is called by the code that handles resizing
4377 of the EmacsFrame widget. */
4379 int rows = PIXEL_TO_CHAR_HEIGHT (f, event.xconfigure.height);
4380 int columns = PIXEL_TO_CHAR_WIDTH (f, event.xconfigure.width);
4382 /* Even if the number of character rows and columns has
4383 not changed, the font size may have changed, so we need
4384 to check the pixel dimensions as well. */
4385 if (columns != f->width
4386 || rows != f->height
4387 || event.xconfigure.width != f->output_data.x->pixel_width
4388 || event.xconfigure.height != f->output_data.x->pixel_height)
4390 change_frame_size (f, rows, columns, 0, 1);
4391 SET_FRAME_GARBAGED (f);
4392 cancel_mouse_face (f);
4394 #endif
4396 f->output_data.x->pixel_width = event.xconfigure.width;
4397 f->output_data.x->pixel_height = event.xconfigure.height;
4399 /* What we have now is the position of Emacs's own window.
4400 Convert that to the position of the window manager window. */
4401 x_real_positions (f, &f->output_data.x->left_pos,
4402 &f->output_data.x->top_pos);
4404 if (f->output_data.x->parent_desc != FRAME_X_DISPLAY_INFO (f)->root_window)
4406 /* Since the WM decorations come below top_pos now,
4407 we must put them below top_pos in the future. */
4408 f->output_data.x->win_gravity = NorthWestGravity;
4409 x_wm_set_size_hint (f, (long) 0, 0);
4412 goto OTHER;
4414 case ButtonPress:
4415 case ButtonRelease:
4417 /* If we decide we want to generate an event to be seen
4418 by the rest of Emacs, we put it here. */
4419 struct input_event emacs_event;
4420 emacs_event.kind = no_event;
4422 bzero (&compose_status, sizeof (compose_status));
4424 if (dpyinfo->grabbed && last_mouse_frame
4425 && FRAME_LIVE_P (last_mouse_frame))
4426 f = last_mouse_frame;
4427 else
4428 f = x_window_to_frame (dpyinfo, event.xbutton.window);
4430 if (f)
4432 if (!dpyinfo->x_focus_frame || f == dpyinfo->x_focus_frame)
4433 construct_mouse_click (&emacs_event, &event, f);
4435 else
4437 struct scroll_bar *bar
4438 = x_window_to_scroll_bar (event.xbutton.window);
4440 if (bar)
4441 x_scroll_bar_handle_click (bar, &event, &emacs_event);
4444 if (event.type == ButtonPress)
4446 dpyinfo->grabbed |= (1 << event.xbutton.button);
4447 last_mouse_frame = f;
4449 else
4451 dpyinfo->grabbed &= ~(1 << event.xbutton.button);
4454 if (numchars >= 1 && emacs_event.kind != no_event)
4456 bcopy (&emacs_event, bufp, sizeof (struct input_event));
4457 bufp++;
4458 count++;
4459 numchars--;
4462 #ifdef USE_X_TOOLKIT
4463 f = x_menubar_window_to_frame (dpyinfo, event.xbutton.window);
4464 /* For a down-event in the menu bar,
4465 don't pass it to Xt right now.
4466 Instead, save it away
4467 and we will pass it to Xt from kbd_buffer_get_event.
4468 That way, we can run some Lisp code first. */
4469 if (f && event.type == ButtonPress
4470 /* Verify the event is really within the menu bar
4471 and not just sent to it due to grabbing. */
4472 && event.xbutton.x >= 0
4473 && event.xbutton.x < f->output_data.x->pixel_width
4474 && event.xbutton.y >= 0
4475 && event.xbutton.y < f->output_data.x->menubar_height
4476 && event.xbutton.same_screen)
4478 SET_SAVED_BUTTON_EVENT;
4479 XSETFRAME (last_mouse_press_frame, f);
4481 else if (event.type == ButtonPress)
4483 last_mouse_press_frame = Qnil;
4484 goto OTHER;
4486 #ifdef USE_MOTIF /* This should do not harm for Lucid,
4487 but I am trying to be cautious. */
4488 else if (event.type == ButtonRelease)
4490 if (!NILP (last_mouse_press_frame))
4492 f = XFRAME (last_mouse_press_frame);
4493 if (f->output_data.x)
4495 SET_SAVED_BUTTON_EVENT;
4498 else
4499 goto OTHER;
4501 #endif /* USE_MOTIF */
4502 else
4503 goto OTHER;
4504 #endif /* USE_X_TOOLKIT */
4506 break;
4508 case CirculateNotify:
4509 break;
4510 case CirculateRequest:
4511 break;
4513 case MappingNotify:
4514 /* Someone has changed the keyboard mapping - update the
4515 local cache. */
4516 switch (event.xmapping.request)
4518 case MappingModifier:
4519 x_find_modifier_meanings (dpyinfo);
4520 /* This is meant to fall through. */
4521 case MappingKeyboard:
4522 XRefreshKeyboardMapping (&event.xmapping);
4524 goto OTHER;
4526 default:
4527 OTHER:
4528 #ifdef USE_X_TOOLKIT
4529 BLOCK_INPUT;
4530 XtDispatchEvent (&event);
4531 UNBLOCK_INPUT;
4532 #endif /* USE_X_TOOLKIT */
4533 break;
4538 /* On some systems, an X bug causes Emacs to get no more events
4539 when the window is destroyed. Detect that. (1994.) */
4540 if (! event_found)
4542 /* Emacs and the X Server eats up CPU time if XNoOp is done every time.
4543 One XNOOP in 100 loops will make Emacs terminate.
4544 B. Bretthauer, 1994 */
4545 x_noop_count++;
4546 if (x_noop_count >= 100)
4548 x_noop_count=0;
4550 if (next_noop_dpyinfo == 0)
4551 next_noop_dpyinfo = x_display_list;
4553 XNoOp (next_noop_dpyinfo->display);
4555 /* Each time we get here, cycle through the displays now open. */
4556 next_noop_dpyinfo = next_noop_dpyinfo->next;
4560 /* If the focus was just given to an autoraising frame,
4561 raise it now. */
4562 /* ??? This ought to be able to handle more than one such frame. */
4563 if (pending_autoraise_frame)
4565 x_raise_frame (pending_autoraise_frame);
4566 pending_autoraise_frame = 0;
4569 UNBLOCK_INPUT;
4570 return count;
4573 /* Drawing the cursor. */
4576 /* Draw a hollow box cursor on frame F at X, Y.
4577 Don't change the inside of the box. */
4579 static void
4580 x_draw_box (f, x, y)
4581 struct frame *f;
4582 int x, y;
4584 int left = CHAR_TO_PIXEL_COL (f, x);
4585 int top = CHAR_TO_PIXEL_ROW (f, y);
4586 int width = FONT_WIDTH (f->output_data.x->font);
4587 int height = f->output_data.x->line_height;
4588 int c = FAST_GLYPH_CHAR (f->phys_cursor_glyph);
4589 int charset = CHAR_CHARSET (c);
4591 /* If cursor is on a multi-column character, multiply WIDTH by columns. */
4592 width *= (charset == CHARSET_COMPOSITION
4593 ? cmpchar_table[COMPOSITE_CHAR_ID (c)]->width
4594 : CHARSET_WIDTH (charset));
4595 XDrawRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
4596 f->output_data.x->cursor_gc,
4597 left, top, width - 1, height - 1);
4600 /* Clear the cursor of frame F to background color,
4601 and mark the cursor as not shown.
4602 This is used when the text where the cursor is
4603 is about to be rewritten. */
4605 static void
4606 clear_cursor (f)
4607 struct frame *f;
4609 int mask;
4611 if (! FRAME_VISIBLE_P (f)
4612 || ! f->phys_cursor_on)
4613 return;
4615 x_update_cursor (f, 0);
4616 f->phys_cursor_on = 0;
4619 /* Redraw the glyph at ROW, COLUMN on frame F, in the style
4620 HIGHLIGHT. HIGHLIGHT is as defined for dumpglyphs. Return the
4621 glyph drawn. */
4623 static void
4624 x_draw_single_glyph (f, row, column, glyph, highlight)
4625 struct frame *f;
4626 int row, column;
4627 GLYPH glyph;
4628 int highlight;
4630 dumpglyphs (f,
4631 CHAR_TO_PIXEL_COL (f, column),
4632 CHAR_TO_PIXEL_ROW (f, row),
4633 &glyph, 1, highlight, 0, NULL);
4636 static void
4637 x_display_bar_cursor (f, on, x, y)
4638 struct frame *f;
4639 int on;
4640 int x, y;
4642 struct frame_glyphs *current_glyphs = FRAME_CURRENT_GLYPHS (f);
4644 /* This is pointless on invisible frames, and dangerous on garbaged
4645 frames; in the latter case, the frame may be in the midst of
4646 changing its size, and x and y may be off the frame. */
4647 if (! FRAME_VISIBLE_P (f) || FRAME_GARBAGED_P (f))
4648 return;
4650 if (! on && ! f->phys_cursor_on)
4651 return;
4653 /* If there is anything wrong with the current cursor state, remove it. */
4654 if (f->phys_cursor_on
4655 && (!on
4656 || f->phys_cursor_x != x
4657 || f->phys_cursor_y != y
4658 || f->output_data.x->current_cursor != bar_cursor))
4660 /* Erase the cursor by redrawing the character underneath it. */
4661 x_draw_single_glyph (f, f->phys_cursor_y, f->phys_cursor_x,
4662 f->phys_cursor_glyph,
4663 current_glyphs->highlight[f->phys_cursor_y]);
4664 f->phys_cursor_on = 0;
4667 /* If we now need a cursor in the new place or in the new form, do it so. */
4668 if (on
4669 && (! f->phys_cursor_on
4670 || (f->output_data.x->current_cursor != bar_cursor)))
4672 f->phys_cursor_glyph
4673 = ((current_glyphs->enable[y]
4674 && x < current_glyphs->used[y])
4675 ? current_glyphs->glyphs[y][x]
4676 : SPACEGLYPH);
4677 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
4678 f->output_data.x->cursor_gc,
4679 CHAR_TO_PIXEL_COL (f, x),
4680 CHAR_TO_PIXEL_ROW (f, y),
4681 max (f->output_data.x->cursor_width, 1),
4682 f->output_data.x->line_height);
4684 f->phys_cursor_x = x;
4685 f->phys_cursor_y = y;
4686 f->phys_cursor_on = 1;
4688 f->output_data.x->current_cursor = bar_cursor;
4691 if (updating_frame != f)
4692 XFlush (FRAME_X_DISPLAY (f));
4696 /* Turn the displayed cursor of frame F on or off according to ON.
4697 If ON is nonzero, where to put the cursor is specified by X and Y. */
4699 static void
4700 x_display_box_cursor (f, on, x, y)
4701 struct frame *f;
4702 int on;
4703 int x, y;
4705 struct frame_glyphs *current_glyphs = FRAME_CURRENT_GLYPHS (f);
4707 /* This is pointless on invisible frames, and dangerous on garbaged
4708 frames; in the latter case, the frame may be in the midst of
4709 changing its size, and x and y may be off the frame. */
4710 if (! FRAME_VISIBLE_P (f) || FRAME_GARBAGED_P (f))
4711 return;
4713 /* If cursor is off and we want it off, return quickly. */
4714 if (!on && ! f->phys_cursor_on)
4715 return;
4717 /* If cursor is currently being shown and we don't want it to be
4718 or it is in the wrong place,
4719 or we want a hollow box and it's not so, (pout!)
4720 erase it. */
4721 if (f->phys_cursor_on
4722 && (!on
4723 || f->phys_cursor_x != x
4724 || f->phys_cursor_y != y
4725 || (f->output_data.x->current_cursor != hollow_box_cursor
4726 && (f != FRAME_X_DISPLAY_INFO (f)->x_highlight_frame))))
4728 int mouse_face_here = 0;
4729 struct frame_glyphs *active_glyphs = FRAME_CURRENT_GLYPHS (f);
4731 /* If the cursor is in the mouse face area, redisplay that when
4732 we clear the cursor. */
4733 if (f == FRAME_X_DISPLAY_INFO (f)->mouse_face_mouse_frame
4735 (f->phys_cursor_y > FRAME_X_DISPLAY_INFO (f)->mouse_face_beg_row
4736 || (f->phys_cursor_y == FRAME_X_DISPLAY_INFO (f)->mouse_face_beg_row
4737 && f->phys_cursor_x >= FRAME_X_DISPLAY_INFO (f)->mouse_face_beg_col))
4739 (f->phys_cursor_y < FRAME_X_DISPLAY_INFO (f)->mouse_face_end_row
4740 || (f->phys_cursor_y == FRAME_X_DISPLAY_INFO (f)->mouse_face_end_row
4741 && f->phys_cursor_x < FRAME_X_DISPLAY_INFO (f)->mouse_face_end_col))
4742 /* Don't redraw the cursor's spot in mouse face
4743 if it is at the end of a line (on a newline).
4744 The cursor appears there, but mouse highlighting does not. */
4745 && active_glyphs->used[f->phys_cursor_y] > f->phys_cursor_x)
4746 mouse_face_here = 1;
4748 /* If the font is not as tall as a whole line,
4749 we must explicitly clear the line's whole height. */
4750 if (FONT_HEIGHT (f->output_data.x->font) != f->output_data.x->line_height)
4751 XClearArea (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
4752 CHAR_TO_PIXEL_COL (f, f->phys_cursor_x),
4753 CHAR_TO_PIXEL_ROW (f, f->phys_cursor_y),
4754 FONT_WIDTH (f->output_data.x->font),
4755 f->output_data.x->line_height, False);
4756 /* Erase the cursor by redrawing the character underneath it. */
4757 x_draw_single_glyph (f, f->phys_cursor_y, f->phys_cursor_x,
4758 f->phys_cursor_glyph,
4759 (mouse_face_here
4761 : current_glyphs->highlight[f->phys_cursor_y]));
4762 f->phys_cursor_on = 0;
4765 /* If we want to show a cursor,
4766 or we want a box cursor and it's not so,
4767 write it in the right place. */
4768 if (on
4769 && (! f->phys_cursor_on
4770 || (f->output_data.x->current_cursor != filled_box_cursor
4771 && f == FRAME_X_DISPLAY_INFO (f)->x_highlight_frame)))
4773 f->phys_cursor_glyph
4774 = ((current_glyphs->enable[y]
4775 && x < current_glyphs->used[y])
4776 ? current_glyphs->glyphs[y][x]
4777 : SPACEGLYPH);
4778 if (f != FRAME_X_DISPLAY_INFO (f)->x_highlight_frame)
4780 x_draw_box (f, x, y);
4781 f->output_data.x->current_cursor = hollow_box_cursor;
4783 else
4785 x_draw_single_glyph (f, y, x,
4786 f->phys_cursor_glyph, 2);
4787 f->output_data.x->current_cursor = filled_box_cursor;
4790 f->phys_cursor_x = x;
4791 f->phys_cursor_y = y;
4792 f->phys_cursor_on = 1;
4795 if (updating_frame != f)
4796 XFlush (FRAME_X_DISPLAY (f));
4799 /* Display the cursor on frame F, or clear it, according to ON.
4800 Also set the frame's cursor position to X and Y. */
4802 x_display_cursor (f, on, x, y)
4803 struct frame *f;
4804 int on;
4805 int x, y;
4807 BLOCK_INPUT;
4809 if (FRAME_DESIRED_CURSOR (f) == filled_box_cursor)
4810 x_display_box_cursor (f, on, x, y);
4811 else if (FRAME_DESIRED_CURSOR (f) == bar_cursor)
4812 x_display_bar_cursor (f, on, x, y);
4813 else
4814 /* Those are the only two we have implemented! */
4815 abort ();
4817 UNBLOCK_INPUT;
4820 /* Display the cursor on frame F, or clear it, according to ON.
4821 Don't change the cursor's position. */
4823 x_update_cursor (f, on)
4824 struct frame *f;
4825 int on;
4827 BLOCK_INPUT;
4829 if (FRAME_DESIRED_CURSOR (f) == filled_box_cursor)
4830 x_display_box_cursor (f, on, f->phys_cursor_x, f->phys_cursor_y);
4831 else if (FRAME_DESIRED_CURSOR (f) == bar_cursor)
4832 x_display_bar_cursor (f, on, f->phys_cursor_x, f->phys_cursor_y);
4833 else
4834 /* Those are the only two we have implemented! */
4835 abort ();
4837 UNBLOCK_INPUT;
4840 /* Icons. */
4842 /* Refresh bitmap kitchen sink icon for frame F
4843 when we get an expose event for it. */
4845 refreshicon (f)
4846 struct frame *f;
4848 /* Normally, the window manager handles this function. */
4851 /* Make the x-window of frame F use the gnu icon bitmap. */
4854 x_bitmap_icon (f, file)
4855 struct frame *f;
4856 Lisp_Object file;
4858 int mask, bitmap_id;
4859 Window icon_window;
4861 if (FRAME_X_WINDOW (f) == 0)
4862 return 1;
4864 /* Free up our existing icon bitmap if any. */
4865 if (f->output_data.x->icon_bitmap > 0)
4866 x_destroy_bitmap (f, f->output_data.x->icon_bitmap);
4867 f->output_data.x->icon_bitmap = 0;
4869 if (STRINGP (file))
4870 bitmap_id = x_create_bitmap_from_file (f, file);
4871 else
4873 /* Create the GNU bitmap if necessary. */
4874 if (FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id < 0)
4875 FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id
4876 = x_create_bitmap_from_data (f, gnu_bits,
4877 gnu_width, gnu_height);
4879 /* The first time we create the GNU bitmap,
4880 this increments the refcount one extra time.
4881 As a result, the GNU bitmap is never freed.
4882 That way, we don't have to worry about allocating it again. */
4883 x_reference_bitmap (f, FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id);
4885 bitmap_id = FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id;
4888 x_wm_set_icon_pixmap (f, bitmap_id);
4889 f->output_data.x->icon_bitmap = bitmap_id;
4891 return 0;
4895 /* Make the x-window of frame F use a rectangle with text.
4896 Use ICON_NAME as the text. */
4899 x_text_icon (f, icon_name)
4900 struct frame *f;
4901 char *icon_name;
4903 if (FRAME_X_WINDOW (f) == 0)
4904 return 1;
4906 #ifdef HAVE_X11R4
4908 XTextProperty text;
4909 text.value = (unsigned char *) icon_name;
4910 text.encoding = XA_STRING;
4911 text.format = 8;
4912 text.nitems = strlen (icon_name);
4913 #ifdef USE_X_TOOLKIT
4914 XSetWMIconName (FRAME_X_DISPLAY (f), XtWindow (f->output_data.x->widget),
4915 &text);
4916 #else /* not USE_X_TOOLKIT */
4917 XSetWMIconName (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), &text);
4918 #endif /* not USE_X_TOOLKIT */
4920 #else /* not HAVE_X11R4 */
4921 XSetIconName (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), icon_name);
4922 #endif /* not HAVE_X11R4 */
4924 if (f->output_data.x->icon_bitmap > 0)
4925 x_destroy_bitmap (f, f->output_data.x->icon_bitmap);
4926 f->output_data.x->icon_bitmap = 0;
4927 x_wm_set_icon_pixmap (f, 0);
4929 return 0;
4932 #define X_ERROR_MESSAGE_SIZE 200
4934 /* If non-nil, this should be a string.
4935 It means catch X errors and store the error message in this string. */
4937 static Lisp_Object x_error_message_string;
4939 /* An X error handler which stores the error message in
4940 x_error_message_string. This is called from x_error_handler if
4941 x_catch_errors is in effect. */
4943 static int
4944 x_error_catcher (display, error)
4945 Display *display;
4946 XErrorEvent *error;
4948 XGetErrorText (display, error->error_code,
4949 XSTRING (x_error_message_string)->data,
4950 X_ERROR_MESSAGE_SIZE);
4953 /* Begin trapping X errors for display DPY. Actually we trap X errors
4954 for all displays, but DPY should be the display you are actually
4955 operating on.
4957 After calling this function, X protocol errors no longer cause
4958 Emacs to exit; instead, they are recorded in the string
4959 stored in x_error_message_string.
4961 Calling x_check_errors signals an Emacs error if an X error has
4962 occurred since the last call to x_catch_errors or x_check_errors.
4964 Calling x_uncatch_errors resumes the normal error handling. */
4966 void x_check_errors ();
4967 static Lisp_Object x_catch_errors_unwind ();
4970 x_catch_errors (dpy)
4971 Display *dpy;
4973 int count = specpdl_ptr - specpdl;
4975 /* Make sure any errors from previous requests have been dealt with. */
4976 XSync (dpy, False);
4978 record_unwind_protect (x_catch_errors_unwind, x_error_message_string);
4980 x_error_message_string = make_uninit_string (X_ERROR_MESSAGE_SIZE);
4981 XSTRING (x_error_message_string)->data[0] = 0;
4983 return count;
4986 /* Unbind the binding that we made to check for X errors. */
4988 static Lisp_Object
4989 x_catch_errors_unwind (old_val)
4990 Lisp_Object old_val;
4992 x_error_message_string = old_val;
4993 return Qnil;
4996 /* If any X protocol errors have arrived since the last call to
4997 x_catch_errors or x_check_errors, signal an Emacs error using
4998 sprintf (a buffer, FORMAT, the x error message text) as the text. */
5000 void
5001 x_check_errors (dpy, format)
5002 Display *dpy;
5003 char *format;
5005 /* Make sure to catch any errors incurred so far. */
5006 XSync (dpy, False);
5008 if (XSTRING (x_error_message_string)->data[0])
5009 error (format, XSTRING (x_error_message_string)->data);
5012 /* Nonzero if we had any X protocol errors
5013 since we did x_catch_errors on DPY. */
5016 x_had_errors_p (dpy)
5017 Display *dpy;
5019 /* Make sure to catch any errors incurred so far. */
5020 XSync (dpy, False);
5022 return XSTRING (x_error_message_string)->data[0] != 0;
5025 /* Forget about any errors we have had, since we did x_catch_errors on DPY. */
5028 x_clear_errors (dpy)
5029 Display *dpy;
5031 XSTRING (x_error_message_string)->data[0] = 0;
5034 /* Stop catching X protocol errors and let them make Emacs die.
5035 DPY should be the display that was passed to x_catch_errors.
5036 COUNT should be the value that was returned by
5037 the corresponding call to x_catch_errors. */
5039 void
5040 x_uncatch_errors (dpy, count)
5041 Display *dpy;
5042 int count;
5044 unbind_to (count, Qnil);
5047 #if 0
5048 static unsigned int x_wire_count;
5049 x_trace_wire ()
5051 fprintf (stderr, "Lib call: %d\n", ++x_wire_count);
5053 #endif /* ! 0 */
5056 /* Handle SIGPIPE, which can happen when the connection to a server
5057 simply goes away. SIGPIPE is handled by x_connection_signal.
5058 Don't need to do anything, because the write which caused the
5059 SIGPIPE will fail, causing Xlib to invoke the X IO error handler,
5060 which will do the appropriate cleanup for us. */
5062 static SIGTYPE
5063 x_connection_signal (signalnum) /* If we don't have an argument, */
5064 int signalnum; /* some compilers complain in signal calls. */
5066 #ifdef USG
5067 /* USG systems forget handlers when they are used;
5068 must reestablish each time */
5069 signal (signalnum, x_connection_signal);
5070 #endif /* USG */
5073 /* Handling X errors. */
5075 /* Handle the loss of connection to display DISPLAY. */
5077 static SIGTYPE
5078 x_connection_closed (display, error_message)
5079 Display *display;
5080 char *error_message;
5082 struct x_display_info *dpyinfo = x_display_info_for_display (display);
5083 Lisp_Object frame, tail;
5085 /* Indicate that this display is dead. */
5087 #ifdef USE_X_TOOLKIT
5088 XtCloseDisplay (display);
5089 #endif
5091 dpyinfo->display = 0;
5093 /* First delete frames whose minibuffers are on frames
5094 that are on the dead display. */
5095 FOR_EACH_FRAME (tail, frame)
5097 Lisp_Object minibuf_frame;
5098 minibuf_frame
5099 = WINDOW_FRAME (XWINDOW (FRAME_MINIBUF_WINDOW (XFRAME (frame))));
5100 if (FRAME_X_P (XFRAME (frame))
5101 && FRAME_X_P (XFRAME (minibuf_frame))
5102 && ! EQ (frame, minibuf_frame)
5103 && FRAME_X_DISPLAY_INFO (XFRAME (minibuf_frame)) == dpyinfo)
5104 Fdelete_frame (frame, Qt);
5107 /* Now delete all remaining frames on the dead display.
5108 We are now sure none of these is used as the minibuffer
5109 for another frame that we need to delete. */
5110 FOR_EACH_FRAME (tail, frame)
5111 if (FRAME_X_P (XFRAME (frame))
5112 && FRAME_X_DISPLAY_INFO (XFRAME (frame)) == dpyinfo)
5114 /* Set this to t so that Fdelete_frame won't get confused
5115 trying to find a replacement. */
5116 FRAME_KBOARD (XFRAME (frame))->Vdefault_minibuffer_frame = Qt;
5117 Fdelete_frame (frame, Qt);
5120 if (dpyinfo)
5121 x_delete_display (dpyinfo);
5123 if (x_display_list == 0)
5125 fprintf (stderr, "%s\n", error_message);
5126 shut_down_emacs (0, 0, Qnil);
5127 exit (70);
5130 /* Ordinary stack unwind doesn't deal with these. */
5131 #ifdef SIGIO
5132 sigunblock (sigmask (SIGIO));
5133 #endif
5134 sigunblock (sigmask (SIGALRM));
5135 TOTALLY_UNBLOCK_INPUT;
5137 clear_waiting_for_input ();
5138 error ("%s", error_message);
5141 /* This is the usual handler for X protocol errors.
5142 It kills all frames on the display that we got the error for.
5143 If that was the only one, it prints an error message and kills Emacs. */
5145 static int
5146 x_error_quitter (display, error)
5147 Display *display;
5148 XErrorEvent *error;
5150 char buf[256], buf1[356];
5152 /* Note that there is no real way portable across R3/R4 to get the
5153 original error handler. */
5155 XGetErrorText (display, error->error_code, buf, sizeof (buf));
5156 sprintf (buf1, "X protocol error: %s on protocol request %d",
5157 buf, error->request_code);
5158 x_connection_closed (display, buf1);
5161 /* This is the first-level handler for X protocol errors.
5162 It calls x_error_quitter or x_error_catcher. */
5164 static int
5165 x_error_handler (display, error)
5166 Display *display;
5167 XErrorEvent *error;
5169 char buf[256], buf1[356];
5171 if (! NILP (x_error_message_string))
5172 x_error_catcher (display, error);
5173 else
5174 x_error_quitter (display, error);
5177 /* This is the handler for X IO errors, always.
5178 It kills all frames on the display that we lost touch with.
5179 If that was the only one, it prints an error message and kills Emacs. */
5181 static int
5182 x_io_error_quitter (display)
5183 Display *display;
5185 char buf[256];
5187 sprintf (buf, "Connection lost to X server `%s'", DisplayString (display));
5188 x_connection_closed (display, buf);
5191 /* Changing the font of the frame. */
5193 /* Give frame F the font named FONTNAME as its default font, and
5194 return the full name of that font. FONTNAME may be a wildcard
5195 pattern; in that case, we choose some font that fits the pattern.
5196 The return value shows which font we chose. */
5198 Lisp_Object
5199 x_new_font (f, fontname)
5200 struct frame *f;
5201 register char *fontname;
5203 struct font_info *fontp
5204 = fs_load_font (f, FRAME_X_FONT_TABLE (f), CHARSET_ASCII, fontname, -1);
5206 if (!fontp)
5207 return Qnil;
5209 f->output_data.x->font = (XFontStruct *) (fontp->font);
5210 f->output_data.x->font_baseline
5211 = (f->output_data.x->font->ascent + fontp->baseline_offset);
5212 f->output_data.x->fontset = -1;
5214 /* Compute the scroll bar width in character columns. */
5215 if (f->scroll_bar_pixel_width > 0)
5217 int wid = FONT_WIDTH (f->output_data.x->font);
5218 f->scroll_bar_cols = (f->scroll_bar_pixel_width + wid-1) / wid;
5220 else
5221 f->scroll_bar_cols = 2;
5223 /* Now make the frame display the given font. */
5224 if (FRAME_X_WINDOW (f) != 0)
5226 XSetFont (FRAME_X_DISPLAY (f), f->output_data.x->normal_gc,
5227 f->output_data.x->font->fid);
5228 XSetFont (FRAME_X_DISPLAY (f), f->output_data.x->reverse_gc,
5229 f->output_data.x->font->fid);
5230 XSetFont (FRAME_X_DISPLAY (f), f->output_data.x->cursor_gc,
5231 f->output_data.x->font->fid);
5233 frame_update_line_height (f);
5234 x_set_window_size (f, 0, f->width, f->height);
5236 else
5237 /* If we are setting a new frame's font for the first time,
5238 there are no faces yet, so this font's height is the line height. */
5239 f->output_data.x->line_height = FONT_HEIGHT (f->output_data.x->font);
5241 return build_string (fontp->full_name);
5244 /* Give frame F the fontset named FONTSETNAME as its default font, and
5245 return the full name of that fontset. FONTSETNAME may be a wildcard
5246 pattern; in that case, we choose some fontset that fits the pattern.
5247 The return value shows which fontset we chose. */
5249 Lisp_Object
5250 x_new_fontset (f, fontsetname)
5251 struct frame *f;
5252 char *fontsetname;
5254 int fontset = fs_query_fontset (f, fontsetname);
5255 struct fontset_info *fontsetp;
5256 Lisp_Object result;
5258 if (fontset < 0)
5259 return Qnil;
5261 if (f->output_data.x->fontset == fontset)
5262 /* This fontset is already set in frame F. There's nothing more
5263 to do. */
5264 return build_string (fontsetname);
5266 fontsetp = FRAME_FONTSET_DATA (f)->fontset_table[fontset];
5268 if (!fontsetp->fontname[CHARSET_ASCII])
5269 /* This fontset doesn't contain ASCII font. */
5270 return Qnil;
5272 result = x_new_font (f, fontsetp->fontname[CHARSET_ASCII]);
5274 if (!STRINGP (result))
5275 /* Can't load ASCII font. */
5276 return Qnil;
5278 /* Since x_new_font doesn't update any fontset information, do it now. */
5279 f->output_data.x->fontset = fontset;
5280 FS_LOAD_FONT (f, FRAME_X_FONT_TABLE (f),
5281 CHARSET_ASCII, XSTRING (result)->data, fontset);
5283 return build_string (fontsetname);
5286 /* Calculate the absolute position in frame F
5287 from its current recorded position values and gravity. */
5289 x_calc_absolute_position (f)
5290 struct frame *f;
5292 Window win, child;
5293 int win_x = 0, win_y = 0;
5294 int flags = f->output_data.x->size_hint_flags;
5295 int this_window;
5297 /* We have nothing to do if the current position
5298 is already for the top-left corner. */
5299 if (! ((flags & XNegative) || (flags & YNegative)))
5300 return;
5302 #ifdef USE_X_TOOLKIT
5303 this_window = XtWindow (f->output_data.x->widget);
5304 #else
5305 this_window = FRAME_X_WINDOW (f);
5306 #endif
5308 /* Find the position of the outside upper-left corner of
5309 the inner window, with respect to the outer window.
5310 But do this only if we will need the results. */
5311 if (f->output_data.x->parent_desc != FRAME_X_DISPLAY_INFO (f)->root_window)
5313 int count;
5315 BLOCK_INPUT;
5316 count = x_catch_errors (FRAME_X_DISPLAY (f));
5317 while (1)
5319 x_clear_errors (FRAME_X_DISPLAY (f));
5320 XTranslateCoordinates (FRAME_X_DISPLAY (f),
5322 /* From-window, to-window. */
5323 this_window,
5324 f->output_data.x->parent_desc,
5326 /* From-position, to-position. */
5327 0, 0, &win_x, &win_y,
5329 /* Child of win. */
5330 &child);
5331 if (x_had_errors_p (FRAME_X_DISPLAY (f)))
5333 Window newroot, newparent = 0xdeadbeef;
5334 Window *newchildren;
5335 int nchildren;
5337 if (! XQueryTree (FRAME_X_DISPLAY (f), this_window, &newroot,
5338 &newparent, &newchildren, &nchildren))
5339 break;
5341 XFree (newchildren);
5343 f->output_data.x->parent_desc = newparent;
5345 else
5346 break;
5349 x_uncatch_errors (FRAME_X_DISPLAY (f), count);
5350 UNBLOCK_INPUT;
5353 /* Treat negative positions as relative to the leftmost bottommost
5354 position that fits on the screen. */
5355 if (flags & XNegative)
5356 f->output_data.x->left_pos = (FRAME_X_DISPLAY_INFO (f)->width
5357 - 2 * f->output_data.x->border_width - win_x
5358 - PIXEL_WIDTH (f)
5359 + f->output_data.x->left_pos);
5361 if (flags & YNegative)
5362 /* We used to subtract f->output_data.x->menubar_height here
5363 in the toolkit case, but PIXEL_HEIGHT already includes that. */
5364 f->output_data.x->top_pos = (FRAME_X_DISPLAY_INFO (f)->height
5365 - 2 * f->output_data.x->border_width - win_y
5366 - PIXEL_HEIGHT (f)
5367 + f->output_data.x->top_pos);
5369 /* The left_pos and top_pos
5370 are now relative to the top and left screen edges,
5371 so the flags should correspond. */
5372 f->output_data.x->size_hint_flags &= ~ (XNegative | YNegative);
5375 /* CHANGE_GRAVITY is 1 when calling from Fset_frame_position,
5376 to really change the position, and 0 when calling from
5377 x_make_frame_visible (in that case, XOFF and YOFF are the current
5378 position values). It is -1 when calling from x_set_frame_parameters,
5379 which means, do adjust for borders but don't change the gravity. */
5381 x_set_offset (f, xoff, yoff, change_gravity)
5382 struct frame *f;
5383 register int xoff, yoff;
5384 int change_gravity;
5386 int modified_top, modified_left;
5388 if (change_gravity > 0)
5390 f->output_data.x->top_pos = yoff;
5391 f->output_data.x->left_pos = xoff;
5392 f->output_data.x->size_hint_flags &= ~ (XNegative | YNegative);
5393 if (xoff < 0)
5394 f->output_data.x->size_hint_flags |= XNegative;
5395 if (yoff < 0)
5396 f->output_data.x->size_hint_flags |= YNegative;
5397 f->output_data.x->win_gravity = NorthWestGravity;
5399 x_calc_absolute_position (f);
5401 BLOCK_INPUT;
5402 x_wm_set_size_hint (f, (long) 0, 0);
5404 modified_left = f->output_data.x->left_pos;
5405 modified_top = f->output_data.x->top_pos;
5406 #if 0 /* Running on psilocin (Debian), and displaying on the NCD X-terminal,
5407 this seems to be unnecessary and incorrect. rms, 4/17/97. */
5408 /* It is a mystery why we need to add the border_width here
5409 when the frame is already visible, but experiment says we do. */
5410 if (change_gravity != 0)
5412 modified_left += f->output_data.x->border_width;
5413 modified_top += f->output_data.x->border_width;
5415 #endif
5417 #ifdef USE_X_TOOLKIT
5418 XMoveWindow (FRAME_X_DISPLAY (f), XtWindow (f->output_data.x->widget),
5419 modified_left, modified_top);
5420 #else /* not USE_X_TOOLKIT */
5421 XMoveWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5422 modified_left, modified_top);
5423 #endif /* not USE_X_TOOLKIT */
5424 UNBLOCK_INPUT;
5427 /* Call this to change the size of frame F's x-window.
5428 If CHANGE_GRAVITY is 1, we change to top-left-corner window gravity
5429 for this size change and subsequent size changes.
5430 Otherwise we leave the window gravity unchanged. */
5432 x_set_window_size (f, change_gravity, cols, rows)
5433 struct frame *f;
5434 int change_gravity;
5435 int cols, rows;
5437 int pixelwidth, pixelheight;
5438 int mask;
5439 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
5441 BLOCK_INPUT;
5443 #ifdef USE_X_TOOLKIT
5445 /* The x and y position of the widget is clobbered by the
5446 call to XtSetValues within EmacsFrameSetCharSize.
5447 This is a real kludge, but I don't understand Xt so I can't
5448 figure out a correct fix. Can anyone else tell me? -- rms. */
5449 int xpos = f->output_data.x->widget->core.x;
5450 int ypos = f->output_data.x->widget->core.y;
5451 EmacsFrameSetCharSize (f->output_data.x->edit_widget, cols, rows);
5452 f->output_data.x->widget->core.x = xpos;
5453 f->output_data.x->widget->core.y = ypos;
5456 #else /* not USE_X_TOOLKIT */
5458 check_frame_size (f, &rows, &cols);
5459 f->output_data.x->vertical_scroll_bar_extra
5460 = (!FRAME_HAS_VERTICAL_SCROLL_BARS (f)
5462 : FRAME_SCROLL_BAR_PIXEL_WIDTH (f) > 0
5463 ? FRAME_SCROLL_BAR_PIXEL_WIDTH (f)
5464 : (FRAME_SCROLL_BAR_COLS (f) * FONT_WIDTH (f->output_data.x->font)));
5465 pixelwidth = CHAR_TO_PIXEL_WIDTH (f, cols);
5466 pixelheight = CHAR_TO_PIXEL_HEIGHT (f, rows);
5468 f->output_data.x->win_gravity = NorthWestGravity;
5469 x_wm_set_size_hint (f, (long) 0, 0);
5471 XSync (FRAME_X_DISPLAY (f), False);
5472 XResizeWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5473 pixelwidth, pixelheight);
5475 /* Now, strictly speaking, we can't be sure that this is accurate,
5476 but the window manager will get around to dealing with the size
5477 change request eventually, and we'll hear how it went when the
5478 ConfigureNotify event gets here.
5480 We could just not bother storing any of this information here,
5481 and let the ConfigureNotify event set everything up, but that
5482 might be kind of confusing to the lisp code, since size changes
5483 wouldn't be reported in the frame parameters until some random
5484 point in the future when the ConfigureNotify event arrives. */
5485 change_frame_size (f, rows, cols, 0, 0);
5486 PIXEL_WIDTH (f) = pixelwidth;
5487 PIXEL_HEIGHT (f) = pixelheight;
5489 /* We've set {FRAME,PIXEL}_{WIDTH,HEIGHT} to the values we hope to
5490 receive in the ConfigureNotify event; if we get what we asked
5491 for, then the event won't cause the screen to become garbaged, so
5492 we have to make sure to do it here. */
5493 SET_FRAME_GARBAGED (f);
5495 XFlush (FRAME_X_DISPLAY (f));
5497 #endif /* not USE_X_TOOLKIT */
5499 /* If cursor was outside the new size, mark it as off. */
5500 if (f->phys_cursor_y >= rows
5501 || f->phys_cursor_x >= cols)
5503 f->phys_cursor_x = 0;
5504 f->phys_cursor_y = 0;
5505 f->phys_cursor_on = 0;
5508 /* Clear out any recollection of where the mouse highlighting was,
5509 since it might be in a place that's outside the new frame size.
5510 Actually checking whether it is outside is a pain in the neck,
5511 so don't try--just let the highlighting be done afresh with new size. */
5512 cancel_mouse_face (f);
5514 UNBLOCK_INPUT;
5517 /* Mouse warping. */
5519 void
5520 x_set_mouse_position (f, x, y)
5521 struct frame *f;
5522 int x, y;
5524 int pix_x, pix_y;
5526 pix_x = CHAR_TO_PIXEL_COL (f, x) + FONT_WIDTH (f->output_data.x->font) / 2;
5527 pix_y = CHAR_TO_PIXEL_ROW (f, y) + f->output_data.x->line_height / 2;
5529 if (pix_x < 0) pix_x = 0;
5530 if (pix_x > PIXEL_WIDTH (f)) pix_x = PIXEL_WIDTH (f);
5532 if (pix_y < 0) pix_y = 0;
5533 if (pix_y > PIXEL_HEIGHT (f)) pix_y = PIXEL_HEIGHT (f);
5535 BLOCK_INPUT;
5537 XWarpPointer (FRAME_X_DISPLAY (f), None, FRAME_X_WINDOW (f),
5538 0, 0, 0, 0, pix_x, pix_y);
5539 UNBLOCK_INPUT;
5542 /* Move the mouse to position pixel PIX_X, PIX_Y relative to frame F. */
5544 void
5545 x_set_mouse_pixel_position (f, pix_x, pix_y)
5546 struct frame *f;
5547 int pix_x, pix_y;
5549 BLOCK_INPUT;
5551 XWarpPointer (FRAME_X_DISPLAY (f), None, FRAME_X_WINDOW (f),
5552 0, 0, 0, 0, pix_x, pix_y);
5553 UNBLOCK_INPUT;
5556 /* focus shifting, raising and lowering. */
5558 x_focus_on_frame (f)
5559 struct frame *f;
5561 #if 0 /* This proves to be unpleasant. */
5562 x_raise_frame (f);
5563 #endif
5564 #if 0
5565 /* I don't think that the ICCCM allows programs to do things like this
5566 without the interaction of the window manager. Whatever you end up
5567 doing with this code, do it to x_unfocus_frame too. */
5568 XSetInputFocus (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5569 RevertToPointerRoot, CurrentTime);
5570 #endif /* ! 0 */
5573 x_unfocus_frame (f)
5574 struct frame *f;
5576 #if 0
5577 /* Look at the remarks in x_focus_on_frame. */
5578 if (FRAME_X_DISPLAY_INFO (f)->x_focus_frame == f)
5579 XSetInputFocus (FRAME_X_DISPLAY (f), PointerRoot,
5580 RevertToPointerRoot, CurrentTime);
5581 #endif /* ! 0 */
5584 /* Raise frame F. */
5586 x_raise_frame (f)
5587 struct frame *f;
5589 if (f->async_visible)
5591 BLOCK_INPUT;
5592 #ifdef USE_X_TOOLKIT
5593 XRaiseWindow (FRAME_X_DISPLAY (f), XtWindow (f->output_data.x->widget));
5594 #else /* not USE_X_TOOLKIT */
5595 XRaiseWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
5596 #endif /* not USE_X_TOOLKIT */
5597 XFlush (FRAME_X_DISPLAY (f));
5598 UNBLOCK_INPUT;
5602 /* Lower frame F. */
5604 x_lower_frame (f)
5605 struct frame *f;
5607 if (f->async_visible)
5609 BLOCK_INPUT;
5610 #ifdef USE_X_TOOLKIT
5611 XLowerWindow (FRAME_X_DISPLAY (f), XtWindow (f->output_data.x->widget));
5612 #else /* not USE_X_TOOLKIT */
5613 XLowerWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
5614 #endif /* not USE_X_TOOLKIT */
5615 XFlush (FRAME_X_DISPLAY (f));
5616 UNBLOCK_INPUT;
5620 static void
5621 XTframe_raise_lower (f, raise_flag)
5622 FRAME_PTR f;
5623 int raise_flag;
5625 if (raise_flag)
5626 x_raise_frame (f);
5627 else
5628 x_lower_frame (f);
5631 /* Change of visibility. */
5633 /* This tries to wait until the frame is really visible.
5634 However, if the window manager asks the user where to position
5635 the frame, this will return before the user finishes doing that.
5636 The frame will not actually be visible at that time,
5637 but it will become visible later when the window manager
5638 finishes with it. */
5640 x_make_frame_visible (f)
5641 struct frame *f;
5643 int mask;
5644 Lisp_Object type;
5645 int starting_flags = f->output_data.x->size_hint_flags;
5646 int original_top, original_left;
5648 BLOCK_INPUT;
5650 type = x_icon_type (f);
5651 if (!NILP (type))
5652 x_bitmap_icon (f, type);
5654 if (! FRAME_VISIBLE_P (f))
5656 /* We test FRAME_GARBAGED_P here to make sure we don't
5657 call x_set_offset a second time
5658 if we get to x_make_frame_visible a second time
5659 before the window gets really visible. */
5660 if (! FRAME_ICONIFIED_P (f)
5661 && ! f->output_data.x->asked_for_visible)
5662 x_set_offset (f, f->output_data.x->left_pos, f->output_data.x->top_pos, 0);
5664 f->output_data.x->asked_for_visible = 1;
5666 if (! EQ (Vx_no_window_manager, Qt))
5667 x_wm_set_window_state (f, NormalState);
5668 #ifdef USE_X_TOOLKIT
5669 /* This was XtPopup, but that did nothing for an iconified frame. */
5670 XtMapWidget (f->output_data.x->widget);
5671 #else /* not USE_X_TOOLKIT */
5672 XMapRaised (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
5673 #endif /* not USE_X_TOOLKIT */
5674 #if 0 /* This seems to bring back scroll bars in the wrong places
5675 if the window configuration has changed. They seem
5676 to come back ok without this. */
5677 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
5678 XMapSubwindows (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
5679 #endif
5682 XFlush (FRAME_X_DISPLAY (f));
5684 /* Synchronize to ensure Emacs knows the frame is visible
5685 before we do anything else. We do this loop with input not blocked
5686 so that incoming events are handled. */
5688 Lisp_Object frame;
5689 int count = input_signal_count;
5690 /* This must be before UNBLOCK_INPUT
5691 since events that arrive in response to the actions above
5692 will set it when they are handled. */
5693 int previously_visible = f->output_data.x->has_been_visible;
5695 original_left = f->output_data.x->left_pos;
5696 original_top = f->output_data.x->top_pos;
5698 /* This must come after we set COUNT. */
5699 UNBLOCK_INPUT;
5701 /* Arriving X events are processed here. */
5703 /* Now move the window back to where it was "supposed to be".
5704 But don't do it if the gravity is negative.
5705 When the gravity is negative, this uses a position
5706 that is 3 pixels too low. Perhaps that's really the border width.
5708 Don't do this if the window has never been visible before,
5709 because the window manager may choose the position
5710 and we don't want to override it. */
5712 if (! FRAME_VISIBLE_P (f) && ! FRAME_ICONIFIED_P (f)
5713 && f->output_data.x->win_gravity == NorthWestGravity
5714 && previously_visible)
5716 BLOCK_INPUT;
5718 #ifdef USE_X_TOOLKIT
5719 XMoveWindow (FRAME_X_DISPLAY (f), XtWindow (f->output_data.x->widget),
5720 original_left, original_top);
5721 #else /* not USE_X_TOOLKIT */
5722 XMoveWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5723 original_left, original_top);
5724 #endif /* not USE_X_TOOLKIT */
5725 UNBLOCK_INPUT;
5728 XSETFRAME (frame, f);
5730 while (1)
5732 x_sync (f);
5733 /* Once we have handled input events,
5734 we should have received the MapNotify if one is coming.
5735 So if we have not got it yet, stop looping.
5736 Some window managers make their own decisions
5737 about visibility. */
5738 if (input_signal_count != count)
5739 break;
5740 /* Machines that do polling rather than SIGIO have been observed
5741 to go into a busy-wait here. So we'll fake an alarm signal
5742 to let the handler know that there's something to be read.
5743 We used to raise a real alarm, but it seems that the handler
5744 isn't always enabled here. This is probably a bug. */
5745 if (input_polling_used ())
5747 /* It could be confusing if a real alarm arrives while processing
5748 the fake one. Turn it off and let the handler reset it. */
5749 alarm (0);
5750 input_poll_signal ();
5752 /* Once we have handled input events,
5753 we should have received the MapNotify if one is coming.
5754 So if we have not got it yet, stop looping.
5755 Some window managers make their own decisions
5756 about visibility. */
5757 if (input_signal_count != count)
5758 break;
5760 FRAME_SAMPLE_VISIBILITY (f);
5764 /* Change from mapped state to withdrawn state. */
5766 /* Make the frame visible (mapped and not iconified). */
5768 x_make_frame_invisible (f)
5769 struct frame *f;
5771 int mask;
5772 Window window;
5774 #ifdef USE_X_TOOLKIT
5775 /* Use the frame's outermost window, not the one we normally draw on. */
5776 window = XtWindow (f->output_data.x->widget);
5777 #else /* not USE_X_TOOLKIT */
5778 window = FRAME_X_WINDOW (f);
5779 #endif /* not USE_X_TOOLKIT */
5781 /* Don't keep the highlight on an invisible frame. */
5782 if (FRAME_X_DISPLAY_INFO (f)->x_highlight_frame == f)
5783 FRAME_X_DISPLAY_INFO (f)->x_highlight_frame = 0;
5785 #if 0/* This might add unreliability; I don't trust it -- rms. */
5786 if (! f->async_visible && ! f->async_iconified)
5787 return;
5788 #endif
5790 BLOCK_INPUT;
5792 /* Before unmapping the window, update the WM_SIZE_HINTS property to claim
5793 that the current position of the window is user-specified, rather than
5794 program-specified, so that when the window is mapped again, it will be
5795 placed at the same location, without forcing the user to position it
5796 by hand again (they have already done that once for this window.) */
5797 x_wm_set_size_hint (f, (long) 0, 1);
5799 #ifdef HAVE_X11R4
5801 if (! XWithdrawWindow (FRAME_X_DISPLAY (f), window,
5802 DefaultScreen (FRAME_X_DISPLAY (f))))
5804 UNBLOCK_INPUT_RESIGNAL;
5805 error ("Can't notify window manager of window withdrawal");
5807 #else /* ! defined (HAVE_X11R4) */
5809 /* Tell the window manager what we're going to do. */
5810 if (! EQ (Vx_no_window_manager, Qt))
5812 XEvent unmap;
5814 unmap.xunmap.type = UnmapNotify;
5815 unmap.xunmap.window = window;
5816 unmap.xunmap.event = DefaultRootWindow (FRAME_X_DISPLAY (f));
5817 unmap.xunmap.from_configure = False;
5818 if (! XSendEvent (FRAME_X_DISPLAY (f),
5819 DefaultRootWindow (FRAME_X_DISPLAY (f)),
5820 False,
5821 SubstructureRedirectMask|SubstructureNotifyMask,
5822 &unmap))
5824 UNBLOCK_INPUT_RESIGNAL;
5825 error ("Can't notify window manager of withdrawal");
5829 /* Unmap the window ourselves. Cheeky! */
5830 XUnmapWindow (FRAME_X_DISPLAY (f), window);
5831 #endif /* ! defined (HAVE_X11R4) */
5833 /* We can't distinguish this from iconification
5834 just by the event that we get from the server.
5835 So we can't win using the usual strategy of letting
5836 FRAME_SAMPLE_VISIBILITY set this. So do it by hand,
5837 and synchronize with the server to make sure we agree. */
5838 f->visible = 0;
5839 FRAME_ICONIFIED_P (f) = 0;
5840 f->async_visible = 0;
5841 f->async_iconified = 0;
5843 x_sync (f);
5845 UNBLOCK_INPUT;
5848 /* Change window state from mapped to iconified. */
5850 x_iconify_frame (f)
5851 struct frame *f;
5853 int mask;
5854 int result;
5855 Lisp_Object type;
5857 /* Don't keep the highlight on an invisible frame. */
5858 if (FRAME_X_DISPLAY_INFO (f)->x_highlight_frame == f)
5859 FRAME_X_DISPLAY_INFO (f)->x_highlight_frame = 0;
5861 if (f->async_iconified)
5862 return;
5864 BLOCK_INPUT;
5866 FRAME_SAMPLE_VISIBILITY (f);
5868 type = x_icon_type (f);
5869 if (!NILP (type))
5870 x_bitmap_icon (f, type);
5872 #ifdef USE_X_TOOLKIT
5874 if (! FRAME_VISIBLE_P (f))
5876 if (! EQ (Vx_no_window_manager, Qt))
5877 x_wm_set_window_state (f, IconicState);
5878 /* This was XtPopup, but that did nothing for an iconified frame. */
5879 XtMapWidget (f->output_data.x->widget);
5880 /* The server won't give us any event to indicate
5881 that an invisible frame was changed to an icon,
5882 so we have to record it here. */
5883 f->iconified = 1;
5884 f->visible = 1;
5885 f->async_iconified = 1;
5886 f->async_visible = 0;
5887 UNBLOCK_INPUT;
5888 return;
5891 result = XIconifyWindow (FRAME_X_DISPLAY (f),
5892 XtWindow (f->output_data.x->widget),
5893 DefaultScreen (FRAME_X_DISPLAY (f)));
5894 UNBLOCK_INPUT;
5896 if (!result)
5897 error ("Can't notify window manager of iconification");
5899 f->async_iconified = 1;
5900 f->async_visible = 0;
5903 BLOCK_INPUT;
5904 XFlush (FRAME_X_DISPLAY (f));
5905 UNBLOCK_INPUT;
5906 #else /* not USE_X_TOOLKIT */
5908 /* Make sure the X server knows where the window should be positioned,
5909 in case the user deiconifies with the window manager. */
5910 if (! FRAME_VISIBLE_P (f) && !FRAME_ICONIFIED_P (f))
5911 x_set_offset (f, f->output_data.x->left_pos, f->output_data.x->top_pos, 0);
5913 /* Since we don't know which revision of X we're running, we'll use both
5914 the X11R3 and X11R4 techniques. I don't know if this is a good idea. */
5916 /* X11R4: send a ClientMessage to the window manager using the
5917 WM_CHANGE_STATE type. */
5919 XEvent message;
5921 message.xclient.window = FRAME_X_WINDOW (f);
5922 message.xclient.type = ClientMessage;
5923 message.xclient.message_type = FRAME_X_DISPLAY_INFO (f)->Xatom_wm_change_state;
5924 message.xclient.format = 32;
5925 message.xclient.data.l[0] = IconicState;
5927 if (! XSendEvent (FRAME_X_DISPLAY (f),
5928 DefaultRootWindow (FRAME_X_DISPLAY (f)),
5929 False,
5930 SubstructureRedirectMask | SubstructureNotifyMask,
5931 &message))
5933 UNBLOCK_INPUT_RESIGNAL;
5934 error ("Can't notify window manager of iconification");
5938 /* X11R3: set the initial_state field of the window manager hints to
5939 IconicState. */
5940 x_wm_set_window_state (f, IconicState);
5942 if (!FRAME_VISIBLE_P (f))
5944 /* If the frame was withdrawn, before, we must map it. */
5945 XMapRaised (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
5948 f->async_iconified = 1;
5949 f->async_visible = 0;
5951 XFlush (FRAME_X_DISPLAY (f));
5952 UNBLOCK_INPUT;
5953 #endif /* not USE_X_TOOLKIT */
5956 /* Destroy the X window of frame F. */
5958 x_destroy_window (f)
5959 struct frame *f;
5961 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
5963 BLOCK_INPUT;
5965 /* If a display connection is dead, don't try sending more
5966 commands to the X server. */
5967 if (dpyinfo->display != 0)
5969 if (f->output_data.x->icon_desc != 0)
5970 XDestroyWindow (FRAME_X_DISPLAY (f), f->output_data.x->icon_desc);
5971 #ifdef HAVE_X_I18N
5972 if (FRAME_XIM (f))
5974 XDestroyIC (FRAME_XIC (f));
5975 #if ! defined (SOLARIS2) || defined (HAVE_X11R6)
5976 /* This line causes crashes on Solaris with Openwin,
5977 due to an apparent bug in XCloseIM.
5978 X11R6 seems not to have the bug. */
5979 XCloseIM (FRAME_XIM (f));
5980 #endif
5982 #endif
5983 XDestroyWindow (FRAME_X_DISPLAY (f), f->output_data.x->window_desc);
5984 #ifdef USE_X_TOOLKIT
5985 XtDestroyWidget (f->output_data.x->widget);
5986 free_frame_menubar (f);
5987 #endif /* USE_X_TOOLKIT */
5989 free_frame_faces (f);
5990 XFlush (FRAME_X_DISPLAY (f));
5993 if (f->output_data.x->saved_menu_event)
5994 free (f->output_data.x->saved_menu_event);
5996 xfree (f->output_data.x);
5997 f->output_data.x = 0;
5998 if (f == dpyinfo->x_focus_frame)
5999 dpyinfo->x_focus_frame = 0;
6000 if (f == dpyinfo->x_focus_event_frame)
6001 dpyinfo->x_focus_event_frame = 0;
6002 if (f == dpyinfo->x_highlight_frame)
6003 dpyinfo->x_highlight_frame = 0;
6005 dpyinfo->reference_count--;
6007 if (f == dpyinfo->mouse_face_mouse_frame)
6009 dpyinfo->mouse_face_beg_row
6010 = dpyinfo->mouse_face_beg_col = -1;
6011 dpyinfo->mouse_face_end_row
6012 = dpyinfo->mouse_face_end_col = -1;
6013 dpyinfo->mouse_face_window = Qnil;
6016 UNBLOCK_INPUT;
6019 /* Setting window manager hints. */
6021 /* Set the normal size hints for the window manager, for frame F.
6022 FLAGS is the flags word to use--or 0 meaning preserve the flags
6023 that the window now has.
6024 If USER_POSITION is nonzero, we set the USPosition
6025 flag (this is useful when FLAGS is 0). */
6027 x_wm_set_size_hint (f, flags, user_position)
6028 struct frame *f;
6029 long flags;
6030 int user_position;
6032 XSizeHints size_hints;
6034 #ifdef USE_X_TOOLKIT
6035 Arg al[2];
6036 int ac = 0;
6037 Dimension widget_width, widget_height;
6038 Window window = XtWindow (f->output_data.x->widget);
6039 #else /* not USE_X_TOOLKIT */
6040 Window window = FRAME_X_WINDOW (f);
6041 #endif /* not USE_X_TOOLKIT */
6043 /* Setting PMaxSize caused various problems. */
6044 size_hints.flags = PResizeInc | PMinSize /* | PMaxSize */;
6046 flexlines = f->height;
6048 size_hints.x = f->output_data.x->left_pos;
6049 size_hints.y = f->output_data.x->top_pos;
6051 #ifdef USE_X_TOOLKIT
6052 XtSetArg (al[ac], XtNwidth, &widget_width); ac++;
6053 XtSetArg (al[ac], XtNheight, &widget_height); ac++;
6054 XtGetValues (f->output_data.x->widget, al, ac);
6055 size_hints.height = widget_height;
6056 size_hints.width = widget_width;
6057 #else /* not USE_X_TOOLKIT */
6058 size_hints.height = PIXEL_HEIGHT (f);
6059 size_hints.width = PIXEL_WIDTH (f);
6060 #endif /* not USE_X_TOOLKIT */
6062 size_hints.width_inc = FONT_WIDTH (f->output_data.x->font);
6063 size_hints.height_inc = f->output_data.x->line_height;
6064 size_hints.max_width
6065 = FRAME_X_DISPLAY_INFO (f)->width - CHAR_TO_PIXEL_WIDTH (f, 0);
6066 size_hints.max_height
6067 = FRAME_X_DISPLAY_INFO (f)->height - CHAR_TO_PIXEL_HEIGHT (f, 0);
6069 /* Calculate the base and minimum sizes.
6071 (When we use the X toolkit, we don't do it here.
6072 Instead we copy the values that the widgets are using, below.) */
6073 #ifndef USE_X_TOOLKIT
6075 int base_width, base_height;
6076 int min_rows = 0, min_cols = 0;
6078 base_width = CHAR_TO_PIXEL_WIDTH (f, 0);
6079 base_height = CHAR_TO_PIXEL_HEIGHT (f, 0);
6081 check_frame_size (f, &min_rows, &min_cols);
6083 /* The window manager uses the base width hints to calculate the
6084 current number of rows and columns in the frame while
6085 resizing; min_width and min_height aren't useful for this
6086 purpose, since they might not give the dimensions for a
6087 zero-row, zero-column frame.
6089 We use the base_width and base_height members if we have
6090 them; otherwise, we set the min_width and min_height members
6091 to the size for a zero x zero frame. */
6093 #ifdef HAVE_X11R4
6094 size_hints.flags |= PBaseSize;
6095 size_hints.base_width = base_width;
6096 size_hints.base_height = base_height;
6097 size_hints.min_width = base_width + min_cols * size_hints.width_inc;
6098 size_hints.min_height = base_height + min_rows * size_hints.height_inc;
6099 #else
6100 size_hints.min_width = base_width;
6101 size_hints.min_height = base_height;
6102 #endif
6105 /* If we don't need the old flags, we don't need the old hint at all. */
6106 if (flags)
6108 size_hints.flags |= flags;
6109 goto no_read;
6111 #endif /* not USE_X_TOOLKIT */
6114 XSizeHints hints; /* Sometimes I hate X Windows... */
6115 long supplied_return;
6116 int value;
6118 #ifdef HAVE_X11R4
6119 value = XGetWMNormalHints (FRAME_X_DISPLAY (f), window, &hints,
6120 &supplied_return);
6121 #else
6122 value = XGetNormalHints (FRAME_X_DISPLAY (f), window, &hints);
6123 #endif
6125 #ifdef USE_X_TOOLKIT
6126 size_hints.base_height = hints.base_height;
6127 size_hints.base_width = hints.base_width;
6128 size_hints.min_height = hints.min_height;
6129 size_hints.min_width = hints.min_width;
6130 #endif
6132 if (flags)
6133 size_hints.flags |= flags;
6134 else
6136 if (value == 0)
6137 hints.flags = 0;
6138 if (hints.flags & PSize)
6139 size_hints.flags |= PSize;
6140 if (hints.flags & PPosition)
6141 size_hints.flags |= PPosition;
6142 if (hints.flags & USPosition)
6143 size_hints.flags |= USPosition;
6144 if (hints.flags & USSize)
6145 size_hints.flags |= USSize;
6149 no_read:
6151 #ifdef PWinGravity
6152 size_hints.win_gravity = f->output_data.x->win_gravity;
6153 size_hints.flags |= PWinGravity;
6155 if (user_position)
6157 size_hints.flags &= ~ PPosition;
6158 size_hints.flags |= USPosition;
6160 #endif /* PWinGravity */
6162 #ifdef HAVE_X11R4
6163 XSetWMNormalHints (FRAME_X_DISPLAY (f), window, &size_hints);
6164 #else
6165 XSetNormalHints (FRAME_X_DISPLAY (f), window, &size_hints);
6166 #endif
6169 /* Used for IconicState or NormalState */
6170 x_wm_set_window_state (f, state)
6171 struct frame *f;
6172 int state;
6174 #ifdef USE_X_TOOLKIT
6175 Arg al[1];
6177 XtSetArg (al[0], XtNinitialState, state);
6178 XtSetValues (f->output_data.x->widget, al, 1);
6179 #else /* not USE_X_TOOLKIT */
6180 Window window = FRAME_X_WINDOW (f);
6182 f->output_data.x->wm_hints.flags |= StateHint;
6183 f->output_data.x->wm_hints.initial_state = state;
6185 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints);
6186 #endif /* not USE_X_TOOLKIT */
6189 x_wm_set_icon_pixmap (f, pixmap_id)
6190 struct frame *f;
6191 int pixmap_id;
6193 Pixmap icon_pixmap;
6195 #ifdef USE_X_TOOLKIT
6196 Window window = XtWindow (f->output_data.x->widget);
6197 #else
6198 Window window = FRAME_X_WINDOW (f);
6199 #endif
6201 if (pixmap_id > 0)
6203 icon_pixmap = x_bitmap_pixmap (f, pixmap_id);
6204 f->output_data.x->wm_hints.icon_pixmap = icon_pixmap;
6206 else
6208 /* It seems there is no way to turn off use of an icon pixmap.
6209 The following line does it, only if no icon has yet been created,
6210 for some window managers. But with mwm it crashes.
6211 Some people say it should clear the IconPixmapHint bit in this case,
6212 but that doesn't work, and the X consortium said it isn't the
6213 right thing at all. Since there is no way to win,
6214 best to explicitly give up. */
6215 #if 0
6216 f->output_data.x->wm_hints.icon_pixmap = None;
6217 #else
6218 return;
6219 #endif
6222 #ifdef USE_X_TOOLKIT /* same as in x_wm_set_window_state. */
6225 Arg al[1];
6226 XtSetArg (al[0], XtNiconPixmap, icon_pixmap);
6227 XtSetValues (f->output_data.x->widget, al, 1);
6230 #else /* not USE_X_TOOLKIT */
6232 f->output_data.x->wm_hints.flags |= IconPixmapHint;
6233 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints);
6235 #endif /* not USE_X_TOOLKIT */
6238 x_wm_set_icon_position (f, icon_x, icon_y)
6239 struct frame *f;
6240 int icon_x, icon_y;
6242 #ifdef USE_X_TOOLKIT
6243 Window window = XtWindow (f->output_data.x->widget);
6244 #else
6245 Window window = FRAME_X_WINDOW (f);
6246 #endif
6248 f->output_data.x->wm_hints.flags |= IconPositionHint;
6249 f->output_data.x->wm_hints.icon_x = icon_x;
6250 f->output_data.x->wm_hints.icon_y = icon_y;
6252 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints);
6256 /* Interface to fontset handler. */
6258 /* Return a pointer to struct font_info of font FONT_IDX of frame F. */
6259 struct font_info *
6260 x_get_font_info (f, font_idx)
6261 FRAME_PTR f;
6262 int font_idx;
6264 return (FRAME_X_FONT_TABLE (f) + font_idx);
6268 /* Return a list of names of available fonts matching PATTERN on frame
6269 F. If SIZE is not 0, it is the size (maximum bound width) of fonts
6270 to be listed. Frame F NULL means we have not yet created any
6271 frame on X, and consult the first display in x_display_list.
6272 MAXNAMES sets a limit on how many fonts to match. */
6274 Lisp_Object
6275 x_list_fonts (f, pattern, size, maxnames)
6276 FRAME_PTR f;
6277 Lisp_Object pattern;
6278 int size;
6279 int maxnames;
6281 Lisp_Object list = Qnil, patterns, newlist = Qnil, key, tem, second_best;
6282 Display *dpy = f != NULL ? FRAME_X_DISPLAY (f) : x_display_list->display;
6284 patterns = Fassoc (pattern, Valternative_fontname_alist);
6285 if (NILP (patterns))
6286 patterns = Fcons (pattern, Qnil);
6288 for (; CONSP (patterns); patterns = XCONS (patterns)->cdr)
6290 int num_fonts;
6291 char **names;
6293 pattern = XCONS (patterns)->car;
6294 /* See if we cached the result for this particular query. */
6295 if (f && (tem = XCONS (FRAME_X_DISPLAY_INFO (f)->name_list_element)->cdr,
6296 key = Fcons (pattern, make_number (maxnames)),
6297 !NILP (list = Fassoc (key, tem))))
6299 list = Fcdr_safe (list);
6300 /* We have a cashed list. Don't have to get the list again. */
6301 goto label_cached;
6304 /* At first, put PATTERN in the cache. */
6305 BLOCK_INPUT;
6306 names = XListFonts (dpy, XSTRING (pattern)->data, maxnames, &num_fonts);
6307 UNBLOCK_INPUT;
6309 if (names)
6311 int i;
6313 /* Make a list of all the fonts we got back.
6314 Store that in the font cache for the display. */
6315 for (i = 0; i < num_fonts; i++)
6317 char *p = names[i];
6318 int average_width = -1, dashes = 0, width = 0;
6320 /* Count the number of dashes in NAMES[I]. If there are
6321 14 dashes, and the field value following 12th dash
6322 (AVERAGE_WIDTH) is 0, this is a auto-scaled font which
6323 is usually too ugly to be used for editing. Let's
6324 ignore it. */
6325 while (*p)
6326 if (*p++ == '-')
6328 dashes++;
6329 if (dashes == 7) /* PIXEL_SIZE field */
6330 width = atoi (p);
6331 else if (dashes == 12) /* AVERAGE_WIDTH field */
6332 average_width = atoi (p);
6334 if (dashes < 14 || average_width != 0)
6336 tem = build_string (names[i]);
6337 if (NILP (Fassoc (tem, list)))
6339 if (STRINGP (Vx_pixel_size_width_font_regexp)
6340 && ((fast_c_string_match_ignore_case
6341 (Vx_pixel_size_width_font_regexp, names[i]))
6342 >= 0))
6343 /* We can set the value of PIXEL_SIZE to the
6344 width of this font. */
6345 list = Fcons (Fcons (tem, make_number (width)), list);
6346 else
6347 /* For the moment, width is not known. */
6348 list = Fcons (Fcons (tem, Qnil), list);
6352 XFreeFontNames (names);
6355 /* Now store the result in the cache. */
6356 if (f != NULL)
6357 XCONS (FRAME_X_DISPLAY_INFO (f)->name_list_element)->cdr
6358 = Fcons (Fcons (key, list),
6359 XCONS (FRAME_X_DISPLAY_INFO (f)->name_list_element)->cdr);
6361 label_cached:
6362 if (NILP (list)) continue; /* Try the remaining alternatives. */
6364 newlist = second_best = Qnil;
6365 /* Make a list of the fonts that have the right width. */
6366 for (; CONSP (list); list = XCONS (list)->cdr)
6368 tem = XCONS (list)->car;
6370 if (!CONSP (tem) || NILP (XCONS (tem)->car))
6371 continue;
6372 if (!size)
6374 newlist = Fcons (XCONS (tem)->car, newlist);
6375 continue;
6378 if (!INTEGERP (XCONS (tem)->cdr))
6380 /* Since we have not yet known the size of this font, we
6381 must try slow function call XLoadQueryFont. */
6382 XFontStruct *thisinfo;
6384 BLOCK_INPUT;
6385 thisinfo = XLoadQueryFont (dpy,
6386 XSTRING (XCONS (tem)->car)->data);
6387 UNBLOCK_INPUT;
6389 if (thisinfo)
6391 XCONS (tem)->cdr = make_number (thisinfo->max_bounds.width);
6392 XFreeFont (dpy, thisinfo);
6394 else
6395 /* For unknown reason, the previous call of XListFont had
6396 retruned a font which can't be opened. Record the size
6397 as 0 not to try to open it again. */
6398 XCONS (tem)->cdr = make_number (0);
6400 if (XINT (XCONS (tem)->cdr) == size)
6401 newlist = Fcons (XCONS (tem)->car, newlist);
6402 else if (NILP (second_best))
6403 second_best = tem;
6404 else if (XINT (XCONS (tem)->cdr) < size)
6406 if (XINT (XCONS (second_best)->cdr) > size
6407 || XINT (XCONS (second_best)->cdr) < XINT (XCONS (tem)->cdr))
6408 second_best = tem;
6410 else
6412 if (XINT (XCONS (second_best)->cdr) > size
6413 && XINT (XCONS (second_best)->cdr) > XINT (XCONS (tem)->cdr))
6414 second_best = tem;
6417 if (!NILP (newlist))
6418 break;
6419 else if (!NILP (second_best))
6421 newlist = Fcons (XCONS (second_best)->car, Qnil);
6422 break;
6426 return newlist;
6429 /* Load font named FONTNAME of the size SIZE for frame F, and return a
6430 pointer to the structure font_info while allocating it dynamically.
6431 If SIZE is 0, load any size of font.
6432 If loading is failed, return NULL. */
6434 struct font_info *
6435 x_load_font (f, fontname, size)
6436 struct frame *f;
6437 register char *fontname;
6438 int size;
6440 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
6441 Lisp_Object font_names;
6443 /* Get a list of all the fonts that match this name. Once we
6444 have a list of matching fonts, we compare them against the fonts
6445 we already have by comparing names. */
6446 font_names = x_list_fonts (f, build_string (fontname), size, 256);
6448 if (!NILP (font_names))
6450 Lisp_Object tail;
6451 int i;
6453 for (i = 0; i < dpyinfo->n_fonts; i++)
6454 for (tail = font_names; CONSP (tail); tail = XCONS (tail)->cdr)
6455 if (!strcmp (dpyinfo->font_table[i].name,
6456 XSTRING (XCONS (tail)->car)->data)
6457 || !strcmp (dpyinfo->font_table[i].full_name,
6458 XSTRING (XCONS (tail)->car)->data))
6459 return (dpyinfo->font_table + i);
6462 /* Load the font and add it to the table. */
6464 char *full_name;
6465 XFontStruct *font;
6466 struct font_info *fontp;
6467 unsigned long value;
6469 /* If we have found fonts by x_list_font, load one of them. If
6470 not, we still try to load a font by the name given as FONTNAME
6471 because XListFonts (called in x_list_font) of some X server has
6472 a bug of not finding a font even if the font surely exists and
6473 is loadable by XLoadQueryFont. */
6474 if (!NILP (font_names))
6475 fontname = (char *) XSTRING (XCONS (font_names)->car)->data;
6477 BLOCK_INPUT;
6478 font = (XFontStruct *) XLoadQueryFont (FRAME_X_DISPLAY (f), fontname);
6479 UNBLOCK_INPUT;
6480 if (!font)
6481 return NULL;
6483 /* Do we need to create the table? */
6484 if (dpyinfo->font_table_size == 0)
6486 dpyinfo->font_table_size = 16;
6487 dpyinfo->font_table
6488 = (struct font_info *) xmalloc (dpyinfo->font_table_size
6489 * sizeof (struct font_info));
6491 /* Do we need to grow the table? */
6492 else if (dpyinfo->n_fonts
6493 >= dpyinfo->font_table_size)
6495 dpyinfo->font_table_size *= 2;
6496 dpyinfo->font_table
6497 = (struct font_info *) xrealloc (dpyinfo->font_table,
6498 (dpyinfo->font_table_size
6499 * sizeof (struct font_info)));
6502 fontp = dpyinfo->font_table + dpyinfo->n_fonts;
6504 /* Now fill in the slots of *FONTP. */
6505 BLOCK_INPUT;
6506 fontp->font = font;
6507 fontp->font_idx = dpyinfo->n_fonts;
6508 fontp->name = (char *) xmalloc (strlen (fontname) + 1);
6509 bcopy (fontname, fontp->name, strlen (fontname) + 1);
6511 /* Try to get the full name of FONT. Put it in FULL_NAME. */
6512 full_name = 0;
6513 if (XGetFontProperty (font, XA_FONT, &value))
6515 char *name = (char *) XGetAtomName (FRAME_X_DISPLAY (f), (Atom) value);
6516 char *p = name;
6517 int dashes = 0;
6519 /* Count the number of dashes in the "full name".
6520 If it is too few, this isn't really the font's full name,
6521 so don't use it.
6522 In X11R4, the fonts did not come with their canonical names
6523 stored in them. */
6524 while (*p)
6526 if (*p == '-')
6527 dashes++;
6528 p++;
6531 if (dashes >= 13)
6533 full_name = (char *) xmalloc (p - name + 1);
6534 bcopy (name, full_name, p - name + 1);
6537 XFree (name);
6540 if (full_name != 0)
6541 fontp->full_name = full_name;
6542 else
6543 fontp->full_name = fontp->name;
6545 fontp->size = font->max_bounds.width;
6546 fontp->height = font->ascent + font->descent;
6548 if (NILP (font_names))
6550 /* We come here because of a bug of XListFonts mentioned at
6551 the head of this block. Let's store this information in
6552 the cache for x_list_fonts. */
6553 Lisp_Object lispy_name = build_string (fontname);
6554 Lisp_Object lispy_full_name = build_string (fontp->full_name);
6556 XCONS (dpyinfo->name_list_element)->cdr
6557 = Fcons (Fcons (Fcons (lispy_name, make_number (256)),
6558 Fcons (Fcons (lispy_full_name,
6559 make_number (fontp->size)),
6560 Qnil)),
6561 XCONS (dpyinfo->name_list_element)->cdr);
6562 if (full_name)
6563 XCONS (dpyinfo->name_list_element)->cdr
6564 = Fcons (Fcons (Fcons (lispy_full_name, make_number (256)),
6565 Fcons (Fcons (lispy_full_name,
6566 make_number (fontp->size)),
6567 Qnil)),
6568 XCONS (dpyinfo->name_list_element)->cdr);
6571 /* The slot `encoding' specifies how to map a character
6572 code-points (0x20..0x7F or 0x2020..0x7F7F) of each charset to
6573 the font code-points (0:0x20..0x7F, 1:0xA0..0xFF, 0:0x2020..0x7F7F,
6574 the font code-points (0:0x20..0x7F, 1:0xA0..0xFF,
6575 0:0x2020..0x7F7F, 1:0xA0A0..0xFFFF, 3:0x20A0..0x7FFF, or
6576 2:0xA020..0xFF7F). For the moment, we don't know which charset
6577 uses this font. So, we set informatoin in fontp->encoding[1]
6578 which is never used by any charset. If mapping can't be
6579 decided, set FONT_ENCODING_NOT_DECIDED. */
6580 fontp->encoding[1]
6581 = (font->max_byte1 == 0
6582 /* 1-byte font */
6583 ? (font->min_char_or_byte2 < 0x80
6584 ? (font->max_char_or_byte2 < 0x80
6585 ? 0 /* 0x20..0x7F */
6586 : FONT_ENCODING_NOT_DECIDED) /* 0x20..0xFF */
6587 : 1) /* 0xA0..0xFF */
6588 /* 2-byte font */
6589 : (font->min_byte1 < 0x80
6590 ? (font->max_byte1 < 0x80
6591 ? (font->min_char_or_byte2 < 0x80
6592 ? (font->max_char_or_byte2 < 0x80
6593 ? 0 /* 0x2020..0x7F7F */
6594 : FONT_ENCODING_NOT_DECIDED) /* 0x2020..0x7FFF */
6595 : 3) /* 0x20A0..0x7FFF */
6596 : FONT_ENCODING_NOT_DECIDED) /* 0x20??..0xA0?? */
6597 : (font->min_char_or_byte2 < 0x80
6598 ? (font->max_char_or_byte2 < 0x80
6599 ? 2 /* 0xA020..0xFF7F */
6600 : FONT_ENCODING_NOT_DECIDED) /* 0xA020..0xFFFF */
6601 : 1))); /* 0xA0A0..0xFFFF */
6603 fontp->baseline_offset
6604 = (XGetFontProperty (font, dpyinfo->Xatom_MULE_BASELINE_OFFSET, &value)
6605 ? (long) value : 0);
6606 fontp->relative_compose
6607 = (XGetFontProperty (font, dpyinfo->Xatom_MULE_RELATIVE_COMPOSE, &value)
6608 ? (long) value : 0);
6609 fontp->default_ascent
6610 = (XGetFontProperty (font, dpyinfo->Xatom_MULE_DEFAULT_ASCENT, &value)
6611 ? (long) value : 0);
6613 UNBLOCK_INPUT;
6614 dpyinfo->n_fonts++;
6616 return fontp;
6620 /* Return a pointer to struct font_info of a font named FONTNAME for frame F.
6621 If no such font is loaded, return NULL. */
6622 struct font_info *
6623 x_query_font (f, fontname)
6624 struct frame *f;
6625 register char *fontname;
6627 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
6628 int i;
6630 for (i = 0; i < dpyinfo->n_fonts; i++)
6631 if (!strcmp (dpyinfo->font_table[i].name, fontname)
6632 || !strcmp (dpyinfo->font_table[i].full_name, fontname))
6633 return (dpyinfo->font_table + i);
6634 return NULL;
6638 /* Initialization. */
6640 #ifdef USE_X_TOOLKIT
6641 static XrmOptionDescRec emacs_options[] = {
6642 {"-geometry", ".geometry", XrmoptionSepArg, NULL},
6643 {"-iconic", ".iconic", XrmoptionNoArg, (XtPointer) "yes"},
6645 {"-internal-border-width", "*EmacsScreen.internalBorderWidth",
6646 XrmoptionSepArg, NULL},
6647 {"-ib", "*EmacsScreen.internalBorderWidth", XrmoptionSepArg, NULL},
6649 {"-T", "*EmacsShell.title", XrmoptionSepArg, (XtPointer) NULL},
6650 {"-wn", "*EmacsShell.title", XrmoptionSepArg, (XtPointer) NULL},
6651 {"-title", "*EmacsShell.title", XrmoptionSepArg, (XtPointer) NULL},
6652 {"-iconname", "*EmacsShell.iconName", XrmoptionSepArg, (XtPointer) NULL},
6653 {"-in", "*EmacsShell.iconName", XrmoptionSepArg, (XtPointer) NULL},
6654 {"-mc", "*pointerColor", XrmoptionSepArg, (XtPointer) NULL},
6655 {"-cr", "*cursorColor", XrmoptionSepArg, (XtPointer) NULL}
6657 #endif /* USE_X_TOOLKIT */
6659 static int x_initialized;
6661 #ifdef MULTI_KBOARD
6662 /* Test whether two display-name strings agree up to the dot that separates
6663 the screen number from the server number. */
6664 static int
6665 same_x_server (name1, name2)
6666 char *name1, *name2;
6668 int seen_colon = 0;
6669 for (; *name1 != '\0' && *name1 == *name2; name1++, name2++)
6671 if (*name1 == ':')
6672 seen_colon++;
6673 if (seen_colon && *name1 == '.')
6674 return 1;
6676 return (seen_colon
6677 && (*name1 == '.' || *name1 == '\0')
6678 && (*name2 == '.' || *name2 == '\0'));
6680 #endif
6682 struct x_display_info *
6683 x_term_init (display_name, xrm_option, resource_name)
6684 Lisp_Object display_name;
6685 char *xrm_option;
6686 char *resource_name;
6688 Lisp_Object frame;
6689 char *defaultvalue;
6690 int connection;
6691 Display *dpy;
6692 struct x_display_info *dpyinfo;
6693 XrmDatabase xrdb;
6695 BLOCK_INPUT;
6697 if (!x_initialized)
6699 x_initialize ();
6700 x_initialized = 1;
6703 #ifdef HAVE_X_I18N
6704 setlocale (LC_ALL, "");
6705 /* In case we just overrode what init_lread did, redo it. */
6706 setlocale (LC_NUMERIC, "C");
6707 setlocale (LC_TIME, "C");
6708 #endif
6710 #ifdef USE_X_TOOLKIT
6711 /* weiner@footloose.sps.mot.com reports that this causes
6712 errors with X11R5:
6713 X protocol error: BadAtom (invalid Atom parameter)
6714 on protocol request 18skiloaf.
6715 So let's not use it until R6. */
6716 #ifdef HAVE_X11XTR6
6717 XtSetLanguageProc (NULL, NULL, NULL);
6718 #endif
6721 int argc = 0;
6722 char *argv[3];
6724 argv[0] = "";
6725 argc = 1;
6726 if (xrm_option)
6728 argv[argc++] = "-xrm";
6729 argv[argc++] = xrm_option;
6731 dpy = XtOpenDisplay (Xt_app_con, XSTRING (display_name)->data,
6732 resource_name, EMACS_CLASS,
6733 emacs_options, XtNumber (emacs_options),
6734 &argc, argv);
6736 #ifdef HAVE_X11XTR6
6737 /* I think this is to compensate for XtSetLanguageProc. */
6738 setlocale (LC_NUMERIC, "C");
6739 setlocale (LC_TIME, "C");
6740 #endif
6743 #else /* not USE_X_TOOLKIT */
6744 #ifdef HAVE_X11R5
6745 XSetLocaleModifiers ("");
6746 #endif
6747 dpy = XOpenDisplay (XSTRING (display_name)->data);
6748 #endif /* not USE_X_TOOLKIT */
6750 /* Detect failure. */
6751 if (dpy == 0)
6753 UNBLOCK_INPUT;
6754 return 0;
6757 /* We have definitely succeeded. Record the new connection. */
6759 dpyinfo = (struct x_display_info *) xmalloc (sizeof (struct x_display_info));
6761 #ifdef MULTI_KBOARD
6763 struct x_display_info *share;
6764 Lisp_Object tail;
6766 for (share = x_display_list, tail = x_display_name_list; share;
6767 share = share->next, tail = XCONS (tail)->cdr)
6768 if (same_x_server (XSTRING (XCONS (XCONS (tail)->car)->car)->data,
6769 XSTRING (display_name)->data))
6770 break;
6771 if (share)
6772 dpyinfo->kboard = share->kboard;
6773 else
6775 dpyinfo->kboard = (KBOARD *) xmalloc (sizeof (KBOARD));
6776 init_kboard (dpyinfo->kboard);
6777 if (!EQ (XSYMBOL (Qvendor_specific_keysyms)->function, Qunbound))
6779 char *vendor = ServerVendor (dpy);
6780 dpyinfo->kboard->Vsystem_key_alist
6781 = call1 (Qvendor_specific_keysyms,
6782 build_string (vendor ? vendor : ""));
6785 dpyinfo->kboard->next_kboard = all_kboards;
6786 all_kboards = dpyinfo->kboard;
6787 /* Don't let the initial kboard remain current longer than necessary.
6788 That would cause problems if a file loaded on startup tries to
6789 prompt in the minibuffer. */
6790 if (current_kboard == initial_kboard)
6791 current_kboard = dpyinfo->kboard;
6793 dpyinfo->kboard->reference_count++;
6795 #endif
6797 /* Put this display on the chain. */
6798 dpyinfo->next = x_display_list;
6799 x_display_list = dpyinfo;
6801 /* Put it on x_display_name_list as well, to keep them parallel. */
6802 x_display_name_list = Fcons (Fcons (display_name, Qnil),
6803 x_display_name_list);
6804 dpyinfo->name_list_element = XCONS (x_display_name_list)->car;
6806 dpyinfo->display = dpy;
6808 #if 0
6809 XSetAfterFunction (x_current_display, x_trace_wire);
6810 #endif /* ! 0 */
6812 dpyinfo->x_id_name
6813 = (char *) xmalloc (XSTRING (Vinvocation_name)->size
6814 + XSTRING (Vsystem_name)->size
6815 + 2);
6816 sprintf (dpyinfo->x_id_name, "%s@%s",
6817 XSTRING (Vinvocation_name)->data, XSTRING (Vsystem_name)->data);
6819 /* Figure out which modifier bits mean what. */
6820 x_find_modifier_meanings (dpyinfo);
6822 /* Get the scroll bar cursor. */
6823 dpyinfo->vertical_scroll_bar_cursor
6824 = XCreateFontCursor (dpyinfo->display, XC_sb_v_double_arrow);
6826 xrdb = x_load_resources (dpyinfo->display, xrm_option,
6827 resource_name, EMACS_CLASS);
6828 #ifdef HAVE_XRMSETDATABASE
6829 XrmSetDatabase (dpyinfo->display, xrdb);
6830 #else
6831 dpyinfo->display->db = xrdb;
6832 #endif
6833 /* Put the rdb where we can find it in a way that works on
6834 all versions. */
6835 dpyinfo->xrdb = xrdb;
6837 dpyinfo->screen = ScreenOfDisplay (dpyinfo->display,
6838 DefaultScreen (dpyinfo->display));
6839 dpyinfo->visual = select_visual (dpyinfo->display, dpyinfo->screen,
6840 &dpyinfo->n_planes);
6841 dpyinfo->height = HeightOfScreen (dpyinfo->screen);
6842 dpyinfo->width = WidthOfScreen (dpyinfo->screen);
6843 dpyinfo->root_window = RootWindowOfScreen (dpyinfo->screen);
6844 dpyinfo->grabbed = 0;
6845 dpyinfo->reference_count = 0;
6846 dpyinfo->icon_bitmap_id = -1;
6847 dpyinfo->n_fonts = 0;
6848 dpyinfo->font_table_size = 0;
6849 dpyinfo->bitmaps = 0;
6850 dpyinfo->bitmaps_size = 0;
6851 dpyinfo->bitmaps_last = 0;
6852 dpyinfo->scratch_cursor_gc = 0;
6853 dpyinfo->mouse_face_mouse_frame = 0;
6854 dpyinfo->mouse_face_deferred_gc = 0;
6855 dpyinfo->mouse_face_beg_row = dpyinfo->mouse_face_beg_col = -1;
6856 dpyinfo->mouse_face_end_row = dpyinfo->mouse_face_end_col = -1;
6857 dpyinfo->mouse_face_face_id = 0;
6858 dpyinfo->mouse_face_window = Qnil;
6859 dpyinfo->mouse_face_mouse_x = dpyinfo->mouse_face_mouse_y = 0;
6860 dpyinfo->mouse_face_defer = 0;
6861 dpyinfo->x_focus_frame = 0;
6862 dpyinfo->x_focus_event_frame = 0;
6863 dpyinfo->x_highlight_frame = 0;
6865 dpyinfo->Xatom_wm_protocols
6866 = XInternAtom (dpyinfo->display, "WM_PROTOCOLS", False);
6867 dpyinfo->Xatom_wm_take_focus
6868 = XInternAtom (dpyinfo->display, "WM_TAKE_FOCUS", False);
6869 dpyinfo->Xatom_wm_save_yourself
6870 = XInternAtom (dpyinfo->display, "WM_SAVE_YOURSELF", False);
6871 dpyinfo->Xatom_wm_delete_window
6872 = XInternAtom (dpyinfo->display, "WM_DELETE_WINDOW", False);
6873 dpyinfo->Xatom_wm_change_state
6874 = XInternAtom (dpyinfo->display, "WM_CHANGE_STATE", False);
6875 dpyinfo->Xatom_wm_configure_denied
6876 = XInternAtom (dpyinfo->display, "WM_CONFIGURE_DENIED", False);
6877 dpyinfo->Xatom_wm_window_moved
6878 = XInternAtom (dpyinfo->display, "WM_MOVED", False);
6879 dpyinfo->Xatom_editres
6880 = XInternAtom (dpyinfo->display, "Editres", False);
6881 dpyinfo->Xatom_CLIPBOARD
6882 = XInternAtom (dpyinfo->display, "CLIPBOARD", False);
6883 dpyinfo->Xatom_TIMESTAMP
6884 = XInternAtom (dpyinfo->display, "TIMESTAMP", False);
6885 dpyinfo->Xatom_TEXT
6886 = XInternAtom (dpyinfo->display, "TEXT", False);
6887 dpyinfo->Xatom_COMPOUND_TEXT
6888 = XInternAtom (dpyinfo->display, "COMPOUND_TEXT", False);
6889 dpyinfo->Xatom_DELETE
6890 = XInternAtom (dpyinfo->display, "DELETE", False);
6891 dpyinfo->Xatom_MULTIPLE
6892 = XInternAtom (dpyinfo->display, "MULTIPLE", False);
6893 dpyinfo->Xatom_INCR
6894 = XInternAtom (dpyinfo->display, "INCR", False);
6895 dpyinfo->Xatom_EMACS_TMP
6896 = XInternAtom (dpyinfo->display, "_EMACS_TMP_", False);
6897 dpyinfo->Xatom_TARGETS
6898 = XInternAtom (dpyinfo->display, "TARGETS", False);
6899 dpyinfo->Xatom_NULL
6900 = XInternAtom (dpyinfo->display, "NULL", False);
6901 dpyinfo->Xatom_ATOM_PAIR
6902 = XInternAtom (dpyinfo->display, "ATOM_PAIR", False);
6903 /* For properties of font. */
6904 dpyinfo->Xatom_PIXEL_SIZE
6905 = XInternAtom (dpyinfo->display, "PIXEL_SIZE", False);
6906 dpyinfo->Xatom_MULE_BASELINE_OFFSET
6907 = XInternAtom (dpyinfo->display, "_MULE_BASELINE_OFFSET", False);
6908 dpyinfo->Xatom_MULE_RELATIVE_COMPOSE
6909 = XInternAtom (dpyinfo->display, "_MULE_RELATIVE_COMPOSE", False);
6910 dpyinfo->Xatom_MULE_DEFAULT_ASCENT
6911 = XInternAtom (dpyinfo->display, "_MULE_DEFAULT_ASCENT", False);
6913 dpyinfo->cut_buffers_initialized = 0;
6915 connection = ConnectionNumber (dpyinfo->display);
6916 dpyinfo->connection = connection;
6919 char null_bits[] = { 0x00 };
6921 dpyinfo->null_pixel
6922 = XCreatePixmapFromBitmapData (dpyinfo->display, dpyinfo->root_window,
6923 null_bits, 1, 1, (long) 0, (long) 0,
6927 #ifdef subprocesses
6928 /* This is only needed for distinguishing keyboard and process input. */
6929 if (connection != 0)
6930 add_keyboard_wait_descriptor (connection);
6931 #endif
6933 #ifndef F_SETOWN_BUG
6934 #ifdef F_SETOWN
6935 #ifdef F_SETOWN_SOCK_NEG
6936 /* stdin is a socket here */
6937 fcntl (connection, F_SETOWN, -getpid ());
6938 #else /* ! defined (F_SETOWN_SOCK_NEG) */
6939 fcntl (connection, F_SETOWN, getpid ());
6940 #endif /* ! defined (F_SETOWN_SOCK_NEG) */
6941 #endif /* ! defined (F_SETOWN) */
6942 #endif /* F_SETOWN_BUG */
6944 #ifdef SIGIO
6945 if (interrupt_input)
6946 init_sigio (connection);
6947 #endif /* ! defined (SIGIO) */
6949 #ifdef USE_LUCID
6950 /* Make sure that we have a valid font for dialog boxes
6951 so that Xt does not crash. */
6953 Display *dpy = dpyinfo->display;
6954 XrmValue d, fr, to;
6955 Font font;
6956 int count;
6958 d.addr = (XPointer)&dpy;
6959 d.size = sizeof (Display *);
6960 fr.addr = XtDefaultFont;
6961 fr.size = sizeof (XtDefaultFont);
6962 to.size = sizeof (Font *);
6963 to.addr = (XPointer)&font;
6964 count = x_catch_errors (dpy);
6965 if (!XtCallConverter (dpy, XtCvtStringToFont, &d, 1, &fr, &to, NULL))
6966 abort ();
6967 if (x_had_errors_p (dpy) || !XQueryFont (dpy, font))
6968 XrmPutLineResource (&xrdb, "Emacs.dialog.*.font: 9x15");
6969 x_uncatch_errors (dpy, count);
6971 #endif
6974 UNBLOCK_INPUT;
6976 return dpyinfo;
6979 /* Get rid of display DPYINFO, assuming all frames are already gone,
6980 and without sending any more commands to the X server. */
6982 void
6983 x_delete_display (dpyinfo)
6984 struct x_display_info *dpyinfo;
6986 delete_keyboard_wait_descriptor (dpyinfo->connection);
6988 /* Discard this display from x_display_name_list and x_display_list.
6989 We can't use Fdelq because that can quit. */
6990 if (! NILP (x_display_name_list)
6991 && EQ (XCONS (x_display_name_list)->car, dpyinfo->name_list_element))
6992 x_display_name_list = XCONS (x_display_name_list)->cdr;
6993 else
6995 Lisp_Object tail;
6997 tail = x_display_name_list;
6998 while (CONSP (tail) && CONSP (XCONS (tail)->cdr))
7000 if (EQ (XCONS (XCONS (tail)->cdr)->car,
7001 dpyinfo->name_list_element))
7003 XCONS (tail)->cdr = XCONS (XCONS (tail)->cdr)->cdr;
7004 break;
7006 tail = XCONS (tail)->cdr;
7010 if (x_display_list == dpyinfo)
7011 x_display_list = dpyinfo->next;
7012 else
7014 struct x_display_info *tail;
7016 for (tail = x_display_list; tail; tail = tail->next)
7017 if (tail->next == dpyinfo)
7018 tail->next = tail->next->next;
7021 #ifndef USE_X_TOOLKIT /* I'm told Xt does this itself. */
7022 #ifndef AIX /* On AIX, XCloseDisplay calls this. */
7023 XrmDestroyDatabase (dpyinfo->xrdb);
7024 #endif
7025 #endif
7026 #ifdef MULTI_KBOARD
7027 if (--dpyinfo->kboard->reference_count == 0)
7028 delete_kboard (dpyinfo->kboard);
7029 #endif
7030 xfree (dpyinfo->font_table);
7031 xfree (dpyinfo->x_id_name);
7032 xfree (dpyinfo);
7035 /* Set up use of X before we make the first connection. */
7037 x_initialize ()
7039 clear_frame_hook = XTclear_frame;
7040 clear_end_of_line_hook = XTclear_end_of_line;
7041 ins_del_lines_hook = XTins_del_lines;
7042 change_line_highlight_hook = XTchange_line_highlight;
7043 insert_glyphs_hook = XTinsert_glyphs;
7044 write_glyphs_hook = XTwrite_glyphs;
7045 delete_glyphs_hook = XTdelete_glyphs;
7046 ring_bell_hook = XTring_bell;
7047 reset_terminal_modes_hook = XTreset_terminal_modes;
7048 set_terminal_modes_hook = XTset_terminal_modes;
7049 update_begin_hook = XTupdate_begin;
7050 update_end_hook = XTupdate_end;
7051 set_terminal_window_hook = XTset_terminal_window;
7052 read_socket_hook = XTread_socket;
7053 frame_up_to_date_hook = XTframe_up_to_date;
7054 cursor_to_hook = XTcursor_to;
7055 reassert_line_highlight_hook = XTreassert_line_highlight;
7056 mouse_position_hook = XTmouse_position;
7057 frame_rehighlight_hook = XTframe_rehighlight;
7058 frame_raise_lower_hook = XTframe_raise_lower;
7059 set_vertical_scroll_bar_hook = XTset_vertical_scroll_bar;
7060 condemn_scroll_bars_hook = XTcondemn_scroll_bars;
7061 redeem_scroll_bar_hook = XTredeem_scroll_bar;
7062 judge_scroll_bars_hook = XTjudge_scroll_bars;
7064 scroll_region_ok = 1; /* we'll scroll partial frames */
7065 char_ins_del_ok = 0; /* just as fast to write the line */
7066 line_ins_del_ok = 1; /* we'll just blt 'em */
7067 fast_clear_end_of_line = 1; /* X does this well */
7068 memory_below_frame = 0; /* we don't remember what scrolls
7069 off the bottom */
7070 baud_rate = 19200;
7072 x_noop_count = 0;
7074 /* Try to use interrupt input; if we can't, then start polling. */
7075 Fset_input_mode (Qt, Qnil, Qt, Qnil);
7077 #ifdef USE_X_TOOLKIT
7078 XtToolkitInitialize ();
7079 Xt_app_con = XtCreateApplicationContext ();
7080 XtAppSetFallbackResources (Xt_app_con, Xt_default_resources);
7081 #endif
7083 /* Note that there is no real way portable across R3/R4 to get the
7084 original error handler. */
7085 XSetErrorHandler (x_error_handler);
7086 XSetIOErrorHandler (x_io_error_quitter);
7088 /* Disable Window Change signals; they are handled by X events. */
7089 #ifdef SIGWINCH
7090 signal (SIGWINCH, SIG_DFL);
7091 #endif /* ! defined (SIGWINCH) */
7093 signal (SIGPIPE, x_connection_signal);
7096 void
7097 syms_of_xterm ()
7099 staticpro (&x_error_message_string);
7100 x_error_message_string = Qnil;
7102 staticpro (&x_display_name_list);
7103 x_display_name_list = Qnil;
7105 staticpro (&last_mouse_scroll_bar);
7106 last_mouse_scroll_bar = Qnil;
7108 staticpro (&Qvendor_specific_keysyms);
7109 Qvendor_specific_keysyms = intern ("vendor-specific-keysyms");
7111 staticpro (&last_mouse_press_frame);
7112 last_mouse_press_frame = Qnil;
7115 #endif /* not HAVE_X_WINDOWS */