(x_term_init): Initialize dpyinfo->Xatom_UTF8_STRING.
[bpt/emacs.git] / 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, 2000, 2001, 2002
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 #include <config.h>
26
27 /* On 4.3 these lose if they come after xterm.h. */
28 /* Putting these at the beginning seems to be standard for other .c files. */
29 #include <signal.h>
30
31 #include <stdio.h>
32
33 #ifdef HAVE_X_WINDOWS
34
35 #include "lisp.h"
36 #include "blockinput.h"
37
38 /* Need syssignal.h for various externs and definitions that may be required
39 by some configurations for calls to signal later in this source file. */
40 #include "syssignal.h"
41
42 /* This may include sys/types.h, and that somehow loses
43 if this is not done before the other system files. */
44 #include "xterm.h"
45 #include <X11/cursorfont.h>
46
47 /* Load sys/types.h if not already loaded.
48 In some systems loading it twice is suicidal. */
49 #ifndef makedev
50 #include <sys/types.h>
51 #endif /* makedev */
52
53 #ifdef BSD_SYSTEM
54 #include <sys/ioctl.h>
55 #endif /* ! defined (BSD_SYSTEM) */
56
57 #include "systty.h"
58 #include "systime.h"
59
60 #ifndef INCLUDED_FCNTL
61 #include <fcntl.h>
62 #endif
63 #include <ctype.h>
64 #include <errno.h>
65 #include <setjmp.h>
66 #include <sys/stat.h>
67 /* Caused redefinition of DBL_DIG on Netbsd; seems not to be needed. */
68 /* #include <sys/param.h> */
69
70 #include "charset.h"
71 #include "coding.h"
72 #include "ccl.h"
73 #include "frame.h"
74 #include "dispextern.h"
75 #include "fontset.h"
76 #include "termhooks.h"
77 #include "termopts.h"
78 #include "termchar.h"
79 #include "gnu.h"
80 #include "disptab.h"
81 #include "buffer.h"
82 #include "window.h"
83 #include "keyboard.h"
84 #include "intervals.h"
85 #include "process.h"
86 #include "atimer.h"
87 #include "keymap.h"
88
89 #ifdef USE_X_TOOLKIT
90 #include <X11/Shell.h>
91 #endif
92
93 #ifdef HAVE_SYS_TIME_H
94 #include <sys/time.h>
95 #endif
96 #ifdef HAVE_UNISTD_H
97 #include <unistd.h>
98 #endif
99
100 #ifdef USE_LUCID
101 extern int xlwmenu_window_p P_ ((Widget w, Window window));
102 extern void xlwmenu_redisplay P_ ((Widget));
103 #endif
104
105 #ifdef USE_X_TOOLKIT
106
107 extern void free_frame_menubar P_ ((struct frame *));
108 extern struct frame *x_menubar_window_to_frame P_ ((struct x_display_info *,
109 int));
110
111 #if (XtSpecificationRelease >= 5) && !defined(NO_EDITRES)
112 #define HACK_EDITRES
113 extern void _XEditResCheckMessages ();
114 #endif /* not NO_EDITRES */
115
116 /* Include toolkit specific headers for the scroll bar widget. */
117
118 #ifdef USE_TOOLKIT_SCROLL_BARS
119 #if defined USE_MOTIF
120 #include <Xm/Xm.h> /* for LESSTIF_VERSION */
121 #include <Xm/ScrollBar.h>
122 #else /* !USE_MOTIF i.e. use Xaw */
123
124 #ifdef HAVE_XAW3D
125 #include <X11/Xaw3d/Simple.h>
126 #include <X11/Xaw3d/Scrollbar.h>
127 #define ARROW_SCROLLBAR
128 #include <X11/Xaw3d/ScrollbarP.h>
129 #else /* !HAVE_XAW3D */
130 #include <X11/Xaw/Simple.h>
131 #include <X11/Xaw/Scrollbar.h>
132 #endif /* !HAVE_XAW3D */
133 #ifndef XtNpickTop
134 #define XtNpickTop "pickTop"
135 #endif /* !XtNpickTop */
136 #endif /* !USE_MOTIF */
137 #endif /* USE_TOOLKIT_SCROLL_BARS */
138
139 #endif /* USE_X_TOOLKIT */
140
141 #ifndef USE_X_TOOLKIT
142 #define x_any_window_to_frame x_window_to_frame
143 #define x_top_window_to_frame x_window_to_frame
144 #endif
145
146 #ifdef USE_X_TOOLKIT
147 #include "widget.h"
148 #ifndef XtNinitialState
149 #define XtNinitialState "initialState"
150 #endif
151 #endif
152
153 #define abs(x) ((x) < 0 ? -(x) : (x))
154
155 #define BETWEEN(X, LOWER, UPPER) ((X) >= (LOWER) && (X) < (UPPER))
156
157 \f
158 /* Fringe bitmaps. */
159
160 enum fringe_bitmap_type
161 {
162 NO_FRINGE_BITMAP,
163 LEFT_TRUNCATION_BITMAP,
164 RIGHT_TRUNCATION_BITMAP,
165 OVERLAY_ARROW_BITMAP,
166 CONTINUED_LINE_BITMAP,
167 CONTINUATION_LINE_BITMAP,
168 ZV_LINE_BITMAP
169 };
170
171 /* Bitmap drawn to indicate lines not displaying text if
172 `indicate-empty-lines' is non-nil. */
173
174 #define zv_width 8
175 #define zv_height 72
176 #define zv_period 3
177 static unsigned char zv_bits[] = {
178 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00,
179 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00,
180 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00,
181 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00,
182 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00,
183 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00,
184 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00,
185 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00};
186
187 /* An arrow like this: `<-'. */
188
189 #define left_width 8
190 #define left_height 8
191 static unsigned char left_bits[] = {
192 0x18, 0x0c, 0x06, 0x3f, 0x3f, 0x06, 0x0c, 0x18};
193
194 /* Right truncation arrow bitmap `->'. */
195
196 #define right_width 8
197 #define right_height 8
198 static unsigned char right_bits[] = {
199 0x18, 0x30, 0x60, 0xfc, 0xfc, 0x60, 0x30, 0x18};
200
201 /* Marker for continued lines. */
202
203 #define continued_width 8
204 #define continued_height 8
205 static unsigned char continued_bits[] = {
206 0x3c, 0x7c, 0xc0, 0xe4, 0xfc, 0x7c, 0x3c, 0x7c};
207
208 /* Marker for continuation lines. */
209
210 #define continuation_width 8
211 #define continuation_height 8
212 static unsigned char continuation_bits[] = {
213 0x3c, 0x3e, 0x03, 0x27, 0x3f, 0x3e, 0x3c, 0x3e};
214
215 /* Overlay arrow bitmap. */
216
217 #if 0
218 /* A bomb. */
219 #define ov_width 8
220 #define ov_height 8
221 static unsigned char ov_bits[] = {
222 0x30, 0x08, 0x3c, 0x7e, 0x7a, 0x7a, 0x62, 0x3c};
223 #else
224 /* A triangular arrow. */
225 #define ov_width 8
226 #define ov_height 8
227 static unsigned char ov_bits[] = {
228 0x03, 0x0f, 0x1f, 0x3f, 0x3f, 0x1f, 0x0f, 0x03};
229
230 #endif
231
232 extern Lisp_Object Qhelp_echo;
233
234 \f
235 /* Non-nil means Emacs uses toolkit scroll bars. */
236
237 Lisp_Object Vx_toolkit_scroll_bars;
238
239 /* If a string, XTread_socket generates an event to display that string.
240 (The display is done in read_char.) */
241
242 static Lisp_Object help_echo;
243 static Lisp_Object help_echo_window;
244 static Lisp_Object help_echo_object;
245 static int help_echo_pos;
246
247 /* Temporary variable for XTread_socket. */
248
249 static Lisp_Object previous_help_echo;
250
251 /* Non-zero means that a HELP_EVENT has been generated since Emacs
252 start. */
253
254 static int any_help_event_p;
255
256 /* Non-zero means autoselect window with the mouse cursor. */
257
258 int mouse_autoselect_window;
259
260 /* Last window where we saw the mouse. Used by mouse-autoselect-window. */
261 static Lisp_Object last_window;
262
263 /* Non-zero means draw block and hollow cursor as wide as the glyph
264 under it. For example, if a block cursor is over a tab, it will be
265 drawn as wide as that tab on the display. */
266
267 int x_stretch_cursor_p;
268
269 /* Non-zero means make use of UNDERLINE_POSITION font properties. */
270
271 int x_use_underline_position_properties;
272
273 /* This is a chain of structures for all the X displays currently in
274 use. */
275
276 struct x_display_info *x_display_list;
277
278 /* This is a list of cons cells, each of the form (NAME
279 . FONT-LIST-CACHE), one for each element of x_display_list and in
280 the same order. NAME is the name of the frame. FONT-LIST-CACHE
281 records previous values returned by x-list-fonts. */
282
283 Lisp_Object x_display_name_list;
284
285 /* Frame being updated by update_frame. This is declared in term.c.
286 This is set by update_begin and looked at by all the XT functions.
287 It is zero while not inside an update. In that case, the XT
288 functions assume that `selected_frame' is the frame to apply to. */
289
290 extern struct frame *updating_frame;
291
292 /* This is a frame waiting to be auto-raised, within XTread_socket. */
293
294 struct frame *pending_autoraise_frame;
295
296 #ifdef USE_X_TOOLKIT
297 /* The application context for Xt use. */
298 XtAppContext Xt_app_con;
299 static String Xt_default_resources[] = {0};
300 #endif /* USE_X_TOOLKIT */
301
302 /* Nominal cursor position -- where to draw output.
303 HPOS and VPOS are window relative glyph matrix coordinates.
304 X and Y are window relative pixel coordinates. */
305
306 struct cursor_pos output_cursor;
307
308 /* Non-zero means user is interacting with a toolkit scroll bar. */
309
310 static int toolkit_scroll_bar_interaction;
311
312 /* Mouse movement.
313
314 Formerly, we used PointerMotionHintMask (in standard_event_mask)
315 so that we would have to call XQueryPointer after each MotionNotify
316 event to ask for another such event. However, this made mouse tracking
317 slow, and there was a bug that made it eventually stop.
318
319 Simply asking for MotionNotify all the time seems to work better.
320
321 In order to avoid asking for motion events and then throwing most
322 of them away or busy-polling the server for mouse positions, we ask
323 the server for pointer motion hints. This means that we get only
324 one event per group of mouse movements. "Groups" are delimited by
325 other kinds of events (focus changes and button clicks, for
326 example), or by XQueryPointer calls; when one of these happens, we
327 get another MotionNotify event the next time the mouse moves. This
328 is at least as efficient as getting motion events when mouse
329 tracking is on, and I suspect only negligibly worse when tracking
330 is off. */
331
332 /* Where the mouse was last time we reported a mouse event. */
333
334 FRAME_PTR last_mouse_frame;
335 static XRectangle last_mouse_glyph;
336 static Lisp_Object last_mouse_press_frame;
337
338 /* The scroll bar in which the last X motion event occurred.
339
340 If the last X motion event occurred in a scroll bar, we set this so
341 XTmouse_position can know whether to report a scroll bar motion or
342 an ordinary motion.
343
344 If the last X motion event didn't occur in a scroll bar, we set
345 this to Qnil, to tell XTmouse_position to return an ordinary motion
346 event. */
347
348 static Lisp_Object last_mouse_scroll_bar;
349
350 /* This is a hack. We would really prefer that XTmouse_position would
351 return the time associated with the position it returns, but there
352 doesn't seem to be any way to wrest the time-stamp from the server
353 along with the position query. So, we just keep track of the time
354 of the last movement we received, and return that in hopes that
355 it's somewhat accurate. */
356
357 static Time last_mouse_movement_time;
358
359 /* Incremented by XTread_socket whenever it really tries to read
360 events. */
361
362 #ifdef __STDC__
363 static int volatile input_signal_count;
364 #else
365 static int input_signal_count;
366 #endif
367
368 /* Used locally within XTread_socket. */
369
370 static int x_noop_count;
371
372 /* Initial values of argv and argc. */
373
374 extern char **initial_argv;
375 extern int initial_argc;
376
377 extern Lisp_Object Vcommand_line_args, Vsystem_name;
378
379 /* Tells if a window manager is present or not. */
380
381 extern Lisp_Object Vx_no_window_manager;
382
383 extern Lisp_Object Qface, Qmouse_face;
384
385 extern int errno;
386
387 /* A mask of extra modifier bits to put into every keyboard char. */
388
389 extern EMACS_INT extra_keyboard_modifiers;
390
391 /* The keysyms to use for the various modifiers. */
392
393 Lisp_Object Vx_alt_keysym, Vx_hyper_keysym, Vx_meta_keysym, Vx_super_keysym;
394 static Lisp_Object Qalt, Qhyper, Qmeta, Qsuper, Qmodifier_value;
395
396 static Lisp_Object Qvendor_specific_keysyms;
397 static Lisp_Object Qlatin_1, Qutf_8;
398
399 extern XrmDatabase x_load_resources P_ ((Display *, char *, char *, char *));
400 extern Lisp_Object x_icon_type P_ ((struct frame *));
401
402
403 /* Enumeration for overriding/changing the face to use for drawing
404 glyphs in x_draw_glyphs. */
405
406 enum draw_glyphs_face
407 {
408 DRAW_NORMAL_TEXT,
409 DRAW_INVERSE_VIDEO,
410 DRAW_CURSOR,
411 DRAW_MOUSE_FACE,
412 DRAW_IMAGE_RAISED,
413 DRAW_IMAGE_SUNKEN
414 };
415
416 static int cursor_in_mouse_face_p P_ ((struct window *));
417 static int clear_mouse_face P_ ((struct x_display_info *));
418 static int x_alloc_nearest_color_1 P_ ((Display *, Colormap, XColor *));
419 static void x_set_window_size_1 P_ ((struct frame *, int, int, int));
420 static const XColor *x_color_cells P_ ((Display *, int *));
421 static void x_update_window_end P_ ((struct window *, int, int));
422 static void frame_to_window_pixel_xy P_ ((struct window *, int *, int *));
423 void x_delete_display P_ ((struct x_display_info *));
424 static unsigned int x_x_to_emacs_modifiers P_ ((struct x_display_info *,
425 unsigned));
426 static int fast_find_position P_ ((struct window *, int, int *, int *,
427 int *, int *, Lisp_Object));
428 static int fast_find_string_pos P_ ((struct window *, int, Lisp_Object,
429 int *, int *, int *, int *, int));
430 static void set_output_cursor P_ ((struct cursor_pos *));
431 static struct glyph *x_y_to_hpos_vpos P_ ((struct window *, int, int,
432 int *, int *, int *, int));
433 static void note_mode_line_or_margin_highlight P_ ((struct window *, int,
434 int, int));
435 static void note_mouse_highlight P_ ((struct frame *, int, int));
436 static void note_tool_bar_highlight P_ ((struct frame *f, int, int));
437 static void x_handle_tool_bar_click P_ ((struct frame *, XButtonEvent *));
438 static void show_mouse_face P_ ((struct x_display_info *,
439 enum draw_glyphs_face));
440 static int x_io_error_quitter P_ ((Display *));
441 int x_catch_errors P_ ((Display *));
442 void x_uncatch_errors P_ ((Display *, int));
443 void x_lower_frame P_ ((struct frame *));
444 void x_scroll_bar_clear P_ ((struct frame *));
445 int x_had_errors_p P_ ((Display *));
446 void x_wm_set_size_hint P_ ((struct frame *, long, int));
447 void x_raise_frame P_ ((struct frame *));
448 void x_set_window_size P_ ((struct frame *, int, int, int));
449 void x_wm_set_window_state P_ ((struct frame *, int));
450 void x_wm_set_icon_pixmap P_ ((struct frame *, int));
451 void x_initialize P_ ((void));
452 static void x_font_min_bounds P_ ((XFontStruct *, int *, int *));
453 static int x_compute_min_glyph_bounds P_ ((struct frame *));
454 static void x_draw_phys_cursor_glyph P_ ((struct window *,
455 struct glyph_row *,
456 enum draw_glyphs_face));
457 static void x_update_end P_ ((struct frame *));
458 static void XTframe_up_to_date P_ ((struct frame *));
459 static void XTset_terminal_modes P_ ((void));
460 static void XTreset_terminal_modes P_ ((void));
461 static void XTcursor_to P_ ((int, int, int, int));
462 static void x_write_glyphs P_ ((struct glyph *, int));
463 static void x_clear_end_of_line P_ ((int));
464 static void x_clear_frame P_ ((void));
465 static void x_clear_cursor P_ ((struct window *));
466 static void frame_highlight P_ ((struct frame *));
467 static void frame_unhighlight P_ ((struct frame *));
468 static void x_new_focus_frame P_ ((struct x_display_info *, struct frame *));
469 static int x_focus_changed P_ ((int,
470 int,
471 struct x_display_info *,
472 struct frame *,
473 struct input_event *,
474 int));
475 static int x_detect_focus_change P_ ((struct x_display_info *,
476 XEvent *,
477 struct input_event *,
478 int));
479 static void XTframe_rehighlight P_ ((struct frame *));
480 static void x_frame_rehighlight P_ ((struct x_display_info *));
481 static void x_draw_hollow_cursor P_ ((struct window *, struct glyph_row *));
482 static void x_draw_bar_cursor P_ ((struct window *, struct glyph_row *, int,
483 enum text_cursor_kinds));
484 static int x_intersect_rectangles P_ ((XRectangle *, XRectangle *,
485 XRectangle *));
486 static void expose_frame P_ ((struct frame *, int, int, int, int));
487 static int expose_window_tree P_ ((struct window *, XRectangle *));
488 static void expose_overlaps P_ ((struct window *, struct glyph_row *,
489 struct glyph_row *));
490 static int expose_window P_ ((struct window *, XRectangle *));
491 static void expose_area P_ ((struct window *, struct glyph_row *,
492 XRectangle *, enum glyph_row_area));
493 static int expose_line P_ ((struct window *, struct glyph_row *,
494 XRectangle *));
495 static void x_update_cursor_in_window_tree P_ ((struct window *, int));
496 static void x_update_window_cursor P_ ((struct window *, int));
497 static void x_erase_phys_cursor P_ ((struct window *));
498 void x_display_and_set_cursor P_ ((struct window *, int, int, int, int, int));
499 static void x_draw_fringe_bitmap P_ ((struct window *, struct glyph_row *,
500 enum fringe_bitmap_type, int left_p));
501
502 static void x_clip_to_row P_ ((struct window *, struct glyph_row *,
503 GC, int));
504 static int x_phys_cursor_in_rect_p P_ ((struct window *, XRectangle *));
505 static void x_draw_row_fringe_bitmaps P_ ((struct window *, struct glyph_row *));
506 static void notice_overwritten_cursor P_ ((struct window *, enum glyph_row_area,
507 int, int, int, int));
508 static void x_flush P_ ((struct frame *f));
509 static void x_update_begin P_ ((struct frame *));
510 static void x_update_window_begin P_ ((struct window *));
511 static void x_draw_vertical_border P_ ((struct window *));
512 static void x_after_update_window_line P_ ((struct glyph_row *));
513 static INLINE void take_vertical_position_into_account P_ ((struct it *));
514 static void x_produce_stretch_glyph P_ ((struct it *));
515 static struct scroll_bar *x_window_to_scroll_bar P_ ((Window));
516 static void x_scroll_bar_report_motion P_ ((struct frame **, Lisp_Object *,
517 enum scroll_bar_part *,
518 Lisp_Object *, Lisp_Object *,
519 unsigned long *));
520 static void x_check_fullscreen P_ ((struct frame *));
521 static void x_check_fullscreen_move P_ ((struct frame *));
522
523 /* Flush display of frame F, or of all frames if F is null. */
524
525 static void
526 x_flush (f)
527 struct frame *f;
528 {
529 BLOCK_INPUT;
530 if (f == NULL)
531 {
532 Lisp_Object rest, frame;
533 FOR_EACH_FRAME (rest, frame)
534 x_flush (XFRAME (frame));
535 }
536 else if (FRAME_X_P (f))
537 XFlush (FRAME_X_DISPLAY (f));
538 UNBLOCK_INPUT;
539 }
540
541
542 /* Remove calls to XFlush by defining XFlush to an empty replacement.
543 Calls to XFlush should be unnecessary because the X output buffer
544 is flushed automatically as needed by calls to XPending,
545 XNextEvent, or XWindowEvent according to the XFlush man page.
546 XTread_socket calls XPending. Removing XFlush improves
547 performance. */
548
549 #define XFlush(DISPLAY) (void) 0
550
551 \f
552 /***********************************************************************
553 Debugging
554 ***********************************************************************/
555
556 #if 0
557
558 /* This is a function useful for recording debugging information about
559 the sequence of occurrences in this file. */
560
561 struct record
562 {
563 char *locus;
564 int type;
565 };
566
567 struct record event_record[100];
568
569 int event_record_index;
570
571 record_event (locus, type)
572 char *locus;
573 int type;
574 {
575 if (event_record_index == sizeof (event_record) / sizeof (struct record))
576 event_record_index = 0;
577
578 event_record[event_record_index].locus = locus;
579 event_record[event_record_index].type = type;
580 event_record_index++;
581 }
582
583 #endif /* 0 */
584
585
586 \f
587 /* Return the struct x_display_info corresponding to DPY. */
588
589 struct x_display_info *
590 x_display_info_for_display (dpy)
591 Display *dpy;
592 {
593 struct x_display_info *dpyinfo;
594
595 for (dpyinfo = x_display_list; dpyinfo; dpyinfo = dpyinfo->next)
596 if (dpyinfo->display == dpy)
597 return dpyinfo;
598
599 return 0;
600 }
601
602
603 \f
604 /***********************************************************************
605 Starting and ending an update
606 ***********************************************************************/
607
608 /* Start an update of frame F. This function is installed as a hook
609 for update_begin, i.e. it is called when update_begin is called.
610 This function is called prior to calls to x_update_window_begin for
611 each window being updated. Currently, there is nothing to do here
612 because all interesting stuff is done on a window basis. */
613
614 static void
615 x_update_begin (f)
616 struct frame *f;
617 {
618 /* Nothing to do. */
619 }
620
621
622 /* Start update of window W. Set the global variable updated_window
623 to the window being updated and set output_cursor to the cursor
624 position of W. */
625
626 static void
627 x_update_window_begin (w)
628 struct window *w;
629 {
630 struct frame *f = XFRAME (WINDOW_FRAME (w));
631 struct x_display_info *display_info = FRAME_X_DISPLAY_INFO (f);
632
633 updated_window = w;
634 set_output_cursor (&w->cursor);
635
636 BLOCK_INPUT;
637
638 if (f == display_info->mouse_face_mouse_frame)
639 {
640 /* Don't do highlighting for mouse motion during the update. */
641 display_info->mouse_face_defer = 1;
642
643 /* If F needs to be redrawn, simply forget about any prior mouse
644 highlighting. */
645 if (FRAME_GARBAGED_P (f))
646 display_info->mouse_face_window = Qnil;
647
648 #if 0 /* Rows in a current matrix containing glyphs in mouse-face have
649 their mouse_face_p flag set, which means that they are always
650 unequal to rows in a desired matrix which never have that
651 flag set. So, rows containing mouse-face glyphs are never
652 scrolled, and we don't have to switch the mouse highlight off
653 here to prevent it from being scrolled. */
654
655 /* Can we tell that this update does not affect the window
656 where the mouse highlight is? If so, no need to turn off.
657 Likewise, don't do anything if the frame is garbaged;
658 in that case, the frame's current matrix that we would use
659 is all wrong, and we will redisplay that line anyway. */
660 if (!NILP (display_info->mouse_face_window)
661 && w == XWINDOW (display_info->mouse_face_window))
662 {
663 int i;
664
665 for (i = 0; i < w->desired_matrix->nrows; ++i)
666 if (MATRIX_ROW_ENABLED_P (w->desired_matrix, i))
667 break;
668
669 if (i < w->desired_matrix->nrows)
670 clear_mouse_face (display_info);
671 }
672 #endif /* 0 */
673 }
674
675 UNBLOCK_INPUT;
676 }
677
678
679 /* Draw a vertical window border to the right of window W if W doesn't
680 have vertical scroll bars. */
681
682 static void
683 x_draw_vertical_border (w)
684 struct window *w;
685 {
686 struct frame *f = XFRAME (WINDOW_FRAME (w));
687
688 /* Redraw borders between horizontally adjacent windows. Don't
689 do it for frames with vertical scroll bars because either the
690 right scroll bar of a window, or the left scroll bar of its
691 neighbor will suffice as a border. */
692 if (!WINDOW_RIGHTMOST_P (w)
693 && !FRAME_HAS_VERTICAL_SCROLL_BARS (f))
694 {
695 int x0, x1, y0, y1;
696
697 window_box_edges (w, -1, &x0, &y0, &x1, &y1);
698 x1 += FRAME_X_RIGHT_FRINGE_WIDTH (f);
699 y1 -= 1;
700
701 XDrawLine (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
702 f->output_data.x->normal_gc, x1, y0, x1, y1);
703 }
704 }
705
706
707 /* End update of window W (which is equal to updated_window).
708
709 Draw vertical borders between horizontally adjacent windows, and
710 display W's cursor if CURSOR_ON_P is non-zero.
711
712 MOUSE_FACE_OVERWRITTEN_P non-zero means that some row containing
713 glyphs in mouse-face were overwritten. In that case we have to
714 make sure that the mouse-highlight is properly redrawn.
715
716 W may be a menu bar pseudo-window in case we don't have X toolkit
717 support. Such windows don't have a cursor, so don't display it
718 here. */
719
720 static void
721 x_update_window_end (w, cursor_on_p, mouse_face_overwritten_p)
722 struct window *w;
723 int cursor_on_p, mouse_face_overwritten_p;
724 {
725 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (XFRAME (w->frame));
726
727 if (!w->pseudo_window_p)
728 {
729 BLOCK_INPUT;
730
731 if (cursor_on_p)
732 x_display_and_set_cursor (w, 1, output_cursor.hpos,
733 output_cursor.vpos,
734 output_cursor.x, output_cursor.y);
735
736 x_draw_vertical_border (w);
737 UNBLOCK_INPUT;
738 }
739
740 /* If a row with mouse-face was overwritten, arrange for
741 XTframe_up_to_date to redisplay the mouse highlight. */
742 if (mouse_face_overwritten_p)
743 {
744 dpyinfo->mouse_face_beg_row = dpyinfo->mouse_face_beg_col = -1;
745 dpyinfo->mouse_face_end_row = dpyinfo->mouse_face_end_col = -1;
746 dpyinfo->mouse_face_window = Qnil;
747 }
748
749 updated_window = NULL;
750 }
751
752
753 /* End update of frame F. This function is installed as a hook in
754 update_end. */
755
756 static void
757 x_update_end (f)
758 struct frame *f;
759 {
760 /* Mouse highlight may be displayed again. */
761 FRAME_X_DISPLAY_INFO (f)->mouse_face_defer = 0;
762
763 BLOCK_INPUT;
764 XFlush (FRAME_X_DISPLAY (f));
765 UNBLOCK_INPUT;
766 }
767
768
769 /* This function is called from various places in xdisp.c whenever a
770 complete update has been performed. The global variable
771 updated_window is not available here. */
772
773 static void
774 XTframe_up_to_date (f)
775 struct frame *f;
776 {
777 if (FRAME_X_P (f))
778 {
779 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
780
781 if (dpyinfo->mouse_face_deferred_gc
782 || f == dpyinfo->mouse_face_mouse_frame)
783 {
784 BLOCK_INPUT;
785 if (dpyinfo->mouse_face_mouse_frame)
786 note_mouse_highlight (dpyinfo->mouse_face_mouse_frame,
787 dpyinfo->mouse_face_mouse_x,
788 dpyinfo->mouse_face_mouse_y);
789 dpyinfo->mouse_face_deferred_gc = 0;
790 UNBLOCK_INPUT;
791 }
792 }
793 }
794
795
796 /* Draw truncation mark bitmaps, continuation mark bitmaps, overlay
797 arrow bitmaps, or clear the fringes if no bitmaps are required
798 before DESIRED_ROW is made current. The window being updated is
799 found in updated_window. This function It is called from
800 update_window_line only if it is known that there are differences
801 between bitmaps to be drawn between current row and DESIRED_ROW. */
802
803 static void
804 x_after_update_window_line (desired_row)
805 struct glyph_row *desired_row;
806 {
807 struct window *w = updated_window;
808 struct frame *f;
809 int width, height;
810
811 xassert (w);
812
813 if (!desired_row->mode_line_p && !w->pseudo_window_p)
814 {
815 BLOCK_INPUT;
816 x_draw_row_fringe_bitmaps (w, desired_row);
817 UNBLOCK_INPUT;
818 }
819
820 /* When a window has disappeared, make sure that no rest of
821 full-width rows stays visible in the internal border. Could
822 check here if updated_window is the leftmost/rightmost window,
823 but I guess it's not worth doing since vertically split windows
824 are almost never used, internal border is rarely set, and the
825 overhead is very small. */
826 if (windows_or_buffers_changed
827 && desired_row->full_width_p
828 && (f = XFRAME (w->frame),
829 width = FRAME_INTERNAL_BORDER_WIDTH (f),
830 width != 0)
831 && (height = desired_row->visible_height,
832 height > 0))
833 {
834 int y = WINDOW_TO_FRAME_PIXEL_Y (w, max (0, desired_row->y));
835
836 /* Internal border is drawn below the tool bar. */
837 if (WINDOWP (f->tool_bar_window)
838 && w == XWINDOW (f->tool_bar_window))
839 y -= width;
840
841 BLOCK_INPUT;
842 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
843 0, y, width, height, False);
844 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
845 f->output_data.x->pixel_width - width,
846 y, width, height, False);
847 UNBLOCK_INPUT;
848 }
849 }
850
851
852 /* Draw the bitmap WHICH in one of the left or right fringes of
853 window W. ROW is the glyph row for which to display the bitmap; it
854 determines the vertical position at which the bitmap has to be
855 drawn. */
856
857 static void
858 x_draw_fringe_bitmap (w, row, which, left_p)
859 struct window *w;
860 struct glyph_row *row;
861 enum fringe_bitmap_type which;
862 int left_p;
863 {
864 struct frame *f = XFRAME (WINDOW_FRAME (w));
865 Display *display = FRAME_X_DISPLAY (f);
866 Window window = FRAME_X_WINDOW (f);
867 int x, y, wd, h, dy;
868 int b1, b2;
869 unsigned char *bits = NULL;
870 Pixmap pixmap;
871 GC gc = f->output_data.x->normal_gc;
872 struct face *face;
873 int depth = DefaultDepthOfScreen (FRAME_X_SCREEN (f));
874
875 /* Must clip because of partially visible lines. */
876 x_clip_to_row (w, row, gc, 1);
877
878 /* Convert row to frame coordinates. */
879 y = WINDOW_TO_FRAME_PIXEL_Y (w, row->y);
880
881 switch (which)
882 {
883 case NO_FRINGE_BITMAP:
884 wd = 0;
885 h = 0;
886 break;
887
888 case LEFT_TRUNCATION_BITMAP:
889 wd = left_width;
890 h = left_height;
891 bits = left_bits;
892 break;
893
894 case OVERLAY_ARROW_BITMAP:
895 wd = ov_width;
896 h = ov_height;
897 bits = ov_bits;
898 break;
899
900 case RIGHT_TRUNCATION_BITMAP:
901 wd = right_width;
902 h = right_height;
903 bits = right_bits;
904 break;
905
906 case CONTINUED_LINE_BITMAP:
907 wd = continued_width;
908 h = continued_height;
909 bits = continued_bits;
910 break;
911
912 case CONTINUATION_LINE_BITMAP:
913 wd = continuation_width;
914 h = continuation_height;
915 bits = continuation_bits;
916 break;
917
918 case ZV_LINE_BITMAP:
919 wd = zv_width;
920 h = zv_height - (y % zv_period);
921 bits = zv_bits + (y % zv_period);
922 break;
923
924 default:
925 abort ();
926 }
927
928 /* Clip bitmap if too high. */
929 if (h > row->height)
930 h = row->height;
931
932 /* Set dy to the offset in the row to start drawing the bitmap. */
933 dy = (row->height - h) / 2;
934
935 face = FACE_FROM_ID (f, FRINGE_FACE_ID);
936 PREPARE_FACE_FOR_DISPLAY (f, face);
937
938 /* Clear left fringe if no bitmap to draw or if bitmap doesn't fill
939 the fringe. */
940 b1 = b2 = -1;
941 if (left_p)
942 {
943 if (wd > FRAME_X_LEFT_FRINGE_WIDTH (f))
944 wd = FRAME_X_LEFT_FRINGE_WIDTH (f);
945 x = (WINDOW_TO_FRAME_PIXEL_X (w, 0)
946 - wd
947 - (FRAME_X_LEFT_FRINGE_WIDTH (f) - wd) / 2);
948 if (wd < FRAME_X_LEFT_FRINGE_WIDTH (f) || row->height > h)
949 {
950 /* If W has a vertical border to its left, don't draw over it. */
951 int border = ((XFASTINT (w->left) > 0
952 && !FRAME_HAS_VERTICAL_SCROLL_BARS (f))
953 ? 1 : 0);
954 b1 = (window_box_left (w, -1)
955 - FRAME_X_LEFT_FRINGE_WIDTH (f)
956 + border);
957 b2 = (FRAME_X_LEFT_FRINGE_WIDTH (f) - border);
958 }
959 }
960 else
961 {
962 if (wd > FRAME_X_RIGHT_FRINGE_WIDTH (f))
963 wd = FRAME_X_RIGHT_FRINGE_WIDTH (f);
964 x = (window_box_right (w, -1)
965 + (FRAME_X_RIGHT_FRINGE_WIDTH (f) - wd) / 2);
966 /* Clear right fringe if no bitmap to draw of if bitmap doesn't fill
967 the fringe. */
968 if (wd < FRAME_X_RIGHT_FRINGE_WIDTH (f) || row->height > h)
969 {
970 b1 = window_box_right (w, -1);
971 b2 = FRAME_X_RIGHT_FRINGE_WIDTH (f);
972 }
973 }
974
975 if (b1 >= 0)
976 {
977 int header_line_height = WINDOW_DISPLAY_HEADER_LINE_HEIGHT (w);
978
979 /* In case the same realized face is used for fringes and
980 for something displayed in the text (e.g. face `region' on
981 mono-displays, the fill style may have been changed to
982 FillSolid in x_draw_glyph_string_background. */
983 if (face->stipple)
984 XSetFillStyle (display, face->gc, FillOpaqueStippled);
985 else
986 XSetForeground (display, face->gc, face->background);
987
988 XFillRectangle (display, window, face->gc,
989 b1,
990 WINDOW_TO_FRAME_PIXEL_Y (w, max (header_line_height,
991 row->y)),
992 b2,
993 row->visible_height);
994 if (!face->stipple)
995 XSetForeground (display, face->gc, face->foreground);
996 }
997
998 if (which != NO_FRINGE_BITMAP)
999 {
1000 /* Draw the bitmap. I believe these small pixmaps can be cached
1001 by the server. */
1002 pixmap = XCreatePixmapFromBitmapData (display, window, bits, wd, h,
1003 face->foreground,
1004 face->background, depth);
1005 XCopyArea (display, pixmap, window, gc, 0, 0, wd, h, x, y + dy);
1006 XFreePixmap (display, pixmap);
1007 }
1008
1009 XSetClipMask (display, gc, None);
1010 }
1011
1012
1013 /* Draw fringe bitmaps for glyph row ROW on window W. Call this
1014 function with input blocked. */
1015
1016 static void
1017 x_draw_row_fringe_bitmaps (w, row)
1018 struct window *w;
1019 struct glyph_row *row;
1020 {
1021 struct frame *f = XFRAME (w->frame);
1022 enum fringe_bitmap_type bitmap;
1023
1024 xassert (interrupt_input_blocked);
1025
1026 /* If row is completely invisible, because of vscrolling, we
1027 don't have to draw anything. */
1028 if (row->visible_height <= 0)
1029 return;
1030
1031 if (FRAME_X_LEFT_FRINGE_WIDTH (f) != 0)
1032 {
1033 /* Decide which bitmap to draw in the left fringe. */
1034 if (row->overlay_arrow_p)
1035 bitmap = OVERLAY_ARROW_BITMAP;
1036 else if (row->truncated_on_left_p)
1037 bitmap = LEFT_TRUNCATION_BITMAP;
1038 else if (MATRIX_ROW_CONTINUATION_LINE_P (row))
1039 bitmap = CONTINUATION_LINE_BITMAP;
1040 else if (row->indicate_empty_line_p)
1041 bitmap = ZV_LINE_BITMAP;
1042 else
1043 bitmap = NO_FRINGE_BITMAP;
1044
1045 x_draw_fringe_bitmap (w, row, bitmap, 1);
1046 }
1047
1048 if (FRAME_X_RIGHT_FRINGE_WIDTH (f) != 0)
1049 {
1050 /* Decide which bitmap to draw in the right fringe. */
1051 if (row->truncated_on_right_p)
1052 bitmap = RIGHT_TRUNCATION_BITMAP;
1053 else if (row->continued_p)
1054 bitmap = CONTINUED_LINE_BITMAP;
1055 else if (row->indicate_empty_line_p && FRAME_X_LEFT_FRINGE_WIDTH (f) == 0)
1056 bitmap = ZV_LINE_BITMAP;
1057 else
1058 bitmap = NO_FRINGE_BITMAP;
1059
1060 x_draw_fringe_bitmap (w, row, bitmap, 0);
1061 }
1062 }
1063
1064 \f
1065
1066 /* This is called when starting Emacs and when restarting after
1067 suspend. When starting Emacs, no X window is mapped. And nothing
1068 must be done to Emacs's own window if it is suspended (though that
1069 rarely happens). */
1070
1071 static void
1072 XTset_terminal_modes ()
1073 {
1074 }
1075
1076 /* This is called when exiting or suspending Emacs. Exiting will make
1077 the X-windows go away, and suspending requires no action. */
1078
1079 static void
1080 XTreset_terminal_modes ()
1081 {
1082 }
1083
1084
1085 \f
1086 /***********************************************************************
1087 Output Cursor
1088 ***********************************************************************/
1089
1090 /* Set the global variable output_cursor to CURSOR. All cursor
1091 positions are relative to updated_window. */
1092
1093 static void
1094 set_output_cursor (cursor)
1095 struct cursor_pos *cursor;
1096 {
1097 output_cursor.hpos = cursor->hpos;
1098 output_cursor.vpos = cursor->vpos;
1099 output_cursor.x = cursor->x;
1100 output_cursor.y = cursor->y;
1101 }
1102
1103
1104 /* Set a nominal cursor position.
1105
1106 HPOS and VPOS are column/row positions in a window glyph matrix. X
1107 and Y are window text area relative pixel positions.
1108
1109 If this is done during an update, updated_window will contain the
1110 window that is being updated and the position is the future output
1111 cursor position for that window. If updated_window is null, use
1112 selected_window and display the cursor at the given position. */
1113
1114 static void
1115 XTcursor_to (vpos, hpos, y, x)
1116 int vpos, hpos, y, x;
1117 {
1118 struct window *w;
1119
1120 /* If updated_window is not set, work on selected_window. */
1121 if (updated_window)
1122 w = updated_window;
1123 else
1124 w = XWINDOW (selected_window);
1125
1126 /* Set the output cursor. */
1127 output_cursor.hpos = hpos;
1128 output_cursor.vpos = vpos;
1129 output_cursor.x = x;
1130 output_cursor.y = y;
1131
1132 /* If not called as part of an update, really display the cursor.
1133 This will also set the cursor position of W. */
1134 if (updated_window == NULL)
1135 {
1136 BLOCK_INPUT;
1137 x_display_cursor (w, 1, hpos, vpos, x, y);
1138 XFlush (FRAME_X_DISPLAY (SELECTED_FRAME ()));
1139 UNBLOCK_INPUT;
1140 }
1141 }
1142
1143
1144 \f
1145 /***********************************************************************
1146 Display Iterator
1147 ***********************************************************************/
1148
1149 /* Function prototypes of this page. */
1150
1151 static struct face *x_get_glyph_face_and_encoding P_ ((struct frame *,
1152 struct glyph *,
1153 XChar2b *,
1154 int *));
1155 static struct face *x_get_char_face_and_encoding P_ ((struct frame *, int,
1156 int, XChar2b *, int,
1157 int));
1158 static XCharStruct *x_per_char_metric P_ ((XFontStruct *, XChar2b *));
1159 static void x_encode_char P_ ((int, XChar2b *, struct font_info *));
1160 static void x_append_glyph P_ ((struct it *));
1161 static void x_append_composite_glyph P_ ((struct it *));
1162 static void x_append_stretch_glyph P_ ((struct it *it, Lisp_Object,
1163 int, int, double));
1164 static void x_produce_glyphs P_ ((struct it *));
1165 static void x_produce_image_glyph P_ ((struct it *it));
1166
1167
1168 /* Get metrics of character CHAR2B in FONT. Value is null if CHAR2B
1169 is not contained in the font. */
1170
1171 static INLINE XCharStruct *
1172 x_per_char_metric (font, char2b)
1173 XFontStruct *font;
1174 XChar2b *char2b;
1175 {
1176 /* The result metric information. */
1177 XCharStruct *pcm = NULL;
1178
1179 xassert (font && char2b);
1180
1181 if (font->per_char != NULL)
1182 {
1183 if (font->min_byte1 == 0 && font->max_byte1 == 0)
1184 {
1185 /* min_char_or_byte2 specifies the linear character index
1186 corresponding to the first element of the per_char array,
1187 max_char_or_byte2 is the index of the last character. A
1188 character with non-zero CHAR2B->byte1 is not in the font.
1189 A character with byte2 less than min_char_or_byte2 or
1190 greater max_char_or_byte2 is not in the font. */
1191 if (char2b->byte1 == 0
1192 && char2b->byte2 >= font->min_char_or_byte2
1193 && char2b->byte2 <= font->max_char_or_byte2)
1194 pcm = font->per_char + char2b->byte2 - font->min_char_or_byte2;
1195 }
1196 else
1197 {
1198 /* If either min_byte1 or max_byte1 are nonzero, both
1199 min_char_or_byte2 and max_char_or_byte2 are less than
1200 256, and the 2-byte character index values corresponding
1201 to the per_char array element N (counting from 0) are:
1202
1203 byte1 = N/D + min_byte1
1204 byte2 = N\D + min_char_or_byte2
1205
1206 where:
1207
1208 D = max_char_or_byte2 - min_char_or_byte2 + 1
1209 / = integer division
1210 \ = integer modulus */
1211 if (char2b->byte1 >= font->min_byte1
1212 && char2b->byte1 <= font->max_byte1
1213 && char2b->byte2 >= font->min_char_or_byte2
1214 && char2b->byte2 <= font->max_char_or_byte2)
1215 {
1216 pcm = (font->per_char
1217 + ((font->max_char_or_byte2 - font->min_char_or_byte2 + 1)
1218 * (char2b->byte1 - font->min_byte1))
1219 + (char2b->byte2 - font->min_char_or_byte2));
1220 }
1221 }
1222 }
1223 else
1224 {
1225 /* If the per_char pointer is null, all glyphs between the first
1226 and last character indexes inclusive have the same
1227 information, as given by both min_bounds and max_bounds. */
1228 if (char2b->byte2 >= font->min_char_or_byte2
1229 && char2b->byte2 <= font->max_char_or_byte2)
1230 pcm = &font->max_bounds;
1231 }
1232
1233 return ((pcm == NULL
1234 || (pcm->width == 0 && (pcm->rbearing - pcm->lbearing) == 0))
1235 ? NULL : pcm);
1236 }
1237
1238
1239 /* Encode CHAR2B using encoding information from FONT_INFO. CHAR2B is
1240 the two-byte form of C. Encoding is returned in *CHAR2B. */
1241
1242 static INLINE void
1243 x_encode_char (c, char2b, font_info)
1244 int c;
1245 XChar2b *char2b;
1246 struct font_info *font_info;
1247 {
1248 int charset = CHAR_CHARSET (c);
1249 XFontStruct *font = font_info->font;
1250
1251 /* FONT_INFO may define a scheme by which to encode byte1 and byte2.
1252 This may be either a program in a special encoder language or a
1253 fixed encoding. */
1254 if (font_info->font_encoder)
1255 {
1256 /* It's a program. */
1257 struct ccl_program *ccl = font_info->font_encoder;
1258
1259 if (CHARSET_DIMENSION (charset) == 1)
1260 {
1261 ccl->reg[0] = charset;
1262 ccl->reg[1] = char2b->byte2;
1263 }
1264 else
1265 {
1266 ccl->reg[0] = charset;
1267 ccl->reg[1] = char2b->byte1;
1268 ccl->reg[2] = char2b->byte2;
1269 }
1270
1271 ccl_driver (ccl, NULL, NULL, 0, 0, NULL);
1272
1273 /* We assume that MSBs are appropriately set/reset by CCL
1274 program. */
1275 if (font->max_byte1 == 0) /* 1-byte font */
1276 char2b->byte1 = 0, char2b->byte2 = ccl->reg[1];
1277 else
1278 char2b->byte1 = ccl->reg[1], char2b->byte2 = ccl->reg[2];
1279 }
1280 else if (font_info->encoding[charset])
1281 {
1282 /* Fixed encoding scheme. See fontset.h for the meaning of the
1283 encoding numbers. */
1284 int enc = font_info->encoding[charset];
1285
1286 if ((enc == 1 || enc == 2)
1287 && CHARSET_DIMENSION (charset) == 2)
1288 char2b->byte1 |= 0x80;
1289
1290 if (enc == 1 || enc == 3)
1291 char2b->byte2 |= 0x80;
1292 }
1293 }
1294
1295
1296 /* Get face and two-byte form of character C in face FACE_ID on frame
1297 F. The encoding of C is returned in *CHAR2B. MULTIBYTE_P non-zero
1298 means we want to display multibyte text. DISPLAY_P non-zero means
1299 make sure that X resources for the face returned are allocated.
1300 Value is a pointer to a realized face that is ready for display if
1301 DISPLAY_P is non-zero. */
1302
1303 static INLINE struct face *
1304 x_get_char_face_and_encoding (f, c, face_id, char2b, multibyte_p, display_p)
1305 struct frame *f;
1306 int c, face_id;
1307 XChar2b *char2b;
1308 int multibyte_p, display_p;
1309 {
1310 struct face *face = FACE_FROM_ID (f, face_id);
1311
1312 if (!multibyte_p)
1313 {
1314 /* Unibyte case. We don't have to encode, but we have to make
1315 sure to use a face suitable for unibyte. */
1316 char2b->byte1 = 0;
1317 char2b->byte2 = c;
1318 face_id = FACE_FOR_CHAR (f, face, c);
1319 face = FACE_FROM_ID (f, face_id);
1320 }
1321 else if (c < 128 && face_id < BASIC_FACE_ID_SENTINEL)
1322 {
1323 /* Case of ASCII in a face known to fit ASCII. */
1324 char2b->byte1 = 0;
1325 char2b->byte2 = c;
1326 }
1327 else
1328 {
1329 int c1, c2, charset;
1330
1331 /* Split characters into bytes. If c2 is -1 afterwards, C is
1332 really a one-byte character so that byte1 is zero. */
1333 SPLIT_CHAR (c, charset, c1, c2);
1334 if (c2 > 0)
1335 char2b->byte1 = c1, char2b->byte2 = c2;
1336 else
1337 char2b->byte1 = 0, char2b->byte2 = c1;
1338
1339 /* Maybe encode the character in *CHAR2B. */
1340 if (face->font != NULL)
1341 {
1342 struct font_info *font_info
1343 = FONT_INFO_FROM_ID (f, face->font_info_id);
1344 if (font_info)
1345 x_encode_char (c, char2b, font_info);
1346 }
1347 }
1348
1349 /* Make sure X resources of the face are allocated. */
1350 if (display_p)
1351 {
1352 xassert (face != NULL);
1353 PREPARE_FACE_FOR_DISPLAY (f, face);
1354 }
1355
1356 return face;
1357 }
1358
1359
1360 /* Get face and two-byte form of character glyph GLYPH on frame F.
1361 The encoding of GLYPH->u.ch is returned in *CHAR2B. Value is
1362 a pointer to a realized face that is ready for display. */
1363
1364 static INLINE struct face *
1365 x_get_glyph_face_and_encoding (f, glyph, char2b, two_byte_p)
1366 struct frame *f;
1367 struct glyph *glyph;
1368 XChar2b *char2b;
1369 int *two_byte_p;
1370 {
1371 struct face *face;
1372
1373 xassert (glyph->type == CHAR_GLYPH);
1374 face = FACE_FROM_ID (f, glyph->face_id);
1375
1376 if (two_byte_p)
1377 *two_byte_p = 0;
1378
1379 if (!glyph->multibyte_p)
1380 {
1381 /* Unibyte case. We don't have to encode, but we have to make
1382 sure to use a face suitable for unibyte. */
1383 char2b->byte1 = 0;
1384 char2b->byte2 = glyph->u.ch;
1385 }
1386 else if (glyph->u.ch < 128
1387 && glyph->face_id < BASIC_FACE_ID_SENTINEL)
1388 {
1389 /* Case of ASCII in a face known to fit ASCII. */
1390 char2b->byte1 = 0;
1391 char2b->byte2 = glyph->u.ch;
1392 }
1393 else
1394 {
1395 int c1, c2, charset;
1396
1397 /* Split characters into bytes. If c2 is -1 afterwards, C is
1398 really a one-byte character so that byte1 is zero. */
1399 SPLIT_CHAR (glyph->u.ch, charset, c1, c2);
1400 if (c2 > 0)
1401 char2b->byte1 = c1, char2b->byte2 = c2;
1402 else
1403 char2b->byte1 = 0, char2b->byte2 = c1;
1404
1405 /* Maybe encode the character in *CHAR2B. */
1406 if (charset != CHARSET_ASCII)
1407 {
1408 struct font_info *font_info
1409 = FONT_INFO_FROM_ID (f, face->font_info_id);
1410 if (font_info)
1411 {
1412 x_encode_char (glyph->u.ch, char2b, font_info);
1413 if (two_byte_p)
1414 *two_byte_p
1415 = ((XFontStruct *) (font_info->font))->max_byte1 > 0;
1416 }
1417 }
1418 }
1419
1420 /* Make sure X resources of the face are allocated. */
1421 xassert (face != NULL);
1422 PREPARE_FACE_FOR_DISPLAY (f, face);
1423 return face;
1424 }
1425
1426
1427 /* Store one glyph for IT->char_to_display in IT->glyph_row.
1428 Called from x_produce_glyphs when IT->glyph_row is non-null. */
1429
1430 static INLINE void
1431 x_append_glyph (it)
1432 struct it *it;
1433 {
1434 struct glyph *glyph;
1435 enum glyph_row_area area = it->area;
1436
1437 xassert (it->glyph_row);
1438 xassert (it->char_to_display != '\n' && it->char_to_display != '\t');
1439
1440 glyph = it->glyph_row->glyphs[area] + it->glyph_row->used[area];
1441 if (glyph < it->glyph_row->glyphs[area + 1])
1442 {
1443 glyph->charpos = CHARPOS (it->position);
1444 glyph->object = it->object;
1445 glyph->pixel_width = it->pixel_width;
1446 glyph->voffset = it->voffset;
1447 glyph->type = CHAR_GLYPH;
1448 glyph->multibyte_p = it->multibyte_p;
1449 glyph->left_box_line_p = it->start_of_box_run_p;
1450 glyph->right_box_line_p = it->end_of_box_run_p;
1451 glyph->overlaps_vertically_p = (it->phys_ascent > it->ascent
1452 || it->phys_descent > it->descent);
1453 glyph->padding_p = 0;
1454 glyph->glyph_not_available_p = it->glyph_not_available_p;
1455 glyph->face_id = it->face_id;
1456 glyph->u.ch = it->char_to_display;
1457 ++it->glyph_row->used[area];
1458 }
1459 }
1460
1461 /* Store one glyph for the composition IT->cmp_id in IT->glyph_row.
1462 Called from x_produce_glyphs when IT->glyph_row is non-null. */
1463
1464 static INLINE void
1465 x_append_composite_glyph (it)
1466 struct it *it;
1467 {
1468 struct glyph *glyph;
1469 enum glyph_row_area area = it->area;
1470
1471 xassert (it->glyph_row);
1472
1473 glyph = it->glyph_row->glyphs[area] + it->glyph_row->used[area];
1474 if (glyph < it->glyph_row->glyphs[area + 1])
1475 {
1476 glyph->charpos = CHARPOS (it->position);
1477 glyph->object = it->object;
1478 glyph->pixel_width = it->pixel_width;
1479 glyph->voffset = it->voffset;
1480 glyph->type = COMPOSITE_GLYPH;
1481 glyph->multibyte_p = it->multibyte_p;
1482 glyph->left_box_line_p = it->start_of_box_run_p;
1483 glyph->right_box_line_p = it->end_of_box_run_p;
1484 glyph->overlaps_vertically_p = (it->phys_ascent > it->ascent
1485 || it->phys_descent > it->descent);
1486 glyph->padding_p = 0;
1487 glyph->glyph_not_available_p = 0;
1488 glyph->face_id = it->face_id;
1489 glyph->u.cmp_id = it->cmp_id;
1490 ++it->glyph_row->used[area];
1491 }
1492 }
1493
1494
1495 /* Change IT->ascent and IT->height according to the setting of
1496 IT->voffset. */
1497
1498 static INLINE void
1499 take_vertical_position_into_account (it)
1500 struct it *it;
1501 {
1502 if (it->voffset)
1503 {
1504 if (it->voffset < 0)
1505 /* Increase the ascent so that we can display the text higher
1506 in the line. */
1507 it->ascent += abs (it->voffset);
1508 else
1509 /* Increase the descent so that we can display the text lower
1510 in the line. */
1511 it->descent += it->voffset;
1512 }
1513 }
1514
1515
1516 /* Produce glyphs/get display metrics for the image IT is loaded with.
1517 See the description of struct display_iterator in dispextern.h for
1518 an overview of struct display_iterator. */
1519
1520 static void
1521 x_produce_image_glyph (it)
1522 struct it *it;
1523 {
1524 struct image *img;
1525 struct face *face;
1526
1527 xassert (it->what == IT_IMAGE);
1528
1529 face = FACE_FROM_ID (it->f, it->face_id);
1530 img = IMAGE_FROM_ID (it->f, it->image_id);
1531 xassert (img);
1532
1533 /* Make sure X resources of the face and image are loaded. */
1534 PREPARE_FACE_FOR_DISPLAY (it->f, face);
1535 prepare_image_for_display (it->f, img);
1536
1537 it->ascent = it->phys_ascent = image_ascent (img, face);
1538 it->descent = it->phys_descent = img->height + 2 * img->vmargin - it->ascent;
1539 it->pixel_width = img->width + 2 * img->hmargin;
1540
1541 it->nglyphs = 1;
1542
1543 if (face->box != FACE_NO_BOX)
1544 {
1545 if (face->box_line_width > 0)
1546 {
1547 it->ascent += face->box_line_width;
1548 it->descent += face->box_line_width;
1549 }
1550
1551 if (it->start_of_box_run_p)
1552 it->pixel_width += abs (face->box_line_width);
1553 if (it->end_of_box_run_p)
1554 it->pixel_width += abs (face->box_line_width);
1555 }
1556
1557 take_vertical_position_into_account (it);
1558
1559 if (it->glyph_row)
1560 {
1561 struct glyph *glyph;
1562 enum glyph_row_area area = it->area;
1563
1564 glyph = it->glyph_row->glyphs[area] + it->glyph_row->used[area];
1565 if (glyph < it->glyph_row->glyphs[area + 1])
1566 {
1567 glyph->charpos = CHARPOS (it->position);
1568 glyph->object = it->object;
1569 glyph->pixel_width = it->pixel_width;
1570 glyph->voffset = it->voffset;
1571 glyph->type = IMAGE_GLYPH;
1572 glyph->multibyte_p = it->multibyte_p;
1573 glyph->left_box_line_p = it->start_of_box_run_p;
1574 glyph->right_box_line_p = it->end_of_box_run_p;
1575 glyph->overlaps_vertically_p = 0;
1576 glyph->padding_p = 0;
1577 glyph->glyph_not_available_p = 0;
1578 glyph->face_id = it->face_id;
1579 glyph->u.img_id = img->id;
1580 ++it->glyph_row->used[area];
1581 }
1582 }
1583 }
1584
1585
1586 /* Append a stretch glyph to IT->glyph_row. OBJECT is the source
1587 of the glyph, WIDTH and HEIGHT are the width and height of the
1588 stretch. ASCENT is the percentage/100 of HEIGHT to use for the
1589 ascent of the glyph (0 <= ASCENT <= 1). */
1590
1591 static void
1592 x_append_stretch_glyph (it, object, width, height, ascent)
1593 struct it *it;
1594 Lisp_Object object;
1595 int width, height;
1596 double ascent;
1597 {
1598 struct glyph *glyph;
1599 enum glyph_row_area area = it->area;
1600
1601 xassert (ascent >= 0 && ascent <= 1);
1602
1603 glyph = it->glyph_row->glyphs[area] + it->glyph_row->used[area];
1604 if (glyph < it->glyph_row->glyphs[area + 1])
1605 {
1606 glyph->charpos = CHARPOS (it->position);
1607 glyph->object = object;
1608 glyph->pixel_width = width;
1609 glyph->voffset = it->voffset;
1610 glyph->type = STRETCH_GLYPH;
1611 glyph->multibyte_p = it->multibyte_p;
1612 glyph->left_box_line_p = it->start_of_box_run_p;
1613 glyph->right_box_line_p = it->end_of_box_run_p;
1614 glyph->overlaps_vertically_p = 0;
1615 glyph->padding_p = 0;
1616 glyph->glyph_not_available_p = 0;
1617 glyph->face_id = it->face_id;
1618 glyph->u.stretch.ascent = height * ascent;
1619 glyph->u.stretch.height = height;
1620 ++it->glyph_row->used[area];
1621 }
1622 }
1623
1624
1625 /* Produce a stretch glyph for iterator IT. IT->object is the value
1626 of the glyph property displayed. The value must be a list
1627 `(space KEYWORD VALUE ...)' with the following KEYWORD/VALUE pairs
1628 being recognized:
1629
1630 1. `:width WIDTH' specifies that the space should be WIDTH *
1631 canonical char width wide. WIDTH may be an integer or floating
1632 point number.
1633
1634 2. `:relative-width FACTOR' specifies that the width of the stretch
1635 should be computed from the width of the first character having the
1636 `glyph' property, and should be FACTOR times that width.
1637
1638 3. `:align-to HPOS' specifies that the space should be wide enough
1639 to reach HPOS, a value in canonical character units.
1640
1641 Exactly one of the above pairs must be present.
1642
1643 4. `:height HEIGHT' specifies that the height of the stretch produced
1644 should be HEIGHT, measured in canonical character units.
1645
1646 5. `:relative-height FACTOR' specifies that the height of the
1647 stretch should be FACTOR times the height of the characters having
1648 the glyph property.
1649
1650 Either none or exactly one of 4 or 5 must be present.
1651
1652 6. `:ascent ASCENT' specifies that ASCENT percent of the height
1653 of the stretch should be used for the ascent of the stretch.
1654 ASCENT must be in the range 0 <= ASCENT <= 100. */
1655
1656 #define NUMVAL(X) \
1657 ((INTEGERP (X) || FLOATP (X)) \
1658 ? XFLOATINT (X) \
1659 : - 1)
1660
1661
1662 static void
1663 x_produce_stretch_glyph (it)
1664 struct it *it;
1665 {
1666 /* (space :width WIDTH :height HEIGHT. */
1667 #if GLYPH_DEBUG
1668 extern Lisp_Object Qspace;
1669 #endif
1670 extern Lisp_Object QCwidth, QCheight, QCascent;
1671 extern Lisp_Object QCrelative_width, QCrelative_height;
1672 extern Lisp_Object QCalign_to;
1673 Lisp_Object prop, plist;
1674 double width = 0, height = 0, ascent = 0;
1675 struct face *face = FACE_FROM_ID (it->f, it->face_id);
1676 XFontStruct *font = face->font ? face->font : FRAME_FONT (it->f);
1677
1678 PREPARE_FACE_FOR_DISPLAY (it->f, face);
1679
1680 /* List should start with `space'. */
1681 xassert (CONSP (it->object) && EQ (XCAR (it->object), Qspace));
1682 plist = XCDR (it->object);
1683
1684 /* Compute the width of the stretch. */
1685 if (prop = Fplist_get (plist, QCwidth),
1686 NUMVAL (prop) > 0)
1687 /* Absolute width `:width WIDTH' specified and valid. */
1688 width = NUMVAL (prop) * CANON_X_UNIT (it->f);
1689 else if (prop = Fplist_get (plist, QCrelative_width),
1690 NUMVAL (prop) > 0)
1691 {
1692 /* Relative width `:relative-width FACTOR' specified and valid.
1693 Compute the width of the characters having the `glyph'
1694 property. */
1695 struct it it2;
1696 unsigned char *p = BYTE_POS_ADDR (IT_BYTEPOS (*it));
1697
1698 it2 = *it;
1699 if (it->multibyte_p)
1700 {
1701 int maxlen = ((IT_BYTEPOS (*it) >= GPT ? ZV : GPT)
1702 - IT_BYTEPOS (*it));
1703 it2.c = STRING_CHAR_AND_LENGTH (p, maxlen, it2.len);
1704 }
1705 else
1706 it2.c = *p, it2.len = 1;
1707
1708 it2.glyph_row = NULL;
1709 it2.what = IT_CHARACTER;
1710 x_produce_glyphs (&it2);
1711 width = NUMVAL (prop) * it2.pixel_width;
1712 }
1713 else if (prop = Fplist_get (plist, QCalign_to),
1714 NUMVAL (prop) > 0)
1715 width = NUMVAL (prop) * CANON_X_UNIT (it->f) - it->current_x;
1716 else
1717 /* Nothing specified -> width defaults to canonical char width. */
1718 width = CANON_X_UNIT (it->f);
1719
1720 /* Compute height. */
1721 if (prop = Fplist_get (plist, QCheight),
1722 NUMVAL (prop) > 0)
1723 height = NUMVAL (prop) * CANON_Y_UNIT (it->f);
1724 else if (prop = Fplist_get (plist, QCrelative_height),
1725 NUMVAL (prop) > 0)
1726 height = FONT_HEIGHT (font) * NUMVAL (prop);
1727 else
1728 height = FONT_HEIGHT (font);
1729
1730 /* Compute percentage of height used for ascent. If
1731 `:ascent ASCENT' is present and valid, use that. Otherwise,
1732 derive the ascent from the font in use. */
1733 if (prop = Fplist_get (plist, QCascent),
1734 NUMVAL (prop) > 0 && NUMVAL (prop) <= 100)
1735 ascent = NUMVAL (prop) / 100.0;
1736 else
1737 ascent = (double) font->ascent / FONT_HEIGHT (font);
1738
1739 if (width <= 0)
1740 width = 1;
1741 if (height <= 0)
1742 height = 1;
1743
1744 if (it->glyph_row)
1745 {
1746 Lisp_Object object = it->stack[it->sp - 1].string;
1747 if (!STRINGP (object))
1748 object = it->w->buffer;
1749 x_append_stretch_glyph (it, object, width, height, ascent);
1750 }
1751
1752 it->pixel_width = width;
1753 it->ascent = it->phys_ascent = height * ascent;
1754 it->descent = it->phys_descent = height - it->ascent;
1755 it->nglyphs = 1;
1756
1757 if (face->box != FACE_NO_BOX)
1758 {
1759 if (face->box_line_width > 0)
1760 {
1761 it->ascent += face->box_line_width;
1762 it->descent += face->box_line_width;
1763 }
1764
1765 if (it->start_of_box_run_p)
1766 it->pixel_width += abs (face->box_line_width);
1767 if (it->end_of_box_run_p)
1768 it->pixel_width += abs (face->box_line_width);
1769 }
1770
1771 take_vertical_position_into_account (it);
1772 }
1773
1774 /* Return proper value to be used as baseline offset of font that has
1775 ASCENT and DESCENT to draw characters by the font at the vertical
1776 center of the line of frame F.
1777
1778 Here, out task is to find the value of BOFF in the following figure;
1779
1780 -------------------------+-----------+-
1781 -+-+---------+-+ | |
1782 | | | | | |
1783 | | | | F_ASCENT F_HEIGHT
1784 | | | ASCENT | |
1785 HEIGHT | | | | |
1786 | | |-|-+------+-----------|------- baseline
1787 | | | | BOFF | |
1788 | |---------|-+-+ | |
1789 | | | DESCENT | |
1790 -+-+---------+-+ F_DESCENT |
1791 -------------------------+-----------+-
1792
1793 -BOFF + DESCENT + (F_HEIGHT - HEIGHT) / 2 = F_DESCENT
1794 BOFF = DESCENT + (F_HEIGHT - HEIGHT) / 2 - F_DESCENT
1795 DESCENT = FONT->descent
1796 HEIGHT = FONT_HEIGHT (FONT)
1797 F_DESCENT = (F->output_data.x->font->descent
1798 - F->output_data.x->baseline_offset)
1799 F_HEIGHT = FRAME_LINE_HEIGHT (F)
1800 */
1801
1802 #define VCENTER_BASELINE_OFFSET(FONT, F) \
1803 ((FONT)->descent \
1804 + (FRAME_LINE_HEIGHT ((F)) - FONT_HEIGHT ((FONT)) \
1805 + (FRAME_LINE_HEIGHT ((F)) > FONT_HEIGHT ((FONT)))) / 2 \
1806 - ((F)->output_data.x->font->descent - (F)->output_data.x->baseline_offset))
1807
1808 /* Produce glyphs/get display metrics for the display element IT is
1809 loaded with. See the description of struct display_iterator in
1810 dispextern.h for an overview of struct display_iterator. */
1811
1812 static void
1813 x_produce_glyphs (it)
1814 struct it *it;
1815 {
1816 it->glyph_not_available_p = 0;
1817
1818 if (it->what == IT_CHARACTER)
1819 {
1820 XChar2b char2b;
1821 XFontStruct *font;
1822 struct face *face = FACE_FROM_ID (it->f, it->face_id);
1823 XCharStruct *pcm;
1824 int font_not_found_p;
1825 struct font_info *font_info;
1826 int boff; /* baseline offset */
1827 /* We may change it->multibyte_p upon unibyte<->multibyte
1828 conversion. So, save the current value now and restore it
1829 later.
1830
1831 Note: It seems that we don't have to record multibyte_p in
1832 struct glyph because the character code itself tells if or
1833 not the character is multibyte. Thus, in the future, we must
1834 consider eliminating the field `multibyte_p' in the struct
1835 glyph. */
1836 int saved_multibyte_p = it->multibyte_p;
1837
1838 /* Maybe translate single-byte characters to multibyte, or the
1839 other way. */
1840 it->char_to_display = it->c;
1841 if (!ASCII_BYTE_P (it->c))
1842 {
1843 if (unibyte_display_via_language_environment
1844 && SINGLE_BYTE_CHAR_P (it->c)
1845 && (it->c >= 0240
1846 || !NILP (Vnonascii_translation_table)))
1847 {
1848 it->char_to_display = unibyte_char_to_multibyte (it->c);
1849 it->multibyte_p = 1;
1850 it->face_id = FACE_FOR_CHAR (it->f, face, it->char_to_display);
1851 face = FACE_FROM_ID (it->f, it->face_id);
1852 }
1853 else if (!SINGLE_BYTE_CHAR_P (it->c)
1854 && !it->multibyte_p)
1855 {
1856 it->multibyte_p = 1;
1857 it->face_id = FACE_FOR_CHAR (it->f, face, it->char_to_display);
1858 face = FACE_FROM_ID (it->f, it->face_id);
1859 }
1860 }
1861
1862 /* Get font to use. Encode IT->char_to_display. */
1863 x_get_char_face_and_encoding (it->f, it->char_to_display,
1864 it->face_id, &char2b,
1865 it->multibyte_p, 0);
1866 font = face->font;
1867
1868 /* When no suitable font found, use the default font. */
1869 font_not_found_p = font == NULL;
1870 if (font_not_found_p)
1871 {
1872 font = FRAME_FONT (it->f);
1873 boff = it->f->output_data.x->baseline_offset;
1874 font_info = NULL;
1875 }
1876 else
1877 {
1878 font_info = FONT_INFO_FROM_ID (it->f, face->font_info_id);
1879 boff = font_info->baseline_offset;
1880 if (font_info->vertical_centering)
1881 boff = VCENTER_BASELINE_OFFSET (font, it->f) - boff;
1882 }
1883
1884 if (it->char_to_display >= ' '
1885 && (!it->multibyte_p || it->char_to_display < 128))
1886 {
1887 /* Either unibyte or ASCII. */
1888 int stretched_p;
1889
1890 it->nglyphs = 1;
1891
1892 pcm = x_per_char_metric (font, &char2b);
1893 it->ascent = font->ascent + boff;
1894 it->descent = font->descent - boff;
1895
1896 if (pcm)
1897 {
1898 it->phys_ascent = pcm->ascent + boff;
1899 it->phys_descent = pcm->descent - boff;
1900 it->pixel_width = pcm->width;
1901 }
1902 else
1903 {
1904 it->glyph_not_available_p = 1;
1905 it->phys_ascent = font->ascent + boff;
1906 it->phys_descent = font->descent - boff;
1907 it->pixel_width = FONT_WIDTH (font);
1908 }
1909
1910 /* If this is a space inside a region of text with
1911 `space-width' property, change its width. */
1912 stretched_p = it->char_to_display == ' ' && !NILP (it->space_width);
1913 if (stretched_p)
1914 it->pixel_width *= XFLOATINT (it->space_width);
1915
1916 /* If face has a box, add the box thickness to the character
1917 height. If character has a box line to the left and/or
1918 right, add the box line width to the character's width. */
1919 if (face->box != FACE_NO_BOX)
1920 {
1921 int thick = face->box_line_width;
1922
1923 if (thick > 0)
1924 {
1925 it->ascent += thick;
1926 it->descent += thick;
1927 }
1928 else
1929 thick = -thick;
1930
1931 if (it->start_of_box_run_p)
1932 it->pixel_width += thick;
1933 if (it->end_of_box_run_p)
1934 it->pixel_width += thick;
1935 }
1936
1937 /* If face has an overline, add the height of the overline
1938 (1 pixel) and a 1 pixel margin to the character height. */
1939 if (face->overline_p)
1940 it->ascent += 2;
1941
1942 take_vertical_position_into_account (it);
1943
1944 /* If we have to actually produce glyphs, do it. */
1945 if (it->glyph_row)
1946 {
1947 if (stretched_p)
1948 {
1949 /* Translate a space with a `space-width' property
1950 into a stretch glyph. */
1951 double ascent = (double) font->ascent / FONT_HEIGHT (font);
1952 x_append_stretch_glyph (it, it->object, it->pixel_width,
1953 it->ascent + it->descent, ascent);
1954 }
1955 else
1956 x_append_glyph (it);
1957
1958 /* If characters with lbearing or rbearing are displayed
1959 in this line, record that fact in a flag of the
1960 glyph row. This is used to optimize X output code. */
1961 if (pcm && (pcm->lbearing < 0 || pcm->rbearing > pcm->width))
1962 it->glyph_row->contains_overlapping_glyphs_p = 1;
1963 }
1964 }
1965 else if (it->char_to_display == '\n')
1966 {
1967 /* A newline has no width but we need the height of the line. */
1968 it->pixel_width = 0;
1969 it->nglyphs = 0;
1970 it->ascent = it->phys_ascent = font->ascent + boff;
1971 it->descent = it->phys_descent = font->descent - boff;
1972
1973 if (face->box != FACE_NO_BOX
1974 && face->box_line_width > 0)
1975 {
1976 it->ascent += face->box_line_width;
1977 it->descent += face->box_line_width;
1978 }
1979 }
1980 else if (it->char_to_display == '\t')
1981 {
1982 int tab_width = it->tab_width * CANON_X_UNIT (it->f);
1983 int x = it->current_x + it->continuation_lines_width;
1984 int next_tab_x = ((1 + x + tab_width - 1) / tab_width) * tab_width;
1985
1986 /* If the distance from the current position to the next tab
1987 stop is less than a canonical character width, use the
1988 tab stop after that. */
1989 if (next_tab_x - x < CANON_X_UNIT (it->f))
1990 next_tab_x += tab_width;
1991
1992 it->pixel_width = next_tab_x - x;
1993 it->nglyphs = 1;
1994 it->ascent = it->phys_ascent = font->ascent + boff;
1995 it->descent = it->phys_descent = font->descent - boff;
1996
1997 if (it->glyph_row)
1998 {
1999 double ascent = (double) it->ascent / (it->ascent + it->descent);
2000 x_append_stretch_glyph (it, it->object, it->pixel_width,
2001 it->ascent + it->descent, ascent);
2002 }
2003 }
2004 else
2005 {
2006 /* A multi-byte character. Assume that the display width of the
2007 character is the width of the character multiplied by the
2008 width of the font. */
2009
2010 /* If we found a font, this font should give us the right
2011 metrics. If we didn't find a font, use the frame's
2012 default font and calculate the width of the character
2013 from the charset width; this is what old redisplay code
2014 did. */
2015 pcm = x_per_char_metric (font, &char2b);
2016 if (font_not_found_p || !pcm)
2017 {
2018 int charset = CHAR_CHARSET (it->char_to_display);
2019
2020 it->glyph_not_available_p = 1;
2021 it->pixel_width = (FONT_WIDTH (FRAME_FONT (it->f))
2022 * CHARSET_WIDTH (charset));
2023 it->phys_ascent = font->ascent + boff;
2024 it->phys_descent = font->descent - boff;
2025 }
2026 else
2027 {
2028 it->pixel_width = pcm->width;
2029 it->phys_ascent = pcm->ascent + boff;
2030 it->phys_descent = pcm->descent - boff;
2031 if (it->glyph_row
2032 && (pcm->lbearing < 0
2033 || pcm->rbearing > pcm->width))
2034 it->glyph_row->contains_overlapping_glyphs_p = 1;
2035 }
2036 it->nglyphs = 1;
2037 it->ascent = font->ascent + boff;
2038 it->descent = font->descent - boff;
2039 if (face->box != FACE_NO_BOX)
2040 {
2041 int thick = face->box_line_width;
2042
2043 if (thick > 0)
2044 {
2045 it->ascent += thick;
2046 it->descent += thick;
2047 }
2048 else
2049 thick = - thick;
2050
2051 if (it->start_of_box_run_p)
2052 it->pixel_width += thick;
2053 if (it->end_of_box_run_p)
2054 it->pixel_width += thick;
2055 }
2056
2057 /* If face has an overline, add the height of the overline
2058 (1 pixel) and a 1 pixel margin to the character height. */
2059 if (face->overline_p)
2060 it->ascent += 2;
2061
2062 take_vertical_position_into_account (it);
2063
2064 if (it->glyph_row)
2065 x_append_glyph (it);
2066 }
2067 it->multibyte_p = saved_multibyte_p;
2068 }
2069 else if (it->what == IT_COMPOSITION)
2070 {
2071 /* Note: A composition is represented as one glyph in the
2072 glyph matrix. There are no padding glyphs. */
2073 XChar2b char2b;
2074 XFontStruct *font;
2075 struct face *face = FACE_FROM_ID (it->f, it->face_id);
2076 XCharStruct *pcm;
2077 int font_not_found_p;
2078 struct font_info *font_info;
2079 int boff; /* baseline offset */
2080 struct composition *cmp = composition_table[it->cmp_id];
2081
2082 /* Maybe translate single-byte characters to multibyte. */
2083 it->char_to_display = it->c;
2084 if (unibyte_display_via_language_environment
2085 && SINGLE_BYTE_CHAR_P (it->c)
2086 && (it->c >= 0240
2087 || (it->c >= 0200
2088 && !NILP (Vnonascii_translation_table))))
2089 {
2090 it->char_to_display = unibyte_char_to_multibyte (it->c);
2091 }
2092
2093 /* Get face and font to use. Encode IT->char_to_display. */
2094 it->face_id = FACE_FOR_CHAR (it->f, face, it->char_to_display);
2095 face = FACE_FROM_ID (it->f, it->face_id);
2096 x_get_char_face_and_encoding (it->f, it->char_to_display,
2097 it->face_id, &char2b, it->multibyte_p, 0);
2098 font = face->font;
2099
2100 /* When no suitable font found, use the default font. */
2101 font_not_found_p = font == NULL;
2102 if (font_not_found_p)
2103 {
2104 font = FRAME_FONT (it->f);
2105 boff = it->f->output_data.x->baseline_offset;
2106 font_info = NULL;
2107 }
2108 else
2109 {
2110 font_info = FONT_INFO_FROM_ID (it->f, face->font_info_id);
2111 boff = font_info->baseline_offset;
2112 if (font_info->vertical_centering)
2113 boff = VCENTER_BASELINE_OFFSET (font, it->f) - boff;
2114 }
2115
2116 /* There are no padding glyphs, so there is only one glyph to
2117 produce for the composition. Important is that pixel_width,
2118 ascent and descent are the values of what is drawn by
2119 draw_glyphs (i.e. the values of the overall glyphs composed). */
2120 it->nglyphs = 1;
2121
2122 /* If we have not yet calculated pixel size data of glyphs of
2123 the composition for the current face font, calculate them
2124 now. Theoretically, we have to check all fonts for the
2125 glyphs, but that requires much time and memory space. So,
2126 here we check only the font of the first glyph. This leads
2127 to incorrect display very rarely, and C-l (recenter) can
2128 correct the display anyway. */
2129 if (cmp->font != (void *) font)
2130 {
2131 /* Ascent and descent of the font of the first character of
2132 this composition (adjusted by baseline offset). Ascent
2133 and descent of overall glyphs should not be less than
2134 them respectively. */
2135 int font_ascent = font->ascent + boff;
2136 int font_descent = font->descent - boff;
2137 /* Bounding box of the overall glyphs. */
2138 int leftmost, rightmost, lowest, highest;
2139 int i, width, ascent, descent;
2140
2141 cmp->font = (void *) font;
2142
2143 /* Initialize the bounding box. */
2144 if (font_info
2145 && (pcm = x_per_char_metric (font, &char2b)))
2146 {
2147 width = pcm->width;
2148 ascent = pcm->ascent;
2149 descent = pcm->descent;
2150 }
2151 else
2152 {
2153 width = FONT_WIDTH (font);
2154 ascent = font->ascent;
2155 descent = font->descent;
2156 }
2157
2158 rightmost = width;
2159 lowest = - descent + boff;
2160 highest = ascent + boff;
2161 leftmost = 0;
2162
2163 if (font_info
2164 && font_info->default_ascent
2165 && CHAR_TABLE_P (Vuse_default_ascent)
2166 && !NILP (Faref (Vuse_default_ascent,
2167 make_number (it->char_to_display))))
2168 highest = font_info->default_ascent + boff;
2169
2170 /* Draw the first glyph at the normal position. It may be
2171 shifted to right later if some other glyphs are drawn at
2172 the left. */
2173 cmp->offsets[0] = 0;
2174 cmp->offsets[1] = boff;
2175
2176 /* Set cmp->offsets for the remaining glyphs. */
2177 for (i = 1; i < cmp->glyph_len; i++)
2178 {
2179 int left, right, btm, top;
2180 int ch = COMPOSITION_GLYPH (cmp, i);
2181 int face_id = FACE_FOR_CHAR (it->f, face, ch);
2182
2183 face = FACE_FROM_ID (it->f, face_id);
2184 x_get_char_face_and_encoding (it->f, ch, face->id, &char2b,
2185 it->multibyte_p, 0);
2186 font = face->font;
2187 if (font == NULL)
2188 {
2189 font = FRAME_FONT (it->f);
2190 boff = it->f->output_data.x->baseline_offset;
2191 font_info = NULL;
2192 }
2193 else
2194 {
2195 font_info
2196 = FONT_INFO_FROM_ID (it->f, face->font_info_id);
2197 boff = font_info->baseline_offset;
2198 if (font_info->vertical_centering)
2199 boff = VCENTER_BASELINE_OFFSET (font, it->f) - boff;
2200 }
2201
2202 if (font_info
2203 && (pcm = x_per_char_metric (font, &char2b)))
2204 {
2205 width = pcm->width;
2206 ascent = pcm->ascent;
2207 descent = pcm->descent;
2208 }
2209 else
2210 {
2211 width = FONT_WIDTH (font);
2212 ascent = 1;
2213 descent = 0;
2214 }
2215
2216 if (cmp->method != COMPOSITION_WITH_RULE_ALTCHARS)
2217 {
2218 /* Relative composition with or without
2219 alternate chars. */
2220 left = (leftmost + rightmost - width) / 2;
2221 btm = - descent + boff;
2222 if (font_info && font_info->relative_compose
2223 && (! CHAR_TABLE_P (Vignore_relative_composition)
2224 || NILP (Faref (Vignore_relative_composition,
2225 make_number (ch)))))
2226 {
2227
2228 if (- descent >= font_info->relative_compose)
2229 /* One extra pixel between two glyphs. */
2230 btm = highest + 1;
2231 else if (ascent <= 0)
2232 /* One extra pixel between two glyphs. */
2233 btm = lowest - 1 - ascent - descent;
2234 }
2235 }
2236 else
2237 {
2238 /* A composition rule is specified by an integer
2239 value that encodes global and new reference
2240 points (GREF and NREF). GREF and NREF are
2241 specified by numbers as below:
2242
2243 0---1---2 -- ascent
2244 | |
2245 | |
2246 | |
2247 9--10--11 -- center
2248 | |
2249 ---3---4---5--- baseline
2250 | |
2251 6---7---8 -- descent
2252 */
2253 int rule = COMPOSITION_RULE (cmp, i);
2254 int gref, nref, grefx, grefy, nrefx, nrefy;
2255
2256 COMPOSITION_DECODE_RULE (rule, gref, nref);
2257 grefx = gref % 3, nrefx = nref % 3;
2258 grefy = gref / 3, nrefy = nref / 3;
2259
2260 left = (leftmost
2261 + grefx * (rightmost - leftmost) / 2
2262 - nrefx * width / 2);
2263 btm = ((grefy == 0 ? highest
2264 : grefy == 1 ? 0
2265 : grefy == 2 ? lowest
2266 : (highest + lowest) / 2)
2267 - (nrefy == 0 ? ascent + descent
2268 : nrefy == 1 ? descent - boff
2269 : nrefy == 2 ? 0
2270 : (ascent + descent) / 2));
2271 }
2272
2273 cmp->offsets[i * 2] = left;
2274 cmp->offsets[i * 2 + 1] = btm + descent;
2275
2276 /* Update the bounding box of the overall glyphs. */
2277 right = left + width;
2278 top = btm + descent + ascent;
2279 if (left < leftmost)
2280 leftmost = left;
2281 if (right > rightmost)
2282 rightmost = right;
2283 if (top > highest)
2284 highest = top;
2285 if (btm < lowest)
2286 lowest = btm;
2287 }
2288
2289 /* If there are glyphs whose x-offsets are negative,
2290 shift all glyphs to the right and make all x-offsets
2291 non-negative. */
2292 if (leftmost < 0)
2293 {
2294 for (i = 0; i < cmp->glyph_len; i++)
2295 cmp->offsets[i * 2] -= leftmost;
2296 rightmost -= leftmost;
2297 }
2298
2299 cmp->pixel_width = rightmost;
2300 cmp->ascent = highest;
2301 cmp->descent = - lowest;
2302 if (cmp->ascent < font_ascent)
2303 cmp->ascent = font_ascent;
2304 if (cmp->descent < font_descent)
2305 cmp->descent = font_descent;
2306 }
2307
2308 it->pixel_width = cmp->pixel_width;
2309 it->ascent = it->phys_ascent = cmp->ascent;
2310 it->descent = it->phys_descent = cmp->descent;
2311
2312 if (face->box != FACE_NO_BOX)
2313 {
2314 int thick = face->box_line_width;
2315
2316 if (thick > 0)
2317 {
2318 it->ascent += thick;
2319 it->descent += thick;
2320 }
2321 else
2322 thick = - thick;
2323
2324 if (it->start_of_box_run_p)
2325 it->pixel_width += thick;
2326 if (it->end_of_box_run_p)
2327 it->pixel_width += thick;
2328 }
2329
2330 /* If face has an overline, add the height of the overline
2331 (1 pixel) and a 1 pixel margin to the character height. */
2332 if (face->overline_p)
2333 it->ascent += 2;
2334
2335 take_vertical_position_into_account (it);
2336
2337 if (it->glyph_row)
2338 x_append_composite_glyph (it);
2339 }
2340 else if (it->what == IT_IMAGE)
2341 x_produce_image_glyph (it);
2342 else if (it->what == IT_STRETCH)
2343 x_produce_stretch_glyph (it);
2344
2345 /* Accumulate dimensions. Note: can't assume that it->descent > 0
2346 because this isn't true for images with `:ascent 100'. */
2347 xassert (it->ascent >= 0 && it->descent >= 0);
2348 if (it->area == TEXT_AREA)
2349 it->current_x += it->pixel_width;
2350
2351 it->descent += it->extra_line_spacing;
2352
2353 it->max_ascent = max (it->max_ascent, it->ascent);
2354 it->max_descent = max (it->max_descent, it->descent);
2355 it->max_phys_ascent = max (it->max_phys_ascent, it->phys_ascent);
2356 it->max_phys_descent = max (it->max_phys_descent, it->phys_descent);
2357 }
2358
2359
2360 /* Estimate the pixel height of the mode or top line on frame F.
2361 FACE_ID specifies what line's height to estimate. */
2362
2363 int
2364 x_estimate_mode_line_height (f, face_id)
2365 struct frame *f;
2366 enum face_id face_id;
2367 {
2368 int height = FONT_HEIGHT (FRAME_FONT (f));
2369
2370 /* This function is called so early when Emacs starts that the face
2371 cache and mode line face are not yet initialized. */
2372 if (FRAME_FACE_CACHE (f))
2373 {
2374 struct face *face = FACE_FROM_ID (f, face_id);
2375 if (face)
2376 {
2377 if (face->font)
2378 height = FONT_HEIGHT (face->font);
2379 if (face->box_line_width > 0)
2380 height += 2 * face->box_line_width;
2381 }
2382 }
2383
2384 return height;
2385 }
2386
2387 \f
2388 /***********************************************************************
2389 Glyph display
2390 ***********************************************************************/
2391
2392 /* A sequence of glyphs to be drawn in the same face.
2393
2394 This data structure is not really completely X specific, so it
2395 could possibly, at least partially, be useful for other systems. It
2396 is currently not part of the external redisplay interface because
2397 it's not clear what other systems will need. */
2398
2399 struct glyph_string
2400 {
2401 /* X-origin of the string. */
2402 int x;
2403
2404 /* Y-origin and y-position of the base line of this string. */
2405 int y, ybase;
2406
2407 /* The width of the string, not including a face extension. */
2408 int width;
2409
2410 /* The width of the string, including a face extension. */
2411 int background_width;
2412
2413 /* The height of this string. This is the height of the line this
2414 string is drawn in, and can be different from the height of the
2415 font the string is drawn in. */
2416 int height;
2417
2418 /* Number of pixels this string overwrites in front of its x-origin.
2419 This number is zero if the string has an lbearing >= 0; it is
2420 -lbearing, if the string has an lbearing < 0. */
2421 int left_overhang;
2422
2423 /* Number of pixels this string overwrites past its right-most
2424 nominal x-position, i.e. x + width. Zero if the string's
2425 rbearing is <= its nominal width, rbearing - width otherwise. */
2426 int right_overhang;
2427
2428 /* The frame on which the glyph string is drawn. */
2429 struct frame *f;
2430
2431 /* The window on which the glyph string is drawn. */
2432 struct window *w;
2433
2434 /* X display and window for convenience. */
2435 Display *display;
2436 Window window;
2437
2438 /* The glyph row for which this string was built. It determines the
2439 y-origin and height of the string. */
2440 struct glyph_row *row;
2441
2442 /* The area within row. */
2443 enum glyph_row_area area;
2444
2445 /* Characters to be drawn, and number of characters. */
2446 XChar2b *char2b;
2447 int nchars;
2448
2449 /* A face-override for drawing cursors, mouse face and similar. */
2450 enum draw_glyphs_face hl;
2451
2452 /* Face in which this string is to be drawn. */
2453 struct face *face;
2454
2455 /* Font in which this string is to be drawn. */
2456 XFontStruct *font;
2457
2458 /* Font info for this string. */
2459 struct font_info *font_info;
2460
2461 /* Non-null means this string describes (part of) a composition.
2462 All characters from char2b are drawn composed. */
2463 struct composition *cmp;
2464
2465 /* Index of this glyph string's first character in the glyph
2466 definition of CMP. If this is zero, this glyph string describes
2467 the first character of a composition. */
2468 int gidx;
2469
2470 /* 1 means this glyph strings face has to be drawn to the right end
2471 of the window's drawing area. */
2472 unsigned extends_to_end_of_line_p : 1;
2473
2474 /* 1 means the background of this string has been drawn. */
2475 unsigned background_filled_p : 1;
2476
2477 /* 1 means glyph string must be drawn with 16-bit functions. */
2478 unsigned two_byte_p : 1;
2479
2480 /* 1 means that the original font determined for drawing this glyph
2481 string could not be loaded. The member `font' has been set to
2482 the frame's default font in this case. */
2483 unsigned font_not_found_p : 1;
2484
2485 /* 1 means that the face in which this glyph string is drawn has a
2486 stipple pattern. */
2487 unsigned stippled_p : 1;
2488
2489 /* 1 means only the foreground of this glyph string must be drawn,
2490 and we should use the physical height of the line this glyph
2491 string appears in as clip rect. */
2492 unsigned for_overlaps_p : 1;
2493
2494 /* The GC to use for drawing this glyph string. */
2495 GC gc;
2496
2497 /* A pointer to the first glyph in the string. This glyph
2498 corresponds to char2b[0]. Needed to draw rectangles if
2499 font_not_found_p is 1. */
2500 struct glyph *first_glyph;
2501
2502 /* Image, if any. */
2503 struct image *img;
2504
2505 struct glyph_string *next, *prev;
2506 };
2507
2508
2509 #if GLYPH_DEBUG
2510
2511 static void
2512 x_dump_glyph_string (s)
2513 struct glyph_string *s;
2514 {
2515 fprintf (stderr, "glyph string\n");
2516 fprintf (stderr, " x, y, w, h = %d, %d, %d, %d\n",
2517 s->x, s->y, s->width, s->height);
2518 fprintf (stderr, " ybase = %d\n", s->ybase);
2519 fprintf (stderr, " hl = %d\n", s->hl);
2520 fprintf (stderr, " left overhang = %d, right = %d\n",
2521 s->left_overhang, s->right_overhang);
2522 fprintf (stderr, " nchars = %d\n", s->nchars);
2523 fprintf (stderr, " extends to end of line = %d\n",
2524 s->extends_to_end_of_line_p);
2525 fprintf (stderr, " font height = %d\n", FONT_HEIGHT (s->font));
2526 fprintf (stderr, " bg width = %d\n", s->background_width);
2527 }
2528
2529 #endif /* GLYPH_DEBUG */
2530
2531
2532
2533 static void x_append_glyph_string_lists P_ ((struct glyph_string **,
2534 struct glyph_string **,
2535 struct glyph_string *,
2536 struct glyph_string *));
2537 static void x_prepend_glyph_string_lists P_ ((struct glyph_string **,
2538 struct glyph_string **,
2539 struct glyph_string *,
2540 struct glyph_string *));
2541 static void x_append_glyph_string P_ ((struct glyph_string **,
2542 struct glyph_string **,
2543 struct glyph_string *));
2544 static int x_left_overwritten P_ ((struct glyph_string *));
2545 static int x_left_overwriting P_ ((struct glyph_string *));
2546 static int x_right_overwritten P_ ((struct glyph_string *));
2547 static int x_right_overwriting P_ ((struct glyph_string *));
2548 static int x_fill_glyph_string P_ ((struct glyph_string *, int, int, int,
2549 int));
2550 static void x_init_glyph_string P_ ((struct glyph_string *,
2551 XChar2b *, struct window *,
2552 struct glyph_row *,
2553 enum glyph_row_area, int,
2554 enum draw_glyphs_face));
2555 static int x_draw_glyphs P_ ((struct window *, int , struct glyph_row *,
2556 enum glyph_row_area, int, int,
2557 enum draw_glyphs_face, int));
2558 static void x_set_glyph_string_clipping P_ ((struct glyph_string *));
2559 static void x_set_glyph_string_gc P_ ((struct glyph_string *));
2560 static void x_draw_glyph_string_background P_ ((struct glyph_string *,
2561 int));
2562 static void x_draw_glyph_string_foreground P_ ((struct glyph_string *));
2563 static void x_draw_composite_glyph_string_foreground P_ ((struct glyph_string *));
2564 static void x_draw_glyph_string_box P_ ((struct glyph_string *));
2565 static void x_draw_glyph_string P_ ((struct glyph_string *));
2566 static void x_compute_glyph_string_overhangs P_ ((struct glyph_string *));
2567 static void x_set_cursor_gc P_ ((struct glyph_string *));
2568 static void x_set_mode_line_face_gc P_ ((struct glyph_string *));
2569 static void x_set_mouse_face_gc P_ ((struct glyph_string *));
2570 static void x_get_glyph_overhangs P_ ((struct glyph *, struct frame *,
2571 int *, int *));
2572 static void x_compute_overhangs_and_x P_ ((struct glyph_string *, int, int));
2573 static int x_alloc_lighter_color P_ ((struct frame *, Display *, Colormap,
2574 unsigned long *, double, int));
2575 static void x_setup_relief_color P_ ((struct frame *, struct relief *,
2576 double, int, unsigned long));
2577 static void x_setup_relief_colors P_ ((struct glyph_string *));
2578 static void x_draw_image_glyph_string P_ ((struct glyph_string *));
2579 static void x_draw_image_relief P_ ((struct glyph_string *));
2580 static void x_draw_image_foreground P_ ((struct glyph_string *));
2581 static void x_draw_image_foreground_1 P_ ((struct glyph_string *, Pixmap));
2582 static void x_fill_image_glyph_string P_ ((struct glyph_string *));
2583 static void x_clear_glyph_string_rect P_ ((struct glyph_string *, int,
2584 int, int, int));
2585 static void x_draw_relief_rect P_ ((struct frame *, int, int, int, int,
2586 int, int, int, int, XRectangle *));
2587 static void x_draw_box_rect P_ ((struct glyph_string *, int, int, int, int,
2588 int, int, int, XRectangle *));
2589 static void x_fix_overlapping_area P_ ((struct window *, struct glyph_row *,
2590 enum glyph_row_area));
2591 static int x_fill_stretch_glyph_string P_ ((struct glyph_string *,
2592 struct glyph_row *,
2593 enum glyph_row_area, int, int));
2594
2595 #if GLYPH_DEBUG
2596 static void x_check_font P_ ((struct frame *, XFontStruct *));
2597 #endif
2598
2599
2600 /* Append the list of glyph strings with head H and tail T to the list
2601 with head *HEAD and tail *TAIL. Set *HEAD and *TAIL to the result. */
2602
2603 static INLINE void
2604 x_append_glyph_string_lists (head, tail, h, t)
2605 struct glyph_string **head, **tail;
2606 struct glyph_string *h, *t;
2607 {
2608 if (h)
2609 {
2610 if (*head)
2611 (*tail)->next = h;
2612 else
2613 *head = h;
2614 h->prev = *tail;
2615 *tail = t;
2616 }
2617 }
2618
2619
2620 /* Prepend the list of glyph strings with head H and tail T to the
2621 list with head *HEAD and tail *TAIL. Set *HEAD and *TAIL to the
2622 result. */
2623
2624 static INLINE void
2625 x_prepend_glyph_string_lists (head, tail, h, t)
2626 struct glyph_string **head, **tail;
2627 struct glyph_string *h, *t;
2628 {
2629 if (h)
2630 {
2631 if (*head)
2632 (*head)->prev = t;
2633 else
2634 *tail = t;
2635 t->next = *head;
2636 *head = h;
2637 }
2638 }
2639
2640
2641 /* Append glyph string S to the list with head *HEAD and tail *TAIL.
2642 Set *HEAD and *TAIL to the resulting list. */
2643
2644 static INLINE void
2645 x_append_glyph_string (head, tail, s)
2646 struct glyph_string **head, **tail;
2647 struct glyph_string *s;
2648 {
2649 s->next = s->prev = NULL;
2650 x_append_glyph_string_lists (head, tail, s, s);
2651 }
2652
2653
2654 /* Set S->gc to a suitable GC for drawing glyph string S in cursor
2655 face. */
2656
2657 static void
2658 x_set_cursor_gc (s)
2659 struct glyph_string *s;
2660 {
2661 if (s->font == FRAME_FONT (s->f)
2662 && s->face->background == FRAME_BACKGROUND_PIXEL (s->f)
2663 && s->face->foreground == FRAME_FOREGROUND_PIXEL (s->f)
2664 && !s->cmp)
2665 s->gc = s->f->output_data.x->cursor_gc;
2666 else
2667 {
2668 /* Cursor on non-default face: must merge. */
2669 XGCValues xgcv;
2670 unsigned long mask;
2671
2672 xgcv.background = s->f->output_data.x->cursor_pixel;
2673 xgcv.foreground = s->face->background;
2674
2675 /* If the glyph would be invisible, try a different foreground. */
2676 if (xgcv.foreground == xgcv.background)
2677 xgcv.foreground = s->face->foreground;
2678 if (xgcv.foreground == xgcv.background)
2679 xgcv.foreground = s->f->output_data.x->cursor_foreground_pixel;
2680 if (xgcv.foreground == xgcv.background)
2681 xgcv.foreground = s->face->foreground;
2682
2683 /* Make sure the cursor is distinct from text in this face. */
2684 if (xgcv.background == s->face->background
2685 && xgcv.foreground == s->face->foreground)
2686 {
2687 xgcv.background = s->face->foreground;
2688 xgcv.foreground = s->face->background;
2689 }
2690
2691 IF_DEBUG (x_check_font (s->f, s->font));
2692 xgcv.font = s->font->fid;
2693 xgcv.graphics_exposures = False;
2694 mask = GCForeground | GCBackground | GCFont | GCGraphicsExposures;
2695
2696 if (FRAME_X_DISPLAY_INFO (s->f)->scratch_cursor_gc)
2697 XChangeGC (s->display, FRAME_X_DISPLAY_INFO (s->f)->scratch_cursor_gc,
2698 mask, &xgcv);
2699 else
2700 FRAME_X_DISPLAY_INFO (s->f)->scratch_cursor_gc
2701 = XCreateGC (s->display, s->window, mask, &xgcv);
2702
2703 s->gc = FRAME_X_DISPLAY_INFO (s->f)->scratch_cursor_gc;
2704 }
2705 }
2706
2707
2708 /* Set up S->gc of glyph string S for drawing text in mouse face. */
2709
2710 static void
2711 x_set_mouse_face_gc (s)
2712 struct glyph_string *s;
2713 {
2714 int face_id;
2715 struct face *face;
2716
2717 /* What face has to be used last for the mouse face? */
2718 face_id = FRAME_X_DISPLAY_INFO (s->f)->mouse_face_face_id;
2719 face = FACE_FROM_ID (s->f, face_id);
2720 if (face == NULL)
2721 face = FACE_FROM_ID (s->f, MOUSE_FACE_ID);
2722
2723 if (s->first_glyph->type == CHAR_GLYPH)
2724 face_id = FACE_FOR_CHAR (s->f, face, s->first_glyph->u.ch);
2725 else
2726 face_id = FACE_FOR_CHAR (s->f, face, 0);
2727 s->face = FACE_FROM_ID (s->f, face_id);
2728 PREPARE_FACE_FOR_DISPLAY (s->f, s->face);
2729
2730 /* If font in this face is same as S->font, use it. */
2731 if (s->font == s->face->font)
2732 s->gc = s->face->gc;
2733 else
2734 {
2735 /* Otherwise construct scratch_cursor_gc with values from FACE
2736 but font FONT. */
2737 XGCValues xgcv;
2738 unsigned long mask;
2739
2740 xgcv.background = s->face->background;
2741 xgcv.foreground = s->face->foreground;
2742 IF_DEBUG (x_check_font (s->f, s->font));
2743 xgcv.font = s->font->fid;
2744 xgcv.graphics_exposures = False;
2745 mask = GCForeground | GCBackground | GCFont | GCGraphicsExposures;
2746
2747 if (FRAME_X_DISPLAY_INFO (s->f)->scratch_cursor_gc)
2748 XChangeGC (s->display, FRAME_X_DISPLAY_INFO (s->f)->scratch_cursor_gc,
2749 mask, &xgcv);
2750 else
2751 FRAME_X_DISPLAY_INFO (s->f)->scratch_cursor_gc
2752 = XCreateGC (s->display, s->window, mask, &xgcv);
2753
2754 s->gc = FRAME_X_DISPLAY_INFO (s->f)->scratch_cursor_gc;
2755 }
2756
2757 xassert (s->gc != 0);
2758 }
2759
2760
2761 /* Set S->gc of glyph string S to a GC suitable for drawing a mode line.
2762 Faces to use in the mode line have already been computed when the
2763 matrix was built, so there isn't much to do, here. */
2764
2765 static INLINE void
2766 x_set_mode_line_face_gc (s)
2767 struct glyph_string *s;
2768 {
2769 s->gc = s->face->gc;
2770 }
2771
2772
2773 /* Set S->gc of glyph string S for drawing that glyph string. Set
2774 S->stippled_p to a non-zero value if the face of S has a stipple
2775 pattern. */
2776
2777 static INLINE void
2778 x_set_glyph_string_gc (s)
2779 struct glyph_string *s;
2780 {
2781 PREPARE_FACE_FOR_DISPLAY (s->f, s->face);
2782
2783 if (s->hl == DRAW_NORMAL_TEXT)
2784 {
2785 s->gc = s->face->gc;
2786 s->stippled_p = s->face->stipple != 0;
2787 }
2788 else if (s->hl == DRAW_INVERSE_VIDEO)
2789 {
2790 x_set_mode_line_face_gc (s);
2791 s->stippled_p = s->face->stipple != 0;
2792 }
2793 else if (s->hl == DRAW_CURSOR)
2794 {
2795 x_set_cursor_gc (s);
2796 s->stippled_p = 0;
2797 }
2798 else if (s->hl == DRAW_MOUSE_FACE)
2799 {
2800 x_set_mouse_face_gc (s);
2801 s->stippled_p = s->face->stipple != 0;
2802 }
2803 else if (s->hl == DRAW_IMAGE_RAISED
2804 || s->hl == DRAW_IMAGE_SUNKEN)
2805 {
2806 s->gc = s->face->gc;
2807 s->stippled_p = s->face->stipple != 0;
2808 }
2809 else
2810 {
2811 s->gc = s->face->gc;
2812 s->stippled_p = s->face->stipple != 0;
2813 }
2814
2815 /* GC must have been set. */
2816 xassert (s->gc != 0);
2817 }
2818
2819
2820 /* Return in *R the clipping rectangle for glyph string S. */
2821
2822 static void
2823 x_get_glyph_string_clip_rect (s, r)
2824 struct glyph_string *s;
2825 XRectangle *r;
2826 {
2827 if (s->row->full_width_p)
2828 {
2829 /* Draw full-width. X coordinates are relative to S->w->left. */
2830 int canon_x = CANON_X_UNIT (s->f);
2831
2832 r->x = WINDOW_LEFT_MARGIN (s->w) * canon_x;
2833 r->width = XFASTINT (s->w->width) * canon_x;
2834
2835 if (FRAME_HAS_VERTICAL_SCROLL_BARS (s->f))
2836 {
2837 int width = FRAME_SCROLL_BAR_WIDTH (s->f) * canon_x;
2838 if (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (s->f))
2839 r->x -= width;
2840 }
2841
2842 r->x += FRAME_INTERNAL_BORDER_WIDTH (s->f);
2843
2844 /* Unless displaying a mode or menu bar line, which are always
2845 fully visible, clip to the visible part of the row. */
2846 if (s->w->pseudo_window_p)
2847 r->height = s->row->visible_height;
2848 else
2849 r->height = s->height;
2850 }
2851 else
2852 {
2853 /* This is a text line that may be partially visible. */
2854 r->x = WINDOW_AREA_TO_FRAME_PIXEL_X (s->w, s->area, 0);
2855 r->width = window_box_width (s->w, s->area);
2856 r->height = s->row->visible_height;
2857 }
2858
2859 /* If S draws overlapping rows, it's sufficient to use the top and
2860 bottom of the window for clipping because this glyph string
2861 intentionally draws over other lines. */
2862 if (s->for_overlaps_p)
2863 {
2864 r->y = WINDOW_DISPLAY_HEADER_LINE_HEIGHT (s->w);
2865 r->height = window_text_bottom_y (s->w) - r->y;
2866 }
2867 else
2868 {
2869 /* Don't use S->y for clipping because it doesn't take partially
2870 visible lines into account. For example, it can be negative for
2871 partially visible lines at the top of a window. */
2872 if (!s->row->full_width_p
2873 && MATRIX_ROW_PARTIALLY_VISIBLE_AT_TOP_P (s->w, s->row))
2874 r->y = WINDOW_DISPLAY_HEADER_LINE_HEIGHT (s->w);
2875 else
2876 r->y = max (0, s->row->y);
2877
2878 /* If drawing a tool-bar window, draw it over the internal border
2879 at the top of the window. */
2880 if (s->w == XWINDOW (s->f->tool_bar_window))
2881 r->y -= s->f->output_data.x->internal_border_width;
2882 }
2883
2884 r->y = WINDOW_TO_FRAME_PIXEL_Y (s->w, r->y);
2885 }
2886
2887
2888 /* Set clipping for output of glyph string S. S may be part of a mode
2889 line or menu if we don't have X toolkit support. */
2890
2891 static INLINE void
2892 x_set_glyph_string_clipping (s)
2893 struct glyph_string *s;
2894 {
2895 XRectangle r;
2896 x_get_glyph_string_clip_rect (s, &r);
2897 XSetClipRectangles (s->display, s->gc, 0, 0, &r, 1, Unsorted);
2898 }
2899
2900
2901 /* Compute left and right overhang of glyph string S. If S is a glyph
2902 string for a composition, assume overhangs don't exist. */
2903
2904 static INLINE void
2905 x_compute_glyph_string_overhangs (s)
2906 struct glyph_string *s;
2907 {
2908 if (s->cmp == NULL
2909 && s->first_glyph->type == CHAR_GLYPH)
2910 {
2911 XCharStruct cs;
2912 int direction, font_ascent, font_descent;
2913 XTextExtents16 (s->font, s->char2b, s->nchars, &direction,
2914 &font_ascent, &font_descent, &cs);
2915 s->right_overhang = cs.rbearing > cs.width ? cs.rbearing - cs.width : 0;
2916 s->left_overhang = cs.lbearing < 0 ? -cs.lbearing : 0;
2917 }
2918 }
2919
2920
2921 /* Compute overhangs and x-positions for glyph string S and its
2922 predecessors, or successors. X is the starting x-position for S.
2923 BACKWARD_P non-zero means process predecessors. */
2924
2925 static void
2926 x_compute_overhangs_and_x (s, x, backward_p)
2927 struct glyph_string *s;
2928 int x;
2929 int backward_p;
2930 {
2931 if (backward_p)
2932 {
2933 while (s)
2934 {
2935 x_compute_glyph_string_overhangs (s);
2936 x -= s->width;
2937 s->x = x;
2938 s = s->prev;
2939 }
2940 }
2941 else
2942 {
2943 while (s)
2944 {
2945 x_compute_glyph_string_overhangs (s);
2946 s->x = x;
2947 x += s->width;
2948 s = s->next;
2949 }
2950 }
2951 }
2952
2953
2954 /* Set *LEFT and *RIGHT to the left and right overhang of GLYPH on
2955 frame F. Overhangs of glyphs other than type CHAR_GLYPH are
2956 assumed to be zero. */
2957
2958 static void
2959 x_get_glyph_overhangs (glyph, f, left, right)
2960 struct glyph *glyph;
2961 struct frame *f;
2962 int *left, *right;
2963 {
2964 *left = *right = 0;
2965
2966 if (glyph->type == CHAR_GLYPH)
2967 {
2968 XFontStruct *font;
2969 struct face *face;
2970 struct font_info *font_info;
2971 XChar2b char2b;
2972 XCharStruct *pcm;
2973
2974 face = x_get_glyph_face_and_encoding (f, glyph, &char2b, NULL);
2975 font = face->font;
2976 font_info = FONT_INFO_FROM_ID (f, face->font_info_id);
2977 if (font
2978 && (pcm = x_per_char_metric (font, &char2b)))
2979 {
2980 if (pcm->rbearing > pcm->width)
2981 *right = pcm->rbearing - pcm->width;
2982 if (pcm->lbearing < 0)
2983 *left = -pcm->lbearing;
2984 }
2985 }
2986 }
2987
2988
2989 /* Return the index of the first glyph preceding glyph string S that
2990 is overwritten by S because of S's left overhang. Value is -1
2991 if no glyphs are overwritten. */
2992
2993 static int
2994 x_left_overwritten (s)
2995 struct glyph_string *s;
2996 {
2997 int k;
2998
2999 if (s->left_overhang)
3000 {
3001 int x = 0, i;
3002 struct glyph *glyphs = s->row->glyphs[s->area];
3003 int first = s->first_glyph - glyphs;
3004
3005 for (i = first - 1; i >= 0 && x > -s->left_overhang; --i)
3006 x -= glyphs[i].pixel_width;
3007
3008 k = i + 1;
3009 }
3010 else
3011 k = -1;
3012
3013 return k;
3014 }
3015
3016
3017 /* Return the index of the first glyph preceding glyph string S that
3018 is overwriting S because of its right overhang. Value is -1 if no
3019 glyph in front of S overwrites S. */
3020
3021 static int
3022 x_left_overwriting (s)
3023 struct glyph_string *s;
3024 {
3025 int i, k, x;
3026 struct glyph *glyphs = s->row->glyphs[s->area];
3027 int first = s->first_glyph - glyphs;
3028
3029 k = -1;
3030 x = 0;
3031 for (i = first - 1; i >= 0; --i)
3032 {
3033 int left, right;
3034 x_get_glyph_overhangs (glyphs + i, s->f, &left, &right);
3035 if (x + right > 0)
3036 k = i;
3037 x -= glyphs[i].pixel_width;
3038 }
3039
3040 return k;
3041 }
3042
3043
3044 /* Return the index of the last glyph following glyph string S that is
3045 not overwritten by S because of S's right overhang. Value is -1 if
3046 no such glyph is found. */
3047
3048 static int
3049 x_right_overwritten (s)
3050 struct glyph_string *s;
3051 {
3052 int k = -1;
3053
3054 if (s->right_overhang)
3055 {
3056 int x = 0, i;
3057 struct glyph *glyphs = s->row->glyphs[s->area];
3058 int first = (s->first_glyph - glyphs) + (s->cmp ? 1 : s->nchars);
3059 int end = s->row->used[s->area];
3060
3061 for (i = first; i < end && s->right_overhang > x; ++i)
3062 x += glyphs[i].pixel_width;
3063
3064 k = i;
3065 }
3066
3067 return k;
3068 }
3069
3070
3071 /* Return the index of the last glyph following glyph string S that
3072 overwrites S because of its left overhang. Value is negative
3073 if no such glyph is found. */
3074
3075 static int
3076 x_right_overwriting (s)
3077 struct glyph_string *s;
3078 {
3079 int i, k, x;
3080 int end = s->row->used[s->area];
3081 struct glyph *glyphs = s->row->glyphs[s->area];
3082 int first = (s->first_glyph - glyphs) + (s->cmp ? 1 : s->nchars);
3083
3084 k = -1;
3085 x = 0;
3086 for (i = first; i < end; ++i)
3087 {
3088 int left, right;
3089 x_get_glyph_overhangs (glyphs + i, s->f, &left, &right);
3090 if (x - left < 0)
3091 k = i;
3092 x += glyphs[i].pixel_width;
3093 }
3094
3095 return k;
3096 }
3097
3098
3099 /* Fill rectangle X, Y, W, H with background color of glyph string S. */
3100
3101 static INLINE void
3102 x_clear_glyph_string_rect (s, x, y, w, h)
3103 struct glyph_string *s;
3104 int x, y, w, h;
3105 {
3106 XGCValues xgcv;
3107 XGetGCValues (s->display, s->gc, GCForeground | GCBackground, &xgcv);
3108 XSetForeground (s->display, s->gc, xgcv.background);
3109 XFillRectangle (s->display, s->window, s->gc, x, y, w, h);
3110 XSetForeground (s->display, s->gc, xgcv.foreground);
3111 }
3112
3113
3114 /* Draw the background of glyph_string S. If S->background_filled_p
3115 is non-zero don't draw it. FORCE_P non-zero means draw the
3116 background even if it wouldn't be drawn normally. This is used
3117 when a string preceding S draws into the background of S, or S
3118 contains the first component of a composition. */
3119
3120 static void
3121 x_draw_glyph_string_background (s, force_p)
3122 struct glyph_string *s;
3123 int force_p;
3124 {
3125 /* Nothing to do if background has already been drawn or if it
3126 shouldn't be drawn in the first place. */
3127 if (!s->background_filled_p)
3128 {
3129 int box_line_width = max (s->face->box_line_width, 0);
3130
3131 if (s->stippled_p)
3132 {
3133 /* Fill background with a stipple pattern. */
3134 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
3135 XFillRectangle (s->display, s->window, s->gc, s->x,
3136 s->y + box_line_width,
3137 s->background_width,
3138 s->height - 2 * box_line_width);
3139 XSetFillStyle (s->display, s->gc, FillSolid);
3140 s->background_filled_p = 1;
3141 }
3142 else if (FONT_HEIGHT (s->font) < s->height - 2 * box_line_width
3143 || s->font_not_found_p
3144 || s->extends_to_end_of_line_p
3145 || force_p)
3146 {
3147 x_clear_glyph_string_rect (s, s->x, s->y + box_line_width,
3148 s->background_width,
3149 s->height - 2 * box_line_width);
3150 s->background_filled_p = 1;
3151 }
3152 }
3153 }
3154
3155
3156 /* Draw the foreground of glyph string S. */
3157
3158 static void
3159 x_draw_glyph_string_foreground (s)
3160 struct glyph_string *s;
3161 {
3162 int i, x;
3163
3164 /* If first glyph of S has a left box line, start drawing the text
3165 of S to the right of that box line. */
3166 if (s->face->box != FACE_NO_BOX
3167 && s->first_glyph->left_box_line_p)
3168 x = s->x + abs (s->face->box_line_width);
3169 else
3170 x = s->x;
3171
3172 /* Draw characters of S as rectangles if S's font could not be
3173 loaded. */
3174 if (s->font_not_found_p)
3175 {
3176 for (i = 0; i < s->nchars; ++i)
3177 {
3178 struct glyph *g = s->first_glyph + i;
3179 XDrawRectangle (s->display, s->window,
3180 s->gc, x, s->y, g->pixel_width - 1,
3181 s->height - 1);
3182 x += g->pixel_width;
3183 }
3184 }
3185 else
3186 {
3187 char *char1b = (char *) s->char2b;
3188 int boff = s->font_info->baseline_offset;
3189
3190 if (s->font_info->vertical_centering)
3191 boff = VCENTER_BASELINE_OFFSET (s->font, s->f) - boff;
3192
3193 /* If we can use 8-bit functions, condense S->char2b. */
3194 if (!s->two_byte_p)
3195 for (i = 0; i < s->nchars; ++i)
3196 char1b[i] = s->char2b[i].byte2;
3197
3198 /* Draw text with XDrawString if background has already been
3199 filled. Otherwise, use XDrawImageString. (Note that
3200 XDrawImageString is usually faster than XDrawString.) Always
3201 use XDrawImageString when drawing the cursor so that there is
3202 no chance that characters under a box cursor are invisible. */
3203 if (s->for_overlaps_p
3204 || (s->background_filled_p && s->hl != DRAW_CURSOR))
3205 {
3206 /* Draw characters with 16-bit or 8-bit functions. */
3207 if (s->two_byte_p)
3208 XDrawString16 (s->display, s->window, s->gc, x,
3209 s->ybase - boff, s->char2b, s->nchars);
3210 else
3211 XDrawString (s->display, s->window, s->gc, x,
3212 s->ybase - boff, char1b, s->nchars);
3213 }
3214 else
3215 {
3216 if (s->two_byte_p)
3217 XDrawImageString16 (s->display, s->window, s->gc, x,
3218 s->ybase - boff, s->char2b, s->nchars);
3219 else
3220 XDrawImageString (s->display, s->window, s->gc, x,
3221 s->ybase - boff, char1b, s->nchars);
3222 }
3223 }
3224 }
3225
3226 /* Draw the foreground of composite glyph string S. */
3227
3228 static void
3229 x_draw_composite_glyph_string_foreground (s)
3230 struct glyph_string *s;
3231 {
3232 int i, x;
3233
3234 /* If first glyph of S has a left box line, start drawing the text
3235 of S to the right of that box line. */
3236 if (s->face->box != FACE_NO_BOX
3237 && s->first_glyph->left_box_line_p)
3238 x = s->x + abs (s->face->box_line_width);
3239 else
3240 x = s->x;
3241
3242 /* S is a glyph string for a composition. S->gidx is the index of
3243 the first character drawn for glyphs of this composition.
3244 S->gidx == 0 means we are drawing the very first character of
3245 this composition. */
3246
3247 /* Draw a rectangle for the composition if the font for the very
3248 first character of the composition could not be loaded. */
3249 if (s->font_not_found_p)
3250 {
3251 if (s->gidx == 0)
3252 XDrawRectangle (s->display, s->window, s->gc, x, s->y,
3253 s->width - 1, s->height - 1);
3254 }
3255 else
3256 {
3257 for (i = 0; i < s->nchars; i++, ++s->gidx)
3258 XDrawString16 (s->display, s->window, s->gc,
3259 x + s->cmp->offsets[s->gidx * 2],
3260 s->ybase - s->cmp->offsets[s->gidx * 2 + 1],
3261 s->char2b + i, 1);
3262 }
3263 }
3264
3265
3266 #ifdef USE_X_TOOLKIT
3267
3268 static struct frame *x_frame_of_widget P_ ((Widget));
3269 static Boolean cvt_string_to_pixel P_ ((Display *, XrmValue *, Cardinal *,
3270 XrmValue *, XrmValue *, XtPointer *));
3271 static void cvt_pixel_dtor P_ ((XtAppContext, XrmValue *, XtPointer,
3272 XrmValue *, Cardinal *));
3273
3274
3275 /* Return the frame on which widget WIDGET is used.. Abort if frame
3276 cannot be determined. */
3277
3278 static struct frame *
3279 x_frame_of_widget (widget)
3280 Widget widget;
3281 {
3282 struct x_display_info *dpyinfo;
3283 Lisp_Object tail;
3284 struct frame *f;
3285
3286 dpyinfo = x_display_info_for_display (XtDisplay (widget));
3287
3288 /* Find the top-level shell of the widget. Note that this function
3289 can be called when the widget is not yet realized, so XtWindow
3290 (widget) == 0. That's the reason we can't simply use
3291 x_any_window_to_frame. */
3292 while (!XtIsTopLevelShell (widget))
3293 widget = XtParent (widget);
3294
3295 /* Look for a frame with that top-level widget. Allocate the color
3296 on that frame to get the right gamma correction value. */
3297 for (tail = Vframe_list; GC_CONSP (tail); tail = XCDR (tail))
3298 if (GC_FRAMEP (XCAR (tail))
3299 && (f = XFRAME (XCAR (tail)),
3300 (f->output_data.nothing != 1
3301 && FRAME_X_DISPLAY_INFO (f) == dpyinfo))
3302 && f->output_data.x->widget == widget)
3303 return f;
3304
3305 abort ();
3306 }
3307
3308
3309 /* Allocate the color COLOR->pixel on the screen and display of
3310 widget WIDGET in colormap CMAP. If an exact match cannot be
3311 allocated, try the nearest color available. Value is non-zero
3312 if successful. This is called from lwlib. */
3313
3314 int
3315 x_alloc_nearest_color_for_widget (widget, cmap, color)
3316 Widget widget;
3317 Colormap cmap;
3318 XColor *color;
3319 {
3320 struct frame *f = x_frame_of_widget (widget);
3321 return x_alloc_nearest_color (f, cmap, color);
3322 }
3323
3324
3325 /* Allocate a color which is lighter or darker than *PIXEL by FACTOR
3326 or DELTA. Try a color with RGB values multiplied by FACTOR first.
3327 If this produces the same color as PIXEL, try a color where all RGB
3328 values have DELTA added. Return the allocated color in *PIXEL.
3329 DISPLAY is the X display, CMAP is the colormap to operate on.
3330 Value is non-zero if successful. */
3331
3332 int
3333 x_alloc_lighter_color_for_widget (widget, display, cmap, pixel, factor, delta)
3334 Widget widget;
3335 Display *display;
3336 Colormap cmap;
3337 unsigned long *pixel;
3338 double factor;
3339 int delta;
3340 {
3341 struct frame *f = x_frame_of_widget (widget);
3342 return x_alloc_lighter_color (f, display, cmap, pixel, factor, delta);
3343 }
3344
3345
3346 /* Structure specifying which arguments should be passed by Xt to
3347 cvt_string_to_pixel. We want the widget's screen and colormap. */
3348
3349 static XtConvertArgRec cvt_string_to_pixel_args[] =
3350 {
3351 {XtWidgetBaseOffset, (XtPointer) XtOffset (Widget, core.screen),
3352 sizeof (Screen *)},
3353 {XtWidgetBaseOffset, (XtPointer) XtOffset (Widget, core.colormap),
3354 sizeof (Colormap)}
3355 };
3356
3357
3358 /* The address of this variable is returned by
3359 cvt_string_to_pixel. */
3360
3361 static Pixel cvt_string_to_pixel_value;
3362
3363
3364 /* Convert a color name to a pixel color.
3365
3366 DPY is the display we are working on.
3367
3368 ARGS is an array of *NARGS XrmValue structures holding additional
3369 information about the widget for which the conversion takes place.
3370 The contents of this array are determined by the specification
3371 in cvt_string_to_pixel_args.
3372
3373 FROM is a pointer to an XrmValue which points to the color name to
3374 convert. TO is an XrmValue in which to return the pixel color.
3375
3376 CLOSURE_RET is a pointer to user-data, in which we record if
3377 we allocated the color or not.
3378
3379 Value is True if successful, False otherwise. */
3380
3381 static Boolean
3382 cvt_string_to_pixel (dpy, args, nargs, from, to, closure_ret)
3383 Display *dpy;
3384 XrmValue *args;
3385 Cardinal *nargs;
3386 XrmValue *from, *to;
3387 XtPointer *closure_ret;
3388 {
3389 Screen *screen;
3390 Colormap cmap;
3391 Pixel pixel;
3392 String color_name;
3393 XColor color;
3394
3395 if (*nargs != 2)
3396 {
3397 XtAppWarningMsg (XtDisplayToApplicationContext (dpy),
3398 "wrongParameters", "cvt_string_to_pixel",
3399 "XtToolkitError",
3400 "Screen and colormap args required", NULL, NULL);
3401 return False;
3402 }
3403
3404 screen = *(Screen **) args[0].addr;
3405 cmap = *(Colormap *) args[1].addr;
3406 color_name = (String) from->addr;
3407
3408 if (strcmp (color_name, XtDefaultBackground) == 0)
3409 {
3410 *closure_ret = (XtPointer) False;
3411 pixel = WhitePixelOfScreen (screen);
3412 }
3413 else if (strcmp (color_name, XtDefaultForeground) == 0)
3414 {
3415 *closure_ret = (XtPointer) False;
3416 pixel = BlackPixelOfScreen (screen);
3417 }
3418 else if (XParseColor (dpy, cmap, color_name, &color)
3419 && x_alloc_nearest_color_1 (dpy, cmap, &color))
3420 {
3421 pixel = color.pixel;
3422 *closure_ret = (XtPointer) True;
3423 }
3424 else
3425 {
3426 String params[1];
3427 Cardinal nparams = 1;
3428
3429 params[0] = color_name;
3430 XtAppWarningMsg (XtDisplayToApplicationContext (dpy),
3431 "badValue", "cvt_string_to_pixel",
3432 "XtToolkitError", "Invalid color `%s'",
3433 params, &nparams);
3434 return False;
3435 }
3436
3437 if (to->addr != NULL)
3438 {
3439 if (to->size < sizeof (Pixel))
3440 {
3441 to->size = sizeof (Pixel);
3442 return False;
3443 }
3444
3445 *(Pixel *) to->addr = pixel;
3446 }
3447 else
3448 {
3449 cvt_string_to_pixel_value = pixel;
3450 to->addr = (XtPointer) &cvt_string_to_pixel_value;
3451 }
3452
3453 to->size = sizeof (Pixel);
3454 return True;
3455 }
3456
3457
3458 /* Free a pixel color which was previously allocated via
3459 cvt_string_to_pixel. This is registered as the destructor
3460 for this type of resource via XtSetTypeConverter.
3461
3462 APP is the application context in which we work.
3463
3464 TO is a pointer to an XrmValue holding the color to free.
3465 CLOSURE is the value we stored in CLOSURE_RET for this color
3466 in cvt_string_to_pixel.
3467
3468 ARGS and NARGS are like for cvt_string_to_pixel. */
3469
3470 static void
3471 cvt_pixel_dtor (app, to, closure, args, nargs)
3472 XtAppContext app;
3473 XrmValuePtr to;
3474 XtPointer closure;
3475 XrmValuePtr args;
3476 Cardinal *nargs;
3477 {
3478 if (*nargs != 2)
3479 {
3480 XtAppWarningMsg (app, "wrongParameters", "cvt_pixel_dtor",
3481 "XtToolkitError",
3482 "Screen and colormap arguments required",
3483 NULL, NULL);
3484 }
3485 else if (closure != NULL)
3486 {
3487 /* We did allocate the pixel, so free it. */
3488 Screen *screen = *(Screen **) args[0].addr;
3489 Colormap cmap = *(Colormap *) args[1].addr;
3490 x_free_dpy_colors (DisplayOfScreen (screen), screen, cmap,
3491 (Pixel *) to->addr, 1);
3492 }
3493 }
3494
3495
3496 #endif /* USE_X_TOOLKIT */
3497
3498
3499 /* Value is an array of XColor structures for the contents of the
3500 color map of display DPY. Set *NCELLS to the size of the array.
3501 Note that this probably shouldn't be called for large color maps,
3502 say a 24-bit TrueColor map. */
3503
3504 static const XColor *
3505 x_color_cells (dpy, ncells)
3506 Display *dpy;
3507 int *ncells;
3508 {
3509 struct x_display_info *dpyinfo = x_display_info_for_display (dpy);
3510
3511 if (dpyinfo->color_cells == NULL)
3512 {
3513 Screen *screen = dpyinfo->screen;
3514 int i;
3515
3516 dpyinfo->ncolor_cells
3517 = XDisplayCells (dpy, XScreenNumberOfScreen (screen));
3518 dpyinfo->color_cells
3519 = (XColor *) xmalloc (dpyinfo->ncolor_cells
3520 * sizeof *dpyinfo->color_cells);
3521
3522 for (i = 0; i < dpyinfo->ncolor_cells; ++i)
3523 dpyinfo->color_cells[i].pixel = i;
3524
3525 XQueryColors (dpy, dpyinfo->cmap,
3526 dpyinfo->color_cells, dpyinfo->ncolor_cells);
3527 }
3528
3529 *ncells = dpyinfo->ncolor_cells;
3530 return dpyinfo->color_cells;
3531 }
3532
3533
3534 /* On frame F, translate pixel colors to RGB values for the NCOLORS
3535 colors in COLORS. Use cached information, if available. */
3536
3537 void
3538 x_query_colors (f, colors, ncolors)
3539 struct frame *f;
3540 XColor *colors;
3541 int ncolors;
3542 {
3543 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
3544
3545 if (dpyinfo->color_cells)
3546 {
3547 int i;
3548 for (i = 0; i < ncolors; ++i)
3549 {
3550 unsigned long pixel = colors[i].pixel;
3551 xassert (pixel < dpyinfo->ncolor_cells);
3552 xassert (dpyinfo->color_cells[pixel].pixel == pixel);
3553 colors[i] = dpyinfo->color_cells[pixel];
3554 }
3555 }
3556 else
3557 XQueryColors (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f), colors, ncolors);
3558 }
3559
3560
3561 /* On frame F, translate pixel color to RGB values for the color in
3562 COLOR. Use cached information, if available. */
3563
3564 void
3565 x_query_color (f, color)
3566 struct frame *f;
3567 XColor *color;
3568 {
3569 x_query_colors (f, color, 1);
3570 }
3571
3572
3573 /* Allocate the color COLOR->pixel on DISPLAY, colormap CMAP. If an
3574 exact match can't be allocated, try the nearest color available.
3575 Value is non-zero if successful. Set *COLOR to the color
3576 allocated. */
3577
3578 static int
3579 x_alloc_nearest_color_1 (dpy, cmap, color)
3580 Display *dpy;
3581 Colormap cmap;
3582 XColor *color;
3583 {
3584 int rc;
3585
3586 rc = XAllocColor (dpy, cmap, color);
3587 if (rc == 0)
3588 {
3589 /* If we got to this point, the colormap is full, so we're going
3590 to try to get the next closest color. The algorithm used is
3591 a least-squares matching, which is what X uses for closest
3592 color matching with StaticColor visuals. */
3593 int nearest, i;
3594 unsigned long nearest_delta = ~0;
3595 int ncells;
3596 const XColor *cells = x_color_cells (dpy, &ncells);
3597
3598 for (nearest = i = 0; i < ncells; ++i)
3599 {
3600 long dred = (color->red >> 8) - (cells[i].red >> 8);
3601 long dgreen = (color->green >> 8) - (cells[i].green >> 8);
3602 long dblue = (color->blue >> 8) - (cells[i].blue >> 8);
3603 unsigned long delta = dred * dred + dgreen * dgreen + dblue * dblue;
3604
3605 if (delta < nearest_delta)
3606 {
3607 nearest = i;
3608 nearest_delta = delta;
3609 }
3610 }
3611
3612 color->red = cells[nearest].red;
3613 color->green = cells[nearest].green;
3614 color->blue = cells[nearest].blue;
3615 rc = XAllocColor (dpy, cmap, color);
3616 }
3617 else
3618 {
3619 /* If allocation succeeded, and the allocated pixel color is not
3620 equal to a cached pixel color recorded earlier, there was a
3621 change in the colormap, so clear the color cache. */
3622 struct x_display_info *dpyinfo = x_display_info_for_display (dpy);
3623 XColor *cached_color;
3624
3625 if (dpyinfo->color_cells
3626 && (cached_color = &dpyinfo->color_cells[color->pixel],
3627 (cached_color->red != color->red
3628 || cached_color->blue != color->blue
3629 || cached_color->green != color->green)))
3630 {
3631 xfree (dpyinfo->color_cells);
3632 dpyinfo->color_cells = NULL;
3633 dpyinfo->ncolor_cells = 0;
3634 }
3635 }
3636
3637 #ifdef DEBUG_X_COLORS
3638 if (rc)
3639 register_color (color->pixel);
3640 #endif /* DEBUG_X_COLORS */
3641
3642 return rc;
3643 }
3644
3645
3646 /* Allocate the color COLOR->pixel on frame F, colormap CMAP. If an
3647 exact match can't be allocated, try the nearest color available.
3648 Value is non-zero if successful. Set *COLOR to the color
3649 allocated. */
3650
3651 int
3652 x_alloc_nearest_color (f, cmap, color)
3653 struct frame *f;
3654 Colormap cmap;
3655 XColor *color;
3656 {
3657 gamma_correct (f, color);
3658 return x_alloc_nearest_color_1 (FRAME_X_DISPLAY (f), cmap, color);
3659 }
3660
3661
3662 /* Allocate color PIXEL on frame F. PIXEL must already be allocated.
3663 It's necessary to do this instead of just using PIXEL directly to
3664 get color reference counts right. */
3665
3666 unsigned long
3667 x_copy_color (f, pixel)
3668 struct frame *f;
3669 unsigned long pixel;
3670 {
3671 XColor color;
3672
3673 color.pixel = pixel;
3674 BLOCK_INPUT;
3675 x_query_color (f, &color);
3676 XAllocColor (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f), &color);
3677 UNBLOCK_INPUT;
3678 #ifdef DEBUG_X_COLORS
3679 register_color (pixel);
3680 #endif
3681 return color.pixel;
3682 }
3683
3684
3685 /* Allocate color PIXEL on display DPY. PIXEL must already be allocated.
3686 It's necessary to do this instead of just using PIXEL directly to
3687 get color reference counts right. */
3688
3689 unsigned long
3690 x_copy_dpy_color (dpy, cmap, pixel)
3691 Display *dpy;
3692 Colormap cmap;
3693 unsigned long pixel;
3694 {
3695 XColor color;
3696
3697 color.pixel = pixel;
3698 BLOCK_INPUT;
3699 XQueryColor (dpy, cmap, &color);
3700 XAllocColor (dpy, cmap, &color);
3701 UNBLOCK_INPUT;
3702 #ifdef DEBUG_X_COLORS
3703 register_color (pixel);
3704 #endif
3705 return color.pixel;
3706 }
3707
3708
3709 /* Brightness beyond which a color won't have its highlight brightness
3710 boosted.
3711
3712 Nominally, highlight colors for `3d' faces are calculated by
3713 brightening an object's color by a constant scale factor, but this
3714 doesn't yield good results for dark colors, so for colors who's
3715 brightness is less than this value (on a scale of 0-65535) have an
3716 use an additional additive factor.
3717
3718 The value here is set so that the default menu-bar/mode-line color
3719 (grey75) will not have its highlights changed at all. */
3720 #define HIGHLIGHT_COLOR_DARK_BOOST_LIMIT 48000
3721
3722
3723 /* Allocate a color which is lighter or darker than *PIXEL by FACTOR
3724 or DELTA. Try a color with RGB values multiplied by FACTOR first.
3725 If this produces the same color as PIXEL, try a color where all RGB
3726 values have DELTA added. Return the allocated color in *PIXEL.
3727 DISPLAY is the X display, CMAP is the colormap to operate on.
3728 Value is non-zero if successful. */
3729
3730 static int
3731 x_alloc_lighter_color (f, display, cmap, pixel, factor, delta)
3732 struct frame *f;
3733 Display *display;
3734 Colormap cmap;
3735 unsigned long *pixel;
3736 double factor;
3737 int delta;
3738 {
3739 XColor color, new;
3740 long bright;
3741 int success_p;
3742
3743 /* Get RGB color values. */
3744 color.pixel = *pixel;
3745 x_query_color (f, &color);
3746
3747 /* Change RGB values by specified FACTOR. Avoid overflow! */
3748 xassert (factor >= 0);
3749 new.red = min (0xffff, factor * color.red);
3750 new.green = min (0xffff, factor * color.green);
3751 new.blue = min (0xffff, factor * color.blue);
3752
3753 /* Calculate brightness of COLOR. */
3754 bright = (2 * color.red + 3 * color.green + color.blue) / 6;
3755
3756 /* We only boost colors that are darker than
3757 HIGHLIGHT_COLOR_DARK_BOOST_LIMIT. */
3758 if (bright < HIGHLIGHT_COLOR_DARK_BOOST_LIMIT)
3759 /* Make an additive adjustment to NEW, because it's dark enough so
3760 that scaling by FACTOR alone isn't enough. */
3761 {
3762 /* How far below the limit this color is (0 - 1, 1 being darker). */
3763 double dimness = 1 - (double)bright / HIGHLIGHT_COLOR_DARK_BOOST_LIMIT;
3764 /* The additive adjustment. */
3765 int min_delta = delta * dimness * factor / 2;
3766
3767 if (factor < 1)
3768 {
3769 new.red = max (0, new.red - min_delta);
3770 new.green = max (0, new.green - min_delta);
3771 new.blue = max (0, new.blue - min_delta);
3772 }
3773 else
3774 {
3775 new.red = min (0xffff, min_delta + new.red);
3776 new.green = min (0xffff, min_delta + new.green);
3777 new.blue = min (0xffff, min_delta + new.blue);
3778 }
3779 }
3780
3781 /* Try to allocate the color. */
3782 success_p = x_alloc_nearest_color (f, cmap, &new);
3783 if (success_p)
3784 {
3785 if (new.pixel == *pixel)
3786 {
3787 /* If we end up with the same color as before, try adding
3788 delta to the RGB values. */
3789 x_free_colors (f, &new.pixel, 1);
3790
3791 new.red = min (0xffff, delta + color.red);
3792 new.green = min (0xffff, delta + color.green);
3793 new.blue = min (0xffff, delta + color.blue);
3794 success_p = x_alloc_nearest_color (f, cmap, &new);
3795 }
3796 else
3797 success_p = 1;
3798 *pixel = new.pixel;
3799 }
3800
3801 return success_p;
3802 }
3803
3804
3805 /* Set up the foreground color for drawing relief lines of glyph
3806 string S. RELIEF is a pointer to a struct relief containing the GC
3807 with which lines will be drawn. Use a color that is FACTOR or
3808 DELTA lighter or darker than the relief's background which is found
3809 in S->f->output_data.x->relief_background. If such a color cannot
3810 be allocated, use DEFAULT_PIXEL, instead. */
3811
3812 static void
3813 x_setup_relief_color (f, relief, factor, delta, default_pixel)
3814 struct frame *f;
3815 struct relief *relief;
3816 double factor;
3817 int delta;
3818 unsigned long default_pixel;
3819 {
3820 XGCValues xgcv;
3821 struct x_output *di = f->output_data.x;
3822 unsigned long mask = GCForeground | GCLineWidth | GCGraphicsExposures;
3823 unsigned long pixel;
3824 unsigned long background = di->relief_background;
3825 Colormap cmap = FRAME_X_COLORMAP (f);
3826 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
3827 Display *dpy = FRAME_X_DISPLAY (f);
3828
3829 xgcv.graphics_exposures = False;
3830 xgcv.line_width = 1;
3831
3832 /* Free previously allocated color. The color cell will be reused
3833 when it has been freed as many times as it was allocated, so this
3834 doesn't affect faces using the same colors. */
3835 if (relief->gc
3836 && relief->allocated_p)
3837 {
3838 x_free_colors (f, &relief->pixel, 1);
3839 relief->allocated_p = 0;
3840 }
3841
3842 /* Allocate new color. */
3843 xgcv.foreground = default_pixel;
3844 pixel = background;
3845 if (dpyinfo->n_planes != 1
3846 && x_alloc_lighter_color (f, dpy, cmap, &pixel, factor, delta))
3847 {
3848 relief->allocated_p = 1;
3849 xgcv.foreground = relief->pixel = pixel;
3850 }
3851
3852 if (relief->gc == 0)
3853 {
3854 xgcv.stipple = dpyinfo->gray;
3855 mask |= GCStipple;
3856 relief->gc = XCreateGC (dpy, FRAME_X_WINDOW (f), mask, &xgcv);
3857 }
3858 else
3859 XChangeGC (dpy, relief->gc, mask, &xgcv);
3860 }
3861
3862
3863 /* Set up colors for the relief lines around glyph string S. */
3864
3865 static void
3866 x_setup_relief_colors (s)
3867 struct glyph_string *s;
3868 {
3869 struct x_output *di = s->f->output_data.x;
3870 unsigned long color;
3871
3872 if (s->face->use_box_color_for_shadows_p)
3873 color = s->face->box_color;
3874 else if (s->first_glyph->type == IMAGE_GLYPH
3875 && s->img->pixmap
3876 && !IMAGE_BACKGROUND_TRANSPARENT (s->img, s->f, 0))
3877 color = IMAGE_BACKGROUND (s->img, s->f, 0);
3878 else
3879 {
3880 XGCValues xgcv;
3881
3882 /* Get the background color of the face. */
3883 XGetGCValues (s->display, s->gc, GCBackground, &xgcv);
3884 color = xgcv.background;
3885 }
3886
3887 if (di->white_relief.gc == 0
3888 || color != di->relief_background)
3889 {
3890 di->relief_background = color;
3891 x_setup_relief_color (s->f, &di->white_relief, 1.2, 0x8000,
3892 WHITE_PIX_DEFAULT (s->f));
3893 x_setup_relief_color (s->f, &di->black_relief, 0.6, 0x4000,
3894 BLACK_PIX_DEFAULT (s->f));
3895 }
3896 }
3897
3898
3899 /* Draw a relief on frame F inside the rectangle given by LEFT_X,
3900 TOP_Y, RIGHT_X, and BOTTOM_Y. WIDTH is the thickness of the relief
3901 to draw, it must be >= 0. RAISED_P non-zero means draw a raised
3902 relief. LEFT_P non-zero means draw a relief on the left side of
3903 the rectangle. RIGHT_P non-zero means draw a relief on the right
3904 side of the rectangle. CLIP_RECT is the clipping rectangle to use
3905 when drawing. */
3906
3907 static void
3908 x_draw_relief_rect (f, left_x, top_y, right_x, bottom_y, width,
3909 raised_p, left_p, right_p, clip_rect)
3910 struct frame *f;
3911 int left_x, top_y, right_x, bottom_y, left_p, right_p, raised_p;
3912 XRectangle *clip_rect;
3913 {
3914 Display *dpy = FRAME_X_DISPLAY (f);
3915 Window window = FRAME_X_WINDOW (f);
3916 int i;
3917 GC gc;
3918
3919 if (raised_p)
3920 gc = f->output_data.x->white_relief.gc;
3921 else
3922 gc = f->output_data.x->black_relief.gc;
3923 XSetClipRectangles (dpy, gc, 0, 0, clip_rect, 1, Unsorted);
3924
3925 /* Top. */
3926 for (i = 0; i < width; ++i)
3927 XDrawLine (dpy, window, gc,
3928 left_x + i * left_p, top_y + i,
3929 right_x + 1 - i * right_p, top_y + i);
3930
3931 /* Left. */
3932 if (left_p)
3933 for (i = 0; i < width; ++i)
3934 XDrawLine (dpy, window, gc,
3935 left_x + i, top_y + i, left_x + i, bottom_y - i + 1);
3936
3937 XSetClipMask (dpy, gc, None);
3938 if (raised_p)
3939 gc = f->output_data.x->black_relief.gc;
3940 else
3941 gc = f->output_data.x->white_relief.gc;
3942 XSetClipRectangles (dpy, gc, 0, 0, clip_rect, 1, Unsorted);
3943
3944 /* Bottom. */
3945 for (i = 0; i < width; ++i)
3946 XDrawLine (dpy, window, gc,
3947 left_x + i * left_p, bottom_y - i,
3948 right_x + 1 - i * right_p, bottom_y - i);
3949
3950 /* Right. */
3951 if (right_p)
3952 for (i = 0; i < width; ++i)
3953 XDrawLine (dpy, window, gc,
3954 right_x - i, top_y + i + 1, right_x - i, bottom_y - i);
3955
3956 XSetClipMask (dpy, gc, None);
3957 }
3958
3959
3960 /* Draw a box on frame F inside the rectangle given by LEFT_X, TOP_Y,
3961 RIGHT_X, and BOTTOM_Y. WIDTH is the thickness of the lines to
3962 draw, it must be >= 0. LEFT_P non-zero means draw a line on the
3963 left side of the rectangle. RIGHT_P non-zero means draw a line
3964 on the right side of the rectangle. CLIP_RECT is the clipping
3965 rectangle to use when drawing. */
3966
3967 static void
3968 x_draw_box_rect (s, left_x, top_y, right_x, bottom_y, width,
3969 left_p, right_p, clip_rect)
3970 struct glyph_string *s;
3971 int left_x, top_y, right_x, bottom_y, left_p, right_p;
3972 XRectangle *clip_rect;
3973 {
3974 XGCValues xgcv;
3975
3976 XGetGCValues (s->display, s->gc, GCForeground, &xgcv);
3977 XSetForeground (s->display, s->gc, s->face->box_color);
3978 XSetClipRectangles (s->display, s->gc, 0, 0, clip_rect, 1, Unsorted);
3979
3980 /* Top. */
3981 XFillRectangle (s->display, s->window, s->gc,
3982 left_x, top_y, right_x - left_x + 1, width);
3983
3984 /* Left. */
3985 if (left_p)
3986 XFillRectangle (s->display, s->window, s->gc,
3987 left_x, top_y, width, bottom_y - top_y + 1);
3988
3989 /* Bottom. */
3990 XFillRectangle (s->display, s->window, s->gc,
3991 left_x, bottom_y - width + 1, right_x - left_x + 1, width);
3992
3993 /* Right. */
3994 if (right_p)
3995 XFillRectangle (s->display, s->window, s->gc,
3996 right_x - width + 1, top_y, width, bottom_y - top_y + 1);
3997
3998 XSetForeground (s->display, s->gc, xgcv.foreground);
3999 XSetClipMask (s->display, s->gc, None);
4000 }
4001
4002
4003 /* Draw a box around glyph string S. */
4004
4005 static void
4006 x_draw_glyph_string_box (s)
4007 struct glyph_string *s;
4008 {
4009 int width, left_x, right_x, top_y, bottom_y, last_x, raised_p;
4010 int left_p, right_p;
4011 struct glyph *last_glyph;
4012 XRectangle clip_rect;
4013
4014 last_x = window_box_right (s->w, s->area);
4015 if (s->row->full_width_p
4016 && !s->w->pseudo_window_p)
4017 {
4018 last_x += FRAME_X_RIGHT_FRINGE_WIDTH (s->f);
4019 if (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (s->f))
4020 last_x += FRAME_SCROLL_BAR_WIDTH (s->f) * CANON_X_UNIT (s->f);
4021 }
4022
4023 /* The glyph that may have a right box line. */
4024 last_glyph = (s->cmp || s->img
4025 ? s->first_glyph
4026 : s->first_glyph + s->nchars - 1);
4027
4028 width = abs (s->face->box_line_width);
4029 raised_p = s->face->box == FACE_RAISED_BOX;
4030 left_x = s->x;
4031 right_x = (s->row->full_width_p && s->extends_to_end_of_line_p
4032 ? last_x - 1
4033 : min (last_x, s->x + s->background_width) - 1);
4034 top_y = s->y;
4035 bottom_y = top_y + s->height - 1;
4036
4037 left_p = (s->first_glyph->left_box_line_p
4038 || (s->hl == DRAW_MOUSE_FACE
4039 && (s->prev == NULL
4040 || s->prev->hl != s->hl)));
4041 right_p = (last_glyph->right_box_line_p
4042 || (s->hl == DRAW_MOUSE_FACE
4043 && (s->next == NULL
4044 || s->next->hl != s->hl)));
4045
4046 x_get_glyph_string_clip_rect (s, &clip_rect);
4047
4048 if (s->face->box == FACE_SIMPLE_BOX)
4049 x_draw_box_rect (s, left_x, top_y, right_x, bottom_y, width,
4050 left_p, right_p, &clip_rect);
4051 else
4052 {
4053 x_setup_relief_colors (s);
4054 x_draw_relief_rect (s->f, left_x, top_y, right_x, bottom_y,
4055 width, raised_p, left_p, right_p, &clip_rect);
4056 }
4057 }
4058
4059
4060 /* Draw foreground of image glyph string S. */
4061
4062 static void
4063 x_draw_image_foreground (s)
4064 struct glyph_string *s;
4065 {
4066 int x;
4067 int y = s->ybase - image_ascent (s->img, s->face);
4068
4069 /* If first glyph of S has a left box line, start drawing it to the
4070 right of that line. */
4071 if (s->face->box != FACE_NO_BOX
4072 && s->first_glyph->left_box_line_p)
4073 x = s->x + abs (s->face->box_line_width);
4074 else
4075 x = s->x;
4076
4077 /* If there is a margin around the image, adjust x- and y-position
4078 by that margin. */
4079 x += s->img->hmargin;
4080 y += s->img->vmargin;
4081
4082 if (s->img->pixmap)
4083 {
4084 if (s->img->mask)
4085 {
4086 /* We can't set both a clip mask and use XSetClipRectangles
4087 because the latter also sets a clip mask. We also can't
4088 trust on the shape extension to be available
4089 (XShapeCombineRegion). So, compute the rectangle to draw
4090 manually. */
4091 unsigned long mask = (GCClipMask | GCClipXOrigin | GCClipYOrigin
4092 | GCFunction);
4093 XGCValues xgcv;
4094 XRectangle clip_rect, image_rect, r;
4095
4096 xgcv.clip_mask = s->img->mask;
4097 xgcv.clip_x_origin = x;
4098 xgcv.clip_y_origin = y;
4099 xgcv.function = GXcopy;
4100 XChangeGC (s->display, s->gc, mask, &xgcv);
4101
4102 x_get_glyph_string_clip_rect (s, &clip_rect);
4103 image_rect.x = x;
4104 image_rect.y = y;
4105 image_rect.width = s->img->width;
4106 image_rect.height = s->img->height;
4107 if (x_intersect_rectangles (&clip_rect, &image_rect, &r))
4108 XCopyArea (s->display, s->img->pixmap, s->window, s->gc,
4109 r.x - x, r.y - y, r.width, r.height, r.x, r.y);
4110 }
4111 else
4112 {
4113 XRectangle clip_rect, image_rect, r;
4114
4115 x_get_glyph_string_clip_rect (s, &clip_rect);
4116 image_rect.x = x;
4117 image_rect.y = y;
4118 image_rect.width = s->img->width;
4119 image_rect.height = s->img->height;
4120 if (x_intersect_rectangles (&clip_rect, &image_rect, &r))
4121 XCopyArea (s->display, s->img->pixmap, s->window, s->gc,
4122 r.x - x, r.y - y, r.width, r.height, r.x, r.y);
4123
4124 /* When the image has a mask, we can expect that at
4125 least part of a mouse highlight or a block cursor will
4126 be visible. If the image doesn't have a mask, make
4127 a block cursor visible by drawing a rectangle around
4128 the image. I believe it's looking better if we do
4129 nothing here for mouse-face. */
4130 if (s->hl == DRAW_CURSOR)
4131 {
4132 int r = s->img->relief;
4133 if (r < 0) r = -r;
4134 XDrawRectangle (s->display, s->window, s->gc, x - r, y - r,
4135 s->img->width + r*2 - 1, s->img->height + r*2 - 1);
4136 }
4137 }
4138 }
4139 else
4140 /* Draw a rectangle if image could not be loaded. */
4141 XDrawRectangle (s->display, s->window, s->gc, x, y,
4142 s->img->width - 1, s->img->height - 1);
4143 }
4144
4145
4146 /* Draw a relief around the image glyph string S. */
4147
4148 static void
4149 x_draw_image_relief (s)
4150 struct glyph_string *s;
4151 {
4152 int x0, y0, x1, y1, thick, raised_p;
4153 XRectangle r;
4154 int x;
4155 int y = s->ybase - image_ascent (s->img, s->face);
4156
4157 /* If first glyph of S has a left box line, start drawing it to the
4158 right of that line. */
4159 if (s->face->box != FACE_NO_BOX
4160 && s->first_glyph->left_box_line_p)
4161 x = s->x + abs (s->face->box_line_width);
4162 else
4163 x = s->x;
4164
4165 /* If there is a margin around the image, adjust x- and y-position
4166 by that margin. */
4167 x += s->img->hmargin;
4168 y += s->img->vmargin;
4169
4170 if (s->hl == DRAW_IMAGE_SUNKEN
4171 || s->hl == DRAW_IMAGE_RAISED)
4172 {
4173 thick = tool_bar_button_relief >= 0 ? tool_bar_button_relief : DEFAULT_TOOL_BAR_BUTTON_RELIEF;
4174 raised_p = s->hl == DRAW_IMAGE_RAISED;
4175 }
4176 else
4177 {
4178 thick = abs (s->img->relief);
4179 raised_p = s->img->relief > 0;
4180 }
4181
4182 x0 = x - thick;
4183 y0 = y - thick;
4184 x1 = x + s->img->width + thick - 1;
4185 y1 = y + s->img->height + thick - 1;
4186
4187 x_setup_relief_colors (s);
4188 x_get_glyph_string_clip_rect (s, &r);
4189 x_draw_relief_rect (s->f, x0, y0, x1, y1, thick, raised_p, 1, 1, &r);
4190 }
4191
4192
4193 /* Draw the foreground of image glyph string S to PIXMAP. */
4194
4195 static void
4196 x_draw_image_foreground_1 (s, pixmap)
4197 struct glyph_string *s;
4198 Pixmap pixmap;
4199 {
4200 int x;
4201 int y = s->ybase - s->y - image_ascent (s->img, s->face);
4202
4203 /* If first glyph of S has a left box line, start drawing it to the
4204 right of that line. */
4205 if (s->face->box != FACE_NO_BOX
4206 && s->first_glyph->left_box_line_p)
4207 x = abs (s->face->box_line_width);
4208 else
4209 x = 0;
4210
4211 /* If there is a margin around the image, adjust x- and y-position
4212 by that margin. */
4213 x += s->img->hmargin;
4214 y += s->img->vmargin;
4215
4216 if (s->img->pixmap)
4217 {
4218 if (s->img->mask)
4219 {
4220 /* We can't set both a clip mask and use XSetClipRectangles
4221 because the latter also sets a clip mask. We also can't
4222 trust on the shape extension to be available
4223 (XShapeCombineRegion). So, compute the rectangle to draw
4224 manually. */
4225 unsigned long mask = (GCClipMask | GCClipXOrigin | GCClipYOrigin
4226 | GCFunction);
4227 XGCValues xgcv;
4228
4229 xgcv.clip_mask = s->img->mask;
4230 xgcv.clip_x_origin = x;
4231 xgcv.clip_y_origin = y;
4232 xgcv.function = GXcopy;
4233 XChangeGC (s->display, s->gc, mask, &xgcv);
4234
4235 XCopyArea (s->display, s->img->pixmap, pixmap, s->gc,
4236 0, 0, s->img->width, s->img->height, x, y);
4237 XSetClipMask (s->display, s->gc, None);
4238 }
4239 else
4240 {
4241 XCopyArea (s->display, s->img->pixmap, pixmap, s->gc,
4242 0, 0, s->img->width, s->img->height, x, y);
4243
4244 /* When the image has a mask, we can expect that at
4245 least part of a mouse highlight or a block cursor will
4246 be visible. If the image doesn't have a mask, make
4247 a block cursor visible by drawing a rectangle around
4248 the image. I believe it's looking better if we do
4249 nothing here for mouse-face. */
4250 if (s->hl == DRAW_CURSOR)
4251 {
4252 int r = s->img->relief;
4253 if (r < 0) r = -r;
4254 XDrawRectangle (s->display, s->window, s->gc, x - r, y - r,
4255 s->img->width + r*2 - 1, s->img->height + r*2 - 1);
4256 }
4257 }
4258 }
4259 else
4260 /* Draw a rectangle if image could not be loaded. */
4261 XDrawRectangle (s->display, pixmap, s->gc, x, y,
4262 s->img->width - 1, s->img->height - 1);
4263 }
4264
4265
4266 /* Draw part of the background of glyph string S. X, Y, W, and H
4267 give the rectangle to draw. */
4268
4269 static void
4270 x_draw_glyph_string_bg_rect (s, x, y, w, h)
4271 struct glyph_string *s;
4272 int x, y, w, h;
4273 {
4274 if (s->stippled_p)
4275 {
4276 /* Fill background with a stipple pattern. */
4277 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
4278 XFillRectangle (s->display, s->window, s->gc, x, y, w, h);
4279 XSetFillStyle (s->display, s->gc, FillSolid);
4280 }
4281 else
4282 x_clear_glyph_string_rect (s, x, y, w, h);
4283 }
4284
4285
4286 /* Draw image glyph string S.
4287
4288 s->y
4289 s->x +-------------------------
4290 | s->face->box
4291 |
4292 | +-------------------------
4293 | | s->img->margin
4294 | |
4295 | | +-------------------
4296 | | | the image
4297
4298 */
4299
4300 static void
4301 x_draw_image_glyph_string (s)
4302 struct glyph_string *s;
4303 {
4304 int x, y;
4305 int box_line_hwidth = abs (s->face->box_line_width);
4306 int box_line_vwidth = max (s->face->box_line_width, 0);
4307 int height;
4308 Pixmap pixmap = None;
4309
4310 height = s->height - 2 * box_line_vwidth;
4311
4312 /* Fill background with face under the image. Do it only if row is
4313 taller than image or if image has a clip mask to reduce
4314 flickering. */
4315 s->stippled_p = s->face->stipple != 0;
4316 if (height > s->img->height
4317 || s->img->hmargin
4318 || s->img->vmargin
4319 || s->img->mask
4320 || s->img->pixmap == 0
4321 || s->width != s->background_width)
4322 {
4323 if (box_line_hwidth && s->first_glyph->left_box_line_p)
4324 x = s->x + box_line_hwidth;
4325 else
4326 x = s->x;
4327
4328 y = s->y + box_line_vwidth;
4329
4330 if (s->img->mask)
4331 {
4332 /* Create a pixmap as large as the glyph string. Fill it
4333 with the background color. Copy the image to it, using
4334 its mask. Copy the temporary pixmap to the display. */
4335 Screen *screen = FRAME_X_SCREEN (s->f);
4336 int depth = DefaultDepthOfScreen (screen);
4337
4338 /* Create a pixmap as large as the glyph string. */
4339 pixmap = XCreatePixmap (s->display, s->window,
4340 s->background_width,
4341 s->height, depth);
4342
4343 /* Don't clip in the following because we're working on the
4344 pixmap. */
4345 XSetClipMask (s->display, s->gc, None);
4346
4347 /* Fill the pixmap with the background color/stipple. */
4348 if (s->stippled_p)
4349 {
4350 /* Fill background with a stipple pattern. */
4351 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
4352 XFillRectangle (s->display, pixmap, s->gc,
4353 0, 0, s->background_width, s->height);
4354 XSetFillStyle (s->display, s->gc, FillSolid);
4355 }
4356 else
4357 {
4358 XGCValues xgcv;
4359 XGetGCValues (s->display, s->gc, GCForeground | GCBackground,
4360 &xgcv);
4361 XSetForeground (s->display, s->gc, xgcv.background);
4362 XFillRectangle (s->display, pixmap, s->gc,
4363 0, 0, s->background_width, s->height);
4364 XSetForeground (s->display, s->gc, xgcv.foreground);
4365 }
4366 }
4367 else
4368 x_draw_glyph_string_bg_rect (s, x, y, s->background_width, height);
4369
4370 s->background_filled_p = 1;
4371 }
4372
4373 /* Draw the foreground. */
4374 if (pixmap != None)
4375 {
4376 x_draw_image_foreground_1 (s, pixmap);
4377 x_set_glyph_string_clipping (s);
4378 XCopyArea (s->display, pixmap, s->window, s->gc,
4379 0, 0, s->background_width, s->height, s->x, s->y);
4380 XFreePixmap (s->display, pixmap);
4381 }
4382 else
4383 x_draw_image_foreground (s);
4384
4385 /* If we must draw a relief around the image, do it. */
4386 if (s->img->relief
4387 || s->hl == DRAW_IMAGE_RAISED
4388 || s->hl == DRAW_IMAGE_SUNKEN)
4389 x_draw_image_relief (s);
4390 }
4391
4392
4393 /* Draw stretch glyph string S. */
4394
4395 static void
4396 x_draw_stretch_glyph_string (s)
4397 struct glyph_string *s;
4398 {
4399 xassert (s->first_glyph->type == STRETCH_GLYPH);
4400 s->stippled_p = s->face->stipple != 0;
4401
4402 if (s->hl == DRAW_CURSOR
4403 && !x_stretch_cursor_p)
4404 {
4405 /* If `x-stretch-block-cursor' is nil, don't draw a block cursor
4406 as wide as the stretch glyph. */
4407 int width = min (CANON_X_UNIT (s->f), s->background_width);
4408
4409 /* Draw cursor. */
4410 x_draw_glyph_string_bg_rect (s, s->x, s->y, width, s->height);
4411
4412 /* Clear rest using the GC of the original non-cursor face. */
4413 if (width < s->background_width)
4414 {
4415 int x = s->x + width, y = s->y;
4416 int w = s->background_width - width, h = s->height;
4417 XRectangle r;
4418 GC gc;
4419
4420 if (s->row->mouse_face_p
4421 && cursor_in_mouse_face_p (s->w))
4422 {
4423 x_set_mouse_face_gc (s);
4424 gc = s->gc;
4425 }
4426 else
4427 gc = s->face->gc;
4428
4429 x_get_glyph_string_clip_rect (s, &r);
4430 XSetClipRectangles (s->display, gc, 0, 0, &r, 1, Unsorted);
4431
4432 if (s->face->stipple)
4433 {
4434 /* Fill background with a stipple pattern. */
4435 XSetFillStyle (s->display, gc, FillOpaqueStippled);
4436 XFillRectangle (s->display, s->window, gc, x, y, w, h);
4437 XSetFillStyle (s->display, gc, FillSolid);
4438 }
4439 else
4440 {
4441 XGCValues xgcv;
4442 XGetGCValues (s->display, gc, GCForeground | GCBackground, &xgcv);
4443 XSetForeground (s->display, gc, xgcv.background);
4444 XFillRectangle (s->display, s->window, gc, x, y, w, h);
4445 XSetForeground (s->display, gc, xgcv.foreground);
4446 }
4447 }
4448 }
4449 else if (!s->background_filled_p)
4450 x_draw_glyph_string_bg_rect (s, s->x, s->y, s->background_width,
4451 s->height);
4452
4453 s->background_filled_p = 1;
4454 }
4455
4456
4457 /* Draw glyph string S. */
4458
4459 static void
4460 x_draw_glyph_string (s)
4461 struct glyph_string *s;
4462 {
4463 int relief_drawn_p = 0;
4464
4465 /* If S draws into the background of its successor, draw the
4466 background of the successor first so that S can draw into it.
4467 This makes S->next use XDrawString instead of XDrawImageString. */
4468 if (s->next && s->right_overhang && !s->for_overlaps_p)
4469 {
4470 xassert (s->next->img == NULL);
4471 x_set_glyph_string_gc (s->next);
4472 x_set_glyph_string_clipping (s->next);
4473 x_draw_glyph_string_background (s->next, 1);
4474 }
4475
4476 /* Set up S->gc, set clipping and draw S. */
4477 x_set_glyph_string_gc (s);
4478
4479 /* Draw relief (if any) in advance for char/composition so that the
4480 glyph string can be drawn over it. */
4481 if (!s->for_overlaps_p
4482 && s->face->box != FACE_NO_BOX
4483 && (s->first_glyph->type == CHAR_GLYPH
4484 || s->first_glyph->type == COMPOSITE_GLYPH))
4485
4486 {
4487 x_set_glyph_string_clipping (s);
4488 x_draw_glyph_string_background (s, 1);
4489 x_draw_glyph_string_box (s);
4490 x_set_glyph_string_clipping (s);
4491 relief_drawn_p = 1;
4492 }
4493 else
4494 x_set_glyph_string_clipping (s);
4495
4496 switch (s->first_glyph->type)
4497 {
4498 case IMAGE_GLYPH:
4499 x_draw_image_glyph_string (s);
4500 break;
4501
4502 case STRETCH_GLYPH:
4503 x_draw_stretch_glyph_string (s);
4504 break;
4505
4506 case CHAR_GLYPH:
4507 if (s->for_overlaps_p)
4508 s->background_filled_p = 1;
4509 else
4510 x_draw_glyph_string_background (s, 0);
4511 x_draw_glyph_string_foreground (s);
4512 break;
4513
4514 case COMPOSITE_GLYPH:
4515 if (s->for_overlaps_p || s->gidx > 0)
4516 s->background_filled_p = 1;
4517 else
4518 x_draw_glyph_string_background (s, 1);
4519 x_draw_composite_glyph_string_foreground (s);
4520 break;
4521
4522 default:
4523 abort ();
4524 }
4525
4526 if (!s->for_overlaps_p)
4527 {
4528 /* Draw underline. */
4529 if (s->face->underline_p)
4530 {
4531 unsigned long tem, h;
4532 int y;
4533
4534 /* Get the underline thickness. Default is 1 pixel. */
4535 if (!XGetFontProperty (s->font, XA_UNDERLINE_THICKNESS, &h))
4536 h = 1;
4537
4538 /* Get the underline position. This is the recommended
4539 vertical offset in pixels from the baseline to the top of
4540 the underline. This is a signed value according to the
4541 specs, and its default is
4542
4543 ROUND ((maximum descent) / 2), with
4544 ROUND(x) = floor (x + 0.5) */
4545
4546 if (x_use_underline_position_properties
4547 && XGetFontProperty (s->font, XA_UNDERLINE_POSITION, &tem))
4548 y = s->ybase + (long) tem;
4549 else if (s->face->font)
4550 y = s->ybase + (s->face->font->max_bounds.descent + 1) / 2;
4551 else
4552 y = s->y + s->height - h;
4553
4554 if (s->face->underline_defaulted_p)
4555 XFillRectangle (s->display, s->window, s->gc,
4556 s->x, y, s->width, h);
4557 else
4558 {
4559 XGCValues xgcv;
4560 XGetGCValues (s->display, s->gc, GCForeground, &xgcv);
4561 XSetForeground (s->display, s->gc, s->face->underline_color);
4562 XFillRectangle (s->display, s->window, s->gc,
4563 s->x, y, s->width, h);
4564 XSetForeground (s->display, s->gc, xgcv.foreground);
4565 }
4566 }
4567
4568 /* Draw overline. */
4569 if (s->face->overline_p)
4570 {
4571 unsigned long dy = 0, h = 1;
4572
4573 if (s->face->overline_color_defaulted_p)
4574 XFillRectangle (s->display, s->window, s->gc, s->x, s->y + dy,
4575 s->width, h);
4576 else
4577 {
4578 XGCValues xgcv;
4579 XGetGCValues (s->display, s->gc, GCForeground, &xgcv);
4580 XSetForeground (s->display, s->gc, s->face->overline_color);
4581 XFillRectangle (s->display, s->window, s->gc, s->x, s->y + dy,
4582 s->width, h);
4583 XSetForeground (s->display, s->gc, xgcv.foreground);
4584 }
4585 }
4586
4587 /* Draw strike-through. */
4588 if (s->face->strike_through_p)
4589 {
4590 unsigned long h = 1;
4591 unsigned long dy = (s->height - h) / 2;
4592
4593 if (s->face->strike_through_color_defaulted_p)
4594 XFillRectangle (s->display, s->window, s->gc, s->x, s->y + dy,
4595 s->width, h);
4596 else
4597 {
4598 XGCValues xgcv;
4599 XGetGCValues (s->display, s->gc, GCForeground, &xgcv);
4600 XSetForeground (s->display, s->gc, s->face->strike_through_color);
4601 XFillRectangle (s->display, s->window, s->gc, s->x, s->y + dy,
4602 s->width, h);
4603 XSetForeground (s->display, s->gc, xgcv.foreground);
4604 }
4605 }
4606
4607 /* Draw relief if not yet drawn. */
4608 if (!relief_drawn_p && s->face->box != FACE_NO_BOX)
4609 x_draw_glyph_string_box (s);
4610 }
4611
4612 /* Reset clipping. */
4613 XSetClipMask (s->display, s->gc, None);
4614 }
4615
4616
4617 static int x_fill_composite_glyph_string P_ ((struct glyph_string *,
4618 struct face **, int));
4619
4620
4621 /* Fill glyph string S with composition components specified by S->cmp.
4622
4623 FACES is an array of faces for all components of this composition.
4624 S->gidx is the index of the first component for S.
4625 OVERLAPS_P non-zero means S should draw the foreground only, and
4626 use its physical height for clipping.
4627
4628 Value is the index of a component not in S. */
4629
4630 static int
4631 x_fill_composite_glyph_string (s, faces, overlaps_p)
4632 struct glyph_string *s;
4633 struct face **faces;
4634 int overlaps_p;
4635 {
4636 int i;
4637
4638 xassert (s);
4639
4640 s->for_overlaps_p = overlaps_p;
4641
4642 s->face = faces[s->gidx];
4643 s->font = s->face->font;
4644 s->font_info = FONT_INFO_FROM_ID (s->f, s->face->font_info_id);
4645
4646 /* For all glyphs of this composition, starting at the offset
4647 S->gidx, until we reach the end of the definition or encounter a
4648 glyph that requires the different face, add it to S. */
4649 ++s->nchars;
4650 for (i = s->gidx + 1; i < s->cmp->glyph_len && faces[i] == s->face; ++i)
4651 ++s->nchars;
4652
4653 /* All glyph strings for the same composition has the same width,
4654 i.e. the width set for the first component of the composition. */
4655
4656 s->width = s->first_glyph->pixel_width;
4657
4658 /* If the specified font could not be loaded, use the frame's
4659 default font, but record the fact that we couldn't load it in
4660 the glyph string so that we can draw rectangles for the
4661 characters of the glyph string. */
4662 if (s->font == NULL)
4663 {
4664 s->font_not_found_p = 1;
4665 s->font = FRAME_FONT (s->f);
4666 }
4667
4668 /* Adjust base line for subscript/superscript text. */
4669 s->ybase += s->first_glyph->voffset;
4670
4671 xassert (s->face && s->face->gc);
4672
4673 /* This glyph string must always be drawn with 16-bit functions. */
4674 s->two_byte_p = 1;
4675
4676 return s->gidx + s->nchars;
4677 }
4678
4679
4680 /* Fill glyph string S from a sequence of character glyphs.
4681
4682 FACE_ID is the face id of the string. START is the index of the
4683 first glyph to consider, END is the index of the last + 1.
4684 OVERLAPS_P non-zero means S should draw the foreground only, and
4685 use its physical height for clipping.
4686
4687 Value is the index of the first glyph not in S. */
4688
4689 static int
4690 x_fill_glyph_string (s, face_id, start, end, overlaps_p)
4691 struct glyph_string *s;
4692 int face_id;
4693 int start, end, overlaps_p;
4694 {
4695 struct glyph *glyph, *last;
4696 int voffset;
4697 int glyph_not_available_p;
4698
4699 xassert (s->f == XFRAME (s->w->frame));
4700 xassert (s->nchars == 0);
4701 xassert (start >= 0 && end > start);
4702
4703 s->for_overlaps_p = overlaps_p,
4704 glyph = s->row->glyphs[s->area] + start;
4705 last = s->row->glyphs[s->area] + end;
4706 voffset = glyph->voffset;
4707
4708 glyph_not_available_p = glyph->glyph_not_available_p;
4709
4710 while (glyph < last
4711 && glyph->type == CHAR_GLYPH
4712 && glyph->voffset == voffset
4713 /* Same face id implies same font, nowadays. */
4714 && glyph->face_id == face_id
4715 && glyph->glyph_not_available_p == glyph_not_available_p)
4716 {
4717 int two_byte_p;
4718
4719 s->face = x_get_glyph_face_and_encoding (s->f, glyph,
4720 s->char2b + s->nchars,
4721 &two_byte_p);
4722 s->two_byte_p = two_byte_p;
4723 ++s->nchars;
4724 xassert (s->nchars <= end - start);
4725 s->width += glyph->pixel_width;
4726 ++glyph;
4727 }
4728
4729 s->font = s->face->font;
4730 s->font_info = FONT_INFO_FROM_ID (s->f, s->face->font_info_id);
4731
4732 /* If the specified font could not be loaded, use the frame's font,
4733 but record the fact that we couldn't load it in
4734 S->font_not_found_p so that we can draw rectangles for the
4735 characters of the glyph string. */
4736 if (s->font == NULL || glyph_not_available_p)
4737 {
4738 s->font_not_found_p = 1;
4739 s->font = FRAME_FONT (s->f);
4740 }
4741
4742 /* Adjust base line for subscript/superscript text. */
4743 s->ybase += voffset;
4744
4745 xassert (s->face && s->face->gc);
4746 return glyph - s->row->glyphs[s->area];
4747 }
4748
4749
4750 /* Fill glyph string S from image glyph S->first_glyph. */
4751
4752 static void
4753 x_fill_image_glyph_string (s)
4754 struct glyph_string *s;
4755 {
4756 xassert (s->first_glyph->type == IMAGE_GLYPH);
4757 s->img = IMAGE_FROM_ID (s->f, s->first_glyph->u.img_id);
4758 xassert (s->img);
4759 s->face = FACE_FROM_ID (s->f, s->first_glyph->face_id);
4760 s->font = s->face->font;
4761 s->width = s->first_glyph->pixel_width;
4762
4763 /* Adjust base line for subscript/superscript text. */
4764 s->ybase += s->first_glyph->voffset;
4765 }
4766
4767
4768 /* Fill glyph string S from a sequence of stretch glyphs.
4769
4770 ROW is the glyph row in which the glyphs are found, AREA is the
4771 area within the row. START is the index of the first glyph to
4772 consider, END is the index of the last + 1.
4773
4774 Value is the index of the first glyph not in S. */
4775
4776 static int
4777 x_fill_stretch_glyph_string (s, row, area, start, end)
4778 struct glyph_string *s;
4779 struct glyph_row *row;
4780 enum glyph_row_area area;
4781 int start, end;
4782 {
4783 struct glyph *glyph, *last;
4784 int voffset, face_id;
4785
4786 xassert (s->first_glyph->type == STRETCH_GLYPH);
4787
4788 glyph = s->row->glyphs[s->area] + start;
4789 last = s->row->glyphs[s->area] + end;
4790 face_id = glyph->face_id;
4791 s->face = FACE_FROM_ID (s->f, face_id);
4792 s->font = s->face->font;
4793 s->font_info = FONT_INFO_FROM_ID (s->f, s->face->font_info_id);
4794 s->width = glyph->pixel_width;
4795 voffset = glyph->voffset;
4796
4797 for (++glyph;
4798 (glyph < last
4799 && glyph->type == STRETCH_GLYPH
4800 && glyph->voffset == voffset
4801 && glyph->face_id == face_id);
4802 ++glyph)
4803 s->width += glyph->pixel_width;
4804
4805 /* Adjust base line for subscript/superscript text. */
4806 s->ybase += voffset;
4807
4808 /* The case that face->gc == 0 is handled when drawing the glyph
4809 string by calling PREPARE_FACE_FOR_DISPLAY. */
4810 xassert (s->face);
4811 return glyph - s->row->glyphs[s->area];
4812 }
4813
4814
4815 /* Initialize glyph string S. CHAR2B is a suitably allocated vector
4816 of XChar2b structures for S; it can't be allocated in
4817 x_init_glyph_string because it must be allocated via `alloca'. W
4818 is the window on which S is drawn. ROW and AREA are the glyph row
4819 and area within the row from which S is constructed. START is the
4820 index of the first glyph structure covered by S. HL is a
4821 face-override for drawing S. */
4822
4823 static void
4824 x_init_glyph_string (s, char2b, w, row, area, start, hl)
4825 struct glyph_string *s;
4826 XChar2b *char2b;
4827 struct window *w;
4828 struct glyph_row *row;
4829 enum glyph_row_area area;
4830 int start;
4831 enum draw_glyphs_face hl;
4832 {
4833 bzero (s, sizeof *s);
4834 s->w = w;
4835 s->f = XFRAME (w->frame);
4836 s->display = FRAME_X_DISPLAY (s->f);
4837 s->window = FRAME_X_WINDOW (s->f);
4838 s->char2b = char2b;
4839 s->hl = hl;
4840 s->row = row;
4841 s->area = area;
4842 s->first_glyph = row->glyphs[area] + start;
4843 s->height = row->height;
4844 s->y = WINDOW_TO_FRAME_PIXEL_Y (w, row->y);
4845
4846 /* Display the internal border below the tool-bar window. */
4847 if (s->w == XWINDOW (s->f->tool_bar_window))
4848 s->y -= s->f->output_data.x->internal_border_width;
4849
4850 s->ybase = s->y + row->ascent;
4851 }
4852
4853
4854 /* Set background width of glyph string S. START is the index of the
4855 first glyph following S. LAST_X is the right-most x-position + 1
4856 in the drawing area. */
4857
4858 static INLINE void
4859 x_set_glyph_string_background_width (s, start, last_x)
4860 struct glyph_string *s;
4861 int start;
4862 int last_x;
4863 {
4864 /* If the face of this glyph string has to be drawn to the end of
4865 the drawing area, set S->extends_to_end_of_line_p. */
4866 struct face *default_face = FACE_FROM_ID (s->f, DEFAULT_FACE_ID);
4867
4868 if (start == s->row->used[s->area]
4869 && s->area == TEXT_AREA
4870 && ((s->hl == DRAW_NORMAL_TEXT
4871 && (s->row->fill_line_p
4872 || s->face->background != default_face->background
4873 || s->face->stipple != default_face->stipple
4874 || s->row->mouse_face_p))
4875 || s->hl == DRAW_MOUSE_FACE
4876 || ((s->hl == DRAW_IMAGE_RAISED || s->hl == DRAW_IMAGE_SUNKEN)
4877 && s->row->fill_line_p)))
4878 s->extends_to_end_of_line_p = 1;
4879
4880 /* If S extends its face to the end of the line, set its
4881 background_width to the distance to the right edge of the drawing
4882 area. */
4883 if (s->extends_to_end_of_line_p)
4884 s->background_width = last_x - s->x + 1;
4885 else
4886 s->background_width = s->width;
4887 }
4888
4889
4890 /* Add a glyph string for a stretch glyph to the list of strings
4891 between HEAD and TAIL. START is the index of the stretch glyph in
4892 row area AREA of glyph row ROW. END is the index of the last glyph
4893 in that glyph row area. X is the current output position assigned
4894 to the new glyph string constructed. HL overrides that face of the
4895 glyph; e.g. it is DRAW_CURSOR if a cursor has to be drawn. LAST_X
4896 is the right-most x-position of the drawing area. */
4897
4898 /* SunOS 4 bundled cc, barfed on continuations in the arg lists here
4899 and below -- keep them on one line. */
4900 #define BUILD_STRETCH_GLYPH_STRING(W, ROW, AREA, START, END, HEAD, TAIL, HL, X, LAST_X) \
4901 do \
4902 { \
4903 s = (struct glyph_string *) alloca (sizeof *s); \
4904 x_init_glyph_string (s, NULL, W, ROW, AREA, START, HL); \
4905 START = x_fill_stretch_glyph_string (s, ROW, AREA, START, END); \
4906 x_append_glyph_string (&HEAD, &TAIL, s); \
4907 s->x = (X); \
4908 } \
4909 while (0)
4910
4911
4912 /* Add a glyph string for an image glyph to the list of strings
4913 between HEAD and TAIL. START is the index of the image glyph in
4914 row area AREA of glyph row ROW. END is the index of the last glyph
4915 in that glyph row area. X is the current output position assigned
4916 to the new glyph string constructed. HL overrides that face of the
4917 glyph; e.g. it is DRAW_CURSOR if a cursor has to be drawn. LAST_X
4918 is the right-most x-position of the drawing area. */
4919
4920 #define BUILD_IMAGE_GLYPH_STRING(W, ROW, AREA, START, END, HEAD, TAIL, HL, X, LAST_X) \
4921 do \
4922 { \
4923 s = (struct glyph_string *) alloca (sizeof *s); \
4924 x_init_glyph_string (s, NULL, W, ROW, AREA, START, HL); \
4925 x_fill_image_glyph_string (s); \
4926 x_append_glyph_string (&HEAD, &TAIL, s); \
4927 ++START; \
4928 s->x = (X); \
4929 } \
4930 while (0)
4931
4932
4933 /* Add a glyph string for a sequence of character glyphs to the list
4934 of strings between HEAD and TAIL. START is the index of the first
4935 glyph in row area AREA of glyph row ROW that is part of the new
4936 glyph string. END is the index of the last glyph in that glyph row
4937 area. X is the current output position assigned to the new glyph
4938 string constructed. HL overrides that face of the glyph; e.g. it
4939 is DRAW_CURSOR if a cursor has to be drawn. LAST_X is the
4940 right-most x-position of the drawing area. */
4941
4942 #define BUILD_CHAR_GLYPH_STRINGS(W, ROW, AREA, START, END, HEAD, TAIL, HL, X, LAST_X, OVERLAPS_P) \
4943 do \
4944 { \
4945 int c, face_id; \
4946 XChar2b *char2b; \
4947 \
4948 c = (ROW)->glyphs[AREA][START].u.ch; \
4949 face_id = (ROW)->glyphs[AREA][START].face_id; \
4950 \
4951 s = (struct glyph_string *) alloca (sizeof *s); \
4952 char2b = (XChar2b *) alloca ((END - START) * sizeof *char2b); \
4953 x_init_glyph_string (s, char2b, W, ROW, AREA, START, HL); \
4954 x_append_glyph_string (&HEAD, &TAIL, s); \
4955 s->x = (X); \
4956 START = x_fill_glyph_string (s, face_id, START, END, \
4957 OVERLAPS_P); \
4958 } \
4959 while (0)
4960
4961
4962 /* Add a glyph string for a composite sequence to the list of strings
4963 between HEAD and TAIL. START is the index of the first glyph in
4964 row area AREA of glyph row ROW that is part of the new glyph
4965 string. END is the index of the last glyph in that glyph row area.
4966 X is the current output position assigned to the new glyph string
4967 constructed. HL overrides that face of the glyph; e.g. it is
4968 DRAW_CURSOR if a cursor has to be drawn. LAST_X is the right-most
4969 x-position of the drawing area. */
4970
4971 #define BUILD_COMPOSITE_GLYPH_STRING(W, ROW, AREA, START, END, HEAD, TAIL, HL, X, LAST_X, OVERLAPS_P) \
4972 do { \
4973 int cmp_id = (ROW)->glyphs[AREA][START].u.cmp_id; \
4974 int face_id = (ROW)->glyphs[AREA][START].face_id; \
4975 struct face *base_face = FACE_FROM_ID (XFRAME (w->frame), face_id); \
4976 struct composition *cmp = composition_table[cmp_id]; \
4977 int glyph_len = cmp->glyph_len; \
4978 XChar2b *char2b; \
4979 struct face **faces; \
4980 struct glyph_string *first_s = NULL; \
4981 int n; \
4982 \
4983 base_face = base_face->ascii_face; \
4984 char2b = (XChar2b *) alloca ((sizeof *char2b) * glyph_len); \
4985 faces = (struct face **) alloca ((sizeof *faces) * glyph_len); \
4986 /* At first, fill in `char2b' and `faces'. */ \
4987 for (n = 0; n < glyph_len; n++) \
4988 { \
4989 int c = COMPOSITION_GLYPH (cmp, n); \
4990 int this_face_id = FACE_FOR_CHAR (XFRAME (w->frame), base_face, c); \
4991 faces[n] = FACE_FROM_ID (XFRAME (w->frame), this_face_id); \
4992 x_get_char_face_and_encoding (XFRAME (w->frame), c, \
4993 this_face_id, char2b + n, 1, 1); \
4994 } \
4995 \
4996 /* Make glyph_strings for each glyph sequence that is drawable by \
4997 the same face, and append them to HEAD/TAIL. */ \
4998 for (n = 0; n < cmp->glyph_len;) \
4999 { \
5000 s = (struct glyph_string *) alloca (sizeof *s); \
5001 x_init_glyph_string (s, char2b + n, W, ROW, AREA, START, HL); \
5002 x_append_glyph_string (&(HEAD), &(TAIL), s); \
5003 s->cmp = cmp; \
5004 s->gidx = n; \
5005 s->x = (X); \
5006 \
5007 if (n == 0) \
5008 first_s = s; \
5009 \
5010 n = x_fill_composite_glyph_string (s, faces, OVERLAPS_P); \
5011 } \
5012 \
5013 ++START; \
5014 s = first_s; \
5015 } while (0)
5016
5017
5018 /* Build a list of glyph strings between HEAD and TAIL for the glyphs
5019 of AREA of glyph row ROW on window W between indices START and END.
5020 HL overrides the face for drawing glyph strings, e.g. it is
5021 DRAW_CURSOR to draw a cursor. X and LAST_X are start and end
5022 x-positions of the drawing area.
5023
5024 This is an ugly monster macro construct because we must use alloca
5025 to allocate glyph strings (because x_draw_glyphs can be called
5026 asynchronously). */
5027
5028 #define BUILD_GLYPH_STRINGS(W, ROW, AREA, START, END, HEAD, TAIL, HL, X, LAST_X, OVERLAPS_P) \
5029 do \
5030 { \
5031 HEAD = TAIL = NULL; \
5032 while (START < END) \
5033 { \
5034 struct glyph *first_glyph = (ROW)->glyphs[AREA] + START; \
5035 switch (first_glyph->type) \
5036 { \
5037 case CHAR_GLYPH: \
5038 BUILD_CHAR_GLYPH_STRINGS (W, ROW, AREA, START, END, HEAD, \
5039 TAIL, HL, X, LAST_X, \
5040 OVERLAPS_P); \
5041 break; \
5042 \
5043 case COMPOSITE_GLYPH: \
5044 BUILD_COMPOSITE_GLYPH_STRING (W, ROW, AREA, START, END, \
5045 HEAD, TAIL, HL, X, LAST_X,\
5046 OVERLAPS_P); \
5047 break; \
5048 \
5049 case STRETCH_GLYPH: \
5050 BUILD_STRETCH_GLYPH_STRING (W, ROW, AREA, START, END, \
5051 HEAD, TAIL, HL, X, LAST_X); \
5052 break; \
5053 \
5054 case IMAGE_GLYPH: \
5055 BUILD_IMAGE_GLYPH_STRING (W, ROW, AREA, START, END, HEAD, \
5056 TAIL, HL, X, LAST_X); \
5057 break; \
5058 \
5059 default: \
5060 abort (); \
5061 } \
5062 \
5063 x_set_glyph_string_background_width (s, START, LAST_X); \
5064 (X) += s->width; \
5065 } \
5066 } \
5067 while (0)
5068
5069
5070 /* Draw glyphs between START and END in AREA of ROW on window W,
5071 starting at x-position X. X is relative to AREA in W. HL is a
5072 face-override with the following meaning:
5073
5074 DRAW_NORMAL_TEXT draw normally
5075 DRAW_CURSOR draw in cursor face
5076 DRAW_MOUSE_FACE draw in mouse face.
5077 DRAW_INVERSE_VIDEO draw in mode line face
5078 DRAW_IMAGE_SUNKEN draw an image with a sunken relief around it
5079 DRAW_IMAGE_RAISED draw an image with a raised relief around it
5080
5081 If OVERLAPS_P is non-zero, draw only the foreground of characters
5082 and clip to the physical height of ROW.
5083
5084 Value is the x-position reached, relative to AREA of W. */
5085
5086 static int
5087 x_draw_glyphs (w, x, row, area, start, end, hl, overlaps_p)
5088 struct window *w;
5089 int x;
5090 struct glyph_row *row;
5091 enum glyph_row_area area;
5092 int start, end;
5093 enum draw_glyphs_face hl;
5094 int overlaps_p;
5095 {
5096 struct glyph_string *head, *tail;
5097 struct glyph_string *s;
5098 int last_x, area_width;
5099 int x_reached;
5100 int i, j;
5101
5102 /* Let's rather be paranoid than getting a SEGV. */
5103 end = min (end, row->used[area]);
5104 start = max (0, start);
5105 start = min (end, start);
5106
5107 /* Translate X to frame coordinates. Set last_x to the right
5108 end of the drawing area. */
5109 if (row->full_width_p)
5110 {
5111 /* X is relative to the left edge of W, without scroll bars
5112 or fringes. */
5113 struct frame *f = XFRAME (w->frame);
5114 int window_left_x = WINDOW_LEFT_MARGIN (w) * CANON_X_UNIT (f);
5115
5116 x += window_left_x;
5117 area_width = XFASTINT (w->width) * CANON_X_UNIT (f);
5118 last_x = window_left_x + area_width;
5119
5120 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
5121 {
5122 int width = FRAME_SCROLL_BAR_WIDTH (f) * CANON_X_UNIT (f);
5123 if (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (f))
5124 last_x += width;
5125 else
5126 x -= width;
5127 }
5128
5129 x += FRAME_INTERNAL_BORDER_WIDTH (f);
5130 last_x += FRAME_INTERNAL_BORDER_WIDTH (f);
5131 }
5132 else
5133 {
5134 x = WINDOW_AREA_TO_FRAME_PIXEL_X (w, area, x);
5135 area_width = window_box_width (w, area);
5136 last_x = WINDOW_AREA_TO_FRAME_PIXEL_X (w, area, area_width);
5137 }
5138
5139 /* Build a doubly-linked list of glyph_string structures between
5140 head and tail from what we have to draw. Note that the macro
5141 BUILD_GLYPH_STRINGS will modify its start parameter. That's
5142 the reason we use a separate variable `i'. */
5143 i = start;
5144 BUILD_GLYPH_STRINGS (w, row, area, i, end, head, tail, hl, x, last_x,
5145 overlaps_p);
5146 if (tail)
5147 x_reached = tail->x + tail->background_width;
5148 else
5149 x_reached = x;
5150
5151 /* If there are any glyphs with lbearing < 0 or rbearing > width in
5152 the row, redraw some glyphs in front or following the glyph
5153 strings built above. */
5154 if (head && !overlaps_p && row->contains_overlapping_glyphs_p)
5155 {
5156 int dummy_x = 0;
5157 struct glyph_string *h, *t;
5158
5159 /* Compute overhangs for all glyph strings. */
5160 for (s = head; s; s = s->next)
5161 x_compute_glyph_string_overhangs (s);
5162
5163 /* Prepend glyph strings for glyphs in front of the first glyph
5164 string that are overwritten because of the first glyph
5165 string's left overhang. The background of all strings
5166 prepended must be drawn because the first glyph string
5167 draws over it. */
5168 i = x_left_overwritten (head);
5169 if (i >= 0)
5170 {
5171 j = i;
5172 BUILD_GLYPH_STRINGS (w, row, area, j, start, h, t,
5173 DRAW_NORMAL_TEXT, dummy_x, last_x,
5174 overlaps_p);
5175 start = i;
5176 x_compute_overhangs_and_x (t, head->x, 1);
5177 x_prepend_glyph_string_lists (&head, &tail, h, t);
5178 }
5179
5180 /* Prepend glyph strings for glyphs in front of the first glyph
5181 string that overwrite that glyph string because of their
5182 right overhang. For these strings, only the foreground must
5183 be drawn, because it draws over the glyph string at `head'.
5184 The background must not be drawn because this would overwrite
5185 right overhangs of preceding glyphs for which no glyph
5186 strings exist. */
5187 i = x_left_overwriting (head);
5188 if (i >= 0)
5189 {
5190 BUILD_GLYPH_STRINGS (w, row, area, i, start, h, t,
5191 DRAW_NORMAL_TEXT, dummy_x, last_x,
5192 overlaps_p);
5193 for (s = h; s; s = s->next)
5194 s->background_filled_p = 1;
5195 x_compute_overhangs_and_x (t, head->x, 1);
5196 x_prepend_glyph_string_lists (&head, &tail, h, t);
5197 }
5198
5199 /* Append glyphs strings for glyphs following the last glyph
5200 string tail that are overwritten by tail. The background of
5201 these strings has to be drawn because tail's foreground draws
5202 over it. */
5203 i = x_right_overwritten (tail);
5204 if (i >= 0)
5205 {
5206 BUILD_GLYPH_STRINGS (w, row, area, end, i, h, t,
5207 DRAW_NORMAL_TEXT, x, last_x,
5208 overlaps_p);
5209 x_compute_overhangs_and_x (h, tail->x + tail->width, 0);
5210 x_append_glyph_string_lists (&head, &tail, h, t);
5211 }
5212
5213 /* Append glyph strings for glyphs following the last glyph
5214 string tail that overwrite tail. The foreground of such
5215 glyphs has to be drawn because it writes into the background
5216 of tail. The background must not be drawn because it could
5217 paint over the foreground of following glyphs. */
5218 i = x_right_overwriting (tail);
5219 if (i >= 0)
5220 {
5221 BUILD_GLYPH_STRINGS (w, row, area, end, i, h, t,
5222 DRAW_NORMAL_TEXT, x, last_x,
5223 overlaps_p);
5224 for (s = h; s; s = s->next)
5225 s->background_filled_p = 1;
5226 x_compute_overhangs_and_x (h, tail->x + tail->width, 0);
5227 x_append_glyph_string_lists (&head, &tail, h, t);
5228 }
5229 }
5230
5231 /* Draw all strings. */
5232 for (s = head; s; s = s->next)
5233 x_draw_glyph_string (s);
5234
5235 if (area == TEXT_AREA
5236 && !row->full_width_p
5237 /* When drawing overlapping rows, only the glyph strings'
5238 foreground is drawn, which doesn't erase a cursor
5239 completely. */
5240 && !overlaps_p)
5241 {
5242 int x0 = head ? head->x : x;
5243 int x1 = tail ? tail->x + tail->background_width : x;
5244
5245 x0 = FRAME_TO_WINDOW_PIXEL_X (w, x0);
5246 x1 = FRAME_TO_WINDOW_PIXEL_X (w, x1);
5247
5248 if (XFASTINT (w->left_margin_width) != 0)
5249 {
5250 int left_area_width = window_box_width (w, LEFT_MARGIN_AREA);
5251 x0 -= left_area_width;
5252 x1 -= left_area_width;
5253 }
5254
5255 notice_overwritten_cursor (w, area, x0, x1,
5256 row->y, MATRIX_ROW_BOTTOM_Y (row));
5257 }
5258
5259 /* Value is the x-position up to which drawn, relative to AREA of W.
5260 This doesn't include parts drawn because of overhangs. */
5261 x_reached = FRAME_TO_WINDOW_PIXEL_X (w, x_reached);
5262 if (!row->full_width_p)
5263 {
5264 if (area > LEFT_MARGIN_AREA && XFASTINT (w->left_margin_width) != 0)
5265 x_reached -= window_box_width (w, LEFT_MARGIN_AREA);
5266 if (area > TEXT_AREA)
5267 x_reached -= window_box_width (w, TEXT_AREA);
5268 }
5269
5270 return x_reached;
5271 }
5272
5273
5274 /* Fix the display of area AREA of overlapping row ROW in window W. */
5275
5276 static void
5277 x_fix_overlapping_area (w, row, area)
5278 struct window *w;
5279 struct glyph_row *row;
5280 enum glyph_row_area area;
5281 {
5282 int i, x;
5283
5284 BLOCK_INPUT;
5285
5286 if (area == LEFT_MARGIN_AREA)
5287 x = 0;
5288 else if (area == TEXT_AREA)
5289 x = row->x + window_box_width (w, LEFT_MARGIN_AREA);
5290 else
5291 x = (window_box_width (w, LEFT_MARGIN_AREA)
5292 + window_box_width (w, TEXT_AREA));
5293
5294 for (i = 0; i < row->used[area];)
5295 {
5296 if (row->glyphs[area][i].overlaps_vertically_p)
5297 {
5298 int start = i, start_x = x;
5299
5300 do
5301 {
5302 x += row->glyphs[area][i].pixel_width;
5303 ++i;
5304 }
5305 while (i < row->used[area]
5306 && row->glyphs[area][i].overlaps_vertically_p);
5307
5308 x_draw_glyphs (w, start_x, row, area, start, i,
5309 DRAW_NORMAL_TEXT, 1);
5310 }
5311 else
5312 {
5313 x += row->glyphs[area][i].pixel_width;
5314 ++i;
5315 }
5316 }
5317
5318 UNBLOCK_INPUT;
5319 }
5320
5321
5322 /* Output LEN glyphs starting at START at the nominal cursor position.
5323 Advance the nominal cursor over the text. The global variable
5324 updated_window contains the window being updated, updated_row is
5325 the glyph row being updated, and updated_area is the area of that
5326 row being updated. */
5327
5328 static void
5329 x_write_glyphs (start, len)
5330 struct glyph *start;
5331 int len;
5332 {
5333 int x, hpos;
5334
5335 xassert (updated_window && updated_row);
5336 BLOCK_INPUT;
5337
5338 /* Write glyphs. */
5339
5340 hpos = start - updated_row->glyphs[updated_area];
5341 x = x_draw_glyphs (updated_window, output_cursor.x,
5342 updated_row, updated_area,
5343 hpos, hpos + len,
5344 DRAW_NORMAL_TEXT, 0);
5345
5346 /* Invalidate old phys cursor if the glyph at its hpos is redrawn. */
5347 if (updated_area == TEXT_AREA
5348 && updated_window->phys_cursor_on_p
5349 && updated_window->phys_cursor.vpos == output_cursor.vpos
5350 && updated_window->phys_cursor.hpos >= hpos
5351 && updated_window->phys_cursor.hpos < hpos + len)
5352 updated_window->phys_cursor_on_p = 0;
5353
5354 UNBLOCK_INPUT;
5355
5356 /* Advance the output cursor. */
5357 output_cursor.hpos += len;
5358 output_cursor.x = x;
5359 }
5360
5361
5362 /* Insert LEN glyphs from START at the nominal cursor position. */
5363
5364 static void
5365 x_insert_glyphs (start, len)
5366 struct glyph *start;
5367 register int len;
5368 {
5369 struct frame *f;
5370 struct window *w;
5371 int line_height, shift_by_width, shifted_region_width;
5372 struct glyph_row *row;
5373 struct glyph *glyph;
5374 int frame_x, frame_y, hpos;
5375
5376 xassert (updated_window && updated_row);
5377 BLOCK_INPUT;
5378 w = updated_window;
5379 f = XFRAME (WINDOW_FRAME (w));
5380
5381 /* Get the height of the line we are in. */
5382 row = updated_row;
5383 line_height = row->height;
5384
5385 /* Get the width of the glyphs to insert. */
5386 shift_by_width = 0;
5387 for (glyph = start; glyph < start + len; ++glyph)
5388 shift_by_width += glyph->pixel_width;
5389
5390 /* Get the width of the region to shift right. */
5391 shifted_region_width = (window_box_width (w, updated_area)
5392 - output_cursor.x
5393 - shift_by_width);
5394
5395 /* Shift right. */
5396 frame_x = window_box_left (w, updated_area) + output_cursor.x;
5397 frame_y = WINDOW_TO_FRAME_PIXEL_Y (w, output_cursor.y);
5398 XCopyArea (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), FRAME_X_WINDOW (f),
5399 f->output_data.x->normal_gc,
5400 frame_x, frame_y,
5401 shifted_region_width, line_height,
5402 frame_x + shift_by_width, frame_y);
5403
5404 /* Write the glyphs. */
5405 hpos = start - row->glyphs[updated_area];
5406 x_draw_glyphs (w, output_cursor.x, row, updated_area, hpos, hpos + len,
5407 DRAW_NORMAL_TEXT, 0);
5408
5409 /* Advance the output cursor. */
5410 output_cursor.hpos += len;
5411 output_cursor.x += shift_by_width;
5412 UNBLOCK_INPUT;
5413 }
5414
5415
5416 /* Delete N glyphs at the nominal cursor position. Not implemented
5417 for X frames. */
5418
5419 static void
5420 x_delete_glyphs (n)
5421 register int n;
5422 {
5423 abort ();
5424 }
5425
5426
5427 /* Like XClearArea, but check that WIDTH and HEIGHT are reasonable.
5428 If they are <= 0, this is probably an error. */
5429
5430 void
5431 x_clear_area (dpy, window, x, y, width, height, exposures)
5432 Display *dpy;
5433 Window window;
5434 int x, y;
5435 int width, height;
5436 int exposures;
5437 {
5438 xassert (width > 0 && height > 0);
5439 XClearArea (dpy, window, x, y, width, height, exposures);
5440 }
5441
5442
5443 /* Erase the current text line from the nominal cursor position
5444 (inclusive) to pixel column TO_X (exclusive). The idea is that
5445 everything from TO_X onward is already erased.
5446
5447 TO_X is a pixel position relative to updated_area of
5448 updated_window. TO_X == -1 means clear to the end of this area. */
5449
5450 static void
5451 x_clear_end_of_line (to_x)
5452 int to_x;
5453 {
5454 struct frame *f;
5455 struct window *w = updated_window;
5456 int max_x, min_y, max_y;
5457 int from_x, from_y, to_y;
5458
5459 xassert (updated_window && updated_row);
5460 f = XFRAME (w->frame);
5461
5462 if (updated_row->full_width_p)
5463 {
5464 max_x = XFASTINT (w->width) * CANON_X_UNIT (f);
5465 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f)
5466 && !w->pseudo_window_p)
5467 max_x += FRAME_SCROLL_BAR_WIDTH (f) * CANON_X_UNIT (f);
5468 }
5469 else
5470 max_x = window_box_width (w, updated_area);
5471 max_y = window_text_bottom_y (w);
5472
5473 /* TO_X == 0 means don't do anything. TO_X < 0 means clear to end
5474 of window. For TO_X > 0, truncate to end of drawing area. */
5475 if (to_x == 0)
5476 return;
5477 else if (to_x < 0)
5478 to_x = max_x;
5479 else
5480 to_x = min (to_x, max_x);
5481
5482 to_y = min (max_y, output_cursor.y + updated_row->height);
5483
5484 /* Notice if the cursor will be cleared by this operation. */
5485 if (!updated_row->full_width_p)
5486 notice_overwritten_cursor (w, updated_area,
5487 output_cursor.x, -1,
5488 updated_row->y,
5489 MATRIX_ROW_BOTTOM_Y (updated_row));
5490
5491 from_x = output_cursor.x;
5492
5493 /* Translate to frame coordinates. */
5494 if (updated_row->full_width_p)
5495 {
5496 from_x = WINDOW_TO_FRAME_PIXEL_X (w, from_x);
5497 to_x = WINDOW_TO_FRAME_PIXEL_X (w, to_x);
5498 }
5499 else
5500 {
5501 from_x = WINDOW_AREA_TO_FRAME_PIXEL_X (w, updated_area, from_x);
5502 to_x = WINDOW_AREA_TO_FRAME_PIXEL_X (w, updated_area, to_x);
5503 }
5504
5505 min_y = WINDOW_DISPLAY_HEADER_LINE_HEIGHT (w);
5506 from_y = WINDOW_TO_FRAME_PIXEL_Y (w, max (min_y, output_cursor.y));
5507 to_y = WINDOW_TO_FRAME_PIXEL_Y (w, to_y);
5508
5509 /* Prevent inadvertently clearing to end of the X window. */
5510 if (to_x > from_x && to_y > from_y)
5511 {
5512 BLOCK_INPUT;
5513 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5514 from_x, from_y, to_x - from_x, to_y - from_y,
5515 False);
5516 UNBLOCK_INPUT;
5517 }
5518 }
5519
5520
5521 /* Clear entire frame. If updating_frame is non-null, clear that
5522 frame. Otherwise clear the selected frame. */
5523
5524 static void
5525 x_clear_frame ()
5526 {
5527 struct frame *f;
5528
5529 if (updating_frame)
5530 f = updating_frame;
5531 else
5532 f = SELECTED_FRAME ();
5533
5534 /* Clearing the frame will erase any cursor, so mark them all as no
5535 longer visible. */
5536 mark_window_cursors_off (XWINDOW (FRAME_ROOT_WINDOW (f)));
5537 output_cursor.hpos = output_cursor.vpos = 0;
5538 output_cursor.x = -1;
5539
5540 /* We don't set the output cursor here because there will always
5541 follow an explicit cursor_to. */
5542 BLOCK_INPUT;
5543 XClearWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
5544
5545 /* We have to clear the scroll bars, too. If we have changed
5546 colors or something like that, then they should be notified. */
5547 x_scroll_bar_clear (f);
5548
5549 XFlush (FRAME_X_DISPLAY (f));
5550 UNBLOCK_INPUT;
5551 }
5552
5553
5554 \f
5555 /* Invert the middle quarter of the frame for .15 sec. */
5556
5557 /* We use the select system call to do the waiting, so we have to make
5558 sure it's available. If it isn't, we just won't do visual bells. */
5559
5560 #if defined (HAVE_TIMEVAL) && defined (HAVE_SELECT)
5561
5562
5563 /* Subtract the `struct timeval' values X and Y, storing the result in
5564 *RESULT. Return 1 if the difference is negative, otherwise 0. */
5565
5566 static int
5567 timeval_subtract (result, x, y)
5568 struct timeval *result, x, y;
5569 {
5570 /* Perform the carry for the later subtraction by updating y. This
5571 is safer because on some systems the tv_sec member is unsigned. */
5572 if (x.tv_usec < y.tv_usec)
5573 {
5574 int nsec = (y.tv_usec - x.tv_usec) / 1000000 + 1;
5575 y.tv_usec -= 1000000 * nsec;
5576 y.tv_sec += nsec;
5577 }
5578
5579 if (x.tv_usec - y.tv_usec > 1000000)
5580 {
5581 int nsec = (y.tv_usec - x.tv_usec) / 1000000;
5582 y.tv_usec += 1000000 * nsec;
5583 y.tv_sec -= nsec;
5584 }
5585
5586 /* Compute the time remaining to wait. tv_usec is certainly
5587 positive. */
5588 result->tv_sec = x.tv_sec - y.tv_sec;
5589 result->tv_usec = x.tv_usec - y.tv_usec;
5590
5591 /* Return indication of whether the result should be considered
5592 negative. */
5593 return x.tv_sec < y.tv_sec;
5594 }
5595
5596 void
5597 XTflash (f)
5598 struct frame *f;
5599 {
5600 BLOCK_INPUT;
5601
5602 {
5603 GC gc;
5604
5605 /* Create a GC that will use the GXxor function to flip foreground
5606 pixels into background pixels. */
5607 {
5608 XGCValues values;
5609
5610 values.function = GXxor;
5611 values.foreground = (f->output_data.x->foreground_pixel
5612 ^ f->output_data.x->background_pixel);
5613
5614 gc = XCreateGC (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5615 GCFunction | GCForeground, &values);
5616 }
5617
5618 {
5619 /* Get the height not including a menu bar widget. */
5620 int height = CHAR_TO_PIXEL_HEIGHT (f, FRAME_HEIGHT (f));
5621 /* Height of each line to flash. */
5622 int flash_height = FRAME_LINE_HEIGHT (f);
5623 /* These will be the left and right margins of the rectangles. */
5624 int flash_left = FRAME_INTERNAL_BORDER_WIDTH (f);
5625 int flash_right = PIXEL_WIDTH (f) - FRAME_INTERNAL_BORDER_WIDTH (f);
5626
5627 int width;
5628
5629 /* Don't flash the area between a scroll bar and the frame
5630 edge it is next to. */
5631 switch (FRAME_VERTICAL_SCROLL_BAR_TYPE (f))
5632 {
5633 case vertical_scroll_bar_left:
5634 flash_left += VERTICAL_SCROLL_BAR_WIDTH_TRIM;
5635 break;
5636
5637 case vertical_scroll_bar_right:
5638 flash_right -= VERTICAL_SCROLL_BAR_WIDTH_TRIM;
5639 break;
5640
5641 default:
5642 break;
5643 }
5644
5645 width = flash_right - flash_left;
5646
5647 /* If window is tall, flash top and bottom line. */
5648 if (height > 3 * FRAME_LINE_HEIGHT (f))
5649 {
5650 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
5651 flash_left,
5652 (FRAME_INTERNAL_BORDER_WIDTH (f)
5653 + FRAME_TOOL_BAR_LINES (f) * CANON_Y_UNIT (f)),
5654 width, flash_height);
5655 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
5656 flash_left,
5657 (height - flash_height
5658 - FRAME_INTERNAL_BORDER_WIDTH (f)),
5659 width, flash_height);
5660 }
5661 else
5662 /* If it is short, flash it all. */
5663 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
5664 flash_left, FRAME_INTERNAL_BORDER_WIDTH (f),
5665 width, height - 2 * FRAME_INTERNAL_BORDER_WIDTH (f));
5666
5667 x_flush (f);
5668
5669 {
5670 struct timeval wakeup;
5671
5672 EMACS_GET_TIME (wakeup);
5673
5674 /* Compute time to wait until, propagating carry from usecs. */
5675 wakeup.tv_usec += 150000;
5676 wakeup.tv_sec += (wakeup.tv_usec / 1000000);
5677 wakeup.tv_usec %= 1000000;
5678
5679 /* Keep waiting until past the time wakeup or any input gets
5680 available. */
5681 while (! detect_input_pending ())
5682 {
5683 struct timeval current;
5684 struct timeval timeout;
5685
5686 EMACS_GET_TIME (current);
5687
5688 /* Break if result would be negative. */
5689 if (timeval_subtract (&current, wakeup, current))
5690 break;
5691
5692 /* How long `select' should wait. */
5693 timeout.tv_sec = 0;
5694 timeout.tv_usec = 10000;
5695
5696 /* Try to wait that long--but we might wake up sooner. */
5697 select (0, NULL, NULL, NULL, &timeout);
5698 }
5699 }
5700
5701 /* If window is tall, flash top and bottom line. */
5702 if (height > 3 * FRAME_LINE_HEIGHT (f))
5703 {
5704 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
5705 flash_left,
5706 (FRAME_INTERNAL_BORDER_WIDTH (f)
5707 + FRAME_TOOL_BAR_LINES (f) * CANON_Y_UNIT (f)),
5708 width, flash_height);
5709 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
5710 flash_left,
5711 (height - flash_height
5712 - FRAME_INTERNAL_BORDER_WIDTH (f)),
5713 width, flash_height);
5714 }
5715 else
5716 /* If it is short, flash it all. */
5717 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
5718 flash_left, FRAME_INTERNAL_BORDER_WIDTH (f),
5719 width, height - 2 * FRAME_INTERNAL_BORDER_WIDTH (f));
5720
5721 XFreeGC (FRAME_X_DISPLAY (f), gc);
5722 x_flush (f);
5723 }
5724 }
5725
5726 UNBLOCK_INPUT;
5727 }
5728
5729 #endif /* defined (HAVE_TIMEVAL) && defined (HAVE_SELECT) */
5730
5731
5732 /* Make audible bell. */
5733
5734 void
5735 XTring_bell ()
5736 {
5737 struct frame *f = SELECTED_FRAME ();
5738
5739 if (FRAME_X_DISPLAY (f))
5740 {
5741 #if defined (HAVE_TIMEVAL) && defined (HAVE_SELECT)
5742 if (visible_bell)
5743 XTflash (f);
5744 else
5745 #endif
5746 {
5747 BLOCK_INPUT;
5748 XBell (FRAME_X_DISPLAY (f), 0);
5749 XFlush (FRAME_X_DISPLAY (f));
5750 UNBLOCK_INPUT;
5751 }
5752 }
5753 }
5754
5755 \f
5756 /* Specify how many text lines, from the top of the window,
5757 should be affected by insert-lines and delete-lines operations.
5758 This, and those operations, are used only within an update
5759 that is bounded by calls to x_update_begin and x_update_end. */
5760
5761 static void
5762 XTset_terminal_window (n)
5763 register int n;
5764 {
5765 /* This function intentionally left blank. */
5766 }
5767
5768
5769 \f
5770 /***********************************************************************
5771 Line Dance
5772 ***********************************************************************/
5773
5774 /* Perform an insert-lines or delete-lines operation, inserting N
5775 lines or deleting -N lines at vertical position VPOS. */
5776
5777 static void
5778 x_ins_del_lines (vpos, n)
5779 int vpos, n;
5780 {
5781 abort ();
5782 }
5783
5784
5785 /* Scroll part of the display as described by RUN. */
5786
5787 static void
5788 x_scroll_run (w, run)
5789 struct window *w;
5790 struct run *run;
5791 {
5792 struct frame *f = XFRAME (w->frame);
5793 int x, y, width, height, from_y, to_y, bottom_y;
5794
5795 /* Get frame-relative bounding box of the text display area of W,
5796 without mode lines. Include in this box the left and right
5797 fringe of W. */
5798 window_box (w, -1, &x, &y, &width, &height);
5799 width += FRAME_X_FRINGE_WIDTH (f);
5800 x -= FRAME_X_LEFT_FRINGE_WIDTH (f);
5801
5802 from_y = WINDOW_TO_FRAME_PIXEL_Y (w, run->current_y);
5803 to_y = WINDOW_TO_FRAME_PIXEL_Y (w, run->desired_y);
5804 bottom_y = y + height;
5805
5806 if (to_y < from_y)
5807 {
5808 /* Scrolling up. Make sure we don't copy part of the mode
5809 line at the bottom. */
5810 if (from_y + run->height > bottom_y)
5811 height = bottom_y - from_y;
5812 else
5813 height = run->height;
5814 }
5815 else
5816 {
5817 /* Scolling down. Make sure we don't copy over the mode line.
5818 at the bottom. */
5819 if (to_y + run->height > bottom_y)
5820 height = bottom_y - to_y;
5821 else
5822 height = run->height;
5823 }
5824
5825 BLOCK_INPUT;
5826
5827 /* Cursor off. Will be switched on again in x_update_window_end. */
5828 updated_window = w;
5829 x_clear_cursor (w);
5830
5831 XCopyArea (FRAME_X_DISPLAY (f),
5832 FRAME_X_WINDOW (f), FRAME_X_WINDOW (f),
5833 f->output_data.x->normal_gc,
5834 x, from_y,
5835 width, height,
5836 x, to_y);
5837
5838 UNBLOCK_INPUT;
5839 }
5840
5841
5842 \f
5843 /***********************************************************************
5844 Exposure Events
5845 ***********************************************************************/
5846
5847 /* Redisplay an exposed area of frame F. X and Y are the upper-left
5848 corner of the exposed rectangle. W and H are width and height of
5849 the exposed area. All are pixel values. W or H zero means redraw
5850 the entire frame. */
5851
5852 static void
5853 expose_frame (f, x, y, w, h)
5854 struct frame *f;
5855 int x, y, w, h;
5856 {
5857 XRectangle r;
5858 int mouse_face_overwritten_p = 0;
5859
5860 TRACE ((stderr, "expose_frame "));
5861
5862 /* No need to redraw if frame will be redrawn soon. */
5863 if (FRAME_GARBAGED_P (f))
5864 {
5865 TRACE ((stderr, " garbaged\n"));
5866 return;
5867 }
5868
5869 /* If basic faces haven't been realized yet, there is no point in
5870 trying to redraw anything. This can happen when we get an expose
5871 event while Emacs is starting, e.g. by moving another window. */
5872 if (FRAME_FACE_CACHE (f) == NULL
5873 || FRAME_FACE_CACHE (f)->used < BASIC_FACE_ID_SENTINEL)
5874 {
5875 TRACE ((stderr, " no faces\n"));
5876 return;
5877 }
5878
5879 if (w == 0 || h == 0)
5880 {
5881 r.x = r.y = 0;
5882 r.width = CANON_X_UNIT (f) * f->width;
5883 r.height = CANON_Y_UNIT (f) * f->height;
5884 }
5885 else
5886 {
5887 r.x = x;
5888 r.y = y;
5889 r.width = w;
5890 r.height = h;
5891 }
5892
5893 TRACE ((stderr, "(%d, %d, %d, %d)\n", r.x, r.y, r.width, r.height));
5894 mouse_face_overwritten_p = expose_window_tree (XWINDOW (f->root_window), &r);
5895
5896 if (WINDOWP (f->tool_bar_window))
5897 mouse_face_overwritten_p
5898 |= expose_window (XWINDOW (f->tool_bar_window), &r);
5899
5900 #ifndef USE_X_TOOLKIT
5901 if (WINDOWP (f->menu_bar_window))
5902 mouse_face_overwritten_p
5903 |= expose_window (XWINDOW (f->menu_bar_window), &r);
5904 #endif /* not USE_X_TOOLKIT */
5905
5906 /* Some window managers support a focus-follows-mouse style with
5907 delayed raising of frames. Imagine a partially obscured frame,
5908 and moving the mouse into partially obscured mouse-face on that
5909 frame. The visible part of the mouse-face will be highlighted,
5910 then the WM raises the obscured frame. With at least one WM, KDE
5911 2.1, Emacs is not getting any event for the raising of the frame
5912 (even tried with SubstructureRedirectMask), only Expose events.
5913 These expose events will draw text normally, i.e. not
5914 highlighted. Which means we must redo the highlight here.
5915 Subsume it under ``we love X''. --gerd 2001-08-15 */
5916 if (mouse_face_overwritten_p && !FRAME_GARBAGED_P (f))
5917 {
5918 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
5919 if (f == dpyinfo->mouse_face_mouse_frame)
5920 {
5921 int x = dpyinfo->mouse_face_mouse_x;
5922 int y = dpyinfo->mouse_face_mouse_y;
5923 clear_mouse_face (dpyinfo);
5924 note_mouse_highlight (f, x, y);
5925 }
5926 }
5927 }
5928
5929
5930 /* Redraw (parts) of all windows in the window tree rooted at W that
5931 intersect R. R contains frame pixel coordinates. Value is
5932 non-zero if the exposure overwrites mouse-face. */
5933
5934 static int
5935 expose_window_tree (w, r)
5936 struct window *w;
5937 XRectangle *r;
5938 {
5939 struct frame *f = XFRAME (w->frame);
5940 int mouse_face_overwritten_p = 0;
5941
5942 while (w && !FRAME_GARBAGED_P (f))
5943 {
5944 if (!NILP (w->hchild))
5945 mouse_face_overwritten_p
5946 |= expose_window_tree (XWINDOW (w->hchild), r);
5947 else if (!NILP (w->vchild))
5948 mouse_face_overwritten_p
5949 |= expose_window_tree (XWINDOW (w->vchild), r);
5950 else
5951 mouse_face_overwritten_p |= expose_window (w, r);
5952
5953 w = NILP (w->next) ? NULL : XWINDOW (w->next);
5954 }
5955
5956 return mouse_face_overwritten_p;
5957 }
5958
5959
5960 /* Redraw the part of glyph row area AREA of glyph row ROW on window W
5961 which intersects rectangle R. R is in window-relative coordinates. */
5962
5963 static void
5964 expose_area (w, row, r, area)
5965 struct window *w;
5966 struct glyph_row *row;
5967 XRectangle *r;
5968 enum glyph_row_area area;
5969 {
5970 struct glyph *first = row->glyphs[area];
5971 struct glyph *end = row->glyphs[area] + row->used[area];
5972 struct glyph *last;
5973 int first_x, start_x, x;
5974
5975 if (area == TEXT_AREA && row->fill_line_p)
5976 /* If row extends face to end of line write the whole line. */
5977 x_draw_glyphs (w, 0, row, area, 0, row->used[area],
5978 DRAW_NORMAL_TEXT, 0);
5979 else
5980 {
5981 /* Set START_X to the window-relative start position for drawing glyphs of
5982 AREA. The first glyph of the text area can be partially visible.
5983 The first glyphs of other areas cannot. */
5984 if (area == LEFT_MARGIN_AREA)
5985 start_x = 0;
5986 else if (area == TEXT_AREA)
5987 start_x = row->x + window_box_width (w, LEFT_MARGIN_AREA);
5988 else
5989 start_x = (window_box_width (w, LEFT_MARGIN_AREA)
5990 + window_box_width (w, TEXT_AREA));
5991 x = start_x;
5992
5993 /* Find the first glyph that must be redrawn. */
5994 while (first < end
5995 && x + first->pixel_width < r->x)
5996 {
5997 x += first->pixel_width;
5998 ++first;
5999 }
6000
6001 /* Find the last one. */
6002 last = first;
6003 first_x = x;
6004 while (last < end
6005 && x < r->x + r->width)
6006 {
6007 x += last->pixel_width;
6008 ++last;
6009 }
6010
6011 /* Repaint. */
6012 if (last > first)
6013 x_draw_glyphs (w, first_x - start_x, row, area,
6014 first - row->glyphs[area],
6015 last - row->glyphs[area],
6016 DRAW_NORMAL_TEXT, 0);
6017 }
6018 }
6019
6020
6021 /* Redraw the parts of the glyph row ROW on window W intersecting
6022 rectangle R. R is in window-relative coordinates. Value is
6023 non-zero if mouse-face was overwritten. */
6024
6025 static int
6026 expose_line (w, row, r)
6027 struct window *w;
6028 struct glyph_row *row;
6029 XRectangle *r;
6030 {
6031 xassert (row->enabled_p);
6032
6033 if (row->mode_line_p || w->pseudo_window_p)
6034 x_draw_glyphs (w, 0, row, TEXT_AREA, 0, row->used[TEXT_AREA],
6035 DRAW_NORMAL_TEXT, 0);
6036 else
6037 {
6038 if (row->used[LEFT_MARGIN_AREA])
6039 expose_area (w, row, r, LEFT_MARGIN_AREA);
6040 if (row->used[TEXT_AREA])
6041 expose_area (w, row, r, TEXT_AREA);
6042 if (row->used[RIGHT_MARGIN_AREA])
6043 expose_area (w, row, r, RIGHT_MARGIN_AREA);
6044 x_draw_row_fringe_bitmaps (w, row);
6045 }
6046
6047 return row->mouse_face_p;
6048 }
6049
6050
6051 /* Return non-zero if W's cursor intersects rectangle R. */
6052
6053 static int
6054 x_phys_cursor_in_rect_p (w, r)
6055 struct window *w;
6056 XRectangle *r;
6057 {
6058 XRectangle cr, result;
6059 struct glyph *cursor_glyph;
6060
6061 cursor_glyph = get_phys_cursor_glyph (w);
6062 if (cursor_glyph)
6063 {
6064 cr.x = w->phys_cursor.x;
6065 cr.y = w->phys_cursor.y;
6066 cr.width = cursor_glyph->pixel_width;
6067 cr.height = w->phys_cursor_height;
6068 return x_intersect_rectangles (&cr, r, &result);
6069 }
6070 else
6071 return 0;
6072 }
6073
6074
6075 /* Redraw those parts of glyphs rows during expose event handling that
6076 overlap other rows. Redrawing of an exposed line writes over parts
6077 of lines overlapping that exposed line; this function fixes that.
6078
6079 W is the window being exposed. FIRST_OVERLAPPING_ROW is the first
6080 row in W's current matrix that is exposed and overlaps other rows.
6081 LAST_OVERLAPPING_ROW is the last such row. */
6082
6083 static void
6084 expose_overlaps (w, first_overlapping_row, last_overlapping_row)
6085 struct window *w;
6086 struct glyph_row *first_overlapping_row;
6087 struct glyph_row *last_overlapping_row;
6088 {
6089 struct glyph_row *row;
6090
6091 for (row = first_overlapping_row; row <= last_overlapping_row; ++row)
6092 if (row->overlapping_p)
6093 {
6094 xassert (row->enabled_p && !row->mode_line_p);
6095
6096 if (row->used[LEFT_MARGIN_AREA])
6097 x_fix_overlapping_area (w, row, LEFT_MARGIN_AREA);
6098
6099 if (row->used[TEXT_AREA])
6100 x_fix_overlapping_area (w, row, TEXT_AREA);
6101
6102 if (row->used[RIGHT_MARGIN_AREA])
6103 x_fix_overlapping_area (w, row, RIGHT_MARGIN_AREA);
6104 }
6105 }
6106
6107
6108 /* Redraw the part of window W intersection rectangle FR. Pixel
6109 coordinates in FR are frame-relative. Call this function with
6110 input blocked. Value is non-zero if the exposure overwrites
6111 mouse-face. */
6112
6113 static int
6114 expose_window (w, fr)
6115 struct window *w;
6116 XRectangle *fr;
6117 {
6118 struct frame *f = XFRAME (w->frame);
6119 XRectangle wr, r;
6120 int mouse_face_overwritten_p = 0;
6121
6122 /* If window is not yet fully initialized, do nothing. This can
6123 happen when toolkit scroll bars are used and a window is split.
6124 Reconfiguring the scroll bar will generate an expose for a newly
6125 created window. */
6126 if (w->current_matrix == NULL)
6127 return 0;
6128
6129 /* When we're currently updating the window, display and current
6130 matrix usually don't agree. Arrange for a thorough display
6131 later. */
6132 if (w == updated_window)
6133 {
6134 SET_FRAME_GARBAGED (f);
6135 return 0;
6136 }
6137
6138 /* Frame-relative pixel rectangle of W. */
6139 wr.x = XFASTINT (w->left) * CANON_X_UNIT (f);
6140 wr.y = XFASTINT (w->top) * CANON_Y_UNIT (f);
6141 wr.width = XFASTINT (w->width) * CANON_X_UNIT (f);
6142 wr.height = XFASTINT (w->height) * CANON_Y_UNIT (f);
6143
6144 if (x_intersect_rectangles (fr, &wr, &r))
6145 {
6146 int yb = window_text_bottom_y (w);
6147 struct glyph_row *row;
6148 int cursor_cleared_p;
6149 struct glyph_row *first_overlapping_row, *last_overlapping_row;
6150
6151 TRACE ((stderr, "expose_window (%d, %d, %d, %d)\n",
6152 r.x, r.y, r.width, r.height));
6153
6154 /* Convert to window coordinates. */
6155 r.x = FRAME_TO_WINDOW_PIXEL_X (w, r.x);
6156 r.y = FRAME_TO_WINDOW_PIXEL_Y (w, r.y);
6157
6158 /* Turn off the cursor. */
6159 if (!w->pseudo_window_p
6160 && x_phys_cursor_in_rect_p (w, &r))
6161 {
6162 x_clear_cursor (w);
6163 cursor_cleared_p = 1;
6164 }
6165 else
6166 cursor_cleared_p = 0;
6167
6168 /* Update lines intersecting rectangle R. */
6169 first_overlapping_row = last_overlapping_row = NULL;
6170 for (row = w->current_matrix->rows;
6171 row->enabled_p;
6172 ++row)
6173 {
6174 int y0 = row->y;
6175 int y1 = MATRIX_ROW_BOTTOM_Y (row);
6176
6177 if ((y0 >= r.y && y0 < r.y + r.height)
6178 || (y1 > r.y && y1 < r.y + r.height)
6179 || (r.y >= y0 && r.y < y1)
6180 || (r.y + r.height > y0 && r.y + r.height < y1))
6181 {
6182 if (row->overlapping_p)
6183 {
6184 if (first_overlapping_row == NULL)
6185 first_overlapping_row = row;
6186 last_overlapping_row = row;
6187 }
6188
6189 if (expose_line (w, row, &r))
6190 mouse_face_overwritten_p = 1;
6191 }
6192
6193 if (y1 >= yb)
6194 break;
6195 }
6196
6197 /* Display the mode line if there is one. */
6198 if (WINDOW_WANTS_MODELINE_P (w)
6199 && (row = MATRIX_MODE_LINE_ROW (w->current_matrix),
6200 row->enabled_p)
6201 && row->y < r.y + r.height)
6202 {
6203 if (expose_line (w, row, &r))
6204 mouse_face_overwritten_p = 1;
6205 }
6206
6207 if (!w->pseudo_window_p)
6208 {
6209 /* Fix the display of overlapping rows. */
6210 if (first_overlapping_row)
6211 expose_overlaps (w, first_overlapping_row, last_overlapping_row);
6212
6213 /* Draw border between windows. */
6214 x_draw_vertical_border (w);
6215
6216 /* Turn the cursor on again. */
6217 if (cursor_cleared_p)
6218 x_update_window_cursor (w, 1);
6219 }
6220 }
6221
6222 return mouse_face_overwritten_p;
6223 }
6224
6225
6226 /* Determine the intersection of two rectangles R1 and R2. Return
6227 the intersection in *RESULT. Value is non-zero if RESULT is not
6228 empty. */
6229
6230 static int
6231 x_intersect_rectangles (r1, r2, result)
6232 XRectangle *r1, *r2, *result;
6233 {
6234 XRectangle *left, *right;
6235 XRectangle *upper, *lower;
6236 int intersection_p = 0;
6237
6238 /* Rearrange so that R1 is the left-most rectangle. */
6239 if (r1->x < r2->x)
6240 left = r1, right = r2;
6241 else
6242 left = r2, right = r1;
6243
6244 /* X0 of the intersection is right.x0, if this is inside R1,
6245 otherwise there is no intersection. */
6246 if (right->x <= left->x + left->width)
6247 {
6248 result->x = right->x;
6249
6250 /* The right end of the intersection is the minimum of the
6251 the right ends of left and right. */
6252 result->width = (min (left->x + left->width, right->x + right->width)
6253 - result->x);
6254
6255 /* Same game for Y. */
6256 if (r1->y < r2->y)
6257 upper = r1, lower = r2;
6258 else
6259 upper = r2, lower = r1;
6260
6261 /* The upper end of the intersection is lower.y0, if this is inside
6262 of upper. Otherwise, there is no intersection. */
6263 if (lower->y <= upper->y + upper->height)
6264 {
6265 result->y = lower->y;
6266
6267 /* The lower end of the intersection is the minimum of the lower
6268 ends of upper and lower. */
6269 result->height = (min (lower->y + lower->height,
6270 upper->y + upper->height)
6271 - result->y);
6272 intersection_p = 1;
6273 }
6274 }
6275
6276 return intersection_p;
6277 }
6278
6279
6280
6281
6282 \f
6283 static void
6284 frame_highlight (f)
6285 struct frame *f;
6286 {
6287 /* We used to only do this if Vx_no_window_manager was non-nil, but
6288 the ICCCM (section 4.1.6) says that the window's border pixmap
6289 and border pixel are window attributes which are "private to the
6290 client", so we can always change it to whatever we want. */
6291 BLOCK_INPUT;
6292 XSetWindowBorder (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
6293 f->output_data.x->border_pixel);
6294 UNBLOCK_INPUT;
6295 x_update_cursor (f, 1);
6296 }
6297
6298 static void
6299 frame_unhighlight (f)
6300 struct frame *f;
6301 {
6302 /* We used to only do this if Vx_no_window_manager was non-nil, but
6303 the ICCCM (section 4.1.6) says that the window's border pixmap
6304 and border pixel are window attributes which are "private to the
6305 client", so we can always change it to whatever we want. */
6306 BLOCK_INPUT;
6307 XSetWindowBorderPixmap (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
6308 f->output_data.x->border_tile);
6309 UNBLOCK_INPUT;
6310 x_update_cursor (f, 1);
6311 }
6312
6313 /* The focus has changed. Update the frames as necessary to reflect
6314 the new situation. Note that we can't change the selected frame
6315 here, because the Lisp code we are interrupting might become confused.
6316 Each event gets marked with the frame in which it occurred, so the
6317 Lisp code can tell when the switch took place by examining the events. */
6318
6319 static void
6320 x_new_focus_frame (dpyinfo, frame)
6321 struct x_display_info *dpyinfo;
6322 struct frame *frame;
6323 {
6324 struct frame *old_focus = dpyinfo->x_focus_frame;
6325
6326 if (frame != dpyinfo->x_focus_frame)
6327 {
6328 /* Set this before calling other routines, so that they see
6329 the correct value of x_focus_frame. */
6330 dpyinfo->x_focus_frame = frame;
6331
6332 if (old_focus && old_focus->auto_lower)
6333 x_lower_frame (old_focus);
6334
6335 #if 0
6336 selected_frame = frame;
6337 XSETFRAME (XWINDOW (selected_frame->selected_window)->frame,
6338 selected_frame);
6339 Fselect_window (selected_frame->selected_window);
6340 choose_minibuf_frame ();
6341 #endif /* ! 0 */
6342
6343 if (dpyinfo->x_focus_frame && dpyinfo->x_focus_frame->auto_raise)
6344 pending_autoraise_frame = dpyinfo->x_focus_frame;
6345 else
6346 pending_autoraise_frame = 0;
6347 }
6348
6349 x_frame_rehighlight (dpyinfo);
6350 }
6351
6352 /* Handle FocusIn and FocusOut state changes for FRAME.
6353 If FRAME has focus and there exists more than one frame, puts
6354 an FOCUS_IN_EVENT into BUFP.
6355 Returns number of events inserted into BUFP. */
6356
6357 static int
6358 x_focus_changed (type, state, dpyinfo, frame, bufp, numchars)
6359 int type;
6360 int state;
6361 struct x_display_info *dpyinfo;
6362 struct frame *frame;
6363 struct input_event *bufp;
6364 int numchars;
6365 {
6366 int nr_events = 0;
6367
6368 if (type == FocusIn)
6369 {
6370 if (dpyinfo->x_focus_event_frame != frame)
6371 {
6372 x_new_focus_frame (dpyinfo, frame);
6373 dpyinfo->x_focus_event_frame = frame;
6374
6375 /* Don't stop displaying the initial startup message
6376 for a switch-frame event we don't need. */
6377 if (numchars > 0
6378 && GC_NILP (Vterminal_frame)
6379 && GC_CONSP (Vframe_list)
6380 && !GC_NILP (XCDR (Vframe_list)))
6381 {
6382 bufp->kind = FOCUS_IN_EVENT;
6383 XSETFRAME (bufp->frame_or_window, frame);
6384 bufp->arg = Qnil;
6385 ++bufp;
6386 numchars--;
6387 ++nr_events;
6388 }
6389 }
6390
6391 frame->output_data.x->focus_state |= state;
6392
6393 #ifdef HAVE_X_I18N
6394 if (FRAME_XIC (frame))
6395 XSetICFocus (FRAME_XIC (frame));
6396 #endif
6397 }
6398 else if (type == FocusOut)
6399 {
6400 frame->output_data.x->focus_state &= ~state;
6401
6402 if (dpyinfo->x_focus_event_frame == frame)
6403 {
6404 dpyinfo->x_focus_event_frame = 0;
6405 x_new_focus_frame (dpyinfo, 0);
6406 }
6407
6408 #ifdef HAVE_X_I18N
6409 if (FRAME_XIC (frame))
6410 XUnsetICFocus (FRAME_XIC (frame));
6411 #endif
6412 }
6413
6414 return nr_events;
6415 }
6416
6417 /* The focus may have changed. Figure out if it is a real focus change,
6418 by checking both FocusIn/Out and Enter/LeaveNotify events.
6419
6420 Returns number of events inserted into BUFP. */
6421
6422 static int
6423 x_detect_focus_change (dpyinfo, event, bufp, numchars)
6424 struct x_display_info *dpyinfo;
6425 XEvent *event;
6426 struct input_event *bufp;
6427 int numchars;
6428 {
6429 struct frame *frame;
6430 int nr_events = 0;
6431
6432 frame = x_top_window_to_frame (dpyinfo, event->xany.window);
6433 if (! frame) return nr_events;
6434
6435 switch (event->type)
6436 {
6437 case EnterNotify:
6438 case LeaveNotify:
6439 if (event->xcrossing.detail != NotifyInferior
6440 && event->xcrossing.focus
6441 && ! (frame->output_data.x->focus_state & FOCUS_EXPLICIT))
6442 nr_events = x_focus_changed ((event->type == EnterNotify
6443 ? FocusIn : FocusOut),
6444 FOCUS_IMPLICIT,
6445 dpyinfo,
6446 frame,
6447 bufp,
6448 numchars);
6449 break;
6450
6451 case FocusIn:
6452 case FocusOut:
6453 nr_events = x_focus_changed (event->type,
6454 (event->xfocus.detail == NotifyPointer
6455 ? FOCUS_IMPLICIT : FOCUS_EXPLICIT),
6456 dpyinfo,
6457 frame,
6458 bufp,
6459 numchars);
6460 break;
6461 }
6462
6463 return nr_events;
6464 }
6465
6466
6467 /* Handle an event saying the mouse has moved out of an Emacs frame. */
6468
6469 void
6470 x_mouse_leave (dpyinfo)
6471 struct x_display_info *dpyinfo;
6472 {
6473 x_new_focus_frame (dpyinfo, dpyinfo->x_focus_event_frame);
6474 }
6475
6476 /* The focus has changed, or we have redirected a frame's focus to
6477 another frame (this happens when a frame uses a surrogate
6478 mini-buffer frame). Shift the highlight as appropriate.
6479
6480 The FRAME argument doesn't necessarily have anything to do with which
6481 frame is being highlighted or un-highlighted; we only use it to find
6482 the appropriate X display info. */
6483
6484 static void
6485 XTframe_rehighlight (frame)
6486 struct frame *frame;
6487 {
6488 x_frame_rehighlight (FRAME_X_DISPLAY_INFO (frame));
6489 }
6490
6491 static void
6492 x_frame_rehighlight (dpyinfo)
6493 struct x_display_info *dpyinfo;
6494 {
6495 struct frame *old_highlight = dpyinfo->x_highlight_frame;
6496
6497 if (dpyinfo->x_focus_frame)
6498 {
6499 dpyinfo->x_highlight_frame
6500 = ((GC_FRAMEP (FRAME_FOCUS_FRAME (dpyinfo->x_focus_frame)))
6501 ? XFRAME (FRAME_FOCUS_FRAME (dpyinfo->x_focus_frame))
6502 : dpyinfo->x_focus_frame);
6503 if (! FRAME_LIVE_P (dpyinfo->x_highlight_frame))
6504 {
6505 FRAME_FOCUS_FRAME (dpyinfo->x_focus_frame) = Qnil;
6506 dpyinfo->x_highlight_frame = dpyinfo->x_focus_frame;
6507 }
6508 }
6509 else
6510 dpyinfo->x_highlight_frame = 0;
6511
6512 if (dpyinfo->x_highlight_frame != old_highlight)
6513 {
6514 if (old_highlight)
6515 frame_unhighlight (old_highlight);
6516 if (dpyinfo->x_highlight_frame)
6517 frame_highlight (dpyinfo->x_highlight_frame);
6518 }
6519 }
6520
6521
6522 \f
6523 /* Keyboard processing - modifier keys, vendor-specific keysyms, etc. */
6524
6525 /* Initialize mode_switch_bit and modifier_meaning. */
6526 static void
6527 x_find_modifier_meanings (dpyinfo)
6528 struct x_display_info *dpyinfo;
6529 {
6530 int min_code, max_code;
6531 KeySym *syms;
6532 int syms_per_code;
6533 XModifierKeymap *mods;
6534
6535 dpyinfo->meta_mod_mask = 0;
6536 dpyinfo->shift_lock_mask = 0;
6537 dpyinfo->alt_mod_mask = 0;
6538 dpyinfo->super_mod_mask = 0;
6539 dpyinfo->hyper_mod_mask = 0;
6540
6541 #ifdef HAVE_X11R4
6542 XDisplayKeycodes (dpyinfo->display, &min_code, &max_code);
6543 #else
6544 min_code = dpyinfo->display->min_keycode;
6545 max_code = dpyinfo->display->max_keycode;
6546 #endif
6547
6548 syms = XGetKeyboardMapping (dpyinfo->display,
6549 min_code, max_code - min_code + 1,
6550 &syms_per_code);
6551 mods = XGetModifierMapping (dpyinfo->display);
6552
6553 /* Scan the modifier table to see which modifier bits the Meta and
6554 Alt keysyms are on. */
6555 {
6556 int row, col; /* The row and column in the modifier table. */
6557
6558 for (row = 3; row < 8; row++)
6559 for (col = 0; col < mods->max_keypermod; col++)
6560 {
6561 KeyCode code
6562 = mods->modifiermap[(row * mods->max_keypermod) + col];
6563
6564 /* Zeroes are used for filler. Skip them. */
6565 if (code == 0)
6566 continue;
6567
6568 /* Are any of this keycode's keysyms a meta key? */
6569 {
6570 int code_col;
6571
6572 for (code_col = 0; code_col < syms_per_code; code_col++)
6573 {
6574 int sym = syms[((code - min_code) * syms_per_code) + code_col];
6575
6576 switch (sym)
6577 {
6578 case XK_Meta_L:
6579 case XK_Meta_R:
6580 dpyinfo->meta_mod_mask |= (1 << row);
6581 break;
6582
6583 case XK_Alt_L:
6584 case XK_Alt_R:
6585 dpyinfo->alt_mod_mask |= (1 << row);
6586 break;
6587
6588 case XK_Hyper_L:
6589 case XK_Hyper_R:
6590 dpyinfo->hyper_mod_mask |= (1 << row);
6591 break;
6592
6593 case XK_Super_L:
6594 case XK_Super_R:
6595 dpyinfo->super_mod_mask |= (1 << row);
6596 break;
6597
6598 case XK_Shift_Lock:
6599 /* Ignore this if it's not on the lock modifier. */
6600 if ((1 << row) == LockMask)
6601 dpyinfo->shift_lock_mask = LockMask;
6602 break;
6603 }
6604 }
6605 }
6606 }
6607 }
6608
6609 /* If we couldn't find any meta keys, accept any alt keys as meta keys. */
6610 if (! dpyinfo->meta_mod_mask)
6611 {
6612 dpyinfo->meta_mod_mask = dpyinfo->alt_mod_mask;
6613 dpyinfo->alt_mod_mask = 0;
6614 }
6615
6616 /* If some keys are both alt and meta,
6617 make them just meta, not alt. */
6618 if (dpyinfo->alt_mod_mask & dpyinfo->meta_mod_mask)
6619 {
6620 dpyinfo->alt_mod_mask &= ~dpyinfo->meta_mod_mask;
6621 }
6622
6623 XFree ((char *) syms);
6624 XFreeModifiermap (mods);
6625 }
6626
6627 /* Convert between the modifier bits X uses and the modifier bits
6628 Emacs uses. */
6629
6630 static unsigned int
6631 x_x_to_emacs_modifiers (dpyinfo, state)
6632 struct x_display_info *dpyinfo;
6633 unsigned int state;
6634 {
6635 EMACS_UINT mod_meta = meta_modifier;
6636 EMACS_UINT mod_alt = alt_modifier;
6637 EMACS_UINT mod_hyper = hyper_modifier;
6638 EMACS_UINT mod_super = super_modifier;
6639 Lisp_Object tem;
6640
6641 tem = Fget (Vx_alt_keysym, Qmodifier_value);
6642 if (! EQ (tem, Qnil)) mod_alt = XUINT (tem);
6643 tem = Fget (Vx_meta_keysym, Qmodifier_value);
6644 if (! EQ (tem, Qnil)) mod_meta = XUINT (tem);
6645 tem = Fget (Vx_hyper_keysym, Qmodifier_value);
6646 if (! EQ (tem, Qnil)) mod_hyper = XUINT (tem);
6647 tem = Fget (Vx_super_keysym, Qmodifier_value);
6648 if (! EQ (tem, Qnil)) mod_super = XUINT (tem);
6649
6650
6651 return ( ((state & (ShiftMask | dpyinfo->shift_lock_mask)) ? shift_modifier : 0)
6652 | ((state & ControlMask) ? ctrl_modifier : 0)
6653 | ((state & dpyinfo->meta_mod_mask) ? mod_meta : 0)
6654 | ((state & dpyinfo->alt_mod_mask) ? mod_alt : 0)
6655 | ((state & dpyinfo->super_mod_mask) ? mod_super : 0)
6656 | ((state & dpyinfo->hyper_mod_mask) ? mod_hyper : 0));
6657 }
6658
6659 static unsigned int
6660 x_emacs_to_x_modifiers (dpyinfo, state)
6661 struct x_display_info *dpyinfo;
6662 unsigned int state;
6663 {
6664 EMACS_UINT mod_meta = meta_modifier;
6665 EMACS_UINT mod_alt = alt_modifier;
6666 EMACS_UINT mod_hyper = hyper_modifier;
6667 EMACS_UINT mod_super = super_modifier;
6668
6669 Lisp_Object tem;
6670
6671 tem = Fget (Vx_alt_keysym, Qmodifier_value);
6672 if (! EQ (tem, Qnil)) mod_alt = XUINT (tem);
6673 tem = Fget (Vx_meta_keysym, Qmodifier_value);
6674 if (! EQ (tem, Qnil)) mod_meta = XUINT (tem);
6675 tem = Fget (Vx_hyper_keysym, Qmodifier_value);
6676 if (! EQ (tem, Qnil)) mod_hyper = XUINT (tem);
6677 tem = Fget (Vx_super_keysym, Qmodifier_value);
6678 if (! EQ (tem, Qnil)) mod_super = XUINT (tem);
6679
6680
6681 return ( ((state & mod_alt) ? dpyinfo->alt_mod_mask : 0)
6682 | ((state & mod_super) ? dpyinfo->super_mod_mask : 0)
6683 | ((state & mod_hyper) ? dpyinfo->hyper_mod_mask : 0)
6684 | ((state & shift_modifier) ? ShiftMask : 0)
6685 | ((state & ctrl_modifier) ? ControlMask : 0)
6686 | ((state & mod_meta) ? dpyinfo->meta_mod_mask : 0));
6687 }
6688
6689 /* Convert a keysym to its name. */
6690
6691 char *
6692 x_get_keysym_name (keysym)
6693 KeySym keysym;
6694 {
6695 char *value;
6696
6697 BLOCK_INPUT;
6698 value = XKeysymToString (keysym);
6699 UNBLOCK_INPUT;
6700
6701 return value;
6702 }
6703
6704
6705 \f
6706 /* Mouse clicks and mouse movement. Rah. */
6707
6708 /* Given a pixel position (PIX_X, PIX_Y) on frame F, return glyph
6709 co-ordinates in (*X, *Y). Set *BOUNDS to the rectangle that the
6710 glyph at X, Y occupies, if BOUNDS != 0. If NOCLIP is non-zero, do
6711 not force the value into range. */
6712
6713 void
6714 pixel_to_glyph_coords (f, pix_x, pix_y, x, y, bounds, noclip)
6715 FRAME_PTR f;
6716 register int pix_x, pix_y;
6717 register int *x, *y;
6718 XRectangle *bounds;
6719 int noclip;
6720 {
6721 /* Arrange for the division in PIXEL_TO_CHAR_COL etc. to round down
6722 even for negative values. */
6723 if (pix_x < 0)
6724 pix_x -= FONT_WIDTH ((f)->output_data.x->font) - 1;
6725 if (pix_y < 0)
6726 pix_y -= (f)->output_data.x->line_height - 1;
6727
6728 pix_x = PIXEL_TO_CHAR_COL (f, pix_x);
6729 pix_y = PIXEL_TO_CHAR_ROW (f, pix_y);
6730
6731 if (bounds)
6732 {
6733 bounds->width = FONT_WIDTH (f->output_data.x->font);
6734 bounds->height = f->output_data.x->line_height;
6735 bounds->x = CHAR_TO_PIXEL_COL (f, pix_x);
6736 bounds->y = CHAR_TO_PIXEL_ROW (f, pix_y);
6737 }
6738
6739 if (!noclip)
6740 {
6741 if (pix_x < 0)
6742 pix_x = 0;
6743 else if (pix_x > FRAME_WINDOW_WIDTH (f))
6744 pix_x = FRAME_WINDOW_WIDTH (f);
6745
6746 if (pix_y < 0)
6747 pix_y = 0;
6748 else if (pix_y > f->height)
6749 pix_y = f->height;
6750 }
6751
6752 *x = pix_x;
6753 *y = pix_y;
6754 }
6755
6756
6757 /* Given HPOS/VPOS in the current matrix of W, return corresponding
6758 frame-relative pixel positions in *FRAME_X and *FRAME_Y. If we
6759 can't tell the positions because W's display is not up to date,
6760 return 0. */
6761
6762 int
6763 glyph_to_pixel_coords (w, hpos, vpos, frame_x, frame_y)
6764 struct window *w;
6765 int hpos, vpos;
6766 int *frame_x, *frame_y;
6767 {
6768 int success_p;
6769
6770 xassert (hpos >= 0 && hpos < w->current_matrix->matrix_w);
6771 xassert (vpos >= 0 && vpos < w->current_matrix->matrix_h);
6772
6773 if (display_completed)
6774 {
6775 struct glyph_row *row = MATRIX_ROW (w->current_matrix, vpos);
6776 struct glyph *glyph = row->glyphs[TEXT_AREA];
6777 struct glyph *end = glyph + min (hpos, row->used[TEXT_AREA]);
6778
6779 *frame_y = row->y;
6780 *frame_x = row->x;
6781 while (glyph < end)
6782 {
6783 *frame_x += glyph->pixel_width;
6784 ++glyph;
6785 }
6786
6787 success_p = 1;
6788 }
6789 else
6790 {
6791 *frame_y = *frame_x = 0;
6792 success_p = 0;
6793 }
6794
6795 *frame_y = WINDOW_TO_FRAME_PIXEL_Y (w, *frame_y);
6796 *frame_x = WINDOW_TO_FRAME_PIXEL_X (w, *frame_x);
6797 return success_p;
6798 }
6799
6800
6801 /* Prepare a mouse-event in *RESULT for placement in the input queue.
6802
6803 If the event is a button press, then note that we have grabbed
6804 the mouse. */
6805
6806 static Lisp_Object
6807 construct_mouse_click (result, event, f)
6808 struct input_event *result;
6809 XButtonEvent *event;
6810 struct frame *f;
6811 {
6812 /* Make the event type NO_EVENT; we'll change that when we decide
6813 otherwise. */
6814 result->kind = MOUSE_CLICK_EVENT;
6815 result->code = event->button - Button1;
6816 result->timestamp = event->time;
6817 result->modifiers = (x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO (f),
6818 event->state)
6819 | (event->type == ButtonRelease
6820 ? up_modifier
6821 : down_modifier));
6822
6823 XSETINT (result->x, event->x);
6824 XSETINT (result->y, event->y);
6825 XSETFRAME (result->frame_or_window, f);
6826 result->arg = Qnil;
6827 return Qnil;
6828 }
6829
6830 \f
6831 /* Function to report a mouse movement to the mainstream Emacs code.
6832 The input handler calls this.
6833
6834 We have received a mouse movement event, which is given in *event.
6835 If the mouse is over a different glyph than it was last time, tell
6836 the mainstream emacs code by setting mouse_moved. If not, ask for
6837 another motion event, so we can check again the next time it moves. */
6838
6839 static XMotionEvent last_mouse_motion_event;
6840 static Lisp_Object last_mouse_motion_frame;
6841
6842 static void
6843 note_mouse_movement (frame, event)
6844 FRAME_PTR frame;
6845 XMotionEvent *event;
6846 {
6847 last_mouse_movement_time = event->time;
6848 last_mouse_motion_event = *event;
6849 XSETFRAME (last_mouse_motion_frame, frame);
6850
6851 if (event->window != FRAME_X_WINDOW (frame))
6852 {
6853 frame->mouse_moved = 1;
6854 last_mouse_scroll_bar = Qnil;
6855 note_mouse_highlight (frame, -1, -1);
6856 }
6857
6858 /* Has the mouse moved off the glyph it was on at the last sighting? */
6859 else if (event->x < last_mouse_glyph.x
6860 || event->x >= last_mouse_glyph.x + last_mouse_glyph.width
6861 || event->y < last_mouse_glyph.y
6862 || event->y >= last_mouse_glyph.y + last_mouse_glyph.height)
6863 {
6864 frame->mouse_moved = 1;
6865 last_mouse_scroll_bar = Qnil;
6866 note_mouse_highlight (frame, event->x, event->y);
6867 }
6868 }
6869
6870 \f
6871 /************************************************************************
6872 Mouse Face
6873 ************************************************************************/
6874
6875 /* Find the glyph under window-relative coordinates X/Y in window W.
6876 Consider only glyphs from buffer text, i.e. no glyphs from overlay
6877 strings. Return in *HPOS and *VPOS the row and column number of
6878 the glyph found. Return in *AREA the glyph area containing X.
6879 Value is a pointer to the glyph found or null if X/Y is not on
6880 text, or we can't tell because W's current matrix is not up to
6881 date. */
6882
6883 static struct glyph *
6884 x_y_to_hpos_vpos (w, x, y, hpos, vpos, area, buffer_only_p)
6885 struct window *w;
6886 int x, y;
6887 int *hpos, *vpos, *area;
6888 int buffer_only_p;
6889 {
6890 struct glyph *glyph, *end;
6891 struct glyph_row *row = NULL;
6892 int x0, i, left_area_width;
6893
6894 /* Find row containing Y. Give up if some row is not enabled. */
6895 for (i = 0; i < w->current_matrix->nrows; ++i)
6896 {
6897 row = MATRIX_ROW (w->current_matrix, i);
6898 if (!row->enabled_p)
6899 return NULL;
6900 if (y >= row->y && y < MATRIX_ROW_BOTTOM_Y (row))
6901 break;
6902 }
6903
6904 *vpos = i;
6905 *hpos = 0;
6906
6907 /* Give up if Y is not in the window. */
6908 if (i == w->current_matrix->nrows)
6909 return NULL;
6910
6911 /* Get the glyph area containing X. */
6912 if (w->pseudo_window_p)
6913 {
6914 *area = TEXT_AREA;
6915 x0 = 0;
6916 }
6917 else
6918 {
6919 left_area_width = window_box_width (w, LEFT_MARGIN_AREA);
6920 if (x < left_area_width)
6921 {
6922 *area = LEFT_MARGIN_AREA;
6923 x0 = 0;
6924 }
6925 else if (x < left_area_width + window_box_width (w, TEXT_AREA))
6926 {
6927 *area = TEXT_AREA;
6928 x0 = row->x + left_area_width;
6929 }
6930 else
6931 {
6932 *area = RIGHT_MARGIN_AREA;
6933 x0 = left_area_width + window_box_width (w, TEXT_AREA);
6934 }
6935 }
6936
6937 /* Find glyph containing X. */
6938 glyph = row->glyphs[*area];
6939 end = glyph + row->used[*area];
6940 while (glyph < end)
6941 {
6942 if (x < x0 + glyph->pixel_width)
6943 {
6944 if (w->pseudo_window_p)
6945 break;
6946 else if (!buffer_only_p || BUFFERP (glyph->object))
6947 break;
6948 }
6949
6950 x0 += glyph->pixel_width;
6951 ++glyph;
6952 }
6953
6954 if (glyph == end)
6955 return NULL;
6956
6957 *hpos = glyph - row->glyphs[*area];
6958 return glyph;
6959 }
6960
6961
6962 /* Convert frame-relative x/y to coordinates relative to window W.
6963 Takes pseudo-windows into account. */
6964
6965 static void
6966 frame_to_window_pixel_xy (w, x, y)
6967 struct window *w;
6968 int *x, *y;
6969 {
6970 if (w->pseudo_window_p)
6971 {
6972 /* A pseudo-window is always full-width, and starts at the
6973 left edge of the frame, plus a frame border. */
6974 struct frame *f = XFRAME (w->frame);
6975 *x -= FRAME_INTERNAL_BORDER_WIDTH_SAFE (f);
6976 *y = FRAME_TO_WINDOW_PIXEL_Y (w, *y);
6977 }
6978 else
6979 {
6980 *x = FRAME_TO_WINDOW_PIXEL_X (w, *x);
6981 *y = FRAME_TO_WINDOW_PIXEL_Y (w, *y);
6982 }
6983 }
6984
6985
6986 /* Take proper action when mouse has moved to the mode or header line
6987 or marginal area of window W, x-position X and y-position Y. Area
6988 is 1, 3, 6 or 7 for the mode line, header line, left and right
6989 marginal area respectively. X is relative to the start of the text
6990 display area of W, so the width of bitmap areas and scroll bars
6991 must be subtracted to get a position relative to the start of the
6992 mode line. */
6993
6994 static void
6995 note_mode_line_or_margin_highlight (w, x, y, portion)
6996 struct window *w;
6997 int x, y, portion;
6998 {
6999 struct frame *f = XFRAME (w->frame);
7000 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
7001 Cursor cursor = dpyinfo->vertical_scroll_bar_cursor;
7002 int charpos;
7003 Lisp_Object string, help, map, pos;
7004
7005 if (portion == 1 || portion == 3)
7006 string = mode_line_string (w, x, y, portion == 1, &charpos);
7007 else
7008 string = marginal_area_string (w, x, y, portion, &charpos);
7009
7010 if (STRINGP (string))
7011 {
7012 pos = make_number (charpos);
7013
7014 /* If we're on a string with `help-echo' text property, arrange
7015 for the help to be displayed. This is done by setting the
7016 global variable help_echo to the help string. */
7017 help = Fget_text_property (pos, Qhelp_echo, string);
7018 if (!NILP (help))
7019 {
7020 help_echo = help;
7021 XSETWINDOW (help_echo_window, w);
7022 help_echo_object = string;
7023 help_echo_pos = charpos;
7024 }
7025
7026 /* Change the mouse pointer according to what is under X/Y. */
7027 map = Fget_text_property (pos, Qlocal_map, string);
7028 if (!KEYMAPP (map))
7029 map = Fget_text_property (pos, Qkeymap, string);
7030 if (KEYMAPP (map))
7031 cursor = f->output_data.x->nontext_cursor;
7032 }
7033
7034 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), cursor);
7035 }
7036
7037
7038 /* Take proper action when the mouse has moved to position X, Y on
7039 frame F as regards highlighting characters that have mouse-face
7040 properties. Also de-highlighting chars where the mouse was before.
7041 X and Y can be negative or out of range. */
7042
7043 static void
7044 note_mouse_highlight (f, x, y)
7045 struct frame *f;
7046 int x, y;
7047 {
7048 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
7049 int portion;
7050 Lisp_Object window;
7051 struct window *w;
7052 Cursor cursor = None;
7053 struct buffer *b;
7054
7055 /* When a menu is active, don't highlight because this looks odd. */
7056 #ifdef USE_X_TOOLKIT
7057 if (popup_activated ())
7058 return;
7059 #endif
7060
7061 if (NILP (Vmouse_highlight)
7062 || !f->glyphs_initialized_p)
7063 return;
7064
7065 dpyinfo->mouse_face_mouse_x = x;
7066 dpyinfo->mouse_face_mouse_y = y;
7067 dpyinfo->mouse_face_mouse_frame = f;
7068
7069 if (dpyinfo->mouse_face_defer)
7070 return;
7071
7072 if (gc_in_progress)
7073 {
7074 dpyinfo->mouse_face_deferred_gc = 1;
7075 return;
7076 }
7077
7078 /* Which window is that in? */
7079 window = window_from_coordinates (f, x, y, &portion, 1);
7080
7081 /* If we were displaying active text in another window, clear that. */
7082 if (! EQ (window, dpyinfo->mouse_face_window))
7083 clear_mouse_face (dpyinfo);
7084
7085 /* Not on a window -> return. */
7086 if (!WINDOWP (window))
7087 return;
7088
7089 /* Convert to window-relative pixel coordinates. */
7090 w = XWINDOW (window);
7091 frame_to_window_pixel_xy (w, &x, &y);
7092
7093 /* Handle tool-bar window differently since it doesn't display a
7094 buffer. */
7095 if (EQ (window, f->tool_bar_window))
7096 {
7097 note_tool_bar_highlight (f, x, y);
7098 return;
7099 }
7100
7101 /* Mouse is on the mode, header line or margin? */
7102 if (portion == 1 || portion == 3 || portion == 6 || portion == 7)
7103 {
7104 note_mode_line_or_margin_highlight (w, x, y, portion);
7105 return;
7106 }
7107
7108 if (portion == 2)
7109 cursor = f->output_data.x->horizontal_drag_cursor;
7110 else
7111 cursor = f->output_data.x->text_cursor;
7112
7113 /* Are we in a window whose display is up to date?
7114 And verify the buffer's text has not changed. */
7115 b = XBUFFER (w->buffer);
7116 if (/* Within text portion of the window. */
7117 portion == 0
7118 && EQ (w->window_end_valid, w->buffer)
7119 && XFASTINT (w->last_modified) == BUF_MODIFF (b)
7120 && XFASTINT (w->last_overlay_modified) == BUF_OVERLAY_MODIFF (b))
7121 {
7122 int hpos, vpos, pos, i, area;
7123 struct glyph *glyph;
7124 Lisp_Object object;
7125 Lisp_Object mouse_face = Qnil, overlay = Qnil, position;
7126 Lisp_Object *overlay_vec = NULL;
7127 int len, noverlays;
7128 struct buffer *obuf;
7129 int obegv, ozv, same_region;
7130
7131 /* Find the glyph under X/Y. */
7132 glyph = x_y_to_hpos_vpos (w, x, y, &hpos, &vpos, &area, 0);
7133
7134 /* Clear mouse face if X/Y not over text. */
7135 if (glyph == NULL
7136 || area != TEXT_AREA
7137 || !MATRIX_ROW (w->current_matrix, vpos)->displays_text_p)
7138 {
7139 if (clear_mouse_face (dpyinfo))
7140 cursor = None;
7141 goto set_cursor;
7142 }
7143
7144 pos = glyph->charpos;
7145 object = glyph->object;
7146 if (!STRINGP (object) && !BUFFERP (object))
7147 goto set_cursor;
7148
7149 /* If we get an out-of-range value, return now; avoid an error. */
7150 if (BUFFERP (object) && pos > BUF_Z (b))
7151 goto set_cursor;
7152
7153 /* Make the window's buffer temporarily current for
7154 overlays_at and compute_char_face. */
7155 obuf = current_buffer;
7156 current_buffer = b;
7157 obegv = BEGV;
7158 ozv = ZV;
7159 BEGV = BEG;
7160 ZV = Z;
7161
7162 /* Is this char mouse-active or does it have help-echo? */
7163 position = make_number (pos);
7164
7165 if (BUFFERP (object))
7166 {
7167 /* Put all the overlays we want in a vector in overlay_vec.
7168 Store the length in len. If there are more than 10, make
7169 enough space for all, and try again. */
7170 len = 10;
7171 overlay_vec = (Lisp_Object *) alloca (len * sizeof (Lisp_Object));
7172 noverlays = overlays_at (pos, 0, &overlay_vec, &len, NULL, NULL, 0);
7173 if (noverlays > len)
7174 {
7175 len = noverlays;
7176 overlay_vec = (Lisp_Object *) alloca (len * sizeof (Lisp_Object));
7177 noverlays = overlays_at (pos, 0, &overlay_vec, &len, NULL, NULL,0);
7178 }
7179
7180 /* Sort overlays into increasing priority order. */
7181 noverlays = sort_overlays (overlay_vec, noverlays, w);
7182 }
7183 else
7184 noverlays = 0;
7185
7186 same_region = (EQ (window, dpyinfo->mouse_face_window)
7187 && vpos >= dpyinfo->mouse_face_beg_row
7188 && vpos <= dpyinfo->mouse_face_end_row
7189 && (vpos > dpyinfo->mouse_face_beg_row
7190 || hpos >= dpyinfo->mouse_face_beg_col)
7191 && (vpos < dpyinfo->mouse_face_end_row
7192 || hpos < dpyinfo->mouse_face_end_col
7193 || dpyinfo->mouse_face_past_end));
7194
7195 if (same_region)
7196 cursor = None;
7197
7198 /* Check mouse-face highlighting. */
7199 if (! same_region
7200 /* If there exists an overlay with mouse-face overlapping
7201 the one we are currently highlighting, we have to
7202 check if we enter the overlapping overlay, and then
7203 highlight only that. */
7204 || (OVERLAYP (dpyinfo->mouse_face_overlay)
7205 && mouse_face_overlay_overlaps (dpyinfo->mouse_face_overlay)))
7206 {
7207 /* Find the highest priority overlay that has a mouse-face
7208 property. */
7209 overlay = Qnil;
7210 for (i = noverlays - 1; i >= 0 && NILP (overlay); --i)
7211 {
7212 mouse_face = Foverlay_get (overlay_vec[i], Qmouse_face);
7213 if (!NILP (mouse_face))
7214 overlay = overlay_vec[i];
7215 }
7216
7217 /* If we're actually highlighting the same overlay as
7218 before, there's no need to do that again. */
7219 if (!NILP (overlay)
7220 && EQ (overlay, dpyinfo->mouse_face_overlay))
7221 goto check_help_echo;
7222
7223 dpyinfo->mouse_face_overlay = overlay;
7224
7225 /* Clear the display of the old active region, if any. */
7226 if (clear_mouse_face (dpyinfo))
7227 cursor = None;
7228
7229 /* If no overlay applies, get a text property. */
7230 if (NILP (overlay))
7231 mouse_face = Fget_text_property (position, Qmouse_face, object);
7232
7233 /* Handle the overlay case. */
7234 if (!NILP (overlay))
7235 {
7236 /* Find the range of text around this char that
7237 should be active. */
7238 Lisp_Object before, after;
7239 int ignore;
7240
7241 before = Foverlay_start (overlay);
7242 after = Foverlay_end (overlay);
7243 /* Record this as the current active region. */
7244 fast_find_position (w, XFASTINT (before),
7245 &dpyinfo->mouse_face_beg_col,
7246 &dpyinfo->mouse_face_beg_row,
7247 &dpyinfo->mouse_face_beg_x,
7248 &dpyinfo->mouse_face_beg_y, Qnil);
7249
7250 dpyinfo->mouse_face_past_end
7251 = !fast_find_position (w, XFASTINT (after),
7252 &dpyinfo->mouse_face_end_col,
7253 &dpyinfo->mouse_face_end_row,
7254 &dpyinfo->mouse_face_end_x,
7255 &dpyinfo->mouse_face_end_y, Qnil);
7256 dpyinfo->mouse_face_window = window;
7257 dpyinfo->mouse_face_face_id
7258 = face_at_buffer_position (w, pos, 0, 0,
7259 &ignore, pos + 1, 1);
7260
7261 /* Display it as active. */
7262 show_mouse_face (dpyinfo, DRAW_MOUSE_FACE);
7263 cursor = None;
7264 }
7265 /* Handle the text property case. */
7266 else if (!NILP (mouse_face) && BUFFERP (object))
7267 {
7268 /* Find the range of text around this char that
7269 should be active. */
7270 Lisp_Object before, after, beginning, end;
7271 int ignore;
7272
7273 beginning = Fmarker_position (w->start);
7274 end = make_number (BUF_Z (XBUFFER (object))
7275 - XFASTINT (w->window_end_pos));
7276 before
7277 = Fprevious_single_property_change (make_number (pos + 1),
7278 Qmouse_face,
7279 object, beginning);
7280 after
7281 = Fnext_single_property_change (position, Qmouse_face,
7282 object, end);
7283
7284 /* Record this as the current active region. */
7285 fast_find_position (w, XFASTINT (before),
7286 &dpyinfo->mouse_face_beg_col,
7287 &dpyinfo->mouse_face_beg_row,
7288 &dpyinfo->mouse_face_beg_x,
7289 &dpyinfo->mouse_face_beg_y, Qnil);
7290 dpyinfo->mouse_face_past_end
7291 = !fast_find_position (w, XFASTINT (after),
7292 &dpyinfo->mouse_face_end_col,
7293 &dpyinfo->mouse_face_end_row,
7294 &dpyinfo->mouse_face_end_x,
7295 &dpyinfo->mouse_face_end_y, Qnil);
7296 dpyinfo->mouse_face_window = window;
7297
7298 if (BUFFERP (object))
7299 dpyinfo->mouse_face_face_id
7300 = face_at_buffer_position (w, pos, 0, 0,
7301 &ignore, pos + 1, 1);
7302
7303 /* Display it as active. */
7304 show_mouse_face (dpyinfo, DRAW_MOUSE_FACE);
7305 cursor = None;
7306 }
7307 else if (!NILP (mouse_face) && STRINGP (object))
7308 {
7309 Lisp_Object b, e;
7310 int ignore;
7311
7312 b = Fprevious_single_property_change (make_number (pos + 1),
7313 Qmouse_face,
7314 object, Qnil);
7315 e = Fnext_single_property_change (position, Qmouse_face,
7316 object, Qnil);
7317 if (NILP (b))
7318 b = make_number (0);
7319 if (NILP (e))
7320 e = make_number (SCHARS (object) - 1);
7321 fast_find_string_pos (w, XINT (b), object,
7322 &dpyinfo->mouse_face_beg_col,
7323 &dpyinfo->mouse_face_beg_row,
7324 &dpyinfo->mouse_face_beg_x,
7325 &dpyinfo->mouse_face_beg_y, 0);
7326 fast_find_string_pos (w, XINT (e), object,
7327 &dpyinfo->mouse_face_end_col,
7328 &dpyinfo->mouse_face_end_row,
7329 &dpyinfo->mouse_face_end_x,
7330 &dpyinfo->mouse_face_end_y, 1);
7331 dpyinfo->mouse_face_past_end = 0;
7332 dpyinfo->mouse_face_window = window;
7333 dpyinfo->mouse_face_face_id
7334 = face_at_string_position (w, object, pos, 0, 0, 0, &ignore,
7335 glyph->face_id, 1);
7336 show_mouse_face (dpyinfo, DRAW_MOUSE_FACE);
7337 cursor = None;
7338 }
7339 else if (STRINGP (object) && NILP (mouse_face))
7340 {
7341 /* A string which doesn't have mouse-face, but
7342 the text ``under'' it might have. */
7343 struct glyph_row *r = MATRIX_ROW (w->current_matrix, vpos);
7344 int start = MATRIX_ROW_START_CHARPOS (r);
7345
7346 pos = string_buffer_position (w, object, start);
7347 if (pos > 0)
7348 mouse_face = get_char_property_and_overlay (make_number (pos),
7349 Qmouse_face,
7350 w->buffer,
7351 &overlay);
7352 if (!NILP (mouse_face) && !NILP (overlay))
7353 {
7354 Lisp_Object before = Foverlay_start (overlay);
7355 Lisp_Object after = Foverlay_end (overlay);
7356 int ignore;
7357
7358 /* Note that we might not be able to find position
7359 BEFORE in the glyph matrix if the overlay is
7360 entirely covered by a `display' property. In
7361 this case, we overshoot. So let's stop in
7362 the glyph matrix before glyphs for OBJECT. */
7363 fast_find_position (w, XFASTINT (before),
7364 &dpyinfo->mouse_face_beg_col,
7365 &dpyinfo->mouse_face_beg_row,
7366 &dpyinfo->mouse_face_beg_x,
7367 &dpyinfo->mouse_face_beg_y,
7368 object);
7369
7370 dpyinfo->mouse_face_past_end
7371 = !fast_find_position (w, XFASTINT (after),
7372 &dpyinfo->mouse_face_end_col,
7373 &dpyinfo->mouse_face_end_row,
7374 &dpyinfo->mouse_face_end_x,
7375 &dpyinfo->mouse_face_end_y,
7376 Qnil);
7377 dpyinfo->mouse_face_window = window;
7378 dpyinfo->mouse_face_face_id
7379 = face_at_buffer_position (w, pos, 0, 0,
7380 &ignore, pos + 1, 1);
7381
7382 /* Display it as active. */
7383 show_mouse_face (dpyinfo, DRAW_MOUSE_FACE);
7384 cursor = None;
7385 }
7386 }
7387 }
7388
7389 check_help_echo:
7390
7391 /* Look for a `help-echo' property. */
7392 {
7393 Lisp_Object help, overlay;
7394
7395 /* Check overlays first. */
7396 help = overlay = Qnil;
7397 for (i = noverlays - 1; i >= 0 && NILP (help); --i)
7398 {
7399 overlay = overlay_vec[i];
7400 help = Foverlay_get (overlay, Qhelp_echo);
7401 }
7402
7403 if (!NILP (help))
7404 {
7405 help_echo = help;
7406 help_echo_window = window;
7407 help_echo_object = overlay;
7408 help_echo_pos = pos;
7409 }
7410 else
7411 {
7412 Lisp_Object object = glyph->object;
7413 int charpos = glyph->charpos;
7414
7415 /* Try text properties. */
7416 if (STRINGP (object)
7417 && charpos >= 0
7418 && charpos < SCHARS (object))
7419 {
7420 help = Fget_text_property (make_number (charpos),
7421 Qhelp_echo, object);
7422 if (NILP (help))
7423 {
7424 /* If the string itself doesn't specify a help-echo,
7425 see if the buffer text ``under'' it does. */
7426 struct glyph_row *r
7427 = MATRIX_ROW (w->current_matrix, vpos);
7428 int start = MATRIX_ROW_START_CHARPOS (r);
7429 int pos = string_buffer_position (w, object, start);
7430 if (pos > 0)
7431 {
7432 help = Fget_char_property (make_number (pos),
7433 Qhelp_echo, w->buffer);
7434 if (!NILP (help))
7435 {
7436 charpos = pos;
7437 object = w->buffer;
7438 }
7439 }
7440 }
7441 }
7442 else if (BUFFERP (object)
7443 && charpos >= BEGV
7444 && charpos < ZV)
7445 help = Fget_text_property (make_number (charpos), Qhelp_echo,
7446 object);
7447
7448 if (!NILP (help))
7449 {
7450 help_echo = help;
7451 help_echo_window = window;
7452 help_echo_object = object;
7453 help_echo_pos = charpos;
7454 }
7455 }
7456 }
7457
7458 BEGV = obegv;
7459 ZV = ozv;
7460 current_buffer = obuf;
7461 }
7462
7463 set_cursor:
7464
7465 if (cursor != None)
7466 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), cursor);
7467 }
7468
7469 static void
7470 redo_mouse_highlight ()
7471 {
7472 if (!NILP (last_mouse_motion_frame)
7473 && FRAME_LIVE_P (XFRAME (last_mouse_motion_frame)))
7474 note_mouse_highlight (XFRAME (last_mouse_motion_frame),
7475 last_mouse_motion_event.x,
7476 last_mouse_motion_event.y);
7477 }
7478
7479
7480 \f
7481 /***********************************************************************
7482 Tool-bars
7483 ***********************************************************************/
7484
7485 static int x_tool_bar_item P_ ((struct frame *, int, int,
7486 struct glyph **, int *, int *, int *));
7487
7488 /* Tool-bar item index of the item on which a mouse button was pressed
7489 or -1. */
7490
7491 static int last_tool_bar_item;
7492
7493
7494 /* Get information about the tool-bar item at position X/Y on frame F.
7495 Return in *GLYPH a pointer to the glyph of the tool-bar item in
7496 the current matrix of the tool-bar window of F, or NULL if not
7497 on a tool-bar item. Return in *PROP_IDX the index of the tool-bar
7498 item in F->tool_bar_items. Value is
7499
7500 -1 if X/Y is not on a tool-bar item
7501 0 if X/Y is on the same item that was highlighted before.
7502 1 otherwise. */
7503
7504 static int
7505 x_tool_bar_item (f, x, y, glyph, hpos, vpos, prop_idx)
7506 struct frame *f;
7507 int x, y;
7508 struct glyph **glyph;
7509 int *hpos, *vpos, *prop_idx;
7510 {
7511 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
7512 struct window *w = XWINDOW (f->tool_bar_window);
7513 int area;
7514
7515 /* Find the glyph under X/Y. */
7516 *glyph = x_y_to_hpos_vpos (w, x, y, hpos, vpos, &area, 0);
7517 if (*glyph == NULL)
7518 return -1;
7519
7520 /* Get the start of this tool-bar item's properties in
7521 f->tool_bar_items. */
7522 if (!tool_bar_item_info (f, *glyph, prop_idx))
7523 return -1;
7524
7525 /* Is mouse on the highlighted item? */
7526 if (EQ (f->tool_bar_window, dpyinfo->mouse_face_window)
7527 && *vpos >= dpyinfo->mouse_face_beg_row
7528 && *vpos <= dpyinfo->mouse_face_end_row
7529 && (*vpos > dpyinfo->mouse_face_beg_row
7530 || *hpos >= dpyinfo->mouse_face_beg_col)
7531 && (*vpos < dpyinfo->mouse_face_end_row
7532 || *hpos < dpyinfo->mouse_face_end_col
7533 || dpyinfo->mouse_face_past_end))
7534 return 0;
7535
7536 return 1;
7537 }
7538
7539
7540 /* Handle mouse button event on the tool-bar of frame F, at
7541 frame-relative coordinates X/Y. EVENT_TYPE is either ButtonPress
7542 or ButtonRelase. */
7543
7544 static void
7545 x_handle_tool_bar_click (f, button_event)
7546 struct frame *f;
7547 XButtonEvent *button_event;
7548 {
7549 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
7550 struct window *w = XWINDOW (f->tool_bar_window);
7551 int hpos, vpos, prop_idx;
7552 struct glyph *glyph;
7553 Lisp_Object enabled_p;
7554 int x = button_event->x;
7555 int y = button_event->y;
7556
7557 /* If not on the highlighted tool-bar item, return. */
7558 frame_to_window_pixel_xy (w, &x, &y);
7559 if (x_tool_bar_item (f, x, y, &glyph, &hpos, &vpos, &prop_idx) != 0)
7560 return;
7561
7562 /* If item is disabled, do nothing. */
7563 enabled_p = AREF (f->tool_bar_items, prop_idx + TOOL_BAR_ITEM_ENABLED_P);
7564 if (NILP (enabled_p))
7565 return;
7566
7567 if (button_event->type == ButtonPress)
7568 {
7569 /* Show item in pressed state. */
7570 show_mouse_face (dpyinfo, DRAW_IMAGE_SUNKEN);
7571 dpyinfo->mouse_face_image_state = DRAW_IMAGE_SUNKEN;
7572 last_tool_bar_item = prop_idx;
7573 }
7574 else
7575 {
7576 Lisp_Object key, frame;
7577 struct input_event event;
7578
7579 /* Show item in released state. */
7580 show_mouse_face (dpyinfo, DRAW_IMAGE_RAISED);
7581 dpyinfo->mouse_face_image_state = DRAW_IMAGE_RAISED;
7582
7583 key = AREF (f->tool_bar_items, prop_idx + TOOL_BAR_ITEM_KEY);
7584
7585 XSETFRAME (frame, f);
7586 event.kind = TOOL_BAR_EVENT;
7587 event.frame_or_window = frame;
7588 event.arg = frame;
7589 kbd_buffer_store_event (&event);
7590
7591 event.kind = TOOL_BAR_EVENT;
7592 event.frame_or_window = frame;
7593 event.arg = key;
7594 event.modifiers = x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO (f),
7595 button_event->state);
7596 kbd_buffer_store_event (&event);
7597 last_tool_bar_item = -1;
7598 }
7599 }
7600
7601
7602 /* Possibly highlight a tool-bar item on frame F when mouse moves to
7603 tool-bar window-relative coordinates X/Y. Called from
7604 note_mouse_highlight. */
7605
7606 static void
7607 note_tool_bar_highlight (f, x, y)
7608 struct frame *f;
7609 int x, y;
7610 {
7611 Lisp_Object window = f->tool_bar_window;
7612 struct window *w = XWINDOW (window);
7613 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
7614 int hpos, vpos;
7615 struct glyph *glyph;
7616 struct glyph_row *row;
7617 int i;
7618 Lisp_Object enabled_p;
7619 int prop_idx;
7620 enum draw_glyphs_face draw;
7621 int mouse_down_p, rc;
7622
7623 /* Function note_mouse_highlight is called with negative x(y
7624 values when mouse moves outside of the frame. */
7625 if (x <= 0 || y <= 0)
7626 {
7627 clear_mouse_face (dpyinfo);
7628 return;
7629 }
7630
7631 rc = x_tool_bar_item (f, x, y, &glyph, &hpos, &vpos, &prop_idx);
7632 if (rc < 0)
7633 {
7634 /* Not on tool-bar item. */
7635 clear_mouse_face (dpyinfo);
7636 return;
7637 }
7638 else if (rc == 0)
7639 goto set_help_echo;
7640
7641 clear_mouse_face (dpyinfo);
7642
7643 /* Mouse is down, but on different tool-bar item? */
7644 mouse_down_p = (dpyinfo->grabbed
7645 && f == last_mouse_frame
7646 && FRAME_LIVE_P (f));
7647 if (mouse_down_p
7648 && last_tool_bar_item != prop_idx)
7649 return;
7650
7651 dpyinfo->mouse_face_image_state = DRAW_NORMAL_TEXT;
7652 draw = mouse_down_p ? DRAW_IMAGE_SUNKEN : DRAW_IMAGE_RAISED;
7653
7654 /* If tool-bar item is not enabled, don't highlight it. */
7655 enabled_p = AREF (f->tool_bar_items, prop_idx + TOOL_BAR_ITEM_ENABLED_P);
7656 if (!NILP (enabled_p))
7657 {
7658 /* Compute the x-position of the glyph. In front and past the
7659 image is a space. We include this is the highlighted area. */
7660 row = MATRIX_ROW (w->current_matrix, vpos);
7661 for (i = x = 0; i < hpos; ++i)
7662 x += row->glyphs[TEXT_AREA][i].pixel_width;
7663
7664 /* Record this as the current active region. */
7665 dpyinfo->mouse_face_beg_col = hpos;
7666 dpyinfo->mouse_face_beg_row = vpos;
7667 dpyinfo->mouse_face_beg_x = x;
7668 dpyinfo->mouse_face_beg_y = row->y;
7669 dpyinfo->mouse_face_past_end = 0;
7670
7671 dpyinfo->mouse_face_end_col = hpos + 1;
7672 dpyinfo->mouse_face_end_row = vpos;
7673 dpyinfo->mouse_face_end_x = x + glyph->pixel_width;
7674 dpyinfo->mouse_face_end_y = row->y;
7675 dpyinfo->mouse_face_window = window;
7676 dpyinfo->mouse_face_face_id = TOOL_BAR_FACE_ID;
7677
7678 /* Display it as active. */
7679 show_mouse_face (dpyinfo, draw);
7680 dpyinfo->mouse_face_image_state = draw;
7681 }
7682
7683 set_help_echo:
7684
7685 /* Set help_echo to a help string to display for this tool-bar item.
7686 XTread_socket does the rest. */
7687 help_echo_object = help_echo_window = Qnil;
7688 help_echo_pos = -1;
7689 help_echo = AREF (f->tool_bar_items, prop_idx + TOOL_BAR_ITEM_HELP);
7690 if (NILP (help_echo))
7691 help_echo = AREF (f->tool_bar_items, prop_idx + TOOL_BAR_ITEM_CAPTION);
7692 }
7693
7694
7695 \f
7696 /* Find the glyph matrix position of buffer position CHARPOS in window
7697 *W. HPOS, *VPOS, *X, and *Y are set to the positions found. W's
7698 current glyphs must be up to date. If CHARPOS is above window
7699 start return (0, 0, 0, 0). If CHARPOS is after end of W, return end
7700 of last line in W. In the row containing CHARPOS, stop before glyphs
7701 having STOP as object. */
7702
7703 #if 0 /* This is a version of fast_find_position that's more correct
7704 in the presence of hscrolling, for example. I didn't install
7705 it right away because the problem fixed is minor, it failed
7706 in 20.x as well, and I think it's too risky to install
7707 so near the release of 21.1. 2001-09-25 gerd. */
7708
7709 static int
7710 fast_find_position (w, charpos, hpos, vpos, x, y, stop)
7711 struct window *w;
7712 int charpos;
7713 int *hpos, *vpos, *x, *y;
7714 Lisp_Object stop;
7715 {
7716 struct glyph_row *row, *first;
7717 struct glyph *glyph, *end;
7718 int i, past_end = 0;
7719
7720 first = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
7721 row = row_containing_pos (w, charpos, first, NULL, 0);
7722 if (row == NULL)
7723 {
7724 if (charpos < MATRIX_ROW_START_CHARPOS (first))
7725 {
7726 *x = *y = *hpos = *vpos = 0;
7727 return 0;
7728 }
7729 else
7730 {
7731 row = MATRIX_ROW (w->current_matrix, XFASTINT (w->window_end_vpos));
7732 past_end = 1;
7733 }
7734 }
7735
7736 *x = row->x;
7737 *y = row->y;
7738 *vpos = MATRIX_ROW_VPOS (row, w->current_matrix);
7739
7740 glyph = row->glyphs[TEXT_AREA];
7741 end = glyph + row->used[TEXT_AREA];
7742
7743 /* Skip over glyphs not having an object at the start of the row.
7744 These are special glyphs like truncation marks on terminal
7745 frames. */
7746 if (row->displays_text_p)
7747 while (glyph < end
7748 && INTEGERP (glyph->object)
7749 && !EQ (stop, glyph->object)
7750 && glyph->charpos < 0)
7751 {
7752 *x += glyph->pixel_width;
7753 ++glyph;
7754 }
7755
7756 while (glyph < end
7757 && !INTEGERP (glyph->object)
7758 && !EQ (stop, glyph->object)
7759 && (!BUFFERP (glyph->object)
7760 || glyph->charpos < charpos))
7761 {
7762 *x += glyph->pixel_width;
7763 ++glyph;
7764 }
7765
7766 *hpos = glyph - row->glyphs[TEXT_AREA];
7767 return past_end;
7768 }
7769
7770 #else /* not 0 */
7771
7772 static int
7773 fast_find_position (w, pos, hpos, vpos, x, y, stop)
7774 struct window *w;
7775 int pos;
7776 int *hpos, *vpos, *x, *y;
7777 Lisp_Object stop;
7778 {
7779 int i;
7780 int lastcol;
7781 int maybe_next_line_p = 0;
7782 int line_start_position;
7783 int yb = window_text_bottom_y (w);
7784 struct glyph_row *row, *best_row;
7785 int row_vpos, best_row_vpos;
7786 int current_x;
7787
7788 row = best_row = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
7789 row_vpos = best_row_vpos = MATRIX_ROW_VPOS (row, w->current_matrix);
7790
7791 while (row->y < yb)
7792 {
7793 if (row->used[TEXT_AREA])
7794 line_start_position = row->glyphs[TEXT_AREA]->charpos;
7795 else
7796 line_start_position = 0;
7797
7798 if (line_start_position > pos)
7799 break;
7800 /* If the position sought is the end of the buffer,
7801 don't include the blank lines at the bottom of the window. */
7802 else if (line_start_position == pos
7803 && pos == BUF_ZV (XBUFFER (w->buffer)))
7804 {
7805 maybe_next_line_p = 1;
7806 break;
7807 }
7808 else if (line_start_position > 0)
7809 {
7810 best_row = row;
7811 best_row_vpos = row_vpos;
7812 }
7813
7814 if (row->y + row->height >= yb)
7815 break;
7816
7817 ++row;
7818 ++row_vpos;
7819 }
7820
7821 /* Find the right column within BEST_ROW. */
7822 lastcol = 0;
7823 current_x = best_row->x;
7824 for (i = 0; i < best_row->used[TEXT_AREA]; i++)
7825 {
7826 struct glyph *glyph = best_row->glyphs[TEXT_AREA] + i;
7827 int charpos = glyph->charpos;
7828
7829 if (BUFFERP (glyph->object))
7830 {
7831 if (charpos == pos)
7832 {
7833 *hpos = i;
7834 *vpos = best_row_vpos;
7835 *x = current_x;
7836 *y = best_row->y;
7837 return 1;
7838 }
7839 else if (charpos > pos)
7840 break;
7841 }
7842 else if (EQ (glyph->object, stop))
7843 break;
7844
7845 if (charpos > 0)
7846 lastcol = i;
7847 current_x += glyph->pixel_width;
7848 }
7849
7850 /* If we're looking for the end of the buffer,
7851 and we didn't find it in the line we scanned,
7852 use the start of the following line. */
7853 if (maybe_next_line_p)
7854 {
7855 ++best_row;
7856 ++best_row_vpos;
7857 lastcol = 0;
7858 current_x = best_row->x;
7859 }
7860
7861 *vpos = best_row_vpos;
7862 *hpos = lastcol + 1;
7863 *x = current_x;
7864 *y = best_row->y;
7865 return 0;
7866 }
7867
7868 #endif /* not 0 */
7869
7870
7871 /* Find the position of the glyph for position POS in OBJECT in
7872 window W's current matrix, and return in *X, *Y the pixel
7873 coordinates, and return in *HPOS, *VPOS the column/row of the glyph.
7874
7875 RIGHT_P non-zero means return the position of the right edge of the
7876 glyph, RIGHT_P zero means return the left edge position.
7877
7878 If no glyph for POS exists in the matrix, return the position of
7879 the glyph with the next smaller position that is in the matrix, if
7880 RIGHT_P is zero. If RIGHT_P is non-zero, and no glyph for POS
7881 exists in the matrix, return the position of the glyph with the
7882 next larger position in OBJECT.
7883
7884 Value is non-zero if a glyph was found. */
7885
7886 static int
7887 fast_find_string_pos (w, pos, object, hpos, vpos, x, y, right_p)
7888 struct window *w;
7889 int pos;
7890 Lisp_Object object;
7891 int *hpos, *vpos, *x, *y;
7892 int right_p;
7893 {
7894 int yb = window_text_bottom_y (w);
7895 struct glyph_row *r;
7896 struct glyph *best_glyph = NULL;
7897 struct glyph_row *best_row = NULL;
7898 int best_x = 0;
7899
7900 for (r = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
7901 r->enabled_p && r->y < yb;
7902 ++r)
7903 {
7904 struct glyph *g = r->glyphs[TEXT_AREA];
7905 struct glyph *e = g + r->used[TEXT_AREA];
7906 int gx;
7907
7908 for (gx = r->x; g < e; gx += g->pixel_width, ++g)
7909 if (EQ (g->object, object))
7910 {
7911 if (g->charpos == pos)
7912 {
7913 best_glyph = g;
7914 best_x = gx;
7915 best_row = r;
7916 goto found;
7917 }
7918 else if (best_glyph == NULL
7919 || ((abs (g->charpos - pos)
7920 < abs (best_glyph->charpos - pos))
7921 && (right_p
7922 ? g->charpos < pos
7923 : g->charpos > pos)))
7924 {
7925 best_glyph = g;
7926 best_x = gx;
7927 best_row = r;
7928 }
7929 }
7930 }
7931
7932 found:
7933
7934 if (best_glyph)
7935 {
7936 *x = best_x;
7937 *hpos = best_glyph - best_row->glyphs[TEXT_AREA];
7938
7939 if (right_p)
7940 {
7941 *x += best_glyph->pixel_width;
7942 ++*hpos;
7943 }
7944
7945 *y = best_row->y;
7946 *vpos = best_row - w->current_matrix->rows;
7947 }
7948
7949 return best_glyph != NULL;
7950 }
7951
7952
7953 /* Display the active region described by mouse_face_*
7954 in its mouse-face if HL > 0, in its normal face if HL = 0. */
7955
7956 static void
7957 show_mouse_face (dpyinfo, draw)
7958 struct x_display_info *dpyinfo;
7959 enum draw_glyphs_face draw;
7960 {
7961 struct window *w = XWINDOW (dpyinfo->mouse_face_window);
7962 struct frame *f = XFRAME (WINDOW_FRAME (w));
7963
7964 if (/* If window is in the process of being destroyed, don't bother
7965 to do anything. */
7966 w->current_matrix != NULL
7967 /* Don't update mouse highlight if hidden */
7968 && (draw != DRAW_MOUSE_FACE || !dpyinfo->mouse_face_hidden)
7969 /* Recognize when we are called to operate on rows that don't exist
7970 anymore. This can happen when a window is split. */
7971 && dpyinfo->mouse_face_end_row < w->current_matrix->nrows)
7972 {
7973 int phys_cursor_on_p = w->phys_cursor_on_p;
7974 struct glyph_row *row, *first, *last;
7975
7976 first = MATRIX_ROW (w->current_matrix, dpyinfo->mouse_face_beg_row);
7977 last = MATRIX_ROW (w->current_matrix, dpyinfo->mouse_face_end_row);
7978
7979 for (row = first; row <= last && row->enabled_p; ++row)
7980 {
7981 int start_hpos, end_hpos, start_x;
7982
7983 /* For all but the first row, the highlight starts at column 0. */
7984 if (row == first)
7985 {
7986 start_hpos = dpyinfo->mouse_face_beg_col;
7987 start_x = dpyinfo->mouse_face_beg_x;
7988 }
7989 else
7990 {
7991 start_hpos = 0;
7992 start_x = 0;
7993 }
7994
7995 if (row == last)
7996 end_hpos = dpyinfo->mouse_face_end_col;
7997 else
7998 end_hpos = row->used[TEXT_AREA];
7999
8000 if (end_hpos > start_hpos)
8001 {
8002 x_draw_glyphs (w, start_x, row, TEXT_AREA,
8003 start_hpos, end_hpos, draw, 0);
8004
8005 row->mouse_face_p
8006 = draw == DRAW_MOUSE_FACE || draw == DRAW_IMAGE_RAISED;
8007 }
8008 }
8009
8010 /* When we've written over the cursor, arrange for it to
8011 be displayed again. */
8012 if (phys_cursor_on_p && !w->phys_cursor_on_p)
8013 x_display_cursor (w, 1,
8014 w->phys_cursor.hpos, w->phys_cursor.vpos,
8015 w->phys_cursor.x, w->phys_cursor.y);
8016 }
8017
8018 /* Change the mouse cursor. */
8019 if (draw == DRAW_NORMAL_TEXT)
8020 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
8021 f->output_data.x->text_cursor);
8022 else if (draw == DRAW_MOUSE_FACE)
8023 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
8024 f->output_data.x->cross_cursor);
8025 else
8026 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
8027 f->output_data.x->nontext_cursor);
8028 }
8029
8030 /* Clear out the mouse-highlighted active region.
8031 Redraw it un-highlighted first. Value is non-zero if mouse
8032 face was actually drawn unhighlighted. */
8033
8034 static int
8035 clear_mouse_face (dpyinfo)
8036 struct x_display_info *dpyinfo;
8037 {
8038 int cleared = 0;
8039
8040 if (!NILP (dpyinfo->mouse_face_window))
8041 {
8042 show_mouse_face (dpyinfo, DRAW_NORMAL_TEXT);
8043 cleared = 1;
8044 }
8045
8046 dpyinfo->mouse_face_beg_row = dpyinfo->mouse_face_beg_col = -1;
8047 dpyinfo->mouse_face_end_row = dpyinfo->mouse_face_end_col = -1;
8048 dpyinfo->mouse_face_window = Qnil;
8049 dpyinfo->mouse_face_overlay = Qnil;
8050 return cleared;
8051 }
8052
8053
8054 /* Clear any mouse-face on window W. This function is part of the
8055 redisplay interface, and is called from try_window_id and similar
8056 functions to ensure the mouse-highlight is off. */
8057
8058 static void
8059 x_clear_mouse_face (w)
8060 struct window *w;
8061 {
8062 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (XFRAME (w->frame));
8063 Lisp_Object window;
8064
8065 BLOCK_INPUT;
8066 XSETWINDOW (window, w);
8067 if (EQ (window, dpyinfo->mouse_face_window))
8068 clear_mouse_face (dpyinfo);
8069 UNBLOCK_INPUT;
8070 }
8071
8072
8073 /* Just discard the mouse face information for frame F, if any.
8074 This is used when the size of F is changed. */
8075
8076 void
8077 cancel_mouse_face (f)
8078 FRAME_PTR f;
8079 {
8080 Lisp_Object window;
8081 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
8082
8083 window = dpyinfo->mouse_face_window;
8084 if (! NILP (window) && XFRAME (XWINDOW (window)->frame) == f)
8085 {
8086 dpyinfo->mouse_face_beg_row = dpyinfo->mouse_face_beg_col = -1;
8087 dpyinfo->mouse_face_end_row = dpyinfo->mouse_face_end_col = -1;
8088 dpyinfo->mouse_face_window = Qnil;
8089 }
8090 }
8091
8092 \f
8093 static int glyph_rect P_ ((struct frame *f, int, int, XRectangle *));
8094
8095
8096 /* Try to determine frame pixel position and size of the glyph under
8097 frame pixel coordinates X/Y on frame F . Return the position and
8098 size in *RECT. Value is non-zero if we could compute these
8099 values. */
8100
8101 static int
8102 glyph_rect (f, x, y, rect)
8103 struct frame *f;
8104 int x, y;
8105 XRectangle *rect;
8106 {
8107 Lisp_Object window;
8108 int part, found = 0;
8109
8110 window = window_from_coordinates (f, x, y, &part, 0);
8111 if (!NILP (window))
8112 {
8113 struct window *w = XWINDOW (window);
8114 struct glyph_row *r = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
8115 struct glyph_row *end = r + w->current_matrix->nrows - 1;
8116
8117 frame_to_window_pixel_xy (w, &x, &y);
8118
8119 for (; !found && r < end && r->enabled_p; ++r)
8120 if (r->y >= y)
8121 {
8122 struct glyph *g = r->glyphs[TEXT_AREA];
8123 struct glyph *end = g + r->used[TEXT_AREA];
8124 int gx;
8125
8126 for (gx = r->x; !found && g < end; gx += g->pixel_width, ++g)
8127 if (gx >= x)
8128 {
8129 rect->width = g->pixel_width;
8130 rect->height = r->height;
8131 rect->x = WINDOW_TO_FRAME_PIXEL_X (w, gx);
8132 rect->y = WINDOW_TO_FRAME_PIXEL_Y (w, r->y);
8133 found = 1;
8134 }
8135 }
8136 }
8137
8138 return found;
8139 }
8140
8141
8142 /* Return the current position of the mouse.
8143 *FP should be a frame which indicates which display to ask about.
8144
8145 If the mouse movement started in a scroll bar, set *FP, *BAR_WINDOW,
8146 and *PART to the frame, window, and scroll bar part that the mouse
8147 is over. Set *X and *Y to the portion and whole of the mouse's
8148 position on the scroll bar.
8149
8150 If the mouse movement started elsewhere, set *FP to the frame the
8151 mouse is on, *BAR_WINDOW to nil, and *X and *Y to the character cell
8152 the mouse is over.
8153
8154 Set *TIME to the server time-stamp for the time at which the mouse
8155 was at this position.
8156
8157 Don't store anything if we don't have a valid set of values to report.
8158
8159 This clears the mouse_moved flag, so we can wait for the next mouse
8160 movement. */
8161
8162 static void
8163 XTmouse_position (fp, insist, bar_window, part, x, y, time)
8164 FRAME_PTR *fp;
8165 int insist;
8166 Lisp_Object *bar_window;
8167 enum scroll_bar_part *part;
8168 Lisp_Object *x, *y;
8169 unsigned long *time;
8170 {
8171 FRAME_PTR f1;
8172
8173 BLOCK_INPUT;
8174
8175 if (! NILP (last_mouse_scroll_bar) && insist == 0)
8176 x_scroll_bar_report_motion (fp, bar_window, part, x, y, time);
8177 else
8178 {
8179 Window root;
8180 int root_x, root_y;
8181
8182 Window dummy_window;
8183 int dummy;
8184
8185 Lisp_Object frame, tail;
8186
8187 /* Clear the mouse-moved flag for every frame on this display. */
8188 FOR_EACH_FRAME (tail, frame)
8189 if (FRAME_X_DISPLAY (XFRAME (frame)) == FRAME_X_DISPLAY (*fp))
8190 XFRAME (frame)->mouse_moved = 0;
8191
8192 last_mouse_scroll_bar = Qnil;
8193
8194 /* Figure out which root window we're on. */
8195 XQueryPointer (FRAME_X_DISPLAY (*fp),
8196 DefaultRootWindow (FRAME_X_DISPLAY (*fp)),
8197
8198 /* The root window which contains the pointer. */
8199 &root,
8200
8201 /* Trash which we can't trust if the pointer is on
8202 a different screen. */
8203 &dummy_window,
8204
8205 /* The position on that root window. */
8206 &root_x, &root_y,
8207
8208 /* More trash we can't trust. */
8209 &dummy, &dummy,
8210
8211 /* Modifier keys and pointer buttons, about which
8212 we don't care. */
8213 (unsigned int *) &dummy);
8214
8215 /* Now we have a position on the root; find the innermost window
8216 containing the pointer. */
8217 {
8218 Window win, child;
8219 int win_x, win_y;
8220 int parent_x = 0, parent_y = 0;
8221 int count;
8222
8223 win = root;
8224
8225 /* XTranslateCoordinates can get errors if the window
8226 structure is changing at the same time this function
8227 is running. So at least we must not crash from them. */
8228
8229 count = x_catch_errors (FRAME_X_DISPLAY (*fp));
8230
8231 if (FRAME_X_DISPLAY_INFO (*fp)->grabbed && last_mouse_frame
8232 && FRAME_LIVE_P (last_mouse_frame))
8233 {
8234 /* If mouse was grabbed on a frame, give coords for that frame
8235 even if the mouse is now outside it. */
8236 XTranslateCoordinates (FRAME_X_DISPLAY (*fp),
8237
8238 /* From-window, to-window. */
8239 root, FRAME_X_WINDOW (last_mouse_frame),
8240
8241 /* From-position, to-position. */
8242 root_x, root_y, &win_x, &win_y,
8243
8244 /* Child of win. */
8245 &child);
8246 f1 = last_mouse_frame;
8247 }
8248 else
8249 {
8250 while (1)
8251 {
8252 XTranslateCoordinates (FRAME_X_DISPLAY (*fp),
8253
8254 /* From-window, to-window. */
8255 root, win,
8256
8257 /* From-position, to-position. */
8258 root_x, root_y, &win_x, &win_y,
8259
8260 /* Child of win. */
8261 &child);
8262
8263 if (child == None || child == win)
8264 break;
8265
8266 win = child;
8267 parent_x = win_x;
8268 parent_y = win_y;
8269 }
8270
8271 /* Now we know that:
8272 win is the innermost window containing the pointer
8273 (XTC says it has no child containing the pointer),
8274 win_x and win_y are the pointer's position in it
8275 (XTC did this the last time through), and
8276 parent_x and parent_y are the pointer's position in win's parent.
8277 (They are what win_x and win_y were when win was child.
8278 If win is the root window, it has no parent, and
8279 parent_{x,y} are invalid, but that's okay, because we'll
8280 never use them in that case.) */
8281
8282 /* Is win one of our frames? */
8283 f1 = x_any_window_to_frame (FRAME_X_DISPLAY_INFO (*fp), win);
8284
8285 #ifdef USE_X_TOOLKIT
8286 /* If we end up with the menu bar window, say it's not
8287 on the frame. */
8288 if (f1 != NULL
8289 && f1->output_data.x->menubar_widget
8290 && win == XtWindow (f1->output_data.x->menubar_widget))
8291 f1 = NULL;
8292 #endif /* USE_X_TOOLKIT */
8293 }
8294
8295 if (x_had_errors_p (FRAME_X_DISPLAY (*fp)))
8296 f1 = 0;
8297
8298 x_uncatch_errors (FRAME_X_DISPLAY (*fp), count);
8299
8300 /* If not, is it one of our scroll bars? */
8301 if (! f1)
8302 {
8303 struct scroll_bar *bar = x_window_to_scroll_bar (win);
8304
8305 if (bar)
8306 {
8307 f1 = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
8308 win_x = parent_x;
8309 win_y = parent_y;
8310 }
8311 }
8312
8313 if (f1 == 0 && insist > 0)
8314 f1 = SELECTED_FRAME ();
8315
8316 if (f1)
8317 {
8318 /* Ok, we found a frame. Store all the values.
8319 last_mouse_glyph is a rectangle used to reduce the
8320 generation of mouse events. To not miss any motion
8321 events, we must divide the frame into rectangles of the
8322 size of the smallest character that could be displayed
8323 on it, i.e. into the same rectangles that matrices on
8324 the frame are divided into. */
8325
8326 int width, height, gx, gy;
8327 XRectangle rect;
8328
8329 if (glyph_rect (f1, win_x, win_y, &rect))
8330 last_mouse_glyph = rect;
8331 else
8332 {
8333 width = FRAME_SMALLEST_CHAR_WIDTH (f1);
8334 height = FRAME_SMALLEST_FONT_HEIGHT (f1);
8335 gx = win_x;
8336 gy = win_y;
8337
8338 /* Arrange for the division in PIXEL_TO_CHAR_COL etc. to
8339 round down even for negative values. */
8340 if (gx < 0)
8341 gx -= width - 1;
8342 if (gy < 0)
8343 gy -= height - 1;
8344 gx = (gx + width - 1) / width * width;
8345 gy = (gy + height - 1) / height * height;
8346
8347 last_mouse_glyph.width = width;
8348 last_mouse_glyph.height = height;
8349 last_mouse_glyph.x = gx;
8350 last_mouse_glyph.y = gy;
8351 }
8352
8353 *bar_window = Qnil;
8354 *part = 0;
8355 *fp = f1;
8356 XSETINT (*x, win_x);
8357 XSETINT (*y, win_y);
8358 *time = last_mouse_movement_time;
8359 }
8360 }
8361 }
8362
8363 UNBLOCK_INPUT;
8364 }
8365
8366
8367 #ifdef USE_X_TOOLKIT
8368
8369 /* Atimer callback function for TIMER. Called every 0.1s to process
8370 Xt timeouts, if needed. We must avoid calling XtAppPending as
8371 much as possible because that function does an implicit XFlush
8372 that slows us down. */
8373
8374 static void
8375 x_process_timeouts (timer)
8376 struct atimer *timer;
8377 {
8378 if (toolkit_scroll_bar_interaction || popup_activated_flag)
8379 {
8380 BLOCK_INPUT;
8381 while (XtAppPending (Xt_app_con) & XtIMTimer)
8382 XtAppProcessEvent (Xt_app_con, XtIMTimer);
8383 UNBLOCK_INPUT;
8384 }
8385 }
8386
8387 #endif /* USE_X_TOOLKIT */
8388
8389 \f
8390 /* Scroll bar support. */
8391
8392 /* Given an X window ID, find the struct scroll_bar which manages it.
8393 This can be called in GC, so we have to make sure to strip off mark
8394 bits. */
8395
8396 static struct scroll_bar *
8397 x_window_to_scroll_bar (window_id)
8398 Window window_id;
8399 {
8400 Lisp_Object tail;
8401
8402 for (tail = Vframe_list;
8403 XGCTYPE (tail) == Lisp_Cons;
8404 tail = XCDR (tail))
8405 {
8406 Lisp_Object frame, bar, condemned;
8407
8408 frame = XCAR (tail);
8409 /* All elements of Vframe_list should be frames. */
8410 if (! GC_FRAMEP (frame))
8411 abort ();
8412
8413 /* Scan this frame's scroll bar list for a scroll bar with the
8414 right window ID. */
8415 condemned = FRAME_CONDEMNED_SCROLL_BARS (XFRAME (frame));
8416 for (bar = FRAME_SCROLL_BARS (XFRAME (frame));
8417 /* This trick allows us to search both the ordinary and
8418 condemned scroll bar lists with one loop. */
8419 ! GC_NILP (bar) || (bar = condemned,
8420 condemned = Qnil,
8421 ! GC_NILP (bar));
8422 bar = XSCROLL_BAR (bar)->next)
8423 if (SCROLL_BAR_X_WINDOW (XSCROLL_BAR (bar)) == window_id)
8424 return XSCROLL_BAR (bar);
8425 }
8426
8427 return 0;
8428 }
8429
8430
8431 #if defined USE_LUCID
8432
8433 /* Return the Lucid menu bar WINDOW is part of. Return null
8434 if WINDOW is not part of a menu bar. */
8435
8436 static Widget
8437 x_window_to_menu_bar (window)
8438 Window window;
8439 {
8440 Lisp_Object tail;
8441
8442 for (tail = Vframe_list;
8443 XGCTYPE (tail) == Lisp_Cons;
8444 tail = XCDR (tail))
8445 {
8446 Lisp_Object frame = XCAR (tail);
8447 Widget menu_bar = XFRAME (frame)->output_data.x->menubar_widget;
8448
8449 if (menu_bar && xlwmenu_window_p (menu_bar, window))
8450 return menu_bar;
8451 }
8452
8453 return NULL;
8454 }
8455
8456 #endif /* USE_LUCID */
8457
8458 \f
8459 /************************************************************************
8460 Toolkit scroll bars
8461 ************************************************************************/
8462
8463 #ifdef USE_TOOLKIT_SCROLL_BARS
8464
8465 static void x_scroll_bar_to_input_event P_ ((XEvent *, struct input_event *));
8466 static void x_send_scroll_bar_event P_ ((Lisp_Object, int, int, int));
8467 static void x_create_toolkit_scroll_bar P_ ((struct frame *,
8468 struct scroll_bar *));
8469 static void x_set_toolkit_scroll_bar_thumb P_ ((struct scroll_bar *,
8470 int, int, int));
8471
8472
8473 /* Id of action hook installed for scroll bars. */
8474
8475 static XtActionHookId action_hook_id;
8476
8477 /* Lisp window being scrolled. Set when starting to interact with
8478 a toolkit scroll bar, reset to nil when ending the interaction. */
8479
8480 static Lisp_Object window_being_scrolled;
8481
8482 /* Last scroll bar part sent in xm_scroll_callback. */
8483
8484 static int last_scroll_bar_part;
8485
8486 /* Whether this is an Xaw with arrow-scrollbars. This should imply
8487 that movements of 1/20 of the screen size are mapped to up/down. */
8488
8489 static Boolean xaw3d_arrow_scroll;
8490
8491 /* Whether the drag scrolling maintains the mouse at the top of the
8492 thumb. If not, resizing the thumb needs to be done more carefully
8493 to avoid jerkyness. */
8494
8495 static Boolean xaw3d_pick_top;
8496
8497
8498 /* Action hook installed via XtAppAddActionHook when toolkit scroll
8499 bars are used.. The hook is responsible for detecting when
8500 the user ends an interaction with the scroll bar, and generates
8501 a `end-scroll' SCROLL_BAR_CLICK_EVENT' event if so. */
8502
8503 static void
8504 xt_action_hook (widget, client_data, action_name, event, params,
8505 num_params)
8506 Widget widget;
8507 XtPointer client_data;
8508 String action_name;
8509 XEvent *event;
8510 String *params;
8511 Cardinal *num_params;
8512 {
8513 int scroll_bar_p;
8514 char *end_action;
8515
8516 #ifdef USE_MOTIF
8517 scroll_bar_p = XmIsScrollBar (widget);
8518 end_action = "Release";
8519 #else /* !USE_MOTIF i.e. use Xaw */
8520 scroll_bar_p = XtIsSubclass (widget, scrollbarWidgetClass);
8521 end_action = "EndScroll";
8522 #endif /* USE_MOTIF */
8523
8524 if (scroll_bar_p
8525 && strcmp (action_name, end_action) == 0
8526 && WINDOWP (window_being_scrolled))
8527 {
8528 struct window *w;
8529
8530 x_send_scroll_bar_event (window_being_scrolled,
8531 scroll_bar_end_scroll, 0, 0);
8532 w = XWINDOW (window_being_scrolled);
8533 XSCROLL_BAR (w->vertical_scroll_bar)->dragging = Qnil;
8534 window_being_scrolled = Qnil;
8535 last_scroll_bar_part = -1;
8536
8537 /* Xt timeouts no longer needed. */
8538 toolkit_scroll_bar_interaction = 0;
8539 }
8540 }
8541
8542 /* A vector of windows used for communication between
8543 x_send_scroll_bar_event and x_scroll_bar_to_input_event. */
8544
8545 static struct window **scroll_bar_windows;
8546 static int scroll_bar_windows_size;
8547
8548
8549 /* Send a client message with message type Xatom_Scrollbar for a
8550 scroll action to the frame of WINDOW. PART is a value identifying
8551 the part of the scroll bar that was clicked on. PORTION is the
8552 amount to scroll of a whole of WHOLE. */
8553
8554 static void
8555 x_send_scroll_bar_event (window, part, portion, whole)
8556 Lisp_Object window;
8557 int part, portion, whole;
8558 {
8559 XEvent event;
8560 XClientMessageEvent *ev = (XClientMessageEvent *) &event;
8561 struct window *w = XWINDOW (window);
8562 struct frame *f = XFRAME (w->frame);
8563 int i;
8564
8565 BLOCK_INPUT;
8566
8567 /* Construct a ClientMessage event to send to the frame. */
8568 ev->type = ClientMessage;
8569 ev->message_type = FRAME_X_DISPLAY_INFO (f)->Xatom_Scrollbar;
8570 ev->display = FRAME_X_DISPLAY (f);
8571 ev->window = FRAME_X_WINDOW (f);
8572 ev->format = 32;
8573
8574 /* We can only transfer 32 bits in the XClientMessageEvent, which is
8575 not enough to store a pointer or Lisp_Object on a 64 bit system.
8576 So, store the window in scroll_bar_windows and pass the index
8577 into that array in the event. */
8578 for (i = 0; i < scroll_bar_windows_size; ++i)
8579 if (scroll_bar_windows[i] == NULL)
8580 break;
8581
8582 if (i == scroll_bar_windows_size)
8583 {
8584 int new_size = max (10, 2 * scroll_bar_windows_size);
8585 size_t nbytes = new_size * sizeof *scroll_bar_windows;
8586 size_t old_nbytes = scroll_bar_windows_size * sizeof *scroll_bar_windows;
8587
8588 scroll_bar_windows = (struct window **) xrealloc (scroll_bar_windows,
8589 nbytes);
8590 bzero (&scroll_bar_windows[i], nbytes - old_nbytes);
8591 scroll_bar_windows_size = new_size;
8592 }
8593
8594 scroll_bar_windows[i] = w;
8595 ev->data.l[0] = (long) i;
8596 ev->data.l[1] = (long) part;
8597 ev->data.l[2] = (long) 0;
8598 ev->data.l[3] = (long) portion;
8599 ev->data.l[4] = (long) whole;
8600
8601 /* Make Xt timeouts work while the scroll bar is active. */
8602 toolkit_scroll_bar_interaction = 1;
8603
8604 /* Setting the event mask to zero means that the message will
8605 be sent to the client that created the window, and if that
8606 window no longer exists, no event will be sent. */
8607 XSendEvent (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), False, 0, &event);
8608 UNBLOCK_INPUT;
8609 }
8610
8611
8612 /* Transform a scroll bar ClientMessage EVENT to an Emacs input event
8613 in *IEVENT. */
8614
8615 static void
8616 x_scroll_bar_to_input_event (event, ievent)
8617 XEvent *event;
8618 struct input_event *ievent;
8619 {
8620 XClientMessageEvent *ev = (XClientMessageEvent *) event;
8621 Lisp_Object window;
8622 struct frame *f;
8623 struct window *w;
8624
8625 w = scroll_bar_windows[ev->data.l[0]];
8626 scroll_bar_windows[ev->data.l[0]] = NULL;
8627
8628 XSETWINDOW (window, w);
8629 f = XFRAME (w->frame);
8630
8631 ievent->kind = SCROLL_BAR_CLICK_EVENT;
8632 ievent->frame_or_window = window;
8633 ievent->arg = Qnil;
8634 ievent->timestamp = XtLastTimestampProcessed (FRAME_X_DISPLAY (f));
8635 ievent->part = ev->data.l[1];
8636 ievent->code = ev->data.l[2];
8637 ievent->x = make_number ((int) ev->data.l[3]);
8638 ievent->y = make_number ((int) ev->data.l[4]);
8639 ievent->modifiers = 0;
8640 }
8641
8642
8643 #ifdef USE_MOTIF
8644
8645 /* Minimum and maximum values used for Motif scroll bars. */
8646
8647 #define XM_SB_MIN 1
8648 #define XM_SB_MAX 10000000
8649 #define XM_SB_RANGE (XM_SB_MAX - XM_SB_MIN)
8650
8651
8652 /* Scroll bar callback for Motif scroll bars. WIDGET is the scroll
8653 bar widget. CLIENT_DATA is a pointer to the scroll_bar structure.
8654 CALL_DATA is a pointer to a XmScrollBarCallbackStruct. */
8655
8656 static void
8657 xm_scroll_callback (widget, client_data, call_data)
8658 Widget widget;
8659 XtPointer client_data, call_data;
8660 {
8661 struct scroll_bar *bar = (struct scroll_bar *) client_data;
8662 XmScrollBarCallbackStruct *cs = (XmScrollBarCallbackStruct *) call_data;
8663 int part = -1, whole = 0, portion = 0;
8664
8665 switch (cs->reason)
8666 {
8667 case XmCR_DECREMENT:
8668 bar->dragging = Qnil;
8669 part = scroll_bar_up_arrow;
8670 break;
8671
8672 case XmCR_INCREMENT:
8673 bar->dragging = Qnil;
8674 part = scroll_bar_down_arrow;
8675 break;
8676
8677 case XmCR_PAGE_DECREMENT:
8678 bar->dragging = Qnil;
8679 part = scroll_bar_above_handle;
8680 break;
8681
8682 case XmCR_PAGE_INCREMENT:
8683 bar->dragging = Qnil;
8684 part = scroll_bar_below_handle;
8685 break;
8686
8687 case XmCR_TO_TOP:
8688 bar->dragging = Qnil;
8689 part = scroll_bar_to_top;
8690 break;
8691
8692 case XmCR_TO_BOTTOM:
8693 bar->dragging = Qnil;
8694 part = scroll_bar_to_bottom;
8695 break;
8696
8697 case XmCR_DRAG:
8698 {
8699 int slider_size;
8700 int dragging_down_p = (INTEGERP (bar->dragging)
8701 && XINT (bar->dragging) <= cs->value);
8702
8703 /* Get the slider size. */
8704 BLOCK_INPUT;
8705 XtVaGetValues (widget, XmNsliderSize, &slider_size, NULL);
8706 UNBLOCK_INPUT;
8707
8708 whole = XM_SB_RANGE - slider_size;
8709 portion = min (cs->value - XM_SB_MIN, whole);
8710 part = scroll_bar_handle;
8711 bar->dragging = make_number (cs->value);
8712 }
8713 break;
8714
8715 case XmCR_VALUE_CHANGED:
8716 break;
8717 };
8718
8719 if (part >= 0)
8720 {
8721 window_being_scrolled = bar->window;
8722 last_scroll_bar_part = part;
8723 x_send_scroll_bar_event (bar->window, part, portion, whole);
8724 }
8725 }
8726
8727
8728 #else /* !USE_MOTIF, i.e. Xaw. */
8729
8730
8731 /* Xaw scroll bar callback. Invoked when the thumb is dragged.
8732 WIDGET is the scroll bar widget. CLIENT_DATA is a pointer to the
8733 scroll bar struct. CALL_DATA is a pointer to a float saying where
8734 the thumb is. */
8735
8736 static void
8737 xaw_jump_callback (widget, client_data, call_data)
8738 Widget widget;
8739 XtPointer client_data, call_data;
8740 {
8741 struct scroll_bar *bar = (struct scroll_bar *) client_data;
8742 float top = *(float *) call_data;
8743 float shown;
8744 int whole, portion, height;
8745 int part;
8746
8747 /* Get the size of the thumb, a value between 0 and 1. */
8748 BLOCK_INPUT;
8749 XtVaGetValues (widget, XtNshown, &shown, XtNheight, &height, NULL);
8750 UNBLOCK_INPUT;
8751
8752 whole = 10000000;
8753 portion = shown < 1 ? top * whole : 0;
8754
8755 if (shown < 1 && (abs (top + shown - 1) < 1.0/height))
8756 /* Some derivatives of Xaw refuse to shrink the thumb when you reach
8757 the bottom, so we force the scrolling whenever we see that we're
8758 too close to the bottom (in x_set_toolkit_scroll_bar_thumb
8759 we try to ensure that we always stay two pixels away from the
8760 bottom). */
8761 part = scroll_bar_down_arrow;
8762 else
8763 part = scroll_bar_handle;
8764
8765 window_being_scrolled = bar->window;
8766 bar->dragging = make_number (portion);
8767 last_scroll_bar_part = part;
8768 x_send_scroll_bar_event (bar->window, part, portion, whole);
8769 }
8770
8771
8772 /* Xaw scroll bar callback. Invoked for incremental scrolling.,
8773 i.e. line or page up or down. WIDGET is the Xaw scroll bar
8774 widget. CLIENT_DATA is a pointer to the scroll_bar structure for
8775 the scroll bar. CALL_DATA is an integer specifying the action that
8776 has taken place. It's magnitude is in the range 0..height of the
8777 scroll bar. Negative values mean scroll towards buffer start.
8778 Values < height of scroll bar mean line-wise movement. */
8779
8780 static void
8781 xaw_scroll_callback (widget, client_data, call_data)
8782 Widget widget;
8783 XtPointer client_data, call_data;
8784 {
8785 struct scroll_bar *bar = (struct scroll_bar *) client_data;
8786 int position = (int) call_data;
8787 Dimension height;
8788 int part;
8789
8790 /* Get the height of the scroll bar. */
8791 BLOCK_INPUT;
8792 XtVaGetValues (widget, XtNheight, &height, NULL);
8793 UNBLOCK_INPUT;
8794
8795 if (abs (position) >= height)
8796 part = (position < 0) ? scroll_bar_above_handle : scroll_bar_below_handle;
8797
8798 /* If Xaw3d was compiled with ARROW_SCROLLBAR,
8799 it maps line-movement to call_data = max(5, height/20). */
8800 else if (xaw3d_arrow_scroll && abs (position) <= max (5, height / 20))
8801 part = (position < 0) ? scroll_bar_up_arrow : scroll_bar_down_arrow;
8802 else
8803 part = scroll_bar_move_ratio;
8804
8805 window_being_scrolled = bar->window;
8806 bar->dragging = Qnil;
8807 last_scroll_bar_part = part;
8808 x_send_scroll_bar_event (bar->window, part, position, height);
8809 }
8810
8811
8812 #endif /* not USE_MOTIF */
8813
8814
8815 /* Create the widget for scroll bar BAR on frame F. Record the widget
8816 and X window of the scroll bar in BAR. */
8817
8818 static void
8819 x_create_toolkit_scroll_bar (f, bar)
8820 struct frame *f;
8821 struct scroll_bar *bar;
8822 {
8823 Window xwindow;
8824 Widget widget;
8825 Arg av[20];
8826 int ac = 0;
8827 char *scroll_bar_name = "verticalScrollBar";
8828 unsigned long pixel;
8829
8830 BLOCK_INPUT;
8831
8832 #ifdef USE_MOTIF
8833 /* Set resources. Create the widget. */
8834 XtSetArg (av[ac], XtNmappedWhenManaged, False); ++ac;
8835 XtSetArg (av[ac], XmNminimum, XM_SB_MIN); ++ac;
8836 XtSetArg (av[ac], XmNmaximum, XM_SB_MAX); ++ac;
8837 XtSetArg (av[ac], XmNorientation, XmVERTICAL); ++ac;
8838 XtSetArg (av[ac], XmNprocessingDirection, XmMAX_ON_BOTTOM), ++ac;
8839 XtSetArg (av[ac], XmNincrement, 1); ++ac;
8840 XtSetArg (av[ac], XmNpageIncrement, 1); ++ac;
8841
8842 pixel = f->output_data.x->scroll_bar_foreground_pixel;
8843 if (pixel != -1)
8844 {
8845 XtSetArg (av[ac], XmNforeground, pixel);
8846 ++ac;
8847 }
8848
8849 pixel = f->output_data.x->scroll_bar_background_pixel;
8850 if (pixel != -1)
8851 {
8852 XtSetArg (av[ac], XmNbackground, pixel);
8853 ++ac;
8854 }
8855
8856 widget = XmCreateScrollBar (f->output_data.x->edit_widget,
8857 scroll_bar_name, av, ac);
8858
8859 /* Add one callback for everything that can happen. */
8860 XtAddCallback (widget, XmNdecrementCallback, xm_scroll_callback,
8861 (XtPointer) bar);
8862 XtAddCallback (widget, XmNdragCallback, xm_scroll_callback,
8863 (XtPointer) bar);
8864 XtAddCallback (widget, XmNincrementCallback, xm_scroll_callback,
8865 (XtPointer) bar);
8866 XtAddCallback (widget, XmNpageDecrementCallback, xm_scroll_callback,
8867 (XtPointer) bar);
8868 XtAddCallback (widget, XmNpageIncrementCallback, xm_scroll_callback,
8869 (XtPointer) bar);
8870 XtAddCallback (widget, XmNtoBottomCallback, xm_scroll_callback,
8871 (XtPointer) bar);
8872 XtAddCallback (widget, XmNtoTopCallback, xm_scroll_callback,
8873 (XtPointer) bar);
8874
8875 /* Realize the widget. Only after that is the X window created. */
8876 XtRealizeWidget (widget);
8877
8878 /* Set the cursor to an arrow. I didn't find a resource to do that.
8879 And I'm wondering why it hasn't an arrow cursor by default. */
8880 XDefineCursor (XtDisplay (widget), XtWindow (widget),
8881 f->output_data.x->nontext_cursor);
8882
8883 #else /* !USE_MOTIF i.e. use Xaw */
8884
8885 /* Set resources. Create the widget. The background of the
8886 Xaw3d scroll bar widget is a little bit light for my taste.
8887 We don't alter it here to let users change it according
8888 to their taste with `emacs*verticalScrollBar.background: xxx'. */
8889 XtSetArg (av[ac], XtNmappedWhenManaged, False); ++ac;
8890 XtSetArg (av[ac], XtNorientation, XtorientVertical); ++ac;
8891 /* For smoother scrolling with Xaw3d -sm */
8892 /* XtSetArg (av[ac], XtNpickTop, True); ++ac; */
8893
8894 pixel = f->output_data.x->scroll_bar_foreground_pixel;
8895 if (pixel != -1)
8896 {
8897 XtSetArg (av[ac], XtNforeground, pixel);
8898 ++ac;
8899 }
8900
8901 pixel = f->output_data.x->scroll_bar_background_pixel;
8902 if (pixel != -1)
8903 {
8904 XtSetArg (av[ac], XtNbackground, pixel);
8905 ++ac;
8906 }
8907
8908 /* Top/bottom shadow colors. */
8909
8910 /* Allocate them, if necessary. */
8911 if (f->output_data.x->scroll_bar_top_shadow_pixel == -1)
8912 {
8913 pixel = f->output_data.x->scroll_bar_background_pixel;
8914 if (!x_alloc_lighter_color (f, FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f),
8915 &pixel, 1.2, 0x8000))
8916 pixel = -1;
8917 f->output_data.x->scroll_bar_top_shadow_pixel = pixel;
8918 }
8919 if (f->output_data.x->scroll_bar_bottom_shadow_pixel == -1)
8920 {
8921 pixel = f->output_data.x->scroll_bar_background_pixel;
8922 if (!x_alloc_lighter_color (f, FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f),
8923 &pixel, 0.6, 0x4000))
8924 pixel = -1;
8925 f->output_data.x->scroll_bar_bottom_shadow_pixel = pixel;
8926 }
8927
8928 /* Tell the toolkit about them. */
8929 if (f->output_data.x->scroll_bar_top_shadow_pixel == -1
8930 || f->output_data.x->scroll_bar_bottom_shadow_pixel == -1)
8931 /* We tried to allocate a color for the top/bottom shadow, and
8932 failed, so tell Xaw3d to use dithering instead. */
8933 {
8934 XtSetArg (av[ac], XtNbeNiceToColormap, True);
8935 ++ac;
8936 }
8937 else
8938 /* Tell what colors Xaw3d should use for the top/bottom shadow, to
8939 be more consistent with other emacs 3d colors, and since Xaw3d is
8940 not good at dealing with allocation failure. */
8941 {
8942 /* This tells Xaw3d to use real colors instead of dithering for
8943 the shadows. */
8944 XtSetArg (av[ac], XtNbeNiceToColormap, False);
8945 ++ac;
8946
8947 /* Specify the colors. */
8948 pixel = f->output_data.x->scroll_bar_top_shadow_pixel;
8949 if (pixel != -1)
8950 {
8951 XtSetArg (av[ac], "topShadowPixel", pixel);
8952 ++ac;
8953 }
8954 pixel = f->output_data.x->scroll_bar_bottom_shadow_pixel;
8955 if (pixel != -1)
8956 {
8957 XtSetArg (av[ac], "bottomShadowPixel", pixel);
8958 ++ac;
8959 }
8960 }
8961
8962 widget = XtCreateWidget (scroll_bar_name, scrollbarWidgetClass,
8963 f->output_data.x->edit_widget, av, ac);
8964
8965 {
8966 char *initial = "";
8967 char *val = initial;
8968 XtVaGetValues (widget, XtNscrollVCursor, (XtPointer) &val,
8969 XtNpickTop, (XtPointer) &xaw3d_pick_top, NULL);
8970 if (val == initial)
8971 { /* ARROW_SCROLL */
8972 xaw3d_arrow_scroll = True;
8973 /* Isn't that just a personal preference ? -sm */
8974 XtVaSetValues (widget, XtNcursorName, "top_left_arrow", NULL);
8975 }
8976 }
8977
8978 /* Define callbacks. */
8979 XtAddCallback (widget, XtNjumpProc, xaw_jump_callback, (XtPointer) bar);
8980 XtAddCallback (widget, XtNscrollProc, xaw_scroll_callback,
8981 (XtPointer) bar);
8982
8983 /* Realize the widget. Only after that is the X window created. */
8984 XtRealizeWidget (widget);
8985
8986 #endif /* !USE_MOTIF */
8987
8988 /* Install an action hook that lets us detect when the user
8989 finishes interacting with a scroll bar. */
8990 if (action_hook_id == 0)
8991 action_hook_id = XtAppAddActionHook (Xt_app_con, xt_action_hook, 0);
8992
8993 /* Remember X window and widget in the scroll bar vector. */
8994 SET_SCROLL_BAR_X_WIDGET (bar, widget);
8995 xwindow = XtWindow (widget);
8996 SET_SCROLL_BAR_X_WINDOW (bar, xwindow);
8997
8998 UNBLOCK_INPUT;
8999 }
9000
9001
9002 /* Set the thumb size and position of scroll bar BAR. We are currently
9003 displaying PORTION out of a whole WHOLE, and our position POSITION. */
9004
9005 static void
9006 x_set_toolkit_scroll_bar_thumb (bar, portion, position, whole)
9007 struct scroll_bar *bar;
9008 int portion, position, whole;
9009 {
9010 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
9011 Widget widget = SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f), bar);
9012 float top, shown;
9013
9014 BLOCK_INPUT;
9015
9016 #ifdef USE_MOTIF
9017
9018 /* We use an estimate of 30 chars per line rather than the real
9019 `portion' value. This has the disadvantage that the thumb size
9020 is not very representative, but it makes our life a lot easier.
9021 Otherwise, we have to constantly adjust the thumb size, which
9022 we can't always do quickly enough: while dragging, the size of
9023 the thumb might prevent the user from dragging the thumb all the
9024 way to the end. but Motif and some versions of Xaw3d don't allow
9025 updating the thumb size while dragging. Also, even if we can update
9026 its size, the update will often happen too late.
9027 If you don't believe it, check out revision 1.650 of xterm.c to see
9028 what hoops we were going through and the still poor behavior we got. */
9029 portion = XFASTINT (XWINDOW (bar->window)->height) * 30;
9030 /* When the thumb is at the bottom, position == whole.
9031 So we need to increase `whole' to make space for the thumb. */
9032 whole += portion;
9033
9034 if (whole <= 0)
9035 top = 0, shown = 1;
9036 else
9037 {
9038 top = (float) position / whole;
9039 shown = (float) portion / whole;
9040 }
9041
9042 if (NILP (bar->dragging))
9043 {
9044 int size, value;
9045
9046 /* Slider size. Must be in the range [1 .. MAX - MIN] where MAX
9047 is the scroll bar's maximum and MIN is the scroll bar's minimum
9048 value. */
9049 size = shown * XM_SB_RANGE;
9050 size = min (size, XM_SB_RANGE);
9051 size = max (size, 1);
9052
9053 /* Position. Must be in the range [MIN .. MAX - SLIDER_SIZE]. */
9054 value = top * XM_SB_RANGE;
9055 value = min (value, XM_SB_MAX - size);
9056 value = max (value, XM_SB_MIN);
9057
9058 XmScrollBarSetValues (widget, value, size, 0, 0, False);
9059 }
9060 #else /* !USE_MOTIF i.e. use Xaw */
9061
9062 if (whole == 0)
9063 top = 0, shown = 1;
9064 else
9065 {
9066 top = (float) position / whole;
9067 shown = (float) portion / whole;
9068 }
9069
9070 {
9071 float old_top, old_shown;
9072 Dimension height;
9073 XtVaGetValues (widget,
9074 XtNtopOfThumb, &old_top,
9075 XtNshown, &old_shown,
9076 XtNheight, &height,
9077 NULL);
9078
9079 /* Massage the top+shown values. */
9080 if (NILP (bar->dragging) || last_scroll_bar_part == scroll_bar_down_arrow)
9081 top = max (0, min (1, top));
9082 else
9083 top = old_top;
9084 /* Keep two pixels available for moving the thumb down. */
9085 shown = max (0, min (1 - top - (2.0 / height), shown));
9086
9087 /* If the call to XawScrollbarSetThumb below doesn't seem to work,
9088 check that your system's configuration file contains a define
9089 for `NARROWPROTO'. See s/freebsd.h for an example. */
9090 if (top != old_top || shown != old_shown)
9091 {
9092 if (NILP (bar->dragging))
9093 XawScrollbarSetThumb (widget, top, shown);
9094 else
9095 {
9096 #ifdef HAVE_XAW3D
9097 ScrollbarWidget sb = (ScrollbarWidget) widget;
9098 int scroll_mode = 0;
9099
9100 /* `scroll_mode' only exists with Xaw3d + ARROW_SCROLLBAR. */
9101 if (xaw3d_arrow_scroll)
9102 {
9103 /* Xaw3d stupidly ignores resize requests while dragging
9104 so we have to make it believe it's not in dragging mode. */
9105 scroll_mode = sb->scrollbar.scroll_mode;
9106 if (scroll_mode == 2)
9107 sb->scrollbar.scroll_mode = 0;
9108 }
9109 #endif
9110 /* Try to make the scrolling a tad smoother. */
9111 if (!xaw3d_pick_top)
9112 shown = min (shown, old_shown);
9113
9114 XawScrollbarSetThumb (widget, top, shown);
9115
9116 #ifdef HAVE_XAW3D
9117 if (xaw3d_arrow_scroll && scroll_mode == 2)
9118 sb->scrollbar.scroll_mode = scroll_mode;
9119 #endif
9120 }
9121 }
9122 }
9123 #endif /* !USE_MOTIF */
9124
9125 UNBLOCK_INPUT;
9126 }
9127
9128 #endif /* USE_TOOLKIT_SCROLL_BARS */
9129
9130
9131 \f
9132 /************************************************************************
9133 Scroll bars, general
9134 ************************************************************************/
9135
9136 /* Create a scroll bar and return the scroll bar vector for it. W is
9137 the Emacs window on which to create the scroll bar. TOP, LEFT,
9138 WIDTH and HEIGHT are the pixel coordinates and dimensions of the
9139 scroll bar. */
9140
9141 static struct scroll_bar *
9142 x_scroll_bar_create (w, top, left, width, height)
9143 struct window *w;
9144 int top, left, width, height;
9145 {
9146 struct frame *f = XFRAME (w->frame);
9147 struct scroll_bar *bar
9148 = XSCROLL_BAR (Fmake_vector (make_number (SCROLL_BAR_VEC_SIZE), Qnil));
9149
9150 BLOCK_INPUT;
9151
9152 #ifdef USE_TOOLKIT_SCROLL_BARS
9153 x_create_toolkit_scroll_bar (f, bar);
9154 #else /* not USE_TOOLKIT_SCROLL_BARS */
9155 {
9156 XSetWindowAttributes a;
9157 unsigned long mask;
9158 Window window;
9159
9160 a.background_pixel = f->output_data.x->scroll_bar_background_pixel;
9161 if (a.background_pixel == -1)
9162 a.background_pixel = f->output_data.x->background_pixel;
9163
9164 a.event_mask = (ButtonPressMask | ButtonReleaseMask
9165 | ButtonMotionMask | PointerMotionHintMask
9166 | ExposureMask);
9167 a.cursor = FRAME_X_DISPLAY_INFO (f)->vertical_scroll_bar_cursor;
9168
9169 mask = (CWBackPixel | CWEventMask | CWCursor);
9170
9171 /* Clear the area of W that will serve as a scroll bar. This is
9172 for the case that a window has been split horizontally. In
9173 this case, no clear_frame is generated to reduce flickering. */
9174 if (width > 0 && height > 0)
9175 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
9176 left, top, width,
9177 window_box_height (w), False);
9178
9179 window = XCreateWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
9180 /* Position and size of scroll bar. */
9181 left + VERTICAL_SCROLL_BAR_WIDTH_TRIM,
9182 top,
9183 width - VERTICAL_SCROLL_BAR_WIDTH_TRIM * 2,
9184 height,
9185 /* Border width, depth, class, and visual. */
9186 0,
9187 CopyFromParent,
9188 CopyFromParent,
9189 CopyFromParent,
9190 /* Attributes. */
9191 mask, &a);
9192 SET_SCROLL_BAR_X_WINDOW (bar, window);
9193 }
9194 #endif /* not USE_TOOLKIT_SCROLL_BARS */
9195
9196 XSETWINDOW (bar->window, w);
9197 XSETINT (bar->top, top);
9198 XSETINT (bar->left, left);
9199 XSETINT (bar->width, width);
9200 XSETINT (bar->height, height);
9201 XSETINT (bar->start, 0);
9202 XSETINT (bar->end, 0);
9203 bar->dragging = Qnil;
9204
9205 /* Add bar to its frame's list of scroll bars. */
9206 bar->next = FRAME_SCROLL_BARS (f);
9207 bar->prev = Qnil;
9208 XSETVECTOR (FRAME_SCROLL_BARS (f), bar);
9209 if (!NILP (bar->next))
9210 XSETVECTOR (XSCROLL_BAR (bar->next)->prev, bar);
9211
9212 /* Map the window/widget. */
9213 #ifdef USE_TOOLKIT_SCROLL_BARS
9214 {
9215 Widget scroll_bar = SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f), bar);
9216 XtConfigureWidget (scroll_bar,
9217 left + VERTICAL_SCROLL_BAR_WIDTH_TRIM,
9218 top,
9219 width - VERTICAL_SCROLL_BAR_WIDTH_TRIM * 2,
9220 max (height, 1), 0);
9221 XtMapWidget (scroll_bar);
9222 }
9223 #else /* not USE_TOOLKIT_SCROLL_BARS */
9224 XMapRaised (FRAME_X_DISPLAY (f), SCROLL_BAR_X_WINDOW (bar));
9225 #endif /* not USE_TOOLKIT_SCROLL_BARS */
9226
9227 UNBLOCK_INPUT;
9228 return bar;
9229 }
9230
9231
9232 /* Draw BAR's handle in the proper position.
9233
9234 If the handle is already drawn from START to END, don't bother
9235 redrawing it, unless REBUILD is non-zero; in that case, always
9236 redraw it. (REBUILD is handy for drawing the handle after expose
9237 events.)
9238
9239 Normally, we want to constrain the start and end of the handle to
9240 fit inside its rectangle, but if the user is dragging the scroll
9241 bar handle, we want to let them drag it down all the way, so that
9242 the bar's top is as far down as it goes; otherwise, there's no way
9243 to move to the very end of the buffer. */
9244
9245 #ifndef USE_TOOLKIT_SCROLL_BARS
9246
9247 static void
9248 x_scroll_bar_set_handle (bar, start, end, rebuild)
9249 struct scroll_bar *bar;
9250 int start, end;
9251 int rebuild;
9252 {
9253 int dragging = ! NILP (bar->dragging);
9254 Window w = SCROLL_BAR_X_WINDOW (bar);
9255 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
9256 GC gc = f->output_data.x->normal_gc;
9257
9258 /* If the display is already accurate, do nothing. */
9259 if (! rebuild
9260 && start == XINT (bar->start)
9261 && end == XINT (bar->end))
9262 return;
9263
9264 BLOCK_INPUT;
9265
9266 {
9267 int inside_width = VERTICAL_SCROLL_BAR_INSIDE_WIDTH (f, XINT (bar->width));
9268 int inside_height = VERTICAL_SCROLL_BAR_INSIDE_HEIGHT (f, XINT (bar->height));
9269 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, XINT (bar->height));
9270
9271 /* Make sure the values are reasonable, and try to preserve
9272 the distance between start and end. */
9273 {
9274 int length = end - start;
9275
9276 if (start < 0)
9277 start = 0;
9278 else if (start > top_range)
9279 start = top_range;
9280 end = start + length;
9281
9282 if (end < start)
9283 end = start;
9284 else if (end > top_range && ! dragging)
9285 end = top_range;
9286 }
9287
9288 /* Store the adjusted setting in the scroll bar. */
9289 XSETINT (bar->start, start);
9290 XSETINT (bar->end, end);
9291
9292 /* Clip the end position, just for display. */
9293 if (end > top_range)
9294 end = top_range;
9295
9296 /* Draw bottom positions VERTICAL_SCROLL_BAR_MIN_HANDLE pixels
9297 below top positions, to make sure the handle is always at least
9298 that many pixels tall. */
9299 end += VERTICAL_SCROLL_BAR_MIN_HANDLE;
9300
9301 /* Draw the empty space above the handle. Note that we can't clear
9302 zero-height areas; that means "clear to end of window." */
9303 if (0 < start)
9304 x_clear_area (FRAME_X_DISPLAY (f), w,
9305 /* x, y, width, height, and exposures. */
9306 VERTICAL_SCROLL_BAR_LEFT_BORDER,
9307 VERTICAL_SCROLL_BAR_TOP_BORDER,
9308 inside_width, start,
9309 False);
9310
9311 /* Change to proper foreground color if one is specified. */
9312 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
9313 XSetForeground (FRAME_X_DISPLAY (f), gc,
9314 f->output_data.x->scroll_bar_foreground_pixel);
9315
9316 /* Draw the handle itself. */
9317 XFillRectangle (FRAME_X_DISPLAY (f), w, gc,
9318 /* x, y, width, height */
9319 VERTICAL_SCROLL_BAR_LEFT_BORDER,
9320 VERTICAL_SCROLL_BAR_TOP_BORDER + start,
9321 inside_width, end - start);
9322
9323 /* Restore the foreground color of the GC if we changed it above. */
9324 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
9325 XSetForeground (FRAME_X_DISPLAY (f), gc,
9326 f->output_data.x->foreground_pixel);
9327
9328 /* Draw the empty space below the handle. Note that we can't
9329 clear zero-height areas; that means "clear to end of window." */
9330 if (end < inside_height)
9331 x_clear_area (FRAME_X_DISPLAY (f), w,
9332 /* x, y, width, height, and exposures. */
9333 VERTICAL_SCROLL_BAR_LEFT_BORDER,
9334 VERTICAL_SCROLL_BAR_TOP_BORDER + end,
9335 inside_width, inside_height - end,
9336 False);
9337
9338 }
9339
9340 UNBLOCK_INPUT;
9341 }
9342
9343 #endif /* !USE_TOOLKIT_SCROLL_BARS */
9344
9345 /* Destroy scroll bar BAR, and set its Emacs window's scroll bar to
9346 nil. */
9347
9348 static void
9349 x_scroll_bar_remove (bar)
9350 struct scroll_bar *bar;
9351 {
9352 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
9353 BLOCK_INPUT;
9354
9355 #ifdef USE_TOOLKIT_SCROLL_BARS
9356 XtDestroyWidget (SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f), bar));
9357 #else
9358 XDestroyWindow (FRAME_X_DISPLAY (f), SCROLL_BAR_X_WINDOW (bar));
9359 #endif
9360
9361 /* Disassociate this scroll bar from its window. */
9362 XWINDOW (bar->window)->vertical_scroll_bar = Qnil;
9363
9364 UNBLOCK_INPUT;
9365 }
9366
9367
9368 /* Set the handle of the vertical scroll bar for WINDOW to indicate
9369 that we are displaying PORTION characters out of a total of WHOLE
9370 characters, starting at POSITION. If WINDOW has no scroll bar,
9371 create one. */
9372
9373 static void
9374 XTset_vertical_scroll_bar (w, portion, whole, position)
9375 struct window *w;
9376 int portion, whole, position;
9377 {
9378 struct frame *f = XFRAME (w->frame);
9379 struct scroll_bar *bar;
9380 int top, height, left, sb_left, width, sb_width;
9381 int window_x, window_y, window_width, window_height;
9382
9383 /* Get window dimensions. */
9384 window_box (w, -1, &window_x, &window_y, &window_width, &window_height);
9385 top = window_y;
9386 width = FRAME_SCROLL_BAR_COLS (f) * CANON_X_UNIT (f);
9387 height = window_height;
9388
9389 /* Compute the left edge of the scroll bar area. */
9390 if (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (f))
9391 left = XINT (w->left) + XINT (w->width) - FRAME_SCROLL_BAR_COLS (f);
9392 else
9393 left = XFASTINT (w->left);
9394 left *= CANON_X_UNIT (f);
9395 left += FRAME_INTERNAL_BORDER_WIDTH (f);
9396
9397 /* Compute the width of the scroll bar which might be less than
9398 the width of the area reserved for the scroll bar. */
9399 if (FRAME_SCROLL_BAR_PIXEL_WIDTH (f) > 0)
9400 sb_width = FRAME_SCROLL_BAR_PIXEL_WIDTH (f);
9401 else
9402 sb_width = width;
9403
9404 /* Compute the left edge of the scroll bar. */
9405 #ifdef USE_TOOLKIT_SCROLL_BARS
9406 if (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (f))
9407 sb_left = left + width - sb_width - (width - sb_width) / 2;
9408 else
9409 sb_left = left + (width - sb_width) / 2;
9410 #else
9411 if (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (f))
9412 sb_left = left + width - sb_width;
9413 else
9414 sb_left = left;
9415 #endif
9416
9417 /* Does the scroll bar exist yet? */
9418 if (NILP (w->vertical_scroll_bar))
9419 {
9420 if (width > 0 && height > 0)
9421 {
9422 BLOCK_INPUT;
9423 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
9424 left, top, width, height, False);
9425 UNBLOCK_INPUT;
9426 }
9427
9428 bar = x_scroll_bar_create (w, top, sb_left, sb_width, height);
9429 }
9430 else
9431 {
9432 /* It may just need to be moved and resized. */
9433 unsigned int mask = 0;
9434
9435 bar = XSCROLL_BAR (w->vertical_scroll_bar);
9436
9437 BLOCK_INPUT;
9438
9439 if (sb_left != XINT (bar->left))
9440 mask |= CWX;
9441 if (top != XINT (bar->top))
9442 mask |= CWY;
9443 if (sb_width != XINT (bar->width))
9444 mask |= CWWidth;
9445 if (height != XINT (bar->height))
9446 mask |= CWHeight;
9447
9448 #ifdef USE_TOOLKIT_SCROLL_BARS
9449
9450 /* Since toolkit scroll bars are smaller than the space reserved
9451 for them on the frame, we have to clear "under" them. */
9452 if (width > 0 && height > 0)
9453 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
9454 left, top, width, height, False);
9455
9456 /* Move/size the scroll bar widget. */
9457 if (mask)
9458 XtConfigureWidget (SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f), bar),
9459 sb_left + VERTICAL_SCROLL_BAR_WIDTH_TRIM,
9460 top,
9461 sb_width - VERTICAL_SCROLL_BAR_WIDTH_TRIM * 2,
9462 max (height, 1), 0);
9463
9464 #else /* not USE_TOOLKIT_SCROLL_BARS */
9465
9466 /* Clear areas not covered by the scroll bar because of
9467 VERTICAL_SCROLL_BAR_WIDTH_TRIM. */
9468 if (VERTICAL_SCROLL_BAR_WIDTH_TRIM)
9469 {
9470 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
9471 left, top, VERTICAL_SCROLL_BAR_WIDTH_TRIM,
9472 height, False);
9473 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
9474 left + width - VERTICAL_SCROLL_BAR_WIDTH_TRIM,
9475 top, VERTICAL_SCROLL_BAR_WIDTH_TRIM,
9476 height, False);
9477 }
9478
9479 /* Clear areas not covered by the scroll bar because it's not as
9480 wide as the area reserved for it. This makes sure a
9481 previous mode line display is cleared after C-x 2 C-x 1, for
9482 example. */
9483 {
9484 int area_width = FRAME_SCROLL_BAR_COLS (f) * CANON_X_UNIT (f);
9485 int rest = area_width - sb_width;
9486 if (rest > 0 && height > 0)
9487 {
9488 if (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (f))
9489 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
9490 left + area_width - rest, top,
9491 rest, height, False);
9492 else
9493 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
9494 left, top, rest, height, False);
9495 }
9496 }
9497
9498 /* Move/size the scroll bar window. */
9499 if (mask)
9500 {
9501 XWindowChanges wc;
9502
9503 wc.x = sb_left + VERTICAL_SCROLL_BAR_WIDTH_TRIM;
9504 wc.y = top;
9505 wc.width = sb_width - VERTICAL_SCROLL_BAR_WIDTH_TRIM * 2;
9506 wc.height = height;
9507 XConfigureWindow (FRAME_X_DISPLAY (f), SCROLL_BAR_X_WINDOW (bar),
9508 mask, &wc);
9509 }
9510
9511 #endif /* not USE_TOOLKIT_SCROLL_BARS */
9512
9513 /* Remember new settings. */
9514 XSETINT (bar->left, sb_left);
9515 XSETINT (bar->top, top);
9516 XSETINT (bar->width, sb_width);
9517 XSETINT (bar->height, height);
9518
9519 UNBLOCK_INPUT;
9520 }
9521
9522 #ifdef USE_TOOLKIT_SCROLL_BARS
9523 x_set_toolkit_scroll_bar_thumb (bar, portion, position, whole);
9524 #else /* not USE_TOOLKIT_SCROLL_BARS */
9525 /* Set the scroll bar's current state, unless we're currently being
9526 dragged. */
9527 if (NILP (bar->dragging))
9528 {
9529 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, height);
9530
9531 if (whole == 0)
9532 x_scroll_bar_set_handle (bar, 0, top_range, 0);
9533 else
9534 {
9535 int start = ((double) position * top_range) / whole;
9536 int end = ((double) (position + portion) * top_range) / whole;
9537 x_scroll_bar_set_handle (bar, start, end, 0);
9538 }
9539 }
9540 #endif /* not USE_TOOLKIT_SCROLL_BARS */
9541
9542 XSETVECTOR (w->vertical_scroll_bar, bar);
9543 }
9544
9545
9546 /* The following three hooks are used when we're doing a thorough
9547 redisplay of the frame. We don't explicitly know which scroll bars
9548 are going to be deleted, because keeping track of when windows go
9549 away is a real pain - "Can you say set-window-configuration, boys
9550 and girls?" Instead, we just assert at the beginning of redisplay
9551 that *all* scroll bars are to be removed, and then save a scroll bar
9552 from the fiery pit when we actually redisplay its window. */
9553
9554 /* Arrange for all scroll bars on FRAME to be removed at the next call
9555 to `*judge_scroll_bars_hook'. A scroll bar may be spared if
9556 `*redeem_scroll_bar_hook' is applied to its window before the judgment. */
9557
9558 static void
9559 XTcondemn_scroll_bars (frame)
9560 FRAME_PTR frame;
9561 {
9562 /* Transfer all the scroll bars to FRAME_CONDEMNED_SCROLL_BARS. */
9563 while (! NILP (FRAME_SCROLL_BARS (frame)))
9564 {
9565 Lisp_Object bar;
9566 bar = FRAME_SCROLL_BARS (frame);
9567 FRAME_SCROLL_BARS (frame) = XSCROLL_BAR (bar)->next;
9568 XSCROLL_BAR (bar)->next = FRAME_CONDEMNED_SCROLL_BARS (frame);
9569 XSCROLL_BAR (bar)->prev = Qnil;
9570 if (! NILP (FRAME_CONDEMNED_SCROLL_BARS (frame)))
9571 XSCROLL_BAR (FRAME_CONDEMNED_SCROLL_BARS (frame))->prev = bar;
9572 FRAME_CONDEMNED_SCROLL_BARS (frame) = bar;
9573 }
9574 }
9575
9576
9577 /* Un-mark WINDOW's scroll bar for deletion in this judgment cycle.
9578 Note that WINDOW isn't necessarily condemned at all. */
9579
9580 static void
9581 XTredeem_scroll_bar (window)
9582 struct window *window;
9583 {
9584 struct scroll_bar *bar;
9585 struct frame *f;
9586
9587 /* We can't redeem this window's scroll bar if it doesn't have one. */
9588 if (NILP (window->vertical_scroll_bar))
9589 abort ();
9590
9591 bar = XSCROLL_BAR (window->vertical_scroll_bar);
9592
9593 /* Unlink it from the condemned list. */
9594 f = XFRAME (WINDOW_FRAME (window));
9595 if (NILP (bar->prev))
9596 {
9597 /* If the prev pointer is nil, it must be the first in one of
9598 the lists. */
9599 if (EQ (FRAME_SCROLL_BARS (f), window->vertical_scroll_bar))
9600 /* It's not condemned. Everything's fine. */
9601 return;
9602 else if (EQ (FRAME_CONDEMNED_SCROLL_BARS (f),
9603 window->vertical_scroll_bar))
9604 FRAME_CONDEMNED_SCROLL_BARS (f) = bar->next;
9605 else
9606 /* If its prev pointer is nil, it must be at the front of
9607 one or the other! */
9608 abort ();
9609 }
9610 else
9611 XSCROLL_BAR (bar->prev)->next = bar->next;
9612
9613 if (! NILP (bar->next))
9614 XSCROLL_BAR (bar->next)->prev = bar->prev;
9615
9616 bar->next = FRAME_SCROLL_BARS (f);
9617 bar->prev = Qnil;
9618 XSETVECTOR (FRAME_SCROLL_BARS (f), bar);
9619 if (! NILP (bar->next))
9620 XSETVECTOR (XSCROLL_BAR (bar->next)->prev, bar);
9621 }
9622
9623 /* Remove all scroll bars on FRAME that haven't been saved since the
9624 last call to `*condemn_scroll_bars_hook'. */
9625
9626 static void
9627 XTjudge_scroll_bars (f)
9628 FRAME_PTR f;
9629 {
9630 Lisp_Object bar, next;
9631
9632 bar = FRAME_CONDEMNED_SCROLL_BARS (f);
9633
9634 /* Clear out the condemned list now so we won't try to process any
9635 more events on the hapless scroll bars. */
9636 FRAME_CONDEMNED_SCROLL_BARS (f) = Qnil;
9637
9638 for (; ! NILP (bar); bar = next)
9639 {
9640 struct scroll_bar *b = XSCROLL_BAR (bar);
9641
9642 x_scroll_bar_remove (b);
9643
9644 next = b->next;
9645 b->next = b->prev = Qnil;
9646 }
9647
9648 /* Now there should be no references to the condemned scroll bars,
9649 and they should get garbage-collected. */
9650 }
9651
9652
9653 /* Handle an Expose or GraphicsExpose event on a scroll bar. This
9654 is a no-op when using toolkit scroll bars.
9655
9656 This may be called from a signal handler, so we have to ignore GC
9657 mark bits. */
9658
9659 static void
9660 x_scroll_bar_expose (bar, event)
9661 struct scroll_bar *bar;
9662 XEvent *event;
9663 {
9664 #ifndef USE_TOOLKIT_SCROLL_BARS
9665
9666 Window w = SCROLL_BAR_X_WINDOW (bar);
9667 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
9668 GC gc = f->output_data.x->normal_gc;
9669 int width_trim = VERTICAL_SCROLL_BAR_WIDTH_TRIM;
9670
9671 BLOCK_INPUT;
9672
9673 x_scroll_bar_set_handle (bar, XINT (bar->start), XINT (bar->end), 1);
9674
9675 /* Draw a one-pixel border just inside the edges of the scroll bar. */
9676 XDrawRectangle (FRAME_X_DISPLAY (f), w, gc,
9677
9678 /* x, y, width, height */
9679 0, 0,
9680 XINT (bar->width) - 1 - width_trim - width_trim,
9681 XINT (bar->height) - 1);
9682
9683 UNBLOCK_INPUT;
9684
9685 #endif /* not USE_TOOLKIT_SCROLL_BARS */
9686 }
9687
9688 /* Handle a mouse click on the scroll bar BAR. If *EMACS_EVENT's kind
9689 is set to something other than NO_EVENT, it is enqueued.
9690
9691 This may be called from a signal handler, so we have to ignore GC
9692 mark bits. */
9693
9694 #ifndef USE_TOOLKIT_SCROLL_BARS
9695
9696 static void
9697 x_scroll_bar_handle_click (bar, event, emacs_event)
9698 struct scroll_bar *bar;
9699 XEvent *event;
9700 struct input_event *emacs_event;
9701 {
9702 if (! GC_WINDOWP (bar->window))
9703 abort ();
9704
9705 emacs_event->kind = SCROLL_BAR_CLICK_EVENT;
9706 emacs_event->code = event->xbutton.button - Button1;
9707 emacs_event->modifiers
9708 = (x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO
9709 (XFRAME (WINDOW_FRAME (XWINDOW (bar->window)))),
9710 event->xbutton.state)
9711 | (event->type == ButtonRelease
9712 ? up_modifier
9713 : down_modifier));
9714 emacs_event->frame_or_window = bar->window;
9715 emacs_event->arg = Qnil;
9716 emacs_event->timestamp = event->xbutton.time;
9717 {
9718 #if 0
9719 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
9720 int internal_height
9721 = VERTICAL_SCROLL_BAR_INSIDE_HEIGHT (f, XINT (bar->height));
9722 #endif
9723 int top_range
9724 = VERTICAL_SCROLL_BAR_TOP_RANGE (f, XINT (bar->height));
9725 int y = event->xbutton.y - VERTICAL_SCROLL_BAR_TOP_BORDER;
9726
9727 if (y < 0) y = 0;
9728 if (y > top_range) y = top_range;
9729
9730 if (y < XINT (bar->start))
9731 emacs_event->part = scroll_bar_above_handle;
9732 else if (y < XINT (bar->end) + VERTICAL_SCROLL_BAR_MIN_HANDLE)
9733 emacs_event->part = scroll_bar_handle;
9734 else
9735 emacs_event->part = scroll_bar_below_handle;
9736
9737 /* Just because the user has clicked on the handle doesn't mean
9738 they want to drag it. Lisp code needs to be able to decide
9739 whether or not we're dragging. */
9740 #if 0
9741 /* If the user has just clicked on the handle, record where they're
9742 holding it. */
9743 if (event->type == ButtonPress
9744 && emacs_event->part == scroll_bar_handle)
9745 XSETINT (bar->dragging, y - XINT (bar->start));
9746 #endif
9747
9748 /* If the user has released the handle, set it to its final position. */
9749 if (event->type == ButtonRelease
9750 && ! NILP (bar->dragging))
9751 {
9752 int new_start = y - XINT (bar->dragging);
9753 int new_end = new_start + (XINT (bar->end) - XINT (bar->start));
9754
9755 x_scroll_bar_set_handle (bar, new_start, new_end, 0);
9756 bar->dragging = Qnil;
9757 }
9758
9759 /* Same deal here as the other #if 0. */
9760 #if 0
9761 /* Clicks on the handle are always reported as occurring at the top of
9762 the handle. */
9763 if (emacs_event->part == scroll_bar_handle)
9764 emacs_event->x = bar->start;
9765 else
9766 XSETINT (emacs_event->x, y);
9767 #else
9768 XSETINT (emacs_event->x, y);
9769 #endif
9770
9771 XSETINT (emacs_event->y, top_range);
9772 }
9773 }
9774
9775 /* Handle some mouse motion while someone is dragging the scroll bar.
9776
9777 This may be called from a signal handler, so we have to ignore GC
9778 mark bits. */
9779
9780 static void
9781 x_scroll_bar_note_movement (bar, event)
9782 struct scroll_bar *bar;
9783 XEvent *event;
9784 {
9785 FRAME_PTR f = XFRAME (XWINDOW (bar->window)->frame);
9786
9787 last_mouse_movement_time = event->xmotion.time;
9788
9789 f->mouse_moved = 1;
9790 XSETVECTOR (last_mouse_scroll_bar, bar);
9791
9792 /* If we're dragging the bar, display it. */
9793 if (! GC_NILP (bar->dragging))
9794 {
9795 /* Where should the handle be now? */
9796 int new_start = event->xmotion.y - XINT (bar->dragging);
9797
9798 if (new_start != XINT (bar->start))
9799 {
9800 int new_end = new_start + (XINT (bar->end) - XINT (bar->start));
9801
9802 x_scroll_bar_set_handle (bar, new_start, new_end, 0);
9803 }
9804 }
9805 }
9806
9807 #endif /* !USE_TOOLKIT_SCROLL_BARS */
9808
9809 /* Return information to the user about the current position of the mouse
9810 on the scroll bar. */
9811
9812 static void
9813 x_scroll_bar_report_motion (fp, bar_window, part, x, y, time)
9814 FRAME_PTR *fp;
9815 Lisp_Object *bar_window;
9816 enum scroll_bar_part *part;
9817 Lisp_Object *x, *y;
9818 unsigned long *time;
9819 {
9820 struct scroll_bar *bar = XSCROLL_BAR (last_mouse_scroll_bar);
9821 Window w = SCROLL_BAR_X_WINDOW (bar);
9822 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
9823 int win_x, win_y;
9824 Window dummy_window;
9825 int dummy_coord;
9826 unsigned int dummy_mask;
9827
9828 BLOCK_INPUT;
9829
9830 /* Get the mouse's position relative to the scroll bar window, and
9831 report that. */
9832 if (! XQueryPointer (FRAME_X_DISPLAY (f), w,
9833
9834 /* Root, child, root x and root y. */
9835 &dummy_window, &dummy_window,
9836 &dummy_coord, &dummy_coord,
9837
9838 /* Position relative to scroll bar. */
9839 &win_x, &win_y,
9840
9841 /* Mouse buttons and modifier keys. */
9842 &dummy_mask))
9843 ;
9844 else
9845 {
9846 #if 0
9847 int inside_height
9848 = VERTICAL_SCROLL_BAR_INSIDE_HEIGHT (f, XINT (bar->height));
9849 #endif
9850 int top_range
9851 = VERTICAL_SCROLL_BAR_TOP_RANGE (f, XINT (bar->height));
9852
9853 win_y -= VERTICAL_SCROLL_BAR_TOP_BORDER;
9854
9855 if (! NILP (bar->dragging))
9856 win_y -= XINT (bar->dragging);
9857
9858 if (win_y < 0)
9859 win_y = 0;
9860 if (win_y > top_range)
9861 win_y = top_range;
9862
9863 *fp = f;
9864 *bar_window = bar->window;
9865
9866 if (! NILP (bar->dragging))
9867 *part = scroll_bar_handle;
9868 else if (win_y < XINT (bar->start))
9869 *part = scroll_bar_above_handle;
9870 else if (win_y < XINT (bar->end) + VERTICAL_SCROLL_BAR_MIN_HANDLE)
9871 *part = scroll_bar_handle;
9872 else
9873 *part = scroll_bar_below_handle;
9874
9875 XSETINT (*x, win_y);
9876 XSETINT (*y, top_range);
9877
9878 f->mouse_moved = 0;
9879 last_mouse_scroll_bar = Qnil;
9880 }
9881
9882 *time = last_mouse_movement_time;
9883
9884 UNBLOCK_INPUT;
9885 }
9886
9887
9888 /* The screen has been cleared so we may have changed foreground or
9889 background colors, and the scroll bars may need to be redrawn.
9890 Clear out the scroll bars, and ask for expose events, so we can
9891 redraw them. */
9892
9893 void
9894 x_scroll_bar_clear (f)
9895 FRAME_PTR f;
9896 {
9897 #ifndef USE_TOOLKIT_SCROLL_BARS
9898 Lisp_Object bar;
9899
9900 /* We can have scroll bars even if this is 0,
9901 if we just turned off scroll bar mode.
9902 But in that case we should not clear them. */
9903 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
9904 for (bar = FRAME_SCROLL_BARS (f); VECTORP (bar);
9905 bar = XSCROLL_BAR (bar)->next)
9906 XClearArea (FRAME_X_DISPLAY (f),
9907 SCROLL_BAR_X_WINDOW (XSCROLL_BAR (bar)),
9908 0, 0, 0, 0, True);
9909 #endif /* not USE_TOOLKIT_SCROLL_BARS */
9910 }
9911
9912 /* This processes Expose events from the menu-bar specific X event
9913 loop in xmenu.c. This allows to redisplay the frame if necessary
9914 when handling menu-bar or pop-up items. */
9915
9916 int
9917 process_expose_from_menu (event)
9918 XEvent event;
9919 {
9920 FRAME_PTR f;
9921 struct x_display_info *dpyinfo;
9922 int frame_exposed_p = 0;
9923
9924 BLOCK_INPUT;
9925
9926 dpyinfo = x_display_info_for_display (event.xexpose.display);
9927 f = x_window_to_frame (dpyinfo, event.xexpose.window);
9928 if (f)
9929 {
9930 if (f->async_visible == 0)
9931 {
9932 f->async_visible = 1;
9933 f->async_iconified = 0;
9934 f->output_data.x->has_been_visible = 1;
9935 SET_FRAME_GARBAGED (f);
9936 }
9937 else
9938 {
9939 expose_frame (x_window_to_frame (dpyinfo, event.xexpose.window),
9940 event.xexpose.x, event.xexpose.y,
9941 event.xexpose.width, event.xexpose.height);
9942 frame_exposed_p = 1;
9943 }
9944 }
9945 else
9946 {
9947 struct scroll_bar *bar
9948 = x_window_to_scroll_bar (event.xexpose.window);
9949
9950 if (bar)
9951 x_scroll_bar_expose (bar, &event);
9952 }
9953
9954 UNBLOCK_INPUT;
9955 return frame_exposed_p;
9956 }
9957 \f
9958 /* Define a queue to save up SelectionRequest events for later handling. */
9959
9960 struct selection_event_queue
9961 {
9962 XEvent event;
9963 struct selection_event_queue *next;
9964 };
9965
9966 static struct selection_event_queue *queue;
9967
9968 /* Nonzero means queue up certain events--don't process them yet. */
9969
9970 static int x_queue_selection_requests;
9971
9972 /* Queue up an X event *EVENT, to be processed later. */
9973
9974 static void
9975 x_queue_event (f, event)
9976 FRAME_PTR f;
9977 XEvent *event;
9978 {
9979 struct selection_event_queue *queue_tmp
9980 = (struct selection_event_queue *) xmalloc (sizeof (struct selection_event_queue));
9981
9982 if (queue_tmp != NULL)
9983 {
9984 queue_tmp->event = *event;
9985 queue_tmp->next = queue;
9986 queue = queue_tmp;
9987 }
9988 }
9989
9990 /* Take all the queued events and put them back
9991 so that they get processed afresh. */
9992
9993 static void
9994 x_unqueue_events (display)
9995 Display *display;
9996 {
9997 while (queue != NULL)
9998 {
9999 struct selection_event_queue *queue_tmp = queue;
10000 XPutBackEvent (display, &queue_tmp->event);
10001 queue = queue_tmp->next;
10002 xfree ((char *)queue_tmp);
10003 }
10004 }
10005
10006 /* Start queuing SelectionRequest events. */
10007
10008 void
10009 x_start_queuing_selection_requests (display)
10010 Display *display;
10011 {
10012 x_queue_selection_requests++;
10013 }
10014
10015 /* Stop queuing SelectionRequest events. */
10016
10017 void
10018 x_stop_queuing_selection_requests (display)
10019 Display *display;
10020 {
10021 x_queue_selection_requests--;
10022 x_unqueue_events (display);
10023 }
10024 \f
10025 /* The main X event-reading loop - XTread_socket. */
10026
10027 #if 0
10028 /* Time stamp of enter window event. This is only used by XTread_socket,
10029 but we have to put it out here, since static variables within functions
10030 sometimes don't work. */
10031
10032 static Time enter_timestamp;
10033 #endif
10034
10035 /* This holds the state XLookupString needs to implement dead keys
10036 and other tricks known as "compose processing". _X Window System_
10037 says that a portable program can't use this, but Stephen Gildea assures
10038 me that letting the compiler initialize it to zeros will work okay.
10039
10040 This must be defined outside of XTread_socket, for the same reasons
10041 given for enter_timestamp, above. */
10042
10043 static XComposeStatus compose_status;
10044
10045 /* Record the last 100 characters stored
10046 to help debug the loss-of-chars-during-GC problem. */
10047
10048 static int temp_index;
10049 static short temp_buffer[100];
10050
10051 /* Set this to nonzero to fake an "X I/O error"
10052 on a particular display. */
10053
10054 struct x_display_info *XTread_socket_fake_io_error;
10055
10056 /* When we find no input here, we occasionally do a no-op command
10057 to verify that the X server is still running and we can still talk with it.
10058 We try all the open displays, one by one.
10059 This variable is used for cycling thru the displays. */
10060
10061 static struct x_display_info *next_noop_dpyinfo;
10062
10063 #define SET_SAVED_MENU_EVENT(size) \
10064 do \
10065 { \
10066 if (f->output_data.x->saved_menu_event == 0) \
10067 f->output_data.x->saved_menu_event \
10068 = (XEvent *) xmalloc (sizeof (XEvent)); \
10069 bcopy (&event, f->output_data.x->saved_menu_event, size); \
10070 if (numchars >= 1) \
10071 { \
10072 bufp->kind = MENU_BAR_ACTIVATE_EVENT; \
10073 XSETFRAME (bufp->frame_or_window, f); \
10074 bufp->arg = Qnil; \
10075 bufp++; \
10076 count++; \
10077 numchars--; \
10078 } \
10079 } \
10080 while (0)
10081
10082 #define SET_SAVED_BUTTON_EVENT SET_SAVED_MENU_EVENT (sizeof (XButtonEvent))
10083 #define SET_SAVED_KEY_EVENT SET_SAVED_MENU_EVENT (sizeof (XKeyEvent))
10084
10085 /* Read events coming from the X server.
10086 This routine is called by the SIGIO handler.
10087 We return as soon as there are no more events to be read.
10088
10089 Events representing keys are stored in buffer BUFP,
10090 which can hold up to NUMCHARS characters.
10091 We return the number of characters stored into the buffer,
10092 thus pretending to be `read'.
10093
10094 EXPECTED is nonzero if the caller knows input is available. */
10095
10096 static int
10097 XTread_socket (sd, bufp, numchars, expected)
10098 register int sd;
10099 /* register */ struct input_event *bufp;
10100 /* register */ int numchars;
10101 int expected;
10102 {
10103 int count = 0;
10104 int nbytes = 0;
10105 XEvent event;
10106 struct frame *f;
10107 int event_found = 0;
10108 struct x_display_info *dpyinfo;
10109 struct coding_system coding;
10110
10111 if (interrupt_input_blocked)
10112 {
10113 interrupt_input_pending = 1;
10114 return -1;
10115 }
10116
10117 interrupt_input_pending = 0;
10118 BLOCK_INPUT;
10119
10120 /* So people can tell when we have read the available input. */
10121 input_signal_count++;
10122
10123 if (numchars <= 0)
10124 abort (); /* Don't think this happens. */
10125
10126 ++handling_signal;
10127
10128 /* Find the display we are supposed to read input for.
10129 It's the one communicating on descriptor SD. */
10130 for (dpyinfo = x_display_list; dpyinfo; dpyinfo = dpyinfo->next)
10131 {
10132 #if 0 /* This ought to be unnecessary; let's verify it. */
10133 #ifdef FIOSNBIO
10134 /* If available, Xlib uses FIOSNBIO to make the socket
10135 non-blocking, and then looks for EWOULDBLOCK. If O_NDELAY is set,
10136 FIOSNBIO is ignored, and instead of signaling EWOULDBLOCK,
10137 a read returns 0, which Xlib interprets as equivalent to EPIPE. */
10138 fcntl (dpyinfo->connection, F_SETFL, 0);
10139 #endif /* ! defined (FIOSNBIO) */
10140 #endif
10141
10142 #if 0 /* This code can't be made to work, with multiple displays,
10143 and appears not to be used on any system any more.
10144 Also keyboard.c doesn't turn O_NDELAY on and off
10145 for X connections. */
10146 #ifndef SIGIO
10147 #ifndef HAVE_SELECT
10148 if (! (fcntl (dpyinfo->connection, F_GETFL, 0) & O_NDELAY))
10149 {
10150 extern int read_alarm_should_throw;
10151 read_alarm_should_throw = 1;
10152 XPeekEvent (dpyinfo->display, &event);
10153 read_alarm_should_throw = 0;
10154 }
10155 #endif /* HAVE_SELECT */
10156 #endif /* SIGIO */
10157 #endif
10158
10159 /* For debugging, this gives a way to fake an I/O error. */
10160 if (dpyinfo == XTread_socket_fake_io_error)
10161 {
10162 XTread_socket_fake_io_error = 0;
10163 x_io_error_quitter (dpyinfo->display);
10164 }
10165
10166 #ifdef HAVE_X_SM
10167 BLOCK_INPUT;
10168 count += x_session_check_input (bufp, &numchars);
10169 UNBLOCK_INPUT;
10170 #endif
10171
10172 while (XPending (dpyinfo->display))
10173 {
10174 XNextEvent (dpyinfo->display, &event);
10175
10176 #ifdef HAVE_X_I18N
10177 {
10178 /* Filter events for the current X input method.
10179 XFilterEvent returns non-zero if the input method has
10180 consumed the event. We pass the frame's X window to
10181 XFilterEvent because that's the one for which the IC
10182 was created. */
10183 struct frame *f1 = x_any_window_to_frame (dpyinfo,
10184 event.xclient.window);
10185 if (XFilterEvent (&event, f1 ? FRAME_X_WINDOW (f1) : None))
10186 break;
10187 }
10188 #endif
10189 event_found = 1;
10190
10191 switch (event.type)
10192 {
10193 case ClientMessage:
10194 {
10195 if (event.xclient.message_type
10196 == dpyinfo->Xatom_wm_protocols
10197 && event.xclient.format == 32)
10198 {
10199 if (event.xclient.data.l[0]
10200 == dpyinfo->Xatom_wm_take_focus)
10201 {
10202 /* Use x_any_window_to_frame because this
10203 could be the shell widget window
10204 if the frame has no title bar. */
10205 f = x_any_window_to_frame (dpyinfo, event.xclient.window);
10206 #ifdef HAVE_X_I18N
10207 /* Not quite sure this is needed -pd */
10208 if (f && FRAME_XIC (f))
10209 XSetICFocus (FRAME_XIC (f));
10210 #endif
10211 #if 0 /* Emacs sets WM hints whose `input' field is `true'. This
10212 instructs the WM to set the input focus automatically for
10213 Emacs with a call to XSetInputFocus. Setting WM_TAKE_FOCUS
10214 tells the WM to send us a ClientMessage WM_TAKE_FOCUS after
10215 it has set the focus. So, XSetInputFocus below is not
10216 needed.
10217
10218 The call to XSetInputFocus below has also caused trouble. In
10219 cases where the XSetInputFocus done by the WM and the one
10220 below are temporally close (on a fast machine), the call
10221 below can generate additional FocusIn events which confuse
10222 Emacs. */
10223
10224 /* Since we set WM_TAKE_FOCUS, we must call
10225 XSetInputFocus explicitly. But not if f is null,
10226 since that might be an event for a deleted frame. */
10227 if (f)
10228 {
10229 Display *d = event.xclient.display;
10230 /* Catch and ignore errors, in case window has been
10231 iconified by a window manager such as GWM. */
10232 int count = x_catch_errors (d);
10233 XSetInputFocus (d, event.xclient.window,
10234 /* The ICCCM says this is
10235 the only valid choice. */
10236 RevertToParent,
10237 event.xclient.data.l[1]);
10238 /* This is needed to detect the error
10239 if there is an error. */
10240 XSync (d, False);
10241 x_uncatch_errors (d, count);
10242 }
10243 /* Not certain about handling scroll bars here */
10244 #endif /* 0 */
10245 }
10246 else if (event.xclient.data.l[0]
10247 == dpyinfo->Xatom_wm_save_yourself)
10248 {
10249 /* Save state modify the WM_COMMAND property to
10250 something which can reinstate us. This notifies
10251 the session manager, who's looking for such a
10252 PropertyNotify. Can restart processing when
10253 a keyboard or mouse event arrives. */
10254 /* If we have a session manager, don't set this.
10255 KDE will then start two Emacsen, one for the
10256 session manager and one for this. */
10257 if (numchars > 0
10258 #ifdef HAVE_X_SM
10259 && ! x_session_have_connection ()
10260 #endif
10261 )
10262 {
10263 f = x_top_window_to_frame (dpyinfo,
10264 event.xclient.window);
10265 /* This is just so we only give real data once
10266 for a single Emacs process. */
10267 if (f == SELECTED_FRAME ())
10268 XSetCommand (FRAME_X_DISPLAY (f),
10269 event.xclient.window,
10270 initial_argv, initial_argc);
10271 else if (f)
10272 XSetCommand (FRAME_X_DISPLAY (f),
10273 event.xclient.window,
10274 0, 0);
10275 }
10276 }
10277 else if (event.xclient.data.l[0]
10278 == dpyinfo->Xatom_wm_delete_window)
10279 {
10280 struct frame *f
10281 = x_any_window_to_frame (dpyinfo,
10282 event.xclient.window);
10283
10284 if (f)
10285 {
10286 if (numchars == 0)
10287 abort ();
10288
10289 bufp->kind = DELETE_WINDOW_EVENT;
10290 XSETFRAME (bufp->frame_or_window, f);
10291 bufp->arg = Qnil;
10292 bufp++;
10293
10294 count += 1;
10295 numchars -= 1;
10296 }
10297 }
10298 }
10299 else if (event.xclient.message_type
10300 == dpyinfo->Xatom_wm_configure_denied)
10301 {
10302 }
10303 else if (event.xclient.message_type
10304 == dpyinfo->Xatom_wm_window_moved)
10305 {
10306 int new_x, new_y;
10307 struct frame *f
10308 = x_window_to_frame (dpyinfo, event.xclient.window);
10309
10310 new_x = event.xclient.data.s[0];
10311 new_y = event.xclient.data.s[1];
10312
10313 if (f)
10314 {
10315 f->output_data.x->left_pos = new_x;
10316 f->output_data.x->top_pos = new_y;
10317 }
10318 }
10319 #ifdef HACK_EDITRES
10320 else if (event.xclient.message_type
10321 == dpyinfo->Xatom_editres)
10322 {
10323 struct frame *f
10324 = x_any_window_to_frame (dpyinfo, event.xclient.window);
10325 _XEditResCheckMessages (f->output_data.x->widget, NULL,
10326 &event, NULL);
10327 }
10328 #endif /* HACK_EDITRES */
10329 else if ((event.xclient.message_type
10330 == dpyinfo->Xatom_DONE)
10331 || (event.xclient.message_type
10332 == dpyinfo->Xatom_PAGE))
10333 {
10334 /* Ghostview job completed. Kill it. We could
10335 reply with "Next" if we received "Page", but we
10336 currently never do because we are interested in
10337 images, only, which should have 1 page. */
10338 Pixmap pixmap = (Pixmap) event.xclient.data.l[1];
10339 struct frame *f
10340 = x_window_to_frame (dpyinfo, event.xclient.window);
10341 x_kill_gs_process (pixmap, f);
10342 expose_frame (f, 0, 0, 0, 0);
10343 }
10344 #ifdef USE_TOOLKIT_SCROLL_BARS
10345 /* Scroll bar callbacks send a ClientMessage from which
10346 we construct an input_event. */
10347 else if (event.xclient.message_type
10348 == dpyinfo->Xatom_Scrollbar)
10349 {
10350 x_scroll_bar_to_input_event (&event, bufp);
10351 ++bufp, ++count, --numchars;
10352 goto out;
10353 }
10354 #endif /* USE_TOOLKIT_SCROLL_BARS */
10355 else
10356 goto OTHER;
10357 }
10358 break;
10359
10360 case SelectionNotify:
10361 #ifdef USE_X_TOOLKIT
10362 if (! x_window_to_frame (dpyinfo, event.xselection.requestor))
10363 goto OTHER;
10364 #endif /* not USE_X_TOOLKIT */
10365 x_handle_selection_notify (&event.xselection);
10366 break;
10367
10368 case SelectionClear: /* Someone has grabbed ownership. */
10369 #ifdef USE_X_TOOLKIT
10370 if (! x_window_to_frame (dpyinfo, event.xselectionclear.window))
10371 goto OTHER;
10372 #endif /* USE_X_TOOLKIT */
10373 {
10374 XSelectionClearEvent *eventp = (XSelectionClearEvent *) &event;
10375
10376 if (numchars == 0)
10377 abort ();
10378
10379 bufp->kind = SELECTION_CLEAR_EVENT;
10380 SELECTION_EVENT_DISPLAY (bufp) = eventp->display;
10381 SELECTION_EVENT_SELECTION (bufp) = eventp->selection;
10382 SELECTION_EVENT_TIME (bufp) = eventp->time;
10383 bufp->frame_or_window = Qnil;
10384 bufp->arg = Qnil;
10385 bufp++;
10386
10387 count += 1;
10388 numchars -= 1;
10389 }
10390 break;
10391
10392 case SelectionRequest: /* Someone wants our selection. */
10393 #ifdef USE_X_TOOLKIT
10394 if (!x_window_to_frame (dpyinfo, event.xselectionrequest.owner))
10395 goto OTHER;
10396 #endif /* USE_X_TOOLKIT */
10397 if (x_queue_selection_requests)
10398 x_queue_event (x_window_to_frame (dpyinfo, event.xselectionrequest.owner),
10399 &event);
10400 else
10401 {
10402 XSelectionRequestEvent *eventp
10403 = (XSelectionRequestEvent *) &event;
10404
10405 if (numchars == 0)
10406 abort ();
10407
10408 bufp->kind = SELECTION_REQUEST_EVENT;
10409 SELECTION_EVENT_DISPLAY (bufp) = eventp->display;
10410 SELECTION_EVENT_REQUESTOR (bufp) = eventp->requestor;
10411 SELECTION_EVENT_SELECTION (bufp) = eventp->selection;
10412 SELECTION_EVENT_TARGET (bufp) = eventp->target;
10413 SELECTION_EVENT_PROPERTY (bufp) = eventp->property;
10414 SELECTION_EVENT_TIME (bufp) = eventp->time;
10415 bufp->frame_or_window = Qnil;
10416 bufp->arg = Qnil;
10417 bufp++;
10418
10419 count += 1;
10420 numchars -= 1;
10421 }
10422 break;
10423
10424 case PropertyNotify:
10425 #if 0 /* This is plain wrong. In the case that we are waiting for a
10426 PropertyNotify used as an ACK in incremental selection
10427 transfer, the property will be on the receiver's window. */
10428 #if defined USE_X_TOOLKIT
10429 if (!x_any_window_to_frame (dpyinfo, event.xproperty.window))
10430 goto OTHER;
10431 #endif
10432 #endif
10433 x_handle_property_notify (&event.xproperty);
10434 goto OTHER;
10435
10436 case ReparentNotify:
10437 f = x_top_window_to_frame (dpyinfo, event.xreparent.window);
10438 if (f)
10439 {
10440 int x, y;
10441 f->output_data.x->parent_desc = event.xreparent.parent;
10442 x_real_positions (f, &x, &y);
10443 f->output_data.x->left_pos = x;
10444 f->output_data.x->top_pos = y;
10445 }
10446 break;
10447
10448 case Expose:
10449 f = x_window_to_frame (dpyinfo, event.xexpose.window);
10450 if (f)
10451 {
10452 x_check_fullscreen (f);
10453
10454 if (f->async_visible == 0)
10455 {
10456 f->async_visible = 1;
10457 f->async_iconified = 0;
10458 f->output_data.x->has_been_visible = 1;
10459 SET_FRAME_GARBAGED (f);
10460 }
10461 else
10462 expose_frame (x_window_to_frame (dpyinfo,
10463 event.xexpose.window),
10464 event.xexpose.x, event.xexpose.y,
10465 event.xexpose.width, event.xexpose.height);
10466 }
10467 else
10468 {
10469 #ifndef USE_TOOLKIT_SCROLL_BARS
10470 struct scroll_bar *bar;
10471 #endif
10472 #if defined USE_LUCID
10473 /* Submenus of the Lucid menu bar aren't widgets
10474 themselves, so there's no way to dispatch events
10475 to them. Recognize this case separately. */
10476 {
10477 Widget widget
10478 = x_window_to_menu_bar (event.xexpose.window);
10479 if (widget)
10480 xlwmenu_redisplay (widget);
10481 }
10482 #endif /* USE_LUCID */
10483
10484 #ifdef USE_TOOLKIT_SCROLL_BARS
10485 /* Dispatch event to the widget. */
10486 goto OTHER;
10487 #else /* not USE_TOOLKIT_SCROLL_BARS */
10488 bar = x_window_to_scroll_bar (event.xexpose.window);
10489
10490 if (bar)
10491 x_scroll_bar_expose (bar, &event);
10492 #ifdef USE_X_TOOLKIT
10493 else
10494 goto OTHER;
10495 #endif /* USE_X_TOOLKIT */
10496 #endif /* not USE_TOOLKIT_SCROLL_BARS */
10497 }
10498 break;
10499
10500 case GraphicsExpose: /* This occurs when an XCopyArea's
10501 source area was obscured or not
10502 available. */
10503 f = x_window_to_frame (dpyinfo, event.xgraphicsexpose.drawable);
10504 if (f)
10505 {
10506 expose_frame (f,
10507 event.xgraphicsexpose.x, event.xgraphicsexpose.y,
10508 event.xgraphicsexpose.width,
10509 event.xgraphicsexpose.height);
10510 }
10511 #ifdef USE_X_TOOLKIT
10512 else
10513 goto OTHER;
10514 #endif /* USE_X_TOOLKIT */
10515 break;
10516
10517 case NoExpose: /* This occurs when an XCopyArea's
10518 source area was completely
10519 available. */
10520 break;
10521
10522 case UnmapNotify:
10523 /* Redo the mouse-highlight after the tooltip has gone. */
10524 if (event.xmap.window == tip_window)
10525 {
10526 tip_window = 0;
10527 redo_mouse_highlight ();
10528 }
10529
10530 f = x_top_window_to_frame (dpyinfo, event.xunmap.window);
10531 if (f) /* F may no longer exist if
10532 the frame was deleted. */
10533 {
10534 /* While a frame is unmapped, display generation is
10535 disabled; you don't want to spend time updating a
10536 display that won't ever be seen. */
10537 f->async_visible = 0;
10538 /* We can't distinguish, from the event, whether the window
10539 has become iconified or invisible. So assume, if it
10540 was previously visible, than now it is iconified.
10541 But x_make_frame_invisible clears both
10542 the visible flag and the iconified flag;
10543 and that way, we know the window is not iconified now. */
10544 if (FRAME_VISIBLE_P (f) || FRAME_ICONIFIED_P (f))
10545 {
10546 f->async_iconified = 1;
10547
10548 bufp->kind = ICONIFY_EVENT;
10549 XSETFRAME (bufp->frame_or_window, f);
10550 bufp->arg = Qnil;
10551 bufp++;
10552 count++;
10553 numchars--;
10554 }
10555 }
10556 goto OTHER;
10557
10558 case MapNotify:
10559 if (event.xmap.window == tip_window)
10560 /* The tooltip has been drawn already. Avoid
10561 the SET_FRAME_GARBAGED below. */
10562 goto OTHER;
10563
10564 /* We use x_top_window_to_frame because map events can
10565 come for sub-windows and they don't mean that the
10566 frame is visible. */
10567 f = x_top_window_to_frame (dpyinfo, event.xmap.window);
10568 if (f)
10569 {
10570 f->async_visible = 1;
10571 f->async_iconified = 0;
10572 f->output_data.x->has_been_visible = 1;
10573
10574 /* wait_reading_process_input will notice this and update
10575 the frame's display structures. */
10576 SET_FRAME_GARBAGED (f);
10577
10578 if (f->iconified)
10579 {
10580 bufp->kind = DEICONIFY_EVENT;
10581 XSETFRAME (bufp->frame_or_window, f);
10582 bufp->arg = Qnil;
10583 bufp++;
10584 count++;
10585 numchars--;
10586 }
10587 else if (! NILP (Vframe_list)
10588 && ! NILP (XCDR (Vframe_list)))
10589 /* Force a redisplay sooner or later
10590 to update the frame titles
10591 in case this is the second frame. */
10592 record_asynch_buffer_change ();
10593 }
10594 goto OTHER;
10595
10596 case KeyPress:
10597
10598 /* Dispatch KeyPress events when in menu. */
10599 if (popup_activated_flag)
10600 goto OTHER;
10601
10602 f = x_any_window_to_frame (dpyinfo, event.xkey.window);
10603
10604 if (!dpyinfo->mouse_face_hidden && INTEGERP (Vmouse_highlight))
10605 {
10606 dpyinfo->mouse_face_hidden = 1;
10607 clear_mouse_face (dpyinfo);
10608 }
10609
10610 #if defined USE_MOTIF && defined USE_TOOLKIT_SCROLL_BARS
10611 if (f == 0)
10612 {
10613 /* Scroll bars consume key events, but we want
10614 the keys to go to the scroll bar's frame. */
10615 Widget widget = XtWindowToWidget (dpyinfo->display,
10616 event.xkey.window);
10617 if (widget && XmIsScrollBar (widget))
10618 {
10619 widget = XtParent (widget);
10620 f = x_any_window_to_frame (dpyinfo, XtWindow (widget));
10621 }
10622 }
10623 #endif /* USE_MOTIF and USE_TOOLKIT_SCROLL_BARS */
10624
10625 if (f != 0)
10626 {
10627 KeySym keysym, orig_keysym;
10628 /* al%imercury@uunet.uu.net says that making this 81
10629 instead of 80 fixed a bug whereby meta chars made
10630 his Emacs hang.
10631
10632 It seems that some version of XmbLookupString has
10633 a bug of not returning XBufferOverflow in
10634 status_return even if the input is too long to
10635 fit in 81 bytes. So, we must prepare sufficient
10636 bytes for copy_buffer. 513 bytes (256 chars for
10637 two-byte character set) seems to be a fairly good
10638 approximation. -- 2000.8.10 handa@etl.go.jp */
10639 unsigned char copy_buffer[513];
10640 unsigned char *copy_bufptr = copy_buffer;
10641 int copy_bufsiz = sizeof (copy_buffer);
10642 int modifiers;
10643 Lisp_Object coding_system = Qlatin_1;
10644
10645 event.xkey.state
10646 |= x_emacs_to_x_modifiers (FRAME_X_DISPLAY_INFO (f),
10647 extra_keyboard_modifiers);
10648 modifiers = event.xkey.state;
10649
10650 /* This will have to go some day... */
10651
10652 /* make_lispy_event turns chars into control chars.
10653 Don't do it here because XLookupString is too eager. */
10654 event.xkey.state &= ~ControlMask;
10655 event.xkey.state &= ~(dpyinfo->meta_mod_mask
10656 | dpyinfo->super_mod_mask
10657 | dpyinfo->hyper_mod_mask
10658 | dpyinfo->alt_mod_mask);
10659
10660 /* In case Meta is ComposeCharacter,
10661 clear its status. According to Markus Ehrnsperger
10662 Markus.Ehrnsperger@lehrstuhl-bross.physik.uni-muenchen.de
10663 this enables ComposeCharacter to work whether or
10664 not it is combined with Meta. */
10665 if (modifiers & dpyinfo->meta_mod_mask)
10666 bzero (&compose_status, sizeof (compose_status));
10667
10668 #ifdef HAVE_X_I18N
10669 if (FRAME_XIC (f))
10670 {
10671 Status status_return;
10672
10673 coding_system = Vlocale_coding_system;
10674 nbytes = XmbLookupString (FRAME_XIC (f),
10675 &event.xkey, copy_bufptr,
10676 copy_bufsiz, &keysym,
10677 &status_return);
10678 if (status_return == XBufferOverflow)
10679 {
10680 copy_bufsiz = nbytes + 1;
10681 copy_bufptr = (char *) alloca (copy_bufsiz);
10682 nbytes = XmbLookupString (FRAME_XIC (f),
10683 &event.xkey, copy_bufptr,
10684 copy_bufsiz, &keysym,
10685 &status_return);
10686 }
10687 /* Xutf8LookupString is a new but already deprecated interface. -stef */
10688 #if 0 && defined X_HAVE_UTF8_STRING
10689 else if (status_return == XLookupKeySym)
10690 { /* Try again but with utf-8. */
10691 coding_system = Qutf_8;
10692 nbytes = Xutf8LookupString (FRAME_XIC (f),
10693 &event.xkey, copy_bufptr,
10694 copy_bufsiz, &keysym,
10695 &status_return);
10696 if (status_return == XBufferOverflow)
10697 {
10698 copy_bufsiz = nbytes + 1;
10699 copy_bufptr = (char *) alloca (copy_bufsiz);
10700 nbytes = Xutf8LookupString (FRAME_XIC (f),
10701 &event.xkey,
10702 copy_bufptr,
10703 copy_bufsiz, &keysym,
10704 &status_return);
10705 }
10706 }
10707 #endif
10708
10709 if (status_return == XLookupNone)
10710 break;
10711 else if (status_return == XLookupChars)
10712 {
10713 keysym = NoSymbol;
10714 modifiers = 0;
10715 }
10716 else if (status_return != XLookupKeySym
10717 && status_return != XLookupBoth)
10718 abort ();
10719 }
10720 else
10721 nbytes = XLookupString (&event.xkey, copy_bufptr,
10722 copy_bufsiz, &keysym,
10723 &compose_status);
10724 #else
10725 nbytes = XLookupString (&event.xkey, copy_bufptr,
10726 copy_bufsiz, &keysym,
10727 &compose_status);
10728 #endif
10729
10730 orig_keysym = keysym;
10731
10732 if (numchars > 1)
10733 {
10734 if (((keysym >= XK_BackSpace && keysym <= XK_Escape)
10735 || keysym == XK_Delete
10736 #ifdef XK_ISO_Left_Tab
10737 || (keysym >= XK_ISO_Left_Tab && keysym <= XK_ISO_Enter)
10738 #endif
10739 || (keysym >= XK_Kanji && keysym <= XK_Eisu_toggle)
10740 || IsCursorKey (keysym) /* 0xff50 <= x < 0xff60 */
10741 || IsMiscFunctionKey (keysym) /* 0xff60 <= x < VARIES */
10742 #ifdef HPUX
10743 /* This recognizes the "extended function keys".
10744 It seems there's no cleaner way.
10745 Test IsModifierKey to avoid handling mode_switch
10746 incorrectly. */
10747 || ((unsigned) (keysym) >= XK_Select
10748 && (unsigned)(keysym) < XK_KP_Space)
10749 #endif
10750 #ifdef XK_dead_circumflex
10751 || orig_keysym == XK_dead_circumflex
10752 #endif
10753 #ifdef XK_dead_grave
10754 || orig_keysym == XK_dead_grave
10755 #endif
10756 #ifdef XK_dead_tilde
10757 || orig_keysym == XK_dead_tilde
10758 #endif
10759 #ifdef XK_dead_diaeresis
10760 || orig_keysym == XK_dead_diaeresis
10761 #endif
10762 #ifdef XK_dead_macron
10763 || orig_keysym == XK_dead_macron
10764 #endif
10765 #ifdef XK_dead_degree
10766 || orig_keysym == XK_dead_degree
10767 #endif
10768 #ifdef XK_dead_acute
10769 || orig_keysym == XK_dead_acute
10770 #endif
10771 #ifdef XK_dead_cedilla
10772 || orig_keysym == XK_dead_cedilla
10773 #endif
10774 #ifdef XK_dead_breve
10775 || orig_keysym == XK_dead_breve
10776 #endif
10777 #ifdef XK_dead_ogonek
10778 || orig_keysym == XK_dead_ogonek
10779 #endif
10780 #ifdef XK_dead_caron
10781 || orig_keysym == XK_dead_caron
10782 #endif
10783 #ifdef XK_dead_doubleacute
10784 || orig_keysym == XK_dead_doubleacute
10785 #endif
10786 #ifdef XK_dead_abovedot
10787 || orig_keysym == XK_dead_abovedot
10788 #endif
10789 || IsKeypadKey (keysym) /* 0xff80 <= x < 0xffbe */
10790 || IsFunctionKey (keysym) /* 0xffbe <= x < 0xffe1 */
10791 /* Any "vendor-specific" key is ok. */
10792 || (orig_keysym & (1 << 28))
10793 || (keysym != NoSymbol && nbytes == 0))
10794 && ! (IsModifierKey (orig_keysym)
10795 #ifndef HAVE_X11R5
10796 #ifdef XK_Mode_switch
10797 || ((unsigned)(orig_keysym) == XK_Mode_switch)
10798 #endif
10799 #ifdef XK_Num_Lock
10800 || ((unsigned)(orig_keysym) == XK_Num_Lock)
10801 #endif
10802 #endif /* not HAVE_X11R5 */
10803 /* The symbols from XK_ISO_Lock to
10804 XK_ISO_Last_Group_Lock doesn't have real
10805 modifiers but should be treated similarly
10806 to Mode_switch by Emacs. */
10807 #if defined XK_ISO_Lock && defined XK_ISO_Last_Group_Lock
10808 || ((unsigned)(orig_keysym) >= XK_ISO_Lock
10809 && (unsigned)(orig_keysym) <= XK_ISO_Last_Group_Lock)
10810 #endif
10811 ))
10812 {
10813 if (temp_index == sizeof temp_buffer / sizeof (short))
10814 temp_index = 0;
10815 temp_buffer[temp_index++] = keysym;
10816 bufp->kind = NON_ASCII_KEYSTROKE_EVENT;
10817 bufp->code = keysym;
10818 XSETFRAME (bufp->frame_or_window, f);
10819 bufp->arg = Qnil;
10820 bufp->modifiers
10821 = x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO (f),
10822 modifiers);
10823 bufp->timestamp = event.xkey.time;
10824 bufp++;
10825 count++;
10826 numchars--;
10827 }
10828 else if (numchars > nbytes)
10829 {
10830 register int i;
10831 register int c;
10832 int nchars, len;
10833
10834 /* The input should be decoded with `coding_system'
10835 which depends on which X*LookupString function
10836 we used just above and the locale. */
10837 setup_coding_system (coding_system, &coding);
10838 coding.src_multibyte = 0;
10839 coding.dst_multibyte = 1;
10840 /* The input is converted to events, thus we can't
10841 handle composition. Anyway, there's no XIM that
10842 gives us composition information. */
10843 coding.composing = COMPOSITION_DISABLED;
10844
10845 for (i = 0; i < nbytes; i++)
10846 {
10847 if (temp_index == (sizeof temp_buffer
10848 / sizeof (short)))
10849 temp_index = 0;
10850 temp_buffer[temp_index++] = copy_bufptr[i];
10851 }
10852
10853 {
10854 /* Decode the input data. */
10855 int require;
10856 unsigned char *p;
10857
10858 require = decoding_buffer_size (&coding, nbytes);
10859 p = (unsigned char *) alloca (require);
10860 coding.mode |= CODING_MODE_LAST_BLOCK;
10861 /* We explicitely disable composition
10862 handling because key data should
10863 not contain any composition
10864 sequence. */
10865 coding.composing = COMPOSITION_DISABLED;
10866 decode_coding (&coding, copy_bufptr, p,
10867 nbytes, require);
10868 nbytes = coding.produced;
10869 nchars = coding.produced_char;
10870 copy_bufptr = p;
10871 }
10872
10873 /* Convert the input data to a sequence of
10874 character events. */
10875 for (i = 0; i < nbytes; i += len)
10876 {
10877 if (nchars == nbytes)
10878 c = copy_bufptr[i], len = 1;
10879 else
10880 c = STRING_CHAR_AND_LENGTH (copy_bufptr + i,
10881 nbytes - i, len);
10882
10883 bufp->kind = (SINGLE_BYTE_CHAR_P (c)
10884 ? ASCII_KEYSTROKE_EVENT
10885 : MULTIBYTE_CHAR_KEYSTROKE_EVENT);
10886 bufp->code = c;
10887 XSETFRAME (bufp->frame_or_window, f);
10888 bufp->arg = Qnil;
10889 bufp->modifiers
10890 = x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO (f),
10891 modifiers);
10892 bufp->timestamp = event.xkey.time;
10893 bufp++;
10894 }
10895
10896 count += nchars;
10897 numchars -= nchars;
10898
10899 if (keysym == NoSymbol)
10900 break;
10901 }
10902 else
10903 abort ();
10904 }
10905 else
10906 abort ();
10907 }
10908 #ifdef HAVE_X_I18N
10909 /* Don't dispatch this event since XtDispatchEvent calls
10910 XFilterEvent, and two calls in a row may freeze the
10911 client. */
10912 break;
10913 #else
10914 goto OTHER;
10915 #endif
10916
10917 case KeyRelease:
10918 #ifdef HAVE_X_I18N
10919 /* Don't dispatch this event since XtDispatchEvent calls
10920 XFilterEvent, and two calls in a row may freeze the
10921 client. */
10922 break;
10923 #else
10924 goto OTHER;
10925 #endif
10926
10927 case EnterNotify:
10928 {
10929 int n;
10930
10931 n = x_detect_focus_change (dpyinfo, &event, bufp, numchars);
10932 if (n > 0)
10933 {
10934 bufp += n, count += n, numchars -= n;
10935 }
10936
10937 f = x_any_window_to_frame (dpyinfo, event.xcrossing.window);
10938
10939 #if 0
10940 if (event.xcrossing.focus)
10941 {
10942 /* Avoid nasty pop/raise loops. */
10943 if (f && (!(f->auto_raise)
10944 || !(f->auto_lower)
10945 || (event.xcrossing.time - enter_timestamp) > 500))
10946 {
10947 x_new_focus_frame (dpyinfo, f);
10948 enter_timestamp = event.xcrossing.time;
10949 }
10950 }
10951 else if (f == dpyinfo->x_focus_frame)
10952 x_new_focus_frame (dpyinfo, 0);
10953 #endif
10954
10955 /* EnterNotify counts as mouse movement,
10956 so update things that depend on mouse position. */
10957 if (f && !f->output_data.x->hourglass_p)
10958 note_mouse_movement (f, &event.xmotion);
10959 goto OTHER;
10960 }
10961
10962 case FocusIn:
10963 {
10964 int n;
10965
10966 n = x_detect_focus_change (dpyinfo, &event, bufp, numchars);
10967 if (n > 0)
10968 {
10969 bufp += n, count += n, numchars -= n;
10970 }
10971 }
10972
10973 goto OTHER;
10974
10975 case LeaveNotify:
10976 {
10977 int n;
10978
10979 n = x_detect_focus_change (dpyinfo, &event, bufp, numchars);
10980 if (n > 0)
10981 {
10982 bufp += n, count += n, numchars -= n;
10983 }
10984 }
10985
10986 f = x_top_window_to_frame (dpyinfo, event.xcrossing.window);
10987 if (f)
10988 {
10989 if (f == dpyinfo->mouse_face_mouse_frame)
10990 {
10991 /* If we move outside the frame, then we're
10992 certainly no longer on any text in the frame. */
10993 clear_mouse_face (dpyinfo);
10994 dpyinfo->mouse_face_mouse_frame = 0;
10995 }
10996
10997 /* Generate a nil HELP_EVENT to cancel a help-echo.
10998 Do it only if there's something to cancel.
10999 Otherwise, the startup message is cleared when
11000 the mouse leaves the frame. */
11001 if (any_help_event_p)
11002 {
11003 Lisp_Object frame;
11004 int n;
11005
11006 XSETFRAME (frame, f);
11007 help_echo = Qnil;
11008 n = gen_help_event (bufp, numchars,
11009 Qnil, frame, Qnil, Qnil, 0);
11010 bufp += n, count += n, numchars -= n;
11011 }
11012
11013 }
11014 goto OTHER;
11015
11016 case FocusOut:
11017 {
11018 int n;
11019
11020 n = x_detect_focus_change (dpyinfo, &event, bufp, numchars);
11021 if (n > 0)
11022 {
11023 bufp += n, count += n, numchars -= n;
11024 }
11025 }
11026
11027 goto OTHER;
11028
11029 case MotionNotify:
11030 {
11031 previous_help_echo = help_echo;
11032 help_echo = help_echo_object = help_echo_window = Qnil;
11033 help_echo_pos = -1;
11034
11035 if (dpyinfo->grabbed && last_mouse_frame
11036 && FRAME_LIVE_P (last_mouse_frame))
11037 f = last_mouse_frame;
11038 else
11039 f = x_window_to_frame (dpyinfo, event.xmotion.window);
11040
11041 if (dpyinfo->mouse_face_hidden)
11042 {
11043 dpyinfo->mouse_face_hidden = 0;
11044 clear_mouse_face (dpyinfo);
11045 }
11046
11047 if (f)
11048 {
11049
11050 /* Generate SELECT_WINDOW_EVENTs when needed. */
11051 if (mouse_autoselect_window)
11052 {
11053 Lisp_Object window;
11054 int area;
11055
11056 window = window_from_coordinates (f,
11057 event.xmotion.x, event.xmotion.y,
11058 &area, 0);
11059
11060 /* Window will be selected only when it is not selected now and
11061 last mouse movement event was not in it. Minibuffer window
11062 will be selected iff it is active. */
11063 if (WINDOWP(window)
11064 && !EQ (window, last_window)
11065 && !EQ (window, selected_window)
11066 && numchars > 0)
11067 {
11068 bufp->kind = SELECT_WINDOW_EVENT;
11069 bufp->frame_or_window = window;
11070 bufp->arg = Qnil;
11071 ++bufp, ++count, --numchars;
11072 }
11073
11074 last_window=window;
11075 }
11076 note_mouse_movement (f, &event.xmotion);
11077 }
11078 else
11079 {
11080 #ifndef USE_TOOLKIT_SCROLL_BARS
11081 struct scroll_bar *bar
11082 = x_window_to_scroll_bar (event.xmotion.window);
11083
11084 if (bar)
11085 x_scroll_bar_note_movement (bar, &event);
11086 #endif /* USE_TOOLKIT_SCROLL_BARS */
11087
11088 /* If we move outside the frame, then we're
11089 certainly no longer on any text in the frame. */
11090 clear_mouse_face (dpyinfo);
11091 }
11092
11093 /* If the contents of the global variable help_echo
11094 has changed, generate a HELP_EVENT. */
11095 if (!NILP (help_echo)
11096 || !NILP (previous_help_echo))
11097 {
11098 Lisp_Object frame;
11099 int n;
11100
11101 if (f)
11102 XSETFRAME (frame, f);
11103 else
11104 frame = Qnil;
11105
11106 any_help_event_p = 1;
11107 n = gen_help_event (bufp, numchars, help_echo, frame,
11108 help_echo_window, help_echo_object,
11109 help_echo_pos);
11110 bufp += n, count += n, numchars -= n;
11111 }
11112
11113 goto OTHER;
11114 }
11115
11116 case ConfigureNotify:
11117 f = x_top_window_to_frame (dpyinfo, event.xconfigure.window);
11118 if (f)
11119 {
11120 #ifndef USE_X_TOOLKIT
11121 /* If there is a pending resize for fullscreen, don't
11122 do this one, the right one will come later.
11123 The toolkit version doesn't seem to need this, but we
11124 need to reset it below. */
11125 int dont_resize =
11126 ((f->output_data.x->want_fullscreen & FULLSCREEN_WAIT)
11127 && FRAME_NEW_WIDTH (f) != 0);
11128 int rows = PIXEL_TO_CHAR_HEIGHT (f, event.xconfigure.height);
11129 int columns = PIXEL_TO_CHAR_WIDTH (f, event.xconfigure.width);
11130 if (dont_resize)
11131 goto OTHER;
11132
11133 /* In the toolkit version, change_frame_size
11134 is called by the code that handles resizing
11135 of the EmacsFrame widget. */
11136
11137 /* Even if the number of character rows and columns has
11138 not changed, the font size may have changed, so we need
11139 to check the pixel dimensions as well. */
11140 if (columns != f->width
11141 || rows != f->height
11142 || event.xconfigure.width != f->output_data.x->pixel_width
11143 || event.xconfigure.height != f->output_data.x->pixel_height)
11144 {
11145 change_frame_size (f, rows, columns, 0, 1, 0);
11146 SET_FRAME_GARBAGED (f);
11147 cancel_mouse_face (f);
11148 }
11149 #endif
11150
11151 f->output_data.x->pixel_width = event.xconfigure.width;
11152 f->output_data.x->pixel_height = event.xconfigure.height;
11153
11154 /* What we have now is the position of Emacs's own window.
11155 Convert that to the position of the window manager window. */
11156 x_real_positions (f, &f->output_data.x->left_pos,
11157 &f->output_data.x->top_pos);
11158
11159 x_check_fullscreen_move(f);
11160 if (f->output_data.x->want_fullscreen & FULLSCREEN_WAIT)
11161 f->output_data.x->want_fullscreen &=
11162 ~(FULLSCREEN_WAIT|FULLSCREEN_BOTH);
11163 #ifdef HAVE_X_I18N
11164 if (FRAME_XIC (f) && (FRAME_XIC_STYLE (f) & XIMStatusArea))
11165 xic_set_statusarea (f);
11166 #endif
11167
11168 if (f->output_data.x->parent_desc != FRAME_X_DISPLAY_INFO (f)->root_window)
11169 {
11170 /* Since the WM decorations come below top_pos now,
11171 we must put them below top_pos in the future. */
11172 f->output_data.x->win_gravity = NorthWestGravity;
11173 x_wm_set_size_hint (f, (long) 0, 0);
11174 }
11175 #ifdef USE_MOTIF
11176 /* Some window managers pass (0,0) as the location of
11177 the window, and the Motif event handler stores it
11178 in the emacs widget, which messes up Motif menus. */
11179 if (event.xconfigure.x == 0 && event.xconfigure.y == 0)
11180 {
11181 event.xconfigure.x = f->output_data.x->widget->core.x;
11182 event.xconfigure.y = f->output_data.x->widget->core.y;
11183 }
11184 #endif /* USE_MOTIF */
11185 }
11186 goto OTHER;
11187
11188 case ButtonPress:
11189 case ButtonRelease:
11190 {
11191 /* If we decide we want to generate an event to be seen
11192 by the rest of Emacs, we put it here. */
11193 struct input_event emacs_event;
11194 int tool_bar_p = 0;
11195
11196 emacs_event.kind = NO_EVENT;
11197 bzero (&compose_status, sizeof (compose_status));
11198
11199 if (dpyinfo->grabbed
11200 && last_mouse_frame
11201 && FRAME_LIVE_P (last_mouse_frame))
11202 f = last_mouse_frame;
11203 else
11204 f = x_window_to_frame (dpyinfo, event.xbutton.window);
11205
11206 if (f)
11207 {
11208 /* Is this in the tool-bar? */
11209 if (WINDOWP (f->tool_bar_window)
11210 && XFASTINT (XWINDOW (f->tool_bar_window)->height))
11211 {
11212 Lisp_Object window;
11213 int p, x, y;
11214
11215 x = event.xbutton.x;
11216 y = event.xbutton.y;
11217
11218 /* Set x and y. */
11219 window = window_from_coordinates (f, x, y, &p, 1);
11220 if (EQ (window, f->tool_bar_window))
11221 {
11222 x_handle_tool_bar_click (f, &event.xbutton);
11223 tool_bar_p = 1;
11224 }
11225 }
11226
11227 if (!tool_bar_p)
11228 if (!dpyinfo->x_focus_frame
11229 || f == dpyinfo->x_focus_frame)
11230 construct_mouse_click (&emacs_event, &event, f);
11231 }
11232 else
11233 {
11234 #ifndef USE_TOOLKIT_SCROLL_BARS
11235 struct scroll_bar *bar
11236 = x_window_to_scroll_bar (event.xbutton.window);
11237
11238 if (bar)
11239 x_scroll_bar_handle_click (bar, &event, &emacs_event);
11240 #endif /* not USE_TOOLKIT_SCROLL_BARS */
11241 }
11242
11243 if (event.type == ButtonPress)
11244 {
11245 dpyinfo->grabbed |= (1 << event.xbutton.button);
11246 last_mouse_frame = f;
11247 /* Ignore any mouse motion that happened
11248 before this event; any subsequent mouse-movement
11249 Emacs events should reflect only motion after
11250 the ButtonPress. */
11251 if (f != 0)
11252 f->mouse_moved = 0;
11253
11254 if (!tool_bar_p)
11255 last_tool_bar_item = -1;
11256 }
11257 else
11258 {
11259 dpyinfo->grabbed &= ~(1 << event.xbutton.button);
11260 }
11261
11262 if (numchars >= 1 && emacs_event.kind != NO_EVENT)
11263 {
11264 bcopy (&emacs_event, bufp, sizeof (struct input_event));
11265 bufp++;
11266 count++;
11267 numchars--;
11268 }
11269
11270 #ifdef USE_X_TOOLKIT
11271 f = x_menubar_window_to_frame (dpyinfo, event.xbutton.window);
11272 /* For a down-event in the menu bar,
11273 don't pass it to Xt right now.
11274 Instead, save it away
11275 and we will pass it to Xt from kbd_buffer_get_event.
11276 That way, we can run some Lisp code first. */
11277 if (f && event.type == ButtonPress
11278 /* Verify the event is really within the menu bar
11279 and not just sent to it due to grabbing. */
11280 && event.xbutton.x >= 0
11281 && event.xbutton.x < f->output_data.x->pixel_width
11282 && event.xbutton.y >= 0
11283 && event.xbutton.y < f->output_data.x->menubar_height
11284 && event.xbutton.same_screen)
11285 {
11286 SET_SAVED_BUTTON_EVENT;
11287 XSETFRAME (last_mouse_press_frame, f);
11288 }
11289 else if (event.type == ButtonPress)
11290 {
11291 last_mouse_press_frame = Qnil;
11292 goto OTHER;
11293 }
11294
11295 #ifdef USE_MOTIF /* This should do not harm for Lucid,
11296 but I am trying to be cautious. */
11297 else if (event.type == ButtonRelease)
11298 {
11299 if (!NILP (last_mouse_press_frame))
11300 {
11301 f = XFRAME (last_mouse_press_frame);
11302 if (f->output_data.x)
11303 SET_SAVED_BUTTON_EVENT;
11304 }
11305 else
11306 goto OTHER;
11307 }
11308 #endif /* USE_MOTIF */
11309 else
11310 goto OTHER;
11311 #endif /* USE_X_TOOLKIT */
11312 }
11313 break;
11314
11315 case CirculateNotify:
11316 goto OTHER;
11317
11318 case CirculateRequest:
11319 goto OTHER;
11320
11321 case VisibilityNotify:
11322 goto OTHER;
11323
11324 case MappingNotify:
11325 /* Someone has changed the keyboard mapping - update the
11326 local cache. */
11327 switch (event.xmapping.request)
11328 {
11329 case MappingModifier:
11330 x_find_modifier_meanings (dpyinfo);
11331 /* This is meant to fall through. */
11332 case MappingKeyboard:
11333 XRefreshKeyboardMapping (&event.xmapping);
11334 }
11335 goto OTHER;
11336
11337 default:
11338 OTHER:
11339 #ifdef USE_X_TOOLKIT
11340 BLOCK_INPUT;
11341 XtDispatchEvent (&event);
11342 UNBLOCK_INPUT;
11343 #endif /* USE_X_TOOLKIT */
11344 break;
11345 }
11346 }
11347 }
11348
11349 out:;
11350
11351 /* On some systems, an X bug causes Emacs to get no more events
11352 when the window is destroyed. Detect that. (1994.) */
11353 if (! event_found)
11354 {
11355 /* Emacs and the X Server eats up CPU time if XNoOp is done every time.
11356 One XNOOP in 100 loops will make Emacs terminate.
11357 B. Bretthauer, 1994 */
11358 x_noop_count++;
11359 if (x_noop_count >= 100)
11360 {
11361 x_noop_count=0;
11362
11363 if (next_noop_dpyinfo == 0)
11364 next_noop_dpyinfo = x_display_list;
11365
11366 XNoOp (next_noop_dpyinfo->display);
11367
11368 /* Each time we get here, cycle through the displays now open. */
11369 next_noop_dpyinfo = next_noop_dpyinfo->next;
11370 }
11371 }
11372
11373 /* If the focus was just given to an auto-raising frame,
11374 raise it now. */
11375 /* ??? This ought to be able to handle more than one such frame. */
11376 if (pending_autoraise_frame)
11377 {
11378 x_raise_frame (pending_autoraise_frame);
11379 pending_autoraise_frame = 0;
11380 }
11381
11382 UNBLOCK_INPUT;
11383 --handling_signal;
11384 return count;
11385 }
11386
11387
11388
11389 \f
11390 /***********************************************************************
11391 Text Cursor
11392 ***********************************************************************/
11393
11394 /* Notice when the text cursor of window W has been completely
11395 overwritten by a drawing operation that outputs glyphs in AREA
11396 starting at X0 and ending at X1 in the line starting at Y0 and
11397 ending at Y1. X coordinates are area-relative. X1 < 0 means all
11398 the rest of the line after X0 has been written. Y coordinates
11399 are window-relative. */
11400
11401 static void
11402 notice_overwritten_cursor (w, area, x0, x1, y0, y1)
11403 struct window *w;
11404 enum glyph_row_area area;
11405 int x0, y0, x1, y1;
11406 {
11407 if (area == TEXT_AREA && w->phys_cursor_on_p)
11408 {
11409 int cx0 = w->phys_cursor.x;
11410 int cx1 = cx0 + w->phys_cursor_width;
11411 int cy0 = w->phys_cursor.y;
11412 int cy1 = cy0 + w->phys_cursor_height;
11413
11414 if (x0 <= cx0 && (x1 < 0 || x1 >= cx1))
11415 {
11416 /* The cursor image will be completely removed from the
11417 screen if the output area intersects the cursor area in
11418 y-direction. When we draw in [y0 y1[, and some part of
11419 the cursor is at y < y0, that part must have been drawn
11420 before. When scrolling, the cursor is erased before
11421 actually scrolling, so we don't come here. When not
11422 scrolling, the rows above the old cursor row must have
11423 changed, and in this case these rows must have written
11424 over the cursor image.
11425
11426 Likewise if part of the cursor is below y1, with the
11427 exception of the cursor being in the first blank row at
11428 the buffer and window end because update_text_area
11429 doesn't draw that row. (Except when it does, but
11430 that's handled in update_text_area.) */
11431
11432 if (((y0 >= cy0 && y0 < cy1) || (y1 > cy0 && y1 < cy1))
11433 && w->current_matrix->rows[w->phys_cursor.vpos].displays_text_p)
11434 w->phys_cursor_on_p = 0;
11435 }
11436 }
11437 }
11438
11439
11440 /* Set clipping for output in glyph row ROW. W is the window in which
11441 we operate. GC is the graphics context to set clipping in.
11442 WHOLE_LINE_P non-zero means include the areas used for truncation
11443 mark display and alike in the clipping rectangle.
11444
11445 ROW may be a text row or, e.g., a mode line. Text rows must be
11446 clipped to the interior of the window dedicated to text display,
11447 mode lines must be clipped to the whole window. */
11448
11449 static void
11450 x_clip_to_row (w, row, gc, whole_line_p)
11451 struct window *w;
11452 struct glyph_row *row;
11453 GC gc;
11454 int whole_line_p;
11455 {
11456 struct frame *f = XFRAME (WINDOW_FRAME (w));
11457 XRectangle clip_rect;
11458 int window_x, window_y, window_width, window_height;
11459
11460 window_box (w, -1, &window_x, &window_y, &window_width, &window_height);
11461
11462 clip_rect.x = WINDOW_TO_FRAME_PIXEL_X (w, 0);
11463 clip_rect.y = WINDOW_TO_FRAME_PIXEL_Y (w, row->y);
11464 clip_rect.y = max (clip_rect.y, window_y);
11465 clip_rect.width = window_width;
11466 clip_rect.height = row->visible_height;
11467
11468 /* If clipping to the whole line, including trunc marks, extend
11469 the rectangle to the left and increase its width. */
11470 if (whole_line_p)
11471 {
11472 clip_rect.x -= FRAME_X_LEFT_FRINGE_WIDTH (f);
11473 clip_rect.width += FRAME_X_FRINGE_WIDTH (f);
11474 }
11475
11476 XSetClipRectangles (FRAME_X_DISPLAY (f), gc, 0, 0, &clip_rect, 1, Unsorted);
11477 }
11478
11479
11480 /* Draw a hollow box cursor on window W in glyph row ROW. */
11481
11482 static void
11483 x_draw_hollow_cursor (w, row)
11484 struct window *w;
11485 struct glyph_row *row;
11486 {
11487 struct frame *f = XFRAME (WINDOW_FRAME (w));
11488 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
11489 Display *dpy = FRAME_X_DISPLAY (f);
11490 int x, y, wd, h;
11491 XGCValues xgcv;
11492 struct glyph *cursor_glyph;
11493 GC gc;
11494
11495 /* Compute frame-relative coordinates from window-relative
11496 coordinates. */
11497 x = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x);
11498 y = (WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y)
11499 + row->ascent - w->phys_cursor_ascent);
11500 h = row->height - 1;
11501
11502 /* Get the glyph the cursor is on. If we can't tell because
11503 the current matrix is invalid or such, give up. */
11504 cursor_glyph = get_phys_cursor_glyph (w);
11505 if (cursor_glyph == NULL)
11506 return;
11507
11508 /* Compute the width of the rectangle to draw. If on a stretch
11509 glyph, and `x-stretch-block-cursor' is nil, don't draw a
11510 rectangle as wide as the glyph, but use a canonical character
11511 width instead. */
11512 wd = cursor_glyph->pixel_width - 1;
11513 if (cursor_glyph->type == STRETCH_GLYPH
11514 && !x_stretch_cursor_p)
11515 wd = min (CANON_X_UNIT (f), wd);
11516 w->phys_cursor_width = wd;
11517
11518 /* The foreground of cursor_gc is typically the same as the normal
11519 background color, which can cause the cursor box to be invisible. */
11520 xgcv.foreground = f->output_data.x->cursor_pixel;
11521 if (dpyinfo->scratch_cursor_gc)
11522 XChangeGC (dpy, dpyinfo->scratch_cursor_gc, GCForeground, &xgcv);
11523 else
11524 dpyinfo->scratch_cursor_gc = XCreateGC (dpy, FRAME_X_WINDOW (f),
11525 GCForeground, &xgcv);
11526 gc = dpyinfo->scratch_cursor_gc;
11527
11528 /* Set clipping, draw the rectangle, and reset clipping again. */
11529 x_clip_to_row (w, row, gc, 0);
11530 XDrawRectangle (dpy, FRAME_X_WINDOW (f), gc, x, y, wd, h);
11531 XSetClipMask (dpy, gc, None);
11532 }
11533
11534
11535 /* Draw a bar cursor on window W in glyph row ROW.
11536
11537 Implementation note: One would like to draw a bar cursor with an
11538 angle equal to the one given by the font property XA_ITALIC_ANGLE.
11539 Unfortunately, I didn't find a font yet that has this property set.
11540 --gerd. */
11541
11542 static void
11543 x_draw_bar_cursor (w, row, width, kind)
11544 struct window *w;
11545 struct glyph_row *row;
11546 int width;
11547 enum text_cursor_kinds kind;
11548 {
11549 struct frame *f = XFRAME (w->frame);
11550 struct glyph *cursor_glyph;
11551
11552 /* If cursor is out of bounds, don't draw garbage. This can happen
11553 in mini-buffer windows when switching between echo area glyphs
11554 and mini-buffer. */
11555 cursor_glyph = get_phys_cursor_glyph (w);
11556 if (cursor_glyph == NULL)
11557 return;
11558
11559 /* If on an image, draw like a normal cursor. That's usually better
11560 visible than drawing a bar, esp. if the image is large so that
11561 the bar might not be in the window. */
11562 if (cursor_glyph->type == IMAGE_GLYPH)
11563 {
11564 struct glyph_row *row;
11565 row = MATRIX_ROW (w->current_matrix, w->phys_cursor.vpos);
11566 x_draw_phys_cursor_glyph (w, row, DRAW_CURSOR);
11567 }
11568 else
11569 {
11570 Display *dpy = FRAME_X_DISPLAY (f);
11571 Window window = FRAME_X_WINDOW (f);
11572 GC gc = FRAME_X_DISPLAY_INFO (f)->scratch_cursor_gc;
11573 unsigned long mask = GCForeground | GCBackground | GCGraphicsExposures;
11574 struct face *face = FACE_FROM_ID (f, cursor_glyph->face_id);
11575 XGCValues xgcv;
11576
11577 /* If the glyph's background equals the color we normally draw
11578 the bar cursor in, the bar cursor in its normal color is
11579 invisible. Use the glyph's foreground color instead in this
11580 case, on the assumption that the glyph's colors are chosen so
11581 that the glyph is legible. */
11582 if (face->background == f->output_data.x->cursor_pixel)
11583 xgcv.background = xgcv.foreground = face->foreground;
11584 else
11585 xgcv.background = xgcv.foreground = f->output_data.x->cursor_pixel;
11586 xgcv.graphics_exposures = 0;
11587
11588 if (gc)
11589 XChangeGC (dpy, gc, mask, &xgcv);
11590 else
11591 {
11592 gc = XCreateGC (dpy, window, mask, &xgcv);
11593 FRAME_X_DISPLAY_INFO (f)->scratch_cursor_gc = gc;
11594 }
11595
11596 if (width < 0)
11597 width = f->output_data.x->cursor_width;
11598 width = min (cursor_glyph->pixel_width, width);
11599
11600 w->phys_cursor_width = width;
11601 x_clip_to_row (w, row, gc, 0);
11602
11603 if (kind == BAR_CURSOR)
11604 XFillRectangle (dpy, window, gc,
11605 WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x),
11606 WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y),
11607 width, row->height);
11608 else
11609 XFillRectangle (dpy, window, gc,
11610 WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x),
11611 WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y +
11612 row->height - width),
11613 cursor_glyph->pixel_width,
11614 width);
11615
11616 XSetClipMask (dpy, gc, None);
11617 }
11618 }
11619
11620
11621 /* Clear the cursor of window W to background color, and mark the
11622 cursor as not shown. This is used when the text where the cursor
11623 is is about to be rewritten. */
11624
11625 static void
11626 x_clear_cursor (w)
11627 struct window *w;
11628 {
11629 if (FRAME_VISIBLE_P (XFRAME (w->frame)) && w->phys_cursor_on_p)
11630 x_update_window_cursor (w, 0);
11631 }
11632
11633
11634 /* Draw the cursor glyph of window W in glyph row ROW. See the
11635 comment of x_draw_glyphs for the meaning of HL. */
11636
11637 static void
11638 x_draw_phys_cursor_glyph (w, row, hl)
11639 struct window *w;
11640 struct glyph_row *row;
11641 enum draw_glyphs_face hl;
11642 {
11643 /* If cursor hpos is out of bounds, don't draw garbage. This can
11644 happen in mini-buffer windows when switching between echo area
11645 glyphs and mini-buffer. */
11646 if (w->phys_cursor.hpos < row->used[TEXT_AREA])
11647 {
11648 int on_p = w->phys_cursor_on_p;
11649 int x1;
11650
11651 x1 = x_draw_glyphs (w, w->phys_cursor.x, row, TEXT_AREA,
11652 w->phys_cursor.hpos, w->phys_cursor.hpos + 1,
11653 hl, 0);
11654 w->phys_cursor_on_p = on_p;
11655
11656 if (hl == DRAW_CURSOR)
11657 w->phys_cursor_width = x1 - w->phys_cursor.x;
11658
11659 /* When we erase the cursor, and ROW is overlapped by other
11660 rows, make sure that these overlapping parts of other rows
11661 are redrawn. */
11662 else if (hl == DRAW_NORMAL_TEXT && row->overlapped_p)
11663 {
11664 if (row > w->current_matrix->rows
11665 && MATRIX_ROW_OVERLAPS_SUCC_P (row - 1))
11666 x_fix_overlapping_area (w, row - 1, TEXT_AREA);
11667
11668 if (MATRIX_ROW_BOTTOM_Y (row) < window_text_bottom_y (w)
11669 && MATRIX_ROW_OVERLAPS_PRED_P (row + 1))
11670 x_fix_overlapping_area (w, row + 1, TEXT_AREA);
11671 }
11672 }
11673 }
11674
11675
11676 /* Erase the image of a cursor of window W from the screen. */
11677
11678 static void
11679 x_erase_phys_cursor (w)
11680 struct window *w;
11681 {
11682 struct frame *f = XFRAME (w->frame);
11683 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
11684 int hpos = w->phys_cursor.hpos;
11685 int vpos = w->phys_cursor.vpos;
11686 int mouse_face_here_p = 0;
11687 struct glyph_matrix *active_glyphs = w->current_matrix;
11688 struct glyph_row *cursor_row;
11689 struct glyph *cursor_glyph;
11690 enum draw_glyphs_face hl;
11691
11692 /* No cursor displayed or row invalidated => nothing to do on the
11693 screen. */
11694 if (w->phys_cursor_type == NO_CURSOR)
11695 goto mark_cursor_off;
11696
11697 /* VPOS >= active_glyphs->nrows means that window has been resized.
11698 Don't bother to erase the cursor. */
11699 if (vpos >= active_glyphs->nrows)
11700 goto mark_cursor_off;
11701
11702 /* If row containing cursor is marked invalid, there is nothing we
11703 can do. */
11704 cursor_row = MATRIX_ROW (active_glyphs, vpos);
11705 if (!cursor_row->enabled_p)
11706 goto mark_cursor_off;
11707
11708 /* If row is completely invisible, don't attempt to delete a cursor which
11709 isn't there. This can happen if cursor is at top of a window, and
11710 we switch to a buffer with a header line in that window. */
11711 if (cursor_row->visible_height <= 0)
11712 goto mark_cursor_off;
11713
11714 /* This can happen when the new row is shorter than the old one.
11715 In this case, either x_draw_glyphs or clear_end_of_line
11716 should have cleared the cursor. Note that we wouldn't be
11717 able to erase the cursor in this case because we don't have a
11718 cursor glyph at hand. */
11719 if (w->phys_cursor.hpos >= cursor_row->used[TEXT_AREA])
11720 goto mark_cursor_off;
11721
11722 /* If the cursor is in the mouse face area, redisplay that when
11723 we clear the cursor. */
11724 if (! NILP (dpyinfo->mouse_face_window)
11725 && w == XWINDOW (dpyinfo->mouse_face_window)
11726 && (vpos > dpyinfo->mouse_face_beg_row
11727 || (vpos == dpyinfo->mouse_face_beg_row
11728 && hpos >= dpyinfo->mouse_face_beg_col))
11729 && (vpos < dpyinfo->mouse_face_end_row
11730 || (vpos == dpyinfo->mouse_face_end_row
11731 && hpos < dpyinfo->mouse_face_end_col))
11732 /* Don't redraw the cursor's spot in mouse face if it is at the
11733 end of a line (on a newline). The cursor appears there, but
11734 mouse highlighting does not. */
11735 && cursor_row->used[TEXT_AREA] > hpos)
11736 mouse_face_here_p = 1;
11737
11738 /* Maybe clear the display under the cursor. */
11739 if (w->phys_cursor_type == HOLLOW_BOX_CURSOR)
11740 {
11741 int x;
11742 int header_line_height = WINDOW_DISPLAY_HEADER_LINE_HEIGHT (w);
11743
11744 cursor_glyph = get_phys_cursor_glyph (w);
11745 if (cursor_glyph == NULL)
11746 goto mark_cursor_off;
11747
11748 x = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x);
11749
11750 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
11751 x,
11752 WINDOW_TO_FRAME_PIXEL_Y (w, max (header_line_height,
11753 cursor_row->y)),
11754 cursor_glyph->pixel_width,
11755 cursor_row->visible_height,
11756 False);
11757 }
11758
11759 /* Erase the cursor by redrawing the character underneath it. */
11760 if (mouse_face_here_p)
11761 hl = DRAW_MOUSE_FACE;
11762 else
11763 hl = DRAW_NORMAL_TEXT;
11764 x_draw_phys_cursor_glyph (w, cursor_row, hl);
11765
11766 mark_cursor_off:
11767 w->phys_cursor_on_p = 0;
11768 w->phys_cursor_type = NO_CURSOR;
11769 }
11770
11771
11772 /* Non-zero if physical cursor of window W is within mouse face. */
11773
11774 static int
11775 cursor_in_mouse_face_p (w)
11776 struct window *w;
11777 {
11778 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (XFRAME (w->frame));
11779 int in_mouse_face = 0;
11780
11781 if (WINDOWP (dpyinfo->mouse_face_window)
11782 && XWINDOW (dpyinfo->mouse_face_window) == w)
11783 {
11784 int hpos = w->phys_cursor.hpos;
11785 int vpos = w->phys_cursor.vpos;
11786
11787 if (vpos >= dpyinfo->mouse_face_beg_row
11788 && vpos <= dpyinfo->mouse_face_end_row
11789 && (vpos > dpyinfo->mouse_face_beg_row
11790 || hpos >= dpyinfo->mouse_face_beg_col)
11791 && (vpos < dpyinfo->mouse_face_end_row
11792 || hpos < dpyinfo->mouse_face_end_col
11793 || dpyinfo->mouse_face_past_end))
11794 in_mouse_face = 1;
11795 }
11796
11797 return in_mouse_face;
11798 }
11799
11800
11801 /* Display or clear cursor of window W. If ON is zero, clear the
11802 cursor. If it is non-zero, display the cursor. If ON is nonzero,
11803 where to put the cursor is specified by HPOS, VPOS, X and Y. */
11804
11805 void
11806 x_display_and_set_cursor (w, on, hpos, vpos, x, y)
11807 struct window *w;
11808 int on, hpos, vpos, x, y;
11809 {
11810 struct frame *f = XFRAME (w->frame);
11811 int new_cursor_type;
11812 int new_cursor_width;
11813 int cursor_off_state = 0;
11814 struct glyph_matrix *current_glyphs;
11815 struct glyph_row *glyph_row;
11816 struct glyph *glyph;
11817
11818 /* This is pointless on invisible frames, and dangerous on garbaged
11819 windows and frames; in the latter case, the frame or window may
11820 be in the midst of changing its size, and x and y may be off the
11821 window. */
11822 if (! FRAME_VISIBLE_P (f)
11823 || FRAME_GARBAGED_P (f)
11824 || vpos >= w->current_matrix->nrows
11825 || hpos >= w->current_matrix->matrix_w)
11826 return;
11827
11828 /* If cursor is off and we want it off, return quickly. */
11829 if (!on && !w->phys_cursor_on_p)
11830 return;
11831
11832 current_glyphs = w->current_matrix;
11833 glyph_row = MATRIX_ROW (current_glyphs, vpos);
11834 glyph = glyph_row->glyphs[TEXT_AREA] + hpos;
11835
11836 /* If cursor row is not enabled, we don't really know where to
11837 display the cursor. */
11838 if (!glyph_row->enabled_p)
11839 {
11840 w->phys_cursor_on_p = 0;
11841 return;
11842 }
11843
11844 xassert (interrupt_input_blocked);
11845
11846 /* Set new_cursor_type to the cursor we want to be displayed. In a
11847 mini-buffer window, we want the cursor only to appear if we are
11848 reading input from this window. For the selected window, we want
11849 the cursor type given by the frame parameter. If explicitly
11850 marked off, draw no cursor. In all other cases, we want a hollow
11851 box cursor. */
11852 new_cursor_width = -1;
11853 new_cursor_type = -2;
11854
11855 /* Echo area */
11856 if (cursor_in_echo_area
11857 && FRAME_HAS_MINIBUF_P (f)
11858 && EQ (FRAME_MINIBUF_WINDOW (f), echo_area_window))
11859 {
11860 if (w == XWINDOW (echo_area_window))
11861 new_cursor_type = FRAME_DESIRED_CURSOR (f);
11862 else if (NILP (Fbuffer_local_value (Qcursor_in_non_selected_windows,
11863 w->buffer)))
11864 new_cursor_type = NO_CURSOR;
11865 else
11866 cursor_off_state = 1;
11867 }
11868
11869 /* Nonselected window or nonselected frame. */
11870 else if (f != FRAME_X_DISPLAY_INFO (f)->x_highlight_frame
11871 || w != XWINDOW (f->selected_window))
11872 {
11873 if ((MINI_WINDOW_P (w) && minibuf_level == 0)
11874 || NILP (Fbuffer_local_value (Qcursor_in_non_selected_windows,
11875 w->buffer))
11876 || NILP (XBUFFER (w->buffer)->cursor_type))
11877 new_cursor_type = NO_CURSOR;
11878 else
11879 cursor_off_state = 1;
11880 }
11881
11882 /* If new_cursor_type isn't decided yet, decide it now. */
11883 if (new_cursor_type == -2)
11884 {
11885 struct buffer *b = XBUFFER (w->buffer);
11886
11887 if (EQ (b->cursor_type, Qt))
11888 {
11889 new_cursor_type = FRAME_DESIRED_CURSOR (f);
11890 new_cursor_width = FRAME_CURSOR_WIDTH (f);
11891 }
11892 else
11893 new_cursor_type = x_specified_cursor_type (b->cursor_type,
11894 &new_cursor_width);
11895 }
11896
11897 /* Dim out or hollow out the cursor,
11898 if it has blinked off or for nonselected windows. */
11899 if (w->cursor_off_p || cursor_off_state)
11900 {
11901 if (new_cursor_type == FILLED_BOX_CURSOR)
11902 new_cursor_type = HOLLOW_BOX_CURSOR;
11903 else if (new_cursor_type == BAR_CURSOR && new_cursor_width > 1)
11904 new_cursor_width = 1;
11905 else
11906 new_cursor_type = NO_CURSOR;
11907 }
11908
11909 /* Now new_cursor_type is correct. */
11910
11911 /* If cursor is currently being shown and we don't want it to be or
11912 it is in the wrong place, or the cursor type is not what we want,
11913 erase it. */
11914 if (w->phys_cursor_on_p
11915 && (!on
11916 || w->phys_cursor.x != x
11917 || w->phys_cursor.y != y
11918 || new_cursor_type != w->phys_cursor_type
11919 || (new_cursor_type == BAR_CURSOR
11920 && new_cursor_width != w->phys_cursor_width)))
11921 x_erase_phys_cursor (w);
11922
11923 /* Don't check phys_cursor_on_p here because that flag is only set
11924 to zero in some cases where we know that the cursor has been
11925 completely erased, to avoid the extra work of erasing the cursor
11926 twice. In other words, phys_cursor_on_p can be 1 and the cursor
11927 still not be visible, or it has only been partly erased. */
11928 if (on)
11929 {
11930 w->phys_cursor_ascent = glyph_row->ascent;
11931 w->phys_cursor_height = glyph_row->height;
11932
11933 /* Set phys_cursor_.* before x_draw_.* is called because some
11934 of them may need the information. */
11935 w->phys_cursor.x = x;
11936 w->phys_cursor.y = glyph_row->y;
11937 w->phys_cursor.hpos = hpos;
11938 w->phys_cursor.vpos = vpos;
11939 w->phys_cursor_type = new_cursor_type;
11940 w->phys_cursor_on_p = 1;
11941
11942 switch (new_cursor_type)
11943 {
11944 case HOLLOW_BOX_CURSOR:
11945 x_draw_hollow_cursor (w, glyph_row);
11946 break;
11947
11948 case FILLED_BOX_CURSOR:
11949 x_draw_phys_cursor_glyph (w, glyph_row, DRAW_CURSOR);
11950 break;
11951
11952 case BAR_CURSOR:
11953 x_draw_bar_cursor (w, glyph_row, new_cursor_width, BAR_CURSOR);
11954 break;
11955
11956 case HBAR_CURSOR:
11957 x_draw_bar_cursor (w, glyph_row, new_cursor_width, HBAR_CURSOR);
11958 break;
11959
11960 case NO_CURSOR:
11961 w->phys_cursor_width = 0;
11962 break;
11963
11964 default:
11965 abort ();
11966 }
11967
11968 #ifdef HAVE_X_I18N
11969 if (w == XWINDOW (f->selected_window))
11970 if (FRAME_XIC (f) && (FRAME_XIC_STYLE (f) & XIMPreeditPosition))
11971 xic_set_preeditarea (w, x, y);
11972 #endif
11973 }
11974
11975 #ifndef XFlush
11976 if (updating_frame != f)
11977 XFlush (FRAME_X_DISPLAY (f));
11978 #endif
11979 }
11980
11981
11982 /* Display the cursor on window W, or clear it. X and Y are window
11983 relative pixel coordinates. HPOS and VPOS are glyph matrix
11984 positions. If W is not the selected window, display a hollow
11985 cursor. ON non-zero means display the cursor at X, Y which
11986 correspond to HPOS, VPOS, otherwise it is cleared. */
11987
11988 void
11989 x_display_cursor (w, on, hpos, vpos, x, y)
11990 struct window *w;
11991 int on, hpos, vpos, x, y;
11992 {
11993 BLOCK_INPUT;
11994 x_display_and_set_cursor (w, on, hpos, vpos, x, y);
11995 UNBLOCK_INPUT;
11996 }
11997
11998
11999 /* Display the cursor on window W, or clear it, according to ON_P.
12000 Don't change the cursor's position. */
12001
12002 void
12003 x_update_cursor (f, on_p)
12004 struct frame *f;
12005 {
12006 x_update_cursor_in_window_tree (XWINDOW (f->root_window), on_p);
12007 }
12008
12009
12010 /* Call x_update_window_cursor with parameter ON_P on all leaf windows
12011 in the window tree rooted at W. */
12012
12013 static void
12014 x_update_cursor_in_window_tree (w, on_p)
12015 struct window *w;
12016 int on_p;
12017 {
12018 while (w)
12019 {
12020 if (!NILP (w->hchild))
12021 x_update_cursor_in_window_tree (XWINDOW (w->hchild), on_p);
12022 else if (!NILP (w->vchild))
12023 x_update_cursor_in_window_tree (XWINDOW (w->vchild), on_p);
12024 else
12025 x_update_window_cursor (w, on_p);
12026
12027 w = NILP (w->next) ? 0 : XWINDOW (w->next);
12028 }
12029 }
12030
12031
12032 /* Switch the display of W's cursor on or off, according to the value
12033 of ON. */
12034
12035 static void
12036 x_update_window_cursor (w, on)
12037 struct window *w;
12038 int on;
12039 {
12040 /* Don't update cursor in windows whose frame is in the process
12041 of being deleted. */
12042 if (w->current_matrix)
12043 {
12044 BLOCK_INPUT;
12045 x_display_and_set_cursor (w, on, w->phys_cursor.hpos, w->phys_cursor.vpos,
12046 w->phys_cursor.x, w->phys_cursor.y);
12047 UNBLOCK_INPUT;
12048 }
12049 }
12050
12051
12052
12053 \f
12054 /* Icons. */
12055
12056 /* Make the x-window of frame F use the gnu icon bitmap. */
12057
12058 int
12059 x_bitmap_icon (f, file)
12060 struct frame *f;
12061 Lisp_Object file;
12062 {
12063 int bitmap_id;
12064
12065 if (FRAME_X_WINDOW (f) == 0)
12066 return 1;
12067
12068 /* Free up our existing icon bitmap if any. */
12069 if (f->output_data.x->icon_bitmap > 0)
12070 x_destroy_bitmap (f, f->output_data.x->icon_bitmap);
12071 f->output_data.x->icon_bitmap = 0;
12072
12073 if (STRINGP (file))
12074 bitmap_id = x_create_bitmap_from_file (f, file);
12075 else
12076 {
12077 /* Create the GNU bitmap if necessary. */
12078 if (FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id < 0)
12079 FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id
12080 = x_create_bitmap_from_data (f, gnu_bits,
12081 gnu_width, gnu_height);
12082
12083 /* The first time we create the GNU bitmap,
12084 this increments the ref-count one extra time.
12085 As a result, the GNU bitmap is never freed.
12086 That way, we don't have to worry about allocating it again. */
12087 x_reference_bitmap (f, FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id);
12088
12089 bitmap_id = FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id;
12090 }
12091
12092 x_wm_set_icon_pixmap (f, bitmap_id);
12093 f->output_data.x->icon_bitmap = bitmap_id;
12094
12095 return 0;
12096 }
12097
12098
12099 /* Make the x-window of frame F use a rectangle with text.
12100 Use ICON_NAME as the text. */
12101
12102 int
12103 x_text_icon (f, icon_name)
12104 struct frame *f;
12105 char *icon_name;
12106 {
12107 if (FRAME_X_WINDOW (f) == 0)
12108 return 1;
12109
12110 #ifdef HAVE_X11R4
12111 {
12112 XTextProperty text;
12113 text.value = (unsigned char *) icon_name;
12114 text.encoding = XA_STRING;
12115 text.format = 8;
12116 text.nitems = strlen (icon_name);
12117 #ifdef USE_X_TOOLKIT
12118 XSetWMIconName (FRAME_X_DISPLAY (f), XtWindow (f->output_data.x->widget),
12119 &text);
12120 #else /* not USE_X_TOOLKIT */
12121 XSetWMIconName (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), &text);
12122 #endif /* not USE_X_TOOLKIT */
12123 }
12124 #else /* not HAVE_X11R4 */
12125 XSetIconName (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), icon_name);
12126 #endif /* not HAVE_X11R4 */
12127
12128 if (f->output_data.x->icon_bitmap > 0)
12129 x_destroy_bitmap (f, f->output_data.x->icon_bitmap);
12130 f->output_data.x->icon_bitmap = 0;
12131 x_wm_set_icon_pixmap (f, 0);
12132
12133 return 0;
12134 }
12135 \f
12136 #define X_ERROR_MESSAGE_SIZE 200
12137
12138 /* If non-nil, this should be a string.
12139 It means catch X errors and store the error message in this string. */
12140
12141 static Lisp_Object x_error_message_string;
12142
12143 /* An X error handler which stores the error message in
12144 x_error_message_string. This is called from x_error_handler if
12145 x_catch_errors is in effect. */
12146
12147 static void
12148 x_error_catcher (display, error)
12149 Display *display;
12150 XErrorEvent *error;
12151 {
12152 XGetErrorText (display, error->error_code,
12153 SDATA (x_error_message_string),
12154 X_ERROR_MESSAGE_SIZE);
12155 }
12156
12157 /* Begin trapping X errors for display DPY. Actually we trap X errors
12158 for all displays, but DPY should be the display you are actually
12159 operating on.
12160
12161 After calling this function, X protocol errors no longer cause
12162 Emacs to exit; instead, they are recorded in the string
12163 stored in x_error_message_string.
12164
12165 Calling x_check_errors signals an Emacs error if an X error has
12166 occurred since the last call to x_catch_errors or x_check_errors.
12167
12168 Calling x_uncatch_errors resumes the normal error handling. */
12169
12170 void x_check_errors ();
12171 static Lisp_Object x_catch_errors_unwind ();
12172
12173 int
12174 x_catch_errors (dpy)
12175 Display *dpy;
12176 {
12177 int count = SPECPDL_INDEX ();
12178
12179 /* Make sure any errors from previous requests have been dealt with. */
12180 XSync (dpy, False);
12181
12182 record_unwind_protect (x_catch_errors_unwind, x_error_message_string);
12183
12184 x_error_message_string = make_uninit_string (X_ERROR_MESSAGE_SIZE);
12185 SSET (x_error_message_string, 0, 0);
12186
12187 return count;
12188 }
12189
12190 /* Unbind the binding that we made to check for X errors. */
12191
12192 static Lisp_Object
12193 x_catch_errors_unwind (old_val)
12194 Lisp_Object old_val;
12195 {
12196 x_error_message_string = old_val;
12197 return Qnil;
12198 }
12199
12200 /* If any X protocol errors have arrived since the last call to
12201 x_catch_errors or x_check_errors, signal an Emacs error using
12202 sprintf (a buffer, FORMAT, the x error message text) as the text. */
12203
12204 void
12205 x_check_errors (dpy, format)
12206 Display *dpy;
12207 char *format;
12208 {
12209 /* Make sure to catch any errors incurred so far. */
12210 XSync (dpy, False);
12211
12212 if (SREF (x_error_message_string, 0))
12213 error (format, SDATA (x_error_message_string));
12214 }
12215
12216 /* Nonzero if we had any X protocol errors
12217 since we did x_catch_errors on DPY. */
12218
12219 int
12220 x_had_errors_p (dpy)
12221 Display *dpy;
12222 {
12223 /* Make sure to catch any errors incurred so far. */
12224 XSync (dpy, False);
12225
12226 return SREF (x_error_message_string, 0) != 0;
12227 }
12228
12229 /* Forget about any errors we have had, since we did x_catch_errors on DPY. */
12230
12231 void
12232 x_clear_errors (dpy)
12233 Display *dpy;
12234 {
12235 SSET (x_error_message_string, 0, 0);
12236 }
12237
12238 /* Stop catching X protocol errors and let them make Emacs die.
12239 DPY should be the display that was passed to x_catch_errors.
12240 COUNT should be the value that was returned by
12241 the corresponding call to x_catch_errors. */
12242
12243 void
12244 x_uncatch_errors (dpy, count)
12245 Display *dpy;
12246 int count;
12247 {
12248 unbind_to (count, Qnil);
12249 }
12250
12251 #if 0
12252 static unsigned int x_wire_count;
12253 x_trace_wire ()
12254 {
12255 fprintf (stderr, "Lib call: %d\n", ++x_wire_count);
12256 }
12257 #endif /* ! 0 */
12258
12259 \f
12260 /* Handle SIGPIPE, which can happen when the connection to a server
12261 simply goes away. SIGPIPE is handled by x_connection_signal.
12262 Don't need to do anything, because the write which caused the
12263 SIGPIPE will fail, causing Xlib to invoke the X IO error handler,
12264 which will do the appropriate cleanup for us. */
12265
12266 static SIGTYPE
12267 x_connection_signal (signalnum) /* If we don't have an argument, */
12268 int signalnum; /* some compilers complain in signal calls. */
12269 {
12270 #ifdef USG
12271 /* USG systems forget handlers when they are used;
12272 must reestablish each time */
12273 signal (signalnum, x_connection_signal);
12274 #endif /* USG */
12275 }
12276
12277 \f
12278 /************************************************************************
12279 Handling X errors
12280 ************************************************************************/
12281
12282 /* Error message passed to x_connection_closed. */
12283
12284 static char *error_msg;
12285
12286 /* Function installed as fatal_error_signal_hook in
12287 x_connection_closed. Print the X error message, and exit normally,
12288 instead of dumping core when XtCloseDisplay fails. */
12289
12290 static void
12291 x_fatal_error_signal ()
12292 {
12293 fprintf (stderr, "%s\n", error_msg);
12294 exit (70);
12295 }
12296
12297 /* Handle the loss of connection to display DPY. ERROR_MESSAGE is
12298 the text of an error message that lead to the connection loss. */
12299
12300 static SIGTYPE
12301 x_connection_closed (dpy, error_message)
12302 Display *dpy;
12303 char *error_message;
12304 {
12305 struct x_display_info *dpyinfo = x_display_info_for_display (dpy);
12306 Lisp_Object frame, tail;
12307 int count;
12308
12309 error_msg = (char *) alloca (strlen (error_message) + 1);
12310 strcpy (error_msg, error_message);
12311 handling_signal = 0;
12312
12313 /* Prevent being called recursively because of an error condition
12314 below. Otherwise, we might end up with printing ``can't find per
12315 display information'' in the recursive call instead of printing
12316 the original message here. */
12317 count = x_catch_errors (dpy);
12318
12319 /* We have to close the display to inform Xt that it doesn't
12320 exist anymore. If we don't, Xt will continue to wait for
12321 events from the display. As a consequence, a sequence of
12322
12323 M-x make-frame-on-display RET :1 RET
12324 ...kill the new frame, so that we get an IO error...
12325 M-x make-frame-on-display RET :1 RET
12326
12327 will indefinitely wait in Xt for events for display `:1', opened
12328 in the first class to make-frame-on-display.
12329
12330 Closing the display is reported to lead to a bus error on
12331 OpenWindows in certain situations. I suspect that is a bug
12332 in OpenWindows. I don't know how to cicumvent it here. */
12333
12334 #ifdef USE_X_TOOLKIT
12335 /* If DPYINFO is null, this means we didn't open the display
12336 in the first place, so don't try to close it. */
12337 if (dpyinfo)
12338 {
12339 extern void (*fatal_error_signal_hook) P_ ((void));
12340 fatal_error_signal_hook = x_fatal_error_signal;
12341 XtCloseDisplay (dpy);
12342 fatal_error_signal_hook = NULL;
12343 }
12344 #endif
12345
12346 /* Indicate that this display is dead. */
12347 if (dpyinfo)
12348 dpyinfo->display = 0;
12349
12350 /* First delete frames whose mini-buffers are on frames
12351 that are on the dead display. */
12352 FOR_EACH_FRAME (tail, frame)
12353 {
12354 Lisp_Object minibuf_frame;
12355 minibuf_frame
12356 = WINDOW_FRAME (XWINDOW (FRAME_MINIBUF_WINDOW (XFRAME (frame))));
12357 if (FRAME_X_P (XFRAME (frame))
12358 && FRAME_X_P (XFRAME (minibuf_frame))
12359 && ! EQ (frame, minibuf_frame)
12360 && FRAME_X_DISPLAY_INFO (XFRAME (minibuf_frame)) == dpyinfo)
12361 Fdelete_frame (frame, Qt);
12362 }
12363
12364 /* Now delete all remaining frames on the dead display.
12365 We are now sure none of these is used as the mini-buffer
12366 for another frame that we need to delete. */
12367 FOR_EACH_FRAME (tail, frame)
12368 if (FRAME_X_P (XFRAME (frame))
12369 && FRAME_X_DISPLAY_INFO (XFRAME (frame)) == dpyinfo)
12370 {
12371 /* Set this to t so that Fdelete_frame won't get confused
12372 trying to find a replacement. */
12373 FRAME_KBOARD (XFRAME (frame))->Vdefault_minibuffer_frame = Qt;
12374 Fdelete_frame (frame, Qt);
12375 }
12376
12377 if (dpyinfo)
12378 x_delete_display (dpyinfo);
12379
12380 x_uncatch_errors (dpy, count);
12381
12382 if (x_display_list == 0)
12383 {
12384 fprintf (stderr, "%s\n", error_msg);
12385 shut_down_emacs (0, 0, Qnil);
12386 exit (70);
12387 }
12388
12389 /* Ordinary stack unwind doesn't deal with these. */
12390 #ifdef SIGIO
12391 sigunblock (sigmask (SIGIO));
12392 #endif
12393 sigunblock (sigmask (SIGALRM));
12394 TOTALLY_UNBLOCK_INPUT;
12395
12396 clear_waiting_for_input ();
12397 error ("%s", error_msg);
12398 }
12399
12400
12401 /* This is the usual handler for X protocol errors.
12402 It kills all frames on the display that we got the error for.
12403 If that was the only one, it prints an error message and kills Emacs. */
12404
12405 static void
12406 x_error_quitter (display, error)
12407 Display *display;
12408 XErrorEvent *error;
12409 {
12410 char buf[256], buf1[356];
12411
12412 /* Note that there is no real way portable across R3/R4 to get the
12413 original error handler. */
12414
12415 XGetErrorText (display, error->error_code, buf, sizeof (buf));
12416 sprintf (buf1, "X protocol error: %s on protocol request %d",
12417 buf, error->request_code);
12418 x_connection_closed (display, buf1);
12419 }
12420
12421
12422 /* This is the first-level handler for X protocol errors.
12423 It calls x_error_quitter or x_error_catcher. */
12424
12425 static int
12426 x_error_handler (display, error)
12427 Display *display;
12428 XErrorEvent *error;
12429 {
12430 if (! NILP (x_error_message_string))
12431 x_error_catcher (display, error);
12432 else
12433 x_error_quitter (display, error);
12434 return 0;
12435 }
12436
12437 /* This is the handler for X IO errors, always.
12438 It kills all frames on the display that we lost touch with.
12439 If that was the only one, it prints an error message and kills Emacs. */
12440
12441 static int
12442 x_io_error_quitter (display)
12443 Display *display;
12444 {
12445 char buf[256];
12446
12447 sprintf (buf, "Connection lost to X server `%s'", DisplayString (display));
12448 x_connection_closed (display, buf);
12449 return 0;
12450 }
12451 \f
12452 /* Changing the font of the frame. */
12453
12454 /* Give frame F the font named FONTNAME as its default font, and
12455 return the full name of that font. FONTNAME may be a wildcard
12456 pattern; in that case, we choose some font that fits the pattern.
12457 The return value shows which font we chose. */
12458
12459 Lisp_Object
12460 x_new_font (f, fontname)
12461 struct frame *f;
12462 register char *fontname;
12463 {
12464 struct font_info *fontp
12465 = FS_LOAD_FONT (f, 0, fontname, -1);
12466
12467 if (!fontp)
12468 return Qnil;
12469
12470 f->output_data.x->font = (XFontStruct *) (fontp->font);
12471 f->output_data.x->baseline_offset = fontp->baseline_offset;
12472 f->output_data.x->fontset = -1;
12473
12474 x_compute_fringe_widths (f, 1);
12475
12476 /* Compute the scroll bar width in character columns. */
12477 if (f->scroll_bar_pixel_width > 0)
12478 {
12479 int wid = FONT_WIDTH (f->output_data.x->font);
12480 f->scroll_bar_cols = (f->scroll_bar_pixel_width + wid-1) / wid;
12481 }
12482 else
12483 {
12484 int wid = FONT_WIDTH (f->output_data.x->font);
12485 f->scroll_bar_cols = (14 + wid - 1) / wid;
12486 }
12487
12488 /* Now make the frame display the given font. */
12489 if (FRAME_X_WINDOW (f) != 0)
12490 {
12491 XSetFont (FRAME_X_DISPLAY (f), f->output_data.x->normal_gc,
12492 f->output_data.x->font->fid);
12493 XSetFont (FRAME_X_DISPLAY (f), f->output_data.x->reverse_gc,
12494 f->output_data.x->font->fid);
12495 XSetFont (FRAME_X_DISPLAY (f), f->output_data.x->cursor_gc,
12496 f->output_data.x->font->fid);
12497
12498 frame_update_line_height (f);
12499
12500 /* Don't change the size of a tip frame; there's no point in
12501 doing it because it's done in Fx_show_tip, and it leads to
12502 problems because the tip frame has no widget. */
12503 if (NILP (tip_frame) || XFRAME (tip_frame) != f)
12504 x_set_window_size (f, 0, f->width, f->height);
12505 }
12506 else
12507 /* If we are setting a new frame's font for the first time,
12508 there are no faces yet, so this font's height is the line height. */
12509 f->output_data.x->line_height = FONT_HEIGHT (f->output_data.x->font);
12510
12511 return build_string (fontp->full_name);
12512 }
12513
12514 /* Give frame F the fontset named FONTSETNAME as its default font, and
12515 return the full name of that fontset. FONTSETNAME may be a wildcard
12516 pattern; in that case, we choose some fontset that fits the pattern.
12517 The return value shows which fontset we chose. */
12518
12519 Lisp_Object
12520 x_new_fontset (f, fontsetname)
12521 struct frame *f;
12522 char *fontsetname;
12523 {
12524 int fontset = fs_query_fontset (build_string (fontsetname), 0);
12525 Lisp_Object result;
12526
12527 if (fontset < 0)
12528 return Qnil;
12529
12530 if (f->output_data.x->fontset == fontset)
12531 /* This fontset is already set in frame F. There's nothing more
12532 to do. */
12533 return fontset_name (fontset);
12534
12535 result = x_new_font (f, (SDATA (fontset_ascii (fontset))));
12536
12537 if (!STRINGP (result))
12538 /* Can't load ASCII font. */
12539 return Qnil;
12540
12541 /* Since x_new_font doesn't update any fontset information, do it now. */
12542 f->output_data.x->fontset = fontset;
12543
12544 #ifdef HAVE_X_I18N
12545 if (FRAME_XIC (f)
12546 && (FRAME_XIC_STYLE (f) & (XIMPreeditPosition | XIMStatusArea)))
12547 xic_set_xfontset (f, SDATA (fontset_ascii (fontset)));
12548 #endif
12549
12550 return build_string (fontsetname);
12551 }
12552
12553 /* Compute actual fringe widths */
12554
12555 void
12556 x_compute_fringe_widths (f, redraw)
12557 struct frame *f;
12558 int redraw;
12559 {
12560 int o_left = f->output_data.x->left_fringe_width;
12561 int o_right = f->output_data.x->right_fringe_width;
12562 int o_cols = f->output_data.x->fringe_cols;
12563
12564 Lisp_Object left_fringe = Fassq (Qleft_fringe, f->param_alist);
12565 Lisp_Object right_fringe = Fassq (Qright_fringe, f->param_alist);
12566 int left_fringe_width, right_fringe_width;
12567
12568 if (!NILP (left_fringe))
12569 left_fringe = Fcdr (left_fringe);
12570 if (!NILP (right_fringe))
12571 right_fringe = Fcdr (right_fringe);
12572
12573 left_fringe_width = ((NILP (left_fringe) || !INTEGERP (left_fringe)) ? 8 :
12574 XINT (left_fringe));
12575 right_fringe_width = ((NILP (right_fringe) || !INTEGERP (right_fringe)) ? 8 :
12576 XINT (right_fringe));
12577
12578 if (left_fringe_width || right_fringe_width)
12579 {
12580 int left_wid = left_fringe_width >= 0 ? left_fringe_width : -left_fringe_width;
12581 int right_wid = right_fringe_width >= 0 ? right_fringe_width : -right_fringe_width;
12582 int conf_wid = left_wid + right_wid;
12583 int font_wid = FONT_WIDTH (f->output_data.x->font);
12584 int cols = (left_wid + right_wid + font_wid-1) / font_wid;
12585 int real_wid = cols * font_wid;
12586 if (left_wid && right_wid)
12587 {
12588 if (left_fringe_width < 0)
12589 {
12590 /* Left fringe width is fixed, adjust right fringe if necessary */
12591 f->output_data.x->left_fringe_width = left_wid;
12592 f->output_data.x->right_fringe_width = real_wid - left_wid;
12593 }
12594 else if (right_fringe_width < 0)
12595 {
12596 /* Right fringe width is fixed, adjust left fringe if necessary */
12597 f->output_data.x->left_fringe_width = real_wid - right_wid;
12598 f->output_data.x->right_fringe_width = right_wid;
12599 }
12600 else
12601 {
12602 /* Adjust both fringes with an equal amount.
12603 Note that we are doing integer arithmetic here, so don't
12604 lose a pixel if the total width is an odd number. */
12605 int fill = real_wid - conf_wid;
12606 f->output_data.x->left_fringe_width = left_wid + fill/2;
12607 f->output_data.x->right_fringe_width = right_wid + fill - fill/2;
12608 }
12609 }
12610 else if (left_fringe_width)
12611 {
12612 f->output_data.x->left_fringe_width = real_wid;
12613 f->output_data.x->right_fringe_width = 0;
12614 }
12615 else
12616 {
12617 f->output_data.x->left_fringe_width = 0;
12618 f->output_data.x->right_fringe_width = real_wid;
12619 }
12620 f->output_data.x->fringe_cols = cols;
12621 f->output_data.x->fringes_extra = real_wid;
12622 }
12623 else
12624 {
12625 f->output_data.x->left_fringe_width = 0;
12626 f->output_data.x->right_fringe_width = 0;
12627 f->output_data.x->fringe_cols = 0;
12628 f->output_data.x->fringes_extra = 0;
12629 }
12630
12631 if (redraw && FRAME_VISIBLE_P (f))
12632 if (o_left != f->output_data.x->left_fringe_width ||
12633 o_right != f->output_data.x->right_fringe_width ||
12634 o_cols != f->output_data.x->fringe_cols)
12635 redraw_frame (f);
12636 }
12637 \f
12638 /***********************************************************************
12639 X Input Methods
12640 ***********************************************************************/
12641
12642 #ifdef HAVE_X_I18N
12643
12644 #ifdef HAVE_X11R6
12645
12646 /* XIM destroy callback function, which is called whenever the
12647 connection to input method XIM dies. CLIENT_DATA contains a
12648 pointer to the x_display_info structure corresponding to XIM. */
12649
12650 static void
12651 xim_destroy_callback (xim, client_data, call_data)
12652 XIM xim;
12653 XPointer client_data;
12654 XPointer call_data;
12655 {
12656 struct x_display_info *dpyinfo = (struct x_display_info *) client_data;
12657 Lisp_Object frame, tail;
12658
12659 BLOCK_INPUT;
12660
12661 /* No need to call XDestroyIC.. */
12662 FOR_EACH_FRAME (tail, frame)
12663 {
12664 struct frame *f = XFRAME (frame);
12665 if (FRAME_X_DISPLAY_INFO (f) == dpyinfo)
12666 {
12667 FRAME_XIC (f) = NULL;
12668 if (FRAME_XIC_FONTSET (f))
12669 {
12670 XFreeFontSet (FRAME_X_DISPLAY (f), FRAME_XIC_FONTSET (f));
12671 FRAME_XIC_FONTSET (f) = NULL;
12672 }
12673 }
12674 }
12675
12676 /* No need to call XCloseIM. */
12677 dpyinfo->xim = NULL;
12678 XFree (dpyinfo->xim_styles);
12679 UNBLOCK_INPUT;
12680 }
12681
12682 #endif /* HAVE_X11R6 */
12683
12684 /* Open the connection to the XIM server on display DPYINFO.
12685 RESOURCE_NAME is the resource name Emacs uses. */
12686
12687 static void
12688 xim_open_dpy (dpyinfo, resource_name)
12689 struct x_display_info *dpyinfo;
12690 char *resource_name;
12691 {
12692 #ifdef USE_XIM
12693 XIM xim;
12694
12695 xim = XOpenIM (dpyinfo->display, dpyinfo->xrdb, resource_name, EMACS_CLASS);
12696 dpyinfo->xim = xim;
12697
12698 if (xim)
12699 {
12700 #ifdef HAVE_X11R6
12701 XIMCallback destroy;
12702 #endif
12703
12704 /* Get supported styles and XIM values. */
12705 XGetIMValues (xim, XNQueryInputStyle, &dpyinfo->xim_styles, NULL);
12706
12707 #ifdef HAVE_X11R6
12708 destroy.callback = xim_destroy_callback;
12709 destroy.client_data = (XPointer)dpyinfo;
12710 /* This isn't prototyped in OSF 5.0. */
12711 XSetIMValues (xim, XNDestroyCallback, &destroy, NULL);
12712 #endif
12713 }
12714
12715 #else /* not USE_XIM */
12716 dpyinfo->xim = NULL;
12717 #endif /* not USE_XIM */
12718 }
12719
12720
12721 #ifdef HAVE_X11R6_XIM
12722
12723 struct xim_inst_t
12724 {
12725 struct x_display_info *dpyinfo;
12726 char *resource_name;
12727 };
12728
12729 /* XIM instantiate callback function, which is called whenever an XIM
12730 server is available. DISPLAY is teh display of the XIM.
12731 CLIENT_DATA contains a pointer to an xim_inst_t structure created
12732 when the callback was registered. */
12733
12734 static void
12735 xim_instantiate_callback (display, client_data, call_data)
12736 Display *display;
12737 XPointer client_data;
12738 XPointer call_data;
12739 {
12740 struct xim_inst_t *xim_inst = (struct xim_inst_t *) client_data;
12741 struct x_display_info *dpyinfo = xim_inst->dpyinfo;
12742
12743 /* We don't support multiple XIM connections. */
12744 if (dpyinfo->xim)
12745 return;
12746
12747 xim_open_dpy (dpyinfo, xim_inst->resource_name);
12748
12749 /* Create XIC for the existing frames on the same display, as long
12750 as they have no XIC. */
12751 if (dpyinfo->xim && dpyinfo->reference_count > 0)
12752 {
12753 Lisp_Object tail, frame;
12754
12755 BLOCK_INPUT;
12756 FOR_EACH_FRAME (tail, frame)
12757 {
12758 struct frame *f = XFRAME (frame);
12759
12760 if (FRAME_X_DISPLAY_INFO (f) == xim_inst->dpyinfo)
12761 if (FRAME_XIC (f) == NULL)
12762 {
12763 create_frame_xic (f);
12764 if (FRAME_XIC_STYLE (f) & XIMStatusArea)
12765 xic_set_statusarea (f);
12766 if (FRAME_XIC_STYLE (f) & XIMPreeditPosition)
12767 {
12768 struct window *w = XWINDOW (f->selected_window);
12769 xic_set_preeditarea (w, w->cursor.x, w->cursor.y);
12770 }
12771 }
12772 }
12773
12774 UNBLOCK_INPUT;
12775 }
12776 }
12777
12778 #endif /* HAVE_X11R6_XIM */
12779
12780
12781 /* Open a connection to the XIM server on display DPYINFO.
12782 RESOURCE_NAME is the resource name for Emacs. On X11R5, open the
12783 connection only at the first time. On X11R6, open the connection
12784 in the XIM instantiate callback function. */
12785
12786 static void
12787 xim_initialize (dpyinfo, resource_name)
12788 struct x_display_info *dpyinfo;
12789 char *resource_name;
12790 {
12791 #ifdef USE_XIM
12792 #ifdef HAVE_X11R6_XIM
12793 struct xim_inst_t *xim_inst;
12794 int len;
12795
12796 dpyinfo->xim = NULL;
12797 xim_inst = (struct xim_inst_t *) xmalloc (sizeof (struct xim_inst_t));
12798 xim_inst->dpyinfo = dpyinfo;
12799 len = strlen (resource_name);
12800 xim_inst->resource_name = (char *) xmalloc (len + 1);
12801 bcopy (resource_name, xim_inst->resource_name, len + 1);
12802 XRegisterIMInstantiateCallback (dpyinfo->display, dpyinfo->xrdb,
12803 resource_name, EMACS_CLASS,
12804 xim_instantiate_callback,
12805 /* Fixme: This is XPointer in
12806 XFree86 but (XPointer *) on
12807 Tru64, at least. */
12808 (XPointer) xim_inst);
12809 #else /* not HAVE_X11R6_XIM */
12810 dpyinfo->xim = NULL;
12811 xim_open_dpy (dpyinfo, resource_name);
12812 #endif /* not HAVE_X11R6_XIM */
12813
12814 #else /* not USE_XIM */
12815 dpyinfo->xim = NULL;
12816 #endif /* not USE_XIM */
12817 }
12818
12819
12820 /* Close the connection to the XIM server on display DPYINFO. */
12821
12822 static void
12823 xim_close_dpy (dpyinfo)
12824 struct x_display_info *dpyinfo;
12825 {
12826 #ifdef USE_XIM
12827 #ifdef HAVE_X11R6_XIM
12828 if (dpyinfo->display)
12829 XUnregisterIMInstantiateCallback (dpyinfo->display, dpyinfo->xrdb,
12830 NULL, EMACS_CLASS,
12831 xim_instantiate_callback, NULL);
12832 #endif /* not HAVE_X11R6_XIM */
12833 if (dpyinfo->display)
12834 XCloseIM (dpyinfo->xim);
12835 dpyinfo->xim = NULL;
12836 XFree (dpyinfo->xim_styles);
12837 #endif /* USE_XIM */
12838 }
12839
12840 #endif /* not HAVE_X11R6_XIM */
12841
12842
12843 \f
12844 /* Calculate the absolute position in frame F
12845 from its current recorded position values and gravity. */
12846
12847 void
12848 x_calc_absolute_position (f)
12849 struct frame *f;
12850 {
12851 Window child;
12852 int win_x = 0, win_y = 0;
12853 int flags = f->output_data.x->size_hint_flags;
12854 int this_window;
12855
12856 /* We have nothing to do if the current position
12857 is already for the top-left corner. */
12858 if (! ((flags & XNegative) || (flags & YNegative)))
12859 return;
12860
12861 #ifdef USE_X_TOOLKIT
12862 this_window = XtWindow (f->output_data.x->widget);
12863 #else
12864 this_window = FRAME_X_WINDOW (f);
12865 #endif
12866
12867 /* Find the position of the outside upper-left corner of
12868 the inner window, with respect to the outer window.
12869 But do this only if we will need the results. */
12870 if (f->output_data.x->parent_desc != FRAME_X_DISPLAY_INFO (f)->root_window)
12871 {
12872 int count;
12873
12874 BLOCK_INPUT;
12875 count = x_catch_errors (FRAME_X_DISPLAY (f));
12876 while (1)
12877 {
12878 x_clear_errors (FRAME_X_DISPLAY (f));
12879 XTranslateCoordinates (FRAME_X_DISPLAY (f),
12880
12881 /* From-window, to-window. */
12882 this_window,
12883 f->output_data.x->parent_desc,
12884
12885 /* From-position, to-position. */
12886 0, 0, &win_x, &win_y,
12887
12888 /* Child of win. */
12889 &child);
12890 if (x_had_errors_p (FRAME_X_DISPLAY (f)))
12891 {
12892 Window newroot, newparent = 0xdeadbeef;
12893 Window *newchildren;
12894 unsigned int nchildren;
12895
12896 if (! XQueryTree (FRAME_X_DISPLAY (f), this_window, &newroot,
12897 &newparent, &newchildren, &nchildren))
12898 break;
12899
12900 XFree ((char *) newchildren);
12901
12902 f->output_data.x->parent_desc = newparent;
12903 }
12904 else
12905 break;
12906 }
12907
12908 x_uncatch_errors (FRAME_X_DISPLAY (f), count);
12909 UNBLOCK_INPUT;
12910 }
12911
12912 /* Treat negative positions as relative to the leftmost bottommost
12913 position that fits on the screen. */
12914 if (flags & XNegative)
12915 f->output_data.x->left_pos = (FRAME_X_DISPLAY_INFO (f)->width
12916 - 2 * f->output_data.x->border_width - win_x
12917 - PIXEL_WIDTH (f)
12918 + f->output_data.x->left_pos);
12919
12920 {
12921 int height = PIXEL_HEIGHT (f);
12922
12923 #if defined USE_X_TOOLKIT && defined USE_MOTIF
12924 /* Something is fishy here. When using Motif, starting Emacs with
12925 `-g -0-0', the frame appears too low by a few pixels.
12926
12927 This seems to be so because initially, while Emacs is starting,
12928 the column widget's height and the frame's pixel height are
12929 different. The column widget's height is the right one. In
12930 later invocations, when Emacs is up, the frame's pixel height
12931 is right, though.
12932
12933 It's not obvious where the initial small difference comes from.
12934 2000-12-01, gerd. */
12935
12936 XtVaGetValues (f->output_data.x->column_widget, XtNheight, &height, NULL);
12937 #endif
12938
12939 if (flags & YNegative)
12940 f->output_data.x->top_pos = (FRAME_X_DISPLAY_INFO (f)->height
12941 - 2 * f->output_data.x->border_width
12942 - win_y
12943 - height
12944 + f->output_data.x->top_pos);
12945 }
12946
12947 /* The left_pos and top_pos
12948 are now relative to the top and left screen edges,
12949 so the flags should correspond. */
12950 f->output_data.x->size_hint_flags &= ~ (XNegative | YNegative);
12951 }
12952
12953 /* CHANGE_GRAVITY is 1 when calling from Fset_frame_position,
12954 to really change the position, and 0 when calling from
12955 x_make_frame_visible (in that case, XOFF and YOFF are the current
12956 position values). It is -1 when calling from x_set_frame_parameters,
12957 which means, do adjust for borders but don't change the gravity. */
12958
12959 void
12960 x_set_offset (f, xoff, yoff, change_gravity)
12961 struct frame *f;
12962 register int xoff, yoff;
12963 int change_gravity;
12964 {
12965 int modified_top, modified_left;
12966
12967 if (change_gravity > 0)
12968 {
12969 f->output_data.x->top_pos = yoff;
12970 f->output_data.x->left_pos = xoff;
12971 f->output_data.x->size_hint_flags &= ~ (XNegative | YNegative);
12972 if (xoff < 0)
12973 f->output_data.x->size_hint_flags |= XNegative;
12974 if (yoff < 0)
12975 f->output_data.x->size_hint_flags |= YNegative;
12976 f->output_data.x->win_gravity = NorthWestGravity;
12977 }
12978 x_calc_absolute_position (f);
12979
12980 BLOCK_INPUT;
12981 x_wm_set_size_hint (f, (long) 0, 0);
12982
12983 modified_left = f->output_data.x->left_pos;
12984 modified_top = f->output_data.x->top_pos;
12985 #if 0 /* Running on psilocin (Debian), and displaying on the NCD X-terminal,
12986 this seems to be unnecessary and incorrect. rms, 4/17/97. */
12987 /* It is a mystery why we need to add the border_width here
12988 when the frame is already visible, but experiment says we do. */
12989 if (change_gravity != 0)
12990 {
12991 modified_left += f->output_data.x->border_width;
12992 modified_top += f->output_data.x->border_width;
12993 }
12994 #endif
12995
12996 #ifdef USE_X_TOOLKIT
12997 XMoveWindow (FRAME_X_DISPLAY (f), XtWindow (f->output_data.x->widget),
12998 modified_left, modified_top);
12999 #else /* not USE_X_TOOLKIT */
13000 XMoveWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
13001 modified_left, modified_top);
13002 #endif /* not USE_X_TOOLKIT */
13003 UNBLOCK_INPUT;
13004 }
13005
13006 /* Check if we need to resize the frame due to a fullscreen request.
13007 If so needed, resize the frame. */
13008 static void
13009 x_check_fullscreen (f)
13010 struct frame *f;
13011 {
13012 if (f->output_data.x->want_fullscreen & FULLSCREEN_BOTH)
13013 {
13014 int width, height, ign;
13015
13016 x_real_positions (f, &f->output_data.x->left_pos,
13017 &f->output_data.x->top_pos);
13018
13019 x_fullscreen_adjust (f, &width, &height, &ign, &ign);
13020
13021 /* We do not need to move the window, it shall be taken care of
13022 when setting WM manager hints.
13023 If the frame is visible already, the position is checked by
13024 x_check_fullscreen_move. */
13025 if (f->width != width || f->height != height)
13026 {
13027 change_frame_size (f, height, width, 0, 1, 0);
13028 SET_FRAME_GARBAGED (f);
13029 cancel_mouse_face (f);
13030
13031 /* Wait for the change of frame size to occur */
13032 f->output_data.x->want_fullscreen |= FULLSCREEN_WAIT;
13033
13034 }
13035 }
13036 }
13037
13038 /* If frame parameters are set after the frame is mapped, we need to move
13039 the window. This is done in xfns.c.
13040 Some window managers moves the window to the right position, some
13041 moves the outer window manager window to the specified position.
13042 Here we check that we are in the right spot. If not, make a second
13043 move, assuming we are dealing with the second kind of window manager. */
13044 static void
13045 x_check_fullscreen_move (f)
13046 struct frame *f;
13047 {
13048 if (f->output_data.x->want_fullscreen & FULLSCREEN_MOVE_WAIT)
13049 {
13050 int expect_top = f->output_data.x->top_pos;
13051 int expect_left = f->output_data.x->left_pos;
13052
13053 if (f->output_data.x->want_fullscreen & FULLSCREEN_HEIGHT)
13054 expect_top = 0;
13055 if (f->output_data.x->want_fullscreen & FULLSCREEN_WIDTH)
13056 expect_left = 0;
13057
13058 if (expect_top != f->output_data.x->top_pos
13059 || expect_left != f->output_data.x->left_pos)
13060 x_set_offset (f, expect_left, expect_top, 1);
13061
13062 /* Just do this once */
13063 f->output_data.x->want_fullscreen &= ~FULLSCREEN_MOVE_WAIT;
13064 }
13065 }
13066
13067
13068 /* Calculate fullscreen size. Return in *TOP_POS and *LEFT_POS the
13069 wanted positions of the WM window (not emacs window).
13070 Return in *WIDTH and *HEIGHT the wanted width and height of Emacs
13071 window (FRAME_X_WINDOW).
13072 */
13073 void
13074 x_fullscreen_adjust (f, width, height, top_pos, left_pos)
13075 struct frame *f;
13076 int *width;
13077 int *height;
13078 int *top_pos;
13079 int *left_pos;
13080 {
13081 int newwidth = f->width, newheight = f->height;
13082
13083 *top_pos = f->output_data.x->top_pos;
13084 *left_pos = f->output_data.x->left_pos;
13085
13086 if (f->output_data.x->want_fullscreen & FULLSCREEN_HEIGHT)
13087 {
13088 int ph;
13089
13090 ph = FRAME_X_DISPLAY_INFO (f)->height;
13091 newheight = PIXEL_TO_CHAR_HEIGHT (f, ph);
13092 ph = CHAR_TO_PIXEL_HEIGHT (f, newheight)
13093 - f->output_data.x->y_pixels_diff;
13094 newheight = PIXEL_TO_CHAR_HEIGHT (f, ph);
13095 *top_pos = 0;
13096 }
13097
13098 if (f->output_data.x->want_fullscreen & FULLSCREEN_WIDTH)
13099 {
13100 int pw;
13101
13102 pw = FRAME_X_DISPLAY_INFO (f)->width;
13103 newwidth = PIXEL_TO_CHAR_WIDTH (f, pw);
13104 pw = CHAR_TO_PIXEL_WIDTH (f, newwidth)
13105 - f->output_data.x->x_pixels_diff;
13106 newwidth = PIXEL_TO_CHAR_WIDTH (f, pw);
13107 *left_pos = 0;
13108 }
13109
13110 *width = newwidth;
13111 *height = newheight;
13112 }
13113
13114
13115 /* Change the size of frame F's X window to COLS/ROWS in the case F
13116 doesn't have a widget. If CHANGE_GRAVITY is 1, we change to
13117 top-left-corner window gravity for this size change and subsequent
13118 size changes. Otherwise we leave the window gravity unchanged. */
13119
13120 static void
13121 x_set_window_size_1 (f, change_gravity, cols, rows)
13122 struct frame *f;
13123 int change_gravity;
13124 int cols, rows;
13125 {
13126 int pixelwidth, pixelheight;
13127
13128 check_frame_size (f, &rows, &cols);
13129 f->output_data.x->vertical_scroll_bar_extra
13130 = (!FRAME_HAS_VERTICAL_SCROLL_BARS (f)
13131 ? 0
13132 : FRAME_SCROLL_BAR_PIXEL_WIDTH (f) > 0
13133 ? FRAME_SCROLL_BAR_PIXEL_WIDTH (f)
13134 : (FRAME_SCROLL_BAR_COLS (f) * FONT_WIDTH (f->output_data.x->font)));
13135
13136 x_compute_fringe_widths (f, 0);
13137
13138 pixelwidth = CHAR_TO_PIXEL_WIDTH (f, cols);
13139 pixelheight = CHAR_TO_PIXEL_HEIGHT (f, rows);
13140
13141 f->output_data.x->win_gravity = NorthWestGravity;
13142 x_wm_set_size_hint (f, (long) 0, 0);
13143
13144 XSync (FRAME_X_DISPLAY (f), False);
13145 XResizeWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
13146 pixelwidth, pixelheight);
13147
13148 /* Now, strictly speaking, we can't be sure that this is accurate,
13149 but the window manager will get around to dealing with the size
13150 change request eventually, and we'll hear how it went when the
13151 ConfigureNotify event gets here.
13152
13153 We could just not bother storing any of this information here,
13154 and let the ConfigureNotify event set everything up, but that
13155 might be kind of confusing to the Lisp code, since size changes
13156 wouldn't be reported in the frame parameters until some random
13157 point in the future when the ConfigureNotify event arrives.
13158
13159 We pass 1 for DELAY since we can't run Lisp code inside of
13160 a BLOCK_INPUT. */
13161 change_frame_size (f, rows, cols, 0, 1, 0);
13162 PIXEL_WIDTH (f) = pixelwidth;
13163 PIXEL_HEIGHT (f) = pixelheight;
13164
13165 /* We've set {FRAME,PIXEL}_{WIDTH,HEIGHT} to the values we hope to
13166 receive in the ConfigureNotify event; if we get what we asked
13167 for, then the event won't cause the screen to become garbaged, so
13168 we have to make sure to do it here. */
13169 SET_FRAME_GARBAGED (f);
13170
13171 XFlush (FRAME_X_DISPLAY (f));
13172 }
13173
13174
13175 /* Call this to change the size of frame F's x-window.
13176 If CHANGE_GRAVITY is 1, we change to top-left-corner window gravity
13177 for this size change and subsequent size changes.
13178 Otherwise we leave the window gravity unchanged. */
13179
13180 void
13181 x_set_window_size (f, change_gravity, cols, rows)
13182 struct frame *f;
13183 int change_gravity;
13184 int cols, rows;
13185 {
13186 BLOCK_INPUT;
13187
13188 #ifdef USE_X_TOOLKIT
13189
13190 if (f->output_data.x->widget != NULL)
13191 {
13192 /* The x and y position of the widget is clobbered by the
13193 call to XtSetValues within EmacsFrameSetCharSize.
13194 This is a real kludge, but I don't understand Xt so I can't
13195 figure out a correct fix. Can anyone else tell me? -- rms. */
13196 int xpos = f->output_data.x->widget->core.x;
13197 int ypos = f->output_data.x->widget->core.y;
13198 EmacsFrameSetCharSize (f->output_data.x->edit_widget, cols, rows);
13199 f->output_data.x->widget->core.x = xpos;
13200 f->output_data.x->widget->core.y = ypos;
13201 }
13202 else
13203 x_set_window_size_1 (f, change_gravity, cols, rows);
13204
13205 #else /* not USE_X_TOOLKIT */
13206
13207 x_set_window_size_1 (f, change_gravity, cols, rows);
13208
13209 #endif /* not USE_X_TOOLKIT */
13210
13211 /* If cursor was outside the new size, mark it as off. */
13212 mark_window_cursors_off (XWINDOW (f->root_window));
13213
13214 /* Clear out any recollection of where the mouse highlighting was,
13215 since it might be in a place that's outside the new frame size.
13216 Actually checking whether it is outside is a pain in the neck,
13217 so don't try--just let the highlighting be done afresh with new size. */
13218 cancel_mouse_face (f);
13219
13220 UNBLOCK_INPUT;
13221 }
13222 \f
13223 /* Mouse warping. */
13224
13225 void
13226 x_set_mouse_position (f, x, y)
13227 struct frame *f;
13228 int x, y;
13229 {
13230 int pix_x, pix_y;
13231
13232 pix_x = CHAR_TO_PIXEL_COL (f, x) + FONT_WIDTH (f->output_data.x->font) / 2;
13233 pix_y = CHAR_TO_PIXEL_ROW (f, y) + f->output_data.x->line_height / 2;
13234
13235 if (pix_x < 0) pix_x = 0;
13236 if (pix_x > PIXEL_WIDTH (f)) pix_x = PIXEL_WIDTH (f);
13237
13238 if (pix_y < 0) pix_y = 0;
13239 if (pix_y > PIXEL_HEIGHT (f)) pix_y = PIXEL_HEIGHT (f);
13240
13241 BLOCK_INPUT;
13242
13243 XWarpPointer (FRAME_X_DISPLAY (f), None, FRAME_X_WINDOW (f),
13244 0, 0, 0, 0, pix_x, pix_y);
13245 UNBLOCK_INPUT;
13246 }
13247
13248 /* Move the mouse to position pixel PIX_X, PIX_Y relative to frame F. */
13249
13250 void
13251 x_set_mouse_pixel_position (f, pix_x, pix_y)
13252 struct frame *f;
13253 int pix_x, pix_y;
13254 {
13255 BLOCK_INPUT;
13256
13257 XWarpPointer (FRAME_X_DISPLAY (f), None, FRAME_X_WINDOW (f),
13258 0, 0, 0, 0, pix_x, pix_y);
13259 UNBLOCK_INPUT;
13260 }
13261 \f
13262 /* focus shifting, raising and lowering. */
13263
13264 void
13265 x_focus_on_frame (f)
13266 struct frame *f;
13267 {
13268 #if 0 /* This proves to be unpleasant. */
13269 x_raise_frame (f);
13270 #endif
13271 #if 0
13272 /* I don't think that the ICCCM allows programs to do things like this
13273 without the interaction of the window manager. Whatever you end up
13274 doing with this code, do it to x_unfocus_frame too. */
13275 XSetInputFocus (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
13276 RevertToPointerRoot, CurrentTime);
13277 #endif /* ! 0 */
13278 }
13279
13280 void
13281 x_unfocus_frame (f)
13282 struct frame *f;
13283 {
13284 #if 0
13285 /* Look at the remarks in x_focus_on_frame. */
13286 if (FRAME_X_DISPLAY_INFO (f)->x_focus_frame == f)
13287 XSetInputFocus (FRAME_X_DISPLAY (f), PointerRoot,
13288 RevertToPointerRoot, CurrentTime);
13289 #endif /* ! 0 */
13290 }
13291
13292 /* Raise frame F. */
13293
13294 void
13295 x_raise_frame (f)
13296 struct frame *f;
13297 {
13298 if (f->async_visible)
13299 {
13300 BLOCK_INPUT;
13301 #ifdef USE_X_TOOLKIT
13302 XRaiseWindow (FRAME_X_DISPLAY (f), XtWindow (f->output_data.x->widget));
13303 #else /* not USE_X_TOOLKIT */
13304 XRaiseWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
13305 #endif /* not USE_X_TOOLKIT */
13306 XFlush (FRAME_X_DISPLAY (f));
13307 UNBLOCK_INPUT;
13308 }
13309 }
13310
13311 /* Lower frame F. */
13312
13313 void
13314 x_lower_frame (f)
13315 struct frame *f;
13316 {
13317 if (f->async_visible)
13318 {
13319 BLOCK_INPUT;
13320 #ifdef USE_X_TOOLKIT
13321 XLowerWindow (FRAME_X_DISPLAY (f), XtWindow (f->output_data.x->widget));
13322 #else /* not USE_X_TOOLKIT */
13323 XLowerWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
13324 #endif /* not USE_X_TOOLKIT */
13325 XFlush (FRAME_X_DISPLAY (f));
13326 UNBLOCK_INPUT;
13327 }
13328 }
13329
13330 static void
13331 XTframe_raise_lower (f, raise_flag)
13332 FRAME_PTR f;
13333 int raise_flag;
13334 {
13335 if (raise_flag)
13336 x_raise_frame (f);
13337 else
13338 x_lower_frame (f);
13339 }
13340 \f
13341 /* Change of visibility. */
13342
13343 /* This tries to wait until the frame is really visible.
13344 However, if the window manager asks the user where to position
13345 the frame, this will return before the user finishes doing that.
13346 The frame will not actually be visible at that time,
13347 but it will become visible later when the window manager
13348 finishes with it. */
13349
13350 void
13351 x_make_frame_visible (f)
13352 struct frame *f;
13353 {
13354 Lisp_Object type;
13355 int original_top, original_left;
13356 int retry_count = 2;
13357
13358 retry:
13359
13360 BLOCK_INPUT;
13361
13362 type = x_icon_type (f);
13363 if (!NILP (type))
13364 x_bitmap_icon (f, type);
13365
13366 if (! FRAME_VISIBLE_P (f))
13367 {
13368 /* We test FRAME_GARBAGED_P here to make sure we don't
13369 call x_set_offset a second time
13370 if we get to x_make_frame_visible a second time
13371 before the window gets really visible. */
13372 if (! FRAME_ICONIFIED_P (f)
13373 && ! f->output_data.x->asked_for_visible)
13374 x_set_offset (f, f->output_data.x->left_pos, f->output_data.x->top_pos, 0);
13375
13376 f->output_data.x->asked_for_visible = 1;
13377
13378 if (! EQ (Vx_no_window_manager, Qt))
13379 x_wm_set_window_state (f, NormalState);
13380 #ifdef USE_X_TOOLKIT
13381 /* This was XtPopup, but that did nothing for an iconified frame. */
13382 XtMapWidget (f->output_data.x->widget);
13383 #else /* not USE_X_TOOLKIT */
13384 XMapRaised (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
13385 #endif /* not USE_X_TOOLKIT */
13386 #if 0 /* This seems to bring back scroll bars in the wrong places
13387 if the window configuration has changed. They seem
13388 to come back ok without this. */
13389 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
13390 XMapSubwindows (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
13391 #endif
13392 }
13393
13394 XFlush (FRAME_X_DISPLAY (f));
13395
13396 /* Synchronize to ensure Emacs knows the frame is visible
13397 before we do anything else. We do this loop with input not blocked
13398 so that incoming events are handled. */
13399 {
13400 Lisp_Object frame;
13401 int count;
13402 /* This must be before UNBLOCK_INPUT
13403 since events that arrive in response to the actions above
13404 will set it when they are handled. */
13405 int previously_visible = f->output_data.x->has_been_visible;
13406
13407 original_left = f->output_data.x->left_pos;
13408 original_top = f->output_data.x->top_pos;
13409
13410 /* This must come after we set COUNT. */
13411 UNBLOCK_INPUT;
13412
13413 /* We unblock here so that arriving X events are processed. */
13414
13415 /* Now move the window back to where it was "supposed to be".
13416 But don't do it if the gravity is negative.
13417 When the gravity is negative, this uses a position
13418 that is 3 pixels too low. Perhaps that's really the border width.
13419
13420 Don't do this if the window has never been visible before,
13421 because the window manager may choose the position
13422 and we don't want to override it. */
13423
13424 if (! FRAME_VISIBLE_P (f) && ! FRAME_ICONIFIED_P (f)
13425 && f->output_data.x->win_gravity == NorthWestGravity
13426 && previously_visible)
13427 {
13428 Drawable rootw;
13429 int x, y;
13430 unsigned int width, height, border, depth;
13431
13432 BLOCK_INPUT;
13433
13434 /* On some window managers (such as FVWM) moving an existing
13435 window, even to the same place, causes the window manager
13436 to introduce an offset. This can cause the window to move
13437 to an unexpected location. Check the geometry (a little
13438 slow here) and then verify that the window is in the right
13439 place. If the window is not in the right place, move it
13440 there, and take the potential window manager hit. */
13441 XGetGeometry (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
13442 &rootw, &x, &y, &width, &height, &border, &depth);
13443
13444 if (original_left != x || original_top != y)
13445 XMoveWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
13446 original_left, original_top);
13447
13448 UNBLOCK_INPUT;
13449 }
13450
13451 XSETFRAME (frame, f);
13452
13453 /* Wait until the frame is visible. Process X events until a
13454 MapNotify event has been seen, or until we think we won't get a
13455 MapNotify at all.. */
13456 for (count = input_signal_count + 10;
13457 input_signal_count < count && !FRAME_VISIBLE_P (f);)
13458 {
13459 /* Force processing of queued events. */
13460 x_sync (f);
13461
13462 /* Machines that do polling rather than SIGIO have been
13463 observed to go into a busy-wait here. So we'll fake an
13464 alarm signal to let the handler know that there's something
13465 to be read. We used to raise a real alarm, but it seems
13466 that the handler isn't always enabled here. This is
13467 probably a bug. */
13468 if (input_polling_used ())
13469 {
13470 /* It could be confusing if a real alarm arrives while
13471 processing the fake one. Turn it off and let the
13472 handler reset it. */
13473 extern void poll_for_input_1 P_ ((void));
13474 int old_poll_suppress_count = poll_suppress_count;
13475 poll_suppress_count = 1;
13476 poll_for_input_1 ();
13477 poll_suppress_count = old_poll_suppress_count;
13478 }
13479
13480 /* See if a MapNotify event has been processed. */
13481 FRAME_SAMPLE_VISIBILITY (f);
13482 }
13483
13484 /* 2000-09-28: In
13485
13486 (let ((f (selected-frame)))
13487 (iconify-frame f)
13488 (raise-frame f))
13489
13490 the frame is not raised with various window managers on
13491 FreeBSD, Linux and Solaris. It turns out that, for some
13492 unknown reason, the call to XtMapWidget is completely ignored.
13493 Mapping the widget a second time works. */
13494
13495 if (!FRAME_VISIBLE_P (f) && --retry_count > 0)
13496 goto retry;
13497 }
13498 }
13499
13500 /* Change from mapped state to withdrawn state. */
13501
13502 /* Make the frame visible (mapped and not iconified). */
13503
13504 void
13505 x_make_frame_invisible (f)
13506 struct frame *f;
13507 {
13508 Window window;
13509
13510 #ifdef USE_X_TOOLKIT
13511 /* Use the frame's outermost window, not the one we normally draw on. */
13512 window = XtWindow (f->output_data.x->widget);
13513 #else /* not USE_X_TOOLKIT */
13514 window = FRAME_X_WINDOW (f);
13515 #endif /* not USE_X_TOOLKIT */
13516
13517 /* Don't keep the highlight on an invisible frame. */
13518 if (FRAME_X_DISPLAY_INFO (f)->x_highlight_frame == f)
13519 FRAME_X_DISPLAY_INFO (f)->x_highlight_frame = 0;
13520
13521 #if 0/* This might add unreliability; I don't trust it -- rms. */
13522 if (! f->async_visible && ! f->async_iconified)
13523 return;
13524 #endif
13525
13526 BLOCK_INPUT;
13527
13528 /* Before unmapping the window, update the WM_SIZE_HINTS property to claim
13529 that the current position of the window is user-specified, rather than
13530 program-specified, so that when the window is mapped again, it will be
13531 placed at the same location, without forcing the user to position it
13532 by hand again (they have already done that once for this window.) */
13533 x_wm_set_size_hint (f, (long) 0, 1);
13534
13535 #ifdef HAVE_X11R4
13536
13537 if (! XWithdrawWindow (FRAME_X_DISPLAY (f), window,
13538 DefaultScreen (FRAME_X_DISPLAY (f))))
13539 {
13540 UNBLOCK_INPUT_RESIGNAL;
13541 error ("Can't notify window manager of window withdrawal");
13542 }
13543 #else /* ! defined (HAVE_X11R4) */
13544
13545 /* Tell the window manager what we're going to do. */
13546 if (! EQ (Vx_no_window_manager, Qt))
13547 {
13548 XEvent unmap;
13549
13550 unmap.xunmap.type = UnmapNotify;
13551 unmap.xunmap.window = window;
13552 unmap.xunmap.event = DefaultRootWindow (FRAME_X_DISPLAY (f));
13553 unmap.xunmap.from_configure = False;
13554 if (! XSendEvent (FRAME_X_DISPLAY (f),
13555 DefaultRootWindow (FRAME_X_DISPLAY (f)),
13556 False,
13557 SubstructureRedirectMaskSubstructureNotifyMask,
13558 &unmap))
13559 {
13560 UNBLOCK_INPUT_RESIGNAL;
13561 error ("Can't notify window manager of withdrawal");
13562 }
13563 }
13564
13565 /* Unmap the window ourselves. Cheeky! */
13566 XUnmapWindow (FRAME_X_DISPLAY (f), window);
13567 #endif /* ! defined (HAVE_X11R4) */
13568
13569 /* We can't distinguish this from iconification
13570 just by the event that we get from the server.
13571 So we can't win using the usual strategy of letting
13572 FRAME_SAMPLE_VISIBILITY set this. So do it by hand,
13573 and synchronize with the server to make sure we agree. */
13574 f->visible = 0;
13575 FRAME_ICONIFIED_P (f) = 0;
13576 f->async_visible = 0;
13577 f->async_iconified = 0;
13578
13579 x_sync (f);
13580
13581 UNBLOCK_INPUT;
13582 }
13583
13584 /* Change window state from mapped to iconified. */
13585
13586 void
13587 x_iconify_frame (f)
13588 struct frame *f;
13589 {
13590 int result;
13591 Lisp_Object type;
13592
13593 /* Don't keep the highlight on an invisible frame. */
13594 if (FRAME_X_DISPLAY_INFO (f)->x_highlight_frame == f)
13595 FRAME_X_DISPLAY_INFO (f)->x_highlight_frame = 0;
13596
13597 if (f->async_iconified)
13598 return;
13599
13600 BLOCK_INPUT;
13601
13602 FRAME_SAMPLE_VISIBILITY (f);
13603
13604 type = x_icon_type (f);
13605 if (!NILP (type))
13606 x_bitmap_icon (f, type);
13607
13608 #ifdef USE_X_TOOLKIT
13609
13610 if (! FRAME_VISIBLE_P (f))
13611 {
13612 if (! EQ (Vx_no_window_manager, Qt))
13613 x_wm_set_window_state (f, IconicState);
13614 /* This was XtPopup, but that did nothing for an iconified frame. */
13615 XtMapWidget (f->output_data.x->widget);
13616 /* The server won't give us any event to indicate
13617 that an invisible frame was changed to an icon,
13618 so we have to record it here. */
13619 f->iconified = 1;
13620 f->visible = 1;
13621 f->async_iconified = 1;
13622 f->async_visible = 0;
13623 UNBLOCK_INPUT;
13624 return;
13625 }
13626
13627 result = XIconifyWindow (FRAME_X_DISPLAY (f),
13628 XtWindow (f->output_data.x->widget),
13629 DefaultScreen (FRAME_X_DISPLAY (f)));
13630 UNBLOCK_INPUT;
13631
13632 if (!result)
13633 error ("Can't notify window manager of iconification");
13634
13635 f->async_iconified = 1;
13636 f->async_visible = 0;
13637
13638
13639 BLOCK_INPUT;
13640 XFlush (FRAME_X_DISPLAY (f));
13641 UNBLOCK_INPUT;
13642 #else /* not USE_X_TOOLKIT */
13643
13644 /* Make sure the X server knows where the window should be positioned,
13645 in case the user deiconifies with the window manager. */
13646 if (! FRAME_VISIBLE_P (f) && !FRAME_ICONIFIED_P (f))
13647 x_set_offset (f, f->output_data.x->left_pos, f->output_data.x->top_pos, 0);
13648
13649 /* Since we don't know which revision of X we're running, we'll use both
13650 the X11R3 and X11R4 techniques. I don't know if this is a good idea. */
13651
13652 /* X11R4: send a ClientMessage to the window manager using the
13653 WM_CHANGE_STATE type. */
13654 {
13655 XEvent message;
13656
13657 message.xclient.window = FRAME_X_WINDOW (f);
13658 message.xclient.type = ClientMessage;
13659 message.xclient.message_type = FRAME_X_DISPLAY_INFO (f)->Xatom_wm_change_state;
13660 message.xclient.format = 32;
13661 message.xclient.data.l[0] = IconicState;
13662
13663 if (! XSendEvent (FRAME_X_DISPLAY (f),
13664 DefaultRootWindow (FRAME_X_DISPLAY (f)),
13665 False,
13666 SubstructureRedirectMask | SubstructureNotifyMask,
13667 &message))
13668 {
13669 UNBLOCK_INPUT_RESIGNAL;
13670 error ("Can't notify window manager of iconification");
13671 }
13672 }
13673
13674 /* X11R3: set the initial_state field of the window manager hints to
13675 IconicState. */
13676 x_wm_set_window_state (f, IconicState);
13677
13678 if (!FRAME_VISIBLE_P (f))
13679 {
13680 /* If the frame was withdrawn, before, we must map it. */
13681 XMapRaised (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
13682 }
13683
13684 f->async_iconified = 1;
13685 f->async_visible = 0;
13686
13687 XFlush (FRAME_X_DISPLAY (f));
13688 UNBLOCK_INPUT;
13689 #endif /* not USE_X_TOOLKIT */
13690 }
13691
13692 \f
13693 /* Free X resources of frame F. */
13694
13695 void
13696 x_free_frame_resources (f)
13697 struct frame *f;
13698 {
13699 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
13700 Lisp_Object bar;
13701 struct scroll_bar *b;
13702
13703 BLOCK_INPUT;
13704
13705 /* If a display connection is dead, don't try sending more
13706 commands to the X server. */
13707 if (dpyinfo->display)
13708 {
13709 if (f->output_data.x->icon_desc)
13710 XDestroyWindow (FRAME_X_DISPLAY (f), f->output_data.x->icon_desc);
13711
13712 #ifdef USE_X_TOOLKIT
13713 /* Explicitly destroy the scroll bars of the frame. Without
13714 this, we get "BadDrawable" errors from the toolkit later on,
13715 presumably from expose events generated for the disappearing
13716 toolkit scroll bars. */
13717 for (bar = FRAME_SCROLL_BARS (f); !NILP (bar); bar = b->next)
13718 {
13719 b = XSCROLL_BAR (bar);
13720 x_scroll_bar_remove (b);
13721 }
13722 #endif
13723
13724 #ifdef HAVE_X_I18N
13725 if (FRAME_XIC (f))
13726 free_frame_xic (f);
13727 #endif
13728
13729 #ifdef USE_X_TOOLKIT
13730 if (f->output_data.x->widget)
13731 {
13732 XtDestroyWidget (f->output_data.x->widget);
13733 f->output_data.x->widget = NULL;
13734 }
13735 /* Tooltips don't have widgets, only a simple X window, even if
13736 we are using a toolkit. */
13737 else if (FRAME_X_WINDOW (f))
13738 XDestroyWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
13739
13740 free_frame_menubar (f);
13741 #else /* !USE_X_TOOLKIT */
13742 if (FRAME_X_WINDOW (f))
13743 XDestroyWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
13744 #endif /* !USE_X_TOOLKIT */
13745
13746 unload_color (f, f->output_data.x->foreground_pixel);
13747 unload_color (f, f->output_data.x->background_pixel);
13748 unload_color (f, f->output_data.x->cursor_pixel);
13749 unload_color (f, f->output_data.x->cursor_foreground_pixel);
13750 unload_color (f, f->output_data.x->border_pixel);
13751 unload_color (f, f->output_data.x->mouse_pixel);
13752
13753 if (f->output_data.x->scroll_bar_background_pixel != -1)
13754 unload_color (f, f->output_data.x->scroll_bar_background_pixel);
13755 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
13756 unload_color (f, f->output_data.x->scroll_bar_foreground_pixel);
13757 #ifdef USE_TOOLKIT_SCROLL_BARS
13758 /* Scrollbar shadow colors. */
13759 if (f->output_data.x->scroll_bar_top_shadow_pixel != -1)
13760 unload_color (f, f->output_data.x->scroll_bar_top_shadow_pixel);
13761 if (f->output_data.x->scroll_bar_bottom_shadow_pixel != -1)
13762 unload_color (f, f->output_data.x->scroll_bar_bottom_shadow_pixel);
13763 #endif /* USE_TOOLKIT_SCROLL_BARS */
13764 if (f->output_data.x->white_relief.allocated_p)
13765 unload_color (f, f->output_data.x->white_relief.pixel);
13766 if (f->output_data.x->black_relief.allocated_p)
13767 unload_color (f, f->output_data.x->black_relief.pixel);
13768
13769 if (FRAME_FACE_CACHE (f))
13770 free_frame_faces (f);
13771
13772 x_free_gcs (f);
13773 XFlush (FRAME_X_DISPLAY (f));
13774 }
13775
13776 if (f->output_data.x->saved_menu_event)
13777 xfree (f->output_data.x->saved_menu_event);
13778
13779 xfree (f->output_data.x);
13780 f->output_data.x = NULL;
13781
13782 if (f == dpyinfo->x_focus_frame)
13783 dpyinfo->x_focus_frame = 0;
13784 if (f == dpyinfo->x_focus_event_frame)
13785 dpyinfo->x_focus_event_frame = 0;
13786 if (f == dpyinfo->x_highlight_frame)
13787 dpyinfo->x_highlight_frame = 0;
13788
13789 if (f == dpyinfo->mouse_face_mouse_frame)
13790 {
13791 dpyinfo->mouse_face_beg_row
13792 = dpyinfo->mouse_face_beg_col = -1;
13793 dpyinfo->mouse_face_end_row
13794 = dpyinfo->mouse_face_end_col = -1;
13795 dpyinfo->mouse_face_window = Qnil;
13796 dpyinfo->mouse_face_deferred_gc = 0;
13797 dpyinfo->mouse_face_mouse_frame = 0;
13798 }
13799
13800 UNBLOCK_INPUT;
13801 }
13802
13803
13804 /* Destroy the X window of frame F. */
13805
13806 void
13807 x_destroy_window (f)
13808 struct frame *f;
13809 {
13810 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
13811
13812 /* If a display connection is dead, don't try sending more
13813 commands to the X server. */
13814 if (dpyinfo->display != 0)
13815 x_free_frame_resources (f);
13816
13817 dpyinfo->reference_count--;
13818 }
13819
13820 \f
13821 /* Setting window manager hints. */
13822
13823 /* Set the normal size hints for the window manager, for frame F.
13824 FLAGS is the flags word to use--or 0 meaning preserve the flags
13825 that the window now has.
13826 If USER_POSITION is nonzero, we set the USPosition
13827 flag (this is useful when FLAGS is 0). */
13828
13829 void
13830 x_wm_set_size_hint (f, flags, user_position)
13831 struct frame *f;
13832 long flags;
13833 int user_position;
13834 {
13835 XSizeHints size_hints;
13836
13837 #ifdef USE_X_TOOLKIT
13838 Arg al[2];
13839 int ac = 0;
13840 Dimension widget_width, widget_height;
13841 Window window = XtWindow (f->output_data.x->widget);
13842 #else /* not USE_X_TOOLKIT */
13843 Window window = FRAME_X_WINDOW (f);
13844 #endif /* not USE_X_TOOLKIT */
13845
13846 /* Setting PMaxSize caused various problems. */
13847 size_hints.flags = PResizeInc | PMinSize /* | PMaxSize */;
13848
13849 size_hints.x = f->output_data.x->left_pos;
13850 size_hints.y = f->output_data.x->top_pos;
13851
13852 #ifdef USE_X_TOOLKIT
13853 XtSetArg (al[ac], XtNwidth, &widget_width); ac++;
13854 XtSetArg (al[ac], XtNheight, &widget_height); ac++;
13855 XtGetValues (f->output_data.x->widget, al, ac);
13856 size_hints.height = widget_height;
13857 size_hints.width = widget_width;
13858 #else /* not USE_X_TOOLKIT */
13859 size_hints.height = PIXEL_HEIGHT (f);
13860 size_hints.width = PIXEL_WIDTH (f);
13861 #endif /* not USE_X_TOOLKIT */
13862
13863 size_hints.width_inc = FONT_WIDTH (f->output_data.x->font);
13864 size_hints.height_inc = f->output_data.x->line_height;
13865 size_hints.max_width
13866 = FRAME_X_DISPLAY_INFO (f)->width - CHAR_TO_PIXEL_WIDTH (f, 0);
13867 size_hints.max_height
13868 = FRAME_X_DISPLAY_INFO (f)->height - CHAR_TO_PIXEL_HEIGHT (f, 0);
13869
13870 /* Calculate the base and minimum sizes.
13871
13872 (When we use the X toolkit, we don't do it here.
13873 Instead we copy the values that the widgets are using, below.) */
13874 #ifndef USE_X_TOOLKIT
13875 {
13876 int base_width, base_height;
13877 int min_rows = 0, min_cols = 0;
13878
13879 base_width = CHAR_TO_PIXEL_WIDTH (f, 0);
13880 base_height = CHAR_TO_PIXEL_HEIGHT (f, 0);
13881
13882 check_frame_size (f, &min_rows, &min_cols);
13883
13884 /* The window manager uses the base width hints to calculate the
13885 current number of rows and columns in the frame while
13886 resizing; min_width and min_height aren't useful for this
13887 purpose, since they might not give the dimensions for a
13888 zero-row, zero-column frame.
13889
13890 We use the base_width and base_height members if we have
13891 them; otherwise, we set the min_width and min_height members
13892 to the size for a zero x zero frame. */
13893
13894 #ifdef HAVE_X11R4
13895 size_hints.flags |= PBaseSize;
13896 size_hints.base_width = base_width;
13897 size_hints.base_height = base_height;
13898 size_hints.min_width = base_width + min_cols * size_hints.width_inc;
13899 size_hints.min_height = base_height + min_rows * size_hints.height_inc;
13900 #else
13901 size_hints.min_width = base_width;
13902 size_hints.min_height = base_height;
13903 #endif
13904 }
13905
13906 /* If we don't need the old flags, we don't need the old hint at all. */
13907 if (flags)
13908 {
13909 size_hints.flags |= flags;
13910 goto no_read;
13911 }
13912 #endif /* not USE_X_TOOLKIT */
13913
13914 {
13915 XSizeHints hints; /* Sometimes I hate X Windows... */
13916 long supplied_return;
13917 int value;
13918
13919 #ifdef HAVE_X11R4
13920 value = XGetWMNormalHints (FRAME_X_DISPLAY (f), window, &hints,
13921 &supplied_return);
13922 #else
13923 value = XGetNormalHints (FRAME_X_DISPLAY (f), window, &hints);
13924 #endif
13925
13926 #ifdef USE_X_TOOLKIT
13927 size_hints.base_height = hints.base_height;
13928 size_hints.base_width = hints.base_width;
13929 size_hints.min_height = hints.min_height;
13930 size_hints.min_width = hints.min_width;
13931 #endif
13932
13933 if (flags)
13934 size_hints.flags |= flags;
13935 else
13936 {
13937 if (value == 0)
13938 hints.flags = 0;
13939 if (hints.flags & PSize)
13940 size_hints.flags |= PSize;
13941 if (hints.flags & PPosition)
13942 size_hints.flags |= PPosition;
13943 if (hints.flags & USPosition)
13944 size_hints.flags |= USPosition;
13945 if (hints.flags & USSize)
13946 size_hints.flags |= USSize;
13947 }
13948 }
13949
13950 #ifndef USE_X_TOOLKIT
13951 no_read:
13952 #endif
13953
13954 #ifdef PWinGravity
13955 size_hints.win_gravity = f->output_data.x->win_gravity;
13956 size_hints.flags |= PWinGravity;
13957
13958 if (user_position)
13959 {
13960 size_hints.flags &= ~ PPosition;
13961 size_hints.flags |= USPosition;
13962 }
13963 #endif /* PWinGravity */
13964
13965 #ifdef HAVE_X11R4
13966 XSetWMNormalHints (FRAME_X_DISPLAY (f), window, &size_hints);
13967 #else
13968 XSetNormalHints (FRAME_X_DISPLAY (f), window, &size_hints);
13969 #endif
13970 }
13971
13972 /* Used for IconicState or NormalState */
13973
13974 void
13975 x_wm_set_window_state (f, state)
13976 struct frame *f;
13977 int state;
13978 {
13979 #ifdef USE_X_TOOLKIT
13980 Arg al[1];
13981
13982 XtSetArg (al[0], XtNinitialState, state);
13983 XtSetValues (f->output_data.x->widget, al, 1);
13984 #else /* not USE_X_TOOLKIT */
13985 Window window = FRAME_X_WINDOW (f);
13986
13987 f->output_data.x->wm_hints.flags |= StateHint;
13988 f->output_data.x->wm_hints.initial_state = state;
13989
13990 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints);
13991 #endif /* not USE_X_TOOLKIT */
13992 }
13993
13994 void
13995 x_wm_set_icon_pixmap (f, pixmap_id)
13996 struct frame *f;
13997 int pixmap_id;
13998 {
13999 Pixmap icon_pixmap;
14000
14001 #ifndef USE_X_TOOLKIT
14002 Window window = FRAME_X_WINDOW (f);
14003 #endif
14004
14005 if (pixmap_id > 0)
14006 {
14007 icon_pixmap = x_bitmap_pixmap (f, pixmap_id);
14008 f->output_data.x->wm_hints.icon_pixmap = icon_pixmap;
14009 }
14010 else
14011 {
14012 /* It seems there is no way to turn off use of an icon pixmap.
14013 The following line does it, only if no icon has yet been created,
14014 for some window managers. But with mwm it crashes.
14015 Some people say it should clear the IconPixmapHint bit in this case,
14016 but that doesn't work, and the X consortium said it isn't the
14017 right thing at all. Since there is no way to win,
14018 best to explicitly give up. */
14019 #if 0
14020 f->output_data.x->wm_hints.icon_pixmap = None;
14021 #else
14022 return;
14023 #endif
14024 }
14025
14026 #ifdef USE_X_TOOLKIT /* same as in x_wm_set_window_state. */
14027
14028 {
14029 Arg al[1];
14030 XtSetArg (al[0], XtNiconPixmap, icon_pixmap);
14031 XtSetValues (f->output_data.x->widget, al, 1);
14032 }
14033
14034 #else /* not USE_X_TOOLKIT */
14035
14036 f->output_data.x->wm_hints.flags |= IconPixmapHint;
14037 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints);
14038
14039 #endif /* not USE_X_TOOLKIT */
14040 }
14041
14042 void
14043 x_wm_set_icon_position (f, icon_x, icon_y)
14044 struct frame *f;
14045 int icon_x, icon_y;
14046 {
14047 #ifdef USE_X_TOOLKIT
14048 Window window = XtWindow (f->output_data.x->widget);
14049 #else
14050 Window window = FRAME_X_WINDOW (f);
14051 #endif
14052
14053 f->output_data.x->wm_hints.flags |= IconPositionHint;
14054 f->output_data.x->wm_hints.icon_x = icon_x;
14055 f->output_data.x->wm_hints.icon_y = icon_y;
14056
14057 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints);
14058 }
14059
14060 \f
14061 /***********************************************************************
14062 Fonts
14063 ***********************************************************************/
14064
14065 /* Return a pointer to struct font_info of font FONT_IDX of frame F. */
14066
14067 struct font_info *
14068 x_get_font_info (f, font_idx)
14069 FRAME_PTR f;
14070 int font_idx;
14071 {
14072 return (FRAME_X_FONT_TABLE (f) + font_idx);
14073 }
14074
14075
14076 /* Return a list of names of available fonts matching PATTERN on frame F.
14077
14078 If SIZE is > 0, it is the size (maximum bounds width) of fonts
14079 to be listed.
14080
14081 SIZE < 0 means include scalable fonts.
14082
14083 Frame F null means we have not yet created any frame on X, and
14084 consult the first display in x_display_list. MAXNAMES sets a limit
14085 on how many fonts to match. */
14086
14087 Lisp_Object
14088 x_list_fonts (f, pattern, size, maxnames)
14089 struct frame *f;
14090 Lisp_Object pattern;
14091 int size;
14092 int maxnames;
14093 {
14094 Lisp_Object list = Qnil, patterns, newlist = Qnil, key = Qnil;
14095 Lisp_Object tem, second_best;
14096 struct x_display_info *dpyinfo
14097 = f ? FRAME_X_DISPLAY_INFO (f) : x_display_list;
14098 Display *dpy = dpyinfo->display;
14099 int try_XLoadQueryFont = 0;
14100 int count;
14101 int allow_scalable_fonts_p = 0;
14102
14103 if (size < 0)
14104 {
14105 allow_scalable_fonts_p = 1;
14106 size = 0;
14107 }
14108
14109 patterns = Fassoc (pattern, Valternate_fontname_alist);
14110 if (NILP (patterns))
14111 patterns = Fcons (pattern, Qnil);
14112
14113 if (maxnames == 1 && !size)
14114 /* We can return any single font matching PATTERN. */
14115 try_XLoadQueryFont = 1;
14116
14117 for (; CONSP (patterns); patterns = XCDR (patterns))
14118 {
14119 int num_fonts;
14120 char **names = NULL;
14121
14122 pattern = XCAR (patterns);
14123 /* See if we cached the result for this particular query.
14124 The cache is an alist of the form:
14125 ((((PATTERN . MAXNAMES) . SCALABLE) (FONTNAME . WIDTH) ...) ...) */
14126 tem = XCDR (dpyinfo->name_list_element);
14127 key = Fcons (Fcons (pattern, make_number (maxnames)),
14128 allow_scalable_fonts_p ? Qt : Qnil);
14129 list = Fassoc (key, tem);
14130 if (!NILP (list))
14131 {
14132 list = Fcdr_safe (list);
14133 /* We have a cashed list. Don't have to get the list again. */
14134 goto label_cached;
14135 }
14136
14137 /* At first, put PATTERN in the cache. */
14138
14139 BLOCK_INPUT;
14140 count = x_catch_errors (dpy);
14141
14142 if (try_XLoadQueryFont)
14143 {
14144 XFontStruct *font;
14145 unsigned long value;
14146
14147 font = XLoadQueryFont (dpy, SDATA (pattern));
14148 if (x_had_errors_p (dpy))
14149 {
14150 /* This error is perhaps due to insufficient memory on X
14151 server. Let's just ignore it. */
14152 font = NULL;
14153 x_clear_errors (dpy);
14154 }
14155
14156 if (font
14157 && XGetFontProperty (font, XA_FONT, &value))
14158 {
14159 char *name = (char *) XGetAtomName (dpy, (Atom) value);
14160 int len = strlen (name);
14161 char *tmp;
14162
14163 /* If DXPC (a Differential X Protocol Compressor)
14164 Ver.3.7 is running, XGetAtomName will return null
14165 string. We must avoid such a name. */
14166 if (len == 0)
14167 try_XLoadQueryFont = 0;
14168 else
14169 {
14170 num_fonts = 1;
14171 names = (char **) alloca (sizeof (char *));
14172 /* Some systems only allow alloca assigned to a
14173 simple var. */
14174 tmp = (char *) alloca (len + 1); names[0] = tmp;
14175 bcopy (name, names[0], len + 1);
14176 XFree (name);
14177 }
14178 }
14179 else
14180 try_XLoadQueryFont = 0;
14181
14182 if (font)
14183 XFreeFont (dpy, font);
14184 }
14185
14186 if (!try_XLoadQueryFont)
14187 {
14188 /* We try at least 10 fonts because XListFonts will return
14189 auto-scaled fonts at the head. */
14190 names = XListFonts (dpy, SDATA (pattern), max (maxnames, 10),
14191 &num_fonts);
14192 if (x_had_errors_p (dpy))
14193 {
14194 /* This error is perhaps due to insufficient memory on X
14195 server. Let's just ignore it. */
14196 names = NULL;
14197 x_clear_errors (dpy);
14198 }
14199 }
14200
14201 x_uncatch_errors (dpy, count);
14202 UNBLOCK_INPUT;
14203
14204 if (names)
14205 {
14206 int i;
14207
14208 /* Make a list of all the fonts we got back.
14209 Store that in the font cache for the display. */
14210 for (i = 0; i < num_fonts; i++)
14211 {
14212 int width = 0;
14213 char *p = names[i];
14214 int average_width = -1, dashes = 0;
14215
14216 /* Count the number of dashes in NAMES[I]. If there are
14217 14 dashes, and the field value following 12th dash
14218 (AVERAGE_WIDTH) is 0, this is a auto-scaled font which
14219 is usually too ugly to be used for editing. Let's
14220 ignore it. */
14221 while (*p)
14222 if (*p++ == '-')
14223 {
14224 dashes++;
14225 if (dashes == 7) /* PIXEL_SIZE field */
14226 width = atoi (p);
14227 else if (dashes == 12) /* AVERAGE_WIDTH field */
14228 average_width = atoi (p);
14229 }
14230
14231 if (allow_scalable_fonts_p
14232 || dashes < 14 || average_width != 0)
14233 {
14234 tem = build_string (names[i]);
14235 if (NILP (Fassoc (tem, list)))
14236 {
14237 if (STRINGP (Vx_pixel_size_width_font_regexp)
14238 && ((fast_c_string_match_ignore_case
14239 (Vx_pixel_size_width_font_regexp, names[i]))
14240 >= 0))
14241 /* We can set the value of PIXEL_SIZE to the
14242 width of this font. */
14243 list = Fcons (Fcons (tem, make_number (width)), list);
14244 else
14245 /* For the moment, width is not known. */
14246 list = Fcons (Fcons (tem, Qnil), list);
14247 }
14248 }
14249 }
14250
14251 if (!try_XLoadQueryFont)
14252 {
14253 BLOCK_INPUT;
14254 XFreeFontNames (names);
14255 UNBLOCK_INPUT;
14256 }
14257 }
14258
14259 /* Now store the result in the cache. */
14260 XSETCDR (dpyinfo->name_list_element,
14261 Fcons (Fcons (key, list), XCDR (dpyinfo->name_list_element)));
14262
14263 label_cached:
14264 if (NILP (list)) continue; /* Try the remaining alternatives. */
14265
14266 newlist = second_best = Qnil;
14267 /* Make a list of the fonts that have the right width. */
14268 for (; CONSP (list); list = XCDR (list))
14269 {
14270 int found_size;
14271
14272 tem = XCAR (list);
14273
14274 if (!CONSP (tem) || NILP (XCAR (tem)))
14275 continue;
14276 if (!size)
14277 {
14278 newlist = Fcons (XCAR (tem), newlist);
14279 continue;
14280 }
14281
14282 if (!INTEGERP (XCDR (tem)))
14283 {
14284 /* Since we have not yet known the size of this font, we
14285 must try slow function call XLoadQueryFont. */
14286 XFontStruct *thisinfo;
14287
14288 BLOCK_INPUT;
14289 count = x_catch_errors (dpy);
14290 thisinfo = XLoadQueryFont (dpy,
14291 SDATA (XCAR (tem)));
14292 if (x_had_errors_p (dpy))
14293 {
14294 /* This error is perhaps due to insufficient memory on X
14295 server. Let's just ignore it. */
14296 thisinfo = NULL;
14297 x_clear_errors (dpy);
14298 }
14299 x_uncatch_errors (dpy, count);
14300 UNBLOCK_INPUT;
14301
14302 if (thisinfo)
14303 {
14304 XSETCDR (tem,
14305 (thisinfo->min_bounds.width == 0
14306 ? make_number (0)
14307 : make_number (thisinfo->max_bounds.width)));
14308 BLOCK_INPUT;
14309 XFreeFont (dpy, thisinfo);
14310 UNBLOCK_INPUT;
14311 }
14312 else
14313 /* For unknown reason, the previous call of XListFont had
14314 returned a font which can't be opened. Record the size
14315 as 0 not to try to open it again. */
14316 XSETCDR (tem, make_number (0));
14317 }
14318
14319 found_size = XINT (XCDR (tem));
14320 if (found_size == size)
14321 newlist = Fcons (XCAR (tem), newlist);
14322 else if (found_size > 0)
14323 {
14324 if (NILP (second_best))
14325 second_best = tem;
14326 else if (found_size < size)
14327 {
14328 if (XINT (XCDR (second_best)) > size
14329 || XINT (XCDR (second_best)) < found_size)
14330 second_best = tem;
14331 }
14332 else
14333 {
14334 if (XINT (XCDR (second_best)) > size
14335 && XINT (XCDR (second_best)) > found_size)
14336 second_best = tem;
14337 }
14338 }
14339 }
14340 if (!NILP (newlist))
14341 break;
14342 else if (!NILP (second_best))
14343 {
14344 newlist = Fcons (XCAR (second_best), Qnil);
14345 break;
14346 }
14347 }
14348
14349 return newlist;
14350 }
14351
14352
14353 #if GLYPH_DEBUG
14354
14355 /* Check that FONT is valid on frame F. It is if it can be found in F's
14356 font table. */
14357
14358 static void
14359 x_check_font (f, font)
14360 struct frame *f;
14361 XFontStruct *font;
14362 {
14363 int i;
14364 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
14365
14366 xassert (font != NULL);
14367
14368 for (i = 0; i < dpyinfo->n_fonts; i++)
14369 if (dpyinfo->font_table[i].name
14370 && font == dpyinfo->font_table[i].font)
14371 break;
14372
14373 xassert (i < dpyinfo->n_fonts);
14374 }
14375
14376 #endif /* GLYPH_DEBUG != 0 */
14377
14378 /* Set *W to the minimum width, *H to the minimum font height of FONT.
14379 Note: There are (broken) X fonts out there with invalid XFontStruct
14380 min_bounds contents. For example, handa@etl.go.jp reports that
14381 "-adobe-courier-medium-r-normal--*-180-*-*-m-*-iso8859-1" fonts
14382 have font->min_bounds.width == 0. */
14383
14384 static INLINE void
14385 x_font_min_bounds (font, w, h)
14386 XFontStruct *font;
14387 int *w, *h;
14388 {
14389 *h = FONT_HEIGHT (font);
14390 *w = font->min_bounds.width;
14391
14392 /* Try to handle the case where FONT->min_bounds has invalid
14393 contents. Since the only font known to have invalid min_bounds
14394 is fixed-width, use max_bounds if min_bounds seems to be invalid. */
14395 if (*w <= 0)
14396 *w = font->max_bounds.width;
14397 }
14398
14399
14400 /* Compute the smallest character width and smallest font height over
14401 all fonts available on frame F. Set the members smallest_char_width
14402 and smallest_font_height in F's x_display_info structure to
14403 the values computed. Value is non-zero if smallest_font_height or
14404 smallest_char_width become smaller than they were before. */
14405
14406 static int
14407 x_compute_min_glyph_bounds (f)
14408 struct frame *f;
14409 {
14410 int i;
14411 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
14412 XFontStruct *font;
14413 int old_width = dpyinfo->smallest_char_width;
14414 int old_height = dpyinfo->smallest_font_height;
14415
14416 dpyinfo->smallest_font_height = 100000;
14417 dpyinfo->smallest_char_width = 100000;
14418
14419 for (i = 0; i < dpyinfo->n_fonts; ++i)
14420 if (dpyinfo->font_table[i].name)
14421 {
14422 struct font_info *fontp = dpyinfo->font_table + i;
14423 int w, h;
14424
14425 font = (XFontStruct *) fontp->font;
14426 xassert (font != (XFontStruct *) ~0);
14427 x_font_min_bounds (font, &w, &h);
14428
14429 dpyinfo->smallest_font_height = min (dpyinfo->smallest_font_height, h);
14430 dpyinfo->smallest_char_width = min (dpyinfo->smallest_char_width, w);
14431 }
14432
14433 xassert (dpyinfo->smallest_char_width > 0
14434 && dpyinfo->smallest_font_height > 0);
14435
14436 return (dpyinfo->n_fonts == 1
14437 || dpyinfo->smallest_char_width < old_width
14438 || dpyinfo->smallest_font_height < old_height);
14439 }
14440
14441
14442 /* Load font named FONTNAME of the size SIZE for frame F, and return a
14443 pointer to the structure font_info while allocating it dynamically.
14444 If SIZE is 0, load any size of font.
14445 If loading is failed, return NULL. */
14446
14447 struct font_info *
14448 x_load_font (f, fontname, size)
14449 struct frame *f;
14450 register char *fontname;
14451 int size;
14452 {
14453 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
14454 Lisp_Object font_names;
14455 int count;
14456
14457 /* Get a list of all the fonts that match this name. Once we
14458 have a list of matching fonts, we compare them against the fonts
14459 we already have by comparing names. */
14460 font_names = x_list_fonts (f, build_string (fontname), size, 1);
14461
14462 if (!NILP (font_names))
14463 {
14464 Lisp_Object tail;
14465 int i;
14466
14467 for (i = 0; i < dpyinfo->n_fonts; i++)
14468 for (tail = font_names; CONSP (tail); tail = XCDR (tail))
14469 if (dpyinfo->font_table[i].name
14470 && (!strcmp (dpyinfo->font_table[i].name,
14471 SDATA (XCAR (tail)))
14472 || !strcmp (dpyinfo->font_table[i].full_name,
14473 SDATA (XCAR (tail)))))
14474 return (dpyinfo->font_table + i);
14475 }
14476
14477 /* Load the font and add it to the table. */
14478 {
14479 char *full_name;
14480 XFontStruct *font;
14481 struct font_info *fontp;
14482 unsigned long value;
14483 int i;
14484
14485 /* If we have found fonts by x_list_font, load one of them. If
14486 not, we still try to load a font by the name given as FONTNAME
14487 because XListFonts (called in x_list_font) of some X server has
14488 a bug of not finding a font even if the font surely exists and
14489 is loadable by XLoadQueryFont. */
14490 if (size > 0 && !NILP (font_names))
14491 fontname = (char *) SDATA (XCAR (font_names));
14492
14493 BLOCK_INPUT;
14494 count = x_catch_errors (FRAME_X_DISPLAY (f));
14495 font = (XFontStruct *) XLoadQueryFont (FRAME_X_DISPLAY (f), fontname);
14496 if (x_had_errors_p (FRAME_X_DISPLAY (f)))
14497 {
14498 /* This error is perhaps due to insufficient memory on X
14499 server. Let's just ignore it. */
14500 font = NULL;
14501 x_clear_errors (FRAME_X_DISPLAY (f));
14502 }
14503 x_uncatch_errors (FRAME_X_DISPLAY (f), count);
14504 UNBLOCK_INPUT;
14505 if (!font)
14506 return NULL;
14507
14508 /* Find a free slot in the font table. */
14509 for (i = 0; i < dpyinfo->n_fonts; ++i)
14510 if (dpyinfo->font_table[i].name == NULL)
14511 break;
14512
14513 /* If no free slot found, maybe enlarge the font table. */
14514 if (i == dpyinfo->n_fonts
14515 && dpyinfo->n_fonts == dpyinfo->font_table_size)
14516 {
14517 int sz;
14518 dpyinfo->font_table_size = max (16, 2 * dpyinfo->font_table_size);
14519 sz = dpyinfo->font_table_size * sizeof *dpyinfo->font_table;
14520 dpyinfo->font_table
14521 = (struct font_info *) xrealloc (dpyinfo->font_table, sz);
14522 }
14523
14524 fontp = dpyinfo->font_table + i;
14525 if (i == dpyinfo->n_fonts)
14526 ++dpyinfo->n_fonts;
14527
14528 /* Now fill in the slots of *FONTP. */
14529 BLOCK_INPUT;
14530 fontp->font = font;
14531 fontp->font_idx = i;
14532 fontp->name = (char *) xmalloc (strlen (fontname) + 1);
14533 bcopy (fontname, fontp->name, strlen (fontname) + 1);
14534
14535 /* Try to get the full name of FONT. Put it in FULL_NAME. */
14536 full_name = 0;
14537 if (XGetFontProperty (font, XA_FONT, &value))
14538 {
14539 char *name = (char *) XGetAtomName (FRAME_X_DISPLAY (f), (Atom) value);
14540 char *p = name;
14541 int dashes = 0;
14542
14543 /* Count the number of dashes in the "full name".
14544 If it is too few, this isn't really the font's full name,
14545 so don't use it.
14546 In X11R4, the fonts did not come with their canonical names
14547 stored in them. */
14548 while (*p)
14549 {
14550 if (*p == '-')
14551 dashes++;
14552 p++;
14553 }
14554
14555 if (dashes >= 13)
14556 {
14557 full_name = (char *) xmalloc (p - name + 1);
14558 bcopy (name, full_name, p - name + 1);
14559 }
14560
14561 XFree (name);
14562 }
14563
14564 if (full_name != 0)
14565 fontp->full_name = full_name;
14566 else
14567 fontp->full_name = fontp->name;
14568
14569 fontp->size = font->max_bounds.width;
14570 fontp->height = FONT_HEIGHT (font);
14571
14572 if (NILP (font_names))
14573 {
14574 /* We come here because of a bug of XListFonts mentioned at
14575 the head of this block. Let's store this information in
14576 the cache for x_list_fonts. */
14577 Lisp_Object lispy_name = build_string (fontname);
14578 Lisp_Object lispy_full_name = build_string (fontp->full_name);
14579 Lisp_Object key = Fcons (Fcons (lispy_name, make_number (256)),
14580 Qnil);
14581
14582 XSETCDR (dpyinfo->name_list_element,
14583 Fcons (Fcons (key,
14584 Fcons (Fcons (lispy_full_name,
14585 make_number (fontp->size)),
14586 Qnil)),
14587 XCDR (dpyinfo->name_list_element)));
14588 if (full_name)
14589 {
14590 key = Fcons (Fcons (lispy_full_name, make_number (256)),
14591 Qnil);
14592 XSETCDR (dpyinfo->name_list_element,
14593 Fcons (Fcons (key,
14594 Fcons (Fcons (lispy_full_name,
14595 make_number (fontp->size)),
14596 Qnil)),
14597 XCDR (dpyinfo->name_list_element)));
14598 }
14599 }
14600
14601 /* The slot `encoding' specifies how to map a character
14602 code-points (0x20..0x7F or 0x2020..0x7F7F) of each charset to
14603 the font code-points (0:0x20..0x7F, 1:0xA0..0xFF), or
14604 (0:0x2020..0x7F7F, 1:0xA0A0..0xFFFF, 3:0x20A0..0x7FFF,
14605 2:0xA020..0xFF7F). For the moment, we don't know which charset
14606 uses this font. So, we set information in fontp->encoding[1]
14607 which is never used by any charset. If mapping can't be
14608 decided, set FONT_ENCODING_NOT_DECIDED. */
14609 fontp->encoding[1]
14610 = (font->max_byte1 == 0
14611 /* 1-byte font */
14612 ? (font->min_char_or_byte2 < 0x80
14613 ? (font->max_char_or_byte2 < 0x80
14614 ? 0 /* 0x20..0x7F */
14615 : FONT_ENCODING_NOT_DECIDED) /* 0x20..0xFF */
14616 : 1) /* 0xA0..0xFF */
14617 /* 2-byte font */
14618 : (font->min_byte1 < 0x80
14619 ? (font->max_byte1 < 0x80
14620 ? (font->min_char_or_byte2 < 0x80
14621 ? (font->max_char_or_byte2 < 0x80
14622 ? 0 /* 0x2020..0x7F7F */
14623 : FONT_ENCODING_NOT_DECIDED) /* 0x2020..0x7FFF */
14624 : 3) /* 0x20A0..0x7FFF */
14625 : FONT_ENCODING_NOT_DECIDED) /* 0x20??..0xA0?? */
14626 : (font->min_char_or_byte2 < 0x80
14627 ? (font->max_char_or_byte2 < 0x80
14628 ? 2 /* 0xA020..0xFF7F */
14629 : FONT_ENCODING_NOT_DECIDED) /* 0xA020..0xFFFF */
14630 : 1))); /* 0xA0A0..0xFFFF */
14631
14632 fontp->baseline_offset
14633 = (XGetFontProperty (font, dpyinfo->Xatom_MULE_BASELINE_OFFSET, &value)
14634 ? (long) value : 0);
14635 fontp->relative_compose
14636 = (XGetFontProperty (font, dpyinfo->Xatom_MULE_RELATIVE_COMPOSE, &value)
14637 ? (long) value : 0);
14638 fontp->default_ascent
14639 = (XGetFontProperty (font, dpyinfo->Xatom_MULE_DEFAULT_ASCENT, &value)
14640 ? (long) value : 0);
14641
14642 /* Set global flag fonts_changed_p to non-zero if the font loaded
14643 has a character with a smaller width than any other character
14644 before, or if the font loaded has a smaller height than any
14645 other font loaded before. If this happens, it will make a
14646 glyph matrix reallocation necessary. */
14647 fonts_changed_p |= x_compute_min_glyph_bounds (f);
14648 UNBLOCK_INPUT;
14649 return fontp;
14650 }
14651 }
14652
14653
14654 /* Return a pointer to struct font_info of a font named FONTNAME for
14655 frame F. If no such font is loaded, return NULL. */
14656
14657 struct font_info *
14658 x_query_font (f, fontname)
14659 struct frame *f;
14660 register char *fontname;
14661 {
14662 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
14663 int i;
14664
14665 for (i = 0; i < dpyinfo->n_fonts; i++)
14666 if (dpyinfo->font_table[i].name
14667 && (!strcmp (dpyinfo->font_table[i].name, fontname)
14668 || !strcmp (dpyinfo->font_table[i].full_name, fontname)))
14669 return (dpyinfo->font_table + i);
14670 return NULL;
14671 }
14672
14673
14674 /* Find a CCL program for a font specified by FONTP, and set the member
14675 `encoder' of the structure. */
14676
14677 void
14678 x_find_ccl_program (fontp)
14679 struct font_info *fontp;
14680 {
14681 Lisp_Object list, elt;
14682
14683 elt = Qnil;
14684 for (list = Vfont_ccl_encoder_alist; CONSP (list); list = XCDR (list))
14685 {
14686 elt = XCAR (list);
14687 if (CONSP (elt)
14688 && STRINGP (XCAR (elt))
14689 && ((fast_c_string_match_ignore_case (XCAR (elt), fontp->name)
14690 >= 0)
14691 || (fast_c_string_match_ignore_case (XCAR (elt), fontp->full_name)
14692 >= 0)))
14693 break;
14694 }
14695
14696 if (! NILP (list))
14697 {
14698 struct ccl_program *ccl
14699 = (struct ccl_program *) xmalloc (sizeof (struct ccl_program));
14700
14701 if (setup_ccl_program (ccl, XCDR (elt)) < 0)
14702 xfree (ccl);
14703 else
14704 fontp->font_encoder = ccl;
14705 }
14706 }
14707
14708
14709 \f
14710 /***********************************************************************
14711 Initialization
14712 ***********************************************************************/
14713
14714 #ifdef USE_X_TOOLKIT
14715 static XrmOptionDescRec emacs_options[] = {
14716 {"-geometry", ".geometry", XrmoptionSepArg, NULL},
14717 {"-iconic", ".iconic", XrmoptionNoArg, (XtPointer) "yes"},
14718
14719 {"-internal-border-width", "*EmacsScreen.internalBorderWidth",
14720 XrmoptionSepArg, NULL},
14721 {"-ib", "*EmacsScreen.internalBorderWidth", XrmoptionSepArg, NULL},
14722
14723 {"-T", "*EmacsShell.title", XrmoptionSepArg, (XtPointer) NULL},
14724 {"-wn", "*EmacsShell.title", XrmoptionSepArg, (XtPointer) NULL},
14725 {"-title", "*EmacsShell.title", XrmoptionSepArg, (XtPointer) NULL},
14726 {"-iconname", "*EmacsShell.iconName", XrmoptionSepArg, (XtPointer) NULL},
14727 {"-in", "*EmacsShell.iconName", XrmoptionSepArg, (XtPointer) NULL},
14728 {"-mc", "*pointerColor", XrmoptionSepArg, (XtPointer) NULL},
14729 {"-cr", "*cursorColor", XrmoptionSepArg, (XtPointer) NULL}
14730 };
14731 #endif /* USE_X_TOOLKIT */
14732
14733 static int x_initialized;
14734
14735 #ifdef MULTI_KBOARD
14736 /* Test whether two display-name strings agree up to the dot that separates
14737 the screen number from the server number. */
14738 static int
14739 same_x_server (name1, name2)
14740 const char *name1, *name2;
14741 {
14742 int seen_colon = 0;
14743 const unsigned char *system_name = SDATA (Vsystem_name);
14744 int system_name_length = strlen (system_name);
14745 int length_until_period = 0;
14746
14747 while (system_name[length_until_period] != 0
14748 && system_name[length_until_period] != '.')
14749 length_until_period++;
14750
14751 /* Treat `unix' like an empty host name. */
14752 if (! strncmp (name1, "unix:", 5))
14753 name1 += 4;
14754 if (! strncmp (name2, "unix:", 5))
14755 name2 += 4;
14756 /* Treat this host's name like an empty host name. */
14757 if (! strncmp (name1, system_name, system_name_length)
14758 && name1[system_name_length] == ':')
14759 name1 += system_name_length;
14760 if (! strncmp (name2, system_name, system_name_length)
14761 && name2[system_name_length] == ':')
14762 name2 += system_name_length;
14763 /* Treat this host's domainless name like an empty host name. */
14764 if (! strncmp (name1, system_name, length_until_period)
14765 && name1[length_until_period] == ':')
14766 name1 += length_until_period;
14767 if (! strncmp (name2, system_name, length_until_period)
14768 && name2[length_until_period] == ':')
14769 name2 += length_until_period;
14770
14771 for (; *name1 != '\0' && *name1 == *name2; name1++, name2++)
14772 {
14773 if (*name1 == ':')
14774 seen_colon++;
14775 if (seen_colon && *name1 == '.')
14776 return 1;
14777 }
14778 return (seen_colon
14779 && (*name1 == '.' || *name1 == '\0')
14780 && (*name2 == '.' || *name2 == '\0'));
14781 }
14782 #endif
14783
14784 struct x_display_info *
14785 x_term_init (display_name, xrm_option, resource_name)
14786 Lisp_Object display_name;
14787 char *xrm_option;
14788 char *resource_name;
14789 {
14790 int connection;
14791 Display *dpy;
14792 struct x_display_info *dpyinfo;
14793 XrmDatabase xrdb;
14794
14795 BLOCK_INPUT;
14796
14797 if (!x_initialized)
14798 {
14799 x_initialize ();
14800 x_initialized = 1;
14801 }
14802
14803 #ifdef USE_X_TOOLKIT
14804 /* weiner@footloose.sps.mot.com reports that this causes
14805 errors with X11R5:
14806 X protocol error: BadAtom (invalid Atom parameter)
14807 on protocol request 18skiloaf.
14808 So let's not use it until R6. */
14809 #ifdef HAVE_X11XTR6
14810 XtSetLanguageProc (NULL, NULL, NULL);
14811 #endif
14812
14813 {
14814 int argc = 0;
14815 char *argv[3];
14816
14817 argv[0] = "";
14818 argc = 1;
14819 if (xrm_option)
14820 {
14821 argv[argc++] = "-xrm";
14822 argv[argc++] = xrm_option;
14823 }
14824 stop_polling ();
14825 dpy = XtOpenDisplay (Xt_app_con, SDATA (display_name),
14826 resource_name, EMACS_CLASS,
14827 emacs_options, XtNumber (emacs_options),
14828 &argc, argv);
14829 start_polling ();
14830
14831 #ifdef HAVE_X11XTR6
14832 /* I think this is to compensate for XtSetLanguageProc. */
14833 fixup_locale ();
14834 #endif
14835 }
14836
14837 #else /* not USE_X_TOOLKIT */
14838 #ifdef HAVE_X11R5
14839 XSetLocaleModifiers ("");
14840 #endif
14841 dpy = XOpenDisplay (SDATA (display_name));
14842 #endif /* not USE_X_TOOLKIT */
14843
14844 /* Detect failure. */
14845 if (dpy == 0)
14846 {
14847 UNBLOCK_INPUT;
14848 return 0;
14849 }
14850
14851 /* We have definitely succeeded. Record the new connection. */
14852
14853 dpyinfo = (struct x_display_info *) xmalloc (sizeof (struct x_display_info));
14854 bzero (dpyinfo, sizeof *dpyinfo);
14855
14856 #ifdef MULTI_KBOARD
14857 {
14858 struct x_display_info *share;
14859 Lisp_Object tail;
14860
14861 for (share = x_display_list, tail = x_display_name_list; share;
14862 share = share->next, tail = XCDR (tail))
14863 if (same_x_server (SDATA (XCAR (XCAR (tail))),
14864 SDATA (display_name)))
14865 break;
14866 if (share)
14867 dpyinfo->kboard = share->kboard;
14868 else
14869 {
14870 dpyinfo->kboard = (KBOARD *) xmalloc (sizeof (KBOARD));
14871 init_kboard (dpyinfo->kboard);
14872 if (!EQ (XSYMBOL (Qvendor_specific_keysyms)->function, Qunbound))
14873 {
14874 char *vendor = ServerVendor (dpy);
14875 UNBLOCK_INPUT;
14876 dpyinfo->kboard->Vsystem_key_alist
14877 = call1 (Qvendor_specific_keysyms,
14878 build_string (vendor ? vendor : ""));
14879 BLOCK_INPUT;
14880 }
14881
14882 dpyinfo->kboard->next_kboard = all_kboards;
14883 all_kboards = dpyinfo->kboard;
14884 /* Don't let the initial kboard remain current longer than necessary.
14885 That would cause problems if a file loaded on startup tries to
14886 prompt in the mini-buffer. */
14887 if (current_kboard == initial_kboard)
14888 current_kboard = dpyinfo->kboard;
14889 }
14890 dpyinfo->kboard->reference_count++;
14891 }
14892 #endif
14893
14894 /* Put this display on the chain. */
14895 dpyinfo->next = x_display_list;
14896 x_display_list = dpyinfo;
14897
14898 /* Put it on x_display_name_list as well, to keep them parallel. */
14899 x_display_name_list = Fcons (Fcons (display_name, Qnil),
14900 x_display_name_list);
14901 dpyinfo->name_list_element = XCAR (x_display_name_list);
14902
14903 dpyinfo->display = dpy;
14904
14905 #if 0
14906 XSetAfterFunction (x_current_display, x_trace_wire);
14907 #endif /* ! 0 */
14908
14909 dpyinfo->x_id_name
14910 = (char *) xmalloc (SBYTES (Vinvocation_name)
14911 + SBYTES (Vsystem_name)
14912 + 2);
14913 sprintf (dpyinfo->x_id_name, "%s@%s",
14914 SDATA (Vinvocation_name), SDATA (Vsystem_name));
14915
14916 /* Figure out which modifier bits mean what. */
14917 x_find_modifier_meanings (dpyinfo);
14918
14919 /* Get the scroll bar cursor. */
14920 dpyinfo->vertical_scroll_bar_cursor
14921 = XCreateFontCursor (dpyinfo->display, XC_sb_v_double_arrow);
14922
14923 xrdb = x_load_resources (dpyinfo->display, xrm_option,
14924 resource_name, EMACS_CLASS);
14925 #ifdef HAVE_XRMSETDATABASE
14926 XrmSetDatabase (dpyinfo->display, xrdb);
14927 #else
14928 dpyinfo->display->db = xrdb;
14929 #endif
14930 /* Put the rdb where we can find it in a way that works on
14931 all versions. */
14932 dpyinfo->xrdb = xrdb;
14933
14934 dpyinfo->screen = ScreenOfDisplay (dpyinfo->display,
14935 DefaultScreen (dpyinfo->display));
14936 select_visual (dpyinfo);
14937 dpyinfo->cmap = DefaultColormapOfScreen (dpyinfo->screen);
14938 dpyinfo->height = HeightOfScreen (dpyinfo->screen);
14939 dpyinfo->width = WidthOfScreen (dpyinfo->screen);
14940 dpyinfo->root_window = RootWindowOfScreen (dpyinfo->screen);
14941 dpyinfo->grabbed = 0;
14942 dpyinfo->reference_count = 0;
14943 dpyinfo->icon_bitmap_id = -1;
14944 dpyinfo->font_table = NULL;
14945 dpyinfo->n_fonts = 0;
14946 dpyinfo->font_table_size = 0;
14947 dpyinfo->bitmaps = 0;
14948 dpyinfo->bitmaps_size = 0;
14949 dpyinfo->bitmaps_last = 0;
14950 dpyinfo->scratch_cursor_gc = 0;
14951 dpyinfo->mouse_face_mouse_frame = 0;
14952 dpyinfo->mouse_face_deferred_gc = 0;
14953 dpyinfo->mouse_face_beg_row = dpyinfo->mouse_face_beg_col = -1;
14954 dpyinfo->mouse_face_end_row = dpyinfo->mouse_face_end_col = -1;
14955 dpyinfo->mouse_face_face_id = DEFAULT_FACE_ID;
14956 dpyinfo->mouse_face_window = Qnil;
14957 dpyinfo->mouse_face_overlay = Qnil;
14958 dpyinfo->mouse_face_mouse_x = dpyinfo->mouse_face_mouse_y = 0;
14959 dpyinfo->mouse_face_defer = 0;
14960 dpyinfo->mouse_face_hidden = 0;
14961 dpyinfo->x_focus_frame = 0;
14962 dpyinfo->x_focus_event_frame = 0;
14963 dpyinfo->x_highlight_frame = 0;
14964 dpyinfo->image_cache = make_image_cache ();
14965
14966 /* See if a private colormap is requested. */
14967 if (dpyinfo->visual == DefaultVisualOfScreen (dpyinfo->screen))
14968 {
14969 if (dpyinfo->visual->class == PseudoColor)
14970 {
14971 Lisp_Object value;
14972 value = display_x_get_resource (dpyinfo,
14973 build_string ("privateColormap"),
14974 build_string ("PrivateColormap"),
14975 Qnil, Qnil);
14976 if (STRINGP (value)
14977 && (!strcmp (SDATA (value), "true")
14978 || !strcmp (SDATA (value), "on")))
14979 dpyinfo->cmap = XCopyColormapAndFree (dpyinfo->display, dpyinfo->cmap);
14980 }
14981 }
14982 else
14983 dpyinfo->cmap = XCreateColormap (dpyinfo->display, dpyinfo->root_window,
14984 dpyinfo->visual, AllocNone);
14985
14986 {
14987 int screen_number = XScreenNumberOfScreen (dpyinfo->screen);
14988 double pixels = DisplayHeight (dpyinfo->display, screen_number);
14989 double mm = DisplayHeightMM (dpyinfo->display, screen_number);
14990 dpyinfo->resy = pixels * 25.4 / mm;
14991 pixels = DisplayWidth (dpyinfo->display, screen_number);
14992 mm = DisplayWidthMM (dpyinfo->display, screen_number);
14993 dpyinfo->resx = pixels * 25.4 / mm;
14994 }
14995
14996 dpyinfo->Xatom_wm_protocols
14997 = XInternAtom (dpyinfo->display, "WM_PROTOCOLS", False);
14998 dpyinfo->Xatom_wm_take_focus
14999 = XInternAtom (dpyinfo->display, "WM_TAKE_FOCUS", False);
15000 dpyinfo->Xatom_wm_save_yourself
15001 = XInternAtom (dpyinfo->display, "WM_SAVE_YOURSELF", False);
15002 dpyinfo->Xatom_wm_delete_window
15003 = XInternAtom (dpyinfo->display, "WM_DELETE_WINDOW", False);
15004 dpyinfo->Xatom_wm_change_state
15005 = XInternAtom (dpyinfo->display, "WM_CHANGE_STATE", False);
15006 dpyinfo->Xatom_wm_configure_denied
15007 = XInternAtom (dpyinfo->display, "WM_CONFIGURE_DENIED", False);
15008 dpyinfo->Xatom_wm_window_moved
15009 = XInternAtom (dpyinfo->display, "WM_MOVED", False);
15010 dpyinfo->Xatom_editres
15011 = XInternAtom (dpyinfo->display, "Editres", False);
15012 dpyinfo->Xatom_CLIPBOARD
15013 = XInternAtom (dpyinfo->display, "CLIPBOARD", False);
15014 dpyinfo->Xatom_TIMESTAMP
15015 = XInternAtom (dpyinfo->display, "TIMESTAMP", False);
15016 dpyinfo->Xatom_TEXT
15017 = XInternAtom (dpyinfo->display, "TEXT", False);
15018 dpyinfo->Xatom_COMPOUND_TEXT
15019 = XInternAtom (dpyinfo->display, "COMPOUND_TEXT", False);
15020 dpyinfo->Xatom_UTF8_STRING
15021 = XInternAtom (dpyinfo->display, "UTF8_STRING", False);
15022 dpyinfo->Xatom_DELETE
15023 = XInternAtom (dpyinfo->display, "DELETE", False);
15024 dpyinfo->Xatom_MULTIPLE
15025 = XInternAtom (dpyinfo->display, "MULTIPLE", False);
15026 dpyinfo->Xatom_INCR
15027 = XInternAtom (dpyinfo->display, "INCR", False);
15028 dpyinfo->Xatom_EMACS_TMP
15029 = XInternAtom (dpyinfo->display, "_EMACS_TMP_", False);
15030 dpyinfo->Xatom_TARGETS
15031 = XInternAtom (dpyinfo->display, "TARGETS", False);
15032 dpyinfo->Xatom_NULL
15033 = XInternAtom (dpyinfo->display, "NULL", False);
15034 dpyinfo->Xatom_ATOM_PAIR
15035 = XInternAtom (dpyinfo->display, "ATOM_PAIR", False);
15036 /* For properties of font. */
15037 dpyinfo->Xatom_PIXEL_SIZE
15038 = XInternAtom (dpyinfo->display, "PIXEL_SIZE", False);
15039 dpyinfo->Xatom_MULE_BASELINE_OFFSET
15040 = XInternAtom (dpyinfo->display, "_MULE_BASELINE_OFFSET", False);
15041 dpyinfo->Xatom_MULE_RELATIVE_COMPOSE
15042 = XInternAtom (dpyinfo->display, "_MULE_RELATIVE_COMPOSE", False);
15043 dpyinfo->Xatom_MULE_DEFAULT_ASCENT
15044 = XInternAtom (dpyinfo->display, "_MULE_DEFAULT_ASCENT", False);
15045
15046 /* Ghostscript support. */
15047 dpyinfo->Xatom_PAGE = XInternAtom (dpyinfo->display, "PAGE", False);
15048 dpyinfo->Xatom_DONE = XInternAtom (dpyinfo->display, "DONE", False);
15049
15050 dpyinfo->Xatom_Scrollbar = XInternAtom (dpyinfo->display, "SCROLLBAR",
15051 False);
15052
15053 dpyinfo->cut_buffers_initialized = 0;
15054
15055 connection = ConnectionNumber (dpyinfo->display);
15056 dpyinfo->connection = connection;
15057
15058 {
15059 char null_bits[1];
15060
15061 null_bits[0] = 0x00;
15062
15063 dpyinfo->null_pixel
15064 = XCreatePixmapFromBitmapData (dpyinfo->display, dpyinfo->root_window,
15065 null_bits, 1, 1, (long) 0, (long) 0,
15066 1);
15067 }
15068
15069 {
15070 extern int gray_bitmap_width, gray_bitmap_height;
15071 extern char *gray_bitmap_bits;
15072 dpyinfo->gray
15073 = XCreatePixmapFromBitmapData (dpyinfo->display, dpyinfo->root_window,
15074 gray_bitmap_bits,
15075 gray_bitmap_width, gray_bitmap_height,
15076 (unsigned long) 1, (unsigned long) 0, 1);
15077 }
15078
15079 #ifdef HAVE_X_I18N
15080 xim_initialize (dpyinfo, resource_name);
15081 #endif
15082
15083 #ifdef subprocesses
15084 /* This is only needed for distinguishing keyboard and process input. */
15085 if (connection != 0)
15086 add_keyboard_wait_descriptor (connection);
15087 #endif
15088
15089 #ifndef F_SETOWN_BUG
15090 #ifdef F_SETOWN
15091 #ifdef F_SETOWN_SOCK_NEG
15092 /* stdin is a socket here */
15093 fcntl (connection, F_SETOWN, -getpid ());
15094 #else /* ! defined (F_SETOWN_SOCK_NEG) */
15095 fcntl (connection, F_SETOWN, getpid ());
15096 #endif /* ! defined (F_SETOWN_SOCK_NEG) */
15097 #endif /* ! defined (F_SETOWN) */
15098 #endif /* F_SETOWN_BUG */
15099
15100 #ifdef SIGIO
15101 if (interrupt_input)
15102 init_sigio (connection);
15103 #endif /* ! defined (SIGIO) */
15104
15105 #ifdef USE_LUCID
15106 #ifdef HAVE_X11R5 /* It seems X11R4 lacks XtCvtStringToFont, and XPointer. */
15107 /* Make sure that we have a valid font for dialog boxes
15108 so that Xt does not crash. */
15109 {
15110 Display *dpy = dpyinfo->display;
15111 XrmValue d, fr, to;
15112 Font font;
15113 int count;
15114
15115 d.addr = (XPointer)&dpy;
15116 d.size = sizeof (Display *);
15117 fr.addr = XtDefaultFont;
15118 fr.size = sizeof (XtDefaultFont);
15119 to.size = sizeof (Font *);
15120 to.addr = (XPointer)&font;
15121 count = x_catch_errors (dpy);
15122 if (!XtCallConverter (dpy, XtCvtStringToFont, &d, 1, &fr, &to, NULL))
15123 abort ();
15124 if (x_had_errors_p (dpy) || !XQueryFont (dpy, font))
15125 XrmPutLineResource (&xrdb, "Emacs.dialog.*.font: 9x15");
15126 x_uncatch_errors (dpy, count);
15127 }
15128 #endif
15129 #endif
15130
15131 /* See if we should run in synchronous mode. This is useful
15132 for debugging X code. */
15133 {
15134 Lisp_Object value;
15135 value = display_x_get_resource (dpyinfo,
15136 build_string ("synchronous"),
15137 build_string ("Synchronous"),
15138 Qnil, Qnil);
15139 if (STRINGP (value)
15140 && (!strcmp (SDATA (value), "true")
15141 || !strcmp (SDATA (value), "on")))
15142 XSynchronize (dpyinfo->display, True);
15143 }
15144
15145 UNBLOCK_INPUT;
15146
15147 return dpyinfo;
15148 }
15149 \f
15150 /* Get rid of display DPYINFO, assuming all frames are already gone,
15151 and without sending any more commands to the X server. */
15152
15153 void
15154 x_delete_display (dpyinfo)
15155 struct x_display_info *dpyinfo;
15156 {
15157 delete_keyboard_wait_descriptor (dpyinfo->connection);
15158
15159 /* Discard this display from x_display_name_list and x_display_list.
15160 We can't use Fdelq because that can quit. */
15161 if (! NILP (x_display_name_list)
15162 && EQ (XCAR (x_display_name_list), dpyinfo->name_list_element))
15163 x_display_name_list = XCDR (x_display_name_list);
15164 else
15165 {
15166 Lisp_Object tail;
15167
15168 tail = x_display_name_list;
15169 while (CONSP (tail) && CONSP (XCDR (tail)))
15170 {
15171 if (EQ (XCAR (XCDR (tail)), dpyinfo->name_list_element))
15172 {
15173 XSETCDR (tail, XCDR (XCDR (tail)));
15174 break;
15175 }
15176 tail = XCDR (tail);
15177 }
15178 }
15179
15180 if (next_noop_dpyinfo == dpyinfo)
15181 next_noop_dpyinfo = dpyinfo->next;
15182
15183 if (x_display_list == dpyinfo)
15184 x_display_list = dpyinfo->next;
15185 else
15186 {
15187 struct x_display_info *tail;
15188
15189 for (tail = x_display_list; tail; tail = tail->next)
15190 if (tail->next == dpyinfo)
15191 tail->next = tail->next->next;
15192 }
15193
15194 #ifndef USE_X_TOOLKIT /* I'm told Xt does this itself. */
15195 #ifndef AIX /* On AIX, XCloseDisplay calls this. */
15196 XrmDestroyDatabase (dpyinfo->xrdb);
15197 #endif
15198 #endif
15199 #ifdef MULTI_KBOARD
15200 if (--dpyinfo->kboard->reference_count == 0)
15201 delete_kboard (dpyinfo->kboard);
15202 #endif
15203 #ifdef HAVE_X_I18N
15204 if (dpyinfo->xim)
15205 xim_close_dpy (dpyinfo);
15206 #endif
15207
15208 xfree (dpyinfo->font_table);
15209 xfree (dpyinfo->x_id_name);
15210 xfree (dpyinfo->color_cells);
15211 xfree (dpyinfo);
15212 }
15213
15214 \f
15215 /* Set up use of X before we make the first connection. */
15216
15217 static struct redisplay_interface x_redisplay_interface =
15218 {
15219 x_produce_glyphs,
15220 x_write_glyphs,
15221 x_insert_glyphs,
15222 x_clear_end_of_line,
15223 x_scroll_run,
15224 x_after_update_window_line,
15225 x_update_window_begin,
15226 x_update_window_end,
15227 XTcursor_to,
15228 x_flush,
15229 x_clear_mouse_face,
15230 x_get_glyph_overhangs,
15231 x_fix_overlapping_area
15232 };
15233
15234 void
15235 x_initialize ()
15236 {
15237 rif = &x_redisplay_interface;
15238
15239 clear_frame_hook = x_clear_frame;
15240 ins_del_lines_hook = x_ins_del_lines;
15241 delete_glyphs_hook = x_delete_glyphs;
15242 ring_bell_hook = XTring_bell;
15243 reset_terminal_modes_hook = XTreset_terminal_modes;
15244 set_terminal_modes_hook = XTset_terminal_modes;
15245 update_begin_hook = x_update_begin;
15246 update_end_hook = x_update_end;
15247 set_terminal_window_hook = XTset_terminal_window;
15248 read_socket_hook = XTread_socket;
15249 frame_up_to_date_hook = XTframe_up_to_date;
15250 mouse_position_hook = XTmouse_position;
15251 frame_rehighlight_hook = XTframe_rehighlight;
15252 frame_raise_lower_hook = XTframe_raise_lower;
15253 set_vertical_scroll_bar_hook = XTset_vertical_scroll_bar;
15254 condemn_scroll_bars_hook = XTcondemn_scroll_bars;
15255 redeem_scroll_bar_hook = XTredeem_scroll_bar;
15256 judge_scroll_bars_hook = XTjudge_scroll_bars;
15257 estimate_mode_line_height_hook = x_estimate_mode_line_height;
15258
15259 scroll_region_ok = 1; /* we'll scroll partial frames */
15260 char_ins_del_ok = 1;
15261 line_ins_del_ok = 1; /* we'll just blt 'em */
15262 fast_clear_end_of_line = 1; /* X does this well */
15263 memory_below_frame = 0; /* we don't remember what scrolls
15264 off the bottom */
15265 baud_rate = 19200;
15266
15267 x_noop_count = 0;
15268 last_tool_bar_item = -1;
15269 any_help_event_p = 0;
15270
15271 /* Try to use interrupt input; if we can't, then start polling. */
15272 Fset_input_mode (Qt, Qnil, Qt, Qnil);
15273
15274 #ifdef USE_X_TOOLKIT
15275 XtToolkitInitialize ();
15276
15277 Xt_app_con = XtCreateApplicationContext ();
15278
15279 /* Register a converter from strings to pixels, which uses
15280 Emacs' color allocation infrastructure. */
15281 XtAppSetTypeConverter (Xt_app_con,
15282 XtRString, XtRPixel, cvt_string_to_pixel,
15283 cvt_string_to_pixel_args,
15284 XtNumber (cvt_string_to_pixel_args),
15285 XtCacheByDisplay, cvt_pixel_dtor);
15286
15287 XtAppSetFallbackResources (Xt_app_con, Xt_default_resources);
15288
15289 /* Install an asynchronous timer that processes Xt timeout events
15290 every 0.1s. This is necessary because some widget sets use
15291 timeouts internally, for example the LessTif menu bar, or the
15292 Xaw3d scroll bar. When Xt timouts aren't processed, these
15293 widgets don't behave normally. */
15294 {
15295 EMACS_TIME interval;
15296 EMACS_SET_SECS_USECS (interval, 0, 100000);
15297 start_atimer (ATIMER_CONTINUOUS, interval, x_process_timeouts, 0);
15298 }
15299 #endif
15300
15301 #ifdef USE_TOOLKIT_SCROLL_BARS
15302 xaw3d_arrow_scroll = False;
15303 xaw3d_pick_top = True;
15304 #endif
15305
15306 /* Note that there is no real way portable across R3/R4 to get the
15307 original error handler. */
15308 XSetErrorHandler (x_error_handler);
15309 XSetIOErrorHandler (x_io_error_quitter);
15310
15311 /* Disable Window Change signals; they are handled by X events. */
15312 #ifdef SIGWINCH
15313 signal (SIGWINCH, SIG_DFL);
15314 #endif /* SIGWINCH */
15315
15316 signal (SIGPIPE, x_connection_signal);
15317
15318 #ifdef HAVE_X_SM
15319 x_session_initialize ();
15320 #endif
15321 }
15322
15323
15324 void
15325 syms_of_xterm ()
15326 {
15327 staticpro (&x_error_message_string);
15328 x_error_message_string = Qnil;
15329
15330 staticpro (&x_display_name_list);
15331 x_display_name_list = Qnil;
15332
15333 staticpro (&last_mouse_scroll_bar);
15334 last_mouse_scroll_bar = Qnil;
15335
15336 staticpro (&Qvendor_specific_keysyms);
15337 Qvendor_specific_keysyms = intern ("vendor-specific-keysyms");
15338
15339 staticpro (&Qutf_8);
15340 Qutf_8 = intern ("utf-8");
15341 staticpro (&Qlatin_1);
15342 Qlatin_1 = intern ("latin-1");
15343
15344 staticpro (&last_mouse_press_frame);
15345 last_mouse_press_frame = Qnil;
15346
15347 help_echo = Qnil;
15348 staticpro (&help_echo);
15349 help_echo_object = Qnil;
15350 staticpro (&help_echo_object);
15351 help_echo_window = Qnil;
15352 staticpro (&help_echo_window);
15353 previous_help_echo = Qnil;
15354 staticpro (&previous_help_echo);
15355 help_echo_pos = -1;
15356
15357 DEFVAR_BOOL ("mouse-autoselect-window", &mouse_autoselect_window,
15358 doc: /* *Non-nil means autoselect window with mouse pointer. */);
15359 mouse_autoselect_window = 0;
15360
15361 DEFVAR_BOOL ("x-stretch-cursor", &x_stretch_cursor_p,
15362 doc: /* *Non-nil means draw block cursor as wide as the glyph under it.
15363 For example, if a block cursor is over a tab, it will be drawn as
15364 wide as that tab on the display. */);
15365 x_stretch_cursor_p = 0;
15366
15367 DEFVAR_BOOL ("x-use-underline-position-properties",
15368 &x_use_underline_position_properties,
15369 doc: /* *Non-nil means make use of UNDERLINE_POSITION font properties.
15370 nil means ignore them. If you encounter fonts with bogus
15371 UNDERLINE_POSITION font properties, for example 7x13 on XFree prior
15372 to 4.1, set this to nil. */);
15373 x_use_underline_position_properties = 1;
15374
15375 DEFVAR_LISP ("x-toolkit-scroll-bars", &Vx_toolkit_scroll_bars,
15376 doc: /* What X toolkit scroll bars Emacs uses.
15377 A value of nil means Emacs doesn't use X toolkit scroll bars.
15378 Otherwise, value is a symbol describing the X toolkit. */);
15379 #ifdef USE_TOOLKIT_SCROLL_BARS
15380 #ifdef USE_MOTIF
15381 Vx_toolkit_scroll_bars = intern ("motif");
15382 #elif defined HAVE_XAW3D
15383 Vx_toolkit_scroll_bars = intern ("xaw3d");
15384 #else
15385 Vx_toolkit_scroll_bars = intern ("xaw");
15386 #endif
15387 #else
15388 Vx_toolkit_scroll_bars = Qnil;
15389 #endif
15390
15391 staticpro (&last_mouse_motion_frame);
15392 last_mouse_motion_frame = Qnil;
15393
15394 Qmodifier_value = intern ("modifier-value");
15395 Qalt = intern ("alt");
15396 Fput (Qalt, Qmodifier_value, make_number (alt_modifier));
15397 Qhyper = intern ("hyper");
15398 Fput (Qhyper, Qmodifier_value, make_number (hyper_modifier));
15399 Qmeta = intern ("meta");
15400 Fput (Qmeta, Qmodifier_value, make_number (meta_modifier));
15401 Qsuper = intern ("super");
15402 Fput (Qsuper, Qmodifier_value, make_number (super_modifier));
15403
15404 DEFVAR_LISP ("x-alt-keysym", &Vx_alt_keysym,
15405 doc: /* Which keys Emacs uses for the alt modifier.
15406 This should be one of the symbols `alt', `hyper', `meta', `super'.
15407 For example, `alt' means use the Alt_L and Alt_R keysyms. The default
15408 is nil, which is the same as `alt'. */);
15409 Vx_alt_keysym = Qnil;
15410
15411 DEFVAR_LISP ("x-hyper-keysym", &Vx_hyper_keysym,
15412 doc: /* Which keys Emacs uses for the hyper modifier.
15413 This should be one of the symbols `alt', `hyper', `meta', `super'.
15414 For example, `hyper' means use the Hyper_L and Hyper_R keysyms. The
15415 default is nil, which is the same as `hyper'. */);
15416 Vx_hyper_keysym = Qnil;
15417
15418 DEFVAR_LISP ("x-meta-keysym", &Vx_meta_keysym,
15419 doc: /* Which keys Emacs uses for the meta modifier.
15420 This should be one of the symbols `alt', `hyper', `meta', `super'.
15421 For example, `meta' means use the Meta_L and Meta_R keysyms. The
15422 default is nil, which is the same as `meta'. */);
15423 Vx_meta_keysym = Qnil;
15424
15425 DEFVAR_LISP ("x-super-keysym", &Vx_super_keysym,
15426 doc: /* Which keys Emacs uses for the super modifier.
15427 This should be one of the symbols `alt', `hyper', `meta', `super'.
15428 For example, `super' means use the Super_L and Super_R keysyms. The
15429 default is nil, which is the same as `super'. */);
15430 Vx_super_keysym = Qnil;
15431
15432 }
15433
15434 #endif /* HAVE_X_WINDOWS */