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