(XTread_socket): Pass keys in menu bar to toolkit alone
[bpt/emacs.git] / src / xterm.c
1 /* X Communication module for terminals which understand the X protocol.
2 Copyright (C) 1989, 93, 94, 95, 1996 Free Software Foundation, Inc.
3
4 This file is part of GNU Emacs.
5
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.
10
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.
15
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. */
20
21 /* Xt features made by Fred Pierresteguy. */
22
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>
27
28 #include <config.h>
29
30 #include <stdio.h>
31
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"
35
36 #ifdef HAVE_X_WINDOWS
37
38 #include "lisp.h"
39 #include "blockinput.h"
40
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>
45
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 */
53
54 #ifdef BSD
55 #include <sys/ioctl.h>
56 #endif /* ! defined (BSD) */
57
58 #include "systty.h"
59 #include "systime.h"
60
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> */
70
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"
86
87 #ifdef USE_X_TOOLKIT
88 #include <X11/Shell.h>
89 #endif
90
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 */
99
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
104
105 #ifdef USE_X_TOOLKIT
106 #include "widget.h"
107 #ifndef XtNinitialState
108 #define XtNinitialState "initialState"
109 #endif
110 #endif
111
112 #ifdef HAVE_SETLOCALE
113 /* So we can do setlocale. */
114 #include <locale.h>
115 #endif
116
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
123
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
130 \f
131 /* This is a chain of structures for all the X displays currently in use. */
132 struct x_display_info *x_display_list;
133
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;
139
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;
146
147 extern waiting_for_input;
148
149 /* This is a frame waiting to be autoraised, within XTread_socket. */
150 struct frame *pending_autoraise_frame;
151
152 #ifdef USE_X_TOOLKIT
153 /* The application context for Xt use. */
154 XtAppContext Xt_app_con;
155
156 static String Xt_default_resources[] =
157 {
158 0
159 };
160 #endif
161
162 /* During an update, maximum vpos for ins/del line operations to affect. */
163
164 static int flexlines;
165
166 /* During an update, nonzero if chars output now should be highlighted. */
167
168 static int highlight;
169
170 /* Nominal cursor position -- where to draw output.
171 During an update, these are different from the cursor-box position. */
172
173 static int curs_x;
174 static int curs_y;
175
176 /* Mouse movement.
177
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.
182
183 Simply asking for MotionNotify all the time seems to work better.
184
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. */
195
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;
199
200 static Lisp_Object last_mouse_press_frame;
201
202 /* The scroll bar in which the last X motion event occurred.
203
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.
207
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;
211
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;
219
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
226
227 /* Used locally within XTread_socket. */
228 static int x_noop_count;
229
230 /* Initial values of argv and argc. */
231 extern char **initial_argv;
232 extern int initial_argc;
233
234 extern Lisp_Object Vcommand_line_args, Vsystem_name;
235
236 /* Tells if a window manager is present or not. */
237
238 extern Lisp_Object Vx_no_window_manager;
239
240 extern Lisp_Object Qface, Qmouse_face;
241
242 extern int errno;
243
244 /* A mask of extra modifier bits to put into every keyboard char. */
245 extern int extra_keyboard_modifiers;
246
247 static Lisp_Object Qvendor_specific_keysyms;
248
249 extern XrmDatabase x_load_resources ();
250
251 extern Lisp_Object x_icon_type ();
252
253 void x_delete_display ();
254
255 static void redraw_previous_char ();
256 static void redraw_following_char ();
257 static unsigned int x_x_to_emacs_modifiers ();
258
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 ();
264
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 ();
270 \f
271 #if 0
272 /* This is a function useful for recording debugging information
273 about the sequence of occurrences in this file. */
274
275 struct record
276 {
277 char *locus;
278 int type;
279 };
280
281 struct record event_record[100];
282
283 int event_record_index;
284
285 record_event (locus, type)
286 char *locus;
287 int type;
288 {
289 if (event_record_index == sizeof (event_record) / sizeof (struct record))
290 event_record_index = 0;
291
292 event_record[event_record_index].locus = locus;
293 event_record[event_record_index].type = type;
294 event_record_index++;
295 }
296
297 #endif /* 0 */
298 \f
299 /* Return the struct x_display_info corresponding to DPY. */
300
301 struct x_display_info *
302 x_display_info_for_display (dpy)
303 Display *dpy;
304 {
305 struct x_display_info *dpyinfo;
306
307 for (dpyinfo = x_display_list; dpyinfo; dpyinfo = dpyinfo->next)
308 if (dpyinfo->display == dpy)
309 return dpyinfo;
310
311 return 0;
312 }
313 \f
314 /* Starting and ending updates.
315
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. */
322
323 static
324 XTupdate_begin (f)
325 struct frame *f;
326 {
327 int mask;
328
329 if (f == 0)
330 abort ();
331
332 flexlines = f->height;
333 highlight = 0;
334
335 BLOCK_INPUT;
336
337 if (f == FRAME_X_DISPLAY_INFO (f)->mouse_face_mouse_frame)
338 {
339 /* Don't do highlighting for mouse motion during the update. */
340 FRAME_X_DISPLAY_INFO (f)->mouse_face_defer = 1;
341
342 /* If the frame needs to be redrawn,
343 simply forget about any prior mouse highlighting. */
344 if (FRAME_GARBAGED_P (f))
345 FRAME_X_DISPLAY_INFO (f)->mouse_face_window = Qnil;
346
347 if (!NILP (FRAME_X_DISPLAY_INFO (f)->mouse_face_window))
348 {
349 int firstline, lastline, i;
350 struct window *w = XWINDOW (FRAME_X_DISPLAY_INFO (f)->mouse_face_window);
351
352 /* Find the first, and the last+1, lines affected by redisplay. */
353 for (firstline = 0; firstline < f->height; firstline++)
354 if (FRAME_DESIRED_GLYPHS (f)->enable[firstline])
355 break;
356
357 lastline = f->height;
358 for (i = f->height - 1; i >= 0; i--)
359 {
360 if (FRAME_DESIRED_GLYPHS (f)->enable[i])
361 break;
362 else
363 lastline = i;
364 }
365
366 /* Can we tell that this update does not affect the window
367 where the mouse highlight is? If so, no need to turn off.
368 Likewise, don't do anything if the frame is garbaged;
369 in that case, the FRAME_CURRENT_GLYPHS that we would use
370 are all wrong, and we will redisplay that line anyway. */
371 if (! (firstline > (XFASTINT (w->top) + window_internal_height (w))
372 || lastline < XFASTINT (w->top)))
373 clear_mouse_face (FRAME_X_DISPLAY_INFO (f));
374 }
375 }
376
377 UNBLOCK_INPUT;
378 }
379
380 static
381 XTupdate_end (f)
382 struct frame *f;
383 {
384 int mask;
385
386 BLOCK_INPUT;
387
388 do_line_dance ();
389 x_display_cursor (f, 1);
390
391 if (f == FRAME_X_DISPLAY_INFO (f)->mouse_face_mouse_frame)
392 FRAME_X_DISPLAY_INFO (f)->mouse_face_defer = 0;
393 #if 0
394 /* This fails in the case of having updated only the echo area
395 if we have switched buffers. In that case, FRAME_CURRENT_GLYPHS
396 has no relation to the current contents, and its charstarts
397 have no relation to the contents of the window-buffer.
398 I don't know a clean way to check
399 for that case. window_end_valid isn't set up yet. */
400 if (f == FRAME_X_DISPLAY_INFO (f)->mouse_face_mouse_frame)
401 note_mouse_highlight (f, FRAME_X_DISPLAY_INFO (f)->mouse_face_mouse_x,
402 FRAME_X_DISPLAY_INFO (f)->mouse_face_mouse_y);
403 #endif
404
405 XFlush (FRAME_X_DISPLAY (f));
406 UNBLOCK_INPUT;
407 }
408
409 /* This is called after a redisplay on frame F. */
410
411 static
412 XTframe_up_to_date (f)
413 FRAME_PTR f;
414 {
415 BLOCK_INPUT;
416 if (FRAME_X_DISPLAY_INFO (f)->mouse_face_deferred_gc
417 || f == FRAME_X_DISPLAY_INFO (f)->mouse_face_mouse_frame)
418 {
419 note_mouse_highlight (FRAME_X_DISPLAY_INFO (f)->mouse_face_mouse_frame,
420 FRAME_X_DISPLAY_INFO (f)->mouse_face_mouse_x,
421 FRAME_X_DISPLAY_INFO (f)->mouse_face_mouse_y);
422 FRAME_X_DISPLAY_INFO (f)->mouse_face_deferred_gc = 0;
423 }
424 UNBLOCK_INPUT;
425 }
426 \f
427 /* External interface to control of standout mode.
428 Call this when about to modify line at position VPOS
429 and not change whether it is highlighted. */
430
431 XTreassert_line_highlight (new, vpos)
432 int new, vpos;
433 {
434 highlight = new;
435 }
436
437 /* Call this when about to modify line at position VPOS
438 and change whether it is highlighted. */
439
440 static
441 XTchange_line_highlight (new_highlight, vpos, first_unused_hpos)
442 int new_highlight, vpos, first_unused_hpos;
443 {
444 highlight = new_highlight;
445 XTcursor_to (vpos, 0);
446 XTclear_end_of_line (updating_frame->width);
447 }
448
449 /* This is used when starting Emacs and when restarting after suspend.
450 When starting Emacs, no X window is mapped. And nothing must be done
451 to Emacs's own window if it is suspended (though that rarely happens). */
452
453 static
454 XTset_terminal_modes ()
455 {
456 }
457
458 /* This is called when exiting or suspending Emacs.
459 Exiting will make the X-windows go away, and suspending
460 requires no action. */
461
462 static
463 XTreset_terminal_modes ()
464 {
465 /* XTclear_frame (); */
466 }
467 \f
468 /* Set the nominal cursor position of the frame.
469 This is where display update commands will take effect.
470 This does not affect the place where the cursor-box is displayed. */
471
472 static int
473 XTcursor_to (row, col)
474 register int row, col;
475 {
476 int mask;
477 int orow = row;
478
479 curs_x = col;
480 curs_y = row;
481
482 if (updating_frame == 0)
483 {
484 BLOCK_INPUT;
485 x_display_cursor (selected_frame, 1);
486 XFlush (FRAME_X_DISPLAY (selected_frame));
487 UNBLOCK_INPUT;
488 }
489 }
490 \f
491 /* Display a sequence of N glyphs found at GP.
492 WINDOW is the x-window to output to. LEFT and TOP are starting coords.
493 HL is 1 if this text is highlighted, 2 if the cursor is on it,
494 3 if should appear in its mouse-face.
495 JUST_FOREGROUND if 1 means draw only the foreground;
496 don't alter the background.
497
498 FONT is the default font to use (for glyphs whose font-code is 0).
499
500 Since the display generation code is responsible for calling
501 compute_char_face and compute_glyph_face on everything it puts in
502 the display structure, we can assume that the face code on each
503 glyph is a valid index into FRAME_COMPUTED_FACES (f), and the one
504 to which we can actually apply intern_face.
505 Call this function with input blocked. */
506
507 #if 1
508 /* This is the multi-face code. */
509
510 static void
511 dumpglyphs (f, left, top, gp, n, hl, just_foreground)
512 struct frame *f;
513 int left, top;
514 register GLYPH *gp; /* Points to first GLYPH. */
515 register int n; /* Number of glyphs to display. */
516 int hl;
517 int just_foreground;
518 {
519 /* Holds characters to be displayed. */
520 char *buf = (char *) alloca (f->width * sizeof (*buf));
521 register char *cp; /* Steps through buf[]. */
522 register int tlen = GLYPH_TABLE_LENGTH;
523 register Lisp_Object *tbase = GLYPH_TABLE_BASE;
524 Window window = FRAME_X_WINDOW (f);
525 int orig_left = left;
526
527 while (n > 0)
528 {
529 /* Get the face-code of the next GLYPH. */
530 int cf, len;
531 int g = *gp;
532
533 GLYPH_FOLLOW_ALIASES (tbase, tlen, g);
534 cf = FAST_GLYPH_FACE (g);
535
536 /* Find the run of consecutive glyphs with the same face-code.
537 Extract their character codes into BUF. */
538 cp = buf;
539 while (n > 0)
540 {
541 g = *gp;
542 GLYPH_FOLLOW_ALIASES (tbase, tlen, g);
543 if (FAST_GLYPH_FACE (g) != cf)
544 break;
545
546 *cp++ = FAST_GLYPH_CHAR (g);
547 --n;
548 ++gp;
549 }
550
551 /* LEN gets the length of the run. */
552 len = cp - buf;
553
554 /* Now output this run of chars, with the font and pixel values
555 determined by the face code CF. */
556 {
557 struct face *face = FRAME_DEFAULT_FACE (f);
558 XFontStruct *font = FACE_FONT (face);
559 GC gc = FACE_GC (face);
560 int stippled = 0;
561
562 /* HL = 3 means use a mouse face previously chosen. */
563 if (hl == 3)
564 cf = FRAME_X_DISPLAY_INFO (f)->mouse_face_face_id;
565
566 /* First look at the face of the text itself. */
567 if (cf != 0)
568 {
569 /* It's possible for the display table to specify
570 a face code that is out of range. Use 0 in that case. */
571 if (cf < 0 || cf >= FRAME_N_COMPUTED_FACES (f)
572 || FRAME_COMPUTED_FACES (f) [cf] == 0)
573 cf = 0;
574
575 if (cf == 1)
576 face = FRAME_MODE_LINE_FACE (f);
577 else
578 face = intern_face (f, FRAME_COMPUTED_FACES (f) [cf]);
579 font = FACE_FONT (face);
580 gc = FACE_GC (face);
581 if (FACE_STIPPLE (face))
582 stippled = 1;
583 }
584
585 /* Then comes the distinction between modeline and normal text. */
586 else if (hl == 0)
587 ;
588 else if (hl == 1)
589 {
590 face = FRAME_MODE_LINE_FACE (f);
591 font = FACE_FONT (face);
592 gc = FACE_GC (face);
593 if (FACE_STIPPLE (face))
594 stippled = 1;
595 }
596
597 #define FACE_DEFAULT (~0)
598
599 /* Now override that if the cursor's on this character. */
600 if (hl == 2)
601 {
602 /* The cursor overrides stippling. */
603 stippled = 0;
604
605 if ((!face->font
606 || face->font == (XFontStruct *) FACE_DEFAULT
607 || face->font == f->output_data.x->font)
608 && face->background == f->output_data.x->background_pixel
609 && face->foreground == f->output_data.x->foreground_pixel)
610 {
611 gc = f->output_data.x->cursor_gc;
612 }
613 /* Cursor on non-default face: must merge. */
614 else
615 {
616 XGCValues xgcv;
617 unsigned long mask;
618
619 xgcv.background = f->output_data.x->cursor_pixel;
620 xgcv.foreground = face->background;
621 /* If the glyph would be invisible,
622 try a different foreground. */
623 if (xgcv.foreground == xgcv.background)
624 xgcv.foreground = face->foreground;
625 if (xgcv.foreground == xgcv.background)
626 xgcv.foreground = f->output_data.x->cursor_foreground_pixel;
627 if (xgcv.foreground == xgcv.background)
628 xgcv.foreground = face->foreground;
629 /* Make sure the cursor is distinct from text in this face. */
630 if (xgcv.background == face->background
631 && xgcv.foreground == face->foreground)
632 {
633 xgcv.background = face->foreground;
634 xgcv.foreground = face->background;
635 }
636 xgcv.font = face->font->fid;
637 xgcv.graphics_exposures = 0;
638 mask = GCForeground | GCBackground | GCFont | GCGraphicsExposures;
639 if (FRAME_X_DISPLAY_INFO (f)->scratch_cursor_gc)
640 XChangeGC (FRAME_X_DISPLAY (f),
641 FRAME_X_DISPLAY_INFO (f)->scratch_cursor_gc,
642 mask, &xgcv);
643 else
644 FRAME_X_DISPLAY_INFO (f)->scratch_cursor_gc
645 = XCreateGC (FRAME_X_DISPLAY (f), window, mask, &xgcv);
646 gc = FRAME_X_DISPLAY_INFO (f)->scratch_cursor_gc;
647 #if 0
648 /* If this code is restored, it must also reset to the default stipple
649 if necessary. */
650 if (face->stipple && face->stipple != FACE_DEFAULT)
651 XSetStipple (FRAME_X_DISPLAY (f), gc, face->stipple);
652 #endif
653 }
654 }
655
656 if (font == (XFontStruct *) FACE_DEFAULT)
657 font = f->output_data.x->font;
658
659 if (just_foreground)
660 XDrawString (FRAME_X_DISPLAY (f), window, gc,
661 left, top + FONT_BASE (font), buf, len);
662 else
663 {
664 if (stippled)
665 {
666 /* Turn stipple on. */
667 XSetFillStyle (FRAME_X_DISPLAY (f), gc, FillOpaqueStippled);
668
669 /* Draw stipple on background. */
670 XFillRectangle (FRAME_X_DISPLAY (f), window, gc,
671 left, top,
672 FONT_WIDTH (font) * len,
673 FONT_HEIGHT (font));
674
675 /* Turn stipple off. */
676 XSetFillStyle (FRAME_X_DISPLAY (f), gc, FillSolid);
677
678 /* Draw the text, solidly, onto the stipple pattern. */
679 XDrawString (FRAME_X_DISPLAY (f), window, gc,
680 left, top + FONT_BASE (font), buf, len);
681 }
682 else
683 XDrawImageString (FRAME_X_DISPLAY (f), window, gc,
684 left, top + FONT_BASE (font), buf, len);
685
686 /* Clear the rest of the line's height. */
687 if (f->output_data.x->line_height != FONT_HEIGHT (font))
688 XClearArea (FRAME_X_DISPLAY (f), window, left,
689 top + FONT_HEIGHT (font),
690 FONT_WIDTH (font) * len,
691 /* This is how many pixels of height
692 we have to clear. */
693 f->output_data.x->line_height - FONT_HEIGHT (font),
694 False);
695 }
696
697 #if 0 /* Doesn't work, because it uses FRAME_CURRENT_GLYPHS,
698 which often is not up to date yet. */
699 if (!just_foreground)
700 {
701 if (left == orig_left)
702 redraw_previous_char (f, PIXEL_TO_CHAR_COL (f, left),
703 PIXEL_TO_CHAR_ROW (f, top), hl == 1);
704 if (n == 0)
705 redraw_following_char (f, PIXEL_TO_CHAR_COL (f, left + len * FONT_WIDTH (font)),
706 PIXEL_TO_CHAR_ROW (f, top), hl == 1);
707 }
708 #endif
709
710 /* We should probably check for XA_UNDERLINE_POSITION and
711 XA_UNDERLINE_THICKNESS properties on the font, but let's
712 just get the thing working, and come back to that. */
713 {
714 int underline_position = 1;
715
716 if (font->descent <= underline_position)
717 underline_position = font->descent - 1;
718
719 if (face->underline)
720 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
721 FACE_GC (face),
722 left, (top
723 + FONT_BASE (font)
724 + underline_position),
725 len * FONT_WIDTH (font), 1);
726 }
727
728 left += len * FONT_WIDTH (font);
729 }
730 }
731 }
732 #endif /* 1 */
733
734 #if 0
735 /* This is the old single-face code. */
736
737 static void
738 dumpglyphs (f, left, top, gp, n, hl, font)
739 struct frame *f;
740 int left, top;
741 register GLYPH *gp; /* Points to first GLYPH. */
742 register int n; /* Number of glyphs to display. */
743 int hl;
744 XFontStruct *font;
745 {
746 register int len;
747 Window window = FRAME_X_WINDOW (f);
748 GC drawing_gc = (hl == 2 ? f->output_data.x->cursor_gc
749 : (hl ? f->output_data.x->reverse_gc
750 : f->output_data.x->normal_gc));
751
752 if (sizeof (GLYPH) == sizeof (XChar2b))
753 XDrawImageString16 (FRAME_X_DISPLAY (f), window, drawing_gc,
754 left, top + FONT_BASE (font), (XChar2b *) gp, n);
755 else if (sizeof (GLYPH) == sizeof (unsigned char))
756 XDrawImageString (FRAME_X_DISPLAY (f), window, drawing_gc,
757 left, top + FONT_BASE (font), (char *) gp, n);
758 else
759 /* What size of glyph ARE you using? And does X have a function to
760 draw them? */
761 abort ();
762 }
763 #endif
764 \f
765 /* Output some text at the nominal frame cursor position.
766 Advance the cursor over the text.
767 Output LEN glyphs at START.
768
769 `highlight', set up by XTreassert_line_highlight or XTchange_line_highlight,
770 controls the pixel values used for foreground and background. */
771
772 static
773 XTwrite_glyphs (start, len)
774 register GLYPH *start;
775 int len;
776 {
777 register int temp_length;
778 int mask;
779 struct frame *f;
780
781 BLOCK_INPUT;
782
783 do_line_dance ();
784 f = updating_frame;
785 if (f == 0)
786 {
787 f = selected_frame;
788 /* If not within an update,
789 output at the frame's visible cursor. */
790 curs_x = f->cursor_x;
791 curs_y = f->cursor_y;
792 }
793
794 dumpglyphs (f,
795 CHAR_TO_PIXEL_COL (f, curs_x),
796 CHAR_TO_PIXEL_ROW (f, curs_y),
797 start, len, highlight, 0);
798
799 /* If we drew on top of the cursor, note that it is turned off. */
800 if (curs_y == f->phys_cursor_y
801 && curs_x <= f->phys_cursor_x
802 && curs_x + len > f->phys_cursor_x)
803 f->phys_cursor_x = -1;
804
805 if (updating_frame == 0)
806 {
807 f->cursor_x += len;
808 x_display_cursor (f, 1);
809 f->cursor_x -= len;
810 }
811 else
812 curs_x += len;
813
814 UNBLOCK_INPUT;
815 }
816 \f
817 /* Clear to the end of the line.
818 Erase the current text line from the nominal cursor position (inclusive)
819 to column FIRST_UNUSED (exclusive). The idea is that everything
820 from FIRST_UNUSED onward is already erased. */
821
822 static
823 XTclear_end_of_line (first_unused)
824 register int first_unused;
825 {
826 struct frame *f = updating_frame;
827 int mask;
828
829 if (f == 0)
830 abort ();
831
832 if (curs_y < 0 || curs_y >= f->height)
833 return;
834 if (first_unused <= 0)
835 return;
836
837 if (first_unused >= f->width)
838 first_unused = f->width;
839
840 BLOCK_INPUT;
841
842 do_line_dance ();
843
844 /* Notice if the cursor will be cleared by this operation. */
845 if (curs_y == f->phys_cursor_y
846 && curs_x <= f->phys_cursor_x
847 && f->phys_cursor_x < first_unused)
848 f->phys_cursor_x = -1;
849
850 XClearArea (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
851 CHAR_TO_PIXEL_COL (f, curs_x),
852 CHAR_TO_PIXEL_ROW (f, curs_y),
853 FONT_WIDTH (f->output_data.x->font) * (first_unused - curs_x),
854 f->output_data.x->line_height, False);
855 #if 0
856 redraw_previous_char (f, curs_x, curs_y, highlight);
857 #endif
858
859 UNBLOCK_INPUT;
860 }
861
862 static
863 XTclear_frame ()
864 {
865 int mask;
866 struct frame *f = updating_frame;
867
868 if (f == 0)
869 f = selected_frame;
870
871 f->phys_cursor_x = -1; /* Cursor not visible. */
872 curs_x = 0; /* Nominal cursor position is top left. */
873 curs_y = 0;
874
875 BLOCK_INPUT;
876
877 XClearWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
878
879 /* We have to clear the scroll bars, too. If we have changed
880 colors or something like that, then they should be notified. */
881 x_scroll_bar_clear (f);
882
883 XFlush (FRAME_X_DISPLAY (f));
884 UNBLOCK_INPUT;
885 }
886 \f
887 #if 0
888 /* This currently does not work because FRAME_CURRENT_GLYPHS doesn't
889 always contain the right glyphs to use.
890
891 It also needs to be changed to look at the details of the font and
892 see whether there is really overlap, and do nothing when there is
893 not. This can use font_char_overlap_left and font_char_overlap_right,
894 but just how to use them is not clear. */
895
896 /* Erase the character (if any) at the position just before X, Y in frame F,
897 then redraw it and the character before it.
898 This is necessary when we erase starting at X,
899 in case the character after X overlaps into the one before X.
900 Call this function with input blocked. */
901
902 static void
903 redraw_previous_char (f, x, y, highlight_flag)
904 FRAME_PTR f;
905 int x, y;
906 int highlight_flag;
907 {
908 /* Erase the character before the new ones, in case
909 what was here before overlaps it.
910 Reoutput that character, and the previous character
911 (in case the previous character overlaps it). */
912 if (x > 0)
913 {
914 int start_x = x - 2;
915 if (start_x < 0)
916 start_x = 0;
917 XClearArea (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
918 CHAR_TO_PIXEL_COL (f, x - 1),
919 CHAR_TO_PIXEL_ROW (f, y),
920 FONT_WIDTH (f->output_data.x->font),
921 f->output_data.x->line_height, False);
922
923 dumpglyphs (f, CHAR_TO_PIXEL_COL (f, start_x),
924 CHAR_TO_PIXEL_ROW (f, y),
925 &FRAME_CURRENT_GLYPHS (f)->glyphs[y][start_x],
926 x - start_x, highlight_flag, 1);
927 }
928 }
929
930 /* Erase the character (if any) at the position X, Y in frame F,
931 then redraw it and the character after it.
932 This is necessary when we erase endng at X,
933 in case the character after X overlaps into the one before X.
934 Call this function with input blocked. */
935
936 static void
937 redraw_following_char (f, x, y, highlight_flag)
938 FRAME_PTR f;
939 int x, y;
940 int highlight_flag;
941 {
942 int limit = FRAME_CURRENT_GLYPHS (f)->used[y];
943 /* Erase the character after the new ones, in case
944 what was here before overlaps it.
945 Reoutput that character, and the following character
946 (in case the following character overlaps it). */
947 if (x < limit
948 && FRAME_CURRENT_GLYPHS (f)->glyphs[y][x] != SPACEGLYPH)
949 {
950 int end_x = x + 2;
951 if (end_x > limit)
952 end_x = limit;
953 XClearArea (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
954 CHAR_TO_PIXEL_COL (f, x),
955 CHAR_TO_PIXEL_ROW (f, y),
956 FONT_WIDTH (f->output_data.x->font),
957 f->output_data.x->line_height, False);
958
959 dumpglyphs (f, CHAR_TO_PIXEL_COL (f, x),
960 CHAR_TO_PIXEL_ROW (f, y),
961 &FRAME_CURRENT_GLYPHS (f)->glyphs[y][x],
962 end_x - x, highlight_flag, 1);
963 }
964 }
965 #endif /* 0 */
966 \f
967 #if 0 /* Not in use yet */
968
969 /* Return 1 if character C in font F extends past its left edge. */
970
971 static int
972 font_char_overlap_left (font, c)
973 XFontStruct *font;
974 int c;
975 {
976 XCharStruct *s;
977
978 /* Find the bounding-box info for C. */
979 if (font->per_char == 0)
980 s = &font->max_bounds;
981 else
982 {
983 int rowlen = font->max_char_or_byte2 - font->min_char_or_byte2 + 1;
984 int row, within;
985
986 /* Decode char into row number (byte 1) and code within row (byte 2). */
987 row = c >> 8;
988 within = c & 0177;
989 if (!(within >= font->min_char_or_byte2
990 && within <= font->max_char_or_byte2
991 && row >= font->min_byte1
992 && row <= font->max_byte1))
993 {
994 /* If char is out of range, try the font's default char instead. */
995 c = font->default_char;
996 row = c >> (BITS_PER_INT - 8);
997 within = c & 0177;
998 }
999 if (!(within >= font->min_char_or_byte2
1000 && within <= font->max_char_or_byte2
1001 && row >= font->min_byte1
1002 && row <= font->max_byte1))
1003 /* Still out of range means this char does not overlap. */
1004 return 0;
1005 else
1006 /* We found the info for this char. */
1007 s = (font->per_char + (within - font->min_char_or_byte2)
1008 + row * rowlen);
1009 }
1010
1011 return (s && s->lbearing < 0);
1012 }
1013
1014 /* Return 1 if character C in font F extends past its right edge. */
1015
1016 static int
1017 font_char_overlap_right (font, c)
1018 XFontStruct *font;
1019 int c;
1020 {
1021 XCharStruct *s;
1022
1023 /* Find the bounding-box info for C. */
1024 if (font->per_char == 0)
1025 s = &font->max_bounds;
1026 else
1027 {
1028 int rowlen = font->max_char_or_byte2 - font->min_char_or_byte2 + 1;
1029 int row, within;
1030
1031 /* Decode char into row number (byte 1) and code within row (byte 2). */
1032 row = c >> 8;
1033 within = c & 0177;
1034 if (!(within >= font->min_char_or_byte2
1035 && within <= font->max_char_or_byte2
1036 && row >= font->min_byte1
1037 && row <= font->max_byte1))
1038 {
1039 /* If char is out of range, try the font's default char instead. */
1040 c = font->default_char;
1041 row = c >> (BITS_PER_INT - 8);
1042 within = c & 0177;
1043 }
1044 if (!(within >= font->min_char_or_byte2
1045 && within <= font->max_char_or_byte2
1046 && row >= font->min_byte1
1047 && row <= font->max_byte1))
1048 /* Still out of range means this char does not overlap. */
1049 return 0;
1050 else
1051 /* We found the info for this char. */
1052 s = (font->per_char + (within - font->min_char_or_byte2)
1053 + row * rowlen);
1054 }
1055
1056 return (s && s->rbearing >= s->width);
1057 }
1058 #endif /* 0 */
1059 \f
1060 /* Invert the middle quarter of the frame for .15 sec. */
1061
1062 /* We use the select system call to do the waiting, so we have to make sure
1063 it's available. If it isn't, we just won't do visual bells. */
1064 #if defined (HAVE_TIMEVAL) && defined (HAVE_SELECT)
1065
1066 /* Subtract the `struct timeval' values X and Y,
1067 storing the result in RESULT.
1068 Return 1 if the difference is negative, otherwise 0. */
1069
1070 static int
1071 timeval_subtract (result, x, y)
1072 struct timeval *result, x, y;
1073 {
1074 /* Perform the carry for the later subtraction by updating y.
1075 This is safer because on some systems
1076 the tv_sec member is unsigned. */
1077 if (x.tv_usec < y.tv_usec)
1078 {
1079 int nsec = (y.tv_usec - x.tv_usec) / 1000000 + 1;
1080 y.tv_usec -= 1000000 * nsec;
1081 y.tv_sec += nsec;
1082 }
1083 if (x.tv_usec - y.tv_usec > 1000000)
1084 {
1085 int nsec = (y.tv_usec - x.tv_usec) / 1000000;
1086 y.tv_usec += 1000000 * nsec;
1087 y.tv_sec -= nsec;
1088 }
1089
1090 /* Compute the time remaining to wait. tv_usec is certainly positive. */
1091 result->tv_sec = x.tv_sec - y.tv_sec;
1092 result->tv_usec = x.tv_usec - y.tv_usec;
1093
1094 /* Return indication of whether the result should be considered negative. */
1095 return x.tv_sec < y.tv_sec;
1096 }
1097
1098 XTflash (f)
1099 struct frame *f;
1100 {
1101 BLOCK_INPUT;
1102
1103 {
1104 GC gc;
1105
1106 /* Create a GC that will use the GXxor function to flip foreground pixels
1107 into background pixels. */
1108 {
1109 XGCValues values;
1110
1111 values.function = GXxor;
1112 values.foreground = (f->output_data.x->foreground_pixel
1113 ^ f->output_data.x->background_pixel);
1114
1115 gc = XCreateGC (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
1116 GCFunction | GCForeground, &values);
1117 }
1118
1119 {
1120 int width = PIXEL_WIDTH (f);
1121 int height = PIXEL_HEIGHT (f);
1122
1123 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
1124 width/4, height/4, width/2, height/2);
1125 XFlush (FRAME_X_DISPLAY (f));
1126
1127 {
1128 struct timeval wakeup, now;
1129
1130 EMACS_GET_TIME (wakeup);
1131
1132 /* Compute time to wait until, propagating carry from usecs. */
1133 wakeup.tv_usec += 150000;
1134 wakeup.tv_sec += (wakeup.tv_usec / 1000000);
1135 wakeup.tv_usec %= 1000000;
1136
1137 /* Keep waiting until past the time wakeup. */
1138 while (1)
1139 {
1140 struct timeval timeout;
1141
1142 EMACS_GET_TIME (timeout);
1143
1144 /* In effect, timeout = wakeup - timeout.
1145 Break if result would be negative. */
1146 if (timeval_subtract (&timeout, wakeup, timeout))
1147 break;
1148
1149 /* Try to wait that long--but we might wake up sooner. */
1150 select (0, NULL, NULL, NULL, &timeout);
1151 }
1152 }
1153
1154 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
1155 width/4, height/4, width/2, height/2);
1156 XFreeGC (FRAME_X_DISPLAY (f), gc);
1157 XFlush (FRAME_X_DISPLAY (f));
1158 }
1159 }
1160
1161 UNBLOCK_INPUT;
1162 }
1163
1164 #endif
1165
1166
1167 /* Make audible bell. */
1168
1169 #define XRINGBELL XBell (FRAME_X_DISPLAY (selected_frame), 0)
1170
1171 XTring_bell ()
1172 {
1173 if (FRAME_X_DISPLAY (selected_frame) == 0)
1174 return;
1175
1176 #if defined (HAVE_TIMEVAL) && defined (HAVE_SELECT)
1177 if (visible_bell)
1178 XTflash (selected_frame);
1179 else
1180 #endif
1181 {
1182 BLOCK_INPUT;
1183 XRINGBELL;
1184 XFlush (FRAME_X_DISPLAY (selected_frame));
1185 UNBLOCK_INPUT;
1186 }
1187 }
1188 \f
1189 /* Insert and delete character.
1190 These are not supposed to be used because we are supposed to turn
1191 off the feature of using them. */
1192
1193 static
1194 XTinsert_glyphs (start, len)
1195 register char *start;
1196 register int len;
1197 {
1198 abort ();
1199 }
1200
1201 static
1202 XTdelete_glyphs (n)
1203 register int n;
1204 {
1205 abort ();
1206 }
1207 \f
1208 /* Specify how many text lines, from the top of the window,
1209 should be affected by insert-lines and delete-lines operations.
1210 This, and those operations, are used only within an update
1211 that is bounded by calls to XTupdate_begin and XTupdate_end. */
1212
1213 static
1214 XTset_terminal_window (n)
1215 register int n;
1216 {
1217 if (updating_frame == 0)
1218 abort ();
1219
1220 if ((n <= 0) || (n > updating_frame->height))
1221 flexlines = updating_frame->height;
1222 else
1223 flexlines = n;
1224 }
1225 \f
1226 /* These variables need not be per frame
1227 because redisplay is done on a frame-by-frame basis
1228 and the line dance for one frame is finished before
1229 anything is done for anoter frame. */
1230
1231 /* Array of line numbers from cached insert/delete operations.
1232 line_dance[i] is the old position of the line that we want
1233 to move to line i, or -1 if we want a blank line there. */
1234 static int *line_dance;
1235
1236 /* Allocated length of that array. */
1237 static int line_dance_len;
1238
1239 /* Flag indicating whether we've done any work. */
1240 static int line_dance_in_progress;
1241
1242 /* Perform an insert-lines or delete-lines operation,
1243 inserting N lines or deleting -N lines at vertical position VPOS. */
1244 XTins_del_lines (vpos, n)
1245 int vpos, n;
1246 {
1247 register int fence, i;
1248
1249 if (vpos >= flexlines)
1250 return;
1251
1252 if (!line_dance_in_progress)
1253 {
1254 int ht = updating_frame->height;
1255 if (ht > line_dance_len)
1256 {
1257 line_dance = (int *)xrealloc (line_dance, ht * sizeof (int));
1258 line_dance_len = ht;
1259 }
1260 for (i = 0; i < ht; ++i) line_dance[i] = i;
1261 line_dance_in_progress = 1;
1262 }
1263 if (n >= 0)
1264 {
1265 if (n > flexlines - vpos)
1266 n = flexlines - vpos;
1267 fence = vpos + n;
1268 for (i = flexlines; --i >= fence;)
1269 line_dance[i] = line_dance[i-n];
1270 for (i = fence; --i >= vpos;)
1271 line_dance[i] = -1;
1272 }
1273 else
1274 {
1275 n = -n;
1276 if (n > flexlines - vpos)
1277 n = flexlines - vpos;
1278 fence = flexlines - n;
1279 for (i = vpos; i < fence; ++i)
1280 line_dance[i] = line_dance[i + n];
1281 for (i = fence; i < flexlines; ++i)
1282 line_dance[i] = -1;
1283 }
1284 }
1285
1286 /* Here's where we actually move the pixels around.
1287 Must be called with input blocked. */
1288 static void
1289 do_line_dance ()
1290 {
1291 register int i, j, distance;
1292 register struct frame *f;
1293 int ht;
1294 int intborder;
1295
1296 /* Must check this flag first. If it's not set, then not only is the
1297 array uninitialized, but we might not even have a frame. */
1298 if (!line_dance_in_progress)
1299 return;
1300
1301 f = updating_frame;
1302 if (f == 0)
1303 abort ();
1304
1305 ht = f->height;
1306 intborder = f->output_data.x->internal_border_width;
1307
1308 x_display_cursor (updating_frame, 0);
1309
1310 for (i = 0; i < ht; ++i)
1311 if (line_dance[i] != -1 && (distance = line_dance[i]-i) > 0)
1312 {
1313 for (j = i; (j < ht && line_dance[j] != -1
1314 && line_dance[j]-j == distance); ++j);
1315 /* Copy [i,j) upward from [i+distance,j+distance) */
1316 XCopyArea (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
1317 FRAME_X_WINDOW (f), f->output_data.x->normal_gc,
1318 intborder, CHAR_TO_PIXEL_ROW (f, i+distance),
1319 f->width * FONT_WIDTH (f->output_data.x->font),
1320 (j-i) * f->output_data.x->line_height,
1321 intborder, CHAR_TO_PIXEL_ROW (f, i));
1322 i = j-1;
1323 }
1324
1325 for (i = ht; --i >=0; )
1326 if (line_dance[i] != -1 && (distance = line_dance[i]-i) < 0)
1327 {
1328 for (j = i; (--j >= 0 && line_dance[j] != -1
1329 && line_dance[j]-j == distance););
1330 /* Copy (j,i] downward from (j+distance, i+distance] */
1331 XCopyArea (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
1332 FRAME_X_WINDOW (f), f->output_data.x->normal_gc,
1333 intborder, CHAR_TO_PIXEL_ROW (f, j+1+distance),
1334 f->width * FONT_WIDTH (f->output_data.x->font),
1335 (i-j) * f->output_data.x->line_height,
1336 intborder, CHAR_TO_PIXEL_ROW (f, j+1));
1337 i = j+1;
1338 }
1339
1340 for (i = 0; i < ht; ++i)
1341 if (line_dance[i] == -1)
1342 {
1343 for (j = i; j < ht && line_dance[j] == -1; ++j);
1344 /* Clear [i,j) */
1345 XClearArea (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
1346 intborder, CHAR_TO_PIXEL_ROW (f, i),
1347 f->width * FONT_WIDTH (f->output_data.x->font),
1348 (j-i) * f->output_data.x->line_height, False);
1349 i = j-1;
1350 }
1351 line_dance_in_progress = 0;
1352 }
1353 \f
1354 /* Support routines for exposure events. */
1355 static void clear_cursor ();
1356
1357 /* Output into a rectangle of an X-window (for frame F)
1358 the characters in f->phys_lines that overlap that rectangle.
1359 TOP and LEFT are the position of the upper left corner of the rectangle.
1360 ROWS and COLS are the size of the rectangle.
1361 Call this function with input blocked. */
1362
1363 static void
1364 dumprectangle (f, left, top, cols, rows)
1365 struct frame *f;
1366 register int left, top, cols, rows;
1367 {
1368 register struct frame_glyphs *active_frame = FRAME_CURRENT_GLYPHS (f);
1369 int cursor_cleared = 0;
1370 int bottom, right;
1371 register int y;
1372
1373 if (FRAME_GARBAGED_P (f))
1374 return;
1375
1376 /* Express rectangle as four edges, instead of position-and-size. */
1377 bottom = top + rows;
1378 right = left + cols;
1379
1380 /* Convert rectangle edges in pixels to edges in chars.
1381 Round down for left and top, up for right and bottom. */
1382 top = PIXEL_TO_CHAR_ROW (f, top);
1383 left = PIXEL_TO_CHAR_COL (f, left);
1384 bottom += (f->output_data.x->line_height - 1);
1385 right += (FONT_WIDTH (f->output_data.x->font) - 1);
1386 bottom = PIXEL_TO_CHAR_ROW (f, bottom);
1387 right = PIXEL_TO_CHAR_COL (f, right);
1388
1389 /* Clip the rectangle to what can be visible. */
1390 if (left < 0)
1391 left = 0;
1392 if (top < 0)
1393 top = 0;
1394 if (right > f->width)
1395 right = f->width;
1396 if (bottom > f->height)
1397 bottom = f->height;
1398
1399 /* Get size in chars of the rectangle. */
1400 cols = right - left;
1401 rows = bottom - top;
1402
1403 /* If rectangle has zero area, return. */
1404 if (rows <= 0) return;
1405 if (cols <= 0) return;
1406
1407 /* Turn off the cursor if it is in the rectangle.
1408 We will turn it back on afterward. */
1409 if ((f->phys_cursor_x >= left) && (f->phys_cursor_x < right)
1410 && (f->phys_cursor_y >= top) && (f->phys_cursor_y < bottom))
1411 {
1412 clear_cursor (f);
1413 cursor_cleared = 1;
1414 }
1415
1416 /* Display the text in the rectangle, one text line at a time. */
1417
1418 for (y = top; y < bottom; y++)
1419 {
1420 GLYPH *line = &active_frame->glyphs[y][left];
1421
1422 if (! active_frame->enable[y] || left > active_frame->used[y])
1423 continue;
1424
1425 dumpglyphs (f,
1426 CHAR_TO_PIXEL_COL (f, left),
1427 CHAR_TO_PIXEL_ROW (f, y),
1428 line, min (cols, active_frame->used[y] - left),
1429 active_frame->highlight[y], 0);
1430 }
1431
1432 /* Turn the cursor on if we turned it off. */
1433
1434 if (cursor_cleared)
1435 x_display_cursor (f, 1);
1436 }
1437 \f
1438 static void
1439 frame_highlight (f)
1440 struct frame *f;
1441 {
1442 /* We used to only do this if Vx_no_window_manager was non-nil, but
1443 the ICCCM (section 4.1.6) says that the window's border pixmap
1444 and border pixel are window attributes which are "private to the
1445 client", so we can always change it to whatever we want. */
1446 BLOCK_INPUT;
1447 XSetWindowBorder (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
1448 f->output_data.x->border_pixel);
1449 UNBLOCK_INPUT;
1450 x_update_cursor (f, 1);
1451 }
1452
1453 static void
1454 frame_unhighlight (f)
1455 struct frame *f;
1456 {
1457 /* We used to only do this if Vx_no_window_manager was non-nil, but
1458 the ICCCM (section 4.1.6) says that the window's border pixmap
1459 and border pixel are window attributes which are "private to the
1460 client", so we can always change it to whatever we want. */
1461 BLOCK_INPUT;
1462 XSetWindowBorderPixmap (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
1463 f->output_data.x->border_tile);
1464 UNBLOCK_INPUT;
1465 x_update_cursor (f, 1);
1466 }
1467
1468 static void XTframe_rehighlight ();
1469 static void x_frame_rehighlight ();
1470
1471 /* The focus has changed. Update the frames as necessary to reflect
1472 the new situation. Note that we can't change the selected frame
1473 here, because the Lisp code we are interrupting might become confused.
1474 Each event gets marked with the frame in which it occurred, so the
1475 Lisp code can tell when the switch took place by examining the events. */
1476
1477 static void
1478 x_new_focus_frame (dpyinfo, frame)
1479 struct x_display_info *dpyinfo;
1480 struct frame *frame;
1481 {
1482 struct frame *old_focus = dpyinfo->x_focus_frame;
1483 int events_enqueued = 0;
1484
1485 if (frame != dpyinfo->x_focus_frame)
1486 {
1487 /* Set this before calling other routines, so that they see
1488 the correct value of x_focus_frame. */
1489 dpyinfo->x_focus_frame = frame;
1490
1491 if (old_focus && old_focus->auto_lower)
1492 x_lower_frame (old_focus);
1493
1494 #if 0
1495 selected_frame = frame;
1496 XSETFRAME (XWINDOW (selected_frame->selected_window)->frame,
1497 selected_frame);
1498 Fselect_window (selected_frame->selected_window);
1499 choose_minibuf_frame ();
1500 #endif /* ! 0 */
1501
1502 if (dpyinfo->x_focus_frame && dpyinfo->x_focus_frame->auto_raise)
1503 pending_autoraise_frame = dpyinfo->x_focus_frame;
1504 else
1505 pending_autoraise_frame = 0;
1506 }
1507
1508 x_frame_rehighlight (dpyinfo);
1509 }
1510
1511 /* Handle an event saying the mouse has moved out of an Emacs frame. */
1512
1513 void
1514 x_mouse_leave (dpyinfo)
1515 struct x_display_info *dpyinfo;
1516 {
1517 x_new_focus_frame (dpyinfo, dpyinfo->x_focus_event_frame);
1518 }
1519
1520 /* The focus has changed, or we have redirected a frame's focus to
1521 another frame (this happens when a frame uses a surrogate
1522 minibuffer frame). Shift the highlight as appropriate.
1523
1524 The FRAME argument doesn't necessarily have anything to do with which
1525 frame is being highlighted or unhighlighted; we only use it to find
1526 the appropriate X display info. */
1527 static void
1528 XTframe_rehighlight (frame)
1529 struct frame *frame;
1530 {
1531 x_frame_rehighlight (FRAME_X_DISPLAY_INFO (frame));
1532 }
1533
1534 static void
1535 x_frame_rehighlight (dpyinfo)
1536 struct x_display_info *dpyinfo;
1537 {
1538 struct frame *old_highlight = dpyinfo->x_highlight_frame;
1539
1540 if (dpyinfo->x_focus_frame)
1541 {
1542 dpyinfo->x_highlight_frame
1543 = ((GC_FRAMEP (FRAME_FOCUS_FRAME (dpyinfo->x_focus_frame)))
1544 ? XFRAME (FRAME_FOCUS_FRAME (dpyinfo->x_focus_frame))
1545 : dpyinfo->x_focus_frame);
1546 if (! FRAME_LIVE_P (dpyinfo->x_highlight_frame))
1547 {
1548 FRAME_FOCUS_FRAME (dpyinfo->x_focus_frame) = Qnil;
1549 dpyinfo->x_highlight_frame = dpyinfo->x_focus_frame;
1550 }
1551 }
1552 else
1553 dpyinfo->x_highlight_frame = 0;
1554
1555 if (dpyinfo->x_highlight_frame != old_highlight)
1556 {
1557 if (old_highlight)
1558 frame_unhighlight (old_highlight);
1559 if (dpyinfo->x_highlight_frame)
1560 frame_highlight (dpyinfo->x_highlight_frame);
1561 }
1562 }
1563 \f
1564 /* Keyboard processing - modifier keys, vendor-specific keysyms, etc. */
1565
1566 /* Initialize mode_switch_bit and modifier_meaning. */
1567 static void
1568 x_find_modifier_meanings (dpyinfo)
1569 struct x_display_info *dpyinfo;
1570 {
1571 int min_code, max_code;
1572 KeySym *syms;
1573 int syms_per_code;
1574 XModifierKeymap *mods;
1575
1576 dpyinfo->meta_mod_mask = 0;
1577 dpyinfo->shift_lock_mask = 0;
1578 dpyinfo->alt_mod_mask = 0;
1579 dpyinfo->super_mod_mask = 0;
1580 dpyinfo->hyper_mod_mask = 0;
1581
1582 #ifdef HAVE_X11R4
1583 XDisplayKeycodes (dpyinfo->display, &min_code, &max_code);
1584 #else
1585 min_code = dpyinfo->display->min_keycode;
1586 max_code = dpyinfo->display->max_keycode;
1587 #endif
1588
1589 syms = XGetKeyboardMapping (dpyinfo->display,
1590 min_code, max_code - min_code + 1,
1591 &syms_per_code);
1592 mods = XGetModifierMapping (dpyinfo->display);
1593
1594 /* Scan the modifier table to see which modifier bits the Meta and
1595 Alt keysyms are on. */
1596 {
1597 int row, col; /* The row and column in the modifier table. */
1598
1599 for (row = 3; row < 8; row++)
1600 for (col = 0; col < mods->max_keypermod; col++)
1601 {
1602 KeyCode code
1603 = mods->modifiermap[(row * mods->max_keypermod) + col];
1604
1605 /* Zeroes are used for filler. Skip them. */
1606 if (code == 0)
1607 continue;
1608
1609 /* Are any of this keycode's keysyms a meta key? */
1610 {
1611 int code_col;
1612
1613 for (code_col = 0; code_col < syms_per_code; code_col++)
1614 {
1615 int sym = syms[((code - min_code) * syms_per_code) + code_col];
1616
1617 switch (sym)
1618 {
1619 case XK_Meta_L:
1620 case XK_Meta_R:
1621 dpyinfo->meta_mod_mask |= (1 << row);
1622 break;
1623
1624 case XK_Alt_L:
1625 case XK_Alt_R:
1626 dpyinfo->alt_mod_mask |= (1 << row);
1627 break;
1628
1629 case XK_Hyper_L:
1630 case XK_Hyper_R:
1631 dpyinfo->hyper_mod_mask |= (1 << row);
1632 break;
1633
1634 case XK_Super_L:
1635 case XK_Super_R:
1636 dpyinfo->super_mod_mask |= (1 << row);
1637 break;
1638
1639 case XK_Shift_Lock:
1640 /* Ignore this if it's not on the lock modifier. */
1641 if ((1 << row) == LockMask)
1642 dpyinfo->shift_lock_mask = LockMask;
1643 break;
1644 }
1645 }
1646 }
1647 }
1648 }
1649
1650 /* If we couldn't find any meta keys, accept any alt keys as meta keys. */
1651 if (! dpyinfo->meta_mod_mask)
1652 {
1653 dpyinfo->meta_mod_mask = dpyinfo->alt_mod_mask;
1654 dpyinfo->alt_mod_mask = 0;
1655 }
1656
1657 /* If some keys are both alt and meta,
1658 make them just meta, not alt. */
1659 if (dpyinfo->alt_mod_mask & dpyinfo->meta_mod_mask)
1660 {
1661 dpyinfo->alt_mod_mask &= ~dpyinfo->meta_mod_mask;
1662 }
1663
1664 XFree ((char *) syms);
1665 XFreeModifiermap (mods);
1666 }
1667
1668 /* Convert between the modifier bits X uses and the modifier bits
1669 Emacs uses. */
1670 static unsigned int
1671 x_x_to_emacs_modifiers (dpyinfo, state)
1672 struct x_display_info *dpyinfo;
1673 unsigned int state;
1674 {
1675 return ( ((state & (ShiftMask | dpyinfo->shift_lock_mask)) ? shift_modifier : 0)
1676 | ((state & ControlMask) ? ctrl_modifier : 0)
1677 | ((state & dpyinfo->meta_mod_mask) ? meta_modifier : 0)
1678 | ((state & dpyinfo->alt_mod_mask) ? alt_modifier : 0)
1679 | ((state & dpyinfo->super_mod_mask) ? super_modifier : 0)
1680 | ((state & dpyinfo->hyper_mod_mask) ? hyper_modifier : 0));
1681 }
1682
1683 static unsigned int
1684 x_emacs_to_x_modifiers (dpyinfo, state)
1685 struct x_display_info *dpyinfo;
1686 unsigned int state;
1687 {
1688 return ( ((state & alt_modifier) ? dpyinfo->alt_mod_mask : 0)
1689 | ((state & super_modifier) ? dpyinfo->super_mod_mask : 0)
1690 | ((state & hyper_modifier) ? dpyinfo->hyper_mod_mask : 0)
1691 | ((state & shift_modifier) ? ShiftMask : 0)
1692 | ((state & ctrl_modifier) ? ControlMask : 0)
1693 | ((state & meta_modifier) ? dpyinfo->meta_mod_mask : 0));
1694 }
1695
1696 /* Convert a keysym to its name. */
1697
1698 char *
1699 x_get_keysym_name (keysym)
1700 KeySym keysym;
1701 {
1702 char *value;
1703
1704 BLOCK_INPUT;
1705 value = XKeysymToString (keysym);
1706 UNBLOCK_INPUT;
1707
1708 return value;
1709 }
1710 \f
1711 /* Mouse clicks and mouse movement. Rah. */
1712
1713 /* Given a pixel position (PIX_X, PIX_Y) on the frame F, return
1714 glyph co-ordinates in (*X, *Y). Set *BOUNDS to the rectangle
1715 that the glyph at X, Y occupies, if BOUNDS != 0.
1716 If NOCLIP is nonzero, do not force the value into range. */
1717
1718 void
1719 pixel_to_glyph_coords (f, pix_x, pix_y, x, y, bounds, noclip)
1720 FRAME_PTR f;
1721 register int pix_x, pix_y;
1722 register int *x, *y;
1723 XRectangle *bounds;
1724 int noclip;
1725 {
1726 /* Arrange for the division in PIXEL_TO_CHAR_COL etc. to round down
1727 even for negative values. */
1728 if (pix_x < 0)
1729 pix_x -= FONT_WIDTH ((f)->output_data.x->font) - 1;
1730 if (pix_y < 0)
1731 pix_y -= (f)->output_data.x->line_height - 1;
1732
1733 pix_x = PIXEL_TO_CHAR_COL (f, pix_x);
1734 pix_y = PIXEL_TO_CHAR_ROW (f, pix_y);
1735
1736 if (bounds)
1737 {
1738 bounds->width = FONT_WIDTH (f->output_data.x->font);
1739 bounds->height = f->output_data.x->line_height;
1740 bounds->x = CHAR_TO_PIXEL_COL (f, pix_x);
1741 bounds->y = CHAR_TO_PIXEL_ROW (f, pix_y);
1742 }
1743
1744 if (!noclip)
1745 {
1746 if (pix_x < 0)
1747 pix_x = 0;
1748 else if (pix_x > f->width)
1749 pix_x = f->width;
1750
1751 if (pix_y < 0)
1752 pix_y = 0;
1753 else if (pix_y > f->height)
1754 pix_y = f->height;
1755 }
1756
1757 *x = pix_x;
1758 *y = pix_y;
1759 }
1760
1761 void
1762 glyph_to_pixel_coords (f, x, y, pix_x, pix_y)
1763 FRAME_PTR f;
1764 register int x, y;
1765 register int *pix_x, *pix_y;
1766 {
1767 *pix_x = CHAR_TO_PIXEL_COL (f, x);
1768 *pix_y = CHAR_TO_PIXEL_ROW (f, y);
1769 }
1770
1771 /* Prepare a mouse-event in *RESULT for placement in the input queue.
1772
1773 If the event is a button press, then note that we have grabbed
1774 the mouse. */
1775
1776 static Lisp_Object
1777 construct_mouse_click (result, event, f)
1778 struct input_event *result;
1779 XButtonEvent *event;
1780 struct frame *f;
1781 {
1782 /* Make the event type no_event; we'll change that when we decide
1783 otherwise. */
1784 result->kind = mouse_click;
1785 result->code = event->button - Button1;
1786 result->timestamp = event->time;
1787 result->modifiers = (x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO (f),
1788 event->state)
1789 | (event->type == ButtonRelease
1790 ? up_modifier
1791 : down_modifier));
1792
1793 {
1794 int row, column;
1795
1796 #if 0
1797 pixel_to_glyph_coords (f, event->x, event->y, &column, &row, NULL, 0);
1798 XSETFASTINT (result->x, column);
1799 XSETFASTINT (result->y, row);
1800 #endif
1801 XSETINT (result->x, event->x);
1802 XSETINT (result->y, event->y);
1803 XSETFRAME (result->frame_or_window, f);
1804 }
1805 }
1806
1807 /* Prepare a menu-event in *RESULT for placement in the input queue. */
1808
1809 static Lisp_Object
1810 construct_menu_click (result, event, f)
1811 struct input_event *result;
1812 XButtonEvent *event;
1813 struct frame *f;
1814 {
1815 /* Make the event type no_event; we'll change that when we decide
1816 otherwise. */
1817 result->kind = mouse_click;
1818 XSETINT (result->code, event->button - Button1);
1819 result->timestamp = event->time;
1820 result->modifiers = (x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO (f),
1821 event->state)
1822 | (event->type == ButtonRelease
1823 ? up_modifier
1824 : down_modifier));
1825
1826 XSETINT (result->x, event->x);
1827 XSETINT (result->y, -1);
1828 XSETFRAME (result->frame_or_window, f);
1829 }
1830 \f
1831 /* Function to report a mouse movement to the mainstream Emacs code.
1832 The input handler calls this.
1833
1834 We have received a mouse movement event, which is given in *event.
1835 If the mouse is over a different glyph than it was last time, tell
1836 the mainstream emacs code by setting mouse_moved. If not, ask for
1837 another motion event, so we can check again the next time it moves. */
1838
1839 static void
1840 note_mouse_movement (frame, event)
1841 FRAME_PTR frame;
1842 XMotionEvent *event;
1843 {
1844 last_mouse_movement_time = event->time;
1845
1846 if (event->window != FRAME_X_WINDOW (frame))
1847 {
1848 frame->mouse_moved = 1;
1849 last_mouse_scroll_bar = Qnil;
1850
1851 note_mouse_highlight (frame, -1, -1);
1852 }
1853
1854 /* Has the mouse moved off the glyph it was on at the last sighting? */
1855 else if (event->x < last_mouse_glyph.x
1856 || event->x >= last_mouse_glyph.x + last_mouse_glyph.width
1857 || event->y < last_mouse_glyph.y
1858 || event->y >= last_mouse_glyph.y + last_mouse_glyph.height)
1859 {
1860 frame->mouse_moved = 1;
1861 last_mouse_scroll_bar = Qnil;
1862
1863 note_mouse_highlight (frame, event->x, event->y);
1864 }
1865 }
1866
1867 /* This is used for debugging, to turn off note_mouse_highlight. */
1868 static int disable_mouse_highlight;
1869
1870 /* Take proper action when the mouse has moved to position X, Y on frame F
1871 as regards highlighting characters that have mouse-face properties.
1872 Also dehighlighting chars where the mouse was before.
1873 X and Y can be negative or out of range. */
1874
1875 static void
1876 note_mouse_highlight (f, x, y)
1877 FRAME_PTR f;
1878 int x, y;
1879 {
1880 int row, column, portion;
1881 XRectangle new_glyph;
1882 Lisp_Object window;
1883 struct window *w;
1884
1885 if (disable_mouse_highlight)
1886 return;
1887
1888 FRAME_X_DISPLAY_INFO (f)->mouse_face_mouse_x = x;
1889 FRAME_X_DISPLAY_INFO (f)->mouse_face_mouse_y = y;
1890 FRAME_X_DISPLAY_INFO (f)->mouse_face_mouse_frame = f;
1891
1892 if (FRAME_X_DISPLAY_INFO (f)->mouse_face_defer)
1893 return;
1894
1895 if (gc_in_progress)
1896 {
1897 FRAME_X_DISPLAY_INFO (f)->mouse_face_deferred_gc = 1;
1898 return;
1899 }
1900
1901 /* Find out which glyph the mouse is on. */
1902 pixel_to_glyph_coords (f, x, y, &column, &row,
1903 &new_glyph, FRAME_X_DISPLAY_INFO (f)->grabbed);
1904
1905 /* Which window is that in? */
1906 window = window_from_coordinates (f, column, row, &portion);
1907 w = XWINDOW (window);
1908
1909 /* If we were displaying active text in another window, clear that. */
1910 if (! EQ (window, FRAME_X_DISPLAY_INFO (f)->mouse_face_window))
1911 clear_mouse_face (FRAME_X_DISPLAY_INFO (f));
1912
1913 /* Are we in a window whose display is up to date?
1914 And verify the buffer's text has not changed. */
1915 if (WINDOWP (window) && portion == 0 && row >= 0 && column >= 0
1916 && row < FRAME_HEIGHT (f) && column < FRAME_WIDTH (f)
1917 && EQ (w->window_end_valid, w->buffer)
1918 && w->last_modified == BUF_MODIFF (XBUFFER (w->buffer)))
1919 {
1920 int *ptr = FRAME_CURRENT_GLYPHS (f)->charstarts[row];
1921 int i, pos;
1922
1923 /* Find which buffer position the mouse corresponds to. */
1924 for (i = column; i >= 0; i--)
1925 if (ptr[i] > 0)
1926 break;
1927 pos = ptr[i];
1928 /* Is it outside the displayed active region (if any)? */
1929 if (pos <= 0)
1930 clear_mouse_face (FRAME_X_DISPLAY_INFO (f));
1931 else if (! (EQ (window, FRAME_X_DISPLAY_INFO (f)->mouse_face_window)
1932 && row >= FRAME_X_DISPLAY_INFO (f)->mouse_face_beg_row
1933 && row <= FRAME_X_DISPLAY_INFO (f)->mouse_face_end_row
1934 && (row > FRAME_X_DISPLAY_INFO (f)->mouse_face_beg_row
1935 || column >= FRAME_X_DISPLAY_INFO (f)->mouse_face_beg_col)
1936 && (row < FRAME_X_DISPLAY_INFO (f)->mouse_face_end_row
1937 || column < FRAME_X_DISPLAY_INFO (f)->mouse_face_end_col
1938 || FRAME_X_DISPLAY_INFO (f)->mouse_face_past_end)))
1939 {
1940 Lisp_Object mouse_face, overlay, position;
1941 Lisp_Object *overlay_vec;
1942 int len, noverlays, ignor1;
1943 struct buffer *obuf;
1944 int obegv, ozv;
1945
1946 /* If we get an out-of-range value, return now; avoid an error. */
1947 if (pos > BUF_Z (XBUFFER (w->buffer)))
1948 return;
1949
1950 /* Make the window's buffer temporarily current for
1951 overlays_at and compute_char_face. */
1952 obuf = current_buffer;
1953 current_buffer = XBUFFER (w->buffer);
1954 obegv = BEGV;
1955 ozv = ZV;
1956 BEGV = BEG;
1957 ZV = Z;
1958
1959 /* Yes. Clear the display of the old active region, if any. */
1960 clear_mouse_face (FRAME_X_DISPLAY_INFO (f));
1961
1962 /* Is this char mouse-active? */
1963 XSETINT (position, pos);
1964
1965 len = 10;
1966 overlay_vec = (Lisp_Object *) xmalloc (len * sizeof (Lisp_Object));
1967
1968 /* Put all the overlays we want in a vector in overlay_vec.
1969 Store the length in len. */
1970 noverlays = overlays_at (XINT (pos), 1, &overlay_vec, &len,
1971 NULL, NULL);
1972 noverlays = sort_overlays (overlay_vec, noverlays, w);
1973
1974 /* Find the highest priority overlay that has a mouse-face prop. */
1975 overlay = Qnil;
1976 for (i = 0; i < noverlays; i++)
1977 {
1978 mouse_face = Foverlay_get (overlay_vec[i], Qmouse_face);
1979 if (!NILP (mouse_face))
1980 {
1981 overlay = overlay_vec[i];
1982 break;
1983 }
1984 }
1985 free (overlay_vec);
1986 /* If no overlay applies, get a text property. */
1987 if (NILP (overlay))
1988 mouse_face = Fget_text_property (position, Qmouse_face, w->buffer);
1989
1990 /* Handle the overlay case. */
1991 if (! NILP (overlay))
1992 {
1993 /* Find the range of text around this char that
1994 should be active. */
1995 Lisp_Object before, after;
1996 int ignore;
1997
1998 before = Foverlay_start (overlay);
1999 after = Foverlay_end (overlay);
2000 /* Record this as the current active region. */
2001 fast_find_position (window, before,
2002 &FRAME_X_DISPLAY_INFO (f)->mouse_face_beg_col,
2003 &FRAME_X_DISPLAY_INFO (f)->mouse_face_beg_row);
2004 FRAME_X_DISPLAY_INFO (f)->mouse_face_past_end
2005 = !fast_find_position (window, after,
2006 &FRAME_X_DISPLAY_INFO (f)->mouse_face_end_col,
2007 &FRAME_X_DISPLAY_INFO (f)->mouse_face_end_row);
2008 FRAME_X_DISPLAY_INFO (f)->mouse_face_window = window;
2009 FRAME_X_DISPLAY_INFO (f)->mouse_face_face_id
2010 = compute_char_face (f, w, pos, 0, 0,
2011 &ignore, pos + 1, 1);
2012
2013 /* Display it as active. */
2014 show_mouse_face (FRAME_X_DISPLAY_INFO (f), 1);
2015 }
2016 /* Handle the text property case. */
2017 else if (! NILP (mouse_face))
2018 {
2019 /* Find the range of text around this char that
2020 should be active. */
2021 Lisp_Object before, after, beginning, end;
2022 int ignore;
2023
2024 beginning = Fmarker_position (w->start);
2025 XSETINT (end, (BUF_Z (XBUFFER (w->buffer))
2026 - XFASTINT (w->window_end_pos)));
2027 before
2028 = Fprevious_single_property_change (make_number (pos + 1),
2029 Qmouse_face,
2030 w->buffer, beginning);
2031 after
2032 = Fnext_single_property_change (position, Qmouse_face,
2033 w->buffer, end);
2034 /* Record this as the current active region. */
2035 fast_find_position (window, before,
2036 &FRAME_X_DISPLAY_INFO (f)->mouse_face_beg_col,
2037 &FRAME_X_DISPLAY_INFO (f)->mouse_face_beg_row);
2038 FRAME_X_DISPLAY_INFO (f)->mouse_face_past_end
2039 = !fast_find_position (window, after,
2040 &FRAME_X_DISPLAY_INFO (f)->mouse_face_end_col,
2041 &FRAME_X_DISPLAY_INFO (f)->mouse_face_end_row);
2042 FRAME_X_DISPLAY_INFO (f)->mouse_face_window = window;
2043 FRAME_X_DISPLAY_INFO (f)->mouse_face_face_id
2044 = compute_char_face (f, w, pos, 0, 0,
2045 &ignore, pos + 1, 1);
2046
2047 /* Display it as active. */
2048 show_mouse_face (FRAME_X_DISPLAY_INFO (f), 1);
2049 }
2050 BEGV = obegv;
2051 ZV = ozv;
2052 current_buffer = obuf;
2053 }
2054 }
2055 }
2056 \f
2057 /* Find the row and column of position POS in window WINDOW.
2058 Store them in *COLUMNP and *ROWP.
2059 This assumes display in WINDOW is up to date.
2060 If POS is above start of WINDOW, return coords
2061 of start of first screen line.
2062 If POS is after end of WINDOW, return coords of end of last screen line.
2063
2064 Value is 1 if POS is in range, 0 if it was off screen. */
2065
2066 static int
2067 fast_find_position (window, pos, columnp, rowp)
2068 Lisp_Object window;
2069 int pos;
2070 int *columnp, *rowp;
2071 {
2072 struct window *w = XWINDOW (window);
2073 FRAME_PTR f = XFRAME (WINDOW_FRAME (w));
2074 int i;
2075 int row = 0;
2076 int left = w->left;
2077 int top = w->top;
2078 int height = XFASTINT (w->height) - ! MINI_WINDOW_P (w);
2079 int width = window_internal_width (w);
2080 int *charstarts;
2081 int lastcol;
2082 int maybe_next_line = 0;
2083
2084 /* Find the right row. */
2085 for (i = 0;
2086 i < height;
2087 i++)
2088 {
2089 int linestart = FRAME_CURRENT_GLYPHS (f)->charstarts[top + i][left];
2090 if (linestart > pos)
2091 break;
2092 /* If the position sought is the end of the buffer,
2093 don't include the blank lines at the bottom of the window. */
2094 if (linestart == pos && pos == BUF_ZV (XBUFFER (w->buffer)))
2095 {
2096 maybe_next_line = 1;
2097 break;
2098 }
2099 if (linestart > 0)
2100 row = i;
2101 }
2102
2103 /* Find the right column with in it. */
2104 charstarts = FRAME_CURRENT_GLYPHS (f)->charstarts[top + row];
2105 lastcol = left;
2106 for (i = 0; i < width; i++)
2107 {
2108 if (charstarts[left + i] == pos)
2109 {
2110 *rowp = row + top;
2111 *columnp = i + left;
2112 return 1;
2113 }
2114 else if (charstarts[left + i] > pos)
2115 break;
2116 else if (charstarts[left + i] > 0)
2117 lastcol = left + i;
2118 }
2119
2120 /* If we're looking for the end of the buffer,
2121 and we didn't find it in the line we scanned,
2122 use the start of the following line. */
2123 if (maybe_next_line)
2124 {
2125 row++;
2126 i = 0;
2127 }
2128
2129 *rowp = row + top;
2130 *columnp = lastcol;
2131 return 0;
2132 }
2133
2134 /* Display the active region described by mouse_face_*
2135 in its mouse-face if HL > 0, in its normal face if HL = 0. */
2136
2137 static void
2138 show_mouse_face (dpyinfo, hl)
2139 struct x_display_info *dpyinfo;
2140 int hl;
2141 {
2142 struct window *w = XWINDOW (dpyinfo->mouse_face_window);
2143 int width = window_internal_width (w);
2144 FRAME_PTR f = XFRAME (WINDOW_FRAME (w));
2145 int i;
2146 int cursor_off = 0;
2147 int old_curs_x = curs_x;
2148 int old_curs_y = curs_y;
2149
2150 /* Set these variables temporarily
2151 so that if we have to turn the cursor off and on again
2152 we will put it back at the same place. */
2153 curs_x = f->phys_cursor_x;
2154 curs_y = f->phys_cursor_y;
2155
2156 for (i = FRAME_X_DISPLAY_INFO (f)->mouse_face_beg_row;
2157 i <= FRAME_X_DISPLAY_INFO (f)->mouse_face_end_row; i++)
2158 {
2159 int column = (i == FRAME_X_DISPLAY_INFO (f)->mouse_face_beg_row
2160 ? FRAME_X_DISPLAY_INFO (f)->mouse_face_beg_col
2161 : w->left);
2162 int endcolumn = (i == FRAME_X_DISPLAY_INFO (f)->mouse_face_end_row
2163 ? FRAME_X_DISPLAY_INFO (f)->mouse_face_end_col
2164 : w->left + width);
2165 endcolumn = min (endcolumn, FRAME_CURRENT_GLYPHS (f)->used[i]);
2166
2167 /* If the cursor's in the text we are about to rewrite,
2168 turn the cursor off. */
2169 if (i == curs_y
2170 && curs_x >= column - 1
2171 && curs_x <= endcolumn)
2172 {
2173 x_display_cursor (f, 0);
2174 cursor_off = 1;
2175 }
2176
2177 dumpglyphs (f,
2178 CHAR_TO_PIXEL_COL (f, column),
2179 CHAR_TO_PIXEL_ROW (f, i),
2180 FRAME_CURRENT_GLYPHS (f)->glyphs[i] + column,
2181 endcolumn - column,
2182 /* Highlight with mouse face if hl > 0. */
2183 hl > 0 ? 3 : 0, 0);
2184 }
2185
2186 /* If we turned the cursor off, turn it back on. */
2187 if (cursor_off)
2188 x_display_cursor (f, 1);
2189
2190 curs_x = old_curs_x;
2191 curs_y = old_curs_y;
2192
2193 /* Change the mouse cursor according to the value of HL. */
2194 if (hl > 0)
2195 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2196 f->output_data.x->cross_cursor);
2197 else
2198 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2199 f->output_data.x->text_cursor);
2200 }
2201
2202 /* Clear out the mouse-highlighted active region.
2203 Redraw it unhighlighted first. */
2204
2205 static void
2206 clear_mouse_face (dpyinfo)
2207 struct x_display_info *dpyinfo;
2208 {
2209 if (! NILP (dpyinfo->mouse_face_window))
2210 show_mouse_face (dpyinfo, 0);
2211
2212 dpyinfo->mouse_face_beg_row = dpyinfo->mouse_face_beg_col = -1;
2213 dpyinfo->mouse_face_end_row = dpyinfo->mouse_face_end_col = -1;
2214 dpyinfo->mouse_face_window = Qnil;
2215 }
2216 \f
2217 static struct scroll_bar *x_window_to_scroll_bar ();
2218 static void x_scroll_bar_report_motion ();
2219
2220 /* Return the current position of the mouse.
2221 *fp should be a frame which indicates which display to ask about.
2222
2223 If the mouse movement started in a scroll bar, set *fp, *bar_window,
2224 and *part to the frame, window, and scroll bar part that the mouse
2225 is over. Set *x and *y to the portion and whole of the mouse's
2226 position on the scroll bar.
2227
2228 If the mouse movement started elsewhere, set *fp to the frame the
2229 mouse is on, *bar_window to nil, and *x and *y to the character cell
2230 the mouse is over.
2231
2232 Set *time to the server timestamp for the time at which the mouse
2233 was at this position.
2234
2235 Don't store anything if we don't have a valid set of values to report.
2236
2237 This clears the mouse_moved flag, so we can wait for the next mouse
2238 movement. */
2239
2240 static void
2241 XTmouse_position (fp, insist, bar_window, part, x, y, time)
2242 FRAME_PTR *fp;
2243 int insist;
2244 Lisp_Object *bar_window;
2245 enum scroll_bar_part *part;
2246 Lisp_Object *x, *y;
2247 unsigned long *time;
2248 {
2249 FRAME_PTR f1;
2250
2251 BLOCK_INPUT;
2252
2253 if (! NILP (last_mouse_scroll_bar))
2254 x_scroll_bar_report_motion (fp, bar_window, part, x, y, time);
2255 else
2256 {
2257 Window root;
2258 int root_x, root_y;
2259
2260 Window dummy_window;
2261 int dummy;
2262
2263 Lisp_Object frame, tail;
2264
2265 /* Clear the mouse-moved flag for every frame on this display. */
2266 FOR_EACH_FRAME (tail, frame)
2267 if (FRAME_X_DISPLAY (XFRAME (frame)) == FRAME_X_DISPLAY (*fp))
2268 XFRAME (frame)->mouse_moved = 0;
2269
2270 last_mouse_scroll_bar = Qnil;
2271
2272 /* Figure out which root window we're on. */
2273 XQueryPointer (FRAME_X_DISPLAY (*fp),
2274 DefaultRootWindow (FRAME_X_DISPLAY (*fp)),
2275
2276 /* The root window which contains the pointer. */
2277 &root,
2278
2279 /* Trash which we can't trust if the pointer is on
2280 a different screen. */
2281 &dummy_window,
2282
2283 /* The position on that root window. */
2284 &root_x, &root_y,
2285
2286 /* More trash we can't trust. */
2287 &dummy, &dummy,
2288
2289 /* Modifier keys and pointer buttons, about which
2290 we don't care. */
2291 (unsigned int *) &dummy);
2292
2293 /* Now we have a position on the root; find the innermost window
2294 containing the pointer. */
2295 {
2296 Window win, child;
2297 int win_x, win_y;
2298 int parent_x, parent_y;
2299
2300 win = root;
2301
2302 /* XTranslateCoordinates can get errors if the window
2303 structure is changing at the same time this function
2304 is running. So at least we must not crash from them. */
2305
2306 x_catch_errors (FRAME_X_DISPLAY (*fp));
2307
2308 if (FRAME_X_DISPLAY_INFO (*fp)->grabbed && last_mouse_frame
2309 && FRAME_LIVE_P (last_mouse_frame))
2310 {
2311 /* If mouse was grabbed on a frame, give coords for that frame
2312 even if the mouse is now outside it. */
2313 XTranslateCoordinates (FRAME_X_DISPLAY (*fp),
2314
2315 /* From-window, to-window. */
2316 root, FRAME_X_WINDOW (last_mouse_frame),
2317
2318 /* From-position, to-position. */
2319 root_x, root_y, &win_x, &win_y,
2320
2321 /* Child of win. */
2322 &child);
2323 f1 = last_mouse_frame;
2324 }
2325 else
2326 {
2327 while (1)
2328 {
2329 XTranslateCoordinates (FRAME_X_DISPLAY (*fp),
2330
2331 /* From-window, to-window. */
2332 root, win,
2333
2334 /* From-position, to-position. */
2335 root_x, root_y, &win_x, &win_y,
2336
2337 /* Child of win. */
2338 &child);
2339
2340 if (child == None || child == win)
2341 break;
2342
2343 win = child;
2344 parent_x = win_x;
2345 parent_y = win_y;
2346 }
2347
2348 /* Now we know that:
2349 win is the innermost window containing the pointer
2350 (XTC says it has no child containing the pointer),
2351 win_x and win_y are the pointer's position in it
2352 (XTC did this the last time through), and
2353 parent_x and parent_y are the pointer's position in win's parent.
2354 (They are what win_x and win_y were when win was child.
2355 If win is the root window, it has no parent, and
2356 parent_{x,y} are invalid, but that's okay, because we'll
2357 never use them in that case.) */
2358
2359 /* Is win one of our frames? */
2360 f1 = x_any_window_to_frame (FRAME_X_DISPLAY_INFO (*fp), win);
2361 }
2362
2363 if (x_had_errors_p (FRAME_X_DISPLAY (*fp)))
2364 f1 = 0;
2365
2366 x_uncatch_errors (FRAME_X_DISPLAY (*fp));
2367
2368 /* If not, is it one of our scroll bars? */
2369 if (! f1)
2370 {
2371 struct scroll_bar *bar = x_window_to_scroll_bar (win);
2372
2373 if (bar)
2374 {
2375 f1 = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
2376 win_x = parent_x;
2377 win_y = parent_y;
2378 }
2379 }
2380
2381 if (f1 == 0 && insist)
2382 f1 = selected_frame;
2383
2384 if (f1)
2385 {
2386 int ignore1, ignore2;
2387
2388 /* Ok, we found a frame. Store all the values. */
2389
2390 pixel_to_glyph_coords (f1, win_x, win_y, &ignore1, &ignore2,
2391 &last_mouse_glyph,
2392 FRAME_X_DISPLAY_INFO (f1)->grabbed
2393 || insist);
2394
2395 *bar_window = Qnil;
2396 *part = 0;
2397 *fp = f1;
2398 XSETINT (*x, win_x);
2399 XSETINT (*y, win_y);
2400 *time = last_mouse_movement_time;
2401 }
2402 }
2403 }
2404
2405 UNBLOCK_INPUT;
2406 }
2407 \f
2408 /* Scroll bar support. */
2409
2410 /* Given an X window ID, find the struct scroll_bar which manages it.
2411 This can be called in GC, so we have to make sure to strip off mark
2412 bits. */
2413 static struct scroll_bar *
2414 x_window_to_scroll_bar (window_id)
2415 Window window_id;
2416 {
2417 Lisp_Object tail, frame;
2418
2419 for (tail = Vframe_list;
2420 XGCTYPE (tail) == Lisp_Cons;
2421 tail = XCONS (tail)->cdr)
2422 {
2423 Lisp_Object frame, bar, condemned;
2424
2425 frame = XCONS (tail)->car;
2426 /* All elements of Vframe_list should be frames. */
2427 if (! GC_FRAMEP (frame))
2428 abort ();
2429
2430 /* Scan this frame's scroll bar list for a scroll bar with the
2431 right window ID. */
2432 condemned = FRAME_CONDEMNED_SCROLL_BARS (XFRAME (frame));
2433 for (bar = FRAME_SCROLL_BARS (XFRAME (frame));
2434 /* This trick allows us to search both the ordinary and
2435 condemned scroll bar lists with one loop. */
2436 ! GC_NILP (bar) || (bar = condemned,
2437 condemned = Qnil,
2438 ! GC_NILP (bar));
2439 bar = XSCROLL_BAR (bar)->next)
2440 if (SCROLL_BAR_X_WINDOW (XSCROLL_BAR (bar)) == window_id)
2441 return XSCROLL_BAR (bar);
2442 }
2443
2444 return 0;
2445 }
2446
2447 /* Open a new X window to serve as a scroll bar, and return the
2448 scroll bar vector for it. */
2449 static struct scroll_bar *
2450 x_scroll_bar_create (window, top, left, width, height)
2451 struct window *window;
2452 int top, left, width, height;
2453 {
2454 FRAME_PTR f = XFRAME (WINDOW_FRAME (window));
2455 struct scroll_bar *bar
2456 = XSCROLL_BAR (Fmake_vector (make_number (SCROLL_BAR_VEC_SIZE), Qnil));
2457
2458 BLOCK_INPUT;
2459
2460 {
2461 XSetWindowAttributes a;
2462 unsigned long mask;
2463 a.background_pixel = f->output_data.x->background_pixel;
2464 a.event_mask = (ButtonPressMask | ButtonReleaseMask
2465 | ButtonMotionMask | PointerMotionHintMask
2466 | ExposureMask);
2467 a.cursor = FRAME_X_DISPLAY_INFO (f)->vertical_scroll_bar_cursor;
2468
2469 mask = (CWBackPixel | CWEventMask | CWCursor);
2470
2471 #if 0
2472
2473 ac = 0;
2474 XtSetArg (al[ac], XtNx, left); ac++;
2475 XtSetArg (al[ac], XtNy, top); ac++;
2476 XtSetArg (al[ac], XtNwidth, width); ac++;
2477 XtSetArg (al[ac], XtNheight, height); ac++;
2478 XtSetArg (al[ac], XtNborderWidth, 0); ac++;
2479 sb_widget = XtCreateManagedWidget ("box",
2480 boxWidgetClass,
2481 f->output_data.x->edit_widget, al, ac);
2482 SET_SCROLL_BAR_X_WINDOW
2483 (bar, sb_widget->core.window);
2484 #endif
2485 SET_SCROLL_BAR_X_WINDOW
2486 (bar,
2487 XCreateWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2488
2489 /* Position and size of scroll bar. */
2490 left, top, width, height,
2491
2492 /* Border width, depth, class, and visual. */
2493 0, CopyFromParent, CopyFromParent, CopyFromParent,
2494
2495 /* Attributes. */
2496 mask, &a));
2497 }
2498
2499 XSETWINDOW (bar->window, window);
2500 XSETINT (bar->top, top);
2501 XSETINT (bar->left, left);
2502 XSETINT (bar->width, width);
2503 XSETINT (bar->height, height);
2504 XSETINT (bar->start, 0);
2505 XSETINT (bar->end, 0);
2506 bar->dragging = Qnil;
2507
2508 /* Add bar to its frame's list of scroll bars. */
2509 bar->next = FRAME_SCROLL_BARS (f);
2510 bar->prev = Qnil;
2511 XSETVECTOR (FRAME_SCROLL_BARS (f), bar);
2512 if (! NILP (bar->next))
2513 XSETVECTOR (XSCROLL_BAR (bar->next)->prev, bar);
2514
2515 XMapRaised (FRAME_X_DISPLAY (f), SCROLL_BAR_X_WINDOW (bar));
2516
2517 UNBLOCK_INPUT;
2518
2519 return bar;
2520 }
2521
2522 /* Draw BAR's handle in the proper position.
2523 If the handle is already drawn from START to END, don't bother
2524 redrawing it, unless REBUILD is non-zero; in that case, always
2525 redraw it. (REBUILD is handy for drawing the handle after expose
2526 events.)
2527
2528 Normally, we want to constrain the start and end of the handle to
2529 fit inside its rectangle, but if the user is dragging the scroll bar
2530 handle, we want to let them drag it down all the way, so that the
2531 bar's top is as far down as it goes; otherwise, there's no way to
2532 move to the very end of the buffer. */
2533 static void
2534 x_scroll_bar_set_handle (bar, start, end, rebuild)
2535 struct scroll_bar *bar;
2536 int start, end;
2537 int rebuild;
2538 {
2539 int dragging = ! NILP (bar->dragging);
2540 Window w = SCROLL_BAR_X_WINDOW (bar);
2541 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
2542 GC gc = f->output_data.x->normal_gc;
2543
2544 /* If the display is already accurate, do nothing. */
2545 if (! rebuild
2546 && start == XINT (bar->start)
2547 && end == XINT (bar->end))
2548 return;
2549
2550 BLOCK_INPUT;
2551
2552 {
2553 int inside_width = VERTICAL_SCROLL_BAR_INSIDE_WIDTH (XINT (bar->width));
2554 int inside_height = VERTICAL_SCROLL_BAR_INSIDE_HEIGHT (XINT (bar->height));
2555 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (XINT (bar->height));
2556
2557 /* Make sure the values are reasonable, and try to preserve
2558 the distance between start and end. */
2559 {
2560 int length = end - start;
2561
2562 if (start < 0)
2563 start = 0;
2564 else if (start > top_range)
2565 start = top_range;
2566 end = start + length;
2567
2568 if (end < start)
2569 end = start;
2570 else if (end > top_range && ! dragging)
2571 end = top_range;
2572 }
2573
2574 /* Store the adjusted setting in the scroll bar. */
2575 XSETINT (bar->start, start);
2576 XSETINT (bar->end, end);
2577
2578 /* Clip the end position, just for display. */
2579 if (end > top_range)
2580 end = top_range;
2581
2582 /* Draw bottom positions VERTICAL_SCROLL_BAR_MIN_HANDLE pixels
2583 below top positions, to make sure the handle is always at least
2584 that many pixels tall. */
2585 end += VERTICAL_SCROLL_BAR_MIN_HANDLE;
2586
2587 /* Draw the empty space above the handle. Note that we can't clear
2588 zero-height areas; that means "clear to end of window." */
2589 if (0 < start)
2590 XClearArea (FRAME_X_DISPLAY (f), w,
2591
2592 /* x, y, width, height, and exposures. */
2593 VERTICAL_SCROLL_BAR_LEFT_BORDER,
2594 VERTICAL_SCROLL_BAR_TOP_BORDER,
2595 inside_width, start,
2596 False);
2597
2598 /* Draw the handle itself. */
2599 XFillRectangle (FRAME_X_DISPLAY (f), w, gc,
2600
2601 /* x, y, width, height */
2602 VERTICAL_SCROLL_BAR_LEFT_BORDER,
2603 VERTICAL_SCROLL_BAR_TOP_BORDER + start,
2604 inside_width, end - start);
2605
2606
2607 /* Draw the empty space below the handle. Note that we can't
2608 clear zero-height areas; that means "clear to end of window." */
2609 if (end < inside_height)
2610 XClearArea (FRAME_X_DISPLAY (f), w,
2611
2612 /* x, y, width, height, and exposures. */
2613 VERTICAL_SCROLL_BAR_LEFT_BORDER,
2614 VERTICAL_SCROLL_BAR_TOP_BORDER + end,
2615 inside_width, inside_height - end,
2616 False);
2617
2618 }
2619
2620 UNBLOCK_INPUT;
2621 }
2622
2623 /* Move a scroll bar around on the screen, to accommodate changing
2624 window configurations. */
2625 static void
2626 x_scroll_bar_move (bar, top, left, width, height)
2627 struct scroll_bar *bar;
2628 int top, left, width, height;
2629 {
2630 Window w = SCROLL_BAR_X_WINDOW (bar);
2631 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
2632
2633 BLOCK_INPUT;
2634
2635 {
2636 XWindowChanges wc;
2637 unsigned int mask = 0;
2638
2639 wc.x = left;
2640 wc.y = top;
2641 wc.width = width;
2642 wc.height = height;
2643
2644 if (left != XINT (bar->left)) mask |= CWX;
2645 if (top != XINT (bar->top)) mask |= CWY;
2646 if (width != XINT (bar->width)) mask |= CWWidth;
2647 if (height != XINT (bar->height)) mask |= CWHeight;
2648
2649 if (mask)
2650 XConfigureWindow (FRAME_X_DISPLAY (f), SCROLL_BAR_X_WINDOW (bar),
2651 mask, &wc);
2652 }
2653
2654 XSETINT (bar->left, left);
2655 XSETINT (bar->top, top);
2656 XSETINT (bar->width, width);
2657 XSETINT (bar->height, height);
2658
2659 UNBLOCK_INPUT;
2660 }
2661
2662 /* Destroy the X window for BAR, and set its Emacs window's scroll bar
2663 to nil. */
2664 static void
2665 x_scroll_bar_remove (bar)
2666 struct scroll_bar *bar;
2667 {
2668 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
2669
2670 BLOCK_INPUT;
2671
2672 /* Destroy the window. */
2673 XDestroyWindow (FRAME_X_DISPLAY (f), SCROLL_BAR_X_WINDOW (bar));
2674
2675 /* Disassociate this scroll bar from its window. */
2676 XWINDOW (bar->window)->vertical_scroll_bar = Qnil;
2677
2678 UNBLOCK_INPUT;
2679 }
2680
2681 /* Set the handle of the vertical scroll bar for WINDOW to indicate
2682 that we are displaying PORTION characters out of a total of WHOLE
2683 characters, starting at POSITION. If WINDOW has no scroll bar,
2684 create one. */
2685 static void
2686 XTset_vertical_scroll_bar (window, portion, whole, position)
2687 struct window *window;
2688 int portion, whole, position;
2689 {
2690 FRAME_PTR f = XFRAME (WINDOW_FRAME (window));
2691 int top = XINT (window->top);
2692 int left = WINDOW_VERTICAL_SCROLL_BAR_COLUMN (window);
2693 int height = WINDOW_VERTICAL_SCROLL_BAR_HEIGHT (window);
2694
2695 /* Where should this scroll bar be, pixelwise? */
2696 int pixel_top = CHAR_TO_PIXEL_ROW (f, top);
2697 int pixel_left = CHAR_TO_PIXEL_COL (f, left);
2698 int pixel_width
2699 = (FRAME_SCROLL_BAR_PIXEL_WIDTH (f) > 0
2700 ? FRAME_SCROLL_BAR_PIXEL_WIDTH (f)
2701 : (FRAME_SCROLL_BAR_COLS (f) * FONT_WIDTH (f->output_data.x->font)));
2702 int pixel_height = VERTICAL_SCROLL_BAR_PIXEL_HEIGHT (f, height);
2703
2704 struct scroll_bar *bar;
2705
2706 /* Does the scroll bar exist yet? */
2707 if (NILP (window->vertical_scroll_bar))
2708 bar = x_scroll_bar_create (window,
2709 pixel_top, pixel_left,
2710 pixel_width, pixel_height);
2711 else
2712 {
2713 /* It may just need to be moved and resized. */
2714 bar = XSCROLL_BAR (window->vertical_scroll_bar);
2715 x_scroll_bar_move (bar, pixel_top, pixel_left, pixel_width, pixel_height);
2716 }
2717
2718 /* Set the scroll bar's current state, unless we're currently being
2719 dragged. */
2720 if (NILP (bar->dragging))
2721 {
2722 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (pixel_height);
2723
2724 if (whole == 0)
2725 x_scroll_bar_set_handle (bar, 0, top_range, 0);
2726 else
2727 {
2728 int start = ((double) position * top_range) / whole;
2729 int end = ((double) (position + portion) * top_range) / whole;
2730
2731 x_scroll_bar_set_handle (bar, start, end, 0);
2732 }
2733 }
2734
2735 XSETVECTOR (window->vertical_scroll_bar, bar);
2736 }
2737
2738
2739 /* The following three hooks are used when we're doing a thorough
2740 redisplay of the frame. We don't explicitly know which scroll bars
2741 are going to be deleted, because keeping track of when windows go
2742 away is a real pain - "Can you say set-window-configuration, boys
2743 and girls?" Instead, we just assert at the beginning of redisplay
2744 that *all* scroll bars are to be removed, and then save a scroll bar
2745 from the fiery pit when we actually redisplay its window. */
2746
2747 /* Arrange for all scroll bars on FRAME to be removed at the next call
2748 to `*judge_scroll_bars_hook'. A scroll bar may be spared if
2749 `*redeem_scroll_bar_hook' is applied to its window before the judgement. */
2750 static void
2751 XTcondemn_scroll_bars (frame)
2752 FRAME_PTR frame;
2753 {
2754 /* Transfer all the scroll bars to FRAME_CONDEMNED_SCROLL_BARS. */
2755 while (! NILP (FRAME_SCROLL_BARS (frame)))
2756 {
2757 Lisp_Object bar;
2758 bar = FRAME_SCROLL_BARS (frame);
2759 FRAME_SCROLL_BARS (frame) = XSCROLL_BAR (bar)->next;
2760 XSCROLL_BAR (bar)->next = FRAME_CONDEMNED_SCROLL_BARS (frame);
2761 XSCROLL_BAR (bar)->prev = Qnil;
2762 if (! NILP (FRAME_CONDEMNED_SCROLL_BARS (frame)))
2763 XSCROLL_BAR (FRAME_CONDEMNED_SCROLL_BARS (frame))->prev = bar;
2764 FRAME_CONDEMNED_SCROLL_BARS (frame) = bar;
2765 }
2766 }
2767
2768 /* Unmark WINDOW's scroll bar for deletion in this judgement cycle.
2769 Note that WINDOW isn't necessarily condemned at all. */
2770 static void
2771 XTredeem_scroll_bar (window)
2772 struct window *window;
2773 {
2774 struct scroll_bar *bar;
2775
2776 /* We can't redeem this window's scroll bar if it doesn't have one. */
2777 if (NILP (window->vertical_scroll_bar))
2778 abort ();
2779
2780 bar = XSCROLL_BAR (window->vertical_scroll_bar);
2781
2782 /* Unlink it from the condemned list. */
2783 {
2784 FRAME_PTR f = XFRAME (WINDOW_FRAME (window));
2785
2786 if (NILP (bar->prev))
2787 {
2788 /* If the prev pointer is nil, it must be the first in one of
2789 the lists. */
2790 if (EQ (FRAME_SCROLL_BARS (f), window->vertical_scroll_bar))
2791 /* It's not condemned. Everything's fine. */
2792 return;
2793 else if (EQ (FRAME_CONDEMNED_SCROLL_BARS (f),
2794 window->vertical_scroll_bar))
2795 FRAME_CONDEMNED_SCROLL_BARS (f) = bar->next;
2796 else
2797 /* If its prev pointer is nil, it must be at the front of
2798 one or the other! */
2799 abort ();
2800 }
2801 else
2802 XSCROLL_BAR (bar->prev)->next = bar->next;
2803
2804 if (! NILP (bar->next))
2805 XSCROLL_BAR (bar->next)->prev = bar->prev;
2806
2807 bar->next = FRAME_SCROLL_BARS (f);
2808 bar->prev = Qnil;
2809 XSETVECTOR (FRAME_SCROLL_BARS (f), bar);
2810 if (! NILP (bar->next))
2811 XSETVECTOR (XSCROLL_BAR (bar->next)->prev, bar);
2812 }
2813 }
2814
2815 /* Remove all scroll bars on FRAME that haven't been saved since the
2816 last call to `*condemn_scroll_bars_hook'. */
2817 static void
2818 XTjudge_scroll_bars (f)
2819 FRAME_PTR f;
2820 {
2821 Lisp_Object bar, next;
2822
2823 bar = FRAME_CONDEMNED_SCROLL_BARS (f);
2824
2825 /* Clear out the condemned list now so we won't try to process any
2826 more events on the hapless scroll bars. */
2827 FRAME_CONDEMNED_SCROLL_BARS (f) = Qnil;
2828
2829 for (; ! NILP (bar); bar = next)
2830 {
2831 struct scroll_bar *b = XSCROLL_BAR (bar);
2832
2833 x_scroll_bar_remove (b);
2834
2835 next = b->next;
2836 b->next = b->prev = Qnil;
2837 }
2838
2839 /* Now there should be no references to the condemned scroll bars,
2840 and they should get garbage-collected. */
2841 }
2842
2843
2844 /* Handle an Expose or GraphicsExpose event on a scroll bar.
2845
2846 This may be called from a signal handler, so we have to ignore GC
2847 mark bits. */
2848 static void
2849 x_scroll_bar_expose (bar, event)
2850 struct scroll_bar *bar;
2851 XEvent *event;
2852 {
2853 Window w = SCROLL_BAR_X_WINDOW (bar);
2854 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
2855 GC gc = f->output_data.x->normal_gc;
2856
2857 BLOCK_INPUT;
2858
2859 x_scroll_bar_set_handle (bar, XINT (bar->start), XINT (bar->end), 1);
2860
2861 /* Draw a one-pixel border just inside the edges of the scroll bar. */
2862 XDrawRectangle (FRAME_X_DISPLAY (f), w, gc,
2863
2864 /* x, y, width, height */
2865 0, 0, XINT (bar->width) - 1, XINT (bar->height) - 1);
2866
2867 UNBLOCK_INPUT;
2868 }
2869
2870 /* Handle a mouse click on the scroll bar BAR. If *EMACS_EVENT's kind
2871 is set to something other than no_event, it is enqueued.
2872
2873 This may be called from a signal handler, so we have to ignore GC
2874 mark bits. */
2875 static void
2876 x_scroll_bar_handle_click (bar, event, emacs_event)
2877 struct scroll_bar *bar;
2878 XEvent *event;
2879 struct input_event *emacs_event;
2880 {
2881 if (! GC_WINDOWP (bar->window))
2882 abort ();
2883
2884 emacs_event->kind = scroll_bar_click;
2885 emacs_event->code = event->xbutton.button - Button1;
2886 emacs_event->modifiers
2887 = (x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO
2888 (XFRAME (WINDOW_FRAME (XWINDOW (bar->window)))),
2889 event->xbutton.state)
2890 | (event->type == ButtonRelease
2891 ? up_modifier
2892 : down_modifier));
2893 emacs_event->frame_or_window = bar->window;
2894 emacs_event->timestamp = event->xbutton.time;
2895 {
2896 int internal_height
2897 = VERTICAL_SCROLL_BAR_INSIDE_HEIGHT (XINT (bar->height));
2898 int top_range
2899 = VERTICAL_SCROLL_BAR_TOP_RANGE (XINT (bar->height));
2900 int y = event->xbutton.y - VERTICAL_SCROLL_BAR_TOP_BORDER;
2901
2902 if (y < 0) y = 0;
2903 if (y > top_range) y = top_range;
2904
2905 if (y < XINT (bar->start))
2906 emacs_event->part = scroll_bar_above_handle;
2907 else if (y < XINT (bar->end) + VERTICAL_SCROLL_BAR_MIN_HANDLE)
2908 emacs_event->part = scroll_bar_handle;
2909 else
2910 emacs_event->part = scroll_bar_below_handle;
2911
2912 /* Just because the user has clicked on the handle doesn't mean
2913 they want to drag it. Lisp code needs to be able to decide
2914 whether or not we're dragging. */
2915 #if 0
2916 /* If the user has just clicked on the handle, record where they're
2917 holding it. */
2918 if (event->type == ButtonPress
2919 && emacs_event->part == scroll_bar_handle)
2920 XSETINT (bar->dragging, y - XINT (bar->start));
2921 #endif
2922
2923 /* If the user has released the handle, set it to its final position. */
2924 if (event->type == ButtonRelease
2925 && ! NILP (bar->dragging))
2926 {
2927 int new_start = y - XINT (bar->dragging);
2928 int new_end = new_start + (XINT (bar->end) - XINT (bar->start));
2929
2930 x_scroll_bar_set_handle (bar, new_start, new_end, 0);
2931 bar->dragging = Qnil;
2932 }
2933
2934 /* Same deal here as the other #if 0. */
2935 #if 0
2936 /* Clicks on the handle are always reported as occurring at the top of
2937 the handle. */
2938 if (emacs_event->part == scroll_bar_handle)
2939 emacs_event->x = bar->start;
2940 else
2941 XSETINT (emacs_event->x, y);
2942 #else
2943 XSETINT (emacs_event->x, y);
2944 #endif
2945
2946 XSETINT (emacs_event->y, top_range);
2947 }
2948 }
2949
2950 /* Handle some mouse motion while someone is dragging the scroll bar.
2951
2952 This may be called from a signal handler, so we have to ignore GC
2953 mark bits. */
2954 static void
2955 x_scroll_bar_note_movement (bar, event)
2956 struct scroll_bar *bar;
2957 XEvent *event;
2958 {
2959 FRAME_PTR f = XFRAME (XWINDOW (bar->window)->frame);
2960
2961 last_mouse_movement_time = event->xmotion.time;
2962
2963 f->mouse_moved = 1;
2964 XSETVECTOR (last_mouse_scroll_bar, bar);
2965
2966 /* If we're dragging the bar, display it. */
2967 if (! GC_NILP (bar->dragging))
2968 {
2969 /* Where should the handle be now? */
2970 int new_start = event->xmotion.y - XINT (bar->dragging);
2971
2972 if (new_start != XINT (bar->start))
2973 {
2974 int new_end = new_start + (XINT (bar->end) - XINT (bar->start));
2975
2976 x_scroll_bar_set_handle (bar, new_start, new_end, 0);
2977 }
2978 }
2979 }
2980
2981 /* Return information to the user about the current position of the mouse
2982 on the scroll bar. */
2983 static void
2984 x_scroll_bar_report_motion (fp, bar_window, part, x, y, time)
2985 FRAME_PTR *fp;
2986 Lisp_Object *bar_window;
2987 enum scroll_bar_part *part;
2988 Lisp_Object *x, *y;
2989 unsigned long *time;
2990 {
2991 struct scroll_bar *bar = XSCROLL_BAR (last_mouse_scroll_bar);
2992 Window w = SCROLL_BAR_X_WINDOW (bar);
2993 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
2994 int win_x, win_y;
2995 Window dummy_window;
2996 int dummy_coord;
2997 unsigned int dummy_mask;
2998
2999 BLOCK_INPUT;
3000
3001 /* Get the mouse's position relative to the scroll bar window, and
3002 report that. */
3003 if (! XQueryPointer (FRAME_X_DISPLAY (f), w,
3004
3005 /* Root, child, root x and root y. */
3006 &dummy_window, &dummy_window,
3007 &dummy_coord, &dummy_coord,
3008
3009 /* Position relative to scroll bar. */
3010 &win_x, &win_y,
3011
3012 /* Mouse buttons and modifier keys. */
3013 &dummy_mask))
3014 ;
3015 else
3016 {
3017 int inside_height
3018 = VERTICAL_SCROLL_BAR_INSIDE_HEIGHT (XINT (bar->height));
3019 int top_range
3020 = VERTICAL_SCROLL_BAR_TOP_RANGE (XINT (bar->height));
3021
3022 win_y -= VERTICAL_SCROLL_BAR_TOP_BORDER;
3023
3024 if (! NILP (bar->dragging))
3025 win_y -= XINT (bar->dragging);
3026
3027 if (win_y < 0)
3028 win_y = 0;
3029 if (win_y > top_range)
3030 win_y = top_range;
3031
3032 *fp = f;
3033 *bar_window = bar->window;
3034
3035 if (! NILP (bar->dragging))
3036 *part = scroll_bar_handle;
3037 else if (win_y < XINT (bar->start))
3038 *part = scroll_bar_above_handle;
3039 else if (win_y < XINT (bar->end) + VERTICAL_SCROLL_BAR_MIN_HANDLE)
3040 *part = scroll_bar_handle;
3041 else
3042 *part = scroll_bar_below_handle;
3043
3044 XSETINT (*x, win_y);
3045 XSETINT (*y, top_range);
3046
3047 f->mouse_moved = 0;
3048 last_mouse_scroll_bar = Qnil;
3049 }
3050
3051 *time = last_mouse_movement_time;
3052
3053 UNBLOCK_INPUT;
3054 }
3055
3056
3057 /* The screen has been cleared so we may have changed foreground or
3058 background colors, and the scroll bars may need to be redrawn.
3059 Clear out the scroll bars, and ask for expose events, so we can
3060 redraw them. */
3061
3062 x_scroll_bar_clear (f)
3063 FRAME_PTR f;
3064 {
3065 Lisp_Object bar;
3066
3067 /* We can have scroll bars even if this is 0,
3068 if we just turned off scroll bar mode.
3069 But in that case we should not clear them. */
3070 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
3071 for (bar = FRAME_SCROLL_BARS (f); VECTORP (bar);
3072 bar = XSCROLL_BAR (bar)->next)
3073 XClearArea (FRAME_X_DISPLAY (f), SCROLL_BAR_X_WINDOW (XSCROLL_BAR (bar)),
3074 0, 0, 0, 0, True);
3075 }
3076
3077 /* This processes Expose events from the menubar specific X event
3078 loop in xmenu.c. This allows to redisplay the frame if necessary
3079 when handling menubar or popup items. */
3080
3081 void
3082 process_expose_from_menu (event)
3083 XEvent event;
3084 {
3085 FRAME_PTR f;
3086 struct x_display_info *dpyinfo;
3087
3088 BLOCK_INPUT;
3089
3090 dpyinfo = x_display_info_for_display (event.xexpose.display);
3091 f = x_window_to_frame (dpyinfo, event.xexpose.window);
3092 if (f)
3093 {
3094 if (f->async_visible == 0)
3095 {
3096 f->async_visible = 1;
3097 f->async_iconified = 0;
3098 SET_FRAME_GARBAGED (f);
3099 }
3100 else
3101 {
3102 dumprectangle (x_window_to_frame (dpyinfo, event.xexpose.window),
3103 event.xexpose.x, event.xexpose.y,
3104 event.xexpose.width, event.xexpose.height);
3105 }
3106 }
3107 else
3108 {
3109 struct scroll_bar *bar
3110 = x_window_to_scroll_bar (event.xexpose.window);
3111
3112 if (bar)
3113 x_scroll_bar_expose (bar, &event);
3114 }
3115
3116 UNBLOCK_INPUT;
3117 }
3118 \f
3119 /* Define a queue to save up SelectionRequest events for later handling. */
3120
3121 struct selection_event_queue
3122 {
3123 XEvent event;
3124 struct selection_event_queue *next;
3125 };
3126
3127 static struct selection_event_queue *queue;
3128
3129 /* Nonzero means queue up certain events--don't process them yet. */
3130 static int x_queue_selection_requests;
3131
3132 /* Queue up an X event *EVENT, to be processed later. */
3133
3134 static void
3135 x_queue_event (f, event)
3136 FRAME_PTR f;
3137 XEvent *event;
3138 {
3139 struct selection_event_queue *queue_tmp
3140 = (struct selection_event_queue *) malloc (sizeof (struct selection_event_queue));
3141
3142 if (queue_tmp != NULL)
3143 {
3144 queue_tmp->event = *event;
3145 queue_tmp->next = queue;
3146 queue = queue_tmp;
3147 }
3148 }
3149
3150 /* Take all the queued events and put them back
3151 so that they get processed afresh. */
3152
3153 static void
3154 x_unqueue_events (display)
3155 Display *display;
3156 {
3157 while (queue != NULL)
3158 {
3159 struct selection_event_queue *queue_tmp = queue;
3160 XPutBackEvent (display, &queue_tmp->event);
3161 queue = queue_tmp->next;
3162 free ((char *)queue_tmp);
3163 }
3164 }
3165
3166 /* Start queuing SelectionRequest events. */
3167
3168 void
3169 x_start_queuing_selection_requests (display)
3170 Display *display;
3171 {
3172 x_queue_selection_requests++;
3173 }
3174
3175 /* Stop queuing SelectionRequest events. */
3176
3177 void
3178 x_stop_queuing_selection_requests (display)
3179 Display *display;
3180 {
3181 x_queue_selection_requests--;
3182 x_unqueue_events (display);
3183 }
3184 \f
3185 /* The main X event-reading loop - XTread_socket. */
3186
3187 /* Timestamp of enter window event. This is only used by XTread_socket,
3188 but we have to put it out here, since static variables within functions
3189 sometimes don't work. */
3190 static Time enter_timestamp;
3191
3192 /* This holds the state XLookupString needs to implement dead keys
3193 and other tricks known as "compose processing". _X Window System_
3194 says that a portable program can't use this, but Stephen Gildea assures
3195 me that letting the compiler initialize it to zeros will work okay.
3196
3197 This must be defined outside of XTread_socket, for the same reasons
3198 given for enter_timestamp, above. */
3199 static XComposeStatus compose_status;
3200
3201 /* Record the last 100 characters stored
3202 to help debug the loss-of-chars-during-GC problem. */
3203 static int temp_index;
3204 static short temp_buffer[100];
3205
3206 /* Set this to nonzero to fake an "X I/O error"
3207 on a particular display. */
3208 struct x_display_info *XTread_socket_fake_io_error;
3209
3210 /* When we find no input here, we occasionally do a no-op command
3211 to verify that the X server is still running and we can still talk with it.
3212 We try all the open displays, one by one.
3213 This variable is used for cycling thru the displays. */
3214 static struct x_display_info *next_noop_dpyinfo;
3215
3216 #define SET_SAVED_MENU_EVENT(size) { \
3217 if (f->output_data.x->saved_menu_event == 0) \
3218 f->output_data.x->saved_menu_event = (XEvent*)xmalloc (sizeof (XEvent)); \
3219 bcopy (&event, f->output_data.x->saved_menu_event, size); \
3220 if (numchars >= 1) \
3221 { \
3222 bufp->kind = menu_bar_activate_event; \
3223 XSETFRAME (bufp->frame_or_window, f); \
3224 bufp++; \
3225 count++; \
3226 numchars--; \
3227 } \
3228 }
3229 #define SET_SAVED_BUTTON_EVENT SET_SAVED_MENU_EVENT (sizeof (XButtonEvent))
3230 #define SET_SAVED_KEY_EVENT SET_SAVED_MENU_EVENT (sizeof (XKeyEvent))
3231
3232 /* Read events coming from the X server.
3233 This routine is called by the SIGIO handler.
3234 We return as soon as there are no more events to be read.
3235
3236 Events representing keys are stored in buffer BUFP,
3237 which can hold up to NUMCHARS characters.
3238 We return the number of characters stored into the buffer,
3239 thus pretending to be `read'.
3240
3241 WAITP is nonzero if we should block until input arrives.
3242 EXPECTED is nonzero if the caller knows input is available. */
3243
3244 int
3245 XTread_socket (sd, bufp, numchars, waitp, expected)
3246 register int sd;
3247 /* register */ struct input_event *bufp;
3248 /* register */ int numchars;
3249 int waitp;
3250 int expected;
3251 {
3252 int count = 0;
3253 int nbytes = 0;
3254 int mask;
3255 int items_pending; /* How many items are in the X queue. */
3256 XEvent event;
3257 struct frame *f;
3258 int event_found = 0;
3259 int prefix;
3260 Lisp_Object part;
3261 struct x_display_info *dpyinfo;
3262 #ifdef HAVE_X_I18N
3263 Status status_return;
3264 #endif
3265
3266 if (interrupt_input_blocked)
3267 {
3268 interrupt_input_pending = 1;
3269 return -1;
3270 }
3271
3272 interrupt_input_pending = 0;
3273 BLOCK_INPUT;
3274
3275 /* So people can tell when we have read the available input. */
3276 input_signal_count++;
3277
3278 if (numchars <= 0)
3279 abort (); /* Don't think this happens. */
3280
3281 /* Find the display we are supposed to read input for.
3282 It's the one communicating on descriptor SD. */
3283 for (dpyinfo = x_display_list; dpyinfo; dpyinfo = dpyinfo->next)
3284 {
3285 #if 0 /* This ought to be unnecessary; let's verify it. */
3286 #ifdef FIOSNBIO
3287 /* If available, Xlib uses FIOSNBIO to make the socket
3288 non-blocking, and then looks for EWOULDBLOCK. If O_NDELAY is set,
3289 FIOSNBIO is ignored, and instead of signaling EWOULDBLOCK,
3290 a read returns 0, which Xlib interprets as equivalent to EPIPE. */
3291 fcntl (dpyinfo->connection, F_SETFL, 0);
3292 #endif /* ! defined (FIOSNBIO) */
3293 #endif
3294
3295 #if 0 /* This code can't be made to work, with multiple displays,
3296 and appears not to be used on any system any more.
3297 Also keyboard.c doesn't turn O_NDELAY on and off
3298 for X connections. */
3299 #ifndef SIGIO
3300 #ifndef HAVE_SELECT
3301 if (! (fcntl (dpyinfo->connection, F_GETFL, 0) & O_NDELAY))
3302 {
3303 extern int read_alarm_should_throw;
3304 read_alarm_should_throw = 1;
3305 XPeekEvent (dpyinfo->display, &event);
3306 read_alarm_should_throw = 0;
3307 }
3308 #endif /* HAVE_SELECT */
3309 #endif /* SIGIO */
3310 #endif
3311
3312 /* For debugging, this gives a way to fake an I/O error. */
3313 if (dpyinfo == XTread_socket_fake_io_error)
3314 {
3315 XTread_socket_fake_io_error = 0;
3316 x_io_error_quitter (dpyinfo->display);
3317 }
3318
3319 while (XPending (dpyinfo->display) != 0)
3320 {
3321 #ifdef USE_X_TOOLKIT
3322 /* needed to raise Motif submenus */
3323 XtAppNextEvent (Xt_app_con, &event);
3324 #else
3325 XNextEvent (dpyinfo->display, &event);
3326 #endif
3327 event_found = 1;
3328
3329 switch (event.type)
3330 {
3331 case ClientMessage:
3332 {
3333 if (event.xclient.message_type
3334 == dpyinfo->Xatom_wm_protocols
3335 && event.xclient.format == 32)
3336 {
3337 if (event.xclient.data.l[0]
3338 == dpyinfo->Xatom_wm_take_focus)
3339 {
3340 f = x_window_to_frame (dpyinfo, event.xclient.window);
3341 /* Since we set WM_TAKE_FOCUS, we must call
3342 XSetInputFocus explicitly. But not if f is null,
3343 since that might be an event for a deleted frame. */
3344 #ifdef HAVE_X_I18N
3345 /* Not quite sure this is needed -pd */
3346 if (f)
3347 XSetICFocus (FRAME_XIC (f));
3348 #endif
3349 if (f)
3350 XSetInputFocus (event.xclient.display,
3351 event.xclient.window,
3352 RevertToPointerRoot,
3353 event.xclient.data.l[1]);
3354 /* Not certain about handling scroll bars here */
3355 }
3356 else if (event.xclient.data.l[0]
3357 == dpyinfo->Xatom_wm_save_yourself)
3358 {
3359 /* Save state modify the WM_COMMAND property to
3360 something which can reinstate us. This notifies
3361 the session manager, who's looking for such a
3362 PropertyNotify. Can restart processing when
3363 a keyboard or mouse event arrives. */
3364 if (numchars > 0)
3365 {
3366 f = x_top_window_to_frame (dpyinfo,
3367 event.xclient.window);
3368
3369 /* This is just so we only give real data once
3370 for a single Emacs process. */
3371 if (f == selected_frame)
3372 XSetCommand (FRAME_X_DISPLAY (f),
3373 event.xclient.window,
3374 initial_argv, initial_argc);
3375 else if (f)
3376 XSetCommand (FRAME_X_DISPLAY (f),
3377 event.xclient.window,
3378 0, 0);
3379 }
3380 }
3381 else if (event.xclient.data.l[0]
3382 == dpyinfo->Xatom_wm_delete_window)
3383 {
3384 struct frame *f
3385 = x_any_window_to_frame (dpyinfo,
3386 event.xclient.window);
3387
3388 if (f)
3389 {
3390 if (numchars == 0)
3391 abort ();
3392
3393 bufp->kind = delete_window_event;
3394 XSETFRAME (bufp->frame_or_window, f);
3395 bufp++;
3396
3397 count += 1;
3398 numchars -= 1;
3399 }
3400 }
3401 }
3402 else if (event.xclient.message_type
3403 == dpyinfo->Xatom_wm_configure_denied)
3404 {
3405 }
3406 else if (event.xclient.message_type
3407 == dpyinfo->Xatom_wm_window_moved)
3408 {
3409 int new_x, new_y;
3410 struct frame *f
3411 = x_window_to_frame (dpyinfo, event.xclient.window);
3412
3413 new_x = event.xclient.data.s[0];
3414 new_y = event.xclient.data.s[1];
3415
3416 if (f)
3417 {
3418 f->output_data.x->left_pos = new_x;
3419 f->output_data.x->top_pos = new_y;
3420 }
3421 }
3422 #ifdef HACK_EDITRES
3423 else if (event.xclient.message_type
3424 == dpyinfo->Xatom_editres)
3425 {
3426 struct frame *f
3427 = x_any_window_to_frame (dpyinfo, event.xclient.window);
3428 _XEditResCheckMessages (f->output_data.x->widget, NULL,
3429 &event, NULL);
3430 }
3431 #endif /* HACK_EDITRES */
3432 }
3433 break;
3434
3435 case SelectionNotify:
3436 #ifdef USE_X_TOOLKIT
3437 if (! x_window_to_frame (dpyinfo, event.xselection.requestor))
3438 goto OTHER;
3439 #endif /* not USE_X_TOOLKIT */
3440 x_handle_selection_notify (&event);
3441 break;
3442
3443 case SelectionClear: /* Someone has grabbed ownership. */
3444 #ifdef USE_X_TOOLKIT
3445 if (! x_window_to_frame (dpyinfo, event.xselectionclear.window))
3446 goto OTHER;
3447 #endif /* USE_X_TOOLKIT */
3448 {
3449 XSelectionClearEvent *eventp = (XSelectionClearEvent *) &event;
3450
3451 if (numchars == 0)
3452 abort ();
3453
3454 bufp->kind = selection_clear_event;
3455 SELECTION_EVENT_DISPLAY (bufp) = eventp->display;
3456 SELECTION_EVENT_SELECTION (bufp) = eventp->selection;
3457 SELECTION_EVENT_TIME (bufp) = eventp->time;
3458 bufp->frame_or_window = Qnil;
3459 bufp++;
3460
3461 count += 1;
3462 numchars -= 1;
3463 }
3464 break;
3465
3466 case SelectionRequest: /* Someone wants our selection. */
3467 #ifdef USE_X_TOOLKIT
3468 if (!x_window_to_frame (dpyinfo, event.xselectionrequest.owner))
3469 goto OTHER;
3470 #endif /* USE_X_TOOLKIT */
3471 if (x_queue_selection_requests)
3472 x_queue_event (x_window_to_frame (dpyinfo, event.xselectionrequest.owner),
3473 &event);
3474 else
3475 {
3476 XSelectionRequestEvent *eventp = (XSelectionRequestEvent *) &event;
3477
3478 if (numchars == 0)
3479 abort ();
3480
3481 bufp->kind = selection_request_event;
3482 SELECTION_EVENT_DISPLAY (bufp) = eventp->display;
3483 SELECTION_EVENT_REQUESTOR (bufp) = eventp->requestor;
3484 SELECTION_EVENT_SELECTION (bufp) = eventp->selection;
3485 SELECTION_EVENT_TARGET (bufp) = eventp->target;
3486 SELECTION_EVENT_PROPERTY (bufp) = eventp->property;
3487 SELECTION_EVENT_TIME (bufp) = eventp->time;
3488 bufp->frame_or_window = Qnil;
3489 bufp++;
3490
3491 count += 1;
3492 numchars -= 1;
3493 }
3494 break;
3495
3496 case PropertyNotify:
3497 #ifdef USE_X_TOOLKIT
3498 if (!x_any_window_to_frame (dpyinfo, event.xproperty.window))
3499 goto OTHER;
3500 #endif /* not USE_X_TOOLKIT */
3501 x_handle_property_notify (&event);
3502 break;
3503
3504 case ReparentNotify:
3505 f = x_top_window_to_frame (dpyinfo, event.xreparent.window);
3506 if (f)
3507 {
3508 int x, y;
3509 f->output_data.x->parent_desc = event.xreparent.parent;
3510 x_real_positions (f, &x, &y);
3511 f->output_data.x->left_pos = x;
3512 f->output_data.x->top_pos = y;
3513 }
3514 break;
3515
3516 case Expose:
3517 f = x_window_to_frame (dpyinfo, event.xexpose.window);
3518 if (f)
3519 {
3520 if (f->async_visible == 0)
3521 {
3522 f->async_visible = 1;
3523 f->async_iconified = 0;
3524 SET_FRAME_GARBAGED (f);
3525 }
3526 else
3527 dumprectangle (x_window_to_frame (dpyinfo,
3528 event.xexpose.window),
3529 event.xexpose.x, event.xexpose.y,
3530 event.xexpose.width, event.xexpose.height);
3531 }
3532 else
3533 {
3534 struct scroll_bar *bar
3535 = x_window_to_scroll_bar (event.xexpose.window);
3536
3537 if (bar)
3538 x_scroll_bar_expose (bar, &event);
3539 #ifdef USE_X_TOOLKIT
3540 else
3541 goto OTHER;
3542 #endif /* USE_X_TOOLKIT */
3543 }
3544 break;
3545
3546 case GraphicsExpose: /* This occurs when an XCopyArea's
3547 source area was obscured or not
3548 available.*/
3549 f = x_window_to_frame (dpyinfo, event.xgraphicsexpose.drawable);
3550 if (f)
3551 {
3552 dumprectangle (f,
3553 event.xgraphicsexpose.x, event.xgraphicsexpose.y,
3554 event.xgraphicsexpose.width,
3555 event.xgraphicsexpose.height);
3556 }
3557 #ifdef USE_X_TOOLKIT
3558 else
3559 goto OTHER;
3560 #endif /* USE_X_TOOLKIT */
3561 break;
3562
3563 case NoExpose: /* This occurs when an XCopyArea's
3564 source area was completely
3565 available */
3566 break;
3567
3568 case UnmapNotify:
3569 f = x_top_window_to_frame (dpyinfo, event.xunmap.window);
3570 if (f) /* F may no longer exist if
3571 the frame was deleted. */
3572 {
3573 /* While a frame is unmapped, display generation is
3574 disabled; you don't want to spend time updating a
3575 display that won't ever be seen. */
3576 f->async_visible = 0;
3577 /* We can't distinguish, from the event, whether the window
3578 has become iconified or invisible. So assume, if it
3579 was previously visible, than now it is iconified.
3580 We depend on x_make_frame_invisible to mark it invisible. */
3581 if (FRAME_VISIBLE_P (f) || FRAME_ICONIFIED_P (f))
3582 f->async_iconified = 1;
3583
3584 bufp->kind = iconify_event;
3585 XSETFRAME (bufp->frame_or_window, f);
3586 bufp++;
3587 count++;
3588 numchars--;
3589 }
3590 goto OTHER;
3591
3592 case MapNotify:
3593 /* We use x_top_window_to_frame because map events can come
3594 for subwindows and they don't mean that the frame is visible. */
3595 f = x_top_window_to_frame (dpyinfo, event.xmap.window);
3596 if (f)
3597 {
3598 f->async_visible = 1;
3599 f->async_iconified = 0;
3600
3601 /* wait_reading_process_input will notice this and update
3602 the frame's display structures. */
3603 SET_FRAME_GARBAGED (f);
3604
3605 if (f->iconified)
3606 {
3607 bufp->kind = deiconify_event;
3608 XSETFRAME (bufp->frame_or_window, f);
3609 bufp++;
3610 count++;
3611 numchars--;
3612 }
3613 else if (! NILP(Vframe_list)
3614 && ! NILP (XCONS (Vframe_list)->cdr))
3615 /* Force a redisplay sooner or later
3616 to update the frame titles
3617 in case this is the second frame. */
3618 record_asynch_buffer_change ();
3619 }
3620 goto OTHER;
3621
3622 /* Turn off processing if we become fully obscured. */
3623 case VisibilityNotify:
3624 break;
3625
3626 case KeyPress:
3627 f = x_any_window_to_frame (dpyinfo, event.xkey.window);
3628
3629 if (f != 0)
3630 {
3631 KeySym keysym, orig_keysym;
3632 /* al%imercury@uunet.uu.net says that making this 81 instead of
3633 80 fixed a bug whereby meta chars made his Emacs hang. */
3634 unsigned char copy_buffer[81];
3635 int modifiers;
3636
3637 #ifdef USE_MOTIF
3638 if (lw_window_is_in_menubar (event.xkey.window,
3639 f->output_data.x->menubar_widget
3640 ))
3641 {
3642 SET_SAVED_KEY_EVENT;
3643 break;
3644 }
3645 #endif /* USE_MOTIF */
3646
3647 event.xkey.state
3648 |= x_emacs_to_x_modifiers (FRAME_X_DISPLAY_INFO (f),
3649 extra_keyboard_modifiers);
3650 modifiers = event.xkey.state;
3651
3652 /* This will have to go some day... */
3653
3654 /* make_lispy_event turns chars into control chars.
3655 Don't do it here because XLookupString is too eager. */
3656 event.xkey.state &= ~ControlMask;
3657 event.xkey.state &= ~(dpyinfo->meta_mod_mask
3658 | dpyinfo->super_mod_mask
3659 | dpyinfo->hyper_mod_mask
3660 | dpyinfo->alt_mod_mask);
3661
3662 #ifdef HAVE_X_I18N
3663 if (FRAME_XIC (f))
3664 {
3665 /* The necessity of the following line took me
3666 a full work-day to decipher from the docs!! */
3667 if (XFilterEvent (&event, None))
3668 break;
3669 nbytes = XmbLookupString (FRAME_XIC (f),
3670 &event.xkey, copy_buffer,
3671 80, &keysym,
3672 &status_return);
3673 }
3674 else
3675 nbytes = XLookupString (&event.xkey, copy_buffer,
3676 80, &keysym, &compose_status);
3677 #else
3678 nbytes = XLookupString (&event.xkey, copy_buffer,
3679 80, &keysym, &compose_status);
3680 #endif
3681
3682 orig_keysym = keysym;
3683
3684 if (numchars > 1)
3685 {
3686 if (((keysym >= XK_BackSpace && keysym <= XK_Escape)
3687 || keysym == XK_Delete
3688 || IsCursorKey (keysym) /* 0xff50 <= x < 0xff60 */
3689 || IsMiscFunctionKey (keysym) /* 0xff60 <= x < VARIES */
3690 #ifdef HPUX
3691 /* This recognizes the "extended function keys".
3692 It seems there's no cleaner way.
3693 Test IsModifierKey to avoid handling mode_switch
3694 incorrectly. */
3695 || ((unsigned) (keysym) >= XK_Select
3696 && (unsigned)(keysym) < XK_KP_Space)
3697 #endif
3698 #ifdef XK_dead_circumflex
3699 || orig_keysym == XK_dead_circumflex
3700 #endif
3701 #ifdef XK_dead_grave
3702 || orig_keysym == XK_dead_grave
3703 #endif
3704 #ifdef XK_dead_tilde
3705 || orig_keysym == XK_dead_tilde
3706 #endif
3707 #ifdef XK_dead_diaeresis
3708 || orig_keysym == XK_dead_diaeresis
3709 #endif
3710 #ifdef XK_dead_macron
3711 || orig_keysym == XK_dead_macron
3712 #endif
3713 #ifdef XK_dead_degree
3714 || orig_keysym == XK_dead_degree
3715 #endif
3716 #ifdef XK_dead_acute
3717 || orig_keysym == XK_dead_acute
3718 #endif
3719 #ifdef XK_dead_cedilla
3720 || orig_keysym == XK_dead_cedilla
3721 #endif
3722 #ifdef XK_dead_breve
3723 || orig_keysym == XK_dead_breve
3724 #endif
3725 #ifdef XK_dead_ogonek
3726 || orig_keysym == XK_dead_ogonek
3727 #endif
3728 #ifdef XK_dead_caron
3729 || orig_keysym == XK_dead_caron
3730 #endif
3731 #ifdef XK_dead_doubleacute
3732 || orig_keysym == XK_dead_doubleacute
3733 #endif
3734 #ifdef XK_dead_abovedot
3735 || orig_keysym == XK_dead_abovedot
3736 #endif
3737 || IsKeypadKey (keysym) /* 0xff80 <= x < 0xffbe */
3738 || IsFunctionKey (keysym) /* 0xffbe <= x < 0xffe1 */
3739 /* Any "vendor-specific" key is ok. */
3740 || (orig_keysym & (1 << 28)))
3741 && ! (IsModifierKey (orig_keysym)
3742 #ifndef HAVE_X11R5
3743 #ifdef XK_Mode_switch
3744 || ((unsigned)(orig_keysym) == XK_Mode_switch)
3745 #endif
3746 #ifdef XK_Num_Lock
3747 || ((unsigned)(orig_keysym) == XK_Num_Lock)
3748 #endif
3749 #endif /* not HAVE_X11R5 */
3750 ))
3751 {
3752 if (temp_index == sizeof temp_buffer / sizeof (short))
3753 temp_index = 0;
3754 temp_buffer[temp_index++] = keysym;
3755 bufp->kind = non_ascii_keystroke;
3756 bufp->code = keysym;
3757 XSETFRAME (bufp->frame_or_window, f);
3758 bufp->modifiers
3759 = x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO (f),
3760 modifiers);
3761 bufp->timestamp = event.xkey.time;
3762 bufp++;
3763 count++;
3764 numchars--;
3765 }
3766 else if (numchars > nbytes)
3767 {
3768 register int i;
3769
3770 for (i = 0; i < nbytes; i++)
3771 {
3772 if (temp_index == sizeof temp_buffer / sizeof (short))
3773 temp_index = 0;
3774 temp_buffer[temp_index++] = copy_buffer[i];
3775 bufp->kind = ascii_keystroke;
3776 bufp->code = copy_buffer[i];
3777 XSETFRAME (bufp->frame_or_window, f);
3778 bufp->modifiers
3779 = x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO (f),
3780 modifiers);
3781 bufp->timestamp = event.xkey.time;
3782 bufp++;
3783 }
3784
3785 count += nbytes;
3786 numchars -= nbytes;
3787 }
3788 else
3789 abort ();
3790 }
3791 else
3792 abort ();
3793 }
3794 goto OTHER;
3795
3796 /* Here's a possible interpretation of the whole
3797 FocusIn-EnterNotify FocusOut-LeaveNotify mess. If you get a
3798 FocusIn event, you have to get a FocusOut event before you
3799 relinquish the focus. If you haven't received a FocusIn event,
3800 then a mere LeaveNotify is enough to free you. */
3801
3802 case EnterNotify:
3803 f = x_any_window_to_frame (dpyinfo, event.xcrossing.window);
3804
3805 if (event.xcrossing.focus) /* Entered Window */
3806 {
3807 /* Avoid nasty pop/raise loops. */
3808 if (f && (!(f->auto_raise)
3809 || !(f->auto_lower)
3810 || (event.xcrossing.time - enter_timestamp) > 500))
3811 {
3812 x_new_focus_frame (dpyinfo, f);
3813 enter_timestamp = event.xcrossing.time;
3814 }
3815 }
3816 else if (f == dpyinfo->x_focus_frame)
3817 x_new_focus_frame (dpyinfo, 0);
3818 /* EnterNotify counts as mouse movement,
3819 so update things that depend on mouse position. */
3820 if (f)
3821 note_mouse_movement (f, &event.xmotion);
3822 goto OTHER;
3823
3824 case FocusIn:
3825 f = x_any_window_to_frame (dpyinfo, event.xfocus.window);
3826 if (event.xfocus.detail != NotifyPointer)
3827 dpyinfo->x_focus_event_frame = f;
3828 if (f)
3829 x_new_focus_frame (dpyinfo, f);
3830
3831 #ifdef HAVE_X_I18N
3832 if (f && FRAME_XIC (f))
3833 XSetICFocus (FRAME_XIC (f));
3834 #endif
3835
3836 goto OTHER;
3837
3838 case LeaveNotify:
3839 f = x_top_window_to_frame (dpyinfo, event.xcrossing.window);
3840 if (f)
3841 {
3842 if (f == dpyinfo->mouse_face_mouse_frame)
3843 /* If we move outside the frame,
3844 then we're certainly no longer on any text in the frame. */
3845 clear_mouse_face (dpyinfo);
3846
3847 if (event.xcrossing.focus)
3848 x_mouse_leave (dpyinfo);
3849 else
3850 {
3851 if (f == dpyinfo->x_focus_event_frame)
3852 dpyinfo->x_focus_event_frame = 0;
3853 if (f == dpyinfo->x_focus_frame)
3854 x_new_focus_frame (dpyinfo, 0);
3855 }
3856 }
3857 goto OTHER;
3858
3859 case FocusOut:
3860 f = x_any_window_to_frame (dpyinfo, event.xfocus.window);
3861 if (event.xfocus.detail != NotifyPointer
3862 && f == dpyinfo->x_focus_event_frame)
3863 dpyinfo->x_focus_event_frame = 0;
3864 if (f && f == dpyinfo->x_focus_frame)
3865 x_new_focus_frame (dpyinfo, 0);
3866
3867 #ifdef HAVE_X_I18N
3868 if (f && FRAME_XIC (f))
3869 XUnsetICFocus (FRAME_XIC (f));
3870 #endif
3871
3872 goto OTHER;
3873
3874 case MotionNotify:
3875 {
3876 if (dpyinfo->grabbed && last_mouse_frame
3877 && FRAME_LIVE_P (last_mouse_frame))
3878 f = last_mouse_frame;
3879 else
3880 f = x_window_to_frame (dpyinfo, event.xmotion.window);
3881 if (f)
3882 note_mouse_movement (f, &event.xmotion);
3883 else
3884 {
3885 struct scroll_bar *bar
3886 = x_window_to_scroll_bar (event.xmotion.window);
3887
3888 if (bar)
3889 x_scroll_bar_note_movement (bar, &event);
3890
3891 /* If we move outside the frame,
3892 then we're certainly no longer on any text in the frame. */
3893 clear_mouse_face (dpyinfo);
3894 }
3895 }
3896 goto OTHER;
3897
3898 case ConfigureNotify:
3899 f = x_any_window_to_frame (dpyinfo, event.xconfigure.window);
3900 if (f
3901 #ifdef USE_X_TOOLKIT
3902 && (event.xconfigure.window == XtWindow (f->output_data.x->widget))
3903 #endif
3904 )
3905 {
3906 #ifndef USE_X_TOOLKIT
3907 /* In the toolkit version, change_frame_size
3908 is called by the code that handles resizing
3909 of the EmacsFrame widget. */
3910
3911 int rows = PIXEL_TO_CHAR_HEIGHT (f, event.xconfigure.height);
3912 int columns = PIXEL_TO_CHAR_WIDTH (f, event.xconfigure.width);
3913
3914 /* Even if the number of character rows and columns has
3915 not changed, the font size may have changed, so we need
3916 to check the pixel dimensions as well. */
3917 if (columns != f->width
3918 || rows != f->height
3919 || event.xconfigure.width != f->output_data.x->pixel_width
3920 || event.xconfigure.height != f->output_data.x->pixel_height)
3921 {
3922 change_frame_size (f, rows, columns, 0, 1);
3923 SET_FRAME_GARBAGED (f);
3924 }
3925 #endif
3926
3927 /* Formerly, in the USE_X_TOOLKIT version,
3928 we did not test send_event here. */
3929 if (1
3930 #ifndef USE_X_TOOLKIT
3931 && ! event.xconfigure.send_event
3932 #endif
3933 )
3934 {
3935 Window win, child;
3936 int win_x, win_y;
3937
3938 /* Find the position of the outside upper-left corner of
3939 the window, in the root coordinate system. Don't
3940 refer to the parent window here; we may be processing
3941 this event after the window manager has changed our
3942 parent, but before we have reached the ReparentNotify. */
3943 XTranslateCoordinates (FRAME_X_DISPLAY (f),
3944
3945 /* From-window, to-window. */
3946 event.xconfigure.window,
3947 FRAME_X_DISPLAY_INFO (f)->root_window,
3948
3949 /* From-position, to-position. */
3950 -event.xconfigure.border_width,
3951 -event.xconfigure.border_width,
3952 &win_x, &win_y,
3953
3954 /* Child of win. */
3955 &child);
3956 event.xconfigure.x = win_x;
3957 event.xconfigure.y = win_y;
3958 }
3959
3960 f->output_data.x->pixel_width = event.xconfigure.width;
3961 f->output_data.x->pixel_height = event.xconfigure.height;
3962 f->output_data.x->left_pos = event.xconfigure.x;
3963 f->output_data.x->top_pos = event.xconfigure.y;
3964
3965 /* What we have now is the position of Emacs's own window.
3966 Convert that to the position of the window manager window. */
3967 {
3968 int x, y;
3969 x_real_positions (f, &x, &y);
3970 f->output_data.x->left_pos = x;
3971 f->output_data.x->top_pos = y;
3972 /* Formerly we did not do this in the USE_X_TOOLKIT
3973 version. Let's try making them the same. */
3974 /* #ifndef USE_X_TOOLKIT */
3975 if (y != event.xconfigure.y)
3976 {
3977 /* Since the WM decorations come below top_pos now,
3978 we must put them below top_pos in the future. */
3979 f->output_data.x->win_gravity = NorthWestGravity;
3980 x_wm_set_size_hint (f, (long) 0, 0);
3981 }
3982 /* #endif */
3983 }
3984 }
3985 goto OTHER;
3986
3987 case ButtonPress:
3988 case ButtonRelease:
3989 {
3990 /* If we decide we want to generate an event to be seen
3991 by the rest of Emacs, we put it here. */
3992 struct input_event emacs_event;
3993 emacs_event.kind = no_event;
3994
3995 bzero (&compose_status, sizeof (compose_status));
3996
3997 if (dpyinfo->grabbed && last_mouse_frame
3998 && FRAME_LIVE_P (last_mouse_frame))
3999 f = last_mouse_frame;
4000 else
4001 f = x_window_to_frame (dpyinfo, event.xbutton.window);
4002
4003 if (f)
4004 {
4005 if (!dpyinfo->x_focus_frame || f == dpyinfo->x_focus_frame)
4006 construct_mouse_click (&emacs_event, &event, f);
4007 }
4008 else
4009 {
4010 struct scroll_bar *bar
4011 = x_window_to_scroll_bar (event.xbutton.window);
4012
4013 if (bar)
4014 x_scroll_bar_handle_click (bar, &event, &emacs_event);
4015 }
4016
4017 if (event.type == ButtonPress)
4018 {
4019 dpyinfo->grabbed |= (1 << event.xbutton.button);
4020 last_mouse_frame = f;
4021 }
4022 else
4023 {
4024 dpyinfo->grabbed &= ~(1 << event.xbutton.button);
4025 }
4026
4027 if (numchars >= 1 && emacs_event.kind != no_event)
4028 {
4029 bcopy (&emacs_event, bufp, sizeof (struct input_event));
4030 bufp++;
4031 count++;
4032 numchars--;
4033 }
4034
4035 #ifdef USE_X_TOOLKIT
4036 f = x_menubar_window_to_frame (dpyinfo, event.xbutton.window);
4037 /* For a down-event in the menu bar,
4038 don't pass it to Xt right now.
4039 Instead, save it away
4040 and we will pass it to Xt from kbd_buffer_get_event.
4041 That way, we can run some Lisp code first. */
4042 if (f && event.type == ButtonPress
4043 /* Verify the event is really within the menu bar
4044 and not just sent to it due to grabbing. */
4045 && event.xbutton.x >= 0
4046 && event.xbutton.x < f->output_data.x->pixel_width
4047 && event.xbutton.y >= 0
4048 && event.xbutton.y < f->output_data.x->menubar_height
4049 && event.xbutton.same_screen)
4050 {
4051 SET_SAVED_BUTTON_EVENT;
4052 XSETFRAME (last_mouse_press_frame, f);
4053 }
4054 else if (event.type == ButtonPress)
4055 {
4056 last_mouse_press_frame = Qnil;
4057 }
4058 #ifdef USE_MOTIF /* This should do not harm for Lucid,
4059 but I am trying to be cautious. */
4060 else if (event.type == ButtonRelease)
4061 {
4062 if (!NILP (last_mouse_press_frame))
4063 {
4064 f = XFRAME (last_mouse_press_frame);
4065 if (f->output_data.x)
4066 {
4067 SET_SAVED_BUTTON_EVENT;
4068 }
4069 }
4070 }
4071 #endif /* USE_MOTIF */
4072 else
4073 goto OTHER;
4074 #endif /* USE_X_TOOLKIT */
4075 }
4076 break;
4077
4078 case CirculateNotify:
4079 break;
4080 case CirculateRequest:
4081 break;
4082
4083 case MappingNotify:
4084 /* Someone has changed the keyboard mapping - update the
4085 local cache. */
4086 switch (event.xmapping.request)
4087 {
4088 case MappingModifier:
4089 x_find_modifier_meanings (dpyinfo);
4090 /* This is meant to fall through. */
4091 case MappingKeyboard:
4092 XRefreshKeyboardMapping (&event.xmapping);
4093 }
4094 goto OTHER;
4095
4096 default:
4097 OTHER:
4098 #ifdef USE_X_TOOLKIT
4099 BLOCK_INPUT;
4100 XtDispatchEvent (&event);
4101 UNBLOCK_INPUT;
4102 #endif /* USE_X_TOOLKIT */
4103 break;
4104 }
4105 }
4106 }
4107
4108 /* On some systems, an X bug causes Emacs to get no more events
4109 when the window is destroyed. Detect that. (1994.) */
4110 if (! event_found)
4111 {
4112 /* Emacs and the X Server eats up CPU time if XNoOp is done every time.
4113 One XNOOP in 100 loops will make Emacs terminate.
4114 B. Bretthauer, 1994 */
4115 x_noop_count++;
4116 if (x_noop_count >= 100)
4117 {
4118 x_noop_count=0;
4119
4120 if (next_noop_dpyinfo == 0)
4121 next_noop_dpyinfo = x_display_list;
4122
4123 XNoOp (next_noop_dpyinfo->display);
4124
4125 /* Each time we get here, cycle through the displays now open. */
4126 next_noop_dpyinfo = next_noop_dpyinfo->next;
4127 }
4128 }
4129
4130 /* If the focus was just given to an autoraising frame,
4131 raise it now. */
4132 /* ??? This ought to be able to handle more than one such frame. */
4133 if (pending_autoraise_frame)
4134 {
4135 x_raise_frame (pending_autoraise_frame);
4136 pending_autoraise_frame = 0;
4137 }
4138
4139 UNBLOCK_INPUT;
4140 return count;
4141 }
4142 \f
4143 /* Drawing the cursor. */
4144
4145
4146 /* Draw a hollow box cursor on frame F at X, Y.
4147 Don't change the inside of the box. */
4148
4149 static void
4150 x_draw_box (f, x, y)
4151 struct frame *f;
4152 int x, y;
4153 {
4154 int left = CHAR_TO_PIXEL_COL (f, x);
4155 int top = CHAR_TO_PIXEL_ROW (f, y);
4156 int width = FONT_WIDTH (f->output_data.x->font);
4157 int height = f->output_data.x->line_height;
4158
4159 XDrawRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
4160 f->output_data.x->cursor_gc,
4161 left, top, width - 1, height - 1);
4162 }
4163
4164 /* Clear the cursor of frame F to background color,
4165 and mark the cursor as not shown.
4166 This is used when the text where the cursor is
4167 is about to be rewritten. */
4168
4169 static void
4170 clear_cursor (f)
4171 struct frame *f;
4172 {
4173 int mask;
4174
4175 if (! FRAME_VISIBLE_P (f)
4176 || f->phys_cursor_x < 0)
4177 return;
4178
4179 x_display_cursor (f, 0);
4180 f->phys_cursor_x = -1;
4181 }
4182
4183 /* Redraw the glyph at ROW, COLUMN on frame F, in the style
4184 HIGHLIGHT. HIGHLIGHT is as defined for dumpglyphs. Return the
4185 glyph drawn. */
4186
4187 static void
4188 x_draw_single_glyph (f, row, column, glyph, highlight)
4189 struct frame *f;
4190 int row, column;
4191 GLYPH glyph;
4192 int highlight;
4193 {
4194 dumpglyphs (f,
4195 CHAR_TO_PIXEL_COL (f, column),
4196 CHAR_TO_PIXEL_ROW (f, row),
4197 &glyph, 1, highlight, 0);
4198 }
4199
4200 static void
4201 x_display_bar_cursor (f, on, x, y)
4202 struct frame *f;
4203 int on;
4204 int x, y;
4205 {
4206 struct frame_glyphs *current_glyphs = FRAME_CURRENT_GLYPHS (f);
4207
4208 /* This is pointless on invisible frames, and dangerous on garbaged
4209 frames; in the latter case, the frame may be in the midst of
4210 changing its size, and x and y may be off the frame. */
4211 if (! FRAME_VISIBLE_P (f) || FRAME_GARBAGED_P (f))
4212 return;
4213
4214 if (! on && f->phys_cursor_x < 0)
4215 return;
4216
4217 /* If there is anything wrong with the current cursor state, remove it. */
4218 if (f->phys_cursor_x >= 0
4219 && (!on
4220 || f->phys_cursor_x != x
4221 || f->phys_cursor_y != y
4222 || f->output_data.x->current_cursor != bar_cursor))
4223 {
4224 /* Erase the cursor by redrawing the character underneath it. */
4225 x_draw_single_glyph (f, f->phys_cursor_y, f->phys_cursor_x,
4226 f->phys_cursor_glyph,
4227 current_glyphs->highlight[f->phys_cursor_y]);
4228 f->phys_cursor_x = -1;
4229 }
4230
4231 /* If we now need a cursor in the new place or in the new form, do it so. */
4232 if (on
4233 && (f->phys_cursor_x < 0
4234 || (f->output_data.x->current_cursor != bar_cursor)))
4235 {
4236 f->phys_cursor_glyph
4237 = ((current_glyphs->enable[y]
4238 && x < current_glyphs->used[y])
4239 ? current_glyphs->glyphs[y][x]
4240 : SPACEGLYPH);
4241 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
4242 f->output_data.x->cursor_gc,
4243 CHAR_TO_PIXEL_COL (f, x),
4244 CHAR_TO_PIXEL_ROW (f, y),
4245 max (f->output_data.x->cursor_width, 1),
4246 f->output_data.x->line_height);
4247
4248 f->phys_cursor_x = x;
4249 f->phys_cursor_y = y;
4250
4251 f->output_data.x->current_cursor = bar_cursor;
4252 }
4253
4254 if (updating_frame != f)
4255 XFlush (FRAME_X_DISPLAY (f));
4256 }
4257
4258
4259 /* Turn the displayed cursor of frame F on or off according to ON.
4260 If ON is nonzero, where to put the cursor is specified by X and Y. */
4261
4262 static void
4263 x_display_box_cursor (f, on, x, y)
4264 struct frame *f;
4265 int on;
4266 int x, y;
4267 {
4268 struct frame_glyphs *current_glyphs = FRAME_CURRENT_GLYPHS (f);
4269
4270 /* This is pointless on invisible frames, and dangerous on garbaged
4271 frames; in the latter case, the frame may be in the midst of
4272 changing its size, and x and y may be off the frame. */
4273 if (! FRAME_VISIBLE_P (f) || FRAME_GARBAGED_P (f))
4274 return;
4275
4276 /* If cursor is off and we want it off, return quickly. */
4277 if (!on && f->phys_cursor_x < 0)
4278 return;
4279
4280 /* If cursor is currently being shown and we don't want it to be
4281 or it is in the wrong place,
4282 or we want a hollow box and it's not so, (pout!)
4283 erase it. */
4284 if (f->phys_cursor_x >= 0
4285 && (!on
4286 || f->phys_cursor_x != x
4287 || f->phys_cursor_y != y
4288 || (f->output_data.x->current_cursor != hollow_box_cursor
4289 && (f != FRAME_X_DISPLAY_INFO (f)->x_highlight_frame))))
4290 {
4291 int mouse_face_here = 0;
4292 struct frame_glyphs *active_glyphs = FRAME_CURRENT_GLYPHS (f);
4293
4294 /* If the cursor is in the mouse face area, redisplay that when
4295 we clear the cursor. */
4296 if (f == FRAME_X_DISPLAY_INFO (f)->mouse_face_mouse_frame
4297 &&
4298 (f->phys_cursor_y > FRAME_X_DISPLAY_INFO (f)->mouse_face_beg_row
4299 || (f->phys_cursor_y == FRAME_X_DISPLAY_INFO (f)->mouse_face_beg_row
4300 && f->phys_cursor_x >= FRAME_X_DISPLAY_INFO (f)->mouse_face_beg_col))
4301 &&
4302 (f->phys_cursor_y < FRAME_X_DISPLAY_INFO (f)->mouse_face_end_row
4303 || (f->phys_cursor_y == FRAME_X_DISPLAY_INFO (f)->mouse_face_end_row
4304 && f->phys_cursor_x < FRAME_X_DISPLAY_INFO (f)->mouse_face_end_col))
4305 /* Don't redraw the cursor's spot in mouse face
4306 if it is at the end of a line (on a newline).
4307 The cursor appears there, but mouse highlighting does not. */
4308 && active_glyphs->used[f->phys_cursor_y] > f->phys_cursor_x)
4309 mouse_face_here = 1;
4310
4311 /* If the font is not as tall as a whole line,
4312 we must explicitly clear the line's whole height. */
4313 if (FONT_HEIGHT (f->output_data.x->font) != f->output_data.x->line_height)
4314 XClearArea (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
4315 CHAR_TO_PIXEL_COL (f, f->phys_cursor_x),
4316 CHAR_TO_PIXEL_ROW (f, f->phys_cursor_y),
4317 FONT_WIDTH (f->output_data.x->font),
4318 f->output_data.x->line_height, False);
4319 /* Erase the cursor by redrawing the character underneath it. */
4320 x_draw_single_glyph (f, f->phys_cursor_y, f->phys_cursor_x,
4321 f->phys_cursor_glyph,
4322 (mouse_face_here
4323 ? 3
4324 : current_glyphs->highlight[f->phys_cursor_y]));
4325 f->phys_cursor_x = -1;
4326 }
4327
4328 /* If we want to show a cursor,
4329 or we want a box cursor and it's not so,
4330 write it in the right place. */
4331 if (on
4332 && (f->phys_cursor_x < 0
4333 || (f->output_data.x->current_cursor != filled_box_cursor
4334 && f == FRAME_X_DISPLAY_INFO (f)->x_highlight_frame)))
4335 {
4336 f->phys_cursor_glyph
4337 = ((current_glyphs->enable[y]
4338 && x < current_glyphs->used[y])
4339 ? current_glyphs->glyphs[y][x]
4340 : SPACEGLYPH);
4341 if (f != FRAME_X_DISPLAY_INFO (f)->x_highlight_frame)
4342 {
4343 x_draw_box (f, x, y);
4344 f->output_data.x->current_cursor = hollow_box_cursor;
4345 }
4346 else
4347 {
4348 x_draw_single_glyph (f, y, x,
4349 f->phys_cursor_glyph, 2);
4350 f->output_data.x->current_cursor = filled_box_cursor;
4351 }
4352
4353 f->phys_cursor_x = x;
4354 f->phys_cursor_y = y;
4355 }
4356
4357 if (updating_frame != f)
4358 XFlush (FRAME_X_DISPLAY (f));
4359 }
4360
4361 /* Display the cursor on frame F, or clear it, according to ON.
4362 Use the position specified by curs_x and curs_y
4363 if we are doing an update of frame F now.
4364 Otherwise use the position in the FRAME_CURSOR_X and FRAME_CURSOR_Y fields
4365 of F. */
4366
4367 x_display_cursor (f, on)
4368 struct frame *f;
4369 int on;
4370 {
4371 BLOCK_INPUT;
4372
4373 /* If we're not updating, then don't change the physical cursor
4374 position. Just change (if appropriate) the style of display. */
4375 if (f != updating_frame)
4376 {
4377 curs_x = FRAME_CURSOR_X (f);
4378 curs_y = FRAME_CURSOR_Y (f);
4379 }
4380
4381 if (FRAME_DESIRED_CURSOR (f) == filled_box_cursor)
4382 x_display_box_cursor (f, on, curs_x, curs_y);
4383 else if (FRAME_DESIRED_CURSOR (f) == bar_cursor)
4384 x_display_bar_cursor (f, on, curs_x, curs_y);
4385 else
4386 /* Those are the only two we have implemented! */
4387 abort ();
4388
4389 UNBLOCK_INPUT;
4390 }
4391
4392 /* Display the cursor on frame F, or clear it, according to ON.
4393 Don't change the cursor's position. */
4394
4395 x_update_cursor (f, on)
4396 struct frame *f;
4397 int on;
4398 {
4399 /* If we don't have any previous cursor position to use,
4400 leave the cursor off. */
4401 if (f->phys_cursor_x < 0)
4402 return;
4403
4404 BLOCK_INPUT;
4405
4406 if (FRAME_DESIRED_CURSOR (f) == filled_box_cursor)
4407 x_display_box_cursor (f, on, f->phys_cursor_x, f->phys_cursor_y);
4408 else if (FRAME_DESIRED_CURSOR (f) == bar_cursor)
4409 x_display_bar_cursor (f, on, f->phys_cursor_x, f->phys_cursor_y);
4410 else
4411 /* Those are the only two we have implemented! */
4412 abort ();
4413
4414 UNBLOCK_INPUT;
4415 }
4416 \f
4417 /* Icons. */
4418
4419 /* Refresh bitmap kitchen sink icon for frame F
4420 when we get an expose event for it. */
4421
4422 refreshicon (f)
4423 struct frame *f;
4424 {
4425 /* Normally, the window manager handles this function. */
4426 }
4427
4428 /* Make the x-window of frame F use the gnu icon bitmap. */
4429
4430 int
4431 x_bitmap_icon (f, file)
4432 struct frame *f;
4433 Lisp_Object file;
4434 {
4435 int mask, bitmap_id;
4436 Window icon_window;
4437
4438 if (FRAME_X_WINDOW (f) == 0)
4439 return 1;
4440
4441 /* Free up our existing icon bitmap if any. */
4442 if (f->output_data.x->icon_bitmap > 0)
4443 x_destroy_bitmap (f, f->output_data.x->icon_bitmap);
4444 f->output_data.x->icon_bitmap = 0;
4445
4446 if (STRINGP (file))
4447 bitmap_id = x_create_bitmap_from_file (f, file);
4448 else
4449 {
4450 /* Create the GNU bitmap if necessary. */
4451 if (FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id < 0)
4452 FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id
4453 = x_create_bitmap_from_data (f, gnu_bits,
4454 gnu_width, gnu_height);
4455
4456 /* The first time we create the GNU bitmap,
4457 this increments the refcount one extra time.
4458 As a result, the GNU bitmap is never freed.
4459 That way, we don't have to worry about allocating it again. */
4460 x_reference_bitmap (f, FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id);
4461
4462 bitmap_id = FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id;
4463 }
4464
4465 x_wm_set_icon_pixmap (f, bitmap_id);
4466 f->output_data.x->icon_bitmap = bitmap_id;
4467
4468 return 0;
4469 }
4470
4471
4472 /* Make the x-window of frame F use a rectangle with text.
4473 Use ICON_NAME as the text. */
4474
4475 int
4476 x_text_icon (f, icon_name)
4477 struct frame *f;
4478 char *icon_name;
4479 {
4480 if (FRAME_X_WINDOW (f) == 0)
4481 return 1;
4482
4483 #ifdef HAVE_X11R4
4484 {
4485 XTextProperty text;
4486 text.value = (unsigned char *) icon_name;
4487 text.encoding = XA_STRING;
4488 text.format = 8;
4489 text.nitems = strlen (icon_name);
4490 #ifdef USE_X_TOOLKIT
4491 XSetWMIconName (FRAME_X_DISPLAY (f), XtWindow (f->output_data.x->widget),
4492 &text);
4493 #else /* not USE_X_TOOLKIT */
4494 XSetWMIconName (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), &text);
4495 #endif /* not USE_X_TOOLKIT */
4496 }
4497 #else /* not HAVE_X11R4 */
4498 XSetIconName (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), icon_name);
4499 #endif /* not HAVE_X11R4 */
4500
4501 if (f->output_data.x->icon_bitmap > 0)
4502 x_destroy_bitmap (f, f->output_data.x->icon_bitmap);
4503 f->output_data.x->icon_bitmap = 0;
4504 x_wm_set_icon_pixmap (f, 0);
4505
4506 return 0;
4507 }
4508 \f
4509 /* Handling X errors. */
4510
4511 /* Handle the loss of connection to display DISPLAY. */
4512
4513 static SIGTYPE
4514 x_connection_closed (display, error_message)
4515 Display *display;
4516 char *error_message;
4517 {
4518 struct x_display_info *dpyinfo = x_display_info_for_display (display);
4519 Lisp_Object frame, tail;
4520
4521 /* Indicate that this display is dead. */
4522
4523 dpyinfo->display = 0;
4524
4525 /* First delete frames whose minibuffers are on frames
4526 that are on the dead display. */
4527 FOR_EACH_FRAME (tail, frame)
4528 {
4529 Lisp_Object minibuf_frame;
4530 minibuf_frame
4531 = WINDOW_FRAME (XWINDOW (FRAME_MINIBUF_WINDOW (XFRAME (frame))));
4532 if (FRAME_X_P (XFRAME (frame))
4533 && FRAME_X_P (XFRAME (minibuf_frame))
4534 && ! EQ (frame, minibuf_frame)
4535 && FRAME_X_DISPLAY_INFO (XFRAME (minibuf_frame)) == dpyinfo)
4536 Fdelete_frame (frame, Qt);
4537 }
4538
4539 /* Now delete all remaining frames on the dead display.
4540 We are now sure none of these is used as the minibuffer
4541 for another frame that we need to delete. */
4542 FOR_EACH_FRAME (tail, frame)
4543 if (FRAME_X_P (XFRAME (frame))
4544 && FRAME_X_DISPLAY_INFO (XFRAME (frame)) == dpyinfo)
4545 {
4546 /* Set this to t so that Fdelete_frame won't get confused
4547 trying to find a replacement. */
4548 FRAME_KBOARD (XFRAME (frame))->Vdefault_minibuffer_frame = Qt;
4549 Fdelete_frame (frame, Qt);
4550 }
4551
4552 if (dpyinfo)
4553 x_delete_display (dpyinfo);
4554
4555 if (x_display_list == 0)
4556 {
4557 fprintf (stderr, "%s\n", error_message);
4558 shut_down_emacs (0, 0, Qnil);
4559 exit (70);
4560 }
4561
4562 /* Ordinary stack unwind doesn't deal with these. */
4563 #ifdef SIGIO
4564 sigunblock (sigmask (SIGIO));
4565 #endif
4566 sigunblock (sigmask (SIGALRM));
4567 TOTALLY_UNBLOCK_INPUT;
4568
4569 clear_waiting_for_input ();
4570 error ("%s", error_message);
4571 }
4572
4573 /* This is the usual handler for X protocol errors.
4574 It kills all frames on the display that we got the error for.
4575 If that was the only one, it prints an error message and kills Emacs. */
4576
4577 static int
4578 x_error_quitter (display, error)
4579 Display *display;
4580 XErrorEvent *error;
4581 {
4582 char buf[256], buf1[356];
4583
4584 /* Note that there is no real way portable across R3/R4 to get the
4585 original error handler. */
4586
4587 XGetErrorText (display, error->error_code, buf, sizeof (buf));
4588 sprintf (buf1, "X protocol error: %s on protocol request %d",
4589 buf, error->request_code);
4590 x_connection_closed (display, buf1);
4591 }
4592
4593 /* This is the handler for X IO errors, always.
4594 It kills all frames on the display that we lost touch with.
4595 If that was the only one, it prints an error message and kills Emacs. */
4596
4597 static int
4598 x_io_error_quitter (display)
4599 Display *display;
4600 {
4601 char buf[256];
4602
4603 sprintf (buf, "Connection lost to X server `%s'", DisplayString (display));
4604 x_connection_closed (display, buf);
4605 }
4606 \f
4607 /* Handle SIGPIPE, which can happen when the connection to a server
4608 simply goes away. SIGPIPE is handled by x_connection_signal.
4609 Don't need to do anything, because the write which caused the
4610 SIGPIPE will fail, causing Xlib to invoke the X IO error handler,
4611 which will do the appropriate cleanup for us. */
4612
4613 static SIGTYPE
4614 x_connection_signal (signalnum) /* If we don't have an argument, */
4615 int signalnum; /* some compilers complain in signal calls. */
4616 {
4617 #ifdef USG
4618 /* USG systems forget handlers when they are used;
4619 must reestablish each time */
4620 signal (signalnum, x_connection_signal);
4621 #endif /* USG */
4622 }
4623 \f
4624 /* A buffer for storing X error messages. */
4625 static char *x_caught_error_message;
4626 #define X_CAUGHT_ERROR_MESSAGE_SIZE 200
4627
4628 /* An X error handler which stores the error message in
4629 x_caught_error_message. This is what's installed when
4630 x_catch_errors is in effect. */
4631
4632 static int
4633 x_error_catcher (display, error)
4634 Display *display;
4635 XErrorEvent *error;
4636 {
4637 XGetErrorText (display, error->error_code,
4638 x_caught_error_message, X_CAUGHT_ERROR_MESSAGE_SIZE);
4639 }
4640
4641
4642 /* Begin trapping X errors for display DPY. Actually we trap X errors
4643 for all displays, but DPY should be the display you are actually
4644 operating on.
4645
4646 After calling this function, X protocol errors no longer cause
4647 Emacs to exit; instead, they are recorded in x_cfc_error_message.
4648
4649 Calling x_check_errors signals an Emacs error if an X error has
4650 occurred since the last call to x_catch_errors or x_check_errors.
4651
4652 Calling x_uncatch_errors resumes the normal error handling. */
4653
4654 void x_catch_errors (), x_check_errors (), x_uncatch_errors ();
4655
4656 void
4657 x_catch_errors (dpy)
4658 Display *dpy;
4659 {
4660 /* Make sure any errors from previous requests have been dealt with. */
4661 XSync (dpy, False);
4662
4663 /* Set up the error buffer. */
4664 x_caught_error_message
4665 = (char*) xmalloc (X_CAUGHT_ERROR_MESSAGE_SIZE);
4666 x_caught_error_message[0] = '\0';
4667
4668 /* Install our little error handler. */
4669 XSetErrorHandler (x_error_catcher);
4670 }
4671
4672 /* If any X protocol errors have arrived since the last call to
4673 x_catch_errors or x_check_errors, signal an Emacs error using
4674 sprintf (a buffer, FORMAT, the x error message text) as the text. */
4675
4676 void
4677 x_check_errors (dpy, format)
4678 Display *dpy;
4679 char *format;
4680 {
4681 /* Make sure to catch any errors incurred so far. */
4682 XSync (dpy, False);
4683
4684 if (x_caught_error_message[0])
4685 {
4686 char buf[X_CAUGHT_ERROR_MESSAGE_SIZE + 56];
4687
4688 sprintf (buf, format, x_caught_error_message);
4689 x_uncatch_errors (dpy);
4690 error (buf);
4691 }
4692 }
4693
4694 /* Nonzero if we had any X protocol errors since we did x_catch_errors. */
4695
4696 int
4697 x_had_errors_p (dpy)
4698 Display *dpy;
4699 {
4700 /* Make sure to catch any errors incurred so far. */
4701 XSync (dpy, False);
4702
4703 return x_caught_error_message[0] != 0;
4704 }
4705
4706 /* Stop catching X protocol errors and let them make Emacs die. */
4707
4708 void
4709 x_uncatch_errors (dpy)
4710 Display *dpy;
4711 {
4712 xfree (x_caught_error_message);
4713 x_caught_error_message = 0;
4714 XSetErrorHandler (x_error_quitter);
4715 }
4716
4717 #if 0
4718 static unsigned int x_wire_count;
4719 x_trace_wire ()
4720 {
4721 fprintf (stderr, "Lib call: %d\n", ++x_wire_count);
4722 }
4723 #endif /* ! 0 */
4724
4725 \f
4726 /* Changing the font of the frame. */
4727
4728 /* Give frame F the font named FONTNAME as its default font, and
4729 return the full name of that font. FONTNAME may be a wildcard
4730 pattern; in that case, we choose some font that fits the pattern.
4731 The return value shows which font we chose. */
4732
4733 Lisp_Object
4734 x_new_font (f, fontname)
4735 struct frame *f;
4736 register char *fontname;
4737 {
4738 int already_loaded;
4739 int n_matching_fonts;
4740 XFontStruct *font_info;
4741 char **font_names;
4742
4743 /* Get a list of all the fonts that match this name. Once we
4744 have a list of matching fonts, we compare them against the fonts
4745 we already have by comparing font ids. */
4746 font_names = (char **) XListFonts (FRAME_X_DISPLAY (f), fontname,
4747 1024, &n_matching_fonts);
4748 /* Apparently it doesn't set n_matching_fonts to zero when it can't
4749 find any matches; font_names == 0 is the only clue. */
4750 if (! font_names)
4751 n_matching_fonts = 0;
4752
4753 /* Don't just give up if n_matching_fonts is 0.
4754 Apparently there's a bug on Suns: XListFontsWithInfo can
4755 fail to find a font, but XLoadQueryFont may still find it. */
4756
4757 /* See if we've already loaded a matching font. */
4758 already_loaded = -1;
4759 if (n_matching_fonts != 0)
4760 {
4761 int i, j;
4762
4763 for (i = 0; i < FRAME_X_DISPLAY_INFO (f)->n_fonts; i++)
4764 for (j = 0; j < n_matching_fonts; j++)
4765 if (!strcmp (FRAME_X_DISPLAY_INFO (f)->font_table[i].name, font_names[j])
4766 || !strcmp (FRAME_X_DISPLAY_INFO (f)->font_table[i].full_name, font_names[j]))
4767 {
4768 already_loaded = i;
4769 fontname = FRAME_X_DISPLAY_INFO (f)->font_table[i].full_name;
4770 goto found_font;
4771 }
4772 }
4773 found_font:
4774
4775 /* If we have, just return it from the table. */
4776 if (already_loaded >= 0)
4777 f->output_data.x->font = FRAME_X_DISPLAY_INFO (f)->font_table[already_loaded].font;
4778 /* Otherwise, load the font and add it to the table. */
4779 else
4780 {
4781 int i;
4782 char *full_name;
4783 XFontStruct *font;
4784 int n_fonts;
4785 Atom FONT_atom;
4786
4787 /* Try to find a character-cell font in the list. */
4788 #if 0
4789 /* A laudable goal, but this isn't how to do it. */
4790 for (i = 0; i < n_matching_fonts; i++)
4791 if (! font_info[i].per_char)
4792 break;
4793 #else
4794 i = 0;
4795 #endif
4796
4797 /* See comment above. */
4798 if (n_matching_fonts != 0)
4799 fontname = font_names[i];
4800
4801 font = (XFontStruct *) XLoadQueryFont (FRAME_X_DISPLAY (f), fontname);
4802 if (! font)
4803 {
4804 /* Free the information from XListFonts. */
4805 if (n_matching_fonts)
4806 XFreeFontNames (font_names);
4807 return Qnil;
4808 }
4809
4810 /* Do we need to create the table? */
4811 if (FRAME_X_DISPLAY_INFO (f)->font_table_size == 0)
4812 {
4813 FRAME_X_DISPLAY_INFO (f)->font_table_size = 16;
4814 FRAME_X_DISPLAY_INFO (f)->font_table
4815 = (struct font_info *) xmalloc (FRAME_X_DISPLAY_INFO (f)->font_table_size
4816 * sizeof (struct font_info));
4817 }
4818 /* Do we need to grow the table? */
4819 else if (FRAME_X_DISPLAY_INFO (f)->n_fonts
4820 >= FRAME_X_DISPLAY_INFO (f)->font_table_size)
4821 {
4822 FRAME_X_DISPLAY_INFO (f)->font_table_size *= 2;
4823 FRAME_X_DISPLAY_INFO (f)->font_table
4824 = (struct font_info *) xrealloc (FRAME_X_DISPLAY_INFO (f)->font_table,
4825 (FRAME_X_DISPLAY_INFO (f)->font_table_size
4826 * sizeof (struct font_info)));
4827 }
4828
4829 /* Try to get the full name of FONT. Put it in full_name. */
4830 full_name = 0;
4831 FONT_atom = XInternAtom (FRAME_X_DISPLAY (f), "FONT", False);
4832 for (i = 0; i < font->n_properties; i++)
4833 {
4834 if (FONT_atom == font->properties[i].name)
4835 {
4836 char *name = XGetAtomName (FRAME_X_DISPLAY (f),
4837 (Atom) (font->properties[i].card32));
4838 char *p = name;
4839 int dashes = 0;
4840
4841 /* Count the number of dashes in the "full name".
4842 If it is too few, this isn't really the font's full name,
4843 so don't use it.
4844 In X11R4, the fonts did not come with their canonical names
4845 stored in them. */
4846 while (*p)
4847 {
4848 if (*p == '-')
4849 dashes++;
4850 p++;
4851 }
4852
4853 if (dashes >= 13)
4854 full_name = name;
4855
4856 break;
4857 }
4858 }
4859
4860 n_fonts = FRAME_X_DISPLAY_INFO (f)->n_fonts;
4861 FRAME_X_DISPLAY_INFO (f)->font_table[n_fonts].name = (char *) xmalloc (strlen (fontname) + 1);
4862 bcopy (fontname, FRAME_X_DISPLAY_INFO (f)->font_table[n_fonts].name, strlen (fontname) + 1);
4863 if (full_name != 0)
4864 FRAME_X_DISPLAY_INFO (f)->font_table[n_fonts].full_name = full_name;
4865 else
4866 FRAME_X_DISPLAY_INFO (f)->font_table[n_fonts].full_name = FRAME_X_DISPLAY_INFO (f)->font_table[n_fonts].name;
4867 f->output_data.x->font = FRAME_X_DISPLAY_INFO (f)->font_table[n_fonts].font = font;
4868 FRAME_X_DISPLAY_INFO (f)->n_fonts++;
4869
4870 if (full_name)
4871 fontname = full_name;
4872 }
4873
4874 /* Compute the scroll bar width in character columns. */
4875 if (f->scroll_bar_pixel_width > 0)
4876 {
4877 int wid = FONT_WIDTH (f->output_data.x->font);
4878 f->scroll_bar_cols = (f->scroll_bar_pixel_width + wid-1) / wid;
4879 }
4880 else
4881 f->scroll_bar_cols = 2;
4882
4883 /* Now make the frame display the given font. */
4884 if (FRAME_X_WINDOW (f) != 0)
4885 {
4886 XSetFont (FRAME_X_DISPLAY (f), f->output_data.x->normal_gc,
4887 f->output_data.x->font->fid);
4888 XSetFont (FRAME_X_DISPLAY (f), f->output_data.x->reverse_gc,
4889 f->output_data.x->font->fid);
4890 XSetFont (FRAME_X_DISPLAY (f), f->output_data.x->cursor_gc,
4891 f->output_data.x->font->fid);
4892
4893 frame_update_line_height (f);
4894 x_set_window_size (f, 0, f->width, f->height);
4895 }
4896 else
4897 /* If we are setting a new frame's font for the first time,
4898 there are no faces yet, so this font's height is the line height. */
4899 f->output_data.x->line_height = FONT_HEIGHT (f->output_data.x->font);
4900
4901 {
4902 Lisp_Object lispy_name;
4903
4904 lispy_name = build_string (fontname);
4905
4906 /* Free the information from XListFonts. The data
4907 we actually retain comes from XLoadQueryFont. */
4908 XFreeFontNames (font_names);
4909
4910 return lispy_name;
4911 }
4912 }
4913 \f
4914 /* Calculate the absolute position in frame F
4915 from its current recorded position values and gravity. */
4916
4917 x_calc_absolute_position (f)
4918 struct frame *f;
4919 {
4920 Window win, child;
4921 int win_x = 0, win_y = 0;
4922 int flags = f->output_data.x->size_hint_flags;
4923 int this_window;
4924
4925 #ifdef USE_X_TOOLKIT
4926 this_window = XtWindow (f->output_data.x->widget);
4927 #else
4928 this_window = FRAME_X_WINDOW (f);
4929 #endif
4930
4931 /* Find the position of the outside upper-left corner of
4932 the inner window, with respect to the outer window. */
4933 if (f->output_data.x->parent_desc != FRAME_X_DISPLAY_INFO (f)->root_window)
4934 {
4935 BLOCK_INPUT;
4936 XTranslateCoordinates (FRAME_X_DISPLAY (f),
4937
4938 /* From-window, to-window. */
4939 this_window,
4940 f->output_data.x->parent_desc,
4941
4942 /* From-position, to-position. */
4943 0, 0, &win_x, &win_y,
4944
4945 /* Child of win. */
4946 &child);
4947 UNBLOCK_INPUT;
4948 }
4949
4950 /* Treat negative positions as relative to the leftmost bottommost
4951 position that fits on the screen. */
4952 if (flags & XNegative)
4953 f->output_data.x->left_pos = (FRAME_X_DISPLAY_INFO (f)->width
4954 - 2 * f->output_data.x->border_width - win_x
4955 - PIXEL_WIDTH (f)
4956 + f->output_data.x->left_pos);
4957
4958 if (flags & YNegative)
4959 /* We used to subtract f->output_data.x->menubar_height here
4960 in the toolkit case, but PIXEL_HEIGHT already includes that. */
4961 f->output_data.x->top_pos = (FRAME_X_DISPLAY_INFO (f)->height
4962 - 2 * f->output_data.x->border_width - win_y
4963 - PIXEL_HEIGHT (f)
4964 + f->output_data.x->top_pos);
4965
4966 /* The left_pos and top_pos
4967 are now relative to the top and left screen edges,
4968 so the flags should correspond. */
4969 f->output_data.x->size_hint_flags &= ~ (XNegative | YNegative);
4970 }
4971
4972 /* CHANGE_GRAVITY is 1 when calling from Fset_frame_position,
4973 to really change the position, and 0 when calling from
4974 x_make_frame_visible (in that case, XOFF and YOFF are the current
4975 position values). It is -1 when calling from x_set_frame_parameters,
4976 which means, do adjust for borders but don't change the gravity. */
4977
4978 x_set_offset (f, xoff, yoff, change_gravity)
4979 struct frame *f;
4980 register int xoff, yoff;
4981 int change_gravity;
4982 {
4983 int modified_top, modified_left;
4984
4985 if (change_gravity > 0)
4986 {
4987 f->output_data.x->top_pos = yoff;
4988 f->output_data.x->left_pos = xoff;
4989 f->output_data.x->size_hint_flags &= ~ (XNegative | YNegative);
4990 if (xoff < 0)
4991 f->output_data.x->size_hint_flags |= XNegative;
4992 if (yoff < 0)
4993 f->output_data.x->size_hint_flags |= YNegative;
4994 f->output_data.x->win_gravity = NorthWestGravity;
4995 }
4996 x_calc_absolute_position (f);
4997
4998 BLOCK_INPUT;
4999 x_wm_set_size_hint (f, (long) 0, 0);
5000
5001 /* It is a mystery why we need to add the border_width here
5002 when the frame is already visible, but experiment says we do. */
5003 modified_left = f->output_data.x->left_pos;
5004 modified_top = f->output_data.x->top_pos;
5005 if (change_gravity != 0)
5006 {
5007 modified_left += f->output_data.x->border_width;
5008 modified_top += f->output_data.x->border_width;
5009 }
5010
5011 #ifdef USE_X_TOOLKIT
5012 XMoveWindow (FRAME_X_DISPLAY (f), XtWindow (f->output_data.x->widget),
5013 modified_left, modified_top);
5014 #else /* not USE_X_TOOLKIT */
5015 XMoveWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5016 modified_left, modified_top);
5017 #endif /* not USE_X_TOOLKIT */
5018 UNBLOCK_INPUT;
5019 }
5020
5021 /* Call this to change the size of frame F's x-window.
5022 If CHANGE_GRAVITY is 1, we change to top-left-corner window gravity
5023 for this size change and subsequent size changes.
5024 Otherwise we leave the window gravity unchanged. */
5025
5026 x_set_window_size (f, change_gravity, cols, rows)
5027 struct frame *f;
5028 int change_gravity;
5029 int cols, rows;
5030 {
5031 int pixelwidth, pixelheight;
5032 int mask;
5033 Lisp_Object window;
5034 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
5035
5036 BLOCK_INPUT;
5037
5038 #ifdef USE_X_TOOLKIT
5039 {
5040 /* The x and y position of the widget is clobbered by the
5041 call to XtSetValues within EmacsFrameSetCharSize.
5042 This is a real kludge, but I don't understand Xt so I can't
5043 figure out a correct fix. Can anyone else tell me? -- rms. */
5044 int xpos = f->output_data.x->widget->core.x;
5045 int ypos = f->output_data.x->widget->core.y;
5046 EmacsFrameSetCharSize (f->output_data.x->edit_widget, cols, rows);
5047 f->output_data.x->widget->core.x = xpos;
5048 f->output_data.x->widget->core.y = ypos;
5049 }
5050
5051 #else /* not USE_X_TOOLKIT */
5052
5053 check_frame_size (f, &rows, &cols);
5054 f->output_data.x->vertical_scroll_bar_extra
5055 = (!FRAME_HAS_VERTICAL_SCROLL_BARS (f)
5056 ? 0
5057 : FRAME_SCROLL_BAR_PIXEL_WIDTH (f) > 0
5058 ? FRAME_SCROLL_BAR_PIXEL_WIDTH (f)
5059 : (FRAME_SCROLL_BAR_COLS (f) * FONT_WIDTH (f->output_data.x->font)));
5060 pixelwidth = CHAR_TO_PIXEL_WIDTH (f, cols);
5061 pixelheight = CHAR_TO_PIXEL_HEIGHT (f, rows);
5062
5063 f->output_data.x->win_gravity = NorthWestGravity;
5064 x_wm_set_size_hint (f, (long) 0, 0);
5065
5066 XSync (FRAME_X_DISPLAY (f), False);
5067 XResizeWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5068 pixelwidth, pixelheight);
5069
5070 /* Now, strictly speaking, we can't be sure that this is accurate,
5071 but the window manager will get around to dealing with the size
5072 change request eventually, and we'll hear how it went when the
5073 ConfigureNotify event gets here.
5074
5075 We could just not bother storing any of this information here,
5076 and let the ConfigureNotify event set everything up, but that
5077 might be kind of confusing to the lisp code, since size changes
5078 wouldn't be reported in the frame parameters until some random
5079 point in the future when the ConfigureNotify event arrives. */
5080 change_frame_size (f, rows, cols, 0, 0);
5081 PIXEL_WIDTH (f) = pixelwidth;
5082 PIXEL_HEIGHT (f) = pixelheight;
5083
5084 /* We've set {FRAME,PIXEL}_{WIDTH,HEIGHT} to the values we hope to
5085 receive in the ConfigureNotify event; if we get what we asked
5086 for, then the event won't cause the screen to become garbaged, so
5087 we have to make sure to do it here. */
5088 SET_FRAME_GARBAGED (f);
5089
5090 XFlush (FRAME_X_DISPLAY (f));
5091
5092 #endif /* not USE_X_TOOLKIT */
5093
5094 /* If cursor was outside the new size, mark it as off. */
5095 if (f->phys_cursor_y >= rows
5096 || f->phys_cursor_x >= cols)
5097 {
5098 f->phys_cursor_x = -1;
5099 f->phys_cursor_y = -1;
5100 }
5101
5102 /* Clear out any recollection of where the mouse highlighting was,
5103 since it might be in a place that's outside the new frame size.
5104 Actually checking whether it is outside is a pain in the neck,
5105 so don't try--just let the highlighting be done afresh with new size. */
5106 window = dpyinfo->mouse_face_window;
5107 if (! NILP (window) && XFRAME (window) == f)
5108 {
5109 dpyinfo->mouse_face_beg_row = dpyinfo->mouse_face_beg_col = -1;
5110 dpyinfo->mouse_face_end_row = dpyinfo->mouse_face_end_col = -1;
5111 dpyinfo->mouse_face_window = Qnil;
5112 }
5113
5114 UNBLOCK_INPUT;
5115 }
5116 \f
5117 /* Mouse warping. */
5118
5119 void
5120 x_set_mouse_position (f, x, y)
5121 struct frame *f;
5122 int x, y;
5123 {
5124 int pix_x, pix_y;
5125
5126 pix_x = CHAR_TO_PIXEL_COL (f, x) + FONT_WIDTH (f->output_data.x->font) / 2;
5127 pix_y = CHAR_TO_PIXEL_ROW (f, y) + f->output_data.x->line_height / 2;
5128
5129 if (pix_x < 0) pix_x = 0;
5130 if (pix_x > PIXEL_WIDTH (f)) pix_x = PIXEL_WIDTH (f);
5131
5132 if (pix_y < 0) pix_y = 0;
5133 if (pix_y > PIXEL_HEIGHT (f)) pix_y = PIXEL_HEIGHT (f);
5134
5135 BLOCK_INPUT;
5136
5137 XWarpPointer (FRAME_X_DISPLAY (f), None, FRAME_X_WINDOW (f),
5138 0, 0, 0, 0, pix_x, pix_y);
5139 UNBLOCK_INPUT;
5140 }
5141
5142 /* Move the mouse to position pixel PIX_X, PIX_Y relative to frame F. */
5143
5144 void
5145 x_set_mouse_pixel_position (f, pix_x, pix_y)
5146 struct frame *f;
5147 int pix_x, pix_y;
5148 {
5149 BLOCK_INPUT;
5150
5151 XWarpPointer (FRAME_X_DISPLAY (f), None, FRAME_X_WINDOW (f),
5152 0, 0, 0, 0, pix_x, pix_y);
5153 UNBLOCK_INPUT;
5154 }
5155 \f
5156 /* focus shifting, raising and lowering. */
5157
5158 x_focus_on_frame (f)
5159 struct frame *f;
5160 {
5161 #if 0 /* This proves to be unpleasant. */
5162 x_raise_frame (f);
5163 #endif
5164 #if 0
5165 /* I don't think that the ICCCM allows programs to do things like this
5166 without the interaction of the window manager. Whatever you end up
5167 doing with this code, do it to x_unfocus_frame too. */
5168 XSetInputFocus (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5169 RevertToPointerRoot, CurrentTime);
5170 #endif /* ! 0 */
5171 }
5172
5173 x_unfocus_frame (f)
5174 struct frame *f;
5175 {
5176 #if 0
5177 /* Look at the remarks in x_focus_on_frame. */
5178 if (FRAME_X_DISPLAY_INFO (f)->x_focus_frame == f)
5179 XSetInputFocus (FRAME_X_DISPLAY (f), PointerRoot,
5180 RevertToPointerRoot, CurrentTime);
5181 #endif /* ! 0 */
5182 }
5183
5184 /* Raise frame F. */
5185
5186 x_raise_frame (f)
5187 struct frame *f;
5188 {
5189 if (f->async_visible)
5190 {
5191 BLOCK_INPUT;
5192 #ifdef USE_X_TOOLKIT
5193 XRaiseWindow (FRAME_X_DISPLAY (f), XtWindow (f->output_data.x->widget));
5194 #else /* not USE_X_TOOLKIT */
5195 XRaiseWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
5196 #endif /* not USE_X_TOOLKIT */
5197 XFlush (FRAME_X_DISPLAY (f));
5198 UNBLOCK_INPUT;
5199 }
5200 }
5201
5202 /* Lower frame F. */
5203
5204 x_lower_frame (f)
5205 struct frame *f;
5206 {
5207 if (f->async_visible)
5208 {
5209 BLOCK_INPUT;
5210 #ifdef USE_X_TOOLKIT
5211 XLowerWindow (FRAME_X_DISPLAY (f), XtWindow (f->output_data.x->widget));
5212 #else /* not USE_X_TOOLKIT */
5213 XLowerWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
5214 #endif /* not USE_X_TOOLKIT */
5215 XFlush (FRAME_X_DISPLAY (f));
5216 UNBLOCK_INPUT;
5217 }
5218 }
5219
5220 static void
5221 XTframe_raise_lower (f, raise_flag)
5222 FRAME_PTR f;
5223 int raise_flag;
5224 {
5225 if (raise_flag)
5226 x_raise_frame (f);
5227 else
5228 x_lower_frame (f);
5229 }
5230 \f
5231 /* Change of visibility. */
5232
5233 /* This tries to wait until the frame is really visible.
5234 However, if the window manager asks the user where to position
5235 the frame, this will return before the user finishes doing that.
5236 The frame will not actually be visible at that time,
5237 but it will become visible later when the window manager
5238 finishes with it. */
5239
5240 x_make_frame_visible (f)
5241 struct frame *f;
5242 {
5243 int mask;
5244 Lisp_Object type;
5245
5246 BLOCK_INPUT;
5247
5248 type = x_icon_type (f);
5249 if (!NILP (type))
5250 x_bitmap_icon (f, type);
5251
5252 if (! FRAME_VISIBLE_P (f))
5253 {
5254 /* We test FRAME_GARBAGED_P here to make sure we don't
5255 call x_set_offset a second time
5256 if we get to x_make_frame_visible a second time
5257 before the window gets really visible. */
5258 if (! FRAME_ICONIFIED_P (f)
5259 && ! f->output_data.x->asked_for_visible)
5260 x_set_offset (f, f->output_data.x->left_pos, f->output_data.x->top_pos, 0);
5261
5262 f->output_data.x->asked_for_visible = 1;
5263
5264 if (! EQ (Vx_no_window_manager, Qt))
5265 x_wm_set_window_state (f, NormalState);
5266 #ifdef USE_X_TOOLKIT
5267 /* This was XtPopup, but that did nothing for an iconified frame. */
5268 XtMapWidget (f->output_data.x->widget);
5269 #else /* not USE_X_TOOLKIT */
5270 XMapRaised (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
5271 #endif /* not USE_X_TOOLKIT */
5272 #if 0 /* This seems to bring back scroll bars in the wrong places
5273 if the window configuration has changed. They seem
5274 to come back ok without this. */
5275 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
5276 XMapSubwindows (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
5277 #endif
5278 }
5279
5280 XFlush (FRAME_X_DISPLAY (f));
5281
5282 /* Synchronize to ensure Emacs knows the frame is visible
5283 before we do anything else. We do this loop with input not blocked
5284 so that incoming events are handled. */
5285 {
5286 Lisp_Object frame;
5287 int count = input_signal_count;
5288
5289 /* This must come after we set COUNT. */
5290 UNBLOCK_INPUT;
5291
5292 XSETFRAME (frame, f);
5293
5294 while (1)
5295 {
5296 x_sync (f);
5297 /* Once we have handled input events,
5298 we should have received the MapNotify if one is coming.
5299 So if we have not got it yet, stop looping.
5300 Some window managers make their own decisions
5301 about visibility. */
5302 if (input_signal_count != count)
5303 break;
5304 /* Machines that do polling rather than SIGIO have been observed
5305 to go into a busy-wait here. So we'll fake an alarm signal
5306 to let the handler know that there's something to be read.
5307 We used to raise a real alarm, but it seems that the handler
5308 isn't always enabled here. This is probably a bug. */
5309 if (input_polling_used ())
5310 {
5311 /* It could be confusing if a real alarm arrives while processing
5312 the fake one. Turn it off and let the handler reset it. */
5313 alarm (0);
5314 input_poll_signal ();
5315 }
5316 /* Once we have handled input events,
5317 we should have received the MapNotify if one is coming.
5318 So if we have not got it yet, stop looping.
5319 Some window managers make their own decisions
5320 about visibility. */
5321 if (input_signal_count != count)
5322 break;
5323 }
5324 FRAME_SAMPLE_VISIBILITY (f);
5325 }
5326 }
5327
5328 /* Change from mapped state to withdrawn state. */
5329
5330 /* Make the frame visible (mapped and not iconified). */
5331
5332 x_make_frame_invisible (f)
5333 struct frame *f;
5334 {
5335 int mask;
5336 Window window;
5337
5338 #ifdef USE_X_TOOLKIT
5339 /* Use the frame's outermost window, not the one we normally draw on. */
5340 window = XtWindow (f->output_data.x->widget);
5341 #else /* not USE_X_TOOLKIT */
5342 window = FRAME_X_WINDOW (f);
5343 #endif /* not USE_X_TOOLKIT */
5344
5345 /* Don't keep the highlight on an invisible frame. */
5346 if (FRAME_X_DISPLAY_INFO (f)->x_highlight_frame == f)
5347 FRAME_X_DISPLAY_INFO (f)->x_highlight_frame = 0;
5348
5349 #if 0/* This might add unreliability; I don't trust it -- rms. */
5350 if (! f->async_visible && ! f->async_iconified)
5351 return;
5352 #endif
5353
5354 BLOCK_INPUT;
5355
5356 /* Before unmapping the window, update the WM_SIZE_HINTS property to claim
5357 that the current position of the window is user-specified, rather than
5358 program-specified, so that when the window is mapped again, it will be
5359 placed at the same location, without forcing the user to position it
5360 by hand again (they have already done that once for this window.) */
5361 x_wm_set_size_hint (f, (long) 0, 1);
5362
5363 #ifdef HAVE_X11R4
5364
5365 if (! XWithdrawWindow (FRAME_X_DISPLAY (f), window,
5366 DefaultScreen (FRAME_X_DISPLAY (f))))
5367 {
5368 UNBLOCK_INPUT_RESIGNAL;
5369 error ("Can't notify window manager of window withdrawal");
5370 }
5371 #else /* ! defined (HAVE_X11R4) */
5372
5373 /* Tell the window manager what we're going to do. */
5374 if (! EQ (Vx_no_window_manager, Qt))
5375 {
5376 XEvent unmap;
5377
5378 unmap.xunmap.type = UnmapNotify;
5379 unmap.xunmap.window = window;
5380 unmap.xunmap.event = DefaultRootWindow (FRAME_X_DISPLAY (f));
5381 unmap.xunmap.from_configure = False;
5382 if (! XSendEvent (FRAME_X_DISPLAY (f),
5383 DefaultRootWindow (FRAME_X_DISPLAY (f)),
5384 False,
5385 SubstructureRedirectMask|SubstructureNotifyMask,
5386 &unmap))
5387 {
5388 UNBLOCK_INPUT_RESIGNAL;
5389 error ("Can't notify window manager of withdrawal");
5390 }
5391 }
5392
5393 /* Unmap the window ourselves. Cheeky! */
5394 XUnmapWindow (FRAME_X_DISPLAY (f), window);
5395 #endif /* ! defined (HAVE_X11R4) */
5396
5397 /* We can't distinguish this from iconification
5398 just by the event that we get from the server.
5399 So we can't win using the usual strategy of letting
5400 FRAME_SAMPLE_VISIBILITY set this. So do it by hand,
5401 and synchronize with the server to make sure we agree. */
5402 f->visible = 0;
5403 FRAME_ICONIFIED_P (f) = 0;
5404 f->async_visible = 0;
5405 f->async_iconified = 0;
5406
5407 x_sync (f);
5408
5409 UNBLOCK_INPUT;
5410 }
5411
5412 /* Change window state from mapped to iconified. */
5413
5414 x_iconify_frame (f)
5415 struct frame *f;
5416 {
5417 int mask;
5418 int result;
5419 Lisp_Object type;
5420
5421 /* Don't keep the highlight on an invisible frame. */
5422 if (FRAME_X_DISPLAY_INFO (f)->x_highlight_frame == f)
5423 FRAME_X_DISPLAY_INFO (f)->x_highlight_frame = 0;
5424
5425 if (f->async_iconified)
5426 return;
5427
5428 BLOCK_INPUT;
5429
5430 FRAME_SAMPLE_VISIBILITY (f);
5431
5432 type = x_icon_type (f);
5433 if (!NILP (type))
5434 x_bitmap_icon (f, type);
5435
5436 #ifdef USE_X_TOOLKIT
5437
5438 if (! FRAME_VISIBLE_P (f))
5439 {
5440 if (! EQ (Vx_no_window_manager, Qt))
5441 x_wm_set_window_state (f, IconicState);
5442 /* This was XtPopup, but that did nothing for an iconified frame. */
5443 XtMapWidget (f->output_data.x->widget);
5444 /* The server won't give us any event to indicate
5445 that an invisible frame was changed to an icon,
5446 so we have to record it here. */
5447 f->iconified = 1;
5448 f->async_iconified = 1;
5449 UNBLOCK_INPUT;
5450 return;
5451 }
5452
5453 result = XIconifyWindow (FRAME_X_DISPLAY (f),
5454 XtWindow (f->output_data.x->widget),
5455 DefaultScreen (FRAME_X_DISPLAY (f)));
5456 UNBLOCK_INPUT;
5457
5458 if (!result)
5459 error ("Can't notify window manager of iconification");
5460
5461 f->async_iconified = 1;
5462
5463 BLOCK_INPUT;
5464 XFlush (FRAME_X_DISPLAY (f));
5465 UNBLOCK_INPUT;
5466 #else /* not USE_X_TOOLKIT */
5467
5468 /* Make sure the X server knows where the window should be positioned,
5469 in case the user deiconifies with the window manager. */
5470 if (! FRAME_VISIBLE_P (f) && !FRAME_ICONIFIED_P (f))
5471 x_set_offset (f, f->output_data.x->left_pos, f->output_data.x->top_pos, 0);
5472
5473 /* Since we don't know which revision of X we're running, we'll use both
5474 the X11R3 and X11R4 techniques. I don't know if this is a good idea. */
5475
5476 /* X11R4: send a ClientMessage to the window manager using the
5477 WM_CHANGE_STATE type. */
5478 {
5479 XEvent message;
5480
5481 message.xclient.window = FRAME_X_WINDOW (f);
5482 message.xclient.type = ClientMessage;
5483 message.xclient.message_type = FRAME_X_DISPLAY_INFO (f)->Xatom_wm_change_state;
5484 message.xclient.format = 32;
5485 message.xclient.data.l[0] = IconicState;
5486
5487 if (! XSendEvent (FRAME_X_DISPLAY (f),
5488 DefaultRootWindow (FRAME_X_DISPLAY (f)),
5489 False,
5490 SubstructureRedirectMask | SubstructureNotifyMask,
5491 &message))
5492 {
5493 UNBLOCK_INPUT_RESIGNAL;
5494 error ("Can't notify window manager of iconification");
5495 }
5496 }
5497
5498 /* X11R3: set the initial_state field of the window manager hints to
5499 IconicState. */
5500 x_wm_set_window_state (f, IconicState);
5501
5502 if (!FRAME_VISIBLE_P (f))
5503 {
5504 /* If the frame was withdrawn, before, we must map it. */
5505 XMapRaised (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
5506 }
5507
5508 f->async_iconified = 1;
5509
5510 XFlush (FRAME_X_DISPLAY (f));
5511 UNBLOCK_INPUT;
5512 #endif /* not USE_X_TOOLKIT */
5513 }
5514 \f
5515 /* Destroy the X window of frame F. */
5516
5517 x_destroy_window (f)
5518 struct frame *f;
5519 {
5520 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
5521
5522 BLOCK_INPUT;
5523
5524 /* If a display connection is dead, don't try sending more
5525 commands to the X server. */
5526 if (dpyinfo->display != 0)
5527 {
5528 if (f->output_data.x->icon_desc != 0)
5529 XDestroyWindow (FRAME_X_DISPLAY (f), f->output_data.x->icon_desc);
5530 #ifdef HAVE_X_I18N
5531 if (FRAME_XIM (f))
5532 {
5533 XDestroyIC (FRAME_XIC (f));
5534 #if ! defined (SOLARIS2) || defined (HAVE_X11R6)
5535 /* This line causes crashes on Solaris with Openwin,
5536 due to an apparent bug in XCloseIM.
5537 X11R6 seems not to have the bug. */
5538 XCloseIM (FRAME_XIM (f));
5539 #endif
5540 }
5541 #endif
5542 XDestroyWindow (FRAME_X_DISPLAY (f), f->output_data.x->window_desc);
5543 #ifdef USE_X_TOOLKIT
5544 XtDestroyWidget (f->output_data.x->widget);
5545 free_frame_menubar (f);
5546 #endif /* USE_X_TOOLKIT */
5547
5548 free_frame_faces (f);
5549 XFlush (FRAME_X_DISPLAY (f));
5550 }
5551
5552 xfree (f->output_data.x);
5553 f->output_data.x = 0;
5554 if (f == dpyinfo->x_focus_frame)
5555 dpyinfo->x_focus_frame = 0;
5556 if (f == dpyinfo->x_focus_event_frame)
5557 dpyinfo->x_focus_event_frame = 0;
5558 if (f == dpyinfo->x_highlight_frame)
5559 dpyinfo->x_highlight_frame = 0;
5560
5561 dpyinfo->reference_count--;
5562
5563 if (f == dpyinfo->mouse_face_mouse_frame)
5564 {
5565 dpyinfo->mouse_face_beg_row
5566 = dpyinfo->mouse_face_beg_col = -1;
5567 dpyinfo->mouse_face_end_row
5568 = dpyinfo->mouse_face_end_col = -1;
5569 dpyinfo->mouse_face_window = Qnil;
5570 }
5571
5572 UNBLOCK_INPUT;
5573 }
5574 \f
5575 /* Setting window manager hints. */
5576
5577 /* Set the normal size hints for the window manager, for frame F.
5578 FLAGS is the flags word to use--or 0 meaning preserve the flags
5579 that the window now has.
5580 If USER_POSITION is nonzero, we set the USPosition
5581 flag (this is useful when FLAGS is 0). */
5582
5583 x_wm_set_size_hint (f, flags, user_position)
5584 struct frame *f;
5585 long flags;
5586 int user_position;
5587 {
5588 XSizeHints size_hints;
5589
5590 #ifdef USE_X_TOOLKIT
5591 Arg al[2];
5592 int ac = 0;
5593 Dimension widget_width, widget_height;
5594 Window window = XtWindow (f->output_data.x->widget);
5595 #else /* not USE_X_TOOLKIT */
5596 Window window = FRAME_X_WINDOW (f);
5597 #endif /* not USE_X_TOOLKIT */
5598
5599 /* Setting PMaxSize caused various problems. */
5600 size_hints.flags = PResizeInc | PMinSize /* | PMaxSize */;
5601
5602 flexlines = f->height;
5603
5604 size_hints.x = f->output_data.x->left_pos;
5605 size_hints.y = f->output_data.x->top_pos;
5606
5607 #ifdef USE_X_TOOLKIT
5608 XtSetArg (al[ac], XtNwidth, &widget_width); ac++;
5609 XtSetArg (al[ac], XtNheight, &widget_height); ac++;
5610 XtGetValues (f->output_data.x->widget, al, ac);
5611 size_hints.height = widget_height;
5612 size_hints.width = widget_width;
5613 #else /* not USE_X_TOOLKIT */
5614 size_hints.height = PIXEL_HEIGHT (f);
5615 size_hints.width = PIXEL_WIDTH (f);
5616 #endif /* not USE_X_TOOLKIT */
5617
5618 size_hints.width_inc = FONT_WIDTH (f->output_data.x->font);
5619 size_hints.height_inc = f->output_data.x->line_height;
5620 size_hints.max_width
5621 = FRAME_X_DISPLAY_INFO (f)->width - CHAR_TO_PIXEL_WIDTH (f, 0);
5622 size_hints.max_height
5623 = FRAME_X_DISPLAY_INFO (f)->height - CHAR_TO_PIXEL_HEIGHT (f, 0);
5624
5625 /* Calculate the base and minimum sizes.
5626
5627 (When we use the X toolkit, we don't do it here.
5628 Instead we copy the values that the widgets are using, below.) */
5629 #ifndef USE_X_TOOLKIT
5630 {
5631 int base_width, base_height;
5632 int min_rows = 0, min_cols = 0;
5633
5634 base_width = CHAR_TO_PIXEL_WIDTH (f, 0);
5635 base_height = CHAR_TO_PIXEL_HEIGHT (f, 0);
5636
5637 check_frame_size (f, &min_rows, &min_cols);
5638
5639 /* The window manager uses the base width hints to calculate the
5640 current number of rows and columns in the frame while
5641 resizing; min_width and min_height aren't useful for this
5642 purpose, since they might not give the dimensions for a
5643 zero-row, zero-column frame.
5644
5645 We use the base_width and base_height members if we have
5646 them; otherwise, we set the min_width and min_height members
5647 to the size for a zero x zero frame. */
5648
5649 #ifdef HAVE_X11R4
5650 size_hints.flags |= PBaseSize;
5651 size_hints.base_width = base_width;
5652 size_hints.base_height = base_height;
5653 size_hints.min_width = base_width + min_cols * size_hints.width_inc;
5654 size_hints.min_height = base_height + min_rows * size_hints.height_inc;
5655 #else
5656 size_hints.min_width = base_width;
5657 size_hints.min_height = base_height;
5658 #endif
5659 }
5660
5661 /* If we don't need the old flags, we don't need the old hint at all. */
5662 if (flags)
5663 {
5664 size_hints.flags |= flags;
5665 goto no_read;
5666 }
5667 #endif /* not USE_X_TOOLKIT */
5668
5669 {
5670 XSizeHints hints; /* Sometimes I hate X Windows... */
5671 long supplied_return;
5672 int value;
5673
5674 #ifdef HAVE_X11R4
5675 value = XGetWMNormalHints (FRAME_X_DISPLAY (f), window, &hints,
5676 &supplied_return);
5677 #else
5678 value = XGetNormalHints (FRAME_X_DISPLAY (f), window, &hints);
5679 #endif
5680
5681 #ifdef USE_X_TOOLKIT
5682 size_hints.base_height = hints.base_height;
5683 size_hints.base_width = hints.base_width;
5684 size_hints.min_height = hints.min_height;
5685 size_hints.min_width = hints.min_width;
5686 #endif
5687
5688 if (flags)
5689 size_hints.flags |= flags;
5690 else
5691 {
5692 if (value == 0)
5693 hints.flags = 0;
5694 if (hints.flags & PSize)
5695 size_hints.flags |= PSize;
5696 if (hints.flags & PPosition)
5697 size_hints.flags |= PPosition;
5698 if (hints.flags & USPosition)
5699 size_hints.flags |= USPosition;
5700 if (hints.flags & USSize)
5701 size_hints.flags |= USSize;
5702 }
5703 }
5704
5705 no_read:
5706
5707 #ifdef PWinGravity
5708 size_hints.win_gravity = f->output_data.x->win_gravity;
5709 size_hints.flags |= PWinGravity;
5710
5711 if (user_position)
5712 {
5713 size_hints.flags &= ~ PPosition;
5714 size_hints.flags |= USPosition;
5715 }
5716 #endif /* PWinGravity */
5717
5718 #ifdef HAVE_X11R4
5719 XSetWMNormalHints (FRAME_X_DISPLAY (f), window, &size_hints);
5720 #else
5721 XSetNormalHints (FRAME_X_DISPLAY (f), window, &size_hints);
5722 #endif
5723 }
5724
5725 /* Used for IconicState or NormalState */
5726 x_wm_set_window_state (f, state)
5727 struct frame *f;
5728 int state;
5729 {
5730 #ifdef USE_X_TOOLKIT
5731 Arg al[1];
5732
5733 XtSetArg (al[0], XtNinitialState, state);
5734 XtSetValues (f->output_data.x->widget, al, 1);
5735 #else /* not USE_X_TOOLKIT */
5736 Window window = FRAME_X_WINDOW (f);
5737
5738 f->output_data.x->wm_hints.flags |= StateHint;
5739 f->output_data.x->wm_hints.initial_state = state;
5740
5741 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints);
5742 #endif /* not USE_X_TOOLKIT */
5743 }
5744
5745 x_wm_set_icon_pixmap (f, pixmap_id)
5746 struct frame *f;
5747 int pixmap_id;
5748 {
5749 Pixmap icon_pixmap;
5750
5751 #ifdef USE_X_TOOLKIT
5752 Window window = XtWindow (f->output_data.x->widget);
5753 #else
5754 Window window = FRAME_X_WINDOW (f);
5755 #endif
5756
5757 if (pixmap_id > 0)
5758 {
5759 icon_pixmap = x_bitmap_pixmap (f, pixmap_id);
5760 f->output_data.x->wm_hints.icon_pixmap = icon_pixmap;
5761 }
5762 else
5763 {
5764 /* It seems there is no way to turn off use of an icon pixmap.
5765 The following line does it, only if no icon has yet been created,
5766 for some window managers. But with mwm it crashes.
5767 Some people say it should clear the IconPixmapHint bit in this case,
5768 but that doesn't work, and the X consortium said it isn't the
5769 right thing at all. Since there is no way to win,
5770 best to explicitly give up. */
5771 #if 0
5772 f->output_data.x->wm_hints.icon_pixmap = None;
5773 #else
5774 return;
5775 #endif
5776 }
5777
5778 #ifdef USE_X_TOOLKIT /* same as in x_wm_set_window_state. */
5779
5780 {
5781 Arg al[1];
5782 XtSetArg (al[0], XtNiconPixmap, icon_pixmap);
5783 XtSetValues (f->output_data.x->widget, al, 1);
5784 }
5785
5786 #else /* not USE_X_TOOLKIT */
5787
5788 f->output_data.x->wm_hints.flags |= IconPixmapHint;
5789 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints);
5790
5791 #endif /* not USE_X_TOOLKIT */
5792 }
5793
5794 x_wm_set_icon_position (f, icon_x, icon_y)
5795 struct frame *f;
5796 int icon_x, icon_y;
5797 {
5798 #ifdef USE_X_TOOLKIT
5799 Window window = XtWindow (f->output_data.x->widget);
5800 #else
5801 Window window = FRAME_X_WINDOW (f);
5802 #endif
5803
5804 f->output_data.x->wm_hints.flags |= IconPositionHint;
5805 f->output_data.x->wm_hints.icon_x = icon_x;
5806 f->output_data.x->wm_hints.icon_y = icon_y;
5807
5808 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints);
5809 }
5810
5811 \f
5812 /* Initialization. */
5813
5814 #ifdef USE_X_TOOLKIT
5815 static XrmOptionDescRec emacs_options[] = {
5816 {"-geometry", ".geometry", XrmoptionSepArg, NULL},
5817 {"-iconic", ".iconic", XrmoptionNoArg, (XtPointer) "yes"},
5818
5819 {"-internal-border-width", "*EmacsScreen.internalBorderWidth",
5820 XrmoptionSepArg, NULL},
5821 {"-ib", "*EmacsScreen.internalBorderWidth", XrmoptionSepArg, NULL},
5822
5823 {"-T", "*EmacsShell.title", XrmoptionSepArg, (XtPointer) NULL},
5824 {"-wn", "*EmacsShell.title", XrmoptionSepArg, (XtPointer) NULL},
5825 {"-title", "*EmacsShell.title", XrmoptionSepArg, (XtPointer) NULL},
5826 {"-iconname", "*EmacsShell.iconName", XrmoptionSepArg, (XtPointer) NULL},
5827 {"-in", "*EmacsShell.iconName", XrmoptionSepArg, (XtPointer) NULL},
5828 {"-mc", "*pointerColor", XrmoptionSepArg, (XtPointer) NULL},
5829 {"-cr", "*cursorColor", XrmoptionSepArg, (XtPointer) NULL}
5830 };
5831 #endif /* USE_X_TOOLKIT */
5832
5833 static int x_initialized;
5834
5835 #ifdef MULTI_KBOARD
5836 /* Test whether two display-name strings agree up to the dot that separates
5837 the screen number from the server number. */
5838 static int
5839 same_x_server (name1, name2)
5840 char *name1, *name2;
5841 {
5842 int seen_colon = 0;
5843 for (; *name1 != '\0' && *name1 == *name2; name1++, name2++)
5844 {
5845 if (*name1 == ':')
5846 seen_colon++;
5847 if (seen_colon && *name1 == '.')
5848 return 1;
5849 }
5850 return (seen_colon
5851 && (*name1 == '.' || *name1 == '\0')
5852 && (*name2 == '.' || *name2 == '\0'));
5853 }
5854 #endif
5855
5856 struct x_display_info *
5857 x_term_init (display_name, xrm_option, resource_name)
5858 Lisp_Object display_name;
5859 char *xrm_option;
5860 char *resource_name;
5861 {
5862 Lisp_Object frame;
5863 char *defaultvalue;
5864 int connection;
5865 Display *dpy;
5866 struct x_display_info *dpyinfo;
5867 XrmDatabase xrdb;
5868
5869 BLOCK_INPUT;
5870
5871 if (!x_initialized)
5872 {
5873 x_initialize ();
5874 x_initialized = 1;
5875 }
5876
5877 #ifdef HAVE_X_I18N
5878 setlocale (LC_ALL, "");
5879 /* In case we just overrode what init_lread did, redo it. */
5880 setlocale (LC_NUMERIC, "C");
5881 setlocale (LC_TIME, "C");
5882 #endif
5883
5884 #ifdef USE_X_TOOLKIT
5885 /* weiner@footloose.sps.mot.com reports that this causes
5886 errors with X11R5:
5887 X protocol error: BadAtom (invalid Atom parameter)
5888 on protocol request 18skiloaf.
5889 So let's not use it until R6. */
5890 #ifdef HAVE_X11XTR6
5891 XtSetLanguageProc (NULL, NULL, NULL);
5892 #endif
5893
5894 {
5895 int argc = 0;
5896 char *argv[3];
5897
5898 argv[0] = "";
5899 argc = 1;
5900 if (xrm_option)
5901 {
5902 argv[argc++] = "-xrm";
5903 argv[argc++] = xrm_option;
5904 }
5905 dpy = XtOpenDisplay (Xt_app_con, XSTRING (display_name)->data,
5906 resource_name, EMACS_CLASS,
5907 emacs_options, XtNumber (emacs_options),
5908 &argc, argv);
5909
5910 #ifdef HAVE_X11XTR6
5911 /* I think this is to compensate for XtSetLanguageProc. */
5912 setlocale (LC_NUMERIC, "C");
5913 setlocale (LC_TIME, "C");
5914 #endif
5915 }
5916
5917 #else /* not USE_X_TOOLKIT */
5918 #ifdef HAVE_X11R5
5919 XSetLocaleModifiers ("");
5920 #endif
5921 dpy = XOpenDisplay (XSTRING (display_name)->data);
5922 #endif /* not USE_X_TOOLKIT */
5923
5924 /* Detect failure. */
5925 if (dpy == 0)
5926 {
5927 UNBLOCK_INPUT;
5928 return 0;
5929 }
5930
5931 /* We have definitely succeeded. Record the new connection. */
5932
5933 dpyinfo = (struct x_display_info *) xmalloc (sizeof (struct x_display_info));
5934
5935 #ifdef MULTI_KBOARD
5936 {
5937 struct x_display_info *share;
5938 Lisp_Object tail;
5939
5940 for (share = x_display_list, tail = x_display_name_list; share;
5941 share = share->next, tail = XCONS (tail)->cdr)
5942 if (same_x_server (XSTRING (XCONS (XCONS (tail)->car)->car)->data,
5943 XSTRING (display_name)->data))
5944 break;
5945 if (share)
5946 dpyinfo->kboard = share->kboard;
5947 else
5948 {
5949 dpyinfo->kboard = (KBOARD *) xmalloc (sizeof (KBOARD));
5950 init_kboard (dpyinfo->kboard);
5951 if (!EQ (XSYMBOL (Qvendor_specific_keysyms)->function, Qunbound))
5952 {
5953 char *vendor = ServerVendor (dpy);
5954 dpyinfo->kboard->Vsystem_key_alist
5955 = call1 (Qvendor_specific_keysyms,
5956 build_string (vendor ? vendor : ""));
5957 }
5958
5959 dpyinfo->kboard->next_kboard = all_kboards;
5960 all_kboards = dpyinfo->kboard;
5961 /* Don't let the initial kboard remain current longer than necessary.
5962 That would cause problems if a file loaded on startup tries to
5963 prompt in the minibuffer. */
5964 if (current_kboard == initial_kboard)
5965 current_kboard = dpyinfo->kboard;
5966 }
5967 dpyinfo->kboard->reference_count++;
5968 }
5969 #endif
5970
5971 /* Put this display on the chain. */
5972 dpyinfo->next = x_display_list;
5973 x_display_list = dpyinfo;
5974
5975 /* Put it on x_display_name_list as well, to keep them parallel. */
5976 x_display_name_list = Fcons (Fcons (display_name, Qnil),
5977 x_display_name_list);
5978 dpyinfo->name_list_element = XCONS (x_display_name_list)->car;
5979
5980 dpyinfo->display = dpy;
5981
5982 #if 0
5983 XSetAfterFunction (x_current_display, x_trace_wire);
5984 #endif /* ! 0 */
5985
5986 dpyinfo->x_id_name
5987 = (char *) xmalloc (XSTRING (Vinvocation_name)->size
5988 + XSTRING (Vsystem_name)->size
5989 + 2);
5990 sprintf (dpyinfo->x_id_name, "%s@%s",
5991 XSTRING (Vinvocation_name)->data, XSTRING (Vsystem_name)->data);
5992
5993 /* Figure out which modifier bits mean what. */
5994 x_find_modifier_meanings (dpyinfo);
5995
5996 /* Get the scroll bar cursor. */
5997 dpyinfo->vertical_scroll_bar_cursor
5998 = XCreateFontCursor (dpyinfo->display, XC_sb_v_double_arrow);
5999
6000 xrdb = x_load_resources (dpyinfo->display, xrm_option,
6001 resource_name, EMACS_CLASS);
6002 #ifdef HAVE_XRMSETDATABASE
6003 XrmSetDatabase (dpyinfo->display, xrdb);
6004 #else
6005 dpyinfo->display->db = xrdb;
6006 #endif
6007 /* Put the rdb where we can find it in a way that works on
6008 all versions. */
6009 dpyinfo->xrdb = xrdb;
6010
6011 dpyinfo->screen = ScreenOfDisplay (dpyinfo->display,
6012 DefaultScreen (dpyinfo->display));
6013 dpyinfo->visual = select_visual (dpyinfo->display, dpyinfo->screen,
6014 &dpyinfo->n_planes);
6015 dpyinfo->height = HeightOfScreen (dpyinfo->screen);
6016 dpyinfo->width = WidthOfScreen (dpyinfo->screen);
6017 dpyinfo->root_window = RootWindowOfScreen (dpyinfo->screen);
6018 dpyinfo->grabbed = 0;
6019 dpyinfo->reference_count = 0;
6020 dpyinfo->icon_bitmap_id = -1;
6021 dpyinfo->n_fonts = 0;
6022 dpyinfo->font_table_size = 0;
6023 dpyinfo->bitmaps = 0;
6024 dpyinfo->bitmaps_size = 0;
6025 dpyinfo->bitmaps_last = 0;
6026 dpyinfo->scratch_cursor_gc = 0;
6027 dpyinfo->mouse_face_mouse_frame = 0;
6028 dpyinfo->mouse_face_deferred_gc = 0;
6029 dpyinfo->mouse_face_beg_row = dpyinfo->mouse_face_beg_col = -1;
6030 dpyinfo->mouse_face_end_row = dpyinfo->mouse_face_end_col = -1;
6031 dpyinfo->mouse_face_face_id = 0;
6032 dpyinfo->mouse_face_window = Qnil;
6033 dpyinfo->mouse_face_mouse_x = dpyinfo->mouse_face_mouse_y = 0;
6034 dpyinfo->mouse_face_defer = 0;
6035 dpyinfo->x_focus_frame = 0;
6036 dpyinfo->x_focus_event_frame = 0;
6037 dpyinfo->x_highlight_frame = 0;
6038
6039 dpyinfo->Xatom_wm_protocols
6040 = XInternAtom (dpyinfo->display, "WM_PROTOCOLS", False);
6041 dpyinfo->Xatom_wm_take_focus
6042 = XInternAtom (dpyinfo->display, "WM_TAKE_FOCUS", False);
6043 dpyinfo->Xatom_wm_save_yourself
6044 = XInternAtom (dpyinfo->display, "WM_SAVE_YOURSELF", False);
6045 dpyinfo->Xatom_wm_delete_window
6046 = XInternAtom (dpyinfo->display, "WM_DELETE_WINDOW", False);
6047 dpyinfo->Xatom_wm_change_state
6048 = XInternAtom (dpyinfo->display, "WM_CHANGE_STATE", False);
6049 dpyinfo->Xatom_wm_configure_denied
6050 = XInternAtom (dpyinfo->display, "WM_CONFIGURE_DENIED", False);
6051 dpyinfo->Xatom_wm_window_moved
6052 = XInternAtom (dpyinfo->display, "WM_MOVED", False);
6053 dpyinfo->Xatom_editres
6054 = XInternAtom (dpyinfo->display, "Editres", False);
6055 dpyinfo->Xatom_CLIPBOARD
6056 = XInternAtom (dpyinfo->display, "CLIPBOARD", False);
6057 dpyinfo->Xatom_TIMESTAMP
6058 = XInternAtom (dpyinfo->display, "TIMESTAMP", False);
6059 dpyinfo->Xatom_TEXT
6060 = XInternAtom (dpyinfo->display, "TEXT", False);
6061 dpyinfo->Xatom_DELETE
6062 = XInternAtom (dpyinfo->display, "DELETE", False);
6063 dpyinfo->Xatom_MULTIPLE
6064 = XInternAtom (dpyinfo->display, "MULTIPLE", False);
6065 dpyinfo->Xatom_INCR
6066 = XInternAtom (dpyinfo->display, "INCR", False);
6067 dpyinfo->Xatom_EMACS_TMP
6068 = XInternAtom (dpyinfo->display, "_EMACS_TMP_", False);
6069 dpyinfo->Xatom_TARGETS
6070 = XInternAtom (dpyinfo->display, "TARGETS", False);
6071 dpyinfo->Xatom_NULL
6072 = XInternAtom (dpyinfo->display, "NULL", False);
6073 dpyinfo->Xatom_ATOM_PAIR
6074 = XInternAtom (dpyinfo->display, "ATOM_PAIR", False);
6075
6076 dpyinfo->cut_buffers_initialized = 0;
6077
6078 connection = ConnectionNumber (dpyinfo->display);
6079 dpyinfo->connection = connection;
6080
6081 #ifdef subprocesses
6082 /* This is only needed for distinguishing keyboard and process input. */
6083 if (connection != 0)
6084 add_keyboard_wait_descriptor (connection);
6085 #endif
6086
6087 #ifndef F_SETOWN_BUG
6088 #ifdef F_SETOWN
6089 #ifdef F_SETOWN_SOCK_NEG
6090 /* stdin is a socket here */
6091 fcntl (connection, F_SETOWN, -getpid ());
6092 #else /* ! defined (F_SETOWN_SOCK_NEG) */
6093 fcntl (connection, F_SETOWN, getpid ());
6094 #endif /* ! defined (F_SETOWN_SOCK_NEG) */
6095 #endif /* ! defined (F_SETOWN) */
6096 #endif /* F_SETOWN_BUG */
6097
6098 #ifdef SIGIO
6099 if (interrupt_input)
6100 init_sigio (connection);
6101 #endif /* ! defined (SIGIO) */
6102
6103 UNBLOCK_INPUT;
6104
6105 return dpyinfo;
6106 }
6107 \f
6108 /* Get rid of display DPYINFO, assuming all frames are already gone,
6109 and without sending any more commands to the X server. */
6110
6111 void
6112 x_delete_display (dpyinfo)
6113 struct x_display_info *dpyinfo;
6114 {
6115 delete_keyboard_wait_descriptor (dpyinfo->connection);
6116
6117 /* Discard this display from x_display_name_list and x_display_list.
6118 We can't use Fdelq because that can quit. */
6119 if (! NILP (x_display_name_list)
6120 && EQ (XCONS (x_display_name_list)->car, dpyinfo->name_list_element))
6121 x_display_name_list = XCONS (x_display_name_list)->cdr;
6122 else
6123 {
6124 Lisp_Object tail;
6125
6126 tail = x_display_name_list;
6127 while (CONSP (tail) && CONSP (XCONS (tail)->cdr))
6128 {
6129 if (EQ (XCONS (XCONS (tail)->cdr)->car,
6130 dpyinfo->name_list_element))
6131 {
6132 XCONS (tail)->cdr = XCONS (XCONS (tail)->cdr)->cdr;
6133 break;
6134 }
6135 tail = XCONS (tail)->cdr;
6136 }
6137 }
6138
6139 if (x_display_list == dpyinfo)
6140 x_display_list = dpyinfo->next;
6141 else
6142 {
6143 struct x_display_info *tail;
6144
6145 for (tail = x_display_list; tail; tail = tail->next)
6146 if (tail->next == dpyinfo)
6147 tail->next = tail->next->next;
6148 }
6149
6150 #ifndef USE_X_TOOLKIT /* I'm told Xt does this itself. */
6151 #ifndef AIX /* On AIX, XCloseDisplay calls this. */
6152 XrmDestroyDatabase (dpyinfo->xrdb);
6153 #endif
6154 #endif
6155 #ifdef MULTI_KBOARD
6156 if (--dpyinfo->kboard->reference_count == 0)
6157 delete_kboard (dpyinfo->kboard);
6158 #endif
6159 xfree (dpyinfo->font_table);
6160 xfree (dpyinfo->x_id_name);
6161 xfree (dpyinfo);
6162 }
6163 \f
6164 /* Set up use of X before we make the first connection. */
6165
6166 x_initialize ()
6167 {
6168 clear_frame_hook = XTclear_frame;
6169 clear_end_of_line_hook = XTclear_end_of_line;
6170 ins_del_lines_hook = XTins_del_lines;
6171 change_line_highlight_hook = XTchange_line_highlight;
6172 insert_glyphs_hook = XTinsert_glyphs;
6173 write_glyphs_hook = XTwrite_glyphs;
6174 delete_glyphs_hook = XTdelete_glyphs;
6175 ring_bell_hook = XTring_bell;
6176 reset_terminal_modes_hook = XTreset_terminal_modes;
6177 set_terminal_modes_hook = XTset_terminal_modes;
6178 update_begin_hook = XTupdate_begin;
6179 update_end_hook = XTupdate_end;
6180 set_terminal_window_hook = XTset_terminal_window;
6181 read_socket_hook = XTread_socket;
6182 frame_up_to_date_hook = XTframe_up_to_date;
6183 cursor_to_hook = XTcursor_to;
6184 reassert_line_highlight_hook = XTreassert_line_highlight;
6185 mouse_position_hook = XTmouse_position;
6186 frame_rehighlight_hook = XTframe_rehighlight;
6187 frame_raise_lower_hook = XTframe_raise_lower;
6188 set_vertical_scroll_bar_hook = XTset_vertical_scroll_bar;
6189 condemn_scroll_bars_hook = XTcondemn_scroll_bars;
6190 redeem_scroll_bar_hook = XTredeem_scroll_bar;
6191 judge_scroll_bars_hook = XTjudge_scroll_bars;
6192
6193 scroll_region_ok = 1; /* we'll scroll partial frames */
6194 char_ins_del_ok = 0; /* just as fast to write the line */
6195 line_ins_del_ok = 1; /* we'll just blt 'em */
6196 fast_clear_end_of_line = 1; /* X does this well */
6197 memory_below_frame = 0; /* we don't remember what scrolls
6198 off the bottom */
6199 baud_rate = 19200;
6200
6201 x_noop_count = 0;
6202
6203 /* Try to use interrupt input; if we can't, then start polling. */
6204 Fset_input_mode (Qt, Qnil, Qt, Qnil);
6205
6206 #ifdef USE_X_TOOLKIT
6207 XtToolkitInitialize ();
6208 Xt_app_con = XtCreateApplicationContext ();
6209 XtAppSetFallbackResources (Xt_app_con, Xt_default_resources);
6210 #endif
6211
6212 /* Note that there is no real way portable across R3/R4 to get the
6213 original error handler. */
6214 XSetErrorHandler (x_error_quitter);
6215 XSetIOErrorHandler (x_io_error_quitter);
6216
6217 /* Disable Window Change signals; they are handled by X events. */
6218 #ifdef SIGWINCH
6219 signal (SIGWINCH, SIG_DFL);
6220 #endif /* ! defined (SIGWINCH) */
6221
6222 signal (SIGPIPE, x_connection_signal);
6223 }
6224
6225 void
6226 syms_of_xterm ()
6227 {
6228 staticpro (&x_display_name_list);
6229 x_display_name_list = Qnil;
6230
6231 staticpro (&last_mouse_scroll_bar);
6232 last_mouse_scroll_bar = Qnil;
6233
6234 staticpro (&Qvendor_specific_keysyms);
6235 Qvendor_specific_keysyms = intern ("vendor-specific-keysyms");
6236
6237 staticpro (&last_mouse_press_frame);
6238 last_mouse_press_frame = Qnil;
6239 }
6240
6241 #endif /* not HAVE_X_WINDOWS */