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