(make-doctor-variables): Eliminate unused variables `elist'
[emacs.git] / src / xterm.c
blob93c906ef67c2425200b1f3c1fccad9bb1e756781
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
55 #include <sys/ioctl.h>
56 #endif /* ! defined (BSD) */
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 "frame.h"
72 #include "dispextern.h"
73 #include "termhooks.h"
74 #include "termopts.h"
75 #include "termchar.h"
76 #if 0
77 #include "sink.h"
78 #include "sinkmask.h"
79 #endif /* ! 0 */
80 #include "gnu.h"
81 #include "disptab.h"
82 #include "buffer.h"
83 #include "window.h"
84 #include "keyboard.h"
85 #include "intervals.h"
87 #ifdef USE_X_TOOLKIT
88 #include <X11/Shell.h>
89 #endif
91 #ifdef USE_X_TOOLKIT
92 extern void free_frame_menubar ();
93 extern FRAME_PTR x_menubar_window_to_frame ();
94 #if (XtSpecificationRelease >= 5) && !defined(NO_EDITRES)
95 #define HACK_EDITRES
96 extern void _XEditResCheckMessages ();
97 #endif /* not NO_EDITRES */
98 #endif /* USE_X_TOOLKIT */
100 #ifndef USE_X_TOOLKIT
101 #define x_any_window_to_frame x_window_to_frame
102 #define x_top_window_to_frame x_window_to_frame
103 #endif
105 #ifdef USE_X_TOOLKIT
106 #include "widget.h"
107 #ifndef XtNinitialState
108 #define XtNinitialState "initialState"
109 #endif
110 #endif
112 #ifdef HAVE_SETLOCALE
113 /* So we can do setlocale. */
114 #include <locale.h>
115 #endif
117 #ifdef SOLARIS2
118 /* memmove will be defined as a macro in Xfuncs.h unless
119 <string.h> is included beforehand. The declaration for memmove in
120 <string.h> will cause a syntax error when Xfuncs.h later includes it. */
121 #include <string.h>
122 #endif
124 #ifndef min
125 #define min(a,b) ((a)<(b) ? (a) : (b))
126 #endif
127 #ifndef max
128 #define max(a,b) ((a)>(b) ? (a) : (b))
129 #endif
131 /* This is a chain of structures for all the X displays currently in use. */
132 struct x_display_info *x_display_list;
134 /* This is a list of cons cells, each of the form (NAME . FONT-LIST-CACHE),
135 one for each element of x_display_list and in the same order.
136 NAME is the name of the frame.
137 FONT-LIST-CACHE records previous values returned by x-list-fonts. */
138 Lisp_Object x_display_name_list;
140 /* Frame being updated by update_frame. This is declared in term.c.
141 This is set by update_begin and looked at by all the
142 XT functions. It is zero while not inside an update.
143 In that case, the XT functions assume that `selected_frame'
144 is the frame to apply to. */
145 extern struct frame *updating_frame;
147 extern waiting_for_input;
149 /* This is a frame waiting to be autoraised, within XTread_socket. */
150 struct frame *pending_autoraise_frame;
152 #ifdef USE_X_TOOLKIT
153 /* The application context for Xt use. */
154 XtAppContext Xt_app_con;
156 static String Xt_default_resources[] =
160 #endif
162 /* During an update, maximum vpos for ins/del line operations to affect. */
164 static int flexlines;
166 /* During an update, nonzero if chars output now should be highlighted. */
168 static int highlight;
170 /* Nominal cursor position -- where to draw output.
171 During an update, these are different from the cursor-box position. */
173 static int curs_x;
174 static int curs_y;
176 /* Mouse movement.
178 Formerly, we used PointerMotionHintMask (in STANDARD_EVENT_MASK)
179 so that we would have to call XQueryPointer after each MotionNotify
180 event to ask for another such event. However, this made mouse tracking
181 slow, and there was a bug that made it eventually stop.
183 Simply asking for MotionNotify all the time seems to work better.
185 In order to avoid asking for motion events and then throwing most
186 of them away or busy-polling the server for mouse positions, we ask
187 the server for pointer motion hints. This means that we get only
188 one event per group of mouse movements. "Groups" are delimited by
189 other kinds of events (focus changes and button clicks, for
190 example), or by XQueryPointer calls; when one of these happens, we
191 get another MotionNotify event the next time the mouse moves. This
192 is at least as efficient as getting motion events when mouse
193 tracking is on, and I suspect only negligibly worse when tracking
194 is off. */
196 /* Where the mouse was last time we reported a mouse event. */
197 static FRAME_PTR last_mouse_frame;
198 static XRectangle last_mouse_glyph;
200 static Lisp_Object last_mouse_press_frame;
202 /* The scroll bar in which the last X motion event occurred.
204 If the last X motion event occurred in a scroll bar, we set this
205 so XTmouse_position can know whether to report a scroll bar motion or
206 an ordinary motion.
208 If the last X motion event didn't occur in a scroll bar, we set this
209 to Qnil, to tell XTmouse_position to return an ordinary motion event. */
210 static Lisp_Object last_mouse_scroll_bar;
212 /* This is a hack. We would really prefer that XTmouse_position would
213 return the time associated with the position it returns, but there
214 doesn't seem to be any way to wrest the timestamp from the server
215 along with the position query. So, we just keep track of the time
216 of the last movement we received, and return that in hopes that
217 it's somewhat accurate. */
218 static Time last_mouse_movement_time;
220 /* Incremented by XTread_socket whenever it really tries to read events. */
221 #ifdef __STDC__
222 static int volatile input_signal_count;
223 #else
224 static int input_signal_count;
225 #endif
227 /* Used locally within XTread_socket. */
228 static int x_noop_count;
230 /* Initial values of argv and argc. */
231 extern char **initial_argv;
232 extern int initial_argc;
234 extern Lisp_Object Vcommand_line_args, Vsystem_name;
236 /* Tells if a window manager is present or not. */
238 extern Lisp_Object Vx_no_window_manager;
240 extern Lisp_Object Qface, Qmouse_face;
242 extern int errno;
244 /* A mask of extra modifier bits to put into every keyboard char. */
245 extern int extra_keyboard_modifiers;
247 static Lisp_Object Qvendor_specific_keysyms;
249 extern XrmDatabase x_load_resources ();
251 extern Lisp_Object x_icon_type ();
253 void x_delete_display ();
255 static void redraw_previous_char ();
256 static void redraw_following_char ();
257 static unsigned int x_x_to_emacs_modifiers ();
259 static int fast_find_position ();
260 static void note_mouse_highlight ();
261 static void clear_mouse_face ();
262 static void show_mouse_face ();
263 static void do_line_dance ();
265 static int XTcursor_to ();
266 static int XTclear_end_of_line ();
267 static int x_io_error_quitter ();
268 void x_catch_errors ();
269 void x_uncatch_errors ();
271 #if 0
272 /* This is a function useful for recording debugging information
273 about the sequence of occurrences in this file. */
275 struct record
277 char *locus;
278 int type;
281 struct record event_record[100];
283 int event_record_index;
285 record_event (locus, type)
286 char *locus;
287 int type;
289 if (event_record_index == sizeof (event_record) / sizeof (struct record))
290 event_record_index = 0;
292 event_record[event_record_index].locus = locus;
293 event_record[event_record_index].type = type;
294 event_record_index++;
297 #endif /* 0 */
299 /* Return the struct x_display_info corresponding to DPY. */
301 struct x_display_info *
302 x_display_info_for_display (dpy)
303 Display *dpy;
305 struct x_display_info *dpyinfo;
307 for (dpyinfo = x_display_list; dpyinfo; dpyinfo = dpyinfo->next)
308 if (dpyinfo->display == dpy)
309 return dpyinfo;
311 return 0;
314 /* Starting and ending updates.
316 These hooks are called by update_frame at the beginning and end
317 of a frame update. We record in `updating_frame' the identity
318 of the frame being updated, so that the XT... functions do not
319 need to take a frame as argument. Most of the XT... functions
320 should never be called except during an update, the only exceptions
321 being XTcursor_to, XTwrite_glyphs and XTreassert_line_highlight. */
323 static
324 XTupdate_begin (f)
325 struct frame *f;
327 int mask;
329 if (f == 0)
330 abort ();
332 flexlines = f->height;
333 highlight = 0;
335 BLOCK_INPUT;
337 curs_x = FRAME_CURSOR_X (f);
338 curs_y = FRAME_CURSOR_Y (f);
340 if (f == FRAME_X_DISPLAY_INFO (f)->mouse_face_mouse_frame)
342 /* Don't do highlighting for mouse motion during the update. */
343 FRAME_X_DISPLAY_INFO (f)->mouse_face_defer = 1;
345 /* If the frame needs to be redrawn,
346 simply forget about any prior mouse highlighting. */
347 if (FRAME_GARBAGED_P (f))
348 FRAME_X_DISPLAY_INFO (f)->mouse_face_window = Qnil;
350 if (!NILP (FRAME_X_DISPLAY_INFO (f)->mouse_face_window))
352 int firstline, lastline, i;
353 struct window *w = XWINDOW (FRAME_X_DISPLAY_INFO (f)->mouse_face_window);
355 /* Find the first, and the last+1, lines affected by redisplay. */
356 for (firstline = 0; firstline < f->height; firstline++)
357 if (FRAME_DESIRED_GLYPHS (f)->enable[firstline])
358 break;
360 lastline = f->height;
361 for (i = f->height - 1; i >= 0; i--)
363 if (FRAME_DESIRED_GLYPHS (f)->enable[i])
364 break;
365 else
366 lastline = i;
369 /* Can we tell that this update does not affect the window
370 where the mouse highlight is? If so, no need to turn off.
371 Likewise, don't do anything if the frame is garbaged;
372 in that case, the FRAME_CURRENT_GLYPHS that we would use
373 are all wrong, and we will redisplay that line anyway. */
374 if (! (firstline > (XFASTINT (w->top) + window_internal_height (w))
375 || lastline < XFASTINT (w->top)))
376 clear_mouse_face (FRAME_X_DISPLAY_INFO (f));
380 UNBLOCK_INPUT;
383 static
384 XTupdate_end (f)
385 struct frame *f;
387 int mask;
389 BLOCK_INPUT;
391 do_line_dance ();
392 x_display_cursor (f, 1, curs_x, curs_y);
394 FRAME_X_DISPLAY_INFO (f)->mouse_face_defer = 0;
395 #if 0
396 /* This fails in the case of having updated only the echo area
397 if we have switched buffers. In that case, FRAME_CURRENT_GLYPHS
398 has no relation to the current contents, and its charstarts
399 have no relation to the contents of the window-buffer.
400 I don't know a clean way to check
401 for that case. window_end_valid isn't set up yet. */
402 if (f == FRAME_X_DISPLAY_INFO (f)->mouse_face_mouse_frame)
403 note_mouse_highlight (f, FRAME_X_DISPLAY_INFO (f)->mouse_face_mouse_x,
404 FRAME_X_DISPLAY_INFO (f)->mouse_face_mouse_y);
405 #endif
407 XFlush (FRAME_X_DISPLAY (f));
408 UNBLOCK_INPUT;
411 /* This is called after a redisplay on frame F. */
413 static
414 XTframe_up_to_date (f)
415 FRAME_PTR f;
417 BLOCK_INPUT;
418 if (FRAME_X_DISPLAY_INFO (f)->mouse_face_deferred_gc
419 || f == FRAME_X_DISPLAY_INFO (f)->mouse_face_mouse_frame)
421 note_mouse_highlight (FRAME_X_DISPLAY_INFO (f)->mouse_face_mouse_frame,
422 FRAME_X_DISPLAY_INFO (f)->mouse_face_mouse_x,
423 FRAME_X_DISPLAY_INFO (f)->mouse_face_mouse_y);
424 FRAME_X_DISPLAY_INFO (f)->mouse_face_deferred_gc = 0;
426 UNBLOCK_INPUT;
429 /* External interface to control of standout mode.
430 Call this when about to modify line at position VPOS
431 and not change whether it is highlighted. */
433 XTreassert_line_highlight (new, vpos)
434 int new, vpos;
436 highlight = new;
439 /* Call this when about to modify line at position VPOS
440 and change whether it is highlighted. */
442 static
443 XTchange_line_highlight (new_highlight, vpos, first_unused_hpos)
444 int new_highlight, vpos, first_unused_hpos;
446 highlight = new_highlight;
447 XTcursor_to (vpos, 0);
448 XTclear_end_of_line (updating_frame->width);
451 /* This is used when starting Emacs and when restarting after suspend.
452 When starting Emacs, no X window is mapped. And nothing must be done
453 to Emacs's own window if it is suspended (though that rarely happens). */
455 static
456 XTset_terminal_modes ()
460 /* This is called when exiting or suspending Emacs.
461 Exiting will make the X-windows go away, and suspending
462 requires no action. */
464 static
465 XTreset_terminal_modes ()
467 /* XTclear_frame (); */
470 /* Set the nominal cursor position of the frame.
471 This is where display update commands will take effect.
472 This does not affect the place where the cursor-box is displayed. */
474 static int
475 XTcursor_to (row, col)
476 register int row, col;
478 int mask;
479 int orow = row;
481 curs_x = col;
482 curs_y = row;
484 if (updating_frame == 0)
486 BLOCK_INPUT;
487 x_display_cursor (selected_frame, 1, curs_x, curs_y);
488 XFlush (FRAME_X_DISPLAY (selected_frame));
489 UNBLOCK_INPUT;
493 /* Display a sequence of N glyphs found at GP.
494 WINDOW is the x-window to output to. LEFT and TOP are starting coords.
495 HL is 1 if this text is highlighted, 2 if the cursor is on it,
496 3 if should appear in its mouse-face.
497 JUST_FOREGROUND if 1 means draw only the foreground;
498 don't alter the background.
500 FONT is the default font to use (for glyphs whose font-code is 0).
502 Since the display generation code is responsible for calling
503 compute_char_face and compute_glyph_face on everything it puts in
504 the display structure, we can assume that the face code on each
505 glyph is a valid index into FRAME_COMPUTED_FACES (f), and the one
506 to which we can actually apply intern_face.
507 Call this function with input blocked. */
509 #if 1
510 /* This is the multi-face code. */
512 static void
513 dumpglyphs (f, left, top, gp, n, hl, just_foreground)
514 struct frame *f;
515 int left, top;
516 register GLYPH *gp; /* Points to first GLYPH. */
517 register int n; /* Number of glyphs to display. */
518 int hl;
519 int just_foreground;
521 /* Holds characters to be displayed. */
522 char *buf = (char *) alloca (f->width * sizeof (*buf));
523 register char *cp; /* Steps through buf[]. */
524 register int tlen = GLYPH_TABLE_LENGTH;
525 register Lisp_Object *tbase = GLYPH_TABLE_BASE;
526 Window window = FRAME_X_WINDOW (f);
527 int orig_left = left;
529 while (n > 0)
531 /* Get the face-code of the next GLYPH. */
532 int cf, len;
533 int g = *gp;
535 GLYPH_FOLLOW_ALIASES (tbase, tlen, g);
536 cf = FAST_GLYPH_FACE (g);
538 /* Find the run of consecutive glyphs with the same face-code.
539 Extract their character codes into BUF. */
540 cp = buf;
541 while (n > 0)
543 g = *gp;
544 GLYPH_FOLLOW_ALIASES (tbase, tlen, g);
545 if (FAST_GLYPH_FACE (g) != cf)
546 break;
548 *cp++ = FAST_GLYPH_CHAR (g);
549 --n;
550 ++gp;
553 /* LEN gets the length of the run. */
554 len = cp - buf;
556 /* Now output this run of chars, with the font and pixel values
557 determined by the face code CF. */
559 struct face *face = FRAME_DEFAULT_FACE (f);
560 XFontStruct *font = FACE_FONT (face);
561 GC gc = FACE_GC (face);
562 int stippled = 0;
564 /* HL = 3 means use a mouse face previously chosen. */
565 if (hl == 3)
566 cf = FRAME_X_DISPLAY_INFO (f)->mouse_face_face_id;
568 /* First look at the face of the text itself. */
569 if (cf != 0)
571 /* It's possible for the display table to specify
572 a face code that is out of range. Use 0 in that case. */
573 if (cf < 0 || cf >= FRAME_N_COMPUTED_FACES (f)
574 || FRAME_COMPUTED_FACES (f) [cf] == 0)
575 cf = 0;
577 if (cf == 1)
578 face = FRAME_MODE_LINE_FACE (f);
579 else
580 face = intern_face (f, FRAME_COMPUTED_FACES (f) [cf]);
581 font = FACE_FONT (face);
582 gc = FACE_GC (face);
583 if (FACE_STIPPLE (face))
584 stippled = 1;
587 /* Then comes the distinction between modeline and normal text. */
588 else if (hl == 0)
590 else if (hl == 1)
592 face = FRAME_MODE_LINE_FACE (f);
593 font = FACE_FONT (face);
594 gc = FACE_GC (face);
595 if (FACE_STIPPLE (face))
596 stippled = 1;
599 #define FACE_DEFAULT (~0)
601 /* Now override that if the cursor's on this character. */
602 if (hl == 2)
604 /* The cursor overrides stippling. */
605 stippled = 0;
607 if ((!face->font
608 || face->font == (XFontStruct *) FACE_DEFAULT
609 || face->font == f->output_data.x->font)
610 && face->background == f->output_data.x->background_pixel
611 && face->foreground == f->output_data.x->foreground_pixel)
613 gc = f->output_data.x->cursor_gc;
615 /* Cursor on non-default face: must merge. */
616 else
618 XGCValues xgcv;
619 unsigned long mask;
621 xgcv.background = f->output_data.x->cursor_pixel;
622 xgcv.foreground = face->background;
623 /* If the glyph would be invisible,
624 try a different foreground. */
625 if (xgcv.foreground == xgcv.background)
626 xgcv.foreground = face->foreground;
627 if (xgcv.foreground == xgcv.background)
628 xgcv.foreground = f->output_data.x->cursor_foreground_pixel;
629 if (xgcv.foreground == xgcv.background)
630 xgcv.foreground = face->foreground;
631 /* Make sure the cursor is distinct from text in this face. */
632 if (xgcv.background == face->background
633 && xgcv.foreground == face->foreground)
635 xgcv.background = face->foreground;
636 xgcv.foreground = face->background;
638 xgcv.font = face->font->fid;
639 xgcv.graphics_exposures = 0;
640 mask = GCForeground | GCBackground | GCFont | GCGraphicsExposures;
641 if (FRAME_X_DISPLAY_INFO (f)->scratch_cursor_gc)
642 XChangeGC (FRAME_X_DISPLAY (f),
643 FRAME_X_DISPLAY_INFO (f)->scratch_cursor_gc,
644 mask, &xgcv);
645 else
646 FRAME_X_DISPLAY_INFO (f)->scratch_cursor_gc
647 = XCreateGC (FRAME_X_DISPLAY (f), window, mask, &xgcv);
648 gc = FRAME_X_DISPLAY_INFO (f)->scratch_cursor_gc;
649 #if 0
650 /* If this code is restored, it must also reset to the default stipple
651 if necessary. */
652 if (face->stipple && face->stipple != FACE_DEFAULT)
653 XSetStipple (FRAME_X_DISPLAY (f), gc, face->stipple);
654 #endif
658 if (font == (XFontStruct *) FACE_DEFAULT)
659 font = f->output_data.x->font;
661 if (just_foreground)
662 XDrawString (FRAME_X_DISPLAY (f), window, gc,
663 left, top + FONT_BASE (font), buf, len);
664 else
666 if (stippled)
668 /* Turn stipple on. */
669 XSetFillStyle (FRAME_X_DISPLAY (f), gc, FillOpaqueStippled);
671 /* Draw stipple on background. */
672 XFillRectangle (FRAME_X_DISPLAY (f), window, gc,
673 left, top,
674 FONT_WIDTH (font) * len,
675 FONT_HEIGHT (font));
677 /* Turn stipple off. */
678 XSetFillStyle (FRAME_X_DISPLAY (f), gc, FillSolid);
680 /* Draw the text, solidly, onto the stipple pattern. */
681 XDrawString (FRAME_X_DISPLAY (f), window, gc,
682 left, top + FONT_BASE (font), buf, len);
684 else
685 XDrawImageString (FRAME_X_DISPLAY (f), window, gc,
686 left, top + FONT_BASE (font), buf, len);
688 /* Clear the rest of the line's height. */
689 if (f->output_data.x->line_height != FONT_HEIGHT (font))
690 XClearArea (FRAME_X_DISPLAY (f), window, left,
691 top + FONT_HEIGHT (font),
692 FONT_WIDTH (font) * len,
693 /* This is how many pixels of height
694 we have to clear. */
695 f->output_data.x->line_height - FONT_HEIGHT (font),
696 False);
699 #if 0 /* Doesn't work, because it uses FRAME_CURRENT_GLYPHS,
700 which often is not up to date yet. */
701 if (!just_foreground)
703 if (left == orig_left)
704 redraw_previous_char (f, PIXEL_TO_CHAR_COL (f, left),
705 PIXEL_TO_CHAR_ROW (f, top), hl == 1);
706 if (n == 0)
707 redraw_following_char (f, PIXEL_TO_CHAR_COL (f, left + len * FONT_WIDTH (font)),
708 PIXEL_TO_CHAR_ROW (f, top), hl == 1);
710 #endif
712 /* We should probably check for XA_UNDERLINE_POSITION and
713 XA_UNDERLINE_THICKNESS properties on the font, but let's
714 just get the thing working, and come back to that. */
716 int underline_position = 1;
718 if (font->descent <= underline_position)
719 underline_position = font->descent - 1;
721 if (face->underline)
722 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
723 FACE_GC (face),
724 left, (top
725 + FONT_BASE (font)
726 + underline_position),
727 len * FONT_WIDTH (font), 1);
730 left += len * FONT_WIDTH (font);
734 #endif /* 1 */
736 #if 0
737 /* This is the old single-face code. */
739 static void
740 dumpglyphs (f, left, top, gp, n, hl, font)
741 struct frame *f;
742 int left, top;
743 register GLYPH *gp; /* Points to first GLYPH. */
744 register int n; /* Number of glyphs to display. */
745 int hl;
746 XFontStruct *font;
748 register int len;
749 Window window = FRAME_X_WINDOW (f);
750 GC drawing_gc = (hl == 2 ? f->output_data.x->cursor_gc
751 : (hl ? f->output_data.x->reverse_gc
752 : f->output_data.x->normal_gc));
754 if (sizeof (GLYPH) == sizeof (XChar2b))
755 XDrawImageString16 (FRAME_X_DISPLAY (f), window, drawing_gc,
756 left, top + FONT_BASE (font), (XChar2b *) gp, n);
757 else if (sizeof (GLYPH) == sizeof (unsigned char))
758 XDrawImageString (FRAME_X_DISPLAY (f), window, drawing_gc,
759 left, top + FONT_BASE (font), (char *) gp, n);
760 else
761 /* What size of glyph ARE you using? And does X have a function to
762 draw them? */
763 abort ();
765 #endif
767 /* Output some text at the nominal frame cursor position.
768 Advance the cursor over the text.
769 Output LEN glyphs at START.
771 `highlight', set up by XTreassert_line_highlight or XTchange_line_highlight,
772 controls the pixel values used for foreground and background. */
774 static
775 XTwrite_glyphs (start, len)
776 register GLYPH *start;
777 int len;
779 register int temp_length;
780 int mask;
781 struct frame *f;
783 BLOCK_INPUT;
785 do_line_dance ();
786 f = updating_frame;
787 if (f == 0)
789 f = selected_frame;
790 /* If not within an update,
791 output at the frame's visible cursor. */
792 curs_x = f->cursor_x;
793 curs_y = f->cursor_y;
796 dumpglyphs (f,
797 CHAR_TO_PIXEL_COL (f, curs_x),
798 CHAR_TO_PIXEL_ROW (f, curs_y),
799 start, len, highlight, 0);
801 /* If we drew on top of the cursor, note that it is turned off. */
802 if (curs_y == f->phys_cursor_y
803 && curs_x <= f->phys_cursor_x
804 && curs_x + len > f->phys_cursor_x)
805 f->phys_cursor_x = -1;
807 if (updating_frame == 0)
808 x_display_cursor (f, 1, FRAME_CURSOR_X (f) + len, FRAME_CURSOR_Y (f));
809 else
810 curs_x += len;
812 UNBLOCK_INPUT;
815 /* Clear to the end of the line.
816 Erase the current text line from the nominal cursor position (inclusive)
817 to column FIRST_UNUSED (exclusive). The idea is that everything
818 from FIRST_UNUSED onward is already erased. */
820 static
821 XTclear_end_of_line (first_unused)
822 register int first_unused;
824 struct frame *f = updating_frame;
825 int mask;
827 if (f == 0)
828 abort ();
830 if (curs_y < 0 || curs_y >= f->height)
831 return;
832 if (first_unused <= 0)
833 return;
835 if (first_unused >= f->width)
836 first_unused = f->width;
838 BLOCK_INPUT;
840 do_line_dance ();
842 /* Notice if the cursor will be cleared by this operation. */
843 if (curs_y == f->phys_cursor_y
844 && curs_x <= f->phys_cursor_x
845 && f->phys_cursor_x < first_unused)
846 f->phys_cursor_x = -1;
848 XClearArea (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
849 CHAR_TO_PIXEL_COL (f, curs_x),
850 CHAR_TO_PIXEL_ROW (f, curs_y),
851 FONT_WIDTH (f->output_data.x->font) * (first_unused - curs_x),
852 f->output_data.x->line_height, False);
853 #if 0
854 redraw_previous_char (f, curs_x, curs_y, highlight);
855 #endif
857 UNBLOCK_INPUT;
860 static
861 XTclear_frame ()
863 int mask;
864 struct frame *f = updating_frame;
866 if (f == 0)
867 f = selected_frame;
869 f->phys_cursor_x = -1; /* Cursor not visible. */
870 curs_x = 0; /* Nominal cursor position is top left. */
871 curs_y = 0;
873 BLOCK_INPUT;
875 XClearWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
877 /* We have to clear the scroll bars, too. If we have changed
878 colors or something like that, then they should be notified. */
879 x_scroll_bar_clear (f);
881 XFlush (FRAME_X_DISPLAY (f));
882 UNBLOCK_INPUT;
885 #if 0
886 /* This currently does not work because FRAME_CURRENT_GLYPHS doesn't
887 always contain the right glyphs to use.
889 It also needs to be changed to look at the details of the font and
890 see whether there is really overlap, and do nothing when there is
891 not. This can use font_char_overlap_left and font_char_overlap_right,
892 but just how to use them is not clear. */
894 /* Erase the character (if any) at the position just before X, Y in frame F,
895 then redraw it and the character before it.
896 This is necessary when we erase starting at X,
897 in case the character after X overlaps into the one before X.
898 Call this function with input blocked. */
900 static void
901 redraw_previous_char (f, x, y, highlight_flag)
902 FRAME_PTR f;
903 int x, y;
904 int highlight_flag;
906 /* Erase the character before the new ones, in case
907 what was here before overlaps it.
908 Reoutput that character, and the previous character
909 (in case the previous character overlaps it). */
910 if (x > 0)
912 int start_x = x - 2;
913 if (start_x < 0)
914 start_x = 0;
915 XClearArea (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
916 CHAR_TO_PIXEL_COL (f, x - 1),
917 CHAR_TO_PIXEL_ROW (f, y),
918 FONT_WIDTH (f->output_data.x->font),
919 f->output_data.x->line_height, False);
921 dumpglyphs (f, CHAR_TO_PIXEL_COL (f, start_x),
922 CHAR_TO_PIXEL_ROW (f, y),
923 &FRAME_CURRENT_GLYPHS (f)->glyphs[y][start_x],
924 x - start_x, highlight_flag, 1);
928 /* Erase the character (if any) at the position X, Y in frame F,
929 then redraw it and the character after it.
930 This is necessary when we erase endng at X,
931 in case the character after X overlaps into the one before X.
932 Call this function with input blocked. */
934 static void
935 redraw_following_char (f, x, y, highlight_flag)
936 FRAME_PTR f;
937 int x, y;
938 int highlight_flag;
940 int limit = FRAME_CURRENT_GLYPHS (f)->used[y];
941 /* Erase the character after the new ones, in case
942 what was here before overlaps it.
943 Reoutput that character, and the following character
944 (in case the following character overlaps it). */
945 if (x < limit
946 && FRAME_CURRENT_GLYPHS (f)->glyphs[y][x] != SPACEGLYPH)
948 int end_x = x + 2;
949 if (end_x > limit)
950 end_x = limit;
951 XClearArea (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
952 CHAR_TO_PIXEL_COL (f, x),
953 CHAR_TO_PIXEL_ROW (f, y),
954 FONT_WIDTH (f->output_data.x->font),
955 f->output_data.x->line_height, False);
957 dumpglyphs (f, CHAR_TO_PIXEL_COL (f, x),
958 CHAR_TO_PIXEL_ROW (f, y),
959 &FRAME_CURRENT_GLYPHS (f)->glyphs[y][x],
960 end_x - x, highlight_flag, 1);
963 #endif /* 0 */
965 #if 0 /* Not in use yet */
967 /* Return 1 if character C in font F extends past its left edge. */
969 static int
970 font_char_overlap_left (font, c)
971 XFontStruct *font;
972 int c;
974 XCharStruct *s;
976 /* Find the bounding-box info for C. */
977 if (font->per_char == 0)
978 s = &font->max_bounds;
979 else
981 int rowlen = font->max_char_or_byte2 - font->min_char_or_byte2 + 1;
982 int row, within;
984 /* Decode char into row number (byte 1) and code within row (byte 2). */
985 row = c >> 8;
986 within = c & 0177;
987 if (!(within >= font->min_char_or_byte2
988 && within <= font->max_char_or_byte2
989 && row >= font->min_byte1
990 && row <= font->max_byte1))
992 /* If char is out of range, try the font's default char instead. */
993 c = font->default_char;
994 row = c >> (BITS_PER_INT - 8);
995 within = c & 0177;
997 if (!(within >= font->min_char_or_byte2
998 && within <= font->max_char_or_byte2
999 && row >= font->min_byte1
1000 && row <= font->max_byte1))
1001 /* Still out of range means this char does not overlap. */
1002 return 0;
1003 else
1004 /* We found the info for this char. */
1005 s = (font->per_char + (within - font->min_char_or_byte2)
1006 + row * rowlen);
1009 return (s && s->lbearing < 0);
1012 /* Return 1 if character C in font F extends past its right edge. */
1014 static int
1015 font_char_overlap_right (font, c)
1016 XFontStruct *font;
1017 int c;
1019 XCharStruct *s;
1021 /* Find the bounding-box info for C. */
1022 if (font->per_char == 0)
1023 s = &font->max_bounds;
1024 else
1026 int rowlen = font->max_char_or_byte2 - font->min_char_or_byte2 + 1;
1027 int row, within;
1029 /* Decode char into row number (byte 1) and code within row (byte 2). */
1030 row = c >> 8;
1031 within = c & 0177;
1032 if (!(within >= font->min_char_or_byte2
1033 && within <= font->max_char_or_byte2
1034 && row >= font->min_byte1
1035 && row <= font->max_byte1))
1037 /* If char is out of range, try the font's default char instead. */
1038 c = font->default_char;
1039 row = c >> (BITS_PER_INT - 8);
1040 within = c & 0177;
1042 if (!(within >= font->min_char_or_byte2
1043 && within <= font->max_char_or_byte2
1044 && row >= font->min_byte1
1045 && row <= font->max_byte1))
1046 /* Still out of range means this char does not overlap. */
1047 return 0;
1048 else
1049 /* We found the info for this char. */
1050 s = (font->per_char + (within - font->min_char_or_byte2)
1051 + row * rowlen);
1054 return (s && s->rbearing >= s->width);
1056 #endif /* 0 */
1058 /* Invert the middle quarter of the frame for .15 sec. */
1060 /* We use the select system call to do the waiting, so we have to make sure
1061 it's available. If it isn't, we just won't do visual bells. */
1062 #if defined (HAVE_TIMEVAL) && defined (HAVE_SELECT)
1064 /* Subtract the `struct timeval' values X and Y,
1065 storing the result in RESULT.
1066 Return 1 if the difference is negative, otherwise 0. */
1068 static int
1069 timeval_subtract (result, x, y)
1070 struct timeval *result, x, y;
1072 /* Perform the carry for the later subtraction by updating y.
1073 This is safer because on some systems
1074 the tv_sec member is unsigned. */
1075 if (x.tv_usec < y.tv_usec)
1077 int nsec = (y.tv_usec - x.tv_usec) / 1000000 + 1;
1078 y.tv_usec -= 1000000 * nsec;
1079 y.tv_sec += nsec;
1081 if (x.tv_usec - y.tv_usec > 1000000)
1083 int nsec = (y.tv_usec - x.tv_usec) / 1000000;
1084 y.tv_usec += 1000000 * nsec;
1085 y.tv_sec -= nsec;
1088 /* Compute the time remaining to wait. tv_usec is certainly positive. */
1089 result->tv_sec = x.tv_sec - y.tv_sec;
1090 result->tv_usec = x.tv_usec - y.tv_usec;
1092 /* Return indication of whether the result should be considered negative. */
1093 return x.tv_sec < y.tv_sec;
1096 XTflash (f)
1097 struct frame *f;
1099 BLOCK_INPUT;
1102 GC gc;
1104 /* Create a GC that will use the GXxor function to flip foreground pixels
1105 into background pixels. */
1107 XGCValues values;
1109 values.function = GXxor;
1110 values.foreground = (f->output_data.x->foreground_pixel
1111 ^ f->output_data.x->background_pixel);
1113 gc = XCreateGC (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
1114 GCFunction | GCForeground, &values);
1118 int width = PIXEL_WIDTH (f);
1119 int height = PIXEL_HEIGHT (f);
1121 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
1122 width/4, height/4, width/2, height/2);
1123 XFlush (FRAME_X_DISPLAY (f));
1126 struct timeval wakeup, now;
1128 EMACS_GET_TIME (wakeup);
1130 /* Compute time to wait until, propagating carry from usecs. */
1131 wakeup.tv_usec += 150000;
1132 wakeup.tv_sec += (wakeup.tv_usec / 1000000);
1133 wakeup.tv_usec %= 1000000;
1135 /* Keep waiting until past the time wakeup. */
1136 while (1)
1138 struct timeval timeout;
1140 EMACS_GET_TIME (timeout);
1142 /* In effect, timeout = wakeup - timeout.
1143 Break if result would be negative. */
1144 if (timeval_subtract (&timeout, wakeup, timeout))
1145 break;
1147 /* Try to wait that long--but we might wake up sooner. */
1148 select (0, NULL, NULL, NULL, &timeout);
1152 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
1153 width/4, height/4, width/2, height/2);
1154 XFreeGC (FRAME_X_DISPLAY (f), gc);
1155 XFlush (FRAME_X_DISPLAY (f));
1159 UNBLOCK_INPUT;
1162 #endif
1165 /* Make audible bell. */
1167 #define XRINGBELL XBell (FRAME_X_DISPLAY (selected_frame), 0)
1169 XTring_bell ()
1171 if (FRAME_X_DISPLAY (selected_frame) == 0)
1172 return;
1174 #if defined (HAVE_TIMEVAL) && defined (HAVE_SELECT)
1175 if (visible_bell)
1176 XTflash (selected_frame);
1177 else
1178 #endif
1180 BLOCK_INPUT;
1181 XRINGBELL;
1182 XFlush (FRAME_X_DISPLAY (selected_frame));
1183 UNBLOCK_INPUT;
1187 /* Insert and delete character.
1188 These are not supposed to be used because we are supposed to turn
1189 off the feature of using them. */
1191 static
1192 XTinsert_glyphs (start, len)
1193 register char *start;
1194 register int len;
1196 abort ();
1199 static
1200 XTdelete_glyphs (n)
1201 register int n;
1203 abort ();
1206 /* Specify how many text lines, from the top of the window,
1207 should be affected by insert-lines and delete-lines operations.
1208 This, and those operations, are used only within an update
1209 that is bounded by calls to XTupdate_begin and XTupdate_end. */
1211 static
1212 XTset_terminal_window (n)
1213 register int n;
1215 if (updating_frame == 0)
1216 abort ();
1218 if ((n <= 0) || (n > updating_frame->height))
1219 flexlines = updating_frame->height;
1220 else
1221 flexlines = n;
1224 /* These variables need not be per frame
1225 because redisplay is done on a frame-by-frame basis
1226 and the line dance for one frame is finished before
1227 anything is done for anoter frame. */
1229 /* Array of line numbers from cached insert/delete operations.
1230 line_dance[i] is the old position of the line that we want
1231 to move to line i, or -1 if we want a blank line there. */
1232 static int *line_dance;
1234 /* Allocated length of that array. */
1235 static int line_dance_len;
1237 /* Flag indicating whether we've done any work. */
1238 static int line_dance_in_progress;
1240 /* Perform an insert-lines or delete-lines operation,
1241 inserting N lines or deleting -N lines at vertical position VPOS. */
1242 XTins_del_lines (vpos, n)
1243 int vpos, n;
1245 register int fence, i;
1247 if (vpos >= flexlines)
1248 return;
1250 if (!line_dance_in_progress)
1252 int ht = updating_frame->height;
1253 if (ht > line_dance_len)
1255 line_dance = (int *)xrealloc (line_dance, ht * sizeof (int));
1256 line_dance_len = ht;
1258 for (i = 0; i < ht; ++i) line_dance[i] = i;
1259 line_dance_in_progress = 1;
1261 if (n >= 0)
1263 if (n > flexlines - vpos)
1264 n = flexlines - vpos;
1265 fence = vpos + n;
1266 for (i = flexlines; --i >= fence;)
1267 line_dance[i] = line_dance[i-n];
1268 for (i = fence; --i >= vpos;)
1269 line_dance[i] = -1;
1271 else
1273 n = -n;
1274 if (n > flexlines - vpos)
1275 n = flexlines - vpos;
1276 fence = flexlines - n;
1277 for (i = vpos; i < fence; ++i)
1278 line_dance[i] = line_dance[i + n];
1279 for (i = fence; i < flexlines; ++i)
1280 line_dance[i] = -1;
1284 /* Here's where we actually move the pixels around.
1285 Must be called with input blocked. */
1286 static void
1287 do_line_dance ()
1289 register int i, j, distance;
1290 register struct frame *f;
1291 int ht;
1292 int intborder;
1294 /* Must check this flag first. If it's not set, then not only is the
1295 array uninitialized, but we might not even have a frame. */
1296 if (!line_dance_in_progress)
1297 return;
1299 f = updating_frame;
1300 if (f == 0)
1301 abort ();
1303 ht = f->height;
1304 intborder = f->output_data.x->internal_border_width;
1306 x_update_cursor (updating_frame, 0);
1308 for (i = 0; i < ht; ++i)
1309 if (line_dance[i] != -1 && (distance = line_dance[i]-i) > 0)
1311 for (j = i; (j < ht && line_dance[j] != -1
1312 && line_dance[j]-j == distance); ++j);
1313 /* Copy [i,j) upward from [i+distance,j+distance) */
1314 XCopyArea (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
1315 FRAME_X_WINDOW (f), f->output_data.x->normal_gc,
1316 intborder, CHAR_TO_PIXEL_ROW (f, i+distance),
1317 f->width * FONT_WIDTH (f->output_data.x->font),
1318 (j-i) * f->output_data.x->line_height,
1319 intborder, CHAR_TO_PIXEL_ROW (f, i));
1320 i = j-1;
1323 for (i = ht; --i >=0; )
1324 if (line_dance[i] != -1 && (distance = line_dance[i]-i) < 0)
1326 for (j = i; (--j >= 0 && line_dance[j] != -1
1327 && line_dance[j]-j == distance););
1328 /* Copy (j,i] downward from (j+distance, i+distance] */
1329 XCopyArea (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
1330 FRAME_X_WINDOW (f), f->output_data.x->normal_gc,
1331 intborder, CHAR_TO_PIXEL_ROW (f, j+1+distance),
1332 f->width * FONT_WIDTH (f->output_data.x->font),
1333 (i-j) * f->output_data.x->line_height,
1334 intborder, CHAR_TO_PIXEL_ROW (f, j+1));
1335 i = j+1;
1338 for (i = 0; i < ht; ++i)
1339 if (line_dance[i] == -1)
1341 for (j = i; j < ht && line_dance[j] == -1; ++j);
1342 /* Clear [i,j) */
1343 XClearArea (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
1344 intborder, CHAR_TO_PIXEL_ROW (f, i),
1345 f->width * FONT_WIDTH (f->output_data.x->font),
1346 (j-i) * f->output_data.x->line_height, False);
1347 i = j-1;
1349 line_dance_in_progress = 0;
1352 /* Support routines for exposure events. */
1353 static void clear_cursor ();
1355 /* Output into a rectangle of an X-window (for frame F)
1356 the characters in f->phys_lines that overlap that rectangle.
1357 TOP and LEFT are the position of the upper left corner of the rectangle.
1358 ROWS and COLS are the size of the rectangle.
1359 Call this function with input blocked. */
1361 static void
1362 dumprectangle (f, left, top, cols, rows)
1363 struct frame *f;
1364 register int left, top, cols, rows;
1366 register struct frame_glyphs *active_frame = FRAME_CURRENT_GLYPHS (f);
1367 int cursor_cleared = 0;
1368 int bottom, right;
1369 register int y;
1371 if (FRAME_GARBAGED_P (f))
1372 return;
1374 /* Express rectangle as four edges, instead of position-and-size. */
1375 bottom = top + rows;
1376 right = left + cols;
1378 /* Convert rectangle edges in pixels to edges in chars.
1379 Round down for left and top, up for right and bottom. */
1380 top = PIXEL_TO_CHAR_ROW (f, top);
1381 left = PIXEL_TO_CHAR_COL (f, left);
1382 bottom += (f->output_data.x->line_height - 1);
1383 right += (FONT_WIDTH (f->output_data.x->font) - 1);
1384 bottom = PIXEL_TO_CHAR_ROW (f, bottom);
1385 right = PIXEL_TO_CHAR_COL (f, right);
1387 /* Clip the rectangle to what can be visible. */
1388 if (left < 0)
1389 left = 0;
1390 if (top < 0)
1391 top = 0;
1392 if (right > f->width)
1393 right = f->width;
1394 if (bottom > f->height)
1395 bottom = f->height;
1397 /* Get size in chars of the rectangle. */
1398 cols = right - left;
1399 rows = bottom - top;
1401 /* If rectangle has zero area, return. */
1402 if (rows <= 0) return;
1403 if (cols <= 0) return;
1405 /* Turn off the cursor if it is in the rectangle.
1406 We will turn it back on afterward. */
1407 if ((f->phys_cursor_x >= left) && (f->phys_cursor_x < right)
1408 && (f->phys_cursor_y >= top) && (f->phys_cursor_y < bottom))
1410 clear_cursor (f);
1411 cursor_cleared = 1;
1414 /* Display the text in the rectangle, one text line at a time. */
1416 for (y = top; y < bottom; y++)
1418 GLYPH *line = &active_frame->glyphs[y][left];
1420 if (! active_frame->enable[y] || left > active_frame->used[y])
1421 continue;
1423 dumpglyphs (f,
1424 CHAR_TO_PIXEL_COL (f, left),
1425 CHAR_TO_PIXEL_ROW (f, y),
1426 line, min (cols, active_frame->used[y] - left),
1427 active_frame->highlight[y], 0);
1430 /* Turn the cursor on if we turned it off. */
1432 if (cursor_cleared)
1433 x_update_cursor (f, 1);
1436 static void
1437 frame_highlight (f)
1438 struct frame *f;
1440 /* We used to only do this if Vx_no_window_manager was non-nil, but
1441 the ICCCM (section 4.1.6) says that the window's border pixmap
1442 and border pixel are window attributes which are "private to the
1443 client", so we can always change it to whatever we want. */
1444 BLOCK_INPUT;
1445 XSetWindowBorder (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
1446 f->output_data.x->border_pixel);
1447 UNBLOCK_INPUT;
1448 x_update_cursor (f, 1);
1451 static void
1452 frame_unhighlight (f)
1453 struct frame *f;
1455 /* We used to only do this if Vx_no_window_manager was non-nil, but
1456 the ICCCM (section 4.1.6) says that the window's border pixmap
1457 and border pixel are window attributes which are "private to the
1458 client", so we can always change it to whatever we want. */
1459 BLOCK_INPUT;
1460 XSetWindowBorderPixmap (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
1461 f->output_data.x->border_tile);
1462 UNBLOCK_INPUT;
1463 x_update_cursor (f, 1);
1466 static void XTframe_rehighlight ();
1467 static void x_frame_rehighlight ();
1469 /* The focus has changed. Update the frames as necessary to reflect
1470 the new situation. Note that we can't change the selected frame
1471 here, because the Lisp code we are interrupting might become confused.
1472 Each event gets marked with the frame in which it occurred, so the
1473 Lisp code can tell when the switch took place by examining the events. */
1475 static void
1476 x_new_focus_frame (dpyinfo, frame)
1477 struct x_display_info *dpyinfo;
1478 struct frame *frame;
1480 struct frame *old_focus = dpyinfo->x_focus_frame;
1481 int events_enqueued = 0;
1483 if (frame != dpyinfo->x_focus_frame)
1485 /* Set this before calling other routines, so that they see
1486 the correct value of x_focus_frame. */
1487 dpyinfo->x_focus_frame = frame;
1489 if (old_focus && old_focus->auto_lower)
1490 x_lower_frame (old_focus);
1492 #if 0
1493 selected_frame = frame;
1494 XSETFRAME (XWINDOW (selected_frame->selected_window)->frame,
1495 selected_frame);
1496 Fselect_window (selected_frame->selected_window);
1497 choose_minibuf_frame ();
1498 #endif /* ! 0 */
1500 if (dpyinfo->x_focus_frame && dpyinfo->x_focus_frame->auto_raise)
1501 pending_autoraise_frame = dpyinfo->x_focus_frame;
1502 else
1503 pending_autoraise_frame = 0;
1506 x_frame_rehighlight (dpyinfo);
1509 /* Handle an event saying the mouse has moved out of an Emacs frame. */
1511 void
1512 x_mouse_leave (dpyinfo)
1513 struct x_display_info *dpyinfo;
1515 x_new_focus_frame (dpyinfo, dpyinfo->x_focus_event_frame);
1518 /* The focus has changed, or we have redirected a frame's focus to
1519 another frame (this happens when a frame uses a surrogate
1520 minibuffer frame). Shift the highlight as appropriate.
1522 The FRAME argument doesn't necessarily have anything to do with which
1523 frame is being highlighted or unhighlighted; we only use it to find
1524 the appropriate X display info. */
1525 static void
1526 XTframe_rehighlight (frame)
1527 struct frame *frame;
1529 x_frame_rehighlight (FRAME_X_DISPLAY_INFO (frame));
1532 static void
1533 x_frame_rehighlight (dpyinfo)
1534 struct x_display_info *dpyinfo;
1536 struct frame *old_highlight = dpyinfo->x_highlight_frame;
1538 if (dpyinfo->x_focus_frame)
1540 dpyinfo->x_highlight_frame
1541 = ((GC_FRAMEP (FRAME_FOCUS_FRAME (dpyinfo->x_focus_frame)))
1542 ? XFRAME (FRAME_FOCUS_FRAME (dpyinfo->x_focus_frame))
1543 : dpyinfo->x_focus_frame);
1544 if (! FRAME_LIVE_P (dpyinfo->x_highlight_frame))
1546 FRAME_FOCUS_FRAME (dpyinfo->x_focus_frame) = Qnil;
1547 dpyinfo->x_highlight_frame = dpyinfo->x_focus_frame;
1550 else
1551 dpyinfo->x_highlight_frame = 0;
1553 if (dpyinfo->x_highlight_frame != old_highlight)
1555 if (old_highlight)
1556 frame_unhighlight (old_highlight);
1557 if (dpyinfo->x_highlight_frame)
1558 frame_highlight (dpyinfo->x_highlight_frame);
1562 /* Keyboard processing - modifier keys, vendor-specific keysyms, etc. */
1564 /* Initialize mode_switch_bit and modifier_meaning. */
1565 static void
1566 x_find_modifier_meanings (dpyinfo)
1567 struct x_display_info *dpyinfo;
1569 int min_code, max_code;
1570 KeySym *syms;
1571 int syms_per_code;
1572 XModifierKeymap *mods;
1574 dpyinfo->meta_mod_mask = 0;
1575 dpyinfo->shift_lock_mask = 0;
1576 dpyinfo->alt_mod_mask = 0;
1577 dpyinfo->super_mod_mask = 0;
1578 dpyinfo->hyper_mod_mask = 0;
1580 #ifdef HAVE_X11R4
1581 XDisplayKeycodes (dpyinfo->display, &min_code, &max_code);
1582 #else
1583 min_code = dpyinfo->display->min_keycode;
1584 max_code = dpyinfo->display->max_keycode;
1585 #endif
1587 syms = XGetKeyboardMapping (dpyinfo->display,
1588 min_code, max_code - min_code + 1,
1589 &syms_per_code);
1590 mods = XGetModifierMapping (dpyinfo->display);
1592 /* Scan the modifier table to see which modifier bits the Meta and
1593 Alt keysyms are on. */
1595 int row, col; /* The row and column in the modifier table. */
1597 for (row = 3; row < 8; row++)
1598 for (col = 0; col < mods->max_keypermod; col++)
1600 KeyCode code
1601 = mods->modifiermap[(row * mods->max_keypermod) + col];
1603 /* Zeroes are used for filler. Skip them. */
1604 if (code == 0)
1605 continue;
1607 /* Are any of this keycode's keysyms a meta key? */
1609 int code_col;
1611 for (code_col = 0; code_col < syms_per_code; code_col++)
1613 int sym = syms[((code - min_code) * syms_per_code) + code_col];
1615 switch (sym)
1617 case XK_Meta_L:
1618 case XK_Meta_R:
1619 dpyinfo->meta_mod_mask |= (1 << row);
1620 break;
1622 case XK_Alt_L:
1623 case XK_Alt_R:
1624 dpyinfo->alt_mod_mask |= (1 << row);
1625 break;
1627 case XK_Hyper_L:
1628 case XK_Hyper_R:
1629 dpyinfo->hyper_mod_mask |= (1 << row);
1630 break;
1632 case XK_Super_L:
1633 case XK_Super_R:
1634 dpyinfo->super_mod_mask |= (1 << row);
1635 break;
1637 case XK_Shift_Lock:
1638 /* Ignore this if it's not on the lock modifier. */
1639 if ((1 << row) == LockMask)
1640 dpyinfo->shift_lock_mask = LockMask;
1641 break;
1648 /* If we couldn't find any meta keys, accept any alt keys as meta keys. */
1649 if (! dpyinfo->meta_mod_mask)
1651 dpyinfo->meta_mod_mask = dpyinfo->alt_mod_mask;
1652 dpyinfo->alt_mod_mask = 0;
1655 /* If some keys are both alt and meta,
1656 make them just meta, not alt. */
1657 if (dpyinfo->alt_mod_mask & dpyinfo->meta_mod_mask)
1659 dpyinfo->alt_mod_mask &= ~dpyinfo->meta_mod_mask;
1662 XFree ((char *) syms);
1663 XFreeModifiermap (mods);
1666 /* Convert between the modifier bits X uses and the modifier bits
1667 Emacs uses. */
1668 static unsigned int
1669 x_x_to_emacs_modifiers (dpyinfo, state)
1670 struct x_display_info *dpyinfo;
1671 unsigned int state;
1673 return ( ((state & (ShiftMask | dpyinfo->shift_lock_mask)) ? shift_modifier : 0)
1674 | ((state & ControlMask) ? ctrl_modifier : 0)
1675 | ((state & dpyinfo->meta_mod_mask) ? meta_modifier : 0)
1676 | ((state & dpyinfo->alt_mod_mask) ? alt_modifier : 0)
1677 | ((state & dpyinfo->super_mod_mask) ? super_modifier : 0)
1678 | ((state & dpyinfo->hyper_mod_mask) ? hyper_modifier : 0));
1681 static unsigned int
1682 x_emacs_to_x_modifiers (dpyinfo, state)
1683 struct x_display_info *dpyinfo;
1684 unsigned int state;
1686 return ( ((state & alt_modifier) ? dpyinfo->alt_mod_mask : 0)
1687 | ((state & super_modifier) ? dpyinfo->super_mod_mask : 0)
1688 | ((state & hyper_modifier) ? dpyinfo->hyper_mod_mask : 0)
1689 | ((state & shift_modifier) ? ShiftMask : 0)
1690 | ((state & ctrl_modifier) ? ControlMask : 0)
1691 | ((state & meta_modifier) ? dpyinfo->meta_mod_mask : 0));
1694 /* Convert a keysym to its name. */
1696 char *
1697 x_get_keysym_name (keysym)
1698 KeySym keysym;
1700 char *value;
1702 BLOCK_INPUT;
1703 value = XKeysymToString (keysym);
1704 UNBLOCK_INPUT;
1706 return value;
1709 /* Mouse clicks and mouse movement. Rah. */
1711 /* Given a pixel position (PIX_X, PIX_Y) on the frame F, return
1712 glyph co-ordinates in (*X, *Y). Set *BOUNDS to the rectangle
1713 that the glyph at X, Y occupies, if BOUNDS != 0.
1714 If NOCLIP is nonzero, do not force the value into range. */
1716 void
1717 pixel_to_glyph_coords (f, pix_x, pix_y, x, y, bounds, noclip)
1718 FRAME_PTR f;
1719 register int pix_x, pix_y;
1720 register int *x, *y;
1721 XRectangle *bounds;
1722 int noclip;
1724 /* Arrange for the division in PIXEL_TO_CHAR_COL etc. to round down
1725 even for negative values. */
1726 if (pix_x < 0)
1727 pix_x -= FONT_WIDTH ((f)->output_data.x->font) - 1;
1728 if (pix_y < 0)
1729 pix_y -= (f)->output_data.x->line_height - 1;
1731 pix_x = PIXEL_TO_CHAR_COL (f, pix_x);
1732 pix_y = PIXEL_TO_CHAR_ROW (f, pix_y);
1734 if (bounds)
1736 bounds->width = FONT_WIDTH (f->output_data.x->font);
1737 bounds->height = f->output_data.x->line_height;
1738 bounds->x = CHAR_TO_PIXEL_COL (f, pix_x);
1739 bounds->y = CHAR_TO_PIXEL_ROW (f, pix_y);
1742 if (!noclip)
1744 if (pix_x < 0)
1745 pix_x = 0;
1746 else if (pix_x > f->width)
1747 pix_x = f->width;
1749 if (pix_y < 0)
1750 pix_y = 0;
1751 else if (pix_y > f->height)
1752 pix_y = f->height;
1755 *x = pix_x;
1756 *y = pix_y;
1759 void
1760 glyph_to_pixel_coords (f, x, y, pix_x, pix_y)
1761 FRAME_PTR f;
1762 register int x, y;
1763 register int *pix_x, *pix_y;
1765 *pix_x = CHAR_TO_PIXEL_COL (f, x);
1766 *pix_y = CHAR_TO_PIXEL_ROW (f, y);
1769 /* Prepare a mouse-event in *RESULT for placement in the input queue.
1771 If the event is a button press, then note that we have grabbed
1772 the mouse. */
1774 static Lisp_Object
1775 construct_mouse_click (result, event, f)
1776 struct input_event *result;
1777 XButtonEvent *event;
1778 struct frame *f;
1780 /* Make the event type no_event; we'll change that when we decide
1781 otherwise. */
1782 result->kind = mouse_click;
1783 result->code = event->button - Button1;
1784 result->timestamp = event->time;
1785 result->modifiers = (x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO (f),
1786 event->state)
1787 | (event->type == ButtonRelease
1788 ? up_modifier
1789 : down_modifier));
1792 int row, column;
1794 #if 0
1795 pixel_to_glyph_coords (f, event->x, event->y, &column, &row, NULL, 0);
1796 XSETFASTINT (result->x, column);
1797 XSETFASTINT (result->y, row);
1798 #endif
1799 XSETINT (result->x, event->x);
1800 XSETINT (result->y, event->y);
1801 XSETFRAME (result->frame_or_window, f);
1805 /* Prepare a menu-event in *RESULT for placement in the input queue. */
1807 static Lisp_Object
1808 construct_menu_click (result, event, f)
1809 struct input_event *result;
1810 XButtonEvent *event;
1811 struct frame *f;
1813 /* Make the event type no_event; we'll change that when we decide
1814 otherwise. */
1815 result->kind = mouse_click;
1816 XSETINT (result->code, event->button - Button1);
1817 result->timestamp = event->time;
1818 result->modifiers = (x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO (f),
1819 event->state)
1820 | (event->type == ButtonRelease
1821 ? up_modifier
1822 : down_modifier));
1824 XSETINT (result->x, event->x);
1825 XSETINT (result->y, -1);
1826 XSETFRAME (result->frame_or_window, f);
1829 /* Function to report a mouse movement to the mainstream Emacs code.
1830 The input handler calls this.
1832 We have received a mouse movement event, which is given in *event.
1833 If the mouse is over a different glyph than it was last time, tell
1834 the mainstream emacs code by setting mouse_moved. If not, ask for
1835 another motion event, so we can check again the next time it moves. */
1837 static void
1838 note_mouse_movement (frame, event)
1839 FRAME_PTR frame;
1840 XMotionEvent *event;
1842 last_mouse_movement_time = event->time;
1844 if (event->window != FRAME_X_WINDOW (frame))
1846 frame->mouse_moved = 1;
1847 last_mouse_scroll_bar = Qnil;
1849 note_mouse_highlight (frame, -1, -1);
1852 /* Has the mouse moved off the glyph it was on at the last sighting? */
1853 else if (event->x < last_mouse_glyph.x
1854 || event->x >= last_mouse_glyph.x + last_mouse_glyph.width
1855 || event->y < last_mouse_glyph.y
1856 || event->y >= last_mouse_glyph.y + last_mouse_glyph.height)
1858 frame->mouse_moved = 1;
1859 last_mouse_scroll_bar = Qnil;
1861 note_mouse_highlight (frame, event->x, event->y);
1865 /* This is used for debugging, to turn off note_mouse_highlight. */
1866 static int disable_mouse_highlight;
1868 /* Take proper action when the mouse has moved to position X, Y on frame F
1869 as regards highlighting characters that have mouse-face properties.
1870 Also dehighlighting chars where the mouse was before.
1871 X and Y can be negative or out of range. */
1873 static void
1874 note_mouse_highlight (f, x, y)
1875 FRAME_PTR f;
1876 int x, y;
1878 int row, column, portion;
1879 XRectangle new_glyph;
1880 Lisp_Object window;
1881 struct window *w;
1883 if (disable_mouse_highlight)
1884 return;
1886 FRAME_X_DISPLAY_INFO (f)->mouse_face_mouse_x = x;
1887 FRAME_X_DISPLAY_INFO (f)->mouse_face_mouse_y = y;
1888 FRAME_X_DISPLAY_INFO (f)->mouse_face_mouse_frame = f;
1890 if (FRAME_X_DISPLAY_INFO (f)->mouse_face_defer)
1891 return;
1893 if (gc_in_progress)
1895 FRAME_X_DISPLAY_INFO (f)->mouse_face_deferred_gc = 1;
1896 return;
1899 /* Find out which glyph the mouse is on. */
1900 pixel_to_glyph_coords (f, x, y, &column, &row,
1901 &new_glyph, FRAME_X_DISPLAY_INFO (f)->grabbed);
1903 /* Which window is that in? */
1904 window = window_from_coordinates (f, column, row, &portion);
1905 w = XWINDOW (window);
1907 /* If we were displaying active text in another window, clear that. */
1908 if (! EQ (window, FRAME_X_DISPLAY_INFO (f)->mouse_face_window))
1909 clear_mouse_face (FRAME_X_DISPLAY_INFO (f));
1911 /* Are we in a window whose display is up to date?
1912 And verify the buffer's text has not changed. */
1913 if (WINDOWP (window) && portion == 0 && row >= 0 && column >= 0
1914 && row < FRAME_HEIGHT (f) && column < FRAME_WIDTH (f)
1915 && EQ (w->window_end_valid, w->buffer)
1916 && w->last_modified == BUF_MODIFF (XBUFFER (w->buffer)))
1918 int *ptr = FRAME_CURRENT_GLYPHS (f)->charstarts[row];
1919 int i, pos;
1921 /* Find which buffer position the mouse corresponds to. */
1922 for (i = column; i >= 0; i--)
1923 if (ptr[i] > 0)
1924 break;
1925 pos = ptr[i];
1926 /* Is it outside the displayed active region (if any)? */
1927 if (pos <= 0)
1928 clear_mouse_face (FRAME_X_DISPLAY_INFO (f));
1929 else if (! (EQ (window, FRAME_X_DISPLAY_INFO (f)->mouse_face_window)
1930 && row >= FRAME_X_DISPLAY_INFO (f)->mouse_face_beg_row
1931 && row <= FRAME_X_DISPLAY_INFO (f)->mouse_face_end_row
1932 && (row > FRAME_X_DISPLAY_INFO (f)->mouse_face_beg_row
1933 || column >= FRAME_X_DISPLAY_INFO (f)->mouse_face_beg_col)
1934 && (row < FRAME_X_DISPLAY_INFO (f)->mouse_face_end_row
1935 || column < FRAME_X_DISPLAY_INFO (f)->mouse_face_end_col
1936 || FRAME_X_DISPLAY_INFO (f)->mouse_face_past_end)))
1938 Lisp_Object mouse_face, overlay, position;
1939 Lisp_Object *overlay_vec;
1940 int len, noverlays, ignor1;
1941 struct buffer *obuf;
1942 int obegv, ozv;
1944 /* If we get an out-of-range value, return now; avoid an error. */
1945 if (pos > BUF_Z (XBUFFER (w->buffer)))
1946 return;
1948 /* Make the window's buffer temporarily current for
1949 overlays_at and compute_char_face. */
1950 obuf = current_buffer;
1951 current_buffer = XBUFFER (w->buffer);
1952 obegv = BEGV;
1953 ozv = ZV;
1954 BEGV = BEG;
1955 ZV = Z;
1957 /* Yes. Clear the display of the old active region, if any. */
1958 clear_mouse_face (FRAME_X_DISPLAY_INFO (f));
1960 /* Is this char mouse-active? */
1961 XSETINT (position, pos);
1963 len = 10;
1964 overlay_vec = (Lisp_Object *) xmalloc (len * sizeof (Lisp_Object));
1966 /* Put all the overlays we want in a vector in overlay_vec.
1967 Store the length in len. */
1968 noverlays = overlays_at (XINT (pos), 1, &overlay_vec, &len,
1969 NULL, NULL);
1970 noverlays = sort_overlays (overlay_vec, noverlays, w);
1972 /* Find the highest priority overlay that has a mouse-face prop. */
1973 overlay = Qnil;
1974 for (i = 0; i < noverlays; i++)
1976 mouse_face = Foverlay_get (overlay_vec[i], Qmouse_face);
1977 if (!NILP (mouse_face))
1979 overlay = overlay_vec[i];
1980 break;
1983 free (overlay_vec);
1984 /* If no overlay applies, get a text property. */
1985 if (NILP (overlay))
1986 mouse_face = Fget_text_property (position, Qmouse_face, w->buffer);
1988 /* Handle the overlay case. */
1989 if (! NILP (overlay))
1991 /* Find the range of text around this char that
1992 should be active. */
1993 Lisp_Object before, after;
1994 int ignore;
1996 before = Foverlay_start (overlay);
1997 after = Foverlay_end (overlay);
1998 /* Record this as the current active region. */
1999 fast_find_position (window, before,
2000 &FRAME_X_DISPLAY_INFO (f)->mouse_face_beg_col,
2001 &FRAME_X_DISPLAY_INFO (f)->mouse_face_beg_row);
2002 FRAME_X_DISPLAY_INFO (f)->mouse_face_past_end
2003 = !fast_find_position (window, after,
2004 &FRAME_X_DISPLAY_INFO (f)->mouse_face_end_col,
2005 &FRAME_X_DISPLAY_INFO (f)->mouse_face_end_row);
2006 FRAME_X_DISPLAY_INFO (f)->mouse_face_window = window;
2007 FRAME_X_DISPLAY_INFO (f)->mouse_face_face_id
2008 = compute_char_face (f, w, pos, 0, 0,
2009 &ignore, pos + 1, 1);
2011 /* Display it as active. */
2012 show_mouse_face (FRAME_X_DISPLAY_INFO (f), 1);
2014 /* Handle the text property case. */
2015 else if (! NILP (mouse_face))
2017 /* Find the range of text around this char that
2018 should be active. */
2019 Lisp_Object before, after, beginning, end;
2020 int ignore;
2022 beginning = Fmarker_position (w->start);
2023 XSETINT (end, (BUF_Z (XBUFFER (w->buffer))
2024 - XFASTINT (w->window_end_pos)));
2025 before
2026 = Fprevious_single_property_change (make_number (pos + 1),
2027 Qmouse_face,
2028 w->buffer, beginning);
2029 after
2030 = Fnext_single_property_change (position, Qmouse_face,
2031 w->buffer, end);
2032 /* Record this as the current active region. */
2033 fast_find_position (window, before,
2034 &FRAME_X_DISPLAY_INFO (f)->mouse_face_beg_col,
2035 &FRAME_X_DISPLAY_INFO (f)->mouse_face_beg_row);
2036 FRAME_X_DISPLAY_INFO (f)->mouse_face_past_end
2037 = !fast_find_position (window, after,
2038 &FRAME_X_DISPLAY_INFO (f)->mouse_face_end_col,
2039 &FRAME_X_DISPLAY_INFO (f)->mouse_face_end_row);
2040 FRAME_X_DISPLAY_INFO (f)->mouse_face_window = window;
2041 FRAME_X_DISPLAY_INFO (f)->mouse_face_face_id
2042 = compute_char_face (f, w, pos, 0, 0,
2043 &ignore, pos + 1, 1);
2045 /* Display it as active. */
2046 show_mouse_face (FRAME_X_DISPLAY_INFO (f), 1);
2048 BEGV = obegv;
2049 ZV = ozv;
2050 current_buffer = obuf;
2055 /* Find the row and column of position POS in window WINDOW.
2056 Store them in *COLUMNP and *ROWP.
2057 This assumes display in WINDOW is up to date.
2058 If POS is above start of WINDOW, return coords
2059 of start of first screen line.
2060 If POS is after end of WINDOW, return coords of end of last screen line.
2062 Value is 1 if POS is in range, 0 if it was off screen. */
2064 static int
2065 fast_find_position (window, pos, columnp, rowp)
2066 Lisp_Object window;
2067 int pos;
2068 int *columnp, *rowp;
2070 struct window *w = XWINDOW (window);
2071 FRAME_PTR f = XFRAME (WINDOW_FRAME (w));
2072 int i;
2073 int row = 0;
2074 int left = w->left;
2075 int top = w->top;
2076 int height = XFASTINT (w->height) - ! MINI_WINDOW_P (w);
2077 int width = window_internal_width (w);
2078 int *charstarts;
2079 int lastcol;
2080 int maybe_next_line = 0;
2082 /* Find the right row. */
2083 for (i = 0;
2084 i < height;
2085 i++)
2087 int linestart = FRAME_CURRENT_GLYPHS (f)->charstarts[top + i][left];
2088 if (linestart > pos)
2089 break;
2090 /* If the position sought is the end of the buffer,
2091 don't include the blank lines at the bottom of the window. */
2092 if (linestart == pos && pos == BUF_ZV (XBUFFER (w->buffer)))
2094 maybe_next_line = 1;
2095 break;
2097 if (linestart > 0)
2098 row = i;
2101 /* Find the right column with in it. */
2102 charstarts = FRAME_CURRENT_GLYPHS (f)->charstarts[top + row];
2103 lastcol = left;
2104 for (i = 0; i < width; i++)
2106 if (charstarts[left + i] == pos)
2108 *rowp = row + top;
2109 *columnp = i + left;
2110 return 1;
2112 else if (charstarts[left + i] > pos)
2113 break;
2114 else if (charstarts[left + i] > 0)
2115 lastcol = left + i;
2118 /* If we're looking for the end of the buffer,
2119 and we didn't find it in the line we scanned,
2120 use the start of the following line. */
2121 if (maybe_next_line)
2123 row++;
2124 lastcol = left;
2127 *rowp = row + top;
2128 *columnp = lastcol;
2129 return 0;
2132 /* Display the active region described by mouse_face_*
2133 in its mouse-face if HL > 0, in its normal face if HL = 0. */
2135 static void
2136 show_mouse_face (dpyinfo, hl)
2137 struct x_display_info *dpyinfo;
2138 int hl;
2140 struct window *w = XWINDOW (dpyinfo->mouse_face_window);
2141 int width = window_internal_width (w);
2142 FRAME_PTR f = XFRAME (WINDOW_FRAME (w));
2143 int i;
2144 int cursor_off = 0;
2146 for (i = FRAME_X_DISPLAY_INFO (f)->mouse_face_beg_row;
2147 i <= FRAME_X_DISPLAY_INFO (f)->mouse_face_end_row; i++)
2149 int column = (i == FRAME_X_DISPLAY_INFO (f)->mouse_face_beg_row
2150 ? FRAME_X_DISPLAY_INFO (f)->mouse_face_beg_col
2151 : w->left);
2152 int endcolumn = (i == FRAME_X_DISPLAY_INFO (f)->mouse_face_end_row
2153 ? FRAME_X_DISPLAY_INFO (f)->mouse_face_end_col
2154 : w->left + width);
2155 endcolumn = min (endcolumn, FRAME_CURRENT_GLYPHS (f)->used[i]);
2157 /* If the cursor's in the text we are about to rewrite,
2158 turn the cursor off. */
2159 if (i == curs_y
2160 && curs_x >= column - 1
2161 && curs_x <= endcolumn)
2163 x_update_cursor (f, 0);
2164 cursor_off = 1;
2167 dumpglyphs (f,
2168 CHAR_TO_PIXEL_COL (f, column),
2169 CHAR_TO_PIXEL_ROW (f, i),
2170 FRAME_CURRENT_GLYPHS (f)->glyphs[i] + column,
2171 endcolumn - column,
2172 /* Highlight with mouse face if hl > 0. */
2173 hl > 0 ? 3 : 0, 0);
2176 /* If we turned the cursor off, turn it back on. */
2177 if (cursor_off)
2178 x_update_cursor (f, 1);
2180 /* Change the mouse cursor according to the value of HL. */
2181 if (hl > 0)
2182 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2183 f->output_data.x->cross_cursor);
2184 else
2185 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2186 f->output_data.x->text_cursor);
2189 /* Clear out the mouse-highlighted active region.
2190 Redraw it unhighlighted first. */
2192 static void
2193 clear_mouse_face (dpyinfo)
2194 struct x_display_info *dpyinfo;
2196 if (! NILP (dpyinfo->mouse_face_window))
2197 show_mouse_face (dpyinfo, 0);
2199 dpyinfo->mouse_face_beg_row = dpyinfo->mouse_face_beg_col = -1;
2200 dpyinfo->mouse_face_end_row = dpyinfo->mouse_face_end_col = -1;
2201 dpyinfo->mouse_face_window = Qnil;
2204 static struct scroll_bar *x_window_to_scroll_bar ();
2205 static void x_scroll_bar_report_motion ();
2207 /* Return the current position of the mouse.
2208 *fp should be a frame which indicates which display to ask about.
2210 If the mouse movement started in a scroll bar, set *fp, *bar_window,
2211 and *part to the frame, window, and scroll bar part that the mouse
2212 is over. Set *x and *y to the portion and whole of the mouse's
2213 position on the scroll bar.
2215 If the mouse movement started elsewhere, set *fp to the frame the
2216 mouse is on, *bar_window to nil, and *x and *y to the character cell
2217 the mouse is over.
2219 Set *time to the server timestamp for the time at which the mouse
2220 was at this position.
2222 Don't store anything if we don't have a valid set of values to report.
2224 This clears the mouse_moved flag, so we can wait for the next mouse
2225 movement. */
2227 static void
2228 XTmouse_position (fp, insist, bar_window, part, x, y, time)
2229 FRAME_PTR *fp;
2230 int insist;
2231 Lisp_Object *bar_window;
2232 enum scroll_bar_part *part;
2233 Lisp_Object *x, *y;
2234 unsigned long *time;
2236 FRAME_PTR f1;
2238 BLOCK_INPUT;
2240 if (! NILP (last_mouse_scroll_bar))
2241 x_scroll_bar_report_motion (fp, bar_window, part, x, y, time);
2242 else
2244 Window root;
2245 int root_x, root_y;
2247 Window dummy_window;
2248 int dummy;
2250 Lisp_Object frame, tail;
2252 /* Clear the mouse-moved flag for every frame on this display. */
2253 FOR_EACH_FRAME (tail, frame)
2254 if (FRAME_X_DISPLAY (XFRAME (frame)) == FRAME_X_DISPLAY (*fp))
2255 XFRAME (frame)->mouse_moved = 0;
2257 last_mouse_scroll_bar = Qnil;
2259 /* Figure out which root window we're on. */
2260 XQueryPointer (FRAME_X_DISPLAY (*fp),
2261 DefaultRootWindow (FRAME_X_DISPLAY (*fp)),
2263 /* The root window which contains the pointer. */
2264 &root,
2266 /* Trash which we can't trust if the pointer is on
2267 a different screen. */
2268 &dummy_window,
2270 /* The position on that root window. */
2271 &root_x, &root_y,
2273 /* More trash we can't trust. */
2274 &dummy, &dummy,
2276 /* Modifier keys and pointer buttons, about which
2277 we don't care. */
2278 (unsigned int *) &dummy);
2280 /* Now we have a position on the root; find the innermost window
2281 containing the pointer. */
2283 Window win, child;
2284 int win_x, win_y;
2285 int parent_x, parent_y;
2287 win = root;
2289 /* XTranslateCoordinates can get errors if the window
2290 structure is changing at the same time this function
2291 is running. So at least we must not crash from them. */
2293 x_catch_errors (FRAME_X_DISPLAY (*fp));
2295 if (FRAME_X_DISPLAY_INFO (*fp)->grabbed && last_mouse_frame
2296 && FRAME_LIVE_P (last_mouse_frame))
2298 /* If mouse was grabbed on a frame, give coords for that frame
2299 even if the mouse is now outside it. */
2300 XTranslateCoordinates (FRAME_X_DISPLAY (*fp),
2302 /* From-window, to-window. */
2303 root, FRAME_X_WINDOW (last_mouse_frame),
2305 /* From-position, to-position. */
2306 root_x, root_y, &win_x, &win_y,
2308 /* Child of win. */
2309 &child);
2310 f1 = last_mouse_frame;
2312 else
2314 while (1)
2316 XTranslateCoordinates (FRAME_X_DISPLAY (*fp),
2318 /* From-window, to-window. */
2319 root, win,
2321 /* From-position, to-position. */
2322 root_x, root_y, &win_x, &win_y,
2324 /* Child of win. */
2325 &child);
2327 if (child == None || child == win)
2328 break;
2330 win = child;
2331 parent_x = win_x;
2332 parent_y = win_y;
2335 /* Now we know that:
2336 win is the innermost window containing the pointer
2337 (XTC says it has no child containing the pointer),
2338 win_x and win_y are the pointer's position in it
2339 (XTC did this the last time through), and
2340 parent_x and parent_y are the pointer's position in win's parent.
2341 (They are what win_x and win_y were when win was child.
2342 If win is the root window, it has no parent, and
2343 parent_{x,y} are invalid, but that's okay, because we'll
2344 never use them in that case.) */
2346 /* Is win one of our frames? */
2347 f1 = x_any_window_to_frame (FRAME_X_DISPLAY_INFO (*fp), win);
2350 if (x_had_errors_p (FRAME_X_DISPLAY (*fp)))
2351 f1 = 0;
2353 x_uncatch_errors (FRAME_X_DISPLAY (*fp));
2355 /* If not, is it one of our scroll bars? */
2356 if (! f1)
2358 struct scroll_bar *bar = x_window_to_scroll_bar (win);
2360 if (bar)
2362 f1 = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
2363 win_x = parent_x;
2364 win_y = parent_y;
2368 if (f1 == 0 && insist)
2369 f1 = selected_frame;
2371 if (f1)
2373 int ignore1, ignore2;
2375 /* Ok, we found a frame. Store all the values. */
2377 pixel_to_glyph_coords (f1, win_x, win_y, &ignore1, &ignore2,
2378 &last_mouse_glyph,
2379 FRAME_X_DISPLAY_INFO (f1)->grabbed
2380 || insist);
2382 *bar_window = Qnil;
2383 *part = 0;
2384 *fp = f1;
2385 XSETINT (*x, win_x);
2386 XSETINT (*y, win_y);
2387 *time = last_mouse_movement_time;
2392 UNBLOCK_INPUT;
2395 /* Scroll bar support. */
2397 /* Given an X window ID, find the struct scroll_bar which manages it.
2398 This can be called in GC, so we have to make sure to strip off mark
2399 bits. */
2400 static struct scroll_bar *
2401 x_window_to_scroll_bar (window_id)
2402 Window window_id;
2404 Lisp_Object tail, frame;
2406 for (tail = Vframe_list;
2407 XGCTYPE (tail) == Lisp_Cons;
2408 tail = XCONS (tail)->cdr)
2410 Lisp_Object frame, bar, condemned;
2412 frame = XCONS (tail)->car;
2413 /* All elements of Vframe_list should be frames. */
2414 if (! GC_FRAMEP (frame))
2415 abort ();
2417 /* Scan this frame's scroll bar list for a scroll bar with the
2418 right window ID. */
2419 condemned = FRAME_CONDEMNED_SCROLL_BARS (XFRAME (frame));
2420 for (bar = FRAME_SCROLL_BARS (XFRAME (frame));
2421 /* This trick allows us to search both the ordinary and
2422 condemned scroll bar lists with one loop. */
2423 ! GC_NILP (bar) || (bar = condemned,
2424 condemned = Qnil,
2425 ! GC_NILP (bar));
2426 bar = XSCROLL_BAR (bar)->next)
2427 if (SCROLL_BAR_X_WINDOW (XSCROLL_BAR (bar)) == window_id)
2428 return XSCROLL_BAR (bar);
2431 return 0;
2434 /* Open a new X window to serve as a scroll bar, and return the
2435 scroll bar vector for it. */
2436 static struct scroll_bar *
2437 x_scroll_bar_create (window, top, left, width, height)
2438 struct window *window;
2439 int top, left, width, height;
2441 FRAME_PTR f = XFRAME (WINDOW_FRAME (window));
2442 struct scroll_bar *bar
2443 = XSCROLL_BAR (Fmake_vector (make_number (SCROLL_BAR_VEC_SIZE), Qnil));
2445 BLOCK_INPUT;
2448 XSetWindowAttributes a;
2449 unsigned long mask;
2450 a.background_pixel = f->output_data.x->background_pixel;
2451 a.event_mask = (ButtonPressMask | ButtonReleaseMask
2452 | ButtonMotionMask | PointerMotionHintMask
2453 | ExposureMask);
2454 a.cursor = FRAME_X_DISPLAY_INFO (f)->vertical_scroll_bar_cursor;
2456 mask = (CWBackPixel | CWEventMask | CWCursor);
2458 #if 0
2460 ac = 0;
2461 XtSetArg (al[ac], XtNx, left); ac++;
2462 XtSetArg (al[ac], XtNy, top); ac++;
2463 XtSetArg (al[ac], XtNwidth, width); ac++;
2464 XtSetArg (al[ac], XtNheight, height); ac++;
2465 XtSetArg (al[ac], XtNborderWidth, 0); ac++;
2466 sb_widget = XtCreateManagedWidget ("box",
2467 boxWidgetClass,
2468 f->output_data.x->edit_widget, al, ac);
2469 SET_SCROLL_BAR_X_WINDOW
2470 (bar, sb_widget->core.window);
2471 #endif
2472 SET_SCROLL_BAR_X_WINDOW
2473 (bar,
2474 XCreateWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2476 /* Position and size of scroll bar. */
2477 left, top, width, height,
2479 /* Border width, depth, class, and visual. */
2480 0, CopyFromParent, CopyFromParent, CopyFromParent,
2482 /* Attributes. */
2483 mask, &a));
2486 XSETWINDOW (bar->window, window);
2487 XSETINT (bar->top, top);
2488 XSETINT (bar->left, left);
2489 XSETINT (bar->width, width);
2490 XSETINT (bar->height, height);
2491 XSETINT (bar->start, 0);
2492 XSETINT (bar->end, 0);
2493 bar->dragging = Qnil;
2495 /* Add bar to its frame's list of scroll bars. */
2496 bar->next = FRAME_SCROLL_BARS (f);
2497 bar->prev = Qnil;
2498 XSETVECTOR (FRAME_SCROLL_BARS (f), bar);
2499 if (! NILP (bar->next))
2500 XSETVECTOR (XSCROLL_BAR (bar->next)->prev, bar);
2502 XMapRaised (FRAME_X_DISPLAY (f), SCROLL_BAR_X_WINDOW (bar));
2504 UNBLOCK_INPUT;
2506 return bar;
2509 /* Draw BAR's handle in the proper position.
2510 If the handle is already drawn from START to END, don't bother
2511 redrawing it, unless REBUILD is non-zero; in that case, always
2512 redraw it. (REBUILD is handy for drawing the handle after expose
2513 events.)
2515 Normally, we want to constrain the start and end of the handle to
2516 fit inside its rectangle, but if the user is dragging the scroll bar
2517 handle, we want to let them drag it down all the way, so that the
2518 bar's top is as far down as it goes; otherwise, there's no way to
2519 move to the very end of the buffer. */
2520 static void
2521 x_scroll_bar_set_handle (bar, start, end, rebuild)
2522 struct scroll_bar *bar;
2523 int start, end;
2524 int rebuild;
2526 int dragging = ! NILP (bar->dragging);
2527 Window w = SCROLL_BAR_X_WINDOW (bar);
2528 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
2529 GC gc = f->output_data.x->normal_gc;
2531 /* If the display is already accurate, do nothing. */
2532 if (! rebuild
2533 && start == XINT (bar->start)
2534 && end == XINT (bar->end))
2535 return;
2537 BLOCK_INPUT;
2540 int inside_width = VERTICAL_SCROLL_BAR_INSIDE_WIDTH (XINT (bar->width));
2541 int inside_height = VERTICAL_SCROLL_BAR_INSIDE_HEIGHT (XINT (bar->height));
2542 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (XINT (bar->height));
2544 /* Make sure the values are reasonable, and try to preserve
2545 the distance between start and end. */
2547 int length = end - start;
2549 if (start < 0)
2550 start = 0;
2551 else if (start > top_range)
2552 start = top_range;
2553 end = start + length;
2555 if (end < start)
2556 end = start;
2557 else if (end > top_range && ! dragging)
2558 end = top_range;
2561 /* Store the adjusted setting in the scroll bar. */
2562 XSETINT (bar->start, start);
2563 XSETINT (bar->end, end);
2565 /* Clip the end position, just for display. */
2566 if (end > top_range)
2567 end = top_range;
2569 /* Draw bottom positions VERTICAL_SCROLL_BAR_MIN_HANDLE pixels
2570 below top positions, to make sure the handle is always at least
2571 that many pixels tall. */
2572 end += VERTICAL_SCROLL_BAR_MIN_HANDLE;
2574 /* Draw the empty space above the handle. Note that we can't clear
2575 zero-height areas; that means "clear to end of window." */
2576 if (0 < start)
2577 XClearArea (FRAME_X_DISPLAY (f), w,
2579 /* x, y, width, height, and exposures. */
2580 VERTICAL_SCROLL_BAR_LEFT_BORDER,
2581 VERTICAL_SCROLL_BAR_TOP_BORDER,
2582 inside_width, start,
2583 False);
2585 /* Draw the handle itself. */
2586 XFillRectangle (FRAME_X_DISPLAY (f), w, gc,
2588 /* x, y, width, height */
2589 VERTICAL_SCROLL_BAR_LEFT_BORDER,
2590 VERTICAL_SCROLL_BAR_TOP_BORDER + start,
2591 inside_width, end - start);
2594 /* Draw the empty space below the handle. Note that we can't
2595 clear zero-height areas; that means "clear to end of window." */
2596 if (end < inside_height)
2597 XClearArea (FRAME_X_DISPLAY (f), w,
2599 /* x, y, width, height, and exposures. */
2600 VERTICAL_SCROLL_BAR_LEFT_BORDER,
2601 VERTICAL_SCROLL_BAR_TOP_BORDER + end,
2602 inside_width, inside_height - end,
2603 False);
2607 UNBLOCK_INPUT;
2610 /* Move a scroll bar around on the screen, to accommodate changing
2611 window configurations. */
2612 static void
2613 x_scroll_bar_move (bar, top, left, width, height)
2614 struct scroll_bar *bar;
2615 int top, left, width, height;
2617 Window w = SCROLL_BAR_X_WINDOW (bar);
2618 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
2620 BLOCK_INPUT;
2623 XWindowChanges wc;
2624 unsigned int mask = 0;
2626 wc.x = left;
2627 wc.y = top;
2628 wc.width = width;
2629 wc.height = height;
2631 if (left != XINT (bar->left)) mask |= CWX;
2632 if (top != XINT (bar->top)) mask |= CWY;
2633 if (width != XINT (bar->width)) mask |= CWWidth;
2634 if (height != XINT (bar->height)) mask |= CWHeight;
2636 if (mask)
2637 XConfigureWindow (FRAME_X_DISPLAY (f), SCROLL_BAR_X_WINDOW (bar),
2638 mask, &wc);
2641 XSETINT (bar->left, left);
2642 XSETINT (bar->top, top);
2643 XSETINT (bar->width, width);
2644 XSETINT (bar->height, height);
2646 UNBLOCK_INPUT;
2649 /* Destroy the X window for BAR, and set its Emacs window's scroll bar
2650 to nil. */
2651 static void
2652 x_scroll_bar_remove (bar)
2653 struct scroll_bar *bar;
2655 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
2657 BLOCK_INPUT;
2659 /* Destroy the window. */
2660 XDestroyWindow (FRAME_X_DISPLAY (f), SCROLL_BAR_X_WINDOW (bar));
2662 /* Disassociate this scroll bar from its window. */
2663 XWINDOW (bar->window)->vertical_scroll_bar = Qnil;
2665 UNBLOCK_INPUT;
2668 /* Set the handle of the vertical scroll bar for WINDOW to indicate
2669 that we are displaying PORTION characters out of a total of WHOLE
2670 characters, starting at POSITION. If WINDOW has no scroll bar,
2671 create one. */
2672 static void
2673 XTset_vertical_scroll_bar (window, portion, whole, position)
2674 struct window *window;
2675 int portion, whole, position;
2677 FRAME_PTR f = XFRAME (WINDOW_FRAME (window));
2678 int top = XINT (window->top);
2679 int left = WINDOW_VERTICAL_SCROLL_BAR_COLUMN (window);
2680 int height = WINDOW_VERTICAL_SCROLL_BAR_HEIGHT (window);
2682 /* Where should this scroll bar be, pixelwise? */
2683 int pixel_top = CHAR_TO_PIXEL_ROW (f, top);
2684 int pixel_left = CHAR_TO_PIXEL_COL (f, left);
2685 int pixel_width
2686 = (FRAME_SCROLL_BAR_PIXEL_WIDTH (f) > 0
2687 ? FRAME_SCROLL_BAR_PIXEL_WIDTH (f)
2688 : (FRAME_SCROLL_BAR_COLS (f) * FONT_WIDTH (f->output_data.x->font)));
2689 int pixel_height = VERTICAL_SCROLL_BAR_PIXEL_HEIGHT (f, height);
2691 struct scroll_bar *bar;
2693 /* Does the scroll bar exist yet? */
2694 if (NILP (window->vertical_scroll_bar))
2695 bar = x_scroll_bar_create (window,
2696 pixel_top, pixel_left,
2697 pixel_width, pixel_height);
2698 else
2700 /* It may just need to be moved and resized. */
2701 bar = XSCROLL_BAR (window->vertical_scroll_bar);
2702 x_scroll_bar_move (bar, pixel_top, pixel_left, pixel_width, pixel_height);
2705 /* Set the scroll bar's current state, unless we're currently being
2706 dragged. */
2707 if (NILP (bar->dragging))
2709 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (pixel_height);
2711 if (whole == 0)
2712 x_scroll_bar_set_handle (bar, 0, top_range, 0);
2713 else
2715 int start = ((double) position * top_range) / whole;
2716 int end = ((double) (position + portion) * top_range) / whole;
2718 x_scroll_bar_set_handle (bar, start, end, 0);
2722 XSETVECTOR (window->vertical_scroll_bar, bar);
2726 /* The following three hooks are used when we're doing a thorough
2727 redisplay of the frame. We don't explicitly know which scroll bars
2728 are going to be deleted, because keeping track of when windows go
2729 away is a real pain - "Can you say set-window-configuration, boys
2730 and girls?" Instead, we just assert at the beginning of redisplay
2731 that *all* scroll bars are to be removed, and then save a scroll bar
2732 from the fiery pit when we actually redisplay its window. */
2734 /* Arrange for all scroll bars on FRAME to be removed at the next call
2735 to `*judge_scroll_bars_hook'. A scroll bar may be spared if
2736 `*redeem_scroll_bar_hook' is applied to its window before the judgement. */
2737 static void
2738 XTcondemn_scroll_bars (frame)
2739 FRAME_PTR frame;
2741 /* Transfer all the scroll bars to FRAME_CONDEMNED_SCROLL_BARS. */
2742 while (! NILP (FRAME_SCROLL_BARS (frame)))
2744 Lisp_Object bar;
2745 bar = FRAME_SCROLL_BARS (frame);
2746 FRAME_SCROLL_BARS (frame) = XSCROLL_BAR (bar)->next;
2747 XSCROLL_BAR (bar)->next = FRAME_CONDEMNED_SCROLL_BARS (frame);
2748 XSCROLL_BAR (bar)->prev = Qnil;
2749 if (! NILP (FRAME_CONDEMNED_SCROLL_BARS (frame)))
2750 XSCROLL_BAR (FRAME_CONDEMNED_SCROLL_BARS (frame))->prev = bar;
2751 FRAME_CONDEMNED_SCROLL_BARS (frame) = bar;
2755 /* Unmark WINDOW's scroll bar for deletion in this judgement cycle.
2756 Note that WINDOW isn't necessarily condemned at all. */
2757 static void
2758 XTredeem_scroll_bar (window)
2759 struct window *window;
2761 struct scroll_bar *bar;
2763 /* We can't redeem this window's scroll bar if it doesn't have one. */
2764 if (NILP (window->vertical_scroll_bar))
2765 abort ();
2767 bar = XSCROLL_BAR (window->vertical_scroll_bar);
2769 /* Unlink it from the condemned list. */
2771 FRAME_PTR f = XFRAME (WINDOW_FRAME (window));
2773 if (NILP (bar->prev))
2775 /* If the prev pointer is nil, it must be the first in one of
2776 the lists. */
2777 if (EQ (FRAME_SCROLL_BARS (f), window->vertical_scroll_bar))
2778 /* It's not condemned. Everything's fine. */
2779 return;
2780 else if (EQ (FRAME_CONDEMNED_SCROLL_BARS (f),
2781 window->vertical_scroll_bar))
2782 FRAME_CONDEMNED_SCROLL_BARS (f) = bar->next;
2783 else
2784 /* If its prev pointer is nil, it must be at the front of
2785 one or the other! */
2786 abort ();
2788 else
2789 XSCROLL_BAR (bar->prev)->next = bar->next;
2791 if (! NILP (bar->next))
2792 XSCROLL_BAR (bar->next)->prev = bar->prev;
2794 bar->next = FRAME_SCROLL_BARS (f);
2795 bar->prev = Qnil;
2796 XSETVECTOR (FRAME_SCROLL_BARS (f), bar);
2797 if (! NILP (bar->next))
2798 XSETVECTOR (XSCROLL_BAR (bar->next)->prev, bar);
2802 /* Remove all scroll bars on FRAME that haven't been saved since the
2803 last call to `*condemn_scroll_bars_hook'. */
2804 static void
2805 XTjudge_scroll_bars (f)
2806 FRAME_PTR f;
2808 Lisp_Object bar, next;
2810 bar = FRAME_CONDEMNED_SCROLL_BARS (f);
2812 /* Clear out the condemned list now so we won't try to process any
2813 more events on the hapless scroll bars. */
2814 FRAME_CONDEMNED_SCROLL_BARS (f) = Qnil;
2816 for (; ! NILP (bar); bar = next)
2818 struct scroll_bar *b = XSCROLL_BAR (bar);
2820 x_scroll_bar_remove (b);
2822 next = b->next;
2823 b->next = b->prev = Qnil;
2826 /* Now there should be no references to the condemned scroll bars,
2827 and they should get garbage-collected. */
2831 /* Handle an Expose or GraphicsExpose event on a scroll bar.
2833 This may be called from a signal handler, so we have to ignore GC
2834 mark bits. */
2835 static void
2836 x_scroll_bar_expose (bar, event)
2837 struct scroll_bar *bar;
2838 XEvent *event;
2840 Window w = SCROLL_BAR_X_WINDOW (bar);
2841 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
2842 GC gc = f->output_data.x->normal_gc;
2844 BLOCK_INPUT;
2846 x_scroll_bar_set_handle (bar, XINT (bar->start), XINT (bar->end), 1);
2848 /* Draw a one-pixel border just inside the edges of the scroll bar. */
2849 XDrawRectangle (FRAME_X_DISPLAY (f), w, gc,
2851 /* x, y, width, height */
2852 0, 0, XINT (bar->width) - 1, XINT (bar->height) - 1);
2854 UNBLOCK_INPUT;
2857 /* Handle a mouse click on the scroll bar BAR. If *EMACS_EVENT's kind
2858 is set to something other than no_event, it is enqueued.
2860 This may be called from a signal handler, so we have to ignore GC
2861 mark bits. */
2862 static void
2863 x_scroll_bar_handle_click (bar, event, emacs_event)
2864 struct scroll_bar *bar;
2865 XEvent *event;
2866 struct input_event *emacs_event;
2868 if (! GC_WINDOWP (bar->window))
2869 abort ();
2871 emacs_event->kind = scroll_bar_click;
2872 emacs_event->code = event->xbutton.button - Button1;
2873 emacs_event->modifiers
2874 = (x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO
2875 (XFRAME (WINDOW_FRAME (XWINDOW (bar->window)))),
2876 event->xbutton.state)
2877 | (event->type == ButtonRelease
2878 ? up_modifier
2879 : down_modifier));
2880 emacs_event->frame_or_window = bar->window;
2881 emacs_event->timestamp = event->xbutton.time;
2883 int internal_height
2884 = VERTICAL_SCROLL_BAR_INSIDE_HEIGHT (XINT (bar->height));
2885 int top_range
2886 = VERTICAL_SCROLL_BAR_TOP_RANGE (XINT (bar->height));
2887 int y = event->xbutton.y - VERTICAL_SCROLL_BAR_TOP_BORDER;
2889 if (y < 0) y = 0;
2890 if (y > top_range) y = top_range;
2892 if (y < XINT (bar->start))
2893 emacs_event->part = scroll_bar_above_handle;
2894 else if (y < XINT (bar->end) + VERTICAL_SCROLL_BAR_MIN_HANDLE)
2895 emacs_event->part = scroll_bar_handle;
2896 else
2897 emacs_event->part = scroll_bar_below_handle;
2899 /* Just because the user has clicked on the handle doesn't mean
2900 they want to drag it. Lisp code needs to be able to decide
2901 whether or not we're dragging. */
2902 #if 0
2903 /* If the user has just clicked on the handle, record where they're
2904 holding it. */
2905 if (event->type == ButtonPress
2906 && emacs_event->part == scroll_bar_handle)
2907 XSETINT (bar->dragging, y - XINT (bar->start));
2908 #endif
2910 /* If the user has released the handle, set it to its final position. */
2911 if (event->type == ButtonRelease
2912 && ! NILP (bar->dragging))
2914 int new_start = y - XINT (bar->dragging);
2915 int new_end = new_start + (XINT (bar->end) - XINT (bar->start));
2917 x_scroll_bar_set_handle (bar, new_start, new_end, 0);
2918 bar->dragging = Qnil;
2921 /* Same deal here as the other #if 0. */
2922 #if 0
2923 /* Clicks on the handle are always reported as occurring at the top of
2924 the handle. */
2925 if (emacs_event->part == scroll_bar_handle)
2926 emacs_event->x = bar->start;
2927 else
2928 XSETINT (emacs_event->x, y);
2929 #else
2930 XSETINT (emacs_event->x, y);
2931 #endif
2933 XSETINT (emacs_event->y, top_range);
2937 /* Handle some mouse motion while someone is dragging the scroll bar.
2939 This may be called from a signal handler, so we have to ignore GC
2940 mark bits. */
2941 static void
2942 x_scroll_bar_note_movement (bar, event)
2943 struct scroll_bar *bar;
2944 XEvent *event;
2946 FRAME_PTR f = XFRAME (XWINDOW (bar->window)->frame);
2948 last_mouse_movement_time = event->xmotion.time;
2950 f->mouse_moved = 1;
2951 XSETVECTOR (last_mouse_scroll_bar, bar);
2953 /* If we're dragging the bar, display it. */
2954 if (! GC_NILP (bar->dragging))
2956 /* Where should the handle be now? */
2957 int new_start = event->xmotion.y - XINT (bar->dragging);
2959 if (new_start != XINT (bar->start))
2961 int new_end = new_start + (XINT (bar->end) - XINT (bar->start));
2963 x_scroll_bar_set_handle (bar, new_start, new_end, 0);
2968 /* Return information to the user about the current position of the mouse
2969 on the scroll bar. */
2970 static void
2971 x_scroll_bar_report_motion (fp, bar_window, part, x, y, time)
2972 FRAME_PTR *fp;
2973 Lisp_Object *bar_window;
2974 enum scroll_bar_part *part;
2975 Lisp_Object *x, *y;
2976 unsigned long *time;
2978 struct scroll_bar *bar = XSCROLL_BAR (last_mouse_scroll_bar);
2979 Window w = SCROLL_BAR_X_WINDOW (bar);
2980 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
2981 int win_x, win_y;
2982 Window dummy_window;
2983 int dummy_coord;
2984 unsigned int dummy_mask;
2986 BLOCK_INPUT;
2988 /* Get the mouse's position relative to the scroll bar window, and
2989 report that. */
2990 if (! XQueryPointer (FRAME_X_DISPLAY (f), w,
2992 /* Root, child, root x and root y. */
2993 &dummy_window, &dummy_window,
2994 &dummy_coord, &dummy_coord,
2996 /* Position relative to scroll bar. */
2997 &win_x, &win_y,
2999 /* Mouse buttons and modifier keys. */
3000 &dummy_mask))
3002 else
3004 int inside_height
3005 = VERTICAL_SCROLL_BAR_INSIDE_HEIGHT (XINT (bar->height));
3006 int top_range
3007 = VERTICAL_SCROLL_BAR_TOP_RANGE (XINT (bar->height));
3009 win_y -= VERTICAL_SCROLL_BAR_TOP_BORDER;
3011 if (! NILP (bar->dragging))
3012 win_y -= XINT (bar->dragging);
3014 if (win_y < 0)
3015 win_y = 0;
3016 if (win_y > top_range)
3017 win_y = top_range;
3019 *fp = f;
3020 *bar_window = bar->window;
3022 if (! NILP (bar->dragging))
3023 *part = scroll_bar_handle;
3024 else if (win_y < XINT (bar->start))
3025 *part = scroll_bar_above_handle;
3026 else if (win_y < XINT (bar->end) + VERTICAL_SCROLL_BAR_MIN_HANDLE)
3027 *part = scroll_bar_handle;
3028 else
3029 *part = scroll_bar_below_handle;
3031 XSETINT (*x, win_y);
3032 XSETINT (*y, top_range);
3034 f->mouse_moved = 0;
3035 last_mouse_scroll_bar = Qnil;
3038 *time = last_mouse_movement_time;
3040 UNBLOCK_INPUT;
3044 /* The screen has been cleared so we may have changed foreground or
3045 background colors, and the scroll bars may need to be redrawn.
3046 Clear out the scroll bars, and ask for expose events, so we can
3047 redraw them. */
3049 x_scroll_bar_clear (f)
3050 FRAME_PTR f;
3052 Lisp_Object bar;
3054 /* We can have scroll bars even if this is 0,
3055 if we just turned off scroll bar mode.
3056 But in that case we should not clear them. */
3057 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
3058 for (bar = FRAME_SCROLL_BARS (f); VECTORP (bar);
3059 bar = XSCROLL_BAR (bar)->next)
3060 XClearArea (FRAME_X_DISPLAY (f), SCROLL_BAR_X_WINDOW (XSCROLL_BAR (bar)),
3061 0, 0, 0, 0, True);
3064 /* This processes Expose events from the menubar specific X event
3065 loop in xmenu.c. This allows to redisplay the frame if necessary
3066 when handling menubar or popup items. */
3068 void
3069 process_expose_from_menu (event)
3070 XEvent event;
3072 FRAME_PTR f;
3073 struct x_display_info *dpyinfo;
3075 BLOCK_INPUT;
3077 dpyinfo = x_display_info_for_display (event.xexpose.display);
3078 f = x_window_to_frame (dpyinfo, event.xexpose.window);
3079 if (f)
3081 if (f->async_visible == 0)
3083 f->async_visible = 1;
3084 f->async_iconified = 0;
3085 SET_FRAME_GARBAGED (f);
3087 else
3089 dumprectangle (x_window_to_frame (dpyinfo, event.xexpose.window),
3090 event.xexpose.x, event.xexpose.y,
3091 event.xexpose.width, event.xexpose.height);
3094 else
3096 struct scroll_bar *bar
3097 = x_window_to_scroll_bar (event.xexpose.window);
3099 if (bar)
3100 x_scroll_bar_expose (bar, &event);
3103 UNBLOCK_INPUT;
3106 /* Define a queue to save up SelectionRequest events for later handling. */
3108 struct selection_event_queue
3110 XEvent event;
3111 struct selection_event_queue *next;
3114 static struct selection_event_queue *queue;
3116 /* Nonzero means queue up certain events--don't process them yet. */
3117 static int x_queue_selection_requests;
3119 /* Queue up an X event *EVENT, to be processed later. */
3121 static void
3122 x_queue_event (f, event)
3123 FRAME_PTR f;
3124 XEvent *event;
3126 struct selection_event_queue *queue_tmp
3127 = (struct selection_event_queue *) malloc (sizeof (struct selection_event_queue));
3129 if (queue_tmp != NULL)
3131 queue_tmp->event = *event;
3132 queue_tmp->next = queue;
3133 queue = queue_tmp;
3137 /* Take all the queued events and put them back
3138 so that they get processed afresh. */
3140 static void
3141 x_unqueue_events (display)
3142 Display *display;
3144 while (queue != NULL)
3146 struct selection_event_queue *queue_tmp = queue;
3147 XPutBackEvent (display, &queue_tmp->event);
3148 queue = queue_tmp->next;
3149 free ((char *)queue_tmp);
3153 /* Start queuing SelectionRequest events. */
3155 void
3156 x_start_queuing_selection_requests (display)
3157 Display *display;
3159 x_queue_selection_requests++;
3162 /* Stop queuing SelectionRequest events. */
3164 void
3165 x_stop_queuing_selection_requests (display)
3166 Display *display;
3168 x_queue_selection_requests--;
3169 x_unqueue_events (display);
3172 /* The main X event-reading loop - XTread_socket. */
3174 /* Timestamp of enter window event. This is only used by XTread_socket,
3175 but we have to put it out here, since static variables within functions
3176 sometimes don't work. */
3177 static Time enter_timestamp;
3179 /* This holds the state XLookupString needs to implement dead keys
3180 and other tricks known as "compose processing". _X Window System_
3181 says that a portable program can't use this, but Stephen Gildea assures
3182 me that letting the compiler initialize it to zeros will work okay.
3184 This must be defined outside of XTread_socket, for the same reasons
3185 given for enter_timestamp, above. */
3186 static XComposeStatus compose_status;
3188 /* Record the last 100 characters stored
3189 to help debug the loss-of-chars-during-GC problem. */
3190 static int temp_index;
3191 static short temp_buffer[100];
3193 /* Set this to nonzero to fake an "X I/O error"
3194 on a particular display. */
3195 struct x_display_info *XTread_socket_fake_io_error;
3197 /* When we find no input here, we occasionally do a no-op command
3198 to verify that the X server is still running and we can still talk with it.
3199 We try all the open displays, one by one.
3200 This variable is used for cycling thru the displays. */
3201 static struct x_display_info *next_noop_dpyinfo;
3203 #define SET_SAVED_MENU_EVENT(size) { \
3204 if (f->output_data.x->saved_menu_event == 0) \
3205 f->output_data.x->saved_menu_event = (XEvent*)xmalloc (sizeof (XEvent)); \
3206 bcopy (&event, f->output_data.x->saved_menu_event, size); \
3207 if (numchars >= 1) \
3209 bufp->kind = menu_bar_activate_event; \
3210 XSETFRAME (bufp->frame_or_window, f); \
3211 bufp++; \
3212 count++; \
3213 numchars--; \
3216 #define SET_SAVED_BUTTON_EVENT SET_SAVED_MENU_EVENT (sizeof (XButtonEvent))
3217 #define SET_SAVED_KEY_EVENT SET_SAVED_MENU_EVENT (sizeof (XKeyEvent))
3219 /* Read events coming from the X server.
3220 This routine is called by the SIGIO handler.
3221 We return as soon as there are no more events to be read.
3223 Events representing keys are stored in buffer BUFP,
3224 which can hold up to NUMCHARS characters.
3225 We return the number of characters stored into the buffer,
3226 thus pretending to be `read'.
3228 WAITP is nonzero if we should block until input arrives.
3229 EXPECTED is nonzero if the caller knows input is available. */
3232 XTread_socket (sd, bufp, numchars, waitp, expected)
3233 register int sd;
3234 /* register */ struct input_event *bufp;
3235 /* register */ int numchars;
3236 int waitp;
3237 int expected;
3239 int count = 0;
3240 int nbytes = 0;
3241 int mask;
3242 int items_pending; /* How many items are in the X queue. */
3243 XEvent event;
3244 struct frame *f;
3245 int event_found = 0;
3246 int prefix;
3247 Lisp_Object part;
3248 struct x_display_info *dpyinfo;
3249 #ifdef HAVE_X_I18N
3250 Status status_return;
3251 #endif
3253 if (interrupt_input_blocked)
3255 interrupt_input_pending = 1;
3256 return -1;
3259 interrupt_input_pending = 0;
3260 BLOCK_INPUT;
3262 /* So people can tell when we have read the available input. */
3263 input_signal_count++;
3265 if (numchars <= 0)
3266 abort (); /* Don't think this happens. */
3268 /* Find the display we are supposed to read input for.
3269 It's the one communicating on descriptor SD. */
3270 for (dpyinfo = x_display_list; dpyinfo; dpyinfo = dpyinfo->next)
3272 #if 0 /* This ought to be unnecessary; let's verify it. */
3273 #ifdef FIOSNBIO
3274 /* If available, Xlib uses FIOSNBIO to make the socket
3275 non-blocking, and then looks for EWOULDBLOCK. If O_NDELAY is set,
3276 FIOSNBIO is ignored, and instead of signaling EWOULDBLOCK,
3277 a read returns 0, which Xlib interprets as equivalent to EPIPE. */
3278 fcntl (dpyinfo->connection, F_SETFL, 0);
3279 #endif /* ! defined (FIOSNBIO) */
3280 #endif
3282 #if 0 /* This code can't be made to work, with multiple displays,
3283 and appears not to be used on any system any more.
3284 Also keyboard.c doesn't turn O_NDELAY on and off
3285 for X connections. */
3286 #ifndef SIGIO
3287 #ifndef HAVE_SELECT
3288 if (! (fcntl (dpyinfo->connection, F_GETFL, 0) & O_NDELAY))
3290 extern int read_alarm_should_throw;
3291 read_alarm_should_throw = 1;
3292 XPeekEvent (dpyinfo->display, &event);
3293 read_alarm_should_throw = 0;
3295 #endif /* HAVE_SELECT */
3296 #endif /* SIGIO */
3297 #endif
3299 /* For debugging, this gives a way to fake an I/O error. */
3300 if (dpyinfo == XTread_socket_fake_io_error)
3302 XTread_socket_fake_io_error = 0;
3303 x_io_error_quitter (dpyinfo->display);
3306 while (XPending (dpyinfo->display) != 0)
3308 #ifdef USE_X_TOOLKIT
3309 /* needed to raise Motif submenus */
3310 XtAppNextEvent (Xt_app_con, &event);
3311 #else
3312 XNextEvent (dpyinfo->display, &event);
3313 #endif
3314 #ifdef HAVE_X_I18N
3316 struct frame *f1 = x_any_window_to_frame (dpyinfo,
3317 &event.xclient.window);
3318 /* The necessity of the following line took me
3319 a full work-day to decipher from the docs!! */
3320 if (f1 != 0 && FRAME_XIC (f1) && XFilterEvent (&event, None))
3321 break;
3323 #endif
3324 event_found = 1;
3326 switch (event.type)
3328 case ClientMessage:
3330 if (event.xclient.message_type
3331 == dpyinfo->Xatom_wm_protocols
3332 && event.xclient.format == 32)
3334 if (event.xclient.data.l[0]
3335 == dpyinfo->Xatom_wm_take_focus)
3337 f = x_window_to_frame (dpyinfo, event.xclient.window);
3338 /* Since we set WM_TAKE_FOCUS, we must call
3339 XSetInputFocus explicitly. But not if f is null,
3340 since that might be an event for a deleted frame. */
3341 #ifdef HAVE_X_I18N
3342 /* Not quite sure this is needed -pd */
3343 if (f)
3344 XSetICFocus (FRAME_XIC (f));
3345 #endif
3346 if (f)
3347 XSetInputFocus (event.xclient.display,
3348 event.xclient.window,
3349 RevertToPointerRoot,
3350 event.xclient.data.l[1]);
3351 /* Not certain about handling scroll bars here */
3353 else if (event.xclient.data.l[0]
3354 == dpyinfo->Xatom_wm_save_yourself)
3356 /* Save state modify the WM_COMMAND property to
3357 something which can reinstate us. This notifies
3358 the session manager, who's looking for such a
3359 PropertyNotify. Can restart processing when
3360 a keyboard or mouse event arrives. */
3361 if (numchars > 0)
3363 f = x_top_window_to_frame (dpyinfo,
3364 event.xclient.window);
3366 /* This is just so we only give real data once
3367 for a single Emacs process. */
3368 if (f == selected_frame)
3369 XSetCommand (FRAME_X_DISPLAY (f),
3370 event.xclient.window,
3371 initial_argv, initial_argc);
3372 else if (f)
3373 XSetCommand (FRAME_X_DISPLAY (f),
3374 event.xclient.window,
3375 0, 0);
3378 else if (event.xclient.data.l[0]
3379 == dpyinfo->Xatom_wm_delete_window)
3381 struct frame *f
3382 = x_any_window_to_frame (dpyinfo,
3383 event.xclient.window);
3385 if (f)
3387 if (numchars == 0)
3388 abort ();
3390 bufp->kind = delete_window_event;
3391 XSETFRAME (bufp->frame_or_window, f);
3392 bufp++;
3394 count += 1;
3395 numchars -= 1;
3399 else if (event.xclient.message_type
3400 == dpyinfo->Xatom_wm_configure_denied)
3403 else if (event.xclient.message_type
3404 == dpyinfo->Xatom_wm_window_moved)
3406 int new_x, new_y;
3407 struct frame *f
3408 = x_window_to_frame (dpyinfo, event.xclient.window);
3410 new_x = event.xclient.data.s[0];
3411 new_y = event.xclient.data.s[1];
3413 if (f)
3415 f->output_data.x->left_pos = new_x;
3416 f->output_data.x->top_pos = new_y;
3419 #ifdef HACK_EDITRES
3420 else if (event.xclient.message_type
3421 == dpyinfo->Xatom_editres)
3423 struct frame *f
3424 = x_any_window_to_frame (dpyinfo, event.xclient.window);
3425 _XEditResCheckMessages (f->output_data.x->widget, NULL,
3426 &event, NULL);
3428 #endif /* HACK_EDITRES */
3430 break;
3432 case SelectionNotify:
3433 #ifdef USE_X_TOOLKIT
3434 if (! x_window_to_frame (dpyinfo, event.xselection.requestor))
3435 goto OTHER;
3436 #endif /* not USE_X_TOOLKIT */
3437 x_handle_selection_notify (&event);
3438 break;
3440 case SelectionClear: /* Someone has grabbed ownership. */
3441 #ifdef USE_X_TOOLKIT
3442 if (! x_window_to_frame (dpyinfo, event.xselectionclear.window))
3443 goto OTHER;
3444 #endif /* USE_X_TOOLKIT */
3446 XSelectionClearEvent *eventp = (XSelectionClearEvent *) &event;
3448 if (numchars == 0)
3449 abort ();
3451 bufp->kind = selection_clear_event;
3452 SELECTION_EVENT_DISPLAY (bufp) = eventp->display;
3453 SELECTION_EVENT_SELECTION (bufp) = eventp->selection;
3454 SELECTION_EVENT_TIME (bufp) = eventp->time;
3455 bufp->frame_or_window = Qnil;
3456 bufp++;
3458 count += 1;
3459 numchars -= 1;
3461 break;
3463 case SelectionRequest: /* Someone wants our selection. */
3464 #ifdef USE_X_TOOLKIT
3465 if (!x_window_to_frame (dpyinfo, event.xselectionrequest.owner))
3466 goto OTHER;
3467 #endif /* USE_X_TOOLKIT */
3468 if (x_queue_selection_requests)
3469 x_queue_event (x_window_to_frame (dpyinfo, event.xselectionrequest.owner),
3470 &event);
3471 else
3473 XSelectionRequestEvent *eventp = (XSelectionRequestEvent *) &event;
3475 if (numchars == 0)
3476 abort ();
3478 bufp->kind = selection_request_event;
3479 SELECTION_EVENT_DISPLAY (bufp) = eventp->display;
3480 SELECTION_EVENT_REQUESTOR (bufp) = eventp->requestor;
3481 SELECTION_EVENT_SELECTION (bufp) = eventp->selection;
3482 SELECTION_EVENT_TARGET (bufp) = eventp->target;
3483 SELECTION_EVENT_PROPERTY (bufp) = eventp->property;
3484 SELECTION_EVENT_TIME (bufp) = eventp->time;
3485 bufp->frame_or_window = Qnil;
3486 bufp++;
3488 count += 1;
3489 numchars -= 1;
3491 break;
3493 case PropertyNotify:
3494 #ifdef USE_X_TOOLKIT
3495 if (!x_any_window_to_frame (dpyinfo, event.xproperty.window))
3496 goto OTHER;
3497 #endif /* not USE_X_TOOLKIT */
3498 x_handle_property_notify (&event);
3499 break;
3501 case ReparentNotify:
3502 f = x_top_window_to_frame (dpyinfo, event.xreparent.window);
3503 if (f)
3505 int x, y;
3506 f->output_data.x->parent_desc = event.xreparent.parent;
3507 x_real_positions (f, &x, &y);
3508 f->output_data.x->left_pos = x;
3509 f->output_data.x->top_pos = y;
3511 break;
3513 case Expose:
3514 f = x_window_to_frame (dpyinfo, event.xexpose.window);
3515 if (f)
3517 if (f->async_visible == 0)
3519 f->async_visible = 1;
3520 f->async_iconified = 0;
3521 SET_FRAME_GARBAGED (f);
3523 else
3524 dumprectangle (x_window_to_frame (dpyinfo,
3525 event.xexpose.window),
3526 event.xexpose.x, event.xexpose.y,
3527 event.xexpose.width, event.xexpose.height);
3529 else
3531 struct scroll_bar *bar
3532 = x_window_to_scroll_bar (event.xexpose.window);
3534 if (bar)
3535 x_scroll_bar_expose (bar, &event);
3536 #ifdef USE_X_TOOLKIT
3537 else
3538 goto OTHER;
3539 #endif /* USE_X_TOOLKIT */
3541 break;
3543 case GraphicsExpose: /* This occurs when an XCopyArea's
3544 source area was obscured or not
3545 available.*/
3546 f = x_window_to_frame (dpyinfo, event.xgraphicsexpose.drawable);
3547 if (f)
3549 dumprectangle (f,
3550 event.xgraphicsexpose.x, event.xgraphicsexpose.y,
3551 event.xgraphicsexpose.width,
3552 event.xgraphicsexpose.height);
3554 #ifdef USE_X_TOOLKIT
3555 else
3556 goto OTHER;
3557 #endif /* USE_X_TOOLKIT */
3558 break;
3560 case NoExpose: /* This occurs when an XCopyArea's
3561 source area was completely
3562 available */
3563 break;
3565 case UnmapNotify:
3566 f = x_top_window_to_frame (dpyinfo, event.xunmap.window);
3567 if (f) /* F may no longer exist if
3568 the frame was deleted. */
3570 /* While a frame is unmapped, display generation is
3571 disabled; you don't want to spend time updating a
3572 display that won't ever be seen. */
3573 f->async_visible = 0;
3574 /* We can't distinguish, from the event, whether the window
3575 has become iconified or invisible. So assume, if it
3576 was previously visible, than now it is iconified.
3577 We depend on x_make_frame_invisible to mark it invisible. */
3578 if (FRAME_VISIBLE_P (f) || FRAME_ICONIFIED_P (f))
3579 f->async_iconified = 1;
3581 bufp->kind = iconify_event;
3582 XSETFRAME (bufp->frame_or_window, f);
3583 bufp++;
3584 count++;
3585 numchars--;
3587 goto OTHER;
3589 case MapNotify:
3590 /* We use x_top_window_to_frame because map events can come
3591 for subwindows and they don't mean that the frame is visible. */
3592 f = x_top_window_to_frame (dpyinfo, event.xmap.window);
3593 if (f)
3595 f->async_visible = 1;
3596 f->async_iconified = 0;
3598 /* wait_reading_process_input will notice this and update
3599 the frame's display structures. */
3600 SET_FRAME_GARBAGED (f);
3602 if (f->iconified)
3604 bufp->kind = deiconify_event;
3605 XSETFRAME (bufp->frame_or_window, f);
3606 bufp++;
3607 count++;
3608 numchars--;
3610 else if (! NILP(Vframe_list)
3611 && ! NILP (XCONS (Vframe_list)->cdr))
3612 /* Force a redisplay sooner or later
3613 to update the frame titles
3614 in case this is the second frame. */
3615 record_asynch_buffer_change ();
3617 goto OTHER;
3619 /* Turn off processing if we become fully obscured. */
3620 case VisibilityNotify:
3621 break;
3623 case KeyPress:
3624 f = x_any_window_to_frame (dpyinfo, event.xkey.window);
3626 if (f != 0)
3628 KeySym keysym, orig_keysym;
3629 /* al%imercury@uunet.uu.net says that making this 81 instead of
3630 80 fixed a bug whereby meta chars made his Emacs hang. */
3631 unsigned char copy_buffer[81];
3632 int modifiers;
3634 #if 0 /* This was how we made f10 work in Motif.
3635 The drawback is, you can't type at Emacs when the
3636 the mouse is in the menu bar. So it is better to
3637 turn off f10 in Motif and let Emacs handle it. */
3638 #ifdef USE_MOTIF
3639 if (lw_window_is_in_menubar (event.xkey.window,
3640 f->output_data.x->menubar_widget
3643 SET_SAVED_KEY_EVENT;
3644 break;
3646 #endif /* USE_MOTIF */
3647 #endif /* 0 */
3649 event.xkey.state
3650 |= x_emacs_to_x_modifiers (FRAME_X_DISPLAY_INFO (f),
3651 extra_keyboard_modifiers);
3652 modifiers = event.xkey.state;
3654 /* This will have to go some day... */
3656 /* make_lispy_event turns chars into control chars.
3657 Don't do it here because XLookupString is too eager. */
3658 event.xkey.state &= ~ControlMask;
3659 event.xkey.state &= ~(dpyinfo->meta_mod_mask
3660 | dpyinfo->super_mod_mask
3661 | dpyinfo->hyper_mod_mask
3662 | dpyinfo->alt_mod_mask);
3664 #ifdef HAVE_X_I18N
3665 if (FRAME_XIC (f))
3667 nbytes = XmbLookupString (FRAME_XIC (f),
3668 &event.xkey, copy_buffer,
3669 80, &keysym,
3670 &status_return);
3672 else
3673 nbytes = XLookupString (&event.xkey, copy_buffer,
3674 80, &keysym, &compose_status);
3675 #else
3676 nbytes = XLookupString (&event.xkey, copy_buffer,
3677 80, &keysym, &compose_status);
3678 #endif
3680 orig_keysym = keysym;
3682 if (numchars > 1)
3684 if (((keysym >= XK_BackSpace && keysym <= XK_Escape)
3685 || keysym == XK_Delete
3686 || IsCursorKey (keysym) /* 0xff50 <= x < 0xff60 */
3687 || IsMiscFunctionKey (keysym) /* 0xff60 <= x < VARIES */
3688 #ifdef HPUX
3689 /* This recognizes the "extended function keys".
3690 It seems there's no cleaner way.
3691 Test IsModifierKey to avoid handling mode_switch
3692 incorrectly. */
3693 || ((unsigned) (keysym) >= XK_Select
3694 && (unsigned)(keysym) < XK_KP_Space)
3695 #endif
3696 #ifdef XK_dead_circumflex
3697 || orig_keysym == XK_dead_circumflex
3698 #endif
3699 #ifdef XK_dead_grave
3700 || orig_keysym == XK_dead_grave
3701 #endif
3702 #ifdef XK_dead_tilde
3703 || orig_keysym == XK_dead_tilde
3704 #endif
3705 #ifdef XK_dead_diaeresis
3706 || orig_keysym == XK_dead_diaeresis
3707 #endif
3708 #ifdef XK_dead_macron
3709 || orig_keysym == XK_dead_macron
3710 #endif
3711 #ifdef XK_dead_degree
3712 || orig_keysym == XK_dead_degree
3713 #endif
3714 #ifdef XK_dead_acute
3715 || orig_keysym == XK_dead_acute
3716 #endif
3717 #ifdef XK_dead_cedilla
3718 || orig_keysym == XK_dead_cedilla
3719 #endif
3720 #ifdef XK_dead_breve
3721 || orig_keysym == XK_dead_breve
3722 #endif
3723 #ifdef XK_dead_ogonek
3724 || orig_keysym == XK_dead_ogonek
3725 #endif
3726 #ifdef XK_dead_caron
3727 || orig_keysym == XK_dead_caron
3728 #endif
3729 #ifdef XK_dead_doubleacute
3730 || orig_keysym == XK_dead_doubleacute
3731 #endif
3732 #ifdef XK_dead_abovedot
3733 || orig_keysym == XK_dead_abovedot
3734 #endif
3735 || IsKeypadKey (keysym) /* 0xff80 <= x < 0xffbe */
3736 || IsFunctionKey (keysym) /* 0xffbe <= x < 0xffe1 */
3737 /* Any "vendor-specific" key is ok. */
3738 || (orig_keysym & (1 << 28)))
3739 && ! (IsModifierKey (orig_keysym)
3740 #ifndef HAVE_X11R5
3741 #ifdef XK_Mode_switch
3742 || ((unsigned)(orig_keysym) == XK_Mode_switch)
3743 #endif
3744 #ifdef XK_Num_Lock
3745 || ((unsigned)(orig_keysym) == XK_Num_Lock)
3746 #endif
3747 #endif /* not HAVE_X11R5 */
3750 if (temp_index == sizeof temp_buffer / sizeof (short))
3751 temp_index = 0;
3752 temp_buffer[temp_index++] = keysym;
3753 bufp->kind = non_ascii_keystroke;
3754 bufp->code = keysym;
3755 XSETFRAME (bufp->frame_or_window, f);
3756 bufp->modifiers
3757 = x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO (f),
3758 modifiers);
3759 bufp->timestamp = event.xkey.time;
3760 bufp++;
3761 count++;
3762 numchars--;
3764 else if (numchars > nbytes)
3766 register int i;
3768 for (i = 0; i < nbytes; i++)
3770 if (temp_index == sizeof temp_buffer / sizeof (short))
3771 temp_index = 0;
3772 temp_buffer[temp_index++] = copy_buffer[i];
3773 bufp->kind = ascii_keystroke;
3774 bufp->code = copy_buffer[i];
3775 XSETFRAME (bufp->frame_or_window, f);
3776 bufp->modifiers
3777 = x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO (f),
3778 modifiers);
3779 bufp->timestamp = event.xkey.time;
3780 bufp++;
3783 count += nbytes;
3784 numchars -= nbytes;
3786 else
3787 abort ();
3789 else
3790 abort ();
3792 goto OTHER;
3794 /* Here's a possible interpretation of the whole
3795 FocusIn-EnterNotify FocusOut-LeaveNotify mess. If you get a
3796 FocusIn event, you have to get a FocusOut event before you
3797 relinquish the focus. If you haven't received a FocusIn event,
3798 then a mere LeaveNotify is enough to free you. */
3800 case EnterNotify:
3801 f = x_any_window_to_frame (dpyinfo, event.xcrossing.window);
3803 if (event.xcrossing.focus) /* Entered Window */
3805 /* Avoid nasty pop/raise loops. */
3806 if (f && (!(f->auto_raise)
3807 || !(f->auto_lower)
3808 || (event.xcrossing.time - enter_timestamp) > 500))
3810 x_new_focus_frame (dpyinfo, f);
3811 enter_timestamp = event.xcrossing.time;
3814 else if (f == dpyinfo->x_focus_frame)
3815 x_new_focus_frame (dpyinfo, 0);
3816 /* EnterNotify counts as mouse movement,
3817 so update things that depend on mouse position. */
3818 if (f)
3819 note_mouse_movement (f, &event.xmotion);
3820 goto OTHER;
3822 case FocusIn:
3823 f = x_any_window_to_frame (dpyinfo, event.xfocus.window);
3824 if (event.xfocus.detail != NotifyPointer)
3825 dpyinfo->x_focus_event_frame = f;
3826 if (f)
3827 x_new_focus_frame (dpyinfo, f);
3829 #ifdef HAVE_X_I18N
3830 if (f && FRAME_XIC (f))
3831 XSetICFocus (FRAME_XIC (f));
3832 #endif
3834 goto OTHER;
3836 case LeaveNotify:
3837 f = x_top_window_to_frame (dpyinfo, event.xcrossing.window);
3838 if (f)
3840 if (f == dpyinfo->mouse_face_mouse_frame)
3841 /* If we move outside the frame,
3842 then we're certainly no longer on any text in the frame. */
3843 clear_mouse_face (dpyinfo);
3845 if (event.xcrossing.focus)
3846 x_mouse_leave (dpyinfo);
3847 else
3849 if (f == dpyinfo->x_focus_event_frame)
3850 dpyinfo->x_focus_event_frame = 0;
3851 if (f == dpyinfo->x_focus_frame)
3852 x_new_focus_frame (dpyinfo, 0);
3855 goto OTHER;
3857 case FocusOut:
3858 f = x_any_window_to_frame (dpyinfo, event.xfocus.window);
3859 if (event.xfocus.detail != NotifyPointer
3860 && f == dpyinfo->x_focus_event_frame)
3861 dpyinfo->x_focus_event_frame = 0;
3862 if (f && f == dpyinfo->x_focus_frame)
3863 x_new_focus_frame (dpyinfo, 0);
3865 #ifdef HAVE_X_I18N
3866 if (f && FRAME_XIC (f))
3867 XUnsetICFocus (FRAME_XIC (f));
3868 #endif
3870 goto OTHER;
3872 case MotionNotify:
3874 if (dpyinfo->grabbed && last_mouse_frame
3875 && FRAME_LIVE_P (last_mouse_frame))
3876 f = last_mouse_frame;
3877 else
3878 f = x_window_to_frame (dpyinfo, event.xmotion.window);
3879 if (f)
3880 note_mouse_movement (f, &event.xmotion);
3881 else
3883 struct scroll_bar *bar
3884 = x_window_to_scroll_bar (event.xmotion.window);
3886 if (bar)
3887 x_scroll_bar_note_movement (bar, &event);
3889 /* If we move outside the frame,
3890 then we're certainly no longer on any text in the frame. */
3891 clear_mouse_face (dpyinfo);
3894 goto OTHER;
3896 case ConfigureNotify:
3897 f = x_any_window_to_frame (dpyinfo, event.xconfigure.window);
3898 if (f
3899 #ifdef USE_X_TOOLKIT
3900 && (event.xconfigure.window == XtWindow (f->output_data.x->widget))
3901 #endif
3904 #ifndef USE_X_TOOLKIT
3905 /* In the toolkit version, change_frame_size
3906 is called by the code that handles resizing
3907 of the EmacsFrame widget. */
3909 int rows = PIXEL_TO_CHAR_HEIGHT (f, event.xconfigure.height);
3910 int columns = PIXEL_TO_CHAR_WIDTH (f, event.xconfigure.width);
3912 /* Even if the number of character rows and columns has
3913 not changed, the font size may have changed, so we need
3914 to check the pixel dimensions as well. */
3915 if (columns != f->width
3916 || rows != f->height
3917 || event.xconfigure.width != f->output_data.x->pixel_width
3918 || event.xconfigure.height != f->output_data.x->pixel_height)
3920 change_frame_size (f, rows, columns, 0, 1);
3921 SET_FRAME_GARBAGED (f);
3923 #endif
3925 /* Formerly, in the USE_X_TOOLKIT version,
3926 we did not test send_event here. */
3927 if (1
3928 #ifndef USE_X_TOOLKIT
3929 && ! event.xconfigure.send_event
3930 #endif
3933 Window win, child;
3934 int win_x, win_y;
3936 /* Find the position of the outside upper-left corner of
3937 the window, in the root coordinate system. Don't
3938 refer to the parent window here; we may be processing
3939 this event after the window manager has changed our
3940 parent, but before we have reached the ReparentNotify. */
3941 XTranslateCoordinates (FRAME_X_DISPLAY (f),
3943 /* From-window, to-window. */
3944 event.xconfigure.window,
3945 FRAME_X_DISPLAY_INFO (f)->root_window,
3947 /* From-position, to-position. */
3948 -event.xconfigure.border_width,
3949 -event.xconfigure.border_width,
3950 &win_x, &win_y,
3952 /* Child of win. */
3953 &child);
3954 event.xconfigure.x = win_x;
3955 event.xconfigure.y = win_y;
3958 f->output_data.x->pixel_width = event.xconfigure.width;
3959 f->output_data.x->pixel_height = event.xconfigure.height;
3960 f->output_data.x->left_pos = event.xconfigure.x;
3961 f->output_data.x->top_pos = event.xconfigure.y;
3963 /* What we have now is the position of Emacs's own window.
3964 Convert that to the position of the window manager window. */
3966 int x, y;
3967 x_real_positions (f, &x, &y);
3968 f->output_data.x->left_pos = x;
3969 f->output_data.x->top_pos = y;
3970 /* Formerly we did not do this in the USE_X_TOOLKIT
3971 version. Let's try making them the same. */
3972 /* #ifndef USE_X_TOOLKIT */
3973 if (y != event.xconfigure.y)
3975 /* Since the WM decorations come below top_pos now,
3976 we must put them below top_pos in the future. */
3977 f->output_data.x->win_gravity = NorthWestGravity;
3978 x_wm_set_size_hint (f, (long) 0, 0);
3980 /* #endif */
3983 goto OTHER;
3985 case ButtonPress:
3986 case ButtonRelease:
3988 /* If we decide we want to generate an event to be seen
3989 by the rest of Emacs, we put it here. */
3990 struct input_event emacs_event;
3991 emacs_event.kind = no_event;
3993 bzero (&compose_status, sizeof (compose_status));
3995 if (dpyinfo->grabbed && last_mouse_frame
3996 && FRAME_LIVE_P (last_mouse_frame))
3997 f = last_mouse_frame;
3998 else
3999 f = x_window_to_frame (dpyinfo, event.xbutton.window);
4001 if (f)
4003 if (!dpyinfo->x_focus_frame || f == dpyinfo->x_focus_frame)
4004 construct_mouse_click (&emacs_event, &event, f);
4006 else
4008 struct scroll_bar *bar
4009 = x_window_to_scroll_bar (event.xbutton.window);
4011 if (bar)
4012 x_scroll_bar_handle_click (bar, &event, &emacs_event);
4015 if (event.type == ButtonPress)
4017 dpyinfo->grabbed |= (1 << event.xbutton.button);
4018 last_mouse_frame = f;
4020 else
4022 dpyinfo->grabbed &= ~(1 << event.xbutton.button);
4025 if (numchars >= 1 && emacs_event.kind != no_event)
4027 bcopy (&emacs_event, bufp, sizeof (struct input_event));
4028 bufp++;
4029 count++;
4030 numchars--;
4033 #ifdef USE_X_TOOLKIT
4034 f = x_menubar_window_to_frame (dpyinfo, event.xbutton.window);
4035 /* For a down-event in the menu bar,
4036 don't pass it to Xt right now.
4037 Instead, save it away
4038 and we will pass it to Xt from kbd_buffer_get_event.
4039 That way, we can run some Lisp code first. */
4040 if (f && event.type == ButtonPress
4041 /* Verify the event is really within the menu bar
4042 and not just sent to it due to grabbing. */
4043 && event.xbutton.x >= 0
4044 && event.xbutton.x < f->output_data.x->pixel_width
4045 && event.xbutton.y >= 0
4046 && event.xbutton.y < f->output_data.x->menubar_height
4047 && event.xbutton.same_screen)
4049 SET_SAVED_BUTTON_EVENT;
4050 XSETFRAME (last_mouse_press_frame, f);
4052 else if (event.type == ButtonPress)
4054 last_mouse_press_frame = Qnil;
4055 goto OTHER;
4057 #ifdef USE_MOTIF /* This should do not harm for Lucid,
4058 but I am trying to be cautious. */
4059 else if (event.type == ButtonRelease)
4061 if (!NILP (last_mouse_press_frame))
4063 f = XFRAME (last_mouse_press_frame);
4064 if (f->output_data.x)
4066 SET_SAVED_BUTTON_EVENT;
4069 else
4070 goto OTHER;
4072 #endif /* USE_MOTIF */
4073 else
4074 goto OTHER;
4075 #endif /* USE_X_TOOLKIT */
4077 break;
4079 case CirculateNotify:
4080 break;
4081 case CirculateRequest:
4082 break;
4084 case MappingNotify:
4085 /* Someone has changed the keyboard mapping - update the
4086 local cache. */
4087 switch (event.xmapping.request)
4089 case MappingModifier:
4090 x_find_modifier_meanings (dpyinfo);
4091 /* This is meant to fall through. */
4092 case MappingKeyboard:
4093 XRefreshKeyboardMapping (&event.xmapping);
4095 goto OTHER;
4097 default:
4098 OTHER:
4099 #ifdef USE_X_TOOLKIT
4100 BLOCK_INPUT;
4101 XtDispatchEvent (&event);
4102 UNBLOCK_INPUT;
4103 #endif /* USE_X_TOOLKIT */
4104 break;
4109 /* On some systems, an X bug causes Emacs to get no more events
4110 when the window is destroyed. Detect that. (1994.) */
4111 if (! event_found)
4113 /* Emacs and the X Server eats up CPU time if XNoOp is done every time.
4114 One XNOOP in 100 loops will make Emacs terminate.
4115 B. Bretthauer, 1994 */
4116 x_noop_count++;
4117 if (x_noop_count >= 100)
4119 x_noop_count=0;
4121 if (next_noop_dpyinfo == 0)
4122 next_noop_dpyinfo = x_display_list;
4124 XNoOp (next_noop_dpyinfo->display);
4126 /* Each time we get here, cycle through the displays now open. */
4127 next_noop_dpyinfo = next_noop_dpyinfo->next;
4131 /* If the focus was just given to an autoraising frame,
4132 raise it now. */
4133 /* ??? This ought to be able to handle more than one such frame. */
4134 if (pending_autoraise_frame)
4136 x_raise_frame (pending_autoraise_frame);
4137 pending_autoraise_frame = 0;
4140 UNBLOCK_INPUT;
4141 return count;
4144 /* Drawing the cursor. */
4147 /* Draw a hollow box cursor on frame F at X, Y.
4148 Don't change the inside of the box. */
4150 static void
4151 x_draw_box (f, x, y)
4152 struct frame *f;
4153 int x, y;
4155 int left = CHAR_TO_PIXEL_COL (f, x);
4156 int top = CHAR_TO_PIXEL_ROW (f, y);
4157 int width = FONT_WIDTH (f->output_data.x->font);
4158 int height = f->output_data.x->line_height;
4160 XDrawRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
4161 f->output_data.x->cursor_gc,
4162 left, top, width - 1, height - 1);
4165 /* Clear the cursor of frame F to background color,
4166 and mark the cursor as not shown.
4167 This is used when the text where the cursor is
4168 is about to be rewritten. */
4170 static void
4171 clear_cursor (f)
4172 struct frame *f;
4174 int mask;
4176 if (! FRAME_VISIBLE_P (f)
4177 || f->phys_cursor_x < 0)
4178 return;
4180 x_update_cursor (f, 0);
4181 f->phys_cursor_x = -1;
4184 /* Redraw the glyph at ROW, COLUMN on frame F, in the style
4185 HIGHLIGHT. HIGHLIGHT is as defined for dumpglyphs. Return the
4186 glyph drawn. */
4188 static void
4189 x_draw_single_glyph (f, row, column, glyph, highlight)
4190 struct frame *f;
4191 int row, column;
4192 GLYPH glyph;
4193 int highlight;
4195 dumpglyphs (f,
4196 CHAR_TO_PIXEL_COL (f, column),
4197 CHAR_TO_PIXEL_ROW (f, row),
4198 &glyph, 1, highlight, 0);
4201 static void
4202 x_display_bar_cursor (f, on, x, y)
4203 struct frame *f;
4204 int on;
4205 int x, y;
4207 struct frame_glyphs *current_glyphs = FRAME_CURRENT_GLYPHS (f);
4209 /* This is pointless on invisible frames, and dangerous on garbaged
4210 frames; in the latter case, the frame may be in the midst of
4211 changing its size, and x and y may be off the frame. */
4212 if (! FRAME_VISIBLE_P (f) || FRAME_GARBAGED_P (f))
4213 return;
4215 if (! on && f->phys_cursor_x < 0)
4216 return;
4218 /* If there is anything wrong with the current cursor state, remove it. */
4219 if (f->phys_cursor_x >= 0
4220 && (!on
4221 || f->phys_cursor_x != x
4222 || f->phys_cursor_y != y
4223 || f->output_data.x->current_cursor != bar_cursor))
4225 /* Erase the cursor by redrawing the character underneath it. */
4226 x_draw_single_glyph (f, f->phys_cursor_y, f->phys_cursor_x,
4227 f->phys_cursor_glyph,
4228 current_glyphs->highlight[f->phys_cursor_y]);
4229 f->phys_cursor_x = -1;
4232 /* If we now need a cursor in the new place or in the new form, do it so. */
4233 if (on
4234 && (f->phys_cursor_x < 0
4235 || (f->output_data.x->current_cursor != bar_cursor)))
4237 f->phys_cursor_glyph
4238 = ((current_glyphs->enable[y]
4239 && x < current_glyphs->used[y])
4240 ? current_glyphs->glyphs[y][x]
4241 : SPACEGLYPH);
4242 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
4243 f->output_data.x->cursor_gc,
4244 CHAR_TO_PIXEL_COL (f, x),
4245 CHAR_TO_PIXEL_ROW (f, y),
4246 max (f->output_data.x->cursor_width, 1),
4247 f->output_data.x->line_height);
4249 f->phys_cursor_x = x;
4250 f->phys_cursor_y = y;
4252 f->output_data.x->current_cursor = bar_cursor;
4255 if (updating_frame != f)
4256 XFlush (FRAME_X_DISPLAY (f));
4260 /* Turn the displayed cursor of frame F on or off according to ON.
4261 If ON is nonzero, where to put the cursor is specified by X and Y. */
4263 static void
4264 x_display_box_cursor (f, on, x, y)
4265 struct frame *f;
4266 int on;
4267 int x, y;
4269 struct frame_glyphs *current_glyphs = FRAME_CURRENT_GLYPHS (f);
4271 /* This is pointless on invisible frames, and dangerous on garbaged
4272 frames; in the latter case, the frame may be in the midst of
4273 changing its size, and x and y may be off the frame. */
4274 if (! FRAME_VISIBLE_P (f) || FRAME_GARBAGED_P (f))
4275 return;
4277 /* If cursor is off and we want it off, return quickly. */
4278 if (!on && f->phys_cursor_x < 0)
4279 return;
4281 /* If cursor is currently being shown and we don't want it to be
4282 or it is in the wrong place,
4283 or we want a hollow box and it's not so, (pout!)
4284 erase it. */
4285 if (f->phys_cursor_x >= 0
4286 && (!on
4287 || f->phys_cursor_x != x
4288 || f->phys_cursor_y != y
4289 || (f->output_data.x->current_cursor != hollow_box_cursor
4290 && (f != FRAME_X_DISPLAY_INFO (f)->x_highlight_frame))))
4292 int mouse_face_here = 0;
4293 struct frame_glyphs *active_glyphs = FRAME_CURRENT_GLYPHS (f);
4295 /* If the cursor is in the mouse face area, redisplay that when
4296 we clear the cursor. */
4297 if (f == FRAME_X_DISPLAY_INFO (f)->mouse_face_mouse_frame
4299 (f->phys_cursor_y > FRAME_X_DISPLAY_INFO (f)->mouse_face_beg_row
4300 || (f->phys_cursor_y == FRAME_X_DISPLAY_INFO (f)->mouse_face_beg_row
4301 && f->phys_cursor_x >= FRAME_X_DISPLAY_INFO (f)->mouse_face_beg_col))
4303 (f->phys_cursor_y < FRAME_X_DISPLAY_INFO (f)->mouse_face_end_row
4304 || (f->phys_cursor_y == FRAME_X_DISPLAY_INFO (f)->mouse_face_end_row
4305 && f->phys_cursor_x < FRAME_X_DISPLAY_INFO (f)->mouse_face_end_col))
4306 /* Don't redraw the cursor's spot in mouse face
4307 if it is at the end of a line (on a newline).
4308 The cursor appears there, but mouse highlighting does not. */
4309 && active_glyphs->used[f->phys_cursor_y] > f->phys_cursor_x)
4310 mouse_face_here = 1;
4312 /* If the font is not as tall as a whole line,
4313 we must explicitly clear the line's whole height. */
4314 if (FONT_HEIGHT (f->output_data.x->font) != f->output_data.x->line_height)
4315 XClearArea (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
4316 CHAR_TO_PIXEL_COL (f, f->phys_cursor_x),
4317 CHAR_TO_PIXEL_ROW (f, f->phys_cursor_y),
4318 FONT_WIDTH (f->output_data.x->font),
4319 f->output_data.x->line_height, False);
4320 /* Erase the cursor by redrawing the character underneath it. */
4321 x_draw_single_glyph (f, f->phys_cursor_y, f->phys_cursor_x,
4322 f->phys_cursor_glyph,
4323 (mouse_face_here
4325 : current_glyphs->highlight[f->phys_cursor_y]));
4326 f->phys_cursor_x = -1;
4329 /* If we want to show a cursor,
4330 or we want a box cursor and it's not so,
4331 write it in the right place. */
4332 if (on
4333 && (f->phys_cursor_x < 0
4334 || (f->output_data.x->current_cursor != filled_box_cursor
4335 && f == FRAME_X_DISPLAY_INFO (f)->x_highlight_frame)))
4337 f->phys_cursor_glyph
4338 = ((current_glyphs->enable[y]
4339 && x < current_glyphs->used[y])
4340 ? current_glyphs->glyphs[y][x]
4341 : SPACEGLYPH);
4342 if (f != FRAME_X_DISPLAY_INFO (f)->x_highlight_frame)
4344 x_draw_box (f, x, y);
4345 f->output_data.x->current_cursor = hollow_box_cursor;
4347 else
4349 x_draw_single_glyph (f, y, x,
4350 f->phys_cursor_glyph, 2);
4351 f->output_data.x->current_cursor = filled_box_cursor;
4354 f->phys_cursor_x = x;
4355 f->phys_cursor_y = y;
4358 if (updating_frame != f)
4359 XFlush (FRAME_X_DISPLAY (f));
4362 /* Display the cursor on frame F, or clear it, according to ON.
4363 Also set the frame's cursor position to X and Y. */
4365 x_display_cursor (f, on, x, y)
4366 struct frame *f;
4367 int on;
4368 int x, y;
4370 BLOCK_INPUT;
4372 if (FRAME_DESIRED_CURSOR (f) == filled_box_cursor)
4373 x_display_box_cursor (f, on, x, y);
4374 else if (FRAME_DESIRED_CURSOR (f) == bar_cursor)
4375 x_display_bar_cursor (f, on, x, y);
4376 else
4377 /* Those are the only two we have implemented! */
4378 abort ();
4380 UNBLOCK_INPUT;
4383 /* Display the cursor on frame F, or clear it, according to ON.
4384 Don't change the cursor's position. */
4386 x_update_cursor (f, on)
4387 struct frame *f;
4388 int on;
4390 /* If we don't have any previous cursor position to use,
4391 leave the cursor off. */
4392 if (f->phys_cursor_x < 0)
4393 return;
4395 BLOCK_INPUT;
4397 if (FRAME_DESIRED_CURSOR (f) == filled_box_cursor)
4398 x_display_box_cursor (f, on, f->phys_cursor_x, f->phys_cursor_y);
4399 else if (FRAME_DESIRED_CURSOR (f) == bar_cursor)
4400 x_display_bar_cursor (f, on, f->phys_cursor_x, f->phys_cursor_y);
4401 else
4402 /* Those are the only two we have implemented! */
4403 abort ();
4405 UNBLOCK_INPUT;
4408 /* Icons. */
4410 /* Refresh bitmap kitchen sink icon for frame F
4411 when we get an expose event for it. */
4413 refreshicon (f)
4414 struct frame *f;
4416 /* Normally, the window manager handles this function. */
4419 /* Make the x-window of frame F use the gnu icon bitmap. */
4422 x_bitmap_icon (f, file)
4423 struct frame *f;
4424 Lisp_Object file;
4426 int mask, bitmap_id;
4427 Window icon_window;
4429 if (FRAME_X_WINDOW (f) == 0)
4430 return 1;
4432 /* Free up our existing icon bitmap if any. */
4433 if (f->output_data.x->icon_bitmap > 0)
4434 x_destroy_bitmap (f, f->output_data.x->icon_bitmap);
4435 f->output_data.x->icon_bitmap = 0;
4437 if (STRINGP (file))
4438 bitmap_id = x_create_bitmap_from_file (f, file);
4439 else
4441 /* Create the GNU bitmap if necessary. */
4442 if (FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id < 0)
4443 FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id
4444 = x_create_bitmap_from_data (f, gnu_bits,
4445 gnu_width, gnu_height);
4447 /* The first time we create the GNU bitmap,
4448 this increments the refcount one extra time.
4449 As a result, the GNU bitmap is never freed.
4450 That way, we don't have to worry about allocating it again. */
4451 x_reference_bitmap (f, FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id);
4453 bitmap_id = FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id;
4456 x_wm_set_icon_pixmap (f, bitmap_id);
4457 f->output_data.x->icon_bitmap = bitmap_id;
4459 return 0;
4463 /* Make the x-window of frame F use a rectangle with text.
4464 Use ICON_NAME as the text. */
4467 x_text_icon (f, icon_name)
4468 struct frame *f;
4469 char *icon_name;
4471 if (FRAME_X_WINDOW (f) == 0)
4472 return 1;
4474 #ifdef HAVE_X11R4
4476 XTextProperty text;
4477 text.value = (unsigned char *) icon_name;
4478 text.encoding = XA_STRING;
4479 text.format = 8;
4480 text.nitems = strlen (icon_name);
4481 #ifdef USE_X_TOOLKIT
4482 XSetWMIconName (FRAME_X_DISPLAY (f), XtWindow (f->output_data.x->widget),
4483 &text);
4484 #else /* not USE_X_TOOLKIT */
4485 XSetWMIconName (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), &text);
4486 #endif /* not USE_X_TOOLKIT */
4488 #else /* not HAVE_X11R4 */
4489 XSetIconName (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), icon_name);
4490 #endif /* not HAVE_X11R4 */
4492 if (f->output_data.x->icon_bitmap > 0)
4493 x_destroy_bitmap (f, f->output_data.x->icon_bitmap);
4494 f->output_data.x->icon_bitmap = 0;
4495 x_wm_set_icon_pixmap (f, 0);
4497 return 0;
4500 /* Handling X errors. */
4502 /* Handle the loss of connection to display DISPLAY. */
4504 static SIGTYPE
4505 x_connection_closed (display, error_message)
4506 Display *display;
4507 char *error_message;
4509 struct x_display_info *dpyinfo = x_display_info_for_display (display);
4510 Lisp_Object frame, tail;
4512 /* Indicate that this display is dead. */
4514 dpyinfo->display = 0;
4516 /* First delete frames whose minibuffers are on frames
4517 that are on the dead display. */
4518 FOR_EACH_FRAME (tail, frame)
4520 Lisp_Object minibuf_frame;
4521 minibuf_frame
4522 = WINDOW_FRAME (XWINDOW (FRAME_MINIBUF_WINDOW (XFRAME (frame))));
4523 if (FRAME_X_P (XFRAME (frame))
4524 && FRAME_X_P (XFRAME (minibuf_frame))
4525 && ! EQ (frame, minibuf_frame)
4526 && FRAME_X_DISPLAY_INFO (XFRAME (minibuf_frame)) == dpyinfo)
4527 Fdelete_frame (frame, Qt);
4530 /* Now delete all remaining frames on the dead display.
4531 We are now sure none of these is used as the minibuffer
4532 for another frame that we need to delete. */
4533 FOR_EACH_FRAME (tail, frame)
4534 if (FRAME_X_P (XFRAME (frame))
4535 && FRAME_X_DISPLAY_INFO (XFRAME (frame)) == dpyinfo)
4537 /* Set this to t so that Fdelete_frame won't get confused
4538 trying to find a replacement. */
4539 FRAME_KBOARD (XFRAME (frame))->Vdefault_minibuffer_frame = Qt;
4540 Fdelete_frame (frame, Qt);
4543 if (dpyinfo)
4544 x_delete_display (dpyinfo);
4546 if (x_display_list == 0)
4548 fprintf (stderr, "%s\n", error_message);
4549 shut_down_emacs (0, 0, Qnil);
4550 exit (70);
4553 /* Ordinary stack unwind doesn't deal with these. */
4554 #ifdef SIGIO
4555 sigunblock (sigmask (SIGIO));
4556 #endif
4557 sigunblock (sigmask (SIGALRM));
4558 TOTALLY_UNBLOCK_INPUT;
4560 clear_waiting_for_input ();
4561 error ("%s", error_message);
4564 /* This is the usual handler for X protocol errors.
4565 It kills all frames on the display that we got the error for.
4566 If that was the only one, it prints an error message and kills Emacs. */
4568 static int
4569 x_error_quitter (display, error)
4570 Display *display;
4571 XErrorEvent *error;
4573 char buf[256], buf1[356];
4575 /* Note that there is no real way portable across R3/R4 to get the
4576 original error handler. */
4578 XGetErrorText (display, error->error_code, buf, sizeof (buf));
4579 sprintf (buf1, "X protocol error: %s on protocol request %d",
4580 buf, error->request_code);
4581 x_connection_closed (display, buf1);
4584 /* This is the handler for X IO errors, always.
4585 It kills all frames on the display that we lost touch with.
4586 If that was the only one, it prints an error message and kills Emacs. */
4588 static int
4589 x_io_error_quitter (display)
4590 Display *display;
4592 char buf[256];
4594 sprintf (buf, "Connection lost to X server `%s'", DisplayString (display));
4595 x_connection_closed (display, buf);
4598 /* Handle SIGPIPE, which can happen when the connection to a server
4599 simply goes away. SIGPIPE is handled by x_connection_signal.
4600 Don't need to do anything, because the write which caused the
4601 SIGPIPE will fail, causing Xlib to invoke the X IO error handler,
4602 which will do the appropriate cleanup for us. */
4604 static SIGTYPE
4605 x_connection_signal (signalnum) /* If we don't have an argument, */
4606 int signalnum; /* some compilers complain in signal calls. */
4608 #ifdef USG
4609 /* USG systems forget handlers when they are used;
4610 must reestablish each time */
4611 signal (signalnum, x_connection_signal);
4612 #endif /* USG */
4615 /* A buffer for storing X error messages. */
4616 static char *x_caught_error_message;
4617 #define X_CAUGHT_ERROR_MESSAGE_SIZE 200
4619 /* An X error handler which stores the error message in
4620 x_caught_error_message. This is what's installed when
4621 x_catch_errors is in effect. */
4623 static int
4624 x_error_catcher (display, error)
4625 Display *display;
4626 XErrorEvent *error;
4628 XGetErrorText (display, error->error_code,
4629 x_caught_error_message, X_CAUGHT_ERROR_MESSAGE_SIZE);
4633 /* Begin trapping X errors for display DPY. Actually we trap X errors
4634 for all displays, but DPY should be the display you are actually
4635 operating on.
4637 After calling this function, X protocol errors no longer cause
4638 Emacs to exit; instead, they are recorded in x_cfc_error_message.
4640 Calling x_check_errors signals an Emacs error if an X error has
4641 occurred since the last call to x_catch_errors or x_check_errors.
4643 Calling x_uncatch_errors resumes the normal error handling. */
4645 void x_catch_errors (), x_check_errors (), x_uncatch_errors ();
4647 void
4648 x_catch_errors (dpy)
4649 Display *dpy;
4651 /* Make sure any errors from previous requests have been dealt with. */
4652 XSync (dpy, False);
4654 /* Set up the error buffer. */
4655 x_caught_error_message
4656 = (char*) xmalloc (X_CAUGHT_ERROR_MESSAGE_SIZE);
4657 x_caught_error_message[0] = '\0';
4659 /* Install our little error handler. */
4660 XSetErrorHandler (x_error_catcher);
4663 /* If any X protocol errors have arrived since the last call to
4664 x_catch_errors or x_check_errors, signal an Emacs error using
4665 sprintf (a buffer, FORMAT, the x error message text) as the text. */
4667 void
4668 x_check_errors (dpy, format)
4669 Display *dpy;
4670 char *format;
4672 /* Make sure to catch any errors incurred so far. */
4673 XSync (dpy, False);
4675 if (x_caught_error_message[0])
4677 char buf[X_CAUGHT_ERROR_MESSAGE_SIZE + 56];
4679 sprintf (buf, format, x_caught_error_message);
4680 x_uncatch_errors (dpy);
4681 error (buf);
4685 /* Nonzero if we had any X protocol errors since we did x_catch_errors. */
4688 x_had_errors_p (dpy)
4689 Display *dpy;
4691 /* Make sure to catch any errors incurred so far. */
4692 XSync (dpy, False);
4694 return x_caught_error_message[0] != 0;
4697 /* Stop catching X protocol errors and let them make Emacs die. */
4699 void
4700 x_uncatch_errors (dpy)
4701 Display *dpy;
4703 xfree (x_caught_error_message);
4704 x_caught_error_message = 0;
4705 XSetErrorHandler (x_error_quitter);
4708 #if 0
4709 static unsigned int x_wire_count;
4710 x_trace_wire ()
4712 fprintf (stderr, "Lib call: %d\n", ++x_wire_count);
4714 #endif /* ! 0 */
4717 /* Changing the font of the frame. */
4719 /* Give frame F the font named FONTNAME as its default font, and
4720 return the full name of that font. FONTNAME may be a wildcard
4721 pattern; in that case, we choose some font that fits the pattern.
4722 The return value shows which font we chose. */
4724 Lisp_Object
4725 x_new_font (f, fontname)
4726 struct frame *f;
4727 register char *fontname;
4729 int already_loaded;
4730 int n_matching_fonts;
4731 XFontStruct *font_info;
4732 char **font_names;
4734 /* Get a list of all the fonts that match this name. Once we
4735 have a list of matching fonts, we compare them against the fonts
4736 we already have by comparing font ids. */
4737 font_names = (char **) XListFonts (FRAME_X_DISPLAY (f), fontname,
4738 1024, &n_matching_fonts);
4739 /* Apparently it doesn't set n_matching_fonts to zero when it can't
4740 find any matches; font_names == 0 is the only clue. */
4741 if (! font_names)
4742 n_matching_fonts = 0;
4744 /* Don't just give up if n_matching_fonts is 0.
4745 Apparently there's a bug on Suns: XListFontsWithInfo can
4746 fail to find a font, but XLoadQueryFont may still find it. */
4748 /* See if we've already loaded a matching font. */
4749 already_loaded = -1;
4750 if (n_matching_fonts != 0)
4752 int i, j;
4754 for (i = 0; i < FRAME_X_DISPLAY_INFO (f)->n_fonts; i++)
4755 for (j = 0; j < n_matching_fonts; j++)
4756 if (!strcmp (FRAME_X_DISPLAY_INFO (f)->font_table[i].name, font_names[j])
4757 || !strcmp (FRAME_X_DISPLAY_INFO (f)->font_table[i].full_name, font_names[j]))
4759 already_loaded = i;
4760 fontname = FRAME_X_DISPLAY_INFO (f)->font_table[i].full_name;
4761 goto found_font;
4764 found_font:
4766 /* If we have, just return it from the table. */
4767 if (already_loaded >= 0)
4768 f->output_data.x->font = FRAME_X_DISPLAY_INFO (f)->font_table[already_loaded].font;
4769 /* Otherwise, load the font and add it to the table. */
4770 else
4772 int i;
4773 char *full_name;
4774 XFontStruct *font;
4775 int n_fonts;
4776 Atom FONT_atom;
4778 /* Try to find a character-cell font in the list. */
4779 #if 0
4780 /* A laudable goal, but this isn't how to do it. */
4781 for (i = 0; i < n_matching_fonts; i++)
4782 if (! font_info[i].per_char)
4783 break;
4784 #else
4785 i = 0;
4786 #endif
4788 /* See comment above. */
4789 if (n_matching_fonts != 0)
4790 fontname = font_names[i];
4792 font = (XFontStruct *) XLoadQueryFont (FRAME_X_DISPLAY (f), fontname);
4793 if (! font)
4795 /* Free the information from XListFonts. */
4796 if (n_matching_fonts)
4797 XFreeFontNames (font_names);
4798 return Qnil;
4801 /* Do we need to create the table? */
4802 if (FRAME_X_DISPLAY_INFO (f)->font_table_size == 0)
4804 FRAME_X_DISPLAY_INFO (f)->font_table_size = 16;
4805 FRAME_X_DISPLAY_INFO (f)->font_table
4806 = (struct font_info *) xmalloc (FRAME_X_DISPLAY_INFO (f)->font_table_size
4807 * sizeof (struct font_info));
4809 /* Do we need to grow the table? */
4810 else if (FRAME_X_DISPLAY_INFO (f)->n_fonts
4811 >= FRAME_X_DISPLAY_INFO (f)->font_table_size)
4813 FRAME_X_DISPLAY_INFO (f)->font_table_size *= 2;
4814 FRAME_X_DISPLAY_INFO (f)->font_table
4815 = (struct font_info *) xrealloc (FRAME_X_DISPLAY_INFO (f)->font_table,
4816 (FRAME_X_DISPLAY_INFO (f)->font_table_size
4817 * sizeof (struct font_info)));
4820 /* Try to get the full name of FONT. Put it in full_name. */
4821 full_name = 0;
4822 FONT_atom = XInternAtom (FRAME_X_DISPLAY (f), "FONT", False);
4823 for (i = 0; i < font->n_properties; i++)
4825 if (FONT_atom == font->properties[i].name)
4827 char *name = XGetAtomName (FRAME_X_DISPLAY (f),
4828 (Atom) (font->properties[i].card32));
4829 char *p = name;
4830 int dashes = 0;
4832 /* Count the number of dashes in the "full name".
4833 If it is too few, this isn't really the font's full name,
4834 so don't use it.
4835 In X11R4, the fonts did not come with their canonical names
4836 stored in them. */
4837 while (*p)
4839 if (*p == '-')
4840 dashes++;
4841 p++;
4844 if (dashes >= 13)
4845 full_name = name;
4847 break;
4851 n_fonts = FRAME_X_DISPLAY_INFO (f)->n_fonts;
4852 FRAME_X_DISPLAY_INFO (f)->font_table[n_fonts].name = (char *) xmalloc (strlen (fontname) + 1);
4853 bcopy (fontname, FRAME_X_DISPLAY_INFO (f)->font_table[n_fonts].name, strlen (fontname) + 1);
4854 if (full_name != 0)
4855 FRAME_X_DISPLAY_INFO (f)->font_table[n_fonts].full_name = full_name;
4856 else
4857 FRAME_X_DISPLAY_INFO (f)->font_table[n_fonts].full_name = FRAME_X_DISPLAY_INFO (f)->font_table[n_fonts].name;
4858 f->output_data.x->font = FRAME_X_DISPLAY_INFO (f)->font_table[n_fonts].font = font;
4859 FRAME_X_DISPLAY_INFO (f)->n_fonts++;
4861 if (full_name)
4862 fontname = full_name;
4865 /* Compute the scroll bar width in character columns. */
4866 if (f->scroll_bar_pixel_width > 0)
4868 int wid = FONT_WIDTH (f->output_data.x->font);
4869 f->scroll_bar_cols = (f->scroll_bar_pixel_width + wid-1) / wid;
4871 else
4872 f->scroll_bar_cols = 2;
4874 /* Now make the frame display the given font. */
4875 if (FRAME_X_WINDOW (f) != 0)
4877 XSetFont (FRAME_X_DISPLAY (f), f->output_data.x->normal_gc,
4878 f->output_data.x->font->fid);
4879 XSetFont (FRAME_X_DISPLAY (f), f->output_data.x->reverse_gc,
4880 f->output_data.x->font->fid);
4881 XSetFont (FRAME_X_DISPLAY (f), f->output_data.x->cursor_gc,
4882 f->output_data.x->font->fid);
4884 frame_update_line_height (f);
4885 x_set_window_size (f, 0, f->width, f->height);
4887 else
4888 /* If we are setting a new frame's font for the first time,
4889 there are no faces yet, so this font's height is the line height. */
4890 f->output_data.x->line_height = FONT_HEIGHT (f->output_data.x->font);
4893 Lisp_Object lispy_name;
4895 lispy_name = build_string (fontname);
4897 /* Free the information from XListFonts. The data
4898 we actually retain comes from XLoadQueryFont. */
4899 XFreeFontNames (font_names);
4901 return lispy_name;
4905 /* Calculate the absolute position in frame F
4906 from its current recorded position values and gravity. */
4908 x_calc_absolute_position (f)
4909 struct frame *f;
4911 Window win, child;
4912 int win_x = 0, win_y = 0;
4913 int flags = f->output_data.x->size_hint_flags;
4914 int this_window;
4916 #ifdef USE_X_TOOLKIT
4917 this_window = XtWindow (f->output_data.x->widget);
4918 #else
4919 this_window = FRAME_X_WINDOW (f);
4920 #endif
4922 /* Find the position of the outside upper-left corner of
4923 the inner window, with respect to the outer window. */
4924 if (f->output_data.x->parent_desc != FRAME_X_DISPLAY_INFO (f)->root_window)
4926 BLOCK_INPUT;
4927 XTranslateCoordinates (FRAME_X_DISPLAY (f),
4929 /* From-window, to-window. */
4930 this_window,
4931 f->output_data.x->parent_desc,
4933 /* From-position, to-position. */
4934 0, 0, &win_x, &win_y,
4936 /* Child of win. */
4937 &child);
4938 UNBLOCK_INPUT;
4941 /* Treat negative positions as relative to the leftmost bottommost
4942 position that fits on the screen. */
4943 if (flags & XNegative)
4944 f->output_data.x->left_pos = (FRAME_X_DISPLAY_INFO (f)->width
4945 - 2 * f->output_data.x->border_width - win_x
4946 - PIXEL_WIDTH (f)
4947 + f->output_data.x->left_pos);
4949 if (flags & YNegative)
4950 /* We used to subtract f->output_data.x->menubar_height here
4951 in the toolkit case, but PIXEL_HEIGHT already includes that. */
4952 f->output_data.x->top_pos = (FRAME_X_DISPLAY_INFO (f)->height
4953 - 2 * f->output_data.x->border_width - win_y
4954 - PIXEL_HEIGHT (f)
4955 + f->output_data.x->top_pos);
4957 /* The left_pos and top_pos
4958 are now relative to the top and left screen edges,
4959 so the flags should correspond. */
4960 f->output_data.x->size_hint_flags &= ~ (XNegative | YNegative);
4963 /* CHANGE_GRAVITY is 1 when calling from Fset_frame_position,
4964 to really change the position, and 0 when calling from
4965 x_make_frame_visible (in that case, XOFF and YOFF are the current
4966 position values). It is -1 when calling from x_set_frame_parameters,
4967 which means, do adjust for borders but don't change the gravity. */
4969 x_set_offset (f, xoff, yoff, change_gravity)
4970 struct frame *f;
4971 register int xoff, yoff;
4972 int change_gravity;
4974 int modified_top, modified_left;
4976 if (change_gravity > 0)
4978 f->output_data.x->top_pos = yoff;
4979 f->output_data.x->left_pos = xoff;
4980 f->output_data.x->size_hint_flags &= ~ (XNegative | YNegative);
4981 if (xoff < 0)
4982 f->output_data.x->size_hint_flags |= XNegative;
4983 if (yoff < 0)
4984 f->output_data.x->size_hint_flags |= YNegative;
4985 f->output_data.x->win_gravity = NorthWestGravity;
4987 x_calc_absolute_position (f);
4989 BLOCK_INPUT;
4990 x_wm_set_size_hint (f, (long) 0, 0);
4992 /* It is a mystery why we need to add the border_width here
4993 when the frame is already visible, but experiment says we do. */
4994 modified_left = f->output_data.x->left_pos;
4995 modified_top = f->output_data.x->top_pos;
4996 if (change_gravity != 0)
4998 modified_left += f->output_data.x->border_width;
4999 modified_top += f->output_data.x->border_width;
5002 #ifdef USE_X_TOOLKIT
5003 XMoveWindow (FRAME_X_DISPLAY (f), XtWindow (f->output_data.x->widget),
5004 modified_left, modified_top);
5005 #else /* not USE_X_TOOLKIT */
5006 XMoveWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5007 modified_left, modified_top);
5008 #endif /* not USE_X_TOOLKIT */
5009 UNBLOCK_INPUT;
5012 /* Call this to change the size of frame F's x-window.
5013 If CHANGE_GRAVITY is 1, we change to top-left-corner window gravity
5014 for this size change and subsequent size changes.
5015 Otherwise we leave the window gravity unchanged. */
5017 x_set_window_size (f, change_gravity, cols, rows)
5018 struct frame *f;
5019 int change_gravity;
5020 int cols, rows;
5022 int pixelwidth, pixelheight;
5023 int mask;
5024 Lisp_Object window;
5025 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
5027 BLOCK_INPUT;
5029 #ifdef USE_X_TOOLKIT
5031 /* The x and y position of the widget is clobbered by the
5032 call to XtSetValues within EmacsFrameSetCharSize.
5033 This is a real kludge, but I don't understand Xt so I can't
5034 figure out a correct fix. Can anyone else tell me? -- rms. */
5035 int xpos = f->output_data.x->widget->core.x;
5036 int ypos = f->output_data.x->widget->core.y;
5037 EmacsFrameSetCharSize (f->output_data.x->edit_widget, cols, rows);
5038 f->output_data.x->widget->core.x = xpos;
5039 f->output_data.x->widget->core.y = ypos;
5042 #else /* not USE_X_TOOLKIT */
5044 check_frame_size (f, &rows, &cols);
5045 f->output_data.x->vertical_scroll_bar_extra
5046 = (!FRAME_HAS_VERTICAL_SCROLL_BARS (f)
5048 : FRAME_SCROLL_BAR_PIXEL_WIDTH (f) > 0
5049 ? FRAME_SCROLL_BAR_PIXEL_WIDTH (f)
5050 : (FRAME_SCROLL_BAR_COLS (f) * FONT_WIDTH (f->output_data.x->font)));
5051 pixelwidth = CHAR_TO_PIXEL_WIDTH (f, cols);
5052 pixelheight = CHAR_TO_PIXEL_HEIGHT (f, rows);
5054 f->output_data.x->win_gravity = NorthWestGravity;
5055 x_wm_set_size_hint (f, (long) 0, 0);
5057 XSync (FRAME_X_DISPLAY (f), False);
5058 XResizeWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5059 pixelwidth, pixelheight);
5061 /* Now, strictly speaking, we can't be sure that this is accurate,
5062 but the window manager will get around to dealing with the size
5063 change request eventually, and we'll hear how it went when the
5064 ConfigureNotify event gets here.
5066 We could just not bother storing any of this information here,
5067 and let the ConfigureNotify event set everything up, but that
5068 might be kind of confusing to the lisp code, since size changes
5069 wouldn't be reported in the frame parameters until some random
5070 point in the future when the ConfigureNotify event arrives. */
5071 change_frame_size (f, rows, cols, 0, 0);
5072 PIXEL_WIDTH (f) = pixelwidth;
5073 PIXEL_HEIGHT (f) = pixelheight;
5075 /* We've set {FRAME,PIXEL}_{WIDTH,HEIGHT} to the values we hope to
5076 receive in the ConfigureNotify event; if we get what we asked
5077 for, then the event won't cause the screen to become garbaged, so
5078 we have to make sure to do it here. */
5079 SET_FRAME_GARBAGED (f);
5081 XFlush (FRAME_X_DISPLAY (f));
5083 #endif /* not USE_X_TOOLKIT */
5085 /* If cursor was outside the new size, mark it as off. */
5086 if (f->phys_cursor_y >= rows
5087 || f->phys_cursor_x >= cols)
5089 f->phys_cursor_x = -1;
5090 f->phys_cursor_y = -1;
5093 /* Clear out any recollection of where the mouse highlighting was,
5094 since it might be in a place that's outside the new frame size.
5095 Actually checking whether it is outside is a pain in the neck,
5096 so don't try--just let the highlighting be done afresh with new size. */
5097 window = dpyinfo->mouse_face_window;
5098 if (! NILP (window) && XFRAME (window) == f)
5100 dpyinfo->mouse_face_beg_row = dpyinfo->mouse_face_beg_col = -1;
5101 dpyinfo->mouse_face_end_row = dpyinfo->mouse_face_end_col = -1;
5102 dpyinfo->mouse_face_window = Qnil;
5105 UNBLOCK_INPUT;
5108 /* Mouse warping. */
5110 void
5111 x_set_mouse_position (f, x, y)
5112 struct frame *f;
5113 int x, y;
5115 int pix_x, pix_y;
5117 pix_x = CHAR_TO_PIXEL_COL (f, x) + FONT_WIDTH (f->output_data.x->font) / 2;
5118 pix_y = CHAR_TO_PIXEL_ROW (f, y) + f->output_data.x->line_height / 2;
5120 if (pix_x < 0) pix_x = 0;
5121 if (pix_x > PIXEL_WIDTH (f)) pix_x = PIXEL_WIDTH (f);
5123 if (pix_y < 0) pix_y = 0;
5124 if (pix_y > PIXEL_HEIGHT (f)) pix_y = PIXEL_HEIGHT (f);
5126 BLOCK_INPUT;
5128 XWarpPointer (FRAME_X_DISPLAY (f), None, FRAME_X_WINDOW (f),
5129 0, 0, 0, 0, pix_x, pix_y);
5130 UNBLOCK_INPUT;
5133 /* Move the mouse to position pixel PIX_X, PIX_Y relative to frame F. */
5135 void
5136 x_set_mouse_pixel_position (f, pix_x, pix_y)
5137 struct frame *f;
5138 int pix_x, pix_y;
5140 BLOCK_INPUT;
5142 XWarpPointer (FRAME_X_DISPLAY (f), None, FRAME_X_WINDOW (f),
5143 0, 0, 0, 0, pix_x, pix_y);
5144 UNBLOCK_INPUT;
5147 /* focus shifting, raising and lowering. */
5149 x_focus_on_frame (f)
5150 struct frame *f;
5152 #if 0 /* This proves to be unpleasant. */
5153 x_raise_frame (f);
5154 #endif
5155 #if 0
5156 /* I don't think that the ICCCM allows programs to do things like this
5157 without the interaction of the window manager. Whatever you end up
5158 doing with this code, do it to x_unfocus_frame too. */
5159 XSetInputFocus (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5160 RevertToPointerRoot, CurrentTime);
5161 #endif /* ! 0 */
5164 x_unfocus_frame (f)
5165 struct frame *f;
5167 #if 0
5168 /* Look at the remarks in x_focus_on_frame. */
5169 if (FRAME_X_DISPLAY_INFO (f)->x_focus_frame == f)
5170 XSetInputFocus (FRAME_X_DISPLAY (f), PointerRoot,
5171 RevertToPointerRoot, CurrentTime);
5172 #endif /* ! 0 */
5175 /* Raise frame F. */
5177 x_raise_frame (f)
5178 struct frame *f;
5180 if (f->async_visible)
5182 BLOCK_INPUT;
5183 #ifdef USE_X_TOOLKIT
5184 XRaiseWindow (FRAME_X_DISPLAY (f), XtWindow (f->output_data.x->widget));
5185 #else /* not USE_X_TOOLKIT */
5186 XRaiseWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
5187 #endif /* not USE_X_TOOLKIT */
5188 XFlush (FRAME_X_DISPLAY (f));
5189 UNBLOCK_INPUT;
5193 /* Lower frame F. */
5195 x_lower_frame (f)
5196 struct frame *f;
5198 if (f->async_visible)
5200 BLOCK_INPUT;
5201 #ifdef USE_X_TOOLKIT
5202 XLowerWindow (FRAME_X_DISPLAY (f), XtWindow (f->output_data.x->widget));
5203 #else /* not USE_X_TOOLKIT */
5204 XLowerWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
5205 #endif /* not USE_X_TOOLKIT */
5206 XFlush (FRAME_X_DISPLAY (f));
5207 UNBLOCK_INPUT;
5211 static void
5212 XTframe_raise_lower (f, raise_flag)
5213 FRAME_PTR f;
5214 int raise_flag;
5216 if (raise_flag)
5217 x_raise_frame (f);
5218 else
5219 x_lower_frame (f);
5222 /* Change of visibility. */
5224 /* This tries to wait until the frame is really visible.
5225 However, if the window manager asks the user where to position
5226 the frame, this will return before the user finishes doing that.
5227 The frame will not actually be visible at that time,
5228 but it will become visible later when the window manager
5229 finishes with it. */
5231 x_make_frame_visible (f)
5232 struct frame *f;
5234 int mask;
5235 Lisp_Object type;
5237 BLOCK_INPUT;
5239 type = x_icon_type (f);
5240 if (!NILP (type))
5241 x_bitmap_icon (f, type);
5243 if (! FRAME_VISIBLE_P (f))
5245 /* We test FRAME_GARBAGED_P here to make sure we don't
5246 call x_set_offset a second time
5247 if we get to x_make_frame_visible a second time
5248 before the window gets really visible. */
5249 if (! FRAME_ICONIFIED_P (f)
5250 && ! f->output_data.x->asked_for_visible)
5251 x_set_offset (f, f->output_data.x->left_pos, f->output_data.x->top_pos, 0);
5253 f->output_data.x->asked_for_visible = 1;
5255 if (! EQ (Vx_no_window_manager, Qt))
5256 x_wm_set_window_state (f, NormalState);
5257 #ifdef USE_X_TOOLKIT
5258 /* This was XtPopup, but that did nothing for an iconified frame. */
5259 XtMapWidget (f->output_data.x->widget);
5260 #else /* not USE_X_TOOLKIT */
5261 XMapRaised (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
5262 #endif /* not USE_X_TOOLKIT */
5263 #if 0 /* This seems to bring back scroll bars in the wrong places
5264 if the window configuration has changed. They seem
5265 to come back ok without this. */
5266 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
5267 XMapSubwindows (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
5268 #endif
5271 XFlush (FRAME_X_DISPLAY (f));
5273 /* Synchronize to ensure Emacs knows the frame is visible
5274 before we do anything else. We do this loop with input not blocked
5275 so that incoming events are handled. */
5277 Lisp_Object frame;
5278 int count = input_signal_count;
5280 /* This must come after we set COUNT. */
5281 UNBLOCK_INPUT;
5283 XSETFRAME (frame, f);
5285 while (1)
5287 x_sync (f);
5288 /* Once we have handled input events,
5289 we should have received the MapNotify if one is coming.
5290 So if we have not got it yet, stop looping.
5291 Some window managers make their own decisions
5292 about visibility. */
5293 if (input_signal_count != count)
5294 break;
5295 /* Machines that do polling rather than SIGIO have been observed
5296 to go into a busy-wait here. So we'll fake an alarm signal
5297 to let the handler know that there's something to be read.
5298 We used to raise a real alarm, but it seems that the handler
5299 isn't always enabled here. This is probably a bug. */
5300 if (input_polling_used ())
5302 /* It could be confusing if a real alarm arrives while processing
5303 the fake one. Turn it off and let the handler reset it. */
5304 alarm (0);
5305 input_poll_signal ();
5307 /* Once we have handled input events,
5308 we should have received the MapNotify if one is coming.
5309 So if we have not got it yet, stop looping.
5310 Some window managers make their own decisions
5311 about visibility. */
5312 if (input_signal_count != count)
5313 break;
5315 FRAME_SAMPLE_VISIBILITY (f);
5319 /* Change from mapped state to withdrawn state. */
5321 /* Make the frame visible (mapped and not iconified). */
5323 x_make_frame_invisible (f)
5324 struct frame *f;
5326 int mask;
5327 Window window;
5329 #ifdef USE_X_TOOLKIT
5330 /* Use the frame's outermost window, not the one we normally draw on. */
5331 window = XtWindow (f->output_data.x->widget);
5332 #else /* not USE_X_TOOLKIT */
5333 window = FRAME_X_WINDOW (f);
5334 #endif /* not USE_X_TOOLKIT */
5336 /* Don't keep the highlight on an invisible frame. */
5337 if (FRAME_X_DISPLAY_INFO (f)->x_highlight_frame == f)
5338 FRAME_X_DISPLAY_INFO (f)->x_highlight_frame = 0;
5340 #if 0/* This might add unreliability; I don't trust it -- rms. */
5341 if (! f->async_visible && ! f->async_iconified)
5342 return;
5343 #endif
5345 BLOCK_INPUT;
5347 /* Before unmapping the window, update the WM_SIZE_HINTS property to claim
5348 that the current position of the window is user-specified, rather than
5349 program-specified, so that when the window is mapped again, it will be
5350 placed at the same location, without forcing the user to position it
5351 by hand again (they have already done that once for this window.) */
5352 x_wm_set_size_hint (f, (long) 0, 1);
5354 #ifdef HAVE_X11R4
5356 if (! XWithdrawWindow (FRAME_X_DISPLAY (f), window,
5357 DefaultScreen (FRAME_X_DISPLAY (f))))
5359 UNBLOCK_INPUT_RESIGNAL;
5360 error ("Can't notify window manager of window withdrawal");
5362 #else /* ! defined (HAVE_X11R4) */
5364 /* Tell the window manager what we're going to do. */
5365 if (! EQ (Vx_no_window_manager, Qt))
5367 XEvent unmap;
5369 unmap.xunmap.type = UnmapNotify;
5370 unmap.xunmap.window = window;
5371 unmap.xunmap.event = DefaultRootWindow (FRAME_X_DISPLAY (f));
5372 unmap.xunmap.from_configure = False;
5373 if (! XSendEvent (FRAME_X_DISPLAY (f),
5374 DefaultRootWindow (FRAME_X_DISPLAY (f)),
5375 False,
5376 SubstructureRedirectMask|SubstructureNotifyMask,
5377 &unmap))
5379 UNBLOCK_INPUT_RESIGNAL;
5380 error ("Can't notify window manager of withdrawal");
5384 /* Unmap the window ourselves. Cheeky! */
5385 XUnmapWindow (FRAME_X_DISPLAY (f), window);
5386 #endif /* ! defined (HAVE_X11R4) */
5388 /* We can't distinguish this from iconification
5389 just by the event that we get from the server.
5390 So we can't win using the usual strategy of letting
5391 FRAME_SAMPLE_VISIBILITY set this. So do it by hand,
5392 and synchronize with the server to make sure we agree. */
5393 f->visible = 0;
5394 FRAME_ICONIFIED_P (f) = 0;
5395 f->async_visible = 0;
5396 f->async_iconified = 0;
5398 x_sync (f);
5400 UNBLOCK_INPUT;
5403 /* Change window state from mapped to iconified. */
5405 x_iconify_frame (f)
5406 struct frame *f;
5408 int mask;
5409 int result;
5410 Lisp_Object type;
5412 /* Don't keep the highlight on an invisible frame. */
5413 if (FRAME_X_DISPLAY_INFO (f)->x_highlight_frame == f)
5414 FRAME_X_DISPLAY_INFO (f)->x_highlight_frame = 0;
5416 if (f->async_iconified)
5417 return;
5419 BLOCK_INPUT;
5421 FRAME_SAMPLE_VISIBILITY (f);
5423 type = x_icon_type (f);
5424 if (!NILP (type))
5425 x_bitmap_icon (f, type);
5427 #ifdef USE_X_TOOLKIT
5429 if (! FRAME_VISIBLE_P (f))
5431 if (! EQ (Vx_no_window_manager, Qt))
5432 x_wm_set_window_state (f, IconicState);
5433 /* This was XtPopup, but that did nothing for an iconified frame. */
5434 XtMapWidget (f->output_data.x->widget);
5435 /* The server won't give us any event to indicate
5436 that an invisible frame was changed to an icon,
5437 so we have to record it here. */
5438 f->iconified = 1;
5439 f->async_iconified = 1;
5440 UNBLOCK_INPUT;
5441 return;
5444 result = XIconifyWindow (FRAME_X_DISPLAY (f),
5445 XtWindow (f->output_data.x->widget),
5446 DefaultScreen (FRAME_X_DISPLAY (f)));
5447 UNBLOCK_INPUT;
5449 if (!result)
5450 error ("Can't notify window manager of iconification");
5452 f->async_iconified = 1;
5454 BLOCK_INPUT;
5455 XFlush (FRAME_X_DISPLAY (f));
5456 UNBLOCK_INPUT;
5457 #else /* not USE_X_TOOLKIT */
5459 /* Make sure the X server knows where the window should be positioned,
5460 in case the user deiconifies with the window manager. */
5461 if (! FRAME_VISIBLE_P (f) && !FRAME_ICONIFIED_P (f))
5462 x_set_offset (f, f->output_data.x->left_pos, f->output_data.x->top_pos, 0);
5464 /* Since we don't know which revision of X we're running, we'll use both
5465 the X11R3 and X11R4 techniques. I don't know if this is a good idea. */
5467 /* X11R4: send a ClientMessage to the window manager using the
5468 WM_CHANGE_STATE type. */
5470 XEvent message;
5472 message.xclient.window = FRAME_X_WINDOW (f);
5473 message.xclient.type = ClientMessage;
5474 message.xclient.message_type = FRAME_X_DISPLAY_INFO (f)->Xatom_wm_change_state;
5475 message.xclient.format = 32;
5476 message.xclient.data.l[0] = IconicState;
5478 if (! XSendEvent (FRAME_X_DISPLAY (f),
5479 DefaultRootWindow (FRAME_X_DISPLAY (f)),
5480 False,
5481 SubstructureRedirectMask | SubstructureNotifyMask,
5482 &message))
5484 UNBLOCK_INPUT_RESIGNAL;
5485 error ("Can't notify window manager of iconification");
5489 /* X11R3: set the initial_state field of the window manager hints to
5490 IconicState. */
5491 x_wm_set_window_state (f, IconicState);
5493 if (!FRAME_VISIBLE_P (f))
5495 /* If the frame was withdrawn, before, we must map it. */
5496 XMapRaised (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
5499 f->async_iconified = 1;
5501 XFlush (FRAME_X_DISPLAY (f));
5502 UNBLOCK_INPUT;
5503 #endif /* not USE_X_TOOLKIT */
5506 /* Destroy the X window of frame F. */
5508 x_destroy_window (f)
5509 struct frame *f;
5511 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
5513 BLOCK_INPUT;
5515 /* If a display connection is dead, don't try sending more
5516 commands to the X server. */
5517 if (dpyinfo->display != 0)
5519 if (f->output_data.x->icon_desc != 0)
5520 XDestroyWindow (FRAME_X_DISPLAY (f), f->output_data.x->icon_desc);
5521 #ifdef HAVE_X_I18N
5522 if (FRAME_XIM (f))
5524 XDestroyIC (FRAME_XIC (f));
5525 #if ! defined (SOLARIS2) || defined (HAVE_X11R6)
5526 /* This line causes crashes on Solaris with Openwin,
5527 due to an apparent bug in XCloseIM.
5528 X11R6 seems not to have the bug. */
5529 XCloseIM (FRAME_XIM (f));
5530 #endif
5532 #endif
5533 XDestroyWindow (FRAME_X_DISPLAY (f), f->output_data.x->window_desc);
5534 #ifdef USE_X_TOOLKIT
5535 XtDestroyWidget (f->output_data.x->widget);
5536 free_frame_menubar (f);
5537 #endif /* USE_X_TOOLKIT */
5539 free_frame_faces (f);
5540 XFlush (FRAME_X_DISPLAY (f));
5543 xfree (f->output_data.x);
5544 f->output_data.x = 0;
5545 if (f == dpyinfo->x_focus_frame)
5546 dpyinfo->x_focus_frame = 0;
5547 if (f == dpyinfo->x_focus_event_frame)
5548 dpyinfo->x_focus_event_frame = 0;
5549 if (f == dpyinfo->x_highlight_frame)
5550 dpyinfo->x_highlight_frame = 0;
5552 dpyinfo->reference_count--;
5554 if (f == dpyinfo->mouse_face_mouse_frame)
5556 dpyinfo->mouse_face_beg_row
5557 = dpyinfo->mouse_face_beg_col = -1;
5558 dpyinfo->mouse_face_end_row
5559 = dpyinfo->mouse_face_end_col = -1;
5560 dpyinfo->mouse_face_window = Qnil;
5563 UNBLOCK_INPUT;
5566 /* Setting window manager hints. */
5568 /* Set the normal size hints for the window manager, for frame F.
5569 FLAGS is the flags word to use--or 0 meaning preserve the flags
5570 that the window now has.
5571 If USER_POSITION is nonzero, we set the USPosition
5572 flag (this is useful when FLAGS is 0). */
5574 x_wm_set_size_hint (f, flags, user_position)
5575 struct frame *f;
5576 long flags;
5577 int user_position;
5579 XSizeHints size_hints;
5581 #ifdef USE_X_TOOLKIT
5582 Arg al[2];
5583 int ac = 0;
5584 Dimension widget_width, widget_height;
5585 Window window = XtWindow (f->output_data.x->widget);
5586 #else /* not USE_X_TOOLKIT */
5587 Window window = FRAME_X_WINDOW (f);
5588 #endif /* not USE_X_TOOLKIT */
5590 /* Setting PMaxSize caused various problems. */
5591 size_hints.flags = PResizeInc | PMinSize /* | PMaxSize */;
5593 flexlines = f->height;
5595 size_hints.x = f->output_data.x->left_pos;
5596 size_hints.y = f->output_data.x->top_pos;
5598 #ifdef USE_X_TOOLKIT
5599 XtSetArg (al[ac], XtNwidth, &widget_width); ac++;
5600 XtSetArg (al[ac], XtNheight, &widget_height); ac++;
5601 XtGetValues (f->output_data.x->widget, al, ac);
5602 size_hints.height = widget_height;
5603 size_hints.width = widget_width;
5604 #else /* not USE_X_TOOLKIT */
5605 size_hints.height = PIXEL_HEIGHT (f);
5606 size_hints.width = PIXEL_WIDTH (f);
5607 #endif /* not USE_X_TOOLKIT */
5609 size_hints.width_inc = FONT_WIDTH (f->output_data.x->font);
5610 size_hints.height_inc = f->output_data.x->line_height;
5611 size_hints.max_width
5612 = FRAME_X_DISPLAY_INFO (f)->width - CHAR_TO_PIXEL_WIDTH (f, 0);
5613 size_hints.max_height
5614 = FRAME_X_DISPLAY_INFO (f)->height - CHAR_TO_PIXEL_HEIGHT (f, 0);
5616 /* Calculate the base and minimum sizes.
5618 (When we use the X toolkit, we don't do it here.
5619 Instead we copy the values that the widgets are using, below.) */
5620 #ifndef USE_X_TOOLKIT
5622 int base_width, base_height;
5623 int min_rows = 0, min_cols = 0;
5625 base_width = CHAR_TO_PIXEL_WIDTH (f, 0);
5626 base_height = CHAR_TO_PIXEL_HEIGHT (f, 0);
5628 check_frame_size (f, &min_rows, &min_cols);
5630 /* The window manager uses the base width hints to calculate the
5631 current number of rows and columns in the frame while
5632 resizing; min_width and min_height aren't useful for this
5633 purpose, since they might not give the dimensions for a
5634 zero-row, zero-column frame.
5636 We use the base_width and base_height members if we have
5637 them; otherwise, we set the min_width and min_height members
5638 to the size for a zero x zero frame. */
5640 #ifdef HAVE_X11R4
5641 size_hints.flags |= PBaseSize;
5642 size_hints.base_width = base_width;
5643 size_hints.base_height = base_height;
5644 size_hints.min_width = base_width + min_cols * size_hints.width_inc;
5645 size_hints.min_height = base_height + min_rows * size_hints.height_inc;
5646 #else
5647 size_hints.min_width = base_width;
5648 size_hints.min_height = base_height;
5649 #endif
5652 /* If we don't need the old flags, we don't need the old hint at all. */
5653 if (flags)
5655 size_hints.flags |= flags;
5656 goto no_read;
5658 #endif /* not USE_X_TOOLKIT */
5661 XSizeHints hints; /* Sometimes I hate X Windows... */
5662 long supplied_return;
5663 int value;
5665 #ifdef HAVE_X11R4
5666 value = XGetWMNormalHints (FRAME_X_DISPLAY (f), window, &hints,
5667 &supplied_return);
5668 #else
5669 value = XGetNormalHints (FRAME_X_DISPLAY (f), window, &hints);
5670 #endif
5672 #ifdef USE_X_TOOLKIT
5673 size_hints.base_height = hints.base_height;
5674 size_hints.base_width = hints.base_width;
5675 size_hints.min_height = hints.min_height;
5676 size_hints.min_width = hints.min_width;
5677 #endif
5679 if (flags)
5680 size_hints.flags |= flags;
5681 else
5683 if (value == 0)
5684 hints.flags = 0;
5685 if (hints.flags & PSize)
5686 size_hints.flags |= PSize;
5687 if (hints.flags & PPosition)
5688 size_hints.flags |= PPosition;
5689 if (hints.flags & USPosition)
5690 size_hints.flags |= USPosition;
5691 if (hints.flags & USSize)
5692 size_hints.flags |= USSize;
5696 no_read:
5698 #ifdef PWinGravity
5699 size_hints.win_gravity = f->output_data.x->win_gravity;
5700 size_hints.flags |= PWinGravity;
5702 if (user_position)
5704 size_hints.flags &= ~ PPosition;
5705 size_hints.flags |= USPosition;
5707 #endif /* PWinGravity */
5709 #ifdef HAVE_X11R4
5710 XSetWMNormalHints (FRAME_X_DISPLAY (f), window, &size_hints);
5711 #else
5712 XSetNormalHints (FRAME_X_DISPLAY (f), window, &size_hints);
5713 #endif
5716 /* Used for IconicState or NormalState */
5717 x_wm_set_window_state (f, state)
5718 struct frame *f;
5719 int state;
5721 #ifdef USE_X_TOOLKIT
5722 Arg al[1];
5724 XtSetArg (al[0], XtNinitialState, state);
5725 XtSetValues (f->output_data.x->widget, al, 1);
5726 #else /* not USE_X_TOOLKIT */
5727 Window window = FRAME_X_WINDOW (f);
5729 f->output_data.x->wm_hints.flags |= StateHint;
5730 f->output_data.x->wm_hints.initial_state = state;
5732 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints);
5733 #endif /* not USE_X_TOOLKIT */
5736 x_wm_set_icon_pixmap (f, pixmap_id)
5737 struct frame *f;
5738 int pixmap_id;
5740 Pixmap icon_pixmap;
5742 #ifdef USE_X_TOOLKIT
5743 Window window = XtWindow (f->output_data.x->widget);
5744 #else
5745 Window window = FRAME_X_WINDOW (f);
5746 #endif
5748 if (pixmap_id > 0)
5750 icon_pixmap = x_bitmap_pixmap (f, pixmap_id);
5751 f->output_data.x->wm_hints.icon_pixmap = icon_pixmap;
5753 else
5755 /* It seems there is no way to turn off use of an icon pixmap.
5756 The following line does it, only if no icon has yet been created,
5757 for some window managers. But with mwm it crashes.
5758 Some people say it should clear the IconPixmapHint bit in this case,
5759 but that doesn't work, and the X consortium said it isn't the
5760 right thing at all. Since there is no way to win,
5761 best to explicitly give up. */
5762 #if 0
5763 f->output_data.x->wm_hints.icon_pixmap = None;
5764 #else
5765 return;
5766 #endif
5769 #ifdef USE_X_TOOLKIT /* same as in x_wm_set_window_state. */
5772 Arg al[1];
5773 XtSetArg (al[0], XtNiconPixmap, icon_pixmap);
5774 XtSetValues (f->output_data.x->widget, al, 1);
5777 #else /* not USE_X_TOOLKIT */
5779 f->output_data.x->wm_hints.flags |= IconPixmapHint;
5780 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints);
5782 #endif /* not USE_X_TOOLKIT */
5785 x_wm_set_icon_position (f, icon_x, icon_y)
5786 struct frame *f;
5787 int icon_x, icon_y;
5789 #ifdef USE_X_TOOLKIT
5790 Window window = XtWindow (f->output_data.x->widget);
5791 #else
5792 Window window = FRAME_X_WINDOW (f);
5793 #endif
5795 f->output_data.x->wm_hints.flags |= IconPositionHint;
5796 f->output_data.x->wm_hints.icon_x = icon_x;
5797 f->output_data.x->wm_hints.icon_y = icon_y;
5799 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints);
5803 /* Initialization. */
5805 #ifdef USE_X_TOOLKIT
5806 static XrmOptionDescRec emacs_options[] = {
5807 {"-geometry", ".geometry", XrmoptionSepArg, NULL},
5808 {"-iconic", ".iconic", XrmoptionNoArg, (XtPointer) "yes"},
5810 {"-internal-border-width", "*EmacsScreen.internalBorderWidth",
5811 XrmoptionSepArg, NULL},
5812 {"-ib", "*EmacsScreen.internalBorderWidth", XrmoptionSepArg, NULL},
5814 {"-T", "*EmacsShell.title", XrmoptionSepArg, (XtPointer) NULL},
5815 {"-wn", "*EmacsShell.title", XrmoptionSepArg, (XtPointer) NULL},
5816 {"-title", "*EmacsShell.title", XrmoptionSepArg, (XtPointer) NULL},
5817 {"-iconname", "*EmacsShell.iconName", XrmoptionSepArg, (XtPointer) NULL},
5818 {"-in", "*EmacsShell.iconName", XrmoptionSepArg, (XtPointer) NULL},
5819 {"-mc", "*pointerColor", XrmoptionSepArg, (XtPointer) NULL},
5820 {"-cr", "*cursorColor", XrmoptionSepArg, (XtPointer) NULL}
5822 #endif /* USE_X_TOOLKIT */
5824 static int x_initialized;
5826 #ifdef MULTI_KBOARD
5827 /* Test whether two display-name strings agree up to the dot that separates
5828 the screen number from the server number. */
5829 static int
5830 same_x_server (name1, name2)
5831 char *name1, *name2;
5833 int seen_colon = 0;
5834 for (; *name1 != '\0' && *name1 == *name2; name1++, name2++)
5836 if (*name1 == ':')
5837 seen_colon++;
5838 if (seen_colon && *name1 == '.')
5839 return 1;
5841 return (seen_colon
5842 && (*name1 == '.' || *name1 == '\0')
5843 && (*name2 == '.' || *name2 == '\0'));
5845 #endif
5847 struct x_display_info *
5848 x_term_init (display_name, xrm_option, resource_name)
5849 Lisp_Object display_name;
5850 char *xrm_option;
5851 char *resource_name;
5853 Lisp_Object frame;
5854 char *defaultvalue;
5855 int connection;
5856 Display *dpy;
5857 struct x_display_info *dpyinfo;
5858 XrmDatabase xrdb;
5860 BLOCK_INPUT;
5862 if (!x_initialized)
5864 x_initialize ();
5865 x_initialized = 1;
5868 #ifdef HAVE_X_I18N
5869 setlocale (LC_ALL, "");
5870 /* In case we just overrode what init_lread did, redo it. */
5871 setlocale (LC_NUMERIC, "C");
5872 setlocale (LC_TIME, "C");
5873 #endif
5875 #ifdef USE_X_TOOLKIT
5876 /* weiner@footloose.sps.mot.com reports that this causes
5877 errors with X11R5:
5878 X protocol error: BadAtom (invalid Atom parameter)
5879 on protocol request 18skiloaf.
5880 So let's not use it until R6. */
5881 #ifdef HAVE_X11XTR6
5882 XtSetLanguageProc (NULL, NULL, NULL);
5883 #endif
5886 int argc = 0;
5887 char *argv[3];
5889 argv[0] = "";
5890 argc = 1;
5891 if (xrm_option)
5893 argv[argc++] = "-xrm";
5894 argv[argc++] = xrm_option;
5896 dpy = XtOpenDisplay (Xt_app_con, XSTRING (display_name)->data,
5897 resource_name, EMACS_CLASS,
5898 emacs_options, XtNumber (emacs_options),
5899 &argc, argv);
5901 #ifdef HAVE_X11XTR6
5902 /* I think this is to compensate for XtSetLanguageProc. */
5903 setlocale (LC_NUMERIC, "C");
5904 setlocale (LC_TIME, "C");
5905 #endif
5908 #else /* not USE_X_TOOLKIT */
5909 #ifdef HAVE_X11R5
5910 XSetLocaleModifiers ("");
5911 #endif
5912 dpy = XOpenDisplay (XSTRING (display_name)->data);
5913 #endif /* not USE_X_TOOLKIT */
5915 /* Detect failure. */
5916 if (dpy == 0)
5918 UNBLOCK_INPUT;
5919 return 0;
5922 /* We have definitely succeeded. Record the new connection. */
5924 dpyinfo = (struct x_display_info *) xmalloc (sizeof (struct x_display_info));
5926 #ifdef MULTI_KBOARD
5928 struct x_display_info *share;
5929 Lisp_Object tail;
5931 for (share = x_display_list, tail = x_display_name_list; share;
5932 share = share->next, tail = XCONS (tail)->cdr)
5933 if (same_x_server (XSTRING (XCONS (XCONS (tail)->car)->car)->data,
5934 XSTRING (display_name)->data))
5935 break;
5936 if (share)
5937 dpyinfo->kboard = share->kboard;
5938 else
5940 dpyinfo->kboard = (KBOARD *) xmalloc (sizeof (KBOARD));
5941 init_kboard (dpyinfo->kboard);
5942 if (!EQ (XSYMBOL (Qvendor_specific_keysyms)->function, Qunbound))
5944 char *vendor = ServerVendor (dpy);
5945 dpyinfo->kboard->Vsystem_key_alist
5946 = call1 (Qvendor_specific_keysyms,
5947 build_string (vendor ? vendor : ""));
5950 dpyinfo->kboard->next_kboard = all_kboards;
5951 all_kboards = dpyinfo->kboard;
5952 /* Don't let the initial kboard remain current longer than necessary.
5953 That would cause problems if a file loaded on startup tries to
5954 prompt in the minibuffer. */
5955 if (current_kboard == initial_kboard)
5956 current_kboard = dpyinfo->kboard;
5958 dpyinfo->kboard->reference_count++;
5960 #endif
5962 /* Put this display on the chain. */
5963 dpyinfo->next = x_display_list;
5964 x_display_list = dpyinfo;
5966 /* Put it on x_display_name_list as well, to keep them parallel. */
5967 x_display_name_list = Fcons (Fcons (display_name, Qnil),
5968 x_display_name_list);
5969 dpyinfo->name_list_element = XCONS (x_display_name_list)->car;
5971 dpyinfo->display = dpy;
5973 #if 0
5974 XSetAfterFunction (x_current_display, x_trace_wire);
5975 #endif /* ! 0 */
5977 dpyinfo->x_id_name
5978 = (char *) xmalloc (XSTRING (Vinvocation_name)->size
5979 + XSTRING (Vsystem_name)->size
5980 + 2);
5981 sprintf (dpyinfo->x_id_name, "%s@%s",
5982 XSTRING (Vinvocation_name)->data, XSTRING (Vsystem_name)->data);
5984 /* Figure out which modifier bits mean what. */
5985 x_find_modifier_meanings (dpyinfo);
5987 /* Get the scroll bar cursor. */
5988 dpyinfo->vertical_scroll_bar_cursor
5989 = XCreateFontCursor (dpyinfo->display, XC_sb_v_double_arrow);
5991 xrdb = x_load_resources (dpyinfo->display, xrm_option,
5992 resource_name, EMACS_CLASS);
5993 #ifdef HAVE_XRMSETDATABASE
5994 XrmSetDatabase (dpyinfo->display, xrdb);
5995 #else
5996 dpyinfo->display->db = xrdb;
5997 #endif
5998 /* Put the rdb where we can find it in a way that works on
5999 all versions. */
6000 dpyinfo->xrdb = xrdb;
6002 dpyinfo->screen = ScreenOfDisplay (dpyinfo->display,
6003 DefaultScreen (dpyinfo->display));
6004 dpyinfo->visual = select_visual (dpyinfo->display, dpyinfo->screen,
6005 &dpyinfo->n_planes);
6006 dpyinfo->height = HeightOfScreen (dpyinfo->screen);
6007 dpyinfo->width = WidthOfScreen (dpyinfo->screen);
6008 dpyinfo->root_window = RootWindowOfScreen (dpyinfo->screen);
6009 dpyinfo->grabbed = 0;
6010 dpyinfo->reference_count = 0;
6011 dpyinfo->icon_bitmap_id = -1;
6012 dpyinfo->n_fonts = 0;
6013 dpyinfo->font_table_size = 0;
6014 dpyinfo->bitmaps = 0;
6015 dpyinfo->bitmaps_size = 0;
6016 dpyinfo->bitmaps_last = 0;
6017 dpyinfo->scratch_cursor_gc = 0;
6018 dpyinfo->mouse_face_mouse_frame = 0;
6019 dpyinfo->mouse_face_deferred_gc = 0;
6020 dpyinfo->mouse_face_beg_row = dpyinfo->mouse_face_beg_col = -1;
6021 dpyinfo->mouse_face_end_row = dpyinfo->mouse_face_end_col = -1;
6022 dpyinfo->mouse_face_face_id = 0;
6023 dpyinfo->mouse_face_window = Qnil;
6024 dpyinfo->mouse_face_mouse_x = dpyinfo->mouse_face_mouse_y = 0;
6025 dpyinfo->mouse_face_defer = 0;
6026 dpyinfo->x_focus_frame = 0;
6027 dpyinfo->x_focus_event_frame = 0;
6028 dpyinfo->x_highlight_frame = 0;
6030 dpyinfo->Xatom_wm_protocols
6031 = XInternAtom (dpyinfo->display, "WM_PROTOCOLS", False);
6032 dpyinfo->Xatom_wm_take_focus
6033 = XInternAtom (dpyinfo->display, "WM_TAKE_FOCUS", False);
6034 dpyinfo->Xatom_wm_save_yourself
6035 = XInternAtom (dpyinfo->display, "WM_SAVE_YOURSELF", False);
6036 dpyinfo->Xatom_wm_delete_window
6037 = XInternAtom (dpyinfo->display, "WM_DELETE_WINDOW", False);
6038 dpyinfo->Xatom_wm_change_state
6039 = XInternAtom (dpyinfo->display, "WM_CHANGE_STATE", False);
6040 dpyinfo->Xatom_wm_configure_denied
6041 = XInternAtom (dpyinfo->display, "WM_CONFIGURE_DENIED", False);
6042 dpyinfo->Xatom_wm_window_moved
6043 = XInternAtom (dpyinfo->display, "WM_MOVED", False);
6044 dpyinfo->Xatom_editres
6045 = XInternAtom (dpyinfo->display, "Editres", False);
6046 dpyinfo->Xatom_CLIPBOARD
6047 = XInternAtom (dpyinfo->display, "CLIPBOARD", False);
6048 dpyinfo->Xatom_TIMESTAMP
6049 = XInternAtom (dpyinfo->display, "TIMESTAMP", False);
6050 dpyinfo->Xatom_TEXT
6051 = XInternAtom (dpyinfo->display, "TEXT", False);
6052 dpyinfo->Xatom_DELETE
6053 = XInternAtom (dpyinfo->display, "DELETE", False);
6054 dpyinfo->Xatom_MULTIPLE
6055 = XInternAtom (dpyinfo->display, "MULTIPLE", False);
6056 dpyinfo->Xatom_INCR
6057 = XInternAtom (dpyinfo->display, "INCR", False);
6058 dpyinfo->Xatom_EMACS_TMP
6059 = XInternAtom (dpyinfo->display, "_EMACS_TMP_", False);
6060 dpyinfo->Xatom_TARGETS
6061 = XInternAtom (dpyinfo->display, "TARGETS", False);
6062 dpyinfo->Xatom_NULL
6063 = XInternAtom (dpyinfo->display, "NULL", False);
6064 dpyinfo->Xatom_ATOM_PAIR
6065 = XInternAtom (dpyinfo->display, "ATOM_PAIR", False);
6067 dpyinfo->cut_buffers_initialized = 0;
6069 connection = ConnectionNumber (dpyinfo->display);
6070 dpyinfo->connection = connection;
6072 #ifdef subprocesses
6073 /* This is only needed for distinguishing keyboard and process input. */
6074 if (connection != 0)
6075 add_keyboard_wait_descriptor (connection);
6076 #endif
6078 #ifndef F_SETOWN_BUG
6079 #ifdef F_SETOWN
6080 #ifdef F_SETOWN_SOCK_NEG
6081 /* stdin is a socket here */
6082 fcntl (connection, F_SETOWN, -getpid ());
6083 #else /* ! defined (F_SETOWN_SOCK_NEG) */
6084 fcntl (connection, F_SETOWN, getpid ());
6085 #endif /* ! defined (F_SETOWN_SOCK_NEG) */
6086 #endif /* ! defined (F_SETOWN) */
6087 #endif /* F_SETOWN_BUG */
6089 #ifdef SIGIO
6090 if (interrupt_input)
6091 init_sigio (connection);
6092 #endif /* ! defined (SIGIO) */
6094 #ifdef USE_LUCID
6095 /* Make sure that we have a valid font for dialog boxes
6096 so that Xt does not crash. */
6098 Display *dpy = dpyinfo->display;
6099 XrmValue d, fr, to;
6100 Font font;
6102 d.addr = (XPointer)&dpy;
6103 d.size = sizeof (Display *);
6104 fr.addr = XtDefaultFont;
6105 fr.size = sizeof (XtDefaultFont);
6106 to.size = sizeof (Font *);
6107 to.addr = (XPointer)&font;
6108 x_catch_errors (dpy);
6109 if (!XtCallConverter (dpy, XtCvtStringToFont, &d, 1, &fr, &to, NULL))
6110 abort ();
6111 if (x_had_errors_p (dpy) || !XQueryFont (dpy, font))
6112 XrmPutLineResource (&xrdb, "Emacs.dialog.*.font: 9x15");
6113 x_uncatch_errors (dpy);
6115 #endif
6118 UNBLOCK_INPUT;
6120 return dpyinfo;
6123 /* Get rid of display DPYINFO, assuming all frames are already gone,
6124 and without sending any more commands to the X server. */
6126 void
6127 x_delete_display (dpyinfo)
6128 struct x_display_info *dpyinfo;
6130 delete_keyboard_wait_descriptor (dpyinfo->connection);
6132 /* Discard this display from x_display_name_list and x_display_list.
6133 We can't use Fdelq because that can quit. */
6134 if (! NILP (x_display_name_list)
6135 && EQ (XCONS (x_display_name_list)->car, dpyinfo->name_list_element))
6136 x_display_name_list = XCONS (x_display_name_list)->cdr;
6137 else
6139 Lisp_Object tail;
6141 tail = x_display_name_list;
6142 while (CONSP (tail) && CONSP (XCONS (tail)->cdr))
6144 if (EQ (XCONS (XCONS (tail)->cdr)->car,
6145 dpyinfo->name_list_element))
6147 XCONS (tail)->cdr = XCONS (XCONS (tail)->cdr)->cdr;
6148 break;
6150 tail = XCONS (tail)->cdr;
6154 if (x_display_list == dpyinfo)
6155 x_display_list = dpyinfo->next;
6156 else
6158 struct x_display_info *tail;
6160 for (tail = x_display_list; tail; tail = tail->next)
6161 if (tail->next == dpyinfo)
6162 tail->next = tail->next->next;
6165 #ifndef USE_X_TOOLKIT /* I'm told Xt does this itself. */
6166 #ifndef AIX /* On AIX, XCloseDisplay calls this. */
6167 XrmDestroyDatabase (dpyinfo->xrdb);
6168 #endif
6169 #endif
6170 #ifdef MULTI_KBOARD
6171 if (--dpyinfo->kboard->reference_count == 0)
6172 delete_kboard (dpyinfo->kboard);
6173 #endif
6174 xfree (dpyinfo->font_table);
6175 xfree (dpyinfo->x_id_name);
6176 xfree (dpyinfo);
6179 /* Set up use of X before we make the first connection. */
6181 x_initialize ()
6183 clear_frame_hook = XTclear_frame;
6184 clear_end_of_line_hook = XTclear_end_of_line;
6185 ins_del_lines_hook = XTins_del_lines;
6186 change_line_highlight_hook = XTchange_line_highlight;
6187 insert_glyphs_hook = XTinsert_glyphs;
6188 write_glyphs_hook = XTwrite_glyphs;
6189 delete_glyphs_hook = XTdelete_glyphs;
6190 ring_bell_hook = XTring_bell;
6191 reset_terminal_modes_hook = XTreset_terminal_modes;
6192 set_terminal_modes_hook = XTset_terminal_modes;
6193 update_begin_hook = XTupdate_begin;
6194 update_end_hook = XTupdate_end;
6195 set_terminal_window_hook = XTset_terminal_window;
6196 read_socket_hook = XTread_socket;
6197 frame_up_to_date_hook = XTframe_up_to_date;
6198 cursor_to_hook = XTcursor_to;
6199 reassert_line_highlight_hook = XTreassert_line_highlight;
6200 mouse_position_hook = XTmouse_position;
6201 frame_rehighlight_hook = XTframe_rehighlight;
6202 frame_raise_lower_hook = XTframe_raise_lower;
6203 set_vertical_scroll_bar_hook = XTset_vertical_scroll_bar;
6204 condemn_scroll_bars_hook = XTcondemn_scroll_bars;
6205 redeem_scroll_bar_hook = XTredeem_scroll_bar;
6206 judge_scroll_bars_hook = XTjudge_scroll_bars;
6208 scroll_region_ok = 1; /* we'll scroll partial frames */
6209 char_ins_del_ok = 0; /* just as fast to write the line */
6210 line_ins_del_ok = 1; /* we'll just blt 'em */
6211 fast_clear_end_of_line = 1; /* X does this well */
6212 memory_below_frame = 0; /* we don't remember what scrolls
6213 off the bottom */
6214 baud_rate = 19200;
6216 x_noop_count = 0;
6218 /* Try to use interrupt input; if we can't, then start polling. */
6219 Fset_input_mode (Qt, Qnil, Qt, Qnil);
6221 #ifdef USE_X_TOOLKIT
6222 XtToolkitInitialize ();
6223 Xt_app_con = XtCreateApplicationContext ();
6224 XtAppSetFallbackResources (Xt_app_con, Xt_default_resources);
6225 #endif
6227 /* Note that there is no real way portable across R3/R4 to get the
6228 original error handler. */
6229 XSetErrorHandler (x_error_quitter);
6230 XSetIOErrorHandler (x_io_error_quitter);
6232 /* Disable Window Change signals; they are handled by X events. */
6233 #ifdef SIGWINCH
6234 signal (SIGWINCH, SIG_DFL);
6235 #endif /* ! defined (SIGWINCH) */
6237 signal (SIGPIPE, x_connection_signal);
6240 void
6241 syms_of_xterm ()
6243 staticpro (&x_display_name_list);
6244 x_display_name_list = Qnil;
6246 staticpro (&last_mouse_scroll_bar);
6247 last_mouse_scroll_bar = Qnil;
6249 staticpro (&Qvendor_specific_keysyms);
6250 Qvendor_specific_keysyms = intern ("vendor-specific-keysyms");
6252 staticpro (&last_mouse_press_frame);
6253 last_mouse_press_frame = Qnil;
6256 #endif /* not HAVE_X_WINDOWS */