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.
5 This file is part of GNU Emacs.
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)
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.
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. */
22 /* New display code by Gerd Moellmann <gerd@gnu.org>. */
23 /* Xt features made by Fred Pierresteguy. */
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. */
36 #include "blockinput.h"
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"
42 /* This may include sys/types.h, and that somehow loses
43 if this is not done before the other system files. */
45 #include <X11/cursorfont.h>
47 /* Load sys/types.h if not already loaded.
48 In some systems loading it twice is suicidal. */
50 #include <sys/types.h>
54 #include <sys/ioctl.h>
55 #endif /* ! defined (BSD_SYSTEM) */
60 #ifndef INCLUDED_FCNTL
67 /* Caused redefinition of DBL_DIG on Netbsd; seems not to be needed. */
68 /* #include <sys/param.h> */
74 #include "dispextern.h"
76 #include "termhooks.h"
84 #include "intervals.h"
90 #include <X11/Shell.h>
93 #ifdef HAVE_SYS_TIME_H
101 extern int xlwmenu_window_p (Widget w
, Window window
);
102 extern void xlwmenu_redisplay
P_ ((Widget
));
107 extern void free_frame_menubar
P_ ((struct frame
*));
108 extern struct frame
*x_menubar_window_to_frame
P_ ((struct x_display_info
*,
111 #if (XtSpecificationRelease >= 5) && !defined(NO_EDITRES)
113 extern void _XEditResCheckMessages ();
114 #endif /* not NO_EDITRES */
116 /* Include toolkit specific headers for the scroll bar widget. */
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 */
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 */
134 #define XtNpickTop "pickTop"
135 #endif /* !XtNpickTop */
136 #endif /* !USE_MOTIF */
137 #endif /* USE_TOOLKIT_SCROLL_BARS */
139 #endif /* USE_X_TOOLKIT */
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
148 #ifndef XtNinitialState
149 #define XtNinitialState "initialState"
153 #define abs(x) ((x) < 0 ? -(x) : (x))
155 #define BETWEEN(X, LOWER, UPPER) ((X) >= (LOWER) && (X) < (UPPER))
158 /* Fringe bitmaps. */
160 enum fringe_bitmap_type
163 LEFT_TRUNCATION_BITMAP
,
164 RIGHT_TRUNCATION_BITMAP
,
165 OVERLAY_ARROW_BITMAP
,
166 CONTINUED_LINE_BITMAP
,
167 CONTINUATION_LINE_BITMAP
,
171 /* Bitmap drawn to indicate lines not displaying text if
172 `indicate-empty-lines' is non-nil. */
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};
187 /* An arrow like this: `<-'. */
190 #define left_height 8
191 static unsigned char left_bits
[] = {
192 0x18, 0x0c, 0x06, 0x3f, 0x3f, 0x06, 0x0c, 0x18};
194 /* Right truncation arrow bitmap `->'. */
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};
201 /* Marker for continued lines. */
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};
208 /* Marker for continuation lines. */
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};
215 /* Overlay arrow bitmap. */
221 static unsigned char ov_bits
[] = {
222 0x30, 0x08, 0x3c, 0x7e, 0x7a, 0x7a, 0x62, 0x3c};
224 /* A triangular arrow. */
227 static unsigned char ov_bits
[] = {
228 0x03, 0x0f, 0x1f, 0x3f, 0x3f, 0x1f, 0x0f, 0x03};
232 extern Lisp_Object Qhelp_echo
;
235 /* Non-nil means Emacs uses toolkit scroll bars. */
237 Lisp_Object Vx_toolkit_scroll_bars
;
239 /* If a string, XTread_socket generates an event to display that string.
240 (The display is done in read_char.) */
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
;
247 /* Temporary variable for XTread_socket. */
249 static Lisp_Object previous_help_echo
;
251 /* Non-zero means that a HELP_EVENT has been generated since Emacs
254 static int any_help_event_p
;
256 /* Non-zero means autoselect window with the mouse cursor. */
258 int mouse_autoselect_window
;
260 /* Last window where we saw the mouse. Used by mouse-autoselect-window. */
261 static Lisp_Object last_window
;
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. */
267 int x_stretch_cursor_p
;
269 /* Non-zero means make use of UNDERLINE_POSITION font properties. */
271 int x_use_underline_position_properties
;
273 /* This is a chain of structures for all the X displays currently in
276 struct x_display_info
*x_display_list
;
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. */
283 Lisp_Object x_display_name_list
;
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. */
290 extern struct frame
*updating_frame
;
292 /* This is a frame waiting to be auto-raised, within XTread_socket. */
294 struct frame
*pending_autoraise_frame
;
297 /* The application context for Xt use. */
298 XtAppContext Xt_app_con
;
299 static String Xt_default_resources
[] = {0};
300 #endif /* USE_X_TOOLKIT */
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. */
306 struct cursor_pos output_cursor
;
308 /* Non-zero means user is interacting with a toolkit scroll bar. */
310 static int toolkit_scroll_bar_interaction
;
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.
319 Simply asking for MotionNotify all the time seems to work better.
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
332 /* Where the mouse was last time we reported a mouse event. */
334 FRAME_PTR last_mouse_frame
;
335 static XRectangle last_mouse_glyph
;
336 static Lisp_Object last_mouse_press_frame
;
338 /* The scroll bar in which the last X motion event occurred.
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
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
348 static Lisp_Object last_mouse_scroll_bar
;
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. */
357 static Time last_mouse_movement_time
;
359 /* Incremented by XTread_socket whenever it really tries to read
363 static int volatile input_signal_count
;
365 static int input_signal_count
;
368 /* Used locally within XTread_socket. */
370 static int x_noop_count
;
372 /* Initial values of argv and argc. */
374 extern char **initial_argv
;
375 extern int initial_argc
;
377 extern Lisp_Object Vcommand_line_args
, Vsystem_name
;
379 /* Tells if a window manager is present or not. */
381 extern Lisp_Object Vx_no_window_manager
;
383 extern Lisp_Object Qface
, Qmouse_face
;
387 /* A mask of extra modifier bits to put into every keyboard char. */
389 extern EMACS_INT extra_keyboard_modifiers
;
391 /* The keysyms to use for the various modifiers. */
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
;
396 static Lisp_Object Qvendor_specific_keysyms
;
397 static Lisp_Object Qlatin_1
, Qutf_8
;
399 extern XrmDatabase x_load_resources
P_ ((Display
*, char *, char *, char *));
400 extern Lisp_Object x_icon_type
P_ ((struct frame
*));
403 /* Enumeration for overriding/changing the face to use for drawing
404 glyphs in x_draw_glyphs. */
406 enum draw_glyphs_face
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
*,
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,
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
*,
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 void XTframe_rehighlight
P_ ((struct frame
*));
470 static void x_frame_rehighlight
P_ ((struct x_display_info
*));
471 static void x_draw_hollow_cursor
P_ ((struct window
*, struct glyph_row
*));
472 static void x_draw_bar_cursor
P_ ((struct window
*, struct glyph_row
*, int,
473 enum text_cursor_kinds
));
474 static int x_intersect_rectangles
P_ ((XRectangle
*, XRectangle
*,
476 static void expose_frame
P_ ((struct frame
*, int, int, int, int));
477 static int expose_window_tree
P_ ((struct window
*, XRectangle
*));
478 static int expose_window
P_ ((struct window
*, XRectangle
*));
479 static void expose_area
P_ ((struct window
*, struct glyph_row
*,
480 XRectangle
*, enum glyph_row_area
));
481 static int expose_line
P_ ((struct window
*, struct glyph_row
*,
483 static void x_update_cursor_in_window_tree
P_ ((struct window
*, int));
484 static void x_update_window_cursor
P_ ((struct window
*, int));
485 static void x_erase_phys_cursor
P_ ((struct window
*));
486 void x_display_and_set_cursor
P_ ((struct window
*, int, int, int, int, int));
487 static void x_draw_fringe_bitmap
P_ ((struct window
*, struct glyph_row
*,
488 enum fringe_bitmap_type
, int left_p
));
490 static void x_clip_to_row
P_ ((struct window
*, struct glyph_row
*,
492 static int x_phys_cursor_in_rect_p
P_ ((struct window
*, XRectangle
*));
493 static void x_draw_row_fringe_bitmaps
P_ ((struct window
*, struct glyph_row
*));
494 static void notice_overwritten_cursor
P_ ((struct window
*, enum glyph_row_area
,
495 int, int, int, int));
496 static void x_flush
P_ ((struct frame
*f
));
497 static void x_update_begin
P_ ((struct frame
*));
498 static void x_update_window_begin
P_ ((struct window
*));
499 static void x_draw_vertical_border
P_ ((struct window
*));
500 static void x_after_update_window_line
P_ ((struct glyph_row
*));
501 static INLINE
void take_vertical_position_into_account
P_ ((struct it
*));
502 static void x_produce_stretch_glyph
P_ ((struct it
*));
503 static struct scroll_bar
*x_window_to_scroll_bar
P_ ((Window
));
504 static void x_scroll_bar_report_motion
P_ ((struct frame
**, Lisp_Object
*,
505 enum scroll_bar_part
*,
506 Lisp_Object
*, Lisp_Object
*,
508 static void x_check_fullscreen
P_ ((struct frame
*));
509 static void x_check_fullscreen_move
P_ ((struct frame
*));
511 /* Flush display of frame F, or of all frames if F is null. */
520 Lisp_Object rest
, frame
;
521 FOR_EACH_FRAME (rest
, frame
)
522 x_flush (XFRAME (frame
));
524 else if (FRAME_X_P (f
))
525 XFlush (FRAME_X_DISPLAY (f
));
530 /* Remove calls to XFlush by defining XFlush to an empty replacement.
531 Calls to XFlush should be unnecessary because the X output buffer
532 is flushed automatically as needed by calls to XPending,
533 XNextEvent, or XWindowEvent according to the XFlush man page.
534 XTread_socket calls XPending. Removing XFlush improves
537 #define XFlush(DISPLAY) (void) 0
540 /***********************************************************************
542 ***********************************************************************/
546 /* This is a function useful for recording debugging information about
547 the sequence of occurrences in this file. */
555 struct record event_record
[100];
557 int event_record_index
;
559 record_event (locus
, type
)
563 if (event_record_index
== sizeof (event_record
) / sizeof (struct record
))
564 event_record_index
= 0;
566 event_record
[event_record_index
].locus
= locus
;
567 event_record
[event_record_index
].type
= type
;
568 event_record_index
++;
575 /* Return the struct x_display_info corresponding to DPY. */
577 struct x_display_info
*
578 x_display_info_for_display (dpy
)
581 struct x_display_info
*dpyinfo
;
583 for (dpyinfo
= x_display_list
; dpyinfo
; dpyinfo
= dpyinfo
->next
)
584 if (dpyinfo
->display
== dpy
)
592 /***********************************************************************
593 Starting and ending an update
594 ***********************************************************************/
596 /* Start an update of frame F. This function is installed as a hook
597 for update_begin, i.e. it is called when update_begin is called.
598 This function is called prior to calls to x_update_window_begin for
599 each window being updated. Currently, there is nothing to do here
600 because all interesting stuff is done on a window basis. */
610 /* Start update of window W. Set the global variable updated_window
611 to the window being updated and set output_cursor to the cursor
615 x_update_window_begin (w
)
618 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
619 struct x_display_info
*display_info
= FRAME_X_DISPLAY_INFO (f
);
622 set_output_cursor (&w
->cursor
);
626 if (f
== display_info
->mouse_face_mouse_frame
)
628 /* Don't do highlighting for mouse motion during the update. */
629 display_info
->mouse_face_defer
= 1;
631 /* If F needs to be redrawn, simply forget about any prior mouse
633 if (FRAME_GARBAGED_P (f
))
634 display_info
->mouse_face_window
= Qnil
;
636 #if 0 /* Rows in a current matrix containing glyphs in mouse-face have
637 their mouse_face_p flag set, which means that they are always
638 unequal to rows in a desired matrix which never have that
639 flag set. So, rows containing mouse-face glyphs are never
640 scrolled, and we don't have to switch the mouse highlight off
641 here to prevent it from being scrolled. */
643 /* Can we tell that this update does not affect the window
644 where the mouse highlight is? If so, no need to turn off.
645 Likewise, don't do anything if the frame is garbaged;
646 in that case, the frame's current matrix that we would use
647 is all wrong, and we will redisplay that line anyway. */
648 if (!NILP (display_info
->mouse_face_window
)
649 && w
== XWINDOW (display_info
->mouse_face_window
))
653 for (i
= 0; i
< w
->desired_matrix
->nrows
; ++i
)
654 if (MATRIX_ROW_ENABLED_P (w
->desired_matrix
, i
))
657 if (i
< w
->desired_matrix
->nrows
)
658 clear_mouse_face (display_info
);
667 /* Draw a vertical window border to the right of window W if W doesn't
668 have vertical scroll bars. */
671 x_draw_vertical_border (w
)
674 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
676 /* Redraw borders between horizontally adjacent windows. Don't
677 do it for frames with vertical scroll bars because either the
678 right scroll bar of a window, or the left scroll bar of its
679 neighbor will suffice as a border. */
680 if (!WINDOW_RIGHTMOST_P (w
)
681 && !FRAME_HAS_VERTICAL_SCROLL_BARS (f
))
685 window_box_edges (w
, -1, &x0
, &y0
, &x1
, &y1
);
686 x1
+= FRAME_X_RIGHT_FRINGE_WIDTH (f
);
689 XDrawLine (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
690 f
->output_data
.x
->normal_gc
, x1
, y0
, x1
, y1
);
695 /* End update of window W (which is equal to updated_window).
697 Draw vertical borders between horizontally adjacent windows, and
698 display W's cursor if CURSOR_ON_P is non-zero.
700 MOUSE_FACE_OVERWRITTEN_P non-zero means that some row containing
701 glyphs in mouse-face were overwritten. In that case we have to
702 make sure that the mouse-highlight is properly redrawn.
704 W may be a menu bar pseudo-window in case we don't have X toolkit
705 support. Such windows don't have a cursor, so don't display it
709 x_update_window_end (w
, cursor_on_p
, mouse_face_overwritten_p
)
711 int cursor_on_p
, mouse_face_overwritten_p
;
713 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (XFRAME (w
->frame
));
715 if (!w
->pseudo_window_p
)
720 x_display_and_set_cursor (w
, 1, output_cursor
.hpos
,
722 output_cursor
.x
, output_cursor
.y
);
724 x_draw_vertical_border (w
);
728 /* If a row with mouse-face was overwritten, arrange for
729 XTframe_up_to_date to redisplay the mouse highlight. */
730 if (mouse_face_overwritten_p
)
732 dpyinfo
->mouse_face_beg_row
= dpyinfo
->mouse_face_beg_col
= -1;
733 dpyinfo
->mouse_face_end_row
= dpyinfo
->mouse_face_end_col
= -1;
734 dpyinfo
->mouse_face_window
= Qnil
;
737 updated_window
= NULL
;
741 /* End update of frame F. This function is installed as a hook in
748 /* Mouse highlight may be displayed again. */
749 FRAME_X_DISPLAY_INFO (f
)->mouse_face_defer
= 0;
752 XFlush (FRAME_X_DISPLAY (f
));
757 /* This function is called from various places in xdisp.c whenever a
758 complete update has been performed. The global variable
759 updated_window is not available here. */
762 XTframe_up_to_date (f
)
767 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
769 if (dpyinfo
->mouse_face_deferred_gc
770 || f
== dpyinfo
->mouse_face_mouse_frame
)
773 if (dpyinfo
->mouse_face_mouse_frame
)
774 note_mouse_highlight (dpyinfo
->mouse_face_mouse_frame
,
775 dpyinfo
->mouse_face_mouse_x
,
776 dpyinfo
->mouse_face_mouse_y
);
777 dpyinfo
->mouse_face_deferred_gc
= 0;
784 /* Draw truncation mark bitmaps, continuation mark bitmaps, overlay
785 arrow bitmaps, or clear the fringes if no bitmaps are required
786 before DESIRED_ROW is made current. The window being updated is
787 found in updated_window. This function It is called from
788 update_window_line only if it is known that there are differences
789 between bitmaps to be drawn between current row and DESIRED_ROW. */
792 x_after_update_window_line (desired_row
)
793 struct glyph_row
*desired_row
;
795 struct window
*w
= updated_window
;
801 if (!desired_row
->mode_line_p
&& !w
->pseudo_window_p
)
804 x_draw_row_fringe_bitmaps (w
, desired_row
);
808 /* When a window has disappeared, make sure that no rest of
809 full-width rows stays visible in the internal border. Could
810 check here if updated_window is the leftmost/rightmost window,
811 but I guess it's not worth doing since vertically split windows
812 are almost never used, internal border is rarely set, and the
813 overhead is very small. */
814 if (windows_or_buffers_changed
815 && desired_row
->full_width_p
816 && (f
= XFRAME (w
->frame
),
817 width
= FRAME_INTERNAL_BORDER_WIDTH (f
),
819 && (height
= desired_row
->visible_height
,
822 int y
= WINDOW_TO_FRAME_PIXEL_Y (w
, max (0, desired_row
->y
));
824 /* Internal border is drawn below the tool bar. */
825 if (WINDOWP (f
->tool_bar_window
)
826 && w
== XWINDOW (f
->tool_bar_window
))
830 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
831 0, y
, width
, height
, False
);
832 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
833 f
->output_data
.x
->pixel_width
- width
,
834 y
, width
, height
, False
);
840 /* Draw the bitmap WHICH in one of the left or right fringes of
841 window W. ROW is the glyph row for which to display the bitmap; it
842 determines the vertical position at which the bitmap has to be
846 x_draw_fringe_bitmap (w
, row
, which
, left_p
)
848 struct glyph_row
*row
;
849 enum fringe_bitmap_type which
;
852 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
853 Display
*display
= FRAME_X_DISPLAY (f
);
854 Window window
= FRAME_X_WINDOW (f
);
857 unsigned char *bits
= NULL
;
859 GC gc
= f
->output_data
.x
->normal_gc
;
861 int depth
= DefaultDepthOfScreen (FRAME_X_SCREEN (f
));
863 /* Must clip because of partially visible lines. */
864 x_clip_to_row (w
, row
, gc
, 1);
866 /* Convert row to frame coordinates. */
867 y
= WINDOW_TO_FRAME_PIXEL_Y (w
, row
->y
);
871 case NO_FRINGE_BITMAP
:
876 case LEFT_TRUNCATION_BITMAP
:
882 case OVERLAY_ARROW_BITMAP
:
888 case RIGHT_TRUNCATION_BITMAP
:
894 case CONTINUED_LINE_BITMAP
:
895 wd
= continued_width
;
896 h
= continued_height
;
897 bits
= continued_bits
;
900 case CONTINUATION_LINE_BITMAP
:
901 wd
= continuation_width
;
902 h
= continuation_height
;
903 bits
= continuation_bits
;
908 h
= zv_height
- (y
% zv_period
);
909 bits
= zv_bits
+ (y
% zv_period
);
916 /* Clip bitmap if too high. */
920 /* Set dy to the offset in the row to start drawing the bitmap. */
921 dy
= (row
->height
- h
) / 2;
923 face
= FACE_FROM_ID (f
, FRINGE_FACE_ID
);
924 PREPARE_FACE_FOR_DISPLAY (f
, face
);
926 /* Clear left fringe if no bitmap to draw or if bitmap doesn't fill
931 if (wd
> FRAME_X_LEFT_FRINGE_WIDTH (f
))
932 wd
= FRAME_X_LEFT_FRINGE_WIDTH (f
);
933 x
= (WINDOW_TO_FRAME_PIXEL_X (w
, 0)
935 - (FRAME_X_LEFT_FRINGE_WIDTH (f
) - wd
) / 2);
936 if (wd
< FRAME_X_LEFT_FRINGE_WIDTH (f
) || row
->height
> h
)
938 /* If W has a vertical border to its left, don't draw over it. */
939 int border
= ((XFASTINT (w
->left
) > 0
940 && !FRAME_HAS_VERTICAL_SCROLL_BARS (f
))
942 b1
= (window_box_left (w
, -1)
943 - FRAME_X_LEFT_FRINGE_WIDTH (f
)
945 b2
= (FRAME_X_LEFT_FRINGE_WIDTH (f
) - border
);
950 if (wd
> FRAME_X_RIGHT_FRINGE_WIDTH (f
))
951 wd
= FRAME_X_RIGHT_FRINGE_WIDTH (f
);
952 x
= (window_box_right (w
, -1)
953 + (FRAME_X_RIGHT_FRINGE_WIDTH (f
) - wd
) / 2);
954 /* Clear right fringe if no bitmap to draw of if bitmap doesn't fill
956 if (wd
< FRAME_X_RIGHT_FRINGE_WIDTH (f
) || row
->height
> h
)
958 b1
= window_box_right (w
, -1);
959 b2
= FRAME_X_RIGHT_FRINGE_WIDTH (f
);
965 int header_line_height
= WINDOW_DISPLAY_HEADER_LINE_HEIGHT (w
);
967 /* In case the same realized face is used for fringes and
968 for something displayed in the text (e.g. face `region' on
969 mono-displays, the fill style may have been changed to
970 FillSolid in x_draw_glyph_string_background. */
972 XSetFillStyle (display
, face
->gc
, FillOpaqueStippled
);
974 XSetForeground (display
, face
->gc
, face
->background
);
976 XFillRectangle (display
, window
, face
->gc
,
978 WINDOW_TO_FRAME_PIXEL_Y (w
, max (header_line_height
,
981 row
->visible_height
);
983 XSetForeground (display
, face
->gc
, face
->foreground
);
986 if (which
!= NO_FRINGE_BITMAP
)
988 /* Draw the bitmap. I believe these small pixmaps can be cached
990 pixmap
= XCreatePixmapFromBitmapData (display
, window
, bits
, wd
, h
,
992 face
->background
, depth
);
993 XCopyArea (display
, pixmap
, window
, gc
, 0, 0, wd
, h
, x
, y
+ dy
);
994 XFreePixmap (display
, pixmap
);
997 XSetClipMask (display
, gc
, None
);
1001 /* Draw fringe bitmaps for glyph row ROW on window W. Call this
1002 function with input blocked. */
1005 x_draw_row_fringe_bitmaps (w
, row
)
1007 struct glyph_row
*row
;
1009 struct frame
*f
= XFRAME (w
->frame
);
1010 enum fringe_bitmap_type bitmap
;
1012 xassert (interrupt_input_blocked
);
1014 /* If row is completely invisible, because of vscrolling, we
1015 don't have to draw anything. */
1016 if (row
->visible_height
<= 0)
1019 if (FRAME_X_LEFT_FRINGE_WIDTH (f
) != 0)
1021 /* Decide which bitmap to draw in the left fringe. */
1022 if (row
->overlay_arrow_p
)
1023 bitmap
= OVERLAY_ARROW_BITMAP
;
1024 else if (row
->truncated_on_left_p
)
1025 bitmap
= LEFT_TRUNCATION_BITMAP
;
1026 else if (MATRIX_ROW_CONTINUATION_LINE_P (row
))
1027 bitmap
= CONTINUATION_LINE_BITMAP
;
1028 else if (row
->indicate_empty_line_p
)
1029 bitmap
= ZV_LINE_BITMAP
;
1031 bitmap
= NO_FRINGE_BITMAP
;
1033 x_draw_fringe_bitmap (w
, row
, bitmap
, 1);
1036 if (FRAME_X_RIGHT_FRINGE_WIDTH (f
) != 0)
1038 /* Decide which bitmap to draw in the right fringe. */
1039 if (row
->truncated_on_right_p
)
1040 bitmap
= RIGHT_TRUNCATION_BITMAP
;
1041 else if (row
->continued_p
)
1042 bitmap
= CONTINUED_LINE_BITMAP
;
1043 else if (row
->indicate_empty_line_p
&& FRAME_X_LEFT_FRINGE_WIDTH (f
) == 0)
1044 bitmap
= ZV_LINE_BITMAP
;
1046 bitmap
= NO_FRINGE_BITMAP
;
1048 x_draw_fringe_bitmap (w
, row
, bitmap
, 0);
1054 /* This is called when starting Emacs and when restarting after
1055 suspend. When starting Emacs, no X window is mapped. And nothing
1056 must be done to Emacs's own window if it is suspended (though that
1060 XTset_terminal_modes ()
1064 /* This is called when exiting or suspending Emacs. Exiting will make
1065 the X-windows go away, and suspending requires no action. */
1068 XTreset_terminal_modes ()
1074 /***********************************************************************
1076 ***********************************************************************/
1078 /* Set the global variable output_cursor to CURSOR. All cursor
1079 positions are relative to updated_window. */
1082 set_output_cursor (cursor
)
1083 struct cursor_pos
*cursor
;
1085 output_cursor
.hpos
= cursor
->hpos
;
1086 output_cursor
.vpos
= cursor
->vpos
;
1087 output_cursor
.x
= cursor
->x
;
1088 output_cursor
.y
= cursor
->y
;
1092 /* Set a nominal cursor position.
1094 HPOS and VPOS are column/row positions in a window glyph matrix. X
1095 and Y are window text area relative pixel positions.
1097 If this is done during an update, updated_window will contain the
1098 window that is being updated and the position is the future output
1099 cursor position for that window. If updated_window is null, use
1100 selected_window and display the cursor at the given position. */
1103 XTcursor_to (vpos
, hpos
, y
, x
)
1104 int vpos
, hpos
, y
, x
;
1108 /* If updated_window is not set, work on selected_window. */
1112 w
= XWINDOW (selected_window
);
1114 /* Set the output cursor. */
1115 output_cursor
.hpos
= hpos
;
1116 output_cursor
.vpos
= vpos
;
1117 output_cursor
.x
= x
;
1118 output_cursor
.y
= y
;
1120 /* If not called as part of an update, really display the cursor.
1121 This will also set the cursor position of W. */
1122 if (updated_window
== NULL
)
1125 x_display_cursor (w
, 1, hpos
, vpos
, x
, y
);
1126 XFlush (FRAME_X_DISPLAY (SELECTED_FRAME ()));
1133 /***********************************************************************
1135 ***********************************************************************/
1137 /* Function prototypes of this page. */
1139 static struct face
*x_get_glyph_face_and_encoding
P_ ((struct frame
*,
1143 static struct face
*x_get_char_face_and_encoding
P_ ((struct frame
*, int,
1144 int, XChar2b
*, int,
1146 static XCharStruct
*x_per_char_metric
P_ ((XFontStruct
*, XChar2b
*));
1147 static void x_encode_char
P_ ((int, XChar2b
*, struct font_info
*));
1148 static void x_append_glyph
P_ ((struct it
*));
1149 static void x_append_composite_glyph
P_ ((struct it
*));
1150 static void x_append_stretch_glyph
P_ ((struct it
*it
, Lisp_Object
,
1152 static void x_produce_glyphs
P_ ((struct it
*));
1153 static void x_produce_image_glyph
P_ ((struct it
*it
));
1156 /* Get metrics of character CHAR2B in FONT. Value is null if CHAR2B
1157 is not contained in the font. */
1159 static INLINE XCharStruct
*
1160 x_per_char_metric (font
, char2b
)
1164 /* The result metric information. */
1165 XCharStruct
*pcm
= NULL
;
1167 xassert (font
&& char2b
);
1169 if (font
->per_char
!= NULL
)
1171 if (font
->min_byte1
== 0 && font
->max_byte1
== 0)
1173 /* min_char_or_byte2 specifies the linear character index
1174 corresponding to the first element of the per_char array,
1175 max_char_or_byte2 is the index of the last character. A
1176 character with non-zero CHAR2B->byte1 is not in the font.
1177 A character with byte2 less than min_char_or_byte2 or
1178 greater max_char_or_byte2 is not in the font. */
1179 if (char2b
->byte1
== 0
1180 && char2b
->byte2
>= font
->min_char_or_byte2
1181 && char2b
->byte2
<= font
->max_char_or_byte2
)
1182 pcm
= font
->per_char
+ char2b
->byte2
- font
->min_char_or_byte2
;
1186 /* If either min_byte1 or max_byte1 are nonzero, both
1187 min_char_or_byte2 and max_char_or_byte2 are less than
1188 256, and the 2-byte character index values corresponding
1189 to the per_char array element N (counting from 0) are:
1191 byte1 = N/D + min_byte1
1192 byte2 = N\D + min_char_or_byte2
1196 D = max_char_or_byte2 - min_char_or_byte2 + 1
1197 / = integer division
1198 \ = integer modulus */
1199 if (char2b
->byte1
>= font
->min_byte1
1200 && char2b
->byte1
<= font
->max_byte1
1201 && char2b
->byte2
>= font
->min_char_or_byte2
1202 && char2b
->byte2
<= font
->max_char_or_byte2
)
1204 pcm
= (font
->per_char
1205 + ((font
->max_char_or_byte2
- font
->min_char_or_byte2
+ 1)
1206 * (char2b
->byte1
- font
->min_byte1
))
1207 + (char2b
->byte2
- font
->min_char_or_byte2
));
1213 /* If the per_char pointer is null, all glyphs between the first
1214 and last character indexes inclusive have the same
1215 information, as given by both min_bounds and max_bounds. */
1216 if (char2b
->byte2
>= font
->min_char_or_byte2
1217 && char2b
->byte2
<= font
->max_char_or_byte2
)
1218 pcm
= &font
->max_bounds
;
1221 return ((pcm
== NULL
1222 || (pcm
->width
== 0 && (pcm
->rbearing
- pcm
->lbearing
) == 0))
1227 /* Encode CHAR2B using encoding information from FONT_INFO. CHAR2B is
1228 the two-byte form of C. Encoding is returned in *CHAR2B. */
1231 x_encode_char (c
, char2b
, font_info
)
1234 struct font_info
*font_info
;
1236 int charset
= CHAR_CHARSET (c
);
1237 XFontStruct
*font
= font_info
->font
;
1239 /* FONT_INFO may define a scheme by which to encode byte1 and byte2.
1240 This may be either a program in a special encoder language or a
1242 if (font_info
->font_encoder
)
1244 /* It's a program. */
1245 struct ccl_program
*ccl
= font_info
->font_encoder
;
1247 if (CHARSET_DIMENSION (charset
) == 1)
1249 ccl
->reg
[0] = charset
;
1250 ccl
->reg
[1] = char2b
->byte2
;
1254 ccl
->reg
[0] = charset
;
1255 ccl
->reg
[1] = char2b
->byte1
;
1256 ccl
->reg
[2] = char2b
->byte2
;
1259 ccl_driver (ccl
, NULL
, NULL
, 0, 0, NULL
);
1261 /* We assume that MSBs are appropriately set/reset by CCL
1263 if (font
->max_byte1
== 0) /* 1-byte font */
1264 char2b
->byte1
= 0, char2b
->byte2
= ccl
->reg
[1];
1266 char2b
->byte1
= ccl
->reg
[1], char2b
->byte2
= ccl
->reg
[2];
1268 else if (font_info
->encoding
[charset
])
1270 /* Fixed encoding scheme. See fontset.h for the meaning of the
1271 encoding numbers. */
1272 int enc
= font_info
->encoding
[charset
];
1274 if ((enc
== 1 || enc
== 2)
1275 && CHARSET_DIMENSION (charset
) == 2)
1276 char2b
->byte1
|= 0x80;
1278 if (enc
== 1 || enc
== 3)
1279 char2b
->byte2
|= 0x80;
1284 /* Get face and two-byte form of character C in face FACE_ID on frame
1285 F. The encoding of C is returned in *CHAR2B. MULTIBYTE_P non-zero
1286 means we want to display multibyte text. DISPLAY_P non-zero means
1287 make sure that X resources for the face returned are allocated.
1288 Value is a pointer to a realized face that is ready for display if
1289 DISPLAY_P is non-zero. */
1291 static INLINE
struct face
*
1292 x_get_char_face_and_encoding (f
, c
, face_id
, char2b
, multibyte_p
, display_p
)
1296 int multibyte_p
, display_p
;
1298 struct face
*face
= FACE_FROM_ID (f
, face_id
);
1302 /* Unibyte case. We don't have to encode, but we have to make
1303 sure to use a face suitable for unibyte. */
1306 face_id
= FACE_FOR_CHAR (f
, face
, c
);
1307 face
= FACE_FROM_ID (f
, face_id
);
1309 else if (c
< 128 && face_id
< BASIC_FACE_ID_SENTINEL
)
1311 /* Case of ASCII in a face known to fit ASCII. */
1317 int c1
, c2
, charset
;
1319 /* Split characters into bytes. If c2 is -1 afterwards, C is
1320 really a one-byte character so that byte1 is zero. */
1321 SPLIT_CHAR (c
, charset
, c1
, c2
);
1323 char2b
->byte1
= c1
, char2b
->byte2
= c2
;
1325 char2b
->byte1
= 0, char2b
->byte2
= c1
;
1327 /* Maybe encode the character in *CHAR2B. */
1328 if (face
->font
!= NULL
)
1330 struct font_info
*font_info
1331 = FONT_INFO_FROM_ID (f
, face
->font_info_id
);
1333 x_encode_char (c
, char2b
, font_info
);
1337 /* Make sure X resources of the face are allocated. */
1340 xassert (face
!= NULL
);
1341 PREPARE_FACE_FOR_DISPLAY (f
, face
);
1348 /* Get face and two-byte form of character glyph GLYPH on frame F.
1349 The encoding of GLYPH->u.ch is returned in *CHAR2B. Value is
1350 a pointer to a realized face that is ready for display. */
1352 static INLINE
struct face
*
1353 x_get_glyph_face_and_encoding (f
, glyph
, char2b
, two_byte_p
)
1355 struct glyph
*glyph
;
1361 xassert (glyph
->type
== CHAR_GLYPH
);
1362 face
= FACE_FROM_ID (f
, glyph
->face_id
);
1367 if (!glyph
->multibyte_p
)
1369 /* Unibyte case. We don't have to encode, but we have to make
1370 sure to use a face suitable for unibyte. */
1372 char2b
->byte2
= glyph
->u
.ch
;
1374 else if (glyph
->u
.ch
< 128
1375 && glyph
->face_id
< BASIC_FACE_ID_SENTINEL
)
1377 /* Case of ASCII in a face known to fit ASCII. */
1379 char2b
->byte2
= glyph
->u
.ch
;
1383 int c1
, c2
, charset
;
1385 /* Split characters into bytes. If c2 is -1 afterwards, C is
1386 really a one-byte character so that byte1 is zero. */
1387 SPLIT_CHAR (glyph
->u
.ch
, charset
, c1
, c2
);
1389 char2b
->byte1
= c1
, char2b
->byte2
= c2
;
1391 char2b
->byte1
= 0, char2b
->byte2
= c1
;
1393 /* Maybe encode the character in *CHAR2B. */
1394 if (charset
!= CHARSET_ASCII
)
1396 struct font_info
*font_info
1397 = FONT_INFO_FROM_ID (f
, face
->font_info_id
);
1400 x_encode_char (glyph
->u
.ch
, char2b
, font_info
);
1403 = ((XFontStruct
*) (font_info
->font
))->max_byte1
> 0;
1408 /* Make sure X resources of the face are allocated. */
1409 xassert (face
!= NULL
);
1410 PREPARE_FACE_FOR_DISPLAY (f
, face
);
1415 /* Store one glyph for IT->char_to_display in IT->glyph_row.
1416 Called from x_produce_glyphs when IT->glyph_row is non-null. */
1422 struct glyph
*glyph
;
1423 enum glyph_row_area area
= it
->area
;
1425 xassert (it
->glyph_row
);
1426 xassert (it
->char_to_display
!= '\n' && it
->char_to_display
!= '\t');
1428 glyph
= it
->glyph_row
->glyphs
[area
] + it
->glyph_row
->used
[area
];
1429 if (glyph
< it
->glyph_row
->glyphs
[area
+ 1])
1431 glyph
->charpos
= CHARPOS (it
->position
);
1432 glyph
->object
= it
->object
;
1433 glyph
->pixel_width
= it
->pixel_width
;
1434 glyph
->voffset
= it
->voffset
;
1435 glyph
->type
= CHAR_GLYPH
;
1436 glyph
->multibyte_p
= it
->multibyte_p
;
1437 glyph
->left_box_line_p
= it
->start_of_box_run_p
;
1438 glyph
->right_box_line_p
= it
->end_of_box_run_p
;
1439 glyph
->overlaps_vertically_p
= (it
->phys_ascent
> it
->ascent
1440 || it
->phys_descent
> it
->descent
);
1441 glyph
->padding_p
= 0;
1442 glyph
->glyph_not_available_p
= it
->glyph_not_available_p
;
1443 glyph
->face_id
= it
->face_id
;
1444 glyph
->u
.ch
= it
->char_to_display
;
1445 ++it
->glyph_row
->used
[area
];
1449 /* Store one glyph for the composition IT->cmp_id in IT->glyph_row.
1450 Called from x_produce_glyphs when IT->glyph_row is non-null. */
1453 x_append_composite_glyph (it
)
1456 struct glyph
*glyph
;
1457 enum glyph_row_area area
= it
->area
;
1459 xassert (it
->glyph_row
);
1461 glyph
= it
->glyph_row
->glyphs
[area
] + it
->glyph_row
->used
[area
];
1462 if (glyph
< it
->glyph_row
->glyphs
[area
+ 1])
1464 glyph
->charpos
= CHARPOS (it
->position
);
1465 glyph
->object
= it
->object
;
1466 glyph
->pixel_width
= it
->pixel_width
;
1467 glyph
->voffset
= it
->voffset
;
1468 glyph
->type
= COMPOSITE_GLYPH
;
1469 glyph
->multibyte_p
= it
->multibyte_p
;
1470 glyph
->left_box_line_p
= it
->start_of_box_run_p
;
1471 glyph
->right_box_line_p
= it
->end_of_box_run_p
;
1472 glyph
->overlaps_vertically_p
= (it
->phys_ascent
> it
->ascent
1473 || it
->phys_descent
> it
->descent
);
1474 glyph
->padding_p
= 0;
1475 glyph
->glyph_not_available_p
= 0;
1476 glyph
->face_id
= it
->face_id
;
1477 glyph
->u
.cmp_id
= it
->cmp_id
;
1478 ++it
->glyph_row
->used
[area
];
1483 /* Change IT->ascent and IT->height according to the setting of
1487 take_vertical_position_into_account (it
)
1492 if (it
->voffset
< 0)
1493 /* Increase the ascent so that we can display the text higher
1495 it
->ascent
+= abs (it
->voffset
);
1497 /* Increase the descent so that we can display the text lower
1499 it
->descent
+= it
->voffset
;
1504 /* Produce glyphs/get display metrics for the image IT is loaded with.
1505 See the description of struct display_iterator in dispextern.h for
1506 an overview of struct display_iterator. */
1509 x_produce_image_glyph (it
)
1515 xassert (it
->what
== IT_IMAGE
);
1517 face
= FACE_FROM_ID (it
->f
, it
->face_id
);
1518 img
= IMAGE_FROM_ID (it
->f
, it
->image_id
);
1521 /* Make sure X resources of the face and image are loaded. */
1522 PREPARE_FACE_FOR_DISPLAY (it
->f
, face
);
1523 prepare_image_for_display (it
->f
, img
);
1525 it
->ascent
= it
->phys_ascent
= image_ascent (img
, face
);
1526 it
->descent
= it
->phys_descent
= img
->height
+ 2 * img
->vmargin
- it
->ascent
;
1527 it
->pixel_width
= img
->width
+ 2 * img
->hmargin
;
1531 if (face
->box
!= FACE_NO_BOX
)
1533 if (face
->box_line_width
> 0)
1535 it
->ascent
+= face
->box_line_width
;
1536 it
->descent
+= face
->box_line_width
;
1539 if (it
->start_of_box_run_p
)
1540 it
->pixel_width
+= abs (face
->box_line_width
);
1541 if (it
->end_of_box_run_p
)
1542 it
->pixel_width
+= abs (face
->box_line_width
);
1545 take_vertical_position_into_account (it
);
1549 struct glyph
*glyph
;
1550 enum glyph_row_area area
= it
->area
;
1552 glyph
= it
->glyph_row
->glyphs
[area
] + it
->glyph_row
->used
[area
];
1553 if (glyph
< it
->glyph_row
->glyphs
[area
+ 1])
1555 glyph
->charpos
= CHARPOS (it
->position
);
1556 glyph
->object
= it
->object
;
1557 glyph
->pixel_width
= it
->pixel_width
;
1558 glyph
->voffset
= it
->voffset
;
1559 glyph
->type
= IMAGE_GLYPH
;
1560 glyph
->multibyte_p
= it
->multibyte_p
;
1561 glyph
->left_box_line_p
= it
->start_of_box_run_p
;
1562 glyph
->right_box_line_p
= it
->end_of_box_run_p
;
1563 glyph
->overlaps_vertically_p
= 0;
1564 glyph
->padding_p
= 0;
1565 glyph
->glyph_not_available_p
= 0;
1566 glyph
->face_id
= it
->face_id
;
1567 glyph
->u
.img_id
= img
->id
;
1568 ++it
->glyph_row
->used
[area
];
1574 /* Append a stretch glyph to IT->glyph_row. OBJECT is the source
1575 of the glyph, WIDTH and HEIGHT are the width and height of the
1576 stretch. ASCENT is the percentage/100 of HEIGHT to use for the
1577 ascent of the glyph (0 <= ASCENT <= 1). */
1580 x_append_stretch_glyph (it
, object
, width
, height
, ascent
)
1586 struct glyph
*glyph
;
1587 enum glyph_row_area area
= it
->area
;
1589 xassert (ascent
>= 0 && ascent
<= 1);
1591 glyph
= it
->glyph_row
->glyphs
[area
] + it
->glyph_row
->used
[area
];
1592 if (glyph
< it
->glyph_row
->glyphs
[area
+ 1])
1594 glyph
->charpos
= CHARPOS (it
->position
);
1595 glyph
->object
= object
;
1596 glyph
->pixel_width
= width
;
1597 glyph
->voffset
= it
->voffset
;
1598 glyph
->type
= STRETCH_GLYPH
;
1599 glyph
->multibyte_p
= it
->multibyte_p
;
1600 glyph
->left_box_line_p
= it
->start_of_box_run_p
;
1601 glyph
->right_box_line_p
= it
->end_of_box_run_p
;
1602 glyph
->overlaps_vertically_p
= 0;
1603 glyph
->padding_p
= 0;
1604 glyph
->glyph_not_available_p
= 0;
1605 glyph
->face_id
= it
->face_id
;
1606 glyph
->u
.stretch
.ascent
= height
* ascent
;
1607 glyph
->u
.stretch
.height
= height
;
1608 ++it
->glyph_row
->used
[area
];
1613 /* Produce a stretch glyph for iterator IT. IT->object is the value
1614 of the glyph property displayed. The value must be a list
1615 `(space KEYWORD VALUE ...)' with the following KEYWORD/VALUE pairs
1618 1. `:width WIDTH' specifies that the space should be WIDTH *
1619 canonical char width wide. WIDTH may be an integer or floating
1622 2. `:relative-width FACTOR' specifies that the width of the stretch
1623 should be computed from the width of the first character having the
1624 `glyph' property, and should be FACTOR times that width.
1626 3. `:align-to HPOS' specifies that the space should be wide enough
1627 to reach HPOS, a value in canonical character units.
1629 Exactly one of the above pairs must be present.
1631 4. `:height HEIGHT' specifies that the height of the stretch produced
1632 should be HEIGHT, measured in canonical character units.
1634 5. `:relative-height FACTOR' specifies that the height of the
1635 stretch should be FACTOR times the height of the characters having
1638 Either none or exactly one of 4 or 5 must be present.
1640 6. `:ascent ASCENT' specifies that ASCENT percent of the height
1641 of the stretch should be used for the ascent of the stretch.
1642 ASCENT must be in the range 0 <= ASCENT <= 100. */
1645 ((INTEGERP (X) || FLOATP (X)) \
1651 x_produce_stretch_glyph (it
)
1654 /* (space :width WIDTH :height HEIGHT. */
1656 extern Lisp_Object Qspace
;
1658 extern Lisp_Object QCwidth
, QCheight
, QCascent
;
1659 extern Lisp_Object QCrelative_width
, QCrelative_height
;
1660 extern Lisp_Object QCalign_to
;
1661 Lisp_Object prop
, plist
;
1662 double width
= 0, height
= 0, ascent
= 0;
1663 struct face
*face
= FACE_FROM_ID (it
->f
, it
->face_id
);
1664 XFontStruct
*font
= face
->font
? face
->font
: FRAME_FONT (it
->f
);
1666 PREPARE_FACE_FOR_DISPLAY (it
->f
, face
);
1668 /* List should start with `space'. */
1669 xassert (CONSP (it
->object
) && EQ (XCAR (it
->object
), Qspace
));
1670 plist
= XCDR (it
->object
);
1672 /* Compute the width of the stretch. */
1673 if (prop
= Fplist_get (plist
, QCwidth
),
1675 /* Absolute width `:width WIDTH' specified and valid. */
1676 width
= NUMVAL (prop
) * CANON_X_UNIT (it
->f
);
1677 else if (prop
= Fplist_get (plist
, QCrelative_width
),
1680 /* Relative width `:relative-width FACTOR' specified and valid.
1681 Compute the width of the characters having the `glyph'
1684 unsigned char *p
= BYTE_POS_ADDR (IT_BYTEPOS (*it
));
1687 if (it
->multibyte_p
)
1689 int maxlen
= ((IT_BYTEPOS (*it
) >= GPT
? ZV
: GPT
)
1690 - IT_BYTEPOS (*it
));
1691 it2
.c
= STRING_CHAR_AND_LENGTH (p
, maxlen
, it2
.len
);
1694 it2
.c
= *p
, it2
.len
= 1;
1696 it2
.glyph_row
= NULL
;
1697 it2
.what
= IT_CHARACTER
;
1698 x_produce_glyphs (&it2
);
1699 width
= NUMVAL (prop
) * it2
.pixel_width
;
1701 else if (prop
= Fplist_get (plist
, QCalign_to
),
1703 width
= NUMVAL (prop
) * CANON_X_UNIT (it
->f
) - it
->current_x
;
1705 /* Nothing specified -> width defaults to canonical char width. */
1706 width
= CANON_X_UNIT (it
->f
);
1708 /* Compute height. */
1709 if (prop
= Fplist_get (plist
, QCheight
),
1711 height
= NUMVAL (prop
) * CANON_Y_UNIT (it
->f
);
1712 else if (prop
= Fplist_get (plist
, QCrelative_height
),
1714 height
= FONT_HEIGHT (font
) * NUMVAL (prop
);
1716 height
= FONT_HEIGHT (font
);
1718 /* Compute percentage of height used for ascent. If
1719 `:ascent ASCENT' is present and valid, use that. Otherwise,
1720 derive the ascent from the font in use. */
1721 if (prop
= Fplist_get (plist
, QCascent
),
1722 NUMVAL (prop
) > 0 && NUMVAL (prop
) <= 100)
1723 ascent
= NUMVAL (prop
) / 100.0;
1725 ascent
= (double) font
->ascent
/ FONT_HEIGHT (font
);
1734 Lisp_Object object
= it
->stack
[it
->sp
- 1].string
;
1735 if (!STRINGP (object
))
1736 object
= it
->w
->buffer
;
1737 x_append_stretch_glyph (it
, object
, width
, height
, ascent
);
1740 it
->pixel_width
= width
;
1741 it
->ascent
= it
->phys_ascent
= height
* ascent
;
1742 it
->descent
= it
->phys_descent
= height
- it
->ascent
;
1745 if (face
->box
!= FACE_NO_BOX
)
1747 if (face
->box_line_width
> 0)
1749 it
->ascent
+= face
->box_line_width
;
1750 it
->descent
+= face
->box_line_width
;
1753 if (it
->start_of_box_run_p
)
1754 it
->pixel_width
+= abs (face
->box_line_width
);
1755 if (it
->end_of_box_run_p
)
1756 it
->pixel_width
+= abs (face
->box_line_width
);
1759 take_vertical_position_into_account (it
);
1762 /* Return proper value to be used as baseline offset of font that has
1763 ASCENT and DESCENT to draw characters by the font at the vertical
1764 center of the line of frame F.
1766 Here, out task is to find the value of BOFF in the following figure;
1768 -------------------------+-----------+-
1769 -+-+---------+-+ | |
1771 | | | | F_ASCENT F_HEIGHT
1774 | | |-|-+------+-----------|------- baseline
1776 | |---------|-+-+ | |
1778 -+-+---------+-+ F_DESCENT |
1779 -------------------------+-----------+-
1781 -BOFF + DESCENT + (F_HEIGHT - HEIGHT) / 2 = F_DESCENT
1782 BOFF = DESCENT + (F_HEIGHT - HEIGHT) / 2 - F_DESCENT
1783 DESCENT = FONT->descent
1784 HEIGHT = FONT_HEIGHT (FONT)
1785 F_DESCENT = (F->output_data.x->font->descent
1786 - F->output_data.x->baseline_offset)
1787 F_HEIGHT = FRAME_LINE_HEIGHT (F)
1790 #define VCENTER_BASELINE_OFFSET(FONT, F) \
1792 + (FRAME_LINE_HEIGHT ((F)) - FONT_HEIGHT ((FONT)) \
1793 + (FRAME_LINE_HEIGHT ((F)) > FONT_HEIGHT ((FONT)))) / 2 \
1794 - ((F)->output_data.x->font->descent - (F)->output_data.x->baseline_offset))
1796 /* Produce glyphs/get display metrics for the display element IT is
1797 loaded with. See the description of struct display_iterator in
1798 dispextern.h for an overview of struct display_iterator. */
1801 x_produce_glyphs (it
)
1804 it
->glyph_not_available_p
= 0;
1806 if (it
->what
== IT_CHARACTER
)
1810 struct face
*face
= FACE_FROM_ID (it
->f
, it
->face_id
);
1812 int font_not_found_p
;
1813 struct font_info
*font_info
;
1814 int boff
; /* baseline offset */
1815 /* We may change it->multibyte_p upon unibyte<->multibyte
1816 conversion. So, save the current value now and restore it
1819 Note: It seems that we don't have to record multibyte_p in
1820 struct glyph because the character code itself tells if or
1821 not the character is multibyte. Thus, in the future, we must
1822 consider eliminating the field `multibyte_p' in the struct
1824 int saved_multibyte_p
= it
->multibyte_p
;
1826 /* Maybe translate single-byte characters to multibyte, or the
1828 it
->char_to_display
= it
->c
;
1829 if (!ASCII_BYTE_P (it
->c
))
1831 if (unibyte_display_via_language_environment
1832 && SINGLE_BYTE_CHAR_P (it
->c
)
1834 || !NILP (Vnonascii_translation_table
)))
1836 it
->char_to_display
= unibyte_char_to_multibyte (it
->c
);
1837 it
->multibyte_p
= 1;
1838 it
->face_id
= FACE_FOR_CHAR (it
->f
, face
, it
->char_to_display
);
1839 face
= FACE_FROM_ID (it
->f
, it
->face_id
);
1841 else if (!SINGLE_BYTE_CHAR_P (it
->c
)
1842 && !it
->multibyte_p
)
1844 it
->multibyte_p
= 1;
1845 it
->face_id
= FACE_FOR_CHAR (it
->f
, face
, it
->char_to_display
);
1846 face
= FACE_FROM_ID (it
->f
, it
->face_id
);
1850 /* Get font to use. Encode IT->char_to_display. */
1851 x_get_char_face_and_encoding (it
->f
, it
->char_to_display
,
1852 it
->face_id
, &char2b
,
1853 it
->multibyte_p
, 0);
1856 /* When no suitable font found, use the default font. */
1857 font_not_found_p
= font
== NULL
;
1858 if (font_not_found_p
)
1860 font
= FRAME_FONT (it
->f
);
1861 boff
= it
->f
->output_data
.x
->baseline_offset
;
1866 font_info
= FONT_INFO_FROM_ID (it
->f
, face
->font_info_id
);
1867 boff
= font_info
->baseline_offset
;
1868 if (font_info
->vertical_centering
)
1869 boff
= VCENTER_BASELINE_OFFSET (font
, it
->f
) - boff
;
1872 if (it
->char_to_display
>= ' '
1873 && (!it
->multibyte_p
|| it
->char_to_display
< 128))
1875 /* Either unibyte or ASCII. */
1880 pcm
= x_per_char_metric (font
, &char2b
);
1881 it
->ascent
= font
->ascent
+ boff
;
1882 it
->descent
= font
->descent
- boff
;
1886 it
->phys_ascent
= pcm
->ascent
+ boff
;
1887 it
->phys_descent
= pcm
->descent
- boff
;
1888 it
->pixel_width
= pcm
->width
;
1892 it
->glyph_not_available_p
= 1;
1893 it
->phys_ascent
= font
->ascent
+ boff
;
1894 it
->phys_descent
= font
->descent
- boff
;
1895 it
->pixel_width
= FONT_WIDTH (font
);
1898 /* If this is a space inside a region of text with
1899 `space-width' property, change its width. */
1900 stretched_p
= it
->char_to_display
== ' ' && !NILP (it
->space_width
);
1902 it
->pixel_width
*= XFLOATINT (it
->space_width
);
1904 /* If face has a box, add the box thickness to the character
1905 height. If character has a box line to the left and/or
1906 right, add the box line width to the character's width. */
1907 if (face
->box
!= FACE_NO_BOX
)
1909 int thick
= face
->box_line_width
;
1913 it
->ascent
+= thick
;
1914 it
->descent
+= thick
;
1919 if (it
->start_of_box_run_p
)
1920 it
->pixel_width
+= thick
;
1921 if (it
->end_of_box_run_p
)
1922 it
->pixel_width
+= thick
;
1925 /* If face has an overline, add the height of the overline
1926 (1 pixel) and a 1 pixel margin to the character height. */
1927 if (face
->overline_p
)
1930 take_vertical_position_into_account (it
);
1932 /* If we have to actually produce glyphs, do it. */
1937 /* Translate a space with a `space-width' property
1938 into a stretch glyph. */
1939 double ascent
= (double) font
->ascent
/ FONT_HEIGHT (font
);
1940 x_append_stretch_glyph (it
, it
->object
, it
->pixel_width
,
1941 it
->ascent
+ it
->descent
, ascent
);
1944 x_append_glyph (it
);
1946 /* If characters with lbearing or rbearing are displayed
1947 in this line, record that fact in a flag of the
1948 glyph row. This is used to optimize X output code. */
1949 if (pcm
&& (pcm
->lbearing
< 0 || pcm
->rbearing
> pcm
->width
))
1950 it
->glyph_row
->contains_overlapping_glyphs_p
= 1;
1953 else if (it
->char_to_display
== '\n')
1955 /* A newline has no width but we need the height of the line. */
1956 it
->pixel_width
= 0;
1958 it
->ascent
= it
->phys_ascent
= font
->ascent
+ boff
;
1959 it
->descent
= it
->phys_descent
= font
->descent
- boff
;
1961 if (face
->box
!= FACE_NO_BOX
1962 && face
->box_line_width
> 0)
1964 it
->ascent
+= face
->box_line_width
;
1965 it
->descent
+= face
->box_line_width
;
1968 else if (it
->char_to_display
== '\t')
1970 int tab_width
= it
->tab_width
* CANON_X_UNIT (it
->f
);
1971 int x
= it
->current_x
+ it
->continuation_lines_width
;
1972 int next_tab_x
= ((1 + x
+ tab_width
- 1) / tab_width
) * tab_width
;
1974 /* If the distance from the current position to the next tab
1975 stop is less than a canonical character width, use the
1976 tab stop after that. */
1977 if (next_tab_x
- x
< CANON_X_UNIT (it
->f
))
1978 next_tab_x
+= tab_width
;
1980 it
->pixel_width
= next_tab_x
- x
;
1982 it
->ascent
= it
->phys_ascent
= font
->ascent
+ boff
;
1983 it
->descent
= it
->phys_descent
= font
->descent
- boff
;
1987 double ascent
= (double) it
->ascent
/ (it
->ascent
+ it
->descent
);
1988 x_append_stretch_glyph (it
, it
->object
, it
->pixel_width
,
1989 it
->ascent
+ it
->descent
, ascent
);
1994 /* A multi-byte character. Assume that the display width of the
1995 character is the width of the character multiplied by the
1996 width of the font. */
1998 /* If we found a font, this font should give us the right
1999 metrics. If we didn't find a font, use the frame's
2000 default font and calculate the width of the character
2001 from the charset width; this is what old redisplay code
2003 pcm
= x_per_char_metric (font
, &char2b
);
2004 if (font_not_found_p
|| !pcm
)
2006 int charset
= CHAR_CHARSET (it
->char_to_display
);
2008 it
->glyph_not_available_p
= 1;
2009 it
->pixel_width
= (FONT_WIDTH (FRAME_FONT (it
->f
))
2010 * CHARSET_WIDTH (charset
));
2011 it
->phys_ascent
= font
->ascent
+ boff
;
2012 it
->phys_descent
= font
->descent
- boff
;
2016 it
->pixel_width
= pcm
->width
;
2017 it
->phys_ascent
= pcm
->ascent
+ boff
;
2018 it
->phys_descent
= pcm
->descent
- boff
;
2020 && (pcm
->lbearing
< 0
2021 || pcm
->rbearing
> pcm
->width
))
2022 it
->glyph_row
->contains_overlapping_glyphs_p
= 1;
2025 it
->ascent
= font
->ascent
+ boff
;
2026 it
->descent
= font
->descent
- boff
;
2027 if (face
->box
!= FACE_NO_BOX
)
2029 int thick
= face
->box_line_width
;
2033 it
->ascent
+= thick
;
2034 it
->descent
+= thick
;
2039 if (it
->start_of_box_run_p
)
2040 it
->pixel_width
+= thick
;
2041 if (it
->end_of_box_run_p
)
2042 it
->pixel_width
+= thick
;
2045 /* If face has an overline, add the height of the overline
2046 (1 pixel) and a 1 pixel margin to the character height. */
2047 if (face
->overline_p
)
2050 take_vertical_position_into_account (it
);
2053 x_append_glyph (it
);
2055 it
->multibyte_p
= saved_multibyte_p
;
2057 else if (it
->what
== IT_COMPOSITION
)
2059 /* Note: A composition is represented as one glyph in the
2060 glyph matrix. There are no padding glyphs. */
2063 struct face
*face
= FACE_FROM_ID (it
->f
, it
->face_id
);
2065 int font_not_found_p
;
2066 struct font_info
*font_info
;
2067 int boff
; /* baseline offset */
2068 struct composition
*cmp
= composition_table
[it
->cmp_id
];
2070 /* Maybe translate single-byte characters to multibyte. */
2071 it
->char_to_display
= it
->c
;
2072 if (unibyte_display_via_language_environment
2073 && SINGLE_BYTE_CHAR_P (it
->c
)
2076 && !NILP (Vnonascii_translation_table
))))
2078 it
->char_to_display
= unibyte_char_to_multibyte (it
->c
);
2081 /* Get face and font to use. Encode IT->char_to_display. */
2082 it
->face_id
= FACE_FOR_CHAR (it
->f
, face
, it
->char_to_display
);
2083 face
= FACE_FROM_ID (it
->f
, it
->face_id
);
2084 x_get_char_face_and_encoding (it
->f
, it
->char_to_display
,
2085 it
->face_id
, &char2b
, it
->multibyte_p
, 0);
2088 /* When no suitable font found, use the default font. */
2089 font_not_found_p
= font
== NULL
;
2090 if (font_not_found_p
)
2092 font
= FRAME_FONT (it
->f
);
2093 boff
= it
->f
->output_data
.x
->baseline_offset
;
2098 font_info
= FONT_INFO_FROM_ID (it
->f
, face
->font_info_id
);
2099 boff
= font_info
->baseline_offset
;
2100 if (font_info
->vertical_centering
)
2101 boff
= VCENTER_BASELINE_OFFSET (font
, it
->f
) - boff
;
2104 /* There are no padding glyphs, so there is only one glyph to
2105 produce for the composition. Important is that pixel_width,
2106 ascent and descent are the values of what is drawn by
2107 draw_glyphs (i.e. the values of the overall glyphs composed). */
2110 /* If we have not yet calculated pixel size data of glyphs of
2111 the composition for the current face font, calculate them
2112 now. Theoretically, we have to check all fonts for the
2113 glyphs, but that requires much time and memory space. So,
2114 here we check only the font of the first glyph. This leads
2115 to incorrect display very rarely, and C-l (recenter) can
2116 correct the display anyway. */
2117 if (cmp
->font
!= (void *) font
)
2119 /* Ascent and descent of the font of the first character of
2120 this composition (adjusted by baseline offset). Ascent
2121 and descent of overall glyphs should not be less than
2122 them respectively. */
2123 int font_ascent
= font
->ascent
+ boff
;
2124 int font_descent
= font
->descent
- boff
;
2125 /* Bounding box of the overall glyphs. */
2126 int leftmost
, rightmost
, lowest
, highest
;
2127 int i
, width
, ascent
, descent
;
2129 cmp
->font
= (void *) font
;
2131 /* Initialize the bounding box. */
2133 && (pcm
= x_per_char_metric (font
, &char2b
)))
2136 ascent
= pcm
->ascent
;
2137 descent
= pcm
->descent
;
2141 width
= FONT_WIDTH (font
);
2142 ascent
= font
->ascent
;
2143 descent
= font
->descent
;
2147 lowest
= - descent
+ boff
;
2148 highest
= ascent
+ boff
;
2152 && font_info
->default_ascent
2153 && CHAR_TABLE_P (Vuse_default_ascent
)
2154 && !NILP (Faref (Vuse_default_ascent
,
2155 make_number (it
->char_to_display
))))
2156 highest
= font_info
->default_ascent
+ boff
;
2158 /* Draw the first glyph at the normal position. It may be
2159 shifted to right later if some other glyphs are drawn at
2161 cmp
->offsets
[0] = 0;
2162 cmp
->offsets
[1] = boff
;
2164 /* Set cmp->offsets for the remaining glyphs. */
2165 for (i
= 1; i
< cmp
->glyph_len
; i
++)
2167 int left
, right
, btm
, top
;
2168 int ch
= COMPOSITION_GLYPH (cmp
, i
);
2169 int face_id
= FACE_FOR_CHAR (it
->f
, face
, ch
);
2171 face
= FACE_FROM_ID (it
->f
, face_id
);
2172 x_get_char_face_and_encoding (it
->f
, ch
, face
->id
, &char2b
,
2173 it
->multibyte_p
, 0);
2177 font
= FRAME_FONT (it
->f
);
2178 boff
= it
->f
->output_data
.x
->baseline_offset
;
2184 = FONT_INFO_FROM_ID (it
->f
, face
->font_info_id
);
2185 boff
= font_info
->baseline_offset
;
2186 if (font_info
->vertical_centering
)
2187 boff
= VCENTER_BASELINE_OFFSET (font
, it
->f
) - boff
;
2191 && (pcm
= x_per_char_metric (font
, &char2b
)))
2194 ascent
= pcm
->ascent
;
2195 descent
= pcm
->descent
;
2199 width
= FONT_WIDTH (font
);
2204 if (cmp
->method
!= COMPOSITION_WITH_RULE_ALTCHARS
)
2206 /* Relative composition with or without
2208 left
= (leftmost
+ rightmost
- width
) / 2;
2209 btm
= - descent
+ boff
;
2210 if (font_info
&& font_info
->relative_compose
2211 && (! CHAR_TABLE_P (Vignore_relative_composition
)
2212 || NILP (Faref (Vignore_relative_composition
,
2213 make_number (ch
)))))
2216 if (- descent
>= font_info
->relative_compose
)
2217 /* One extra pixel between two glyphs. */
2219 else if (ascent
<= 0)
2220 /* One extra pixel between two glyphs. */
2221 btm
= lowest
- 1 - ascent
- descent
;
2226 /* A composition rule is specified by an integer
2227 value that encodes global and new reference
2228 points (GREF and NREF). GREF and NREF are
2229 specified by numbers as below:
2237 ---3---4---5--- baseline
2239 6---7---8 -- descent
2241 int rule
= COMPOSITION_RULE (cmp
, i
);
2242 int gref
, nref
, grefx
, grefy
, nrefx
, nrefy
;
2244 COMPOSITION_DECODE_RULE (rule
, gref
, nref
);
2245 grefx
= gref
% 3, nrefx
= nref
% 3;
2246 grefy
= gref
/ 3, nrefy
= nref
/ 3;
2249 + grefx
* (rightmost
- leftmost
) / 2
2250 - nrefx
* width
/ 2);
2251 btm
= ((grefy
== 0 ? highest
2253 : grefy
== 2 ? lowest
2254 : (highest
+ lowest
) / 2)
2255 - (nrefy
== 0 ? ascent
+ descent
2256 : nrefy
== 1 ? descent
- boff
2258 : (ascent
+ descent
) / 2));
2261 cmp
->offsets
[i
* 2] = left
;
2262 cmp
->offsets
[i
* 2 + 1] = btm
+ descent
;
2264 /* Update the bounding box of the overall glyphs. */
2265 right
= left
+ width
;
2266 top
= btm
+ descent
+ ascent
;
2267 if (left
< leftmost
)
2269 if (right
> rightmost
)
2277 /* If there are glyphs whose x-offsets are negative,
2278 shift all glyphs to the right and make all x-offsets
2282 for (i
= 0; i
< cmp
->glyph_len
; i
++)
2283 cmp
->offsets
[i
* 2] -= leftmost
;
2284 rightmost
-= leftmost
;
2287 cmp
->pixel_width
= rightmost
;
2288 cmp
->ascent
= highest
;
2289 cmp
->descent
= - lowest
;
2290 if (cmp
->ascent
< font_ascent
)
2291 cmp
->ascent
= font_ascent
;
2292 if (cmp
->descent
< font_descent
)
2293 cmp
->descent
= font_descent
;
2296 it
->pixel_width
= cmp
->pixel_width
;
2297 it
->ascent
= it
->phys_ascent
= cmp
->ascent
;
2298 it
->descent
= it
->phys_descent
= cmp
->descent
;
2300 if (face
->box
!= FACE_NO_BOX
)
2302 int thick
= face
->box_line_width
;
2306 it
->ascent
+= thick
;
2307 it
->descent
+= thick
;
2312 if (it
->start_of_box_run_p
)
2313 it
->pixel_width
+= thick
;
2314 if (it
->end_of_box_run_p
)
2315 it
->pixel_width
+= thick
;
2318 /* If face has an overline, add the height of the overline
2319 (1 pixel) and a 1 pixel margin to the character height. */
2320 if (face
->overline_p
)
2323 take_vertical_position_into_account (it
);
2326 x_append_composite_glyph (it
);
2328 else if (it
->what
== IT_IMAGE
)
2329 x_produce_image_glyph (it
);
2330 else if (it
->what
== IT_STRETCH
)
2331 x_produce_stretch_glyph (it
);
2333 /* Accumulate dimensions. Note: can't assume that it->descent > 0
2334 because this isn't true for images with `:ascent 100'. */
2335 xassert (it
->ascent
>= 0 && it
->descent
>= 0);
2336 if (it
->area
== TEXT_AREA
)
2337 it
->current_x
+= it
->pixel_width
;
2339 it
->descent
+= it
->extra_line_spacing
;
2341 it
->max_ascent
= max (it
->max_ascent
, it
->ascent
);
2342 it
->max_descent
= max (it
->max_descent
, it
->descent
);
2343 it
->max_phys_ascent
= max (it
->max_phys_ascent
, it
->phys_ascent
);
2344 it
->max_phys_descent
= max (it
->max_phys_descent
, it
->phys_descent
);
2348 /* Estimate the pixel height of the mode or top line on frame F.
2349 FACE_ID specifies what line's height to estimate. */
2352 x_estimate_mode_line_height (f
, face_id
)
2354 enum face_id face_id
;
2356 int height
= FONT_HEIGHT (FRAME_FONT (f
));
2358 /* This function is called so early when Emacs starts that the face
2359 cache and mode line face are not yet initialized. */
2360 if (FRAME_FACE_CACHE (f
))
2362 struct face
*face
= FACE_FROM_ID (f
, face_id
);
2366 height
= FONT_HEIGHT (face
->font
);
2367 if (face
->box_line_width
> 0)
2368 height
+= 2 * face
->box_line_width
;
2376 /***********************************************************************
2378 ***********************************************************************/
2380 /* A sequence of glyphs to be drawn in the same face.
2382 This data structure is not really completely X specific, so it
2383 could possibly, at least partially, be useful for other systems. It
2384 is currently not part of the external redisplay interface because
2385 it's not clear what other systems will need. */
2389 /* X-origin of the string. */
2392 /* Y-origin and y-position of the base line of this string. */
2395 /* The width of the string, not including a face extension. */
2398 /* The width of the string, including a face extension. */
2399 int background_width
;
2401 /* The height of this string. This is the height of the line this
2402 string is drawn in, and can be different from the height of the
2403 font the string is drawn in. */
2406 /* Number of pixels this string overwrites in front of its x-origin.
2407 This number is zero if the string has an lbearing >= 0; it is
2408 -lbearing, if the string has an lbearing < 0. */
2411 /* Number of pixels this string overwrites past its right-most
2412 nominal x-position, i.e. x + width. Zero if the string's
2413 rbearing is <= its nominal width, rbearing - width otherwise. */
2416 /* The frame on which the glyph string is drawn. */
2419 /* The window on which the glyph string is drawn. */
2422 /* X display and window for convenience. */
2426 /* The glyph row for which this string was built. It determines the
2427 y-origin and height of the string. */
2428 struct glyph_row
*row
;
2430 /* The area within row. */
2431 enum glyph_row_area area
;
2433 /* Characters to be drawn, and number of characters. */
2437 /* A face-override for drawing cursors, mouse face and similar. */
2438 enum draw_glyphs_face hl
;
2440 /* Face in which this string is to be drawn. */
2443 /* Font in which this string is to be drawn. */
2446 /* Font info for this string. */
2447 struct font_info
*font_info
;
2449 /* Non-null means this string describes (part of) a composition.
2450 All characters from char2b are drawn composed. */
2451 struct composition
*cmp
;
2453 /* Index of this glyph string's first character in the glyph
2454 definition of CMP. If this is zero, this glyph string describes
2455 the first character of a composition. */
2458 /* 1 means this glyph strings face has to be drawn to the right end
2459 of the window's drawing area. */
2460 unsigned extends_to_end_of_line_p
: 1;
2462 /* 1 means the background of this string has been drawn. */
2463 unsigned background_filled_p
: 1;
2465 /* 1 means glyph string must be drawn with 16-bit functions. */
2466 unsigned two_byte_p
: 1;
2468 /* 1 means that the original font determined for drawing this glyph
2469 string could not be loaded. The member `font' has been set to
2470 the frame's default font in this case. */
2471 unsigned font_not_found_p
: 1;
2473 /* 1 means that the face in which this glyph string is drawn has a
2475 unsigned stippled_p
: 1;
2477 /* 1 means only the foreground of this glyph string must be drawn,
2478 and we should use the physical height of the line this glyph
2479 string appears in as clip rect. */
2480 unsigned for_overlaps_p
: 1;
2482 /* The GC to use for drawing this glyph string. */
2485 /* A pointer to the first glyph in the string. This glyph
2486 corresponds to char2b[0]. Needed to draw rectangles if
2487 font_not_found_p is 1. */
2488 struct glyph
*first_glyph
;
2490 /* Image, if any. */
2493 struct glyph_string
*next
, *prev
;
2500 x_dump_glyph_string (s
)
2501 struct glyph_string
*s
;
2503 fprintf (stderr
, "glyph string\n");
2504 fprintf (stderr
, " x, y, w, h = %d, %d, %d, %d\n",
2505 s
->x
, s
->y
, s
->width
, s
->height
);
2506 fprintf (stderr
, " ybase = %d\n", s
->ybase
);
2507 fprintf (stderr
, " hl = %d\n", s
->hl
);
2508 fprintf (stderr
, " left overhang = %d, right = %d\n",
2509 s
->left_overhang
, s
->right_overhang
);
2510 fprintf (stderr
, " nchars = %d\n", s
->nchars
);
2511 fprintf (stderr
, " extends to end of line = %d\n",
2512 s
->extends_to_end_of_line_p
);
2513 fprintf (stderr
, " font height = %d\n", FONT_HEIGHT (s
->font
));
2514 fprintf (stderr
, " bg width = %d\n", s
->background_width
);
2517 #endif /* GLYPH_DEBUG */
2521 static void x_append_glyph_string_lists
P_ ((struct glyph_string
**,
2522 struct glyph_string
**,
2523 struct glyph_string
*,
2524 struct glyph_string
*));
2525 static void x_prepend_glyph_string_lists
P_ ((struct glyph_string
**,
2526 struct glyph_string
**,
2527 struct glyph_string
*,
2528 struct glyph_string
*));
2529 static void x_append_glyph_string
P_ ((struct glyph_string
**,
2530 struct glyph_string
**,
2531 struct glyph_string
*));
2532 static int x_left_overwritten
P_ ((struct glyph_string
*));
2533 static int x_left_overwriting
P_ ((struct glyph_string
*));
2534 static int x_right_overwritten
P_ ((struct glyph_string
*));
2535 static int x_right_overwriting
P_ ((struct glyph_string
*));
2536 static int x_fill_glyph_string
P_ ((struct glyph_string
*, int, int, int,
2538 static void x_init_glyph_string
P_ ((struct glyph_string
*,
2539 XChar2b
*, struct window
*,
2541 enum glyph_row_area
, int,
2542 enum draw_glyphs_face
));
2543 static int x_draw_glyphs
P_ ((struct window
*, int , struct glyph_row
*,
2544 enum glyph_row_area
, int, int,
2545 enum draw_glyphs_face
, int));
2546 static void x_set_glyph_string_clipping
P_ ((struct glyph_string
*));
2547 static void x_set_glyph_string_gc
P_ ((struct glyph_string
*));
2548 static void x_draw_glyph_string_background
P_ ((struct glyph_string
*,
2550 static void x_draw_glyph_string_foreground
P_ ((struct glyph_string
*));
2551 static void x_draw_composite_glyph_string_foreground
P_ ((struct glyph_string
*));
2552 static void x_draw_glyph_string_box
P_ ((struct glyph_string
*));
2553 static void x_draw_glyph_string
P_ ((struct glyph_string
*));
2554 static void x_compute_glyph_string_overhangs
P_ ((struct glyph_string
*));
2555 static void x_set_cursor_gc
P_ ((struct glyph_string
*));
2556 static void x_set_mode_line_face_gc
P_ ((struct glyph_string
*));
2557 static void x_set_mouse_face_gc
P_ ((struct glyph_string
*));
2558 static void x_get_glyph_overhangs
P_ ((struct glyph
*, struct frame
*,
2560 static void x_compute_overhangs_and_x
P_ ((struct glyph_string
*, int, int));
2561 static int x_alloc_lighter_color
P_ ((struct frame
*, Display
*, Colormap
,
2562 unsigned long *, double, int));
2563 static void x_setup_relief_color
P_ ((struct frame
*, struct relief
*,
2564 double, int, unsigned long));
2565 static void x_setup_relief_colors
P_ ((struct glyph_string
*));
2566 static void x_draw_image_glyph_string
P_ ((struct glyph_string
*));
2567 static void x_draw_image_relief
P_ ((struct glyph_string
*));
2568 static void x_draw_image_foreground
P_ ((struct glyph_string
*));
2569 static void x_draw_image_foreground_1
P_ ((struct glyph_string
*, Pixmap
));
2570 static void x_fill_image_glyph_string
P_ ((struct glyph_string
*));
2571 static void x_clear_glyph_string_rect
P_ ((struct glyph_string
*, int,
2573 static void x_draw_relief_rect
P_ ((struct frame
*, int, int, int, int,
2574 int, int, int, int, XRectangle
*));
2575 static void x_draw_box_rect
P_ ((struct glyph_string
*, int, int, int, int,
2576 int, int, int, XRectangle
*));
2577 static void x_fix_overlapping_area
P_ ((struct window
*, struct glyph_row
*,
2578 enum glyph_row_area
));
2579 static int x_fill_stretch_glyph_string
P_ ((struct glyph_string
*,
2581 enum glyph_row_area
, int, int));
2584 static void x_check_font
P_ ((struct frame
*, XFontStruct
*));
2588 /* Append the list of glyph strings with head H and tail T to the list
2589 with head *HEAD and tail *TAIL. Set *HEAD and *TAIL to the result. */
2592 x_append_glyph_string_lists (head
, tail
, h
, t
)
2593 struct glyph_string
**head
, **tail
;
2594 struct glyph_string
*h
, *t
;
2608 /* Prepend the list of glyph strings with head H and tail T to the
2609 list with head *HEAD and tail *TAIL. Set *HEAD and *TAIL to the
2613 x_prepend_glyph_string_lists (head
, tail
, h
, t
)
2614 struct glyph_string
**head
, **tail
;
2615 struct glyph_string
*h
, *t
;
2629 /* Append glyph string S to the list with head *HEAD and tail *TAIL.
2630 Set *HEAD and *TAIL to the resulting list. */
2633 x_append_glyph_string (head
, tail
, s
)
2634 struct glyph_string
**head
, **tail
;
2635 struct glyph_string
*s
;
2637 s
->next
= s
->prev
= NULL
;
2638 x_append_glyph_string_lists (head
, tail
, s
, s
);
2642 /* Set S->gc to a suitable GC for drawing glyph string S in cursor
2647 struct glyph_string
*s
;
2649 if (s
->font
== FRAME_FONT (s
->f
)
2650 && s
->face
->background
== FRAME_BACKGROUND_PIXEL (s
->f
)
2651 && s
->face
->foreground
== FRAME_FOREGROUND_PIXEL (s
->f
)
2653 s
->gc
= s
->f
->output_data
.x
->cursor_gc
;
2656 /* Cursor on non-default face: must merge. */
2660 xgcv
.background
= s
->f
->output_data
.x
->cursor_pixel
;
2661 xgcv
.foreground
= s
->face
->background
;
2663 /* If the glyph would be invisible, try a different foreground. */
2664 if (xgcv
.foreground
== xgcv
.background
)
2665 xgcv
.foreground
= s
->face
->foreground
;
2666 if (xgcv
.foreground
== xgcv
.background
)
2667 xgcv
.foreground
= s
->f
->output_data
.x
->cursor_foreground_pixel
;
2668 if (xgcv
.foreground
== xgcv
.background
)
2669 xgcv
.foreground
= s
->face
->foreground
;
2671 /* Make sure the cursor is distinct from text in this face. */
2672 if (xgcv
.background
== s
->face
->background
2673 && xgcv
.foreground
== s
->face
->foreground
)
2675 xgcv
.background
= s
->face
->foreground
;
2676 xgcv
.foreground
= s
->face
->background
;
2679 IF_DEBUG (x_check_font (s
->f
, s
->font
));
2680 xgcv
.font
= s
->font
->fid
;
2681 xgcv
.graphics_exposures
= False
;
2682 mask
= GCForeground
| GCBackground
| GCFont
| GCGraphicsExposures
;
2684 if (FRAME_X_DISPLAY_INFO (s
->f
)->scratch_cursor_gc
)
2685 XChangeGC (s
->display
, FRAME_X_DISPLAY_INFO (s
->f
)->scratch_cursor_gc
,
2688 FRAME_X_DISPLAY_INFO (s
->f
)->scratch_cursor_gc
2689 = XCreateGC (s
->display
, s
->window
, mask
, &xgcv
);
2691 s
->gc
= FRAME_X_DISPLAY_INFO (s
->f
)->scratch_cursor_gc
;
2696 /* Set up S->gc of glyph string S for drawing text in mouse face. */
2699 x_set_mouse_face_gc (s
)
2700 struct glyph_string
*s
;
2705 /* What face has to be used last for the mouse face? */
2706 face_id
= FRAME_X_DISPLAY_INFO (s
->f
)->mouse_face_face_id
;
2707 face
= FACE_FROM_ID (s
->f
, face_id
);
2709 face
= FACE_FROM_ID (s
->f
, MOUSE_FACE_ID
);
2711 if (s
->first_glyph
->type
== CHAR_GLYPH
)
2712 face_id
= FACE_FOR_CHAR (s
->f
, face
, s
->first_glyph
->u
.ch
);
2714 face_id
= FACE_FOR_CHAR (s
->f
, face
, 0);
2715 s
->face
= FACE_FROM_ID (s
->f
, face_id
);
2716 PREPARE_FACE_FOR_DISPLAY (s
->f
, s
->face
);
2718 /* If font in this face is same as S->font, use it. */
2719 if (s
->font
== s
->face
->font
)
2720 s
->gc
= s
->face
->gc
;
2723 /* Otherwise construct scratch_cursor_gc with values from FACE
2728 xgcv
.background
= s
->face
->background
;
2729 xgcv
.foreground
= s
->face
->foreground
;
2730 IF_DEBUG (x_check_font (s
->f
, s
->font
));
2731 xgcv
.font
= s
->font
->fid
;
2732 xgcv
.graphics_exposures
= False
;
2733 mask
= GCForeground
| GCBackground
| GCFont
| GCGraphicsExposures
;
2735 if (FRAME_X_DISPLAY_INFO (s
->f
)->scratch_cursor_gc
)
2736 XChangeGC (s
->display
, FRAME_X_DISPLAY_INFO (s
->f
)->scratch_cursor_gc
,
2739 FRAME_X_DISPLAY_INFO (s
->f
)->scratch_cursor_gc
2740 = XCreateGC (s
->display
, s
->window
, mask
, &xgcv
);
2742 s
->gc
= FRAME_X_DISPLAY_INFO (s
->f
)->scratch_cursor_gc
;
2745 xassert (s
->gc
!= 0);
2749 /* Set S->gc of glyph string S to a GC suitable for drawing a mode line.
2750 Faces to use in the mode line have already been computed when the
2751 matrix was built, so there isn't much to do, here. */
2754 x_set_mode_line_face_gc (s
)
2755 struct glyph_string
*s
;
2757 s
->gc
= s
->face
->gc
;
2761 /* Set S->gc of glyph string S for drawing that glyph string. Set
2762 S->stippled_p to a non-zero value if the face of S has a stipple
2766 x_set_glyph_string_gc (s
)
2767 struct glyph_string
*s
;
2769 PREPARE_FACE_FOR_DISPLAY (s
->f
, s
->face
);
2771 if (s
->hl
== DRAW_NORMAL_TEXT
)
2773 s
->gc
= s
->face
->gc
;
2774 s
->stippled_p
= s
->face
->stipple
!= 0;
2776 else if (s
->hl
== DRAW_INVERSE_VIDEO
)
2778 x_set_mode_line_face_gc (s
);
2779 s
->stippled_p
= s
->face
->stipple
!= 0;
2781 else if (s
->hl
== DRAW_CURSOR
)
2783 x_set_cursor_gc (s
);
2786 else if (s
->hl
== DRAW_MOUSE_FACE
)
2788 x_set_mouse_face_gc (s
);
2789 s
->stippled_p
= s
->face
->stipple
!= 0;
2791 else if (s
->hl
== DRAW_IMAGE_RAISED
2792 || s
->hl
== DRAW_IMAGE_SUNKEN
)
2794 s
->gc
= s
->face
->gc
;
2795 s
->stippled_p
= s
->face
->stipple
!= 0;
2799 s
->gc
= s
->face
->gc
;
2800 s
->stippled_p
= s
->face
->stipple
!= 0;
2803 /* GC must have been set. */
2804 xassert (s
->gc
!= 0);
2808 /* Return in *R the clipping rectangle for glyph string S. */
2811 x_get_glyph_string_clip_rect (s
, r
)
2812 struct glyph_string
*s
;
2815 if (s
->row
->full_width_p
)
2817 /* Draw full-width. X coordinates are relative to S->w->left. */
2818 int canon_x
= CANON_X_UNIT (s
->f
);
2820 r
->x
= WINDOW_LEFT_MARGIN (s
->w
) * canon_x
;
2821 r
->width
= XFASTINT (s
->w
->width
) * canon_x
;
2823 if (FRAME_HAS_VERTICAL_SCROLL_BARS (s
->f
))
2825 int width
= FRAME_SCROLL_BAR_WIDTH (s
->f
) * canon_x
;
2826 if (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (s
->f
))
2830 r
->x
+= FRAME_INTERNAL_BORDER_WIDTH (s
->f
);
2832 /* Unless displaying a mode or menu bar line, which are always
2833 fully visible, clip to the visible part of the row. */
2834 if (s
->w
->pseudo_window_p
)
2835 r
->height
= s
->row
->visible_height
;
2837 r
->height
= s
->height
;
2841 /* This is a text line that may be partially visible. */
2842 r
->x
= WINDOW_AREA_TO_FRAME_PIXEL_X (s
->w
, s
->area
, 0);
2843 r
->width
= window_box_width (s
->w
, s
->area
);
2844 r
->height
= s
->row
->visible_height
;
2847 /* If S draws overlapping rows, it's sufficient to use the top and
2848 bottom of the window for clipping because this glyph string
2849 intentionally draws over other lines. */
2850 if (s
->for_overlaps_p
)
2852 r
->y
= WINDOW_DISPLAY_HEADER_LINE_HEIGHT (s
->w
);
2853 r
->height
= window_text_bottom_y (s
->w
) - r
->y
;
2857 /* Don't use S->y for clipping because it doesn't take partially
2858 visible lines into account. For example, it can be negative for
2859 partially visible lines at the top of a window. */
2860 if (!s
->row
->full_width_p
2861 && MATRIX_ROW_PARTIALLY_VISIBLE_AT_TOP_P (s
->w
, s
->row
))
2862 r
->y
= WINDOW_DISPLAY_HEADER_LINE_HEIGHT (s
->w
);
2864 r
->y
= max (0, s
->row
->y
);
2866 /* If drawing a tool-bar window, draw it over the internal border
2867 at the top of the window. */
2868 if (s
->w
== XWINDOW (s
->f
->tool_bar_window
))
2869 r
->y
-= s
->f
->output_data
.x
->internal_border_width
;
2872 r
->y
= WINDOW_TO_FRAME_PIXEL_Y (s
->w
, r
->y
);
2876 /* Set clipping for output of glyph string S. S may be part of a mode
2877 line or menu if we don't have X toolkit support. */
2880 x_set_glyph_string_clipping (s
)
2881 struct glyph_string
*s
;
2884 x_get_glyph_string_clip_rect (s
, &r
);
2885 XSetClipRectangles (s
->display
, s
->gc
, 0, 0, &r
, 1, Unsorted
);
2889 /* Compute left and right overhang of glyph string S. If S is a glyph
2890 string for a composition, assume overhangs don't exist. */
2893 x_compute_glyph_string_overhangs (s
)
2894 struct glyph_string
*s
;
2897 && s
->first_glyph
->type
== CHAR_GLYPH
)
2900 int direction
, font_ascent
, font_descent
;
2901 XTextExtents16 (s
->font
, s
->char2b
, s
->nchars
, &direction
,
2902 &font_ascent
, &font_descent
, &cs
);
2903 s
->right_overhang
= cs
.rbearing
> cs
.width
? cs
.rbearing
- cs
.width
: 0;
2904 s
->left_overhang
= cs
.lbearing
< 0 ? -cs
.lbearing
: 0;
2909 /* Compute overhangs and x-positions for glyph string S and its
2910 predecessors, or successors. X is the starting x-position for S.
2911 BACKWARD_P non-zero means process predecessors. */
2914 x_compute_overhangs_and_x (s
, x
, backward_p
)
2915 struct glyph_string
*s
;
2923 x_compute_glyph_string_overhangs (s
);
2933 x_compute_glyph_string_overhangs (s
);
2942 /* Set *LEFT and *RIGHT to the left and right overhang of GLYPH on
2943 frame F. Overhangs of glyphs other than type CHAR_GLYPH are
2944 assumed to be zero. */
2947 x_get_glyph_overhangs (glyph
, f
, left
, right
)
2948 struct glyph
*glyph
;
2954 if (glyph
->type
== CHAR_GLYPH
)
2958 struct font_info
*font_info
;
2962 face
= x_get_glyph_face_and_encoding (f
, glyph
, &char2b
, NULL
);
2964 font_info
= FONT_INFO_FROM_ID (f
, face
->font_info_id
);
2966 && (pcm
= x_per_char_metric (font
, &char2b
)))
2968 if (pcm
->rbearing
> pcm
->width
)
2969 *right
= pcm
->rbearing
- pcm
->width
;
2970 if (pcm
->lbearing
< 0)
2971 *left
= -pcm
->lbearing
;
2977 /* Return the index of the first glyph preceding glyph string S that
2978 is overwritten by S because of S's left overhang. Value is -1
2979 if no glyphs are overwritten. */
2982 x_left_overwritten (s
)
2983 struct glyph_string
*s
;
2987 if (s
->left_overhang
)
2990 struct glyph
*glyphs
= s
->row
->glyphs
[s
->area
];
2991 int first
= s
->first_glyph
- glyphs
;
2993 for (i
= first
- 1; i
>= 0 && x
> -s
->left_overhang
; --i
)
2994 x
-= glyphs
[i
].pixel_width
;
3005 /* Return the index of the first glyph preceding glyph string S that
3006 is overwriting S because of its right overhang. Value is -1 if no
3007 glyph in front of S overwrites S. */
3010 x_left_overwriting (s
)
3011 struct glyph_string
*s
;
3014 struct glyph
*glyphs
= s
->row
->glyphs
[s
->area
];
3015 int first
= s
->first_glyph
- glyphs
;
3019 for (i
= first
- 1; i
>= 0; --i
)
3022 x_get_glyph_overhangs (glyphs
+ i
, s
->f
, &left
, &right
);
3025 x
-= glyphs
[i
].pixel_width
;
3032 /* Return the index of the last glyph following glyph string S that is
3033 not overwritten by S because of S's right overhang. Value is -1 if
3034 no such glyph is found. */
3037 x_right_overwritten (s
)
3038 struct glyph_string
*s
;
3042 if (s
->right_overhang
)
3045 struct glyph
*glyphs
= s
->row
->glyphs
[s
->area
];
3046 int first
= (s
->first_glyph
- glyphs
) + (s
->cmp
? 1 : s
->nchars
);
3047 int end
= s
->row
->used
[s
->area
];
3049 for (i
= first
; i
< end
&& s
->right_overhang
> x
; ++i
)
3050 x
+= glyphs
[i
].pixel_width
;
3059 /* Return the index of the last glyph following glyph string S that
3060 overwrites S because of its left overhang. Value is negative
3061 if no such glyph is found. */
3064 x_right_overwriting (s
)
3065 struct glyph_string
*s
;
3068 int end
= s
->row
->used
[s
->area
];
3069 struct glyph
*glyphs
= s
->row
->glyphs
[s
->area
];
3070 int first
= (s
->first_glyph
- glyphs
) + (s
->cmp
? 1 : s
->nchars
);
3074 for (i
= first
; i
< end
; ++i
)
3077 x_get_glyph_overhangs (glyphs
+ i
, s
->f
, &left
, &right
);
3080 x
+= glyphs
[i
].pixel_width
;
3087 /* Fill rectangle X, Y, W, H with background color of glyph string S. */
3090 x_clear_glyph_string_rect (s
, x
, y
, w
, h
)
3091 struct glyph_string
*s
;
3095 XGetGCValues (s
->display
, s
->gc
, GCForeground
| GCBackground
, &xgcv
);
3096 XSetForeground (s
->display
, s
->gc
, xgcv
.background
);
3097 XFillRectangle (s
->display
, s
->window
, s
->gc
, x
, y
, w
, h
);
3098 XSetForeground (s
->display
, s
->gc
, xgcv
.foreground
);
3102 /* Draw the background of glyph_string S. If S->background_filled_p
3103 is non-zero don't draw it. FORCE_P non-zero means draw the
3104 background even if it wouldn't be drawn normally. This is used
3105 when a string preceding S draws into the background of S, or S
3106 contains the first component of a composition. */
3109 x_draw_glyph_string_background (s
, force_p
)
3110 struct glyph_string
*s
;
3113 /* Nothing to do if background has already been drawn or if it
3114 shouldn't be drawn in the first place. */
3115 if (!s
->background_filled_p
)
3117 int box_line_width
= max (s
->face
->box_line_width
, 0);
3121 /* Fill background with a stipple pattern. */
3122 XSetFillStyle (s
->display
, s
->gc
, FillOpaqueStippled
);
3123 XFillRectangle (s
->display
, s
->window
, s
->gc
, s
->x
,
3124 s
->y
+ box_line_width
,
3125 s
->background_width
,
3126 s
->height
- 2 * box_line_width
);
3127 XSetFillStyle (s
->display
, s
->gc
, FillSolid
);
3128 s
->background_filled_p
= 1;
3130 else if (FONT_HEIGHT (s
->font
) < s
->height
- 2 * box_line_width
3131 || s
->font_not_found_p
3132 || s
->extends_to_end_of_line_p
3135 x_clear_glyph_string_rect (s
, s
->x
, s
->y
+ box_line_width
,
3136 s
->background_width
,
3137 s
->height
- 2 * box_line_width
);
3138 s
->background_filled_p
= 1;
3144 /* Draw the foreground of glyph string S. */
3147 x_draw_glyph_string_foreground (s
)
3148 struct glyph_string
*s
;
3152 /* If first glyph of S has a left box line, start drawing the text
3153 of S to the right of that box line. */
3154 if (s
->face
->box
!= FACE_NO_BOX
3155 && s
->first_glyph
->left_box_line_p
)
3156 x
= s
->x
+ abs (s
->face
->box_line_width
);
3160 /* Draw characters of S as rectangles if S's font could not be
3162 if (s
->font_not_found_p
)
3164 for (i
= 0; i
< s
->nchars
; ++i
)
3166 struct glyph
*g
= s
->first_glyph
+ i
;
3167 XDrawRectangle (s
->display
, s
->window
,
3168 s
->gc
, x
, s
->y
, g
->pixel_width
- 1,
3170 x
+= g
->pixel_width
;
3175 char *char1b
= (char *) s
->char2b
;
3176 int boff
= s
->font_info
->baseline_offset
;
3178 if (s
->font_info
->vertical_centering
)
3179 boff
= VCENTER_BASELINE_OFFSET (s
->font
, s
->f
) - boff
;
3181 /* If we can use 8-bit functions, condense S->char2b. */
3183 for (i
= 0; i
< s
->nchars
; ++i
)
3184 char1b
[i
] = s
->char2b
[i
].byte2
;
3186 /* Draw text with XDrawString if background has already been
3187 filled. Otherwise, use XDrawImageString. (Note that
3188 XDrawImageString is usually faster than XDrawString.) Always
3189 use XDrawImageString when drawing the cursor so that there is
3190 no chance that characters under a box cursor are invisible. */
3191 if (s
->for_overlaps_p
3192 || (s
->background_filled_p
&& s
->hl
!= DRAW_CURSOR
))
3194 /* Draw characters with 16-bit or 8-bit functions. */
3196 XDrawString16 (s
->display
, s
->window
, s
->gc
, x
,
3197 s
->ybase
- boff
, s
->char2b
, s
->nchars
);
3199 XDrawString (s
->display
, s
->window
, s
->gc
, x
,
3200 s
->ybase
- boff
, char1b
, s
->nchars
);
3205 XDrawImageString16 (s
->display
, s
->window
, s
->gc
, x
,
3206 s
->ybase
- boff
, s
->char2b
, s
->nchars
);
3208 XDrawImageString (s
->display
, s
->window
, s
->gc
, x
,
3209 s
->ybase
- boff
, char1b
, s
->nchars
);
3214 /* Draw the foreground of composite glyph string S. */
3217 x_draw_composite_glyph_string_foreground (s
)
3218 struct glyph_string
*s
;
3222 /* If first glyph of S has a left box line, start drawing the text
3223 of S to the right of that box line. */
3224 if (s
->face
->box
!= FACE_NO_BOX
3225 && s
->first_glyph
->left_box_line_p
)
3226 x
= s
->x
+ abs (s
->face
->box_line_width
);
3230 /* S is a glyph string for a composition. S->gidx is the index of
3231 the first character drawn for glyphs of this composition.
3232 S->gidx == 0 means we are drawing the very first character of
3233 this composition. */
3235 /* Draw a rectangle for the composition if the font for the very
3236 first character of the composition could not be loaded. */
3237 if (s
->font_not_found_p
)
3240 XDrawRectangle (s
->display
, s
->window
, s
->gc
, x
, s
->y
,
3241 s
->width
- 1, s
->height
- 1);
3245 for (i
= 0; i
< s
->nchars
; i
++, ++s
->gidx
)
3246 XDrawString16 (s
->display
, s
->window
, s
->gc
,
3247 x
+ s
->cmp
->offsets
[s
->gidx
* 2],
3248 s
->ybase
- s
->cmp
->offsets
[s
->gidx
* 2 + 1],
3254 #ifdef USE_X_TOOLKIT
3256 static struct frame
*x_frame_of_widget
P_ ((Widget
));
3257 static Boolean cvt_string_to_pixel
P_ ((Display
*, XrmValue
*, Cardinal
*,
3258 XrmValue
*, XrmValue
*, XtPointer
*));
3259 static void cvt_pixel_dtor
P_ ((XtAppContext
, XrmValue
*, XtPointer
,
3260 XrmValue
*, Cardinal
*));
3263 /* Return the frame on which widget WIDGET is used.. Abort if frame
3264 cannot be determined. */
3266 static struct frame
*
3267 x_frame_of_widget (widget
)
3270 struct x_display_info
*dpyinfo
;
3274 dpyinfo
= x_display_info_for_display (XtDisplay (widget
));
3276 /* Find the top-level shell of the widget. Note that this function
3277 can be called when the widget is not yet realized, so XtWindow
3278 (widget) == 0. That's the reason we can't simply use
3279 x_any_window_to_frame. */
3280 while (!XtIsTopLevelShell (widget
))
3281 widget
= XtParent (widget
);
3283 /* Look for a frame with that top-level widget. Allocate the color
3284 on that frame to get the right gamma correction value. */
3285 for (tail
= Vframe_list
; GC_CONSP (tail
); tail
= XCDR (tail
))
3286 if (GC_FRAMEP (XCAR (tail
))
3287 && (f
= XFRAME (XCAR (tail
)),
3288 (f
->output_data
.nothing
!= 1
3289 && FRAME_X_DISPLAY_INFO (f
) == dpyinfo
))
3290 && f
->output_data
.x
->widget
== widget
)
3297 /* Allocate the color COLOR->pixel on the screen and display of
3298 widget WIDGET in colormap CMAP. If an exact match cannot be
3299 allocated, try the nearest color available. Value is non-zero
3300 if successful. This is called from lwlib. */
3303 x_alloc_nearest_color_for_widget (widget
, cmap
, color
)
3308 struct frame
*f
= x_frame_of_widget (widget
);
3309 return x_alloc_nearest_color (f
, cmap
, color
);
3313 /* Allocate a color which is lighter or darker than *PIXEL by FACTOR
3314 or DELTA. Try a color with RGB values multiplied by FACTOR first.
3315 If this produces the same color as PIXEL, try a color where all RGB
3316 values have DELTA added. Return the allocated color in *PIXEL.
3317 DISPLAY is the X display, CMAP is the colormap to operate on.
3318 Value is non-zero if successful. */
3321 x_alloc_lighter_color_for_widget (widget
, display
, cmap
, pixel
, factor
, delta
)
3325 unsigned long *pixel
;
3329 struct frame
*f
= x_frame_of_widget (widget
);
3330 return x_alloc_lighter_color (f
, display
, cmap
, pixel
, factor
, delta
);
3334 /* Structure specifying which arguments should be passed by Xt to
3335 cvt_string_to_pixel. We want the widget's screen and colormap. */
3337 static XtConvertArgRec cvt_string_to_pixel_args
[] =
3339 {XtWidgetBaseOffset
, (XtPointer
) XtOffset (Widget
, core
.screen
),
3341 {XtWidgetBaseOffset
, (XtPointer
) XtOffset (Widget
, core
.colormap
),
3346 /* The address of this variable is returned by
3347 cvt_string_to_pixel. */
3349 static Pixel cvt_string_to_pixel_value
;
3352 /* Convert a color name to a pixel color.
3354 DPY is the display we are working on.
3356 ARGS is an array of *NARGS XrmValue structures holding additional
3357 information about the widget for which the conversion takes place.
3358 The contents of this array are determined by the specification
3359 in cvt_string_to_pixel_args.
3361 FROM is a pointer to an XrmValue which points to the color name to
3362 convert. TO is an XrmValue in which to return the pixel color.
3364 CLOSURE_RET is a pointer to user-data, in which we record if
3365 we allocated the color or not.
3367 Value is True if successful, False otherwise. */
3370 cvt_string_to_pixel (dpy
, args
, nargs
, from
, to
, closure_ret
)
3374 XrmValue
*from
, *to
;
3375 XtPointer
*closure_ret
;
3385 XtAppWarningMsg (XtDisplayToApplicationContext (dpy
),
3386 "wrongParameters", "cvt_string_to_pixel",
3388 "Screen and colormap args required", NULL
, NULL
);
3392 screen
= *(Screen
**) args
[0].addr
;
3393 cmap
= *(Colormap
*) args
[1].addr
;
3394 color_name
= (String
) from
->addr
;
3396 if (strcmp (color_name
, XtDefaultBackground
) == 0)
3398 *closure_ret
= (XtPointer
) False
;
3399 pixel
= WhitePixelOfScreen (screen
);
3401 else if (strcmp (color_name
, XtDefaultForeground
) == 0)
3403 *closure_ret
= (XtPointer
) False
;
3404 pixel
= BlackPixelOfScreen (screen
);
3406 else if (XParseColor (dpy
, cmap
, color_name
, &color
)
3407 && x_alloc_nearest_color_1 (dpy
, cmap
, &color
))
3409 pixel
= color
.pixel
;
3410 *closure_ret
= (XtPointer
) True
;
3415 Cardinal nparams
= 1;
3417 params
[0] = color_name
;
3418 XtAppWarningMsg (XtDisplayToApplicationContext (dpy
),
3419 "badValue", "cvt_string_to_pixel",
3420 "XtToolkitError", "Invalid color `%s'",
3425 if (to
->addr
!= NULL
)
3427 if (to
->size
< sizeof (Pixel
))
3429 to
->size
= sizeof (Pixel
);
3433 *(Pixel
*) to
->addr
= pixel
;
3437 cvt_string_to_pixel_value
= pixel
;
3438 to
->addr
= (XtPointer
) &cvt_string_to_pixel_value
;
3441 to
->size
= sizeof (Pixel
);
3446 /* Free a pixel color which was previously allocated via
3447 cvt_string_to_pixel. This is registered as the destructor
3448 for this type of resource via XtSetTypeConverter.
3450 APP is the application context in which we work.
3452 TO is a pointer to an XrmValue holding the color to free.
3453 CLOSURE is the value we stored in CLOSURE_RET for this color
3454 in cvt_string_to_pixel.
3456 ARGS and NARGS are like for cvt_string_to_pixel. */
3459 cvt_pixel_dtor (app
, to
, closure
, args
, nargs
)
3468 XtAppWarningMsg (app
, "wrongParameters", "cvt_pixel_dtor",
3470 "Screen and colormap arguments required",
3473 else if (closure
!= NULL
)
3475 /* We did allocate the pixel, so free it. */
3476 Screen
*screen
= *(Screen
**) args
[0].addr
;
3477 Colormap cmap
= *(Colormap
*) args
[1].addr
;
3478 x_free_dpy_colors (DisplayOfScreen (screen
), screen
, cmap
,
3479 (Pixel
*) to
->addr
, 1);
3484 #endif /* USE_X_TOOLKIT */
3487 /* Value is an array of XColor structures for the contents of the
3488 color map of display DPY. Set *NCELLS to the size of the array.
3489 Note that this probably shouldn't be called for large color maps,
3490 say a 24-bit TrueColor map. */
3492 static const XColor
*
3493 x_color_cells (dpy
, ncells
)
3497 struct x_display_info
*dpyinfo
= x_display_info_for_display (dpy
);
3499 if (dpyinfo
->color_cells
== NULL
)
3501 Screen
*screen
= dpyinfo
->screen
;
3504 dpyinfo
->ncolor_cells
3505 = XDisplayCells (dpy
, XScreenNumberOfScreen (screen
));
3506 dpyinfo
->color_cells
3507 = (XColor
*) xmalloc (dpyinfo
->ncolor_cells
3508 * sizeof *dpyinfo
->color_cells
);
3510 for (i
= 0; i
< dpyinfo
->ncolor_cells
; ++i
)
3511 dpyinfo
->color_cells
[i
].pixel
= i
;
3513 XQueryColors (dpy
, dpyinfo
->cmap
,
3514 dpyinfo
->color_cells
, dpyinfo
->ncolor_cells
);
3517 *ncells
= dpyinfo
->ncolor_cells
;
3518 return dpyinfo
->color_cells
;
3522 /* On frame F, translate pixel colors to RGB values for the NCOLORS
3523 colors in COLORS. Use cached information, if available. */
3526 x_query_colors (f
, colors
, ncolors
)
3531 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
3533 if (dpyinfo
->color_cells
)
3536 for (i
= 0; i
< ncolors
; ++i
)
3538 unsigned long pixel
= colors
[i
].pixel
;
3539 xassert (pixel
< dpyinfo
->ncolor_cells
);
3540 xassert (dpyinfo
->color_cells
[pixel
].pixel
== pixel
);
3541 colors
[i
] = dpyinfo
->color_cells
[pixel
];
3545 XQueryColors (FRAME_X_DISPLAY (f
), FRAME_X_COLORMAP (f
), colors
, ncolors
);
3549 /* On frame F, translate pixel color to RGB values for the color in
3550 COLOR. Use cached information, if available. */
3553 x_query_color (f
, color
)
3557 x_query_colors (f
, color
, 1);
3561 /* Allocate the color COLOR->pixel on DISPLAY, colormap CMAP. If an
3562 exact match can't be allocated, try the nearest color available.
3563 Value is non-zero if successful. Set *COLOR to the color
3567 x_alloc_nearest_color_1 (dpy
, cmap
, color
)
3574 rc
= XAllocColor (dpy
, cmap
, color
);
3577 /* If we got to this point, the colormap is full, so we're going
3578 to try to get the next closest color. The algorithm used is
3579 a least-squares matching, which is what X uses for closest
3580 color matching with StaticColor visuals. */
3582 unsigned long nearest_delta
= ~0;
3584 const XColor
*cells
= x_color_cells (dpy
, &ncells
);
3586 for (nearest
= i
= 0; i
< ncells
; ++i
)
3588 long dred
= (color
->red
>> 8) - (cells
[i
].red
>> 8);
3589 long dgreen
= (color
->green
>> 8) - (cells
[i
].green
>> 8);
3590 long dblue
= (color
->blue
>> 8) - (cells
[i
].blue
>> 8);
3591 unsigned long delta
= dred
* dred
+ dgreen
* dgreen
+ dblue
* dblue
;
3593 if (delta
< nearest_delta
)
3596 nearest_delta
= delta
;
3600 color
->red
= cells
[nearest
].red
;
3601 color
->green
= cells
[nearest
].green
;
3602 color
->blue
= cells
[nearest
].blue
;
3603 rc
= XAllocColor (dpy
, cmap
, color
);
3607 /* If allocation succeeded, and the allocated pixel color is not
3608 equal to a cached pixel color recorded earlier, there was a
3609 change in the colormap, so clear the color cache. */
3610 struct x_display_info
*dpyinfo
= x_display_info_for_display (dpy
);
3611 XColor
*cached_color
;
3613 if (dpyinfo
->color_cells
3614 && (cached_color
= &dpyinfo
->color_cells
[color
->pixel
],
3615 (cached_color
->red
!= color
->red
3616 || cached_color
->blue
!= color
->blue
3617 || cached_color
->green
!= color
->green
)))
3619 xfree (dpyinfo
->color_cells
);
3620 dpyinfo
->color_cells
= NULL
;
3621 dpyinfo
->ncolor_cells
= 0;
3625 #ifdef DEBUG_X_COLORS
3627 register_color (color
->pixel
);
3628 #endif /* DEBUG_X_COLORS */
3634 /* Allocate the color COLOR->pixel on frame F, colormap CMAP. If an
3635 exact match can't be allocated, try the nearest color available.
3636 Value is non-zero if successful. Set *COLOR to the color
3640 x_alloc_nearest_color (f
, cmap
, color
)
3645 gamma_correct (f
, color
);
3646 return x_alloc_nearest_color_1 (FRAME_X_DISPLAY (f
), cmap
, color
);
3650 /* Allocate color PIXEL on frame F. PIXEL must already be allocated.
3651 It's necessary to do this instead of just using PIXEL directly to
3652 get color reference counts right. */
3655 x_copy_color (f
, pixel
)
3657 unsigned long pixel
;
3661 color
.pixel
= pixel
;
3663 x_query_color (f
, &color
);
3664 XAllocColor (FRAME_X_DISPLAY (f
), FRAME_X_COLORMAP (f
), &color
);
3666 #ifdef DEBUG_X_COLORS
3667 register_color (pixel
);
3673 /* Allocate color PIXEL on display DPY. PIXEL must already be allocated.
3674 It's necessary to do this instead of just using PIXEL directly to
3675 get color reference counts right. */
3678 x_copy_dpy_color (dpy
, cmap
, pixel
)
3681 unsigned long pixel
;
3685 color
.pixel
= pixel
;
3687 XQueryColor (dpy
, cmap
, &color
);
3688 XAllocColor (dpy
, cmap
, &color
);
3690 #ifdef DEBUG_X_COLORS
3691 register_color (pixel
);
3697 /* Brightness beyond which a color won't have its highlight brightness
3700 Nominally, highlight colors for `3d' faces are calculated by
3701 brightening an object's color by a constant scale factor, but this
3702 doesn't yield good results for dark colors, so for colors who's
3703 brightness is less than this value (on a scale of 0-65535) have an
3704 use an additional additive factor.
3706 The value here is set so that the default menu-bar/mode-line color
3707 (grey75) will not have its highlights changed at all. */
3708 #define HIGHLIGHT_COLOR_DARK_BOOST_LIMIT 48000
3711 /* Allocate a color which is lighter or darker than *PIXEL by FACTOR
3712 or DELTA. Try a color with RGB values multiplied by FACTOR first.
3713 If this produces the same color as PIXEL, try a color where all RGB
3714 values have DELTA added. Return the allocated color in *PIXEL.
3715 DISPLAY is the X display, CMAP is the colormap to operate on.
3716 Value is non-zero if successful. */
3719 x_alloc_lighter_color (f
, display
, cmap
, pixel
, factor
, delta
)
3723 unsigned long *pixel
;
3731 /* Get RGB color values. */
3732 color
.pixel
= *pixel
;
3733 x_query_color (f
, &color
);
3735 /* Change RGB values by specified FACTOR. Avoid overflow! */
3736 xassert (factor
>= 0);
3737 new.red
= min (0xffff, factor
* color
.red
);
3738 new.green
= min (0xffff, factor
* color
.green
);
3739 new.blue
= min (0xffff, factor
* color
.blue
);
3741 /* Calculate brightness of COLOR. */
3742 bright
= (2 * color
.red
+ 3 * color
.green
+ color
.blue
) / 6;
3744 /* We only boost colors that are darker than
3745 HIGHLIGHT_COLOR_DARK_BOOST_LIMIT. */
3746 if (bright
< HIGHLIGHT_COLOR_DARK_BOOST_LIMIT
)
3747 /* Make an additive adjustment to NEW, because it's dark enough so
3748 that scaling by FACTOR alone isn't enough. */
3750 /* How far below the limit this color is (0 - 1, 1 being darker). */
3751 double dimness
= 1 - (double)bright
/ HIGHLIGHT_COLOR_DARK_BOOST_LIMIT
;
3752 /* The additive adjustment. */
3753 int min_delta
= delta
* dimness
* factor
/ 2;
3757 new.red
= max (0, new.red
- min_delta
);
3758 new.green
= max (0, new.green
- min_delta
);
3759 new.blue
= max (0, new.blue
- min_delta
);
3763 new.red
= min (0xffff, min_delta
+ new.red
);
3764 new.green
= min (0xffff, min_delta
+ new.green
);
3765 new.blue
= min (0xffff, min_delta
+ new.blue
);
3769 /* Try to allocate the color. */
3770 success_p
= x_alloc_nearest_color (f
, cmap
, &new);
3773 if (new.pixel
== *pixel
)
3775 /* If we end up with the same color as before, try adding
3776 delta to the RGB values. */
3777 x_free_colors (f
, &new.pixel
, 1);
3779 new.red
= min (0xffff, delta
+ color
.red
);
3780 new.green
= min (0xffff, delta
+ color
.green
);
3781 new.blue
= min (0xffff, delta
+ color
.blue
);
3782 success_p
= x_alloc_nearest_color (f
, cmap
, &new);
3793 /* Set up the foreground color for drawing relief lines of glyph
3794 string S. RELIEF is a pointer to a struct relief containing the GC
3795 with which lines will be drawn. Use a color that is FACTOR or
3796 DELTA lighter or darker than the relief's background which is found
3797 in S->f->output_data.x->relief_background. If such a color cannot
3798 be allocated, use DEFAULT_PIXEL, instead. */
3801 x_setup_relief_color (f
, relief
, factor
, delta
, default_pixel
)
3803 struct relief
*relief
;
3806 unsigned long default_pixel
;
3809 struct x_output
*di
= f
->output_data
.x
;
3810 unsigned long mask
= GCForeground
| GCLineWidth
| GCGraphicsExposures
;
3811 unsigned long pixel
;
3812 unsigned long background
= di
->relief_background
;
3813 Colormap cmap
= FRAME_X_COLORMAP (f
);
3814 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
3815 Display
*dpy
= FRAME_X_DISPLAY (f
);
3817 xgcv
.graphics_exposures
= False
;
3818 xgcv
.line_width
= 1;
3820 /* Free previously allocated color. The color cell will be reused
3821 when it has been freed as many times as it was allocated, so this
3822 doesn't affect faces using the same colors. */
3824 && relief
->allocated_p
)
3826 x_free_colors (f
, &relief
->pixel
, 1);
3827 relief
->allocated_p
= 0;
3830 /* Allocate new color. */
3831 xgcv
.foreground
= default_pixel
;
3833 if (dpyinfo
->n_planes
!= 1
3834 && x_alloc_lighter_color (f
, dpy
, cmap
, &pixel
, factor
, delta
))
3836 relief
->allocated_p
= 1;
3837 xgcv
.foreground
= relief
->pixel
= pixel
;
3840 if (relief
->gc
== 0)
3842 xgcv
.stipple
= dpyinfo
->gray
;
3844 relief
->gc
= XCreateGC (dpy
, FRAME_X_WINDOW (f
), mask
, &xgcv
);
3847 XChangeGC (dpy
, relief
->gc
, mask
, &xgcv
);
3851 /* Set up colors for the relief lines around glyph string S. */
3854 x_setup_relief_colors (s
)
3855 struct glyph_string
*s
;
3857 struct x_output
*di
= s
->f
->output_data
.x
;
3858 unsigned long color
;
3860 if (s
->face
->use_box_color_for_shadows_p
)
3861 color
= s
->face
->box_color
;
3862 else if (s
->first_glyph
->type
== IMAGE_GLYPH
3864 && !IMAGE_BACKGROUND_TRANSPARENT (s
->img
, s
->f
, 0))
3865 color
= IMAGE_BACKGROUND (s
->img
, s
->f
, 0);
3870 /* Get the background color of the face. */
3871 XGetGCValues (s
->display
, s
->gc
, GCBackground
, &xgcv
);
3872 color
= xgcv
.background
;
3875 if (di
->white_relief
.gc
== 0
3876 || color
!= di
->relief_background
)
3878 di
->relief_background
= color
;
3879 x_setup_relief_color (s
->f
, &di
->white_relief
, 1.2, 0x8000,
3880 WHITE_PIX_DEFAULT (s
->f
));
3881 x_setup_relief_color (s
->f
, &di
->black_relief
, 0.6, 0x4000,
3882 BLACK_PIX_DEFAULT (s
->f
));
3887 /* Draw a relief on frame F inside the rectangle given by LEFT_X,
3888 TOP_Y, RIGHT_X, and BOTTOM_Y. WIDTH is the thickness of the relief
3889 to draw, it must be >= 0. RAISED_P non-zero means draw a raised
3890 relief. LEFT_P non-zero means draw a relief on the left side of
3891 the rectangle. RIGHT_P non-zero means draw a relief on the right
3892 side of the rectangle. CLIP_RECT is the clipping rectangle to use
3896 x_draw_relief_rect (f
, left_x
, top_y
, right_x
, bottom_y
, width
,
3897 raised_p
, left_p
, right_p
, clip_rect
)
3899 int left_x
, top_y
, right_x
, bottom_y
, left_p
, right_p
, raised_p
;
3900 XRectangle
*clip_rect
;
3902 Display
*dpy
= FRAME_X_DISPLAY (f
);
3903 Window window
= FRAME_X_WINDOW (f
);
3908 gc
= f
->output_data
.x
->white_relief
.gc
;
3910 gc
= f
->output_data
.x
->black_relief
.gc
;
3911 XSetClipRectangles (dpy
, gc
, 0, 0, clip_rect
, 1, Unsorted
);
3914 for (i
= 0; i
< width
; ++i
)
3915 XDrawLine (dpy
, window
, gc
,
3916 left_x
+ i
* left_p
, top_y
+ i
,
3917 right_x
+ 1 - i
* right_p
, top_y
+ i
);
3921 for (i
= 0; i
< width
; ++i
)
3922 XDrawLine (dpy
, window
, gc
,
3923 left_x
+ i
, top_y
+ i
, left_x
+ i
, bottom_y
- i
+ 1);
3925 XSetClipMask (dpy
, gc
, None
);
3927 gc
= f
->output_data
.x
->black_relief
.gc
;
3929 gc
= f
->output_data
.x
->white_relief
.gc
;
3930 XSetClipRectangles (dpy
, gc
, 0, 0, clip_rect
, 1, Unsorted
);
3933 for (i
= 0; i
< width
; ++i
)
3934 XDrawLine (dpy
, window
, gc
,
3935 left_x
+ i
* left_p
, bottom_y
- i
,
3936 right_x
+ 1 - i
* right_p
, bottom_y
- i
);
3940 for (i
= 0; i
< width
; ++i
)
3941 XDrawLine (dpy
, window
, gc
,
3942 right_x
- i
, top_y
+ i
+ 1, right_x
- i
, bottom_y
- i
);
3944 XSetClipMask (dpy
, gc
, None
);
3948 /* Draw a box on frame F inside the rectangle given by LEFT_X, TOP_Y,
3949 RIGHT_X, and BOTTOM_Y. WIDTH is the thickness of the lines to
3950 draw, it must be >= 0. LEFT_P non-zero means draw a line on the
3951 left side of the rectangle. RIGHT_P non-zero means draw a line
3952 on the right side of the rectangle. CLIP_RECT is the clipping
3953 rectangle to use when drawing. */
3956 x_draw_box_rect (s
, left_x
, top_y
, right_x
, bottom_y
, width
,
3957 left_p
, right_p
, clip_rect
)
3958 struct glyph_string
*s
;
3959 int left_x
, top_y
, right_x
, bottom_y
, left_p
, right_p
;
3960 XRectangle
*clip_rect
;
3964 XGetGCValues (s
->display
, s
->gc
, GCForeground
, &xgcv
);
3965 XSetForeground (s
->display
, s
->gc
, s
->face
->box_color
);
3966 XSetClipRectangles (s
->display
, s
->gc
, 0, 0, clip_rect
, 1, Unsorted
);
3969 XFillRectangle (s
->display
, s
->window
, s
->gc
,
3970 left_x
, top_y
, right_x
- left_x
+ 1, width
);
3974 XFillRectangle (s
->display
, s
->window
, s
->gc
,
3975 left_x
, top_y
, width
, bottom_y
- top_y
+ 1);
3978 XFillRectangle (s
->display
, s
->window
, s
->gc
,
3979 left_x
, bottom_y
- width
+ 1, right_x
- left_x
+ 1, width
);
3983 XFillRectangle (s
->display
, s
->window
, s
->gc
,
3984 right_x
- width
+ 1, top_y
, width
, bottom_y
- top_y
+ 1);
3986 XSetForeground (s
->display
, s
->gc
, xgcv
.foreground
);
3987 XSetClipMask (s
->display
, s
->gc
, None
);
3991 /* Draw a box around glyph string S. */
3994 x_draw_glyph_string_box (s
)
3995 struct glyph_string
*s
;
3997 int width
, left_x
, right_x
, top_y
, bottom_y
, last_x
, raised_p
;
3998 int left_p
, right_p
;
3999 struct glyph
*last_glyph
;
4000 XRectangle clip_rect
;
4002 last_x
= window_box_right (s
->w
, s
->area
);
4003 if (s
->row
->full_width_p
4004 && !s
->w
->pseudo_window_p
)
4006 last_x
+= FRAME_X_RIGHT_FRINGE_WIDTH (s
->f
);
4007 if (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (s
->f
))
4008 last_x
+= FRAME_SCROLL_BAR_WIDTH (s
->f
) * CANON_X_UNIT (s
->f
);
4011 /* The glyph that may have a right box line. */
4012 last_glyph
= (s
->cmp
|| s
->img
4014 : s
->first_glyph
+ s
->nchars
- 1);
4016 width
= abs (s
->face
->box_line_width
);
4017 raised_p
= s
->face
->box
== FACE_RAISED_BOX
;
4019 right_x
= (s
->row
->full_width_p
&& s
->extends_to_end_of_line_p
4021 : min (last_x
, s
->x
+ s
->background_width
) - 1);
4023 bottom_y
= top_y
+ s
->height
- 1;
4025 left_p
= (s
->first_glyph
->left_box_line_p
4026 || (s
->hl
== DRAW_MOUSE_FACE
4028 || s
->prev
->hl
!= s
->hl
)));
4029 right_p
= (last_glyph
->right_box_line_p
4030 || (s
->hl
== DRAW_MOUSE_FACE
4032 || s
->next
->hl
!= s
->hl
)));
4034 x_get_glyph_string_clip_rect (s
, &clip_rect
);
4036 if (s
->face
->box
== FACE_SIMPLE_BOX
)
4037 x_draw_box_rect (s
, left_x
, top_y
, right_x
, bottom_y
, width
,
4038 left_p
, right_p
, &clip_rect
);
4041 x_setup_relief_colors (s
);
4042 x_draw_relief_rect (s
->f
, left_x
, top_y
, right_x
, bottom_y
,
4043 width
, raised_p
, left_p
, right_p
, &clip_rect
);
4048 /* Draw foreground of image glyph string S. */
4051 x_draw_image_foreground (s
)
4052 struct glyph_string
*s
;
4055 int y
= s
->ybase
- image_ascent (s
->img
, s
->face
);
4057 /* If first glyph of S has a left box line, start drawing it to the
4058 right of that line. */
4059 if (s
->face
->box
!= FACE_NO_BOX
4060 && s
->first_glyph
->left_box_line_p
)
4061 x
= s
->x
+ abs (s
->face
->box_line_width
);
4065 /* If there is a margin around the image, adjust x- and y-position
4067 x
+= s
->img
->hmargin
;
4068 y
+= s
->img
->vmargin
;
4074 /* We can't set both a clip mask and use XSetClipRectangles
4075 because the latter also sets a clip mask. We also can't
4076 trust on the shape extension to be available
4077 (XShapeCombineRegion). So, compute the rectangle to draw
4079 unsigned long mask
= (GCClipMask
| GCClipXOrigin
| GCClipYOrigin
4082 XRectangle clip_rect
, image_rect
, r
;
4084 xgcv
.clip_mask
= s
->img
->mask
;
4085 xgcv
.clip_x_origin
= x
;
4086 xgcv
.clip_y_origin
= y
;
4087 xgcv
.function
= GXcopy
;
4088 XChangeGC (s
->display
, s
->gc
, mask
, &xgcv
);
4090 x_get_glyph_string_clip_rect (s
, &clip_rect
);
4093 image_rect
.width
= s
->img
->width
;
4094 image_rect
.height
= s
->img
->height
;
4095 if (x_intersect_rectangles (&clip_rect
, &image_rect
, &r
))
4096 XCopyArea (s
->display
, s
->img
->pixmap
, s
->window
, s
->gc
,
4097 r
.x
- x
, r
.y
- y
, r
.width
, r
.height
, r
.x
, r
.y
);
4101 XRectangle clip_rect
, image_rect
, r
;
4103 x_get_glyph_string_clip_rect (s
, &clip_rect
);
4106 image_rect
.width
= s
->img
->width
;
4107 image_rect
.height
= s
->img
->height
;
4108 if (x_intersect_rectangles (&clip_rect
, &image_rect
, &r
))
4109 XCopyArea (s
->display
, s
->img
->pixmap
, s
->window
, s
->gc
,
4110 r
.x
- x
, r
.y
- y
, r
.width
, r
.height
, r
.x
, r
.y
);
4112 /* When the image has a mask, we can expect that at
4113 least part of a mouse highlight or a block cursor will
4114 be visible. If the image doesn't have a mask, make
4115 a block cursor visible by drawing a rectangle around
4116 the image. I believe it's looking better if we do
4117 nothing here for mouse-face. */
4118 if (s
->hl
== DRAW_CURSOR
)
4120 int r
= s
->img
->relief
;
4122 XDrawRectangle (s
->display
, s
->window
, s
->gc
, x
- r
, y
- r
,
4123 s
->img
->width
+ r
*2 - 1, s
->img
->height
+ r
*2 - 1);
4128 /* Draw a rectangle if image could not be loaded. */
4129 XDrawRectangle (s
->display
, s
->window
, s
->gc
, x
, y
,
4130 s
->img
->width
- 1, s
->img
->height
- 1);
4134 /* Draw a relief around the image glyph string S. */
4137 x_draw_image_relief (s
)
4138 struct glyph_string
*s
;
4140 int x0
, y0
, x1
, y1
, thick
, raised_p
;
4143 int y
= s
->ybase
- image_ascent (s
->img
, s
->face
);
4145 /* If first glyph of S has a left box line, start drawing it to the
4146 right of that line. */
4147 if (s
->face
->box
!= FACE_NO_BOX
4148 && s
->first_glyph
->left_box_line_p
)
4149 x
= s
->x
+ abs (s
->face
->box_line_width
);
4153 /* If there is a margin around the image, adjust x- and y-position
4155 x
+= s
->img
->hmargin
;
4156 y
+= s
->img
->vmargin
;
4158 if (s
->hl
== DRAW_IMAGE_SUNKEN
4159 || s
->hl
== DRAW_IMAGE_RAISED
)
4161 thick
= tool_bar_button_relief
>= 0 ? tool_bar_button_relief
: DEFAULT_TOOL_BAR_BUTTON_RELIEF
;
4162 raised_p
= s
->hl
== DRAW_IMAGE_RAISED
;
4166 thick
= abs (s
->img
->relief
);
4167 raised_p
= s
->img
->relief
> 0;
4172 x1
= x
+ s
->img
->width
+ thick
- 1;
4173 y1
= y
+ s
->img
->height
+ thick
- 1;
4175 x_setup_relief_colors (s
);
4176 x_get_glyph_string_clip_rect (s
, &r
);
4177 x_draw_relief_rect (s
->f
, x0
, y0
, x1
, y1
, thick
, raised_p
, 1, 1, &r
);
4181 /* Draw the foreground of image glyph string S to PIXMAP. */
4184 x_draw_image_foreground_1 (s
, pixmap
)
4185 struct glyph_string
*s
;
4189 int y
= s
->ybase
- s
->y
- image_ascent (s
->img
, s
->face
);
4191 /* If first glyph of S has a left box line, start drawing it to the
4192 right of that line. */
4193 if (s
->face
->box
!= FACE_NO_BOX
4194 && s
->first_glyph
->left_box_line_p
)
4195 x
= abs (s
->face
->box_line_width
);
4199 /* If there is a margin around the image, adjust x- and y-position
4201 x
+= s
->img
->hmargin
;
4202 y
+= s
->img
->vmargin
;
4208 /* We can't set both a clip mask and use XSetClipRectangles
4209 because the latter also sets a clip mask. We also can't
4210 trust on the shape extension to be available
4211 (XShapeCombineRegion). So, compute the rectangle to draw
4213 unsigned long mask
= (GCClipMask
| GCClipXOrigin
| GCClipYOrigin
4217 xgcv
.clip_mask
= s
->img
->mask
;
4218 xgcv
.clip_x_origin
= x
;
4219 xgcv
.clip_y_origin
= y
;
4220 xgcv
.function
= GXcopy
;
4221 XChangeGC (s
->display
, s
->gc
, mask
, &xgcv
);
4223 XCopyArea (s
->display
, s
->img
->pixmap
, pixmap
, s
->gc
,
4224 0, 0, s
->img
->width
, s
->img
->height
, x
, y
);
4225 XSetClipMask (s
->display
, s
->gc
, None
);
4229 XCopyArea (s
->display
, s
->img
->pixmap
, pixmap
, s
->gc
,
4230 0, 0, s
->img
->width
, s
->img
->height
, x
, y
);
4232 /* When the image has a mask, we can expect that at
4233 least part of a mouse highlight or a block cursor will
4234 be visible. If the image doesn't have a mask, make
4235 a block cursor visible by drawing a rectangle around
4236 the image. I believe it's looking better if we do
4237 nothing here for mouse-face. */
4238 if (s
->hl
== DRAW_CURSOR
)
4240 int r
= s
->img
->relief
;
4242 XDrawRectangle (s
->display
, s
->window
, s
->gc
, x
- r
, y
- r
,
4243 s
->img
->width
+ r
*2 - 1, s
->img
->height
+ r
*2 - 1);
4248 /* Draw a rectangle if image could not be loaded. */
4249 XDrawRectangle (s
->display
, pixmap
, s
->gc
, x
, y
,
4250 s
->img
->width
- 1, s
->img
->height
- 1);
4254 /* Draw part of the background of glyph string S. X, Y, W, and H
4255 give the rectangle to draw. */
4258 x_draw_glyph_string_bg_rect (s
, x
, y
, w
, h
)
4259 struct glyph_string
*s
;
4264 /* Fill background with a stipple pattern. */
4265 XSetFillStyle (s
->display
, s
->gc
, FillOpaqueStippled
);
4266 XFillRectangle (s
->display
, s
->window
, s
->gc
, x
, y
, w
, h
);
4267 XSetFillStyle (s
->display
, s
->gc
, FillSolid
);
4270 x_clear_glyph_string_rect (s
, x
, y
, w
, h
);
4274 /* Draw image glyph string S.
4277 s->x +-------------------------
4280 | +-------------------------
4283 | | +-------------------
4289 x_draw_image_glyph_string (s
)
4290 struct glyph_string
*s
;
4293 int box_line_hwidth
= abs (s
->face
->box_line_width
);
4294 int box_line_vwidth
= max (s
->face
->box_line_width
, 0);
4296 Pixmap pixmap
= None
;
4298 height
= s
->height
- 2 * box_line_vwidth
;
4300 /* Fill background with face under the image. Do it only if row is
4301 taller than image or if image has a clip mask to reduce
4303 s
->stippled_p
= s
->face
->stipple
!= 0;
4304 if (height
> s
->img
->height
4308 || s
->img
->pixmap
== 0
4309 || s
->width
!= s
->background_width
)
4311 if (box_line_hwidth
&& s
->first_glyph
->left_box_line_p
)
4312 x
= s
->x
+ box_line_hwidth
;
4316 y
= s
->y
+ box_line_vwidth
;
4320 /* Create a pixmap as large as the glyph string. Fill it
4321 with the background color. Copy the image to it, using
4322 its mask. Copy the temporary pixmap to the display. */
4323 Screen
*screen
= FRAME_X_SCREEN (s
->f
);
4324 int depth
= DefaultDepthOfScreen (screen
);
4326 /* Create a pixmap as large as the glyph string. */
4327 pixmap
= XCreatePixmap (s
->display
, s
->window
,
4328 s
->background_width
,
4331 /* Don't clip in the following because we're working on the
4333 XSetClipMask (s
->display
, s
->gc
, None
);
4335 /* Fill the pixmap with the background color/stipple. */
4338 /* Fill background with a stipple pattern. */
4339 XSetFillStyle (s
->display
, s
->gc
, FillOpaqueStippled
);
4340 XFillRectangle (s
->display
, pixmap
, s
->gc
,
4341 0, 0, s
->background_width
, s
->height
);
4342 XSetFillStyle (s
->display
, s
->gc
, FillSolid
);
4347 XGetGCValues (s
->display
, s
->gc
, GCForeground
| GCBackground
,
4349 XSetForeground (s
->display
, s
->gc
, xgcv
.background
);
4350 XFillRectangle (s
->display
, pixmap
, s
->gc
,
4351 0, 0, s
->background_width
, s
->height
);
4352 XSetForeground (s
->display
, s
->gc
, xgcv
.foreground
);
4356 x_draw_glyph_string_bg_rect (s
, x
, y
, s
->background_width
, height
);
4358 s
->background_filled_p
= 1;
4361 /* Draw the foreground. */
4364 x_draw_image_foreground_1 (s
, pixmap
);
4365 x_set_glyph_string_clipping (s
);
4366 XCopyArea (s
->display
, pixmap
, s
->window
, s
->gc
,
4367 0, 0, s
->background_width
, s
->height
, s
->x
, s
->y
);
4368 XFreePixmap (s
->display
, pixmap
);
4371 x_draw_image_foreground (s
);
4373 /* If we must draw a relief around the image, do it. */
4375 || s
->hl
== DRAW_IMAGE_RAISED
4376 || s
->hl
== DRAW_IMAGE_SUNKEN
)
4377 x_draw_image_relief (s
);
4381 /* Draw stretch glyph string S. */
4384 x_draw_stretch_glyph_string (s
)
4385 struct glyph_string
*s
;
4387 xassert (s
->first_glyph
->type
== STRETCH_GLYPH
);
4388 s
->stippled_p
= s
->face
->stipple
!= 0;
4390 if (s
->hl
== DRAW_CURSOR
4391 && !x_stretch_cursor_p
)
4393 /* If `x-stretch-block-cursor' is nil, don't draw a block cursor
4394 as wide as the stretch glyph. */
4395 int width
= min (CANON_X_UNIT (s
->f
), s
->background_width
);
4398 x_draw_glyph_string_bg_rect (s
, s
->x
, s
->y
, width
, s
->height
);
4400 /* Clear rest using the GC of the original non-cursor face. */
4401 if (width
< s
->background_width
)
4403 int x
= s
->x
+ width
, y
= s
->y
;
4404 int w
= s
->background_width
- width
, h
= s
->height
;
4408 if (s
->row
->mouse_face_p
4409 && cursor_in_mouse_face_p (s
->w
))
4411 x_set_mouse_face_gc (s
);
4417 x_get_glyph_string_clip_rect (s
, &r
);
4418 XSetClipRectangles (s
->display
, gc
, 0, 0, &r
, 1, Unsorted
);
4420 if (s
->face
->stipple
)
4422 /* Fill background with a stipple pattern. */
4423 XSetFillStyle (s
->display
, gc
, FillOpaqueStippled
);
4424 XFillRectangle (s
->display
, s
->window
, gc
, x
, y
, w
, h
);
4425 XSetFillStyle (s
->display
, gc
, FillSolid
);
4430 XGetGCValues (s
->display
, gc
, GCForeground
| GCBackground
, &xgcv
);
4431 XSetForeground (s
->display
, gc
, xgcv
.background
);
4432 XFillRectangle (s
->display
, s
->window
, gc
, x
, y
, w
, h
);
4433 XSetForeground (s
->display
, gc
, xgcv
.foreground
);
4437 else if (!s
->background_filled_p
)
4438 x_draw_glyph_string_bg_rect (s
, s
->x
, s
->y
, s
->background_width
,
4441 s
->background_filled_p
= 1;
4445 /* Draw glyph string S. */
4448 x_draw_glyph_string (s
)
4449 struct glyph_string
*s
;
4451 int relief_drawn_p
= 0;
4453 /* If S draws into the background of its successor, draw the
4454 background of the successor first so that S can draw into it.
4455 This makes S->next use XDrawString instead of XDrawImageString. */
4456 if (s
->next
&& s
->right_overhang
&& !s
->for_overlaps_p
)
4458 xassert (s
->next
->img
== NULL
);
4459 x_set_glyph_string_gc (s
->next
);
4460 x_set_glyph_string_clipping (s
->next
);
4461 x_draw_glyph_string_background (s
->next
, 1);
4464 /* Set up S->gc, set clipping and draw S. */
4465 x_set_glyph_string_gc (s
);
4467 /* Draw relief (if any) in advance for char/composition so that the
4468 glyph string can be drawn over it. */
4469 if (!s
->for_overlaps_p
4470 && s
->face
->box
!= FACE_NO_BOX
4471 && (s
->first_glyph
->type
== CHAR_GLYPH
4472 || s
->first_glyph
->type
== COMPOSITE_GLYPH
))
4475 x_set_glyph_string_clipping (s
);
4476 x_draw_glyph_string_background (s
, 1);
4477 x_draw_glyph_string_box (s
);
4478 x_set_glyph_string_clipping (s
);
4482 x_set_glyph_string_clipping (s
);
4484 switch (s
->first_glyph
->type
)
4487 x_draw_image_glyph_string (s
);
4491 x_draw_stretch_glyph_string (s
);
4495 if (s
->for_overlaps_p
)
4496 s
->background_filled_p
= 1;
4498 x_draw_glyph_string_background (s
, 0);
4499 x_draw_glyph_string_foreground (s
);
4502 case COMPOSITE_GLYPH
:
4503 if (s
->for_overlaps_p
|| s
->gidx
> 0)
4504 s
->background_filled_p
= 1;
4506 x_draw_glyph_string_background (s
, 1);
4507 x_draw_composite_glyph_string_foreground (s
);
4514 if (!s
->for_overlaps_p
)
4516 /* Draw underline. */
4517 if (s
->face
->underline_p
)
4519 unsigned long tem
, h
;
4522 /* Get the underline thickness. Default is 1 pixel. */
4523 if (!XGetFontProperty (s
->font
, XA_UNDERLINE_THICKNESS
, &h
))
4526 /* Get the underline position. This is the recommended
4527 vertical offset in pixels from the baseline to the top of
4528 the underline. This is a signed value according to the
4529 specs, and its default is
4531 ROUND ((maximum descent) / 2), with
4532 ROUND(x) = floor (x + 0.5) */
4534 if (x_use_underline_position_properties
4535 && XGetFontProperty (s
->font
, XA_UNDERLINE_POSITION
, &tem
))
4536 y
= s
->ybase
+ (long) tem
;
4537 else if (s
->face
->font
)
4538 y
= s
->ybase
+ (s
->face
->font
->max_bounds
.descent
+ 1) / 2;
4540 y
= s
->y
+ s
->height
- h
;
4542 if (s
->face
->underline_defaulted_p
)
4543 XFillRectangle (s
->display
, s
->window
, s
->gc
,
4544 s
->x
, y
, s
->width
, h
);
4548 XGetGCValues (s
->display
, s
->gc
, GCForeground
, &xgcv
);
4549 XSetForeground (s
->display
, s
->gc
, s
->face
->underline_color
);
4550 XFillRectangle (s
->display
, s
->window
, s
->gc
,
4551 s
->x
, y
, s
->width
, h
);
4552 XSetForeground (s
->display
, s
->gc
, xgcv
.foreground
);
4556 /* Draw overline. */
4557 if (s
->face
->overline_p
)
4559 unsigned long dy
= 0, h
= 1;
4561 if (s
->face
->overline_color_defaulted_p
)
4562 XFillRectangle (s
->display
, s
->window
, s
->gc
, s
->x
, s
->y
+ dy
,
4567 XGetGCValues (s
->display
, s
->gc
, GCForeground
, &xgcv
);
4568 XSetForeground (s
->display
, s
->gc
, s
->face
->overline_color
);
4569 XFillRectangle (s
->display
, s
->window
, s
->gc
, s
->x
, s
->y
+ dy
,
4571 XSetForeground (s
->display
, s
->gc
, xgcv
.foreground
);
4575 /* Draw strike-through. */
4576 if (s
->face
->strike_through_p
)
4578 unsigned long h
= 1;
4579 unsigned long dy
= (s
->height
- h
) / 2;
4581 if (s
->face
->strike_through_color_defaulted_p
)
4582 XFillRectangle (s
->display
, s
->window
, s
->gc
, s
->x
, s
->y
+ dy
,
4587 XGetGCValues (s
->display
, s
->gc
, GCForeground
, &xgcv
);
4588 XSetForeground (s
->display
, s
->gc
, s
->face
->strike_through_color
);
4589 XFillRectangle (s
->display
, s
->window
, s
->gc
, s
->x
, s
->y
+ dy
,
4591 XSetForeground (s
->display
, s
->gc
, xgcv
.foreground
);
4595 /* Draw relief if not yet drawn. */
4596 if (!relief_drawn_p
&& s
->face
->box
!= FACE_NO_BOX
)
4597 x_draw_glyph_string_box (s
);
4600 /* Reset clipping. */
4601 XSetClipMask (s
->display
, s
->gc
, None
);
4605 static int x_fill_composite_glyph_string
P_ ((struct glyph_string
*,
4606 struct face
**, int));
4609 /* Fill glyph string S with composition components specified by S->cmp.
4611 FACES is an array of faces for all components of this composition.
4612 S->gidx is the index of the first component for S.
4613 OVERLAPS_P non-zero means S should draw the foreground only, and
4614 use its physical height for clipping.
4616 Value is the index of a component not in S. */
4619 x_fill_composite_glyph_string (s
, faces
, overlaps_p
)
4620 struct glyph_string
*s
;
4621 struct face
**faces
;
4628 s
->for_overlaps_p
= overlaps_p
;
4630 s
->face
= faces
[s
->gidx
];
4631 s
->font
= s
->face
->font
;
4632 s
->font_info
= FONT_INFO_FROM_ID (s
->f
, s
->face
->font_info_id
);
4634 /* For all glyphs of this composition, starting at the offset
4635 S->gidx, until we reach the end of the definition or encounter a
4636 glyph that requires the different face, add it to S. */
4638 for (i
= s
->gidx
+ 1; i
< s
->cmp
->glyph_len
&& faces
[i
] == s
->face
; ++i
)
4641 /* All glyph strings for the same composition has the same width,
4642 i.e. the width set for the first component of the composition. */
4644 s
->width
= s
->first_glyph
->pixel_width
;
4646 /* If the specified font could not be loaded, use the frame's
4647 default font, but record the fact that we couldn't load it in
4648 the glyph string so that we can draw rectangles for the
4649 characters of the glyph string. */
4650 if (s
->font
== NULL
)
4652 s
->font_not_found_p
= 1;
4653 s
->font
= FRAME_FONT (s
->f
);
4656 /* Adjust base line for subscript/superscript text. */
4657 s
->ybase
+= s
->first_glyph
->voffset
;
4659 xassert (s
->face
&& s
->face
->gc
);
4661 /* This glyph string must always be drawn with 16-bit functions. */
4664 return s
->gidx
+ s
->nchars
;
4668 /* Fill glyph string S from a sequence of character glyphs.
4670 FACE_ID is the face id of the string. START is the index of the
4671 first glyph to consider, END is the index of the last + 1.
4672 OVERLAPS_P non-zero means S should draw the foreground only, and
4673 use its physical height for clipping.
4675 Value is the index of the first glyph not in S. */
4678 x_fill_glyph_string (s
, face_id
, start
, end
, overlaps_p
)
4679 struct glyph_string
*s
;
4681 int start
, end
, overlaps_p
;
4683 struct glyph
*glyph
, *last
;
4685 int glyph_not_available_p
;
4687 xassert (s
->f
== XFRAME (s
->w
->frame
));
4688 xassert (s
->nchars
== 0);
4689 xassert (start
>= 0 && end
> start
);
4691 s
->for_overlaps_p
= overlaps_p
,
4692 glyph
= s
->row
->glyphs
[s
->area
] + start
;
4693 last
= s
->row
->glyphs
[s
->area
] + end
;
4694 voffset
= glyph
->voffset
;
4696 glyph_not_available_p
= glyph
->glyph_not_available_p
;
4699 && glyph
->type
== CHAR_GLYPH
4700 && glyph
->voffset
== voffset
4701 /* Same face id implies same font, nowadays. */
4702 && glyph
->face_id
== face_id
4703 && glyph
->glyph_not_available_p
== glyph_not_available_p
)
4707 s
->face
= x_get_glyph_face_and_encoding (s
->f
, glyph
,
4708 s
->char2b
+ s
->nchars
,
4710 s
->two_byte_p
= two_byte_p
;
4712 xassert (s
->nchars
<= end
- start
);
4713 s
->width
+= glyph
->pixel_width
;
4717 s
->font
= s
->face
->font
;
4718 s
->font_info
= FONT_INFO_FROM_ID (s
->f
, s
->face
->font_info_id
);
4720 /* If the specified font could not be loaded, use the frame's font,
4721 but record the fact that we couldn't load it in
4722 S->font_not_found_p so that we can draw rectangles for the
4723 characters of the glyph string. */
4724 if (s
->font
== NULL
|| glyph_not_available_p
)
4726 s
->font_not_found_p
= 1;
4727 s
->font
= FRAME_FONT (s
->f
);
4730 /* Adjust base line for subscript/superscript text. */
4731 s
->ybase
+= voffset
;
4733 xassert (s
->face
&& s
->face
->gc
);
4734 return glyph
- s
->row
->glyphs
[s
->area
];
4738 /* Fill glyph string S from image glyph S->first_glyph. */
4741 x_fill_image_glyph_string (s
)
4742 struct glyph_string
*s
;
4744 xassert (s
->first_glyph
->type
== IMAGE_GLYPH
);
4745 s
->img
= IMAGE_FROM_ID (s
->f
, s
->first_glyph
->u
.img_id
);
4747 s
->face
= FACE_FROM_ID (s
->f
, s
->first_glyph
->face_id
);
4748 s
->font
= s
->face
->font
;
4749 s
->width
= s
->first_glyph
->pixel_width
;
4751 /* Adjust base line for subscript/superscript text. */
4752 s
->ybase
+= s
->first_glyph
->voffset
;
4756 /* Fill glyph string S from a sequence of stretch glyphs.
4758 ROW is the glyph row in which the glyphs are found, AREA is the
4759 area within the row. START is the index of the first glyph to
4760 consider, END is the index of the last + 1.
4762 Value is the index of the first glyph not in S. */
4765 x_fill_stretch_glyph_string (s
, row
, area
, start
, end
)
4766 struct glyph_string
*s
;
4767 struct glyph_row
*row
;
4768 enum glyph_row_area area
;
4771 struct glyph
*glyph
, *last
;
4772 int voffset
, face_id
;
4774 xassert (s
->first_glyph
->type
== STRETCH_GLYPH
);
4776 glyph
= s
->row
->glyphs
[s
->area
] + start
;
4777 last
= s
->row
->glyphs
[s
->area
] + end
;
4778 face_id
= glyph
->face_id
;
4779 s
->face
= FACE_FROM_ID (s
->f
, face_id
);
4780 s
->font
= s
->face
->font
;
4781 s
->font_info
= FONT_INFO_FROM_ID (s
->f
, s
->face
->font_info_id
);
4782 s
->width
= glyph
->pixel_width
;
4783 voffset
= glyph
->voffset
;
4787 && glyph
->type
== STRETCH_GLYPH
4788 && glyph
->voffset
== voffset
4789 && glyph
->face_id
== face_id
);
4791 s
->width
+= glyph
->pixel_width
;
4793 /* Adjust base line for subscript/superscript text. */
4794 s
->ybase
+= voffset
;
4796 /* The case that face->gc == 0 is handled when drawing the glyph
4797 string by calling PREPARE_FACE_FOR_DISPLAY. */
4799 return glyph
- s
->row
->glyphs
[s
->area
];
4803 /* Initialize glyph string S. CHAR2B is a suitably allocated vector
4804 of XChar2b structures for S; it can't be allocated in
4805 x_init_glyph_string because it must be allocated via `alloca'. W
4806 is the window on which S is drawn. ROW and AREA are the glyph row
4807 and area within the row from which S is constructed. START is the
4808 index of the first glyph structure covered by S. HL is a
4809 face-override for drawing S. */
4812 x_init_glyph_string (s
, char2b
, w
, row
, area
, start
, hl
)
4813 struct glyph_string
*s
;
4816 struct glyph_row
*row
;
4817 enum glyph_row_area area
;
4819 enum draw_glyphs_face hl
;
4821 bzero (s
, sizeof *s
);
4823 s
->f
= XFRAME (w
->frame
);
4824 s
->display
= FRAME_X_DISPLAY (s
->f
);
4825 s
->window
= FRAME_X_WINDOW (s
->f
);
4830 s
->first_glyph
= row
->glyphs
[area
] + start
;
4831 s
->height
= row
->height
;
4832 s
->y
= WINDOW_TO_FRAME_PIXEL_Y (w
, row
->y
);
4834 /* Display the internal border below the tool-bar window. */
4835 if (s
->w
== XWINDOW (s
->f
->tool_bar_window
))
4836 s
->y
-= s
->f
->output_data
.x
->internal_border_width
;
4838 s
->ybase
= s
->y
+ row
->ascent
;
4842 /* Set background width of glyph string S. START is the index of the
4843 first glyph following S. LAST_X is the right-most x-position + 1
4844 in the drawing area. */
4847 x_set_glyph_string_background_width (s
, start
, last_x
)
4848 struct glyph_string
*s
;
4852 /* If the face of this glyph string has to be drawn to the end of
4853 the drawing area, set S->extends_to_end_of_line_p. */
4854 struct face
*default_face
= FACE_FROM_ID (s
->f
, DEFAULT_FACE_ID
);
4856 if (start
== s
->row
->used
[s
->area
]
4857 && s
->area
== TEXT_AREA
4858 && ((s
->hl
== DRAW_NORMAL_TEXT
4859 && (s
->row
->fill_line_p
4860 || s
->face
->background
!= default_face
->background
4861 || s
->face
->stipple
!= default_face
->stipple
4862 || s
->row
->mouse_face_p
))
4863 || s
->hl
== DRAW_MOUSE_FACE
4864 || ((s
->hl
== DRAW_IMAGE_RAISED
|| s
->hl
== DRAW_IMAGE_SUNKEN
)
4865 && s
->row
->fill_line_p
)))
4866 s
->extends_to_end_of_line_p
= 1;
4868 /* If S extends its face to the end of the line, set its
4869 background_width to the distance to the right edge of the drawing
4871 if (s
->extends_to_end_of_line_p
)
4872 s
->background_width
= last_x
- s
->x
+ 1;
4874 s
->background_width
= s
->width
;
4878 /* Add a glyph string for a stretch glyph to the list of strings
4879 between HEAD and TAIL. START is the index of the stretch glyph in
4880 row area AREA of glyph row ROW. END is the index of the last glyph
4881 in that glyph row area. X is the current output position assigned
4882 to the new glyph string constructed. HL overrides that face of the
4883 glyph; e.g. it is DRAW_CURSOR if a cursor has to be drawn. LAST_X
4884 is the right-most x-position of the drawing area. */
4886 /* SunOS 4 bundled cc, barfed on continuations in the arg lists here
4887 and below -- keep them on one line. */
4888 #define BUILD_STRETCH_GLYPH_STRING(W, ROW, AREA, START, END, HEAD, TAIL, HL, X, LAST_X) \
4891 s = (struct glyph_string *) alloca (sizeof *s); \
4892 x_init_glyph_string (s, NULL, W, ROW, AREA, START, HL); \
4893 START = x_fill_stretch_glyph_string (s, ROW, AREA, START, END); \
4894 x_append_glyph_string (&HEAD, &TAIL, s); \
4900 /* Add a glyph string for an image glyph to the list of strings
4901 between HEAD and TAIL. START is the index of the image glyph in
4902 row area AREA of glyph row ROW. END is the index of the last glyph
4903 in that glyph row area. X is the current output position assigned
4904 to the new glyph string constructed. HL overrides that face of the
4905 glyph; e.g. it is DRAW_CURSOR if a cursor has to be drawn. LAST_X
4906 is the right-most x-position of the drawing area. */
4908 #define BUILD_IMAGE_GLYPH_STRING(W, ROW, AREA, START, END, HEAD, TAIL, HL, X, LAST_X) \
4911 s = (struct glyph_string *) alloca (sizeof *s); \
4912 x_init_glyph_string (s, NULL, W, ROW, AREA, START, HL); \
4913 x_fill_image_glyph_string (s); \
4914 x_append_glyph_string (&HEAD, &TAIL, s); \
4921 /* Add a glyph string for a sequence of character glyphs to the list
4922 of strings between HEAD and TAIL. START is the index of the first
4923 glyph in row area AREA of glyph row ROW that is part of the new
4924 glyph string. END is the index of the last glyph in that glyph row
4925 area. X is the current output position assigned to the new glyph
4926 string constructed. HL overrides that face of the glyph; e.g. it
4927 is DRAW_CURSOR if a cursor has to be drawn. LAST_X is the
4928 right-most x-position of the drawing area. */
4930 #define BUILD_CHAR_GLYPH_STRINGS(W, ROW, AREA, START, END, HEAD, TAIL, HL, X, LAST_X, OVERLAPS_P) \
4936 c = (ROW)->glyphs[AREA][START].u.ch; \
4937 face_id = (ROW)->glyphs[AREA][START].face_id; \
4939 s = (struct glyph_string *) alloca (sizeof *s); \
4940 char2b = (XChar2b *) alloca ((END - START) * sizeof *char2b); \
4941 x_init_glyph_string (s, char2b, W, ROW, AREA, START, HL); \
4942 x_append_glyph_string (&HEAD, &TAIL, s); \
4944 START = x_fill_glyph_string (s, face_id, START, END, \
4950 /* Add a glyph string for a composite sequence to the list of strings
4951 between HEAD and TAIL. START is the index of the first glyph in
4952 row area AREA of glyph row ROW that is part of the new glyph
4953 string. END is the index of the last glyph in that glyph row area.
4954 X is the current output position assigned to the new glyph string
4955 constructed. HL overrides that face of the glyph; e.g. it is
4956 DRAW_CURSOR if a cursor has to be drawn. LAST_X is the right-most
4957 x-position of the drawing area. */
4959 #define BUILD_COMPOSITE_GLYPH_STRING(W, ROW, AREA, START, END, HEAD, TAIL, HL, X, LAST_X, OVERLAPS_P) \
4961 int cmp_id = (ROW)->glyphs[AREA][START].u.cmp_id; \
4962 int face_id = (ROW)->glyphs[AREA][START].face_id; \
4963 struct face *base_face = FACE_FROM_ID (XFRAME (w->frame), face_id); \
4964 struct composition *cmp = composition_table[cmp_id]; \
4965 int glyph_len = cmp->glyph_len; \
4967 struct face **faces; \
4968 struct glyph_string *first_s = NULL; \
4971 base_face = base_face->ascii_face; \
4972 char2b = (XChar2b *) alloca ((sizeof *char2b) * glyph_len); \
4973 faces = (struct face **) alloca ((sizeof *faces) * glyph_len); \
4974 /* At first, fill in `char2b' and `faces'. */ \
4975 for (n = 0; n < glyph_len; n++) \
4977 int c = COMPOSITION_GLYPH (cmp, n); \
4978 int this_face_id = FACE_FOR_CHAR (XFRAME (w->frame), base_face, c); \
4979 faces[n] = FACE_FROM_ID (XFRAME (w->frame), this_face_id); \
4980 x_get_char_face_and_encoding (XFRAME (w->frame), c, \
4981 this_face_id, char2b + n, 1, 1); \
4984 /* Make glyph_strings for each glyph sequence that is drawable by \
4985 the same face, and append them to HEAD/TAIL. */ \
4986 for (n = 0; n < cmp->glyph_len;) \
4988 s = (struct glyph_string *) alloca (sizeof *s); \
4989 x_init_glyph_string (s, char2b + n, W, ROW, AREA, START, HL); \
4990 x_append_glyph_string (&(HEAD), &(TAIL), s); \
4998 n = x_fill_composite_glyph_string (s, faces, OVERLAPS_P); \
5006 /* Build a list of glyph strings between HEAD and TAIL for the glyphs
5007 of AREA of glyph row ROW on window W between indices START and END.
5008 HL overrides the face for drawing glyph strings, e.g. it is
5009 DRAW_CURSOR to draw a cursor. X and LAST_X are start and end
5010 x-positions of the drawing area.
5012 This is an ugly monster macro construct because we must use alloca
5013 to allocate glyph strings (because x_draw_glyphs can be called
5016 #define BUILD_GLYPH_STRINGS(W, ROW, AREA, START, END, HEAD, TAIL, HL, X, LAST_X, OVERLAPS_P) \
5019 HEAD = TAIL = NULL; \
5020 while (START < END) \
5022 struct glyph *first_glyph = (ROW)->glyphs[AREA] + START; \
5023 switch (first_glyph->type) \
5026 BUILD_CHAR_GLYPH_STRINGS (W, ROW, AREA, START, END, HEAD, \
5027 TAIL, HL, X, LAST_X, \
5031 case COMPOSITE_GLYPH: \
5032 BUILD_COMPOSITE_GLYPH_STRING (W, ROW, AREA, START, END, \
5033 HEAD, TAIL, HL, X, LAST_X,\
5037 case STRETCH_GLYPH: \
5038 BUILD_STRETCH_GLYPH_STRING (W, ROW, AREA, START, END, \
5039 HEAD, TAIL, HL, X, LAST_X); \
5043 BUILD_IMAGE_GLYPH_STRING (W, ROW, AREA, START, END, HEAD, \
5044 TAIL, HL, X, LAST_X); \
5051 x_set_glyph_string_background_width (s, START, LAST_X); \
5058 /* Draw glyphs between START and END in AREA of ROW on window W,
5059 starting at x-position X. X is relative to AREA in W. HL is a
5060 face-override with the following meaning:
5062 DRAW_NORMAL_TEXT draw normally
5063 DRAW_CURSOR draw in cursor face
5064 DRAW_MOUSE_FACE draw in mouse face.
5065 DRAW_INVERSE_VIDEO draw in mode line face
5066 DRAW_IMAGE_SUNKEN draw an image with a sunken relief around it
5067 DRAW_IMAGE_RAISED draw an image with a raised relief around it
5069 If OVERLAPS_P is non-zero, draw only the foreground of characters
5070 and clip to the physical height of ROW.
5072 Value is the x-position reached, relative to AREA of W. */
5075 x_draw_glyphs (w
, x
, row
, area
, start
, end
, hl
, overlaps_p
)
5078 struct glyph_row
*row
;
5079 enum glyph_row_area area
;
5081 enum draw_glyphs_face hl
;
5084 struct glyph_string
*head
, *tail
;
5085 struct glyph_string
*s
;
5086 int last_x
, area_width
;
5090 /* Let's rather be paranoid than getting a SEGV. */
5091 end
= min (end
, row
->used
[area
]);
5092 start
= max (0, start
);
5093 start
= min (end
, start
);
5095 /* Translate X to frame coordinates. Set last_x to the right
5096 end of the drawing area. */
5097 if (row
->full_width_p
)
5099 /* X is relative to the left edge of W, without scroll bars
5101 struct frame
*f
= XFRAME (w
->frame
);
5102 int window_left_x
= WINDOW_LEFT_MARGIN (w
) * CANON_X_UNIT (f
);
5105 area_width
= XFASTINT (w
->width
) * CANON_X_UNIT (f
);
5106 last_x
= window_left_x
+ area_width
;
5108 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f
))
5110 int width
= FRAME_SCROLL_BAR_WIDTH (f
) * CANON_X_UNIT (f
);
5111 if (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (f
))
5117 x
+= FRAME_INTERNAL_BORDER_WIDTH (f
);
5118 last_x
+= FRAME_INTERNAL_BORDER_WIDTH (f
);
5122 x
= WINDOW_AREA_TO_FRAME_PIXEL_X (w
, area
, x
);
5123 area_width
= window_box_width (w
, area
);
5124 last_x
= WINDOW_AREA_TO_FRAME_PIXEL_X (w
, area
, area_width
);
5127 /* Build a doubly-linked list of glyph_string structures between
5128 head and tail from what we have to draw. Note that the macro
5129 BUILD_GLYPH_STRINGS will modify its start parameter. That's
5130 the reason we use a separate variable `i'. */
5132 BUILD_GLYPH_STRINGS (w
, row
, area
, i
, end
, head
, tail
, hl
, x
, last_x
,
5135 x_reached
= tail
->x
+ tail
->background_width
;
5139 /* If there are any glyphs with lbearing < 0 or rbearing > width in
5140 the row, redraw some glyphs in front or following the glyph
5141 strings built above. */
5142 if (head
&& !overlaps_p
&& row
->contains_overlapping_glyphs_p
)
5145 struct glyph_string
*h
, *t
;
5147 /* Compute overhangs for all glyph strings. */
5148 for (s
= head
; s
; s
= s
->next
)
5149 x_compute_glyph_string_overhangs (s
);
5151 /* Prepend glyph strings for glyphs in front of the first glyph
5152 string that are overwritten because of the first glyph
5153 string's left overhang. The background of all strings
5154 prepended must be drawn because the first glyph string
5156 i
= x_left_overwritten (head
);
5160 BUILD_GLYPH_STRINGS (w
, row
, area
, j
, start
, h
, t
,
5161 DRAW_NORMAL_TEXT
, dummy_x
, last_x
,
5164 x_compute_overhangs_and_x (t
, head
->x
, 1);
5165 x_prepend_glyph_string_lists (&head
, &tail
, h
, t
);
5168 /* Prepend glyph strings for glyphs in front of the first glyph
5169 string that overwrite that glyph string because of their
5170 right overhang. For these strings, only the foreground must
5171 be drawn, because it draws over the glyph string at `head'.
5172 The background must not be drawn because this would overwrite
5173 right overhangs of preceding glyphs for which no glyph
5175 i
= x_left_overwriting (head
);
5178 BUILD_GLYPH_STRINGS (w
, row
, area
, i
, start
, h
, t
,
5179 DRAW_NORMAL_TEXT
, dummy_x
, last_x
,
5181 for (s
= h
; s
; s
= s
->next
)
5182 s
->background_filled_p
= 1;
5183 x_compute_overhangs_and_x (t
, head
->x
, 1);
5184 x_prepend_glyph_string_lists (&head
, &tail
, h
, t
);
5187 /* Append glyphs strings for glyphs following the last glyph
5188 string tail that are overwritten by tail. The background of
5189 these strings has to be drawn because tail's foreground draws
5191 i
= x_right_overwritten (tail
);
5194 BUILD_GLYPH_STRINGS (w
, row
, area
, end
, i
, h
, t
,
5195 DRAW_NORMAL_TEXT
, x
, last_x
,
5197 x_compute_overhangs_and_x (h
, tail
->x
+ tail
->width
, 0);
5198 x_append_glyph_string_lists (&head
, &tail
, h
, t
);
5201 /* Append glyph strings for glyphs following the last glyph
5202 string tail that overwrite tail. The foreground of such
5203 glyphs has to be drawn because it writes into the background
5204 of tail. The background must not be drawn because it could
5205 paint over the foreground of following glyphs. */
5206 i
= x_right_overwriting (tail
);
5209 BUILD_GLYPH_STRINGS (w
, row
, area
, end
, i
, h
, t
,
5210 DRAW_NORMAL_TEXT
, x
, last_x
,
5212 for (s
= h
; s
; s
= s
->next
)
5213 s
->background_filled_p
= 1;
5214 x_compute_overhangs_and_x (h
, tail
->x
+ tail
->width
, 0);
5215 x_append_glyph_string_lists (&head
, &tail
, h
, t
);
5219 /* Draw all strings. */
5220 for (s
= head
; s
; s
= s
->next
)
5221 x_draw_glyph_string (s
);
5223 if (area
== TEXT_AREA
5224 && !row
->full_width_p
5225 /* When drawing overlapping rows, only the glyph strings'
5226 foreground is drawn, which doesn't erase a cursor
5230 int x0
= head
? head
->x
: x
;
5231 int x1
= tail
? tail
->x
+ tail
->background_width
: x
;
5233 x0
= FRAME_TO_WINDOW_PIXEL_X (w
, x0
);
5234 x1
= FRAME_TO_WINDOW_PIXEL_X (w
, x1
);
5236 if (XFASTINT (w
->left_margin_width
) != 0)
5238 int left_area_width
= window_box_width (w
, LEFT_MARGIN_AREA
);
5239 x0
-= left_area_width
;
5240 x1
-= left_area_width
;
5243 notice_overwritten_cursor (w
, area
, x0
, x1
,
5244 row
->y
, MATRIX_ROW_BOTTOM_Y (row
));
5247 /* Value is the x-position up to which drawn, relative to AREA of W.
5248 This doesn't include parts drawn because of overhangs. */
5249 x_reached
= FRAME_TO_WINDOW_PIXEL_X (w
, x_reached
);
5250 if (!row
->full_width_p
)
5252 if (area
> LEFT_MARGIN_AREA
&& XFASTINT (w
->left_margin_width
) != 0)
5253 x_reached
-= window_box_width (w
, LEFT_MARGIN_AREA
);
5254 if (area
> TEXT_AREA
)
5255 x_reached
-= window_box_width (w
, TEXT_AREA
);
5262 /* Fix the display of area AREA of overlapping row ROW in window W. */
5265 x_fix_overlapping_area (w
, row
, area
)
5267 struct glyph_row
*row
;
5268 enum glyph_row_area area
;
5274 if (area
== LEFT_MARGIN_AREA
)
5276 else if (area
== TEXT_AREA
)
5277 x
= row
->x
+ window_box_width (w
, LEFT_MARGIN_AREA
);
5279 x
= (window_box_width (w
, LEFT_MARGIN_AREA
)
5280 + window_box_width (w
, TEXT_AREA
));
5282 for (i
= 0; i
< row
->used
[area
];)
5284 if (row
->glyphs
[area
][i
].overlaps_vertically_p
)
5286 int start
= i
, start_x
= x
;
5290 x
+= row
->glyphs
[area
][i
].pixel_width
;
5293 while (i
< row
->used
[area
]
5294 && row
->glyphs
[area
][i
].overlaps_vertically_p
);
5296 x_draw_glyphs (w
, start_x
, row
, area
, start
, i
,
5297 DRAW_NORMAL_TEXT
, 1);
5301 x
+= row
->glyphs
[area
][i
].pixel_width
;
5310 /* Output LEN glyphs starting at START at the nominal cursor position.
5311 Advance the nominal cursor over the text. The global variable
5312 updated_window contains the window being updated, updated_row is
5313 the glyph row being updated, and updated_area is the area of that
5314 row being updated. */
5317 x_write_glyphs (start
, len
)
5318 struct glyph
*start
;
5323 xassert (updated_window
&& updated_row
);
5328 hpos
= start
- updated_row
->glyphs
[updated_area
];
5329 x
= x_draw_glyphs (updated_window
, output_cursor
.x
,
5330 updated_row
, updated_area
,
5332 DRAW_NORMAL_TEXT
, 0);
5334 /* Invalidate old phys cursor if the glyph at its hpos is redrawn. */
5335 if (updated_area
== TEXT_AREA
5336 && updated_window
->phys_cursor_on_p
5337 && updated_window
->phys_cursor
.vpos
== output_cursor
.vpos
5338 && updated_window
->phys_cursor
.hpos
>= hpos
5339 && updated_window
->phys_cursor
.hpos
< hpos
+ len
)
5340 updated_window
->phys_cursor_on_p
= 0;
5344 /* Advance the output cursor. */
5345 output_cursor
.hpos
+= len
;
5346 output_cursor
.x
= x
;
5350 /* Insert LEN glyphs from START at the nominal cursor position. */
5353 x_insert_glyphs (start
, len
)
5354 struct glyph
*start
;
5359 int line_height
, shift_by_width
, shifted_region_width
;
5360 struct glyph_row
*row
;
5361 struct glyph
*glyph
;
5362 int frame_x
, frame_y
, hpos
;
5364 xassert (updated_window
&& updated_row
);
5367 f
= XFRAME (WINDOW_FRAME (w
));
5369 /* Get the height of the line we are in. */
5371 line_height
= row
->height
;
5373 /* Get the width of the glyphs to insert. */
5375 for (glyph
= start
; glyph
< start
+ len
; ++glyph
)
5376 shift_by_width
+= glyph
->pixel_width
;
5378 /* Get the width of the region to shift right. */
5379 shifted_region_width
= (window_box_width (w
, updated_area
)
5384 frame_x
= window_box_left (w
, updated_area
) + output_cursor
.x
;
5385 frame_y
= WINDOW_TO_FRAME_PIXEL_Y (w
, output_cursor
.y
);
5386 XCopyArea (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), FRAME_X_WINDOW (f
),
5387 f
->output_data
.x
->normal_gc
,
5389 shifted_region_width
, line_height
,
5390 frame_x
+ shift_by_width
, frame_y
);
5392 /* Write the glyphs. */
5393 hpos
= start
- row
->glyphs
[updated_area
];
5394 x_draw_glyphs (w
, output_cursor
.x
, row
, updated_area
, hpos
, hpos
+ len
,
5395 DRAW_NORMAL_TEXT
, 0);
5397 /* Advance the output cursor. */
5398 output_cursor
.hpos
+= len
;
5399 output_cursor
.x
+= shift_by_width
;
5404 /* Delete N glyphs at the nominal cursor position. Not implemented
5415 /* Like XClearArea, but check that WIDTH and HEIGHT are reasonable.
5416 If they are <= 0, this is probably an error. */
5419 x_clear_area (dpy
, window
, x
, y
, width
, height
, exposures
)
5426 xassert (width
> 0 && height
> 0);
5427 XClearArea (dpy
, window
, x
, y
, width
, height
, exposures
);
5431 /* Erase the current text line from the nominal cursor position
5432 (inclusive) to pixel column TO_X (exclusive). The idea is that
5433 everything from TO_X onward is already erased.
5435 TO_X is a pixel position relative to updated_area of
5436 updated_window. TO_X == -1 means clear to the end of this area. */
5439 x_clear_end_of_line (to_x
)
5443 struct window
*w
= updated_window
;
5444 int max_x
, min_y
, max_y
;
5445 int from_x
, from_y
, to_y
;
5447 xassert (updated_window
&& updated_row
);
5448 f
= XFRAME (w
->frame
);
5450 if (updated_row
->full_width_p
)
5452 max_x
= XFASTINT (w
->width
) * CANON_X_UNIT (f
);
5453 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f
)
5454 && !w
->pseudo_window_p
)
5455 max_x
+= FRAME_SCROLL_BAR_WIDTH (f
) * CANON_X_UNIT (f
);
5458 max_x
= window_box_width (w
, updated_area
);
5459 max_y
= window_text_bottom_y (w
);
5461 /* TO_X == 0 means don't do anything. TO_X < 0 means clear to end
5462 of window. For TO_X > 0, truncate to end of drawing area. */
5468 to_x
= min (to_x
, max_x
);
5470 to_y
= min (max_y
, output_cursor
.y
+ updated_row
->height
);
5472 /* Notice if the cursor will be cleared by this operation. */
5473 if (!updated_row
->full_width_p
)
5474 notice_overwritten_cursor (w
, updated_area
,
5475 output_cursor
.x
, -1,
5477 MATRIX_ROW_BOTTOM_Y (updated_row
));
5479 from_x
= output_cursor
.x
;
5481 /* Translate to frame coordinates. */
5482 if (updated_row
->full_width_p
)
5484 from_x
= WINDOW_TO_FRAME_PIXEL_X (w
, from_x
);
5485 to_x
= WINDOW_TO_FRAME_PIXEL_X (w
, to_x
);
5489 from_x
= WINDOW_AREA_TO_FRAME_PIXEL_X (w
, updated_area
, from_x
);
5490 to_x
= WINDOW_AREA_TO_FRAME_PIXEL_X (w
, updated_area
, to_x
);
5493 min_y
= WINDOW_DISPLAY_HEADER_LINE_HEIGHT (w
);
5494 from_y
= WINDOW_TO_FRAME_PIXEL_Y (w
, max (min_y
, output_cursor
.y
));
5495 to_y
= WINDOW_TO_FRAME_PIXEL_Y (w
, to_y
);
5497 /* Prevent inadvertently clearing to end of the X window. */
5498 if (to_x
> from_x
&& to_y
> from_y
)
5501 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
5502 from_x
, from_y
, to_x
- from_x
, to_y
- from_y
,
5509 /* Clear entire frame. If updating_frame is non-null, clear that
5510 frame. Otherwise clear the selected frame. */
5520 f
= SELECTED_FRAME ();
5522 /* Clearing the frame will erase any cursor, so mark them all as no
5524 mark_window_cursors_off (XWINDOW (FRAME_ROOT_WINDOW (f
)));
5525 output_cursor
.hpos
= output_cursor
.vpos
= 0;
5526 output_cursor
.x
= -1;
5528 /* We don't set the output cursor here because there will always
5529 follow an explicit cursor_to. */
5531 XClearWindow (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
));
5533 /* We have to clear the scroll bars, too. If we have changed
5534 colors or something like that, then they should be notified. */
5535 x_scroll_bar_clear (f
);
5537 XFlush (FRAME_X_DISPLAY (f
));
5543 /* Invert the middle quarter of the frame for .15 sec. */
5545 /* We use the select system call to do the waiting, so we have to make
5546 sure it's available. If it isn't, we just won't do visual bells. */
5548 #if defined (HAVE_TIMEVAL) && defined (HAVE_SELECT)
5551 /* Subtract the `struct timeval' values X and Y, storing the result in
5552 *RESULT. Return 1 if the difference is negative, otherwise 0. */
5555 timeval_subtract (result
, x
, y
)
5556 struct timeval
*result
, x
, y
;
5558 /* Perform the carry for the later subtraction by updating y. This
5559 is safer because on some systems the tv_sec member is unsigned. */
5560 if (x
.tv_usec
< y
.tv_usec
)
5562 int nsec
= (y
.tv_usec
- x
.tv_usec
) / 1000000 + 1;
5563 y
.tv_usec
-= 1000000 * nsec
;
5567 if (x
.tv_usec
- y
.tv_usec
> 1000000)
5569 int nsec
= (y
.tv_usec
- x
.tv_usec
) / 1000000;
5570 y
.tv_usec
+= 1000000 * nsec
;
5574 /* Compute the time remaining to wait. tv_usec is certainly
5576 result
->tv_sec
= x
.tv_sec
- y
.tv_sec
;
5577 result
->tv_usec
= x
.tv_usec
- y
.tv_usec
;
5579 /* Return indication of whether the result should be considered
5581 return x
.tv_sec
< y
.tv_sec
;
5593 /* Create a GC that will use the GXxor function to flip foreground
5594 pixels into background pixels. */
5598 values
.function
= GXxor
;
5599 values
.foreground
= (f
->output_data
.x
->foreground_pixel
5600 ^ f
->output_data
.x
->background_pixel
);
5602 gc
= XCreateGC (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
5603 GCFunction
| GCForeground
, &values
);
5607 /* Get the height not including a menu bar widget. */
5608 int height
= CHAR_TO_PIXEL_HEIGHT (f
, FRAME_HEIGHT (f
));
5609 /* Height of each line to flash. */
5610 int flash_height
= FRAME_LINE_HEIGHT (f
);
5611 /* These will be the left and right margins of the rectangles. */
5612 int flash_left
= FRAME_INTERNAL_BORDER_WIDTH (f
);
5613 int flash_right
= PIXEL_WIDTH (f
) - FRAME_INTERNAL_BORDER_WIDTH (f
);
5617 /* Don't flash the area between a scroll bar and the frame
5618 edge it is next to. */
5619 switch (FRAME_VERTICAL_SCROLL_BAR_TYPE (f
))
5621 case vertical_scroll_bar_left
:
5622 flash_left
+= VERTICAL_SCROLL_BAR_WIDTH_TRIM
;
5625 case vertical_scroll_bar_right
:
5626 flash_right
-= VERTICAL_SCROLL_BAR_WIDTH_TRIM
;
5633 width
= flash_right
- flash_left
;
5635 /* If window is tall, flash top and bottom line. */
5636 if (height
> 3 * FRAME_LINE_HEIGHT (f
))
5638 XFillRectangle (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), gc
,
5640 (FRAME_INTERNAL_BORDER_WIDTH (f
)
5641 + FRAME_TOOL_BAR_LINES (f
) * CANON_Y_UNIT (f
)),
5642 width
, flash_height
);
5643 XFillRectangle (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), gc
,
5645 (height
- flash_height
5646 - FRAME_INTERNAL_BORDER_WIDTH (f
)),
5647 width
, flash_height
);
5650 /* If it is short, flash it all. */
5651 XFillRectangle (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), gc
,
5652 flash_left
, FRAME_INTERNAL_BORDER_WIDTH (f
),
5653 width
, height
- 2 * FRAME_INTERNAL_BORDER_WIDTH (f
));
5658 struct timeval wakeup
;
5660 EMACS_GET_TIME (wakeup
);
5662 /* Compute time to wait until, propagating carry from usecs. */
5663 wakeup
.tv_usec
+= 150000;
5664 wakeup
.tv_sec
+= (wakeup
.tv_usec
/ 1000000);
5665 wakeup
.tv_usec
%= 1000000;
5667 /* Keep waiting until past the time wakeup or any input gets
5669 while (! detect_input_pending ())
5671 struct timeval current
;
5672 struct timeval timeout
;
5674 EMACS_GET_TIME (current
);
5676 /* Break if result would be negative. */
5677 if (timeval_subtract (¤t
, wakeup
, current
))
5680 /* How long `select' should wait. */
5682 timeout
.tv_usec
= 10000;
5684 /* Try to wait that long--but we might wake up sooner. */
5685 select (0, NULL
, NULL
, NULL
, &timeout
);
5689 /* If window is tall, flash top and bottom line. */
5690 if (height
> 3 * FRAME_LINE_HEIGHT (f
))
5692 XFillRectangle (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), gc
,
5694 (FRAME_INTERNAL_BORDER_WIDTH (f
)
5695 + FRAME_TOOL_BAR_LINES (f
) * CANON_Y_UNIT (f
)),
5696 width
, flash_height
);
5697 XFillRectangle (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), gc
,
5699 (height
- flash_height
5700 - FRAME_INTERNAL_BORDER_WIDTH (f
)),
5701 width
, flash_height
);
5704 /* If it is short, flash it all. */
5705 XFillRectangle (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), gc
,
5706 flash_left
, FRAME_INTERNAL_BORDER_WIDTH (f
),
5707 width
, height
- 2 * FRAME_INTERNAL_BORDER_WIDTH (f
));
5709 XFreeGC (FRAME_X_DISPLAY (f
), gc
);
5717 #endif /* defined (HAVE_TIMEVAL) && defined (HAVE_SELECT) */
5720 /* Make audible bell. */
5725 struct frame
*f
= SELECTED_FRAME ();
5727 if (FRAME_X_DISPLAY (f
))
5729 #if defined (HAVE_TIMEVAL) && defined (HAVE_SELECT)
5736 XBell (FRAME_X_DISPLAY (f
), 0);
5737 XFlush (FRAME_X_DISPLAY (f
));
5744 /* Specify how many text lines, from the top of the window,
5745 should be affected by insert-lines and delete-lines operations.
5746 This, and those operations, are used only within an update
5747 that is bounded by calls to x_update_begin and x_update_end. */
5750 XTset_terminal_window (n
)
5753 /* This function intentionally left blank. */
5758 /***********************************************************************
5760 ***********************************************************************/
5762 /* Perform an insert-lines or delete-lines operation, inserting N
5763 lines or deleting -N lines at vertical position VPOS. */
5766 x_ins_del_lines (vpos
, n
)
5773 /* Scroll part of the display as described by RUN. */
5776 x_scroll_run (w
, run
)
5780 struct frame
*f
= XFRAME (w
->frame
);
5781 int x
, y
, width
, height
, from_y
, to_y
, bottom_y
;
5783 /* Get frame-relative bounding box of the text display area of W,
5784 without mode lines. Include in this box the left and right
5786 window_box (w
, -1, &x
, &y
, &width
, &height
);
5787 width
+= FRAME_X_FRINGE_WIDTH (f
);
5788 x
-= FRAME_X_LEFT_FRINGE_WIDTH (f
);
5790 from_y
= WINDOW_TO_FRAME_PIXEL_Y (w
, run
->current_y
);
5791 to_y
= WINDOW_TO_FRAME_PIXEL_Y (w
, run
->desired_y
);
5792 bottom_y
= y
+ height
;
5796 /* Scrolling up. Make sure we don't copy part of the mode
5797 line at the bottom. */
5798 if (from_y
+ run
->height
> bottom_y
)
5799 height
= bottom_y
- from_y
;
5801 height
= run
->height
;
5805 /* Scolling down. Make sure we don't copy over the mode line.
5807 if (to_y
+ run
->height
> bottom_y
)
5808 height
= bottom_y
- to_y
;
5810 height
= run
->height
;
5815 /* Cursor off. Will be switched on again in x_update_window_end. */
5819 XCopyArea (FRAME_X_DISPLAY (f
),
5820 FRAME_X_WINDOW (f
), FRAME_X_WINDOW (f
),
5821 f
->output_data
.x
->normal_gc
,
5831 /***********************************************************************
5833 ***********************************************************************/
5835 /* Redisplay an exposed area of frame F. X and Y are the upper-left
5836 corner of the exposed rectangle. W and H are width and height of
5837 the exposed area. All are pixel values. W or H zero means redraw
5838 the entire frame. */
5841 expose_frame (f
, x
, y
, w
, h
)
5846 int mouse_face_overwritten_p
= 0;
5848 TRACE ((stderr
, "expose_frame "));
5850 /* No need to redraw if frame will be redrawn soon. */
5851 if (FRAME_GARBAGED_P (f
))
5853 TRACE ((stderr
, " garbaged\n"));
5857 /* If basic faces haven't been realized yet, there is no point in
5858 trying to redraw anything. This can happen when we get an expose
5859 event while Emacs is starting, e.g. by moving another window. */
5860 if (FRAME_FACE_CACHE (f
) == NULL
5861 || FRAME_FACE_CACHE (f
)->used
< BASIC_FACE_ID_SENTINEL
)
5863 TRACE ((stderr
, " no faces\n"));
5867 if (w
== 0 || h
== 0)
5870 r
.width
= CANON_X_UNIT (f
) * f
->width
;
5871 r
.height
= CANON_Y_UNIT (f
) * f
->height
;
5881 TRACE ((stderr
, "(%d, %d, %d, %d)\n", r
.x
, r
.y
, r
.width
, r
.height
));
5882 mouse_face_overwritten_p
= expose_window_tree (XWINDOW (f
->root_window
), &r
);
5884 if (WINDOWP (f
->tool_bar_window
))
5885 mouse_face_overwritten_p
5886 |= expose_window (XWINDOW (f
->tool_bar_window
), &r
);
5888 #ifndef USE_X_TOOLKIT
5889 if (WINDOWP (f
->menu_bar_window
))
5890 mouse_face_overwritten_p
5891 |= expose_window (XWINDOW (f
->menu_bar_window
), &r
);
5892 #endif /* not USE_X_TOOLKIT */
5894 /* Some window managers support a focus-follows-mouse style with
5895 delayed raising of frames. Imagine a partially obscured frame,
5896 and moving the mouse into partially obscured mouse-face on that
5897 frame. The visible part of the mouse-face will be highlighted,
5898 then the WM raises the obscured frame. With at least one WM, KDE
5899 2.1, Emacs is not getting any event for the raising of the frame
5900 (even tried with SubstructureRedirectMask), only Expose events.
5901 These expose events will draw text normally, i.e. not
5902 highlighted. Which means we must redo the highlight here.
5903 Subsume it under ``we love X''. --gerd 2001-08-15 */
5904 if (mouse_face_overwritten_p
&& !FRAME_GARBAGED_P (f
))
5906 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
5907 if (f
== dpyinfo
->mouse_face_mouse_frame
)
5909 int x
= dpyinfo
->mouse_face_mouse_x
;
5910 int y
= dpyinfo
->mouse_face_mouse_y
;
5911 clear_mouse_face (dpyinfo
);
5912 note_mouse_highlight (f
, x
, y
);
5918 /* Redraw (parts) of all windows in the window tree rooted at W that
5919 intersect R. R contains frame pixel coordinates. Value is
5920 non-zero if the exposure overwrites mouse-face. */
5923 expose_window_tree (w
, r
)
5927 struct frame
*f
= XFRAME (w
->frame
);
5928 int mouse_face_overwritten_p
= 0;
5930 while (w
&& !FRAME_GARBAGED_P (f
))
5932 if (!NILP (w
->hchild
))
5933 mouse_face_overwritten_p
5934 |= expose_window_tree (XWINDOW (w
->hchild
), r
);
5935 else if (!NILP (w
->vchild
))
5936 mouse_face_overwritten_p
5937 |= expose_window_tree (XWINDOW (w
->vchild
), r
);
5939 mouse_face_overwritten_p
|= expose_window (w
, r
);
5941 w
= NILP (w
->next
) ? NULL
: XWINDOW (w
->next
);
5944 return mouse_face_overwritten_p
;
5948 /* Redraw the part of glyph row area AREA of glyph row ROW on window W
5949 which intersects rectangle R. R is in window-relative coordinates. */
5952 expose_area (w
, row
, r
, area
)
5954 struct glyph_row
*row
;
5956 enum glyph_row_area area
;
5958 struct glyph
*first
= row
->glyphs
[area
];
5959 struct glyph
*end
= row
->glyphs
[area
] + row
->used
[area
];
5961 int first_x
, start_x
, x
;
5963 if (area
== TEXT_AREA
&& row
->fill_line_p
)
5964 /* If row extends face to end of line write the whole line. */
5965 x_draw_glyphs (w
, 0, row
, area
, 0, row
->used
[area
],
5966 DRAW_NORMAL_TEXT
, 0);
5969 /* Set START_X to the window-relative start position for drawing glyphs of
5970 AREA. The first glyph of the text area can be partially visible.
5971 The first glyphs of other areas cannot. */
5972 if (area
== LEFT_MARGIN_AREA
)
5974 else if (area
== TEXT_AREA
)
5975 start_x
= row
->x
+ window_box_width (w
, LEFT_MARGIN_AREA
);
5977 start_x
= (window_box_width (w
, LEFT_MARGIN_AREA
)
5978 + window_box_width (w
, TEXT_AREA
));
5981 /* Find the first glyph that must be redrawn. */
5983 && x
+ first
->pixel_width
< r
->x
)
5985 x
+= first
->pixel_width
;
5989 /* Find the last one. */
5993 && x
< r
->x
+ r
->width
)
5995 x
+= last
->pixel_width
;
6001 x_draw_glyphs (w
, first_x
- start_x
, row
, area
,
6002 first
- row
->glyphs
[area
],
6003 last
- row
->glyphs
[area
],
6004 DRAW_NORMAL_TEXT
, 0);
6009 /* Redraw the parts of the glyph row ROW on window W intersecting
6010 rectangle R. R is in window-relative coordinates. Value is
6011 non-zero if mouse-face was overwritten. */
6014 expose_line (w
, row
, r
)
6016 struct glyph_row
*row
;
6019 xassert (row
->enabled_p
);
6021 if (row
->mode_line_p
|| w
->pseudo_window_p
)
6022 x_draw_glyphs (w
, 0, row
, TEXT_AREA
, 0, row
->used
[TEXT_AREA
],
6023 DRAW_NORMAL_TEXT
, 0);
6026 if (row
->used
[LEFT_MARGIN_AREA
])
6027 expose_area (w
, row
, r
, LEFT_MARGIN_AREA
);
6028 if (row
->used
[TEXT_AREA
])
6029 expose_area (w
, row
, r
, TEXT_AREA
);
6030 if (row
->used
[RIGHT_MARGIN_AREA
])
6031 expose_area (w
, row
, r
, RIGHT_MARGIN_AREA
);
6032 x_draw_row_fringe_bitmaps (w
, row
);
6035 return row
->mouse_face_p
;
6039 /* Return non-zero if W's cursor intersects rectangle R. */
6042 x_phys_cursor_in_rect_p (w
, r
)
6046 XRectangle cr
, result
;
6047 struct glyph
*cursor_glyph
;
6049 cursor_glyph
= get_phys_cursor_glyph (w
);
6052 cr
.x
= w
->phys_cursor
.x
;
6053 cr
.y
= w
->phys_cursor
.y
;
6054 cr
.width
= cursor_glyph
->pixel_width
;
6055 cr
.height
= w
->phys_cursor_height
;
6056 return x_intersect_rectangles (&cr
, r
, &result
);
6063 /* Redraw the part of window W intersection rectangle FR. Pixel
6064 coordinates in FR are frame-relative. Call this function with
6065 input blocked. Value is non-zero if the exposure overwrites
6069 expose_window (w
, fr
)
6073 struct frame
*f
= XFRAME (w
->frame
);
6075 int mouse_face_overwritten_p
= 0;
6077 /* If window is not yet fully initialized, do nothing. This can
6078 happen when toolkit scroll bars are used and a window is split.
6079 Reconfiguring the scroll bar will generate an expose for a newly
6081 if (w
->current_matrix
== NULL
)
6084 /* When we're currently updating the window, display and current
6085 matrix usually don't agree. Arrange for a thorough display
6087 if (w
== updated_window
)
6089 SET_FRAME_GARBAGED (f
);
6093 /* Frame-relative pixel rectangle of W. */
6094 wr
.x
= XFASTINT (w
->left
) * CANON_X_UNIT (f
);
6095 wr
.y
= XFASTINT (w
->top
) * CANON_Y_UNIT (f
);
6096 wr
.width
= XFASTINT (w
->width
) * CANON_X_UNIT (f
);
6097 wr
.height
= XFASTINT (w
->height
) * CANON_Y_UNIT (f
);
6099 if (x_intersect_rectangles (fr
, &wr
, &r
))
6101 int yb
= window_text_bottom_y (w
);
6102 struct glyph_row
*row
;
6103 int cursor_cleared_p
;
6105 TRACE ((stderr
, "expose_window (%d, %d, %d, %d)\n",
6106 r
.x
, r
.y
, r
.width
, r
.height
));
6108 /* Convert to window coordinates. */
6109 r
.x
= FRAME_TO_WINDOW_PIXEL_X (w
, r
.x
);
6110 r
.y
= FRAME_TO_WINDOW_PIXEL_Y (w
, r
.y
);
6112 /* Turn off the cursor. */
6113 if (!w
->pseudo_window_p
6114 && x_phys_cursor_in_rect_p (w
, &r
))
6117 cursor_cleared_p
= 1;
6120 cursor_cleared_p
= 0;
6122 /* Find the first row intersecting the rectangle R. */
6123 for (row
= w
->current_matrix
->rows
;
6128 int y1
= MATRIX_ROW_BOTTOM_Y (row
);
6130 if ((y0
>= r
.y
&& y0
< r
.y
+ r
.height
)
6131 || (y1
> r
.y
&& y1
< r
.y
+ r
.height
)
6132 || (r
.y
>= y0
&& r
.y
< y1
)
6133 || (r
.y
+ r
.height
> y0
&& r
.y
+ r
.height
< y1
))
6135 if (expose_line (w
, row
, &r
))
6136 mouse_face_overwritten_p
= 1;
6143 /* Display the mode line if there is one. */
6144 if (WINDOW_WANTS_MODELINE_P (w
)
6145 && (row
= MATRIX_MODE_LINE_ROW (w
->current_matrix
),
6147 && row
->y
< r
.y
+ r
.height
)
6149 if (expose_line (w
, row
, &r
))
6150 mouse_face_overwritten_p
= 1;
6153 if (!w
->pseudo_window_p
)
6155 /* Draw border between windows. */
6156 x_draw_vertical_border (w
);
6158 /* Turn the cursor on again. */
6159 if (cursor_cleared_p
)
6160 x_update_window_cursor (w
, 1);
6164 return mouse_face_overwritten_p
;
6168 /* Determine the intersection of two rectangles R1 and R2. Return
6169 the intersection in *RESULT. Value is non-zero if RESULT is not
6173 x_intersect_rectangles (r1
, r2
, result
)
6174 XRectangle
*r1
, *r2
, *result
;
6176 XRectangle
*left
, *right
;
6177 XRectangle
*upper
, *lower
;
6178 int intersection_p
= 0;
6180 /* Rearrange so that R1 is the left-most rectangle. */
6182 left
= r1
, right
= r2
;
6184 left
= r2
, right
= r1
;
6186 /* X0 of the intersection is right.x0, if this is inside R1,
6187 otherwise there is no intersection. */
6188 if (right
->x
<= left
->x
+ left
->width
)
6190 result
->x
= right
->x
;
6192 /* The right end of the intersection is the minimum of the
6193 the right ends of left and right. */
6194 result
->width
= (min (left
->x
+ left
->width
, right
->x
+ right
->width
)
6197 /* Same game for Y. */
6199 upper
= r1
, lower
= r2
;
6201 upper
= r2
, lower
= r1
;
6203 /* The upper end of the intersection is lower.y0, if this is inside
6204 of upper. Otherwise, there is no intersection. */
6205 if (lower
->y
<= upper
->y
+ upper
->height
)
6207 result
->y
= lower
->y
;
6209 /* The lower end of the intersection is the minimum of the lower
6210 ends of upper and lower. */
6211 result
->height
= (min (lower
->y
+ lower
->height
,
6212 upper
->y
+ upper
->height
)
6218 return intersection_p
;
6229 /* We used to only do this if Vx_no_window_manager was non-nil, but
6230 the ICCCM (section 4.1.6) says that the window's border pixmap
6231 and border pixel are window attributes which are "private to the
6232 client", so we can always change it to whatever we want. */
6234 XSetWindowBorder (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
6235 f
->output_data
.x
->border_pixel
);
6237 x_update_cursor (f
, 1);
6241 frame_unhighlight (f
)
6244 /* We used to only do this if Vx_no_window_manager was non-nil, but
6245 the ICCCM (section 4.1.6) says that the window's border pixmap
6246 and border pixel are window attributes which are "private to the
6247 client", so we can always change it to whatever we want. */
6249 XSetWindowBorderPixmap (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
6250 f
->output_data
.x
->border_tile
);
6252 x_update_cursor (f
, 1);
6255 /* The focus has changed. Update the frames as necessary to reflect
6256 the new situation. Note that we can't change the selected frame
6257 here, because the Lisp code we are interrupting might become confused.
6258 Each event gets marked with the frame in which it occurred, so the
6259 Lisp code can tell when the switch took place by examining the events. */
6262 x_new_focus_frame (dpyinfo
, frame
)
6263 struct x_display_info
*dpyinfo
;
6264 struct frame
*frame
;
6266 struct frame
*old_focus
= dpyinfo
->x_focus_frame
;
6268 if (frame
!= dpyinfo
->x_focus_frame
)
6270 /* Set this before calling other routines, so that they see
6271 the correct value of x_focus_frame. */
6272 dpyinfo
->x_focus_frame
= frame
;
6274 if (old_focus
&& old_focus
->auto_lower
)
6275 x_lower_frame (old_focus
);
6278 selected_frame
= frame
;
6279 XSETFRAME (XWINDOW (selected_frame
->selected_window
)->frame
,
6281 Fselect_window (selected_frame
->selected_window
);
6282 choose_minibuf_frame ();
6285 if (dpyinfo
->x_focus_frame
&& dpyinfo
->x_focus_frame
->auto_raise
)
6286 pending_autoraise_frame
= dpyinfo
->x_focus_frame
;
6288 pending_autoraise_frame
= 0;
6291 x_frame_rehighlight (dpyinfo
);
6294 /* Handle an event saying the mouse has moved out of an Emacs frame. */
6297 x_mouse_leave (dpyinfo
)
6298 struct x_display_info
*dpyinfo
;
6300 x_new_focus_frame (dpyinfo
, dpyinfo
->x_focus_event_frame
);
6303 /* The focus has changed, or we have redirected a frame's focus to
6304 another frame (this happens when a frame uses a surrogate
6305 mini-buffer frame). Shift the highlight as appropriate.
6307 The FRAME argument doesn't necessarily have anything to do with which
6308 frame is being highlighted or un-highlighted; we only use it to find
6309 the appropriate X display info. */
6312 XTframe_rehighlight (frame
)
6313 struct frame
*frame
;
6315 x_frame_rehighlight (FRAME_X_DISPLAY_INFO (frame
));
6319 x_frame_rehighlight (dpyinfo
)
6320 struct x_display_info
*dpyinfo
;
6322 struct frame
*old_highlight
= dpyinfo
->x_highlight_frame
;
6324 if (dpyinfo
->x_focus_frame
)
6326 dpyinfo
->x_highlight_frame
6327 = ((GC_FRAMEP (FRAME_FOCUS_FRAME (dpyinfo
->x_focus_frame
)))
6328 ? XFRAME (FRAME_FOCUS_FRAME (dpyinfo
->x_focus_frame
))
6329 : dpyinfo
->x_focus_frame
);
6330 if (! FRAME_LIVE_P (dpyinfo
->x_highlight_frame
))
6332 FRAME_FOCUS_FRAME (dpyinfo
->x_focus_frame
) = Qnil
;
6333 dpyinfo
->x_highlight_frame
= dpyinfo
->x_focus_frame
;
6337 dpyinfo
->x_highlight_frame
= 0;
6339 if (dpyinfo
->x_highlight_frame
!= old_highlight
)
6342 frame_unhighlight (old_highlight
);
6343 if (dpyinfo
->x_highlight_frame
)
6344 frame_highlight (dpyinfo
->x_highlight_frame
);
6350 /* Keyboard processing - modifier keys, vendor-specific keysyms, etc. */
6352 /* Initialize mode_switch_bit and modifier_meaning. */
6354 x_find_modifier_meanings (dpyinfo
)
6355 struct x_display_info
*dpyinfo
;
6357 int min_code
, max_code
;
6360 XModifierKeymap
*mods
;
6362 dpyinfo
->meta_mod_mask
= 0;
6363 dpyinfo
->shift_lock_mask
= 0;
6364 dpyinfo
->alt_mod_mask
= 0;
6365 dpyinfo
->super_mod_mask
= 0;
6366 dpyinfo
->hyper_mod_mask
= 0;
6369 XDisplayKeycodes (dpyinfo
->display
, &min_code
, &max_code
);
6371 min_code
= dpyinfo
->display
->min_keycode
;
6372 max_code
= dpyinfo
->display
->max_keycode
;
6375 syms
= XGetKeyboardMapping (dpyinfo
->display
,
6376 min_code
, max_code
- min_code
+ 1,
6378 mods
= XGetModifierMapping (dpyinfo
->display
);
6380 /* Scan the modifier table to see which modifier bits the Meta and
6381 Alt keysyms are on. */
6383 int row
, col
; /* The row and column in the modifier table. */
6385 for (row
= 3; row
< 8; row
++)
6386 for (col
= 0; col
< mods
->max_keypermod
; col
++)
6389 = mods
->modifiermap
[(row
* mods
->max_keypermod
) + col
];
6391 /* Zeroes are used for filler. Skip them. */
6395 /* Are any of this keycode's keysyms a meta key? */
6399 for (code_col
= 0; code_col
< syms_per_code
; code_col
++)
6401 int sym
= syms
[((code
- min_code
) * syms_per_code
) + code_col
];
6407 dpyinfo
->meta_mod_mask
|= (1 << row
);
6412 dpyinfo
->alt_mod_mask
|= (1 << row
);
6417 dpyinfo
->hyper_mod_mask
|= (1 << row
);
6422 dpyinfo
->super_mod_mask
|= (1 << row
);
6426 /* Ignore this if it's not on the lock modifier. */
6427 if ((1 << row
) == LockMask
)
6428 dpyinfo
->shift_lock_mask
= LockMask
;
6436 /* If we couldn't find any meta keys, accept any alt keys as meta keys. */
6437 if (! dpyinfo
->meta_mod_mask
)
6439 dpyinfo
->meta_mod_mask
= dpyinfo
->alt_mod_mask
;
6440 dpyinfo
->alt_mod_mask
= 0;
6443 /* If some keys are both alt and meta,
6444 make them just meta, not alt. */
6445 if (dpyinfo
->alt_mod_mask
& dpyinfo
->meta_mod_mask
)
6447 dpyinfo
->alt_mod_mask
&= ~dpyinfo
->meta_mod_mask
;
6450 XFree ((char *) syms
);
6451 XFreeModifiermap (mods
);
6454 /* Convert between the modifier bits X uses and the modifier bits
6458 x_x_to_emacs_modifiers (dpyinfo
, state
)
6459 struct x_display_info
*dpyinfo
;
6462 EMACS_UINT mod_meta
= meta_modifier
;
6463 EMACS_UINT mod_alt
= alt_modifier
;
6464 EMACS_UINT mod_hyper
= hyper_modifier
;
6465 EMACS_UINT mod_super
= super_modifier
;
6468 tem
= Fget (Vx_alt_keysym
, Qmodifier_value
);
6469 if (! EQ (tem
, Qnil
)) mod_alt
= XUINT (tem
);
6470 tem
= Fget (Vx_meta_keysym
, Qmodifier_value
);
6471 if (! EQ (tem
, Qnil
)) mod_meta
= XUINT (tem
);
6472 tem
= Fget (Vx_hyper_keysym
, Qmodifier_value
);
6473 if (! EQ (tem
, Qnil
)) mod_hyper
= XUINT (tem
);
6474 tem
= Fget (Vx_super_keysym
, Qmodifier_value
);
6475 if (! EQ (tem
, Qnil
)) mod_super
= XUINT (tem
);
6478 return ( ((state
& (ShiftMask
| dpyinfo
->shift_lock_mask
)) ? shift_modifier
: 0)
6479 | ((state
& ControlMask
) ? ctrl_modifier
: 0)
6480 | ((state
& dpyinfo
->meta_mod_mask
) ? mod_meta
: 0)
6481 | ((state
& dpyinfo
->alt_mod_mask
) ? mod_alt
: 0)
6482 | ((state
& dpyinfo
->super_mod_mask
) ? mod_super
: 0)
6483 | ((state
& dpyinfo
->hyper_mod_mask
) ? mod_hyper
: 0));
6487 x_emacs_to_x_modifiers (dpyinfo
, state
)
6488 struct x_display_info
*dpyinfo
;
6491 EMACS_UINT mod_meta
= meta_modifier
;
6492 EMACS_UINT mod_alt
= alt_modifier
;
6493 EMACS_UINT mod_hyper
= hyper_modifier
;
6494 EMACS_UINT mod_super
= super_modifier
;
6498 tem
= Fget (Vx_alt_keysym
, Qmodifier_value
);
6499 if (! EQ (tem
, Qnil
)) mod_alt
= XUINT (tem
);
6500 tem
= Fget (Vx_meta_keysym
, Qmodifier_value
);
6501 if (! EQ (tem
, Qnil
)) mod_meta
= XUINT (tem
);
6502 tem
= Fget (Vx_hyper_keysym
, Qmodifier_value
);
6503 if (! EQ (tem
, Qnil
)) mod_hyper
= XUINT (tem
);
6504 tem
= Fget (Vx_super_keysym
, Qmodifier_value
);
6505 if (! EQ (tem
, Qnil
)) mod_super
= XUINT (tem
);
6508 return ( ((state
& mod_alt
) ? dpyinfo
->alt_mod_mask
: 0)
6509 | ((state
& mod_super
) ? dpyinfo
->super_mod_mask
: 0)
6510 | ((state
& mod_hyper
) ? dpyinfo
->hyper_mod_mask
: 0)
6511 | ((state
& shift_modifier
) ? ShiftMask
: 0)
6512 | ((state
& ctrl_modifier
) ? ControlMask
: 0)
6513 | ((state
& mod_meta
) ? dpyinfo
->meta_mod_mask
: 0));
6516 /* Convert a keysym to its name. */
6519 x_get_keysym_name (keysym
)
6525 value
= XKeysymToString (keysym
);
6533 /* Mouse clicks and mouse movement. Rah. */
6535 /* Given a pixel position (PIX_X, PIX_Y) on frame F, return glyph
6536 co-ordinates in (*X, *Y). Set *BOUNDS to the rectangle that the
6537 glyph at X, Y occupies, if BOUNDS != 0. If NOCLIP is non-zero, do
6538 not force the value into range. */
6541 pixel_to_glyph_coords (f
, pix_x
, pix_y
, x
, y
, bounds
, noclip
)
6543 register int pix_x
, pix_y
;
6544 register int *x
, *y
;
6548 /* Arrange for the division in PIXEL_TO_CHAR_COL etc. to round down
6549 even for negative values. */
6551 pix_x
-= FONT_WIDTH ((f
)->output_data
.x
->font
) - 1;
6553 pix_y
-= (f
)->output_data
.x
->line_height
- 1;
6555 pix_x
= PIXEL_TO_CHAR_COL (f
, pix_x
);
6556 pix_y
= PIXEL_TO_CHAR_ROW (f
, pix_y
);
6560 bounds
->width
= FONT_WIDTH (f
->output_data
.x
->font
);
6561 bounds
->height
= f
->output_data
.x
->line_height
;
6562 bounds
->x
= CHAR_TO_PIXEL_COL (f
, pix_x
);
6563 bounds
->y
= CHAR_TO_PIXEL_ROW (f
, pix_y
);
6570 else if (pix_x
> FRAME_WINDOW_WIDTH (f
))
6571 pix_x
= FRAME_WINDOW_WIDTH (f
);
6575 else if (pix_y
> f
->height
)
6584 /* Given HPOS/VPOS in the current matrix of W, return corresponding
6585 frame-relative pixel positions in *FRAME_X and *FRAME_Y. If we
6586 can't tell the positions because W's display is not up to date,
6590 glyph_to_pixel_coords (w
, hpos
, vpos
, frame_x
, frame_y
)
6593 int *frame_x
, *frame_y
;
6597 xassert (hpos
>= 0 && hpos
< w
->current_matrix
->matrix_w
);
6598 xassert (vpos
>= 0 && vpos
< w
->current_matrix
->matrix_h
);
6600 if (display_completed
)
6602 struct glyph_row
*row
= MATRIX_ROW (w
->current_matrix
, vpos
);
6603 struct glyph
*glyph
= row
->glyphs
[TEXT_AREA
];
6604 struct glyph
*end
= glyph
+ min (hpos
, row
->used
[TEXT_AREA
]);
6610 *frame_x
+= glyph
->pixel_width
;
6618 *frame_y
= *frame_x
= 0;
6622 *frame_y
= WINDOW_TO_FRAME_PIXEL_Y (w
, *frame_y
);
6623 *frame_x
= WINDOW_TO_FRAME_PIXEL_X (w
, *frame_x
);
6628 /* Prepare a mouse-event in *RESULT for placement in the input queue.
6630 If the event is a button press, then note that we have grabbed
6634 construct_mouse_click (result
, event
, f
)
6635 struct input_event
*result
;
6636 XButtonEvent
*event
;
6639 /* Make the event type NO_EVENT; we'll change that when we decide
6641 result
->kind
= MOUSE_CLICK_EVENT
;
6642 result
->code
= event
->button
- Button1
;
6643 result
->timestamp
= event
->time
;
6644 result
->modifiers
= (x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO (f
),
6646 | (event
->type
== ButtonRelease
6650 XSETINT (result
->x
, event
->x
);
6651 XSETINT (result
->y
, event
->y
);
6652 XSETFRAME (result
->frame_or_window
, f
);
6658 /* Function to report a mouse movement to the mainstream Emacs code.
6659 The input handler calls this.
6661 We have received a mouse movement event, which is given in *event.
6662 If the mouse is over a different glyph than it was last time, tell
6663 the mainstream emacs code by setting mouse_moved. If not, ask for
6664 another motion event, so we can check again the next time it moves. */
6666 static XMotionEvent last_mouse_motion_event
;
6667 static Lisp_Object last_mouse_motion_frame
;
6670 note_mouse_movement (frame
, event
)
6672 XMotionEvent
*event
;
6674 last_mouse_movement_time
= event
->time
;
6675 last_mouse_motion_event
= *event
;
6676 XSETFRAME (last_mouse_motion_frame
, frame
);
6678 if (event
->window
!= FRAME_X_WINDOW (frame
))
6680 frame
->mouse_moved
= 1;
6681 last_mouse_scroll_bar
= Qnil
;
6682 note_mouse_highlight (frame
, -1, -1);
6685 /* Has the mouse moved off the glyph it was on at the last sighting? */
6686 else if (event
->x
< last_mouse_glyph
.x
6687 || event
->x
>= last_mouse_glyph
.x
+ last_mouse_glyph
.width
6688 || event
->y
< last_mouse_glyph
.y
6689 || event
->y
>= last_mouse_glyph
.y
+ last_mouse_glyph
.height
)
6691 frame
->mouse_moved
= 1;
6692 last_mouse_scroll_bar
= Qnil
;
6693 note_mouse_highlight (frame
, event
->x
, event
->y
);
6698 /************************************************************************
6700 ************************************************************************/
6702 /* Find the glyph under window-relative coordinates X/Y in window W.
6703 Consider only glyphs from buffer text, i.e. no glyphs from overlay
6704 strings. Return in *HPOS and *VPOS the row and column number of
6705 the glyph found. Return in *AREA the glyph area containing X.
6706 Value is a pointer to the glyph found or null if X/Y is not on
6707 text, or we can't tell because W's current matrix is not up to
6710 static struct glyph
*
6711 x_y_to_hpos_vpos (w
, x
, y
, hpos
, vpos
, area
, buffer_only_p
)
6714 int *hpos
, *vpos
, *area
;
6717 struct glyph
*glyph
, *end
;
6718 struct glyph_row
*row
= NULL
;
6719 int x0
, i
, left_area_width
;
6721 /* Find row containing Y. Give up if some row is not enabled. */
6722 for (i
= 0; i
< w
->current_matrix
->nrows
; ++i
)
6724 row
= MATRIX_ROW (w
->current_matrix
, i
);
6725 if (!row
->enabled_p
)
6727 if (y
>= row
->y
&& y
< MATRIX_ROW_BOTTOM_Y (row
))
6734 /* Give up if Y is not in the window. */
6735 if (i
== w
->current_matrix
->nrows
)
6738 /* Get the glyph area containing X. */
6739 if (w
->pseudo_window_p
)
6746 left_area_width
= window_box_width (w
, LEFT_MARGIN_AREA
);
6747 if (x
< left_area_width
)
6749 *area
= LEFT_MARGIN_AREA
;
6752 else if (x
< left_area_width
+ window_box_width (w
, TEXT_AREA
))
6755 x0
= row
->x
+ left_area_width
;
6759 *area
= RIGHT_MARGIN_AREA
;
6760 x0
= left_area_width
+ window_box_width (w
, TEXT_AREA
);
6764 /* Find glyph containing X. */
6765 glyph
= row
->glyphs
[*area
];
6766 end
= glyph
+ row
->used
[*area
];
6769 if (x
< x0
+ glyph
->pixel_width
)
6771 if (w
->pseudo_window_p
)
6773 else if (!buffer_only_p
|| BUFFERP (glyph
->object
))
6777 x0
+= glyph
->pixel_width
;
6784 *hpos
= glyph
- row
->glyphs
[*area
];
6789 /* Convert frame-relative x/y to coordinates relative to window W.
6790 Takes pseudo-windows into account. */
6793 frame_to_window_pixel_xy (w
, x
, y
)
6797 if (w
->pseudo_window_p
)
6799 /* A pseudo-window is always full-width, and starts at the
6800 left edge of the frame, plus a frame border. */
6801 struct frame
*f
= XFRAME (w
->frame
);
6802 *x
-= FRAME_INTERNAL_BORDER_WIDTH_SAFE (f
);
6803 *y
= FRAME_TO_WINDOW_PIXEL_Y (w
, *y
);
6807 *x
= FRAME_TO_WINDOW_PIXEL_X (w
, *x
);
6808 *y
= FRAME_TO_WINDOW_PIXEL_Y (w
, *y
);
6813 /* Take proper action when mouse has moved to the mode or header line
6814 or marginal area of window W, x-position X and y-position Y. Area
6815 is 1, 3, 6 or 7 for the mode line, header line, left and right
6816 marginal area respectively. X is relative to the start of the text
6817 display area of W, so the width of bitmap areas and scroll bars
6818 must be subtracted to get a position relative to the start of the
6822 note_mode_line_or_margin_highlight (w
, x
, y
, portion
)
6826 struct frame
*f
= XFRAME (w
->frame
);
6827 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
6828 Cursor cursor
= dpyinfo
->vertical_scroll_bar_cursor
;
6830 Lisp_Object string
, help
, map
, pos
;
6832 if (portion
== 1 || portion
== 3)
6833 string
= mode_line_string (w
, x
, y
, portion
== 1, &charpos
);
6835 string
= marginal_area_string (w
, x
, y
, portion
, &charpos
);
6837 if (STRINGP (string
))
6839 pos
= make_number (charpos
);
6841 /* If we're on a string with `help-echo' text property, arrange
6842 for the help to be displayed. This is done by setting the
6843 global variable help_echo to the help string. */
6844 help
= Fget_text_property (pos
, Qhelp_echo
, string
);
6848 XSETWINDOW (help_echo_window
, w
);
6849 help_echo_object
= string
;
6850 help_echo_pos
= charpos
;
6853 /* Change the mouse pointer according to what is under X/Y. */
6854 map
= Fget_text_property (pos
, Qlocal_map
, string
);
6856 map
= Fget_text_property (pos
, Qkeymap
, string
);
6858 cursor
= f
->output_data
.x
->nontext_cursor
;
6861 XDefineCursor (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), cursor
);
6865 /* Take proper action when the mouse has moved to position X, Y on
6866 frame F as regards highlighting characters that have mouse-face
6867 properties. Also de-highlighting chars where the mouse was before.
6868 X and Y can be negative or out of range. */
6871 note_mouse_highlight (f
, x
, y
)
6875 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
6879 Cursor cursor
= None
;
6882 /* When a menu is active, don't highlight because this looks odd. */
6883 #ifdef USE_X_TOOLKIT
6884 if (popup_activated ())
6888 if (NILP (Vmouse_highlight
)
6889 || !f
->glyphs_initialized_p
)
6892 dpyinfo
->mouse_face_mouse_x
= x
;
6893 dpyinfo
->mouse_face_mouse_y
= y
;
6894 dpyinfo
->mouse_face_mouse_frame
= f
;
6896 if (dpyinfo
->mouse_face_defer
)
6901 dpyinfo
->mouse_face_deferred_gc
= 1;
6905 /* Which window is that in? */
6906 window
= window_from_coordinates (f
, x
, y
, &portion
, 1);
6908 /* If we were displaying active text in another window, clear that. */
6909 if (! EQ (window
, dpyinfo
->mouse_face_window
))
6910 clear_mouse_face (dpyinfo
);
6912 /* Not on a window -> return. */
6913 if (!WINDOWP (window
))
6916 /* Convert to window-relative pixel coordinates. */
6917 w
= XWINDOW (window
);
6918 frame_to_window_pixel_xy (w
, &x
, &y
);
6920 /* Handle tool-bar window differently since it doesn't display a
6922 if (EQ (window
, f
->tool_bar_window
))
6924 note_tool_bar_highlight (f
, x
, y
);
6928 /* Mouse is on the mode, header line or margin? */
6929 if (portion
== 1 || portion
== 3 || portion
== 6 || portion
== 7)
6931 note_mode_line_or_margin_highlight (w
, x
, y
, portion
);
6936 cursor
= f
->output_data
.x
->horizontal_drag_cursor
;
6938 cursor
= f
->output_data
.x
->text_cursor
;
6940 /* Are we in a window whose display is up to date?
6941 And verify the buffer's text has not changed. */
6942 b
= XBUFFER (w
->buffer
);
6943 if (/* Within text portion of the window. */
6945 && EQ (w
->window_end_valid
, w
->buffer
)
6946 && XFASTINT (w
->last_modified
) == BUF_MODIFF (b
)
6947 && XFASTINT (w
->last_overlay_modified
) == BUF_OVERLAY_MODIFF (b
))
6949 int hpos
, vpos
, pos
, i
, area
;
6950 struct glyph
*glyph
;
6952 Lisp_Object mouse_face
= Qnil
, overlay
= Qnil
, position
;
6953 Lisp_Object
*overlay_vec
= NULL
;
6955 struct buffer
*obuf
;
6956 int obegv
, ozv
, same_region
;
6958 /* Find the glyph under X/Y. */
6959 glyph
= x_y_to_hpos_vpos (w
, x
, y
, &hpos
, &vpos
, &area
, 0);
6961 /* Clear mouse face if X/Y not over text. */
6963 || area
!= TEXT_AREA
6964 || !MATRIX_ROW (w
->current_matrix
, vpos
)->displays_text_p
)
6966 if (clear_mouse_face (dpyinfo
))
6971 pos
= glyph
->charpos
;
6972 object
= glyph
->object
;
6973 if (!STRINGP (object
) && !BUFFERP (object
))
6976 /* If we get an out-of-range value, return now; avoid an error. */
6977 if (BUFFERP (object
) && pos
> BUF_Z (b
))
6980 /* Make the window's buffer temporarily current for
6981 overlays_at and compute_char_face. */
6982 obuf
= current_buffer
;
6989 /* Is this char mouse-active or does it have help-echo? */
6990 position
= make_number (pos
);
6992 if (BUFFERP (object
))
6994 /* Put all the overlays we want in a vector in overlay_vec.
6995 Store the length in len. If there are more than 10, make
6996 enough space for all, and try again. */
6998 overlay_vec
= (Lisp_Object
*) alloca (len
* sizeof (Lisp_Object
));
6999 noverlays
= overlays_at (pos
, 0, &overlay_vec
, &len
, NULL
, NULL
, 0);
7000 if (noverlays
> len
)
7003 overlay_vec
= (Lisp_Object
*) alloca (len
* sizeof (Lisp_Object
));
7004 noverlays
= overlays_at (pos
, 0, &overlay_vec
, &len
, NULL
, NULL
,0);
7007 /* Sort overlays into increasing priority order. */
7008 noverlays
= sort_overlays (overlay_vec
, noverlays
, w
);
7013 same_region
= (EQ (window
, dpyinfo
->mouse_face_window
)
7014 && vpos
>= dpyinfo
->mouse_face_beg_row
7015 && vpos
<= dpyinfo
->mouse_face_end_row
7016 && (vpos
> dpyinfo
->mouse_face_beg_row
7017 || hpos
>= dpyinfo
->mouse_face_beg_col
)
7018 && (vpos
< dpyinfo
->mouse_face_end_row
7019 || hpos
< dpyinfo
->mouse_face_end_col
7020 || dpyinfo
->mouse_face_past_end
));
7025 /* Check mouse-face highlighting. */
7027 /* If there exists an overlay with mouse-face overlapping
7028 the one we are currently highlighting, we have to
7029 check if we enter the overlapping overlay, and then
7030 highlight only that. */
7031 || (OVERLAYP (dpyinfo
->mouse_face_overlay
)
7032 && mouse_face_overlay_overlaps (dpyinfo
->mouse_face_overlay
)))
7034 /* Find the highest priority overlay that has a mouse-face
7037 for (i
= noverlays
- 1; i
>= 0 && NILP (overlay
); --i
)
7039 mouse_face
= Foverlay_get (overlay_vec
[i
], Qmouse_face
);
7040 if (!NILP (mouse_face
))
7041 overlay
= overlay_vec
[i
];
7044 /* If we're actually highlighting the same overlay as
7045 before, there's no need to do that again. */
7047 && EQ (overlay
, dpyinfo
->mouse_face_overlay
))
7048 goto check_help_echo
;
7050 dpyinfo
->mouse_face_overlay
= overlay
;
7052 /* Clear the display of the old active region, if any. */
7053 if (clear_mouse_face (dpyinfo
))
7056 /* If no overlay applies, get a text property. */
7058 mouse_face
= Fget_text_property (position
, Qmouse_face
, object
);
7060 /* Handle the overlay case. */
7061 if (!NILP (overlay
))
7063 /* Find the range of text around this char that
7064 should be active. */
7065 Lisp_Object before
, after
;
7068 before
= Foverlay_start (overlay
);
7069 after
= Foverlay_end (overlay
);
7070 /* Record this as the current active region. */
7071 fast_find_position (w
, XFASTINT (before
),
7072 &dpyinfo
->mouse_face_beg_col
,
7073 &dpyinfo
->mouse_face_beg_row
,
7074 &dpyinfo
->mouse_face_beg_x
,
7075 &dpyinfo
->mouse_face_beg_y
, Qnil
);
7077 dpyinfo
->mouse_face_past_end
7078 = !fast_find_position (w
, XFASTINT (after
),
7079 &dpyinfo
->mouse_face_end_col
,
7080 &dpyinfo
->mouse_face_end_row
,
7081 &dpyinfo
->mouse_face_end_x
,
7082 &dpyinfo
->mouse_face_end_y
, Qnil
);
7083 dpyinfo
->mouse_face_window
= window
;
7084 dpyinfo
->mouse_face_face_id
7085 = face_at_buffer_position (w
, pos
, 0, 0,
7086 &ignore
, pos
+ 1, 1);
7088 /* Display it as active. */
7089 show_mouse_face (dpyinfo
, DRAW_MOUSE_FACE
);
7092 /* Handle the text property case. */
7093 else if (!NILP (mouse_face
) && BUFFERP (object
))
7095 /* Find the range of text around this char that
7096 should be active. */
7097 Lisp_Object before
, after
, beginning
, end
;
7100 beginning
= Fmarker_position (w
->start
);
7101 end
= make_number (BUF_Z (XBUFFER (object
))
7102 - XFASTINT (w
->window_end_pos
));
7104 = Fprevious_single_property_change (make_number (pos
+ 1),
7108 = Fnext_single_property_change (position
, Qmouse_face
,
7111 /* Record this as the current active region. */
7112 fast_find_position (w
, XFASTINT (before
),
7113 &dpyinfo
->mouse_face_beg_col
,
7114 &dpyinfo
->mouse_face_beg_row
,
7115 &dpyinfo
->mouse_face_beg_x
,
7116 &dpyinfo
->mouse_face_beg_y
, Qnil
);
7117 dpyinfo
->mouse_face_past_end
7118 = !fast_find_position (w
, XFASTINT (after
),
7119 &dpyinfo
->mouse_face_end_col
,
7120 &dpyinfo
->mouse_face_end_row
,
7121 &dpyinfo
->mouse_face_end_x
,
7122 &dpyinfo
->mouse_face_end_y
, Qnil
);
7123 dpyinfo
->mouse_face_window
= window
;
7125 if (BUFFERP (object
))
7126 dpyinfo
->mouse_face_face_id
7127 = face_at_buffer_position (w
, pos
, 0, 0,
7128 &ignore
, pos
+ 1, 1);
7130 /* Display it as active. */
7131 show_mouse_face (dpyinfo
, DRAW_MOUSE_FACE
);
7134 else if (!NILP (mouse_face
) && STRINGP (object
))
7139 b
= Fprevious_single_property_change (make_number (pos
+ 1),
7142 e
= Fnext_single_property_change (position
, Qmouse_face
,
7145 b
= make_number (0);
7147 e
= make_number (XSTRING (object
)->size
- 1);
7148 fast_find_string_pos (w
, XINT (b
), object
,
7149 &dpyinfo
->mouse_face_beg_col
,
7150 &dpyinfo
->mouse_face_beg_row
,
7151 &dpyinfo
->mouse_face_beg_x
,
7152 &dpyinfo
->mouse_face_beg_y
, 0);
7153 fast_find_string_pos (w
, XINT (e
), object
,
7154 &dpyinfo
->mouse_face_end_col
,
7155 &dpyinfo
->mouse_face_end_row
,
7156 &dpyinfo
->mouse_face_end_x
,
7157 &dpyinfo
->mouse_face_end_y
, 1);
7158 dpyinfo
->mouse_face_past_end
= 0;
7159 dpyinfo
->mouse_face_window
= window
;
7160 dpyinfo
->mouse_face_face_id
7161 = face_at_string_position (w
, object
, pos
, 0, 0, 0, &ignore
,
7163 show_mouse_face (dpyinfo
, DRAW_MOUSE_FACE
);
7166 else if (STRINGP (object
) && NILP (mouse_face
))
7168 /* A string which doesn't have mouse-face, but
7169 the text ``under'' it might have. */
7170 struct glyph_row
*r
= MATRIX_ROW (w
->current_matrix
, vpos
);
7171 int start
= MATRIX_ROW_START_CHARPOS (r
);
7173 pos
= string_buffer_position (w
, object
, start
);
7175 mouse_face
= get_char_property_and_overlay (make_number (pos
),
7179 if (!NILP (mouse_face
) && !NILP (overlay
))
7181 Lisp_Object before
= Foverlay_start (overlay
);
7182 Lisp_Object after
= Foverlay_end (overlay
);
7185 /* Note that we might not be able to find position
7186 BEFORE in the glyph matrix if the overlay is
7187 entirely covered by a `display' property. In
7188 this case, we overshoot. So let's stop in
7189 the glyph matrix before glyphs for OBJECT. */
7190 fast_find_position (w
, XFASTINT (before
),
7191 &dpyinfo
->mouse_face_beg_col
,
7192 &dpyinfo
->mouse_face_beg_row
,
7193 &dpyinfo
->mouse_face_beg_x
,
7194 &dpyinfo
->mouse_face_beg_y
,
7197 dpyinfo
->mouse_face_past_end
7198 = !fast_find_position (w
, XFASTINT (after
),
7199 &dpyinfo
->mouse_face_end_col
,
7200 &dpyinfo
->mouse_face_end_row
,
7201 &dpyinfo
->mouse_face_end_x
,
7202 &dpyinfo
->mouse_face_end_y
,
7204 dpyinfo
->mouse_face_window
= window
;
7205 dpyinfo
->mouse_face_face_id
7206 = face_at_buffer_position (w
, pos
, 0, 0,
7207 &ignore
, pos
+ 1, 1);
7209 /* Display it as active. */
7210 show_mouse_face (dpyinfo
, DRAW_MOUSE_FACE
);
7218 /* Look for a `help-echo' property. */
7220 Lisp_Object help
, overlay
;
7222 /* Check overlays first. */
7223 help
= overlay
= Qnil
;
7224 for (i
= noverlays
- 1; i
>= 0 && NILP (help
); --i
)
7226 overlay
= overlay_vec
[i
];
7227 help
= Foverlay_get (overlay
, Qhelp_echo
);
7233 help_echo_window
= window
;
7234 help_echo_object
= overlay
;
7235 help_echo_pos
= pos
;
7239 Lisp_Object object
= glyph
->object
;
7240 int charpos
= glyph
->charpos
;
7242 /* Try text properties. */
7243 if (STRINGP (object
)
7245 && charpos
< XSTRING (object
)->size
)
7247 help
= Fget_text_property (make_number (charpos
),
7248 Qhelp_echo
, object
);
7251 /* If the string itself doesn't specify a help-echo,
7252 see if the buffer text ``under'' it does. */
7254 = MATRIX_ROW (w
->current_matrix
, vpos
);
7255 int start
= MATRIX_ROW_START_CHARPOS (r
);
7256 int pos
= string_buffer_position (w
, object
, start
);
7259 help
= Fget_char_property (make_number (pos
),
7260 Qhelp_echo
, w
->buffer
);
7269 else if (BUFFERP (object
)
7272 help
= Fget_text_property (make_number (charpos
), Qhelp_echo
,
7278 help_echo_window
= window
;
7279 help_echo_object
= object
;
7280 help_echo_pos
= charpos
;
7287 current_buffer
= obuf
;
7293 XDefineCursor (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), cursor
);
7297 redo_mouse_highlight ()
7299 if (!NILP (last_mouse_motion_frame
)
7300 && FRAME_LIVE_P (XFRAME (last_mouse_motion_frame
)))
7301 note_mouse_highlight (XFRAME (last_mouse_motion_frame
),
7302 last_mouse_motion_event
.x
,
7303 last_mouse_motion_event
.y
);
7308 /***********************************************************************
7310 ***********************************************************************/
7312 static int x_tool_bar_item
P_ ((struct frame
*, int, int,
7313 struct glyph
**, int *, int *, int *));
7315 /* Tool-bar item index of the item on which a mouse button was pressed
7318 static int last_tool_bar_item
;
7321 /* Get information about the tool-bar item at position X/Y on frame F.
7322 Return in *GLYPH a pointer to the glyph of the tool-bar item in
7323 the current matrix of the tool-bar window of F, or NULL if not
7324 on a tool-bar item. Return in *PROP_IDX the index of the tool-bar
7325 item in F->tool_bar_items. Value is
7327 -1 if X/Y is not on a tool-bar item
7328 0 if X/Y is on the same item that was highlighted before.
7332 x_tool_bar_item (f
, x
, y
, glyph
, hpos
, vpos
, prop_idx
)
7335 struct glyph
**glyph
;
7336 int *hpos
, *vpos
, *prop_idx
;
7338 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
7339 struct window
*w
= XWINDOW (f
->tool_bar_window
);
7342 /* Find the glyph under X/Y. */
7343 *glyph
= x_y_to_hpos_vpos (w
, x
, y
, hpos
, vpos
, &area
, 0);
7347 /* Get the start of this tool-bar item's properties in
7348 f->tool_bar_items. */
7349 if (!tool_bar_item_info (f
, *glyph
, prop_idx
))
7352 /* Is mouse on the highlighted item? */
7353 if (EQ (f
->tool_bar_window
, dpyinfo
->mouse_face_window
)
7354 && *vpos
>= dpyinfo
->mouse_face_beg_row
7355 && *vpos
<= dpyinfo
->mouse_face_end_row
7356 && (*vpos
> dpyinfo
->mouse_face_beg_row
7357 || *hpos
>= dpyinfo
->mouse_face_beg_col
)
7358 && (*vpos
< dpyinfo
->mouse_face_end_row
7359 || *hpos
< dpyinfo
->mouse_face_end_col
7360 || dpyinfo
->mouse_face_past_end
))
7367 /* Handle mouse button event on the tool-bar of frame F, at
7368 frame-relative coordinates X/Y. EVENT_TYPE is either ButtonPress
7372 x_handle_tool_bar_click (f
, button_event
)
7374 XButtonEvent
*button_event
;
7376 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
7377 struct window
*w
= XWINDOW (f
->tool_bar_window
);
7378 int hpos
, vpos
, prop_idx
;
7379 struct glyph
*glyph
;
7380 Lisp_Object enabled_p
;
7381 int x
= button_event
->x
;
7382 int y
= button_event
->y
;
7384 /* If not on the highlighted tool-bar item, return. */
7385 frame_to_window_pixel_xy (w
, &x
, &y
);
7386 if (x_tool_bar_item (f
, x
, y
, &glyph
, &hpos
, &vpos
, &prop_idx
) != 0)
7389 /* If item is disabled, do nothing. */
7390 enabled_p
= AREF (f
->tool_bar_items
, prop_idx
+ TOOL_BAR_ITEM_ENABLED_P
);
7391 if (NILP (enabled_p
))
7394 if (button_event
->type
== ButtonPress
)
7396 /* Show item in pressed state. */
7397 show_mouse_face (dpyinfo
, DRAW_IMAGE_SUNKEN
);
7398 dpyinfo
->mouse_face_image_state
= DRAW_IMAGE_SUNKEN
;
7399 last_tool_bar_item
= prop_idx
;
7403 Lisp_Object key
, frame
;
7404 struct input_event event
;
7406 /* Show item in released state. */
7407 show_mouse_face (dpyinfo
, DRAW_IMAGE_RAISED
);
7408 dpyinfo
->mouse_face_image_state
= DRAW_IMAGE_RAISED
;
7410 key
= AREF (f
->tool_bar_items
, prop_idx
+ TOOL_BAR_ITEM_KEY
);
7412 XSETFRAME (frame
, f
);
7413 event
.kind
= TOOL_BAR_EVENT
;
7414 event
.frame_or_window
= frame
;
7416 kbd_buffer_store_event (&event
);
7418 event
.kind
= TOOL_BAR_EVENT
;
7419 event
.frame_or_window
= frame
;
7421 event
.modifiers
= x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO (f
),
7422 button_event
->state
);
7423 kbd_buffer_store_event (&event
);
7424 last_tool_bar_item
= -1;
7429 /* Possibly highlight a tool-bar item on frame F when mouse moves to
7430 tool-bar window-relative coordinates X/Y. Called from
7431 note_mouse_highlight. */
7434 note_tool_bar_highlight (f
, x
, y
)
7438 Lisp_Object window
= f
->tool_bar_window
;
7439 struct window
*w
= XWINDOW (window
);
7440 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
7442 struct glyph
*glyph
;
7443 struct glyph_row
*row
;
7445 Lisp_Object enabled_p
;
7447 enum draw_glyphs_face draw
;
7448 int mouse_down_p
, rc
;
7450 /* Function note_mouse_highlight is called with negative x(y
7451 values when mouse moves outside of the frame. */
7452 if (x
<= 0 || y
<= 0)
7454 clear_mouse_face (dpyinfo
);
7458 rc
= x_tool_bar_item (f
, x
, y
, &glyph
, &hpos
, &vpos
, &prop_idx
);
7461 /* Not on tool-bar item. */
7462 clear_mouse_face (dpyinfo
);
7468 clear_mouse_face (dpyinfo
);
7470 /* Mouse is down, but on different tool-bar item? */
7471 mouse_down_p
= (dpyinfo
->grabbed
7472 && f
== last_mouse_frame
7473 && FRAME_LIVE_P (f
));
7475 && last_tool_bar_item
!= prop_idx
)
7478 dpyinfo
->mouse_face_image_state
= DRAW_NORMAL_TEXT
;
7479 draw
= mouse_down_p
? DRAW_IMAGE_SUNKEN
: DRAW_IMAGE_RAISED
;
7481 /* If tool-bar item is not enabled, don't highlight it. */
7482 enabled_p
= AREF (f
->tool_bar_items
, prop_idx
+ TOOL_BAR_ITEM_ENABLED_P
);
7483 if (!NILP (enabled_p
))
7485 /* Compute the x-position of the glyph. In front and past the
7486 image is a space. We include this is the highlighted area. */
7487 row
= MATRIX_ROW (w
->current_matrix
, vpos
);
7488 for (i
= x
= 0; i
< hpos
; ++i
)
7489 x
+= row
->glyphs
[TEXT_AREA
][i
].pixel_width
;
7491 /* Record this as the current active region. */
7492 dpyinfo
->mouse_face_beg_col
= hpos
;
7493 dpyinfo
->mouse_face_beg_row
= vpos
;
7494 dpyinfo
->mouse_face_beg_x
= x
;
7495 dpyinfo
->mouse_face_beg_y
= row
->y
;
7496 dpyinfo
->mouse_face_past_end
= 0;
7498 dpyinfo
->mouse_face_end_col
= hpos
+ 1;
7499 dpyinfo
->mouse_face_end_row
= vpos
;
7500 dpyinfo
->mouse_face_end_x
= x
+ glyph
->pixel_width
;
7501 dpyinfo
->mouse_face_end_y
= row
->y
;
7502 dpyinfo
->mouse_face_window
= window
;
7503 dpyinfo
->mouse_face_face_id
= TOOL_BAR_FACE_ID
;
7505 /* Display it as active. */
7506 show_mouse_face (dpyinfo
, draw
);
7507 dpyinfo
->mouse_face_image_state
= draw
;
7512 /* Set help_echo to a help string to display for this tool-bar item.
7513 XTread_socket does the rest. */
7514 help_echo_object
= help_echo_window
= Qnil
;
7516 help_echo
= AREF (f
->tool_bar_items
, prop_idx
+ TOOL_BAR_ITEM_HELP
);
7517 if (NILP (help_echo
))
7518 help_echo
= AREF (f
->tool_bar_items
, prop_idx
+ TOOL_BAR_ITEM_CAPTION
);
7523 /* Find the glyph matrix position of buffer position CHARPOS in window
7524 *W. HPOS, *VPOS, *X, and *Y are set to the positions found. W's
7525 current glyphs must be up to date. If CHARPOS is above window
7526 start return (0, 0, 0, 0). If CHARPOS is after end of W, return end
7527 of last line in W. In the row containing CHARPOS, stop before glyphs
7528 having STOP as object. */
7530 #if 0 /* This is a version of fast_find_position that's more correct
7531 in the presence of hscrolling, for example. I didn't install
7532 it right away because the problem fixed is minor, it failed
7533 in 20.x as well, and I think it's too risky to install
7534 so near the release of 21.1. 2001-09-25 gerd. */
7537 fast_find_position (w
, charpos
, hpos
, vpos
, x
, y
, stop
)
7540 int *hpos
, *vpos
, *x
, *y
;
7543 struct glyph_row
*row
, *first
;
7544 struct glyph
*glyph
, *end
;
7545 int i
, past_end
= 0;
7547 first
= MATRIX_FIRST_TEXT_ROW (w
->current_matrix
);
7548 row
= row_containing_pos (w
, charpos
, first
, NULL
, 0);
7551 if (charpos
< MATRIX_ROW_START_CHARPOS (first
))
7553 *x
= *y
= *hpos
= *vpos
= 0;
7558 row
= MATRIX_ROW (w
->current_matrix
, XFASTINT (w
->window_end_vpos
));
7565 *vpos
= MATRIX_ROW_VPOS (row
, w
->current_matrix
);
7567 glyph
= row
->glyphs
[TEXT_AREA
];
7568 end
= glyph
+ row
->used
[TEXT_AREA
];
7570 /* Skip over glyphs not having an object at the start of the row.
7571 These are special glyphs like truncation marks on terminal
7573 if (row
->displays_text_p
)
7575 && INTEGERP (glyph
->object
)
7576 && !EQ (stop
, glyph
->object
)
7577 && glyph
->charpos
< 0)
7579 *x
+= glyph
->pixel_width
;
7584 && !INTEGERP (glyph
->object
)
7585 && !EQ (stop
, glyph
->object
)
7586 && (!BUFFERP (glyph
->object
)
7587 || glyph
->charpos
< charpos
))
7589 *x
+= glyph
->pixel_width
;
7593 *hpos
= glyph
- row
->glyphs
[TEXT_AREA
];
7600 fast_find_position (w
, pos
, hpos
, vpos
, x
, y
, stop
)
7603 int *hpos
, *vpos
, *x
, *y
;
7608 int maybe_next_line_p
= 0;
7609 int line_start_position
;
7610 int yb
= window_text_bottom_y (w
);
7611 struct glyph_row
*row
, *best_row
;
7612 int row_vpos
, best_row_vpos
;
7615 row
= best_row
= MATRIX_FIRST_TEXT_ROW (w
->current_matrix
);
7616 row_vpos
= best_row_vpos
= MATRIX_ROW_VPOS (row
, w
->current_matrix
);
7620 if (row
->used
[TEXT_AREA
])
7621 line_start_position
= row
->glyphs
[TEXT_AREA
]->charpos
;
7623 line_start_position
= 0;
7625 if (line_start_position
> pos
)
7627 /* If the position sought is the end of the buffer,
7628 don't include the blank lines at the bottom of the window. */
7629 else if (line_start_position
== pos
7630 && pos
== BUF_ZV (XBUFFER (w
->buffer
)))
7632 maybe_next_line_p
= 1;
7635 else if (line_start_position
> 0)
7638 best_row_vpos
= row_vpos
;
7641 if (row
->y
+ row
->height
>= yb
)
7648 /* Find the right column within BEST_ROW. */
7650 current_x
= best_row
->x
;
7651 for (i
= 0; i
< best_row
->used
[TEXT_AREA
]; i
++)
7653 struct glyph
*glyph
= best_row
->glyphs
[TEXT_AREA
] + i
;
7654 int charpos
= glyph
->charpos
;
7656 if (BUFFERP (glyph
->object
))
7661 *vpos
= best_row_vpos
;
7666 else if (charpos
> pos
)
7669 else if (EQ (glyph
->object
, stop
))
7674 current_x
+= glyph
->pixel_width
;
7677 /* If we're looking for the end of the buffer,
7678 and we didn't find it in the line we scanned,
7679 use the start of the following line. */
7680 if (maybe_next_line_p
)
7685 current_x
= best_row
->x
;
7688 *vpos
= best_row_vpos
;
7689 *hpos
= lastcol
+ 1;
7698 /* Find the position of the glyph for position POS in OBJECT in
7699 window W's current matrix, and return in *X, *Y the pixel
7700 coordinates, and return in *HPOS, *VPOS the column/row of the glyph.
7702 RIGHT_P non-zero means return the position of the right edge of the
7703 glyph, RIGHT_P zero means return the left edge position.
7705 If no glyph for POS exists in the matrix, return the position of
7706 the glyph with the next smaller position that is in the matrix, if
7707 RIGHT_P is zero. If RIGHT_P is non-zero, and no glyph for POS
7708 exists in the matrix, return the position of the glyph with the
7709 next larger position in OBJECT.
7711 Value is non-zero if a glyph was found. */
7714 fast_find_string_pos (w
, pos
, object
, hpos
, vpos
, x
, y
, right_p
)
7718 int *hpos
, *vpos
, *x
, *y
;
7721 int yb
= window_text_bottom_y (w
);
7722 struct glyph_row
*r
;
7723 struct glyph
*best_glyph
= NULL
;
7724 struct glyph_row
*best_row
= NULL
;
7727 for (r
= MATRIX_FIRST_TEXT_ROW (w
->current_matrix
);
7728 r
->enabled_p
&& r
->y
< yb
;
7731 struct glyph
*g
= r
->glyphs
[TEXT_AREA
];
7732 struct glyph
*e
= g
+ r
->used
[TEXT_AREA
];
7735 for (gx
= r
->x
; g
< e
; gx
+= g
->pixel_width
, ++g
)
7736 if (EQ (g
->object
, object
))
7738 if (g
->charpos
== pos
)
7745 else if (best_glyph
== NULL
7746 || ((abs (g
->charpos
- pos
)
7747 < abs (best_glyph
->charpos
- pos
))
7750 : g
->charpos
> pos
)))
7764 *hpos
= best_glyph
- best_row
->glyphs
[TEXT_AREA
];
7768 *x
+= best_glyph
->pixel_width
;
7773 *vpos
= best_row
- w
->current_matrix
->rows
;
7776 return best_glyph
!= NULL
;
7780 /* Display the active region described by mouse_face_*
7781 in its mouse-face if HL > 0, in its normal face if HL = 0. */
7784 show_mouse_face (dpyinfo
, draw
)
7785 struct x_display_info
*dpyinfo
;
7786 enum draw_glyphs_face draw
;
7788 struct window
*w
= XWINDOW (dpyinfo
->mouse_face_window
);
7789 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
7791 if (/* If window is in the process of being destroyed, don't bother
7793 w
->current_matrix
!= NULL
7794 /* Don't update mouse highlight if hidden */
7795 && (draw
!= DRAW_MOUSE_FACE
|| !dpyinfo
->mouse_face_hidden
)
7796 /* Recognize when we are called to operate on rows that don't exist
7797 anymore. This can happen when a window is split. */
7798 && dpyinfo
->mouse_face_end_row
< w
->current_matrix
->nrows
)
7800 int phys_cursor_on_p
= w
->phys_cursor_on_p
;
7801 struct glyph_row
*row
, *first
, *last
;
7803 first
= MATRIX_ROW (w
->current_matrix
, dpyinfo
->mouse_face_beg_row
);
7804 last
= MATRIX_ROW (w
->current_matrix
, dpyinfo
->mouse_face_end_row
);
7806 for (row
= first
; row
<= last
&& row
->enabled_p
; ++row
)
7808 int start_hpos
, end_hpos
, start_x
;
7810 /* For all but the first row, the highlight starts at column 0. */
7813 start_hpos
= dpyinfo
->mouse_face_beg_col
;
7814 start_x
= dpyinfo
->mouse_face_beg_x
;
7823 end_hpos
= dpyinfo
->mouse_face_end_col
;
7825 end_hpos
= row
->used
[TEXT_AREA
];
7827 if (end_hpos
> start_hpos
)
7829 x_draw_glyphs (w
, start_x
, row
, TEXT_AREA
,
7830 start_hpos
, end_hpos
, draw
, 0);
7833 = draw
== DRAW_MOUSE_FACE
|| draw
== DRAW_IMAGE_RAISED
;
7837 /* When we've written over the cursor, arrange for it to
7838 be displayed again. */
7839 if (phys_cursor_on_p
&& !w
->phys_cursor_on_p
)
7840 x_display_cursor (w
, 1,
7841 w
->phys_cursor
.hpos
, w
->phys_cursor
.vpos
,
7842 w
->phys_cursor
.x
, w
->phys_cursor
.y
);
7845 /* Change the mouse cursor. */
7846 if (draw
== DRAW_NORMAL_TEXT
)
7847 XDefineCursor (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
7848 f
->output_data
.x
->text_cursor
);
7849 else if (draw
== DRAW_MOUSE_FACE
)
7850 XDefineCursor (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
7851 f
->output_data
.x
->cross_cursor
);
7853 XDefineCursor (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
7854 f
->output_data
.x
->nontext_cursor
);
7857 /* Clear out the mouse-highlighted active region.
7858 Redraw it un-highlighted first. Value is non-zero if mouse
7859 face was actually drawn unhighlighted. */
7862 clear_mouse_face (dpyinfo
)
7863 struct x_display_info
*dpyinfo
;
7867 if (!NILP (dpyinfo
->mouse_face_window
))
7869 show_mouse_face (dpyinfo
, DRAW_NORMAL_TEXT
);
7873 dpyinfo
->mouse_face_beg_row
= dpyinfo
->mouse_face_beg_col
= -1;
7874 dpyinfo
->mouse_face_end_row
= dpyinfo
->mouse_face_end_col
= -1;
7875 dpyinfo
->mouse_face_window
= Qnil
;
7876 dpyinfo
->mouse_face_overlay
= Qnil
;
7881 /* Clear any mouse-face on window W. This function is part of the
7882 redisplay interface, and is called from try_window_id and similar
7883 functions to ensure the mouse-highlight is off. */
7886 x_clear_mouse_face (w
)
7889 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (XFRAME (w
->frame
));
7893 XSETWINDOW (window
, w
);
7894 if (EQ (window
, dpyinfo
->mouse_face_window
))
7895 clear_mouse_face (dpyinfo
);
7900 /* Just discard the mouse face information for frame F, if any.
7901 This is used when the size of F is changed. */
7904 cancel_mouse_face (f
)
7908 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
7910 window
= dpyinfo
->mouse_face_window
;
7911 if (! NILP (window
) && XFRAME (XWINDOW (window
)->frame
) == f
)
7913 dpyinfo
->mouse_face_beg_row
= dpyinfo
->mouse_face_beg_col
= -1;
7914 dpyinfo
->mouse_face_end_row
= dpyinfo
->mouse_face_end_col
= -1;
7915 dpyinfo
->mouse_face_window
= Qnil
;
7920 static int glyph_rect
P_ ((struct frame
*f
, int, int, XRectangle
*));
7923 /* Try to determine frame pixel position and size of the glyph under
7924 frame pixel coordinates X/Y on frame F . Return the position and
7925 size in *RECT. Value is non-zero if we could compute these
7929 glyph_rect (f
, x
, y
, rect
)
7935 int part
, found
= 0;
7937 window
= window_from_coordinates (f
, x
, y
, &part
, 0);
7940 struct window
*w
= XWINDOW (window
);
7941 struct glyph_row
*r
= MATRIX_FIRST_TEXT_ROW (w
->current_matrix
);
7942 struct glyph_row
*end
= r
+ w
->current_matrix
->nrows
- 1;
7944 frame_to_window_pixel_xy (w
, &x
, &y
);
7946 for (; !found
&& r
< end
&& r
->enabled_p
; ++r
)
7949 struct glyph
*g
= r
->glyphs
[TEXT_AREA
];
7950 struct glyph
*end
= g
+ r
->used
[TEXT_AREA
];
7953 for (gx
= r
->x
; !found
&& g
< end
; gx
+= g
->pixel_width
, ++g
)
7956 rect
->width
= g
->pixel_width
;
7957 rect
->height
= r
->height
;
7958 rect
->x
= WINDOW_TO_FRAME_PIXEL_X (w
, gx
);
7959 rect
->y
= WINDOW_TO_FRAME_PIXEL_Y (w
, r
->y
);
7969 /* Return the current position of the mouse.
7970 *FP should be a frame which indicates which display to ask about.
7972 If the mouse movement started in a scroll bar, set *FP, *BAR_WINDOW,
7973 and *PART to the frame, window, and scroll bar part that the mouse
7974 is over. Set *X and *Y to the portion and whole of the mouse's
7975 position on the scroll bar.
7977 If the mouse movement started elsewhere, set *FP to the frame the
7978 mouse is on, *BAR_WINDOW to nil, and *X and *Y to the character cell
7981 Set *TIME to the server time-stamp for the time at which the mouse
7982 was at this position.
7984 Don't store anything if we don't have a valid set of values to report.
7986 This clears the mouse_moved flag, so we can wait for the next mouse
7990 XTmouse_position (fp
, insist
, bar_window
, part
, x
, y
, time
)
7993 Lisp_Object
*bar_window
;
7994 enum scroll_bar_part
*part
;
7996 unsigned long *time
;
8002 if (! NILP (last_mouse_scroll_bar
) && insist
== 0)
8003 x_scroll_bar_report_motion (fp
, bar_window
, part
, x
, y
, time
);
8009 Window dummy_window
;
8012 Lisp_Object frame
, tail
;
8014 /* Clear the mouse-moved flag for every frame on this display. */
8015 FOR_EACH_FRAME (tail
, frame
)
8016 if (FRAME_X_DISPLAY (XFRAME (frame
)) == FRAME_X_DISPLAY (*fp
))
8017 XFRAME (frame
)->mouse_moved
= 0;
8019 last_mouse_scroll_bar
= Qnil
;
8021 /* Figure out which root window we're on. */
8022 XQueryPointer (FRAME_X_DISPLAY (*fp
),
8023 DefaultRootWindow (FRAME_X_DISPLAY (*fp
)),
8025 /* The root window which contains the pointer. */
8028 /* Trash which we can't trust if the pointer is on
8029 a different screen. */
8032 /* The position on that root window. */
8035 /* More trash we can't trust. */
8038 /* Modifier keys and pointer buttons, about which
8040 (unsigned int *) &dummy
);
8042 /* Now we have a position on the root; find the innermost window
8043 containing the pointer. */
8047 int parent_x
= 0, parent_y
= 0;
8052 /* XTranslateCoordinates can get errors if the window
8053 structure is changing at the same time this function
8054 is running. So at least we must not crash from them. */
8056 count
= x_catch_errors (FRAME_X_DISPLAY (*fp
));
8058 if (FRAME_X_DISPLAY_INFO (*fp
)->grabbed
&& last_mouse_frame
8059 && FRAME_LIVE_P (last_mouse_frame
))
8061 /* If mouse was grabbed on a frame, give coords for that frame
8062 even if the mouse is now outside it. */
8063 XTranslateCoordinates (FRAME_X_DISPLAY (*fp
),
8065 /* From-window, to-window. */
8066 root
, FRAME_X_WINDOW (last_mouse_frame
),
8068 /* From-position, to-position. */
8069 root_x
, root_y
, &win_x
, &win_y
,
8073 f1
= last_mouse_frame
;
8079 XTranslateCoordinates (FRAME_X_DISPLAY (*fp
),
8081 /* From-window, to-window. */
8084 /* From-position, to-position. */
8085 root_x
, root_y
, &win_x
, &win_y
,
8090 if (child
== None
|| child
== win
)
8098 /* Now we know that:
8099 win is the innermost window containing the pointer
8100 (XTC says it has no child containing the pointer),
8101 win_x and win_y are the pointer's position in it
8102 (XTC did this the last time through), and
8103 parent_x and parent_y are the pointer's position in win's parent.
8104 (They are what win_x and win_y were when win was child.
8105 If win is the root window, it has no parent, and
8106 parent_{x,y} are invalid, but that's okay, because we'll
8107 never use them in that case.) */
8109 /* Is win one of our frames? */
8110 f1
= x_any_window_to_frame (FRAME_X_DISPLAY_INFO (*fp
), win
);
8112 #ifdef USE_X_TOOLKIT
8113 /* If we end up with the menu bar window, say it's not
8116 && f1
->output_data
.x
->menubar_widget
8117 && win
== XtWindow (f1
->output_data
.x
->menubar_widget
))
8119 #endif /* USE_X_TOOLKIT */
8122 if (x_had_errors_p (FRAME_X_DISPLAY (*fp
)))
8125 x_uncatch_errors (FRAME_X_DISPLAY (*fp
), count
);
8127 /* If not, is it one of our scroll bars? */
8130 struct scroll_bar
*bar
= x_window_to_scroll_bar (win
);
8134 f1
= XFRAME (WINDOW_FRAME (XWINDOW (bar
->window
)));
8140 if (f1
== 0 && insist
> 0)
8141 f1
= SELECTED_FRAME ();
8145 /* Ok, we found a frame. Store all the values.
8146 last_mouse_glyph is a rectangle used to reduce the
8147 generation of mouse events. To not miss any motion
8148 events, we must divide the frame into rectangles of the
8149 size of the smallest character that could be displayed
8150 on it, i.e. into the same rectangles that matrices on
8151 the frame are divided into. */
8153 int width
, height
, gx
, gy
;
8156 if (glyph_rect (f1
, win_x
, win_y
, &rect
))
8157 last_mouse_glyph
= rect
;
8160 width
= FRAME_SMALLEST_CHAR_WIDTH (f1
);
8161 height
= FRAME_SMALLEST_FONT_HEIGHT (f1
);
8165 /* Arrange for the division in PIXEL_TO_CHAR_COL etc. to
8166 round down even for negative values. */
8171 gx
= (gx
+ width
- 1) / width
* width
;
8172 gy
= (gy
+ height
- 1) / height
* height
;
8174 last_mouse_glyph
.width
= width
;
8175 last_mouse_glyph
.height
= height
;
8176 last_mouse_glyph
.x
= gx
;
8177 last_mouse_glyph
.y
= gy
;
8183 XSETINT (*x
, win_x
);
8184 XSETINT (*y
, win_y
);
8185 *time
= last_mouse_movement_time
;
8194 #ifdef USE_X_TOOLKIT
8196 /* Atimer callback function for TIMER. Called every 0.1s to process
8197 Xt timeouts, if needed. We must avoid calling XtAppPending as
8198 much as possible because that function does an implicit XFlush
8199 that slows us down. */
8202 x_process_timeouts (timer
)
8203 struct atimer
*timer
;
8205 if (toolkit_scroll_bar_interaction
|| popup_activated_flag
)
8208 while (XtAppPending (Xt_app_con
) & XtIMTimer
)
8209 XtAppProcessEvent (Xt_app_con
, XtIMTimer
);
8214 #endif /* USE_X_TOOLKIT */
8217 /* Scroll bar support. */
8219 /* Given an X window ID, find the struct scroll_bar which manages it.
8220 This can be called in GC, so we have to make sure to strip off mark
8223 static struct scroll_bar
*
8224 x_window_to_scroll_bar (window_id
)
8229 for (tail
= Vframe_list
;
8230 XGCTYPE (tail
) == Lisp_Cons
;
8233 Lisp_Object frame
, bar
, condemned
;
8235 frame
= XCAR (tail
);
8236 /* All elements of Vframe_list should be frames. */
8237 if (! GC_FRAMEP (frame
))
8240 /* Scan this frame's scroll bar list for a scroll bar with the
8242 condemned
= FRAME_CONDEMNED_SCROLL_BARS (XFRAME (frame
));
8243 for (bar
= FRAME_SCROLL_BARS (XFRAME (frame
));
8244 /* This trick allows us to search both the ordinary and
8245 condemned scroll bar lists with one loop. */
8246 ! GC_NILP (bar
) || (bar
= condemned
,
8249 bar
= XSCROLL_BAR (bar
)->next
)
8250 if (SCROLL_BAR_X_WINDOW (XSCROLL_BAR (bar
)) == window_id
)
8251 return XSCROLL_BAR (bar
);
8258 #if defined USE_LUCID
8260 /* Return the Lucid menu bar WINDOW is part of. Return null
8261 if WINDOW is not part of a menu bar. */
8264 x_window_to_menu_bar (window
)
8269 for (tail
= Vframe_list
;
8270 XGCTYPE (tail
) == Lisp_Cons
;
8273 Lisp_Object frame
= XCAR (tail
);
8274 Widget menu_bar
= XFRAME (frame
)->output_data
.x
->menubar_widget
;
8276 if (menu_bar
&& xlwmenu_window_p (menu_bar
, window
))
8283 #endif /* USE_LUCID */
8286 /************************************************************************
8288 ************************************************************************/
8290 #ifdef USE_TOOLKIT_SCROLL_BARS
8292 static void x_scroll_bar_to_input_event
P_ ((XEvent
*, struct input_event
*));
8293 static void x_send_scroll_bar_event
P_ ((Lisp_Object
, int, int, int));
8294 static void x_create_toolkit_scroll_bar
P_ ((struct frame
*,
8295 struct scroll_bar
*));
8296 static void x_set_toolkit_scroll_bar_thumb
P_ ((struct scroll_bar
*,
8300 /* Id of action hook installed for scroll bars. */
8302 static XtActionHookId action_hook_id
;
8304 /* Lisp window being scrolled. Set when starting to interact with
8305 a toolkit scroll bar, reset to nil when ending the interaction. */
8307 static Lisp_Object window_being_scrolled
;
8309 /* Last scroll bar part sent in xm_scroll_callback. */
8311 static int last_scroll_bar_part
;
8313 /* Whether this is an Xaw with arrow-scrollbars. This should imply
8314 that movements of 1/20 of the screen size are mapped to up/down. */
8316 static Boolean xaw3d_arrow_scroll
;
8318 /* Whether the drag scrolling maintains the mouse at the top of the
8319 thumb. If not, resizing the thumb needs to be done more carefully
8320 to avoid jerkyness. */
8322 static Boolean xaw3d_pick_top
;
8325 /* Action hook installed via XtAppAddActionHook when toolkit scroll
8326 bars are used.. The hook is responsible for detecting when
8327 the user ends an interaction with the scroll bar, and generates
8328 a `end-scroll' SCROLL_BAR_CLICK_EVENT' event if so. */
8331 xt_action_hook (widget
, client_data
, action_name
, event
, params
,
8334 XtPointer client_data
;
8338 Cardinal
*num_params
;
8344 scroll_bar_p
= XmIsScrollBar (widget
);
8345 end_action
= "Release";
8346 #else /* !USE_MOTIF i.e. use Xaw */
8347 scroll_bar_p
= XtIsSubclass (widget
, scrollbarWidgetClass
);
8348 end_action
= "EndScroll";
8349 #endif /* USE_MOTIF */
8352 && strcmp (action_name
, end_action
) == 0
8353 && WINDOWP (window_being_scrolled
))
8357 x_send_scroll_bar_event (window_being_scrolled
,
8358 scroll_bar_end_scroll
, 0, 0);
8359 w
= XWINDOW (window_being_scrolled
);
8360 XSCROLL_BAR (w
->vertical_scroll_bar
)->dragging
= Qnil
;
8361 window_being_scrolled
= Qnil
;
8362 last_scroll_bar_part
= -1;
8364 /* Xt timeouts no longer needed. */
8365 toolkit_scroll_bar_interaction
= 0;
8369 /* A vector of windows used for communication between
8370 x_send_scroll_bar_event and x_scroll_bar_to_input_event. */
8372 static struct window
**scroll_bar_windows
;
8373 static int scroll_bar_windows_size
;
8376 /* Send a client message with message type Xatom_Scrollbar for a
8377 scroll action to the frame of WINDOW. PART is a value identifying
8378 the part of the scroll bar that was clicked on. PORTION is the
8379 amount to scroll of a whole of WHOLE. */
8382 x_send_scroll_bar_event (window
, part
, portion
, whole
)
8384 int part
, portion
, whole
;
8387 XClientMessageEvent
*ev
= (XClientMessageEvent
*) &event
;
8388 struct window
*w
= XWINDOW (window
);
8389 struct frame
*f
= XFRAME (w
->frame
);
8394 /* Construct a ClientMessage event to send to the frame. */
8395 ev
->type
= ClientMessage
;
8396 ev
->message_type
= FRAME_X_DISPLAY_INFO (f
)->Xatom_Scrollbar
;
8397 ev
->display
= FRAME_X_DISPLAY (f
);
8398 ev
->window
= FRAME_X_WINDOW (f
);
8401 /* We can only transfer 32 bits in the XClientMessageEvent, which is
8402 not enough to store a pointer or Lisp_Object on a 64 bit system.
8403 So, store the window in scroll_bar_windows and pass the index
8404 into that array in the event. */
8405 for (i
= 0; i
< scroll_bar_windows_size
; ++i
)
8406 if (scroll_bar_windows
[i
] == NULL
)
8409 if (i
== scroll_bar_windows_size
)
8411 int new_size
= max (10, 2 * scroll_bar_windows_size
);
8412 size_t nbytes
= new_size
* sizeof *scroll_bar_windows
;
8413 size_t old_nbytes
= scroll_bar_windows_size
* sizeof *scroll_bar_windows
;
8415 scroll_bar_windows
= (struct window
**) xrealloc (scroll_bar_windows
,
8417 bzero (&scroll_bar_windows
[i
], nbytes
- old_nbytes
);
8418 scroll_bar_windows_size
= new_size
;
8421 scroll_bar_windows
[i
] = w
;
8422 ev
->data
.l
[0] = (long) i
;
8423 ev
->data
.l
[1] = (long) part
;
8424 ev
->data
.l
[2] = (long) 0;
8425 ev
->data
.l
[3] = (long) portion
;
8426 ev
->data
.l
[4] = (long) whole
;
8428 /* Make Xt timeouts work while the scroll bar is active. */
8429 toolkit_scroll_bar_interaction
= 1;
8431 /* Setting the event mask to zero means that the message will
8432 be sent to the client that created the window, and if that
8433 window no longer exists, no event will be sent. */
8434 XSendEvent (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), False
, 0, &event
);
8439 /* Transform a scroll bar ClientMessage EVENT to an Emacs input event
8443 x_scroll_bar_to_input_event (event
, ievent
)
8445 struct input_event
*ievent
;
8447 XClientMessageEvent
*ev
= (XClientMessageEvent
*) event
;
8452 w
= scroll_bar_windows
[ev
->data
.l
[0]];
8453 scroll_bar_windows
[ev
->data
.l
[0]] = NULL
;
8455 XSETWINDOW (window
, w
);
8456 f
= XFRAME (w
->frame
);
8458 ievent
->kind
= SCROLL_BAR_CLICK_EVENT
;
8459 ievent
->frame_or_window
= window
;
8461 ievent
->timestamp
= XtLastTimestampProcessed (FRAME_X_DISPLAY (f
));
8462 ievent
->part
= ev
->data
.l
[1];
8463 ievent
->code
= ev
->data
.l
[2];
8464 ievent
->x
= make_number ((int) ev
->data
.l
[3]);
8465 ievent
->y
= make_number ((int) ev
->data
.l
[4]);
8466 ievent
->modifiers
= 0;
8472 /* Minimum and maximum values used for Motif scroll bars. */
8475 #define XM_SB_MAX 10000000
8476 #define XM_SB_RANGE (XM_SB_MAX - XM_SB_MIN)
8479 /* Scroll bar callback for Motif scroll bars. WIDGET is the scroll
8480 bar widget. CLIENT_DATA is a pointer to the scroll_bar structure.
8481 CALL_DATA is a pointer a a XmScrollBarCallbackStruct. */
8484 xm_scroll_callback (widget
, client_data
, call_data
)
8486 XtPointer client_data
, call_data
;
8488 struct scroll_bar
*bar
= (struct scroll_bar
*) client_data
;
8489 XmScrollBarCallbackStruct
*cs
= (XmScrollBarCallbackStruct
*) call_data
;
8490 int part
= -1, whole
= 0, portion
= 0;
8494 case XmCR_DECREMENT
:
8495 bar
->dragging
= Qnil
;
8496 part
= scroll_bar_up_arrow
;
8499 case XmCR_INCREMENT
:
8500 bar
->dragging
= Qnil
;
8501 part
= scroll_bar_down_arrow
;
8504 case XmCR_PAGE_DECREMENT
:
8505 bar
->dragging
= Qnil
;
8506 part
= scroll_bar_above_handle
;
8509 case XmCR_PAGE_INCREMENT
:
8510 bar
->dragging
= Qnil
;
8511 part
= scroll_bar_below_handle
;
8515 bar
->dragging
= Qnil
;
8516 part
= scroll_bar_to_top
;
8519 case XmCR_TO_BOTTOM
:
8520 bar
->dragging
= Qnil
;
8521 part
= scroll_bar_to_bottom
;
8527 int dragging_down_p
= (INTEGERP (bar
->dragging
)
8528 && XINT (bar
->dragging
) <= cs
->value
);
8530 /* Get the slider size. */
8532 XtVaGetValues (widget
, XmNsliderSize
, &slider_size
, NULL
);
8535 whole
= XM_SB_RANGE
- slider_size
;
8536 portion
= min (cs
->value
- XM_SB_MIN
, whole
);
8537 part
= scroll_bar_handle
;
8538 bar
->dragging
= make_number (cs
->value
);
8542 case XmCR_VALUE_CHANGED
:
8548 window_being_scrolled
= bar
->window
;
8549 last_scroll_bar_part
= part
;
8550 x_send_scroll_bar_event (bar
->window
, part
, portion
, whole
);
8555 #else /* !USE_MOTIF, i.e. Xaw. */
8558 /* Xaw scroll bar callback. Invoked when the thumb is dragged.
8559 WIDGET is the scroll bar widget. CLIENT_DATA is a pointer to the
8560 scroll bar struct. CALL_DATA is a pointer to a float saying where
8564 xaw_jump_callback (widget
, client_data
, call_data
)
8566 XtPointer client_data
, call_data
;
8568 struct scroll_bar
*bar
= (struct scroll_bar
*) client_data
;
8569 float top
= *(float *) call_data
;
8571 int whole
, portion
, height
;
8574 /* Get the size of the thumb, a value between 0 and 1. */
8576 XtVaGetValues (widget
, XtNshown
, &shown
, XtNheight
, &height
, NULL
);
8580 portion
= shown
< 1 ? top
* whole
: 0;
8582 if (shown
< 1 && (abs (top
+ shown
- 1) < 1.0/height
))
8583 /* Some derivatives of Xaw refuse to shrink the thumb when you reach
8584 the bottom, so we force the scrolling whenever we see that we're
8585 too close to the bottom (in x_set_toolkit_scroll_bar_thumb
8586 we try to ensure that we always stay two pixels away from the
8588 part
= scroll_bar_down_arrow
;
8590 part
= scroll_bar_handle
;
8592 window_being_scrolled
= bar
->window
;
8593 bar
->dragging
= make_number (portion
);
8594 last_scroll_bar_part
= part
;
8595 x_send_scroll_bar_event (bar
->window
, part
, portion
, whole
);
8599 /* Xaw scroll bar callback. Invoked for incremental scrolling.,
8600 i.e. line or page up or down. WIDGET is the Xaw scroll bar
8601 widget. CLIENT_DATA is a pointer to the scroll_bar structure for
8602 the scroll bar. CALL_DATA is an integer specifying the action that
8603 has taken place. It's magnitude is in the range 0..height of the
8604 scroll bar. Negative values mean scroll towards buffer start.
8605 Values < height of scroll bar mean line-wise movement. */
8608 xaw_scroll_callback (widget
, client_data
, call_data
)
8610 XtPointer client_data
, call_data
;
8612 struct scroll_bar
*bar
= (struct scroll_bar
*) client_data
;
8613 int position
= (int) call_data
;
8617 /* Get the height of the scroll bar. */
8619 XtVaGetValues (widget
, XtNheight
, &height
, NULL
);
8622 if (abs (position
) >= height
)
8623 part
= (position
< 0) ? scroll_bar_above_handle
: scroll_bar_below_handle
;
8625 /* If Xaw3d was compiled with ARROW_SCROLLBAR,
8626 it maps line-movement to call_data = max(5, height/20). */
8627 else if (xaw3d_arrow_scroll
&& abs (position
) <= max (5, height
/ 20))
8628 part
= (position
< 0) ? scroll_bar_up_arrow
: scroll_bar_down_arrow
;
8630 part
= scroll_bar_move_ratio
;
8632 window_being_scrolled
= bar
->window
;
8633 bar
->dragging
= Qnil
;
8634 last_scroll_bar_part
= part
;
8635 x_send_scroll_bar_event (bar
->window
, part
, position
, height
);
8639 #endif /* not USE_MOTIF */
8642 /* Create the widget for scroll bar BAR on frame F. Record the widget
8643 and X window of the scroll bar in BAR. */
8646 x_create_toolkit_scroll_bar (f
, bar
)
8648 struct scroll_bar
*bar
;
8654 char *scroll_bar_name
= "verticalScrollBar";
8655 unsigned long pixel
;
8660 /* Set resources. Create the widget. */
8661 XtSetArg (av
[ac
], XtNmappedWhenManaged
, False
); ++ac
;
8662 XtSetArg (av
[ac
], XmNminimum
, XM_SB_MIN
); ++ac
;
8663 XtSetArg (av
[ac
], XmNmaximum
, XM_SB_MAX
); ++ac
;
8664 XtSetArg (av
[ac
], XmNorientation
, XmVERTICAL
); ++ac
;
8665 XtSetArg (av
[ac
], XmNprocessingDirection
, XmMAX_ON_BOTTOM
), ++ac
;
8666 XtSetArg (av
[ac
], XmNincrement
, 1); ++ac
;
8667 XtSetArg (av
[ac
], XmNpageIncrement
, 1); ++ac
;
8669 pixel
= f
->output_data
.x
->scroll_bar_foreground_pixel
;
8672 XtSetArg (av
[ac
], XmNforeground
, pixel
);
8676 pixel
= f
->output_data
.x
->scroll_bar_background_pixel
;
8679 XtSetArg (av
[ac
], XmNbackground
, pixel
);
8683 widget
= XmCreateScrollBar (f
->output_data
.x
->edit_widget
,
8684 scroll_bar_name
, av
, ac
);
8686 /* Add one callback for everything that can happen. */
8687 XtAddCallback (widget
, XmNdecrementCallback
, xm_scroll_callback
,
8689 XtAddCallback (widget
, XmNdragCallback
, xm_scroll_callback
,
8691 XtAddCallback (widget
, XmNincrementCallback
, xm_scroll_callback
,
8693 XtAddCallback (widget
, XmNpageDecrementCallback
, xm_scroll_callback
,
8695 XtAddCallback (widget
, XmNpageIncrementCallback
, xm_scroll_callback
,
8697 XtAddCallback (widget
, XmNtoBottomCallback
, xm_scroll_callback
,
8699 XtAddCallback (widget
, XmNtoTopCallback
, xm_scroll_callback
,
8702 /* Realize the widget. Only after that is the X window created. */
8703 XtRealizeWidget (widget
);
8705 /* Set the cursor to an arrow. I didn't find a resource to do that.
8706 And I'm wondering why it hasn't an arrow cursor by default. */
8707 XDefineCursor (XtDisplay (widget
), XtWindow (widget
),
8708 f
->output_data
.x
->nontext_cursor
);
8710 #else /* !USE_MOTIF i.e. use Xaw */
8712 /* Set resources. Create the widget. The background of the
8713 Xaw3d scroll bar widget is a little bit light for my taste.
8714 We don't alter it here to let users change it according
8715 to their taste with `emacs*verticalScrollBar.background: xxx'. */
8716 XtSetArg (av
[ac
], XtNmappedWhenManaged
, False
); ++ac
;
8717 XtSetArg (av
[ac
], XtNorientation
, XtorientVertical
); ++ac
;
8718 /* For smoother scrolling with Xaw3d -sm */
8719 /* XtSetArg (av[ac], XtNpickTop, True); ++ac; */
8721 pixel
= f
->output_data
.x
->scroll_bar_foreground_pixel
;
8724 XtSetArg (av
[ac
], XtNforeground
, pixel
);
8728 pixel
= f
->output_data
.x
->scroll_bar_background_pixel
;
8731 XtSetArg (av
[ac
], XtNbackground
, pixel
);
8735 /* Top/bottom shadow colors. */
8737 /* Allocate them, if necessary. */
8738 if (f
->output_data
.x
->scroll_bar_top_shadow_pixel
== -1)
8740 pixel
= f
->output_data
.x
->scroll_bar_background_pixel
;
8741 if (!x_alloc_lighter_color (f
, FRAME_X_DISPLAY (f
), FRAME_X_COLORMAP (f
),
8742 &pixel
, 1.2, 0x8000))
8744 f
->output_data
.x
->scroll_bar_top_shadow_pixel
= pixel
;
8746 if (f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
== -1)
8748 pixel
= f
->output_data
.x
->scroll_bar_background_pixel
;
8749 if (!x_alloc_lighter_color (f
, FRAME_X_DISPLAY (f
), FRAME_X_COLORMAP (f
),
8750 &pixel
, 0.6, 0x4000))
8752 f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
= pixel
;
8755 /* Tell the toolkit about them. */
8756 if (f
->output_data
.x
->scroll_bar_top_shadow_pixel
== -1
8757 || f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
== -1)
8758 /* We tried to allocate a color for the top/bottom shadow, and
8759 failed, so tell Xaw3d to use dithering instead. */
8761 XtSetArg (av
[ac
], XtNbeNiceToColormap
, True
);
8765 /* Tell what colors Xaw3d should use for the top/bottom shadow, to
8766 be more consistent with other emacs 3d colors, and since Xaw3d is
8767 not good at dealing with allocation failure. */
8769 /* This tells Xaw3d to use real colors instead of dithering for
8771 XtSetArg (av
[ac
], XtNbeNiceToColormap
, False
);
8774 /* Specify the colors. */
8775 pixel
= f
->output_data
.x
->scroll_bar_top_shadow_pixel
;
8778 XtSetArg (av
[ac
], "topShadowPixel", pixel
);
8781 pixel
= f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
;
8784 XtSetArg (av
[ac
], "bottomShadowPixel", pixel
);
8789 widget
= XtCreateWidget (scroll_bar_name
, scrollbarWidgetClass
,
8790 f
->output_data
.x
->edit_widget
, av
, ac
);
8794 char *val
= initial
;
8795 XtVaGetValues (widget
, XtNscrollVCursor
, (XtPointer
) &val
,
8796 XtNpickTop
, (XtPointer
) &xaw3d_pick_top
, NULL
);
8798 { /* ARROW_SCROLL */
8799 xaw3d_arrow_scroll
= True
;
8800 /* Isn't that just a personal preference ? -sm */
8801 XtVaSetValues (widget
, XtNcursorName
, "top_left_arrow", NULL
);
8805 /* Define callbacks. */
8806 XtAddCallback (widget
, XtNjumpProc
, xaw_jump_callback
, (XtPointer
) bar
);
8807 XtAddCallback (widget
, XtNscrollProc
, xaw_scroll_callback
,
8810 /* Realize the widget. Only after that is the X window created. */
8811 XtRealizeWidget (widget
);
8813 #endif /* !USE_MOTIF */
8815 /* Install an action hook that let's us detect when the user
8816 finishes interacting with a scroll bar. */
8817 if (action_hook_id
== 0)
8818 action_hook_id
= XtAppAddActionHook (Xt_app_con
, xt_action_hook
, 0);
8820 /* Remember X window and widget in the scroll bar vector. */
8821 SET_SCROLL_BAR_X_WIDGET (bar
, widget
);
8822 xwindow
= XtWindow (widget
);
8823 SET_SCROLL_BAR_X_WINDOW (bar
, xwindow
);
8829 /* Set the thumb size and position of scroll bar BAR. We are currently
8830 displaying PORTION out of a whole WHOLE, and our position POSITION. */
8833 x_set_toolkit_scroll_bar_thumb (bar
, portion
, position
, whole
)
8834 struct scroll_bar
*bar
;
8835 int portion
, position
, whole
;
8837 struct frame
*f
= XFRAME (WINDOW_FRAME (XWINDOW (bar
->window
)));
8838 Widget widget
= SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f
), bar
);
8845 /* We use an estimate of 30 chars per line rather than the real
8846 `portion' value. This has the disadvantage that the thumb size
8847 is not very representative, but it makes our life a lot easier.
8848 Otherwise, we have to constantly adjust the thumb size, which
8849 we can't always do quickly enough: while dragging, the size of
8850 the thumb might prevent the user from dragging the thumb all the
8851 way to the end. but Motif and some versions of Xaw3d don't allow
8852 updating the thumb size while dragging. Also, even if we can update
8853 its size, the update will often happen too late.
8854 If you don't believe it, check out revision 1.650 of xterm.c to see
8855 what hoops we were going through and the still poor behavior we got. */
8856 portion
= XFASTINT (XWINDOW (bar
->window
)->height
) * 30;
8857 /* When the thumb is at the bottom, position == whole.
8858 So we need to increase `whole' to make space for the thumb. */
8865 top
= (float) position
/ whole
;
8866 shown
= (float) portion
/ whole
;
8869 if (NILP (bar
->dragging
))
8873 /* Slider size. Must be in the range [1 .. MAX - MIN] where MAX
8874 is the scroll bar's maximum and MIN is the scroll bar's minimum
8876 size
= shown
* XM_SB_RANGE
;
8877 size
= min (size
, XM_SB_RANGE
);
8878 size
= max (size
, 1);
8880 /* Position. Must be in the range [MIN .. MAX - SLIDER_SIZE]. */
8881 value
= top
* XM_SB_RANGE
;
8882 value
= min (value
, XM_SB_MAX
- size
);
8883 value
= max (value
, XM_SB_MIN
);
8885 XmScrollBarSetValues (widget
, value
, size
, 0, 0, False
);
8887 #else /* !USE_MOTIF i.e. use Xaw */
8893 top
= (float) position
/ whole
;
8894 shown
= (float) portion
/ whole
;
8898 float old_top
, old_shown
;
8900 XtVaGetValues (widget
,
8901 XtNtopOfThumb
, &old_top
,
8902 XtNshown
, &old_shown
,
8906 /* Massage the top+shown values. */
8907 if (NILP (bar
->dragging
) || last_scroll_bar_part
== scroll_bar_down_arrow
)
8908 top
= max (0, min (1, top
));
8911 /* Keep two pixels available for moving the thumb down. */
8912 shown
= max (0, min (1 - top
- (2.0 / height
), shown
));
8914 /* If the call to XawScrollbarSetThumb below doesn't seem to work,
8915 check that your system's configuration file contains a define
8916 for `NARROWPROTO'. See s/freebsd.h for an example. */
8917 if (top
!= old_top
|| shown
!= old_shown
)
8919 if (NILP (bar
->dragging
))
8920 XawScrollbarSetThumb (widget
, top
, shown
);
8924 ScrollbarWidget sb
= (ScrollbarWidget
) widget
;
8925 int scroll_mode
= 0;
8927 /* `scroll_mode' only exists with Xaw3d + ARROW_SCROLLBAR. */
8928 if (xaw3d_arrow_scroll
)
8930 /* Xaw3d stupidly ignores resize requests while dragging
8931 so we have to make it believe it's not in dragging mode. */
8932 scroll_mode
= sb
->scrollbar
.scroll_mode
;
8933 if (scroll_mode
== 2)
8934 sb
->scrollbar
.scroll_mode
= 0;
8937 /* Try to make the scrolling a tad smoother. */
8938 if (!xaw3d_pick_top
)
8939 shown
= min (shown
, old_shown
);
8941 XawScrollbarSetThumb (widget
, top
, shown
);
8944 if (xaw3d_arrow_scroll
&& scroll_mode
== 2)
8945 sb
->scrollbar
.scroll_mode
= scroll_mode
;
8950 #endif /* !USE_MOTIF */
8955 #endif /* USE_TOOLKIT_SCROLL_BARS */
8959 /************************************************************************
8960 Scroll bars, general
8961 ************************************************************************/
8963 /* Create a scroll bar and return the scroll bar vector for it. W is
8964 the Emacs window on which to create the scroll bar. TOP, LEFT,
8965 WIDTH and HEIGHT are the pixel coordinates and dimensions of the
8968 static struct scroll_bar
*
8969 x_scroll_bar_create (w
, top
, left
, width
, height
)
8971 int top
, left
, width
, height
;
8973 struct frame
*f
= XFRAME (w
->frame
);
8974 struct scroll_bar
*bar
8975 = XSCROLL_BAR (Fmake_vector (make_number (SCROLL_BAR_VEC_SIZE
), Qnil
));
8979 #ifdef USE_TOOLKIT_SCROLL_BARS
8980 x_create_toolkit_scroll_bar (f
, bar
);
8981 #else /* not USE_TOOLKIT_SCROLL_BARS */
8983 XSetWindowAttributes a
;
8987 a
.background_pixel
= f
->output_data
.x
->scroll_bar_background_pixel
;
8988 if (a
.background_pixel
== -1)
8989 a
.background_pixel
= f
->output_data
.x
->background_pixel
;
8991 a
.event_mask
= (ButtonPressMask
| ButtonReleaseMask
8992 | ButtonMotionMask
| PointerMotionHintMask
8994 a
.cursor
= FRAME_X_DISPLAY_INFO (f
)->vertical_scroll_bar_cursor
;
8996 mask
= (CWBackPixel
| CWEventMask
| CWCursor
);
8998 /* Clear the area of W that will serve as a scroll bar. This is
8999 for the case that a window has been split horizontally. In
9000 this case, no clear_frame is generated to reduce flickering. */
9001 if (width
> 0 && height
> 0)
9002 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
9004 window_box_height (w
), False
);
9006 window
= XCreateWindow (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
9007 /* Position and size of scroll bar. */
9008 left
+ VERTICAL_SCROLL_BAR_WIDTH_TRIM
,
9010 width
- VERTICAL_SCROLL_BAR_WIDTH_TRIM
* 2,
9012 /* Border width, depth, class, and visual. */
9019 SET_SCROLL_BAR_X_WINDOW (bar
, window
);
9021 #endif /* not USE_TOOLKIT_SCROLL_BARS */
9023 XSETWINDOW (bar
->window
, w
);
9024 XSETINT (bar
->top
, top
);
9025 XSETINT (bar
->left
, left
);
9026 XSETINT (bar
->width
, width
);
9027 XSETINT (bar
->height
, height
);
9028 XSETINT (bar
->start
, 0);
9029 XSETINT (bar
->end
, 0);
9030 bar
->dragging
= Qnil
;
9032 /* Add bar to its frame's list of scroll bars. */
9033 bar
->next
= FRAME_SCROLL_BARS (f
);
9035 XSETVECTOR (FRAME_SCROLL_BARS (f
), bar
);
9036 if (!NILP (bar
->next
))
9037 XSETVECTOR (XSCROLL_BAR (bar
->next
)->prev
, bar
);
9039 /* Map the window/widget. */
9040 #ifdef USE_TOOLKIT_SCROLL_BARS
9042 Widget scroll_bar
= SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f
), bar
);
9043 XtConfigureWidget (scroll_bar
,
9044 left
+ VERTICAL_SCROLL_BAR_WIDTH_TRIM
,
9046 width
- VERTICAL_SCROLL_BAR_WIDTH_TRIM
* 2,
9047 max (height
, 1), 0);
9048 XtMapWidget (scroll_bar
);
9050 #else /* not USE_TOOLKIT_SCROLL_BARS */
9051 XMapRaised (FRAME_X_DISPLAY (f
), SCROLL_BAR_X_WINDOW (bar
));
9052 #endif /* not USE_TOOLKIT_SCROLL_BARS */
9059 /* Draw BAR's handle in the proper position.
9061 If the handle is already drawn from START to END, don't bother
9062 redrawing it, unless REBUILD is non-zero; in that case, always
9063 redraw it. (REBUILD is handy for drawing the handle after expose
9066 Normally, we want to constrain the start and end of the handle to
9067 fit inside its rectangle, but if the user is dragging the scroll
9068 bar handle, we want to let them drag it down all the way, so that
9069 the bar's top is as far down as it goes; otherwise, there's no way
9070 to move to the very end of the buffer. */
9072 #ifndef USE_TOOLKIT_SCROLL_BARS
9075 x_scroll_bar_set_handle (bar
, start
, end
, rebuild
)
9076 struct scroll_bar
*bar
;
9080 int dragging
= ! NILP (bar
->dragging
);
9081 Window w
= SCROLL_BAR_X_WINDOW (bar
);
9082 FRAME_PTR f
= XFRAME (WINDOW_FRAME (XWINDOW (bar
->window
)));
9083 GC gc
= f
->output_data
.x
->normal_gc
;
9085 /* If the display is already accurate, do nothing. */
9087 && start
== XINT (bar
->start
)
9088 && end
== XINT (bar
->end
))
9094 int inside_width
= VERTICAL_SCROLL_BAR_INSIDE_WIDTH (f
, XINT (bar
->width
));
9095 int inside_height
= VERTICAL_SCROLL_BAR_INSIDE_HEIGHT (f
, XINT (bar
->height
));
9096 int top_range
= VERTICAL_SCROLL_BAR_TOP_RANGE (f
, XINT (bar
->height
));
9098 /* Make sure the values are reasonable, and try to preserve
9099 the distance between start and end. */
9101 int length
= end
- start
;
9105 else if (start
> top_range
)
9107 end
= start
+ length
;
9111 else if (end
> top_range
&& ! dragging
)
9115 /* Store the adjusted setting in the scroll bar. */
9116 XSETINT (bar
->start
, start
);
9117 XSETINT (bar
->end
, end
);
9119 /* Clip the end position, just for display. */
9120 if (end
> top_range
)
9123 /* Draw bottom positions VERTICAL_SCROLL_BAR_MIN_HANDLE pixels
9124 below top positions, to make sure the handle is always at least
9125 that many pixels tall. */
9126 end
+= VERTICAL_SCROLL_BAR_MIN_HANDLE
;
9128 /* Draw the empty space above the handle. Note that we can't clear
9129 zero-height areas; that means "clear to end of window." */
9131 x_clear_area (FRAME_X_DISPLAY (f
), w
,
9132 /* x, y, width, height, and exposures. */
9133 VERTICAL_SCROLL_BAR_LEFT_BORDER
,
9134 VERTICAL_SCROLL_BAR_TOP_BORDER
,
9135 inside_width
, start
,
9138 /* Change to proper foreground color if one is specified. */
9139 if (f
->output_data
.x
->scroll_bar_foreground_pixel
!= -1)
9140 XSetForeground (FRAME_X_DISPLAY (f
), gc
,
9141 f
->output_data
.x
->scroll_bar_foreground_pixel
);
9143 /* Draw the handle itself. */
9144 XFillRectangle (FRAME_X_DISPLAY (f
), w
, gc
,
9145 /* x, y, width, height */
9146 VERTICAL_SCROLL_BAR_LEFT_BORDER
,
9147 VERTICAL_SCROLL_BAR_TOP_BORDER
+ start
,
9148 inside_width
, end
- start
);
9150 /* Restore the foreground color of the GC if we changed it above. */
9151 if (f
->output_data
.x
->scroll_bar_foreground_pixel
!= -1)
9152 XSetForeground (FRAME_X_DISPLAY (f
), gc
,
9153 f
->output_data
.x
->foreground_pixel
);
9155 /* Draw the empty space below the handle. Note that we can't
9156 clear zero-height areas; that means "clear to end of window." */
9157 if (end
< inside_height
)
9158 x_clear_area (FRAME_X_DISPLAY (f
), w
,
9159 /* x, y, width, height, and exposures. */
9160 VERTICAL_SCROLL_BAR_LEFT_BORDER
,
9161 VERTICAL_SCROLL_BAR_TOP_BORDER
+ end
,
9162 inside_width
, inside_height
- end
,
9170 #endif /* !USE_TOOLKIT_SCROLL_BARS */
9172 /* Destroy scroll bar BAR, and set its Emacs window's scroll bar to
9176 x_scroll_bar_remove (bar
)
9177 struct scroll_bar
*bar
;
9179 struct frame
*f
= XFRAME (WINDOW_FRAME (XWINDOW (bar
->window
)));
9182 #ifdef USE_TOOLKIT_SCROLL_BARS
9183 XtDestroyWidget (SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f
), bar
));
9185 XDestroyWindow (FRAME_X_DISPLAY (f
), SCROLL_BAR_X_WINDOW (bar
));
9188 /* Disassociate this scroll bar from its window. */
9189 XWINDOW (bar
->window
)->vertical_scroll_bar
= Qnil
;
9195 /* Set the handle of the vertical scroll bar for WINDOW to indicate
9196 that we are displaying PORTION characters out of a total of WHOLE
9197 characters, starting at POSITION. If WINDOW has no scroll bar,
9201 XTset_vertical_scroll_bar (w
, portion
, whole
, position
)
9203 int portion
, whole
, position
;
9205 struct frame
*f
= XFRAME (w
->frame
);
9206 struct scroll_bar
*bar
;
9207 int top
, height
, left
, sb_left
, width
, sb_width
;
9208 int window_x
, window_y
, window_width
, window_height
;
9210 /* Get window dimensions. */
9211 window_box (w
, -1, &window_x
, &window_y
, &window_width
, &window_height
);
9213 width
= FRAME_SCROLL_BAR_COLS (f
) * CANON_X_UNIT (f
);
9214 height
= window_height
;
9216 /* Compute the left edge of the scroll bar area. */
9217 if (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (f
))
9218 left
= XINT (w
->left
) + XINT (w
->width
) - FRAME_SCROLL_BAR_COLS (f
);
9220 left
= XFASTINT (w
->left
);
9221 left
*= CANON_X_UNIT (f
);
9222 left
+= FRAME_INTERNAL_BORDER_WIDTH (f
);
9224 /* Compute the width of the scroll bar which might be less than
9225 the width of the area reserved for the scroll bar. */
9226 if (FRAME_SCROLL_BAR_PIXEL_WIDTH (f
) > 0)
9227 sb_width
= FRAME_SCROLL_BAR_PIXEL_WIDTH (f
);
9231 /* Compute the left edge of the scroll bar. */
9232 #ifdef USE_TOOLKIT_SCROLL_BARS
9233 if (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (f
))
9234 sb_left
= left
+ width
- sb_width
- (width
- sb_width
) / 2;
9236 sb_left
= left
+ (width
- sb_width
) / 2;
9238 if (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (f
))
9239 sb_left
= left
+ width
- sb_width
;
9244 /* Does the scroll bar exist yet? */
9245 if (NILP (w
->vertical_scroll_bar
))
9247 if (width
> 0 && height
> 0)
9250 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
9251 left
, top
, width
, height
, False
);
9255 bar
= x_scroll_bar_create (w
, top
, sb_left
, sb_width
, height
);
9259 /* It may just need to be moved and resized. */
9260 unsigned int mask
= 0;
9262 bar
= XSCROLL_BAR (w
->vertical_scroll_bar
);
9266 if (sb_left
!= XINT (bar
->left
))
9268 if (top
!= XINT (bar
->top
))
9270 if (sb_width
!= XINT (bar
->width
))
9272 if (height
!= XINT (bar
->height
))
9275 #ifdef USE_TOOLKIT_SCROLL_BARS
9277 /* Since toolkit scroll bars are smaller than the space reserved
9278 for them on the frame, we have to clear "under" them. */
9279 if (width
> 0 && height
> 0)
9280 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
9281 left
, top
, width
, height
, False
);
9283 /* Move/size the scroll bar widget. */
9285 XtConfigureWidget (SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f
), bar
),
9286 sb_left
+ VERTICAL_SCROLL_BAR_WIDTH_TRIM
,
9288 sb_width
- VERTICAL_SCROLL_BAR_WIDTH_TRIM
* 2,
9289 max (height
, 1), 0);
9291 #else /* not USE_TOOLKIT_SCROLL_BARS */
9293 /* Clear areas not covered by the scroll bar because of
9294 VERTICAL_SCROLL_BAR_WIDTH_TRIM. */
9295 if (VERTICAL_SCROLL_BAR_WIDTH_TRIM
)
9297 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
9298 left
, top
, VERTICAL_SCROLL_BAR_WIDTH_TRIM
,
9300 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
9301 left
+ width
- VERTICAL_SCROLL_BAR_WIDTH_TRIM
,
9302 top
, VERTICAL_SCROLL_BAR_WIDTH_TRIM
,
9306 /* Clear areas not covered by the scroll bar because it's not as
9307 wide as the area reserved for it. This makes sure a
9308 previous mode line display is cleared after C-x 2 C-x 1, for
9311 int area_width
= FRAME_SCROLL_BAR_COLS (f
) * CANON_X_UNIT (f
);
9312 int rest
= area_width
- sb_width
;
9313 if (rest
> 0 && height
> 0)
9315 if (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (f
))
9316 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
9317 left
+ area_width
- rest
, top
,
9318 rest
, height
, False
);
9320 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
9321 left
, top
, rest
, height
, False
);
9325 /* Move/size the scroll bar window. */
9330 wc
.x
= sb_left
+ VERTICAL_SCROLL_BAR_WIDTH_TRIM
;
9332 wc
.width
= sb_width
- VERTICAL_SCROLL_BAR_WIDTH_TRIM
* 2;
9334 XConfigureWindow (FRAME_X_DISPLAY (f
), SCROLL_BAR_X_WINDOW (bar
),
9338 #endif /* not USE_TOOLKIT_SCROLL_BARS */
9340 /* Remember new settings. */
9341 XSETINT (bar
->left
, sb_left
);
9342 XSETINT (bar
->top
, top
);
9343 XSETINT (bar
->width
, sb_width
);
9344 XSETINT (bar
->height
, height
);
9349 #ifdef USE_TOOLKIT_SCROLL_BARS
9350 x_set_toolkit_scroll_bar_thumb (bar
, portion
, position
, whole
);
9351 #else /* not USE_TOOLKIT_SCROLL_BARS */
9352 /* Set the scroll bar's current state, unless we're currently being
9354 if (NILP (bar
->dragging
))
9356 int top_range
= VERTICAL_SCROLL_BAR_TOP_RANGE (f
, height
);
9359 x_scroll_bar_set_handle (bar
, 0, top_range
, 0);
9362 int start
= ((double) position
* top_range
) / whole
;
9363 int end
= ((double) (position
+ portion
) * top_range
) / whole
;
9364 x_scroll_bar_set_handle (bar
, start
, end
, 0);
9367 #endif /* not USE_TOOLKIT_SCROLL_BARS */
9369 XSETVECTOR (w
->vertical_scroll_bar
, bar
);
9373 /* The following three hooks are used when we're doing a thorough
9374 redisplay of the frame. We don't explicitly know which scroll bars
9375 are going to be deleted, because keeping track of when windows go
9376 away is a real pain - "Can you say set-window-configuration, boys
9377 and girls?" Instead, we just assert at the beginning of redisplay
9378 that *all* scroll bars are to be removed, and then save a scroll bar
9379 from the fiery pit when we actually redisplay its window. */
9381 /* Arrange for all scroll bars on FRAME to be removed at the next call
9382 to `*judge_scroll_bars_hook'. A scroll bar may be spared if
9383 `*redeem_scroll_bar_hook' is applied to its window before the judgment. */
9386 XTcondemn_scroll_bars (frame
)
9389 /* Transfer all the scroll bars to FRAME_CONDEMNED_SCROLL_BARS. */
9390 while (! NILP (FRAME_SCROLL_BARS (frame
)))
9393 bar
= FRAME_SCROLL_BARS (frame
);
9394 FRAME_SCROLL_BARS (frame
) = XSCROLL_BAR (bar
)->next
;
9395 XSCROLL_BAR (bar
)->next
= FRAME_CONDEMNED_SCROLL_BARS (frame
);
9396 XSCROLL_BAR (bar
)->prev
= Qnil
;
9397 if (! NILP (FRAME_CONDEMNED_SCROLL_BARS (frame
)))
9398 XSCROLL_BAR (FRAME_CONDEMNED_SCROLL_BARS (frame
))->prev
= bar
;
9399 FRAME_CONDEMNED_SCROLL_BARS (frame
) = bar
;
9404 /* Un-mark WINDOW's scroll bar for deletion in this judgment cycle.
9405 Note that WINDOW isn't necessarily condemned at all. */
9408 XTredeem_scroll_bar (window
)
9409 struct window
*window
;
9411 struct scroll_bar
*bar
;
9414 /* We can't redeem this window's scroll bar if it doesn't have one. */
9415 if (NILP (window
->vertical_scroll_bar
))
9418 bar
= XSCROLL_BAR (window
->vertical_scroll_bar
);
9420 /* Unlink it from the condemned list. */
9421 f
= XFRAME (WINDOW_FRAME (window
));
9422 if (NILP (bar
->prev
))
9424 /* If the prev pointer is nil, it must be the first in one of
9426 if (EQ (FRAME_SCROLL_BARS (f
), window
->vertical_scroll_bar
))
9427 /* It's not condemned. Everything's fine. */
9429 else if (EQ (FRAME_CONDEMNED_SCROLL_BARS (f
),
9430 window
->vertical_scroll_bar
))
9431 FRAME_CONDEMNED_SCROLL_BARS (f
) = bar
->next
;
9433 /* If its prev pointer is nil, it must be at the front of
9434 one or the other! */
9438 XSCROLL_BAR (bar
->prev
)->next
= bar
->next
;
9440 if (! NILP (bar
->next
))
9441 XSCROLL_BAR (bar
->next
)->prev
= bar
->prev
;
9443 bar
->next
= FRAME_SCROLL_BARS (f
);
9445 XSETVECTOR (FRAME_SCROLL_BARS (f
), bar
);
9446 if (! NILP (bar
->next
))
9447 XSETVECTOR (XSCROLL_BAR (bar
->next
)->prev
, bar
);
9450 /* Remove all scroll bars on FRAME that haven't been saved since the
9451 last call to `*condemn_scroll_bars_hook'. */
9454 XTjudge_scroll_bars (f
)
9457 Lisp_Object bar
, next
;
9459 bar
= FRAME_CONDEMNED_SCROLL_BARS (f
);
9461 /* Clear out the condemned list now so we won't try to process any
9462 more events on the hapless scroll bars. */
9463 FRAME_CONDEMNED_SCROLL_BARS (f
) = Qnil
;
9465 for (; ! NILP (bar
); bar
= next
)
9467 struct scroll_bar
*b
= XSCROLL_BAR (bar
);
9469 x_scroll_bar_remove (b
);
9472 b
->next
= b
->prev
= Qnil
;
9475 /* Now there should be no references to the condemned scroll bars,
9476 and they should get garbage-collected. */
9480 /* Handle an Expose or GraphicsExpose event on a scroll bar. This
9481 is a no-op when using toolkit scroll bars.
9483 This may be called from a signal handler, so we have to ignore GC
9487 x_scroll_bar_expose (bar
, event
)
9488 struct scroll_bar
*bar
;
9491 #ifndef USE_TOOLKIT_SCROLL_BARS
9493 Window w
= SCROLL_BAR_X_WINDOW (bar
);
9494 FRAME_PTR f
= XFRAME (WINDOW_FRAME (XWINDOW (bar
->window
)));
9495 GC gc
= f
->output_data
.x
->normal_gc
;
9496 int width_trim
= VERTICAL_SCROLL_BAR_WIDTH_TRIM
;
9500 x_scroll_bar_set_handle (bar
, XINT (bar
->start
), XINT (bar
->end
), 1);
9502 /* Draw a one-pixel border just inside the edges of the scroll bar. */
9503 XDrawRectangle (FRAME_X_DISPLAY (f
), w
, gc
,
9505 /* x, y, width, height */
9507 XINT (bar
->width
) - 1 - width_trim
- width_trim
,
9508 XINT (bar
->height
) - 1);
9512 #endif /* not USE_TOOLKIT_SCROLL_BARS */
9515 /* Handle a mouse click on the scroll bar BAR. If *EMACS_EVENT's kind
9516 is set to something other than NO_EVENT, it is enqueued.
9518 This may be called from a signal handler, so we have to ignore GC
9521 #ifndef USE_TOOLKIT_SCROLL_BARS
9524 x_scroll_bar_handle_click (bar
, event
, emacs_event
)
9525 struct scroll_bar
*bar
;
9527 struct input_event
*emacs_event
;
9529 if (! GC_WINDOWP (bar
->window
))
9532 emacs_event
->kind
= SCROLL_BAR_CLICK_EVENT
;
9533 emacs_event
->code
= event
->xbutton
.button
- Button1
;
9534 emacs_event
->modifiers
9535 = (x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO
9536 (XFRAME (WINDOW_FRAME (XWINDOW (bar
->window
)))),
9537 event
->xbutton
.state
)
9538 | (event
->type
== ButtonRelease
9541 emacs_event
->frame_or_window
= bar
->window
;
9542 emacs_event
->arg
= Qnil
;
9543 emacs_event
->timestamp
= event
->xbutton
.time
;
9546 FRAME_PTR f
= XFRAME (WINDOW_FRAME (XWINDOW (bar
->window
)));
9548 = VERTICAL_SCROLL_BAR_INSIDE_HEIGHT (f
, XINT (bar
->height
));
9551 = VERTICAL_SCROLL_BAR_TOP_RANGE (f
, XINT (bar
->height
));
9552 int y
= event
->xbutton
.y
- VERTICAL_SCROLL_BAR_TOP_BORDER
;
9555 if (y
> top_range
) y
= top_range
;
9557 if (y
< XINT (bar
->start
))
9558 emacs_event
->part
= scroll_bar_above_handle
;
9559 else if (y
< XINT (bar
->end
) + VERTICAL_SCROLL_BAR_MIN_HANDLE
)
9560 emacs_event
->part
= scroll_bar_handle
;
9562 emacs_event
->part
= scroll_bar_below_handle
;
9564 /* Just because the user has clicked on the handle doesn't mean
9565 they want to drag it. Lisp code needs to be able to decide
9566 whether or not we're dragging. */
9568 /* If the user has just clicked on the handle, record where they're
9570 if (event
->type
== ButtonPress
9571 && emacs_event
->part
== scroll_bar_handle
)
9572 XSETINT (bar
->dragging
, y
- XINT (bar
->start
));
9575 /* If the user has released the handle, set it to its final position. */
9576 if (event
->type
== ButtonRelease
9577 && ! NILP (bar
->dragging
))
9579 int new_start
= y
- XINT (bar
->dragging
);
9580 int new_end
= new_start
+ (XINT (bar
->end
) - XINT (bar
->start
));
9582 x_scroll_bar_set_handle (bar
, new_start
, new_end
, 0);
9583 bar
->dragging
= Qnil
;
9586 /* Same deal here as the other #if 0. */
9588 /* Clicks on the handle are always reported as occurring at the top of
9590 if (emacs_event
->part
== scroll_bar_handle
)
9591 emacs_event
->x
= bar
->start
;
9593 XSETINT (emacs_event
->x
, y
);
9595 XSETINT (emacs_event
->x
, y
);
9598 XSETINT (emacs_event
->y
, top_range
);
9602 /* Handle some mouse motion while someone is dragging the scroll bar.
9604 This may be called from a signal handler, so we have to ignore GC
9608 x_scroll_bar_note_movement (bar
, event
)
9609 struct scroll_bar
*bar
;
9612 FRAME_PTR f
= XFRAME (XWINDOW (bar
->window
)->frame
);
9614 last_mouse_movement_time
= event
->xmotion
.time
;
9617 XSETVECTOR (last_mouse_scroll_bar
, bar
);
9619 /* If we're dragging the bar, display it. */
9620 if (! GC_NILP (bar
->dragging
))
9622 /* Where should the handle be now? */
9623 int new_start
= event
->xmotion
.y
- XINT (bar
->dragging
);
9625 if (new_start
!= XINT (bar
->start
))
9627 int new_end
= new_start
+ (XINT (bar
->end
) - XINT (bar
->start
));
9629 x_scroll_bar_set_handle (bar
, new_start
, new_end
, 0);
9634 #endif /* !USE_TOOLKIT_SCROLL_BARS */
9636 /* Return information to the user about the current position of the mouse
9637 on the scroll bar. */
9640 x_scroll_bar_report_motion (fp
, bar_window
, part
, x
, y
, time
)
9642 Lisp_Object
*bar_window
;
9643 enum scroll_bar_part
*part
;
9645 unsigned long *time
;
9647 struct scroll_bar
*bar
= XSCROLL_BAR (last_mouse_scroll_bar
);
9648 Window w
= SCROLL_BAR_X_WINDOW (bar
);
9649 FRAME_PTR f
= XFRAME (WINDOW_FRAME (XWINDOW (bar
->window
)));
9651 Window dummy_window
;
9653 unsigned int dummy_mask
;
9657 /* Get the mouse's position relative to the scroll bar window, and
9659 if (! XQueryPointer (FRAME_X_DISPLAY (f
), w
,
9661 /* Root, child, root x and root y. */
9662 &dummy_window
, &dummy_window
,
9663 &dummy_coord
, &dummy_coord
,
9665 /* Position relative to scroll bar. */
9668 /* Mouse buttons and modifier keys. */
9675 = VERTICAL_SCROLL_BAR_INSIDE_HEIGHT (f
, XINT (bar
->height
));
9678 = VERTICAL_SCROLL_BAR_TOP_RANGE (f
, XINT (bar
->height
));
9680 win_y
-= VERTICAL_SCROLL_BAR_TOP_BORDER
;
9682 if (! NILP (bar
->dragging
))
9683 win_y
-= XINT (bar
->dragging
);
9687 if (win_y
> top_range
)
9691 *bar_window
= bar
->window
;
9693 if (! NILP (bar
->dragging
))
9694 *part
= scroll_bar_handle
;
9695 else if (win_y
< XINT (bar
->start
))
9696 *part
= scroll_bar_above_handle
;
9697 else if (win_y
< XINT (bar
->end
) + VERTICAL_SCROLL_BAR_MIN_HANDLE
)
9698 *part
= scroll_bar_handle
;
9700 *part
= scroll_bar_below_handle
;
9702 XSETINT (*x
, win_y
);
9703 XSETINT (*y
, top_range
);
9706 last_mouse_scroll_bar
= Qnil
;
9709 *time
= last_mouse_movement_time
;
9715 /* The screen has been cleared so we may have changed foreground or
9716 background colors, and the scroll bars may need to be redrawn.
9717 Clear out the scroll bars, and ask for expose events, so we can
9721 x_scroll_bar_clear (f
)
9724 #ifndef USE_TOOLKIT_SCROLL_BARS
9727 /* We can have scroll bars even if this is 0,
9728 if we just turned off scroll bar mode.
9729 But in that case we should not clear them. */
9730 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f
))
9731 for (bar
= FRAME_SCROLL_BARS (f
); VECTORP (bar
);
9732 bar
= XSCROLL_BAR (bar
)->next
)
9733 XClearArea (FRAME_X_DISPLAY (f
),
9734 SCROLL_BAR_X_WINDOW (XSCROLL_BAR (bar
)),
9736 #endif /* not USE_TOOLKIT_SCROLL_BARS */
9739 /* This processes Expose events from the menu-bar specific X event
9740 loop in xmenu.c. This allows to redisplay the frame if necessary
9741 when handling menu-bar or pop-up items. */
9744 process_expose_from_menu (event
)
9748 struct x_display_info
*dpyinfo
;
9749 int frame_exposed_p
= 0;
9753 dpyinfo
= x_display_info_for_display (event
.xexpose
.display
);
9754 f
= x_window_to_frame (dpyinfo
, event
.xexpose
.window
);
9757 if (f
->async_visible
== 0)
9759 f
->async_visible
= 1;
9760 f
->async_iconified
= 0;
9761 f
->output_data
.x
->has_been_visible
= 1;
9762 SET_FRAME_GARBAGED (f
);
9766 expose_frame (x_window_to_frame (dpyinfo
, event
.xexpose
.window
),
9767 event
.xexpose
.x
, event
.xexpose
.y
,
9768 event
.xexpose
.width
, event
.xexpose
.height
);
9769 frame_exposed_p
= 1;
9774 struct scroll_bar
*bar
9775 = x_window_to_scroll_bar (event
.xexpose
.window
);
9778 x_scroll_bar_expose (bar
, &event
);
9782 return frame_exposed_p
;
9785 /* Define a queue to save up SelectionRequest events for later handling. */
9787 struct selection_event_queue
9790 struct selection_event_queue
*next
;
9793 static struct selection_event_queue
*queue
;
9795 /* Nonzero means queue up certain events--don't process them yet. */
9797 static int x_queue_selection_requests
;
9799 /* Queue up an X event *EVENT, to be processed later. */
9802 x_queue_event (f
, event
)
9806 struct selection_event_queue
*queue_tmp
9807 = (struct selection_event_queue
*) xmalloc (sizeof (struct selection_event_queue
));
9809 if (queue_tmp
!= NULL
)
9811 queue_tmp
->event
= *event
;
9812 queue_tmp
->next
= queue
;
9817 /* Take all the queued events and put them back
9818 so that they get processed afresh. */
9821 x_unqueue_events (display
)
9824 while (queue
!= NULL
)
9826 struct selection_event_queue
*queue_tmp
= queue
;
9827 XPutBackEvent (display
, &queue_tmp
->event
);
9828 queue
= queue_tmp
->next
;
9829 xfree ((char *)queue_tmp
);
9833 /* Start queuing SelectionRequest events. */
9836 x_start_queuing_selection_requests (display
)
9839 x_queue_selection_requests
++;
9842 /* Stop queuing SelectionRequest events. */
9845 x_stop_queuing_selection_requests (display
)
9848 x_queue_selection_requests
--;
9849 x_unqueue_events (display
);
9852 /* The main X event-reading loop - XTread_socket. */
9855 /* Time stamp of enter window event. This is only used by XTread_socket,
9856 but we have to put it out here, since static variables within functions
9857 sometimes don't work. */
9859 static Time enter_timestamp
;
9862 /* This holds the state XLookupString needs to implement dead keys
9863 and other tricks known as "compose processing". _X Window System_
9864 says that a portable program can't use this, but Stephen Gildea assures
9865 me that letting the compiler initialize it to zeros will work okay.
9867 This must be defined outside of XTread_socket, for the same reasons
9868 given for enter_timestamp, above. */
9870 static XComposeStatus compose_status
;
9872 /* Record the last 100 characters stored
9873 to help debug the loss-of-chars-during-GC problem. */
9875 static int temp_index
;
9876 static short temp_buffer
[100];
9878 /* Set this to nonzero to fake an "X I/O error"
9879 on a particular display. */
9881 struct x_display_info
*XTread_socket_fake_io_error
;
9883 /* When we find no input here, we occasionally do a no-op command
9884 to verify that the X server is still running and we can still talk with it.
9885 We try all the open displays, one by one.
9886 This variable is used for cycling thru the displays. */
9888 static struct x_display_info
*next_noop_dpyinfo
;
9890 #define SET_SAVED_MENU_EVENT(size) \
9893 if (f->output_data.x->saved_menu_event == 0) \
9894 f->output_data.x->saved_menu_event \
9895 = (XEvent *) xmalloc (sizeof (XEvent)); \
9896 bcopy (&event, f->output_data.x->saved_menu_event, size); \
9897 if (numchars >= 1) \
9899 bufp->kind = MENU_BAR_ACTIVATE_EVENT; \
9900 XSETFRAME (bufp->frame_or_window, f); \
9909 #define SET_SAVED_BUTTON_EVENT SET_SAVED_MENU_EVENT (sizeof (XButtonEvent))
9910 #define SET_SAVED_KEY_EVENT SET_SAVED_MENU_EVENT (sizeof (XKeyEvent))
9912 /* Read events coming from the X server.
9913 This routine is called by the SIGIO handler.
9914 We return as soon as there are no more events to be read.
9916 Events representing keys are stored in buffer BUFP,
9917 which can hold up to NUMCHARS characters.
9918 We return the number of characters stored into the buffer,
9919 thus pretending to be `read'.
9921 EXPECTED is nonzero if the caller knows input is available. */
9924 XTread_socket (sd
, bufp
, numchars
, expected
)
9926 /* register */ struct input_event
*bufp
;
9927 /* register */ int numchars
;
9934 int event_found
= 0;
9935 struct x_display_info
*dpyinfo
;
9936 struct coding_system coding
;
9938 if (interrupt_input_blocked
)
9940 interrupt_input_pending
= 1;
9944 interrupt_input_pending
= 0;
9947 /* So people can tell when we have read the available input. */
9948 input_signal_count
++;
9951 abort (); /* Don't think this happens. */
9955 /* Find the display we are supposed to read input for.
9956 It's the one communicating on descriptor SD. */
9957 for (dpyinfo
= x_display_list
; dpyinfo
; dpyinfo
= dpyinfo
->next
)
9959 #if 0 /* This ought to be unnecessary; let's verify it. */
9961 /* If available, Xlib uses FIOSNBIO to make the socket
9962 non-blocking, and then looks for EWOULDBLOCK. If O_NDELAY is set,
9963 FIOSNBIO is ignored, and instead of signaling EWOULDBLOCK,
9964 a read returns 0, which Xlib interprets as equivalent to EPIPE. */
9965 fcntl (dpyinfo
->connection
, F_SETFL
, 0);
9966 #endif /* ! defined (FIOSNBIO) */
9969 #if 0 /* This code can't be made to work, with multiple displays,
9970 and appears not to be used on any system any more.
9971 Also keyboard.c doesn't turn O_NDELAY on and off
9972 for X connections. */
9975 if (! (fcntl (dpyinfo
->connection
, F_GETFL
, 0) & O_NDELAY
))
9977 extern int read_alarm_should_throw
;
9978 read_alarm_should_throw
= 1;
9979 XPeekEvent (dpyinfo
->display
, &event
);
9980 read_alarm_should_throw
= 0;
9982 #endif /* HAVE_SELECT */
9986 /* For debugging, this gives a way to fake an I/O error. */
9987 if (dpyinfo
== XTread_socket_fake_io_error
)
9989 XTread_socket_fake_io_error
= 0;
9990 x_io_error_quitter (dpyinfo
->display
);
9995 count
+= x_session_check_input (bufp
, &numchars
);
9999 while (XPending (dpyinfo
->display
))
10001 XNextEvent (dpyinfo
->display
, &event
);
10005 /* Filter events for the current X input method.
10006 XFilterEvent returns non-zero if the input method has
10007 consumed the event. We pass the frame's X window to
10008 XFilterEvent because that's the one for which the IC
10010 struct frame
*f1
= x_any_window_to_frame (dpyinfo
,
10011 event
.xclient
.window
);
10012 if (XFilterEvent (&event
, f1
? FRAME_X_WINDOW (f1
) : None
))
10018 switch (event
.type
)
10020 case ClientMessage
:
10022 if (event
.xclient
.message_type
10023 == dpyinfo
->Xatom_wm_protocols
10024 && event
.xclient
.format
== 32)
10026 if (event
.xclient
.data
.l
[0]
10027 == dpyinfo
->Xatom_wm_take_focus
)
10029 /* Use x_any_window_to_frame because this
10030 could be the shell widget window
10031 if the frame has no title bar. */
10032 f
= x_any_window_to_frame (dpyinfo
, event
.xclient
.window
);
10034 /* Not quite sure this is needed -pd */
10035 if (f
&& FRAME_XIC (f
))
10036 XSetICFocus (FRAME_XIC (f
));
10038 #if 0 /* Emacs sets WM hints whose `input' field is `true'. This
10039 instructs the WM to set the input focus automatically for
10040 Emacs with a call to XSetInputFocus. Setting WM_TAKE_FOCUS
10041 tells the WM to send us a ClientMessage WM_TAKE_FOCUS after
10042 it has set the focus. So, XSetInputFocus below is not
10045 The call to XSetInputFocus below has also caused trouble. In
10046 cases where the XSetInputFocus done by the WM and the one
10047 below are temporally close (on a fast machine), the call
10048 below can generate additional FocusIn events which confuse
10051 /* Since we set WM_TAKE_FOCUS, we must call
10052 XSetInputFocus explicitly. But not if f is null,
10053 since that might be an event for a deleted frame. */
10056 Display
*d
= event
.xclient
.display
;
10057 /* Catch and ignore errors, in case window has been
10058 iconified by a window manager such as GWM. */
10059 int count
= x_catch_errors (d
);
10060 XSetInputFocus (d
, event
.xclient
.window
,
10061 /* The ICCCM says this is
10062 the only valid choice. */
10064 event
.xclient
.data
.l
[1]);
10065 /* This is needed to detect the error
10066 if there is an error. */
10068 x_uncatch_errors (d
, count
);
10070 /* Not certain about handling scroll bars here */
10073 else if (event
.xclient
.data
.l
[0]
10074 == dpyinfo
->Xatom_wm_save_yourself
)
10076 /* Save state modify the WM_COMMAND property to
10077 something which can reinstate us. This notifies
10078 the session manager, who's looking for such a
10079 PropertyNotify. Can restart processing when
10080 a keyboard or mouse event arrives. */
10081 /* If we have a session manager, don't set this.
10082 KDE will then start two Emacsen, one for the
10083 session manager and one for this. */
10086 && ! x_session_have_connection ()
10090 f
= x_top_window_to_frame (dpyinfo
,
10091 event
.xclient
.window
);
10092 /* This is just so we only give real data once
10093 for a single Emacs process. */
10094 if (f
== SELECTED_FRAME ())
10095 XSetCommand (FRAME_X_DISPLAY (f
),
10096 event
.xclient
.window
,
10097 initial_argv
, initial_argc
);
10099 XSetCommand (FRAME_X_DISPLAY (f
),
10100 event
.xclient
.window
,
10104 else if (event
.xclient
.data
.l
[0]
10105 == dpyinfo
->Xatom_wm_delete_window
)
10108 = x_any_window_to_frame (dpyinfo
,
10109 event
.xclient
.window
);
10116 bufp
->kind
= DELETE_WINDOW_EVENT
;
10117 XSETFRAME (bufp
->frame_or_window
, f
);
10126 else if (event
.xclient
.message_type
10127 == dpyinfo
->Xatom_wm_configure_denied
)
10130 else if (event
.xclient
.message_type
10131 == dpyinfo
->Xatom_wm_window_moved
)
10135 = x_window_to_frame (dpyinfo
, event
.xclient
.window
);
10137 new_x
= event
.xclient
.data
.s
[0];
10138 new_y
= event
.xclient
.data
.s
[1];
10142 f
->output_data
.x
->left_pos
= new_x
;
10143 f
->output_data
.x
->top_pos
= new_y
;
10146 #ifdef HACK_EDITRES
10147 else if (event
.xclient
.message_type
10148 == dpyinfo
->Xatom_editres
)
10151 = x_any_window_to_frame (dpyinfo
, event
.xclient
.window
);
10152 _XEditResCheckMessages (f
->output_data
.x
->widget
, NULL
,
10155 #endif /* HACK_EDITRES */
10156 else if ((event
.xclient
.message_type
10157 == dpyinfo
->Xatom_DONE
)
10158 || (event
.xclient
.message_type
10159 == dpyinfo
->Xatom_PAGE
))
10161 /* Ghostview job completed. Kill it. We could
10162 reply with "Next" if we received "Page", but we
10163 currently never do because we are interested in
10164 images, only, which should have 1 page. */
10165 Pixmap pixmap
= (Pixmap
) event
.xclient
.data
.l
[1];
10167 = x_window_to_frame (dpyinfo
, event
.xclient
.window
);
10168 x_kill_gs_process (pixmap
, f
);
10169 expose_frame (f
, 0, 0, 0, 0);
10171 #ifdef USE_TOOLKIT_SCROLL_BARS
10172 /* Scroll bar callbacks send a ClientMessage from which
10173 we construct an input_event. */
10174 else if (event
.xclient
.message_type
10175 == dpyinfo
->Xatom_Scrollbar
)
10177 x_scroll_bar_to_input_event (&event
, bufp
);
10178 ++bufp
, ++count
, --numchars
;
10181 #endif /* USE_TOOLKIT_SCROLL_BARS */
10187 case SelectionNotify
:
10188 #ifdef USE_X_TOOLKIT
10189 if (! x_window_to_frame (dpyinfo
, event
.xselection
.requestor
))
10191 #endif /* not USE_X_TOOLKIT */
10192 x_handle_selection_notify (&event
.xselection
);
10195 case SelectionClear
: /* Someone has grabbed ownership. */
10196 #ifdef USE_X_TOOLKIT
10197 if (! x_window_to_frame (dpyinfo
, event
.xselectionclear
.window
))
10199 #endif /* USE_X_TOOLKIT */
10201 XSelectionClearEvent
*eventp
= (XSelectionClearEvent
*) &event
;
10206 bufp
->kind
= SELECTION_CLEAR_EVENT
;
10207 SELECTION_EVENT_DISPLAY (bufp
) = eventp
->display
;
10208 SELECTION_EVENT_SELECTION (bufp
) = eventp
->selection
;
10209 SELECTION_EVENT_TIME (bufp
) = eventp
->time
;
10210 bufp
->frame_or_window
= Qnil
;
10219 case SelectionRequest
: /* Someone wants our selection. */
10220 #ifdef USE_X_TOOLKIT
10221 if (!x_window_to_frame (dpyinfo
, event
.xselectionrequest
.owner
))
10223 #endif /* USE_X_TOOLKIT */
10224 if (x_queue_selection_requests
)
10225 x_queue_event (x_window_to_frame (dpyinfo
, event
.xselectionrequest
.owner
),
10229 XSelectionRequestEvent
*eventp
10230 = (XSelectionRequestEvent
*) &event
;
10235 bufp
->kind
= SELECTION_REQUEST_EVENT
;
10236 SELECTION_EVENT_DISPLAY (bufp
) = eventp
->display
;
10237 SELECTION_EVENT_REQUESTOR (bufp
) = eventp
->requestor
;
10238 SELECTION_EVENT_SELECTION (bufp
) = eventp
->selection
;
10239 SELECTION_EVENT_TARGET (bufp
) = eventp
->target
;
10240 SELECTION_EVENT_PROPERTY (bufp
) = eventp
->property
;
10241 SELECTION_EVENT_TIME (bufp
) = eventp
->time
;
10242 bufp
->frame_or_window
= Qnil
;
10251 case PropertyNotify
:
10252 #if 0 /* This is plain wrong. In the case that we are waiting for a
10253 PropertyNotify used as an ACK in incremental selection
10254 transfer, the property will be on the receiver's window. */
10255 #if defined USE_X_TOOLKIT
10256 if (!x_any_window_to_frame (dpyinfo
, event
.xproperty
.window
))
10260 x_handle_property_notify (&event
.xproperty
);
10263 case ReparentNotify
:
10264 f
= x_top_window_to_frame (dpyinfo
, event
.xreparent
.window
);
10268 f
->output_data
.x
->parent_desc
= event
.xreparent
.parent
;
10269 x_real_positions (f
, &x
, &y
);
10270 f
->output_data
.x
->left_pos
= x
;
10271 f
->output_data
.x
->top_pos
= y
;
10276 f
= x_window_to_frame (dpyinfo
, event
.xexpose
.window
);
10279 x_check_fullscreen (f
);
10281 if (f
->async_visible
== 0)
10283 f
->async_visible
= 1;
10284 f
->async_iconified
= 0;
10285 f
->output_data
.x
->has_been_visible
= 1;
10286 SET_FRAME_GARBAGED (f
);
10289 expose_frame (x_window_to_frame (dpyinfo
,
10290 event
.xexpose
.window
),
10291 event
.xexpose
.x
, event
.xexpose
.y
,
10292 event
.xexpose
.width
, event
.xexpose
.height
);
10296 #ifndef USE_TOOLKIT_SCROLL_BARS
10297 struct scroll_bar
*bar
;
10299 #if defined USE_LUCID
10300 /* Submenus of the Lucid menu bar aren't widgets
10301 themselves, so there's no way to dispatch events
10302 to them. Recognize this case separately. */
10305 = x_window_to_menu_bar (event
.xexpose
.window
);
10307 xlwmenu_redisplay (widget
);
10309 #endif /* USE_LUCID */
10311 #ifdef USE_TOOLKIT_SCROLL_BARS
10312 /* Dispatch event to the widget. */
10314 #else /* not USE_TOOLKIT_SCROLL_BARS */
10315 bar
= x_window_to_scroll_bar (event
.xexpose
.window
);
10318 x_scroll_bar_expose (bar
, &event
);
10319 #ifdef USE_X_TOOLKIT
10322 #endif /* USE_X_TOOLKIT */
10323 #endif /* not USE_TOOLKIT_SCROLL_BARS */
10327 case GraphicsExpose
: /* This occurs when an XCopyArea's
10328 source area was obscured or not
10330 f
= x_window_to_frame (dpyinfo
, event
.xgraphicsexpose
.drawable
);
10334 event
.xgraphicsexpose
.x
, event
.xgraphicsexpose
.y
,
10335 event
.xgraphicsexpose
.width
,
10336 event
.xgraphicsexpose
.height
);
10338 #ifdef USE_X_TOOLKIT
10341 #endif /* USE_X_TOOLKIT */
10344 case NoExpose
: /* This occurs when an XCopyArea's
10345 source area was completely
10350 /* Redo the mouse-highlight after the tooltip has gone. */
10351 if (event
.xmap
.window
== tip_window
)
10354 redo_mouse_highlight ();
10357 f
= x_top_window_to_frame (dpyinfo
, event
.xunmap
.window
);
10358 if (f
) /* F may no longer exist if
10359 the frame was deleted. */
10361 /* While a frame is unmapped, display generation is
10362 disabled; you don't want to spend time updating a
10363 display that won't ever be seen. */
10364 f
->async_visible
= 0;
10365 /* We can't distinguish, from the event, whether the window
10366 has become iconified or invisible. So assume, if it
10367 was previously visible, than now it is iconified.
10368 But x_make_frame_invisible clears both
10369 the visible flag and the iconified flag;
10370 and that way, we know the window is not iconified now. */
10371 if (FRAME_VISIBLE_P (f
) || FRAME_ICONIFIED_P (f
))
10373 f
->async_iconified
= 1;
10375 bufp
->kind
= ICONIFY_EVENT
;
10376 XSETFRAME (bufp
->frame_or_window
, f
);
10386 if (event
.xmap
.window
== tip_window
)
10387 /* The tooltip has been drawn already. Avoid
10388 the SET_FRAME_GARBAGED below. */
10391 /* We use x_top_window_to_frame because map events can
10392 come for sub-windows and they don't mean that the
10393 frame is visible. */
10394 f
= x_top_window_to_frame (dpyinfo
, event
.xmap
.window
);
10397 f
->async_visible
= 1;
10398 f
->async_iconified
= 0;
10399 f
->output_data
.x
->has_been_visible
= 1;
10401 /* wait_reading_process_input will notice this and update
10402 the frame's display structures. */
10403 SET_FRAME_GARBAGED (f
);
10407 bufp
->kind
= DEICONIFY_EVENT
;
10408 XSETFRAME (bufp
->frame_or_window
, f
);
10414 else if (! NILP (Vframe_list
)
10415 && ! NILP (XCDR (Vframe_list
)))
10416 /* Force a redisplay sooner or later
10417 to update the frame titles
10418 in case this is the second frame. */
10419 record_asynch_buffer_change ();
10425 /* Dispatch KeyPress events when in menu. */
10426 if (popup_activated_flag
)
10429 f
= x_any_window_to_frame (dpyinfo
, event
.xkey
.window
);
10431 if (!dpyinfo
->mouse_face_hidden
&& INTEGERP (Vmouse_highlight
))
10433 dpyinfo
->mouse_face_hidden
= 1;
10434 clear_mouse_face (dpyinfo
);
10437 #if defined USE_MOTIF && defined USE_TOOLKIT_SCROLL_BARS
10440 /* Scroll bars consume key events, but we want
10441 the keys to go to the scroll bar's frame. */
10442 Widget widget
= XtWindowToWidget (dpyinfo
->display
,
10443 event
.xkey
.window
);
10444 if (widget
&& XmIsScrollBar (widget
))
10446 widget
= XtParent (widget
);
10447 f
= x_any_window_to_frame (dpyinfo
, XtWindow (widget
));
10450 #endif /* USE_MOTIF and USE_TOOLKIT_SCROLL_BARS */
10454 KeySym keysym
, orig_keysym
;
10455 /* al%imercury@uunet.uu.net says that making this 81
10456 instead of 80 fixed a bug whereby meta chars made
10459 It seems that some version of XmbLookupString has
10460 a bug of not returning XBufferOverflow in
10461 status_return even if the input is too long to
10462 fit in 81 bytes. So, we must prepare sufficient
10463 bytes for copy_buffer. 513 bytes (256 chars for
10464 two-byte character set) seems to be a fairly good
10465 approximation. -- 2000.8.10 handa@etl.go.jp */
10466 unsigned char copy_buffer
[513];
10467 unsigned char *copy_bufptr
= copy_buffer
;
10468 int copy_bufsiz
= sizeof (copy_buffer
);
10470 Lisp_Object coding_system
= Qlatin_1
;
10473 |= x_emacs_to_x_modifiers (FRAME_X_DISPLAY_INFO (f
),
10474 extra_keyboard_modifiers
);
10475 modifiers
= event
.xkey
.state
;
10477 /* This will have to go some day... */
10479 /* make_lispy_event turns chars into control chars.
10480 Don't do it here because XLookupString is too eager. */
10481 event
.xkey
.state
&= ~ControlMask
;
10482 event
.xkey
.state
&= ~(dpyinfo
->meta_mod_mask
10483 | dpyinfo
->super_mod_mask
10484 | dpyinfo
->hyper_mod_mask
10485 | dpyinfo
->alt_mod_mask
);
10487 /* In case Meta is ComposeCharacter,
10488 clear its status. According to Markus Ehrnsperger
10489 Markus.Ehrnsperger@lehrstuhl-bross.physik.uni-muenchen.de
10490 this enables ComposeCharacter to work whether or
10491 not it is combined with Meta. */
10492 if (modifiers
& dpyinfo
->meta_mod_mask
)
10493 bzero (&compose_status
, sizeof (compose_status
));
10498 Status status_return
;
10500 coding_system
= Vlocale_coding_system
;
10501 nbytes
= XmbLookupString (FRAME_XIC (f
),
10502 &event
.xkey
, copy_bufptr
,
10503 copy_bufsiz
, &keysym
,
10505 if (status_return
== XBufferOverflow
)
10507 copy_bufsiz
= nbytes
+ 1;
10508 copy_bufptr
= (char *) alloca (copy_bufsiz
);
10509 nbytes
= XmbLookupString (FRAME_XIC (f
),
10510 &event
.xkey
, copy_bufptr
,
10511 copy_bufsiz
, &keysym
,
10514 /* Xutf8LookupString is a new but already deprecated interface. -stef */
10515 #if 0 && defined X_HAVE_UTF8_STRING
10516 else if (status_return
== XLookupKeySym
)
10517 { /* Try again but with utf-8. */
10518 coding_system
= Qutf_8
;
10519 nbytes
= Xutf8LookupString (FRAME_XIC (f
),
10520 &event
.xkey
, copy_bufptr
,
10521 copy_bufsiz
, &keysym
,
10523 if (status_return
== XBufferOverflow
)
10525 copy_bufsiz
= nbytes
+ 1;
10526 copy_bufptr
= (char *) alloca (copy_bufsiz
);
10527 nbytes
= Xutf8LookupString (FRAME_XIC (f
),
10530 copy_bufsiz
, &keysym
,
10536 if (status_return
== XLookupNone
)
10538 else if (status_return
== XLookupChars
)
10543 else if (status_return
!= XLookupKeySym
10544 && status_return
!= XLookupBoth
)
10548 nbytes
= XLookupString (&event
.xkey
, copy_bufptr
,
10549 copy_bufsiz
, &keysym
,
10552 nbytes
= XLookupString (&event
.xkey
, copy_bufptr
,
10553 copy_bufsiz
, &keysym
,
10557 orig_keysym
= keysym
;
10561 if (((keysym
>= XK_BackSpace
&& keysym
<= XK_Escape
)
10562 || keysym
== XK_Delete
10563 #ifdef XK_ISO_Left_Tab
10564 || (keysym
>= XK_ISO_Left_Tab
&& keysym
<= XK_ISO_Enter
)
10566 || (keysym
>= XK_Kanji
&& keysym
<= XK_Eisu_toggle
)
10567 || IsCursorKey (keysym
) /* 0xff50 <= x < 0xff60 */
10568 || IsMiscFunctionKey (keysym
) /* 0xff60 <= x < VARIES */
10570 /* This recognizes the "extended function keys".
10571 It seems there's no cleaner way.
10572 Test IsModifierKey to avoid handling mode_switch
10574 || ((unsigned) (keysym
) >= XK_Select
10575 && (unsigned)(keysym
) < XK_KP_Space
)
10577 #ifdef XK_dead_circumflex
10578 || orig_keysym
== XK_dead_circumflex
10580 #ifdef XK_dead_grave
10581 || orig_keysym
== XK_dead_grave
10583 #ifdef XK_dead_tilde
10584 || orig_keysym
== XK_dead_tilde
10586 #ifdef XK_dead_diaeresis
10587 || orig_keysym
== XK_dead_diaeresis
10589 #ifdef XK_dead_macron
10590 || orig_keysym
== XK_dead_macron
10592 #ifdef XK_dead_degree
10593 || orig_keysym
== XK_dead_degree
10595 #ifdef XK_dead_acute
10596 || orig_keysym
== XK_dead_acute
10598 #ifdef XK_dead_cedilla
10599 || orig_keysym
== XK_dead_cedilla
10601 #ifdef XK_dead_breve
10602 || orig_keysym
== XK_dead_breve
10604 #ifdef XK_dead_ogonek
10605 || orig_keysym
== XK_dead_ogonek
10607 #ifdef XK_dead_caron
10608 || orig_keysym
== XK_dead_caron
10610 #ifdef XK_dead_doubleacute
10611 || orig_keysym
== XK_dead_doubleacute
10613 #ifdef XK_dead_abovedot
10614 || orig_keysym
== XK_dead_abovedot
10616 || IsKeypadKey (keysym
) /* 0xff80 <= x < 0xffbe */
10617 || IsFunctionKey (keysym
) /* 0xffbe <= x < 0xffe1 */
10618 /* Any "vendor-specific" key is ok. */
10619 || (orig_keysym
& (1 << 28))
10620 || (keysym
!= NoSymbol
&& nbytes
== 0))
10621 && ! (IsModifierKey (orig_keysym
)
10623 #ifdef XK_Mode_switch
10624 || ((unsigned)(orig_keysym
) == XK_Mode_switch
)
10627 || ((unsigned)(orig_keysym
) == XK_Num_Lock
)
10629 #endif /* not HAVE_X11R5 */
10630 /* The symbols from XK_ISO_Lock to
10631 XK_ISO_Last_Group_Lock doesn't have real
10632 modifiers but should be treated similarly
10633 to Mode_switch by Emacs. */
10634 #if defined XK_ISO_Lock && defined XK_ISO_Last_Group_Lock
10635 || ((unsigned)(orig_keysym
) >= XK_ISO_Lock
10636 && (unsigned)(orig_keysym
) <= XK_ISO_Last_Group_Lock
)
10640 if (temp_index
== sizeof temp_buffer
/ sizeof (short))
10642 temp_buffer
[temp_index
++] = keysym
;
10643 bufp
->kind
= NON_ASCII_KEYSTROKE_EVENT
;
10644 bufp
->code
= keysym
;
10645 XSETFRAME (bufp
->frame_or_window
, f
);
10648 = x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO (f
),
10650 bufp
->timestamp
= event
.xkey
.time
;
10655 else if (numchars
> nbytes
)
10661 /* The input should be decoded with `coding_system'
10662 which depends on which X*LookupString function
10663 we used just above and the locale. */
10664 setup_coding_system (coding_system
, &coding
);
10665 coding
.src_multibyte
= 0;
10666 coding
.dst_multibyte
= 1;
10667 /* The input is converted to events, thus we can't
10668 handle composition. Anyway, there's no XIM that
10669 gives us composition information. */
10670 coding
.composing
= COMPOSITION_DISABLED
;
10672 for (i
= 0; i
< nbytes
; i
++)
10674 if (temp_index
== (sizeof temp_buffer
10677 temp_buffer
[temp_index
++] = copy_bufptr
[i
];
10681 /* Decode the input data. */
10685 require
= decoding_buffer_size (&coding
, nbytes
);
10686 p
= (unsigned char *) alloca (require
);
10687 coding
.mode
|= CODING_MODE_LAST_BLOCK
;
10688 decode_coding (&coding
, copy_bufptr
, p
,
10690 nbytes
= coding
.produced
;
10691 nchars
= coding
.produced_char
;
10695 /* Convert the input data to a sequence of
10696 character events. */
10697 for (i
= 0; i
< nbytes
; i
+= len
)
10699 if (nchars
== nbytes
)
10700 c
= copy_bufptr
[i
], len
= 1;
10702 c
= STRING_CHAR_AND_LENGTH (copy_bufptr
+ i
,
10705 bufp
->kind
= (SINGLE_BYTE_CHAR_P (c
)
10706 ? ASCII_KEYSTROKE_EVENT
10707 : MULTIBYTE_CHAR_KEYSTROKE_EVENT
);
10709 XSETFRAME (bufp
->frame_or_window
, f
);
10712 = x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO (f
),
10714 bufp
->timestamp
= event
.xkey
.time
;
10719 numchars
-= nchars
;
10721 if (keysym
== NoSymbol
)
10731 /* Don't dispatch this event since XtDispatchEvent calls
10732 XFilterEvent, and two calls in a row may freeze the
10741 /* Don't dispatch this event since XtDispatchEvent calls
10742 XFilterEvent, and two calls in a row may freeze the
10749 /* Here's a possible interpretation of the whole
10750 FocusIn-EnterNotify FocusOut-LeaveNotify mess. If
10751 you get a FocusIn event, you have to get a FocusOut
10752 event before you relinquish the focus. If you
10753 haven't received a FocusIn event, then a mere
10754 LeaveNotify is enough to free you. */
10758 f
= x_any_window_to_frame (dpyinfo
, event
.xcrossing
.window
);
10761 if (event
.xcrossing
.focus
)
10763 /* Avoid nasty pop/raise loops. */
10764 if (f
&& (!(f
->auto_raise
)
10765 || !(f
->auto_lower
)
10766 || (event
.xcrossing
.time
- enter_timestamp
) > 500))
10768 x_new_focus_frame (dpyinfo
, f
);
10769 enter_timestamp
= event
.xcrossing
.time
;
10772 else if (f
== dpyinfo
->x_focus_frame
)
10773 x_new_focus_frame (dpyinfo
, 0);
10776 /* EnterNotify counts as mouse movement,
10777 so update things that depend on mouse position. */
10778 if (f
&& !f
->output_data
.x
->hourglass_p
)
10779 note_mouse_movement (f
, &event
.xmotion
);
10784 f
= x_any_window_to_frame (dpyinfo
, event
.xfocus
.window
);
10785 if (event
.xfocus
.detail
!= NotifyPointer
)
10786 dpyinfo
->x_focus_event_frame
= f
;
10789 x_new_focus_frame (dpyinfo
, f
);
10791 /* Don't stop displaying the initial startup message
10792 for a switch-frame event we don't need. */
10793 if (GC_NILP (Vterminal_frame
)
10794 && GC_CONSP (Vframe_list
)
10795 && !GC_NILP (XCDR (Vframe_list
)))
10797 bufp
->kind
= FOCUS_IN_EVENT
;
10798 XSETFRAME (bufp
->frame_or_window
, f
);
10800 ++bufp
, ++count
, --numchars
;
10805 if (f
&& FRAME_XIC (f
))
10806 XSetICFocus (FRAME_XIC (f
));
10812 f
= x_top_window_to_frame (dpyinfo
, event
.xcrossing
.window
);
10815 if (f
== dpyinfo
->mouse_face_mouse_frame
)
10817 /* If we move outside the frame, then we're
10818 certainly no longer on any text in the frame. */
10819 clear_mouse_face (dpyinfo
);
10820 dpyinfo
->mouse_face_mouse_frame
= 0;
10823 /* Generate a nil HELP_EVENT to cancel a help-echo.
10824 Do it only if there's something to cancel.
10825 Otherwise, the startup message is cleared when
10826 the mouse leaves the frame. */
10827 if (any_help_event_p
)
10832 XSETFRAME (frame
, f
);
10834 n
= gen_help_event (bufp
, numchars
,
10835 Qnil
, frame
, Qnil
, Qnil
, 0);
10836 bufp
+= n
, count
+= n
, numchars
-= n
;
10840 if (event
.xcrossing
.focus
)
10841 x_mouse_leave (dpyinfo
);
10844 if (f
== dpyinfo
->x_focus_event_frame
)
10845 dpyinfo
->x_focus_event_frame
= 0;
10846 if (f
== dpyinfo
->x_focus_frame
)
10847 x_new_focus_frame (dpyinfo
, 0);
10854 f
= x_any_window_to_frame (dpyinfo
, event
.xfocus
.window
);
10855 if (event
.xfocus
.detail
!= NotifyPointer
10856 && f
== dpyinfo
->x_focus_event_frame
)
10857 dpyinfo
->x_focus_event_frame
= 0;
10858 if (f
&& f
== dpyinfo
->x_focus_frame
)
10859 x_new_focus_frame (dpyinfo
, 0);
10862 if (f
&& FRAME_XIC (f
))
10863 XUnsetICFocus (FRAME_XIC (f
));
10870 previous_help_echo
= help_echo
;
10871 help_echo
= help_echo_object
= help_echo_window
= Qnil
;
10872 help_echo_pos
= -1;
10874 if (dpyinfo
->grabbed
&& last_mouse_frame
10875 && FRAME_LIVE_P (last_mouse_frame
))
10876 f
= last_mouse_frame
;
10878 f
= x_window_to_frame (dpyinfo
, event
.xmotion
.window
);
10880 if (dpyinfo
->mouse_face_hidden
)
10882 dpyinfo
->mouse_face_hidden
= 0;
10883 clear_mouse_face (dpyinfo
);
10889 /* Generate SELECT_WINDOW_EVENTs when needed. */
10890 if (mouse_autoselect_window
)
10892 Lisp_Object window
;
10895 window
= window_from_coordinates (f
,
10896 event
.xmotion
.x
, event
.xmotion
.y
,
10899 /* Window will be selected only when it is not selected now and
10900 last mouse movement event was not in it. Minibuffer window
10901 will be selected iff it is active. */
10902 if (WINDOWP(window
)
10903 && !EQ (window
, last_window
)
10904 && !EQ (window
, selected_window
)
10907 bufp
->kind
= SELECT_WINDOW_EVENT
;
10908 bufp
->frame_or_window
= window
;
10910 ++bufp
, ++count
, --numchars
;
10913 last_window
=window
;
10915 note_mouse_movement (f
, &event
.xmotion
);
10919 #ifndef USE_TOOLKIT_SCROLL_BARS
10920 struct scroll_bar
*bar
10921 = x_window_to_scroll_bar (event
.xmotion
.window
);
10924 x_scroll_bar_note_movement (bar
, &event
);
10925 #endif /* USE_TOOLKIT_SCROLL_BARS */
10927 /* If we move outside the frame, then we're
10928 certainly no longer on any text in the frame. */
10929 clear_mouse_face (dpyinfo
);
10932 /* If the contents of the global variable help_echo
10933 has changed, generate a HELP_EVENT. */
10934 if (!NILP (help_echo
)
10935 || !NILP (previous_help_echo
))
10941 XSETFRAME (frame
, f
);
10945 any_help_event_p
= 1;
10946 n
= gen_help_event (bufp
, numchars
, help_echo
, frame
,
10947 help_echo_window
, help_echo_object
,
10949 bufp
+= n
, count
+= n
, numchars
-= n
;
10955 case ConfigureNotify
:
10956 f
= x_top_window_to_frame (dpyinfo
, event
.xconfigure
.window
);
10959 #ifndef USE_X_TOOLKIT
10960 /* If there is a pending resize for fullscreen, don't
10961 do this one, the right one will come later.
10962 The toolkit version doesn't seem to need this, but we
10963 need to reset it below. */
10965 ((f
->output_data
.x
->want_fullscreen
& FULLSCREEN_WAIT
)
10966 && FRAME_NEW_WIDTH (f
) != 0);
10967 int rows
= PIXEL_TO_CHAR_HEIGHT (f
, event
.xconfigure
.height
);
10968 int columns
= PIXEL_TO_CHAR_WIDTH (f
, event
.xconfigure
.width
);
10972 /* In the toolkit version, change_frame_size
10973 is called by the code that handles resizing
10974 of the EmacsFrame widget. */
10976 /* Even if the number of character rows and columns has
10977 not changed, the font size may have changed, so we need
10978 to check the pixel dimensions as well. */
10979 if (columns
!= f
->width
10980 || rows
!= f
->height
10981 || event
.xconfigure
.width
!= f
->output_data
.x
->pixel_width
10982 || event
.xconfigure
.height
!= f
->output_data
.x
->pixel_height
)
10984 change_frame_size (f
, rows
, columns
, 0, 1, 0);
10985 SET_FRAME_GARBAGED (f
);
10986 cancel_mouse_face (f
);
10990 f
->output_data
.x
->pixel_width
= event
.xconfigure
.width
;
10991 f
->output_data
.x
->pixel_height
= event
.xconfigure
.height
;
10993 /* What we have now is the position of Emacs's own window.
10994 Convert that to the position of the window manager window. */
10995 x_real_positions (f
, &f
->output_data
.x
->left_pos
,
10996 &f
->output_data
.x
->top_pos
);
10998 x_check_fullscreen_move(f
);
10999 if (f
->output_data
.x
->want_fullscreen
& FULLSCREEN_WAIT
)
11000 f
->output_data
.x
->want_fullscreen
&=
11001 ~(FULLSCREEN_WAIT
|FULLSCREEN_BOTH
);
11003 if (FRAME_XIC (f
) && (FRAME_XIC_STYLE (f
) & XIMStatusArea
))
11004 xic_set_statusarea (f
);
11007 if (f
->output_data
.x
->parent_desc
!= FRAME_X_DISPLAY_INFO (f
)->root_window
)
11009 /* Since the WM decorations come below top_pos now,
11010 we must put them below top_pos in the future. */
11011 f
->output_data
.x
->win_gravity
= NorthWestGravity
;
11012 x_wm_set_size_hint (f
, (long) 0, 0);
11015 /* Some window managers pass (0,0) as the location of
11016 the window, and the Motif event handler stores it
11017 in the emacs widget, which messes up Motif menus. */
11018 if (event
.xconfigure
.x
== 0 && event
.xconfigure
.y
== 0)
11020 event
.xconfigure
.x
= f
->output_data
.x
->widget
->core
.x
;
11021 event
.xconfigure
.y
= f
->output_data
.x
->widget
->core
.y
;
11023 #endif /* USE_MOTIF */
11028 case ButtonRelease
:
11030 /* If we decide we want to generate an event to be seen
11031 by the rest of Emacs, we put it here. */
11032 struct input_event emacs_event
;
11033 int tool_bar_p
= 0;
11035 emacs_event
.kind
= NO_EVENT
;
11036 bzero (&compose_status
, sizeof (compose_status
));
11038 if (dpyinfo
->grabbed
11039 && last_mouse_frame
11040 && FRAME_LIVE_P (last_mouse_frame
))
11041 f
= last_mouse_frame
;
11043 f
= x_window_to_frame (dpyinfo
, event
.xbutton
.window
);
11047 /* Is this in the tool-bar? */
11048 if (WINDOWP (f
->tool_bar_window
)
11049 && XFASTINT (XWINDOW (f
->tool_bar_window
)->height
))
11051 Lisp_Object window
;
11054 x
= event
.xbutton
.x
;
11055 y
= event
.xbutton
.y
;
11058 window
= window_from_coordinates (f
, x
, y
, &p
, 1);
11059 if (EQ (window
, f
->tool_bar_window
))
11061 x_handle_tool_bar_click (f
, &event
.xbutton
);
11067 if (!dpyinfo
->x_focus_frame
11068 || f
== dpyinfo
->x_focus_frame
)
11069 construct_mouse_click (&emacs_event
, &event
, f
);
11073 #ifndef USE_TOOLKIT_SCROLL_BARS
11074 struct scroll_bar
*bar
11075 = x_window_to_scroll_bar (event
.xbutton
.window
);
11078 x_scroll_bar_handle_click (bar
, &event
, &emacs_event
);
11079 #endif /* not USE_TOOLKIT_SCROLL_BARS */
11082 if (event
.type
== ButtonPress
)
11084 dpyinfo
->grabbed
|= (1 << event
.xbutton
.button
);
11085 last_mouse_frame
= f
;
11086 /* Ignore any mouse motion that happened
11087 before this event; any subsequent mouse-movement
11088 Emacs events should reflect only motion after
11089 the ButtonPress. */
11091 f
->mouse_moved
= 0;
11094 last_tool_bar_item
= -1;
11098 dpyinfo
->grabbed
&= ~(1 << event
.xbutton
.button
);
11101 if (numchars
>= 1 && emacs_event
.kind
!= NO_EVENT
)
11103 bcopy (&emacs_event
, bufp
, sizeof (struct input_event
));
11109 #ifdef USE_X_TOOLKIT
11110 f
= x_menubar_window_to_frame (dpyinfo
, event
.xbutton
.window
);
11111 /* For a down-event in the menu bar,
11112 don't pass it to Xt right now.
11113 Instead, save it away
11114 and we will pass it to Xt from kbd_buffer_get_event.
11115 That way, we can run some Lisp code first. */
11116 if (f
&& event
.type
== ButtonPress
11117 /* Verify the event is really within the menu bar
11118 and not just sent to it due to grabbing. */
11119 && event
.xbutton
.x
>= 0
11120 && event
.xbutton
.x
< f
->output_data
.x
->pixel_width
11121 && event
.xbutton
.y
>= 0
11122 && event
.xbutton
.y
< f
->output_data
.x
->menubar_height
11123 && event
.xbutton
.same_screen
)
11125 SET_SAVED_BUTTON_EVENT
;
11126 XSETFRAME (last_mouse_press_frame
, f
);
11128 else if (event
.type
== ButtonPress
)
11130 last_mouse_press_frame
= Qnil
;
11134 #ifdef USE_MOTIF /* This should do not harm for Lucid,
11135 but I am trying to be cautious. */
11136 else if (event
.type
== ButtonRelease
)
11138 if (!NILP (last_mouse_press_frame
))
11140 f
= XFRAME (last_mouse_press_frame
);
11141 if (f
->output_data
.x
)
11142 SET_SAVED_BUTTON_EVENT
;
11147 #endif /* USE_MOTIF */
11150 #endif /* USE_X_TOOLKIT */
11154 case CirculateNotify
:
11157 case CirculateRequest
:
11160 case VisibilityNotify
:
11163 case MappingNotify
:
11164 /* Someone has changed the keyboard mapping - update the
11166 switch (event
.xmapping
.request
)
11168 case MappingModifier
:
11169 x_find_modifier_meanings (dpyinfo
);
11170 /* This is meant to fall through. */
11171 case MappingKeyboard
:
11172 XRefreshKeyboardMapping (&event
.xmapping
);
11178 #ifdef USE_X_TOOLKIT
11180 XtDispatchEvent (&event
);
11182 #endif /* USE_X_TOOLKIT */
11190 /* On some systems, an X bug causes Emacs to get no more events
11191 when the window is destroyed. Detect that. (1994.) */
11194 /* Emacs and the X Server eats up CPU time if XNoOp is done every time.
11195 One XNOOP in 100 loops will make Emacs terminate.
11196 B. Bretthauer, 1994 */
11198 if (x_noop_count
>= 100)
11202 if (next_noop_dpyinfo
== 0)
11203 next_noop_dpyinfo
= x_display_list
;
11205 XNoOp (next_noop_dpyinfo
->display
);
11207 /* Each time we get here, cycle through the displays now open. */
11208 next_noop_dpyinfo
= next_noop_dpyinfo
->next
;
11212 /* If the focus was just given to an auto-raising frame,
11214 /* ??? This ought to be able to handle more than one such frame. */
11215 if (pending_autoraise_frame
)
11217 x_raise_frame (pending_autoraise_frame
);
11218 pending_autoraise_frame
= 0;
11229 /***********************************************************************
11231 ***********************************************************************/
11233 /* Notice when the text cursor of window W has been completely
11234 overwritten by a drawing operation that outputs glyphs in AREA
11235 starting at X0 and ending at X1 in the line starting at Y0 and
11236 ending at Y1. X coordinates are area-relative. X1 < 0 means all
11237 the rest of the line after X0 has been written. Y coordinates
11238 are window-relative. */
11241 notice_overwritten_cursor (w
, area
, x0
, x1
, y0
, y1
)
11243 enum glyph_row_area area
;
11244 int x0
, y0
, x1
, y1
;
11246 if (area
== TEXT_AREA
&& w
->phys_cursor_on_p
)
11248 int cx0
= w
->phys_cursor
.x
;
11249 int cx1
= cx0
+ w
->phys_cursor_width
;
11250 int cy0
= w
->phys_cursor
.y
;
11251 int cy1
= cy0
+ w
->phys_cursor_height
;
11253 if (x0
<= cx0
&& (x1
< 0 || x1
>= cx1
))
11255 /* The cursor image will be completely removed from the
11256 screen if the output area intersects the cursor area in
11257 y-direction. When we draw in [y0 y1[, and some part of
11258 the cursor is at y < y0, that part must have been drawn
11259 before. When scrolling, the cursor is erased before
11260 actually scrolling, so we don't come here. When not
11261 scrolling, the rows above the old cursor row must have
11262 changed, and in this case these rows must have written
11263 over the cursor image.
11265 Likewise if part of the cursor is below y1, with the
11266 exception of the cursor being in the first blank row at
11267 the buffer and window end because update_text_area
11268 doesn't draw that row. (Except when it does, but
11269 that's handled in update_text_area.) */
11271 if (((y0
>= cy0
&& y0
< cy1
) || (y1
> cy0
&& y1
< cy1
))
11272 && w
->current_matrix
->rows
[w
->phys_cursor
.vpos
].displays_text_p
)
11273 w
->phys_cursor_on_p
= 0;
11279 /* Set clipping for output in glyph row ROW. W is the window in which
11280 we operate. GC is the graphics context to set clipping in.
11281 WHOLE_LINE_P non-zero means include the areas used for truncation
11282 mark display and alike in the clipping rectangle.
11284 ROW may be a text row or, e.g., a mode line. Text rows must be
11285 clipped to the interior of the window dedicated to text display,
11286 mode lines must be clipped to the whole window. */
11289 x_clip_to_row (w
, row
, gc
, whole_line_p
)
11291 struct glyph_row
*row
;
11295 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
11296 XRectangle clip_rect
;
11297 int window_x
, window_y
, window_width
, window_height
;
11299 window_box (w
, -1, &window_x
, &window_y
, &window_width
, &window_height
);
11301 clip_rect
.x
= WINDOW_TO_FRAME_PIXEL_X (w
, 0);
11302 clip_rect
.y
= WINDOW_TO_FRAME_PIXEL_Y (w
, row
->y
);
11303 clip_rect
.y
= max (clip_rect
.y
, window_y
);
11304 clip_rect
.width
= window_width
;
11305 clip_rect
.height
= row
->visible_height
;
11307 /* If clipping to the whole line, including trunc marks, extend
11308 the rectangle to the left and increase its width. */
11311 clip_rect
.x
-= FRAME_X_LEFT_FRINGE_WIDTH (f
);
11312 clip_rect
.width
+= FRAME_X_FRINGE_WIDTH (f
);
11315 XSetClipRectangles (FRAME_X_DISPLAY (f
), gc
, 0, 0, &clip_rect
, 1, Unsorted
);
11319 /* Draw a hollow box cursor on window W in glyph row ROW. */
11322 x_draw_hollow_cursor (w
, row
)
11324 struct glyph_row
*row
;
11326 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
11327 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
11328 Display
*dpy
= FRAME_X_DISPLAY (f
);
11331 struct glyph
*cursor_glyph
;
11334 /* Compute frame-relative coordinates from window-relative
11336 x
= WINDOW_TEXT_TO_FRAME_PIXEL_X (w
, w
->phys_cursor
.x
);
11337 y
= (WINDOW_TO_FRAME_PIXEL_Y (w
, w
->phys_cursor
.y
)
11338 + row
->ascent
- w
->phys_cursor_ascent
);
11339 h
= row
->height
- 1;
11341 /* Get the glyph the cursor is on. If we can't tell because
11342 the current matrix is invalid or such, give up. */
11343 cursor_glyph
= get_phys_cursor_glyph (w
);
11344 if (cursor_glyph
== NULL
)
11347 /* Compute the width of the rectangle to draw. If on a stretch
11348 glyph, and `x-stretch-block-cursor' is nil, don't draw a
11349 rectangle as wide as the glyph, but use a canonical character
11351 wd
= cursor_glyph
->pixel_width
- 1;
11352 if (cursor_glyph
->type
== STRETCH_GLYPH
11353 && !x_stretch_cursor_p
)
11354 wd
= min (CANON_X_UNIT (f
), wd
);
11355 w
->phys_cursor_width
= wd
;
11357 /* The foreground of cursor_gc is typically the same as the normal
11358 background color, which can cause the cursor box to be invisible. */
11359 xgcv
.foreground
= f
->output_data
.x
->cursor_pixel
;
11360 if (dpyinfo
->scratch_cursor_gc
)
11361 XChangeGC (dpy
, dpyinfo
->scratch_cursor_gc
, GCForeground
, &xgcv
);
11363 dpyinfo
->scratch_cursor_gc
= XCreateGC (dpy
, FRAME_X_WINDOW (f
),
11364 GCForeground
, &xgcv
);
11365 gc
= dpyinfo
->scratch_cursor_gc
;
11367 /* Set clipping, draw the rectangle, and reset clipping again. */
11368 x_clip_to_row (w
, row
, gc
, 0);
11369 XDrawRectangle (dpy
, FRAME_X_WINDOW (f
), gc
, x
, y
, wd
, h
);
11370 XSetClipMask (dpy
, gc
, None
);
11374 /* Draw a bar cursor on window W in glyph row ROW.
11376 Implementation note: One would like to draw a bar cursor with an
11377 angle equal to the one given by the font property XA_ITALIC_ANGLE.
11378 Unfortunately, I didn't find a font yet that has this property set.
11382 x_draw_bar_cursor (w
, row
, width
, kind
)
11384 struct glyph_row
*row
;
11386 enum text_cursor_kinds kind
;
11388 struct frame
*f
= XFRAME (w
->frame
);
11389 struct glyph
*cursor_glyph
;
11391 /* If cursor is out of bounds, don't draw garbage. This can happen
11392 in mini-buffer windows when switching between echo area glyphs
11393 and mini-buffer. */
11394 cursor_glyph
= get_phys_cursor_glyph (w
);
11395 if (cursor_glyph
== NULL
)
11398 /* If on an image, draw like a normal cursor. That's usually better
11399 visible than drawing a bar, esp. if the image is large so that
11400 the bar might not be in the window. */
11401 if (cursor_glyph
->type
== IMAGE_GLYPH
)
11403 struct glyph_row
*row
;
11404 row
= MATRIX_ROW (w
->current_matrix
, w
->phys_cursor
.vpos
);
11405 x_draw_phys_cursor_glyph (w
, row
, DRAW_CURSOR
);
11409 Display
*dpy
= FRAME_X_DISPLAY (f
);
11410 Window window
= FRAME_X_WINDOW (f
);
11411 GC gc
= FRAME_X_DISPLAY_INFO (f
)->scratch_cursor_gc
;
11412 unsigned long mask
= GCForeground
| GCBackground
| GCGraphicsExposures
;
11413 struct face
*face
= FACE_FROM_ID (f
, cursor_glyph
->face_id
);
11416 /* If the glyph's background equals the color we normally draw
11417 the bar cursor in, the bar cursor in its normal color is
11418 invisible. Use the glyph's foreground color instead in this
11419 case, on the assumption that the glyph's colors are chosen so
11420 that the glyph is legible. */
11421 if (face
->background
== f
->output_data
.x
->cursor_pixel
)
11422 xgcv
.background
= xgcv
.foreground
= face
->foreground
;
11424 xgcv
.background
= xgcv
.foreground
= f
->output_data
.x
->cursor_pixel
;
11425 xgcv
.graphics_exposures
= 0;
11428 XChangeGC (dpy
, gc
, mask
, &xgcv
);
11431 gc
= XCreateGC (dpy
, window
, mask
, &xgcv
);
11432 FRAME_X_DISPLAY_INFO (f
)->scratch_cursor_gc
= gc
;
11436 width
= f
->output_data
.x
->cursor_width
;
11437 width
= min (cursor_glyph
->pixel_width
, width
);
11439 w
->phys_cursor_width
= width
;
11440 x_clip_to_row (w
, row
, gc
, 0);
11442 if (kind
== BAR_CURSOR
)
11443 XFillRectangle (dpy
, window
, gc
,
11444 WINDOW_TEXT_TO_FRAME_PIXEL_X (w
, w
->phys_cursor
.x
),
11445 WINDOW_TO_FRAME_PIXEL_Y (w
, w
->phys_cursor
.y
),
11446 width
, row
->height
);
11448 XFillRectangle (dpy
, window
, gc
,
11449 WINDOW_TEXT_TO_FRAME_PIXEL_X (w
, w
->phys_cursor
.x
),
11450 WINDOW_TO_FRAME_PIXEL_Y (w
, w
->phys_cursor
.y
+
11451 row
->height
- width
),
11452 cursor_glyph
->pixel_width
,
11455 XSetClipMask (dpy
, gc
, None
);
11460 /* Clear the cursor of window W to background color, and mark the
11461 cursor as not shown. This is used when the text where the cursor
11462 is is about to be rewritten. */
11468 if (FRAME_VISIBLE_P (XFRAME (w
->frame
)) && w
->phys_cursor_on_p
)
11469 x_update_window_cursor (w
, 0);
11473 /* Draw the cursor glyph of window W in glyph row ROW. See the
11474 comment of x_draw_glyphs for the meaning of HL. */
11477 x_draw_phys_cursor_glyph (w
, row
, hl
)
11479 struct glyph_row
*row
;
11480 enum draw_glyphs_face hl
;
11482 /* If cursor hpos is out of bounds, don't draw garbage. This can
11483 happen in mini-buffer windows when switching between echo area
11484 glyphs and mini-buffer. */
11485 if (w
->phys_cursor
.hpos
< row
->used
[TEXT_AREA
])
11487 int on_p
= w
->phys_cursor_on_p
;
11490 x1
= x_draw_glyphs (w
, w
->phys_cursor
.x
, row
, TEXT_AREA
,
11491 w
->phys_cursor
.hpos
, w
->phys_cursor
.hpos
+ 1,
11493 w
->phys_cursor_on_p
= on_p
;
11495 if (hl
== DRAW_CURSOR
)
11496 w
->phys_cursor_width
= x1
- w
->phys_cursor
.x
;
11498 /* When we erase the cursor, and ROW is overlapped by other
11499 rows, make sure that these overlapping parts of other rows
11501 else if (hl
== DRAW_NORMAL_TEXT
&& row
->overlapped_p
)
11503 if (row
> w
->current_matrix
->rows
11504 && MATRIX_ROW_OVERLAPS_SUCC_P (row
- 1))
11505 x_fix_overlapping_area (w
, row
- 1, TEXT_AREA
);
11507 if (MATRIX_ROW_BOTTOM_Y (row
) < window_text_bottom_y (w
)
11508 && MATRIX_ROW_OVERLAPS_PRED_P (row
+ 1))
11509 x_fix_overlapping_area (w
, row
+ 1, TEXT_AREA
);
11515 /* Erase the image of a cursor of window W from the screen. */
11518 x_erase_phys_cursor (w
)
11521 struct frame
*f
= XFRAME (w
->frame
);
11522 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
11523 int hpos
= w
->phys_cursor
.hpos
;
11524 int vpos
= w
->phys_cursor
.vpos
;
11525 int mouse_face_here_p
= 0;
11526 struct glyph_matrix
*active_glyphs
= w
->current_matrix
;
11527 struct glyph_row
*cursor_row
;
11528 struct glyph
*cursor_glyph
;
11529 enum draw_glyphs_face hl
;
11531 /* No cursor displayed or row invalidated => nothing to do on the
11533 if (w
->phys_cursor_type
== NO_CURSOR
)
11534 goto mark_cursor_off
;
11536 /* VPOS >= active_glyphs->nrows means that window has been resized.
11537 Don't bother to erase the cursor. */
11538 if (vpos
>= active_glyphs
->nrows
)
11539 goto mark_cursor_off
;
11541 /* If row containing cursor is marked invalid, there is nothing we
11543 cursor_row
= MATRIX_ROW (active_glyphs
, vpos
);
11544 if (!cursor_row
->enabled_p
)
11545 goto mark_cursor_off
;
11547 /* If row is completely invisible, don't attempt to delete a cursor which
11548 isn't there. This can happen if cursor is at top of a window, and
11549 we switch to a buffer with a header line in that window. */
11550 if (cursor_row
->visible_height
<= 0)
11551 goto mark_cursor_off
;
11553 /* This can happen when the new row is shorter than the old one.
11554 In this case, either x_draw_glyphs or clear_end_of_line
11555 should have cleared the cursor. Note that we wouldn't be
11556 able to erase the cursor in this case because we don't have a
11557 cursor glyph at hand. */
11558 if (w
->phys_cursor
.hpos
>= cursor_row
->used
[TEXT_AREA
])
11559 goto mark_cursor_off
;
11561 /* If the cursor is in the mouse face area, redisplay that when
11562 we clear the cursor. */
11563 if (! NILP (dpyinfo
->mouse_face_window
)
11564 && w
== XWINDOW (dpyinfo
->mouse_face_window
)
11565 && (vpos
> dpyinfo
->mouse_face_beg_row
11566 || (vpos
== dpyinfo
->mouse_face_beg_row
11567 && hpos
>= dpyinfo
->mouse_face_beg_col
))
11568 && (vpos
< dpyinfo
->mouse_face_end_row
11569 || (vpos
== dpyinfo
->mouse_face_end_row
11570 && hpos
< dpyinfo
->mouse_face_end_col
))
11571 /* Don't redraw the cursor's spot in mouse face if it is at the
11572 end of a line (on a newline). The cursor appears there, but
11573 mouse highlighting does not. */
11574 && cursor_row
->used
[TEXT_AREA
] > hpos
)
11575 mouse_face_here_p
= 1;
11577 /* Maybe clear the display under the cursor. */
11578 if (w
->phys_cursor_type
== HOLLOW_BOX_CURSOR
)
11581 int header_line_height
= WINDOW_DISPLAY_HEADER_LINE_HEIGHT (w
);
11583 cursor_glyph
= get_phys_cursor_glyph (w
);
11584 if (cursor_glyph
== NULL
)
11585 goto mark_cursor_off
;
11587 x
= WINDOW_TEXT_TO_FRAME_PIXEL_X (w
, w
->phys_cursor
.x
);
11589 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
11591 WINDOW_TO_FRAME_PIXEL_Y (w
, max (header_line_height
,
11593 cursor_glyph
->pixel_width
,
11594 cursor_row
->visible_height
,
11598 /* Erase the cursor by redrawing the character underneath it. */
11599 if (mouse_face_here_p
)
11600 hl
= DRAW_MOUSE_FACE
;
11602 hl
= DRAW_NORMAL_TEXT
;
11603 x_draw_phys_cursor_glyph (w
, cursor_row
, hl
);
11606 w
->phys_cursor_on_p
= 0;
11607 w
->phys_cursor_type
= NO_CURSOR
;
11611 /* Non-zero if physical cursor of window W is within mouse face. */
11614 cursor_in_mouse_face_p (w
)
11617 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (XFRAME (w
->frame
));
11618 int in_mouse_face
= 0;
11620 if (WINDOWP (dpyinfo
->mouse_face_window
)
11621 && XWINDOW (dpyinfo
->mouse_face_window
) == w
)
11623 int hpos
= w
->phys_cursor
.hpos
;
11624 int vpos
= w
->phys_cursor
.vpos
;
11626 if (vpos
>= dpyinfo
->mouse_face_beg_row
11627 && vpos
<= dpyinfo
->mouse_face_end_row
11628 && (vpos
> dpyinfo
->mouse_face_beg_row
11629 || hpos
>= dpyinfo
->mouse_face_beg_col
)
11630 && (vpos
< dpyinfo
->mouse_face_end_row
11631 || hpos
< dpyinfo
->mouse_face_end_col
11632 || dpyinfo
->mouse_face_past_end
))
11636 return in_mouse_face
;
11640 /* Display or clear cursor of window W. If ON is zero, clear the
11641 cursor. If it is non-zero, display the cursor. If ON is nonzero,
11642 where to put the cursor is specified by HPOS, VPOS, X and Y. */
11645 x_display_and_set_cursor (w
, on
, hpos
, vpos
, x
, y
)
11647 int on
, hpos
, vpos
, x
, y
;
11649 struct frame
*f
= XFRAME (w
->frame
);
11650 int new_cursor_type
;
11651 int new_cursor_width
;
11652 int cursor_off_state
= 0;
11653 struct glyph_matrix
*current_glyphs
;
11654 struct glyph_row
*glyph_row
;
11655 struct glyph
*glyph
;
11657 /* This is pointless on invisible frames, and dangerous on garbaged
11658 windows and frames; in the latter case, the frame or window may
11659 be in the midst of changing its size, and x and y may be off the
11661 if (! FRAME_VISIBLE_P (f
)
11662 || FRAME_GARBAGED_P (f
)
11663 || vpos
>= w
->current_matrix
->nrows
11664 || hpos
>= w
->current_matrix
->matrix_w
)
11667 /* If cursor is off and we want it off, return quickly. */
11668 if (!on
&& !w
->phys_cursor_on_p
)
11671 current_glyphs
= w
->current_matrix
;
11672 glyph_row
= MATRIX_ROW (current_glyphs
, vpos
);
11673 glyph
= glyph_row
->glyphs
[TEXT_AREA
] + hpos
;
11675 /* If cursor row is not enabled, we don't really know where to
11676 display the cursor. */
11677 if (!glyph_row
->enabled_p
)
11679 w
->phys_cursor_on_p
= 0;
11683 xassert (interrupt_input_blocked
);
11685 /* Set new_cursor_type to the cursor we want to be displayed. In a
11686 mini-buffer window, we want the cursor only to appear if we are
11687 reading input from this window. For the selected window, we want
11688 the cursor type given by the frame parameter. If explicitly
11689 marked off, draw no cursor. In all other cases, we want a hollow
11691 new_cursor_width
= -1;
11692 new_cursor_type
= -2;
11695 if (cursor_in_echo_area
11696 && FRAME_HAS_MINIBUF_P (f
)
11697 && EQ (FRAME_MINIBUF_WINDOW (f
), echo_area_window
))
11699 if (w
== XWINDOW (echo_area_window
))
11700 new_cursor_type
= FRAME_DESIRED_CURSOR (f
);
11701 else if (NILP (Fbuffer_local_value (Qcursor_in_non_selected_windows
,
11703 new_cursor_type
= NO_CURSOR
;
11705 cursor_off_state
= 1;
11708 /* Nonselected window or nonselected frame. */
11709 else if (f
!= FRAME_X_DISPLAY_INFO (f
)->x_highlight_frame
11710 || w
!= XWINDOW (f
->selected_window
))
11712 if ((MINI_WINDOW_P (w
) && minibuf_level
== 0)
11713 || NILP (Fbuffer_local_value (Qcursor_in_non_selected_windows
,
11715 || NILP (XBUFFER (w
->buffer
)->cursor_type
))
11716 new_cursor_type
= NO_CURSOR
;
11718 cursor_off_state
= 1;
11721 /* If new_cursor_type isn't decided yet, decide it now. */
11722 if (new_cursor_type
== -2)
11724 struct buffer
*b
= XBUFFER (w
->buffer
);
11726 if (EQ (b
->cursor_type
, Qt
))
11727 new_cursor_type
= FRAME_DESIRED_CURSOR (f
);
11729 new_cursor_type
= x_specified_cursor_type (b
->cursor_type
,
11730 &new_cursor_width
);
11733 /* Dim out or hollow out the cursor,
11734 if it has blinked off or for nonselected windows. */
11735 if (w
->cursor_off_p
|| cursor_off_state
)
11737 if (new_cursor_type
== FILLED_BOX_CURSOR
)
11738 new_cursor_type
= HOLLOW_BOX_CURSOR
;
11739 else if (new_cursor_type
== BAR_CURSOR
&& new_cursor_width
> 1)
11740 new_cursor_width
= 1;
11742 new_cursor_type
= NO_CURSOR
;
11745 /* Now new_cursor_type is correct. */
11747 /* If cursor is currently being shown and we don't want it to be or
11748 it is in the wrong place, or the cursor type is not what we want,
11750 if (w
->phys_cursor_on_p
11752 || w
->phys_cursor
.x
!= x
11753 || w
->phys_cursor
.y
!= y
11754 || new_cursor_type
!= w
->phys_cursor_type
11755 || (new_cursor_type
== BAR_CURSOR
11756 && new_cursor_width
!= w
->phys_cursor_width
)))
11757 x_erase_phys_cursor (w
);
11759 /* Don't check phys_cursor_on_p here because that flag is only set
11760 to zero in some cases where we know that the cursor has been
11761 completely erased, to avoid the extra work of erasing the cursor
11762 twice. In other words, phys_cursor_on_p can be 1 and the cursor
11763 still not be visible, or it has only been partly erased. */
11766 w
->phys_cursor_ascent
= glyph_row
->ascent
;
11767 w
->phys_cursor_height
= glyph_row
->height
;
11769 /* Set phys_cursor_.* before x_draw_.* is called because some
11770 of them may need the information. */
11771 w
->phys_cursor
.x
= x
;
11772 w
->phys_cursor
.y
= glyph_row
->y
;
11773 w
->phys_cursor
.hpos
= hpos
;
11774 w
->phys_cursor
.vpos
= vpos
;
11775 w
->phys_cursor_type
= new_cursor_type
;
11776 w
->phys_cursor_on_p
= 1;
11778 switch (new_cursor_type
)
11780 case HOLLOW_BOX_CURSOR
:
11781 x_draw_hollow_cursor (w
, glyph_row
);
11784 case FILLED_BOX_CURSOR
:
11785 x_draw_phys_cursor_glyph (w
, glyph_row
, DRAW_CURSOR
);
11789 x_draw_bar_cursor (w
, glyph_row
, new_cursor_width
, BAR_CURSOR
);
11793 x_draw_bar_cursor (w
, glyph_row
, new_cursor_width
, HBAR_CURSOR
);
11797 w
->phys_cursor_width
= 0;
11805 if (w
== XWINDOW (f
->selected_window
))
11806 if (FRAME_XIC (f
) && (FRAME_XIC_STYLE (f
) & XIMPreeditPosition
))
11807 xic_set_preeditarea (w
, x
, y
);
11812 if (updating_frame
!= f
)
11813 XFlush (FRAME_X_DISPLAY (f
));
11818 /* Display the cursor on window W, or clear it. X and Y are window
11819 relative pixel coordinates. HPOS and VPOS are glyph matrix
11820 positions. If W is not the selected window, display a hollow
11821 cursor. ON non-zero means display the cursor at X, Y which
11822 correspond to HPOS, VPOS, otherwise it is cleared. */
11825 x_display_cursor (w
, on
, hpos
, vpos
, x
, y
)
11827 int on
, hpos
, vpos
, x
, y
;
11830 x_display_and_set_cursor (w
, on
, hpos
, vpos
, x
, y
);
11835 /* Display the cursor on window W, or clear it, according to ON_P.
11836 Don't change the cursor's position. */
11839 x_update_cursor (f
, on_p
)
11842 x_update_cursor_in_window_tree (XWINDOW (f
->root_window
), on_p
);
11846 /* Call x_update_window_cursor with parameter ON_P on all leaf windows
11847 in the window tree rooted at W. */
11850 x_update_cursor_in_window_tree (w
, on_p
)
11856 if (!NILP (w
->hchild
))
11857 x_update_cursor_in_window_tree (XWINDOW (w
->hchild
), on_p
);
11858 else if (!NILP (w
->vchild
))
11859 x_update_cursor_in_window_tree (XWINDOW (w
->vchild
), on_p
);
11861 x_update_window_cursor (w
, on_p
);
11863 w
= NILP (w
->next
) ? 0 : XWINDOW (w
->next
);
11868 /* Switch the display of W's cursor on or off, according to the value
11872 x_update_window_cursor (w
, on
)
11876 /* Don't update cursor in windows whose frame is in the process
11877 of being deleted. */
11878 if (w
->current_matrix
)
11881 x_display_and_set_cursor (w
, on
, w
->phys_cursor
.hpos
, w
->phys_cursor
.vpos
,
11882 w
->phys_cursor
.x
, w
->phys_cursor
.y
);
11892 /* Make the x-window of frame F use the gnu icon bitmap. */
11895 x_bitmap_icon (f
, file
)
11901 if (FRAME_X_WINDOW (f
) == 0)
11904 /* Free up our existing icon bitmap if any. */
11905 if (f
->output_data
.x
->icon_bitmap
> 0)
11906 x_destroy_bitmap (f
, f
->output_data
.x
->icon_bitmap
);
11907 f
->output_data
.x
->icon_bitmap
= 0;
11909 if (STRINGP (file
))
11910 bitmap_id
= x_create_bitmap_from_file (f
, file
);
11913 /* Create the GNU bitmap if necessary. */
11914 if (FRAME_X_DISPLAY_INFO (f
)->icon_bitmap_id
< 0)
11915 FRAME_X_DISPLAY_INFO (f
)->icon_bitmap_id
11916 = x_create_bitmap_from_data (f
, gnu_bits
,
11917 gnu_width
, gnu_height
);
11919 /* The first time we create the GNU bitmap,
11920 this increments the ref-count one extra time.
11921 As a result, the GNU bitmap is never freed.
11922 That way, we don't have to worry about allocating it again. */
11923 x_reference_bitmap (f
, FRAME_X_DISPLAY_INFO (f
)->icon_bitmap_id
);
11925 bitmap_id
= FRAME_X_DISPLAY_INFO (f
)->icon_bitmap_id
;
11928 x_wm_set_icon_pixmap (f
, bitmap_id
);
11929 f
->output_data
.x
->icon_bitmap
= bitmap_id
;
11935 /* Make the x-window of frame F use a rectangle with text.
11936 Use ICON_NAME as the text. */
11939 x_text_icon (f
, icon_name
)
11943 if (FRAME_X_WINDOW (f
) == 0)
11948 XTextProperty text
;
11949 text
.value
= (unsigned char *) icon_name
;
11950 text
.encoding
= XA_STRING
;
11952 text
.nitems
= strlen (icon_name
);
11953 #ifdef USE_X_TOOLKIT
11954 XSetWMIconName (FRAME_X_DISPLAY (f
), XtWindow (f
->output_data
.x
->widget
),
11956 #else /* not USE_X_TOOLKIT */
11957 XSetWMIconName (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), &text
);
11958 #endif /* not USE_X_TOOLKIT */
11960 #else /* not HAVE_X11R4 */
11961 XSetIconName (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), icon_name
);
11962 #endif /* not HAVE_X11R4 */
11964 if (f
->output_data
.x
->icon_bitmap
> 0)
11965 x_destroy_bitmap (f
, f
->output_data
.x
->icon_bitmap
);
11966 f
->output_data
.x
->icon_bitmap
= 0;
11967 x_wm_set_icon_pixmap (f
, 0);
11972 #define X_ERROR_MESSAGE_SIZE 200
11974 /* If non-nil, this should be a string.
11975 It means catch X errors and store the error message in this string. */
11977 static Lisp_Object x_error_message_string
;
11979 /* An X error handler which stores the error message in
11980 x_error_message_string. This is called from x_error_handler if
11981 x_catch_errors is in effect. */
11984 x_error_catcher (display
, error
)
11986 XErrorEvent
*error
;
11988 XGetErrorText (display
, error
->error_code
,
11989 XSTRING (x_error_message_string
)->data
,
11990 X_ERROR_MESSAGE_SIZE
);
11993 /* Begin trapping X errors for display DPY. Actually we trap X errors
11994 for all displays, but DPY should be the display you are actually
11997 After calling this function, X protocol errors no longer cause
11998 Emacs to exit; instead, they are recorded in the string
11999 stored in x_error_message_string.
12001 Calling x_check_errors signals an Emacs error if an X error has
12002 occurred since the last call to x_catch_errors or x_check_errors.
12004 Calling x_uncatch_errors resumes the normal error handling. */
12006 void x_check_errors ();
12007 static Lisp_Object
x_catch_errors_unwind ();
12010 x_catch_errors (dpy
)
12013 int count
= specpdl_ptr
- specpdl
;
12015 /* Make sure any errors from previous requests have been dealt with. */
12016 XSync (dpy
, False
);
12018 record_unwind_protect (x_catch_errors_unwind
, x_error_message_string
);
12020 x_error_message_string
= make_uninit_string (X_ERROR_MESSAGE_SIZE
);
12021 XSTRING (x_error_message_string
)->data
[0] = 0;
12026 /* Unbind the binding that we made to check for X errors. */
12029 x_catch_errors_unwind (old_val
)
12030 Lisp_Object old_val
;
12032 x_error_message_string
= old_val
;
12036 /* If any X protocol errors have arrived since the last call to
12037 x_catch_errors or x_check_errors, signal an Emacs error using
12038 sprintf (a buffer, FORMAT, the x error message text) as the text. */
12041 x_check_errors (dpy
, format
)
12045 /* Make sure to catch any errors incurred so far. */
12046 XSync (dpy
, False
);
12048 if (XSTRING (x_error_message_string
)->data
[0])
12049 error (format
, XSTRING (x_error_message_string
)->data
);
12052 /* Nonzero if we had any X protocol errors
12053 since we did x_catch_errors on DPY. */
12056 x_had_errors_p (dpy
)
12059 /* Make sure to catch any errors incurred so far. */
12060 XSync (dpy
, False
);
12062 return XSTRING (x_error_message_string
)->data
[0] != 0;
12065 /* Forget about any errors we have had, since we did x_catch_errors on DPY. */
12068 x_clear_errors (dpy
)
12071 XSTRING (x_error_message_string
)->data
[0] = 0;
12074 /* Stop catching X protocol errors and let them make Emacs die.
12075 DPY should be the display that was passed to x_catch_errors.
12076 COUNT should be the value that was returned by
12077 the corresponding call to x_catch_errors. */
12080 x_uncatch_errors (dpy
, count
)
12084 unbind_to (count
, Qnil
);
12088 static unsigned int x_wire_count
;
12091 fprintf (stderr
, "Lib call: %d\n", ++x_wire_count
);
12096 /* Handle SIGPIPE, which can happen when the connection to a server
12097 simply goes away. SIGPIPE is handled by x_connection_signal.
12098 Don't need to do anything, because the write which caused the
12099 SIGPIPE will fail, causing Xlib to invoke the X IO error handler,
12100 which will do the appropriate cleanup for us. */
12103 x_connection_signal (signalnum
) /* If we don't have an argument, */
12104 int signalnum
; /* some compilers complain in signal calls. */
12107 /* USG systems forget handlers when they are used;
12108 must reestablish each time */
12109 signal (signalnum
, x_connection_signal
);
12114 /************************************************************************
12116 ************************************************************************/
12118 /* Error message passed to x_connection_closed. */
12120 static char *error_msg
;
12122 /* Function installed as fatal_error_signal_hook in
12123 x_connection_closed. Print the X error message, and exit normally,
12124 instead of dumping core when XtCloseDisplay fails. */
12127 x_fatal_error_signal ()
12129 fprintf (stderr
, "%s\n", error_msg
);
12133 /* Handle the loss of connection to display DPY. ERROR_MESSAGE is
12134 the text of an error message that lead to the connection loss. */
12137 x_connection_closed (dpy
, error_message
)
12139 char *error_message
;
12141 struct x_display_info
*dpyinfo
= x_display_info_for_display (dpy
);
12142 Lisp_Object frame
, tail
;
12145 error_msg
= (char *) alloca (strlen (error_message
) + 1);
12146 strcpy (error_msg
, error_message
);
12147 handling_signal
= 0;
12149 /* Prevent being called recursively because of an error condition
12150 below. Otherwise, we might end up with printing ``can't find per
12151 display information'' in the recursive call instead of printing
12152 the original message here. */
12153 count
= x_catch_errors (dpy
);
12155 /* We have to close the display to inform Xt that it doesn't
12156 exist anymore. If we don't, Xt will continue to wait for
12157 events from the display. As a consequence, a sequence of
12159 M-x make-frame-on-display RET :1 RET
12160 ...kill the new frame, so that we get an IO error...
12161 M-x make-frame-on-display RET :1 RET
12163 will indefinitely wait in Xt for events for display `:1', opened
12164 in the first class to make-frame-on-display.
12166 Closing the display is reported to lead to a bus error on
12167 OpenWindows in certain situations. I suspect that is a bug
12168 in OpenWindows. I don't know how to cicumvent it here. */
12170 #ifdef USE_X_TOOLKIT
12171 /* If DPYINFO is null, this means we didn't open the display
12172 in the first place, so don't try to close it. */
12175 extern void (*fatal_error_signal_hook
) P_ ((void));
12176 fatal_error_signal_hook
= x_fatal_error_signal
;
12177 XtCloseDisplay (dpy
);
12178 fatal_error_signal_hook
= NULL
;
12182 /* Indicate that this display is dead. */
12184 dpyinfo
->display
= 0;
12186 /* First delete frames whose mini-buffers are on frames
12187 that are on the dead display. */
12188 FOR_EACH_FRAME (tail
, frame
)
12190 Lisp_Object minibuf_frame
;
12192 = WINDOW_FRAME (XWINDOW (FRAME_MINIBUF_WINDOW (XFRAME (frame
))));
12193 if (FRAME_X_P (XFRAME (frame
))
12194 && FRAME_X_P (XFRAME (minibuf_frame
))
12195 && ! EQ (frame
, minibuf_frame
)
12196 && FRAME_X_DISPLAY_INFO (XFRAME (minibuf_frame
)) == dpyinfo
)
12197 Fdelete_frame (frame
, Qt
);
12200 /* Now delete all remaining frames on the dead display.
12201 We are now sure none of these is used as the mini-buffer
12202 for another frame that we need to delete. */
12203 FOR_EACH_FRAME (tail
, frame
)
12204 if (FRAME_X_P (XFRAME (frame
))
12205 && FRAME_X_DISPLAY_INFO (XFRAME (frame
)) == dpyinfo
)
12207 /* Set this to t so that Fdelete_frame won't get confused
12208 trying to find a replacement. */
12209 FRAME_KBOARD (XFRAME (frame
))->Vdefault_minibuffer_frame
= Qt
;
12210 Fdelete_frame (frame
, Qt
);
12214 x_delete_display (dpyinfo
);
12216 x_uncatch_errors (dpy
, count
);
12218 if (x_display_list
== 0)
12220 fprintf (stderr
, "%s\n", error_msg
);
12221 shut_down_emacs (0, 0, Qnil
);
12225 /* Ordinary stack unwind doesn't deal with these. */
12227 sigunblock (sigmask (SIGIO
));
12229 sigunblock (sigmask (SIGALRM
));
12230 TOTALLY_UNBLOCK_INPUT
;
12232 clear_waiting_for_input ();
12233 error ("%s", error_msg
);
12237 /* This is the usual handler for X protocol errors.
12238 It kills all frames on the display that we got the error for.
12239 If that was the only one, it prints an error message and kills Emacs. */
12242 x_error_quitter (display
, error
)
12244 XErrorEvent
*error
;
12246 char buf
[256], buf1
[356];
12248 /* Note that there is no real way portable across R3/R4 to get the
12249 original error handler. */
12251 XGetErrorText (display
, error
->error_code
, buf
, sizeof (buf
));
12252 sprintf (buf1
, "X protocol error: %s on protocol request %d",
12253 buf
, error
->request_code
);
12254 x_connection_closed (display
, buf1
);
12258 /* This is the first-level handler for X protocol errors.
12259 It calls x_error_quitter or x_error_catcher. */
12262 x_error_handler (display
, error
)
12264 XErrorEvent
*error
;
12266 if (! NILP (x_error_message_string
))
12267 x_error_catcher (display
, error
);
12269 x_error_quitter (display
, error
);
12273 /* This is the handler for X IO errors, always.
12274 It kills all frames on the display that we lost touch with.
12275 If that was the only one, it prints an error message and kills Emacs. */
12278 x_io_error_quitter (display
)
12283 sprintf (buf
, "Connection lost to X server `%s'", DisplayString (display
));
12284 x_connection_closed (display
, buf
);
12288 /* Changing the font of the frame. */
12290 /* Give frame F the font named FONTNAME as its default font, and
12291 return the full name of that font. FONTNAME may be a wildcard
12292 pattern; in that case, we choose some font that fits the pattern.
12293 The return value shows which font we chose. */
12296 x_new_font (f
, fontname
)
12298 register char *fontname
;
12300 struct font_info
*fontp
12301 = FS_LOAD_FONT (f
, 0, fontname
, -1);
12306 f
->output_data
.x
->font
= (XFontStruct
*) (fontp
->font
);
12307 f
->output_data
.x
->baseline_offset
= fontp
->baseline_offset
;
12308 f
->output_data
.x
->fontset
= -1;
12310 x_compute_fringe_widths (f
, 1);
12312 /* Compute the scroll bar width in character columns. */
12313 if (f
->scroll_bar_pixel_width
> 0)
12315 int wid
= FONT_WIDTH (f
->output_data
.x
->font
);
12316 f
->scroll_bar_cols
= (f
->scroll_bar_pixel_width
+ wid
-1) / wid
;
12320 int wid
= FONT_WIDTH (f
->output_data
.x
->font
);
12321 f
->scroll_bar_cols
= (14 + wid
- 1) / wid
;
12324 /* Now make the frame display the given font. */
12325 if (FRAME_X_WINDOW (f
) != 0)
12327 XSetFont (FRAME_X_DISPLAY (f
), f
->output_data
.x
->normal_gc
,
12328 f
->output_data
.x
->font
->fid
);
12329 XSetFont (FRAME_X_DISPLAY (f
), f
->output_data
.x
->reverse_gc
,
12330 f
->output_data
.x
->font
->fid
);
12331 XSetFont (FRAME_X_DISPLAY (f
), f
->output_data
.x
->cursor_gc
,
12332 f
->output_data
.x
->font
->fid
);
12334 frame_update_line_height (f
);
12336 /* Don't change the size of a tip frame; there's no point in
12337 doing it because it's done in Fx_show_tip, and it leads to
12338 problems because the tip frame has no widget. */
12339 if (NILP (tip_frame
) || XFRAME (tip_frame
) != f
)
12340 x_set_window_size (f
, 0, f
->width
, f
->height
);
12343 /* If we are setting a new frame's font for the first time,
12344 there are no faces yet, so this font's height is the line height. */
12345 f
->output_data
.x
->line_height
= FONT_HEIGHT (f
->output_data
.x
->font
);
12347 return build_string (fontp
->full_name
);
12350 /* Give frame F the fontset named FONTSETNAME as its default font, and
12351 return the full name of that fontset. FONTSETNAME may be a wildcard
12352 pattern; in that case, we choose some fontset that fits the pattern.
12353 The return value shows which fontset we chose. */
12356 x_new_fontset (f
, fontsetname
)
12360 int fontset
= fs_query_fontset (build_string (fontsetname
), 0);
12361 Lisp_Object result
;
12366 if (f
->output_data
.x
->fontset
== fontset
)
12367 /* This fontset is already set in frame F. There's nothing more
12369 return fontset_name (fontset
);
12371 result
= x_new_font (f
, (XSTRING (fontset_ascii (fontset
))->data
));
12373 if (!STRINGP (result
))
12374 /* Can't load ASCII font. */
12377 /* Since x_new_font doesn't update any fontset information, do it now. */
12378 f
->output_data
.x
->fontset
= fontset
;
12382 && (FRAME_XIC_STYLE (f
) & (XIMPreeditPosition
| XIMStatusArea
)))
12383 xic_set_xfontset (f
, XSTRING (fontset_ascii (fontset
))->data
);
12386 return build_string (fontsetname
);
12389 /* Compute actual fringe widths */
12392 x_compute_fringe_widths (f
, redraw
)
12396 int o_left
= f
->output_data
.x
->left_fringe_width
;
12397 int o_right
= f
->output_data
.x
->right_fringe_width
;
12398 int o_cols
= f
->output_data
.x
->fringe_cols
;
12400 Lisp_Object left_fringe
= Fassq (Qleft_fringe
, f
->param_alist
);
12401 Lisp_Object right_fringe
= Fassq (Qright_fringe
, f
->param_alist
);
12402 int left_fringe_width
, right_fringe_width
;
12404 if (!NILP (left_fringe
))
12405 left_fringe
= Fcdr (left_fringe
);
12406 if (!NILP (right_fringe
))
12407 right_fringe
= Fcdr (right_fringe
);
12409 left_fringe_width
= ((NILP (left_fringe
) || !INTEGERP (left_fringe
)) ? 8 :
12410 XINT (left_fringe
));
12411 right_fringe_width
= ((NILP (right_fringe
) || !INTEGERP (right_fringe
)) ? 8 :
12412 XINT (right_fringe
));
12414 if (left_fringe_width
|| right_fringe_width
)
12416 int left_wid
= left_fringe_width
>= 0 ? left_fringe_width
: -left_fringe_width
;
12417 int right_wid
= right_fringe_width
>= 0 ? right_fringe_width
: -right_fringe_width
;
12418 int conf_wid
= left_wid
+ right_wid
;
12419 int font_wid
= FONT_WIDTH (f
->output_data
.x
->font
);
12420 int cols
= (left_wid
+ right_wid
+ font_wid
-1) / font_wid
;
12421 int real_wid
= cols
* font_wid
;
12422 if (left_wid
&& right_wid
)
12424 if (left_fringe_width
< 0)
12426 /* Left fringe width is fixed, adjust right fringe if necessary */
12427 f
->output_data
.x
->left_fringe_width
= left_wid
;
12428 f
->output_data
.x
->right_fringe_width
= real_wid
- left_wid
;
12430 else if (right_fringe_width
< 0)
12432 /* Right fringe width is fixed, adjust left fringe if necessary */
12433 f
->output_data
.x
->left_fringe_width
= real_wid
- right_wid
;
12434 f
->output_data
.x
->right_fringe_width
= right_wid
;
12438 /* Adjust both fringes with an equal amount.
12439 Note that we are doing integer arithmetic here, so don't
12440 lose a pixel if the total width is an odd number. */
12441 int fill
= real_wid
- conf_wid
;
12442 f
->output_data
.x
->left_fringe_width
= left_wid
+ fill
/2;
12443 f
->output_data
.x
->right_fringe_width
= right_wid
+ fill
- fill
/2;
12446 else if (left_fringe_width
)
12448 f
->output_data
.x
->left_fringe_width
= real_wid
;
12449 f
->output_data
.x
->right_fringe_width
= 0;
12453 f
->output_data
.x
->left_fringe_width
= 0;
12454 f
->output_data
.x
->right_fringe_width
= real_wid
;
12456 f
->output_data
.x
->fringe_cols
= cols
;
12457 f
->output_data
.x
->fringes_extra
= real_wid
;
12461 f
->output_data
.x
->left_fringe_width
= 0;
12462 f
->output_data
.x
->right_fringe_width
= 0;
12463 f
->output_data
.x
->fringe_cols
= 0;
12464 f
->output_data
.x
->fringes_extra
= 0;
12467 if (redraw
&& FRAME_VISIBLE_P (f
))
12468 if (o_left
!= f
->output_data
.x
->left_fringe_width
||
12469 o_right
!= f
->output_data
.x
->right_fringe_width
||
12470 o_cols
!= f
->output_data
.x
->fringe_cols
)
12474 /***********************************************************************
12476 ***********************************************************************/
12482 /* XIM destroy callback function, which is called whenever the
12483 connection to input method XIM dies. CLIENT_DATA contains a
12484 pointer to the x_display_info structure corresponding to XIM. */
12487 xim_destroy_callback (xim
, client_data
, call_data
)
12489 XPointer client_data
;
12490 XPointer call_data
;
12492 struct x_display_info
*dpyinfo
= (struct x_display_info
*) client_data
;
12493 Lisp_Object frame
, tail
;
12497 /* No need to call XDestroyIC.. */
12498 FOR_EACH_FRAME (tail
, frame
)
12500 struct frame
*f
= XFRAME (frame
);
12501 if (FRAME_X_DISPLAY_INFO (f
) == dpyinfo
)
12503 FRAME_XIC (f
) = NULL
;
12504 if (FRAME_XIC_FONTSET (f
))
12506 XFreeFontSet (FRAME_X_DISPLAY (f
), FRAME_XIC_FONTSET (f
));
12507 FRAME_XIC_FONTSET (f
) = NULL
;
12512 /* No need to call XCloseIM. */
12513 dpyinfo
->xim
= NULL
;
12514 XFree (dpyinfo
->xim_styles
);
12518 #endif /* HAVE_X11R6 */
12520 /* Open the connection to the XIM server on display DPYINFO.
12521 RESOURCE_NAME is the resource name Emacs uses. */
12524 xim_open_dpy (dpyinfo
, resource_name
)
12525 struct x_display_info
*dpyinfo
;
12526 char *resource_name
;
12531 xim
= XOpenIM (dpyinfo
->display
, dpyinfo
->xrdb
, resource_name
, EMACS_CLASS
);
12532 dpyinfo
->xim
= xim
;
12537 XIMCallback destroy
;
12540 /* Get supported styles and XIM values. */
12541 XGetIMValues (xim
, XNQueryInputStyle
, &dpyinfo
->xim_styles
, NULL
);
12544 destroy
.callback
= xim_destroy_callback
;
12545 destroy
.client_data
= (XPointer
)dpyinfo
;
12546 /* This isn't prototyped in OSF 5.0. */
12547 XSetIMValues (xim
, XNDestroyCallback
, &destroy
, NULL
);
12551 #else /* not USE_XIM */
12552 dpyinfo
->xim
= NULL
;
12553 #endif /* not USE_XIM */
12557 #ifdef HAVE_X11R6_XIM
12561 struct x_display_info
*dpyinfo
;
12562 char *resource_name
;
12565 /* XIM instantiate callback function, which is called whenever an XIM
12566 server is available. DISPLAY is teh display of the XIM.
12567 CLIENT_DATA contains a pointer to an xim_inst_t structure created
12568 when the callback was registered. */
12571 xim_instantiate_callback (display
, client_data
, call_data
)
12573 XPointer client_data
;
12574 XPointer call_data
;
12576 struct xim_inst_t
*xim_inst
= (struct xim_inst_t
*) client_data
;
12577 struct x_display_info
*dpyinfo
= xim_inst
->dpyinfo
;
12579 /* We don't support multiple XIM connections. */
12583 xim_open_dpy (dpyinfo
, xim_inst
->resource_name
);
12585 /* Create XIC for the existing frames on the same display, as long
12586 as they have no XIC. */
12587 if (dpyinfo
->xim
&& dpyinfo
->reference_count
> 0)
12589 Lisp_Object tail
, frame
;
12592 FOR_EACH_FRAME (tail
, frame
)
12594 struct frame
*f
= XFRAME (frame
);
12596 if (FRAME_X_DISPLAY_INFO (f
) == xim_inst
->dpyinfo
)
12597 if (FRAME_XIC (f
) == NULL
)
12599 create_frame_xic (f
);
12600 if (FRAME_XIC_STYLE (f
) & XIMStatusArea
)
12601 xic_set_statusarea (f
);
12602 if (FRAME_XIC_STYLE (f
) & XIMPreeditPosition
)
12604 struct window
*w
= XWINDOW (f
->selected_window
);
12605 xic_set_preeditarea (w
, w
->cursor
.x
, w
->cursor
.y
);
12614 #endif /* HAVE_X11R6_XIM */
12617 /* Open a connection to the XIM server on display DPYINFO.
12618 RESOURCE_NAME is the resource name for Emacs. On X11R5, open the
12619 connection only at the first time. On X11R6, open the connection
12620 in the XIM instantiate callback function. */
12623 xim_initialize (dpyinfo
, resource_name
)
12624 struct x_display_info
*dpyinfo
;
12625 char *resource_name
;
12628 #ifdef HAVE_X11R6_XIM
12629 struct xim_inst_t
*xim_inst
;
12632 dpyinfo
->xim
= NULL
;
12633 xim_inst
= (struct xim_inst_t
*) xmalloc (sizeof (struct xim_inst_t
));
12634 xim_inst
->dpyinfo
= dpyinfo
;
12635 len
= strlen (resource_name
);
12636 xim_inst
->resource_name
= (char *) xmalloc (len
+ 1);
12637 bcopy (resource_name
, xim_inst
->resource_name
, len
+ 1);
12638 XRegisterIMInstantiateCallback (dpyinfo
->display
, dpyinfo
->xrdb
,
12639 resource_name
, EMACS_CLASS
,
12640 xim_instantiate_callback
,
12641 /* Fixme: This is XPointer in
12642 XFree86 but (XPointer *) on
12643 Tru64, at least. */
12644 (XPointer
) xim_inst
);
12645 #else /* not HAVE_X11R6_XIM */
12646 dpyinfo
->xim
= NULL
;
12647 xim_open_dpy (dpyinfo
, resource_name
);
12648 #endif /* not HAVE_X11R6_XIM */
12650 #else /* not USE_XIM */
12651 dpyinfo
->xim
= NULL
;
12652 #endif /* not USE_XIM */
12656 /* Close the connection to the XIM server on display DPYINFO. */
12659 xim_close_dpy (dpyinfo
)
12660 struct x_display_info
*dpyinfo
;
12663 #ifdef HAVE_X11R6_XIM
12664 if (dpyinfo
->display
)
12665 XUnregisterIMInstantiateCallback (dpyinfo
->display
, dpyinfo
->xrdb
,
12667 xim_instantiate_callback
, NULL
);
12668 #endif /* not HAVE_X11R6_XIM */
12669 if (dpyinfo
->display
)
12670 XCloseIM (dpyinfo
->xim
);
12671 dpyinfo
->xim
= NULL
;
12672 XFree (dpyinfo
->xim_styles
);
12673 #endif /* USE_XIM */
12676 #endif /* not HAVE_X11R6_XIM */
12680 /* Calculate the absolute position in frame F
12681 from its current recorded position values and gravity. */
12684 x_calc_absolute_position (f
)
12688 int win_x
= 0, win_y
= 0;
12689 int flags
= f
->output_data
.x
->size_hint_flags
;
12692 /* We have nothing to do if the current position
12693 is already for the top-left corner. */
12694 if (! ((flags
& XNegative
) || (flags
& YNegative
)))
12697 #ifdef USE_X_TOOLKIT
12698 this_window
= XtWindow (f
->output_data
.x
->widget
);
12700 this_window
= FRAME_X_WINDOW (f
);
12703 /* Find the position of the outside upper-left corner of
12704 the inner window, with respect to the outer window.
12705 But do this only if we will need the results. */
12706 if (f
->output_data
.x
->parent_desc
!= FRAME_X_DISPLAY_INFO (f
)->root_window
)
12711 count
= x_catch_errors (FRAME_X_DISPLAY (f
));
12714 x_clear_errors (FRAME_X_DISPLAY (f
));
12715 XTranslateCoordinates (FRAME_X_DISPLAY (f
),
12717 /* From-window, to-window. */
12719 f
->output_data
.x
->parent_desc
,
12721 /* From-position, to-position. */
12722 0, 0, &win_x
, &win_y
,
12724 /* Child of win. */
12726 if (x_had_errors_p (FRAME_X_DISPLAY (f
)))
12728 Window newroot
, newparent
= 0xdeadbeef;
12729 Window
*newchildren
;
12730 unsigned int nchildren
;
12732 if (! XQueryTree (FRAME_X_DISPLAY (f
), this_window
, &newroot
,
12733 &newparent
, &newchildren
, &nchildren
))
12736 XFree ((char *) newchildren
);
12738 f
->output_data
.x
->parent_desc
= newparent
;
12744 x_uncatch_errors (FRAME_X_DISPLAY (f
), count
);
12748 /* Treat negative positions as relative to the leftmost bottommost
12749 position that fits on the screen. */
12750 if (flags
& XNegative
)
12751 f
->output_data
.x
->left_pos
= (FRAME_X_DISPLAY_INFO (f
)->width
12752 - 2 * f
->output_data
.x
->border_width
- win_x
12754 + f
->output_data
.x
->left_pos
);
12757 int height
= PIXEL_HEIGHT (f
);
12759 #if defined USE_X_TOOLKIT && defined USE_MOTIF
12760 /* Something is fishy here. When using Motif, starting Emacs with
12761 `-g -0-0', the frame appears too low by a few pixels.
12763 This seems to be so because initially, while Emacs is starting,
12764 the column widget's height and the frame's pixel height are
12765 different. The column widget's height is the right one. In
12766 later invocations, when Emacs is up, the frame's pixel height
12769 It's not obvious where the initial small difference comes from.
12770 2000-12-01, gerd. */
12772 XtVaGetValues (f
->output_data
.x
->column_widget
, XtNheight
, &height
, NULL
);
12775 if (flags
& YNegative
)
12776 f
->output_data
.x
->top_pos
= (FRAME_X_DISPLAY_INFO (f
)->height
12777 - 2 * f
->output_data
.x
->border_width
12780 + f
->output_data
.x
->top_pos
);
12783 /* The left_pos and top_pos
12784 are now relative to the top and left screen edges,
12785 so the flags should correspond. */
12786 f
->output_data
.x
->size_hint_flags
&= ~ (XNegative
| YNegative
);
12789 /* CHANGE_GRAVITY is 1 when calling from Fset_frame_position,
12790 to really change the position, and 0 when calling from
12791 x_make_frame_visible (in that case, XOFF and YOFF are the current
12792 position values). It is -1 when calling from x_set_frame_parameters,
12793 which means, do adjust for borders but don't change the gravity. */
12796 x_set_offset (f
, xoff
, yoff
, change_gravity
)
12798 register int xoff
, yoff
;
12799 int change_gravity
;
12801 int modified_top
, modified_left
;
12803 if (change_gravity
> 0)
12805 f
->output_data
.x
->top_pos
= yoff
;
12806 f
->output_data
.x
->left_pos
= xoff
;
12807 f
->output_data
.x
->size_hint_flags
&= ~ (XNegative
| YNegative
);
12809 f
->output_data
.x
->size_hint_flags
|= XNegative
;
12811 f
->output_data
.x
->size_hint_flags
|= YNegative
;
12812 f
->output_data
.x
->win_gravity
= NorthWestGravity
;
12814 x_calc_absolute_position (f
);
12817 x_wm_set_size_hint (f
, (long) 0, 0);
12819 modified_left
= f
->output_data
.x
->left_pos
;
12820 modified_top
= f
->output_data
.x
->top_pos
;
12821 #if 0 /* Running on psilocin (Debian), and displaying on the NCD X-terminal,
12822 this seems to be unnecessary and incorrect. rms, 4/17/97. */
12823 /* It is a mystery why we need to add the border_width here
12824 when the frame is already visible, but experiment says we do. */
12825 if (change_gravity
!= 0)
12827 modified_left
+= f
->output_data
.x
->border_width
;
12828 modified_top
+= f
->output_data
.x
->border_width
;
12832 #ifdef USE_X_TOOLKIT
12833 XMoveWindow (FRAME_X_DISPLAY (f
), XtWindow (f
->output_data
.x
->widget
),
12834 modified_left
, modified_top
);
12835 #else /* not USE_X_TOOLKIT */
12836 XMoveWindow (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
12837 modified_left
, modified_top
);
12838 #endif /* not USE_X_TOOLKIT */
12842 /* Check if we need to resize the frame due to a fullscreen request.
12843 If so needed, resize the frame. */
12845 x_check_fullscreen (f
)
12848 if (f
->output_data
.x
->want_fullscreen
& FULLSCREEN_BOTH
)
12850 int width
, height
, ign
;
12852 x_real_positions (f
, &f
->output_data
.x
->left_pos
,
12853 &f
->output_data
.x
->top_pos
);
12855 x_fullscreen_adjust (f
, &width
, &height
, &ign
, &ign
);
12857 /* We do not need to move the window, it shall be taken care of
12858 when setting WM manager hints.
12859 If the frame is visible already, the position is checked by
12860 x_check_fullscreen_move. */
12861 if (f
->width
!= width
|| f
->height
!= height
)
12863 change_frame_size (f
, height
, width
, 0, 1, 0);
12864 SET_FRAME_GARBAGED (f
);
12865 cancel_mouse_face (f
);
12867 /* Wait for the change of frame size to occur */
12868 f
->output_data
.x
->want_fullscreen
|= FULLSCREEN_WAIT
;
12874 /* If frame parameters are set after the frame is mapped, we need to move
12875 the window. This is done in xfns.c.
12876 Some window managers moves the window to the right position, some
12877 moves the outer window manager window to the specified position.
12878 Here we check that we are in the right spot. If not, make a second
12879 move, assuming we are dealing with the second kind of window manager. */
12881 x_check_fullscreen_move (f
)
12884 if (f
->output_data
.x
->want_fullscreen
& FULLSCREEN_MOVE_WAIT
)
12886 int expect_top
= f
->output_data
.x
->top_pos
;
12887 int expect_left
= f
->output_data
.x
->left_pos
;
12889 if (f
->output_data
.x
->want_fullscreen
& FULLSCREEN_HEIGHT
)
12891 if (f
->output_data
.x
->want_fullscreen
& FULLSCREEN_WIDTH
)
12894 if (expect_top
!= f
->output_data
.x
->top_pos
12895 || expect_left
!= f
->output_data
.x
->left_pos
)
12896 x_set_offset (f
, expect_left
, expect_top
, 1);
12898 /* Just do this once */
12899 f
->output_data
.x
->want_fullscreen
&= ~FULLSCREEN_MOVE_WAIT
;
12904 /* Calculate fullscreen size. Return in *TOP_POS and *LEFT_POS the
12905 wanted positions of the WM window (not emacs window).
12906 Return in *WIDTH and *HEIGHT the wanted width and height of Emacs
12907 window (FRAME_X_WINDOW).
12910 x_fullscreen_adjust (f
, width
, height
, top_pos
, left_pos
)
12917 int newwidth
= f
->width
, newheight
= f
->height
;
12919 *top_pos
= f
->output_data
.x
->top_pos
;
12920 *left_pos
= f
->output_data
.x
->left_pos
;
12922 if (f
->output_data
.x
->want_fullscreen
& FULLSCREEN_HEIGHT
)
12926 ph
= FRAME_X_DISPLAY_INFO (f
)->height
;
12927 newheight
= PIXEL_TO_CHAR_HEIGHT (f
, ph
);
12928 ph
= CHAR_TO_PIXEL_HEIGHT (f
, newheight
)
12929 - f
->output_data
.x
->y_pixels_diff
;
12930 newheight
= PIXEL_TO_CHAR_HEIGHT (f
, ph
);
12934 if (f
->output_data
.x
->want_fullscreen
& FULLSCREEN_WIDTH
)
12938 pw
= FRAME_X_DISPLAY_INFO (f
)->width
;
12939 newwidth
= PIXEL_TO_CHAR_WIDTH (f
, pw
);
12940 pw
= CHAR_TO_PIXEL_WIDTH (f
, newwidth
)
12941 - f
->output_data
.x
->x_pixels_diff
;
12942 newwidth
= PIXEL_TO_CHAR_WIDTH (f
, pw
);
12947 *height
= newheight
;
12951 /* Change the size of frame F's X window to COLS/ROWS in the case F
12952 doesn't have a widget. If CHANGE_GRAVITY is 1, we change to
12953 top-left-corner window gravity for this size change and subsequent
12954 size changes. Otherwise we leave the window gravity unchanged. */
12957 x_set_window_size_1 (f
, change_gravity
, cols
, rows
)
12959 int change_gravity
;
12962 int pixelwidth
, pixelheight
;
12964 check_frame_size (f
, &rows
, &cols
);
12965 f
->output_data
.x
->vertical_scroll_bar_extra
12966 = (!FRAME_HAS_VERTICAL_SCROLL_BARS (f
)
12968 : FRAME_SCROLL_BAR_PIXEL_WIDTH (f
) > 0
12969 ? FRAME_SCROLL_BAR_PIXEL_WIDTH (f
)
12970 : (FRAME_SCROLL_BAR_COLS (f
) * FONT_WIDTH (f
->output_data
.x
->font
)));
12972 x_compute_fringe_widths (f
, 0);
12974 pixelwidth
= CHAR_TO_PIXEL_WIDTH (f
, cols
);
12975 pixelheight
= CHAR_TO_PIXEL_HEIGHT (f
, rows
);
12977 f
->output_data
.x
->win_gravity
= NorthWestGravity
;
12978 x_wm_set_size_hint (f
, (long) 0, 0);
12980 XSync (FRAME_X_DISPLAY (f
), False
);
12981 XResizeWindow (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
12982 pixelwidth
, pixelheight
);
12984 /* Now, strictly speaking, we can't be sure that this is accurate,
12985 but the window manager will get around to dealing with the size
12986 change request eventually, and we'll hear how it went when the
12987 ConfigureNotify event gets here.
12989 We could just not bother storing any of this information here,
12990 and let the ConfigureNotify event set everything up, but that
12991 might be kind of confusing to the Lisp code, since size changes
12992 wouldn't be reported in the frame parameters until some random
12993 point in the future when the ConfigureNotify event arrives.
12995 We pass 1 for DELAY since we can't run Lisp code inside of
12997 change_frame_size (f
, rows
, cols
, 0, 1, 0);
12998 PIXEL_WIDTH (f
) = pixelwidth
;
12999 PIXEL_HEIGHT (f
) = pixelheight
;
13001 /* We've set {FRAME,PIXEL}_{WIDTH,HEIGHT} to the values we hope to
13002 receive in the ConfigureNotify event; if we get what we asked
13003 for, then the event won't cause the screen to become garbaged, so
13004 we have to make sure to do it here. */
13005 SET_FRAME_GARBAGED (f
);
13007 XFlush (FRAME_X_DISPLAY (f
));
13011 /* Call this to change the size of frame F's x-window.
13012 If CHANGE_GRAVITY is 1, we change to top-left-corner window gravity
13013 for this size change and subsequent size changes.
13014 Otherwise we leave the window gravity unchanged. */
13017 x_set_window_size (f
, change_gravity
, cols
, rows
)
13019 int change_gravity
;
13024 #ifdef USE_X_TOOLKIT
13026 if (f
->output_data
.x
->widget
!= NULL
)
13028 /* The x and y position of the widget is clobbered by the
13029 call to XtSetValues within EmacsFrameSetCharSize.
13030 This is a real kludge, but I don't understand Xt so I can't
13031 figure out a correct fix. Can anyone else tell me? -- rms. */
13032 int xpos
= f
->output_data
.x
->widget
->core
.x
;
13033 int ypos
= f
->output_data
.x
->widget
->core
.y
;
13034 EmacsFrameSetCharSize (f
->output_data
.x
->edit_widget
, cols
, rows
);
13035 f
->output_data
.x
->widget
->core
.x
= xpos
;
13036 f
->output_data
.x
->widget
->core
.y
= ypos
;
13039 x_set_window_size_1 (f
, change_gravity
, cols
, rows
);
13041 #else /* not USE_X_TOOLKIT */
13043 x_set_window_size_1 (f
, change_gravity
, cols
, rows
);
13045 #endif /* not USE_X_TOOLKIT */
13047 /* If cursor was outside the new size, mark it as off. */
13048 mark_window_cursors_off (XWINDOW (f
->root_window
));
13050 /* Clear out any recollection of where the mouse highlighting was,
13051 since it might be in a place that's outside the new frame size.
13052 Actually checking whether it is outside is a pain in the neck,
13053 so don't try--just let the highlighting be done afresh with new size. */
13054 cancel_mouse_face (f
);
13059 /* Mouse warping. */
13062 x_set_mouse_position (f
, x
, y
)
13068 pix_x
= CHAR_TO_PIXEL_COL (f
, x
) + FONT_WIDTH (f
->output_data
.x
->font
) / 2;
13069 pix_y
= CHAR_TO_PIXEL_ROW (f
, y
) + f
->output_data
.x
->line_height
/ 2;
13071 if (pix_x
< 0) pix_x
= 0;
13072 if (pix_x
> PIXEL_WIDTH (f
)) pix_x
= PIXEL_WIDTH (f
);
13074 if (pix_y
< 0) pix_y
= 0;
13075 if (pix_y
> PIXEL_HEIGHT (f
)) pix_y
= PIXEL_HEIGHT (f
);
13079 XWarpPointer (FRAME_X_DISPLAY (f
), None
, FRAME_X_WINDOW (f
),
13080 0, 0, 0, 0, pix_x
, pix_y
);
13084 /* Move the mouse to position pixel PIX_X, PIX_Y relative to frame F. */
13087 x_set_mouse_pixel_position (f
, pix_x
, pix_y
)
13093 XWarpPointer (FRAME_X_DISPLAY (f
), None
, FRAME_X_WINDOW (f
),
13094 0, 0, 0, 0, pix_x
, pix_y
);
13098 /* focus shifting, raising and lowering. */
13101 x_focus_on_frame (f
)
13104 #if 0 /* This proves to be unpleasant. */
13108 /* I don't think that the ICCCM allows programs to do things like this
13109 without the interaction of the window manager. Whatever you end up
13110 doing with this code, do it to x_unfocus_frame too. */
13111 XSetInputFocus (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
13112 RevertToPointerRoot
, CurrentTime
);
13117 x_unfocus_frame (f
)
13121 /* Look at the remarks in x_focus_on_frame. */
13122 if (FRAME_X_DISPLAY_INFO (f
)->x_focus_frame
== f
)
13123 XSetInputFocus (FRAME_X_DISPLAY (f
), PointerRoot
,
13124 RevertToPointerRoot
, CurrentTime
);
13128 /* Raise frame F. */
13134 if (f
->async_visible
)
13137 #ifdef USE_X_TOOLKIT
13138 XRaiseWindow (FRAME_X_DISPLAY (f
), XtWindow (f
->output_data
.x
->widget
));
13139 #else /* not USE_X_TOOLKIT */
13140 XRaiseWindow (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
));
13141 #endif /* not USE_X_TOOLKIT */
13142 XFlush (FRAME_X_DISPLAY (f
));
13147 /* Lower frame F. */
13153 if (f
->async_visible
)
13156 #ifdef USE_X_TOOLKIT
13157 XLowerWindow (FRAME_X_DISPLAY (f
), XtWindow (f
->output_data
.x
->widget
));
13158 #else /* not USE_X_TOOLKIT */
13159 XLowerWindow (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
));
13160 #endif /* not USE_X_TOOLKIT */
13161 XFlush (FRAME_X_DISPLAY (f
));
13167 XTframe_raise_lower (f
, raise_flag
)
13177 /* Change of visibility. */
13179 /* This tries to wait until the frame is really visible.
13180 However, if the window manager asks the user where to position
13181 the frame, this will return before the user finishes doing that.
13182 The frame will not actually be visible at that time,
13183 but it will become visible later when the window manager
13184 finishes with it. */
13187 x_make_frame_visible (f
)
13191 int original_top
, original_left
;
13192 int retry_count
= 2;
13198 type
= x_icon_type (f
);
13200 x_bitmap_icon (f
, type
);
13202 if (! FRAME_VISIBLE_P (f
))
13204 /* We test FRAME_GARBAGED_P here to make sure we don't
13205 call x_set_offset a second time
13206 if we get to x_make_frame_visible a second time
13207 before the window gets really visible. */
13208 if (! FRAME_ICONIFIED_P (f
)
13209 && ! f
->output_data
.x
->asked_for_visible
)
13210 x_set_offset (f
, f
->output_data
.x
->left_pos
, f
->output_data
.x
->top_pos
, 0);
13212 f
->output_data
.x
->asked_for_visible
= 1;
13214 if (! EQ (Vx_no_window_manager
, Qt
))
13215 x_wm_set_window_state (f
, NormalState
);
13216 #ifdef USE_X_TOOLKIT
13217 /* This was XtPopup, but that did nothing for an iconified frame. */
13218 XtMapWidget (f
->output_data
.x
->widget
);
13219 #else /* not USE_X_TOOLKIT */
13220 XMapRaised (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
));
13221 #endif /* not USE_X_TOOLKIT */
13222 #if 0 /* This seems to bring back scroll bars in the wrong places
13223 if the window configuration has changed. They seem
13224 to come back ok without this. */
13225 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f
))
13226 XMapSubwindows (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
));
13230 XFlush (FRAME_X_DISPLAY (f
));
13232 /* Synchronize to ensure Emacs knows the frame is visible
13233 before we do anything else. We do this loop with input not blocked
13234 so that incoming events are handled. */
13238 /* This must be before UNBLOCK_INPUT
13239 since events that arrive in response to the actions above
13240 will set it when they are handled. */
13241 int previously_visible
= f
->output_data
.x
->has_been_visible
;
13243 original_left
= f
->output_data
.x
->left_pos
;
13244 original_top
= f
->output_data
.x
->top_pos
;
13246 /* This must come after we set COUNT. */
13249 /* We unblock here so that arriving X events are processed. */
13251 /* Now move the window back to where it was "supposed to be".
13252 But don't do it if the gravity is negative.
13253 When the gravity is negative, this uses a position
13254 that is 3 pixels too low. Perhaps that's really the border width.
13256 Don't do this if the window has never been visible before,
13257 because the window manager may choose the position
13258 and we don't want to override it. */
13260 if (! FRAME_VISIBLE_P (f
) && ! FRAME_ICONIFIED_P (f
)
13261 && f
->output_data
.x
->win_gravity
== NorthWestGravity
13262 && previously_visible
)
13266 unsigned int width
, height
, border
, depth
;
13270 /* On some window managers (such as FVWM) moving an existing
13271 window, even to the same place, causes the window manager
13272 to introduce an offset. This can cause the window to move
13273 to an unexpected location. Check the geometry (a little
13274 slow here) and then verify that the window is in the right
13275 place. If the window is not in the right place, move it
13276 there, and take the potential window manager hit. */
13277 XGetGeometry (FRAME_X_DISPLAY (f
), FRAME_OUTER_WINDOW (f
),
13278 &rootw
, &x
, &y
, &width
, &height
, &border
, &depth
);
13280 if (original_left
!= x
|| original_top
!= y
)
13281 XMoveWindow (FRAME_X_DISPLAY (f
), FRAME_OUTER_WINDOW (f
),
13282 original_left
, original_top
);
13287 XSETFRAME (frame
, f
);
13289 /* Wait until the frame is visible. Process X events until a
13290 MapNotify event has been seen, or until we think we won't get a
13291 MapNotify at all.. */
13292 for (count
= input_signal_count
+ 10;
13293 input_signal_count
< count
&& !FRAME_VISIBLE_P (f
);)
13295 /* Force processing of queued events. */
13298 /* Machines that do polling rather than SIGIO have been
13299 observed to go into a busy-wait here. So we'll fake an
13300 alarm signal to let the handler know that there's something
13301 to be read. We used to raise a real alarm, but it seems
13302 that the handler isn't always enabled here. This is
13304 if (input_polling_used ())
13306 /* It could be confusing if a real alarm arrives while
13307 processing the fake one. Turn it off and let the
13308 handler reset it. */
13309 extern void poll_for_input_1
P_ ((void));
13310 int old_poll_suppress_count
= poll_suppress_count
;
13311 poll_suppress_count
= 1;
13312 poll_for_input_1 ();
13313 poll_suppress_count
= old_poll_suppress_count
;
13316 /* See if a MapNotify event has been processed. */
13317 FRAME_SAMPLE_VISIBILITY (f
);
13322 (let ((f (selected-frame)))
13326 the frame is not raised with various window managers on
13327 FreeBSD, Linux and Solaris. It turns out that, for some
13328 unknown reason, the call to XtMapWidget is completely ignored.
13329 Mapping the widget a second time works. */
13331 if (!FRAME_VISIBLE_P (f
) && --retry_count
> 0)
13336 /* Change from mapped state to withdrawn state. */
13338 /* Make the frame visible (mapped and not iconified). */
13341 x_make_frame_invisible (f
)
13346 #ifdef USE_X_TOOLKIT
13347 /* Use the frame's outermost window, not the one we normally draw on. */
13348 window
= XtWindow (f
->output_data
.x
->widget
);
13349 #else /* not USE_X_TOOLKIT */
13350 window
= FRAME_X_WINDOW (f
);
13351 #endif /* not USE_X_TOOLKIT */
13353 /* Don't keep the highlight on an invisible frame. */
13354 if (FRAME_X_DISPLAY_INFO (f
)->x_highlight_frame
== f
)
13355 FRAME_X_DISPLAY_INFO (f
)->x_highlight_frame
= 0;
13357 #if 0/* This might add unreliability; I don't trust it -- rms. */
13358 if (! f
->async_visible
&& ! f
->async_iconified
)
13364 /* Before unmapping the window, update the WM_SIZE_HINTS property to claim
13365 that the current position of the window is user-specified, rather than
13366 program-specified, so that when the window is mapped again, it will be
13367 placed at the same location, without forcing the user to position it
13368 by hand again (they have already done that once for this window.) */
13369 x_wm_set_size_hint (f
, (long) 0, 1);
13373 if (! XWithdrawWindow (FRAME_X_DISPLAY (f
), window
,
13374 DefaultScreen (FRAME_X_DISPLAY (f
))))
13376 UNBLOCK_INPUT_RESIGNAL
;
13377 error ("Can't notify window manager of window withdrawal");
13379 #else /* ! defined (HAVE_X11R4) */
13381 /* Tell the window manager what we're going to do. */
13382 if (! EQ (Vx_no_window_manager
, Qt
))
13386 unmap
.xunmap
.type
= UnmapNotify
;
13387 unmap
.xunmap
.window
= window
;
13388 unmap
.xunmap
.event
= DefaultRootWindow (FRAME_X_DISPLAY (f
));
13389 unmap
.xunmap
.from_configure
= False
;
13390 if (! XSendEvent (FRAME_X_DISPLAY (f
),
13391 DefaultRootWindow (FRAME_X_DISPLAY (f
)),
13393 SubstructureRedirectMaskSubstructureNotifyMask
,
13396 UNBLOCK_INPUT_RESIGNAL
;
13397 error ("Can't notify window manager of withdrawal");
13401 /* Unmap the window ourselves. Cheeky! */
13402 XUnmapWindow (FRAME_X_DISPLAY (f
), window
);
13403 #endif /* ! defined (HAVE_X11R4) */
13405 /* We can't distinguish this from iconification
13406 just by the event that we get from the server.
13407 So we can't win using the usual strategy of letting
13408 FRAME_SAMPLE_VISIBILITY set this. So do it by hand,
13409 and synchronize with the server to make sure we agree. */
13411 FRAME_ICONIFIED_P (f
) = 0;
13412 f
->async_visible
= 0;
13413 f
->async_iconified
= 0;
13420 /* Change window state from mapped to iconified. */
13423 x_iconify_frame (f
)
13429 /* Don't keep the highlight on an invisible frame. */
13430 if (FRAME_X_DISPLAY_INFO (f
)->x_highlight_frame
== f
)
13431 FRAME_X_DISPLAY_INFO (f
)->x_highlight_frame
= 0;
13433 if (f
->async_iconified
)
13438 FRAME_SAMPLE_VISIBILITY (f
);
13440 type
= x_icon_type (f
);
13442 x_bitmap_icon (f
, type
);
13444 #ifdef USE_X_TOOLKIT
13446 if (! FRAME_VISIBLE_P (f
))
13448 if (! EQ (Vx_no_window_manager
, Qt
))
13449 x_wm_set_window_state (f
, IconicState
);
13450 /* This was XtPopup, but that did nothing for an iconified frame. */
13451 XtMapWidget (f
->output_data
.x
->widget
);
13452 /* The server won't give us any event to indicate
13453 that an invisible frame was changed to an icon,
13454 so we have to record it here. */
13457 f
->async_iconified
= 1;
13458 f
->async_visible
= 0;
13463 result
= XIconifyWindow (FRAME_X_DISPLAY (f
),
13464 XtWindow (f
->output_data
.x
->widget
),
13465 DefaultScreen (FRAME_X_DISPLAY (f
)));
13469 error ("Can't notify window manager of iconification");
13471 f
->async_iconified
= 1;
13472 f
->async_visible
= 0;
13476 XFlush (FRAME_X_DISPLAY (f
));
13478 #else /* not USE_X_TOOLKIT */
13480 /* Make sure the X server knows where the window should be positioned,
13481 in case the user deiconifies with the window manager. */
13482 if (! FRAME_VISIBLE_P (f
) && !FRAME_ICONIFIED_P (f
))
13483 x_set_offset (f
, f
->output_data
.x
->left_pos
, f
->output_data
.x
->top_pos
, 0);
13485 /* Since we don't know which revision of X we're running, we'll use both
13486 the X11R3 and X11R4 techniques. I don't know if this is a good idea. */
13488 /* X11R4: send a ClientMessage to the window manager using the
13489 WM_CHANGE_STATE type. */
13493 message
.xclient
.window
= FRAME_X_WINDOW (f
);
13494 message
.xclient
.type
= ClientMessage
;
13495 message
.xclient
.message_type
= FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_change_state
;
13496 message
.xclient
.format
= 32;
13497 message
.xclient
.data
.l
[0] = IconicState
;
13499 if (! XSendEvent (FRAME_X_DISPLAY (f
),
13500 DefaultRootWindow (FRAME_X_DISPLAY (f
)),
13502 SubstructureRedirectMask
| SubstructureNotifyMask
,
13505 UNBLOCK_INPUT_RESIGNAL
;
13506 error ("Can't notify window manager of iconification");
13510 /* X11R3: set the initial_state field of the window manager hints to
13512 x_wm_set_window_state (f
, IconicState
);
13514 if (!FRAME_VISIBLE_P (f
))
13516 /* If the frame was withdrawn, before, we must map it. */
13517 XMapRaised (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
));
13520 f
->async_iconified
= 1;
13521 f
->async_visible
= 0;
13523 XFlush (FRAME_X_DISPLAY (f
));
13525 #endif /* not USE_X_TOOLKIT */
13529 /* Free X resources of frame F. */
13532 x_free_frame_resources (f
)
13535 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
13537 struct scroll_bar
*b
;
13541 /* If a display connection is dead, don't try sending more
13542 commands to the X server. */
13543 if (dpyinfo
->display
)
13545 if (f
->output_data
.x
->icon_desc
)
13546 XDestroyWindow (FRAME_X_DISPLAY (f
), f
->output_data
.x
->icon_desc
);
13548 #ifdef USE_X_TOOLKIT
13549 /* Explicitly destroy the scroll bars of the frame. Without
13550 this, we get "BadDrawable" errors from the toolkit later on,
13551 presumably from expose events generated for the disappearing
13552 toolkit scroll bars. */
13553 for (bar
= FRAME_SCROLL_BARS (f
); !NILP (bar
); bar
= b
->next
)
13555 b
= XSCROLL_BAR (bar
);
13556 x_scroll_bar_remove (b
);
13562 free_frame_xic (f
);
13565 #ifdef USE_X_TOOLKIT
13566 if (f
->output_data
.x
->widget
)
13568 XtDestroyWidget (f
->output_data
.x
->widget
);
13569 f
->output_data
.x
->widget
= NULL
;
13571 /* Tooltips don't have widgets, only a simple X window, even if
13572 we are using a toolkit. */
13573 else if (FRAME_X_WINDOW (f
))
13574 XDestroyWindow (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
));
13576 free_frame_menubar (f
);
13577 #else /* !USE_X_TOOLKIT */
13578 if (FRAME_X_WINDOW (f
))
13579 XDestroyWindow (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
));
13580 #endif /* !USE_X_TOOLKIT */
13582 unload_color (f
, f
->output_data
.x
->foreground_pixel
);
13583 unload_color (f
, f
->output_data
.x
->background_pixel
);
13584 unload_color (f
, f
->output_data
.x
->cursor_pixel
);
13585 unload_color (f
, f
->output_data
.x
->cursor_foreground_pixel
);
13586 unload_color (f
, f
->output_data
.x
->border_pixel
);
13587 unload_color (f
, f
->output_data
.x
->mouse_pixel
);
13589 if (f
->output_data
.x
->scroll_bar_background_pixel
!= -1)
13590 unload_color (f
, f
->output_data
.x
->scroll_bar_background_pixel
);
13591 if (f
->output_data
.x
->scroll_bar_foreground_pixel
!= -1)
13592 unload_color (f
, f
->output_data
.x
->scroll_bar_foreground_pixel
);
13593 #ifdef USE_TOOLKIT_SCROLL_BARS
13594 /* Scrollbar shadow colors. */
13595 if (f
->output_data
.x
->scroll_bar_top_shadow_pixel
!= -1)
13596 unload_color (f
, f
->output_data
.x
->scroll_bar_top_shadow_pixel
);
13597 if (f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
!= -1)
13598 unload_color (f
, f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
);
13599 #endif /* USE_TOOLKIT_SCROLL_BARS */
13600 if (f
->output_data
.x
->white_relief
.allocated_p
)
13601 unload_color (f
, f
->output_data
.x
->white_relief
.pixel
);
13602 if (f
->output_data
.x
->black_relief
.allocated_p
)
13603 unload_color (f
, f
->output_data
.x
->black_relief
.pixel
);
13605 if (FRAME_FACE_CACHE (f
))
13606 free_frame_faces (f
);
13609 XFlush (FRAME_X_DISPLAY (f
));
13612 if (f
->output_data
.x
->saved_menu_event
)
13613 xfree (f
->output_data
.x
->saved_menu_event
);
13615 xfree (f
->output_data
.x
);
13616 f
->output_data
.x
= NULL
;
13618 if (f
== dpyinfo
->x_focus_frame
)
13619 dpyinfo
->x_focus_frame
= 0;
13620 if (f
== dpyinfo
->x_focus_event_frame
)
13621 dpyinfo
->x_focus_event_frame
= 0;
13622 if (f
== dpyinfo
->x_highlight_frame
)
13623 dpyinfo
->x_highlight_frame
= 0;
13625 if (f
== dpyinfo
->mouse_face_mouse_frame
)
13627 dpyinfo
->mouse_face_beg_row
13628 = dpyinfo
->mouse_face_beg_col
= -1;
13629 dpyinfo
->mouse_face_end_row
13630 = dpyinfo
->mouse_face_end_col
= -1;
13631 dpyinfo
->mouse_face_window
= Qnil
;
13632 dpyinfo
->mouse_face_deferred_gc
= 0;
13633 dpyinfo
->mouse_face_mouse_frame
= 0;
13640 /* Destroy the X window of frame F. */
13643 x_destroy_window (f
)
13646 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
13648 /* If a display connection is dead, don't try sending more
13649 commands to the X server. */
13650 if (dpyinfo
->display
!= 0)
13651 x_free_frame_resources (f
);
13653 dpyinfo
->reference_count
--;
13657 /* Setting window manager hints. */
13659 /* Set the normal size hints for the window manager, for frame F.
13660 FLAGS is the flags word to use--or 0 meaning preserve the flags
13661 that the window now has.
13662 If USER_POSITION is nonzero, we set the USPosition
13663 flag (this is useful when FLAGS is 0). */
13666 x_wm_set_size_hint (f
, flags
, user_position
)
13671 XSizeHints size_hints
;
13673 #ifdef USE_X_TOOLKIT
13676 Dimension widget_width
, widget_height
;
13677 Window window
= XtWindow (f
->output_data
.x
->widget
);
13678 #else /* not USE_X_TOOLKIT */
13679 Window window
= FRAME_X_WINDOW (f
);
13680 #endif /* not USE_X_TOOLKIT */
13682 /* Setting PMaxSize caused various problems. */
13683 size_hints
.flags
= PResizeInc
| PMinSize
/* | PMaxSize */;
13685 size_hints
.x
= f
->output_data
.x
->left_pos
;
13686 size_hints
.y
= f
->output_data
.x
->top_pos
;
13688 #ifdef USE_X_TOOLKIT
13689 XtSetArg (al
[ac
], XtNwidth
, &widget_width
); ac
++;
13690 XtSetArg (al
[ac
], XtNheight
, &widget_height
); ac
++;
13691 XtGetValues (f
->output_data
.x
->widget
, al
, ac
);
13692 size_hints
.height
= widget_height
;
13693 size_hints
.width
= widget_width
;
13694 #else /* not USE_X_TOOLKIT */
13695 size_hints
.height
= PIXEL_HEIGHT (f
);
13696 size_hints
.width
= PIXEL_WIDTH (f
);
13697 #endif /* not USE_X_TOOLKIT */
13699 size_hints
.width_inc
= FONT_WIDTH (f
->output_data
.x
->font
);
13700 size_hints
.height_inc
= f
->output_data
.x
->line_height
;
13701 size_hints
.max_width
13702 = FRAME_X_DISPLAY_INFO (f
)->width
- CHAR_TO_PIXEL_WIDTH (f
, 0);
13703 size_hints
.max_height
13704 = FRAME_X_DISPLAY_INFO (f
)->height
- CHAR_TO_PIXEL_HEIGHT (f
, 0);
13706 /* Calculate the base and minimum sizes.
13708 (When we use the X toolkit, we don't do it here.
13709 Instead we copy the values that the widgets are using, below.) */
13710 #ifndef USE_X_TOOLKIT
13712 int base_width
, base_height
;
13713 int min_rows
= 0, min_cols
= 0;
13715 base_width
= CHAR_TO_PIXEL_WIDTH (f
, 0);
13716 base_height
= CHAR_TO_PIXEL_HEIGHT (f
, 0);
13718 check_frame_size (f
, &min_rows
, &min_cols
);
13720 /* The window manager uses the base width hints to calculate the
13721 current number of rows and columns in the frame while
13722 resizing; min_width and min_height aren't useful for this
13723 purpose, since they might not give the dimensions for a
13724 zero-row, zero-column frame.
13726 We use the base_width and base_height members if we have
13727 them; otherwise, we set the min_width and min_height members
13728 to the size for a zero x zero frame. */
13731 size_hints
.flags
|= PBaseSize
;
13732 size_hints
.base_width
= base_width
;
13733 size_hints
.base_height
= base_height
;
13734 size_hints
.min_width
= base_width
+ min_cols
* size_hints
.width_inc
;
13735 size_hints
.min_height
= base_height
+ min_rows
* size_hints
.height_inc
;
13737 size_hints
.min_width
= base_width
;
13738 size_hints
.min_height
= base_height
;
13742 /* If we don't need the old flags, we don't need the old hint at all. */
13745 size_hints
.flags
|= flags
;
13748 #endif /* not USE_X_TOOLKIT */
13751 XSizeHints hints
; /* Sometimes I hate X Windows... */
13752 long supplied_return
;
13756 value
= XGetWMNormalHints (FRAME_X_DISPLAY (f
), window
, &hints
,
13759 value
= XGetNormalHints (FRAME_X_DISPLAY (f
), window
, &hints
);
13762 #ifdef USE_X_TOOLKIT
13763 size_hints
.base_height
= hints
.base_height
;
13764 size_hints
.base_width
= hints
.base_width
;
13765 size_hints
.min_height
= hints
.min_height
;
13766 size_hints
.min_width
= hints
.min_width
;
13770 size_hints
.flags
|= flags
;
13775 if (hints
.flags
& PSize
)
13776 size_hints
.flags
|= PSize
;
13777 if (hints
.flags
& PPosition
)
13778 size_hints
.flags
|= PPosition
;
13779 if (hints
.flags
& USPosition
)
13780 size_hints
.flags
|= USPosition
;
13781 if (hints
.flags
& USSize
)
13782 size_hints
.flags
|= USSize
;
13786 #ifndef USE_X_TOOLKIT
13791 size_hints
.win_gravity
= f
->output_data
.x
->win_gravity
;
13792 size_hints
.flags
|= PWinGravity
;
13796 size_hints
.flags
&= ~ PPosition
;
13797 size_hints
.flags
|= USPosition
;
13799 #endif /* PWinGravity */
13802 XSetWMNormalHints (FRAME_X_DISPLAY (f
), window
, &size_hints
);
13804 XSetNormalHints (FRAME_X_DISPLAY (f
), window
, &size_hints
);
13808 /* Used for IconicState or NormalState */
13811 x_wm_set_window_state (f
, state
)
13815 #ifdef USE_X_TOOLKIT
13818 XtSetArg (al
[0], XtNinitialState
, state
);
13819 XtSetValues (f
->output_data
.x
->widget
, al
, 1);
13820 #else /* not USE_X_TOOLKIT */
13821 Window window
= FRAME_X_WINDOW (f
);
13823 f
->output_data
.x
->wm_hints
.flags
|= StateHint
;
13824 f
->output_data
.x
->wm_hints
.initial_state
= state
;
13826 XSetWMHints (FRAME_X_DISPLAY (f
), window
, &f
->output_data
.x
->wm_hints
);
13827 #endif /* not USE_X_TOOLKIT */
13831 x_wm_set_icon_pixmap (f
, pixmap_id
)
13835 Pixmap icon_pixmap
;
13837 #ifndef USE_X_TOOLKIT
13838 Window window
= FRAME_X_WINDOW (f
);
13843 icon_pixmap
= x_bitmap_pixmap (f
, pixmap_id
);
13844 f
->output_data
.x
->wm_hints
.icon_pixmap
= icon_pixmap
;
13848 /* It seems there is no way to turn off use of an icon pixmap.
13849 The following line does it, only if no icon has yet been created,
13850 for some window managers. But with mwm it crashes.
13851 Some people say it should clear the IconPixmapHint bit in this case,
13852 but that doesn't work, and the X consortium said it isn't the
13853 right thing at all. Since there is no way to win,
13854 best to explicitly give up. */
13856 f
->output_data
.x
->wm_hints
.icon_pixmap
= None
;
13862 #ifdef USE_X_TOOLKIT /* same as in x_wm_set_window_state. */
13866 XtSetArg (al
[0], XtNiconPixmap
, icon_pixmap
);
13867 XtSetValues (f
->output_data
.x
->widget
, al
, 1);
13870 #else /* not USE_X_TOOLKIT */
13872 f
->output_data
.x
->wm_hints
.flags
|= IconPixmapHint
;
13873 XSetWMHints (FRAME_X_DISPLAY (f
), window
, &f
->output_data
.x
->wm_hints
);
13875 #endif /* not USE_X_TOOLKIT */
13879 x_wm_set_icon_position (f
, icon_x
, icon_y
)
13881 int icon_x
, icon_y
;
13883 #ifdef USE_X_TOOLKIT
13884 Window window
= XtWindow (f
->output_data
.x
->widget
);
13886 Window window
= FRAME_X_WINDOW (f
);
13889 f
->output_data
.x
->wm_hints
.flags
|= IconPositionHint
;
13890 f
->output_data
.x
->wm_hints
.icon_x
= icon_x
;
13891 f
->output_data
.x
->wm_hints
.icon_y
= icon_y
;
13893 XSetWMHints (FRAME_X_DISPLAY (f
), window
, &f
->output_data
.x
->wm_hints
);
13897 /***********************************************************************
13899 ***********************************************************************/
13901 /* Return a pointer to struct font_info of font FONT_IDX of frame F. */
13904 x_get_font_info (f
, font_idx
)
13908 return (FRAME_X_FONT_TABLE (f
) + font_idx
);
13912 /* Return a list of names of available fonts matching PATTERN on frame F.
13914 If SIZE is > 0, it is the size (maximum bounds width) of fonts
13917 SIZE < 0 means include scalable fonts.
13919 Frame F null means we have not yet created any frame on X, and
13920 consult the first display in x_display_list. MAXNAMES sets a limit
13921 on how many fonts to match. */
13924 x_list_fonts (f
, pattern
, size
, maxnames
)
13926 Lisp_Object pattern
;
13930 Lisp_Object list
= Qnil
, patterns
, newlist
= Qnil
, key
= Qnil
;
13931 Lisp_Object tem
, second_best
;
13932 struct x_display_info
*dpyinfo
13933 = f
? FRAME_X_DISPLAY_INFO (f
) : x_display_list
;
13934 Display
*dpy
= dpyinfo
->display
;
13935 int try_XLoadQueryFont
= 0;
13937 int allow_scalable_fonts_p
= 0;
13941 allow_scalable_fonts_p
= 1;
13945 patterns
= Fassoc (pattern
, Valternate_fontname_alist
);
13946 if (NILP (patterns
))
13947 patterns
= Fcons (pattern
, Qnil
);
13949 if (maxnames
== 1 && !size
)
13950 /* We can return any single font matching PATTERN. */
13951 try_XLoadQueryFont
= 1;
13953 for (; CONSP (patterns
); patterns
= XCDR (patterns
))
13956 char **names
= NULL
;
13958 pattern
= XCAR (patterns
);
13959 /* See if we cached the result for this particular query.
13960 The cache is an alist of the form:
13961 ((((PATTERN . MAXNAMES) . SCALABLE) (FONTNAME . WIDTH) ...) ...) */
13962 tem
= XCDR (dpyinfo
->name_list_element
);
13963 key
= Fcons (Fcons (pattern
, make_number (maxnames
)),
13964 allow_scalable_fonts_p
? Qt
: Qnil
);
13965 list
= Fassoc (key
, tem
);
13968 list
= Fcdr_safe (list
);
13969 /* We have a cashed list. Don't have to get the list again. */
13973 /* At first, put PATTERN in the cache. */
13976 count
= x_catch_errors (dpy
);
13978 if (try_XLoadQueryFont
)
13981 unsigned long value
;
13983 font
= XLoadQueryFont (dpy
, XSTRING (pattern
)->data
);
13984 if (x_had_errors_p (dpy
))
13986 /* This error is perhaps due to insufficient memory on X
13987 server. Let's just ignore it. */
13989 x_clear_errors (dpy
);
13993 && XGetFontProperty (font
, XA_FONT
, &value
))
13995 char *name
= (char *) XGetAtomName (dpy
, (Atom
) value
);
13996 int len
= strlen (name
);
13999 /* If DXPC (a Differential X Protocol Compressor)
14000 Ver.3.7 is running, XGetAtomName will return null
14001 string. We must avoid such a name. */
14003 try_XLoadQueryFont
= 0;
14007 names
= (char **) alloca (sizeof (char *));
14008 /* Some systems only allow alloca assigned to a
14010 tmp
= (char *) alloca (len
+ 1); names
[0] = tmp
;
14011 bcopy (name
, names
[0], len
+ 1);
14016 try_XLoadQueryFont
= 0;
14019 XFreeFont (dpy
, font
);
14022 if (!try_XLoadQueryFont
)
14024 /* We try at least 10 fonts because XListFonts will return
14025 auto-scaled fonts at the head. */
14026 names
= XListFonts (dpy
, XSTRING (pattern
)->data
, max (maxnames
, 10),
14028 if (x_had_errors_p (dpy
))
14030 /* This error is perhaps due to insufficient memory on X
14031 server. Let's just ignore it. */
14033 x_clear_errors (dpy
);
14037 x_uncatch_errors (dpy
, count
);
14044 /* Make a list of all the fonts we got back.
14045 Store that in the font cache for the display. */
14046 for (i
= 0; i
< num_fonts
; i
++)
14049 char *p
= names
[i
];
14050 int average_width
= -1, dashes
= 0;
14052 /* Count the number of dashes in NAMES[I]. If there are
14053 14 dashes, and the field value following 12th dash
14054 (AVERAGE_WIDTH) is 0, this is a auto-scaled font which
14055 is usually too ugly to be used for editing. Let's
14061 if (dashes
== 7) /* PIXEL_SIZE field */
14063 else if (dashes
== 12) /* AVERAGE_WIDTH field */
14064 average_width
= atoi (p
);
14067 if (allow_scalable_fonts_p
14068 || dashes
< 14 || average_width
!= 0)
14070 tem
= build_string (names
[i
]);
14071 if (NILP (Fassoc (tem
, list
)))
14073 if (STRINGP (Vx_pixel_size_width_font_regexp
)
14074 && ((fast_c_string_match_ignore_case
14075 (Vx_pixel_size_width_font_regexp
, names
[i
]))
14077 /* We can set the value of PIXEL_SIZE to the
14078 width of this font. */
14079 list
= Fcons (Fcons (tem
, make_number (width
)), list
);
14081 /* For the moment, width is not known. */
14082 list
= Fcons (Fcons (tem
, Qnil
), list
);
14087 if (!try_XLoadQueryFont
)
14090 XFreeFontNames (names
);
14095 /* Now store the result in the cache. */
14096 XSETCDR (dpyinfo
->name_list_element
,
14097 Fcons (Fcons (key
, list
), XCDR (dpyinfo
->name_list_element
)));
14100 if (NILP (list
)) continue; /* Try the remaining alternatives. */
14102 newlist
= second_best
= Qnil
;
14103 /* Make a list of the fonts that have the right width. */
14104 for (; CONSP (list
); list
= XCDR (list
))
14110 if (!CONSP (tem
) || NILP (XCAR (tem
)))
14114 newlist
= Fcons (XCAR (tem
), newlist
);
14118 if (!INTEGERP (XCDR (tem
)))
14120 /* Since we have not yet known the size of this font, we
14121 must try slow function call XLoadQueryFont. */
14122 XFontStruct
*thisinfo
;
14125 count
= x_catch_errors (dpy
);
14126 thisinfo
= XLoadQueryFont (dpy
,
14127 XSTRING (XCAR (tem
))->data
);
14128 if (x_had_errors_p (dpy
))
14130 /* This error is perhaps due to insufficient memory on X
14131 server. Let's just ignore it. */
14133 x_clear_errors (dpy
);
14135 x_uncatch_errors (dpy
, count
);
14141 (thisinfo
->min_bounds
.width
== 0
14143 : make_number (thisinfo
->max_bounds
.width
)));
14145 XFreeFont (dpy
, thisinfo
);
14149 /* For unknown reason, the previous call of XListFont had
14150 returned a font which can't be opened. Record the size
14151 as 0 not to try to open it again. */
14152 XSETCDR (tem
, make_number (0));
14155 found_size
= XINT (XCDR (tem
));
14156 if (found_size
== size
)
14157 newlist
= Fcons (XCAR (tem
), newlist
);
14158 else if (found_size
> 0)
14160 if (NILP (second_best
))
14162 else if (found_size
< size
)
14164 if (XINT (XCDR (second_best
)) > size
14165 || XINT (XCDR (second_best
)) < found_size
)
14170 if (XINT (XCDR (second_best
)) > size
14171 && XINT (XCDR (second_best
)) > found_size
)
14176 if (!NILP (newlist
))
14178 else if (!NILP (second_best
))
14180 newlist
= Fcons (XCAR (second_best
), Qnil
);
14191 /* Check that FONT is valid on frame F. It is if it can be found in F's
14195 x_check_font (f
, font
)
14200 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
14202 xassert (font
!= NULL
);
14204 for (i
= 0; i
< dpyinfo
->n_fonts
; i
++)
14205 if (dpyinfo
->font_table
[i
].name
14206 && font
== dpyinfo
->font_table
[i
].font
)
14209 xassert (i
< dpyinfo
->n_fonts
);
14212 #endif /* GLYPH_DEBUG != 0 */
14214 /* Set *W to the minimum width, *H to the minimum font height of FONT.
14215 Note: There are (broken) X fonts out there with invalid XFontStruct
14216 min_bounds contents. For example, handa@etl.go.jp reports that
14217 "-adobe-courier-medium-r-normal--*-180-*-*-m-*-iso8859-1" fonts
14218 have font->min_bounds.width == 0. */
14221 x_font_min_bounds (font
, w
, h
)
14225 *h
= FONT_HEIGHT (font
);
14226 *w
= font
->min_bounds
.width
;
14228 /* Try to handle the case where FONT->min_bounds has invalid
14229 contents. Since the only font known to have invalid min_bounds
14230 is fixed-width, use max_bounds if min_bounds seems to be invalid. */
14232 *w
= font
->max_bounds
.width
;
14236 /* Compute the smallest character width and smallest font height over
14237 all fonts available on frame F. Set the members smallest_char_width
14238 and smallest_font_height in F's x_display_info structure to
14239 the values computed. Value is non-zero if smallest_font_height or
14240 smallest_char_width become smaller than they were before. */
14243 x_compute_min_glyph_bounds (f
)
14247 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
14249 int old_width
= dpyinfo
->smallest_char_width
;
14250 int old_height
= dpyinfo
->smallest_font_height
;
14252 dpyinfo
->smallest_font_height
= 100000;
14253 dpyinfo
->smallest_char_width
= 100000;
14255 for (i
= 0; i
< dpyinfo
->n_fonts
; ++i
)
14256 if (dpyinfo
->font_table
[i
].name
)
14258 struct font_info
*fontp
= dpyinfo
->font_table
+ i
;
14261 font
= (XFontStruct
*) fontp
->font
;
14262 xassert (font
!= (XFontStruct
*) ~0);
14263 x_font_min_bounds (font
, &w
, &h
);
14265 dpyinfo
->smallest_font_height
= min (dpyinfo
->smallest_font_height
, h
);
14266 dpyinfo
->smallest_char_width
= min (dpyinfo
->smallest_char_width
, w
);
14269 xassert (dpyinfo
->smallest_char_width
> 0
14270 && dpyinfo
->smallest_font_height
> 0);
14272 return (dpyinfo
->n_fonts
== 1
14273 || dpyinfo
->smallest_char_width
< old_width
14274 || dpyinfo
->smallest_font_height
< old_height
);
14278 /* Load font named FONTNAME of the size SIZE for frame F, and return a
14279 pointer to the structure font_info while allocating it dynamically.
14280 If SIZE is 0, load any size of font.
14281 If loading is failed, return NULL. */
14284 x_load_font (f
, fontname
, size
)
14286 register char *fontname
;
14289 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
14290 Lisp_Object font_names
;
14293 /* Get a list of all the fonts that match this name. Once we
14294 have a list of matching fonts, we compare them against the fonts
14295 we already have by comparing names. */
14296 font_names
= x_list_fonts (f
, build_string (fontname
), size
, 1);
14298 if (!NILP (font_names
))
14303 for (i
= 0; i
< dpyinfo
->n_fonts
; i
++)
14304 for (tail
= font_names
; CONSP (tail
); tail
= XCDR (tail
))
14305 if (dpyinfo
->font_table
[i
].name
14306 && (!strcmp (dpyinfo
->font_table
[i
].name
,
14307 XSTRING (XCAR (tail
))->data
)
14308 || !strcmp (dpyinfo
->font_table
[i
].full_name
,
14309 XSTRING (XCAR (tail
))->data
)))
14310 return (dpyinfo
->font_table
+ i
);
14313 /* Load the font and add it to the table. */
14317 struct font_info
*fontp
;
14318 unsigned long value
;
14321 /* If we have found fonts by x_list_font, load one of them. If
14322 not, we still try to load a font by the name given as FONTNAME
14323 because XListFonts (called in x_list_font) of some X server has
14324 a bug of not finding a font even if the font surely exists and
14325 is loadable by XLoadQueryFont. */
14326 if (size
> 0 && !NILP (font_names
))
14327 fontname
= (char *) XSTRING (XCAR (font_names
))->data
;
14330 count
= x_catch_errors (FRAME_X_DISPLAY (f
));
14331 font
= (XFontStruct
*) XLoadQueryFont (FRAME_X_DISPLAY (f
), fontname
);
14332 if (x_had_errors_p (FRAME_X_DISPLAY (f
)))
14334 /* This error is perhaps due to insufficient memory on X
14335 server. Let's just ignore it. */
14337 x_clear_errors (FRAME_X_DISPLAY (f
));
14339 x_uncatch_errors (FRAME_X_DISPLAY (f
), count
);
14344 /* Find a free slot in the font table. */
14345 for (i
= 0; i
< dpyinfo
->n_fonts
; ++i
)
14346 if (dpyinfo
->font_table
[i
].name
== NULL
)
14349 /* If no free slot found, maybe enlarge the font table. */
14350 if (i
== dpyinfo
->n_fonts
14351 && dpyinfo
->n_fonts
== dpyinfo
->font_table_size
)
14354 dpyinfo
->font_table_size
= max (16, 2 * dpyinfo
->font_table_size
);
14355 sz
= dpyinfo
->font_table_size
* sizeof *dpyinfo
->font_table
;
14356 dpyinfo
->font_table
14357 = (struct font_info
*) xrealloc (dpyinfo
->font_table
, sz
);
14360 fontp
= dpyinfo
->font_table
+ i
;
14361 if (i
== dpyinfo
->n_fonts
)
14362 ++dpyinfo
->n_fonts
;
14364 /* Now fill in the slots of *FONTP. */
14366 fontp
->font
= font
;
14367 fontp
->font_idx
= i
;
14368 fontp
->name
= (char *) xmalloc (strlen (fontname
) + 1);
14369 bcopy (fontname
, fontp
->name
, strlen (fontname
) + 1);
14371 /* Try to get the full name of FONT. Put it in FULL_NAME. */
14373 if (XGetFontProperty (font
, XA_FONT
, &value
))
14375 char *name
= (char *) XGetAtomName (FRAME_X_DISPLAY (f
), (Atom
) value
);
14379 /* Count the number of dashes in the "full name".
14380 If it is too few, this isn't really the font's full name,
14382 In X11R4, the fonts did not come with their canonical names
14393 full_name
= (char *) xmalloc (p
- name
+ 1);
14394 bcopy (name
, full_name
, p
- name
+ 1);
14400 if (full_name
!= 0)
14401 fontp
->full_name
= full_name
;
14403 fontp
->full_name
= fontp
->name
;
14405 fontp
->size
= font
->max_bounds
.width
;
14406 fontp
->height
= FONT_HEIGHT (font
);
14408 if (NILP (font_names
))
14410 /* We come here because of a bug of XListFonts mentioned at
14411 the head of this block. Let's store this information in
14412 the cache for x_list_fonts. */
14413 Lisp_Object lispy_name
= build_string (fontname
);
14414 Lisp_Object lispy_full_name
= build_string (fontp
->full_name
);
14415 Lisp_Object key
= Fcons (Fcons (lispy_name
, make_number (256)),
14418 XSETCDR (dpyinfo
->name_list_element
,
14420 Fcons (Fcons (lispy_full_name
,
14421 make_number (fontp
->size
)),
14423 XCDR (dpyinfo
->name_list_element
)));
14426 key
= Fcons (Fcons (lispy_full_name
, make_number (256)),
14428 XSETCDR (dpyinfo
->name_list_element
,
14430 Fcons (Fcons (lispy_full_name
,
14431 make_number (fontp
->size
)),
14433 XCDR (dpyinfo
->name_list_element
)));
14437 /* The slot `encoding' specifies how to map a character
14438 code-points (0x20..0x7F or 0x2020..0x7F7F) of each charset to
14439 the font code-points (0:0x20..0x7F, 1:0xA0..0xFF), or
14440 (0:0x2020..0x7F7F, 1:0xA0A0..0xFFFF, 3:0x20A0..0x7FFF,
14441 2:0xA020..0xFF7F). For the moment, we don't know which charset
14442 uses this font. So, we set information in fontp->encoding[1]
14443 which is never used by any charset. If mapping can't be
14444 decided, set FONT_ENCODING_NOT_DECIDED. */
14446 = (font
->max_byte1
== 0
14448 ? (font
->min_char_or_byte2
< 0x80
14449 ? (font
->max_char_or_byte2
< 0x80
14450 ? 0 /* 0x20..0x7F */
14451 : FONT_ENCODING_NOT_DECIDED
) /* 0x20..0xFF */
14452 : 1) /* 0xA0..0xFF */
14454 : (font
->min_byte1
< 0x80
14455 ? (font
->max_byte1
< 0x80
14456 ? (font
->min_char_or_byte2
< 0x80
14457 ? (font
->max_char_or_byte2
< 0x80
14458 ? 0 /* 0x2020..0x7F7F */
14459 : FONT_ENCODING_NOT_DECIDED
) /* 0x2020..0x7FFF */
14460 : 3) /* 0x20A0..0x7FFF */
14461 : FONT_ENCODING_NOT_DECIDED
) /* 0x20??..0xA0?? */
14462 : (font
->min_char_or_byte2
< 0x80
14463 ? (font
->max_char_or_byte2
< 0x80
14464 ? 2 /* 0xA020..0xFF7F */
14465 : FONT_ENCODING_NOT_DECIDED
) /* 0xA020..0xFFFF */
14466 : 1))); /* 0xA0A0..0xFFFF */
14468 fontp
->baseline_offset
14469 = (XGetFontProperty (font
, dpyinfo
->Xatom_MULE_BASELINE_OFFSET
, &value
)
14470 ? (long) value
: 0);
14471 fontp
->relative_compose
14472 = (XGetFontProperty (font
, dpyinfo
->Xatom_MULE_RELATIVE_COMPOSE
, &value
)
14473 ? (long) value
: 0);
14474 fontp
->default_ascent
14475 = (XGetFontProperty (font
, dpyinfo
->Xatom_MULE_DEFAULT_ASCENT
, &value
)
14476 ? (long) value
: 0);
14478 /* Set global flag fonts_changed_p to non-zero if the font loaded
14479 has a character with a smaller width than any other character
14480 before, or if the font loaded has a smaller height than any
14481 other font loaded before. If this happens, it will make a
14482 glyph matrix reallocation necessary. */
14483 fonts_changed_p
|= x_compute_min_glyph_bounds (f
);
14490 /* Return a pointer to struct font_info of a font named FONTNAME for
14491 frame F. If no such font is loaded, return NULL. */
14494 x_query_font (f
, fontname
)
14496 register char *fontname
;
14498 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
14501 for (i
= 0; i
< dpyinfo
->n_fonts
; i
++)
14502 if (dpyinfo
->font_table
[i
].name
14503 && (!strcmp (dpyinfo
->font_table
[i
].name
, fontname
)
14504 || !strcmp (dpyinfo
->font_table
[i
].full_name
, fontname
)))
14505 return (dpyinfo
->font_table
+ i
);
14510 /* Find a CCL program for a font specified by FONTP, and set the member
14511 `encoder' of the structure. */
14514 x_find_ccl_program (fontp
)
14515 struct font_info
*fontp
;
14517 Lisp_Object list
, elt
;
14520 for (list
= Vfont_ccl_encoder_alist
; CONSP (list
); list
= XCDR (list
))
14524 && STRINGP (XCAR (elt
))
14525 && ((fast_c_string_match_ignore_case (XCAR (elt
), fontp
->name
)
14527 || (fast_c_string_match_ignore_case (XCAR (elt
), fontp
->full_name
)
14534 struct ccl_program
*ccl
14535 = (struct ccl_program
*) xmalloc (sizeof (struct ccl_program
));
14537 if (setup_ccl_program (ccl
, XCDR (elt
)) < 0)
14540 fontp
->font_encoder
= ccl
;
14546 /***********************************************************************
14548 ***********************************************************************/
14550 #ifdef USE_X_TOOLKIT
14551 static XrmOptionDescRec emacs_options
[] = {
14552 {"-geometry", ".geometry", XrmoptionSepArg
, NULL
},
14553 {"-iconic", ".iconic", XrmoptionNoArg
, (XtPointer
) "yes"},
14555 {"-internal-border-width", "*EmacsScreen.internalBorderWidth",
14556 XrmoptionSepArg
, NULL
},
14557 {"-ib", "*EmacsScreen.internalBorderWidth", XrmoptionSepArg
, NULL
},
14559 {"-T", "*EmacsShell.title", XrmoptionSepArg
, (XtPointer
) NULL
},
14560 {"-wn", "*EmacsShell.title", XrmoptionSepArg
, (XtPointer
) NULL
},
14561 {"-title", "*EmacsShell.title", XrmoptionSepArg
, (XtPointer
) NULL
},
14562 {"-iconname", "*EmacsShell.iconName", XrmoptionSepArg
, (XtPointer
) NULL
},
14563 {"-in", "*EmacsShell.iconName", XrmoptionSepArg
, (XtPointer
) NULL
},
14564 {"-mc", "*pointerColor", XrmoptionSepArg
, (XtPointer
) NULL
},
14565 {"-cr", "*cursorColor", XrmoptionSepArg
, (XtPointer
) NULL
}
14567 #endif /* USE_X_TOOLKIT */
14569 static int x_initialized
;
14571 #ifdef MULTI_KBOARD
14572 /* Test whether two display-name strings agree up to the dot that separates
14573 the screen number from the server number. */
14575 same_x_server (name1
, name2
)
14576 char *name1
, *name2
;
14578 int seen_colon
= 0;
14579 unsigned char *system_name
= XSTRING (Vsystem_name
)->data
;
14580 int system_name_length
= strlen (system_name
);
14581 int length_until_period
= 0;
14583 while (system_name
[length_until_period
] != 0
14584 && system_name
[length_until_period
] != '.')
14585 length_until_period
++;
14587 /* Treat `unix' like an empty host name. */
14588 if (! strncmp (name1
, "unix:", 5))
14590 if (! strncmp (name2
, "unix:", 5))
14592 /* Treat this host's name like an empty host name. */
14593 if (! strncmp (name1
, system_name
, system_name_length
)
14594 && name1
[system_name_length
] == ':')
14595 name1
+= system_name_length
;
14596 if (! strncmp (name2
, system_name
, system_name_length
)
14597 && name2
[system_name_length
] == ':')
14598 name2
+= system_name_length
;
14599 /* Treat this host's domainless name like an empty host name. */
14600 if (! strncmp (name1
, system_name
, length_until_period
)
14601 && name1
[length_until_period
] == ':')
14602 name1
+= length_until_period
;
14603 if (! strncmp (name2
, system_name
, length_until_period
)
14604 && name2
[length_until_period
] == ':')
14605 name2
+= length_until_period
;
14607 for (; *name1
!= '\0' && *name1
== *name2
; name1
++, name2
++)
14611 if (seen_colon
&& *name1
== '.')
14615 && (*name1
== '.' || *name1
== '\0')
14616 && (*name2
== '.' || *name2
== '\0'));
14620 struct x_display_info
*
14621 x_term_init (display_name
, xrm_option
, resource_name
)
14622 Lisp_Object display_name
;
14624 char *resource_name
;
14628 struct x_display_info
*dpyinfo
;
14633 if (!x_initialized
)
14639 #ifdef USE_X_TOOLKIT
14640 /* weiner@footloose.sps.mot.com reports that this causes
14642 X protocol error: BadAtom (invalid Atom parameter)
14643 on protocol request 18skiloaf.
14644 So let's not use it until R6. */
14645 #ifdef HAVE_X11XTR6
14646 XtSetLanguageProc (NULL
, NULL
, NULL
);
14657 argv
[argc
++] = "-xrm";
14658 argv
[argc
++] = xrm_option
;
14660 dpy
= XtOpenDisplay (Xt_app_con
, XSTRING (display_name
)->data
,
14661 resource_name
, EMACS_CLASS
,
14662 emacs_options
, XtNumber (emacs_options
),
14665 #ifdef HAVE_X11XTR6
14666 /* I think this is to compensate for XtSetLanguageProc. */
14671 #else /* not USE_X_TOOLKIT */
14673 XSetLocaleModifiers ("");
14675 dpy
= XOpenDisplay (XSTRING (display_name
)->data
);
14676 #endif /* not USE_X_TOOLKIT */
14678 /* Detect failure. */
14685 /* We have definitely succeeded. Record the new connection. */
14687 dpyinfo
= (struct x_display_info
*) xmalloc (sizeof (struct x_display_info
));
14688 bzero (dpyinfo
, sizeof *dpyinfo
);
14690 #ifdef MULTI_KBOARD
14692 struct x_display_info
*share
;
14695 for (share
= x_display_list
, tail
= x_display_name_list
; share
;
14696 share
= share
->next
, tail
= XCDR (tail
))
14697 if (same_x_server (XSTRING (XCAR (XCAR (tail
)))->data
,
14698 XSTRING (display_name
)->data
))
14701 dpyinfo
->kboard
= share
->kboard
;
14704 dpyinfo
->kboard
= (KBOARD
*) xmalloc (sizeof (KBOARD
));
14705 init_kboard (dpyinfo
->kboard
);
14706 if (!EQ (XSYMBOL (Qvendor_specific_keysyms
)->function
, Qunbound
))
14708 char *vendor
= ServerVendor (dpy
);
14710 dpyinfo
->kboard
->Vsystem_key_alist
14711 = call1 (Qvendor_specific_keysyms
,
14712 build_string (vendor
? vendor
: ""));
14716 dpyinfo
->kboard
->next_kboard
= all_kboards
;
14717 all_kboards
= dpyinfo
->kboard
;
14718 /* Don't let the initial kboard remain current longer than necessary.
14719 That would cause problems if a file loaded on startup tries to
14720 prompt in the mini-buffer. */
14721 if (current_kboard
== initial_kboard
)
14722 current_kboard
= dpyinfo
->kboard
;
14724 dpyinfo
->kboard
->reference_count
++;
14728 /* Put this display on the chain. */
14729 dpyinfo
->next
= x_display_list
;
14730 x_display_list
= dpyinfo
;
14732 /* Put it on x_display_name_list as well, to keep them parallel. */
14733 x_display_name_list
= Fcons (Fcons (display_name
, Qnil
),
14734 x_display_name_list
);
14735 dpyinfo
->name_list_element
= XCAR (x_display_name_list
);
14737 dpyinfo
->display
= dpy
;
14740 XSetAfterFunction (x_current_display
, x_trace_wire
);
14744 = (char *) xmalloc (STRING_BYTES (XSTRING (Vinvocation_name
))
14745 + STRING_BYTES (XSTRING (Vsystem_name
))
14747 sprintf (dpyinfo
->x_id_name
, "%s@%s",
14748 XSTRING (Vinvocation_name
)->data
, XSTRING (Vsystem_name
)->data
);
14750 /* Figure out which modifier bits mean what. */
14751 x_find_modifier_meanings (dpyinfo
);
14753 /* Get the scroll bar cursor. */
14754 dpyinfo
->vertical_scroll_bar_cursor
14755 = XCreateFontCursor (dpyinfo
->display
, XC_sb_v_double_arrow
);
14757 xrdb
= x_load_resources (dpyinfo
->display
, xrm_option
,
14758 resource_name
, EMACS_CLASS
);
14759 #ifdef HAVE_XRMSETDATABASE
14760 XrmSetDatabase (dpyinfo
->display
, xrdb
);
14762 dpyinfo
->display
->db
= xrdb
;
14764 /* Put the rdb where we can find it in a way that works on
14766 dpyinfo
->xrdb
= xrdb
;
14768 dpyinfo
->screen
= ScreenOfDisplay (dpyinfo
->display
,
14769 DefaultScreen (dpyinfo
->display
));
14770 select_visual (dpyinfo
);
14771 dpyinfo
->cmap
= DefaultColormapOfScreen (dpyinfo
->screen
);
14772 dpyinfo
->height
= HeightOfScreen (dpyinfo
->screen
);
14773 dpyinfo
->width
= WidthOfScreen (dpyinfo
->screen
);
14774 dpyinfo
->root_window
= RootWindowOfScreen (dpyinfo
->screen
);
14775 dpyinfo
->grabbed
= 0;
14776 dpyinfo
->reference_count
= 0;
14777 dpyinfo
->icon_bitmap_id
= -1;
14778 dpyinfo
->font_table
= NULL
;
14779 dpyinfo
->n_fonts
= 0;
14780 dpyinfo
->font_table_size
= 0;
14781 dpyinfo
->bitmaps
= 0;
14782 dpyinfo
->bitmaps_size
= 0;
14783 dpyinfo
->bitmaps_last
= 0;
14784 dpyinfo
->scratch_cursor_gc
= 0;
14785 dpyinfo
->mouse_face_mouse_frame
= 0;
14786 dpyinfo
->mouse_face_deferred_gc
= 0;
14787 dpyinfo
->mouse_face_beg_row
= dpyinfo
->mouse_face_beg_col
= -1;
14788 dpyinfo
->mouse_face_end_row
= dpyinfo
->mouse_face_end_col
= -1;
14789 dpyinfo
->mouse_face_face_id
= DEFAULT_FACE_ID
;
14790 dpyinfo
->mouse_face_window
= Qnil
;
14791 dpyinfo
->mouse_face_overlay
= Qnil
;
14792 dpyinfo
->mouse_face_mouse_x
= dpyinfo
->mouse_face_mouse_y
= 0;
14793 dpyinfo
->mouse_face_defer
= 0;
14794 dpyinfo
->mouse_face_hidden
= 0;
14795 dpyinfo
->x_focus_frame
= 0;
14796 dpyinfo
->x_focus_event_frame
= 0;
14797 dpyinfo
->x_highlight_frame
= 0;
14798 dpyinfo
->image_cache
= make_image_cache ();
14800 /* See if a private colormap is requested. */
14801 if (dpyinfo
->visual
== DefaultVisualOfScreen (dpyinfo
->screen
))
14803 if (dpyinfo
->visual
->class == PseudoColor
)
14806 value
= display_x_get_resource (dpyinfo
,
14807 build_string ("privateColormap"),
14808 build_string ("PrivateColormap"),
14810 if (STRINGP (value
)
14811 && (!strcmp (XSTRING (value
)->data
, "true")
14812 || !strcmp (XSTRING (value
)->data
, "on")))
14813 dpyinfo
->cmap
= XCopyColormapAndFree (dpyinfo
->display
, dpyinfo
->cmap
);
14817 dpyinfo
->cmap
= XCreateColormap (dpyinfo
->display
, dpyinfo
->root_window
,
14818 dpyinfo
->visual
, AllocNone
);
14821 int screen_number
= XScreenNumberOfScreen (dpyinfo
->screen
);
14822 double pixels
= DisplayHeight (dpyinfo
->display
, screen_number
);
14823 double mm
= DisplayHeightMM (dpyinfo
->display
, screen_number
);
14824 dpyinfo
->resy
= pixels
* 25.4 / mm
;
14825 pixels
= DisplayWidth (dpyinfo
->display
, screen_number
);
14826 mm
= DisplayWidthMM (dpyinfo
->display
, screen_number
);
14827 dpyinfo
->resx
= pixels
* 25.4 / mm
;
14830 dpyinfo
->Xatom_wm_protocols
14831 = XInternAtom (dpyinfo
->display
, "WM_PROTOCOLS", False
);
14832 dpyinfo
->Xatom_wm_take_focus
14833 = XInternAtom (dpyinfo
->display
, "WM_TAKE_FOCUS", False
);
14834 dpyinfo
->Xatom_wm_save_yourself
14835 = XInternAtom (dpyinfo
->display
, "WM_SAVE_YOURSELF", False
);
14836 dpyinfo
->Xatom_wm_delete_window
14837 = XInternAtom (dpyinfo
->display
, "WM_DELETE_WINDOW", False
);
14838 dpyinfo
->Xatom_wm_change_state
14839 = XInternAtom (dpyinfo
->display
, "WM_CHANGE_STATE", False
);
14840 dpyinfo
->Xatom_wm_configure_denied
14841 = XInternAtom (dpyinfo
->display
, "WM_CONFIGURE_DENIED", False
);
14842 dpyinfo
->Xatom_wm_window_moved
14843 = XInternAtom (dpyinfo
->display
, "WM_MOVED", False
);
14844 dpyinfo
->Xatom_editres
14845 = XInternAtom (dpyinfo
->display
, "Editres", False
);
14846 dpyinfo
->Xatom_CLIPBOARD
14847 = XInternAtom (dpyinfo
->display
, "CLIPBOARD", False
);
14848 dpyinfo
->Xatom_TIMESTAMP
14849 = XInternAtom (dpyinfo
->display
, "TIMESTAMP", False
);
14850 dpyinfo
->Xatom_TEXT
14851 = XInternAtom (dpyinfo
->display
, "TEXT", False
);
14852 dpyinfo
->Xatom_COMPOUND_TEXT
14853 = XInternAtom (dpyinfo
->display
, "COMPOUND_TEXT", False
);
14854 dpyinfo
->Xatom_DELETE
14855 = XInternAtom (dpyinfo
->display
, "DELETE", False
);
14856 dpyinfo
->Xatom_MULTIPLE
14857 = XInternAtom (dpyinfo
->display
, "MULTIPLE", False
);
14858 dpyinfo
->Xatom_INCR
14859 = XInternAtom (dpyinfo
->display
, "INCR", False
);
14860 dpyinfo
->Xatom_EMACS_TMP
14861 = XInternAtom (dpyinfo
->display
, "_EMACS_TMP_", False
);
14862 dpyinfo
->Xatom_TARGETS
14863 = XInternAtom (dpyinfo
->display
, "TARGETS", False
);
14864 dpyinfo
->Xatom_NULL
14865 = XInternAtom (dpyinfo
->display
, "NULL", False
);
14866 dpyinfo
->Xatom_ATOM_PAIR
14867 = XInternAtom (dpyinfo
->display
, "ATOM_PAIR", False
);
14868 /* For properties of font. */
14869 dpyinfo
->Xatom_PIXEL_SIZE
14870 = XInternAtom (dpyinfo
->display
, "PIXEL_SIZE", False
);
14871 dpyinfo
->Xatom_MULE_BASELINE_OFFSET
14872 = XInternAtom (dpyinfo
->display
, "_MULE_BASELINE_OFFSET", False
);
14873 dpyinfo
->Xatom_MULE_RELATIVE_COMPOSE
14874 = XInternAtom (dpyinfo
->display
, "_MULE_RELATIVE_COMPOSE", False
);
14875 dpyinfo
->Xatom_MULE_DEFAULT_ASCENT
14876 = XInternAtom (dpyinfo
->display
, "_MULE_DEFAULT_ASCENT", False
);
14878 /* Ghostscript support. */
14879 dpyinfo
->Xatom_PAGE
= XInternAtom (dpyinfo
->display
, "PAGE", False
);
14880 dpyinfo
->Xatom_DONE
= XInternAtom (dpyinfo
->display
, "DONE", False
);
14882 dpyinfo
->Xatom_Scrollbar
= XInternAtom (dpyinfo
->display
, "SCROLLBAR",
14885 dpyinfo
->cut_buffers_initialized
= 0;
14887 connection
= ConnectionNumber (dpyinfo
->display
);
14888 dpyinfo
->connection
= connection
;
14893 null_bits
[0] = 0x00;
14895 dpyinfo
->null_pixel
14896 = XCreatePixmapFromBitmapData (dpyinfo
->display
, dpyinfo
->root_window
,
14897 null_bits
, 1, 1, (long) 0, (long) 0,
14902 extern int gray_bitmap_width
, gray_bitmap_height
;
14903 extern char *gray_bitmap_bits
;
14905 = XCreatePixmapFromBitmapData (dpyinfo
->display
, dpyinfo
->root_window
,
14907 gray_bitmap_width
, gray_bitmap_height
,
14908 (unsigned long) 1, (unsigned long) 0, 1);
14912 xim_initialize (dpyinfo
, resource_name
);
14915 #ifdef subprocesses
14916 /* This is only needed for distinguishing keyboard and process input. */
14917 if (connection
!= 0)
14918 add_keyboard_wait_descriptor (connection
);
14921 #ifndef F_SETOWN_BUG
14923 #ifdef F_SETOWN_SOCK_NEG
14924 /* stdin is a socket here */
14925 fcntl (connection
, F_SETOWN
, -getpid ());
14926 #else /* ! defined (F_SETOWN_SOCK_NEG) */
14927 fcntl (connection
, F_SETOWN
, getpid ());
14928 #endif /* ! defined (F_SETOWN_SOCK_NEG) */
14929 #endif /* ! defined (F_SETOWN) */
14930 #endif /* F_SETOWN_BUG */
14933 if (interrupt_input
)
14934 init_sigio (connection
);
14935 #endif /* ! defined (SIGIO) */
14938 #ifdef HAVE_X11R5 /* It seems X11R4 lacks XtCvtStringToFont, and XPointer. */
14939 /* Make sure that we have a valid font for dialog boxes
14940 so that Xt does not crash. */
14942 Display
*dpy
= dpyinfo
->display
;
14943 XrmValue d
, fr
, to
;
14947 d
.addr
= (XPointer
)&dpy
;
14948 d
.size
= sizeof (Display
*);
14949 fr
.addr
= XtDefaultFont
;
14950 fr
.size
= sizeof (XtDefaultFont
);
14951 to
.size
= sizeof (Font
*);
14952 to
.addr
= (XPointer
)&font
;
14953 count
= x_catch_errors (dpy
);
14954 if (!XtCallConverter (dpy
, XtCvtStringToFont
, &d
, 1, &fr
, &to
, NULL
))
14956 if (x_had_errors_p (dpy
) || !XQueryFont (dpy
, font
))
14957 XrmPutLineResource (&xrdb
, "Emacs.dialog.*.font: 9x15");
14958 x_uncatch_errors (dpy
, count
);
14963 /* See if we should run in synchronous mode. This is useful
14964 for debugging X code. */
14967 value
= display_x_get_resource (dpyinfo
,
14968 build_string ("synchronous"),
14969 build_string ("Synchronous"),
14971 if (STRINGP (value
)
14972 && (!strcmp (XSTRING (value
)->data
, "true")
14973 || !strcmp (XSTRING (value
)->data
, "on")))
14974 XSynchronize (dpyinfo
->display
, True
);
14982 /* Get rid of display DPYINFO, assuming all frames are already gone,
14983 and without sending any more commands to the X server. */
14986 x_delete_display (dpyinfo
)
14987 struct x_display_info
*dpyinfo
;
14989 delete_keyboard_wait_descriptor (dpyinfo
->connection
);
14991 /* Discard this display from x_display_name_list and x_display_list.
14992 We can't use Fdelq because that can quit. */
14993 if (! NILP (x_display_name_list
)
14994 && EQ (XCAR (x_display_name_list
), dpyinfo
->name_list_element
))
14995 x_display_name_list
= XCDR (x_display_name_list
);
15000 tail
= x_display_name_list
;
15001 while (CONSP (tail
) && CONSP (XCDR (tail
)))
15003 if (EQ (XCAR (XCDR (tail
)), dpyinfo
->name_list_element
))
15005 XSETCDR (tail
, XCDR (XCDR (tail
)));
15008 tail
= XCDR (tail
);
15012 if (next_noop_dpyinfo
== dpyinfo
)
15013 next_noop_dpyinfo
= dpyinfo
->next
;
15015 if (x_display_list
== dpyinfo
)
15016 x_display_list
= dpyinfo
->next
;
15019 struct x_display_info
*tail
;
15021 for (tail
= x_display_list
; tail
; tail
= tail
->next
)
15022 if (tail
->next
== dpyinfo
)
15023 tail
->next
= tail
->next
->next
;
15026 #ifndef USE_X_TOOLKIT /* I'm told Xt does this itself. */
15027 #ifndef AIX /* On AIX, XCloseDisplay calls this. */
15028 XrmDestroyDatabase (dpyinfo
->xrdb
);
15031 #ifdef MULTI_KBOARD
15032 if (--dpyinfo
->kboard
->reference_count
== 0)
15033 delete_kboard (dpyinfo
->kboard
);
15037 xim_close_dpy (dpyinfo
);
15040 xfree (dpyinfo
->font_table
);
15041 xfree (dpyinfo
->x_id_name
);
15042 xfree (dpyinfo
->color_cells
);
15047 /* Set up use of X before we make the first connection. */
15049 static struct redisplay_interface x_redisplay_interface
=
15054 x_clear_end_of_line
,
15056 x_after_update_window_line
,
15057 x_update_window_begin
,
15058 x_update_window_end
,
15061 x_clear_mouse_face
,
15062 x_get_glyph_overhangs
,
15063 x_fix_overlapping_area
15069 rif
= &x_redisplay_interface
;
15071 clear_frame_hook
= x_clear_frame
;
15072 ins_del_lines_hook
= x_ins_del_lines
;
15073 delete_glyphs_hook
= x_delete_glyphs
;
15074 ring_bell_hook
= XTring_bell
;
15075 reset_terminal_modes_hook
= XTreset_terminal_modes
;
15076 set_terminal_modes_hook
= XTset_terminal_modes
;
15077 update_begin_hook
= x_update_begin
;
15078 update_end_hook
= x_update_end
;
15079 set_terminal_window_hook
= XTset_terminal_window
;
15080 read_socket_hook
= XTread_socket
;
15081 frame_up_to_date_hook
= XTframe_up_to_date
;
15082 mouse_position_hook
= XTmouse_position
;
15083 frame_rehighlight_hook
= XTframe_rehighlight
;
15084 frame_raise_lower_hook
= XTframe_raise_lower
;
15085 set_vertical_scroll_bar_hook
= XTset_vertical_scroll_bar
;
15086 condemn_scroll_bars_hook
= XTcondemn_scroll_bars
;
15087 redeem_scroll_bar_hook
= XTredeem_scroll_bar
;
15088 judge_scroll_bars_hook
= XTjudge_scroll_bars
;
15089 estimate_mode_line_height_hook
= x_estimate_mode_line_height
;
15091 scroll_region_ok
= 1; /* we'll scroll partial frames */
15092 char_ins_del_ok
= 1;
15093 line_ins_del_ok
= 1; /* we'll just blt 'em */
15094 fast_clear_end_of_line
= 1; /* X does this well */
15095 memory_below_frame
= 0; /* we don't remember what scrolls
15100 last_tool_bar_item
= -1;
15101 any_help_event_p
= 0;
15103 /* Try to use interrupt input; if we can't, then start polling. */
15104 Fset_input_mode (Qt
, Qnil
, Qt
, Qnil
);
15106 #ifdef USE_X_TOOLKIT
15107 XtToolkitInitialize ();
15109 Xt_app_con
= XtCreateApplicationContext ();
15111 /* Register a converter from strings to pixels, which uses
15112 Emacs' color allocation infrastructure. */
15113 XtAppSetTypeConverter (Xt_app_con
,
15114 XtRString
, XtRPixel
, cvt_string_to_pixel
,
15115 cvt_string_to_pixel_args
,
15116 XtNumber (cvt_string_to_pixel_args
),
15117 XtCacheByDisplay
, cvt_pixel_dtor
);
15119 XtAppSetFallbackResources (Xt_app_con
, Xt_default_resources
);
15121 /* Install an asynchronous timer that processes Xt timeout events
15122 every 0.1s. This is necessary because some widget sets use
15123 timeouts internally, for example the LessTif menu bar, or the
15124 Xaw3d scroll bar. When Xt timouts aren't processed, these
15125 widgets don't behave normally. */
15127 EMACS_TIME interval
;
15128 EMACS_SET_SECS_USECS (interval
, 0, 100000);
15129 start_atimer (ATIMER_CONTINUOUS
, interval
, x_process_timeouts
, 0);
15133 #ifdef USE_TOOLKIT_SCROLL_BARS
15134 xaw3d_arrow_scroll
= False
;
15135 xaw3d_pick_top
= True
;
15138 /* Note that there is no real way portable across R3/R4 to get the
15139 original error handler. */
15140 XSetErrorHandler (x_error_handler
);
15141 XSetIOErrorHandler (x_io_error_quitter
);
15143 /* Disable Window Change signals; they are handled by X events. */
15145 signal (SIGWINCH
, SIG_DFL
);
15146 #endif /* SIGWINCH */
15148 signal (SIGPIPE
, x_connection_signal
);
15151 x_session_initialize ();
15159 staticpro (&x_error_message_string
);
15160 x_error_message_string
= Qnil
;
15162 staticpro (&x_display_name_list
);
15163 x_display_name_list
= Qnil
;
15165 staticpro (&last_mouse_scroll_bar
);
15166 last_mouse_scroll_bar
= Qnil
;
15168 staticpro (&Qvendor_specific_keysyms
);
15169 Qvendor_specific_keysyms
= intern ("vendor-specific-keysyms");
15171 staticpro (&Qutf_8
);
15172 Qutf_8
= intern ("utf-8");
15173 staticpro (&Qlatin_1
);
15174 Qlatin_1
= intern ("latin-1");
15176 staticpro (&last_mouse_press_frame
);
15177 last_mouse_press_frame
= Qnil
;
15180 staticpro (&help_echo
);
15181 help_echo_object
= Qnil
;
15182 staticpro (&help_echo_object
);
15183 help_echo_window
= Qnil
;
15184 staticpro (&help_echo_window
);
15185 previous_help_echo
= Qnil
;
15186 staticpro (&previous_help_echo
);
15187 help_echo_pos
= -1;
15189 DEFVAR_BOOL ("mouse-autoselect-window", &mouse_autoselect_window
,
15190 doc
: /* *Non-nil means autoselect window with mouse pointer. */);
15191 mouse_autoselect_window
= 0;
15193 DEFVAR_BOOL ("x-stretch-cursor", &x_stretch_cursor_p
,
15194 doc
: /* *Non-nil means draw block cursor as wide as the glyph under it.
15195 For example, if a block cursor is over a tab, it will be drawn as
15196 wide as that tab on the display. */);
15197 x_stretch_cursor_p
= 0;
15199 DEFVAR_BOOL ("x-use-underline-position-properties",
15200 &x_use_underline_position_properties
,
15201 doc
: /* *Non-nil means make use of UNDERLINE_POSITION font properties.
15202 nil means ignore them. If you encounter fonts with bogus
15203 UNDERLINE_POSITION font properties, for example 7x13 on XFree prior
15204 to 4.1, set this to nil. */);
15205 x_use_underline_position_properties
= 1;
15207 DEFVAR_LISP ("x-toolkit-scroll-bars", &Vx_toolkit_scroll_bars
,
15208 doc
: /* What X toolkit scroll bars Emacs uses.
15209 A value of nil means Emacs doesn't use X toolkit scroll bars.
15210 Otherwise, value is a symbol describing the X toolkit. */);
15211 #ifdef USE_TOOLKIT_SCROLL_BARS
15213 Vx_toolkit_scroll_bars
= intern ("motif");
15214 #elif defined HAVE_XAW3D
15215 Vx_toolkit_scroll_bars
= intern ("xaw3d");
15217 Vx_toolkit_scroll_bars
= intern ("xaw");
15220 Vx_toolkit_scroll_bars
= Qnil
;
15223 staticpro (&last_mouse_motion_frame
);
15224 last_mouse_motion_frame
= Qnil
;
15226 Qmodifier_value
= intern ("modifier-value");
15227 Qalt
= intern ("alt");
15228 Fput (Qalt
, Qmodifier_value
, make_number (alt_modifier
));
15229 Qhyper
= intern ("hyper");
15230 Fput (Qhyper
, Qmodifier_value
, make_number (hyper_modifier
));
15231 Qmeta
= intern ("meta");
15232 Fput (Qmeta
, Qmodifier_value
, make_number (meta_modifier
));
15233 Qsuper
= intern ("super");
15234 Fput (Qsuper
, Qmodifier_value
, make_number (super_modifier
));
15236 DEFVAR_LISP ("x-alt-keysym", &Vx_alt_keysym
,
15237 doc
: /* Which keys Emacs uses for the alt modifier.
15238 This should be one of the symbols `alt', `hyper', `meta', `super'.
15239 For example, `alt' means use the Alt_L and Alt_R keysyms. The default
15240 is nil, which is the same as `alt'. */);
15241 Vx_alt_keysym
= Qnil
;
15243 DEFVAR_LISP ("x-hyper-keysym", &Vx_hyper_keysym
,
15244 doc
: /* Which keys Emacs uses for the hyper modifier.
15245 This should be one of the symbols `alt', `hyper', `meta', `super'.
15246 For example, `hyper' means use the Hyper_L and Hyper_R keysyms. The
15247 default is nil, which is the same as `hyper'. */);
15248 Vx_hyper_keysym
= Qnil
;
15250 DEFVAR_LISP ("x-meta-keysym", &Vx_meta_keysym
,
15251 doc
: /* Which keys Emacs uses for the meta modifier.
15252 This should be one of the symbols `alt', `hyper', `meta', `super'.
15253 For example, `meta' means use the Meta_L and Meta_R keysyms. The
15254 default is nil, which is the same as `meta'. */);
15255 Vx_meta_keysym
= Qnil
;
15257 DEFVAR_LISP ("x-super-keysym", &Vx_super_keysym
,
15258 doc
: /* Which keys Emacs uses for the super modifier.
15259 This should be one of the symbols `alt', `hyper', `meta', `super'.
15260 For example, `super' means use the Super_L and Super_R keysyms. The
15261 default is nil, which is the same as `super'. */);
15262 Vx_super_keysym
= Qnil
;
15266 #endif /* HAVE_X_WINDOWS */