(menu-bar-tools-menu): Rename gdb item to say GDB.
[bpt/emacs.git] / src / xterm.c
CommitLineData
dc6f92b8 1/* X Communication module for terminals which understand the X protocol.
edf36fe6 2 Copyright (C) 1989, 93, 94, 95, 96, 1997, 1998, 1999, 2000, 2001
06a2c219 3 Free Software Foundation, Inc.
dc6f92b8
JB
4
5This file is part of GNU Emacs.
6
7GNU Emacs is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
4746118a 9the Free Software Foundation; either version 2, or (at your option)
dc6f92b8
JB
10any later version.
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with GNU Emacs; see the file COPYING. If not, write to
3b7ad313
EN
19the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20Boston, MA 02111-1307, USA. */
dc6f92b8 21
06a2c219 22/* New display code by Gerd Moellmann <gerd@gnu.org>. */
3afe33e7
RS
23/* Xt features made by Fred Pierresteguy. */
24
68c45bf0
PE
25#include <config.h>
26
039440c4 27/* On 4.3 these lose if they come after xterm.h. */
039440c4 28/* Putting these at the beginning seems to be standard for other .c files. */
039440c4
RS
29#include <signal.h>
30
4846819e
RS
31#include <stdio.h>
32
dc6f92b8
JB
33#ifdef HAVE_X_WINDOWS
34
35#include "lisp.h"
9ac0d9e0 36#include "blockinput.h"
dc6f92b8 37
ae79c227
AS
38/* Need syssignal.h for various externs and definitions that may be required
39 by some configurations for calls to signal later in this source file. */
40#include "syssignal.h"
41
dc6f92b8
JB
42/* This may include sys/types.h, and that somehow loses
43 if this is not done before the other system files. */
44#include "xterm.h"
f451eb13 45#include <X11/cursorfont.h>
dc6f92b8
JB
46
47/* Load sys/types.h if not already loaded.
48 In some systems loading it twice is suicidal. */
49#ifndef makedev
50#include <sys/types.h>
c118dd06 51#endif /* makedev */
dc6f92b8 52
6df54671 53#ifdef BSD_SYSTEM
dc6f92b8 54#include <sys/ioctl.h>
6df54671 55#endif /* ! defined (BSD_SYSTEM) */
dc6f92b8 56
2d368234 57#include "systty.h"
3a2712f9 58#include "systime.h"
dc6f92b8 59
b8009dd1 60#ifndef INCLUDED_FCNTL
dc6f92b8 61#include <fcntl.h>
b8009dd1 62#endif
dc6f92b8
JB
63#include <ctype.h>
64#include <errno.h>
65#include <setjmp.h>
66#include <sys/stat.h>
a0a7635f
RS
67/* Caused redefinition of DBL_DIG on Netbsd; seems not to be needed. */
68/* #include <sys/param.h> */
dc6f92b8 69
dc43ef94 70#include "charset.h"
379b5ac0 71#include "coding.h"
dc43ef94 72#include "ccl.h"
7a13e894 73#include "frame.h"
dc6f92b8 74#include "dispextern.h"
ee569018 75#include "fontset.h"
dc6f92b8
JB
76#include "termhooks.h"
77#include "termopts.h"
78#include "termchar.h"
dc6f92b8 79#include "gnu.h"
dc6f92b8 80#include "disptab.h"
dc6f92b8 81#include "buffer.h"
f451eb13 82#include "window.h"
3b2fa4e6 83#include "keyboard.h"
bde7c500 84#include "intervals.h"
dfcf069d 85#include "process.h"
bffcfca9 86#include "atimer.h"
8feddab4 87#include "keymap.h"
dc6f92b8 88
d2bd6bc4
RS
89#ifdef USE_X_TOOLKIT
90#include <X11/Shell.h>
91#endif
92
06a2c219
GM
93#ifdef HAVE_SYS_TIME_H
94#include <sys/time.h>
95#endif
96#ifdef HAVE_UNISTD_H
97#include <unistd.h>
98#endif
99
d624284c
PJ
100#ifdef USE_LUCID
101extern int xlwmenu_window_p (Widget w, Window window);
102extern void xlwmenu_redisplay P_ ((Widget));
103#endif
104
3afe33e7 105#ifdef USE_X_TOOLKIT
06a2c219 106
952291d9
GM
107extern void free_frame_menubar P_ ((struct frame *));
108extern struct frame *x_menubar_window_to_frame P_ ((struct x_display_info *,
109 int));
06a2c219 110
0fdff6bb
RS
111#if (XtSpecificationRelease >= 5) && !defined(NO_EDITRES)
112#define HACK_EDITRES
113extern void _XEditResCheckMessages ();
114#endif /* not NO_EDITRES */
06a2c219
GM
115
116/* Include toolkit specific headers for the scroll bar widget. */
117
118#ifdef USE_TOOLKIT_SCROLL_BARS
119#if defined USE_MOTIF
120#include <Xm/Xm.h> /* for LESSTIF_VERSION */
121#include <Xm/ScrollBar.h>
ec18280f
SM
122#else /* !USE_MOTIF i.e. use Xaw */
123
124#ifdef HAVE_XAW3D
06a2c219 125#include <X11/Xaw3d/Simple.h>
06a2c219
GM
126#include <X11/Xaw3d/Scrollbar.h>
127#define ARROW_SCROLLBAR
128#include <X11/Xaw3d/ScrollbarP.h>
ec18280f
SM
129#else /* !HAVE_XAW3D */
130#include <X11/Xaw/Simple.h>
131#include <X11/Xaw/Scrollbar.h>
132#endif /* !HAVE_XAW3D */
133#ifndef XtNpickTop
134#define XtNpickTop "pickTop"
135#endif /* !XtNpickTop */
136#endif /* !USE_MOTIF */
06a2c219
GM
137#endif /* USE_TOOLKIT_SCROLL_BARS */
138
3afe33e7
RS
139#endif /* USE_X_TOOLKIT */
140
b849c413
RS
141#ifndef USE_X_TOOLKIT
142#define x_any_window_to_frame x_window_to_frame
5627c40e 143#define x_top_window_to_frame x_window_to_frame
b849c413
RS
144#endif
145
546e6d5b 146#ifdef USE_X_TOOLKIT
d067ea8b 147#include "widget.h"
546e6d5b
RS
148#ifndef XtNinitialState
149#define XtNinitialState "initialState"
150#endif
151#endif
152
06a2c219
GM
153#define abs(x) ((x) < 0 ? -(x) : (x))
154
155#define BETWEEN(X, LOWER, UPPER) ((X) >= (LOWER) && (X) < (UPPER))
156
157\f
3f332ef3 158/* Fringe bitmaps. */
06a2c219 159
3f332ef3 160enum fringe_bitmap_type
06a2c219 161{
3f332ef3 162 NO_FRINGE_BITMAP,
06a2c219
GM
163 LEFT_TRUNCATION_BITMAP,
164 RIGHT_TRUNCATION_BITMAP,
165 OVERLAY_ARROW_BITMAP,
166 CONTINUED_LINE_BITMAP,
167 CONTINUATION_LINE_BITMAP,
168 ZV_LINE_BITMAP
169};
170
171/* Bitmap drawn to indicate lines not displaying text if
172 `indicate-empty-lines' is non-nil. */
173
174#define zv_width 8
976b73d7
KS
175#define zv_height 72
176#define zv_period 3
06a2c219 177static unsigned char zv_bits[] = {
976b73d7
KS
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};
06a2c219
GM
186
187/* An arrow like this: `<-'. */
188
189#define left_width 8
190#define left_height 8
191static unsigned char left_bits[] = {
192 0x18, 0x0c, 0x06, 0x3f, 0x3f, 0x06, 0x0c, 0x18};
193
110859fc
GM
194/* Right truncation arrow bitmap `->'. */
195
196#define right_width 8
197#define right_height 8
198static unsigned char right_bits[] = {
199 0x18, 0x30, 0x60, 0xfc, 0xfc, 0x60, 0x30, 0x18};
200
06a2c219
GM
201/* Marker for continued lines. */
202
203#define continued_width 8
204#define continued_height 8
205static unsigned char continued_bits[] = {
110859fc
GM
206 0x3c, 0x7c, 0xc0, 0xe4, 0xfc, 0x7c, 0x3c, 0x7c};
207
208/* Marker for continuation lines. */
06a2c219
GM
209
210#define continuation_width 8
211#define continuation_height 8
212static unsigned char continuation_bits[] = {
110859fc 213 0x3c, 0x3e, 0x03, 0x27, 0x3f, 0x3e, 0x3c, 0x3e};
06a2c219 214
110859fc 215/* Overlay arrow bitmap. */
06a2c219 216
110859fc
GM
217#if 0
218/* A bomb. */
06a2c219
GM
219#define ov_width 8
220#define ov_height 8
221static unsigned char ov_bits[] = {
222 0x30, 0x08, 0x3c, 0x7e, 0x7a, 0x7a, 0x62, 0x3c};
06a2c219 223#else
110859fc 224/* A triangular arrow. */
06a2c219
GM
225#define ov_width 8
226#define ov_height 8
227static unsigned char ov_bits[] = {
110859fc
GM
228 0x03, 0x0f, 0x1f, 0x3f, 0x3f, 0x1f, 0x0f, 0x03};
229
e4b68333 230#endif
06a2c219
GM
231
232extern Lisp_Object Qhelp_echo;
233
69388238 234\f
5bf04520 235/* Non-nil means Emacs uses toolkit scroll bars. */
06a2c219 236
5bf04520 237Lisp_Object Vx_toolkit_scroll_bars;
06a2c219
GM
238
239/* If a string, XTread_socket generates an event to display that string.
240 (The display is done in read_char.) */
241
242static Lisp_Object help_echo;
7cea38bc 243static Lisp_Object help_echo_window;
be010514
GM
244static Lisp_Object help_echo_object;
245static int help_echo_pos;
06a2c219
GM
246
247/* Temporary variable for XTread_socket. */
248
249static Lisp_Object previous_help_echo;
250
251/* Non-zero means that a HELP_EVENT has been generated since Emacs
252 start. */
253
254static int any_help_event_p;
255
503e457e
PJ
256/* Non-zero means autoselect window with the mouse cursor. */
257
258int x_autoselect_window_p;
259
06a2c219
GM
260/* Non-zero means draw block and hollow cursor as wide as the glyph
261 under it. For example, if a block cursor is over a tab, it will be
262 drawn as wide as that tab on the display. */
263
264int x_stretch_cursor_p;
265
a72d5ce5
GM
266/* Non-zero means make use of UNDERLINE_POSITION font properties. */
267
268int x_use_underline_position_properties;
269
06a2c219
GM
270/* This is a chain of structures for all the X displays currently in
271 use. */
272
334208b7 273struct x_display_info *x_display_list;
dc6f92b8 274
06a2c219
GM
275/* This is a list of cons cells, each of the form (NAME
276 . FONT-LIST-CACHE), one for each element of x_display_list and in
277 the same order. NAME is the name of the frame. FONT-LIST-CACHE
278 records previous values returned by x-list-fonts. */
279
7a13e894 280Lisp_Object x_display_name_list;
f451eb13 281
987d2ad1 282/* Frame being updated by update_frame. This is declared in term.c.
06a2c219
GM
283 This is set by update_begin and looked at by all the XT functions.
284 It is zero while not inside an update. In that case, the XT
285 functions assume that `selected_frame' is the frame to apply to. */
286
d0386f2a 287extern struct frame *updating_frame;
dc6f92b8 288
06a2c219
GM
289/* This is a frame waiting to be auto-raised, within XTread_socket. */
290
0134a210
RS
291struct frame *pending_autoraise_frame;
292
7f9c7f94
RS
293#ifdef USE_X_TOOLKIT
294/* The application context for Xt use. */
295XtAppContext Xt_app_con;
06a2c219
GM
296static String Xt_default_resources[] = {0};
297#endif /* USE_X_TOOLKIT */
665881ad 298
06a2c219
GM
299/* Nominal cursor position -- where to draw output.
300 HPOS and VPOS are window relative glyph matrix coordinates.
301 X and Y are window relative pixel coordinates. */
dc6f92b8 302
06a2c219 303struct cursor_pos output_cursor;
dc6f92b8 304
bffcfca9
GM
305/* Non-zero means user is interacting with a toolkit scroll bar. */
306
307static int toolkit_scroll_bar_interaction;
dc6f92b8 308
69388238
RS
309/* Mouse movement.
310
06a2c219 311 Formerly, we used PointerMotionHintMask (in standard_event_mask)
f5bb65ec
RS
312 so that we would have to call XQueryPointer after each MotionNotify
313 event to ask for another such event. However, this made mouse tracking
314 slow, and there was a bug that made it eventually stop.
315
316 Simply asking for MotionNotify all the time seems to work better.
317
69388238
RS
318 In order to avoid asking for motion events and then throwing most
319 of them away or busy-polling the server for mouse positions, we ask
320 the server for pointer motion hints. This means that we get only
321 one event per group of mouse movements. "Groups" are delimited by
322 other kinds of events (focus changes and button clicks, for
323 example), or by XQueryPointer calls; when one of these happens, we
324 get another MotionNotify event the next time the mouse moves. This
325 is at least as efficient as getting motion events when mouse
326 tracking is on, and I suspect only negligibly worse when tracking
f5bb65ec 327 is off. */
69388238
RS
328
329/* Where the mouse was last time we reported a mouse event. */
69388238 330
06a2c219
GM
331FRAME_PTR last_mouse_frame;
332static XRectangle last_mouse_glyph;
2237cac9
RS
333static Lisp_Object last_mouse_press_frame;
334
69388238
RS
335/* The scroll bar in which the last X motion event occurred.
336
06a2c219
GM
337 If the last X motion event occurred in a scroll bar, we set this so
338 XTmouse_position can know whether to report a scroll bar motion or
69388238
RS
339 an ordinary motion.
340
06a2c219
GM
341 If the last X motion event didn't occur in a scroll bar, we set
342 this to Qnil, to tell XTmouse_position to return an ordinary motion
343 event. */
344
69388238
RS
345static Lisp_Object last_mouse_scroll_bar;
346
69388238
RS
347/* This is a hack. We would really prefer that XTmouse_position would
348 return the time associated with the position it returns, but there
06a2c219 349 doesn't seem to be any way to wrest the time-stamp from the server
69388238
RS
350 along with the position query. So, we just keep track of the time
351 of the last movement we received, and return that in hopes that
352 it's somewhat accurate. */
06a2c219 353
69388238
RS
354static Time last_mouse_movement_time;
355
06a2c219
GM
356/* Incremented by XTread_socket whenever it really tries to read
357 events. */
358
c0a04927
RS
359#ifdef __STDC__
360static int volatile input_signal_count;
361#else
362static int input_signal_count;
363#endif
364
7a13e894 365/* Used locally within XTread_socket. */
06a2c219 366
7a13e894 367static int x_noop_count;
dc6f92b8 368
7a13e894 369/* Initial values of argv and argc. */
06a2c219 370
7a13e894
RS
371extern char **initial_argv;
372extern int initial_argc;
dc6f92b8 373
7a13e894 374extern Lisp_Object Vcommand_line_args, Vsystem_name;
dc6f92b8 375
06a2c219 376/* Tells if a window manager is present or not. */
7a13e894
RS
377
378extern Lisp_Object Vx_no_window_manager;
dc6f92b8 379
c2df547c 380extern Lisp_Object Qface, Qmouse_face;
b8009dd1 381
dc6f92b8
JB
382extern int errno;
383
dfeccd2d 384/* A mask of extra modifier bits to put into every keyboard char. */
06a2c219 385
31ade731 386extern EMACS_INT extra_keyboard_modifiers;
64bb1782 387
98659da6
KG
388/* The keysyms to use for the various modifiers. */
389
390Lisp_Object Vx_alt_keysym, Vx_hyper_keysym, Vx_meta_keysym, Vx_super_keysym;
391static Lisp_Object Qalt, Qhyper, Qmeta, Qsuper, Qmodifier_value;
392
59e755be
KH
393static Lisp_Object Qvendor_specific_keysyms;
394
952291d9
GM
395extern XrmDatabase x_load_resources P_ ((Display *, char *, char *, char *));
396extern Lisp_Object x_icon_type P_ ((struct frame *));
c32cdd9a 397
7a13e894 398
06a2c219
GM
399/* Enumeration for overriding/changing the face to use for drawing
400 glyphs in x_draw_glyphs. */
401
402enum draw_glyphs_face
403{
404 DRAW_NORMAL_TEXT,
405 DRAW_INVERSE_VIDEO,
406 DRAW_CURSOR,
407 DRAW_MOUSE_FACE,
408 DRAW_IMAGE_RAISED,
409 DRAW_IMAGE_SUNKEN
410};
411
b7f83f9e 412static int cursor_in_mouse_face_p P_ ((struct window *));
fa262c07 413static int clear_mouse_face P_ ((struct x_display_info *));
651f03b6 414static int x_alloc_nearest_color_1 P_ ((Display *, Colormap, XColor *));
499b1844 415static void x_set_window_size_1 P_ ((struct frame *, int, int, int));
651f03b6 416static const XColor *x_color_cells P_ ((Display *, int *));
71b8321e 417static void x_update_window_end P_ ((struct window *, int, int));
06a2c219
GM
418static void frame_to_window_pixel_xy P_ ((struct window *, int *, int *));
419void x_delete_display P_ ((struct x_display_info *));
420static unsigned int x_x_to_emacs_modifiers P_ ((struct x_display_info *,
421 unsigned));
422static int fast_find_position P_ ((struct window *, int, int *, int *,
7e376260 423 int *, int *, Lisp_Object));
f9db2310
GM
424static int fast_find_string_pos P_ ((struct window *, int, Lisp_Object,
425 int *, int *, int *, int *, int));
06a2c219
GM
426static void set_output_cursor P_ ((struct cursor_pos *));
427static struct glyph *x_y_to_hpos_vpos P_ ((struct window *, int, int,
f9db2310 428 int *, int *, int *, int));
06a2c219 429static void note_mode_line_highlight P_ ((struct window *, int, int));
06a2c219 430static void note_mouse_highlight P_ ((struct frame *, int, int));
9ea173e8
GM
431static void note_tool_bar_highlight P_ ((struct frame *f, int, int));
432static void x_handle_tool_bar_click P_ ((struct frame *, XButtonEvent *));
06a2c219
GM
433static void show_mouse_face P_ ((struct x_display_info *,
434 enum draw_glyphs_face));
435static int x_io_error_quitter P_ ((Display *));
436int x_catch_errors P_ ((Display *));
437void x_uncatch_errors P_ ((Display *, int));
438void x_lower_frame P_ ((struct frame *));
439void x_scroll_bar_clear P_ ((struct frame *));
440int x_had_errors_p P_ ((Display *));
441void x_wm_set_size_hint P_ ((struct frame *, long, int));
442void x_raise_frame P_ ((struct frame *));
443void x_set_window_size P_ ((struct frame *, int, int, int));
444void x_wm_set_window_state P_ ((struct frame *, int));
445void x_wm_set_icon_pixmap P_ ((struct frame *, int));
446void x_initialize P_ ((void));
447static void x_font_min_bounds P_ ((XFontStruct *, int *, int *));
448static int x_compute_min_glyph_bounds P_ ((struct frame *));
449static void x_draw_phys_cursor_glyph P_ ((struct window *,
450 struct glyph_row *,
451 enum draw_glyphs_face));
452static void x_update_end P_ ((struct frame *));
453static void XTframe_up_to_date P_ ((struct frame *));
06a2c219
GM
454static void XTset_terminal_modes P_ ((void));
455static void XTreset_terminal_modes P_ ((void));
456static void XTcursor_to P_ ((int, int, int, int));
457static void x_write_glyphs P_ ((struct glyph *, int));
458static void x_clear_end_of_line P_ ((int));
459static void x_clear_frame P_ ((void));
460static void x_clear_cursor P_ ((struct window *));
461static void frame_highlight P_ ((struct frame *));
462static void frame_unhighlight P_ ((struct frame *));
463static void x_new_focus_frame P_ ((struct x_display_info *, struct frame *));
464static void XTframe_rehighlight P_ ((struct frame *));
465static void x_frame_rehighlight P_ ((struct x_display_info *));
466static void x_draw_hollow_cursor P_ ((struct window *, struct glyph_row *));
f02d8aa0 467static void x_draw_bar_cursor P_ ((struct window *, struct glyph_row *, int));
06a2c219
GM
468static int x_intersect_rectangles P_ ((XRectangle *, XRectangle *,
469 XRectangle *));
470static void expose_frame P_ ((struct frame *, int, int, int, int));
82f053ab 471static int expose_window_tree P_ ((struct window *, XRectangle *));
a39202f6 472static int expose_window P_ ((struct window *, XRectangle *));
06a2c219
GM
473static void expose_area P_ ((struct window *, struct glyph_row *,
474 XRectangle *, enum glyph_row_area));
82f053ab 475static int expose_line P_ ((struct window *, struct glyph_row *,
06a2c219
GM
476 XRectangle *));
477static void x_update_cursor_in_window_tree P_ ((struct window *, int));
478static void x_update_window_cursor P_ ((struct window *, int));
479static void x_erase_phys_cursor P_ ((struct window *));
480void x_display_and_set_cursor P_ ((struct window *, int, int, int, int, int));
3f332ef3 481static void x_draw_fringe_bitmap P_ ((struct window *, struct glyph_row *,
976b73d7 482 enum fringe_bitmap_type, int left_p));
06a2c219
GM
483
484static void x_clip_to_row P_ ((struct window *, struct glyph_row *,
485 GC, int));
486static int x_phys_cursor_in_rect_p P_ ((struct window *, XRectangle *));
3f332ef3 487static void x_draw_row_fringe_bitmaps P_ ((struct window *, struct glyph_row *));
60626bab
GM
488static void notice_overwritten_cursor P_ ((struct window *, enum glyph_row_area,
489 int, int, int, int));
06a2c219 490static void x_flush P_ ((struct frame *f));
952291d9
GM
491static void x_update_begin P_ ((struct frame *));
492static void x_update_window_begin P_ ((struct window *));
493static void x_draw_vertical_border P_ ((struct window *));
494static void x_after_update_window_line P_ ((struct glyph_row *));
495static INLINE void take_vertical_position_into_account P_ ((struct it *));
496static void x_produce_stretch_glyph P_ ((struct it *));
b52b65bd
GM
497static struct scroll_bar *x_window_to_scroll_bar P_ ((Window));
498static void x_scroll_bar_report_motion P_ ((struct frame **, Lisp_Object *,
499 enum scroll_bar_part *,
500 Lisp_Object *, Lisp_Object *,
501 unsigned long *));
d0fa3e56
EZ
502static void x_check_fullscreen P_ ((struct frame *));
503static void x_check_fullscreen_move P_ ((struct frame *));
06a2c219
GM
504
505/* Flush display of frame F, or of all frames if F is null. */
506
507static void
508x_flush (f)
509 struct frame *f;
510{
511 BLOCK_INPUT;
512 if (f == NULL)
513 {
514 Lisp_Object rest, frame;
515 FOR_EACH_FRAME (rest, frame)
516 x_flush (XFRAME (frame));
517 }
518 else if (FRAME_X_P (f))
519 XFlush (FRAME_X_DISPLAY (f));
520 UNBLOCK_INPUT;
521}
522
dc6f92b8 523
06a2c219
GM
524/* Remove calls to XFlush by defining XFlush to an empty replacement.
525 Calls to XFlush should be unnecessary because the X output buffer
526 is flushed automatically as needed by calls to XPending,
527 XNextEvent, or XWindowEvent according to the XFlush man page.
528 XTread_socket calls XPending. Removing XFlush improves
529 performance. */
530
531#define XFlush(DISPLAY) (void) 0
b8009dd1 532
334208b7 533\f
06a2c219
GM
534/***********************************************************************
535 Debugging
536 ***********************************************************************/
537
9382638d 538#if 0
06a2c219
GM
539
540/* This is a function useful for recording debugging information about
541 the sequence of occurrences in this file. */
9382638d
KH
542
543struct record
544{
545 char *locus;
546 int type;
547};
548
549struct record event_record[100];
550
551int event_record_index;
552
553record_event (locus, type)
554 char *locus;
555 int type;
556{
557 if (event_record_index == sizeof (event_record) / sizeof (struct record))
558 event_record_index = 0;
559
560 event_record[event_record_index].locus = locus;
561 event_record[event_record_index].type = type;
562 event_record_index++;
563}
564
565#endif /* 0 */
06a2c219
GM
566
567
9382638d 568\f
334208b7
RS
569/* Return the struct x_display_info corresponding to DPY. */
570
571struct x_display_info *
572x_display_info_for_display (dpy)
573 Display *dpy;
574{
575 struct x_display_info *dpyinfo;
576
577 for (dpyinfo = x_display_list; dpyinfo; dpyinfo = dpyinfo->next)
578 if (dpyinfo->display == dpy)
579 return dpyinfo;
16bd92ea 580
334208b7
RS
581 return 0;
582}
f451eb13 583
06a2c219
GM
584
585\f
586/***********************************************************************
587 Starting and ending an update
588 ***********************************************************************/
589
590/* Start an update of frame F. This function is installed as a hook
591 for update_begin, i.e. it is called when update_begin is called.
592 This function is called prior to calls to x_update_window_begin for
593 each window being updated. Currently, there is nothing to do here
594 because all interesting stuff is done on a window basis. */
dc6f92b8 595
dfcf069d 596static void
06a2c219 597x_update_begin (f)
f676886a 598 struct frame *f;
58769bee 599{
06a2c219
GM
600 /* Nothing to do. */
601}
dc6f92b8 602
dc6f92b8 603
06a2c219
GM
604/* Start update of window W. Set the global variable updated_window
605 to the window being updated and set output_cursor to the cursor
606 position of W. */
dc6f92b8 607
06a2c219
GM
608static void
609x_update_window_begin (w)
610 struct window *w;
611{
612 struct frame *f = XFRAME (WINDOW_FRAME (w));
613 struct x_display_info *display_info = FRAME_X_DISPLAY_INFO (f);
614
615 updated_window = w;
616 set_output_cursor (&w->cursor);
b8009dd1 617
06a2c219 618 BLOCK_INPUT;
d1bc4182 619
06a2c219 620 if (f == display_info->mouse_face_mouse_frame)
b8009dd1 621 {
514e4681 622 /* Don't do highlighting for mouse motion during the update. */
06a2c219 623 display_info->mouse_face_defer = 1;
37c2c98b 624
06a2c219
GM
625 /* If F needs to be redrawn, simply forget about any prior mouse
626 highlighting. */
9f67f20b 627 if (FRAME_GARBAGED_P (f))
06a2c219
GM
628 display_info->mouse_face_window = Qnil;
629
64f26cf5
GM
630#if 0 /* Rows in a current matrix containing glyphs in mouse-face have
631 their mouse_face_p flag set, which means that they are always
632 unequal to rows in a desired matrix which never have that
633 flag set. So, rows containing mouse-face glyphs are never
634 scrolled, and we don't have to switch the mouse highlight off
635 here to prevent it from being scrolled. */
636
06a2c219
GM
637 /* Can we tell that this update does not affect the window
638 where the mouse highlight is? If so, no need to turn off.
639 Likewise, don't do anything if the frame is garbaged;
640 in that case, the frame's current matrix that we would use
641 is all wrong, and we will redisplay that line anyway. */
642 if (!NILP (display_info->mouse_face_window)
643 && w == XWINDOW (display_info->mouse_face_window))
514e4681 644 {
06a2c219 645 int i;
514e4681 646
06a2c219
GM
647 for (i = 0; i < w->desired_matrix->nrows; ++i)
648 if (MATRIX_ROW_ENABLED_P (w->desired_matrix, i))
514e4681
RS
649 break;
650
06a2c219
GM
651 if (i < w->desired_matrix->nrows)
652 clear_mouse_face (display_info);
514e4681 653 }
64f26cf5 654#endif /* 0 */
b8009dd1 655 }
6ccf47d1 656
dc6f92b8
JB
657 UNBLOCK_INPUT;
658}
659
06a2c219
GM
660
661/* Draw a vertical window border to the right of window W if W doesn't
662 have vertical scroll bars. */
663
dfcf069d 664static void
06a2c219
GM
665x_draw_vertical_border (w)
666 struct window *w;
58769bee 667{
06a2c219
GM
668 struct frame *f = XFRAME (WINDOW_FRAME (w));
669
670 /* Redraw borders between horizontally adjacent windows. Don't
671 do it for frames with vertical scroll bars because either the
672 right scroll bar of a window, or the left scroll bar of its
673 neighbor will suffice as a border. */
674 if (!WINDOW_RIGHTMOST_P (w)
675 && !FRAME_HAS_VERTICAL_SCROLL_BARS (f))
676 {
677 int x0, x1, y0, y1;
dc6f92b8 678
06a2c219 679 window_box_edges (w, -1, &x0, &y0, &x1, &y1);
3f332ef3 680 x1 += FRAME_X_RIGHT_FRINGE_WIDTH (f);
06a2c219
GM
681 y1 -= 1;
682
683 XDrawLine (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
684 f->output_data.x->normal_gc, x1, y0, x1, y1);
685 }
686}
687
688
71b8321e
GM
689/* End update of window W (which is equal to updated_window).
690
691 Draw vertical borders between horizontally adjacent windows, and
692 display W's cursor if CURSOR_ON_P is non-zero.
693
694 MOUSE_FACE_OVERWRITTEN_P non-zero means that some row containing
695 glyphs in mouse-face were overwritten. In that case we have to
696 make sure that the mouse-highlight is properly redrawn.
697
698 W may be a menu bar pseudo-window in case we don't have X toolkit
699 support. Such windows don't have a cursor, so don't display it
700 here. */
06a2c219
GM
701
702static void
71b8321e 703x_update_window_end (w, cursor_on_p, mouse_face_overwritten_p)
06a2c219 704 struct window *w;
71b8321e 705 int cursor_on_p, mouse_face_overwritten_p;
06a2c219 706{
140330de
GM
707 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (XFRAME (w->frame));
708
06a2c219
GM
709 if (!w->pseudo_window_p)
710 {
711 BLOCK_INPUT;
71b8321e 712
06a2c219
GM
713 if (cursor_on_p)
714 x_display_and_set_cursor (w, 1, output_cursor.hpos,
715 output_cursor.vpos,
716 output_cursor.x, output_cursor.y);
71b8321e 717
06a2c219
GM
718 x_draw_vertical_border (w);
719 UNBLOCK_INPUT;
720 }
721
140330de
GM
722 /* If a row with mouse-face was overwritten, arrange for
723 XTframe_up_to_date to redisplay the mouse highlight. */
724 if (mouse_face_overwritten_p)
725 {
726 dpyinfo->mouse_face_beg_row = dpyinfo->mouse_face_beg_col = -1;
727 dpyinfo->mouse_face_end_row = dpyinfo->mouse_face_end_col = -1;
728 dpyinfo->mouse_face_window = Qnil;
729 }
730
06a2c219
GM
731 updated_window = NULL;
732}
dc6f92b8 733
dc6f92b8 734
06a2c219
GM
735/* End update of frame F. This function is installed as a hook in
736 update_end. */
737
738static void
739x_update_end (f)
740 struct frame *f;
741{
742 /* Mouse highlight may be displayed again. */
aa8bff2e 743 FRAME_X_DISPLAY_INFO (f)->mouse_face_defer = 0;
b8009dd1 744
06a2c219 745 BLOCK_INPUT;
334208b7 746 XFlush (FRAME_X_DISPLAY (f));
dc6f92b8
JB
747 UNBLOCK_INPUT;
748}
b8009dd1 749
06a2c219
GM
750
751/* This function is called from various places in xdisp.c whenever a
752 complete update has been performed. The global variable
753 updated_window is not available here. */
b8009dd1 754
dfcf069d 755static void
b8009dd1 756XTframe_up_to_date (f)
06a2c219 757 struct frame *f;
b8009dd1 758{
06a2c219 759 if (FRAME_X_P (f))
514e4681 760 {
06a2c219 761 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
71b8321e 762
06a2c219
GM
763 if (dpyinfo->mouse_face_deferred_gc
764 || f == dpyinfo->mouse_face_mouse_frame)
765 {
766 BLOCK_INPUT;
767 if (dpyinfo->mouse_face_mouse_frame)
768 note_mouse_highlight (dpyinfo->mouse_face_mouse_frame,
769 dpyinfo->mouse_face_mouse_x,
770 dpyinfo->mouse_face_mouse_y);
771 dpyinfo->mouse_face_deferred_gc = 0;
772 UNBLOCK_INPUT;
773 }
514e4681 774 }
b8009dd1 775}
06a2c219
GM
776
777
778/* Draw truncation mark bitmaps, continuation mark bitmaps, overlay
3f332ef3 779 arrow bitmaps, or clear the fringes if no bitmaps are required
06a2c219
GM
780 before DESIRED_ROW is made current. The window being updated is
781 found in updated_window. This function It is called from
782 update_window_line only if it is known that there are differences
783 between bitmaps to be drawn between current row and DESIRED_ROW. */
784
785static void
786x_after_update_window_line (desired_row)
787 struct glyph_row *desired_row;
788{
789 struct window *w = updated_window;
ef253080 790 struct frame *f;
259cf6bc 791 int width, height;
06a2c219
GM
792
793 xassert (w);
794
795 if (!desired_row->mode_line_p && !w->pseudo_window_p)
796 {
797 BLOCK_INPUT;
3f332ef3 798 x_draw_row_fringe_bitmaps (w, desired_row);
ef253080
GM
799 UNBLOCK_INPUT;
800 }
801
802 /* When a window has disappeared, make sure that no rest of
803 full-width rows stays visible in the internal border. Could
804 check here if updated_window is the leftmost/rightmost window,
805 but I guess it's not worth doing since vertically split windows
806 are almost never used, internal border is rarely set, and the
807 overhead is very small. */
808 if (windows_or_buffers_changed
809 && desired_row->full_width_p
810 && (f = XFRAME (w->frame),
811 width = FRAME_INTERNAL_BORDER_WIDTH (f),
259cf6bc
GM
812 width != 0)
813 && (height = desired_row->visible_height,
814 height > 0))
ef253080 815 {
ef253080 816 int y = WINDOW_TO_FRAME_PIXEL_Y (w, max (0, desired_row->y));
06a2c219 817
ef253080
GM
818 /* Internal border is drawn below the tool bar. */
819 if (WINDOWP (f->tool_bar_window)
820 && w == XWINDOW (f->tool_bar_window))
821 y -= width;
06a2c219 822
ef253080
GM
823 BLOCK_INPUT;
824 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
825 0, y, width, height, False);
826 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
827 f->output_data.x->pixel_width - width,
828 y, width, height, False);
06a2c219
GM
829 UNBLOCK_INPUT;
830 }
831}
832
833
3f332ef3 834/* Draw the bitmap WHICH in one of the left or right fringes of
06a2c219
GM
835 window W. ROW is the glyph row for which to display the bitmap; it
836 determines the vertical position at which the bitmap has to be
837 drawn. */
838
839static void
976b73d7 840x_draw_fringe_bitmap (w, row, which, left_p)
06a2c219
GM
841 struct window *w;
842 struct glyph_row *row;
3f332ef3 843 enum fringe_bitmap_type which;
976b73d7 844 int left_p;
06a2c219
GM
845{
846 struct frame *f = XFRAME (WINDOW_FRAME (w));
847 Display *display = FRAME_X_DISPLAY (f);
848 Window window = FRAME_X_WINDOW (f);
849 int x, y, wd, h, dy;
976b73d7 850 int b1, b2;
06a2c219
GM
851 unsigned char *bits;
852 Pixmap pixmap;
853 GC gc = f->output_data.x->normal_gc;
854 struct face *face;
855 int depth = DefaultDepthOfScreen (FRAME_X_SCREEN (f));
856
857 /* Must clip because of partially visible lines. */
858 x_clip_to_row (w, row, gc, 1);
859
976b73d7
KS
860 /* Convert row to frame coordinates. */
861 y = WINDOW_TO_FRAME_PIXEL_Y (w, row->y);
862
06a2c219
GM
863 switch (which)
864 {
976b73d7
KS
865 case NO_FRINGE_BITMAP:
866 wd = 0;
867 h = 0;
868 break;
869
06a2c219
GM
870 case LEFT_TRUNCATION_BITMAP:
871 wd = left_width;
872 h = left_height;
873 bits = left_bits;
06a2c219
GM
874 break;
875
876 case OVERLAY_ARROW_BITMAP:
976b73d7
KS
877 wd = ov_width;
878 h = ov_height;
06a2c219 879 bits = ov_bits;
06a2c219
GM
880 break;
881
882 case RIGHT_TRUNCATION_BITMAP:
883 wd = right_width;
884 h = right_height;
885 bits = right_bits;
06a2c219
GM
886 break;
887
888 case CONTINUED_LINE_BITMAP:
976b73d7
KS
889 wd = continued_width;
890 h = continued_height;
06a2c219 891 bits = continued_bits;
06a2c219
GM
892 break;
893
894 case CONTINUATION_LINE_BITMAP:
895 wd = continuation_width;
896 h = continuation_height;
897 bits = continuation_bits;
06a2c219
GM
898 break;
899
900 case ZV_LINE_BITMAP:
901 wd = zv_width;
976b73d7
KS
902 h = zv_height - (y % zv_period);
903 bits = zv_bits + (y % zv_period);
06a2c219
GM
904 break;
905
906 default:
907 abort ();
908 }
909
976b73d7
KS
910 /* Clip bitmap if too high. */
911 if (h > row->height)
912 h = row->height;
913
914 /* Set dy to the offset in the row to start drawing the bitmap. */
06a2c219
GM
915 dy = (row->height - h) / 2;
916
976b73d7
KS
917 face = FACE_FROM_ID (f, FRINGE_FACE_ID);
918 PREPARE_FACE_FOR_DISPLAY (f, face);
919
920 /* Clear left fringe if no bitmap to draw or if bitmap doesn't fill
921 the fringe. */
dbdc9702 922 b1 = b2 = -1;
976b73d7
KS
923 if (left_p)
924 {
925 if (wd > FRAME_X_LEFT_FRINGE_WIDTH (f))
926 wd = FRAME_X_LEFT_FRINGE_WIDTH (f);
927 x = (WINDOW_TO_FRAME_PIXEL_X (w, 0)
928 - wd
929 - (FRAME_X_LEFT_FRINGE_WIDTH (f) - wd) / 2);
930 if (wd < FRAME_X_LEFT_FRINGE_WIDTH (f) || row->height > h)
931 {
932 /* If W has a vertical border to its left, don't draw over it. */
933 int border = ((XFASTINT (w->left) > 0
934 && !FRAME_HAS_VERTICAL_SCROLL_BARS (f))
935 ? 1 : 0);
936 b1 = (window_box_left (w, -1)
937 - FRAME_X_LEFT_FRINGE_WIDTH (f)
938 + border);
939 b2 = (FRAME_X_LEFT_FRINGE_WIDTH (f) - border);
940 }
941 }
942 else
943 {
944 if (wd > FRAME_X_RIGHT_FRINGE_WIDTH (f))
945 wd = FRAME_X_RIGHT_FRINGE_WIDTH (f);
946 x = (window_box_right (w, -1)
947 + (FRAME_X_RIGHT_FRINGE_WIDTH (f) - wd) / 2);
948 /* Clear right fringe if no bitmap to draw of if bitmap doesn't fill
949 the fringe. */
950 if (wd < FRAME_X_RIGHT_FRINGE_WIDTH (f) || row->height > h)
951 {
952 b1 = window_box_right (w, -1);
953 b2 = FRAME_X_RIGHT_FRINGE_WIDTH (f);
954 }
955 }
956
957 if (b1 >= 0)
958 {
959 int header_line_height = WINDOW_DISPLAY_HEADER_LINE_HEIGHT (w);
960
961 /* In case the same realized face is used for fringes and
962 for something displayed in the text (e.g. face `region' on
963 mono-displays, the fill style may have been changed to
964 FillSolid in x_draw_glyph_string_background. */
965 if (face->stipple)
966 XSetFillStyle (display, face->gc, FillOpaqueStippled);
967 else
968 XSetForeground (display, face->gc, face->background);
969
970 XFillRectangle (display, window, face->gc,
971 b1,
972 WINDOW_TO_FRAME_PIXEL_Y (w, max (header_line_height,
973 row->y)),
974 b2,
975 row->visible_height);
976 if (!face->stipple)
977 XSetForeground (display, face->gc, face->foreground);
978 }
979
dbdc9702
GM
980 if (which != NO_FRINGE_BITMAP)
981 {
982 /* Draw the bitmap. I believe these small pixmaps can be cached
983 by the server. */
984 pixmap = XCreatePixmapFromBitmapData (display, window, bits, wd, h,
985 face->foreground,
986 face->background, depth);
987 XCopyArea (display, pixmap, window, gc, 0, 0, wd, h, x, y + dy);
988 XFreePixmap (display, pixmap);
989 }
990
06a2c219
GM
991 XSetClipMask (display, gc, None);
992}
993
994
3f332ef3 995/* Draw fringe bitmaps for glyph row ROW on window W. Call this
06a2c219
GM
996 function with input blocked. */
997
998static void
3f332ef3 999x_draw_row_fringe_bitmaps (w, row)
06a2c219
GM
1000 struct window *w;
1001 struct glyph_row *row;
1002{
1003 struct frame *f = XFRAME (w->frame);
3f332ef3 1004 enum fringe_bitmap_type bitmap;
06a2c219
GM
1005
1006 xassert (interrupt_input_blocked);
1007
1008 /* If row is completely invisible, because of vscrolling, we
1009 don't have to draw anything. */
1010 if (row->visible_height <= 0)
1011 return;
1012
976b73d7
KS
1013 if (FRAME_X_LEFT_FRINGE_WIDTH (f) != 0)
1014 {
1015 /* Decide which bitmap to draw in the left fringe. */
1016 if (row->overlay_arrow_p)
1017 bitmap = OVERLAY_ARROW_BITMAP;
1018 else if (row->truncated_on_left_p)
1019 bitmap = LEFT_TRUNCATION_BITMAP;
1020 else if (MATRIX_ROW_CONTINUATION_LINE_P (row))
1021 bitmap = CONTINUATION_LINE_BITMAP;
1022 else if (row->indicate_empty_line_p)
1023 bitmap = ZV_LINE_BITMAP;
dcd08bfb 1024 else
976b73d7 1025 bitmap = NO_FRINGE_BITMAP;
06a2c219 1026
976b73d7
KS
1027 x_draw_fringe_bitmap (w, row, bitmap, 1);
1028 }
06a2c219 1029
976b73d7 1030 if (FRAME_X_RIGHT_FRINGE_WIDTH (f) != 0)
06a2c219 1031 {
976b73d7
KS
1032 /* Decide which bitmap to draw in the right fringe. */
1033 if (row->truncated_on_right_p)
1034 bitmap = RIGHT_TRUNCATION_BITMAP;
1035 else if (row->continued_p)
1036 bitmap = CONTINUED_LINE_BITMAP;
1037 else if (row->indicate_empty_line_p && FRAME_X_LEFT_FRINGE_WIDTH (f) == 0)
1038 bitmap = ZV_LINE_BITMAP;
dcd08bfb 1039 else
976b73d7 1040 bitmap = NO_FRINGE_BITMAP;
06a2c219 1041
976b73d7
KS
1042 x_draw_fringe_bitmap (w, row, bitmap, 0);
1043 }
06a2c219
GM
1044}
1045
dc6f92b8 1046\f
06a2c219
GM
1047
1048/* This is called when starting Emacs and when restarting after
1049 suspend. When starting Emacs, no X window is mapped. And nothing
1050 must be done to Emacs's own window if it is suspended (though that
1051 rarely happens). */
dc6f92b8 1052
dfcf069d 1053static void
dc6f92b8
JB
1054XTset_terminal_modes ()
1055{
1056}
1057
06a2c219
GM
1058/* This is called when exiting or suspending Emacs. Exiting will make
1059 the X-windows go away, and suspending requires no action. */
dc6f92b8 1060
dfcf069d 1061static void
dc6f92b8
JB
1062XTreset_terminal_modes ()
1063{
dc6f92b8 1064}
06a2c219
GM
1065
1066
dc6f92b8 1067\f
06a2c219
GM
1068/***********************************************************************
1069 Output Cursor
1070 ***********************************************************************/
1071
1072/* Set the global variable output_cursor to CURSOR. All cursor
1073 positions are relative to updated_window. */
dc6f92b8 1074
dfcf069d 1075static void
06a2c219
GM
1076set_output_cursor (cursor)
1077 struct cursor_pos *cursor;
dc6f92b8 1078{
06a2c219
GM
1079 output_cursor.hpos = cursor->hpos;
1080 output_cursor.vpos = cursor->vpos;
1081 output_cursor.x = cursor->x;
1082 output_cursor.y = cursor->y;
1083}
1084
1085
1086/* Set a nominal cursor position.
dc6f92b8 1087
06a2c219
GM
1088 HPOS and VPOS are column/row positions in a window glyph matrix. X
1089 and Y are window text area relative pixel positions.
1090
1091 If this is done during an update, updated_window will contain the
1092 window that is being updated and the position is the future output
1093 cursor position for that window. If updated_window is null, use
1094 selected_window and display the cursor at the given position. */
1095
1096static void
1097XTcursor_to (vpos, hpos, y, x)
1098 int vpos, hpos, y, x;
1099{
1100 struct window *w;
1101
1102 /* If updated_window is not set, work on selected_window. */
1103 if (updated_window)
1104 w = updated_window;
1105 else
1106 w = XWINDOW (selected_window);
dbcb258a 1107
06a2c219
GM
1108 /* Set the output cursor. */
1109 output_cursor.hpos = hpos;
1110 output_cursor.vpos = vpos;
1111 output_cursor.x = x;
1112 output_cursor.y = y;
dc6f92b8 1113
06a2c219
GM
1114 /* If not called as part of an update, really display the cursor.
1115 This will also set the cursor position of W. */
1116 if (updated_window == NULL)
dc6f92b8
JB
1117 {
1118 BLOCK_INPUT;
06a2c219 1119 x_display_cursor (w, 1, hpos, vpos, x, y);
b86bd3dd 1120 XFlush (FRAME_X_DISPLAY (SELECTED_FRAME ()));
dc6f92b8
JB
1121 UNBLOCK_INPUT;
1122 }
1123}
dc43ef94 1124
06a2c219
GM
1125
1126\f
1127/***********************************************************************
1128 Display Iterator
1129 ***********************************************************************/
1130
1131/* Function prototypes of this page. */
1132
1133static struct face *x_get_glyph_face_and_encoding P_ ((struct frame *,
1134 struct glyph *,
ee569018
KH
1135 XChar2b *,
1136 int *));
06a2c219
GM
1137static struct face *x_get_char_face_and_encoding P_ ((struct frame *, int,
1138 int, XChar2b *, int));
1139static XCharStruct *x_per_char_metric P_ ((XFontStruct *, XChar2b *));
1140static void x_encode_char P_ ((int, XChar2b *, struct font_info *));
1141static void x_append_glyph P_ ((struct it *));
b4192550 1142static void x_append_composite_glyph P_ ((struct it *));
06a2c219
GM
1143static void x_append_stretch_glyph P_ ((struct it *it, Lisp_Object,
1144 int, int, double));
1145static void x_produce_glyphs P_ ((struct it *));
06a2c219 1146static void x_produce_image_glyph P_ ((struct it *it));
ee569018
KH
1147
1148
e2ef8ee6
GM
1149/* Get metrics of character CHAR2B in FONT. Value is null if CHAR2B
1150 is not contained in the font. */
dc43ef94 1151
06a2c219 1152static INLINE XCharStruct *
ee569018 1153x_per_char_metric (font, char2b)
06a2c219
GM
1154 XFontStruct *font;
1155 XChar2b *char2b;
1156{
1157 /* The result metric information. */
1158 XCharStruct *pcm = NULL;
dc6f92b8 1159
06a2c219 1160 xassert (font && char2b);
dc6f92b8 1161
06a2c219 1162 if (font->per_char != NULL)
dc6f92b8 1163 {
06a2c219 1164 if (font->min_byte1 == 0 && font->max_byte1 == 0)
dc43ef94 1165 {
06a2c219
GM
1166 /* min_char_or_byte2 specifies the linear character index
1167 corresponding to the first element of the per_char array,
1168 max_char_or_byte2 is the index of the last character. A
1169 character with non-zero CHAR2B->byte1 is not in the font.
1170 A character with byte2 less than min_char_or_byte2 or
1171 greater max_char_or_byte2 is not in the font. */
1172 if (char2b->byte1 == 0
1173 && char2b->byte2 >= font->min_char_or_byte2
1174 && char2b->byte2 <= font->max_char_or_byte2)
1175 pcm = font->per_char + char2b->byte2 - font->min_char_or_byte2;
dc43ef94 1176 }
06a2c219 1177 else
dc6f92b8 1178 {
06a2c219
GM
1179 /* If either min_byte1 or max_byte1 are nonzero, both
1180 min_char_or_byte2 and max_char_or_byte2 are less than
1181 256, and the 2-byte character index values corresponding
1182 to the per_char array element N (counting from 0) are:
1183
1184 byte1 = N/D + min_byte1
1185 byte2 = N\D + min_char_or_byte2
1186
1187 where:
1188
1189 D = max_char_or_byte2 - min_char_or_byte2 + 1
1190 / = integer division
1191 \ = integer modulus */
1192 if (char2b->byte1 >= font->min_byte1
1193 && char2b->byte1 <= font->max_byte1
1194 && char2b->byte2 >= font->min_char_or_byte2
1195 && char2b->byte2 <= font->max_char_or_byte2)
1196 {
1197 pcm = (font->per_char
1198 + ((font->max_char_or_byte2 - font->min_char_or_byte2 + 1)
1199 * (char2b->byte1 - font->min_byte1))
1200 + (char2b->byte2 - font->min_char_or_byte2));
1201 }
dc6f92b8 1202 }
06a2c219
GM
1203 }
1204 else
1205 {
1206 /* If the per_char pointer is null, all glyphs between the first
1207 and last character indexes inclusive have the same
1208 information, as given by both min_bounds and max_bounds. */
1209 if (char2b->byte2 >= font->min_char_or_byte2
1210 && char2b->byte2 <= font->max_char_or_byte2)
1211 pcm = &font->max_bounds;
1212 }
dc6f92b8 1213
ee569018 1214 return ((pcm == NULL
3e71d8f2 1215 || (pcm->width == 0 && (pcm->rbearing - pcm->lbearing) == 0))
ee569018 1216 ? NULL : pcm);
06a2c219 1217}
b73b6aaf 1218
57b03282 1219
06a2c219
GM
1220/* Encode CHAR2B using encoding information from FONT_INFO. CHAR2B is
1221 the two-byte form of C. Encoding is returned in *CHAR2B. */
dc43ef94 1222
06a2c219
GM
1223static INLINE void
1224x_encode_char (c, char2b, font_info)
1225 int c;
1226 XChar2b *char2b;
1227 struct font_info *font_info;
1228{
1229 int charset = CHAR_CHARSET (c);
1230 XFontStruct *font = font_info->font;
1231
1232 /* FONT_INFO may define a scheme by which to encode byte1 and byte2.
1233 This may be either a program in a special encoder language or a
1234 fixed encoding. */
1235 if (font_info->font_encoder)
1236 {
1237 /* It's a program. */
1238 struct ccl_program *ccl = font_info->font_encoder;
1239
1240 if (CHARSET_DIMENSION (charset) == 1)
1241 {
1242 ccl->reg[0] = charset;
1243 ccl->reg[1] = char2b->byte2;
1244 }
1245 else
1246 {
1247 ccl->reg[0] = charset;
1248 ccl->reg[1] = char2b->byte1;
1249 ccl->reg[2] = char2b->byte2;
1250 }
1251
1252 ccl_driver (ccl, NULL, NULL, 0, 0, NULL);
1253
1254 /* We assume that MSBs are appropriately set/reset by CCL
1255 program. */
1256 if (font->max_byte1 == 0) /* 1-byte font */
ee569018 1257 char2b->byte1 = 0, char2b->byte2 = ccl->reg[1];
06a2c219
GM
1258 else
1259 char2b->byte1 = ccl->reg[1], char2b->byte2 = ccl->reg[2];
1260 }
1261 else if (font_info->encoding[charset])
1262 {
1263 /* Fixed encoding scheme. See fontset.h for the meaning of the
1264 encoding numbers. */
1265 int enc = font_info->encoding[charset];
1266
1267 if ((enc == 1 || enc == 2)
1268 && CHARSET_DIMENSION (charset) == 2)
1269 char2b->byte1 |= 0x80;
1270
1271 if (enc == 1 || enc == 3)
1272 char2b->byte2 |= 0x80;
1273 }
1274}
1275
1276
1277/* Get face and two-byte form of character C in face FACE_ID on frame
1278 F. The encoding of C is returned in *CHAR2B. MULTIBYTE_P non-zero
1279 means we want to display multibyte text. Value is a pointer to a
1280 realized face that is ready for display. */
1281
1282static INLINE struct face *
1283x_get_char_face_and_encoding (f, c, face_id, char2b, multibyte_p)
1284 struct frame *f;
1285 int c, face_id;
1286 XChar2b *char2b;
1287 int multibyte_p;
1288{
1289 struct face *face = FACE_FROM_ID (f, face_id);
1290
1291 if (!multibyte_p)
1292 {
1293 /* Unibyte case. We don't have to encode, but we have to make
1294 sure to use a face suitable for unibyte. */
1295 char2b->byte1 = 0;
1296 char2b->byte2 = c;
ee569018
KH
1297 face_id = FACE_FOR_CHAR (f, face, c);
1298 face = FACE_FROM_ID (f, face_id);
06a2c219
GM
1299 }
1300 else if (c < 128 && face_id < BASIC_FACE_ID_SENTINEL)
1301 {
1302 /* Case of ASCII in a face known to fit ASCII. */
1303 char2b->byte1 = 0;
1304 char2b->byte2 = c;
1305 }
1306 else
1307 {
1308 int c1, c2, charset;
1309
1310 /* Split characters into bytes. If c2 is -1 afterwards, C is
1311 really a one-byte character so that byte1 is zero. */
1312 SPLIT_CHAR (c, charset, c1, c2);
1313 if (c2 > 0)
1314 char2b->byte1 = c1, char2b->byte2 = c2;
1315 else
1316 char2b->byte1 = 0, char2b->byte2 = c1;
1317
06a2c219 1318 /* Maybe encode the character in *CHAR2B. */
ee569018 1319 if (face->font != NULL)
06a2c219
GM
1320 {
1321 struct font_info *font_info
1322 = FONT_INFO_FROM_ID (f, face->font_info_id);
1323 if (font_info)
ee569018 1324 x_encode_char (c, char2b, font_info);
06a2c219
GM
1325 }
1326 }
1327
1328 /* Make sure X resources of the face are allocated. */
1329 xassert (face != NULL);
1330 PREPARE_FACE_FOR_DISPLAY (f, face);
1331
1332 return face;
1333}
1334
1335
1336/* Get face and two-byte form of character glyph GLYPH on frame F.
43d120d8 1337 The encoding of GLYPH->u.ch is returned in *CHAR2B. Value is
06a2c219
GM
1338 a pointer to a realized face that is ready for display. */
1339
1340static INLINE struct face *
ee569018 1341x_get_glyph_face_and_encoding (f, glyph, char2b, two_byte_p)
06a2c219
GM
1342 struct frame *f;
1343 struct glyph *glyph;
1344 XChar2b *char2b;
ee569018 1345 int *two_byte_p;
06a2c219
GM
1346{
1347 struct face *face;
1348
1349 xassert (glyph->type == CHAR_GLYPH);
43d120d8 1350 face = FACE_FROM_ID (f, glyph->face_id);
06a2c219 1351
ee569018
KH
1352 if (two_byte_p)
1353 *two_byte_p = 0;
1354
06a2c219
GM
1355 if (!glyph->multibyte_p)
1356 {
1357 /* Unibyte case. We don't have to encode, but we have to make
1358 sure to use a face suitable for unibyte. */
1359 char2b->byte1 = 0;
43d120d8 1360 char2b->byte2 = glyph->u.ch;
06a2c219 1361 }
43d120d8
KH
1362 else if (glyph->u.ch < 128
1363 && glyph->face_id < BASIC_FACE_ID_SENTINEL)
06a2c219
GM
1364 {
1365 /* Case of ASCII in a face known to fit ASCII. */
1366 char2b->byte1 = 0;
43d120d8 1367 char2b->byte2 = glyph->u.ch;
06a2c219
GM
1368 }
1369 else
1370 {
1371 int c1, c2, charset;
1372
1373 /* Split characters into bytes. If c2 is -1 afterwards, C is
1374 really a one-byte character so that byte1 is zero. */
43d120d8 1375 SPLIT_CHAR (glyph->u.ch, charset, c1, c2);
06a2c219
GM
1376 if (c2 > 0)
1377 char2b->byte1 = c1, char2b->byte2 = c2;
1378 else
1379 char2b->byte1 = 0, char2b->byte2 = c1;
1380
1381 /* Maybe encode the character in *CHAR2B. */
1382 if (charset != CHARSET_ASCII)
1383 {
1384 struct font_info *font_info
1385 = FONT_INFO_FROM_ID (f, face->font_info_id);
1386 if (font_info)
1387 {
43d120d8 1388 x_encode_char (glyph->u.ch, char2b, font_info);
ee569018
KH
1389 if (two_byte_p)
1390 *two_byte_p
1391 = ((XFontStruct *) (font_info->font))->max_byte1 > 0;
06a2c219
GM
1392 }
1393 }
1394 }
1395
1396 /* Make sure X resources of the face are allocated. */
1397 xassert (face != NULL);
1398 PREPARE_FACE_FOR_DISPLAY (f, face);
1399 return face;
1400}
1401
1402
1403/* Store one glyph for IT->char_to_display in IT->glyph_row.
1404 Called from x_produce_glyphs when IT->glyph_row is non-null. */
1405
1406static INLINE void
1407x_append_glyph (it)
1408 struct it *it;
1409{
1410 struct glyph *glyph;
1411 enum glyph_row_area area = it->area;
1412
1413 xassert (it->glyph_row);
1414 xassert (it->char_to_display != '\n' && it->char_to_display != '\t');
1415
1416 glyph = it->glyph_row->glyphs[area] + it->glyph_row->used[area];
1417 if (glyph < it->glyph_row->glyphs[area + 1])
1418 {
06a2c219
GM
1419 glyph->charpos = CHARPOS (it->position);
1420 glyph->object = it->object;
88d75730 1421 glyph->pixel_width = it->pixel_width;
06a2c219 1422 glyph->voffset = it->voffset;
88d75730 1423 glyph->type = CHAR_GLYPH;
06a2c219 1424 glyph->multibyte_p = it->multibyte_p;
88d75730
GM
1425 glyph->left_box_line_p = it->start_of_box_run_p;
1426 glyph->right_box_line_p = it->end_of_box_run_p;
66ac4b0e
GM
1427 glyph->overlaps_vertically_p = (it->phys_ascent > it->ascent
1428 || it->phys_descent > it->descent);
88d75730 1429 glyph->padding_p = 0;
ee569018 1430 glyph->glyph_not_available_p = it->glyph_not_available_p;
88d75730
GM
1431 glyph->face_id = it->face_id;
1432 glyph->u.ch = it->char_to_display;
06a2c219
GM
1433 ++it->glyph_row->used[area];
1434 }
1435}
1436
b4192550
KH
1437/* Store one glyph for the composition IT->cmp_id in IT->glyph_row.
1438 Called from x_produce_glyphs when IT->glyph_row is non-null. */
1439
1440static INLINE void
1441x_append_composite_glyph (it)
1442 struct it *it;
1443{
1444 struct glyph *glyph;
1445 enum glyph_row_area area = it->area;
1446
1447 xassert (it->glyph_row);
1448
1449 glyph = it->glyph_row->glyphs[area] + it->glyph_row->used[area];
1450 if (glyph < it->glyph_row->glyphs[area + 1])
1451 {
b4192550
KH
1452 glyph->charpos = CHARPOS (it->position);
1453 glyph->object = it->object;
88d75730 1454 glyph->pixel_width = it->pixel_width;
b4192550 1455 glyph->voffset = it->voffset;
88d75730 1456 glyph->type = COMPOSITE_GLYPH;
b4192550 1457 glyph->multibyte_p = it->multibyte_p;
88d75730
GM
1458 glyph->left_box_line_p = it->start_of_box_run_p;
1459 glyph->right_box_line_p = it->end_of_box_run_p;
b4192550
KH
1460 glyph->overlaps_vertically_p = (it->phys_ascent > it->ascent
1461 || it->phys_descent > it->descent);
88d75730
GM
1462 glyph->padding_p = 0;
1463 glyph->glyph_not_available_p = 0;
1464 glyph->face_id = it->face_id;
1465 glyph->u.cmp_id = it->cmp_id;
b4192550
KH
1466 ++it->glyph_row->used[area];
1467 }
1468}
1469
06a2c219
GM
1470
1471/* Change IT->ascent and IT->height according to the setting of
1472 IT->voffset. */
1473
1474static INLINE void
1475take_vertical_position_into_account (it)
1476 struct it *it;
1477{
1478 if (it->voffset)
1479 {
1480 if (it->voffset < 0)
1481 /* Increase the ascent so that we can display the text higher
1482 in the line. */
1483 it->ascent += abs (it->voffset);
1484 else
1485 /* Increase the descent so that we can display the text lower
1486 in the line. */
1487 it->descent += it->voffset;
1488 }
1489}
1490
1491
1492/* Produce glyphs/get display metrics for the image IT is loaded with.
1493 See the description of struct display_iterator in dispextern.h for
1494 an overview of struct display_iterator. */
1495
1496static void
1497x_produce_image_glyph (it)
1498 struct it *it;
1499{
1500 struct image *img;
1501 struct face *face;
1502
1503 xassert (it->what == IT_IMAGE);
1504
1505 face = FACE_FROM_ID (it->f, it->face_id);
1506 img = IMAGE_FROM_ID (it->f, it->image_id);
1507 xassert (img);
1508
1509 /* Make sure X resources of the face and image are loaded. */
1510 PREPARE_FACE_FOR_DISPLAY (it->f, face);
1511 prepare_image_for_display (it->f, img);
1512
95af8492 1513 it->ascent = it->phys_ascent = image_ascent (img, face);
22d650b8
GM
1514 it->descent = it->phys_descent = img->height + 2 * img->vmargin - it->ascent;
1515 it->pixel_width = img->width + 2 * img->hmargin;
06a2c219
GM
1516
1517 it->nglyphs = 1;
1518
1519 if (face->box != FACE_NO_BOX)
1520 {
ea2ba0d4
KH
1521 if (face->box_line_width > 0)
1522 {
1523 it->ascent += face->box_line_width;
1524 it->descent += face->box_line_width;
1525 }
06a2c219
GM
1526
1527 if (it->start_of_box_run_p)
ea2ba0d4 1528 it->pixel_width += abs (face->box_line_width);
06a2c219 1529 if (it->end_of_box_run_p)
ea2ba0d4 1530 it->pixel_width += abs (face->box_line_width);
06a2c219
GM
1531 }
1532
1533 take_vertical_position_into_account (it);
1534
1535 if (it->glyph_row)
1536 {
1537 struct glyph *glyph;
1538 enum glyph_row_area area = it->area;
1539
1540 glyph = it->glyph_row->glyphs[area] + it->glyph_row->used[area];
1541 if (glyph < it->glyph_row->glyphs[area + 1])
1542 {
06a2c219
GM
1543 glyph->charpos = CHARPOS (it->position);
1544 glyph->object = it->object;
88d75730 1545 glyph->pixel_width = it->pixel_width;
06a2c219 1546 glyph->voffset = it->voffset;
88d75730 1547 glyph->type = IMAGE_GLYPH;
06a2c219 1548 glyph->multibyte_p = it->multibyte_p;
88d75730
GM
1549 glyph->left_box_line_p = it->start_of_box_run_p;
1550 glyph->right_box_line_p = it->end_of_box_run_p;
1551 glyph->overlaps_vertically_p = 0;
1552 glyph->padding_p = 0;
1553 glyph->glyph_not_available_p = 0;
1554 glyph->face_id = it->face_id;
1555 glyph->u.img_id = img->id;
06a2c219
GM
1556 ++it->glyph_row->used[area];
1557 }
1558 }
1559}
1560
1561
1562/* Append a stretch glyph to IT->glyph_row. OBJECT is the source
1563 of the glyph, WIDTH and HEIGHT are the width and height of the
1564 stretch. ASCENT is the percentage/100 of HEIGHT to use for the
1565 ascent of the glyph (0 <= ASCENT <= 1). */
1566
1567static void
1568x_append_stretch_glyph (it, object, width, height, ascent)
1569 struct it *it;
1570 Lisp_Object object;
1571 int width, height;
1572 double ascent;
1573{
1574 struct glyph *glyph;
1575 enum glyph_row_area area = it->area;
1576
1577 xassert (ascent >= 0 && ascent <= 1);
1578
1579 glyph = it->glyph_row->glyphs[area] + it->glyph_row->used[area];
1580 if (glyph < it->glyph_row->glyphs[area + 1])
1581 {
06a2c219
GM
1582 glyph->charpos = CHARPOS (it->position);
1583 glyph->object = object;
88d75730 1584 glyph->pixel_width = width;
06a2c219 1585 glyph->voffset = it->voffset;
88d75730 1586 glyph->type = STRETCH_GLYPH;
06a2c219 1587 glyph->multibyte_p = it->multibyte_p;
88d75730
GM
1588 glyph->left_box_line_p = it->start_of_box_run_p;
1589 glyph->right_box_line_p = it->end_of_box_run_p;
1590 glyph->overlaps_vertically_p = 0;
1591 glyph->padding_p = 0;
1592 glyph->glyph_not_available_p = 0;
1593 glyph->face_id = it->face_id;
1594 glyph->u.stretch.ascent = height * ascent;
1595 glyph->u.stretch.height = height;
06a2c219
GM
1596 ++it->glyph_row->used[area];
1597 }
1598}
1599
1600
1601/* Produce a stretch glyph for iterator IT. IT->object is the value
1602 of the glyph property displayed. The value must be a list
1603 `(space KEYWORD VALUE ...)' with the following KEYWORD/VALUE pairs
1604 being recognized:
1605
1606 1. `:width WIDTH' specifies that the space should be WIDTH *
1607 canonical char width wide. WIDTH may be an integer or floating
1608 point number.
1609
1610 2. `:relative-width FACTOR' specifies that the width of the stretch
1611 should be computed from the width of the first character having the
1612 `glyph' property, and should be FACTOR times that width.
1613
1614 3. `:align-to HPOS' specifies that the space should be wide enough
1615 to reach HPOS, a value in canonical character units.
1616
1617 Exactly one of the above pairs must be present.
1618
1619 4. `:height HEIGHT' specifies that the height of the stretch produced
1620 should be HEIGHT, measured in canonical character units.
1621
269b7745 1622 5. `:relative-height FACTOR' specifies that the height of the
06a2c219
GM
1623 stretch should be FACTOR times the height of the characters having
1624 the glyph property.
1625
1626 Either none or exactly one of 4 or 5 must be present.
1627
1628 6. `:ascent ASCENT' specifies that ASCENT percent of the height
1629 of the stretch should be used for the ascent of the stretch.
1630 ASCENT must be in the range 0 <= ASCENT <= 100. */
1631
1632#define NUMVAL(X) \
1633 ((INTEGERP (X) || FLOATP (X)) \
1634 ? XFLOATINT (X) \
1635 : - 1)
1636
1637
1638static void
1639x_produce_stretch_glyph (it)
1640 struct it *it;
1641{
1642 /* (space :width WIDTH :height HEIGHT. */
3e71d8f2
GM
1643#if GLYPH_DEBUG
1644 extern Lisp_Object Qspace;
1645#endif
1646 extern Lisp_Object QCwidth, QCheight, QCascent;
06a2c219
GM
1647 extern Lisp_Object QCrelative_width, QCrelative_height;
1648 extern Lisp_Object QCalign_to;
1649 Lisp_Object prop, plist;
1650 double width = 0, height = 0, ascent = 0;
1651 struct face *face = FACE_FROM_ID (it->f, it->face_id);
1652 XFontStruct *font = face->font ? face->font : FRAME_FONT (it->f);
1653
1654 PREPARE_FACE_FOR_DISPLAY (it->f, face);
1655
1656 /* List should start with `space'. */
1657 xassert (CONSP (it->object) && EQ (XCAR (it->object), Qspace));
1658 plist = XCDR (it->object);
1659
1660 /* Compute the width of the stretch. */
1661 if (prop = Fplist_get (plist, QCwidth),
1662 NUMVAL (prop) > 0)
1663 /* Absolute width `:width WIDTH' specified and valid. */
1664 width = NUMVAL (prop) * CANON_X_UNIT (it->f);
1665 else if (prop = Fplist_get (plist, QCrelative_width),
1666 NUMVAL (prop) > 0)
1667 {
1668 /* Relative width `:relative-width FACTOR' specified and valid.
1669 Compute the width of the characters having the `glyph'
1670 property. */
1671 struct it it2;
1672 unsigned char *p = BYTE_POS_ADDR (IT_BYTEPOS (*it));
1673
1674 it2 = *it;
1675 if (it->multibyte_p)
1676 {
1677 int maxlen = ((IT_BYTEPOS (*it) >= GPT ? ZV : GPT)
1678 - IT_BYTEPOS (*it));
1679 it2.c = STRING_CHAR_AND_LENGTH (p, maxlen, it2.len);
1680 }
1681 else
1682 it2.c = *p, it2.len = 1;
1683
1684 it2.glyph_row = NULL;
1685 it2.what = IT_CHARACTER;
1686 x_produce_glyphs (&it2);
1687 width = NUMVAL (prop) * it2.pixel_width;
1688 }
1689 else if (prop = Fplist_get (plist, QCalign_to),
1690 NUMVAL (prop) > 0)
1691 width = NUMVAL (prop) * CANON_X_UNIT (it->f) - it->current_x;
1692 else
1693 /* Nothing specified -> width defaults to canonical char width. */
1694 width = CANON_X_UNIT (it->f);
1695
1696 /* Compute height. */
1697 if (prop = Fplist_get (plist, QCheight),
1698 NUMVAL (prop) > 0)
1699 height = NUMVAL (prop) * CANON_Y_UNIT (it->f);
1700 else if (prop = Fplist_get (plist, QCrelative_height),
1701 NUMVAL (prop) > 0)
1702 height = FONT_HEIGHT (font) * NUMVAL (prop);
1703 else
1704 height = FONT_HEIGHT (font);
1705
1706 /* Compute percentage of height used for ascent. If
1707 `:ascent ASCENT' is present and valid, use that. Otherwise,
1708 derive the ascent from the font in use. */
1709 if (prop = Fplist_get (plist, QCascent),
1710 NUMVAL (prop) > 0 && NUMVAL (prop) <= 100)
1711 ascent = NUMVAL (prop) / 100.0;
1712 else
1713 ascent = (double) font->ascent / FONT_HEIGHT (font);
1714
1715 if (width <= 0)
1716 width = 1;
1717 if (height <= 0)
1718 height = 1;
1719
1720 if (it->glyph_row)
1721 {
1722 Lisp_Object object = it->stack[it->sp - 1].string;
1723 if (!STRINGP (object))
1724 object = it->w->buffer;
1725 x_append_stretch_glyph (it, object, width, height, ascent);
1726 }
1727
1728 it->pixel_width = width;
66ac4b0e
GM
1729 it->ascent = it->phys_ascent = height * ascent;
1730 it->descent = it->phys_descent = height - it->ascent;
06a2c219
GM
1731 it->nglyphs = 1;
1732
1733 if (face->box != FACE_NO_BOX)
1734 {
ea2ba0d4
KH
1735 if (face->box_line_width > 0)
1736 {
1737 it->ascent += face->box_line_width;
1738 it->descent += face->box_line_width;
1739 }
06a2c219
GM
1740
1741 if (it->start_of_box_run_p)
ea2ba0d4 1742 it->pixel_width += abs (face->box_line_width);
06a2c219 1743 if (it->end_of_box_run_p)
ea2ba0d4 1744 it->pixel_width += abs (face->box_line_width);
06a2c219
GM
1745 }
1746
1747 take_vertical_position_into_account (it);
1748}
1749
b4192550
KH
1750/* Return proper value to be used as baseline offset of font that has
1751 ASCENT and DESCENT to draw characters by the font at the vertical
1752 center of the line of frame F.
1753
1754 Here, out task is to find the value of BOFF in the following figure;
1755
1756 -------------------------+-----------+-
1757 -+-+---------+-+ | |
1758 | | | | | |
1759 | | | | F_ASCENT F_HEIGHT
1760 | | | ASCENT | |
1761 HEIGHT | | | | |
1762 | | |-|-+------+-----------|------- baseline
1763 | | | | BOFF | |
1764 | |---------|-+-+ | |
1765 | | | DESCENT | |
1766 -+-+---------+-+ F_DESCENT |
1767 -------------------------+-----------+-
1768
1769 -BOFF + DESCENT + (F_HEIGHT - HEIGHT) / 2 = F_DESCENT
1770 BOFF = DESCENT + (F_HEIGHT - HEIGHT) / 2 - F_DESCENT
1771 DESCENT = FONT->descent
1772 HEIGHT = FONT_HEIGHT (FONT)
1773 F_DESCENT = (F->output_data.x->font->descent
1774 - F->output_data.x->baseline_offset)
1775 F_HEIGHT = FRAME_LINE_HEIGHT (F)
1776*/
1777
458f45fa
KH
1778#define VCENTER_BASELINE_OFFSET(FONT, F) \
1779 ((FONT)->descent \
1780 + (FRAME_LINE_HEIGHT ((F)) - FONT_HEIGHT ((FONT)) \
1781 + (FRAME_LINE_HEIGHT ((F)) > FONT_HEIGHT ((FONT)))) / 2 \
1782 - ((F)->output_data.x->font->descent - (F)->output_data.x->baseline_offset))
06a2c219
GM
1783
1784/* Produce glyphs/get display metrics for the display element IT is
1785 loaded with. See the description of struct display_iterator in
1786 dispextern.h for an overview of struct display_iterator. */
1787
1788static void
1789x_produce_glyphs (it)
1790 struct it *it;
1791{
ee569018
KH
1792 it->glyph_not_available_p = 0;
1793
06a2c219
GM
1794 if (it->what == IT_CHARACTER)
1795 {
1796 XChar2b char2b;
1797 XFontStruct *font;
ee569018 1798 struct face *face = FACE_FROM_ID (it->f, it->face_id);
06a2c219 1799 XCharStruct *pcm;
06a2c219 1800 int font_not_found_p;
b4192550
KH
1801 struct font_info *font_info;
1802 int boff; /* baseline offset */
a4249304
KH
1803 /* We may change it->multibyte_p upon unibyte<->multibyte
1804 conversion. So, save the current value now and restore it
1805 later.
1806
1807 Note: It seems that we don't have to record multibyte_p in
1808 struct glyph because the character code itself tells if or
1809 not the character is multibyte. Thus, in the future, we must
1810 consider eliminating the field `multibyte_p' in the struct
c347a1c3 1811 glyph. */
a4249304 1812 int saved_multibyte_p = it->multibyte_p;
06a2c219 1813
ee569018
KH
1814 /* Maybe translate single-byte characters to multibyte, or the
1815 other way. */
06a2c219 1816 it->char_to_display = it->c;
ee569018 1817 if (!ASCII_BYTE_P (it->c))
06a2c219 1818 {
ee569018
KH
1819 if (unibyte_display_via_language_environment
1820 && SINGLE_BYTE_CHAR_P (it->c)
1821 && (it->c >= 0240
1822 || !NILP (Vnonascii_translation_table)))
1823 {
1824 it->char_to_display = unibyte_char_to_multibyte (it->c);
a4249304 1825 it->multibyte_p = 1;
ee569018
KH
1826 it->face_id = FACE_FOR_CHAR (it->f, face, it->char_to_display);
1827 face = FACE_FROM_ID (it->f, it->face_id);
1828 }
1829 else if (!SINGLE_BYTE_CHAR_P (it->c)
1830 && !it->multibyte_p)
1831 {
c347a1c3 1832 it->multibyte_p = 1;
ee569018
KH
1833 it->face_id = FACE_FOR_CHAR (it->f, face, it->char_to_display);
1834 face = FACE_FROM_ID (it->f, it->face_id);
1835 }
06a2c219
GM
1836 }
1837
ee569018
KH
1838 /* Get font to use. Encode IT->char_to_display. */
1839 x_get_char_face_and_encoding (it->f, it->char_to_display,
1840 it->face_id, &char2b,
1841 it->multibyte_p);
06a2c219
GM
1842 font = face->font;
1843
1844 /* When no suitable font found, use the default font. */
1845 font_not_found_p = font == NULL;
1846 if (font_not_found_p)
b4192550
KH
1847 {
1848 font = FRAME_FONT (it->f);
1849 boff = it->f->output_data.x->baseline_offset;
1850 font_info = NULL;
1851 }
1852 else
1853 {
1854 font_info = FONT_INFO_FROM_ID (it->f, face->font_info_id);
1855 boff = font_info->baseline_offset;
1856 if (font_info->vertical_centering)
1857 boff = VCENTER_BASELINE_OFFSET (font, it->f) - boff;
1858 }
06a2c219
GM
1859
1860 if (it->char_to_display >= ' '
1861 && (!it->multibyte_p || it->char_to_display < 128))
1862 {
1863 /* Either unibyte or ASCII. */
1864 int stretched_p;
1865
1866 it->nglyphs = 1;
06a2c219
GM
1867
1868 pcm = x_per_char_metric (font, &char2b);
b4192550
KH
1869 it->ascent = font->ascent + boff;
1870 it->descent = font->descent - boff;
474848ac
GM
1871
1872 if (pcm)
1873 {
1874 it->phys_ascent = pcm->ascent + boff;
1875 it->phys_descent = pcm->descent - boff;
1876 it->pixel_width = pcm->width;
1877 }
1878 else
1879 {
1880 it->glyph_not_available_p = 1;
1881 it->phys_ascent = font->ascent + boff;
1882 it->phys_descent = font->descent - boff;
1883 it->pixel_width = FONT_WIDTH (font);
1884 }
06a2c219
GM
1885
1886 /* If this is a space inside a region of text with
1887 `space-width' property, change its width. */
1888 stretched_p = it->char_to_display == ' ' && !NILP (it->space_width);
1889 if (stretched_p)
1890 it->pixel_width *= XFLOATINT (it->space_width);
1891
1892 /* If face has a box, add the box thickness to the character
1893 height. If character has a box line to the left and/or
1894 right, add the box line width to the character's width. */
1895 if (face->box != FACE_NO_BOX)
1896 {
1897 int thick = face->box_line_width;
1898
ea2ba0d4
KH
1899 if (thick > 0)
1900 {
1901 it->ascent += thick;
1902 it->descent += thick;
1903 }
1904 else
1905 thick = -thick;
1906
06a2c219
GM
1907 if (it->start_of_box_run_p)
1908 it->pixel_width += thick;
1909 if (it->end_of_box_run_p)
1910 it->pixel_width += thick;
1911 }
1912
1913 /* If face has an overline, add the height of the overline
1914 (1 pixel) and a 1 pixel margin to the character height. */
1915 if (face->overline_p)
1916 it->ascent += 2;
1917
1918 take_vertical_position_into_account (it);
1919
1920 /* If we have to actually produce glyphs, do it. */
1921 if (it->glyph_row)
1922 {
1923 if (stretched_p)
1924 {
1925 /* Translate a space with a `space-width' property
1926 into a stretch glyph. */
1927 double ascent = (double) font->ascent / FONT_HEIGHT (font);
1928 x_append_stretch_glyph (it, it->object, it->pixel_width,
1929 it->ascent + it->descent, ascent);
1930 }
1931 else
1932 x_append_glyph (it);
1933
1934 /* If characters with lbearing or rbearing are displayed
1935 in this line, record that fact in a flag of the
1936 glyph row. This is used to optimize X output code. */
1c7e22fd 1937 if (pcm && (pcm->lbearing < 0 || pcm->rbearing > pcm->width))
06a2c219
GM
1938 it->glyph_row->contains_overlapping_glyphs_p = 1;
1939 }
1940 }
1941 else if (it->char_to_display == '\n')
1942 {
1943 /* A newline has no width but we need the height of the line. */
1944 it->pixel_width = 0;
1945 it->nglyphs = 0;
b4192550
KH
1946 it->ascent = it->phys_ascent = font->ascent + boff;
1947 it->descent = it->phys_descent = font->descent - boff;
06a2c219 1948
ea2ba0d4
KH
1949 if (face->box != FACE_NO_BOX
1950 && face->box_line_width > 0)
06a2c219 1951 {
ea2ba0d4
KH
1952 it->ascent += face->box_line_width;
1953 it->descent += face->box_line_width;
06a2c219
GM
1954 }
1955 }
1956 else if (it->char_to_display == '\t')
1957 {
1958 int tab_width = it->tab_width * CANON_X_UNIT (it->f);
d365f5bb 1959 int x = it->current_x + it->continuation_lines_width;
06a2c219 1960 int next_tab_x = ((1 + x + tab_width - 1) / tab_width) * tab_width;
2a32b5ea
GM
1961
1962 /* If the distance from the current position to the next tab
1963 stop is less than a canonical character width, use the
1964 tab stop after that. */
1965 if (next_tab_x - x < CANON_X_UNIT (it->f))
1966 next_tab_x += tab_width;
06a2c219
GM
1967
1968 it->pixel_width = next_tab_x - x;
1969 it->nglyphs = 1;
b4192550
KH
1970 it->ascent = it->phys_ascent = font->ascent + boff;
1971 it->descent = it->phys_descent = font->descent - boff;
06a2c219
GM
1972
1973 if (it->glyph_row)
1974 {
1975 double ascent = (double) it->ascent / (it->ascent + it->descent);
1976 x_append_stretch_glyph (it, it->object, it->pixel_width,
1977 it->ascent + it->descent, ascent);
1978 }
1979 }
1980 else
1981 {
1982 /* A multi-byte character. Assume that the display width of the
1983 character is the width of the character multiplied by the
b4192550 1984 width of the font. */
06a2c219 1985
b4192550
KH
1986 /* If we found a font, this font should give us the right
1987 metrics. If we didn't find a font, use the frame's
1988 default font and calculate the width of the character
1989 from the charset width; this is what old redisplay code
1990 did. */
1991 pcm = x_per_char_metric (font, &char2b);
ee569018
KH
1992 if (font_not_found_p || !pcm)
1993 {
1994 int charset = CHAR_CHARSET (it->char_to_display);
1995
1996 it->glyph_not_available_p = 1;
1997 it->pixel_width = (FONT_WIDTH (FRAME_FONT (it->f))
1998 * CHARSET_WIDTH (charset));
1999 it->phys_ascent = font->ascent + boff;
2000 it->phys_descent = font->descent - boff;
2001 }
2002 else
2003 {
2004 it->pixel_width = pcm->width;
2005 it->phys_ascent = pcm->ascent + boff;
2006 it->phys_descent = pcm->descent - boff;
2007 if (it->glyph_row
2008 && (pcm->lbearing < 0
2009 || pcm->rbearing > pcm->width))
2010 it->glyph_row->contains_overlapping_glyphs_p = 1;
2011 }
b4192550
KH
2012 it->nglyphs = 1;
2013 it->ascent = font->ascent + boff;
2014 it->descent = font->descent - boff;
06a2c219
GM
2015 if (face->box != FACE_NO_BOX)
2016 {
2017 int thick = face->box_line_width;
ea2ba0d4
KH
2018
2019 if (thick > 0)
2020 {
2021 it->ascent += thick;
2022 it->descent += thick;
2023 }
2024 else
2025 thick = - thick;
06a2c219
GM
2026
2027 if (it->start_of_box_run_p)
2028 it->pixel_width += thick;
2029 if (it->end_of_box_run_p)
2030 it->pixel_width += thick;
2031 }
2032
2033 /* If face has an overline, add the height of the overline
2034 (1 pixel) and a 1 pixel margin to the character height. */
2035 if (face->overline_p)
2036 it->ascent += 2;
2037
2038 take_vertical_position_into_account (it);
2039
2040 if (it->glyph_row)
2041 x_append_glyph (it);
2042 }
a4249304 2043 it->multibyte_p = saved_multibyte_p;
06a2c219 2044 }
b4192550
KH
2045 else if (it->what == IT_COMPOSITION)
2046 {
2047 /* Note: A composition is represented as one glyph in the
2048 glyph matrix. There are no padding glyphs. */
2049 XChar2b char2b;
2050 XFontStruct *font;
ee569018 2051 struct face *face = FACE_FROM_ID (it->f, it->face_id);
b4192550
KH
2052 XCharStruct *pcm;
2053 int font_not_found_p;
2054 struct font_info *font_info;
2055 int boff; /* baseline offset */
2056 struct composition *cmp = composition_table[it->cmp_id];
2057
2058 /* Maybe translate single-byte characters to multibyte. */
2059 it->char_to_display = it->c;
2060 if (unibyte_display_via_language_environment
2061 && SINGLE_BYTE_CHAR_P (it->c)
2062 && (it->c >= 0240
2063 || (it->c >= 0200
2064 && !NILP (Vnonascii_translation_table))))
2065 {
2066 it->char_to_display = unibyte_char_to_multibyte (it->c);
b4192550
KH
2067 }
2068
2069 /* Get face and font to use. Encode IT->char_to_display. */
ee569018
KH
2070 it->face_id = FACE_FOR_CHAR (it->f, face, it->char_to_display);
2071 face = FACE_FROM_ID (it->f, it->face_id);
2072 x_get_char_face_and_encoding (it->f, it->char_to_display,
2073 it->face_id, &char2b, it->multibyte_p);
b4192550
KH
2074 font = face->font;
2075
2076 /* When no suitable font found, use the default font. */
2077 font_not_found_p = font == NULL;
2078 if (font_not_found_p)
2079 {
2080 font = FRAME_FONT (it->f);
2081 boff = it->f->output_data.x->baseline_offset;
2082 font_info = NULL;
2083 }
2084 else
2085 {
2086 font_info = FONT_INFO_FROM_ID (it->f, face->font_info_id);
2087 boff = font_info->baseline_offset;
2088 if (font_info->vertical_centering)
2089 boff = VCENTER_BASELINE_OFFSET (font, it->f) - boff;
2090 }
2091
2092 /* There are no padding glyphs, so there is only one glyph to
2093 produce for the composition. Important is that pixel_width,
2094 ascent and descent are the values of what is drawn by
2095 draw_glyphs (i.e. the values of the overall glyphs composed). */
2096 it->nglyphs = 1;
2097
2098 /* If we have not yet calculated pixel size data of glyphs of
2099 the composition for the current face font, calculate them
2100 now. Theoretically, we have to check all fonts for the
2101 glyphs, but that requires much time and memory space. So,
2102 here we check only the font of the first glyph. This leads
2103 to incorrect display very rarely, and C-l (recenter) can
2104 correct the display anyway. */
2105 if (cmp->font != (void *) font)
2106 {
2107 /* Ascent and descent of the font of the first character of
2108 this composition (adjusted by baseline offset). Ascent
2109 and descent of overall glyphs should not be less than
2110 them respectively. */
2111 int font_ascent = font->ascent + boff;
2112 int font_descent = font->descent - boff;
2113 /* Bounding box of the overall glyphs. */
2114 int leftmost, rightmost, lowest, highest;
329bed06 2115 int i, width, ascent, descent;
b4192550
KH
2116
2117 cmp->font = (void *) font;
2118
2119 /* Initialize the bounding box. */
1bdeec2e
KH
2120 if (font_info
2121 && (pcm = x_per_char_metric (font, &char2b)))
329bed06
GM
2122 {
2123 width = pcm->width;
2124 ascent = pcm->ascent;
2125 descent = pcm->descent;
2126 }
2127 else
2128 {
2129 width = FONT_WIDTH (font);
2130 ascent = font->ascent;
2131 descent = font->descent;
2132 }
2133
2134 rightmost = width;
2135 lowest = - descent + boff;
2136 highest = ascent + boff;
b4192550 2137 leftmost = 0;
329bed06 2138
b4192550
KH
2139 if (font_info
2140 && font_info->default_ascent
2141 && CHAR_TABLE_P (Vuse_default_ascent)
2142 && !NILP (Faref (Vuse_default_ascent,
2143 make_number (it->char_to_display))))
2144 highest = font_info->default_ascent + boff;
2145
2146 /* Draw the first glyph at the normal position. It may be
2147 shifted to right later if some other glyphs are drawn at
2148 the left. */
2149 cmp->offsets[0] = 0;
2150 cmp->offsets[1] = boff;
2151
2152 /* Set cmp->offsets for the remaining glyphs. */
2153 for (i = 1; i < cmp->glyph_len; i++)
2154 {
2155 int left, right, btm, top;
2156 int ch = COMPOSITION_GLYPH (cmp, i);
ee569018
KH
2157 int face_id = FACE_FOR_CHAR (it->f, face, ch);
2158
2159 face = FACE_FROM_ID (it->f, face_id);
2160 x_get_char_face_and_encoding (it->f, ch, face->id, &char2b,
2161 it->multibyte_p);
b4192550
KH
2162 font = face->font;
2163 if (font == NULL)
2164 {
2165 font = FRAME_FONT (it->f);
2166 boff = it->f->output_data.x->baseline_offset;
2167 font_info = NULL;
2168 }
2169 else
2170 {
2171 font_info
2172 = FONT_INFO_FROM_ID (it->f, face->font_info_id);
2173 boff = font_info->baseline_offset;
2174 if (font_info->vertical_centering)
2175 boff = VCENTER_BASELINE_OFFSET (font, it->f) - boff;
2176 }
2177
1bdeec2e
KH
2178 if (font_info
2179 && (pcm = x_per_char_metric (font, &char2b)))
329bed06
GM
2180 {
2181 width = pcm->width;
2182 ascent = pcm->ascent;
2183 descent = pcm->descent;
2184 }
2185 else
2186 {
2187 width = FONT_WIDTH (font);
1bdeec2e
KH
2188 ascent = 1;
2189 descent = 0;
329bed06 2190 }
b4192550
KH
2191
2192 if (cmp->method != COMPOSITION_WITH_RULE_ALTCHARS)
2193 {
2194 /* Relative composition with or without
2195 alternate chars. */
329bed06
GM
2196 left = (leftmost + rightmost - width) / 2;
2197 btm = - descent + boff;
b4192550
KH
2198 if (font_info && font_info->relative_compose
2199 && (! CHAR_TABLE_P (Vignore_relative_composition)
2200 || NILP (Faref (Vignore_relative_composition,
2201 make_number (ch)))))
2202 {
2203
329bed06 2204 if (- descent >= font_info->relative_compose)
b4192550
KH
2205 /* One extra pixel between two glyphs. */
2206 btm = highest + 1;
329bed06 2207 else if (ascent <= 0)
b4192550 2208 /* One extra pixel between two glyphs. */
329bed06 2209 btm = lowest - 1 - ascent - descent;
b4192550
KH
2210 }
2211 }
2212 else
2213 {
2214 /* A composition rule is specified by an integer
2215 value that encodes global and new reference
2216 points (GREF and NREF). GREF and NREF are
2217 specified by numbers as below:
2218
2219 0---1---2 -- ascent
2220 | |
2221 | |
2222 | |
2223 9--10--11 -- center
2224 | |
2225 ---3---4---5--- baseline
2226 | |
2227 6---7---8 -- descent
2228 */
2229 int rule = COMPOSITION_RULE (cmp, i);
2230 int gref, nref, grefx, grefy, nrefx, nrefy;
2231
2232 COMPOSITION_DECODE_RULE (rule, gref, nref);
2233 grefx = gref % 3, nrefx = nref % 3;
2234 grefy = gref / 3, nrefy = nref / 3;
2235
2236 left = (leftmost
2237 + grefx * (rightmost - leftmost) / 2
329bed06 2238 - nrefx * width / 2);
b4192550
KH
2239 btm = ((grefy == 0 ? highest
2240 : grefy == 1 ? 0
2241 : grefy == 2 ? lowest
2242 : (highest + lowest) / 2)
329bed06
GM
2243 - (nrefy == 0 ? ascent + descent
2244 : nrefy == 1 ? descent - boff
b4192550 2245 : nrefy == 2 ? 0
329bed06 2246 : (ascent + descent) / 2));
b4192550
KH
2247 }
2248
2249 cmp->offsets[i * 2] = left;
329bed06 2250 cmp->offsets[i * 2 + 1] = btm + descent;
b4192550
KH
2251
2252 /* Update the bounding box of the overall glyphs. */
329bed06
GM
2253 right = left + width;
2254 top = btm + descent + ascent;
b4192550
KH
2255 if (left < leftmost)
2256 leftmost = left;
2257 if (right > rightmost)
2258 rightmost = right;
2259 if (top > highest)
2260 highest = top;
2261 if (btm < lowest)
2262 lowest = btm;
2263 }
2264
2265 /* If there are glyphs whose x-offsets are negative,
2266 shift all glyphs to the right and make all x-offsets
2267 non-negative. */
2268 if (leftmost < 0)
2269 {
2270 for (i = 0; i < cmp->glyph_len; i++)
2271 cmp->offsets[i * 2] -= leftmost;
2272 rightmost -= leftmost;
2273 }
2274
2275 cmp->pixel_width = rightmost;
2276 cmp->ascent = highest;
2277 cmp->descent = - lowest;
2278 if (cmp->ascent < font_ascent)
2279 cmp->ascent = font_ascent;
2280 if (cmp->descent < font_descent)
2281 cmp->descent = font_descent;
2282 }
2283
2284 it->pixel_width = cmp->pixel_width;
2285 it->ascent = it->phys_ascent = cmp->ascent;
2286 it->descent = it->phys_descent = cmp->descent;
2287
2288 if (face->box != FACE_NO_BOX)
2289 {
2290 int thick = face->box_line_width;
ea2ba0d4
KH
2291
2292 if (thick > 0)
2293 {
2294 it->ascent += thick;
2295 it->descent += thick;
2296 }
2297 else
2298 thick = - thick;
b4192550
KH
2299
2300 if (it->start_of_box_run_p)
2301 it->pixel_width += thick;
2302 if (it->end_of_box_run_p)
2303 it->pixel_width += thick;
2304 }
2305
2306 /* If face has an overline, add the height of the overline
2307 (1 pixel) and a 1 pixel margin to the character height. */
2308 if (face->overline_p)
2309 it->ascent += 2;
2310
2311 take_vertical_position_into_account (it);
2312
2313 if (it->glyph_row)
2314 x_append_composite_glyph (it);
2315 }
06a2c219
GM
2316 else if (it->what == IT_IMAGE)
2317 x_produce_image_glyph (it);
2318 else if (it->what == IT_STRETCH)
2319 x_produce_stretch_glyph (it);
2320
3017fdd1
GM
2321 /* Accumulate dimensions. Note: can't assume that it->descent > 0
2322 because this isn't true for images with `:ascent 100'. */
2323 xassert (it->ascent >= 0 && it->descent >= 0);
06a2c219
GM
2324 if (it->area == TEXT_AREA)
2325 it->current_x += it->pixel_width;
66ac4b0e 2326
d365f5bb
GM
2327 it->descent += it->extra_line_spacing;
2328
06a2c219
GM
2329 it->max_ascent = max (it->max_ascent, it->ascent);
2330 it->max_descent = max (it->max_descent, it->descent);
66ac4b0e
GM
2331 it->max_phys_ascent = max (it->max_phys_ascent, it->phys_ascent);
2332 it->max_phys_descent = max (it->max_phys_descent, it->phys_descent);
06a2c219
GM
2333}
2334
2335
2336/* Estimate the pixel height of the mode or top line on frame F.
2337 FACE_ID specifies what line's height to estimate. */
2338
2339int
2340x_estimate_mode_line_height (f, face_id)
2341 struct frame *f;
2342 enum face_id face_id;
2343{
43281ee3 2344 int height = FONT_HEIGHT (FRAME_FONT (f));
06a2c219
GM
2345
2346 /* This function is called so early when Emacs starts that the face
2347 cache and mode line face are not yet initialized. */
2348 if (FRAME_FACE_CACHE (f))
2349 {
2350 struct face *face = FACE_FROM_ID (f, face_id);
2351 if (face)
43281ee3
GM
2352 {
2353 if (face->font)
2354 height = FONT_HEIGHT (face->font);
ea2ba0d4
KH
2355 if (face->box_line_width > 0)
2356 height += 2 * face->box_line_width;
43281ee3 2357 }
06a2c219
GM
2358 }
2359
2360 return height;
2361}
2362
2363\f
2364/***********************************************************************
2365 Glyph display
2366 ***********************************************************************/
2367
2368/* A sequence of glyphs to be drawn in the same face.
2369
2370 This data structure is not really completely X specific, so it
2371 could possibly, at least partially, be useful for other systems. It
2372 is currently not part of the external redisplay interface because
2373 it's not clear what other systems will need. */
2374
2375struct glyph_string
2376{
2377 /* X-origin of the string. */
2378 int x;
2379
2380 /* Y-origin and y-position of the base line of this string. */
2381 int y, ybase;
2382
2383 /* The width of the string, not including a face extension. */
2384 int width;
2385
2386 /* The width of the string, including a face extension. */
2387 int background_width;
2388
2389 /* The height of this string. This is the height of the line this
2390 string is drawn in, and can be different from the height of the
2391 font the string is drawn in. */
2392 int height;
2393
2394 /* Number of pixels this string overwrites in front of its x-origin.
2395 This number is zero if the string has an lbearing >= 0; it is
2396 -lbearing, if the string has an lbearing < 0. */
2397 int left_overhang;
2398
2399 /* Number of pixels this string overwrites past its right-most
2400 nominal x-position, i.e. x + width. Zero if the string's
2401 rbearing is <= its nominal width, rbearing - width otherwise. */
2402 int right_overhang;
2403
2404 /* The frame on which the glyph string is drawn. */
2405 struct frame *f;
2406
2407 /* The window on which the glyph string is drawn. */
2408 struct window *w;
2409
2410 /* X display and window for convenience. */
2411 Display *display;
2412 Window window;
2413
2414 /* The glyph row for which this string was built. It determines the
2415 y-origin and height of the string. */
2416 struct glyph_row *row;
2417
2418 /* The area within row. */
2419 enum glyph_row_area area;
2420
2421 /* Characters to be drawn, and number of characters. */
2422 XChar2b *char2b;
2423 int nchars;
2424
06a2c219
GM
2425 /* A face-override for drawing cursors, mouse face and similar. */
2426 enum draw_glyphs_face hl;
2427
2428 /* Face in which this string is to be drawn. */
2429 struct face *face;
2430
2431 /* Font in which this string is to be drawn. */
2432 XFontStruct *font;
2433
2434 /* Font info for this string. */
2435 struct font_info *font_info;
2436
b4192550
KH
2437 /* Non-null means this string describes (part of) a composition.
2438 All characters from char2b are drawn composed. */
2439 struct composition *cmp;
06a2c219
GM
2440
2441 /* Index of this glyph string's first character in the glyph
b4192550
KH
2442 definition of CMP. If this is zero, this glyph string describes
2443 the first character of a composition. */
06a2c219
GM
2444 int gidx;
2445
2446 /* 1 means this glyph strings face has to be drawn to the right end
2447 of the window's drawing area. */
2448 unsigned extends_to_end_of_line_p : 1;
2449
2450 /* 1 means the background of this string has been drawn. */
2451 unsigned background_filled_p : 1;
2452
2453 /* 1 means glyph string must be drawn with 16-bit functions. */
2454 unsigned two_byte_p : 1;
2455
2456 /* 1 means that the original font determined for drawing this glyph
2457 string could not be loaded. The member `font' has been set to
2458 the frame's default font in this case. */
2459 unsigned font_not_found_p : 1;
2460
2461 /* 1 means that the face in which this glyph string is drawn has a
2462 stipple pattern. */
2463 unsigned stippled_p : 1;
2464
66ac4b0e
GM
2465 /* 1 means only the foreground of this glyph string must be drawn,
2466 and we should use the physical height of the line this glyph
2467 string appears in as clip rect. */
2468 unsigned for_overlaps_p : 1;
2469
06a2c219
GM
2470 /* The GC to use for drawing this glyph string. */
2471 GC gc;
2472
2473 /* A pointer to the first glyph in the string. This glyph
2474 corresponds to char2b[0]. Needed to draw rectangles if
2475 font_not_found_p is 1. */
2476 struct glyph *first_glyph;
2477
2478 /* Image, if any. */
2479 struct image *img;
2480
2481 struct glyph_string *next, *prev;
2482};
2483
2484
61869b99 2485#if GLYPH_DEBUG
06a2c219
GM
2486
2487static void
2488x_dump_glyph_string (s)
2489 struct glyph_string *s;
2490{
2491 fprintf (stderr, "glyph string\n");
2492 fprintf (stderr, " x, y, w, h = %d, %d, %d, %d\n",
2493 s->x, s->y, s->width, s->height);
2494 fprintf (stderr, " ybase = %d\n", s->ybase);
2495 fprintf (stderr, " hl = %d\n", s->hl);
2496 fprintf (stderr, " left overhang = %d, right = %d\n",
2497 s->left_overhang, s->right_overhang);
2498 fprintf (stderr, " nchars = %d\n", s->nchars);
2499 fprintf (stderr, " extends to end of line = %d\n",
2500 s->extends_to_end_of_line_p);
2501 fprintf (stderr, " font height = %d\n", FONT_HEIGHT (s->font));
2502 fprintf (stderr, " bg width = %d\n", s->background_width);
2503}
2504
2505#endif /* GLYPH_DEBUG */
2506
2507
2508
2509static void x_append_glyph_string_lists P_ ((struct glyph_string **,
2510 struct glyph_string **,
2511 struct glyph_string *,
2512 struct glyph_string *));
2513static void x_prepend_glyph_string_lists P_ ((struct glyph_string **,
2514 struct glyph_string **,
2515 struct glyph_string *,
2516 struct glyph_string *));
2517static void x_append_glyph_string P_ ((struct glyph_string **,
2518 struct glyph_string **,
2519 struct glyph_string *));
2520static int x_left_overwritten P_ ((struct glyph_string *));
2521static int x_left_overwriting P_ ((struct glyph_string *));
2522static int x_right_overwritten P_ ((struct glyph_string *));
2523static int x_right_overwriting P_ ((struct glyph_string *));
66ac4b0e
GM
2524static int x_fill_glyph_string P_ ((struct glyph_string *, int, int, int,
2525 int));
06a2c219
GM
2526static void x_init_glyph_string P_ ((struct glyph_string *,
2527 XChar2b *, struct window *,
2528 struct glyph_row *,
2529 enum glyph_row_area, int,
2530 enum draw_glyphs_face));
2531static int x_draw_glyphs P_ ((struct window *, int , struct glyph_row *,
2532 enum glyph_row_area, int, int,
f0a48a01 2533 enum draw_glyphs_face, int));
06a2c219
GM
2534static void x_set_glyph_string_clipping P_ ((struct glyph_string *));
2535static void x_set_glyph_string_gc P_ ((struct glyph_string *));
2536static void x_draw_glyph_string_background P_ ((struct glyph_string *,
2537 int));
2538static void x_draw_glyph_string_foreground P_ ((struct glyph_string *));
b4192550 2539static void x_draw_composite_glyph_string_foreground P_ ((struct glyph_string *));
06a2c219
GM
2540static void x_draw_glyph_string_box P_ ((struct glyph_string *));
2541static void x_draw_glyph_string P_ ((struct glyph_string *));
2542static void x_compute_glyph_string_overhangs P_ ((struct glyph_string *));
2543static void x_set_cursor_gc P_ ((struct glyph_string *));
2544static void x_set_mode_line_face_gc P_ ((struct glyph_string *));
2545static void x_set_mouse_face_gc P_ ((struct glyph_string *));
2546static void x_get_glyph_overhangs P_ ((struct glyph *, struct frame *,
2547 int *, int *));
2548static void x_compute_overhangs_and_x P_ ((struct glyph_string *, int, int));
2549static int x_alloc_lighter_color P_ ((struct frame *, Display *, Colormap,
68c45bf0 2550 unsigned long *, double, int));
06a2c219 2551static void x_setup_relief_color P_ ((struct frame *, struct relief *,
68c45bf0 2552 double, int, unsigned long));
06a2c219
GM
2553static void x_setup_relief_colors P_ ((struct glyph_string *));
2554static void x_draw_image_glyph_string P_ ((struct glyph_string *));
2555static void x_draw_image_relief P_ ((struct glyph_string *));
2556static void x_draw_image_foreground P_ ((struct glyph_string *));
2557static void x_draw_image_foreground_1 P_ ((struct glyph_string *, Pixmap));
2558static void x_fill_image_glyph_string P_ ((struct glyph_string *));
2559static void x_clear_glyph_string_rect P_ ((struct glyph_string *, int,
2560 int, int, int));
2561static void x_draw_relief_rect P_ ((struct frame *, int, int, int, int,
2562 int, int, int, int, XRectangle *));
2563static void x_draw_box_rect P_ ((struct glyph_string *, int, int, int, int,
2564 int, int, int, XRectangle *));
66ac4b0e
GM
2565static void x_fix_overlapping_area P_ ((struct window *, struct glyph_row *,
2566 enum glyph_row_area));
209f68d9
GM
2567static int x_fill_stretch_glyph_string P_ ((struct glyph_string *,
2568 struct glyph_row *,
2569 enum glyph_row_area, int, int));
06a2c219 2570
163dcff3
GM
2571#if GLYPH_DEBUG
2572static void x_check_font P_ ((struct frame *, XFontStruct *));
2573#endif
2574
06a2c219 2575
06a2c219
GM
2576/* Append the list of glyph strings with head H and tail T to the list
2577 with head *HEAD and tail *TAIL. Set *HEAD and *TAIL to the result. */
2578
2579static INLINE void
2580x_append_glyph_string_lists (head, tail, h, t)
2581 struct glyph_string **head, **tail;
2582 struct glyph_string *h, *t;
2583{
2584 if (h)
2585 {
2586 if (*head)
2587 (*tail)->next = h;
2588 else
2589 *head = h;
2590 h->prev = *tail;
2591 *tail = t;
2592 }
2593}
2594
2595
2596/* Prepend the list of glyph strings with head H and tail T to the
2597 list with head *HEAD and tail *TAIL. Set *HEAD and *TAIL to the
2598 result. */
2599
2600static INLINE void
2601x_prepend_glyph_string_lists (head, tail, h, t)
2602 struct glyph_string **head, **tail;
2603 struct glyph_string *h, *t;
2604{
2605 if (h)
2606 {
2607 if (*head)
2608 (*head)->prev = t;
2609 else
2610 *tail = t;
2611 t->next = *head;
2612 *head = h;
2613 }
2614}
2615
2616
2617/* Append glyph string S to the list with head *HEAD and tail *TAIL.
2618 Set *HEAD and *TAIL to the resulting list. */
2619
2620static INLINE void
2621x_append_glyph_string (head, tail, s)
2622 struct glyph_string **head, **tail;
2623 struct glyph_string *s;
2624{
2625 s->next = s->prev = NULL;
2626 x_append_glyph_string_lists (head, tail, s, s);
2627}
2628
2629
2630/* Set S->gc to a suitable GC for drawing glyph string S in cursor
2631 face. */
2632
2633static void
2634x_set_cursor_gc (s)
2635 struct glyph_string *s;
2636{
2637 if (s->font == FRAME_FONT (s->f)
2638 && s->face->background == FRAME_BACKGROUND_PIXEL (s->f)
2639 && s->face->foreground == FRAME_FOREGROUND_PIXEL (s->f)
b4192550 2640 && !s->cmp)
06a2c219
GM
2641 s->gc = s->f->output_data.x->cursor_gc;
2642 else
2643 {
2644 /* Cursor on non-default face: must merge. */
2645 XGCValues xgcv;
2646 unsigned long mask;
2647
2648 xgcv.background = s->f->output_data.x->cursor_pixel;
2649 xgcv.foreground = s->face->background;
2650
2651 /* If the glyph would be invisible, try a different foreground. */
2652 if (xgcv.foreground == xgcv.background)
2653 xgcv.foreground = s->face->foreground;
2654 if (xgcv.foreground == xgcv.background)
2655 xgcv.foreground = s->f->output_data.x->cursor_foreground_pixel;
2656 if (xgcv.foreground == xgcv.background)
2657 xgcv.foreground = s->face->foreground;
2658
2659 /* Make sure the cursor is distinct from text in this face. */
2660 if (xgcv.background == s->face->background
2661 && xgcv.foreground == s->face->foreground)
2662 {
2663 xgcv.background = s->face->foreground;
2664 xgcv.foreground = s->face->background;
2665 }
2666
2667 IF_DEBUG (x_check_font (s->f, s->font));
2668 xgcv.font = s->font->fid;
2669 xgcv.graphics_exposures = False;
2670 mask = GCForeground | GCBackground | GCFont | GCGraphicsExposures;
2671
2672 if (FRAME_X_DISPLAY_INFO (s->f)->scratch_cursor_gc)
2673 XChangeGC (s->display, FRAME_X_DISPLAY_INFO (s->f)->scratch_cursor_gc,
2674 mask, &xgcv);
2675 else
2676 FRAME_X_DISPLAY_INFO (s->f)->scratch_cursor_gc
2677 = XCreateGC (s->display, s->window, mask, &xgcv);
2678
2679 s->gc = FRAME_X_DISPLAY_INFO (s->f)->scratch_cursor_gc;
2680 }
2681}
2682
2683
2684/* Set up S->gc of glyph string S for drawing text in mouse face. */
2685
2686static void
2687x_set_mouse_face_gc (s)
2688 struct glyph_string *s;
2689{
2690 int face_id;
ee569018 2691 struct face *face;
06a2c219 2692
e4ded23c 2693 /* What face has to be used last for the mouse face? */
06a2c219 2694 face_id = FRAME_X_DISPLAY_INFO (s->f)->mouse_face_face_id;
ee569018 2695 face = FACE_FROM_ID (s->f, face_id);
e4ded23c
GM
2696 if (face == NULL)
2697 face = FACE_FROM_ID (s->f, MOUSE_FACE_ID);
2698
033e3e18
GM
2699 if (s->first_glyph->type == CHAR_GLYPH)
2700 face_id = FACE_FOR_CHAR (s->f, face, s->first_glyph->u.ch);
2701 else
2702 face_id = FACE_FOR_CHAR (s->f, face, 0);
06a2c219
GM
2703 s->face = FACE_FROM_ID (s->f, face_id);
2704 PREPARE_FACE_FOR_DISPLAY (s->f, s->face);
2705
2706 /* If font in this face is same as S->font, use it. */
2707 if (s->font == s->face->font)
2708 s->gc = s->face->gc;
2709 else
2710 {
2711 /* Otherwise construct scratch_cursor_gc with values from FACE
2712 but font FONT. */
2713 XGCValues xgcv;
2714 unsigned long mask;
2715
2716 xgcv.background = s->face->background;
2717 xgcv.foreground = s->face->foreground;
2718 IF_DEBUG (x_check_font (s->f, s->font));
2719 xgcv.font = s->font->fid;
2720 xgcv.graphics_exposures = False;
2721 mask = GCForeground | GCBackground | GCFont | GCGraphicsExposures;
2722
2723 if (FRAME_X_DISPLAY_INFO (s->f)->scratch_cursor_gc)
2724 XChangeGC (s->display, FRAME_X_DISPLAY_INFO (s->f)->scratch_cursor_gc,
2725 mask, &xgcv);
2726 else
2727 FRAME_X_DISPLAY_INFO (s->f)->scratch_cursor_gc
2728 = XCreateGC (s->display, s->window, mask, &xgcv);
2729
2730 s->gc = FRAME_X_DISPLAY_INFO (s->f)->scratch_cursor_gc;
2731 }
2732
2733 xassert (s->gc != 0);
2734}
2735
2736
2737/* Set S->gc of glyph string S to a GC suitable for drawing a mode line.
2738 Faces to use in the mode line have already been computed when the
2739 matrix was built, so there isn't much to do, here. */
2740
2741static INLINE void
2742x_set_mode_line_face_gc (s)
2743 struct glyph_string *s;
2744{
2745 s->gc = s->face->gc;
06a2c219
GM
2746}
2747
2748
2749/* Set S->gc of glyph string S for drawing that glyph string. Set
2750 S->stippled_p to a non-zero value if the face of S has a stipple
2751 pattern. */
2752
2753static INLINE void
2754x_set_glyph_string_gc (s)
2755 struct glyph_string *s;
2756{
209f68d9
GM
2757 PREPARE_FACE_FOR_DISPLAY (s->f, s->face);
2758
06a2c219
GM
2759 if (s->hl == DRAW_NORMAL_TEXT)
2760 {
2761 s->gc = s->face->gc;
2762 s->stippled_p = s->face->stipple != 0;
2763 }
2764 else if (s->hl == DRAW_INVERSE_VIDEO)
2765 {
2766 x_set_mode_line_face_gc (s);
2767 s->stippled_p = s->face->stipple != 0;
2768 }
2769 else if (s->hl == DRAW_CURSOR)
2770 {
2771 x_set_cursor_gc (s);
2772 s->stippled_p = 0;
2773 }
2774 else if (s->hl == DRAW_MOUSE_FACE)
2775 {
2776 x_set_mouse_face_gc (s);
2777 s->stippled_p = s->face->stipple != 0;
2778 }
2779 else if (s->hl == DRAW_IMAGE_RAISED
2780 || s->hl == DRAW_IMAGE_SUNKEN)
2781 {
2782 s->gc = s->face->gc;
2783 s->stippled_p = s->face->stipple != 0;
2784 }
2785 else
2786 {
2787 s->gc = s->face->gc;
2788 s->stippled_p = s->face->stipple != 0;
2789 }
2790
2791 /* GC must have been set. */
2792 xassert (s->gc != 0);
2793}
2794
2795
2796/* Return in *R the clipping rectangle for glyph string S. */
2797
2798static void
2799x_get_glyph_string_clip_rect (s, r)
2800 struct glyph_string *s;
2801 XRectangle *r;
2802{
2803 if (s->row->full_width_p)
2804 {
2805 /* Draw full-width. X coordinates are relative to S->w->left. */
1da3fd71
GM
2806 int canon_x = CANON_X_UNIT (s->f);
2807
2808 r->x = WINDOW_LEFT_MARGIN (s->w) * canon_x;
2809 r->width = XFASTINT (s->w->width) * canon_x;
06a2c219
GM
2810
2811 if (FRAME_HAS_VERTICAL_SCROLL_BARS (s->f))
2812 {
1da3fd71 2813 int width = FRAME_SCROLL_BAR_WIDTH (s->f) * canon_x;
06a2c219
GM
2814 if (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (s->f))
2815 r->x -= width;
2816 }
2817
b9432a85 2818 r->x += FRAME_INTERNAL_BORDER_WIDTH (s->f);
1da3fd71 2819
06a2c219
GM
2820 /* Unless displaying a mode or menu bar line, which are always
2821 fully visible, clip to the visible part of the row. */
2822 if (s->w->pseudo_window_p)
2823 r->height = s->row->visible_height;
2824 else
2825 r->height = s->height;
2826 }
2827 else
2828 {
2829 /* This is a text line that may be partially visible. */
2830 r->x = WINDOW_AREA_TO_FRAME_PIXEL_X (s->w, s->area, 0);
2831 r->width = window_box_width (s->w, s->area);
2832 r->height = s->row->visible_height;
2833 }
2834
66ac4b0e
GM
2835 /* If S draws overlapping rows, it's sufficient to use the top and
2836 bottom of the window for clipping because this glyph string
2837 intentionally draws over other lines. */
2838 if (s->for_overlaps_p)
2839 {
045dee35 2840 r->y = WINDOW_DISPLAY_HEADER_LINE_HEIGHT (s->w);
66ac4b0e
GM
2841 r->height = window_text_bottom_y (s->w) - r->y;
2842 }
98b8a90f
GM
2843 else
2844 {
2845 /* Don't use S->y for clipping because it doesn't take partially
2846 visible lines into account. For example, it can be negative for
2847 partially visible lines at the top of a window. */
2848 if (!s->row->full_width_p
2849 && MATRIX_ROW_PARTIALLY_VISIBLE_AT_TOP_P (s->w, s->row))
2850 r->y = WINDOW_DISPLAY_HEADER_LINE_HEIGHT (s->w);
2851 else
2852 r->y = max (0, s->row->y);
2853
2854 /* If drawing a tool-bar window, draw it over the internal border
2855 at the top of the window. */
2856 if (s->w == XWINDOW (s->f->tool_bar_window))
2857 r->y -= s->f->output_data.x->internal_border_width;
2858 }
2859
66ac4b0e 2860 r->y = WINDOW_TO_FRAME_PIXEL_Y (s->w, r->y);
06a2c219
GM
2861}
2862
2863
2864/* Set clipping for output of glyph string S. S may be part of a mode
2865 line or menu if we don't have X toolkit support. */
2866
2867static INLINE void
2868x_set_glyph_string_clipping (s)
2869 struct glyph_string *s;
2870{
2871 XRectangle r;
2872 x_get_glyph_string_clip_rect (s, &r);
2873 XSetClipRectangles (s->display, s->gc, 0, 0, &r, 1, Unsorted);
2874}
2875
2876
2877/* Compute left and right overhang of glyph string S. If S is a glyph
b4192550 2878 string for a composition, assume overhangs don't exist. */
06a2c219
GM
2879
2880static INLINE void
2881x_compute_glyph_string_overhangs (s)
2882 struct glyph_string *s;
2883{
b4192550 2884 if (s->cmp == NULL
06a2c219
GM
2885 && s->first_glyph->type == CHAR_GLYPH)
2886 {
2887 XCharStruct cs;
2888 int direction, font_ascent, font_descent;
2889 XTextExtents16 (s->font, s->char2b, s->nchars, &direction,
2890 &font_ascent, &font_descent, &cs);
2891 s->right_overhang = cs.rbearing > cs.width ? cs.rbearing - cs.width : 0;
2892 s->left_overhang = cs.lbearing < 0 ? -cs.lbearing : 0;
2893 }
2894}
2895
2896
2897/* Compute overhangs and x-positions for glyph string S and its
2898 predecessors, or successors. X is the starting x-position for S.
2899 BACKWARD_P non-zero means process predecessors. */
2900
2901static void
2902x_compute_overhangs_and_x (s, x, backward_p)
2903 struct glyph_string *s;
2904 int x;
2905 int backward_p;
2906{
2907 if (backward_p)
2908 {
2909 while (s)
2910 {
2911 x_compute_glyph_string_overhangs (s);
2912 x -= s->width;
2913 s->x = x;
2914 s = s->prev;
2915 }
2916 }
2917 else
2918 {
2919 while (s)
2920 {
2921 x_compute_glyph_string_overhangs (s);
2922 s->x = x;
2923 x += s->width;
2924 s = s->next;
2925 }
2926 }
2927}
2928
2929
2930/* Set *LEFT and *RIGHT to the left and right overhang of GLYPH on
b4192550
KH
2931 frame F. Overhangs of glyphs other than type CHAR_GLYPH are
2932 assumed to be zero. */
06a2c219
GM
2933
2934static void
2935x_get_glyph_overhangs (glyph, f, left, right)
2936 struct glyph *glyph;
2937 struct frame *f;
2938 int *left, *right;
2939{
06a2c219
GM
2940 *left = *right = 0;
2941
b4192550 2942 if (glyph->type == CHAR_GLYPH)
06a2c219
GM
2943 {
2944 XFontStruct *font;
2945 struct face *face;
2946 struct font_info *font_info;
2947 XChar2b char2b;
ee569018
KH
2948 XCharStruct *pcm;
2949
2950 face = x_get_glyph_face_and_encoding (f, glyph, &char2b, NULL);
06a2c219
GM
2951 font = face->font;
2952 font_info = FONT_INFO_FROM_ID (f, face->font_info_id);
ee569018
KH
2953 if (font
2954 && (pcm = x_per_char_metric (font, &char2b)))
06a2c219 2955 {
06a2c219
GM
2956 if (pcm->rbearing > pcm->width)
2957 *right = pcm->rbearing - pcm->width;
2958 if (pcm->lbearing < 0)
2959 *left = -pcm->lbearing;
2960 }
2961 }
2962}
2963
2964
2965/* Return the index of the first glyph preceding glyph string S that
2966 is overwritten by S because of S's left overhang. Value is -1
2967 if no glyphs are overwritten. */
2968
2969static int
2970x_left_overwritten (s)
2971 struct glyph_string *s;
2972{
2973 int k;
2974
2975 if (s->left_overhang)
2976 {
2977 int x = 0, i;
2978 struct glyph *glyphs = s->row->glyphs[s->area];
2979 int first = s->first_glyph - glyphs;
2980
2981 for (i = first - 1; i >= 0 && x > -s->left_overhang; --i)
2982 x -= glyphs[i].pixel_width;
2983
2984 k = i + 1;
2985 }
2986 else
2987 k = -1;
2988
2989 return k;
2990}
2991
2992
2993/* Return the index of the first glyph preceding glyph string S that
2994 is overwriting S because of its right overhang. Value is -1 if no
2995 glyph in front of S overwrites S. */
2996
2997static int
2998x_left_overwriting (s)
2999 struct glyph_string *s;
3000{
3001 int i, k, x;
3002 struct glyph *glyphs = s->row->glyphs[s->area];
3003 int first = s->first_glyph - glyphs;
3004
3005 k = -1;
3006 x = 0;
3007 for (i = first - 1; i >= 0; --i)
3008 {
3009 int left, right;
3010 x_get_glyph_overhangs (glyphs + i, s->f, &left, &right);
3011 if (x + right > 0)
3012 k = i;
3013 x -= glyphs[i].pixel_width;
3014 }
3015
3016 return k;
3017}
3018
3019
3020/* Return the index of the last glyph following glyph string S that is
3021 not overwritten by S because of S's right overhang. Value is -1 if
3022 no such glyph is found. */
3023
3024static int
3025x_right_overwritten (s)
3026 struct glyph_string *s;
3027{
3028 int k = -1;
3029
3030 if (s->right_overhang)
3031 {
3032 int x = 0, i;
3033 struct glyph *glyphs = s->row->glyphs[s->area];
b4192550 3034 int first = (s->first_glyph - glyphs) + (s->cmp ? 1 : s->nchars);
06a2c219
GM
3035 int end = s->row->used[s->area];
3036
3037 for (i = first; i < end && s->right_overhang > x; ++i)
3038 x += glyphs[i].pixel_width;
3039
3040 k = i;
3041 }
3042
3043 return k;
3044}
3045
3046
3047/* Return the index of the last glyph following glyph string S that
3048 overwrites S because of its left overhang. Value is negative
3049 if no such glyph is found. */
3050
3051static int
3052x_right_overwriting (s)
3053 struct glyph_string *s;
3054{
3055 int i, k, x;
3056 int end = s->row->used[s->area];
3057 struct glyph *glyphs = s->row->glyphs[s->area];
b4192550 3058 int first = (s->first_glyph - glyphs) + (s->cmp ? 1 : s->nchars);
06a2c219
GM
3059
3060 k = -1;
3061 x = 0;
3062 for (i = first; i < end; ++i)
3063 {
3064 int left, right;
3065 x_get_glyph_overhangs (glyphs + i, s->f, &left, &right);
3066 if (x - left < 0)
3067 k = i;
3068 x += glyphs[i].pixel_width;
3069 }
3070
3071 return k;
3072}
3073
3074
3075/* Fill rectangle X, Y, W, H with background color of glyph string S. */
3076
3077static INLINE void
3078x_clear_glyph_string_rect (s, x, y, w, h)
3079 struct glyph_string *s;
3080 int x, y, w, h;
3081{
3082 XGCValues xgcv;
3083 XGetGCValues (s->display, s->gc, GCForeground | GCBackground, &xgcv);
3084 XSetForeground (s->display, s->gc, xgcv.background);
3085 XFillRectangle (s->display, s->window, s->gc, x, y, w, h);
3086 XSetForeground (s->display, s->gc, xgcv.foreground);
3087}
3088
3089
3090/* Draw the background of glyph_string S. If S->background_filled_p
3091 is non-zero don't draw it. FORCE_P non-zero means draw the
3092 background even if it wouldn't be drawn normally. This is used
b4192550
KH
3093 when a string preceding S draws into the background of S, or S
3094 contains the first component of a composition. */
06a2c219
GM
3095
3096static void
3097x_draw_glyph_string_background (s, force_p)
3098 struct glyph_string *s;
3099 int force_p;
3100{
3101 /* Nothing to do if background has already been drawn or if it
3102 shouldn't be drawn in the first place. */
3103 if (!s->background_filled_p)
3104 {
ea2ba0d4
KH
3105 int box_line_width = max (s->face->box_line_width, 0);
3106
b4192550 3107 if (s->stippled_p)
06a2c219
GM
3108 {
3109 /* Fill background with a stipple pattern. */
3110 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
3111 XFillRectangle (s->display, s->window, s->gc, s->x,
ea2ba0d4 3112 s->y + box_line_width,
06a2c219 3113 s->background_width,
ea2ba0d4 3114 s->height - 2 * box_line_width);
06a2c219
GM
3115 XSetFillStyle (s->display, s->gc, FillSolid);
3116 s->background_filled_p = 1;
3117 }
ea2ba0d4 3118 else if (FONT_HEIGHT (s->font) < s->height - 2 * box_line_width
06a2c219
GM
3119 || s->font_not_found_p
3120 || s->extends_to_end_of_line_p
06a2c219
GM
3121 || force_p)
3122 {
ea2ba0d4 3123 x_clear_glyph_string_rect (s, s->x, s->y + box_line_width,
06a2c219 3124 s->background_width,
ea2ba0d4 3125 s->height - 2 * box_line_width);
06a2c219
GM
3126 s->background_filled_p = 1;
3127 }
3128 }
3129}
3130
3131
3132/* Draw the foreground of glyph string S. */
3133
3134static void
3135x_draw_glyph_string_foreground (s)
3136 struct glyph_string *s;
3137{
3138 int i, x;
3139
3140 /* If first glyph of S has a left box line, start drawing the text
3141 of S to the right of that box line. */
3142 if (s->face->box != FACE_NO_BOX
3143 && s->first_glyph->left_box_line_p)
ea2ba0d4 3144 x = s->x + abs (s->face->box_line_width);
06a2c219
GM
3145 else
3146 x = s->x;
3147
b4192550
KH
3148 /* Draw characters of S as rectangles if S's font could not be
3149 loaded. */
3150 if (s->font_not_found_p)
06a2c219 3151 {
b4192550 3152 for (i = 0; i < s->nchars; ++i)
06a2c219 3153 {
b4192550
KH
3154 struct glyph *g = s->first_glyph + i;
3155 XDrawRectangle (s->display, s->window,
3156 s->gc, x, s->y, g->pixel_width - 1,
3157 s->height - 1);
3158 x += g->pixel_width;
06a2c219
GM
3159 }
3160 }
3161 else
3162 {
b4192550
KH
3163 char *char1b = (char *) s->char2b;
3164 int boff = s->font_info->baseline_offset;
06a2c219 3165
b4192550
KH
3166 if (s->font_info->vertical_centering)
3167 boff = VCENTER_BASELINE_OFFSET (s->font, s->f) - boff;
3168
3169 /* If we can use 8-bit functions, condense S->char2b. */
3170 if (!s->two_byte_p)
3171 for (i = 0; i < s->nchars; ++i)
3172 char1b[i] = s->char2b[i].byte2;
3173
3174 /* Draw text with XDrawString if background has already been
3175 filled. Otherwise, use XDrawImageString. (Note that
3176 XDrawImageString is usually faster than XDrawString.) Always
3177 use XDrawImageString when drawing the cursor so that there is
3178 no chance that characters under a box cursor are invisible. */
3179 if (s->for_overlaps_p
3180 || (s->background_filled_p && s->hl != DRAW_CURSOR))
3181 {
3182 /* Draw characters with 16-bit or 8-bit functions. */
3183 if (s->two_byte_p)
3184 XDrawString16 (s->display, s->window, s->gc, x,
3185 s->ybase - boff, s->char2b, s->nchars);
3186 else
3187 XDrawString (s->display, s->window, s->gc, x,
3188 s->ybase - boff, char1b, s->nchars);
3189 }
06a2c219
GM
3190 else
3191 {
b4192550
KH
3192 if (s->two_byte_p)
3193 XDrawImageString16 (s->display, s->window, s->gc, x,
3194 s->ybase - boff, s->char2b, s->nchars);
06a2c219 3195 else
b4192550
KH
3196 XDrawImageString (s->display, s->window, s->gc, x,
3197 s->ybase - boff, char1b, s->nchars);
3198 }
3199 }
3200}
06a2c219 3201
b4192550 3202/* Draw the foreground of composite glyph string S. */
06a2c219 3203
b4192550
KH
3204static void
3205x_draw_composite_glyph_string_foreground (s)
3206 struct glyph_string *s;
3207{
3208 int i, x;
06a2c219 3209
b4192550
KH
3210 /* If first glyph of S has a left box line, start drawing the text
3211 of S to the right of that box line. */
3212 if (s->face->box != FACE_NO_BOX
3213 && s->first_glyph->left_box_line_p)
ea2ba0d4 3214 x = s->x + abs (s->face->box_line_width);
b4192550
KH
3215 else
3216 x = s->x;
06a2c219 3217
b4192550
KH
3218 /* S is a glyph string for a composition. S->gidx is the index of
3219 the first character drawn for glyphs of this composition.
3220 S->gidx == 0 means we are drawing the very first character of
3221 this composition. */
06a2c219 3222
b4192550
KH
3223 /* Draw a rectangle for the composition if the font for the very
3224 first character of the composition could not be loaded. */
3225 if (s->font_not_found_p)
3226 {
3227 if (s->gidx == 0)
3228 XDrawRectangle (s->display, s->window, s->gc, x, s->y,
3229 s->width - 1, s->height - 1);
3230 }
3231 else
3232 {
3233 for (i = 0; i < s->nchars; i++, ++s->gidx)
3234 XDrawString16 (s->display, s->window, s->gc,
3235 x + s->cmp->offsets[s->gidx * 2],
3236 s->ybase - s->cmp->offsets[s->gidx * 2 + 1],
3237 s->char2b + i, 1);
06a2c219
GM
3238 }
3239}
3240
3241
80c32bcc
GM
3242#ifdef USE_X_TOOLKIT
3243
3e71d8f2 3244static struct frame *x_frame_of_widget P_ ((Widget));
651f03b6
GM
3245static Boolean cvt_string_to_pixel P_ ((Display *, XrmValue *, Cardinal *,
3246 XrmValue *, XrmValue *, XtPointer *));
3247static void cvt_pixel_dtor P_ ((XtAppContext, XrmValue *, XtPointer,
3248 XrmValue *, Cardinal *));
80c32bcc 3249
3e71d8f2
GM
3250
3251/* Return the frame on which widget WIDGET is used.. Abort if frame
3252 cannot be determined. */
3253
e851c833 3254static struct frame *
3e71d8f2 3255x_frame_of_widget (widget)
80c32bcc 3256 Widget widget;
80c32bcc 3257{
80c32bcc 3258 struct x_display_info *dpyinfo;
5c187dee 3259 Lisp_Object tail;
3e71d8f2
GM
3260 struct frame *f;
3261
80c32bcc
GM
3262 dpyinfo = x_display_info_for_display (XtDisplay (widget));
3263
3264 /* Find the top-level shell of the widget. Note that this function
3265 can be called when the widget is not yet realized, so XtWindow
3266 (widget) == 0. That's the reason we can't simply use
3267 x_any_window_to_frame. */
3268 while (!XtIsTopLevelShell (widget))
3269 widget = XtParent (widget);
3270
3271 /* Look for a frame with that top-level widget. Allocate the color
3272 on that frame to get the right gamma correction value. */
3273 for (tail = Vframe_list; GC_CONSP (tail); tail = XCDR (tail))
3274 if (GC_FRAMEP (XCAR (tail))
3275 && (f = XFRAME (XCAR (tail)),
3276 (f->output_data.nothing != 1
3277 && FRAME_X_DISPLAY_INFO (f) == dpyinfo))
3278 && f->output_data.x->widget == widget)
3e71d8f2 3279 return f;
80c32bcc
GM
3280
3281 abort ();
3282}
3283
3e71d8f2
GM
3284
3285/* Allocate the color COLOR->pixel on the screen and display of
3286 widget WIDGET in colormap CMAP. If an exact match cannot be
3287 allocated, try the nearest color available. Value is non-zero
3288 if successful. This is called from lwlib. */
3289
3290int
3291x_alloc_nearest_color_for_widget (widget, cmap, color)
3292 Widget widget;
3293 Colormap cmap;
3294 XColor *color;
3295{
3296 struct frame *f = x_frame_of_widget (widget);
3297 return x_alloc_nearest_color (f, cmap, color);
3298}
3299
3300
46d516e5
MB
3301/* Allocate a color which is lighter or darker than *PIXEL by FACTOR
3302 or DELTA. Try a color with RGB values multiplied by FACTOR first.
3303 If this produces the same color as PIXEL, try a color where all RGB
3304 values have DELTA added. Return the allocated color in *PIXEL.
3305 DISPLAY is the X display, CMAP is the colormap to operate on.
3306 Value is non-zero if successful. */
3307
3308int
3309x_alloc_lighter_color_for_widget (widget, display, cmap, pixel, factor, delta)
3310 Widget widget;
3311 Display *display;
3312 Colormap cmap;
3313 unsigned long *pixel;
3314 double factor;
3315 int delta;
3316{
3317 struct frame *f = x_frame_of_widget (widget);
3318 return x_alloc_lighter_color (f, display, cmap, pixel, factor, delta);
3319}
3320
3321
651f03b6
GM
3322/* Structure specifying which arguments should be passed by Xt to
3323 cvt_string_to_pixel. We want the widget's screen and colormap. */
3324
3325static XtConvertArgRec cvt_string_to_pixel_args[] =
3326 {
3327 {XtWidgetBaseOffset, (XtPointer) XtOffset (Widget, core.screen),
3328 sizeof (Screen *)},
3329 {XtWidgetBaseOffset, (XtPointer) XtOffset (Widget, core.colormap),
3330 sizeof (Colormap)}
3331 };
3332
3333
3334/* The address of this variable is returned by
3335 cvt_string_to_pixel. */
3336
3337static Pixel cvt_string_to_pixel_value;
3338
3339
3340/* Convert a color name to a pixel color.
3341
3342 DPY is the display we are working on.
3343
3344 ARGS is an array of *NARGS XrmValue structures holding additional
3345 information about the widget for which the conversion takes place.
3346 The contents of this array are determined by the specification
3347 in cvt_string_to_pixel_args.
3348
3349 FROM is a pointer to an XrmValue which points to the color name to
3350 convert. TO is an XrmValue in which to return the pixel color.
3351
3352 CLOSURE_RET is a pointer to user-data, in which we record if
3353 we allocated the color or not.
3354
3355 Value is True if successful, False otherwise. */
3356
3357static Boolean
3358cvt_string_to_pixel (dpy, args, nargs, from, to, closure_ret)
3359 Display *dpy;
3360 XrmValue *args;
3361 Cardinal *nargs;
3362 XrmValue *from, *to;
3363 XtPointer *closure_ret;
3364{
3365 Screen *screen;
3366 Colormap cmap;
3367 Pixel pixel;
3368 String color_name;
3369 XColor color;
3370
3371 if (*nargs != 2)
3372 {
3373 XtAppWarningMsg (XtDisplayToApplicationContext (dpy),
3374 "wrongParameters", "cvt_string_to_pixel",
3375 "XtToolkitError",
3376 "Screen and colormap args required", NULL, NULL);
3377 return False;
3378 }
3379
3380 screen = *(Screen **) args[0].addr;
3381 cmap = *(Colormap *) args[1].addr;
3382 color_name = (String) from->addr;
3383
3384 if (strcmp (color_name, XtDefaultBackground) == 0)
3385 {
3386 *closure_ret = (XtPointer) False;
3387 pixel = WhitePixelOfScreen (screen);
3388 }
3389 else if (strcmp (color_name, XtDefaultForeground) == 0)
3390 {
3391 *closure_ret = (XtPointer) False;
3392 pixel = BlackPixelOfScreen (screen);
3393 }
3394 else if (XParseColor (dpy, cmap, color_name, &color)
3395 && x_alloc_nearest_color_1 (dpy, cmap, &color))
3396 {
3397 pixel = color.pixel;
3398 *closure_ret = (XtPointer) True;
3399 }
3400 else
3401 {
3402 String params[1];
3403 Cardinal nparams = 1;
3404
3405 params[0] = color_name;
3406 XtAppWarningMsg (XtDisplayToApplicationContext (dpy),
3407 "badValue", "cvt_string_to_pixel",
3408 "XtToolkitError", "Invalid color `%s'",
3409 params, &nparams);
3410 return False;
3411 }
3412
3413 if (to->addr != NULL)
3414 {
3415 if (to->size < sizeof (Pixel))
3416 {
3417 to->size = sizeof (Pixel);
3418 return False;
3419 }
3420
3421 *(Pixel *) to->addr = pixel;
3422 }
3423 else
3424 {
3425 cvt_string_to_pixel_value = pixel;
3426 to->addr = (XtPointer) &cvt_string_to_pixel_value;
3427 }
3428
3429 to->size = sizeof (Pixel);
3430 return True;
3431}
3432
3433
3434/* Free a pixel color which was previously allocated via
3435 cvt_string_to_pixel. This is registered as the destructor
3436 for this type of resource via XtSetTypeConverter.
3437
3438 APP is the application context in which we work.
3439
3440 TO is a pointer to an XrmValue holding the color to free.
3441 CLOSURE is the value we stored in CLOSURE_RET for this color
3442 in cvt_string_to_pixel.
3443
3444 ARGS and NARGS are like for cvt_string_to_pixel. */
3445
3446static void
3447cvt_pixel_dtor (app, to, closure, args, nargs)
3448 XtAppContext app;
3449 XrmValuePtr to;
3450 XtPointer closure;
3451 XrmValuePtr args;
3452 Cardinal *nargs;
3453{
3454 if (*nargs != 2)
3455 {
3456 XtAppWarningMsg (app, "wrongParameters", "cvt_pixel_dtor",
3457 "XtToolkitError",
3458 "Screen and colormap arguments required",
3459 NULL, NULL);
3460 }
3461 else if (closure != NULL)
3462 {
3463 /* We did allocate the pixel, so free it. */
3464 Screen *screen = *(Screen **) args[0].addr;
3465 Colormap cmap = *(Colormap *) args[1].addr;
3466 x_free_dpy_colors (DisplayOfScreen (screen), screen, cmap,
97762eb7 3467 (Pixel *) to->addr, 1);
651f03b6
GM
3468 }
3469}
3470
3471
80c32bcc
GM
3472#endif /* USE_X_TOOLKIT */
3473
3474
f04e1297 3475/* Value is an array of XColor structures for the contents of the
651f03b6 3476 color map of display DPY. Set *NCELLS to the size of the array.
f04e1297
GM
3477 Note that this probably shouldn't be called for large color maps,
3478 say a 24-bit TrueColor map. */
3479
3480static const XColor *
651f03b6
GM
3481x_color_cells (dpy, ncells)
3482 Display *dpy;
f04e1297
GM
3483 int *ncells;
3484{
651f03b6 3485 struct x_display_info *dpyinfo = x_display_info_for_display (dpy);
f04e1297
GM
3486
3487 if (dpyinfo->color_cells == NULL)
3488 {
651f03b6 3489 Screen *screen = dpyinfo->screen;
f04e1297
GM
3490 int i;
3491
3492 dpyinfo->ncolor_cells
651f03b6 3493 = XDisplayCells (dpy, XScreenNumberOfScreen (screen));
f04e1297
GM
3494 dpyinfo->color_cells
3495 = (XColor *) xmalloc (dpyinfo->ncolor_cells
3496 * sizeof *dpyinfo->color_cells);
3497
3498 for (i = 0; i < dpyinfo->ncolor_cells; ++i)
3499 dpyinfo->color_cells[i].pixel = i;
3500
651f03b6 3501 XQueryColors (dpy, dpyinfo->cmap,
f04e1297
GM
3502 dpyinfo->color_cells, dpyinfo->ncolor_cells);
3503 }
3504
3505 *ncells = dpyinfo->ncolor_cells;
3506 return dpyinfo->color_cells;
3507}
3508
3509
3510/* On frame F, translate pixel colors to RGB values for the NCOLORS
3511 colors in COLORS. Use cached information, if available. */
3512
3513void
3514x_query_colors (f, colors, ncolors)
3515 struct frame *f;
3516 XColor *colors;
3517 int ncolors;
3518{
3519 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
3520
3521 if (dpyinfo->color_cells)
3522 {
3523 int i;
3524 for (i = 0; i < ncolors; ++i)
3525 {
3526 unsigned long pixel = colors[i].pixel;
3527 xassert (pixel < dpyinfo->ncolor_cells);
3528 xassert (dpyinfo->color_cells[pixel].pixel == pixel);
3529 colors[i] = dpyinfo->color_cells[pixel];
3530 }
3531 }
3532 else
3533 XQueryColors (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f), colors, ncolors);
3534}
3535
3536
3537/* On frame F, translate pixel color to RGB values for the color in
3538 COLOR. Use cached information, if available. */
3539
3540void
3541x_query_color (f, color)
3542 struct frame *f;
3543 XColor *color;
3544{
3545 x_query_colors (f, color, 1);
3546}
3547
3548
651f03b6
GM
3549/* Allocate the color COLOR->pixel on DISPLAY, colormap CMAP. If an
3550 exact match can't be allocated, try the nearest color available.
3551 Value is non-zero if successful. Set *COLOR to the color
3552 allocated. */
06a2c219 3553
651f03b6
GM
3554static int
3555x_alloc_nearest_color_1 (dpy, cmap, color)
3556 Display *dpy;
06a2c219
GM
3557 Colormap cmap;
3558 XColor *color;
3559{
80c32bcc
GM
3560 int rc;
3561
651f03b6 3562 rc = XAllocColor (dpy, cmap, color);
06a2c219
GM
3563 if (rc == 0)
3564 {
3565 /* If we got to this point, the colormap is full, so we're going
3566 to try to get the next closest color. The algorithm used is
3567 a least-squares matching, which is what X uses for closest
3568 color matching with StaticColor visuals. */
3569 int nearest, i;
3570 unsigned long nearest_delta = ~0;
f04e1297 3571 int ncells;
651f03b6 3572 const XColor *cells = x_color_cells (dpy, &ncells);
06a2c219
GM
3573
3574 for (nearest = i = 0; i < ncells; ++i)
3575 {
3576 long dred = (color->red >> 8) - (cells[i].red >> 8);
3577 long dgreen = (color->green >> 8) - (cells[i].green >> 8);
3578 long dblue = (color->blue >> 8) - (cells[i].blue >> 8);
3579 unsigned long delta = dred * dred + dgreen * dgreen + dblue * dblue;
3580
3581 if (delta < nearest_delta)
3582 {
3583 nearest = i;
3584 nearest_delta = delta;
3585 }
3586 }
3587
3588 color->red = cells[nearest].red;
3589 color->green = cells[nearest].green;
3590 color->blue = cells[nearest].blue;
651f03b6 3591 rc = XAllocColor (dpy, cmap, color);
06a2c219 3592 }
35efe0a1
GM
3593 else
3594 {
3595 /* If allocation succeeded, and the allocated pixel color is not
3596 equal to a cached pixel color recorded earlier, there was a
3597 change in the colormap, so clear the color cache. */
651f03b6 3598 struct x_display_info *dpyinfo = x_display_info_for_display (dpy);
35efe0a1
GM
3599 XColor *cached_color;
3600
3601 if (dpyinfo->color_cells
3602 && (cached_color = &dpyinfo->color_cells[color->pixel],
cae71efe
GM
3603 (cached_color->red != color->red
3604 || cached_color->blue != color->blue
3605 || cached_color->green != color->green)))
35efe0a1
GM
3606 {
3607 xfree (dpyinfo->color_cells);
3608 dpyinfo->color_cells = NULL;
3609 dpyinfo->ncolor_cells = 0;
3610 }
3611 }
06a2c219 3612
d9c545da
GM
3613#ifdef DEBUG_X_COLORS
3614 if (rc)
3615 register_color (color->pixel);
3616#endif /* DEBUG_X_COLORS */
3617
06a2c219
GM
3618 return rc;
3619}
3620
3621
651f03b6
GM
3622/* Allocate the color COLOR->pixel on frame F, colormap CMAP. If an
3623 exact match can't be allocated, try the nearest color available.
3624 Value is non-zero if successful. Set *COLOR to the color
3625 allocated. */
3626
3627int
3628x_alloc_nearest_color (f, cmap, color)
3629 struct frame *f;
3630 Colormap cmap;
3631 XColor *color;
3632{
3633 gamma_correct (f, color);
3634 return x_alloc_nearest_color_1 (FRAME_X_DISPLAY (f), cmap, color);
3635}
3636
3637
d9c545da
GM
3638/* Allocate color PIXEL on frame F. PIXEL must already be allocated.
3639 It's necessary to do this instead of just using PIXEL directly to
3640 get color reference counts right. */
3641
3642unsigned long
3643x_copy_color (f, pixel)
3644 struct frame *f;
3645 unsigned long pixel;
3646{
3647 XColor color;
3648
3649 color.pixel = pixel;
3650 BLOCK_INPUT;
f04e1297 3651 x_query_color (f, &color);
d9c545da
GM
3652 XAllocColor (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f), &color);
3653 UNBLOCK_INPUT;
3654#ifdef DEBUG_X_COLORS
3655 register_color (pixel);
3656#endif
3657 return color.pixel;
3658}
3659
3660
3e71d8f2
GM
3661/* Allocate color PIXEL on display DPY. PIXEL must already be allocated.
3662 It's necessary to do this instead of just using PIXEL directly to
3663 get color reference counts right. */
3664
3665unsigned long
3666x_copy_dpy_color (dpy, cmap, pixel)
3667 Display *dpy;
3668 Colormap cmap;
3669 unsigned long pixel;
3670{
3671 XColor color;
3672
3673 color.pixel = pixel;
3674 BLOCK_INPUT;
3675 XQueryColor (dpy, cmap, &color);
3676 XAllocColor (dpy, cmap, &color);
3677 UNBLOCK_INPUT;
3678#ifdef DEBUG_X_COLORS
3679 register_color (pixel);
3680#endif
3681 return color.pixel;
3682}
3683
3684
6d8b0acd 3685/* Brightness beyond which a color won't have its highlight brightness
d7361edf 3686 boosted.
6d8b0acd 3687
d7361edf
MB
3688 Nominally, highlight colors for `3d' faces are calculated by
3689 brightening an object's color by a constant scale factor, but this
3690 doesn't yield good results for dark colors, so for colors who's
3691 brightness is less than this value (on a scale of 0-65535) have an
3692 use an additional additive factor.
6d8b0acd
MB
3693
3694 The value here is set so that the default menu-bar/mode-line color
3695 (grey75) will not have its highlights changed at all. */
3696#define HIGHLIGHT_COLOR_DARK_BOOST_LIMIT 48000
3697
3698
06a2c219
GM
3699/* Allocate a color which is lighter or darker than *PIXEL by FACTOR
3700 or DELTA. Try a color with RGB values multiplied by FACTOR first.
3701 If this produces the same color as PIXEL, try a color where all RGB
3702 values have DELTA added. Return the allocated color in *PIXEL.
3703 DISPLAY is the X display, CMAP is the colormap to operate on.
3704 Value is non-zero if successful. */
3705
3706static int
3707x_alloc_lighter_color (f, display, cmap, pixel, factor, delta)
3708 struct frame *f;
3709 Display *display;
3710 Colormap cmap;
3711 unsigned long *pixel;
68c45bf0 3712 double factor;
06a2c219
GM
3713 int delta;
3714{
3715 XColor color, new;
6d8b0acd 3716 long bright;
06a2c219
GM
3717 int success_p;
3718
3719 /* Get RGB color values. */
3720 color.pixel = *pixel;
f04e1297 3721 x_query_color (f, &color);
06a2c219
GM
3722
3723 /* Change RGB values by specified FACTOR. Avoid overflow! */
3724 xassert (factor >= 0);
3725 new.red = min (0xffff, factor * color.red);
3726 new.green = min (0xffff, factor * color.green);
3727 new.blue = min (0xffff, factor * color.blue);
3728
d7361edf
MB
3729 /* Calculate brightness of COLOR. */
3730 bright = (2 * color.red + 3 * color.green + color.blue) / 6;
6d8b0acd
MB
3731
3732 /* We only boost colors that are darker than
3733 HIGHLIGHT_COLOR_DARK_BOOST_LIMIT. */
3734 if (bright < HIGHLIGHT_COLOR_DARK_BOOST_LIMIT)
3735 /* Make an additive adjustment to NEW, because it's dark enough so
3736 that scaling by FACTOR alone isn't enough. */
3737 {
3738 /* How far below the limit this color is (0 - 1, 1 being darker). */
3739 double dimness = 1 - (double)bright / HIGHLIGHT_COLOR_DARK_BOOST_LIMIT;
3740 /* The additive adjustment. */
d7361edf 3741 int min_delta = delta * dimness * factor / 2;
6d8b0acd
MB
3742
3743 if (factor < 1)
3744 {
6d8b0acd
MB
3745 new.red = max (0, new.red - min_delta);
3746 new.green = max (0, new.green - min_delta);
3747 new.blue = max (0, new.blue - min_delta);
3748 }
3749 else
3750 {
3751 new.red = min (0xffff, min_delta + new.red);
3752 new.green = min (0xffff, min_delta + new.green);
3753 new.blue = min (0xffff, min_delta + new.blue);
3754 }
3755 }
3756
06a2c219 3757 /* Try to allocate the color. */
80c32bcc 3758 success_p = x_alloc_nearest_color (f, cmap, &new);
06a2c219
GM
3759 if (success_p)
3760 {
3761 if (new.pixel == *pixel)
3762 {
3763 /* If we end up with the same color as before, try adding
3764 delta to the RGB values. */
0d605c67 3765 x_free_colors (f, &new.pixel, 1);
06a2c219
GM
3766
3767 new.red = min (0xffff, delta + color.red);
3768 new.green = min (0xffff, delta + color.green);
3769 new.blue = min (0xffff, delta + color.blue);
80c32bcc 3770 success_p = x_alloc_nearest_color (f, cmap, &new);
06a2c219
GM
3771 }
3772 else
3773 success_p = 1;
3774 *pixel = new.pixel;
3775 }
3776
3777 return success_p;
3778}
3779
3780
3781/* Set up the foreground color for drawing relief lines of glyph
3782 string S. RELIEF is a pointer to a struct relief containing the GC
3783 with which lines will be drawn. Use a color that is FACTOR or
3784 DELTA lighter or darker than the relief's background which is found
3785 in S->f->output_data.x->relief_background. If such a color cannot
3786 be allocated, use DEFAULT_PIXEL, instead. */
3787
3788static void
3789x_setup_relief_color (f, relief, factor, delta, default_pixel)
3790 struct frame *f;
3791 struct relief *relief;
68c45bf0 3792 double factor;
06a2c219
GM
3793 int delta;
3794 unsigned long default_pixel;
3795{
3796 XGCValues xgcv;
3797 struct x_output *di = f->output_data.x;
3798 unsigned long mask = GCForeground | GCLineWidth | GCGraphicsExposures;
3799 unsigned long pixel;
3800 unsigned long background = di->relief_background;
43bd1b2b 3801 Colormap cmap = FRAME_X_COLORMAP (f);
dcd08bfb
GM
3802 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
3803 Display *dpy = FRAME_X_DISPLAY (f);
06a2c219
GM
3804
3805 xgcv.graphics_exposures = False;
3806 xgcv.line_width = 1;
3807
3808 /* Free previously allocated color. The color cell will be reused
3809 when it has been freed as many times as it was allocated, so this
3810 doesn't affect faces using the same colors. */
3811 if (relief->gc
3812 && relief->allocated_p)
3813 {
0d605c67 3814 x_free_colors (f, &relief->pixel, 1);
06a2c219
GM
3815 relief->allocated_p = 0;
3816 }
3817
3818 /* Allocate new color. */
3819 xgcv.foreground = default_pixel;
3820 pixel = background;
dcd08bfb
GM
3821 if (dpyinfo->n_planes != 1
3822 && x_alloc_lighter_color (f, dpy, cmap, &pixel, factor, delta))
06a2c219
GM
3823 {
3824 relief->allocated_p = 1;
3825 xgcv.foreground = relief->pixel = pixel;
3826 }
3827
3828 if (relief->gc == 0)
3829 {
dcd08bfb 3830 xgcv.stipple = dpyinfo->gray;
06a2c219 3831 mask |= GCStipple;
dcd08bfb 3832 relief->gc = XCreateGC (dpy, FRAME_X_WINDOW (f), mask, &xgcv);
06a2c219
GM
3833 }
3834 else
dcd08bfb 3835 XChangeGC (dpy, relief->gc, mask, &xgcv);
06a2c219
GM
3836}
3837
3838
3839/* Set up colors for the relief lines around glyph string S. */
3840
3841static void
3842x_setup_relief_colors (s)
3843 struct glyph_string *s;
3844{
3845 struct x_output *di = s->f->output_data.x;
3846 unsigned long color;
3847
3848 if (s->face->use_box_color_for_shadows_p)
3849 color = s->face->box_color;
e2a57b34 3850 else if (s->first_glyph->type == IMAGE_GLYPH
0cb8bb48 3851 && s->img->pixmap
e2a57b34
MB
3852 && !IMAGE_BACKGROUND_TRANSPARENT (s->img, s->f, 0))
3853 color = IMAGE_BACKGROUND (s->img, s->f, 0);
06a2c219
GM
3854 else
3855 {
3856 XGCValues xgcv;
3857
3858 /* Get the background color of the face. */
3859 XGetGCValues (s->display, s->gc, GCBackground, &xgcv);
3860 color = xgcv.background;
3861 }
3862
3863 if (di->white_relief.gc == 0
3864 || color != di->relief_background)
3865 {
3866 di->relief_background = color;
3867 x_setup_relief_color (s->f, &di->white_relief, 1.2, 0x8000,
3868 WHITE_PIX_DEFAULT (s->f));
3869 x_setup_relief_color (s->f, &di->black_relief, 0.6, 0x4000,
3870 BLACK_PIX_DEFAULT (s->f));
3871 }
3872}
3873
3874
3875/* Draw a relief on frame F inside the rectangle given by LEFT_X,
3876 TOP_Y, RIGHT_X, and BOTTOM_Y. WIDTH is the thickness of the relief
3877 to draw, it must be >= 0. RAISED_P non-zero means draw a raised
3878 relief. LEFT_P non-zero means draw a relief on the left side of
3879 the rectangle. RIGHT_P non-zero means draw a relief on the right
3880 side of the rectangle. CLIP_RECT is the clipping rectangle to use
3881 when drawing. */
3882
3883static void
3884x_draw_relief_rect (f, left_x, top_y, right_x, bottom_y, width,
3885 raised_p, left_p, right_p, clip_rect)
3886 struct frame *f;
3887 int left_x, top_y, right_x, bottom_y, left_p, right_p, raised_p;
3888 XRectangle *clip_rect;
3889{
de507556
GM
3890 Display *dpy = FRAME_X_DISPLAY (f);
3891 Window window = FRAME_X_WINDOW (f);
06a2c219
GM
3892 int i;
3893 GC gc;
3894
3895 if (raised_p)
3896 gc = f->output_data.x->white_relief.gc;
3897 else
3898 gc = f->output_data.x->black_relief.gc;
de507556 3899 XSetClipRectangles (dpy, gc, 0, 0, clip_rect, 1, Unsorted);
06a2c219
GM
3900
3901 /* Top. */
3902 for (i = 0; i < width; ++i)
de507556 3903 XDrawLine (dpy, window, gc,
06a2c219
GM
3904 left_x + i * left_p, top_y + i,
3905 right_x + 1 - i * right_p, top_y + i);
3906
3907 /* Left. */
3908 if (left_p)
3909 for (i = 0; i < width; ++i)
de507556 3910 XDrawLine (dpy, window, gc,
44655e77 3911 left_x + i, top_y + i, left_x + i, bottom_y - i + 1);
06a2c219 3912
de507556 3913 XSetClipMask (dpy, gc, None);
06a2c219
GM
3914 if (raised_p)
3915 gc = f->output_data.x->black_relief.gc;
3916 else
3917 gc = f->output_data.x->white_relief.gc;
de507556 3918 XSetClipRectangles (dpy, gc, 0, 0, clip_rect, 1, Unsorted);
06a2c219
GM
3919
3920 /* Bottom. */
3921 for (i = 0; i < width; ++i)
de507556
GM
3922 XDrawLine (dpy, window, gc,
3923 left_x + i * left_p, bottom_y - i,
327f42ee 3924 right_x + 1 - i * right_p, bottom_y - i);
06a2c219
GM
3925
3926 /* Right. */
3927 if (right_p)
3928 for (i = 0; i < width; ++i)
de507556 3929 XDrawLine (dpy, window, gc,
06a2c219
GM
3930 right_x - i, top_y + i + 1, right_x - i, bottom_y - i);
3931
de507556 3932 XSetClipMask (dpy, gc, None);
06a2c219
GM
3933}
3934
3935
3936/* Draw a box on frame F inside the rectangle given by LEFT_X, TOP_Y,
3937 RIGHT_X, and BOTTOM_Y. WIDTH is the thickness of the lines to
3938 draw, it must be >= 0. LEFT_P non-zero means draw a line on the
3939 left side of the rectangle. RIGHT_P non-zero means draw a line
3940 on the right side of the rectangle. CLIP_RECT is the clipping
3941 rectangle to use when drawing. */
3942
3943static void
3944x_draw_box_rect (s, left_x, top_y, right_x, bottom_y, width,
3945 left_p, right_p, clip_rect)
3946 struct glyph_string *s;
3947 int left_x, top_y, right_x, bottom_y, left_p, right_p;
3948 XRectangle *clip_rect;
3949{
3950 XGCValues xgcv;
3951
3952 XGetGCValues (s->display, s->gc, GCForeground, &xgcv);
3953 XSetForeground (s->display, s->gc, s->face->box_color);
3954 XSetClipRectangles (s->display, s->gc, 0, 0, clip_rect, 1, Unsorted);
3955
3956 /* Top. */
3957 XFillRectangle (s->display, s->window, s->gc,
58e4fce8 3958 left_x, top_y, right_x - left_x + 1, width);
06a2c219
GM
3959
3960 /* Left. */
3961 if (left_p)
3962 XFillRectangle (s->display, s->window, s->gc,
58e4fce8 3963 left_x, top_y, width, bottom_y - top_y + 1);
06a2c219
GM
3964
3965 /* Bottom. */
3966 XFillRectangle (s->display, s->window, s->gc,
58e4fce8 3967 left_x, bottom_y - width + 1, right_x - left_x + 1, width);
06a2c219
GM
3968
3969 /* Right. */
3970 if (right_p)
3971 XFillRectangle (s->display, s->window, s->gc,
58e4fce8 3972 right_x - width + 1, top_y, width, bottom_y - top_y + 1);
06a2c219
GM
3973
3974 XSetForeground (s->display, s->gc, xgcv.foreground);
3975 XSetClipMask (s->display, s->gc, None);
3976}
3977
3978
3979/* Draw a box around glyph string S. */
3980
3981static void
3982x_draw_glyph_string_box (s)
3983 struct glyph_string *s;
3984{
3985 int width, left_x, right_x, top_y, bottom_y, last_x, raised_p;
3986 int left_p, right_p;
3987 struct glyph *last_glyph;
3988 XRectangle clip_rect;
3989
3990 last_x = window_box_right (s->w, s->area);
3991 if (s->row->full_width_p
3992 && !s->w->pseudo_window_p)
3993 {
3f332ef3 3994 last_x += FRAME_X_RIGHT_FRINGE_WIDTH (s->f);
06a2c219
GM
3995 if (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (s->f))
3996 last_x += FRAME_SCROLL_BAR_WIDTH (s->f) * CANON_X_UNIT (s->f);
3997 }
3998
3999 /* The glyph that may have a right box line. */
b4192550 4000 last_glyph = (s->cmp || s->img
06a2c219
GM
4001 ? s->first_glyph
4002 : s->first_glyph + s->nchars - 1);
4003
ea2ba0d4 4004 width = abs (s->face->box_line_width);
06a2c219
GM
4005 raised_p = s->face->box == FACE_RAISED_BOX;
4006 left_x = s->x;
57ac7c81
GM
4007 right_x = (s->row->full_width_p && s->extends_to_end_of_line_p
4008 ? last_x - 1
4009 : min (last_x, s->x + s->background_width) - 1);
06a2c219
GM
4010 top_y = s->y;
4011 bottom_y = top_y + s->height - 1;
4012
4013 left_p = (s->first_glyph->left_box_line_p
4014 || (s->hl == DRAW_MOUSE_FACE
4015 && (s->prev == NULL
4016 || s->prev->hl != s->hl)));
4017 right_p = (last_glyph->right_box_line_p
4018 || (s->hl == DRAW_MOUSE_FACE
4019 && (s->next == NULL
4020 || s->next->hl != s->hl)));
327f42ee 4021
06a2c219
GM
4022 x_get_glyph_string_clip_rect (s, &clip_rect);
4023
4024 if (s->face->box == FACE_SIMPLE_BOX)
4025 x_draw_box_rect (s, left_x, top_y, right_x, bottom_y, width,
4026 left_p, right_p, &clip_rect);
4027 else
4028 {
4029 x_setup_relief_colors (s);
4030 x_draw_relief_rect (s->f, left_x, top_y, right_x, bottom_y,
4031 width, raised_p, left_p, right_p, &clip_rect);
4032 }
4033}
4034
4035
4036/* Draw foreground of image glyph string S. */
4037
4038static void
4039x_draw_image_foreground (s)
4040 struct glyph_string *s;
4041{
4042 int x;
95af8492 4043 int y = s->ybase - image_ascent (s->img, s->face);
06a2c219
GM
4044
4045 /* If first glyph of S has a left box line, start drawing it to the
4046 right of that line. */
4047 if (s->face->box != FACE_NO_BOX
4048 && s->first_glyph->left_box_line_p)
ea2ba0d4 4049 x = s->x + abs (s->face->box_line_width);
06a2c219
GM
4050 else
4051 x = s->x;
4052
4053 /* If there is a margin around the image, adjust x- and y-position
4054 by that margin. */
22d650b8
GM
4055 x += s->img->hmargin;
4056 y += s->img->vmargin;
06a2c219
GM
4057
4058 if (s->img->pixmap)
4059 {
4060 if (s->img->mask)
4061 {
4062 /* We can't set both a clip mask and use XSetClipRectangles
4063 because the latter also sets a clip mask. We also can't
4064 trust on the shape extension to be available
4065 (XShapeCombineRegion). So, compute the rectangle to draw
4066 manually. */
4067 unsigned long mask = (GCClipMask | GCClipXOrigin | GCClipYOrigin
4068 | GCFunction);
4069 XGCValues xgcv;
4070 XRectangle clip_rect, image_rect, r;
4071
4072 xgcv.clip_mask = s->img->mask;
4073 xgcv.clip_x_origin = x;
4074 xgcv.clip_y_origin = y;
4075 xgcv.function = GXcopy;
4076 XChangeGC (s->display, s->gc, mask, &xgcv);
4077
4078 x_get_glyph_string_clip_rect (s, &clip_rect);
4079 image_rect.x = x;
4080 image_rect.y = y;
4081 image_rect.width = s->img->width;
4082 image_rect.height = s->img->height;
4083 if (x_intersect_rectangles (&clip_rect, &image_rect, &r))
4084 XCopyArea (s->display, s->img->pixmap, s->window, s->gc,
4085 r.x - x, r.y - y, r.width, r.height, r.x, r.y);
4086 }
4087 else
4088 {
49ad1d99
GM
4089 XRectangle clip_rect, image_rect, r;
4090
4091 x_get_glyph_string_clip_rect (s, &clip_rect);
4092 image_rect.x = x;
4093 image_rect.y = y;
4094 image_rect.width = s->img->width;
4095 image_rect.height = s->img->height;
4096 if (x_intersect_rectangles (&clip_rect, &image_rect, &r))
4097 XCopyArea (s->display, s->img->pixmap, s->window, s->gc,
4098 r.x - x, r.y - y, r.width, r.height, r.x, r.y);
06a2c219
GM
4099
4100 /* When the image has a mask, we can expect that at
4101 least part of a mouse highlight or a block cursor will
4102 be visible. If the image doesn't have a mask, make
4103 a block cursor visible by drawing a rectangle around
4104 the image. I believe it's looking better if we do
4105 nothing here for mouse-face. */
4106 if (s->hl == DRAW_CURSOR)
4107 XDrawRectangle (s->display, s->window, s->gc, x, y,
4108 s->img->width - 1, s->img->height - 1);
4109 }
4110 }
4111 else
4112 /* Draw a rectangle if image could not be loaded. */
4113 XDrawRectangle (s->display, s->window, s->gc, x, y,
4114 s->img->width - 1, s->img->height - 1);
4115}
4116
4117
4118/* Draw a relief around the image glyph string S. */
4119
4120static void
4121x_draw_image_relief (s)
4122 struct glyph_string *s;
4123{
4124 int x0, y0, x1, y1, thick, raised_p;
4125 XRectangle r;
4126 int x;
95af8492 4127 int y = s->ybase - image_ascent (s->img, s->face);
06a2c219
GM
4128
4129 /* If first glyph of S has a left box line, start drawing it to the
4130 right of that line. */
4131 if (s->face->box != FACE_NO_BOX
4132 && s->first_glyph->left_box_line_p)
ea2ba0d4 4133 x = s->x + abs (s->face->box_line_width);
06a2c219
GM
4134 else
4135 x = s->x;
4136
4137 /* If there is a margin around the image, adjust x- and y-position
4138 by that margin. */
22d650b8
GM
4139 x += s->img->hmargin;
4140 y += s->img->vmargin;
06a2c219
GM
4141
4142 if (s->hl == DRAW_IMAGE_SUNKEN
4143 || s->hl == DRAW_IMAGE_RAISED)
4144 {
62854fe2 4145 thick = tool_bar_button_relief >= 0 ? tool_bar_button_relief : DEFAULT_TOOL_BAR_BUTTON_RELIEF;
06a2c219
GM
4146 raised_p = s->hl == DRAW_IMAGE_RAISED;
4147 }
4148 else
4149 {
4150 thick = abs (s->img->relief);
4151 raised_p = s->img->relief > 0;
4152 }
4153
4154 x0 = x - thick;
4155 y0 = y - thick;
4156 x1 = x + s->img->width + thick - 1;
4157 y1 = y + s->img->height + thick - 1;
4158
4159 x_setup_relief_colors (s);
4160 x_get_glyph_string_clip_rect (s, &r);
4161 x_draw_relief_rect (s->f, x0, y0, x1, y1, thick, raised_p, 1, 1, &r);
4162}
4163
4164
4165/* Draw the foreground of image glyph string S to PIXMAP. */
4166
4167static void
4168x_draw_image_foreground_1 (s, pixmap)
4169 struct glyph_string *s;
4170 Pixmap pixmap;
4171{
4172 int x;
95af8492 4173 int y = s->ybase - s->y - image_ascent (s->img, s->face);
06a2c219
GM
4174
4175 /* If first glyph of S has a left box line, start drawing it to the
4176 right of that line. */
4177 if (s->face->box != FACE_NO_BOX
4178 && s->first_glyph->left_box_line_p)
ea2ba0d4 4179 x = abs (s->face->box_line_width);
06a2c219
GM
4180 else
4181 x = 0;
4182
4183 /* If there is a margin around the image, adjust x- and y-position
4184 by that margin. */
22d650b8
GM
4185 x += s->img->hmargin;
4186 y += s->img->vmargin;
dc43ef94 4187
06a2c219
GM
4188 if (s->img->pixmap)
4189 {
4190 if (s->img->mask)
4191 {
4192 /* We can't set both a clip mask and use XSetClipRectangles
4193 because the latter also sets a clip mask. We also can't
4194 trust on the shape extension to be available
4195 (XShapeCombineRegion). So, compute the rectangle to draw
4196 manually. */
4197 unsigned long mask = (GCClipMask | GCClipXOrigin | GCClipYOrigin
4198 | GCFunction);
4199 XGCValues xgcv;
4200
4201 xgcv.clip_mask = s->img->mask;
4202 xgcv.clip_x_origin = x;
4203 xgcv.clip_y_origin = y;
4204 xgcv.function = GXcopy;
4205 XChangeGC (s->display, s->gc, mask, &xgcv);
4206
4207 XCopyArea (s->display, s->img->pixmap, pixmap, s->gc,
4208 0, 0, s->img->width, s->img->height, x, y);
4209 XSetClipMask (s->display, s->gc, None);
4210 }
4211 else
4212 {
4213 XCopyArea (s->display, s->img->pixmap, pixmap, s->gc,
4214 0, 0, s->img->width, s->img->height, x, y);
4215
4216 /* When the image has a mask, we can expect that at
4217 least part of a mouse highlight or a block cursor will
4218 be visible. If the image doesn't have a mask, make
4219 a block cursor visible by drawing a rectangle around
4220 the image. I believe it's looking better if we do
4221 nothing here for mouse-face. */
4222 if (s->hl == DRAW_CURSOR)
4223 XDrawRectangle (s->display, pixmap, s->gc, x, y,
4224 s->img->width - 1, s->img->height - 1);
4225 }
4226 }
4227 else
4228 /* Draw a rectangle if image could not be loaded. */
4229 XDrawRectangle (s->display, pixmap, s->gc, x, y,
4230 s->img->width - 1, s->img->height - 1);
4231}
dc43ef94 4232
990ba854 4233
06a2c219
GM
4234/* Draw part of the background of glyph string S. X, Y, W, and H
4235 give the rectangle to draw. */
a9a5b0a5 4236
06a2c219
GM
4237static void
4238x_draw_glyph_string_bg_rect (s, x, y, w, h)
4239 struct glyph_string *s;
4240 int x, y, w, h;
4241{
4242 if (s->stippled_p)
4243 {
4244 /* Fill background with a stipple pattern. */
4245 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
4246 XFillRectangle (s->display, s->window, s->gc, x, y, w, h);
4247 XSetFillStyle (s->display, s->gc, FillSolid);
4248 }
4249 else
4250 x_clear_glyph_string_rect (s, x, y, w, h);
4251}
07e34cb0 4252
b5210ea7 4253
06a2c219 4254/* Draw image glyph string S.
dc43ef94 4255
06a2c219
GM
4256 s->y
4257 s->x +-------------------------
4258 | s->face->box
4259 |
4260 | +-------------------------
4261 | | s->img->margin
4262 | |
4263 | | +-------------------
4264 | | | the image
dc43ef94 4265
06a2c219 4266 */
dc43ef94 4267
06a2c219
GM
4268static void
4269x_draw_image_glyph_string (s)
4270 struct glyph_string *s;
4271{
4272 int x, y;
ea2ba0d4
KH
4273 int box_line_hwidth = abs (s->face->box_line_width);
4274 int box_line_vwidth = max (s->face->box_line_width, 0);
06a2c219
GM
4275 int height;
4276 Pixmap pixmap = None;
4277
ea2ba0d4 4278 height = s->height - 2 * box_line_vwidth;
06a2c219
GM
4279
4280 /* Fill background with face under the image. Do it only if row is
4281 taller than image or if image has a clip mask to reduce
4282 flickering. */
4283 s->stippled_p = s->face->stipple != 0;
4284 if (height > s->img->height
22d650b8
GM
4285 || s->img->hmargin
4286 || s->img->vmargin
06a2c219
GM
4287 || s->img->mask
4288 || s->img->pixmap == 0
4289 || s->width != s->background_width)
4290 {
ea2ba0d4
KH
4291 if (box_line_hwidth && s->first_glyph->left_box_line_p)
4292 x = s->x + box_line_hwidth;
06a2c219
GM
4293 else
4294 x = s->x;
4295
ea2ba0d4 4296 y = s->y + box_line_vwidth;
06a2c219
GM
4297
4298 if (s->img->mask)
4299 {
f9b5db02
GM
4300 /* Create a pixmap as large as the glyph string. Fill it
4301 with the background color. Copy the image to it, using
4302 its mask. Copy the temporary pixmap to the display. */
06a2c219
GM
4303 Screen *screen = FRAME_X_SCREEN (s->f);
4304 int depth = DefaultDepthOfScreen (screen);
4305
4306 /* Create a pixmap as large as the glyph string. */
4307 pixmap = XCreatePixmap (s->display, s->window,
4308 s->background_width,
4309 s->height, depth);
4310
4311 /* Don't clip in the following because we're working on the
4312 pixmap. */
4313 XSetClipMask (s->display, s->gc, None);
4314
4315 /* Fill the pixmap with the background color/stipple. */
4316 if (s->stippled_p)
4317 {
4318 /* Fill background with a stipple pattern. */
4319 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
4320 XFillRectangle (s->display, pixmap, s->gc,
4321 0, 0, s->background_width, s->height);
4322 XSetFillStyle (s->display, s->gc, FillSolid);
4323 }
4324 else
4325 {
4326 XGCValues xgcv;
4327 XGetGCValues (s->display, s->gc, GCForeground | GCBackground,
4328 &xgcv);
4329 XSetForeground (s->display, s->gc, xgcv.background);
4330 XFillRectangle (s->display, pixmap, s->gc,
4331 0, 0, s->background_width, s->height);
4332 XSetForeground (s->display, s->gc, xgcv.foreground);
4333 }
4334 }
4335 else
06a2c219
GM
4336 x_draw_glyph_string_bg_rect (s, x, y, s->background_width, height);
4337
4338 s->background_filled_p = 1;
4339 }
dc43ef94 4340
06a2c219
GM
4341 /* Draw the foreground. */
4342 if (pixmap != None)
4343 {
4344 x_draw_image_foreground_1 (s, pixmap);
4345 x_set_glyph_string_clipping (s);
4346 XCopyArea (s->display, pixmap, s->window, s->gc,
4347 0, 0, s->background_width, s->height, s->x, s->y);
4348 XFreePixmap (s->display, pixmap);
4349 }
4350 else
4351 x_draw_image_foreground (s);
b5210ea7 4352
06a2c219
GM
4353 /* If we must draw a relief around the image, do it. */
4354 if (s->img->relief
4355 || s->hl == DRAW_IMAGE_RAISED
4356 || s->hl == DRAW_IMAGE_SUNKEN)
4357 x_draw_image_relief (s);
4358}
8c1a6a84 4359
990ba854 4360
06a2c219 4361/* Draw stretch glyph string S. */
dc43ef94 4362
06a2c219
GM
4363static void
4364x_draw_stretch_glyph_string (s)
4365 struct glyph_string *s;
4366{
4367 xassert (s->first_glyph->type == STRETCH_GLYPH);
4368 s->stippled_p = s->face->stipple != 0;
990ba854 4369
06a2c219
GM
4370 if (s->hl == DRAW_CURSOR
4371 && !x_stretch_cursor_p)
4372 {
4373 /* If `x-stretch-block-cursor' is nil, don't draw a block cursor
4374 as wide as the stretch glyph. */
4375 int width = min (CANON_X_UNIT (s->f), s->background_width);
990ba854 4376
06a2c219
GM
4377 /* Draw cursor. */
4378 x_draw_glyph_string_bg_rect (s, s->x, s->y, width, s->height);
0cdd0c9f 4379
06a2c219
GM
4380 /* Clear rest using the GC of the original non-cursor face. */
4381 if (width < s->background_width)
4382 {
06a2c219
GM
4383 int x = s->x + width, y = s->y;
4384 int w = s->background_width - width, h = s->height;
4385 XRectangle r;
b7f83f9e 4386 GC gc;
dc43ef94 4387
b7f83f9e
GM
4388 if (s->row->mouse_face_p
4389 && cursor_in_mouse_face_p (s->w))
4390 {
4391 x_set_mouse_face_gc (s);
4392 gc = s->gc;
4393 }
4394 else
4395 gc = s->face->gc;
4396
06a2c219
GM
4397 x_get_glyph_string_clip_rect (s, &r);
4398 XSetClipRectangles (s->display, gc, 0, 0, &r, 1, Unsorted);
b7f83f9e 4399
06a2c219
GM
4400 if (s->face->stipple)
4401 {
4402 /* Fill background with a stipple pattern. */
4403 XSetFillStyle (s->display, gc, FillOpaqueStippled);
4404 XFillRectangle (s->display, s->window, gc, x, y, w, h);
4405 XSetFillStyle (s->display, gc, FillSolid);
4406 }
4407 else
4408 {
4409 XGCValues xgcv;
4410 XGetGCValues (s->display, gc, GCForeground | GCBackground, &xgcv);
4411 XSetForeground (s->display, gc, xgcv.background);
4412 XFillRectangle (s->display, s->window, gc, x, y, w, h);
4413 XSetForeground (s->display, gc, xgcv.foreground);
4414 }
4415 }
4416 }
61e9f9f3 4417 else if (!s->background_filled_p)
06a2c219
GM
4418 x_draw_glyph_string_bg_rect (s, s->x, s->y, s->background_width,
4419 s->height);
4420
4421 s->background_filled_p = 1;
4422}
4423
4424
4425/* Draw glyph string S. */
4426
4427static void
4428x_draw_glyph_string (s)
4429 struct glyph_string *s;
4430{
4458cf11
KH
4431 int relief_drawn_p = 0;
4432
06a2c219
GM
4433 /* If S draws into the background of its successor, draw the
4434 background of the successor first so that S can draw into it.
4435 This makes S->next use XDrawString instead of XDrawImageString. */
66ac4b0e 4436 if (s->next && s->right_overhang && !s->for_overlaps_p)
06a2c219
GM
4437 {
4438 xassert (s->next->img == NULL);
4439 x_set_glyph_string_gc (s->next);
4440 x_set_glyph_string_clipping (s->next);
4441 x_draw_glyph_string_background (s->next, 1);
4442 }
97210f4e 4443
06a2c219
GM
4444 /* Set up S->gc, set clipping and draw S. */
4445 x_set_glyph_string_gc (s);
06a2c219 4446
4458cf11
KH
4447 /* Draw relief (if any) in advance for char/composition so that the
4448 glyph string can be drawn over it. */
4449 if (!s->for_overlaps_p
4450 && s->face->box != FACE_NO_BOX
4451 && (s->first_glyph->type == CHAR_GLYPH
4452 || s->first_glyph->type == COMPOSITE_GLYPH))
4453
4454 {
e6269cbb 4455 x_set_glyph_string_clipping (s);
4458cf11
KH
4456 x_draw_glyph_string_background (s, 1);
4457 x_draw_glyph_string_box (s);
e6269cbb 4458 x_set_glyph_string_clipping (s);
4458cf11
KH
4459 relief_drawn_p = 1;
4460 }
e6269cbb
GM
4461 else
4462 x_set_glyph_string_clipping (s);
4458cf11 4463
06a2c219
GM
4464 switch (s->first_glyph->type)
4465 {
4466 case IMAGE_GLYPH:
4467 x_draw_image_glyph_string (s);
4468 break;
4469
4470 case STRETCH_GLYPH:
4471 x_draw_stretch_glyph_string (s);
4472 break;
4473
4474 case CHAR_GLYPH:
66ac4b0e
GM
4475 if (s->for_overlaps_p)
4476 s->background_filled_p = 1;
4477 else
4478 x_draw_glyph_string_background (s, 0);
06a2c219
GM
4479 x_draw_glyph_string_foreground (s);
4480 break;
4481
b4192550
KH
4482 case COMPOSITE_GLYPH:
4483 if (s->for_overlaps_p || s->gidx > 0)
4484 s->background_filled_p = 1;
4485 else
4486 x_draw_glyph_string_background (s, 1);
4487 x_draw_composite_glyph_string_foreground (s);
4488 break;
4489
06a2c219
GM
4490 default:
4491 abort ();
4492 }
4493
66ac4b0e 4494 if (!s->for_overlaps_p)
06a2c219 4495 {
66ac4b0e
GM
4496 /* Draw underline. */
4497 if (s->face->underline_p)
4498 {
e24e84cc
GM
4499 unsigned long tem, h;
4500 int y;
06a2c219 4501
e24e84cc 4502 /* Get the underline thickness. Default is 1 pixel. */
66ac4b0e
GM
4503 if (!XGetFontProperty (s->font, XA_UNDERLINE_THICKNESS, &h))
4504 h = 1;
e24e84cc
GM
4505
4506 /* Get the underline position. This is the recommended
4507 vertical offset in pixels from the baseline to the top of
4508 the underline. This is a signed value according to the
4509 specs, and its default is
4510
4511 ROUND ((maximum descent) / 2), with
4512 ROUND(x) = floor (x + 0.5) */
4513
a72d5ce5
GM
4514 if (x_use_underline_position_properties
4515 && XGetFontProperty (s->font, XA_UNDERLINE_POSITION, &tem))
e24e84cc
GM
4516 y = s->ybase + (long) tem;
4517 else if (s->face->font)
4518 y = s->ybase + (s->face->font->max_bounds.descent + 1) / 2;
4519 else
a02f1be0 4520 y = s->y + s->height - h;
06a2c219 4521
66ac4b0e 4522 if (s->face->underline_defaulted_p)
e24e84cc
GM
4523 XFillRectangle (s->display, s->window, s->gc,
4524 s->x, y, s->width, h);
66ac4b0e
GM
4525 else
4526 {
4527 XGCValues xgcv;
4528 XGetGCValues (s->display, s->gc, GCForeground, &xgcv);
4529 XSetForeground (s->display, s->gc, s->face->underline_color);
e24e84cc
GM
4530 XFillRectangle (s->display, s->window, s->gc,
4531 s->x, y, s->width, h);
66ac4b0e
GM
4532 XSetForeground (s->display, s->gc, xgcv.foreground);
4533 }
dc6f92b8 4534 }
07e34cb0 4535
66ac4b0e
GM
4536 /* Draw overline. */
4537 if (s->face->overline_p)
06a2c219 4538 {
66ac4b0e
GM
4539 unsigned long dy = 0, h = 1;
4540
4541 if (s->face->overline_color_defaulted_p)
4542 XFillRectangle (s->display, s->window, s->gc, s->x, s->y + dy,
4543 s->width, h);
4544 else
4545 {
4546 XGCValues xgcv;
4547 XGetGCValues (s->display, s->gc, GCForeground, &xgcv);
4548 XSetForeground (s->display, s->gc, s->face->overline_color);
4549 XFillRectangle (s->display, s->window, s->gc, s->x, s->y + dy,
4550 s->width, h);
4551 XSetForeground (s->display, s->gc, xgcv.foreground);
4552 }
06a2c219 4553 }
06a2c219 4554
66ac4b0e
GM
4555 /* Draw strike-through. */
4556 if (s->face->strike_through_p)
06a2c219 4557 {
66ac4b0e
GM
4558 unsigned long h = 1;
4559 unsigned long dy = (s->height - h) / 2;
4560
4561 if (s->face->strike_through_color_defaulted_p)
4562 XFillRectangle (s->display, s->window, s->gc, s->x, s->y + dy,
4563 s->width, h);
4564 else
4565 {
4566 XGCValues xgcv;
4567 XGetGCValues (s->display, s->gc, GCForeground, &xgcv);
4568 XSetForeground (s->display, s->gc, s->face->strike_through_color);
4569 XFillRectangle (s->display, s->window, s->gc, s->x, s->y + dy,
4570 s->width, h);
4571 XSetForeground (s->display, s->gc, xgcv.foreground);
4572 }
06a2c219 4573 }
06a2c219 4574
4458cf11
KH
4575 /* Draw relief if not yet drawn. */
4576 if (!relief_drawn_p && s->face->box != FACE_NO_BOX)
66ac4b0e
GM
4577 x_draw_glyph_string_box (s);
4578 }
06a2c219
GM
4579
4580 /* Reset clipping. */
4581 XSetClipMask (s->display, s->gc, None);
dc6f92b8 4582}
07e34cb0 4583
06a2c219 4584
b4192550
KH
4585static int x_fill_composite_glyph_string P_ ((struct glyph_string *,
4586 struct face **, int));
06a2c219 4587
06a2c219 4588
209f68d9
GM
4589/* Fill glyph string S with composition components specified by S->cmp.
4590
b4192550
KH
4591 FACES is an array of faces for all components of this composition.
4592 S->gidx is the index of the first component for S.
4593 OVERLAPS_P non-zero means S should draw the foreground only, and
209f68d9 4594 use its physical height for clipping.
06a2c219 4595
b4192550 4596 Value is the index of a component not in S. */
07e34cb0 4597
b4192550
KH
4598static int
4599x_fill_composite_glyph_string (s, faces, overlaps_p)
06a2c219 4600 struct glyph_string *s;
b4192550 4601 struct face **faces;
66ac4b0e 4602 int overlaps_p;
07e34cb0 4603{
b4192550 4604 int i;
06a2c219 4605
b4192550 4606 xassert (s);
06a2c219 4607
b4192550 4608 s->for_overlaps_p = overlaps_p;
06a2c219 4609
b4192550
KH
4610 s->face = faces[s->gidx];
4611 s->font = s->face->font;
4612 s->font_info = FONT_INFO_FROM_ID (s->f, s->face->font_info_id);
06a2c219 4613
b4192550
KH
4614 /* For all glyphs of this composition, starting at the offset
4615 S->gidx, until we reach the end of the definition or encounter a
4616 glyph that requires the different face, add it to S. */
4617 ++s->nchars;
4618 for (i = s->gidx + 1; i < s->cmp->glyph_len && faces[i] == s->face; ++i)
4619 ++s->nchars;
06a2c219 4620
b4192550
KH
4621 /* All glyph strings for the same composition has the same width,
4622 i.e. the width set for the first component of the composition. */
06a2c219 4623
06a2c219
GM
4624 s->width = s->first_glyph->pixel_width;
4625
4626 /* If the specified font could not be loaded, use the frame's
4627 default font, but record the fact that we couldn't load it in
4628 the glyph string so that we can draw rectangles for the
4629 characters of the glyph string. */
4630 if (s->font == NULL)
4631 {
4632 s->font_not_found_p = 1;
4633 s->font = FRAME_FONT (s->f);
4634 }
4635
4636 /* Adjust base line for subscript/superscript text. */
4637 s->ybase += s->first_glyph->voffset;
4638
4639 xassert (s->face && s->face->gc);
4640
4641 /* This glyph string must always be drawn with 16-bit functions. */
4642 s->two_byte_p = 1;
b4192550
KH
4643
4644 return s->gidx + s->nchars;
06a2c219
GM
4645}
4646
4647
209f68d9
GM
4648/* Fill glyph string S from a sequence of character glyphs.
4649
06a2c219 4650 FACE_ID is the face id of the string. START is the index of the
66ac4b0e
GM
4651 first glyph to consider, END is the index of the last + 1.
4652 OVERLAPS_P non-zero means S should draw the foreground only, and
209f68d9 4653 use its physical height for clipping.
66ac4b0e
GM
4654
4655 Value is the index of the first glyph not in S. */
06a2c219
GM
4656
4657static int
66ac4b0e 4658x_fill_glyph_string (s, face_id, start, end, overlaps_p)
06a2c219
GM
4659 struct glyph_string *s;
4660 int face_id;
66ac4b0e 4661 int start, end, overlaps_p;
06a2c219
GM
4662{
4663 struct glyph *glyph, *last;
4664 int voffset;
ee569018 4665 int glyph_not_available_p;
06a2c219 4666
06a2c219
GM
4667 xassert (s->f == XFRAME (s->w->frame));
4668 xassert (s->nchars == 0);
4669 xassert (start >= 0 && end > start);
4670
66ac4b0e 4671 s->for_overlaps_p = overlaps_p,
06a2c219
GM
4672 glyph = s->row->glyphs[s->area] + start;
4673 last = s->row->glyphs[s->area] + end;
4674 voffset = glyph->voffset;
4675
ee569018
KH
4676 glyph_not_available_p = glyph->glyph_not_available_p;
4677
06a2c219
GM
4678 while (glyph < last
4679 && glyph->type == CHAR_GLYPH
4680 && glyph->voffset == voffset
ee569018
KH
4681 /* Same face id implies same font, nowadays. */
4682 && glyph->face_id == face_id
4683 && glyph->glyph_not_available_p == glyph_not_available_p)
06a2c219 4684 {
ee569018
KH
4685 int two_byte_p;
4686
06a2c219 4687 s->face = x_get_glyph_face_and_encoding (s->f, glyph,
ee569018
KH
4688 s->char2b + s->nchars,
4689 &two_byte_p);
4690 s->two_byte_p = two_byte_p;
06a2c219
GM
4691 ++s->nchars;
4692 xassert (s->nchars <= end - start);
4693 s->width += glyph->pixel_width;
4694 ++glyph;
4695 }
4696
4697 s->font = s->face->font;
4698 s->font_info = FONT_INFO_FROM_ID (s->f, s->face->font_info_id);
4699
4700 /* If the specified font could not be loaded, use the frame's font,
4701 but record the fact that we couldn't load it in
4702 S->font_not_found_p so that we can draw rectangles for the
4703 characters of the glyph string. */
ee569018 4704 if (s->font == NULL || glyph_not_available_p)
06a2c219
GM
4705 {
4706 s->font_not_found_p = 1;
4707 s->font = FRAME_FONT (s->f);
4708 }
4709
4710 /* Adjust base line for subscript/superscript text. */
4711 s->ybase += voffset;
66ac4b0e 4712
06a2c219
GM
4713 xassert (s->face && s->face->gc);
4714 return glyph - s->row->glyphs[s->area];
07e34cb0 4715}
dc6f92b8 4716
06a2c219
GM
4717
4718/* Fill glyph string S from image glyph S->first_glyph. */
dc6f92b8 4719
dfcf069d 4720static void
06a2c219
GM
4721x_fill_image_glyph_string (s)
4722 struct glyph_string *s;
4723{
4724 xassert (s->first_glyph->type == IMAGE_GLYPH);
43d120d8 4725 s->img = IMAGE_FROM_ID (s->f, s->first_glyph->u.img_id);
06a2c219 4726 xassert (s->img);
43d120d8 4727 s->face = FACE_FROM_ID (s->f, s->first_glyph->face_id);
06a2c219
GM
4728 s->font = s->face->font;
4729 s->width = s->first_glyph->pixel_width;
4730
4731 /* Adjust base line for subscript/superscript text. */
4732 s->ybase += s->first_glyph->voffset;
4733}
4734
4735
209f68d9 4736/* Fill glyph string S from a sequence of stretch glyphs.
06a2c219 4737
209f68d9
GM
4738 ROW is the glyph row in which the glyphs are found, AREA is the
4739 area within the row. START is the index of the first glyph to
4740 consider, END is the index of the last + 1.
4741
4742 Value is the index of the first glyph not in S. */
4743
4744static int
4745x_fill_stretch_glyph_string (s, row, area, start, end)
06a2c219 4746 struct glyph_string *s;
209f68d9
GM
4747 struct glyph_row *row;
4748 enum glyph_row_area area;
4749 int start, end;
06a2c219 4750{
209f68d9
GM
4751 struct glyph *glyph, *last;
4752 int voffset, face_id;
4753
06a2c219 4754 xassert (s->first_glyph->type == STRETCH_GLYPH);
209f68d9
GM
4755
4756 glyph = s->row->glyphs[s->area] + start;
4757 last = s->row->glyphs[s->area] + end;
4758 face_id = glyph->face_id;
4759 s->face = FACE_FROM_ID (s->f, face_id);
06a2c219 4760 s->font = s->face->font;
209f68d9
GM
4761 s->font_info = FONT_INFO_FROM_ID (s->f, s->face->font_info_id);
4762 s->width = glyph->pixel_width;
4763 voffset = glyph->voffset;
4764
4765 for (++glyph;
4766 (glyph < last
4767 && glyph->type == STRETCH_GLYPH
4768 && glyph->voffset == voffset
4769 && glyph->face_id == face_id);
4770 ++glyph)
4771 s->width += glyph->pixel_width;
06a2c219
GM
4772
4773 /* Adjust base line for subscript/superscript text. */
209f68d9
GM
4774 s->ybase += voffset;
4775
c296fc01
GM
4776 /* The case that face->gc == 0 is handled when drawing the glyph
4777 string by calling PREPARE_FACE_FOR_DISPLAY. */
4778 xassert (s->face);
209f68d9 4779 return glyph - s->row->glyphs[s->area];
06a2c219
GM
4780}
4781
4782
4783/* Initialize glyph string S. CHAR2B is a suitably allocated vector
4784 of XChar2b structures for S; it can't be allocated in
4785 x_init_glyph_string because it must be allocated via `alloca'. W
4786 is the window on which S is drawn. ROW and AREA are the glyph row
4787 and area within the row from which S is constructed. START is the
4788 index of the first glyph structure covered by S. HL is a
4789 face-override for drawing S. */
4790
4791static void
4792x_init_glyph_string (s, char2b, w, row, area, start, hl)
4793 struct glyph_string *s;
4794 XChar2b *char2b;
4795 struct window *w;
4796 struct glyph_row *row;
4797 enum glyph_row_area area;
4798 int start;
4799 enum draw_glyphs_face hl;
4800{
4801 bzero (s, sizeof *s);
4802 s->w = w;
4803 s->f = XFRAME (w->frame);
4804 s->display = FRAME_X_DISPLAY (s->f);
4805 s->window = FRAME_X_WINDOW (s->f);
4806 s->char2b = char2b;
4807 s->hl = hl;
4808 s->row = row;
4809 s->area = area;
4810 s->first_glyph = row->glyphs[area] + start;
4811 s->height = row->height;
4812 s->y = WINDOW_TO_FRAME_PIXEL_Y (w, row->y);
4813
9ea173e8
GM
4814 /* Display the internal border below the tool-bar window. */
4815 if (s->w == XWINDOW (s->f->tool_bar_window))
06a2c219
GM
4816 s->y -= s->f->output_data.x->internal_border_width;
4817
4818 s->ybase = s->y + row->ascent;
4819}
4820
4821
4822/* Set background width of glyph string S. START is the index of the
4823 first glyph following S. LAST_X is the right-most x-position + 1
4824 in the drawing area. */
4825
4826static INLINE void
4827x_set_glyph_string_background_width (s, start, last_x)
4828 struct glyph_string *s;
4829 int start;
4830 int last_x;
4831{
4832 /* If the face of this glyph string has to be drawn to the end of
4833 the drawing area, set S->extends_to_end_of_line_p. */
4834 struct face *default_face = FACE_FROM_ID (s->f, DEFAULT_FACE_ID);
4835
4836 if (start == s->row->used[s->area]
eb79f5cc 4837 && s->area == TEXT_AREA
7b0870b2
GM
4838 && ((s->hl == DRAW_NORMAL_TEXT
4839 && (s->row->fill_line_p
4840 || s->face->background != default_face->background
4841 || s->face->stipple != default_face->stipple
4842 || s->row->mouse_face_p))
327f42ee
GM
4843 || s->hl == DRAW_MOUSE_FACE
4844 || ((s->hl == DRAW_IMAGE_RAISED || s->hl == DRAW_IMAGE_SUNKEN)
4845 && s->row->fill_line_p)))
7b0870b2 4846 s->extends_to_end_of_line_p = 1;
06a2c219
GM
4847
4848 /* If S extends its face to the end of the line, set its
4849 background_width to the distance to the right edge of the drawing
4850 area. */
4851 if (s->extends_to_end_of_line_p)
1da3fd71 4852 s->background_width = last_x - s->x + 1;
06a2c219
GM
4853 else
4854 s->background_width = s->width;
4855}
4856
4857
4858/* Add a glyph string for a stretch glyph to the list of strings
4859 between HEAD and TAIL. START is the index of the stretch glyph in
4860 row area AREA of glyph row ROW. END is the index of the last glyph
4861 in that glyph row area. X is the current output position assigned
4862 to the new glyph string constructed. HL overrides that face of the
4863 glyph; e.g. it is DRAW_CURSOR if a cursor has to be drawn. LAST_X
4864 is the right-most x-position of the drawing area. */
4865
8abee2e1
DL
4866/* SunOS 4 bundled cc, barfed on continuations in the arg lists here
4867 and below -- keep them on one line. */
4868#define BUILD_STRETCH_GLYPH_STRING(W, ROW, AREA, START, END, HEAD, TAIL, HL, X, LAST_X) \
06a2c219
GM
4869 do \
4870 { \
4871 s = (struct glyph_string *) alloca (sizeof *s); \
4872 x_init_glyph_string (s, NULL, W, ROW, AREA, START, HL); \
209f68d9 4873 START = x_fill_stretch_glyph_string (s, ROW, AREA, START, END); \
06a2c219 4874 x_append_glyph_string (&HEAD, &TAIL, s); \
06a2c219
GM
4875 s->x = (X); \
4876 } \
4877 while (0)
4878
4879
4880/* Add a glyph string for an image glyph to the list of strings
4881 between HEAD and TAIL. START is the index of the image glyph in
4882 row area AREA of glyph row ROW. END is the index of the last glyph
4883 in that glyph row area. X is the current output position assigned
4884 to the new glyph string constructed. HL overrides that face of the
4885 glyph; e.g. it is DRAW_CURSOR if a cursor has to be drawn. LAST_X
4886 is the right-most x-position of the drawing area. */
4887
8abee2e1 4888#define BUILD_IMAGE_GLYPH_STRING(W, ROW, AREA, START, END, HEAD, TAIL, HL, X, LAST_X) \
06a2c219
GM
4889 do \
4890 { \
4891 s = (struct glyph_string *) alloca (sizeof *s); \
4892 x_init_glyph_string (s, NULL, W, ROW, AREA, START, HL); \
4893 x_fill_image_glyph_string (s); \
4894 x_append_glyph_string (&HEAD, &TAIL, s); \
4895 ++START; \
4896 s->x = (X); \
4897 } \
4898 while (0)
4899
4900
4901/* Add a glyph string for a sequence of character glyphs to the list
4902 of strings between HEAD and TAIL. START is the index of the first
4903 glyph in row area AREA of glyph row ROW that is part of the new
4904 glyph string. END is the index of the last glyph in that glyph row
4905 area. X is the current output position assigned to the new glyph
4906 string constructed. HL overrides that face of the glyph; e.g. it
4907 is DRAW_CURSOR if a cursor has to be drawn. LAST_X is the
4908 right-most x-position of the drawing area. */
4909
8abee2e1 4910#define BUILD_CHAR_GLYPH_STRINGS(W, ROW, AREA, START, END, HEAD, TAIL, HL, X, LAST_X, OVERLAPS_P) \
06a2c219
GM
4911 do \
4912 { \
3e71d8f2 4913 int c, face_id; \
06a2c219
GM
4914 XChar2b *char2b; \
4915 \
43d120d8 4916 c = (ROW)->glyphs[AREA][START].u.ch; \
43d120d8 4917 face_id = (ROW)->glyphs[AREA][START].face_id; \
06a2c219 4918 \
b4192550
KH
4919 s = (struct glyph_string *) alloca (sizeof *s); \
4920 char2b = (XChar2b *) alloca ((END - START) * sizeof *char2b); \
4921 x_init_glyph_string (s, char2b, W, ROW, AREA, START, HL); \
4922 x_append_glyph_string (&HEAD, &TAIL, s); \
b4192550
KH
4923 s->x = (X); \
4924 START = x_fill_glyph_string (s, face_id, START, END, \
66ac4b0e 4925 OVERLAPS_P); \
06a2c219
GM
4926 } \
4927 while (0)
4928
4929
b4192550
KH
4930/* Add a glyph string for a composite sequence to the list of strings
4931 between HEAD and TAIL. START is the index of the first glyph in
4932 row area AREA of glyph row ROW that is part of the new glyph
4933 string. END is the index of the last glyph in that glyph row area.
4934 X is the current output position assigned to the new glyph string
4935 constructed. HL overrides that face of the glyph; e.g. it is
4936 DRAW_CURSOR if a cursor has to be drawn. LAST_X is the right-most
4937 x-position of the drawing area. */
4938
6c27ec25 4939#define BUILD_COMPOSITE_GLYPH_STRING(W, ROW, AREA, START, END, HEAD, TAIL, HL, X, LAST_X, OVERLAPS_P) \
b4192550 4940 do { \
43d120d8
KH
4941 int cmp_id = (ROW)->glyphs[AREA][START].u.cmp_id; \
4942 int face_id = (ROW)->glyphs[AREA][START].face_id; \
ee569018 4943 struct face *base_face = FACE_FROM_ID (XFRAME (w->frame), face_id); \
b4192550
KH
4944 struct composition *cmp = composition_table[cmp_id]; \
4945 int glyph_len = cmp->glyph_len; \
4946 XChar2b *char2b; \
4947 struct face **faces; \
4948 struct glyph_string *first_s = NULL; \
4949 int n; \
4950 \
ee569018 4951 base_face = base_face->ascii_face; \
b4192550
KH
4952 char2b = (XChar2b *) alloca ((sizeof *char2b) * glyph_len); \
4953 faces = (struct face **) alloca ((sizeof *faces) * glyph_len); \
4954 /* At first, fill in `char2b' and `faces'. */ \
4955 for (n = 0; n < glyph_len; n++) \
4956 { \
43d120d8 4957 int c = COMPOSITION_GLYPH (cmp, n); \
ee569018
KH
4958 int this_face_id = FACE_FOR_CHAR (XFRAME (w->frame), base_face, c); \
4959 faces[n] = FACE_FROM_ID (XFRAME (w->frame), this_face_id); \
4960 x_get_char_face_and_encoding (XFRAME (w->frame), c, \
4961 this_face_id, char2b + n, 1); \
b4192550
KH
4962 } \
4963 \
4964 /* Make glyph_strings for each glyph sequence that is drawable by \
4965 the same face, and append them to HEAD/TAIL. */ \
4966 for (n = 0; n < cmp->glyph_len;) \
4967 { \
4968 s = (struct glyph_string *) alloca (sizeof *s); \
4969 x_init_glyph_string (s, char2b + n, W, ROW, AREA, START, HL); \
4970 x_append_glyph_string (&(HEAD), &(TAIL), s); \
4971 s->cmp = cmp; \
4972 s->gidx = n; \
b4192550
KH
4973 s->x = (X); \
4974 \
4975 if (n == 0) \
4976 first_s = s; \
4977 \
4978 n = x_fill_composite_glyph_string (s, faces, OVERLAPS_P); \
4979 } \
4980 \
4981 ++START; \
4982 s = first_s; \
4983 } while (0)
4984
4985
06a2c219
GM
4986/* Build a list of glyph strings between HEAD and TAIL for the glyphs
4987 of AREA of glyph row ROW on window W between indices START and END.
4988 HL overrides the face for drawing glyph strings, e.g. it is
4989 DRAW_CURSOR to draw a cursor. X and LAST_X are start and end
4990 x-positions of the drawing area.
4991
4992 This is an ugly monster macro construct because we must use alloca
4993 to allocate glyph strings (because x_draw_glyphs can be called
4994 asynchronously). */
4995
8abee2e1 4996#define BUILD_GLYPH_STRINGS(W, ROW, AREA, START, END, HEAD, TAIL, HL, X, LAST_X, OVERLAPS_P) \
06a2c219
GM
4997 do \
4998 { \
4999 HEAD = TAIL = NULL; \
5000 while (START < END) \
5001 { \
5002 struct glyph *first_glyph = (ROW)->glyphs[AREA] + START; \
5003 switch (first_glyph->type) \
5004 { \
5005 case CHAR_GLYPH: \
5006 BUILD_CHAR_GLYPH_STRINGS (W, ROW, AREA, START, END, HEAD, \
66ac4b0e
GM
5007 TAIL, HL, X, LAST_X, \
5008 OVERLAPS_P); \
06a2c219
GM
5009 break; \
5010 \
b4192550
KH
5011 case COMPOSITE_GLYPH: \
5012 BUILD_COMPOSITE_GLYPH_STRING (W, ROW, AREA, START, END, \
5013 HEAD, TAIL, HL, X, LAST_X,\
5014 OVERLAPS_P); \
5015 break; \
5016 \
06a2c219
GM
5017 case STRETCH_GLYPH: \
5018 BUILD_STRETCH_GLYPH_STRING (W, ROW, AREA, START, END, \
5019 HEAD, TAIL, HL, X, LAST_X); \
5020 break; \
5021 \
5022 case IMAGE_GLYPH: \
5023 BUILD_IMAGE_GLYPH_STRING (W, ROW, AREA, START, END, HEAD, \
5024 TAIL, HL, X, LAST_X); \
5025 break; \
5026 \
5027 default: \
5028 abort (); \
5029 } \
5030 \
5031 x_set_glyph_string_background_width (s, START, LAST_X); \
5032 (X) += s->width; \
5033 } \
5034 } \
5035 while (0)
5036
5037
5038/* Draw glyphs between START and END in AREA of ROW on window W,
5039 starting at x-position X. X is relative to AREA in W. HL is a
5040 face-override with the following meaning:
5041
5042 DRAW_NORMAL_TEXT draw normally
5043 DRAW_CURSOR draw in cursor face
5044 DRAW_MOUSE_FACE draw in mouse face.
5045 DRAW_INVERSE_VIDEO draw in mode line face
5046 DRAW_IMAGE_SUNKEN draw an image with a sunken relief around it
5047 DRAW_IMAGE_RAISED draw an image with a raised relief around it
5048
66ac4b0e
GM
5049 If OVERLAPS_P is non-zero, draw only the foreground of characters
5050 and clip to the physical height of ROW.
5051
06a2c219
GM
5052 Value is the x-position reached, relative to AREA of W. */
5053
5054static int
f0a48a01 5055x_draw_glyphs (w, x, row, area, start, end, hl, overlaps_p)
06a2c219
GM
5056 struct window *w;
5057 int x;
5058 struct glyph_row *row;
5059 enum glyph_row_area area;
5060 int start, end;
5061 enum draw_glyphs_face hl;
66ac4b0e 5062 int overlaps_p;
dc6f92b8 5063{
06a2c219
GM
5064 struct glyph_string *head, *tail;
5065 struct glyph_string *s;
5066 int last_x, area_width;
5067 int x_reached;
5068 int i, j;
5069
5070 /* Let's rather be paranoid than getting a SEGV. */
06a2c219 5071 end = min (end, row->used[area]);
a8710abf
GM
5072 start = max (0, start);
5073 start = min (end, start);
06a2c219
GM
5074
5075 /* Translate X to frame coordinates. Set last_x to the right
5076 end of the drawing area. */
5077 if (row->full_width_p)
5078 {
5079 /* X is relative to the left edge of W, without scroll bars
3f332ef3 5080 or fringes. */
06a2c219 5081 struct frame *f = XFRAME (w->frame);
06a2c219 5082 int window_left_x = WINDOW_LEFT_MARGIN (w) * CANON_X_UNIT (f);
dc6f92b8 5083
06a2c219
GM
5084 x += window_left_x;
5085 area_width = XFASTINT (w->width) * CANON_X_UNIT (f);
5086 last_x = window_left_x + area_width;
5087
5088 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
5089 {
110859fc 5090 int width = FRAME_SCROLL_BAR_WIDTH (f) * CANON_X_UNIT (f);
06a2c219
GM
5091 if (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (f))
5092 last_x += width;
5093 else
5094 x -= width;
5095 }
dc6f92b8 5096
b9432a85 5097 x += FRAME_INTERNAL_BORDER_WIDTH (f);
98fedd97 5098 last_x += FRAME_INTERNAL_BORDER_WIDTH (f);
06a2c219
GM
5099 }
5100 else
dc6f92b8 5101 {
06a2c219
GM
5102 x = WINDOW_AREA_TO_FRAME_PIXEL_X (w, area, x);
5103 area_width = window_box_width (w, area);
5104 last_x = WINDOW_AREA_TO_FRAME_PIXEL_X (w, area, area_width);
dc6f92b8
JB
5105 }
5106
06a2c219
GM
5107 /* Build a doubly-linked list of glyph_string structures between
5108 head and tail from what we have to draw. Note that the macro
5109 BUILD_GLYPH_STRINGS will modify its start parameter. That's
5110 the reason we use a separate variable `i'. */
5111 i = start;
66ac4b0e
GM
5112 BUILD_GLYPH_STRINGS (w, row, area, i, end, head, tail, hl, x, last_x,
5113 overlaps_p);
06a2c219
GM
5114 if (tail)
5115 x_reached = tail->x + tail->background_width;
5116 else
5117 x_reached = x;
90e65f07 5118
06a2c219
GM
5119 /* If there are any glyphs with lbearing < 0 or rbearing > width in
5120 the row, redraw some glyphs in front or following the glyph
5121 strings built above. */
a8710abf 5122 if (head && !overlaps_p && row->contains_overlapping_glyphs_p)
06a2c219
GM
5123 {
5124 int dummy_x = 0;
5125 struct glyph_string *h, *t;
5126
5127 /* Compute overhangs for all glyph strings. */
5128 for (s = head; s; s = s->next)
5129 x_compute_glyph_string_overhangs (s);
5130
5131 /* Prepend glyph strings for glyphs in front of the first glyph
5132 string that are overwritten because of the first glyph
5133 string's left overhang. The background of all strings
5134 prepended must be drawn because the first glyph string
5135 draws over it. */
5136 i = x_left_overwritten (head);
5137 if (i >= 0)
5138 {
5139 j = i;
5140 BUILD_GLYPH_STRINGS (w, row, area, j, start, h, t,
66ac4b0e
GM
5141 DRAW_NORMAL_TEXT, dummy_x, last_x,
5142 overlaps_p);
06a2c219 5143 start = i;
06a2c219
GM
5144 x_compute_overhangs_and_x (t, head->x, 1);
5145 x_prepend_glyph_string_lists (&head, &tail, h, t);
5146 }
58769bee 5147
06a2c219
GM
5148 /* Prepend glyph strings for glyphs in front of the first glyph
5149 string that overwrite that glyph string because of their
5150 right overhang. For these strings, only the foreground must
5151 be drawn, because it draws over the glyph string at `head'.
5152 The background must not be drawn because this would overwrite
5153 right overhangs of preceding glyphs for which no glyph
5154 strings exist. */
5155 i = x_left_overwriting (head);
5156 if (i >= 0)
5157 {
5158 BUILD_GLYPH_STRINGS (w, row, area, i, start, h, t,
66ac4b0e
GM
5159 DRAW_NORMAL_TEXT, dummy_x, last_x,
5160 overlaps_p);
06a2c219
GM
5161 for (s = h; s; s = s->next)
5162 s->background_filled_p = 1;
06a2c219
GM
5163 x_compute_overhangs_and_x (t, head->x, 1);
5164 x_prepend_glyph_string_lists (&head, &tail, h, t);
5165 }
dbcb258a 5166
06a2c219
GM
5167 /* Append glyphs strings for glyphs following the last glyph
5168 string tail that are overwritten by tail. The background of
5169 these strings has to be drawn because tail's foreground draws
5170 over it. */
5171 i = x_right_overwritten (tail);
5172 if (i >= 0)
5173 {
5174 BUILD_GLYPH_STRINGS (w, row, area, end, i, h, t,
66ac4b0e
GM
5175 DRAW_NORMAL_TEXT, x, last_x,
5176 overlaps_p);
06a2c219
GM
5177 x_compute_overhangs_and_x (h, tail->x + tail->width, 0);
5178 x_append_glyph_string_lists (&head, &tail, h, t);
06a2c219 5179 }
dc6f92b8 5180
06a2c219
GM
5181 /* Append glyph strings for glyphs following the last glyph
5182 string tail that overwrite tail. The foreground of such
5183 glyphs has to be drawn because it writes into the background
5184 of tail. The background must not be drawn because it could
5185 paint over the foreground of following glyphs. */
5186 i = x_right_overwriting (tail);
5187 if (i >= 0)
5188 {
5189 BUILD_GLYPH_STRINGS (w, row, area, end, i, h, t,
66ac4b0e
GM
5190 DRAW_NORMAL_TEXT, x, last_x,
5191 overlaps_p);
06a2c219
GM
5192 for (s = h; s; s = s->next)
5193 s->background_filled_p = 1;
5194 x_compute_overhangs_and_x (h, tail->x + tail->width, 0);
5195 x_append_glyph_string_lists (&head, &tail, h, t);
06a2c219
GM
5196 }
5197 }
58769bee 5198
06a2c219
GM
5199 /* Draw all strings. */
5200 for (s = head; s; s = s->next)
5201 x_draw_glyph_string (s);
dc6f92b8 5202
bb313871
GM
5203 if (area == TEXT_AREA
5204 && !row->full_width_p
5205 /* When drawing overlapping rows, only the glyph strings'
5206 foreground is drawn, which doesn't erase a cursor
5207 completely. */
5208 && !overlaps_p)
f0a48a01
GM
5209 {
5210 int x0 = head ? head->x : x;
5211 int x1 = tail ? tail->x + tail->background_width : x;
5212
5213 x0 = FRAME_TO_WINDOW_PIXEL_X (w, x0);
5214 x1 = FRAME_TO_WINDOW_PIXEL_X (w, x1);
5215
bb313871 5216 if (XFASTINT (w->left_margin_width) != 0)
f0a48a01
GM
5217 {
5218 int left_area_width = window_box_width (w, LEFT_MARGIN_AREA);
5219 x0 -= left_area_width;
5220 x1 -= left_area_width;
5221 }
5222
60626bab
GM
5223 notice_overwritten_cursor (w, area, x0, x1,
5224 row->y, MATRIX_ROW_BOTTOM_Y (row));
f0a48a01
GM
5225 }
5226
06a2c219
GM
5227 /* Value is the x-position up to which drawn, relative to AREA of W.
5228 This doesn't include parts drawn because of overhangs. */
5229 x_reached = FRAME_TO_WINDOW_PIXEL_X (w, x_reached);
5230 if (!row->full_width_p)
5231 {
f0a48a01 5232 if (area > LEFT_MARGIN_AREA && XFASTINT (w->left_margin_width) != 0)
06a2c219
GM
5233 x_reached -= window_box_width (w, LEFT_MARGIN_AREA);
5234 if (area > TEXT_AREA)
5235 x_reached -= window_box_width (w, TEXT_AREA);
5236 }
a8710abf 5237
06a2c219
GM
5238 return x_reached;
5239}
dc6f92b8 5240
dc6f92b8 5241
66ac4b0e
GM
5242/* Fix the display of area AREA of overlapping row ROW in window W. */
5243
5244static void
5245x_fix_overlapping_area (w, row, area)
5246 struct window *w;
5247 struct glyph_row *row;
5248 enum glyph_row_area area;
5249{
5250 int i, x;
5251
5252 BLOCK_INPUT;
5253
5254 if (area == LEFT_MARGIN_AREA)
5255 x = 0;
5256 else if (area == TEXT_AREA)
5257 x = row->x + window_box_width (w, LEFT_MARGIN_AREA);
5258 else
5259 x = (window_box_width (w, LEFT_MARGIN_AREA)
5260 + window_box_width (w, TEXT_AREA));
5261
5262 for (i = 0; i < row->used[area];)
5263 {
5264 if (row->glyphs[area][i].overlaps_vertically_p)
5265 {
5266 int start = i, start_x = x;
5267
5268 do
5269 {
5270 x += row->glyphs[area][i].pixel_width;
5271 ++i;
5272 }
5273 while (i < row->used[area]
5274 && row->glyphs[area][i].overlaps_vertically_p);
5275
5276 x_draw_glyphs (w, start_x, row, area, start, i,
f0a48a01 5277 DRAW_NORMAL_TEXT, 1);
66ac4b0e
GM
5278 }
5279 else
5280 {
5281 x += row->glyphs[area][i].pixel_width;
5282 ++i;
5283 }
5284 }
5285
5286 UNBLOCK_INPUT;
5287}
5288
5289
06a2c219
GM
5290/* Output LEN glyphs starting at START at the nominal cursor position.
5291 Advance the nominal cursor over the text. The global variable
5292 updated_window contains the window being updated, updated_row is
5293 the glyph row being updated, and updated_area is the area of that
5294 row being updated. */
dc6f92b8 5295
06a2c219
GM
5296static void
5297x_write_glyphs (start, len)
5298 struct glyph *start;
5299 int len;
5300{
f0a48a01 5301 int x, hpos;
d9cdbb3d 5302
06a2c219 5303 xassert (updated_window && updated_row);
dc6f92b8 5304 BLOCK_INPUT;
06a2c219
GM
5305
5306 /* Write glyphs. */
dc6f92b8 5307
06a2c219
GM
5308 hpos = start - updated_row->glyphs[updated_area];
5309 x = x_draw_glyphs (updated_window, output_cursor.x,
5310 updated_row, updated_area,
5311 hpos, hpos + len,
f0a48a01 5312 DRAW_NORMAL_TEXT, 0);
dc6f92b8
JB
5313
5314 UNBLOCK_INPUT;
06a2c219
GM
5315
5316 /* Advance the output cursor. */
5317 output_cursor.hpos += len;
5318 output_cursor.x = x;
dc6f92b8
JB
5319}
5320
0cdd0c9f 5321
06a2c219 5322/* Insert LEN glyphs from START at the nominal cursor position. */
0cdd0c9f 5323
06a2c219
GM
5324static void
5325x_insert_glyphs (start, len)
5326 struct glyph *start;
5327 register int len;
5328{
5329 struct frame *f;
5330 struct window *w;
5331 int line_height, shift_by_width, shifted_region_width;
5332 struct glyph_row *row;
5333 struct glyph *glyph;
2beb36f9 5334 int frame_x, frame_y, hpos;
58769bee 5335
06a2c219 5336 xassert (updated_window && updated_row);
0cdd0c9f 5337 BLOCK_INPUT;
06a2c219
GM
5338 w = updated_window;
5339 f = XFRAME (WINDOW_FRAME (w));
5340
5341 /* Get the height of the line we are in. */
5342 row = updated_row;
5343 line_height = row->height;
5344
5345 /* Get the width of the glyphs to insert. */
5346 shift_by_width = 0;
5347 for (glyph = start; glyph < start + len; ++glyph)
5348 shift_by_width += glyph->pixel_width;
5349
5350 /* Get the width of the region to shift right. */
5351 shifted_region_width = (window_box_width (w, updated_area)
5352 - output_cursor.x
5353 - shift_by_width);
5354
5355 /* Shift right. */
bf0ab8a2 5356 frame_x = window_box_left (w, updated_area) + output_cursor.x;
06a2c219
GM
5357 frame_y = WINDOW_TO_FRAME_PIXEL_Y (w, output_cursor.y);
5358 XCopyArea (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), FRAME_X_WINDOW (f),
5359 f->output_data.x->normal_gc,
5360 frame_x, frame_y,
5361 shifted_region_width, line_height,
5362 frame_x + shift_by_width, frame_y);
5363
5364 /* Write the glyphs. */
5365 hpos = start - row->glyphs[updated_area];
5366 x_draw_glyphs (w, output_cursor.x, row, updated_area, hpos, hpos + len,
f0a48a01 5367 DRAW_NORMAL_TEXT, 0);
06a2c219
GM
5368
5369 /* Advance the output cursor. */
5370 output_cursor.hpos += len;
5371 output_cursor.x += shift_by_width;
0cdd0c9f
RS
5372 UNBLOCK_INPUT;
5373}
0cdd0c9f 5374
0cdd0c9f 5375
06a2c219
GM
5376/* Delete N glyphs at the nominal cursor position. Not implemented
5377 for X frames. */
c83febd7
RS
5378
5379static void
06a2c219
GM
5380x_delete_glyphs (n)
5381 register int n;
c83febd7 5382{
06a2c219 5383 abort ();
c83febd7
RS
5384}
5385
0cdd0c9f 5386
c5e6e06b
GM
5387/* Like XClearArea, but check that WIDTH and HEIGHT are reasonable.
5388 If they are <= 0, this is probably an error. */
5389
5390void
5391x_clear_area (dpy, window, x, y, width, height, exposures)
5392 Display *dpy;
5393 Window window;
5394 int x, y;
5395 int width, height;
5396 int exposures;
5397{
5398 xassert (width > 0 && height > 0);
5399 XClearArea (dpy, window, x, y, width, height, exposures);
5400}
5401
5402
06a2c219
GM
5403/* Erase the current text line from the nominal cursor position
5404 (inclusive) to pixel column TO_X (exclusive). The idea is that
5405 everything from TO_X onward is already erased.
5406
5407 TO_X is a pixel position relative to updated_area of
5408 updated_window. TO_X == -1 means clear to the end of this area. */
dc6f92b8 5409
06a2c219
GM
5410static void
5411x_clear_end_of_line (to_x)
5412 int to_x;
5413{
5414 struct frame *f;
5415 struct window *w = updated_window;
5416 int max_x, min_y, max_y;
5417 int from_x, from_y, to_y;
5418
5419 xassert (updated_window && updated_row);
5420 f = XFRAME (w->frame);
5421
5422 if (updated_row->full_width_p)
5423 {
5424 max_x = XFASTINT (w->width) * CANON_X_UNIT (f);
5425 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f)
5426 && !w->pseudo_window_p)
5427 max_x += FRAME_SCROLL_BAR_WIDTH (f) * CANON_X_UNIT (f);
0cdd0c9f 5428 }
06a2c219
GM
5429 else
5430 max_x = window_box_width (w, updated_area);
5431 max_y = window_text_bottom_y (w);
dc6f92b8 5432
06a2c219
GM
5433 /* TO_X == 0 means don't do anything. TO_X < 0 means clear to end
5434 of window. For TO_X > 0, truncate to end of drawing area. */
5435 if (to_x == 0)
5436 return;
5437 else if (to_x < 0)
5438 to_x = max_x;
5439 else
5440 to_x = min (to_x, max_x);
dbc4e1c1 5441
06a2c219
GM
5442 to_y = min (max_y, output_cursor.y + updated_row->height);
5443
5444 /* Notice if the cursor will be cleared by this operation. */
5445 if (!updated_row->full_width_p)
60626bab
GM
5446 notice_overwritten_cursor (w, updated_area,
5447 output_cursor.x, -1,
5448 updated_row->y,
5449 MATRIX_ROW_BOTTOM_Y (updated_row));
dbc4e1c1 5450
06a2c219
GM
5451 from_x = output_cursor.x;
5452
5453 /* Translate to frame coordinates. */
5454 if (updated_row->full_width_p)
5455 {
5456 from_x = WINDOW_TO_FRAME_PIXEL_X (w, from_x);
5457 to_x = WINDOW_TO_FRAME_PIXEL_X (w, to_x);
5458 }
0cdd0c9f
RS
5459 else
5460 {
06a2c219
GM
5461 from_x = WINDOW_AREA_TO_FRAME_PIXEL_X (w, updated_area, from_x);
5462 to_x = WINDOW_AREA_TO_FRAME_PIXEL_X (w, updated_area, to_x);
5463 }
5464
045dee35 5465 min_y = WINDOW_DISPLAY_HEADER_LINE_HEIGHT (w);
06a2c219
GM
5466 from_y = WINDOW_TO_FRAME_PIXEL_Y (w, max (min_y, output_cursor.y));
5467 to_y = WINDOW_TO_FRAME_PIXEL_Y (w, to_y);
5468
5469 /* Prevent inadvertently clearing to end of the X window. */
5470 if (to_x > from_x && to_y > from_y)
5471 {
5472 BLOCK_INPUT;
c5e6e06b
GM
5473 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5474 from_x, from_y, to_x - from_x, to_y - from_y,
5475 False);
06a2c219 5476 UNBLOCK_INPUT;
0cdd0c9f 5477 }
0cdd0c9f 5478}
dbc4e1c1 5479
0cdd0c9f 5480
06a2c219 5481/* Clear entire frame. If updating_frame is non-null, clear that
b86bd3dd 5482 frame. Otherwise clear the selected frame. */
06a2c219
GM
5483
5484static void
5485x_clear_frame ()
0cdd0c9f 5486{
06a2c219 5487 struct frame *f;
0cdd0c9f 5488
06a2c219
GM
5489 if (updating_frame)
5490 f = updating_frame;
0cdd0c9f 5491 else
b86bd3dd 5492 f = SELECTED_FRAME ();
58769bee 5493
06a2c219
GM
5494 /* Clearing the frame will erase any cursor, so mark them all as no
5495 longer visible. */
5496 mark_window_cursors_off (XWINDOW (FRAME_ROOT_WINDOW (f)));
5497 output_cursor.hpos = output_cursor.vpos = 0;
5498 output_cursor.x = -1;
5499
5500 /* We don't set the output cursor here because there will always
5501 follow an explicit cursor_to. */
5502 BLOCK_INPUT;
5503 XClearWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
5504
5505 /* We have to clear the scroll bars, too. If we have changed
5506 colors or something like that, then they should be notified. */
5507 x_scroll_bar_clear (f);
0cdd0c9f 5508
06a2c219
GM
5509 XFlush (FRAME_X_DISPLAY (f));
5510 UNBLOCK_INPUT;
dc6f92b8 5511}
06a2c219
GM
5512
5513
dc6f92b8 5514\f
dbc4e1c1
JB
5515/* Invert the middle quarter of the frame for .15 sec. */
5516
06a2c219
GM
5517/* We use the select system call to do the waiting, so we have to make
5518 sure it's available. If it isn't, we just won't do visual bells. */
5519
dbc4e1c1
JB
5520#if defined (HAVE_TIMEVAL) && defined (HAVE_SELECT)
5521
06a2c219
GM
5522
5523/* Subtract the `struct timeval' values X and Y, storing the result in
5524 *RESULT. Return 1 if the difference is negative, otherwise 0. */
dbc4e1c1
JB
5525
5526static int
5527timeval_subtract (result, x, y)
5528 struct timeval *result, x, y;
5529{
06a2c219
GM
5530 /* Perform the carry for the later subtraction by updating y. This
5531 is safer because on some systems the tv_sec member is unsigned. */
dbc4e1c1
JB
5532 if (x.tv_usec < y.tv_usec)
5533 {
5534 int nsec = (y.tv_usec - x.tv_usec) / 1000000 + 1;
5535 y.tv_usec -= 1000000 * nsec;
5536 y.tv_sec += nsec;
5537 }
06a2c219 5538
dbc4e1c1
JB
5539 if (x.tv_usec - y.tv_usec > 1000000)
5540 {
5541 int nsec = (y.tv_usec - x.tv_usec) / 1000000;
5542 y.tv_usec += 1000000 * nsec;
5543 y.tv_sec -= nsec;
5544 }
5545
06a2c219
GM
5546 /* Compute the time remaining to wait. tv_usec is certainly
5547 positive. */
dbc4e1c1
JB
5548 result->tv_sec = x.tv_sec - y.tv_sec;
5549 result->tv_usec = x.tv_usec - y.tv_usec;
5550
06a2c219
GM
5551 /* Return indication of whether the result should be considered
5552 negative. */
dbc4e1c1
JB
5553 return x.tv_sec < y.tv_sec;
5554}
dc6f92b8 5555
dfcf069d 5556void
f676886a
JB
5557XTflash (f)
5558 struct frame *f;
dc6f92b8 5559{
dbc4e1c1 5560 BLOCK_INPUT;
dc6f92b8 5561
dbc4e1c1
JB
5562 {
5563 GC gc;
dc6f92b8 5564
06a2c219
GM
5565 /* Create a GC that will use the GXxor function to flip foreground
5566 pixels into background pixels. */
dbc4e1c1
JB
5567 {
5568 XGCValues values;
dc6f92b8 5569
dbc4e1c1 5570 values.function = GXxor;
7556890b
RS
5571 values.foreground = (f->output_data.x->foreground_pixel
5572 ^ f->output_data.x->background_pixel);
58769bee 5573
334208b7 5574 gc = XCreateGC (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
dbc4e1c1
JB
5575 GCFunction | GCForeground, &values);
5576 }
dc6f92b8 5577
dbc4e1c1 5578 {
e84e14c3
RS
5579 /* Get the height not including a menu bar widget. */
5580 int height = CHAR_TO_PIXEL_HEIGHT (f, FRAME_HEIGHT (f));
5581 /* Height of each line to flash. */
5582 int flash_height = FRAME_LINE_HEIGHT (f);
5583 /* These will be the left and right margins of the rectangles. */
5584 int flash_left = FRAME_INTERNAL_BORDER_WIDTH (f);
5585 int flash_right = PIXEL_WIDTH (f) - FRAME_INTERNAL_BORDER_WIDTH (f);
5586
5587 int width;
5588
5589 /* Don't flash the area between a scroll bar and the frame
5590 edge it is next to. */
5591 switch (FRAME_VERTICAL_SCROLL_BAR_TYPE (f))
5592 {
5593 case vertical_scroll_bar_left:
5594 flash_left += VERTICAL_SCROLL_BAR_WIDTH_TRIM;
5595 break;
5596
5597 case vertical_scroll_bar_right:
5598 flash_right -= VERTICAL_SCROLL_BAR_WIDTH_TRIM;
5599 break;
06a2c219
GM
5600
5601 default:
5602 break;
e84e14c3
RS
5603 }
5604
5605 width = flash_right - flash_left;
5606
5607 /* If window is tall, flash top and bottom line. */
5608 if (height > 3 * FRAME_LINE_HEIGHT (f))
5609 {
5610 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
06a2c219
GM
5611 flash_left,
5612 (FRAME_INTERNAL_BORDER_WIDTH (f)
9ea173e8 5613 + FRAME_TOOL_BAR_LINES (f) * CANON_Y_UNIT (f)),
e84e14c3
RS
5614 width, flash_height);
5615 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
5616 flash_left,
5617 (height - flash_height
5618 - FRAME_INTERNAL_BORDER_WIDTH (f)),
5619 width, flash_height);
5620 }
5621 else
5622 /* If it is short, flash it all. */
5623 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
5624 flash_left, FRAME_INTERNAL_BORDER_WIDTH (f),
5625 width, height - 2 * FRAME_INTERNAL_BORDER_WIDTH (f));
dc6f92b8 5626
06a2c219 5627 x_flush (f);
dc6f92b8 5628
dbc4e1c1 5629 {
06a2c219 5630 struct timeval wakeup;
dc6f92b8 5631
66c30ea1 5632 EMACS_GET_TIME (wakeup);
dc6f92b8 5633
dbc4e1c1
JB
5634 /* Compute time to wait until, propagating carry from usecs. */
5635 wakeup.tv_usec += 150000;
5636 wakeup.tv_sec += (wakeup.tv_usec / 1000000);
5637 wakeup.tv_usec %= 1000000;
5638
101922c3
GM
5639 /* Keep waiting until past the time wakeup or any input gets
5640 available. */
5641 while (! detect_input_pending ())
dbc4e1c1 5642 {
101922c3 5643 struct timeval current;
dbc4e1c1
JB
5644 struct timeval timeout;
5645
101922c3 5646 EMACS_GET_TIME (current);
dbc4e1c1 5647
101922c3
GM
5648 /* Break if result would be negative. */
5649 if (timeval_subtract (&current, wakeup, current))
dbc4e1c1
JB
5650 break;
5651
101922c3
GM
5652 /* How long `select' should wait. */
5653 timeout.tv_sec = 0;
5654 timeout.tv_usec = 10000;
5655
dbc4e1c1 5656 /* Try to wait that long--but we might wake up sooner. */
c32cdd9a 5657 select (0, NULL, NULL, NULL, &timeout);
dbc4e1c1
JB
5658 }
5659 }
58769bee 5660
e84e14c3
RS
5661 /* If window is tall, flash top and bottom line. */
5662 if (height > 3 * FRAME_LINE_HEIGHT (f))
5663 {
5664 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
06a2c219
GM
5665 flash_left,
5666 (FRAME_INTERNAL_BORDER_WIDTH (f)
9ea173e8 5667 + FRAME_TOOL_BAR_LINES (f) * CANON_Y_UNIT (f)),
e84e14c3
RS
5668 width, flash_height);
5669 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
5670 flash_left,
5671 (height - flash_height
5672 - FRAME_INTERNAL_BORDER_WIDTH (f)),
5673 width, flash_height);
5674 }
5675 else
5676 /* If it is short, flash it all. */
5677 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
5678 flash_left, FRAME_INTERNAL_BORDER_WIDTH (f),
5679 width, height - 2 * FRAME_INTERNAL_BORDER_WIDTH (f));
5680
334208b7 5681 XFreeGC (FRAME_X_DISPLAY (f), gc);
06a2c219 5682 x_flush (f);
dc6f92b8 5683 }
dbc4e1c1
JB
5684 }
5685
5686 UNBLOCK_INPUT;
dc6f92b8
JB
5687}
5688
06a2c219 5689#endif /* defined (HAVE_TIMEVAL) && defined (HAVE_SELECT) */
dbc4e1c1
JB
5690
5691
dc6f92b8
JB
5692/* Make audible bell. */
5693
dfcf069d 5694void
dc6f92b8
JB
5695XTring_bell ()
5696{
b86bd3dd
GM
5697 struct frame *f = SELECTED_FRAME ();
5698
5699 if (FRAME_X_DISPLAY (f))
5700 {
dbc4e1c1 5701#if defined (HAVE_TIMEVAL) && defined (HAVE_SELECT)
b86bd3dd
GM
5702 if (visible_bell)
5703 XTflash (f);
5704 else
dbc4e1c1 5705#endif
b86bd3dd
GM
5706 {
5707 BLOCK_INPUT;
5708 XBell (FRAME_X_DISPLAY (f), 0);
5709 XFlush (FRAME_X_DISPLAY (f));
5710 UNBLOCK_INPUT;
5711 }
dc6f92b8
JB
5712 }
5713}
06a2c219 5714
dc6f92b8 5715\f
06a2c219
GM
5716/* Specify how many text lines, from the top of the window,
5717 should be affected by insert-lines and delete-lines operations.
5718 This, and those operations, are used only within an update
5719 that is bounded by calls to x_update_begin and x_update_end. */
dc6f92b8 5720
dfcf069d 5721static void
06a2c219
GM
5722XTset_terminal_window (n)
5723 register int n;
dc6f92b8 5724{
06a2c219 5725 /* This function intentionally left blank. */
dc6f92b8
JB
5726}
5727
06a2c219
GM
5728
5729\f
5730/***********************************************************************
5731 Line Dance
5732 ***********************************************************************/
5733
5734/* Perform an insert-lines or delete-lines operation, inserting N
5735 lines or deleting -N lines at vertical position VPOS. */
5736
dfcf069d 5737static void
06a2c219
GM
5738x_ins_del_lines (vpos, n)
5739 int vpos, n;
dc6f92b8
JB
5740{
5741 abort ();
5742}
06a2c219
GM
5743
5744
5745/* Scroll part of the display as described by RUN. */
dc6f92b8 5746
dfcf069d 5747static void
06a2c219
GM
5748x_scroll_run (w, run)
5749 struct window *w;
5750 struct run *run;
dc6f92b8 5751{
06a2c219
GM
5752 struct frame *f = XFRAME (w->frame);
5753 int x, y, width, height, from_y, to_y, bottom_y;
5754
5755 /* Get frame-relative bounding box of the text display area of W,
3f332ef3
KS
5756 without mode lines. Include in this box the left and right
5757 fringe of W. */
06a2c219 5758 window_box (w, -1, &x, &y, &width, &height);
3f332ef3
KS
5759 width += FRAME_X_FRINGE_WIDTH (f);
5760 x -= FRAME_X_LEFT_FRINGE_WIDTH (f);
06a2c219
GM
5761
5762 from_y = WINDOW_TO_FRAME_PIXEL_Y (w, run->current_y);
5763 to_y = WINDOW_TO_FRAME_PIXEL_Y (w, run->desired_y);
5764 bottom_y = y + height;
dc6f92b8 5765
06a2c219
GM
5766 if (to_y < from_y)
5767 {
5768 /* Scrolling up. Make sure we don't copy part of the mode
5769 line at the bottom. */
5770 if (from_y + run->height > bottom_y)
5771 height = bottom_y - from_y;
5772 else
5773 height = run->height;
5774 }
dc6f92b8 5775 else
06a2c219
GM
5776 {
5777 /* Scolling down. Make sure we don't copy over the mode line.
5778 at the bottom. */
5779 if (to_y + run->height > bottom_y)
5780 height = bottom_y - to_y;
5781 else
5782 height = run->height;
5783 }
7a13e894 5784
06a2c219
GM
5785 BLOCK_INPUT;
5786
5787 /* Cursor off. Will be switched on again in x_update_window_end. */
5788 updated_window = w;
5789 x_clear_cursor (w);
5790
5791 XCopyArea (FRAME_X_DISPLAY (f),
5792 FRAME_X_WINDOW (f), FRAME_X_WINDOW (f),
5793 f->output_data.x->normal_gc,
5794 x, from_y,
5795 width, height,
5796 x, to_y);
5797
5798 UNBLOCK_INPUT;
5799}
dc6f92b8 5800
dc6f92b8 5801
06a2c219
GM
5802\f
5803/***********************************************************************
5804 Exposure Events
5805 ***********************************************************************/
5806
5807/* Redisplay an exposed area of frame F. X and Y are the upper-left
5808 corner of the exposed rectangle. W and H are width and height of
5809 the exposed area. All are pixel values. W or H zero means redraw
5810 the entire frame. */
dc6f92b8 5811
06a2c219
GM
5812static void
5813expose_frame (f, x, y, w, h)
5814 struct frame *f;
5815 int x, y, w, h;
dc6f92b8 5816{
06a2c219 5817 XRectangle r;
82f053ab 5818 int mouse_face_overwritten_p = 0;
dc6f92b8 5819
06a2c219 5820 TRACE ((stderr, "expose_frame "));
dc6f92b8 5821
06a2c219
GM
5822 /* No need to redraw if frame will be redrawn soon. */
5823 if (FRAME_GARBAGED_P (f))
dc6f92b8 5824 {
06a2c219
GM
5825 TRACE ((stderr, " garbaged\n"));
5826 return;
5827 }
5828
5829 /* If basic faces haven't been realized yet, there is no point in
5830 trying to redraw anything. This can happen when we get an expose
5831 event while Emacs is starting, e.g. by moving another window. */
5832 if (FRAME_FACE_CACHE (f) == NULL
5833 || FRAME_FACE_CACHE (f)->used < BASIC_FACE_ID_SENTINEL)
5834 {
5835 TRACE ((stderr, " no faces\n"));
5836 return;
58769bee 5837 }
06a2c219
GM
5838
5839 if (w == 0 || h == 0)
58769bee 5840 {
06a2c219
GM
5841 r.x = r.y = 0;
5842 r.width = CANON_X_UNIT (f) * f->width;
5843 r.height = CANON_Y_UNIT (f) * f->height;
dc6f92b8
JB
5844 }
5845 else
5846 {
06a2c219
GM
5847 r.x = x;
5848 r.y = y;
5849 r.width = w;
5850 r.height = h;
5851 }
5852
5853 TRACE ((stderr, "(%d, %d, %d, %d)\n", r.x, r.y, r.width, r.height));
82f053ab 5854 mouse_face_overwritten_p = expose_window_tree (XWINDOW (f->root_window), &r);
06a2c219 5855
9ea173e8 5856 if (WINDOWP (f->tool_bar_window))
82f053ab
GM
5857 mouse_face_overwritten_p
5858 |= expose_window (XWINDOW (f->tool_bar_window), &r);
06a2c219
GM
5859
5860#ifndef USE_X_TOOLKIT
5861 if (WINDOWP (f->menu_bar_window))
82f053ab
GM
5862 mouse_face_overwritten_p
5863 |= expose_window (XWINDOW (f->menu_bar_window), &r);
06a2c219 5864#endif /* not USE_X_TOOLKIT */
82f053ab
GM
5865
5866 /* Some window managers support a focus-follows-mouse style with
5867 delayed raising of frames. Imagine a partially obscured frame,
5868 and moving the mouse into partially obscured mouse-face on that
5869 frame. The visible part of the mouse-face will be highlighted,
5870 then the WM raises the obscured frame. With at least one WM, KDE
5871 2.1, Emacs is not getting any event for the raising of the frame
5872 (even tried with SubstructureRedirectMask), only Expose events.
5873 These expose events will draw text normally, i.e. not
5874 highlighted. Which means we must redo the highlight here.
5875 Subsume it under ``we love X''. --gerd 2001-08-15 */
5876 if (mouse_face_overwritten_p && !FRAME_GARBAGED_P (f))
5877 {
5878 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
5879 if (f == dpyinfo->mouse_face_mouse_frame)
5880 {
5881 int x = dpyinfo->mouse_face_mouse_x;
5882 int y = dpyinfo->mouse_face_mouse_y;
5883 clear_mouse_face (dpyinfo);
5884 note_mouse_highlight (f, x, y);
5885 }
5886 }
dc6f92b8
JB
5887}
5888
06a2c219
GM
5889
5890/* Redraw (parts) of all windows in the window tree rooted at W that
82f053ab
GM
5891 intersect R. R contains frame pixel coordinates. Value is
5892 non-zero if the exposure overwrites mouse-face. */
06a2c219 5893
82f053ab 5894static int
06a2c219
GM
5895expose_window_tree (w, r)
5896 struct window *w;
5897 XRectangle *r;
dc6f92b8 5898{
82f053ab
GM
5899 struct frame *f = XFRAME (w->frame);
5900 int mouse_face_overwritten_p = 0;
5901
5902 while (w && !FRAME_GARBAGED_P (f))
06a2c219
GM
5903 {
5904 if (!NILP (w->hchild))
82f053ab
GM
5905 mouse_face_overwritten_p
5906 |= expose_window_tree (XWINDOW (w->hchild), r);
06a2c219 5907 else if (!NILP (w->vchild))
82f053ab
GM
5908 mouse_face_overwritten_p
5909 |= expose_window_tree (XWINDOW (w->vchild), r);
5910 else
5911 mouse_face_overwritten_p |= expose_window (w, r);
5912
a02f1be0 5913 w = NILP (w->next) ? NULL : XWINDOW (w->next);
06a2c219 5914 }
82f053ab
GM
5915
5916 return mouse_face_overwritten_p;
06a2c219 5917}
58769bee 5918
dc6f92b8 5919
06a2c219
GM
5920/* Redraw the part of glyph row area AREA of glyph row ROW on window W
5921 which intersects rectangle R. R is in window-relative coordinates. */
5922
5923static void
5924expose_area (w, row, r, area)
5925 struct window *w;
5926 struct glyph_row *row;
5927 XRectangle *r;
5928 enum glyph_row_area area;
5929{
06a2c219
GM
5930 struct glyph *first = row->glyphs[area];
5931 struct glyph *end = row->glyphs[area] + row->used[area];
5932 struct glyph *last;
4bc6dcc7 5933 int first_x, start_x, x;
06a2c219 5934
6fb13182
GM
5935 if (area == TEXT_AREA && row->fill_line_p)
5936 /* If row extends face to end of line write the whole line. */
153f5ed7 5937 x_draw_glyphs (w, 0, row, area, 0, row->used[area],
f0a48a01 5938 DRAW_NORMAL_TEXT, 0);
6fb13182
GM
5939 else
5940 {
4bc6dcc7
GM
5941 /* Set START_X to the window-relative start position for drawing glyphs of
5942 AREA. The first glyph of the text area can be partially visible.
5943 The first glyphs of other areas cannot. */
5944 if (area == LEFT_MARGIN_AREA)
5945 start_x = 0;
5946 else if (area == TEXT_AREA)
5947 start_x = row->x + window_box_width (w, LEFT_MARGIN_AREA);
5948 else
5949 start_x = (window_box_width (w, LEFT_MARGIN_AREA)
5950 + window_box_width (w, TEXT_AREA));
5951 x = start_x;
5952
6fb13182
GM
5953 /* Find the first glyph that must be redrawn. */
5954 while (first < end
5955 && x + first->pixel_width < r->x)
5956 {
5957 x += first->pixel_width;
5958 ++first;
5959 }
5960
5961 /* Find the last one. */
5962 last = first;
5963 first_x = x;
5964 while (last < end
5965 && x < r->x + r->width)
5966 {
5967 x += last->pixel_width;
5968 ++last;
5969 }
5970
5971 /* Repaint. */
5972 if (last > first)
4bc6dcc7 5973 x_draw_glyphs (w, first_x - start_x, row, area,
6fb13182
GM
5974 first - row->glyphs[area],
5975 last - row->glyphs[area],
f0a48a01 5976 DRAW_NORMAL_TEXT, 0);
6fb13182 5977 }
06a2c219
GM
5978}
5979
58769bee 5980
06a2c219 5981/* Redraw the parts of the glyph row ROW on window W intersecting
82f053ab
GM
5982 rectangle R. R is in window-relative coordinates. Value is
5983 non-zero if mouse-face was overwritten. */
dc6f92b8 5984
82f053ab 5985static int
06a2c219
GM
5986expose_line (w, row, r)
5987 struct window *w;
5988 struct glyph_row *row;
5989 XRectangle *r;
5990{
5991 xassert (row->enabled_p);
5992
5993 if (row->mode_line_p || w->pseudo_window_p)
5994 x_draw_glyphs (w, 0, row, TEXT_AREA, 0, row->used[TEXT_AREA],
f0a48a01 5995 DRAW_NORMAL_TEXT, 0);
06a2c219
GM
5996 else
5997 {
5998 if (row->used[LEFT_MARGIN_AREA])
5999 expose_area (w, row, r, LEFT_MARGIN_AREA);
6000 if (row->used[TEXT_AREA])
6001 expose_area (w, row, r, TEXT_AREA);
6002 if (row->used[RIGHT_MARGIN_AREA])
6003 expose_area (w, row, r, RIGHT_MARGIN_AREA);
3f332ef3 6004 x_draw_row_fringe_bitmaps (w, row);
06a2c219 6005 }
82f053ab
GM
6006
6007 return row->mouse_face_p;
06a2c219 6008}
dc6f92b8 6009
58769bee 6010
06a2c219
GM
6011/* Return non-zero if W's cursor intersects rectangle R. */
6012
6013static int
6014x_phys_cursor_in_rect_p (w, r)
6015 struct window *w;
6016 XRectangle *r;
6017{
6018 XRectangle cr, result;
6019 struct glyph *cursor_glyph;
6020
6021 cursor_glyph = get_phys_cursor_glyph (w);
6022 if (cursor_glyph)
6023 {
6024 cr.x = w->phys_cursor.x;
6025 cr.y = w->phys_cursor.y;
6026 cr.width = cursor_glyph->pixel_width;
6027 cr.height = w->phys_cursor_height;
6028 return x_intersect_rectangles (&cr, r, &result);
6029 }
6030 else
6031 return 0;
dc6f92b8 6032}
dc6f92b8 6033
06a2c219 6034
a02f1be0
GM
6035/* Redraw the part of window W intersection rectangle FR. Pixel
6036 coordinates in FR are frame-relative. Call this function with
82f053ab
GM
6037 input blocked. Value is non-zero if the exposure overwrites
6038 mouse-face. */
dc6f92b8 6039
a39202f6 6040static int
a02f1be0 6041expose_window (w, fr)
06a2c219 6042 struct window *w;
a02f1be0 6043 XRectangle *fr;
dc6f92b8 6044{
a02f1be0 6045 struct frame *f = XFRAME (w->frame);
a02f1be0 6046 XRectangle wr, r;
82f053ab 6047 int mouse_face_overwritten_p = 0;
dc6f92b8 6048
80c32bcc
GM
6049 /* If window is not yet fully initialized, do nothing. This can
6050 happen when toolkit scroll bars are used and a window is split.
6051 Reconfiguring the scroll bar will generate an expose for a newly
6052 created window. */
a39202f6 6053 if (w->current_matrix == NULL)
82f053ab 6054 return 0;
a39202f6
GM
6055
6056 /* When we're currently updating the window, display and current
6057 matrix usually don't agree. Arrange for a thorough display
6058 later. */
6059 if (w == updated_window)
6060 {
6061 SET_FRAME_GARBAGED (f);
6062 return 0;
6063 }
80c32bcc 6064
a39202f6 6065 /* Frame-relative pixel rectangle of W. */
a02f1be0
GM
6066 wr.x = XFASTINT (w->left) * CANON_X_UNIT (f);
6067 wr.y = XFASTINT (w->top) * CANON_Y_UNIT (f);
6068 wr.width = XFASTINT (w->width) * CANON_X_UNIT (f);
6069 wr.height = XFASTINT (w->height) * CANON_Y_UNIT (f);
6070
a39202f6
GM
6071 if (x_intersect_rectangles (fr, &wr, &r))
6072 {
6073 int yb = window_text_bottom_y (w);
6074 struct glyph_row *row;
6075 int cursor_cleared_p;
a02f1be0 6076
a39202f6
GM
6077 TRACE ((stderr, "expose_window (%d, %d, %d, %d)\n",
6078 r.x, r.y, r.width, r.height));
dc6f92b8 6079
a39202f6
GM
6080 /* Convert to window coordinates. */
6081 r.x = FRAME_TO_WINDOW_PIXEL_X (w, r.x);
6082 r.y = FRAME_TO_WINDOW_PIXEL_Y (w, r.y);
dc6f92b8 6083
a39202f6
GM
6084 /* Turn off the cursor. */
6085 if (!w->pseudo_window_p
6086 && x_phys_cursor_in_rect_p (w, &r))
6087 {
6088 x_clear_cursor (w);
6089 cursor_cleared_p = 1;
6090 }
6091 else
6092 cursor_cleared_p = 0;
06a2c219 6093
a39202f6
GM
6094 /* Find the first row intersecting the rectangle R. */
6095 for (row = w->current_matrix->rows;
6096 row->enabled_p;
6097 ++row)
6098 {
6099 int y0 = row->y;
6100 int y1 = MATRIX_ROW_BOTTOM_Y (row);
6101
6102 if ((y0 >= r.y && y0 < r.y + r.height)
6103 || (y1 > r.y && y1 < r.y + r.height)
6104 || (r.y >= y0 && r.y < y1)
6105 || (r.y + r.height > y0 && r.y + r.height < y1))
82f053ab
GM
6106 {
6107 if (expose_line (w, row, &r))
6108 mouse_face_overwritten_p = 1;
6109 }
6110
a39202f6
GM
6111 if (y1 >= yb)
6112 break;
6113 }
dc6f92b8 6114
a39202f6
GM
6115 /* Display the mode line if there is one. */
6116 if (WINDOW_WANTS_MODELINE_P (w)
6117 && (row = MATRIX_MODE_LINE_ROW (w->current_matrix),
6118 row->enabled_p)
6119 && row->y < r.y + r.height)
82f053ab
GM
6120 {
6121 if (expose_line (w, row, &r))
6122 mouse_face_overwritten_p = 1;
6123 }
a39202f6
GM
6124
6125 if (!w->pseudo_window_p)
6126 {
6127 /* Draw border between windows. */
6128 x_draw_vertical_border (w);
06a2c219 6129
a39202f6
GM
6130 /* Turn the cursor on again. */
6131 if (cursor_cleared_p)
6132 x_update_window_cursor (w, 1);
6133 }
06a2c219 6134 }
82f053ab
GM
6135
6136 return mouse_face_overwritten_p;
06a2c219 6137}
dc6f92b8 6138
dc6f92b8 6139
06a2c219
GM
6140/* Determine the intersection of two rectangles R1 and R2. Return
6141 the intersection in *RESULT. Value is non-zero if RESULT is not
6142 empty. */
6143
6144static int
6145x_intersect_rectangles (r1, r2, result)
6146 XRectangle *r1, *r2, *result;
6147{
6148 XRectangle *left, *right;
6149 XRectangle *upper, *lower;
6150 int intersection_p = 0;
6151
6152 /* Rearrange so that R1 is the left-most rectangle. */
6153 if (r1->x < r2->x)
6154 left = r1, right = r2;
6155 else
6156 left = r2, right = r1;
6157
6158 /* X0 of the intersection is right.x0, if this is inside R1,
6159 otherwise there is no intersection. */
6160 if (right->x <= left->x + left->width)
6161 {
6162 result->x = right->x;
6163
6164 /* The right end of the intersection is the minimum of the
6165 the right ends of left and right. */
6166 result->width = (min (left->x + left->width, right->x + right->width)
6167 - result->x);
6168
6169 /* Same game for Y. */
6170 if (r1->y < r2->y)
6171 upper = r1, lower = r2;
6172 else
6173 upper = r2, lower = r1;
6174
6175 /* The upper end of the intersection is lower.y0, if this is inside
6176 of upper. Otherwise, there is no intersection. */
6177 if (lower->y <= upper->y + upper->height)
dc43ef94 6178 {
06a2c219
GM
6179 result->y = lower->y;
6180
6181 /* The lower end of the intersection is the minimum of the lower
6182 ends of upper and lower. */
6183 result->height = (min (lower->y + lower->height,
6184 upper->y + upper->height)
6185 - result->y);
6186 intersection_p = 1;
dc43ef94 6187 }
dc6f92b8
JB
6188 }
6189
06a2c219 6190 return intersection_p;
dc6f92b8 6191}
06a2c219
GM
6192
6193
6194
6195
dc6f92b8 6196\f
dc6f92b8 6197static void
334208b7
RS
6198frame_highlight (f)
6199 struct frame *f;
dc6f92b8 6200{
b3e1e05c
JB
6201 /* We used to only do this if Vx_no_window_manager was non-nil, but
6202 the ICCCM (section 4.1.6) says that the window's border pixmap
6203 and border pixel are window attributes which are "private to the
6204 client", so we can always change it to whatever we want. */
6205 BLOCK_INPUT;
334208b7 6206 XSetWindowBorder (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
7556890b 6207 f->output_data.x->border_pixel);
b3e1e05c 6208 UNBLOCK_INPUT;
5d46f928 6209 x_update_cursor (f, 1);
dc6f92b8
JB
6210}
6211
6212static void
334208b7
RS
6213frame_unhighlight (f)
6214 struct frame *f;
dc6f92b8 6215{
b3e1e05c
JB
6216 /* We used to only do this if Vx_no_window_manager was non-nil, but
6217 the ICCCM (section 4.1.6) says that the window's border pixmap
6218 and border pixel are window attributes which are "private to the
6219 client", so we can always change it to whatever we want. */
6220 BLOCK_INPUT;
334208b7 6221 XSetWindowBorderPixmap (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
7556890b 6222 f->output_data.x->border_tile);
b3e1e05c 6223 UNBLOCK_INPUT;
5d46f928 6224 x_update_cursor (f, 1);
dc6f92b8 6225}
dc6f92b8 6226
f676886a
JB
6227/* The focus has changed. Update the frames as necessary to reflect
6228 the new situation. Note that we can't change the selected frame
c5acd733 6229 here, because the Lisp code we are interrupting might become confused.
eb8c3be9 6230 Each event gets marked with the frame in which it occurred, so the
c5acd733 6231 Lisp code can tell when the switch took place by examining the events. */
dc6f92b8 6232
6d4238f3 6233static void
0f941935
KH
6234x_new_focus_frame (dpyinfo, frame)
6235 struct x_display_info *dpyinfo;
f676886a 6236 struct frame *frame;
dc6f92b8 6237{
0f941935 6238 struct frame *old_focus = dpyinfo->x_focus_frame;
dc6f92b8 6239
0f941935 6240 if (frame != dpyinfo->x_focus_frame)
dc6f92b8 6241 {
58769bee 6242 /* Set this before calling other routines, so that they see
f676886a 6243 the correct value of x_focus_frame. */
0f941935 6244 dpyinfo->x_focus_frame = frame;
6d4238f3
JB
6245
6246 if (old_focus && old_focus->auto_lower)
f676886a 6247 x_lower_frame (old_focus);
dc6f92b8
JB
6248
6249#if 0
f676886a 6250 selected_frame = frame;
e0c1aef2
KH
6251 XSETFRAME (XWINDOW (selected_frame->selected_window)->frame,
6252 selected_frame);
f676886a
JB
6253 Fselect_window (selected_frame->selected_window);
6254 choose_minibuf_frame ();
c118dd06 6255#endif /* ! 0 */
dc6f92b8 6256
0f941935
KH
6257 if (dpyinfo->x_focus_frame && dpyinfo->x_focus_frame->auto_raise)
6258 pending_autoraise_frame = dpyinfo->x_focus_frame;
0134a210
RS
6259 else
6260 pending_autoraise_frame = 0;
6d4238f3 6261 }
dc6f92b8 6262
0f941935 6263 x_frame_rehighlight (dpyinfo);
6d4238f3
JB
6264}
6265
37c2c98b
RS
6266/* Handle an event saying the mouse has moved out of an Emacs frame. */
6267
6268void
0f941935
KH
6269x_mouse_leave (dpyinfo)
6270 struct x_display_info *dpyinfo;
37c2c98b 6271{
0f941935 6272 x_new_focus_frame (dpyinfo, dpyinfo->x_focus_event_frame);
37c2c98b 6273}
6d4238f3 6274
f451eb13
JB
6275/* The focus has changed, or we have redirected a frame's focus to
6276 another frame (this happens when a frame uses a surrogate
06a2c219 6277 mini-buffer frame). Shift the highlight as appropriate.
0f941935
KH
6278
6279 The FRAME argument doesn't necessarily have anything to do with which
06a2c219 6280 frame is being highlighted or un-highlighted; we only use it to find
0f941935 6281 the appropriate X display info. */
06a2c219 6282
6d4238f3 6283static void
0f941935
KH
6284XTframe_rehighlight (frame)
6285 struct frame *frame;
6d4238f3 6286{
0f941935
KH
6287 x_frame_rehighlight (FRAME_X_DISPLAY_INFO (frame));
6288}
6d4238f3 6289
0f941935
KH
6290static void
6291x_frame_rehighlight (dpyinfo)
6292 struct x_display_info *dpyinfo;
6293{
6294 struct frame *old_highlight = dpyinfo->x_highlight_frame;
6295
6296 if (dpyinfo->x_focus_frame)
6d4238f3 6297 {
0f941935
KH
6298 dpyinfo->x_highlight_frame
6299 = ((GC_FRAMEP (FRAME_FOCUS_FRAME (dpyinfo->x_focus_frame)))
6300 ? XFRAME (FRAME_FOCUS_FRAME (dpyinfo->x_focus_frame))
6301 : dpyinfo->x_focus_frame);
6302 if (! FRAME_LIVE_P (dpyinfo->x_highlight_frame))
f451eb13 6303 {
0f941935
KH
6304 FRAME_FOCUS_FRAME (dpyinfo->x_focus_frame) = Qnil;
6305 dpyinfo->x_highlight_frame = dpyinfo->x_focus_frame;
f451eb13 6306 }
dc6f92b8 6307 }
6d4238f3 6308 else
0f941935 6309 dpyinfo->x_highlight_frame = 0;
dc6f92b8 6310
0f941935 6311 if (dpyinfo->x_highlight_frame != old_highlight)
6d4238f3
JB
6312 {
6313 if (old_highlight)
f676886a 6314 frame_unhighlight (old_highlight);
0f941935
KH
6315 if (dpyinfo->x_highlight_frame)
6316 frame_highlight (dpyinfo->x_highlight_frame);
6d4238f3 6317 }
dc6f92b8 6318}
06a2c219
GM
6319
6320
dc6f92b8 6321\f
06a2c219 6322/* Keyboard processing - modifier keys, vendor-specific keysyms, etc. */
dc6f92b8 6323
28430d3c
JB
6324/* Initialize mode_switch_bit and modifier_meaning. */
6325static void
334208b7
RS
6326x_find_modifier_meanings (dpyinfo)
6327 struct x_display_info *dpyinfo;
28430d3c 6328{
f689eb05 6329 int min_code, max_code;
28430d3c
JB
6330 KeySym *syms;
6331 int syms_per_code;
6332 XModifierKeymap *mods;
6333
334208b7
RS
6334 dpyinfo->meta_mod_mask = 0;
6335 dpyinfo->shift_lock_mask = 0;
6336 dpyinfo->alt_mod_mask = 0;
6337 dpyinfo->super_mod_mask = 0;
6338 dpyinfo->hyper_mod_mask = 0;
58769bee 6339
9658a521 6340#ifdef HAVE_X11R4
334208b7 6341 XDisplayKeycodes (dpyinfo->display, &min_code, &max_code);
9658a521 6342#else
4a60f8c5
RS
6343 min_code = dpyinfo->display->min_keycode;
6344 max_code = dpyinfo->display->max_keycode;
9658a521
JB
6345#endif
6346
334208b7 6347 syms = XGetKeyboardMapping (dpyinfo->display,
28430d3c
JB
6348 min_code, max_code - min_code + 1,
6349 &syms_per_code);
334208b7 6350 mods = XGetModifierMapping (dpyinfo->display);
28430d3c 6351
58769bee 6352 /* Scan the modifier table to see which modifier bits the Meta and
11edeb03 6353 Alt keysyms are on. */
28430d3c 6354 {
06a2c219 6355 int row, col; /* The row and column in the modifier table. */
28430d3c
JB
6356
6357 for (row = 3; row < 8; row++)
6358 for (col = 0; col < mods->max_keypermod; col++)
6359 {
0299d313
RS
6360 KeyCode code
6361 = mods->modifiermap[(row * mods->max_keypermod) + col];
28430d3c 6362
af92970c
KH
6363 /* Zeroes are used for filler. Skip them. */
6364 if (code == 0)
6365 continue;
6366
28430d3c
JB
6367 /* Are any of this keycode's keysyms a meta key? */
6368 {
6369 int code_col;
6370
6371 for (code_col = 0; code_col < syms_per_code; code_col++)
6372 {
f689eb05 6373 int sym = syms[((code - min_code) * syms_per_code) + code_col];
28430d3c 6374
f689eb05 6375 switch (sym)
28430d3c 6376 {
f689eb05
JB
6377 case XK_Meta_L:
6378 case XK_Meta_R:
334208b7 6379 dpyinfo->meta_mod_mask |= (1 << row);
28430d3c 6380 break;
f689eb05
JB
6381
6382 case XK_Alt_L:
6383 case XK_Alt_R:
334208b7 6384 dpyinfo->alt_mod_mask |= (1 << row);
a3c44b14
RS
6385 break;
6386
6387 case XK_Hyper_L:
6388 case XK_Hyper_R:
334208b7 6389 dpyinfo->hyper_mod_mask |= (1 << row);
a3c44b14
RS
6390 break;
6391
6392 case XK_Super_L:
6393 case XK_Super_R:
334208b7 6394 dpyinfo->super_mod_mask |= (1 << row);
f689eb05 6395 break;
11edeb03
JB
6396
6397 case XK_Shift_Lock:
6398 /* Ignore this if it's not on the lock modifier. */
6399 if ((1 << row) == LockMask)
334208b7 6400 dpyinfo->shift_lock_mask = LockMask;
11edeb03 6401 break;
28430d3c
JB
6402 }
6403 }
6404 }
6405 }
6406 }
6407
f689eb05 6408 /* If we couldn't find any meta keys, accept any alt keys as meta keys. */
334208b7 6409 if (! dpyinfo->meta_mod_mask)
a3c44b14 6410 {
334208b7
RS
6411 dpyinfo->meta_mod_mask = dpyinfo->alt_mod_mask;
6412 dpyinfo->alt_mod_mask = 0;
a3c44b14 6413 }
f689eb05 6414
148c4b70
RS
6415 /* If some keys are both alt and meta,
6416 make them just meta, not alt. */
334208b7 6417 if (dpyinfo->alt_mod_mask & dpyinfo->meta_mod_mask)
148c4b70 6418 {
334208b7 6419 dpyinfo->alt_mod_mask &= ~dpyinfo->meta_mod_mask;
148c4b70 6420 }
58769bee 6421
28430d3c 6422 XFree ((char *) syms);
f689eb05 6423 XFreeModifiermap (mods);
28430d3c
JB
6424}
6425
dfeccd2d
JB
6426/* Convert between the modifier bits X uses and the modifier bits
6427 Emacs uses. */
06a2c219 6428
7c5283e4 6429static unsigned int
334208b7
RS
6430x_x_to_emacs_modifiers (dpyinfo, state)
6431 struct x_display_info *dpyinfo;
dc6f92b8
JB
6432 unsigned int state;
6433{
98659da6
KG
6434 EMACS_UINT mod_meta = meta_modifier;
6435 EMACS_UINT mod_alt = alt_modifier;
6436 EMACS_UINT mod_hyper = hyper_modifier;
6437 EMACS_UINT mod_super = super_modifier;
6438 Lisp_Object tem;
6439
6440 tem = Fget (Vx_alt_keysym, Qmodifier_value);
6441 if (! EQ (tem, Qnil)) mod_alt = XUINT (tem);
6442 tem = Fget (Vx_meta_keysym, Qmodifier_value);
6443 if (! EQ (tem, Qnil)) mod_meta = XUINT (tem);
6444 tem = Fget (Vx_hyper_keysym, Qmodifier_value);
6445 if (! EQ (tem, Qnil)) mod_hyper = XUINT (tem);
6446 tem = Fget (Vx_super_keysym, Qmodifier_value);
6447 if (! EQ (tem, Qnil)) mod_super = XUINT (tem);
6448
6449
334208b7 6450 return ( ((state & (ShiftMask | dpyinfo->shift_lock_mask)) ? shift_modifier : 0)
98659da6
KG
6451 | ((state & ControlMask) ? ctrl_modifier : 0)
6452 | ((state & dpyinfo->meta_mod_mask) ? mod_meta : 0)
6453 | ((state & dpyinfo->alt_mod_mask) ? mod_alt : 0)
6454 | ((state & dpyinfo->super_mod_mask) ? mod_super : 0)
6455 | ((state & dpyinfo->hyper_mod_mask) ? mod_hyper : 0));
dc6f92b8
JB
6456}
6457
dfeccd2d 6458static unsigned int
334208b7
RS
6459x_emacs_to_x_modifiers (dpyinfo, state)
6460 struct x_display_info *dpyinfo;
dfeccd2d
JB
6461 unsigned int state;
6462{
98659da6
KG
6463 EMACS_UINT mod_meta = meta_modifier;
6464 EMACS_UINT mod_alt = alt_modifier;
6465 EMACS_UINT mod_hyper = hyper_modifier;
6466 EMACS_UINT mod_super = super_modifier;
6467
6468 Lisp_Object tem;
6469
6470 tem = Fget (Vx_alt_keysym, Qmodifier_value);
6471 if (! EQ (tem, Qnil)) mod_alt = XUINT (tem);
6472 tem = Fget (Vx_meta_keysym, Qmodifier_value);
6473 if (! EQ (tem, Qnil)) mod_meta = XUINT (tem);
6474 tem = Fget (Vx_hyper_keysym, Qmodifier_value);
6475 if (! EQ (tem, Qnil)) mod_hyper = XUINT (tem);
6476 tem = Fget (Vx_super_keysym, Qmodifier_value);
6477 if (! EQ (tem, Qnil)) mod_super = XUINT (tem);
6478
6479
6480 return ( ((state & mod_alt) ? dpyinfo->alt_mod_mask : 0)
6481 | ((state & mod_super) ? dpyinfo->super_mod_mask : 0)
6482 | ((state & mod_hyper) ? dpyinfo->hyper_mod_mask : 0)
6483 | ((state & shift_modifier) ? ShiftMask : 0)
6484 | ((state & ctrl_modifier) ? ControlMask : 0)
6485 | ((state & mod_meta) ? dpyinfo->meta_mod_mask : 0));
dfeccd2d 6486}
d047c4eb
KH
6487
6488/* Convert a keysym to its name. */
6489
6490char *
6491x_get_keysym_name (keysym)
6492 KeySym keysym;
6493{
6494 char *value;
6495
6496 BLOCK_INPUT;
6497 value = XKeysymToString (keysym);
6498 UNBLOCK_INPUT;
6499
6500 return value;
6501}
06a2c219
GM
6502
6503
e4571a43
JB
6504\f
6505/* Mouse clicks and mouse movement. Rah. */
e4571a43 6506
06a2c219
GM
6507/* Given a pixel position (PIX_X, PIX_Y) on frame F, return glyph
6508 co-ordinates in (*X, *Y). Set *BOUNDS to the rectangle that the
6509 glyph at X, Y occupies, if BOUNDS != 0. If NOCLIP is non-zero, do
6510 not force the value into range. */
69388238 6511
c8dba240 6512void
69388238 6513pixel_to_glyph_coords (f, pix_x, pix_y, x, y, bounds, noclip)
e4571a43 6514 FRAME_PTR f;
69388238 6515 register int pix_x, pix_y;
e4571a43
JB
6516 register int *x, *y;
6517 XRectangle *bounds;
69388238 6518 int noclip;
e4571a43 6519{
06a2c219 6520 /* Arrange for the division in PIXEL_TO_CHAR_COL etc. to round down
69388238
RS
6521 even for negative values. */
6522 if (pix_x < 0)
7556890b 6523 pix_x -= FONT_WIDTH ((f)->output_data.x->font) - 1;
69388238 6524 if (pix_y < 0)
7556890b 6525 pix_y -= (f)->output_data.x->line_height - 1;
69388238 6526
e4571a43
JB
6527 pix_x = PIXEL_TO_CHAR_COL (f, pix_x);
6528 pix_y = PIXEL_TO_CHAR_ROW (f, pix_y);
6529
6530 if (bounds)
6531 {
7556890b
RS
6532 bounds->width = FONT_WIDTH (f->output_data.x->font);
6533 bounds->height = f->output_data.x->line_height;
e4571a43
JB
6534 bounds->x = CHAR_TO_PIXEL_COL (f, pix_x);
6535 bounds->y = CHAR_TO_PIXEL_ROW (f, pix_y);
6536 }
6537
69388238
RS
6538 if (!noclip)
6539 {
6540 if (pix_x < 0)
6541 pix_x = 0;
3cbd2e0b
RS
6542 else if (pix_x > FRAME_WINDOW_WIDTH (f))
6543 pix_x = FRAME_WINDOW_WIDTH (f);
69388238
RS
6544
6545 if (pix_y < 0)
6546 pix_y = 0;
6547 else if (pix_y > f->height)
6548 pix_y = f->height;
6549 }
e4571a43
JB
6550
6551 *x = pix_x;
6552 *y = pix_y;
6553}
6554
06a2c219
GM
6555
6556/* Given HPOS/VPOS in the current matrix of W, return corresponding
6557 frame-relative pixel positions in *FRAME_X and *FRAME_Y. If we
6558 can't tell the positions because W's display is not up to date,
6559 return 0. */
6560
6561int
6562glyph_to_pixel_coords (w, hpos, vpos, frame_x, frame_y)
6563 struct window *w;
6564 int hpos, vpos;
6565 int *frame_x, *frame_y;
2b5c9e71 6566{
06a2c219
GM
6567 int success_p;
6568
6569 xassert (hpos >= 0 && hpos < w->current_matrix->matrix_w);
6570 xassert (vpos >= 0 && vpos < w->current_matrix->matrix_h);
6571
6572 if (display_completed)
6573 {
6574 struct glyph_row *row = MATRIX_ROW (w->current_matrix, vpos);
6575 struct glyph *glyph = row->glyphs[TEXT_AREA];
6576 struct glyph *end = glyph + min (hpos, row->used[TEXT_AREA]);
6577
6578 *frame_y = row->y;
6579 *frame_x = row->x;
6580 while (glyph < end)
6581 {
6582 *frame_x += glyph->pixel_width;
6583 ++glyph;
6584 }
6585
6586 success_p = 1;
6587 }
6588 else
6589 {
6590 *frame_y = *frame_x = 0;
6591 success_p = 0;
6592 }
6593
6594 *frame_y = WINDOW_TO_FRAME_PIXEL_Y (w, *frame_y);
6595 *frame_x = WINDOW_TO_FRAME_PIXEL_X (w, *frame_x);
6596 return success_p;
2b5c9e71
RS
6597}
6598
06a2c219 6599
dc6f92b8
JB
6600/* Prepare a mouse-event in *RESULT for placement in the input queue.
6601
6602 If the event is a button press, then note that we have grabbed
f451eb13 6603 the mouse. */
dc6f92b8
JB
6604
6605static Lisp_Object
f451eb13 6606construct_mouse_click (result, event, f)
dc6f92b8
JB
6607 struct input_event *result;
6608 XButtonEvent *event;
f676886a 6609 struct frame *f;
dc6f92b8 6610{
f451eb13 6611 /* Make the event type no_event; we'll change that when we decide
dc6f92b8 6612 otherwise. */
f451eb13 6613 result->kind = mouse_click;
69388238 6614 result->code = event->button - Button1;
1113d9db 6615 result->timestamp = event->time;
334208b7
RS
6616 result->modifiers = (x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO (f),
6617 event->state)
f689eb05 6618 | (event->type == ButtonRelease
58769bee 6619 ? up_modifier
f689eb05 6620 : down_modifier));
dc6f92b8 6621
06a2c219
GM
6622 XSETINT (result->x, event->x);
6623 XSETINT (result->y, event->y);
6624 XSETFRAME (result->frame_or_window, f);
0f8aabe9 6625 result->arg = Qnil;
06a2c219 6626 return Qnil;
dc6f92b8 6627}
b849c413 6628
69388238 6629\f
90e65f07
JB
6630/* Function to report a mouse movement to the mainstream Emacs code.
6631 The input handler calls this.
6632
6633 We have received a mouse movement event, which is given in *event.
6634 If the mouse is over a different glyph than it was last time, tell
6635 the mainstream emacs code by setting mouse_moved. If not, ask for
6636 another motion event, so we can check again the next time it moves. */
b8009dd1 6637
06a2c219
GM
6638static XMotionEvent last_mouse_motion_event;
6639static Lisp_Object last_mouse_motion_frame;
6640
90e65f07 6641static void
12ba150f 6642note_mouse_movement (frame, event)
f676886a 6643 FRAME_PTR frame;
90e65f07 6644 XMotionEvent *event;
90e65f07 6645{
e5d77022 6646 last_mouse_movement_time = event->time;
06a2c219
GM
6647 last_mouse_motion_event = *event;
6648 XSETFRAME (last_mouse_motion_frame, frame);
e5d77022 6649
073448c5
GM
6650#if 0 /* Lisp must not be called asynchronously, so this must
6651 not be done. */
503e457e
PJ
6652 if (x_autoselect_window_p)
6653 {
6654 int area;
6655 Lisp_Object window;
6656 static Lisp_Object last_window;
6657
6658 window = window_from_coordinates (frame, XINT (event->x), XINT (event->y), &area, 0);
6659
6660 /* Window will be selected only when it is not selected now and
6661 last mouse movement event was not in it. Minubuffer window
6662 will be selected iff it is active. */
6663 if (!EQ (window, last_window)
6664 && !EQ (window, selected_window)
6665 && (!MINI_WINDOW_P (XWINDOW (window))
6666 || (EQ (window, minibuf_window) && minibuf_level > 0)))
6667 Fselect_window (window);
6668
6669 last_window=window;
6670 }
073448c5 6671#endif
503e457e 6672
27f338af
RS
6673 if (event->window != FRAME_X_WINDOW (frame))
6674 {
39d8bb4d 6675 frame->mouse_moved = 1;
27f338af 6676 last_mouse_scroll_bar = Qnil;
27f338af 6677 note_mouse_highlight (frame, -1, -1);
27f338af
RS
6678 }
6679
90e65f07 6680 /* Has the mouse moved off the glyph it was on at the last sighting? */
27f338af
RS
6681 else if (event->x < last_mouse_glyph.x
6682 || event->x >= last_mouse_glyph.x + last_mouse_glyph.width
6683 || event->y < last_mouse_glyph.y
6684 || event->y >= last_mouse_glyph.y + last_mouse_glyph.height)
12ba150f 6685 {
39d8bb4d 6686 frame->mouse_moved = 1;
ab648270 6687 last_mouse_scroll_bar = Qnil;
b8009dd1 6688 note_mouse_highlight (frame, event->x, event->y);
90e65f07
JB
6689 }
6690}
6691
06a2c219
GM
6692\f
6693/************************************************************************
6694 Mouse Face
6695 ************************************************************************/
6696
6697/* Find the glyph under window-relative coordinates X/Y in window W.
6698 Consider only glyphs from buffer text, i.e. no glyphs from overlay
6699 strings. Return in *HPOS and *VPOS the row and column number of
6700 the glyph found. Return in *AREA the glyph area containing X.
6701 Value is a pointer to the glyph found or null if X/Y is not on
6702 text, or we can't tell because W's current matrix is not up to
6703 date. */
6704
6705static struct glyph *
f9db2310 6706x_y_to_hpos_vpos (w, x, y, hpos, vpos, area, buffer_only_p)
06a2c219
GM
6707 struct window *w;
6708 int x, y;
6709 int *hpos, *vpos, *area;
f9db2310 6710 int buffer_only_p;
06a2c219
GM
6711{
6712 struct glyph *glyph, *end;
3e71d8f2 6713 struct glyph_row *row = NULL;
06a2c219
GM
6714 int x0, i, left_area_width;
6715
6716 /* Find row containing Y. Give up if some row is not enabled. */
6717 for (i = 0; i < w->current_matrix->nrows; ++i)
6718 {
6719 row = MATRIX_ROW (w->current_matrix, i);
6720 if (!row->enabled_p)
6721 return NULL;
6722 if (y >= row->y && y < MATRIX_ROW_BOTTOM_Y (row))
6723 break;
6724 }
6725
6726 *vpos = i;
6727 *hpos = 0;
6728
6729 /* Give up if Y is not in the window. */
6730 if (i == w->current_matrix->nrows)
6731 return NULL;
6732
6733 /* Get the glyph area containing X. */
6734 if (w->pseudo_window_p)
6735 {
6736 *area = TEXT_AREA;
6737 x0 = 0;
6738 }
6739 else
6740 {
6741 left_area_width = window_box_width (w, LEFT_MARGIN_AREA);
6742 if (x < left_area_width)
6743 {
6744 *area = LEFT_MARGIN_AREA;
6745 x0 = 0;
6746 }
6747 else if (x < left_area_width + window_box_width (w, TEXT_AREA))
6748 {
6749 *area = TEXT_AREA;
6750 x0 = row->x + left_area_width;
6751 }
6752 else
6753 {
6754 *area = RIGHT_MARGIN_AREA;
6755 x0 = left_area_width + window_box_width (w, TEXT_AREA);
6756 }
6757 }
6758
6759 /* Find glyph containing X. */
6760 glyph = row->glyphs[*area];
6761 end = glyph + row->used[*area];
6762 while (glyph < end)
6763 {
6764 if (x < x0 + glyph->pixel_width)
6765 {
6766 if (w->pseudo_window_p)
6767 break;
f9db2310 6768 else if (!buffer_only_p || BUFFERP (glyph->object))
06a2c219
GM
6769 break;
6770 }
6771
6772 x0 += glyph->pixel_width;
6773 ++glyph;
6774 }
6775
6776 if (glyph == end)
6777 return NULL;
6778
6779 *hpos = glyph - row->glyphs[*area];
6780 return glyph;
6781}
6782
6783
6784/* Convert frame-relative x/y to coordinates relative to window W.
6785 Takes pseudo-windows into account. */
6786
6787static void
6788frame_to_window_pixel_xy (w, x, y)
6789 struct window *w;
6790 int *x, *y;
6791{
6792 if (w->pseudo_window_p)
6793 {
6794 /* A pseudo-window is always full-width, and starts at the
6795 left edge of the frame, plus a frame border. */
6796 struct frame *f = XFRAME (w->frame);
6797 *x -= FRAME_INTERNAL_BORDER_WIDTH_SAFE (f);
6798 *y = FRAME_TO_WINDOW_PIXEL_Y (w, *y);
6799 }
6800 else
6801 {
6802 *x = FRAME_TO_WINDOW_PIXEL_X (w, *x);
6803 *y = FRAME_TO_WINDOW_PIXEL_Y (w, *y);
6804 }
6805}
6806
6807
e371a781 6808/* Take proper action when mouse has moved to the mode or header line of
06a2c219
GM
6809 window W, x-position X. MODE_LINE_P non-zero means mouse is on the
6810 mode line. X is relative to the start of the text display area of
3f332ef3 6811 W, so the width of fringes and scroll bars must be subtracted
06a2c219
GM
6812 to get a position relative to the start of the mode line. */
6813
6814static void
6815note_mode_line_highlight (w, x, mode_line_p)
6816 struct window *w;
6817 int x, mode_line_p;
6818{
6819 struct frame *f = XFRAME (w->frame);
6820 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
6821 Cursor cursor = dpyinfo->vertical_scroll_bar_cursor;
6822 struct glyph_row *row;
6823
6824 if (mode_line_p)
6825 row = MATRIX_MODE_LINE_ROW (w->current_matrix);
6826 else
045dee35 6827 row = MATRIX_HEADER_LINE_ROW (w->current_matrix);
e371a781 6828
06a2c219
GM
6829 if (row->enabled_p)
6830 {
6831 struct glyph *glyph, *end;
6832 Lisp_Object help, map;
6833 int x0;
6834
6835 /* Find the glyph under X. */
6836 glyph = row->glyphs[TEXT_AREA];
6837 end = glyph + row->used[TEXT_AREA];
6838 x0 = - (FRAME_LEFT_SCROLL_BAR_WIDTH (f) * CANON_X_UNIT (f)
3f332ef3 6839 + FRAME_X_LEFT_FRINGE_WIDTH (f));
e371a781 6840
06a2c219
GM
6841 while (glyph < end
6842 && x >= x0 + glyph->pixel_width)
6843 {
6844 x0 += glyph->pixel_width;
6845 ++glyph;
6846 }
6847
6848 if (glyph < end
6849 && STRINGP (glyph->object)
6850 && XSTRING (glyph->object)->intervals
6851 && glyph->charpos >= 0
6852 && glyph->charpos < XSTRING (glyph->object)->size)
6853 {
6854 /* If we're on a string with `help-echo' text property,
6855 arrange for the help to be displayed. This is done by
6856 setting the global variable help_echo to the help string. */
6857 help = Fget_text_property (make_number (glyph->charpos),
6858 Qhelp_echo, glyph->object);
b7e80413 6859 if (!NILP (help))
be010514
GM
6860 {
6861 help_echo = help;
7cea38bc 6862 XSETWINDOW (help_echo_window, w);
be010514
GM
6863 help_echo_object = glyph->object;
6864 help_echo_pos = glyph->charpos;
6865 }
06a2c219
GM
6866
6867 /* Change the mouse pointer according to what is under X/Y. */
6868 map = Fget_text_property (make_number (glyph->charpos),
6869 Qlocal_map, glyph->object);
02067692 6870 if (KEYMAPP (map))
06a2c219 6871 cursor = f->output_data.x->nontext_cursor;
be010514
GM
6872 else
6873 {
6874 map = Fget_text_property (make_number (glyph->charpos),
6875 Qkeymap, glyph->object);
02067692 6876 if (KEYMAPP (map))
be010514
GM
6877 cursor = f->output_data.x->nontext_cursor;
6878 }
06a2c219
GM
6879 }
6880 }
6881
6882 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), cursor);
6883}
6884
6885
6886/* Take proper action when the mouse has moved to position X, Y on
6887 frame F as regards highlighting characters that have mouse-face
6888 properties. Also de-highlighting chars where the mouse was before.
27f338af 6889 X and Y can be negative or out of range. */
b8009dd1
RS
6890
6891static void
6892note_mouse_highlight (f, x, y)
06a2c219 6893 struct frame *f;
c32cdd9a 6894 int x, y;
b8009dd1 6895{
06a2c219
GM
6896 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
6897 int portion;
b8009dd1
RS
6898 Lisp_Object window;
6899 struct window *w;
0d487c52
GM
6900 Cursor cursor = None;
6901 struct buffer *b;
b8009dd1 6902
06a2c219
GM
6903 /* When a menu is active, don't highlight because this looks odd. */
6904#ifdef USE_X_TOOLKIT
6905 if (popup_activated ())
6906 return;
6907#endif
6908
66301061 6909 if (NILP (Vmouse_highlight)
04fff9c0 6910 || !f->glyphs_initialized_p)
bf1c0ba1
RS
6911 return;
6912
06a2c219
GM
6913 dpyinfo->mouse_face_mouse_x = x;
6914 dpyinfo->mouse_face_mouse_y = y;
6915 dpyinfo->mouse_face_mouse_frame = f;
b8009dd1 6916
06a2c219 6917 if (dpyinfo->mouse_face_defer)
b8009dd1
RS
6918 return;
6919
514e4681
RS
6920 if (gc_in_progress)
6921 {
06a2c219 6922 dpyinfo->mouse_face_deferred_gc = 1;
514e4681
RS
6923 return;
6924 }
6925
b8009dd1 6926 /* Which window is that in? */
06a2c219 6927 window = window_from_coordinates (f, x, y, &portion, 1);
b8009dd1
RS
6928
6929 /* If we were displaying active text in another window, clear that. */
06a2c219
GM
6930 if (! EQ (window, dpyinfo->mouse_face_window))
6931 clear_mouse_face (dpyinfo);
6932
6933 /* Not on a window -> return. */
6934 if (!WINDOWP (window))
6935 return;
6936
6937 /* Convert to window-relative pixel coordinates. */
6938 w = XWINDOW (window);
6939 frame_to_window_pixel_xy (w, &x, &y);
6940
9ea173e8 6941 /* Handle tool-bar window differently since it doesn't display a
06a2c219 6942 buffer. */
9ea173e8 6943 if (EQ (window, f->tool_bar_window))
06a2c219 6944 {
9ea173e8 6945 note_tool_bar_highlight (f, x, y);
06a2c219
GM
6946 return;
6947 }
6948
0d487c52 6949 /* Mouse is on the mode or header line? */
06a2c219
GM
6950 if (portion == 1 || portion == 3)
6951 {
06a2c219
GM
6952 note_mode_line_highlight (w, x, portion == 1);
6953 return;
6954 }
0d487c52
GM
6955
6956 if (portion == 2)
6957 cursor = f->output_data.x->horizontal_drag_cursor;
06a2c219 6958 else
0d487c52 6959 cursor = f->output_data.x->text_cursor;
b8009dd1 6960
0cdd0c9f
RS
6961 /* Are we in a window whose display is up to date?
6962 And verify the buffer's text has not changed. */
0d487c52 6963 b = XBUFFER (w->buffer);
06a2c219
GM
6964 if (/* Within text portion of the window. */
6965 portion == 0
0cdd0c9f 6966 && EQ (w->window_end_valid, w->buffer)
0d487c52
GM
6967 && XFASTINT (w->last_modified) == BUF_MODIFF (b)
6968 && XFASTINT (w->last_overlay_modified) == BUF_OVERLAY_MODIFF (b))
b8009dd1 6969 {
06a2c219
GM
6970 int hpos, vpos, pos, i, area;
6971 struct glyph *glyph;
f9db2310 6972 Lisp_Object object;
0d487c52
GM
6973 Lisp_Object mouse_face = Qnil, overlay = Qnil, position;
6974 Lisp_Object *overlay_vec = NULL;
6975 int len, noverlays;
6976 struct buffer *obuf;
6977 int obegv, ozv, same_region;
b8009dd1 6978
06a2c219 6979 /* Find the glyph under X/Y. */
f9db2310 6980 glyph = x_y_to_hpos_vpos (w, x, y, &hpos, &vpos, &area, 0);
06a2c219
GM
6981
6982 /* Clear mouse face if X/Y not over text. */
6983 if (glyph == NULL
6984 || area != TEXT_AREA
6985 || !MATRIX_ROW (w->current_matrix, vpos)->displays_text_p)
b8009dd1 6986 {
fa262c07
GM
6987 if (clear_mouse_face (dpyinfo))
6988 cursor = None;
6989 goto set_cursor;
06a2c219
GM
6990 }
6991
6992 pos = glyph->charpos;
f9db2310
GM
6993 object = glyph->object;
6994 if (!STRINGP (object) && !BUFFERP (object))
fa262c07 6995 goto set_cursor;
06a2c219 6996
0d487c52
GM
6997 /* If we get an out-of-range value, return now; avoid an error. */
6998 if (BUFFERP (object) && pos > BUF_Z (b))
fa262c07 6999 goto set_cursor;
06a2c219 7000
0d487c52
GM
7001 /* Make the window's buffer temporarily current for
7002 overlays_at and compute_char_face. */
7003 obuf = current_buffer;
7004 current_buffer = b;
7005 obegv = BEGV;
7006 ozv = ZV;
7007 BEGV = BEG;
7008 ZV = Z;
06a2c219 7009
0d487c52
GM
7010 /* Is this char mouse-active or does it have help-echo? */
7011 position = make_number (pos);
f9db2310 7012
0d487c52
GM
7013 if (BUFFERP (object))
7014 {
7015 /* Put all the overlays we want in a vector in overlay_vec.
7016 Store the length in len. If there are more than 10, make
7017 enough space for all, and try again. */
7018 len = 10;
7019 overlay_vec = (Lisp_Object *) alloca (len * sizeof (Lisp_Object));
7020 noverlays = overlays_at (pos, 0, &overlay_vec, &len, NULL, NULL, 0);
7021 if (noverlays > len)
7022 {
7023 len = noverlays;
7024 overlay_vec = (Lisp_Object *) alloca (len * sizeof (Lisp_Object));
7025 noverlays = overlays_at (pos, 0, &overlay_vec, &len, NULL, NULL,0);
7026 }
f8349001 7027
0d487c52
GM
7028 /* Sort overlays into increasing priority order. */
7029 noverlays = sort_overlays (overlay_vec, noverlays, w);
7030 }
7031 else
7032 noverlays = 0;
7033
7034 same_region = (EQ (window, dpyinfo->mouse_face_window)
7035 && vpos >= dpyinfo->mouse_face_beg_row
7036 && vpos <= dpyinfo->mouse_face_end_row
7037 && (vpos > dpyinfo->mouse_face_beg_row
7038 || hpos >= dpyinfo->mouse_face_beg_col)
7039 && (vpos < dpyinfo->mouse_face_end_row
7040 || hpos < dpyinfo->mouse_face_end_col
7041 || dpyinfo->mouse_face_past_end));
7042
7043 if (same_region)
7044 cursor = None;
7045
7046 /* Check mouse-face highlighting. */
7047 if (! same_region
7048 /* If there exists an overlay with mouse-face overlapping
7049 the one we are currently highlighting, we have to
7050 check if we enter the overlapping overlay, and then
7051 highlight only that. */
7052 || (OVERLAYP (dpyinfo->mouse_face_overlay)
7053 && mouse_face_overlay_overlaps (dpyinfo->mouse_face_overlay)))
7054 {
0d487c52
GM
7055 /* Find the highest priority overlay that has a mouse-face
7056 property. */
7057 overlay = Qnil;
7058 for (i = noverlays - 1; i >= 0 && NILP (overlay); --i)
7059 {
7060 mouse_face = Foverlay_get (overlay_vec[i], Qmouse_face);
7061 if (!NILP (mouse_face))
7062 overlay = overlay_vec[i];
7063 }
8bd189fb
GM
7064
7065 /* If we're actually highlighting the same overlay as
7066 before, there's no need to do that again. */
7067 if (!NILP (overlay)
7068 && EQ (overlay, dpyinfo->mouse_face_overlay))
7069 goto check_help_echo;
f9db2310 7070
8bd189fb
GM
7071 dpyinfo->mouse_face_overlay = overlay;
7072
7073 /* Clear the display of the old active region, if any. */
7074 if (clear_mouse_face (dpyinfo))
7075 cursor = None;
7076
0d487c52
GM
7077 /* If no overlay applies, get a text property. */
7078 if (NILP (overlay))
7079 mouse_face = Fget_text_property (position, Qmouse_face, object);
06a2c219 7080
0d487c52
GM
7081 /* Handle the overlay case. */
7082 if (!NILP (overlay))
7083 {
7084 /* Find the range of text around this char that
7085 should be active. */
7086 Lisp_Object before, after;
7087 int ignore;
7088
7089 before = Foverlay_start (overlay);
7090 after = Foverlay_end (overlay);
7091 /* Record this as the current active region. */
7092 fast_find_position (w, XFASTINT (before),
7093 &dpyinfo->mouse_face_beg_col,
7094 &dpyinfo->mouse_face_beg_row,
7095 &dpyinfo->mouse_face_beg_x,
7e376260
GM
7096 &dpyinfo->mouse_face_beg_y, Qnil);
7097
0d487c52
GM
7098 dpyinfo->mouse_face_past_end
7099 = !fast_find_position (w, XFASTINT (after),
7100 &dpyinfo->mouse_face_end_col,
7101 &dpyinfo->mouse_face_end_row,
7102 &dpyinfo->mouse_face_end_x,
7e376260 7103 &dpyinfo->mouse_face_end_y, Qnil);
0d487c52
GM
7104 dpyinfo->mouse_face_window = window;
7105 dpyinfo->mouse_face_face_id
7106 = face_at_buffer_position (w, pos, 0, 0,
7107 &ignore, pos + 1, 1);
7108
7109 /* Display it as active. */
7110 show_mouse_face (dpyinfo, DRAW_MOUSE_FACE);
58e5af83 7111 cursor = None;
0d487c52
GM
7112 }
7113 /* Handle the text property case. */
7114 else if (!NILP (mouse_face) && BUFFERP (object))
7115 {
7116 /* Find the range of text around this char that
7117 should be active. */
7118 Lisp_Object before, after, beginning, end;
7119 int ignore;
7120
7121 beginning = Fmarker_position (w->start);
7122 end = make_number (BUF_Z (XBUFFER (object))
7123 - XFASTINT (w->window_end_pos));
7124 before
7125 = Fprevious_single_property_change (make_number (pos + 1),
7126 Qmouse_face,
7127 object, beginning);
7128 after
7129 = Fnext_single_property_change (position, Qmouse_face,
7130 object, end);
7131
7132 /* Record this as the current active region. */
7133 fast_find_position (w, XFASTINT (before),
7134 &dpyinfo->mouse_face_beg_col,
7135 &dpyinfo->mouse_face_beg_row,
7136 &dpyinfo->mouse_face_beg_x,
7e376260 7137 &dpyinfo->mouse_face_beg_y, Qnil);
0d487c52
GM
7138 dpyinfo->mouse_face_past_end
7139 = !fast_find_position (w, XFASTINT (after),
7140 &dpyinfo->mouse_face_end_col,
7141 &dpyinfo->mouse_face_end_row,
7142 &dpyinfo->mouse_face_end_x,
7e376260 7143 &dpyinfo->mouse_face_end_y, Qnil);
0d487c52
GM
7144 dpyinfo->mouse_face_window = window;
7145
7146 if (BUFFERP (object))
06a2c219
GM
7147 dpyinfo->mouse_face_face_id
7148 = face_at_buffer_position (w, pos, 0, 0,
7149 &ignore, pos + 1, 1);
7150
0d487c52
GM
7151 /* Display it as active. */
7152 show_mouse_face (dpyinfo, DRAW_MOUSE_FACE);
58e5af83 7153 cursor = None;
0d487c52
GM
7154 }
7155 else if (!NILP (mouse_face) && STRINGP (object))
7156 {
7157 Lisp_Object b, e;
7158 int ignore;
f9db2310 7159
0d487c52
GM
7160 b = Fprevious_single_property_change (make_number (pos + 1),
7161 Qmouse_face,
7162 object, Qnil);
7163 e = Fnext_single_property_change (position, Qmouse_face,
7164 object, Qnil);
7165 if (NILP (b))
7166 b = make_number (0);
7167 if (NILP (e))
7168 e = make_number (XSTRING (object)->size - 1);
7169 fast_find_string_pos (w, XINT (b), object,
06a2c219
GM
7170 &dpyinfo->mouse_face_beg_col,
7171 &dpyinfo->mouse_face_beg_row,
7172 &dpyinfo->mouse_face_beg_x,
0d487c52
GM
7173 &dpyinfo->mouse_face_beg_y, 0);
7174 fast_find_string_pos (w, XINT (e), object,
7175 &dpyinfo->mouse_face_end_col,
7176 &dpyinfo->mouse_face_end_row,
7177 &dpyinfo->mouse_face_end_x,
7178 &dpyinfo->mouse_face_end_y, 1);
7179 dpyinfo->mouse_face_past_end = 0;
7180 dpyinfo->mouse_face_window = window;
7181 dpyinfo->mouse_face_face_id
7182 = face_at_string_position (w, object, pos, 0, 0, 0, &ignore,
7183 glyph->face_id, 1);
7184 show_mouse_face (dpyinfo, DRAW_MOUSE_FACE);
58e5af83 7185 cursor = None;
0d487c52 7186 }
7e376260
GM
7187 else if (STRINGP (object) && NILP (mouse_face))
7188 {
7189 /* A string which doesn't have mouse-face, but
7190 the text ``under'' it might have. */
7191 struct glyph_row *r = MATRIX_ROW (w->current_matrix, vpos);
7192 int start = MATRIX_ROW_START_CHARPOS (r);
7193
7194 pos = string_buffer_position (w, object, start);
7195 if (pos > 0)
7196 mouse_face = get_char_property_and_overlay (make_number (pos),
7197 Qmouse_face,
7198 w->buffer,
7199 &overlay);
7200 if (!NILP (mouse_face) && !NILP (overlay))
7201 {
7202 Lisp_Object before = Foverlay_start (overlay);
7203 Lisp_Object after = Foverlay_end (overlay);
91c153e2 7204 int ignore;
7e376260
GM
7205
7206 /* Note that we might not be able to find position
7207 BEFORE in the glyph matrix if the overlay is
7208 entirely covered by a `display' property. In
7209 this case, we overshoot. So let's stop in
7210 the glyph matrix before glyphs for OBJECT. */
7211 fast_find_position (w, XFASTINT (before),
7212 &dpyinfo->mouse_face_beg_col,
7213 &dpyinfo->mouse_face_beg_row,
7214 &dpyinfo->mouse_face_beg_x,
7215 &dpyinfo->mouse_face_beg_y,
7216 object);
7217
7218 dpyinfo->mouse_face_past_end
7219 = !fast_find_position (w, XFASTINT (after),
7220 &dpyinfo->mouse_face_end_col,
7221 &dpyinfo->mouse_face_end_row,
7222 &dpyinfo->mouse_face_end_x,
7223 &dpyinfo->mouse_face_end_y,
7224 Qnil);
7225 dpyinfo->mouse_face_window = window;
7226 dpyinfo->mouse_face_face_id
7227 = face_at_buffer_position (w, pos, 0, 0,
7228 &ignore, pos + 1, 1);
7229
7230 /* Display it as active. */
7231 show_mouse_face (dpyinfo, DRAW_MOUSE_FACE);
7232 cursor = None;
7233 }
7234 }
0d487c52 7235 }
06a2c219 7236
8bd189fb
GM
7237 check_help_echo:
7238
0d487c52
GM
7239 /* Look for a `help-echo' property. */
7240 {
7241 Lisp_Object help, overlay;
06a2c219 7242
0d487c52
GM
7243 /* Check overlays first. */
7244 help = overlay = Qnil;
7245 for (i = noverlays - 1; i >= 0 && NILP (help); --i)
7246 {
7247 overlay = overlay_vec[i];
7248 help = Foverlay_get (overlay, Qhelp_echo);
7249 }
be010514 7250
0d487c52
GM
7251 if (!NILP (help))
7252 {
7253 help_echo = help;
7254 help_echo_window = window;
7255 help_echo_object = overlay;
7256 help_echo_pos = pos;
7257 }
7258 else
7259 {
7260 Lisp_Object object = glyph->object;
7261 int charpos = glyph->charpos;
7177d86b 7262
0d487c52
GM
7263 /* Try text properties. */
7264 if (STRINGP (object)
7265 && charpos >= 0
7266 && charpos < XSTRING (object)->size)
7267 {
7268 help = Fget_text_property (make_number (charpos),
7269 Qhelp_echo, object);
7270 if (NILP (help))
7271 {
7272 /* If the string itself doesn't specify a help-echo,
7273 see if the buffer text ``under'' it does. */
7274 struct glyph_row *r
7275 = MATRIX_ROW (w->current_matrix, vpos);
7276 int start = MATRIX_ROW_START_CHARPOS (r);
7277 int pos = string_buffer_position (w, object, start);
7278 if (pos > 0)
7279 {
7e376260 7280 help = Fget_char_property (make_number (pos),
0d487c52
GM
7281 Qhelp_echo, w->buffer);
7282 if (!NILP (help))
7283 {
7284 charpos = pos;
7285 object = w->buffer;
7286 }
7287 }
7288 }
7289 }
7290 else if (BUFFERP (object)
7291 && charpos >= BEGV
7292 && charpos < ZV)
7293 help = Fget_text_property (make_number (charpos), Qhelp_echo,
7294 object);
06a2c219 7295
0d487c52
GM
7296 if (!NILP (help))
7297 {
7298 help_echo = help;
7299 help_echo_window = window;
7300 help_echo_object = object;
7301 help_echo_pos = charpos;
7302 }
7303 }
06a2c219 7304 }
0d487c52
GM
7305
7306 BEGV = obegv;
7307 ZV = ozv;
7308 current_buffer = obuf;
06a2c219 7309 }
0d487c52 7310
fa262c07
GM
7311 set_cursor:
7312
0d487c52
GM
7313 if (cursor != None)
7314 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), cursor);
06a2c219
GM
7315}
7316
7317static void
7318redo_mouse_highlight ()
7319{
7320 if (!NILP (last_mouse_motion_frame)
7321 && FRAME_LIVE_P (XFRAME (last_mouse_motion_frame)))
7322 note_mouse_highlight (XFRAME (last_mouse_motion_frame),
7323 last_mouse_motion_event.x,
7324 last_mouse_motion_event.y);
7325}
7326
7327
7328\f
7329/***********************************************************************
9ea173e8 7330 Tool-bars
06a2c219
GM
7331 ***********************************************************************/
7332
9ea173e8
GM
7333static int x_tool_bar_item P_ ((struct frame *, int, int,
7334 struct glyph **, int *, int *, int *));
06a2c219 7335
9ea173e8 7336/* Tool-bar item index of the item on which a mouse button was pressed
06a2c219
GM
7337 or -1. */
7338
9ea173e8 7339static int last_tool_bar_item;
06a2c219
GM
7340
7341
9ea173e8
GM
7342/* Get information about the tool-bar item at position X/Y on frame F.
7343 Return in *GLYPH a pointer to the glyph of the tool-bar item in
7344 the current matrix of the tool-bar window of F, or NULL if not
7345 on a tool-bar item. Return in *PROP_IDX the index of the tool-bar
8daf1204 7346 item in F->tool_bar_items. Value is
06a2c219 7347
9ea173e8 7348 -1 if X/Y is not on a tool-bar item
06a2c219
GM
7349 0 if X/Y is on the same item that was highlighted before.
7350 1 otherwise. */
7351
7352static int
9ea173e8 7353x_tool_bar_item (f, x, y, glyph, hpos, vpos, prop_idx)
06a2c219
GM
7354 struct frame *f;
7355 int x, y;
7356 struct glyph **glyph;
7357 int *hpos, *vpos, *prop_idx;
7358{
7359 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
9ea173e8 7360 struct window *w = XWINDOW (f->tool_bar_window);
06a2c219
GM
7361 int area;
7362
7363 /* Find the glyph under X/Y. */
f9db2310 7364 *glyph = x_y_to_hpos_vpos (w, x, y, hpos, vpos, &area, 0);
06a2c219
GM
7365 if (*glyph == NULL)
7366 return -1;
7367
9ea173e8 7368 /* Get the start of this tool-bar item's properties in
8daf1204 7369 f->tool_bar_items. */
9ea173e8 7370 if (!tool_bar_item_info (f, *glyph, prop_idx))
06a2c219
GM
7371 return -1;
7372
7373 /* Is mouse on the highlighted item? */
9ea173e8 7374 if (EQ (f->tool_bar_window, dpyinfo->mouse_face_window)
06a2c219
GM
7375 && *vpos >= dpyinfo->mouse_face_beg_row
7376 && *vpos <= dpyinfo->mouse_face_end_row
7377 && (*vpos > dpyinfo->mouse_face_beg_row
7378 || *hpos >= dpyinfo->mouse_face_beg_col)
7379 && (*vpos < dpyinfo->mouse_face_end_row
7380 || *hpos < dpyinfo->mouse_face_end_col
7381 || dpyinfo->mouse_face_past_end))
7382 return 0;
7383
7384 return 1;
7385}
7386
7387
9ea173e8 7388/* Handle mouse button event on the tool-bar of frame F, at
6c4a22e6 7389 frame-relative coordinates X/Y. EVENT_TYPE is either ButtonPress
06a2c219
GM
7390 or ButtonRelase. */
7391
7392static void
9ea173e8 7393x_handle_tool_bar_click (f, button_event)
06a2c219
GM
7394 struct frame *f;
7395 XButtonEvent *button_event;
7396{
7397 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
9ea173e8 7398 struct window *w = XWINDOW (f->tool_bar_window);
06a2c219
GM
7399 int hpos, vpos, prop_idx;
7400 struct glyph *glyph;
7401 Lisp_Object enabled_p;
7402 int x = button_event->x;
7403 int y = button_event->y;
7404
9ea173e8 7405 /* If not on the highlighted tool-bar item, return. */
06a2c219 7406 frame_to_window_pixel_xy (w, &x, &y);
9ea173e8 7407 if (x_tool_bar_item (f, x, y, &glyph, &hpos, &vpos, &prop_idx) != 0)
06a2c219
GM
7408 return;
7409
7410 /* If item is disabled, do nothing. */
8daf1204 7411 enabled_p = AREF (f->tool_bar_items, prop_idx + TOOL_BAR_ITEM_ENABLED_P);
06a2c219
GM
7412 if (NILP (enabled_p))
7413 return;
7414
7415 if (button_event->type == ButtonPress)
7416 {
7417 /* Show item in pressed state. */
7418 show_mouse_face (dpyinfo, DRAW_IMAGE_SUNKEN);
7419 dpyinfo->mouse_face_image_state = DRAW_IMAGE_SUNKEN;
9ea173e8 7420 last_tool_bar_item = prop_idx;
06a2c219
GM
7421 }
7422 else
7423 {
7424 Lisp_Object key, frame;
7425 struct input_event event;
7426
7427 /* Show item in released state. */
7428 show_mouse_face (dpyinfo, DRAW_IMAGE_RAISED);
7429 dpyinfo->mouse_face_image_state = DRAW_IMAGE_RAISED;
7430
8daf1204 7431 key = AREF (f->tool_bar_items, prop_idx + TOOL_BAR_ITEM_KEY);
06a2c219
GM
7432
7433 XSETFRAME (frame, f);
9ea173e8 7434 event.kind = TOOL_BAR_EVENT;
0f1a9b23
GM
7435 event.frame_or_window = frame;
7436 event.arg = frame;
06a2c219
GM
7437 kbd_buffer_store_event (&event);
7438
9ea173e8 7439 event.kind = TOOL_BAR_EVENT;
0f1a9b23
GM
7440 event.frame_or_window = frame;
7441 event.arg = key;
06a2c219
GM
7442 event.modifiers = x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO (f),
7443 button_event->state);
7444 kbd_buffer_store_event (&event);
9ea173e8 7445 last_tool_bar_item = -1;
06a2c219
GM
7446 }
7447}
7448
7449
9ea173e8
GM
7450/* Possibly highlight a tool-bar item on frame F when mouse moves to
7451 tool-bar window-relative coordinates X/Y. Called from
06a2c219
GM
7452 note_mouse_highlight. */
7453
7454static void
9ea173e8 7455note_tool_bar_highlight (f, x, y)
06a2c219
GM
7456 struct frame *f;
7457 int x, y;
7458{
9ea173e8 7459 Lisp_Object window = f->tool_bar_window;
06a2c219
GM
7460 struct window *w = XWINDOW (window);
7461 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
7462 int hpos, vpos;
7463 struct glyph *glyph;
7464 struct glyph_row *row;
5c187dee 7465 int i;
06a2c219
GM
7466 Lisp_Object enabled_p;
7467 int prop_idx;
140330de 7468 enum draw_glyphs_face draw;
5c187dee 7469 int mouse_down_p, rc;
06a2c219
GM
7470
7471 /* Function note_mouse_highlight is called with negative x(y
7472 values when mouse moves outside of the frame. */
7473 if (x <= 0 || y <= 0)
7474 {
7475 clear_mouse_face (dpyinfo);
7476 return;
7477 }
7478
9ea173e8 7479 rc = x_tool_bar_item (f, x, y, &glyph, &hpos, &vpos, &prop_idx);
06a2c219
GM
7480 if (rc < 0)
7481 {
9ea173e8 7482 /* Not on tool-bar item. */
06a2c219
GM
7483 clear_mouse_face (dpyinfo);
7484 return;
7485 }
7486 else if (rc == 0)
06a2c219 7487 goto set_help_echo;
b8009dd1 7488
06a2c219
GM
7489 clear_mouse_face (dpyinfo);
7490
9ea173e8 7491 /* Mouse is down, but on different tool-bar item? */
06a2c219
GM
7492 mouse_down_p = (dpyinfo->grabbed
7493 && f == last_mouse_frame
7494 && FRAME_LIVE_P (f));
7495 if (mouse_down_p
9ea173e8 7496 && last_tool_bar_item != prop_idx)
06a2c219
GM
7497 return;
7498
7499 dpyinfo->mouse_face_image_state = DRAW_NORMAL_TEXT;
7500 draw = mouse_down_p ? DRAW_IMAGE_SUNKEN : DRAW_IMAGE_RAISED;
7501
9ea173e8 7502 /* If tool-bar item is not enabled, don't highlight it. */
8daf1204 7503 enabled_p = AREF (f->tool_bar_items, prop_idx + TOOL_BAR_ITEM_ENABLED_P);
06a2c219
GM
7504 if (!NILP (enabled_p))
7505 {
7506 /* Compute the x-position of the glyph. In front and past the
7507 image is a space. We include this is the highlighted area. */
7508 row = MATRIX_ROW (w->current_matrix, vpos);
7509 for (i = x = 0; i < hpos; ++i)
7510 x += row->glyphs[TEXT_AREA][i].pixel_width;
7511
7512 /* Record this as the current active region. */
7513 dpyinfo->mouse_face_beg_col = hpos;
7514 dpyinfo->mouse_face_beg_row = vpos;
7515 dpyinfo->mouse_face_beg_x = x;
7516 dpyinfo->mouse_face_beg_y = row->y;
7517 dpyinfo->mouse_face_past_end = 0;
7518
7519 dpyinfo->mouse_face_end_col = hpos + 1;
7520 dpyinfo->mouse_face_end_row = vpos;
7521 dpyinfo->mouse_face_end_x = x + glyph->pixel_width;
7522 dpyinfo->mouse_face_end_y = row->y;
7523 dpyinfo->mouse_face_window = window;
9ea173e8 7524 dpyinfo->mouse_face_face_id = TOOL_BAR_FACE_ID;
06a2c219
GM
7525
7526 /* Display it as active. */
7527 show_mouse_face (dpyinfo, draw);
7528 dpyinfo->mouse_face_image_state = draw;
b8009dd1 7529 }
06a2c219
GM
7530
7531 set_help_echo:
7532
50590060 7533 /* Set help_echo to a help string to display for this tool-bar item.
06a2c219 7534 XTread_socket does the rest. */
7cea38bc 7535 help_echo_object = help_echo_window = Qnil;
be010514 7536 help_echo_pos = -1;
8daf1204 7537 help_echo = AREF (f->tool_bar_items, prop_idx + TOOL_BAR_ITEM_HELP);
b7e80413 7538 if (NILP (help_echo))
8daf1204 7539 help_echo = AREF (f->tool_bar_items, prop_idx + TOOL_BAR_ITEM_CAPTION);
b8009dd1 7540}
4d73d038 7541
06a2c219
GM
7542
7543\f
9f8531e5
GM
7544/* Find the glyph matrix position of buffer position CHARPOS in window
7545 *W. HPOS, *VPOS, *X, and *Y are set to the positions found. W's
7546 current glyphs must be up to date. If CHARPOS is above window
7547 start return (0, 0, 0, 0). If CHARPOS is after end of W, return end
7548 of last line in W. In the row containing CHARPOS, stop before glyphs
7e376260 7549 having STOP as object. */
b8009dd1 7550
9f8531e5
GM
7551#if 0 /* This is a version of fast_find_position that's more correct
7552 in the presence of hscrolling, for example. I didn't install
7553 it right away because the problem fixed is minor, it failed
7554 in 20.x as well, and I think it's too risky to install
7555 so near the release of 21.1. 2001-09-25 gerd. */
7556
7557static int
7558fast_find_position (w, charpos, hpos, vpos, x, y, stop)
7559 struct window *w;
7560 int charpos;
7561 int *hpos, *vpos, *x, *y;
7562 Lisp_Object stop;
7563{
7564 struct glyph_row *row, *first;
7565 struct glyph *glyph, *end;
7566 int i, past_end = 0;
7567
7568 first = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
62e33982 7569 row = row_containing_pos (w, charpos, first, NULL, 0);
9f8531e5
GM
7570 if (row == NULL)
7571 {
7572 if (charpos < MATRIX_ROW_START_CHARPOS (first))
7573 {
7574 *x = *y = *hpos = *vpos = 0;
7575 return 0;
7576 }
7577 else
7578 {
7579 row = MATRIX_ROW (w->current_matrix, XFASTINT (w->window_end_vpos));
7580 past_end = 1;
7581 }
7582 }
7583
7584 *x = row->x;
7585 *y = row->y;
7586 *vpos = MATRIX_ROW_VPOS (row, w->current_matrix);
7587
7588 glyph = row->glyphs[TEXT_AREA];
7589 end = glyph + row->used[TEXT_AREA];
7590
7591 /* Skip over glyphs not having an object at the start of the row.
7592 These are special glyphs like truncation marks on terminal
7593 frames. */
7594 if (row->displays_text_p)
7595 while (glyph < end
7596 && INTEGERP (glyph->object)
7597 && !EQ (stop, glyph->object)
7598 && glyph->charpos < 0)
7599 {
7600 *x += glyph->pixel_width;
7601 ++glyph;
7602 }
7603
7604 while (glyph < end
7605 && !INTEGERP (glyph->object)
7606 && !EQ (stop, glyph->object)
7607 && (!BUFFERP (glyph->object)
7608 || glyph->charpos < charpos))
7609 {
7610 *x += glyph->pixel_width;
7611 ++glyph;
7612 }
7613
7614 *hpos = glyph - row->glyphs[TEXT_AREA];
7615 return past_end;
7616}
7617
7618#else /* not 0 */
7619
b8009dd1 7620static int
7e376260 7621fast_find_position (w, pos, hpos, vpos, x, y, stop)
06a2c219 7622 struct window *w;
b8009dd1 7623 int pos;
06a2c219 7624 int *hpos, *vpos, *x, *y;
7e376260 7625 Lisp_Object stop;
b8009dd1 7626{
b8009dd1 7627 int i;
bf1c0ba1 7628 int lastcol;
06a2c219
GM
7629 int maybe_next_line_p = 0;
7630 int line_start_position;
7631 int yb = window_text_bottom_y (w);
03d1a189
GM
7632 struct glyph_row *row, *best_row;
7633 int row_vpos, best_row_vpos;
06a2c219
GM
7634 int current_x;
7635
03d1a189
GM
7636 row = best_row = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
7637 row_vpos = best_row_vpos = MATRIX_ROW_VPOS (row, w->current_matrix);
7638
06a2c219 7639 while (row->y < yb)
b8009dd1 7640 {
06a2c219
GM
7641 if (row->used[TEXT_AREA])
7642 line_start_position = row->glyphs[TEXT_AREA]->charpos;
7643 else
7644 line_start_position = 0;
7645
7646 if (line_start_position > pos)
b8009dd1 7647 break;
77b68646
RS
7648 /* If the position sought is the end of the buffer,
7649 don't include the blank lines at the bottom of the window. */
06a2c219
GM
7650 else if (line_start_position == pos
7651 && pos == BUF_ZV (XBUFFER (w->buffer)))
77b68646 7652 {
06a2c219 7653 maybe_next_line_p = 1;
77b68646
RS
7654 break;
7655 }
06a2c219
GM
7656 else if (line_start_position > 0)
7657 {
7658 best_row = row;
7659 best_row_vpos = row_vpos;
7660 }
4b0bb6f3
GM
7661
7662 if (row->y + row->height >= yb)
7663 break;
06a2c219
GM
7664
7665 ++row;
7666 ++row_vpos;
b8009dd1 7667 }
06a2c219
GM
7668
7669 /* Find the right column within BEST_ROW. */
7670 lastcol = 0;
7671 current_x = best_row->x;
7672 for (i = 0; i < best_row->used[TEXT_AREA]; i++)
bf1c0ba1 7673 {
06a2c219 7674 struct glyph *glyph = best_row->glyphs[TEXT_AREA] + i;
7e376260 7675 int charpos = glyph->charpos;
06a2c219 7676
7e376260 7677 if (BUFFERP (glyph->object))
bf1c0ba1 7678 {
7e376260
GM
7679 if (charpos == pos)
7680 {
7681 *hpos = i;
7682 *vpos = best_row_vpos;
7683 *x = current_x;
7684 *y = best_row->y;
7685 return 1;
7686 }
7687 else if (charpos > pos)
7688 break;
bf1c0ba1 7689 }
7e376260 7690 else if (EQ (glyph->object, stop))
4d73d038 7691 break;
06a2c219 7692
7e376260
GM
7693 if (charpos > 0)
7694 lastcol = i;
06a2c219 7695 current_x += glyph->pixel_width;
bf1c0ba1 7696 }
b8009dd1 7697
77b68646
RS
7698 /* If we're looking for the end of the buffer,
7699 and we didn't find it in the line we scanned,
7700 use the start of the following line. */
06a2c219 7701 if (maybe_next_line_p)
77b68646 7702 {
06a2c219
GM
7703 ++best_row;
7704 ++best_row_vpos;
7705 lastcol = 0;
7706 current_x = best_row->x;
77b68646
RS
7707 }
7708
06a2c219
GM
7709 *vpos = best_row_vpos;
7710 *hpos = lastcol + 1;
7711 *x = current_x;
7712 *y = best_row->y;
b8009dd1
RS
7713 return 0;
7714}
7715
9f8531e5
GM
7716#endif /* not 0 */
7717
06a2c219 7718
269b7745 7719/* Find the position of the glyph for position POS in OBJECT in
7a4bce14
PJ
7720 window W's current matrix, and return in *X, *Y the pixel
7721 coordinates, and return in *HPOS, *VPOS the column/row of the glyph.
f9db2310
GM
7722
7723 RIGHT_P non-zero means return the position of the right edge of the
7724 glyph, RIGHT_P zero means return the left edge position.
7725
7726 If no glyph for POS exists in the matrix, return the position of
7727 the glyph with the next smaller position that is in the matrix, if
7728 RIGHT_P is zero. If RIGHT_P is non-zero, and no glyph for POS
7729 exists in the matrix, return the position of the glyph with the
7730 next larger position in OBJECT.
7731
7732 Value is non-zero if a glyph was found. */
7733
7734static int
7735fast_find_string_pos (w, pos, object, hpos, vpos, x, y, right_p)
7736 struct window *w;
7737 int pos;
7738 Lisp_Object object;
7739 int *hpos, *vpos, *x, *y;
7740 int right_p;
7741{
7742 int yb = window_text_bottom_y (w);
7743 struct glyph_row *r;
7744 struct glyph *best_glyph = NULL;
7745 struct glyph_row *best_row = NULL;
7746 int best_x = 0;
7747
7748 for (r = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
7749 r->enabled_p && r->y < yb;
7750 ++r)
7751 {
7752 struct glyph *g = r->glyphs[TEXT_AREA];
7753 struct glyph *e = g + r->used[TEXT_AREA];
7754 int gx;
7755
7756 for (gx = r->x; g < e; gx += g->pixel_width, ++g)
7757 if (EQ (g->object, object))
7758 {
7759 if (g->charpos == pos)
7760 {
7761 best_glyph = g;
7762 best_x = gx;
7763 best_row = r;
7764 goto found;
7765 }
7766 else if (best_glyph == NULL
7767 || ((abs (g->charpos - pos)
7768 < abs (best_glyph->charpos - pos))
7769 && (right_p
7770 ? g->charpos < pos
7771 : g->charpos > pos)))
7772 {
7773 best_glyph = g;
7774 best_x = gx;
7775 best_row = r;
7776 }
7777 }
7778 }
7779
7780 found:
7781
7782 if (best_glyph)
7783 {
7784 *x = best_x;
7785 *hpos = best_glyph - best_row->glyphs[TEXT_AREA];
7786
7787 if (right_p)
7788 {
7789 *x += best_glyph->pixel_width;
7790 ++*hpos;
7791 }
7792
7793 *y = best_row->y;
7794 *vpos = best_row - w->current_matrix->rows;
7795 }
7796
7797 return best_glyph != NULL;
7798}
7799
7800
b8009dd1
RS
7801/* Display the active region described by mouse_face_*
7802 in its mouse-face if HL > 0, in its normal face if HL = 0. */
7803
7804static void
06a2c219 7805show_mouse_face (dpyinfo, draw)
7a13e894 7806 struct x_display_info *dpyinfo;
06a2c219 7807 enum draw_glyphs_face draw;
b8009dd1 7808{
7a13e894 7809 struct window *w = XWINDOW (dpyinfo->mouse_face_window);
06a2c219 7810 struct frame *f = XFRAME (WINDOW_FRAME (w));
06a2c219 7811
b2bbd509
GM
7812 if (/* If window is in the process of being destroyed, don't bother
7813 to do anything. */
7814 w->current_matrix != NULL
66301061
KS
7815 /* Don't update mouse highlight if hidden */
7816 && (draw != DRAW_MOUSE_FACE || !dpyinfo->mouse_face_hidden)
b2bbd509
GM
7817 /* Recognize when we are called to operate on rows that don't exist
7818 anymore. This can happen when a window is split. */
7819 && dpyinfo->mouse_face_end_row < w->current_matrix->nrows)
06a2c219 7820 {
b2bbd509
GM
7821 int phys_cursor_on_p = w->phys_cursor_on_p;
7822 struct glyph_row *row, *first, *last;
06a2c219 7823
b2bbd509
GM
7824 first = MATRIX_ROW (w->current_matrix, dpyinfo->mouse_face_beg_row);
7825 last = MATRIX_ROW (w->current_matrix, dpyinfo->mouse_face_end_row);
7826
7827 for (row = first; row <= last && row->enabled_p; ++row)
06a2c219 7828 {
b2bbd509 7829 int start_hpos, end_hpos, start_x;
06a2c219 7830
b2bbd509
GM
7831 /* For all but the first row, the highlight starts at column 0. */
7832 if (row == first)
7833 {
7834 start_hpos = dpyinfo->mouse_face_beg_col;
7835 start_x = dpyinfo->mouse_face_beg_x;
7836 }
7837 else
7838 {
7839 start_hpos = 0;
7840 start_x = 0;
7841 }
06a2c219 7842
b2bbd509
GM
7843 if (row == last)
7844 end_hpos = dpyinfo->mouse_face_end_col;
7845 else
7846 end_hpos = row->used[TEXT_AREA];
b8009dd1 7847
b2bbd509
GM
7848 if (end_hpos > start_hpos)
7849 {
7850 x_draw_glyphs (w, start_x, row, TEXT_AREA,
7851 start_hpos, end_hpos, draw, 0);
b8009dd1 7852
60626bab
GM
7853 row->mouse_face_p
7854 = draw == DRAW_MOUSE_FACE || draw == DRAW_IMAGE_RAISED;
b2bbd509
GM
7855 }
7856 }
2729a2b5 7857
b2bbd509
GM
7858 /* When we've written over the cursor, arrange for it to
7859 be displayed again. */
7860 if (phys_cursor_on_p && !w->phys_cursor_on_p)
7861 x_display_cursor (w, 1,
7862 w->phys_cursor.hpos, w->phys_cursor.vpos,
7863 w->phys_cursor.x, w->phys_cursor.y);
7864 }
fb3b7de5 7865
06a2c219
GM
7866 /* Change the mouse cursor. */
7867 if (draw == DRAW_NORMAL_TEXT)
7868 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
7869 f->output_data.x->text_cursor);
7870 else if (draw == DRAW_MOUSE_FACE)
334208b7 7871 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
7556890b 7872 f->output_data.x->cross_cursor);
27ead1d5 7873 else
334208b7 7874 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
06a2c219 7875 f->output_data.x->nontext_cursor);
b8009dd1
RS
7876}
7877
7878/* Clear out the mouse-highlighted active region.
fa262c07
GM
7879 Redraw it un-highlighted first. Value is non-zero if mouse
7880 face was actually drawn unhighlighted. */
b8009dd1 7881
fa262c07 7882static int
7a13e894
RS
7883clear_mouse_face (dpyinfo)
7884 struct x_display_info *dpyinfo;
b8009dd1 7885{
fa262c07 7886 int cleared = 0;
06a2c219 7887
fa262c07
GM
7888 if (!NILP (dpyinfo->mouse_face_window))
7889 {
7890 show_mouse_face (dpyinfo, DRAW_NORMAL_TEXT);
7891 cleared = 1;
7892 }
b8009dd1 7893
7a13e894
RS
7894 dpyinfo->mouse_face_beg_row = dpyinfo->mouse_face_beg_col = -1;
7895 dpyinfo->mouse_face_end_row = dpyinfo->mouse_face_end_col = -1;
7896 dpyinfo->mouse_face_window = Qnil;
1b85dc1c 7897 dpyinfo->mouse_face_overlay = Qnil;
fa262c07 7898 return cleared;
b8009dd1 7899}
e687d06e 7900
71b8321e
GM
7901
7902/* Clear any mouse-face on window W. This function is part of the
7903 redisplay interface, and is called from try_window_id and similar
7904 functions to ensure the mouse-highlight is off. */
7905
7906static void
7907x_clear_mouse_face (w)
7908 struct window *w;
7909{
7910 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (XFRAME (w->frame));
7911 Lisp_Object window;
7912
2e636f9d 7913 BLOCK_INPUT;
71b8321e
GM
7914 XSETWINDOW (window, w);
7915 if (EQ (window, dpyinfo->mouse_face_window))
7916 clear_mouse_face (dpyinfo);
2e636f9d 7917 UNBLOCK_INPUT;
71b8321e
GM
7918}
7919
7920
e687d06e
RS
7921/* Just discard the mouse face information for frame F, if any.
7922 This is used when the size of F is changed. */
7923
dfcf069d 7924void
e687d06e
RS
7925cancel_mouse_face (f)
7926 FRAME_PTR f;
7927{
7928 Lisp_Object window;
7929 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
7930
7931 window = dpyinfo->mouse_face_window;
7932 if (! NILP (window) && XFRAME (XWINDOW (window)->frame) == f)
7933 {
7934 dpyinfo->mouse_face_beg_row = dpyinfo->mouse_face_beg_col = -1;
7935 dpyinfo->mouse_face_end_row = dpyinfo->mouse_face_end_col = -1;
7936 dpyinfo->mouse_face_window = Qnil;
7937 }
7938}
b52b65bd 7939
b8009dd1 7940\f
b52b65bd
GM
7941static int glyph_rect P_ ((struct frame *f, int, int, XRectangle *));
7942
7943
7944/* Try to determine frame pixel position and size of the glyph under
7945 frame pixel coordinates X/Y on frame F . Return the position and
7946 size in *RECT. Value is non-zero if we could compute these
7947 values. */
7948
7949static int
7950glyph_rect (f, x, y, rect)
7951 struct frame *f;
7952 int x, y;
7953 XRectangle *rect;
7954{
7955 Lisp_Object window;
7956 int part, found = 0;
7957
7958 window = window_from_coordinates (f, x, y, &part, 0);
7959 if (!NILP (window))
7960 {
7961 struct window *w = XWINDOW (window);
7962 struct glyph_row *r = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
7963 struct glyph_row *end = r + w->current_matrix->nrows - 1;
b52b65bd
GM
7964
7965 frame_to_window_pixel_xy (w, &x, &y);
7966
7967 for (; !found && r < end && r->enabled_p; ++r)
7968 if (r->y >= y)
7969 {
7970 struct glyph *g = r->glyphs[TEXT_AREA];
7971 struct glyph *end = g + r->used[TEXT_AREA];
7972 int gx;
7973
7974 for (gx = r->x; !found && g < end; gx += g->pixel_width, ++g)
7975 if (gx >= x)
7976 {
7977 rect->width = g->pixel_width;
7978 rect->height = r->height;
7979 rect->x = WINDOW_TO_FRAME_PIXEL_X (w, gx);
7980 rect->y = WINDOW_TO_FRAME_PIXEL_Y (w, r->y);
7981 found = 1;
7982 }
7983 }
7984 }
7985
7986 return found;
7987}
7988
12ba150f 7989
90e65f07 7990/* Return the current position of the mouse.
b52b65bd 7991 *FP should be a frame which indicates which display to ask about.
90e65f07 7992
b52b65bd
GM
7993 If the mouse movement started in a scroll bar, set *FP, *BAR_WINDOW,
7994 and *PART to the frame, window, and scroll bar part that the mouse
7995 is over. Set *X and *Y to the portion and whole of the mouse's
ab648270 7996 position on the scroll bar.
12ba150f 7997
b52b65bd
GM
7998 If the mouse movement started elsewhere, set *FP to the frame the
7999 mouse is on, *BAR_WINDOW to nil, and *X and *Y to the character cell
12ba150f
JB
8000 the mouse is over.
8001
b52b65bd 8002 Set *TIME to the server time-stamp for the time at which the mouse
12ba150f
JB
8003 was at this position.
8004
a135645a
RS
8005 Don't store anything if we don't have a valid set of values to report.
8006
90e65f07 8007 This clears the mouse_moved flag, so we can wait for the next mouse
f5bb65ec 8008 movement. */
90e65f07
JB
8009
8010static void
1cf412ec 8011XTmouse_position (fp, insist, bar_window, part, x, y, time)
334208b7 8012 FRAME_PTR *fp;
1cf412ec 8013 int insist;
12ba150f 8014 Lisp_Object *bar_window;
ab648270 8015 enum scroll_bar_part *part;
90e65f07 8016 Lisp_Object *x, *y;
e5d77022 8017 unsigned long *time;
90e65f07 8018{
a135645a
RS
8019 FRAME_PTR f1;
8020
90e65f07
JB
8021 BLOCK_INPUT;
8022
8bcee03e 8023 if (! NILP (last_mouse_scroll_bar) && insist == 0)
334208b7 8024 x_scroll_bar_report_motion (fp, bar_window, part, x, y, time);
90e65f07
JB
8025 else
8026 {
12ba150f
JB
8027 Window root;
8028 int root_x, root_y;
90e65f07 8029
12ba150f
JB
8030 Window dummy_window;
8031 int dummy;
8032
39d8bb4d
KH
8033 Lisp_Object frame, tail;
8034
8035 /* Clear the mouse-moved flag for every frame on this display. */
8036 FOR_EACH_FRAME (tail, frame)
8037 if (FRAME_X_DISPLAY (XFRAME (frame)) == FRAME_X_DISPLAY (*fp))
8038 XFRAME (frame)->mouse_moved = 0;
8039
ab648270 8040 last_mouse_scroll_bar = Qnil;
12ba150f
JB
8041
8042 /* Figure out which root window we're on. */
334208b7
RS
8043 XQueryPointer (FRAME_X_DISPLAY (*fp),
8044 DefaultRootWindow (FRAME_X_DISPLAY (*fp)),
12ba150f
JB
8045
8046 /* The root window which contains the pointer. */
8047 &root,
8048
8049 /* Trash which we can't trust if the pointer is on
8050 a different screen. */
8051 &dummy_window,
8052
8053 /* The position on that root window. */
58769bee 8054 &root_x, &root_y,
12ba150f
JB
8055
8056 /* More trash we can't trust. */
8057 &dummy, &dummy,
8058
8059 /* Modifier keys and pointer buttons, about which
8060 we don't care. */
8061 (unsigned int *) &dummy);
8062
8063 /* Now we have a position on the root; find the innermost window
8064 containing the pointer. */
8065 {
8066 Window win, child;
8067 int win_x, win_y;
06a2c219 8068 int parent_x = 0, parent_y = 0;
e99db5a1 8069 int count;
12ba150f
JB
8070
8071 win = root;
69388238 8072
2d7fc7e8
RS
8073 /* XTranslateCoordinates can get errors if the window
8074 structure is changing at the same time this function
8075 is running. So at least we must not crash from them. */
8076
e99db5a1 8077 count = x_catch_errors (FRAME_X_DISPLAY (*fp));
2d7fc7e8 8078
334208b7 8079 if (FRAME_X_DISPLAY_INFO (*fp)->grabbed && last_mouse_frame
23faf38f 8080 && FRAME_LIVE_P (last_mouse_frame))
12ba150f 8081 {
69388238
RS
8082 /* If mouse was grabbed on a frame, give coords for that frame
8083 even if the mouse is now outside it. */
334208b7 8084 XTranslateCoordinates (FRAME_X_DISPLAY (*fp),
69388238 8085
12ba150f 8086 /* From-window, to-window. */
69388238 8087 root, FRAME_X_WINDOW (last_mouse_frame),
12ba150f
JB
8088
8089 /* From-position, to-position. */
8090 root_x, root_y, &win_x, &win_y,
8091
8092 /* Child of win. */
8093 &child);
69388238
RS
8094 f1 = last_mouse_frame;
8095 }
8096 else
8097 {
8098 while (1)
8099 {
334208b7 8100 XTranslateCoordinates (FRAME_X_DISPLAY (*fp),
12ba150f 8101
69388238
RS
8102 /* From-window, to-window. */
8103 root, win,
12ba150f 8104
69388238
RS
8105 /* From-position, to-position. */
8106 root_x, root_y, &win_x, &win_y,
8107
8108 /* Child of win. */
8109 &child);
8110
9af3143a 8111 if (child == None || child == win)
69388238
RS
8112 break;
8113
8114 win = child;
8115 parent_x = win_x;
8116 parent_y = win_y;
8117 }
12ba150f 8118
69388238
RS
8119 /* Now we know that:
8120 win is the innermost window containing the pointer
8121 (XTC says it has no child containing the pointer),
8122 win_x and win_y are the pointer's position in it
8123 (XTC did this the last time through), and
8124 parent_x and parent_y are the pointer's position in win's parent.
8125 (They are what win_x and win_y were when win was child.
8126 If win is the root window, it has no parent, and
8127 parent_{x,y} are invalid, but that's okay, because we'll
8128 never use them in that case.) */
8129
8130 /* Is win one of our frames? */
19126e11 8131 f1 = x_any_window_to_frame (FRAME_X_DISPLAY_INFO (*fp), win);
aad0f6ab
GM
8132
8133#ifdef USE_X_TOOLKIT
8134 /* If we end up with the menu bar window, say it's not
8135 on the frame. */
8136 if (f1 != NULL
8137 && f1->output_data.x->menubar_widget
8138 && win == XtWindow (f1->output_data.x->menubar_widget))
8139 f1 = NULL;
8140#endif /* USE_X_TOOLKIT */
69388238 8141 }
58769bee 8142
2d7fc7e8
RS
8143 if (x_had_errors_p (FRAME_X_DISPLAY (*fp)))
8144 f1 = 0;
8145
e99db5a1 8146 x_uncatch_errors (FRAME_X_DISPLAY (*fp), count);
2d7fc7e8 8147
ab648270 8148 /* If not, is it one of our scroll bars? */
a135645a 8149 if (! f1)
12ba150f 8150 {
ab648270 8151 struct scroll_bar *bar = x_window_to_scroll_bar (win);
12ba150f
JB
8152
8153 if (bar)
8154 {
a135645a 8155 f1 = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
12ba150f
JB
8156 win_x = parent_x;
8157 win_y = parent_y;
8158 }
8159 }
90e65f07 8160
8bcee03e 8161 if (f1 == 0 && insist > 0)
b86bd3dd 8162 f1 = SELECTED_FRAME ();
1cf412ec 8163
a135645a 8164 if (f1)
12ba150f 8165 {
06a2c219
GM
8166 /* Ok, we found a frame. Store all the values.
8167 last_mouse_glyph is a rectangle used to reduce the
8168 generation of mouse events. To not miss any motion
8169 events, we must divide the frame into rectangles of the
8170 size of the smallest character that could be displayed
8171 on it, i.e. into the same rectangles that matrices on
8172 the frame are divided into. */
8173
b52b65bd
GM
8174 int width, height, gx, gy;
8175 XRectangle rect;
8176
8177 if (glyph_rect (f1, win_x, win_y, &rect))
8178 last_mouse_glyph = rect;
8179 else
8180 {
8181 width = FRAME_SMALLEST_CHAR_WIDTH (f1);
8182 height = FRAME_SMALLEST_FONT_HEIGHT (f1);
8183 gx = win_x;
8184 gy = win_y;
06a2c219 8185
b52b65bd
GM
8186 /* Arrange for the division in PIXEL_TO_CHAR_COL etc. to
8187 round down even for negative values. */
8188 if (gx < 0)
8189 gx -= width - 1;
4f00e84d 8190 if (gy < 0)
b52b65bd
GM
8191 gy -= height - 1;
8192 gx = (gx + width - 1) / width * width;
8193 gy = (gy + height - 1) / height * height;
8194
8195 last_mouse_glyph.width = width;
8196 last_mouse_glyph.height = height;
8197 last_mouse_glyph.x = gx;
8198 last_mouse_glyph.y = gy;
8199 }
12ba150f
JB
8200
8201 *bar_window = Qnil;
8202 *part = 0;
334208b7 8203 *fp = f1;
e0c1aef2
KH
8204 XSETINT (*x, win_x);
8205 XSETINT (*y, win_y);
12ba150f
JB
8206 *time = last_mouse_movement_time;
8207 }
8208 }
8209 }
90e65f07
JB
8210
8211 UNBLOCK_INPUT;
8212}
f451eb13 8213
06a2c219 8214
06a2c219 8215#ifdef USE_X_TOOLKIT
bffcfca9
GM
8216
8217/* Atimer callback function for TIMER. Called every 0.1s to process
8218 Xt timeouts, if needed. We must avoid calling XtAppPending as
8219 much as possible because that function does an implicit XFlush
8220 that slows us down. */
8221
8222static void
8223x_process_timeouts (timer)
8224 struct atimer *timer;
8225{
8226 if (toolkit_scroll_bar_interaction || popup_activated_flag)
8227 {
8228 BLOCK_INPUT;
8229 while (XtAppPending (Xt_app_con) & XtIMTimer)
8230 XtAppProcessEvent (Xt_app_con, XtIMTimer);
8231 UNBLOCK_INPUT;
8232 }
06a2c219
GM
8233}
8234
bffcfca9 8235#endif /* USE_X_TOOLKIT */
06a2c219
GM
8236
8237\f
8238/* Scroll bar support. */
8239
8240/* Given an X window ID, find the struct scroll_bar which manages it.
8241 This can be called in GC, so we have to make sure to strip off mark
8242 bits. */
bffcfca9 8243
06a2c219
GM
8244static struct scroll_bar *
8245x_window_to_scroll_bar (window_id)
8246 Window window_id;
8247{
8248 Lisp_Object tail;
8249
8250 for (tail = Vframe_list;
8251 XGCTYPE (tail) == Lisp_Cons;
8e713be6 8252 tail = XCDR (tail))
06a2c219
GM
8253 {
8254 Lisp_Object frame, bar, condemned;
8255
8e713be6 8256 frame = XCAR (tail);
06a2c219
GM
8257 /* All elements of Vframe_list should be frames. */
8258 if (! GC_FRAMEP (frame))
8259 abort ();
8260
8261 /* Scan this frame's scroll bar list for a scroll bar with the
8262 right window ID. */
8263 condemned = FRAME_CONDEMNED_SCROLL_BARS (XFRAME (frame));
8264 for (bar = FRAME_SCROLL_BARS (XFRAME (frame));
8265 /* This trick allows us to search both the ordinary and
8266 condemned scroll bar lists with one loop. */
8267 ! GC_NILP (bar) || (bar = condemned,
8268 condemned = Qnil,
8269 ! GC_NILP (bar));
8270 bar = XSCROLL_BAR (bar)->next)
8271 if (SCROLL_BAR_X_WINDOW (XSCROLL_BAR (bar)) == window_id)
8272 return XSCROLL_BAR (bar);
8273 }
8274
8275 return 0;
8276}
8277
8278
01f67d2c 8279#if defined USE_LUCID
c95fc5f1
GM
8280
8281/* Return the Lucid menu bar WINDOW is part of. Return null
8282 if WINDOW is not part of a menu bar. */
8283
8284static Widget
8285x_window_to_menu_bar (window)
8286 Window window;
8287{
8288 Lisp_Object tail;
8289
8290 for (tail = Vframe_list;
8291 XGCTYPE (tail) == Lisp_Cons;
8292 tail = XCDR (tail))
8293 {
8294 Lisp_Object frame = XCAR (tail);
8295 Widget menu_bar = XFRAME (frame)->output_data.x->menubar_widget;
8296
8297 if (menu_bar && xlwmenu_window_p (menu_bar, window))
8298 return menu_bar;
8299 }
8300
8301 return NULL;
8302}
8303
01f67d2c 8304#endif /* USE_LUCID */
c95fc5f1 8305
06a2c219
GM
8306\f
8307/************************************************************************
8308 Toolkit scroll bars
8309 ************************************************************************/
8310
eccc05db 8311#ifdef USE_TOOLKIT_SCROLL_BARS
06a2c219
GM
8312
8313static void x_scroll_bar_to_input_event P_ ((XEvent *, struct input_event *));
8314static void x_send_scroll_bar_event P_ ((Lisp_Object, int, int, int));
8315static void x_create_toolkit_scroll_bar P_ ((struct frame *,
8316 struct scroll_bar *));
8317static void x_set_toolkit_scroll_bar_thumb P_ ((struct scroll_bar *,
8318 int, int, int));
8319
8320
8321/* Id of action hook installed for scroll bars. */
8322
8323static XtActionHookId action_hook_id;
8324
8325/* Lisp window being scrolled. Set when starting to interact with
8326 a toolkit scroll bar, reset to nil when ending the interaction. */
8327
8328static Lisp_Object window_being_scrolled;
8329
8330/* Last scroll bar part sent in xm_scroll_callback. */
8331
8332static int last_scroll_bar_part;
8333
ec18280f
SM
8334/* Whether this is an Xaw with arrow-scrollbars. This should imply
8335 that movements of 1/20 of the screen size are mapped to up/down. */
8336
8337static Boolean xaw3d_arrow_scroll;
8338
8339/* Whether the drag scrolling maintains the mouse at the top of the
8340 thumb. If not, resizing the thumb needs to be done more carefully
8341 to avoid jerkyness. */
8342
8343static Boolean xaw3d_pick_top;
8344
06a2c219
GM
8345
8346/* Action hook installed via XtAppAddActionHook when toolkit scroll
ec18280f 8347 bars are used.. The hook is responsible for detecting when
06a2c219
GM
8348 the user ends an interaction with the scroll bar, and generates
8349 a `end-scroll' scroll_bar_click' event if so. */
8350
8351static void
8352xt_action_hook (widget, client_data, action_name, event, params,
8353 num_params)
8354 Widget widget;
8355 XtPointer client_data;
8356 String action_name;
8357 XEvent *event;
8358 String *params;
8359 Cardinal *num_params;
8360{
8361 int scroll_bar_p;
8362 char *end_action;
8363
8364#ifdef USE_MOTIF
8365 scroll_bar_p = XmIsScrollBar (widget);
8366 end_action = "Release";
ec18280f 8367#else /* !USE_MOTIF i.e. use Xaw */
06a2c219
GM
8368 scroll_bar_p = XtIsSubclass (widget, scrollbarWidgetClass);
8369 end_action = "EndScroll";
ec18280f 8370#endif /* USE_MOTIF */
06a2c219 8371
06a2c219
GM
8372 if (scroll_bar_p
8373 && strcmp (action_name, end_action) == 0
8374 && WINDOWP (window_being_scrolled))
8375 {
8376 struct window *w;
8377
8378 x_send_scroll_bar_event (window_being_scrolled,
8379 scroll_bar_end_scroll, 0, 0);
8380 w = XWINDOW (window_being_scrolled);
8381 XSCROLL_BAR (w->vertical_scroll_bar)->dragging = Qnil;
8382 window_being_scrolled = Qnil;
8383 last_scroll_bar_part = -1;
bffcfca9
GM
8384
8385 /* Xt timeouts no longer needed. */
8386 toolkit_scroll_bar_interaction = 0;
06a2c219
GM
8387 }
8388}
8389
07b3d16e
GM
8390/* A vector of windows used for communication between
8391 x_send_scroll_bar_event and x_scroll_bar_to_input_event. */
8392
8393static struct window **scroll_bar_windows;
8394static int scroll_bar_windows_size;
8395
06a2c219
GM
8396
8397/* Send a client message with message type Xatom_Scrollbar for a
8398 scroll action to the frame of WINDOW. PART is a value identifying
8399 the part of the scroll bar that was clicked on. PORTION is the
8400 amount to scroll of a whole of WHOLE. */
8401
8402static void
8403x_send_scroll_bar_event (window, part, portion, whole)
8404 Lisp_Object window;
8405 int part, portion, whole;
8406{
8407 XEvent event;
8408 XClientMessageEvent *ev = (XClientMessageEvent *) &event;
07b3d16e
GM
8409 struct window *w = XWINDOW (window);
8410 struct frame *f = XFRAME (w->frame);
8411 int i;
06a2c219 8412
07b3d16e
GM
8413 BLOCK_INPUT;
8414
06a2c219
GM
8415 /* Construct a ClientMessage event to send to the frame. */
8416 ev->type = ClientMessage;
8417 ev->message_type = FRAME_X_DISPLAY_INFO (f)->Xatom_Scrollbar;
8418 ev->display = FRAME_X_DISPLAY (f);
8419 ev->window = FRAME_X_WINDOW (f);
8420 ev->format = 32;
07b3d16e
GM
8421
8422 /* We can only transfer 32 bits in the XClientMessageEvent, which is
8423 not enough to store a pointer or Lisp_Object on a 64 bit system.
8424 So, store the window in scroll_bar_windows and pass the index
8425 into that array in the event. */
8426 for (i = 0; i < scroll_bar_windows_size; ++i)
8427 if (scroll_bar_windows[i] == NULL)
8428 break;
8429
8430 if (i == scroll_bar_windows_size)
8431 {
8432 int new_size = max (10, 2 * scroll_bar_windows_size);
8433 size_t nbytes = new_size * sizeof *scroll_bar_windows;
8434 size_t old_nbytes = scroll_bar_windows_size * sizeof *scroll_bar_windows;
8435
8436 scroll_bar_windows = (struct window **) xrealloc (scroll_bar_windows,
8437 nbytes);
8438 bzero (&scroll_bar_windows[i], nbytes - old_nbytes);
8439 scroll_bar_windows_size = new_size;
8440 }
8441
8442 scroll_bar_windows[i] = w;
8443 ev->data.l[0] = (long) i;
06a2c219
GM
8444 ev->data.l[1] = (long) part;
8445 ev->data.l[2] = (long) 0;
8446 ev->data.l[3] = (long) portion;
8447 ev->data.l[4] = (long) whole;
8448
bffcfca9
GM
8449 /* Make Xt timeouts work while the scroll bar is active. */
8450 toolkit_scroll_bar_interaction = 1;
8451
06a2c219
GM
8452 /* Setting the event mask to zero means that the message will
8453 be sent to the client that created the window, and if that
8454 window no longer exists, no event will be sent. */
06a2c219
GM
8455 XSendEvent (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), False, 0, &event);
8456 UNBLOCK_INPUT;
8457}
8458
8459
8460/* Transform a scroll bar ClientMessage EVENT to an Emacs input event
8461 in *IEVENT. */
8462
8463static void
8464x_scroll_bar_to_input_event (event, ievent)
8465 XEvent *event;
8466 struct input_event *ievent;
8467{
8468 XClientMessageEvent *ev = (XClientMessageEvent *) event;
52e386c2
KR
8469 Lisp_Object window;
8470 struct frame *f;
07b3d16e
GM
8471 struct window *w;
8472
8473 w = scroll_bar_windows[ev->data.l[0]];
8474 scroll_bar_windows[ev->data.l[0]] = NULL;
52e386c2 8475
07b3d16e
GM
8476 XSETWINDOW (window, w);
8477 f = XFRAME (w->frame);
06a2c219
GM
8478
8479 ievent->kind = scroll_bar_click;
8480 ievent->frame_or_window = window;
0f8aabe9 8481 ievent->arg = Qnil;
06a2c219
GM
8482 ievent->timestamp = XtLastTimestampProcessed (FRAME_X_DISPLAY (f));
8483 ievent->part = ev->data.l[1];
8484 ievent->code = ev->data.l[2];
8485 ievent->x = make_number ((int) ev->data.l[3]);
8486 ievent->y = make_number ((int) ev->data.l[4]);
8487 ievent->modifiers = 0;
8488}
8489
8490
8491#ifdef USE_MOTIF
8492
8493/* Minimum and maximum values used for Motif scroll bars. */
8494
8495#define XM_SB_MIN 1
8496#define XM_SB_MAX 10000000
8497#define XM_SB_RANGE (XM_SB_MAX - XM_SB_MIN)
8498
8499
8500/* Scroll bar callback for Motif scroll bars. WIDGET is the scroll
8501 bar widget. CLIENT_DATA is a pointer to the scroll_bar structure.
8502 CALL_DATA is a pointer a a XmScrollBarCallbackStruct. */
8503
8504static void
8505xm_scroll_callback (widget, client_data, call_data)
8506 Widget widget;
8507 XtPointer client_data, call_data;
8508{
8509 struct scroll_bar *bar = (struct scroll_bar *) client_data;
8510 XmScrollBarCallbackStruct *cs = (XmScrollBarCallbackStruct *) call_data;
06a2c219
GM
8511 int part = -1, whole = 0, portion = 0;
8512
8513 switch (cs->reason)
8514 {
8515 case XmCR_DECREMENT:
8516 bar->dragging = Qnil;
8517 part = scroll_bar_up_arrow;
8518 break;
8519
8520 case XmCR_INCREMENT:
8521 bar->dragging = Qnil;
8522 part = scroll_bar_down_arrow;
8523 break;
8524
8525 case XmCR_PAGE_DECREMENT:
8526 bar->dragging = Qnil;
8527 part = scroll_bar_above_handle;
8528 break;
8529
8530 case XmCR_PAGE_INCREMENT:
8531 bar->dragging = Qnil;
8532 part = scroll_bar_below_handle;
8533 break;
8534
8535 case XmCR_TO_TOP:
8536 bar->dragging = Qnil;
8537 part = scroll_bar_to_top;
8538 break;
8539
8540 case XmCR_TO_BOTTOM:
8541 bar->dragging = Qnil;
8542 part = scroll_bar_to_bottom;
8543 break;
8544
8545 case XmCR_DRAG:
8546 {
8547 int slider_size;
8548 int dragging_down_p = (INTEGERP (bar->dragging)
8549 && XINT (bar->dragging) <= cs->value);
8550
8551 /* Get the slider size. */
8552 BLOCK_INPUT;
8553 XtVaGetValues (widget, XmNsliderSize, &slider_size, NULL);
8554 UNBLOCK_INPUT;
8555
6f2a7a68
SM
8556 whole = XM_SB_RANGE - slider_size;
8557 portion = min (cs->value - XM_SB_MIN, whole);
8558 part = scroll_bar_handle;
8559 bar->dragging = make_number (cs->value);
06a2c219
GM
8560 }
8561 break;
8562
8563 case XmCR_VALUE_CHANGED:
8564 break;
8565 };
8566
8567 if (part >= 0)
8568 {
8569 window_being_scrolled = bar->window;
8570 last_scroll_bar_part = part;
8571 x_send_scroll_bar_event (bar->window, part, portion, whole);
8572 }
8573}
8574
8575
ec18280f 8576#else /* !USE_MOTIF, i.e. Xaw. */
06a2c219
GM
8577
8578
ec18280f 8579/* Xaw scroll bar callback. Invoked when the thumb is dragged.
06a2c219
GM
8580 WIDGET is the scroll bar widget. CLIENT_DATA is a pointer to the
8581 scroll bar struct. CALL_DATA is a pointer to a float saying where
8582 the thumb is. */
8583
8584static void
ec18280f 8585xaw_jump_callback (widget, client_data, call_data)
06a2c219
GM
8586 Widget widget;
8587 XtPointer client_data, call_data;
8588{
8589 struct scroll_bar *bar = (struct scroll_bar *) client_data;
8590 float top = *(float *) call_data;
8591 float shown;
ec18280f
SM
8592 int whole, portion, height;
8593 int part;
06a2c219
GM
8594
8595 /* Get the size of the thumb, a value between 0 and 1. */
8596 BLOCK_INPUT;
ec18280f 8597 XtVaGetValues (widget, XtNshown, &shown, XtNheight, &height, NULL);
06a2c219
GM
8598 UNBLOCK_INPUT;
8599
8600 whole = 10000000;
8601 portion = shown < 1 ? top * whole : 0;
06a2c219 8602
ec18280f
SM
8603 if (shown < 1 && (abs (top + shown - 1) < 1.0/height))
8604 /* Some derivatives of Xaw refuse to shrink the thumb when you reach
8605 the bottom, so we force the scrolling whenever we see that we're
8606 too close to the bottom (in x_set_toolkit_scroll_bar_thumb
8607 we try to ensure that we always stay two pixels away from the
8608 bottom). */
06a2c219
GM
8609 part = scroll_bar_down_arrow;
8610 else
8611 part = scroll_bar_handle;
8612
8613 window_being_scrolled = bar->window;
8614 bar->dragging = make_number (portion);
8615 last_scroll_bar_part = part;
8616 x_send_scroll_bar_event (bar->window, part, portion, whole);
8617}
8618
8619
ec18280f
SM
8620/* Xaw scroll bar callback. Invoked for incremental scrolling.,
8621 i.e. line or page up or down. WIDGET is the Xaw scroll bar
06a2c219
GM
8622 widget. CLIENT_DATA is a pointer to the scroll_bar structure for
8623 the scroll bar. CALL_DATA is an integer specifying the action that
8624 has taken place. It's magnitude is in the range 0..height of the
8625 scroll bar. Negative values mean scroll towards buffer start.
8626 Values < height of scroll bar mean line-wise movement. */
8627
8628static void
ec18280f 8629xaw_scroll_callback (widget, client_data, call_data)
06a2c219
GM
8630 Widget widget;
8631 XtPointer client_data, call_data;
8632{
8633 struct scroll_bar *bar = (struct scroll_bar *) client_data;
8634 int position = (int) call_data;
8635 Dimension height;
8636 int part;
8637
8638 /* Get the height of the scroll bar. */
8639 BLOCK_INPUT;
8640 XtVaGetValues (widget, XtNheight, &height, NULL);
8641 UNBLOCK_INPUT;
8642
ec18280f
SM
8643 if (abs (position) >= height)
8644 part = (position < 0) ? scroll_bar_above_handle : scroll_bar_below_handle;
8645
8646 /* If Xaw3d was compiled with ARROW_SCROLLBAR,
8647 it maps line-movement to call_data = max(5, height/20). */
8648 else if (xaw3d_arrow_scroll && abs (position) <= max (5, height / 20))
8649 part = (position < 0) ? scroll_bar_up_arrow : scroll_bar_down_arrow;
06a2c219 8650 else
ec18280f 8651 part = scroll_bar_move_ratio;
06a2c219
GM
8652
8653 window_being_scrolled = bar->window;
8654 bar->dragging = Qnil;
8655 last_scroll_bar_part = part;
ec18280f 8656 x_send_scroll_bar_event (bar->window, part, position, height);
06a2c219
GM
8657}
8658
8659
8660#endif /* not USE_MOTIF */
8661
8662
8663/* Create the widget for scroll bar BAR on frame F. Record the widget
8664 and X window of the scroll bar in BAR. */
8665
8666static void
8667x_create_toolkit_scroll_bar (f, bar)
8668 struct frame *f;
8669 struct scroll_bar *bar;
8670{
8671 Window xwindow;
8672 Widget widget;
8673 Arg av[20];
8674 int ac = 0;
8675 char *scroll_bar_name = "verticalScrollBar";
8676 unsigned long pixel;
8677
8678 BLOCK_INPUT;
8679
8680#ifdef USE_MOTIF
06a2c219
GM
8681 /* Set resources. Create the widget. */
8682 XtSetArg (av[ac], XtNmappedWhenManaged, False); ++ac;
8683 XtSetArg (av[ac], XmNminimum, XM_SB_MIN); ++ac;
8684 XtSetArg (av[ac], XmNmaximum, XM_SB_MAX); ++ac;
8685 XtSetArg (av[ac], XmNorientation, XmVERTICAL); ++ac;
8686 XtSetArg (av[ac], XmNprocessingDirection, XmMAX_ON_BOTTOM), ++ac;
8687 XtSetArg (av[ac], XmNincrement, 1); ++ac;
8688 XtSetArg (av[ac], XmNpageIncrement, 1); ++ac;
8689
8690 pixel = f->output_data.x->scroll_bar_foreground_pixel;
8691 if (pixel != -1)
8692 {
8693 XtSetArg (av[ac], XmNforeground, pixel);
8694 ++ac;
8695 }
8696
8697 pixel = f->output_data.x->scroll_bar_background_pixel;
8698 if (pixel != -1)
8699 {
8700 XtSetArg (av[ac], XmNbackground, pixel);
8701 ++ac;
8702 }
8703
8704 widget = XmCreateScrollBar (f->output_data.x->edit_widget,
8705 scroll_bar_name, av, ac);
8706
8707 /* Add one callback for everything that can happen. */
8708 XtAddCallback (widget, XmNdecrementCallback, xm_scroll_callback,
8709 (XtPointer) bar);
8710 XtAddCallback (widget, XmNdragCallback, xm_scroll_callback,
8711 (XtPointer) bar);
8712 XtAddCallback (widget, XmNincrementCallback, xm_scroll_callback,
8713 (XtPointer) bar);
8714 XtAddCallback (widget, XmNpageDecrementCallback, xm_scroll_callback,
8715 (XtPointer) bar);
8716 XtAddCallback (widget, XmNpageIncrementCallback, xm_scroll_callback,
8717 (XtPointer) bar);
8718 XtAddCallback (widget, XmNtoBottomCallback, xm_scroll_callback,
8719 (XtPointer) bar);
8720 XtAddCallback (widget, XmNtoTopCallback, xm_scroll_callback,
8721 (XtPointer) bar);
8722
8723 /* Realize the widget. Only after that is the X window created. */
8724 XtRealizeWidget (widget);
8725
8726 /* Set the cursor to an arrow. I didn't find a resource to do that.
8727 And I'm wondering why it hasn't an arrow cursor by default. */
8728 XDefineCursor (XtDisplay (widget), XtWindow (widget),
8729 f->output_data.x->nontext_cursor);
8730
ec18280f 8731#else /* !USE_MOTIF i.e. use Xaw */
06a2c219
GM
8732
8733 /* Set resources. Create the widget. The background of the
8734 Xaw3d scroll bar widget is a little bit light for my taste.
8735 We don't alter it here to let users change it according
8736 to their taste with `emacs*verticalScrollBar.background: xxx'. */
8737 XtSetArg (av[ac], XtNmappedWhenManaged, False); ++ac;
8738 XtSetArg (av[ac], XtNorientation, XtorientVertical); ++ac;
ec18280f
SM
8739 /* For smoother scrolling with Xaw3d -sm */
8740 /* XtSetArg (av[ac], XtNpickTop, True); ++ac; */
06a2c219
GM
8741
8742 pixel = f->output_data.x->scroll_bar_foreground_pixel;
8743 if (pixel != -1)
8744 {
8745 XtSetArg (av[ac], XtNforeground, pixel);
8746 ++ac;
8747 }
8748
8749 pixel = f->output_data.x->scroll_bar_background_pixel;
8750 if (pixel != -1)
8751 {
8752 XtSetArg (av[ac], XtNbackground, pixel);
8753 ++ac;
8754 }
7c1bef7a
MB
8755
8756 /* Top/bottom shadow colors. */
8757
8758 /* Allocate them, if necessary. */
8759 if (f->output_data.x->scroll_bar_top_shadow_pixel == -1)
8760 {
8761 pixel = f->output_data.x->scroll_bar_background_pixel;
8762 if (!x_alloc_lighter_color (f, FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f),
8763 &pixel, 1.2, 0x8000))
8764 pixel = -1;
8765 f->output_data.x->scroll_bar_top_shadow_pixel = pixel;
8766 }
8767 if (f->output_data.x->scroll_bar_bottom_shadow_pixel == -1)
8768 {
8769 pixel = f->output_data.x->scroll_bar_background_pixel;
8770 if (!x_alloc_lighter_color (f, FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f),
8771 &pixel, 0.6, 0x4000))
8772 pixel = -1;
8773 f->output_data.x->scroll_bar_bottom_shadow_pixel = pixel;
8774 }
8775
8776 /* Tell the toolkit about them. */
8777 if (f->output_data.x->scroll_bar_top_shadow_pixel == -1
8778 || f->output_data.x->scroll_bar_bottom_shadow_pixel == -1)
8779 /* We tried to allocate a color for the top/bottom shadow, and
8780 failed, so tell Xaw3d to use dithering instead. */
8781 {
8782 XtSetArg (av[ac], XtNbeNiceToColormap, True);
8783 ++ac;
8784 }
8785 else
8786 /* Tell what colors Xaw3d should use for the top/bottom shadow, to
8787 be more consistent with other emacs 3d colors, and since Xaw3d is
8788 not good at dealing with allocation failure. */
8789 {
8790 /* This tells Xaw3d to use real colors instead of dithering for
8791 the shadows. */
8792 XtSetArg (av[ac], XtNbeNiceToColormap, False);
8793 ++ac;
8794
8795 /* Specify the colors. */
8796 pixel = f->output_data.x->scroll_bar_top_shadow_pixel;
8797 if (pixel != -1)
8798 {
8799 XtSetArg (av[ac], "topShadowPixel", pixel);
8800 ++ac;
8801 }
8802 pixel = f->output_data.x->scroll_bar_bottom_shadow_pixel;
8803 if (pixel != -1)
8804 {
8805 XtSetArg (av[ac], "bottomShadowPixel", pixel);
8806 ++ac;
8807 }
8808 }
8809
06a2c219
GM
8810 widget = XtCreateWidget (scroll_bar_name, scrollbarWidgetClass,
8811 f->output_data.x->edit_widget, av, ac);
ec18280f
SM
8812
8813 {
8814 char *initial = "";
8815 char *val = initial;
8816 XtVaGetValues (widget, XtNscrollVCursor, (XtPointer) &val,
8817 XtNpickTop, (XtPointer) &xaw3d_pick_top, NULL);
8818 if (val == initial)
8819 { /* ARROW_SCROLL */
8820 xaw3d_arrow_scroll = True;
8821 /* Isn't that just a personal preference ? -sm */
8822 XtVaSetValues (widget, XtNcursorName, "top_left_arrow", NULL);
8823 }
8824 }
06a2c219
GM
8825
8826 /* Define callbacks. */
ec18280f
SM
8827 XtAddCallback (widget, XtNjumpProc, xaw_jump_callback, (XtPointer) bar);
8828 XtAddCallback (widget, XtNscrollProc, xaw_scroll_callback,
06a2c219
GM
8829 (XtPointer) bar);
8830
8831 /* Realize the widget. Only after that is the X window created. */
8832 XtRealizeWidget (widget);
8833
ec18280f 8834#endif /* !USE_MOTIF */
06a2c219
GM
8835
8836 /* Install an action hook that let's us detect when the user
8837 finishes interacting with a scroll bar. */
8838 if (action_hook_id == 0)
8839 action_hook_id = XtAppAddActionHook (Xt_app_con, xt_action_hook, 0);
8840
8841 /* Remember X window and widget in the scroll bar vector. */
8842 SET_SCROLL_BAR_X_WIDGET (bar, widget);
8843 xwindow = XtWindow (widget);
8844 SET_SCROLL_BAR_X_WINDOW (bar, xwindow);
8845
8846 UNBLOCK_INPUT;
8847}
8848
8849
8850/* Set the thumb size and position of scroll bar BAR. We are currently
8851 displaying PORTION out of a whole WHOLE, and our position POSITION. */
8852
8853static void
8854x_set_toolkit_scroll_bar_thumb (bar, portion, position, whole)
8855 struct scroll_bar *bar;
8856 int portion, position, whole;
f451eb13 8857{
e83dc917
GM
8858 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
8859 Widget widget = SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f), bar);
06a2c219 8860 float top, shown;
f451eb13 8861
6f2a7a68
SM
8862 BLOCK_INPUT;
8863
8864#ifdef USE_MOTIF
8865
8866 /* We use an estimate of 30 chars per line rather than the real
8867 `portion' value. This has the disadvantage that the thumb size
8868 is not very representative, but it makes our life a lot easier.
8869 Otherwise, we have to constantly adjust the thumb size, which
8870 we can't always do quickly enough: while dragging, the size of
8871 the thumb might prevent the user from dragging the thumb all the
8872 way to the end. but Motif and some versions of Xaw3d don't allow
8873 updating the thumb size while dragging. Also, even if we can update
8874 its size, the update will often happen too late.
8875 If you don't believe it, check out revision 1.650 of xterm.c to see
8876 what hoops we were going through and the still poor behavior we got. */
8877 portion = XFASTINT (XWINDOW (bar->window)->height) * 30;
8878 /* When the thumb is at the bottom, position == whole.
8879 So we need to increase `whole' to make space for the thumb. */
8880 whole += portion;
8881
8882 if (whole <= 0)
06a2c219
GM
8883 top = 0, shown = 1;
8884 else
f451eb13 8885 {
06a2c219
GM
8886 top = (float) position / whole;
8887 shown = (float) portion / whole;
8888 }
f451eb13 8889
6f2a7a68
SM
8890 if (NILP (bar->dragging))
8891 {
8892 int size, value;
06a2c219 8893
6f2a7a68
SM
8894 /* Slider size. Must be in the range [1 .. MAX - MIN] where MAX
8895 is the scroll bar's maximum and MIN is the scroll bar's minimum
8896 value. */
8897 size = shown * XM_SB_RANGE;
8898 size = min (size, XM_SB_RANGE);
8899 size = max (size, 1);
06a2c219 8900
6f2a7a68
SM
8901 /* Position. Must be in the range [MIN .. MAX - SLIDER_SIZE]. */
8902 value = top * XM_SB_RANGE;
8903 value = min (value, XM_SB_MAX - size);
8904 value = max (value, XM_SB_MIN);
8905
06a2c219 8906 XmScrollBarSetValues (widget, value, size, 0, 0, False);
6f2a7a68 8907 }
ec18280f 8908#else /* !USE_MOTIF i.e. use Xaw */
6f2a7a68
SM
8909
8910 if (whole == 0)
8911 top = 0, shown = 1;
8912 else
8913 {
8914 top = (float) position / whole;
8915 shown = (float) portion / whole;
8916 }
8917
06a2c219 8918 {
ec18280f
SM
8919 float old_top, old_shown;
8920 Dimension height;
8921 XtVaGetValues (widget,
8922 XtNtopOfThumb, &old_top,
8923 XtNshown, &old_shown,
8924 XtNheight, &height,
8925 NULL);
8926
8927 /* Massage the top+shown values. */
8928 if (NILP (bar->dragging) || last_scroll_bar_part == scroll_bar_down_arrow)
8929 top = max (0, min (1, top));
8930 else
8931 top = old_top;
8932 /* Keep two pixels available for moving the thumb down. */
8933 shown = max (0, min (1 - top - (2.0 / height), shown));
06a2c219
GM
8934
8935 /* If the call to XawScrollbarSetThumb below doesn't seem to work,
8936 check that your system's configuration file contains a define
8937 for `NARROWPROTO'. See s/freebsd.h for an example. */
ec18280f 8938 if (top != old_top || shown != old_shown)
eb393530 8939 {
ec18280f 8940 if (NILP (bar->dragging))
eb393530 8941 XawScrollbarSetThumb (widget, top, shown);
06a2c219
GM
8942 else
8943 {
ec18280f
SM
8944#ifdef HAVE_XAW3D
8945 ScrollbarWidget sb = (ScrollbarWidget) widget;
3e71d8f2 8946 int scroll_mode = 0;
ec18280f
SM
8947
8948 /* `scroll_mode' only exists with Xaw3d + ARROW_SCROLLBAR. */
8949 if (xaw3d_arrow_scroll)
8950 {
8951 /* Xaw3d stupidly ignores resize requests while dragging
8952 so we have to make it believe it's not in dragging mode. */
8953 scroll_mode = sb->scrollbar.scroll_mode;
8954 if (scroll_mode == 2)
8955 sb->scrollbar.scroll_mode = 0;
8956 }
8957#endif
8958 /* Try to make the scrolling a tad smoother. */
8959 if (!xaw3d_pick_top)
8960 shown = min (shown, old_shown);
8961
8962 XawScrollbarSetThumb (widget, top, shown);
8963
8964#ifdef HAVE_XAW3D
8965 if (xaw3d_arrow_scroll && scroll_mode == 2)
8966 sb->scrollbar.scroll_mode = scroll_mode;
8967#endif
06a2c219 8968 }
06a2c219
GM
8969 }
8970 }
ec18280f 8971#endif /* !USE_MOTIF */
06a2c219
GM
8972
8973 UNBLOCK_INPUT;
f451eb13
JB
8974}
8975
06a2c219
GM
8976#endif /* USE_TOOLKIT_SCROLL_BARS */
8977
8978
8979\f
8980/************************************************************************
8981 Scroll bars, general
8982 ************************************************************************/
8983
8984/* Create a scroll bar and return the scroll bar vector for it. W is
8985 the Emacs window on which to create the scroll bar. TOP, LEFT,
f7ccf929 8986 WIDTH and HEIGHT are the pixel coordinates and dimensions of the
06a2c219
GM
8987 scroll bar. */
8988
ab648270 8989static struct scroll_bar *
06a2c219
GM
8990x_scroll_bar_create (w, top, left, width, height)
8991 struct window *w;
f451eb13
JB
8992 int top, left, width, height;
8993{
06a2c219 8994 struct frame *f = XFRAME (w->frame);
334208b7
RS
8995 struct scroll_bar *bar
8996 = XSCROLL_BAR (Fmake_vector (make_number (SCROLL_BAR_VEC_SIZE), Qnil));
f451eb13
JB
8997
8998 BLOCK_INPUT;
8999
eccc05db 9000#ifdef USE_TOOLKIT_SCROLL_BARS
06a2c219
GM
9001 x_create_toolkit_scroll_bar (f, bar);
9002#else /* not USE_TOOLKIT_SCROLL_BARS */
f451eb13
JB
9003 {
9004 XSetWindowAttributes a;
9005 unsigned long mask;
5c187dee 9006 Window window;
06a2c219
GM
9007
9008 a.background_pixel = f->output_data.x->scroll_bar_background_pixel;
9009 if (a.background_pixel == -1)
9010 a.background_pixel = f->output_data.x->background_pixel;
9011
12ba150f 9012 a.event_mask = (ButtonPressMask | ButtonReleaseMask
9a572e2a 9013 | ButtonMotionMask | PointerMotionHintMask
12ba150f 9014 | ExposureMask);
7a13e894 9015 a.cursor = FRAME_X_DISPLAY_INFO (f)->vertical_scroll_bar_cursor;
f451eb13 9016
dbc4e1c1 9017 mask = (CWBackPixel | CWEventMask | CWCursor);
f451eb13 9018
06a2c219
GM
9019 /* Clear the area of W that will serve as a scroll bar. This is
9020 for the case that a window has been split horizontally. In
9021 this case, no clear_frame is generated to reduce flickering. */
7b49b9d2
GM
9022 if (width > 0 && height > 0)
9023 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
9024 left, top, width,
9025 window_box_height (w), False);
06a2c219
GM
9026
9027 window = XCreateWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
9028 /* Position and size of scroll bar. */
9029 left + VERTICAL_SCROLL_BAR_WIDTH_TRIM,
9030 top,
9031 width - VERTICAL_SCROLL_BAR_WIDTH_TRIM * 2,
9032 height,
9033 /* Border width, depth, class, and visual. */
9034 0,
9035 CopyFromParent,
9036 CopyFromParent,
9037 CopyFromParent,
9038 /* Attributes. */
9039 mask, &a);
9040 SET_SCROLL_BAR_X_WINDOW (bar, window);
f451eb13 9041 }
06a2c219 9042#endif /* not USE_TOOLKIT_SCROLL_BARS */
f451eb13 9043
06a2c219 9044 XSETWINDOW (bar->window, w);
e0c1aef2
KH
9045 XSETINT (bar->top, top);
9046 XSETINT (bar->left, left);
9047 XSETINT (bar->width, width);
9048 XSETINT (bar->height, height);
9049 XSETINT (bar->start, 0);
9050 XSETINT (bar->end, 0);
12ba150f 9051 bar->dragging = Qnil;
f451eb13
JB
9052
9053 /* Add bar to its frame's list of scroll bars. */
334208b7 9054 bar->next = FRAME_SCROLL_BARS (f);
12ba150f 9055 bar->prev = Qnil;
334208b7 9056 XSETVECTOR (FRAME_SCROLL_BARS (f), bar);
06a2c219 9057 if (!NILP (bar->next))
e0c1aef2 9058 XSETVECTOR (XSCROLL_BAR (bar->next)->prev, bar);
f451eb13 9059
06a2c219 9060 /* Map the window/widget. */
eccc05db 9061#ifdef USE_TOOLKIT_SCROLL_BARS
f964b4d7
GM
9062 {
9063 Widget scroll_bar = SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f), bar);
9064 XtConfigureWidget (scroll_bar,
9065 left + VERTICAL_SCROLL_BAR_WIDTH_TRIM,
9066 top,
9067 width - VERTICAL_SCROLL_BAR_WIDTH_TRIM * 2,
9068 max (height, 1), 0);
9069 XtMapWidget (scroll_bar);
9070 }
06a2c219 9071#else /* not USE_TOOLKIT_SCROLL_BARS */
7f9c7f94 9072 XMapRaised (FRAME_X_DISPLAY (f), SCROLL_BAR_X_WINDOW (bar));
06a2c219 9073#endif /* not USE_TOOLKIT_SCROLL_BARS */
f451eb13
JB
9074
9075 UNBLOCK_INPUT;
12ba150f 9076 return bar;
f451eb13
JB
9077}
9078
06a2c219 9079
12ba150f 9080/* Draw BAR's handle in the proper position.
06a2c219 9081
12ba150f
JB
9082 If the handle is already drawn from START to END, don't bother
9083 redrawing it, unless REBUILD is non-zero; in that case, always
9084 redraw it. (REBUILD is handy for drawing the handle after expose
58769bee 9085 events.)
12ba150f
JB
9086
9087 Normally, we want to constrain the start and end of the handle to
06a2c219
GM
9088 fit inside its rectangle, but if the user is dragging the scroll
9089 bar handle, we want to let them drag it down all the way, so that
9090 the bar's top is as far down as it goes; otherwise, there's no way
9091 to move to the very end of the buffer. */
9092
5c187dee
GM
9093#ifndef USE_TOOLKIT_SCROLL_BARS
9094
f451eb13 9095static void
ab648270
JB
9096x_scroll_bar_set_handle (bar, start, end, rebuild)
9097 struct scroll_bar *bar;
f451eb13 9098 int start, end;
12ba150f 9099 int rebuild;
f451eb13 9100{
12ba150f 9101 int dragging = ! NILP (bar->dragging);
ab648270 9102 Window w = SCROLL_BAR_X_WINDOW (bar);
334208b7 9103 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
7556890b 9104 GC gc = f->output_data.x->normal_gc;
12ba150f
JB
9105
9106 /* If the display is already accurate, do nothing. */
9107 if (! rebuild
9108 && start == XINT (bar->start)
9109 && end == XINT (bar->end))
9110 return;
9111
f451eb13
JB
9112 BLOCK_INPUT;
9113
9114 {
d9cdbb3d
RS
9115 int inside_width = VERTICAL_SCROLL_BAR_INSIDE_WIDTH (f, XINT (bar->width));
9116 int inside_height = VERTICAL_SCROLL_BAR_INSIDE_HEIGHT (f, XINT (bar->height));
9117 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, XINT (bar->height));
f451eb13
JB
9118
9119 /* Make sure the values are reasonable, and try to preserve
9120 the distance between start and end. */
12ba150f
JB
9121 {
9122 int length = end - start;
9123
9124 if (start < 0)
9125 start = 0;
9126 else if (start > top_range)
9127 start = top_range;
9128 end = start + length;
9129
9130 if (end < start)
9131 end = start;
9132 else if (end > top_range && ! dragging)
9133 end = top_range;
9134 }
f451eb13 9135
ab648270 9136 /* Store the adjusted setting in the scroll bar. */
e0c1aef2
KH
9137 XSETINT (bar->start, start);
9138 XSETINT (bar->end, end);
f451eb13 9139
12ba150f
JB
9140 /* Clip the end position, just for display. */
9141 if (end > top_range)
9142 end = top_range;
f451eb13 9143
ab648270 9144 /* Draw bottom positions VERTICAL_SCROLL_BAR_MIN_HANDLE pixels
12ba150f
JB
9145 below top positions, to make sure the handle is always at least
9146 that many pixels tall. */
ab648270 9147 end += VERTICAL_SCROLL_BAR_MIN_HANDLE;
f451eb13 9148
12ba150f
JB
9149 /* Draw the empty space above the handle. Note that we can't clear
9150 zero-height areas; that means "clear to end of window." */
9151 if (0 < start)
c5e6e06b
GM
9152 x_clear_area (FRAME_X_DISPLAY (f), w,
9153 /* x, y, width, height, and exposures. */
9154 VERTICAL_SCROLL_BAR_LEFT_BORDER,
9155 VERTICAL_SCROLL_BAR_TOP_BORDER,
9156 inside_width, start,
9157 False);
f451eb13 9158
06a2c219
GM
9159 /* Change to proper foreground color if one is specified. */
9160 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
9161 XSetForeground (FRAME_X_DISPLAY (f), gc,
9162 f->output_data.x->scroll_bar_foreground_pixel);
9163
12ba150f 9164 /* Draw the handle itself. */
334208b7 9165 XFillRectangle (FRAME_X_DISPLAY (f), w, gc,
12ba150f 9166 /* x, y, width, height */
ab648270
JB
9167 VERTICAL_SCROLL_BAR_LEFT_BORDER,
9168 VERTICAL_SCROLL_BAR_TOP_BORDER + start,
12ba150f 9169 inside_width, end - start);
f451eb13 9170
06a2c219
GM
9171 /* Restore the foreground color of the GC if we changed it above. */
9172 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
9173 XSetForeground (FRAME_X_DISPLAY (f), gc,
9174 f->output_data.x->foreground_pixel);
f451eb13 9175
12ba150f
JB
9176 /* Draw the empty space below the handle. Note that we can't
9177 clear zero-height areas; that means "clear to end of window." */
9178 if (end < inside_height)
c5e6e06b
GM
9179 x_clear_area (FRAME_X_DISPLAY (f), w,
9180 /* x, y, width, height, and exposures. */
9181 VERTICAL_SCROLL_BAR_LEFT_BORDER,
9182 VERTICAL_SCROLL_BAR_TOP_BORDER + end,
9183 inside_width, inside_height - end,
9184 False);
f451eb13 9185
f451eb13
JB
9186 }
9187
f451eb13
JB
9188 UNBLOCK_INPUT;
9189}
9190
5c187dee 9191#endif /* !USE_TOOLKIT_SCROLL_BARS */
f451eb13 9192
06a2c219
GM
9193/* Destroy scroll bar BAR, and set its Emacs window's scroll bar to
9194 nil. */
58769bee 9195
12ba150f 9196static void
ab648270
JB
9197x_scroll_bar_remove (bar)
9198 struct scroll_bar *bar;
12ba150f 9199{
e83dc917 9200 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
12ba150f
JB
9201 BLOCK_INPUT;
9202
eccc05db 9203#ifdef USE_TOOLKIT_SCROLL_BARS
e83dc917
GM
9204 XtDestroyWidget (SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f), bar));
9205#else
9206 XDestroyWindow (FRAME_X_DISPLAY (f), SCROLL_BAR_X_WINDOW (bar));
9207#endif
06a2c219 9208
ab648270
JB
9209 /* Disassociate this scroll bar from its window. */
9210 XWINDOW (bar->window)->vertical_scroll_bar = Qnil;
12ba150f
JB
9211
9212 UNBLOCK_INPUT;
9213}
9214
06a2c219 9215
12ba150f
JB
9216/* Set the handle of the vertical scroll bar for WINDOW to indicate
9217 that we are displaying PORTION characters out of a total of WHOLE
ab648270 9218 characters, starting at POSITION. If WINDOW has no scroll bar,
12ba150f 9219 create one. */
06a2c219 9220
12ba150f 9221static void
06a2c219
GM
9222XTset_vertical_scroll_bar (w, portion, whole, position)
9223 struct window *w;
f451eb13
JB
9224 int portion, whole, position;
9225{
06a2c219 9226 struct frame *f = XFRAME (w->frame);
ab648270 9227 struct scroll_bar *bar;
3c6ede7b 9228 int top, height, left, sb_left, width, sb_width;
06a2c219 9229 int window_x, window_y, window_width, window_height;
06a2c219 9230
3c6ede7b 9231 /* Get window dimensions. */
06a2c219 9232 window_box (w, -1, &window_x, &window_y, &window_width, &window_height);
3c6ede7b
GM
9233 top = window_y;
9234 width = FRAME_SCROLL_BAR_COLS (f) * CANON_X_UNIT (f);
9235 height = window_height;
06a2c219 9236
3c6ede7b 9237 /* Compute the left edge of the scroll bar area. */
06a2c219 9238 if (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (f))
3c6ede7b
GM
9239 left = XINT (w->left) + XINT (w->width) - FRAME_SCROLL_BAR_COLS (f);
9240 else
9241 left = XFASTINT (w->left);
9242 left *= CANON_X_UNIT (f);
9243 left += FRAME_INTERNAL_BORDER_WIDTH (f);
9244
9245 /* Compute the width of the scroll bar which might be less than
9246 the width of the area reserved for the scroll bar. */
9247 if (FRAME_SCROLL_BAR_PIXEL_WIDTH (f) > 0)
9248 sb_width = FRAME_SCROLL_BAR_PIXEL_WIDTH (f);
06a2c219 9249 else
3c6ede7b 9250 sb_width = width;
12ba150f 9251
3c6ede7b
GM
9252 /* Compute the left edge of the scroll bar. */
9253#ifdef USE_TOOLKIT_SCROLL_BARS
9254 if (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (f))
9255 sb_left = left + width - sb_width - (width - sb_width) / 2;
9256 else
9257 sb_left = left + (width - sb_width) / 2;
9258#else
9259 if (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (f))
9260 sb_left = left + width - sb_width;
9261 else
9262 sb_left = left;
9263#endif
9264
ab648270 9265 /* Does the scroll bar exist yet? */
06a2c219 9266 if (NILP (w->vertical_scroll_bar))
3c6ede7b 9267 {
7b49b9d2 9268 if (width > 0 && height > 0)
b547b6e8
GM
9269 {
9270 BLOCK_INPUT;
9271 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
9272 left, top, width, height, False);
9273 UNBLOCK_INPUT;
9274 }
9275
3c6ede7b
GM
9276 bar = x_scroll_bar_create (w, top, sb_left, sb_width, height);
9277 }
f451eb13 9278 else
12ba150f
JB
9279 {
9280 /* It may just need to be moved and resized. */
06a2c219
GM
9281 unsigned int mask = 0;
9282
9283 bar = XSCROLL_BAR (w->vertical_scroll_bar);
9284
9285 BLOCK_INPUT;
9286
3c6ede7b 9287 if (sb_left != XINT (bar->left))
06a2c219 9288 mask |= CWX;
3c6ede7b 9289 if (top != XINT (bar->top))
06a2c219 9290 mask |= CWY;
3c6ede7b 9291 if (sb_width != XINT (bar->width))
06a2c219 9292 mask |= CWWidth;
3c6ede7b 9293 if (height != XINT (bar->height))
06a2c219
GM
9294 mask |= CWHeight;
9295
9296#ifdef USE_TOOLKIT_SCROLL_BARS
fe6f39d9
GM
9297
9298 /* Since toolkit scroll bars are smaller than the space reserved
9299 for them on the frame, we have to clear "under" them. */
7b49b9d2 9300 if (width > 0 && height > 0)
f964b4d7
GM
9301 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
9302 left, top, width, height, False);
06a2c219
GM
9303
9304 /* Move/size the scroll bar widget. */
9305 if (mask)
e83dc917 9306 XtConfigureWidget (SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f), bar),
3c6ede7b
GM
9307 sb_left + VERTICAL_SCROLL_BAR_WIDTH_TRIM,
9308 top,
9309 sb_width - VERTICAL_SCROLL_BAR_WIDTH_TRIM * 2,
f964b4d7 9310 max (height, 1), 0);
06a2c219
GM
9311
9312#else /* not USE_TOOLKIT_SCROLL_BARS */
9313
357e7376
GM
9314 /* Clear areas not covered by the scroll bar because of
9315 VERTICAL_SCROLL_BAR_WIDTH_TRIM. */
e1f6572f
RS
9316 if (VERTICAL_SCROLL_BAR_WIDTH_TRIM)
9317 {
c5e6e06b
GM
9318 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
9319 left, top, VERTICAL_SCROLL_BAR_WIDTH_TRIM,
9320 height, False);
9321 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
9322 left + width - VERTICAL_SCROLL_BAR_WIDTH_TRIM,
9323 top, VERTICAL_SCROLL_BAR_WIDTH_TRIM,
9324 height, False);
e1f6572f 9325 }
357e7376
GM
9326
9327 /* Clear areas not covered by the scroll bar because it's not as
f7ccf929 9328 wide as the area reserved for it. This makes sure a
357e7376
GM
9329 previous mode line display is cleared after C-x 2 C-x 1, for
9330 example. */
9331 {
9332 int area_width = FRAME_SCROLL_BAR_COLS (f) * CANON_X_UNIT (f);
9333 int rest = area_width - sb_width;
38d2af0c
GM
9334 if (rest > 0 && height > 0)
9335 {
9336 if (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (f))
9337 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
9338 left + area_width - rest, top,
9339 rest, height, False);
9340 else
9341 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
9342 left, top, rest, height, False);
9343 }
357e7376 9344 }
06a2c219
GM
9345
9346 /* Move/size the scroll bar window. */
9347 if (mask)
9348 {
9349 XWindowChanges wc;
9350
3c6ede7b
GM
9351 wc.x = sb_left + VERTICAL_SCROLL_BAR_WIDTH_TRIM;
9352 wc.y = top;
9353 wc.width = sb_width - VERTICAL_SCROLL_BAR_WIDTH_TRIM * 2;
9354 wc.height = height;
06a2c219
GM
9355 XConfigureWindow (FRAME_X_DISPLAY (f), SCROLL_BAR_X_WINDOW (bar),
9356 mask, &wc);
9357 }
9358
9359#endif /* not USE_TOOLKIT_SCROLL_BARS */
9360
9361 /* Remember new settings. */
3c6ede7b
GM
9362 XSETINT (bar->left, sb_left);
9363 XSETINT (bar->top, top);
9364 XSETINT (bar->width, sb_width);
9365 XSETINT (bar->height, height);
06a2c219
GM
9366
9367 UNBLOCK_INPUT;
12ba150f 9368 }
f451eb13 9369
eccc05db 9370#ifdef USE_TOOLKIT_SCROLL_BARS
06a2c219
GM
9371 x_set_toolkit_scroll_bar_thumb (bar, portion, position, whole);
9372#else /* not USE_TOOLKIT_SCROLL_BARS */
ab648270 9373 /* Set the scroll bar's current state, unless we're currently being
f451eb13 9374 dragged. */
12ba150f 9375 if (NILP (bar->dragging))
f451eb13 9376 {
92857db0 9377 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, height);
f451eb13 9378
12ba150f 9379 if (whole == 0)
ab648270 9380 x_scroll_bar_set_handle (bar, 0, top_range, 0);
12ba150f
JB
9381 else
9382 {
43f868f5
JB
9383 int start = ((double) position * top_range) / whole;
9384 int end = ((double) (position + portion) * top_range) / whole;
ab648270 9385 x_scroll_bar_set_handle (bar, start, end, 0);
12ba150f 9386 }
f451eb13 9387 }
06a2c219 9388#endif /* not USE_TOOLKIT_SCROLL_BARS */
f451eb13 9389
06a2c219 9390 XSETVECTOR (w->vertical_scroll_bar, bar);
f451eb13
JB
9391}
9392
12ba150f 9393
f451eb13 9394/* The following three hooks are used when we're doing a thorough
ab648270 9395 redisplay of the frame. We don't explicitly know which scroll bars
f451eb13 9396 are going to be deleted, because keeping track of when windows go
12ba150f
JB
9397 away is a real pain - "Can you say set-window-configuration, boys
9398 and girls?" Instead, we just assert at the beginning of redisplay
ab648270 9399 that *all* scroll bars are to be removed, and then save a scroll bar
12ba150f 9400 from the fiery pit when we actually redisplay its window. */
f451eb13 9401
ab648270
JB
9402/* Arrange for all scroll bars on FRAME to be removed at the next call
9403 to `*judge_scroll_bars_hook'. A scroll bar may be spared if
06a2c219
GM
9404 `*redeem_scroll_bar_hook' is applied to its window before the judgment. */
9405
58769bee 9406static void
ab648270 9407XTcondemn_scroll_bars (frame)
f451eb13
JB
9408 FRAME_PTR frame;
9409{
f9e24cb9
RS
9410 /* Transfer all the scroll bars to FRAME_CONDEMNED_SCROLL_BARS. */
9411 while (! NILP (FRAME_SCROLL_BARS (frame)))
9412 {
9413 Lisp_Object bar;
9414 bar = FRAME_SCROLL_BARS (frame);
9415 FRAME_SCROLL_BARS (frame) = XSCROLL_BAR (bar)->next;
9416 XSCROLL_BAR (bar)->next = FRAME_CONDEMNED_SCROLL_BARS (frame);
9417 XSCROLL_BAR (bar)->prev = Qnil;
9418 if (! NILP (FRAME_CONDEMNED_SCROLL_BARS (frame)))
9419 XSCROLL_BAR (FRAME_CONDEMNED_SCROLL_BARS (frame))->prev = bar;
9420 FRAME_CONDEMNED_SCROLL_BARS (frame) = bar;
9421 }
f451eb13
JB
9422}
9423
fa2dfc30 9424
06a2c219 9425/* Un-mark WINDOW's scroll bar for deletion in this judgment cycle.
12ba150f 9426 Note that WINDOW isn't necessarily condemned at all. */
fa2dfc30 9427
f451eb13 9428static void
ab648270 9429XTredeem_scroll_bar (window)
12ba150f 9430 struct window *window;
f451eb13 9431{
ab648270 9432 struct scroll_bar *bar;
fa2dfc30 9433 struct frame *f;
12ba150f 9434
ab648270
JB
9435 /* We can't redeem this window's scroll bar if it doesn't have one. */
9436 if (NILP (window->vertical_scroll_bar))
12ba150f
JB
9437 abort ();
9438
ab648270 9439 bar = XSCROLL_BAR (window->vertical_scroll_bar);
12ba150f
JB
9440
9441 /* Unlink it from the condemned list. */
fa2dfc30
GM
9442 f = XFRAME (WINDOW_FRAME (window));
9443 if (NILP (bar->prev))
9444 {
9445 /* If the prev pointer is nil, it must be the first in one of
9446 the lists. */
9447 if (EQ (FRAME_SCROLL_BARS (f), window->vertical_scroll_bar))
9448 /* It's not condemned. Everything's fine. */
9449 return;
9450 else if (EQ (FRAME_CONDEMNED_SCROLL_BARS (f),
9451 window->vertical_scroll_bar))
9452 FRAME_CONDEMNED_SCROLL_BARS (f) = bar->next;
9453 else
9454 /* If its prev pointer is nil, it must be at the front of
9455 one or the other! */
9456 abort ();
9457 }
9458 else
9459 XSCROLL_BAR (bar->prev)->next = bar->next;
12ba150f 9460
fa2dfc30
GM
9461 if (! NILP (bar->next))
9462 XSCROLL_BAR (bar->next)->prev = bar->prev;
12ba150f 9463
fa2dfc30
GM
9464 bar->next = FRAME_SCROLL_BARS (f);
9465 bar->prev = Qnil;
9466 XSETVECTOR (FRAME_SCROLL_BARS (f), bar);
9467 if (! NILP (bar->next))
9468 XSETVECTOR (XSCROLL_BAR (bar->next)->prev, bar);
f451eb13
JB
9469}
9470
ab648270
JB
9471/* Remove all scroll bars on FRAME that haven't been saved since the
9472 last call to `*condemn_scroll_bars_hook'. */
06a2c219 9473
f451eb13 9474static void
ab648270 9475XTjudge_scroll_bars (f)
12ba150f 9476 FRAME_PTR f;
f451eb13 9477{
12ba150f 9478 Lisp_Object bar, next;
f451eb13 9479
ab648270 9480 bar = FRAME_CONDEMNED_SCROLL_BARS (f);
cf7cb199
JB
9481
9482 /* Clear out the condemned list now so we won't try to process any
ab648270
JB
9483 more events on the hapless scroll bars. */
9484 FRAME_CONDEMNED_SCROLL_BARS (f) = Qnil;
cf7cb199
JB
9485
9486 for (; ! NILP (bar); bar = next)
f451eb13 9487 {
ab648270 9488 struct scroll_bar *b = XSCROLL_BAR (bar);
12ba150f 9489
ab648270 9490 x_scroll_bar_remove (b);
12ba150f
JB
9491
9492 next = b->next;
9493 b->next = b->prev = Qnil;
f451eb13 9494 }
12ba150f 9495
ab648270 9496 /* Now there should be no references to the condemned scroll bars,
12ba150f 9497 and they should get garbage-collected. */
f451eb13
JB
9498}
9499
9500
06a2c219
GM
9501/* Handle an Expose or GraphicsExpose event on a scroll bar. This
9502 is a no-op when using toolkit scroll bars.
ab648270
JB
9503
9504 This may be called from a signal handler, so we have to ignore GC
9505 mark bits. */
06a2c219 9506
f451eb13 9507static void
ab648270
JB
9508x_scroll_bar_expose (bar, event)
9509 struct scroll_bar *bar;
f451eb13
JB
9510 XEvent *event;
9511{
06a2c219
GM
9512#ifndef USE_TOOLKIT_SCROLL_BARS
9513
ab648270 9514 Window w = SCROLL_BAR_X_WINDOW (bar);
334208b7 9515 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
7556890b 9516 GC gc = f->output_data.x->normal_gc;
3cbd2e0b 9517 int width_trim = VERTICAL_SCROLL_BAR_WIDTH_TRIM;
12ba150f 9518
f451eb13
JB
9519 BLOCK_INPUT;
9520
ab648270 9521 x_scroll_bar_set_handle (bar, XINT (bar->start), XINT (bar->end), 1);
f451eb13 9522
06a2c219 9523 /* Draw a one-pixel border just inside the edges of the scroll bar. */
334208b7 9524 XDrawRectangle (FRAME_X_DISPLAY (f), w, gc,
f451eb13
JB
9525
9526 /* x, y, width, height */
d9cdbb3d 9527 0, 0,
3cbd2e0b 9528 XINT (bar->width) - 1 - width_trim - width_trim,
d9cdbb3d
RS
9529 XINT (bar->height) - 1);
9530
f451eb13 9531 UNBLOCK_INPUT;
06a2c219
GM
9532
9533#endif /* not USE_TOOLKIT_SCROLL_BARS */
f451eb13
JB
9534}
9535
ab648270
JB
9536/* Handle a mouse click on the scroll bar BAR. If *EMACS_EVENT's kind
9537 is set to something other than no_event, it is enqueued.
9538
9539 This may be called from a signal handler, so we have to ignore GC
9540 mark bits. */
06a2c219 9541
5c187dee
GM
9542#ifndef USE_TOOLKIT_SCROLL_BARS
9543
f451eb13 9544static void
ab648270
JB
9545x_scroll_bar_handle_click (bar, event, emacs_event)
9546 struct scroll_bar *bar;
f451eb13
JB
9547 XEvent *event;
9548 struct input_event *emacs_event;
9549{
0299d313 9550 if (! GC_WINDOWP (bar->window))
12ba150f
JB
9551 abort ();
9552
ab648270 9553 emacs_event->kind = scroll_bar_click;
69388238 9554 emacs_event->code = event->xbutton.button - Button1;
0299d313
RS
9555 emacs_event->modifiers
9556 = (x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO
9557 (XFRAME (WINDOW_FRAME (XWINDOW (bar->window)))),
9558 event->xbutton.state)
9559 | (event->type == ButtonRelease
9560 ? up_modifier
9561 : down_modifier));
12ba150f 9562 emacs_event->frame_or_window = bar->window;
0f8aabe9 9563 emacs_event->arg = Qnil;
f451eb13 9564 emacs_event->timestamp = event->xbutton.time;
12ba150f 9565 {
06a2c219 9566#if 0
d9cdbb3d 9567 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
0299d313 9568 int internal_height
d9cdbb3d 9569 = VERTICAL_SCROLL_BAR_INSIDE_HEIGHT (f, XINT (bar->height));
06a2c219 9570#endif
0299d313 9571 int top_range
d9cdbb3d 9572 = VERTICAL_SCROLL_BAR_TOP_RANGE (f, XINT (bar->height));
ab648270 9573 int y = event->xbutton.y - VERTICAL_SCROLL_BAR_TOP_BORDER;
12ba150f
JB
9574
9575 if (y < 0) y = 0;
9576 if (y > top_range) y = top_range;
9577
9578 if (y < XINT (bar->start))
ab648270
JB
9579 emacs_event->part = scroll_bar_above_handle;
9580 else if (y < XINT (bar->end) + VERTICAL_SCROLL_BAR_MIN_HANDLE)
9581 emacs_event->part = scroll_bar_handle;
12ba150f 9582 else
ab648270 9583 emacs_event->part = scroll_bar_below_handle;
929787e1
JB
9584
9585 /* Just because the user has clicked on the handle doesn't mean
5116f055
JB
9586 they want to drag it. Lisp code needs to be able to decide
9587 whether or not we're dragging. */
929787e1 9588#if 0
12ba150f
JB
9589 /* If the user has just clicked on the handle, record where they're
9590 holding it. */
9591 if (event->type == ButtonPress
ab648270 9592 && emacs_event->part == scroll_bar_handle)
e0c1aef2 9593 XSETINT (bar->dragging, y - XINT (bar->start));
929787e1 9594#endif
12ba150f
JB
9595
9596 /* If the user has released the handle, set it to its final position. */
9597 if (event->type == ButtonRelease
9598 && ! NILP (bar->dragging))
9599 {
9600 int new_start = y - XINT (bar->dragging);
9601 int new_end = new_start + (XINT (bar->end) - XINT (bar->start));
f451eb13 9602
ab648270 9603 x_scroll_bar_set_handle (bar, new_start, new_end, 0);
12ba150f
JB
9604 bar->dragging = Qnil;
9605 }
f451eb13 9606
5116f055
JB
9607 /* Same deal here as the other #if 0. */
9608#if 0
58769bee 9609 /* Clicks on the handle are always reported as occurring at the top of
12ba150f 9610 the handle. */
ab648270 9611 if (emacs_event->part == scroll_bar_handle)
12ba150f
JB
9612 emacs_event->x = bar->start;
9613 else
e0c1aef2 9614 XSETINT (emacs_event->x, y);
5116f055 9615#else
e0c1aef2 9616 XSETINT (emacs_event->x, y);
5116f055 9617#endif
f451eb13 9618
e0c1aef2 9619 XSETINT (emacs_event->y, top_range);
12ba150f
JB
9620 }
9621}
f451eb13 9622
ab648270
JB
9623/* Handle some mouse motion while someone is dragging the scroll bar.
9624
9625 This may be called from a signal handler, so we have to ignore GC
9626 mark bits. */
06a2c219 9627
f451eb13 9628static void
ab648270
JB
9629x_scroll_bar_note_movement (bar, event)
9630 struct scroll_bar *bar;
f451eb13
JB
9631 XEvent *event;
9632{
39d8bb4d
KH
9633 FRAME_PTR f = XFRAME (XWINDOW (bar->window)->frame);
9634
f451eb13
JB
9635 last_mouse_movement_time = event->xmotion.time;
9636
39d8bb4d 9637 f->mouse_moved = 1;
e0c1aef2 9638 XSETVECTOR (last_mouse_scroll_bar, bar);
f451eb13
JB
9639
9640 /* If we're dragging the bar, display it. */
ab648270 9641 if (! GC_NILP (bar->dragging))
f451eb13
JB
9642 {
9643 /* Where should the handle be now? */
12ba150f 9644 int new_start = event->xmotion.y - XINT (bar->dragging);
f451eb13 9645
12ba150f 9646 if (new_start != XINT (bar->start))
f451eb13 9647 {
12ba150f 9648 int new_end = new_start + (XINT (bar->end) - XINT (bar->start));
58769bee 9649
ab648270 9650 x_scroll_bar_set_handle (bar, new_start, new_end, 0);
f451eb13
JB
9651 }
9652 }
f451eb13
JB
9653}
9654
5c187dee
GM
9655#endif /* !USE_TOOLKIT_SCROLL_BARS */
9656
12ba150f 9657/* Return information to the user about the current position of the mouse
ab648270 9658 on the scroll bar. */
06a2c219 9659
12ba150f 9660static void
334208b7
RS
9661x_scroll_bar_report_motion (fp, bar_window, part, x, y, time)
9662 FRAME_PTR *fp;
12ba150f 9663 Lisp_Object *bar_window;
ab648270 9664 enum scroll_bar_part *part;
12ba150f
JB
9665 Lisp_Object *x, *y;
9666 unsigned long *time;
9667{
ab648270 9668 struct scroll_bar *bar = XSCROLL_BAR (last_mouse_scroll_bar);
334208b7
RS
9669 Window w = SCROLL_BAR_X_WINDOW (bar);
9670 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
12ba150f 9671 int win_x, win_y;
559cb2fb
JB
9672 Window dummy_window;
9673 int dummy_coord;
9674 unsigned int dummy_mask;
12ba150f 9675
cf7cb199
JB
9676 BLOCK_INPUT;
9677
ab648270 9678 /* Get the mouse's position relative to the scroll bar window, and
12ba150f 9679 report that. */
334208b7 9680 if (! XQueryPointer (FRAME_X_DISPLAY (f), w,
12ba150f 9681
559cb2fb
JB
9682 /* Root, child, root x and root y. */
9683 &dummy_window, &dummy_window,
9684 &dummy_coord, &dummy_coord,
12ba150f 9685
559cb2fb
JB
9686 /* Position relative to scroll bar. */
9687 &win_x, &win_y,
12ba150f 9688
559cb2fb
JB
9689 /* Mouse buttons and modifier keys. */
9690 &dummy_mask))
7a13e894 9691 ;
559cb2fb
JB
9692 else
9693 {
06a2c219 9694#if 0
559cb2fb 9695 int inside_height
d9cdbb3d 9696 = VERTICAL_SCROLL_BAR_INSIDE_HEIGHT (f, XINT (bar->height));
06a2c219 9697#endif
559cb2fb 9698 int top_range
d9cdbb3d 9699 = VERTICAL_SCROLL_BAR_TOP_RANGE (f, XINT (bar->height));
559cb2fb
JB
9700
9701 win_y -= VERTICAL_SCROLL_BAR_TOP_BORDER;
9702
9703 if (! NILP (bar->dragging))
9704 win_y -= XINT (bar->dragging);
9705
9706 if (win_y < 0)
9707 win_y = 0;
9708 if (win_y > top_range)
9709 win_y = top_range;
9710
334208b7 9711 *fp = f;
7a13e894 9712 *bar_window = bar->window;
559cb2fb
JB
9713
9714 if (! NILP (bar->dragging))
9715 *part = scroll_bar_handle;
9716 else if (win_y < XINT (bar->start))
9717 *part = scroll_bar_above_handle;
9718 else if (win_y < XINT (bar->end) + VERTICAL_SCROLL_BAR_MIN_HANDLE)
9719 *part = scroll_bar_handle;
9720 else
9721 *part = scroll_bar_below_handle;
12ba150f 9722
e0c1aef2
KH
9723 XSETINT (*x, win_y);
9724 XSETINT (*y, top_range);
12ba150f 9725
39d8bb4d 9726 f->mouse_moved = 0;
559cb2fb
JB
9727 last_mouse_scroll_bar = Qnil;
9728 }
12ba150f 9729
559cb2fb 9730 *time = last_mouse_movement_time;
cf7cb199 9731
cf7cb199 9732 UNBLOCK_INPUT;
12ba150f
JB
9733}
9734
f451eb13 9735
dbc4e1c1 9736/* The screen has been cleared so we may have changed foreground or
ab648270
JB
9737 background colors, and the scroll bars may need to be redrawn.
9738 Clear out the scroll bars, and ask for expose events, so we can
dbc4e1c1
JB
9739 redraw them. */
9740
dfcf069d 9741void
ab648270 9742x_scroll_bar_clear (f)
dbc4e1c1
JB
9743 FRAME_PTR f;
9744{
06a2c219 9745#ifndef USE_TOOLKIT_SCROLL_BARS
dbc4e1c1
JB
9746 Lisp_Object bar;
9747
b80c363e
RS
9748 /* We can have scroll bars even if this is 0,
9749 if we just turned off scroll bar mode.
9750 But in that case we should not clear them. */
9751 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
9752 for (bar = FRAME_SCROLL_BARS (f); VECTORP (bar);
9753 bar = XSCROLL_BAR (bar)->next)
c5e6e06b
GM
9754 XClearArea (FRAME_X_DISPLAY (f),
9755 SCROLL_BAR_X_WINDOW (XSCROLL_BAR (bar)),
b80c363e 9756 0, 0, 0, 0, True);
06a2c219 9757#endif /* not USE_TOOLKIT_SCROLL_BARS */
dbc4e1c1
JB
9758}
9759
06a2c219 9760/* This processes Expose events from the menu-bar specific X event
19126e11 9761 loop in xmenu.c. This allows to redisplay the frame if necessary
06a2c219 9762 when handling menu-bar or pop-up items. */
3afe33e7 9763
06a2c219 9764int
3afe33e7
RS
9765process_expose_from_menu (event)
9766 XEvent event;
9767{
9768 FRAME_PTR f;
19126e11 9769 struct x_display_info *dpyinfo;
06a2c219 9770 int frame_exposed_p = 0;
3afe33e7 9771
f94397b5
KH
9772 BLOCK_INPUT;
9773
19126e11
KH
9774 dpyinfo = x_display_info_for_display (event.xexpose.display);
9775 f = x_window_to_frame (dpyinfo, event.xexpose.window);
3afe33e7
RS
9776 if (f)
9777 {
9778 if (f->async_visible == 0)
9779 {
9780 f->async_visible = 1;
9781 f->async_iconified = 0;
06c488fd 9782 f->output_data.x->has_been_visible = 1;
3afe33e7
RS
9783 SET_FRAME_GARBAGED (f);
9784 }
9785 else
9786 {
06a2c219
GM
9787 expose_frame (x_window_to_frame (dpyinfo, event.xexpose.window),
9788 event.xexpose.x, event.xexpose.y,
9789 event.xexpose.width, event.xexpose.height);
9790 frame_exposed_p = 1;
3afe33e7
RS
9791 }
9792 }
9793 else
9794 {
9795 struct scroll_bar *bar
9796 = x_window_to_scroll_bar (event.xexpose.window);
58769bee 9797
3afe33e7
RS
9798 if (bar)
9799 x_scroll_bar_expose (bar, &event);
9800 }
f94397b5
KH
9801
9802 UNBLOCK_INPUT;
06a2c219 9803 return frame_exposed_p;
3afe33e7 9804}
09756a85
RS
9805\f
9806/* Define a queue to save up SelectionRequest events for later handling. */
9807
9808struct selection_event_queue
9809 {
9810 XEvent event;
9811 struct selection_event_queue *next;
9812 };
9813
9814static struct selection_event_queue *queue;
9815
9816/* Nonzero means queue up certain events--don't process them yet. */
06a2c219 9817
09756a85
RS
9818static int x_queue_selection_requests;
9819
9820/* Queue up an X event *EVENT, to be processed later. */
dbc4e1c1 9821
09756a85 9822static void
334208b7
RS
9823x_queue_event (f, event)
9824 FRAME_PTR f;
09756a85
RS
9825 XEvent *event;
9826{
9827 struct selection_event_queue *queue_tmp
06a2c219 9828 = (struct selection_event_queue *) xmalloc (sizeof (struct selection_event_queue));
09756a85 9829
58769bee 9830 if (queue_tmp != NULL)
09756a85
RS
9831 {
9832 queue_tmp->event = *event;
9833 queue_tmp->next = queue;
9834 queue = queue_tmp;
9835 }
9836}
9837
9838/* Take all the queued events and put them back
9839 so that they get processed afresh. */
9840
9841static void
db3906fd
RS
9842x_unqueue_events (display)
9843 Display *display;
09756a85 9844{
58769bee 9845 while (queue != NULL)
09756a85
RS
9846 {
9847 struct selection_event_queue *queue_tmp = queue;
db3906fd 9848 XPutBackEvent (display, &queue_tmp->event);
09756a85 9849 queue = queue_tmp->next;
06a2c219 9850 xfree ((char *)queue_tmp);
09756a85
RS
9851 }
9852}
9853
9854/* Start queuing SelectionRequest events. */
9855
9856void
db3906fd
RS
9857x_start_queuing_selection_requests (display)
9858 Display *display;
09756a85
RS
9859{
9860 x_queue_selection_requests++;
9861}
9862
9863/* Stop queuing SelectionRequest events. */
9864
9865void
db3906fd
RS
9866x_stop_queuing_selection_requests (display)
9867 Display *display;
09756a85
RS
9868{
9869 x_queue_selection_requests--;
db3906fd 9870 x_unqueue_events (display);
09756a85 9871}
f451eb13
JB
9872\f
9873/* The main X event-reading loop - XTread_socket. */
dc6f92b8 9874
042c33d3 9875#if 0
06a2c219 9876/* Time stamp of enter window event. This is only used by XTread_socket,
dc6f92b8
JB
9877 but we have to put it out here, since static variables within functions
9878 sometimes don't work. */
06a2c219 9879
dc6f92b8 9880static Time enter_timestamp;
042c33d3 9881#endif
dc6f92b8 9882
11edeb03 9883/* This holds the state XLookupString needs to implement dead keys
58769bee 9884 and other tricks known as "compose processing". _X Window System_
11edeb03
JB
9885 says that a portable program can't use this, but Stephen Gildea assures
9886 me that letting the compiler initialize it to zeros will work okay.
9887
9888 This must be defined outside of XTread_socket, for the same reasons
f7d40b3b 9889 given for enter_timestamp, above. */
06a2c219 9890
11edeb03
JB
9891static XComposeStatus compose_status;
9892
10e6549c
RS
9893/* Record the last 100 characters stored
9894 to help debug the loss-of-chars-during-GC problem. */
06a2c219 9895
2224b905
RS
9896static int temp_index;
9897static short temp_buffer[100];
10e6549c 9898
7a13e894
RS
9899/* Set this to nonzero to fake an "X I/O error"
9900 on a particular display. */
06a2c219 9901
7a13e894
RS
9902struct x_display_info *XTread_socket_fake_io_error;
9903
2224b905
RS
9904/* When we find no input here, we occasionally do a no-op command
9905 to verify that the X server is still running and we can still talk with it.
9906 We try all the open displays, one by one.
9907 This variable is used for cycling thru the displays. */
06a2c219 9908
2224b905
RS
9909static struct x_display_info *next_noop_dpyinfo;
9910
06a2c219
GM
9911#define SET_SAVED_MENU_EVENT(size) \
9912 do \
9913 { \
9914 if (f->output_data.x->saved_menu_event == 0) \
9915 f->output_data.x->saved_menu_event \
9916 = (XEvent *) xmalloc (sizeof (XEvent)); \
9917 bcopy (&event, f->output_data.x->saved_menu_event, size); \
9918 if (numchars >= 1) \
9919 { \
9920 bufp->kind = menu_bar_activate_event; \
9921 XSETFRAME (bufp->frame_or_window, f); \
0f8aabe9 9922 bufp->arg = Qnil; \
06a2c219
GM
9923 bufp++; \
9924 count++; \
9925 numchars--; \
9926 } \
9927 } \
9928 while (0)
9929
8805890a 9930#define SET_SAVED_BUTTON_EVENT SET_SAVED_MENU_EVENT (sizeof (XButtonEvent))
06a2c219 9931#define SET_SAVED_KEY_EVENT SET_SAVED_MENU_EVENT (sizeof (XKeyEvent))
8805890a 9932
dc6f92b8
JB
9933/* Read events coming from the X server.
9934 This routine is called by the SIGIO handler.
9935 We return as soon as there are no more events to be read.
9936
9937 Events representing keys are stored in buffer BUFP,
9938 which can hold up to NUMCHARS characters.
9939 We return the number of characters stored into the buffer,
9940 thus pretending to be `read'.
9941
dc6f92b8
JB
9942 EXPECTED is nonzero if the caller knows input is available. */
9943
6f2a7a68 9944static int
f66868ba 9945XTread_socket (sd, bufp, numchars, expected)
dc6f92b8 9946 register int sd;
8805890a
KH
9947 /* register */ struct input_event *bufp;
9948 /* register */ int numchars;
dc6f92b8
JB
9949 int expected;
9950{
9951 int count = 0;
9952 int nbytes = 0;
dc6f92b8 9953 XEvent event;
f676886a 9954 struct frame *f;
66f55a9d 9955 int event_found = 0;
334208b7 9956 struct x_display_info *dpyinfo;
379b5ac0 9957 struct coding_system coding;
dc6f92b8 9958
9ac0d9e0 9959 if (interrupt_input_blocked)
dc6f92b8 9960 {
9ac0d9e0 9961 interrupt_input_pending = 1;
dc6f92b8
JB
9962 return -1;
9963 }
9964
9ac0d9e0 9965 interrupt_input_pending = 0;
dc6f92b8 9966 BLOCK_INPUT;
c0a04927
RS
9967
9968 /* So people can tell when we have read the available input. */
9969 input_signal_count++;
9970
dc6f92b8 9971 if (numchars <= 0)
06a2c219 9972 abort (); /* Don't think this happens. */
dc6f92b8 9973
bde5503b
GM
9974 ++handling_signal;
9975
379b5ac0
KH
9976 /* The input should be decoded if it is from XIM. Currently the
9977 locale of XIM is the same as that of the system. So, we can use
9978 Vlocale_coding_system which is initialized properly at Emacs
9979 startup time. */
9980 setup_coding_system (Vlocale_coding_system, &coding);
9981 coding.src_multibyte = 0;
9982 coding.dst_multibyte = 1;
9983 /* The input is converted to events, thus we can't handle
9984 composition. Anyway, there's no XIM that gives us composition
9985 information. */
9986 coding.composing = COMPOSITION_DISABLED;
9987
7a13e894
RS
9988 /* Find the display we are supposed to read input for.
9989 It's the one communicating on descriptor SD. */
9990 for (dpyinfo = x_display_list; dpyinfo; dpyinfo = dpyinfo->next)
9991 {
9992#if 0 /* This ought to be unnecessary; let's verify it. */
dc6f92b8 9993#ifdef FIOSNBIO
7a13e894
RS
9994 /* If available, Xlib uses FIOSNBIO to make the socket
9995 non-blocking, and then looks for EWOULDBLOCK. If O_NDELAY is set,
e6cbea31 9996 FIOSNBIO is ignored, and instead of signaling EWOULDBLOCK,
06a2c219 9997 a read returns 0, which Xlib interprets as equivalent to EPIPE. */
7a13e894 9998 fcntl (dpyinfo->connection, F_SETFL, 0);
c118dd06 9999#endif /* ! defined (FIOSNBIO) */
7a13e894 10000#endif
dc6f92b8 10001
7a13e894
RS
10002#if 0 /* This code can't be made to work, with multiple displays,
10003 and appears not to be used on any system any more.
10004 Also keyboard.c doesn't turn O_NDELAY on and off
10005 for X connections. */
dc6f92b8
JB
10006#ifndef SIGIO
10007#ifndef HAVE_SELECT
7a13e894
RS
10008 if (! (fcntl (dpyinfo->connection, F_GETFL, 0) & O_NDELAY))
10009 {
10010 extern int read_alarm_should_throw;
10011 read_alarm_should_throw = 1;
10012 XPeekEvent (dpyinfo->display, &event);
10013 read_alarm_should_throw = 0;
10014 }
c118dd06
JB
10015#endif /* HAVE_SELECT */
10016#endif /* SIGIO */
7a13e894 10017#endif
dc6f92b8 10018
7a13e894
RS
10019 /* For debugging, this gives a way to fake an I/O error. */
10020 if (dpyinfo == XTread_socket_fake_io_error)
10021 {
10022 XTread_socket_fake_io_error = 0;
10023 x_io_error_quitter (dpyinfo->display);
10024 }
dc6f92b8 10025
5f30b957
JD
10026#ifdef HAVE_X_SM
10027 BLOCK_INPUT;
10028 count += x_session_check_input (bufp, &numchars);
10029 UNBLOCK_INPUT;
10030#endif
10031
06a2c219 10032 while (XPending (dpyinfo->display))
dc6f92b8 10033 {
7a13e894 10034 XNextEvent (dpyinfo->display, &event);
06a2c219 10035
531483fb 10036#ifdef HAVE_X_I18N
d1bc4182 10037 {
f2be1146
GM
10038 /* Filter events for the current X input method.
10039 XFilterEvent returns non-zero if the input method has
10040 consumed the event. We pass the frame's X window to
10041 XFilterEvent because that's the one for which the IC
10042 was created. */
f5d11644
GM
10043 struct frame *f1 = x_any_window_to_frame (dpyinfo,
10044 event.xclient.window);
10045 if (XFilterEvent (&event, f1 ? FRAME_X_WINDOW (f1) : None))
d1bc4182
RS
10046 break;
10047 }
0cd6403b 10048#endif
7a13e894
RS
10049 event_found = 1;
10050
10051 switch (event.type)
10052 {
10053 case ClientMessage:
c047688c 10054 {
7a13e894
RS
10055 if (event.xclient.message_type
10056 == dpyinfo->Xatom_wm_protocols
10057 && event.xclient.format == 32)
c047688c 10058 {
7a13e894
RS
10059 if (event.xclient.data.l[0]
10060 == dpyinfo->Xatom_wm_take_focus)
c047688c 10061 {
8c1a6a84
RS
10062 /* Use x_any_window_to_frame because this
10063 could be the shell widget window
10064 if the frame has no title bar. */
10065 f = x_any_window_to_frame (dpyinfo, event.xclient.window);
6c183ba5
RS
10066#ifdef HAVE_X_I18N
10067 /* Not quite sure this is needed -pd */
8c1a6a84 10068 if (f && FRAME_XIC (f))
6c183ba5
RS
10069 XSetICFocus (FRAME_XIC (f));
10070#endif
f1da8f06
GM
10071#if 0 /* Emacs sets WM hints whose `input' field is `true'. This
10072 instructs the WM to set the input focus automatically for
10073 Emacs with a call to XSetInputFocus. Setting WM_TAKE_FOCUS
10074 tells the WM to send us a ClientMessage WM_TAKE_FOCUS after
10075 it has set the focus. So, XSetInputFocus below is not
10076 needed.
10077
10078 The call to XSetInputFocus below has also caused trouble. In
10079 cases where the XSetInputFocus done by the WM and the one
10080 below are temporally close (on a fast machine), the call
10081 below can generate additional FocusIn events which confuse
10082 Emacs. */
10083
bf7253f4
RS
10084 /* Since we set WM_TAKE_FOCUS, we must call
10085 XSetInputFocus explicitly. But not if f is null,
10086 since that might be an event for a deleted frame. */
7a13e894 10087 if (f)
bf7253f4
RS
10088 {
10089 Display *d = event.xclient.display;
10090 /* Catch and ignore errors, in case window has been
10091 iconified by a window manager such as GWM. */
10092 int count = x_catch_errors (d);
10093 XSetInputFocus (d, event.xclient.window,
e1f6572f
RS
10094 /* The ICCCM says this is
10095 the only valid choice. */
10096 RevertToParent,
bf7253f4
RS
10097 event.xclient.data.l[1]);
10098 /* This is needed to detect the error
10099 if there is an error. */
10100 XSync (d, False);
10101 x_uncatch_errors (d, count);
10102 }
7a13e894 10103 /* Not certain about handling scroll bars here */
f1da8f06 10104#endif /* 0 */
c047688c 10105 }
7a13e894
RS
10106 else if (event.xclient.data.l[0]
10107 == dpyinfo->Xatom_wm_save_yourself)
10108 {
10109 /* Save state modify the WM_COMMAND property to
06a2c219 10110 something which can reinstate us. This notifies
7a13e894
RS
10111 the session manager, who's looking for such a
10112 PropertyNotify. Can restart processing when
06a2c219 10113 a keyboard or mouse event arrives. */
5f30b957
JD
10114 /* If we have a session manager, don't set this.
10115 KDE will then start two Emacsen, one for the
10116 session manager and one for this. */
10117 if (numchars > 0
10118#ifdef HAVE_X_SM
10119 && ! x_session_have_connection ()
10120#endif
10121 )
7a13e894 10122 {
19126e11
KH
10123 f = x_top_window_to_frame (dpyinfo,
10124 event.xclient.window);
7a13e894
RS
10125 /* This is just so we only give real data once
10126 for a single Emacs process. */
b86bd3dd 10127 if (f == SELECTED_FRAME ())
7a13e894
RS
10128 XSetCommand (FRAME_X_DISPLAY (f),
10129 event.xclient.window,
10130 initial_argv, initial_argc);
f000f5c5 10131 else if (f)
7a13e894
RS
10132 XSetCommand (FRAME_X_DISPLAY (f),
10133 event.xclient.window,
10134 0, 0);
10135 }
10136 }
10137 else if (event.xclient.data.l[0]
10138 == dpyinfo->Xatom_wm_delete_window)
1fb20991 10139 {
19126e11
KH
10140 struct frame *f
10141 = x_any_window_to_frame (dpyinfo,
10142 event.xclient.window);
1fb20991 10143
7a13e894
RS
10144 if (f)
10145 {
10146 if (numchars == 0)
10147 abort ();
1fb20991 10148
7a13e894
RS
10149 bufp->kind = delete_window_event;
10150 XSETFRAME (bufp->frame_or_window, f);
0f8aabe9 10151 bufp->arg = Qnil;
7a13e894
RS
10152 bufp++;
10153
10154 count += 1;
10155 numchars -= 1;
10156 }
1fb20991 10157 }
c047688c 10158 }
7a13e894
RS
10159 else if (event.xclient.message_type
10160 == dpyinfo->Xatom_wm_configure_denied)
10161 {
10162 }
10163 else if (event.xclient.message_type
10164 == dpyinfo->Xatom_wm_window_moved)
10165 {
10166 int new_x, new_y;
19126e11
KH
10167 struct frame *f
10168 = x_window_to_frame (dpyinfo, event.xclient.window);
58769bee 10169
7a13e894
RS
10170 new_x = event.xclient.data.s[0];
10171 new_y = event.xclient.data.s[1];
1fb20991 10172
7a13e894
RS
10173 if (f)
10174 {
7556890b
RS
10175 f->output_data.x->left_pos = new_x;
10176 f->output_data.x->top_pos = new_y;
7a13e894 10177 }
1fb20991 10178 }
0fdff6bb 10179#ifdef HACK_EDITRES
7a13e894
RS
10180 else if (event.xclient.message_type
10181 == dpyinfo->Xatom_editres)
10182 {
19126e11
KH
10183 struct frame *f
10184 = x_any_window_to_frame (dpyinfo, event.xclient.window);
7556890b 10185 _XEditResCheckMessages (f->output_data.x->widget, NULL,
19126e11 10186 &event, NULL);
7a13e894 10187 }
0fdff6bb 10188#endif /* HACK_EDITRES */
06a2c219
GM
10189 else if ((event.xclient.message_type
10190 == dpyinfo->Xatom_DONE)
10191 || (event.xclient.message_type
10192 == dpyinfo->Xatom_PAGE))
10193 {
10194 /* Ghostview job completed. Kill it. We could
10195 reply with "Next" if we received "Page", but we
10196 currently never do because we are interested in
10197 images, only, which should have 1 page. */
06a2c219
GM
10198 Pixmap pixmap = (Pixmap) event.xclient.data.l[1];
10199 struct frame *f
10200 = x_window_to_frame (dpyinfo, event.xclient.window);
10201 x_kill_gs_process (pixmap, f);
10202 expose_frame (f, 0, 0, 0, 0);
10203 }
10204#ifdef USE_TOOLKIT_SCROLL_BARS
10205 /* Scroll bar callbacks send a ClientMessage from which
10206 we construct an input_event. */
10207 else if (event.xclient.message_type
10208 == dpyinfo->Xatom_Scrollbar)
10209 {
10210 x_scroll_bar_to_input_event (&event, bufp);
10211 ++bufp, ++count, --numchars;
10212 goto out;
10213 }
10214#endif /* USE_TOOLKIT_SCROLL_BARS */
10215 else
10216 goto OTHER;
7a13e894
RS
10217 }
10218 break;
dc6f92b8 10219
7a13e894 10220 case SelectionNotify:
3afe33e7 10221#ifdef USE_X_TOOLKIT
19126e11 10222 if (! x_window_to_frame (dpyinfo, event.xselection.requestor))
7a13e894 10223 goto OTHER;
3afe33e7 10224#endif /* not USE_X_TOOLKIT */
dfcf069d 10225 x_handle_selection_notify (&event.xselection);
7a13e894 10226 break;
d56a553a 10227
06a2c219 10228 case SelectionClear: /* Someone has grabbed ownership. */
3afe33e7 10229#ifdef USE_X_TOOLKIT
19126e11 10230 if (! x_window_to_frame (dpyinfo, event.xselectionclear.window))
7a13e894 10231 goto OTHER;
3afe33e7 10232#endif /* USE_X_TOOLKIT */
7a13e894
RS
10233 {
10234 XSelectionClearEvent *eventp = (XSelectionClearEvent *) &event;
d56a553a 10235
7a13e894
RS
10236 if (numchars == 0)
10237 abort ();
d56a553a 10238
7a13e894
RS
10239 bufp->kind = selection_clear_event;
10240 SELECTION_EVENT_DISPLAY (bufp) = eventp->display;
10241 SELECTION_EVENT_SELECTION (bufp) = eventp->selection;
10242 SELECTION_EVENT_TIME (bufp) = eventp->time;
e6cbea31 10243 bufp->frame_or_window = Qnil;
0f8aabe9 10244 bufp->arg = Qnil;
7a13e894 10245 bufp++;
d56a553a 10246
7a13e894
RS
10247 count += 1;
10248 numchars -= 1;
10249 }
10250 break;
dc6f92b8 10251
06a2c219 10252 case SelectionRequest: /* Someone wants our selection. */
3afe33e7 10253#ifdef USE_X_TOOLKIT
19126e11 10254 if (!x_window_to_frame (dpyinfo, event.xselectionrequest.owner))
7a13e894 10255 goto OTHER;
3afe33e7 10256#endif /* USE_X_TOOLKIT */
7a13e894 10257 if (x_queue_selection_requests)
19126e11 10258 x_queue_event (x_window_to_frame (dpyinfo, event.xselectionrequest.owner),
7a13e894
RS
10259 &event);
10260 else
10261 {
1d2b2268
GM
10262 XSelectionRequestEvent *eventp
10263 = (XSelectionRequestEvent *) &event;
dc6f92b8 10264
7a13e894
RS
10265 if (numchars == 0)
10266 abort ();
10267
10268 bufp->kind = selection_request_event;
10269 SELECTION_EVENT_DISPLAY (bufp) = eventp->display;
10270 SELECTION_EVENT_REQUESTOR (bufp) = eventp->requestor;
10271 SELECTION_EVENT_SELECTION (bufp) = eventp->selection;
10272 SELECTION_EVENT_TARGET (bufp) = eventp->target;
10273 SELECTION_EVENT_PROPERTY (bufp) = eventp->property;
10274 SELECTION_EVENT_TIME (bufp) = eventp->time;
e6cbea31 10275 bufp->frame_or_window = Qnil;
0f8aabe9 10276 bufp->arg = Qnil;
7a13e894
RS
10277 bufp++;
10278
10279 count += 1;
10280 numchars -= 1;
10281 }
10282 break;
10283
10284 case PropertyNotify:
1d2b2268
GM
10285#if 0 /* This is plain wrong. In the case that we are waiting for a
10286 PropertyNotify used as an ACK in incremental selection
10287 transfer, the property will be on the receiver's window. */
10288#if defined USE_X_TOOLKIT
19126e11 10289 if (!x_any_window_to_frame (dpyinfo, event.xproperty.window))
7a13e894 10290 goto OTHER;
1d2b2268
GM
10291#endif
10292#endif
dfcf069d 10293 x_handle_property_notify (&event.xproperty);
1d2b2268 10294 goto OTHER;
dc6f92b8 10295
7a13e894 10296 case ReparentNotify:
19126e11 10297 f = x_top_window_to_frame (dpyinfo, event.xreparent.window);
7a13e894
RS
10298 if (f)
10299 {
10300 int x, y;
7556890b 10301 f->output_data.x->parent_desc = event.xreparent.parent;
7a13e894 10302 x_real_positions (f, &x, &y);
7556890b
RS
10303 f->output_data.x->left_pos = x;
10304 f->output_data.x->top_pos = y;
7a13e894
RS
10305 }
10306 break;
3bd330d4 10307
7a13e894 10308 case Expose:
19126e11 10309 f = x_window_to_frame (dpyinfo, event.xexpose.window);
7a13e894 10310 if (f)
dc6f92b8 10311 {
d0fa3e56
EZ
10312 x_check_fullscreen (f);
10313
7a13e894
RS
10314 if (f->async_visible == 0)
10315 {
10316 f->async_visible = 1;
10317 f->async_iconified = 0;
06c488fd 10318 f->output_data.x->has_been_visible = 1;
7a13e894
RS
10319 SET_FRAME_GARBAGED (f);
10320 }
10321 else
06a2c219
GM
10322 expose_frame (x_window_to_frame (dpyinfo,
10323 event.xexpose.window),
10324 event.xexpose.x, event.xexpose.y,
10325 event.xexpose.width, event.xexpose.height);
dc6f92b8
JB
10326 }
10327 else
7a13e894 10328 {
12949a7f
EZ
10329#ifndef USE_TOOLKIT_SCROLL_BARS
10330 struct scroll_bar *bar;
10331#endif
01f67d2c 10332#if defined USE_LUCID
c95fc5f1
GM
10333 /* Submenus of the Lucid menu bar aren't widgets
10334 themselves, so there's no way to dispatch events
10335 to them. Recognize this case separately. */
10336 {
10337 Widget widget
10338 = x_window_to_menu_bar (event.xexpose.window);
10339 if (widget)
10340 xlwmenu_redisplay (widget);
10341 }
01f67d2c
PJ
10342#endif /* USE_LUCID */
10343
06a2c219
GM
10344#ifdef USE_TOOLKIT_SCROLL_BARS
10345 /* Dispatch event to the widget. */
10346 goto OTHER;
10347#else /* not USE_TOOLKIT_SCROLL_BARS */
12949a7f 10348 bar = x_window_to_scroll_bar (event.xexpose.window);
58769bee 10349
7a13e894
RS
10350 if (bar)
10351 x_scroll_bar_expose (bar, &event);
3afe33e7 10352#ifdef USE_X_TOOLKIT
7a13e894
RS
10353 else
10354 goto OTHER;
3afe33e7 10355#endif /* USE_X_TOOLKIT */
06a2c219 10356#endif /* not USE_TOOLKIT_SCROLL_BARS */
7a13e894
RS
10357 }
10358 break;
dc6f92b8 10359
7a13e894 10360 case GraphicsExpose: /* This occurs when an XCopyArea's
d624284c
PJ
10361 source area was obscured or not
10362 available. */
19126e11 10363 f = x_window_to_frame (dpyinfo, event.xgraphicsexpose.drawable);
7a13e894
RS
10364 if (f)
10365 {
06a2c219
GM
10366 expose_frame (f,
10367 event.xgraphicsexpose.x, event.xgraphicsexpose.y,
10368 event.xgraphicsexpose.width,
10369 event.xgraphicsexpose.height);
7a13e894 10370 }
3afe33e7 10371#ifdef USE_X_TOOLKIT
7a13e894
RS
10372 else
10373 goto OTHER;
3afe33e7 10374#endif /* USE_X_TOOLKIT */
7a13e894 10375 break;
dc6f92b8 10376
7a13e894 10377 case NoExpose: /* This occurs when an XCopyArea's
06a2c219 10378 source area was completely
d624284c 10379 available. */
7a13e894 10380 break;
dc6f92b8 10381
7a13e894 10382 case UnmapNotify:
06a2c219
GM
10383 /* Redo the mouse-highlight after the tooltip has gone. */
10384 if (event.xmap.window == tip_window)
10385 {
10386 tip_window = 0;
10387 redo_mouse_highlight ();
10388 }
10389
91ea2a7a 10390 f = x_top_window_to_frame (dpyinfo, event.xunmap.window);
7a13e894 10391 if (f) /* F may no longer exist if
d624284c 10392 the frame was deleted. */
7a13e894
RS
10393 {
10394 /* While a frame is unmapped, display generation is
10395 disabled; you don't want to spend time updating a
10396 display that won't ever be seen. */
10397 f->async_visible = 0;
10398 /* We can't distinguish, from the event, whether the window
10399 has become iconified or invisible. So assume, if it
10400 was previously visible, than now it is iconified.
1aa6072f
RS
10401 But x_make_frame_invisible clears both
10402 the visible flag and the iconified flag;
10403 and that way, we know the window is not iconified now. */
7a13e894 10404 if (FRAME_VISIBLE_P (f) || FRAME_ICONIFIED_P (f))
1aa6072f
RS
10405 {
10406 f->async_iconified = 1;
bddd097c 10407
1aa6072f
RS
10408 bufp->kind = iconify_event;
10409 XSETFRAME (bufp->frame_or_window, f);
0f8aabe9 10410 bufp->arg = Qnil;
1aa6072f
RS
10411 bufp++;
10412 count++;
10413 numchars--;
10414 }
7a13e894 10415 }
7a13e894 10416 goto OTHER;
dc6f92b8 10417
7a13e894 10418 case MapNotify:
06a2c219
GM
10419 if (event.xmap.window == tip_window)
10420 /* The tooltip has been drawn already. Avoid
10421 the SET_FRAME_GARBAGED below. */
10422 goto OTHER;
10423
10424 /* We use x_top_window_to_frame because map events can
10425 come for sub-windows and they don't mean that the
10426 frame is visible. */
19126e11 10427 f = x_top_window_to_frame (dpyinfo, event.xmap.window);
7a13e894
RS
10428 if (f)
10429 {
10430 f->async_visible = 1;
10431 f->async_iconified = 0;
06c488fd 10432 f->output_data.x->has_been_visible = 1;
dc6f92b8 10433
7a13e894
RS
10434 /* wait_reading_process_input will notice this and update
10435 the frame's display structures. */
10436 SET_FRAME_GARBAGED (f);
bddd097c 10437
d806e720
RS
10438 if (f->iconified)
10439 {
10440 bufp->kind = deiconify_event;
10441 XSETFRAME (bufp->frame_or_window, f);
0f8aabe9 10442 bufp->arg = Qnil;
d806e720
RS
10443 bufp++;
10444 count++;
10445 numchars--;
10446 }
e73ec6fa 10447 else if (! NILP (Vframe_list)
8e713be6 10448 && ! NILP (XCDR (Vframe_list)))
78aa2ba5
KH
10449 /* Force a redisplay sooner or later
10450 to update the frame titles
10451 in case this is the second frame. */
10452 record_asynch_buffer_change ();
7a13e894 10453 }
7a13e894 10454 goto OTHER;
dc6f92b8 10455
7a13e894 10456 case KeyPress:
19126e11 10457 f = x_any_window_to_frame (dpyinfo, event.xkey.window);
f451eb13 10458
66301061
KS
10459 if (!dpyinfo->mouse_face_hidden && INTEGERP (Vmouse_highlight))
10460 {
10461 dpyinfo->mouse_face_hidden = 1;
10462 clear_mouse_face (dpyinfo);
10463 }
10464
eccc05db 10465#if defined USE_MOTIF && defined USE_TOOLKIT_SCROLL_BARS
06a2c219
GM
10466 if (f == 0)
10467 {
2564ea1b
GM
10468 /* Scroll bars consume key events, but we want
10469 the keys to go to the scroll bar's frame. */
06a2c219
GM
10470 Widget widget = XtWindowToWidget (dpyinfo->display,
10471 event.xkey.window);
10472 if (widget && XmIsScrollBar (widget))
10473 {
10474 widget = XtParent (widget);
10475 f = x_any_window_to_frame (dpyinfo, XtWindow (widget));
10476 }
10477 }
eccc05db 10478#endif /* USE_MOTIF and USE_TOOLKIT_SCROLL_BARS */
06a2c219 10479
7a13e894
RS
10480 if (f != 0)
10481 {
10482 KeySym keysym, orig_keysym;
379b5ac0
KH
10483 /* al%imercury@uunet.uu.net says that making this 81
10484 instead of 80 fixed a bug whereby meta chars made
10485 his Emacs hang.
10486
10487 It seems that some version of XmbLookupString has
10488 a bug of not returning XBufferOverflow in
10489 status_return even if the input is too long to
10490 fit in 81 bytes. So, we must prepare sufficient
10491 bytes for copy_buffer. 513 bytes (256 chars for
6c4a22e6 10492 two-byte character set) seems to be a fairly good
379b5ac0
KH
10493 approximation. -- 2000.8.10 handa@etl.go.jp */
10494 unsigned char copy_buffer[513];
10495 unsigned char *copy_bufptr = copy_buffer;
10496 int copy_bufsiz = sizeof (copy_buffer);
7a13e894 10497 int modifiers;
64bb1782 10498
7a13e894
RS
10499 event.xkey.state
10500 |= x_emacs_to_x_modifiers (FRAME_X_DISPLAY_INFO (f),
10501 extra_keyboard_modifiers);
10502 modifiers = event.xkey.state;
3a2712f9 10503
7a13e894 10504 /* This will have to go some day... */
752a043f 10505
7a13e894
RS
10506 /* make_lispy_event turns chars into control chars.
10507 Don't do it here because XLookupString is too eager. */
10508 event.xkey.state &= ~ControlMask;
5d46f928
RS
10509 event.xkey.state &= ~(dpyinfo->meta_mod_mask
10510 | dpyinfo->super_mod_mask
10511 | dpyinfo->hyper_mod_mask
10512 | dpyinfo->alt_mod_mask);
10513
1cf4a0d1
RS
10514 /* In case Meta is ComposeCharacter,
10515 clear its status. According to Markus Ehrnsperger
10516 Markus.Ehrnsperger@lehrstuhl-bross.physik.uni-muenchen.de
10517 this enables ComposeCharacter to work whether or
10518 not it is combined with Meta. */
10519 if (modifiers & dpyinfo->meta_mod_mask)
10520 bzero (&compose_status, sizeof (compose_status));
10521
6c183ba5
RS
10522#ifdef HAVE_X_I18N
10523 if (FRAME_XIC (f))
10524 {
f5d11644
GM
10525 Status status_return;
10526
6c183ba5 10527 nbytes = XmbLookupString (FRAME_XIC (f),
f5d11644
GM
10528 &event.xkey, copy_bufptr,
10529 copy_bufsiz, &keysym,
6c183ba5 10530 &status_return);
f5d11644
GM
10531 if (status_return == XBufferOverflow)
10532 {
10533 copy_bufsiz = nbytes + 1;
10534 copy_bufptr = (char *) alloca (copy_bufsiz);
10535 nbytes = XmbLookupString (FRAME_XIC (f),
10536 &event.xkey, copy_bufptr,
10537 copy_bufsiz, &keysym,
10538 &status_return);
10539 }
10540
1decb680
PE
10541 if (status_return == XLookupNone)
10542 break;
10543 else if (status_return == XLookupChars)
fdd9d55e
GM
10544 {
10545 keysym = NoSymbol;
10546 modifiers = 0;
10547 }
1decb680
PE
10548 else if (status_return != XLookupKeySym
10549 && status_return != XLookupBoth)
10550 abort ();
6c183ba5
RS
10551 }
10552 else
379b5ac0
KH
10553 nbytes = XLookupString (&event.xkey, copy_bufptr,
10554 copy_bufsiz, &keysym,
10555 &compose_status);
6c183ba5 10556#else
379b5ac0
KH
10557 nbytes = XLookupString (&event.xkey, copy_bufptr,
10558 copy_bufsiz, &keysym,
10559 &compose_status);
6c183ba5 10560#endif
dc6f92b8 10561
7a13e894 10562 orig_keysym = keysym;
55123275 10563
7a13e894
RS
10564 if (numchars > 1)
10565 {
10566 if (((keysym >= XK_BackSpace && keysym <= XK_Escape)
10567 || keysym == XK_Delete
1097aea0 10568#ifdef XK_ISO_Left_Tab
441affdb 10569 || (keysym >= XK_ISO_Left_Tab && keysym <= XK_ISO_Enter)
1097aea0 10570#endif
852bff8f 10571 || (keysym >= XK_Kanji && keysym <= XK_Eisu_toggle)
7a13e894
RS
10572 || IsCursorKey (keysym) /* 0xff50 <= x < 0xff60 */
10573 || IsMiscFunctionKey (keysym) /* 0xff60 <= x < VARIES */
c34790e0 10574#ifdef HPUX
7a13e894
RS
10575 /* This recognizes the "extended function keys".
10576 It seems there's no cleaner way.
10577 Test IsModifierKey to avoid handling mode_switch
10578 incorrectly. */
10579 || ((unsigned) (keysym) >= XK_Select
10580 && (unsigned)(keysym) < XK_KP_Space)
69388238
RS
10581#endif
10582#ifdef XK_dead_circumflex
7a13e894 10583 || orig_keysym == XK_dead_circumflex
69388238
RS
10584#endif
10585#ifdef XK_dead_grave
7a13e894 10586 || orig_keysym == XK_dead_grave
69388238
RS
10587#endif
10588#ifdef XK_dead_tilde
7a13e894 10589 || orig_keysym == XK_dead_tilde
69388238
RS
10590#endif
10591#ifdef XK_dead_diaeresis
7a13e894 10592 || orig_keysym == XK_dead_diaeresis
69388238
RS
10593#endif
10594#ifdef XK_dead_macron
7a13e894 10595 || orig_keysym == XK_dead_macron
69388238
RS
10596#endif
10597#ifdef XK_dead_degree
7a13e894 10598 || orig_keysym == XK_dead_degree
69388238
RS
10599#endif
10600#ifdef XK_dead_acute
7a13e894 10601 || orig_keysym == XK_dead_acute
69388238
RS
10602#endif
10603#ifdef XK_dead_cedilla
7a13e894 10604 || orig_keysym == XK_dead_cedilla
69388238
RS
10605#endif
10606#ifdef XK_dead_breve
7a13e894 10607 || orig_keysym == XK_dead_breve
69388238
RS
10608#endif
10609#ifdef XK_dead_ogonek
7a13e894 10610 || orig_keysym == XK_dead_ogonek
69388238
RS
10611#endif
10612#ifdef XK_dead_caron
7a13e894 10613 || orig_keysym == XK_dead_caron
69388238
RS
10614#endif
10615#ifdef XK_dead_doubleacute
7a13e894 10616 || orig_keysym == XK_dead_doubleacute
69388238
RS
10617#endif
10618#ifdef XK_dead_abovedot
7a13e894 10619 || orig_keysym == XK_dead_abovedot
c34790e0 10620#endif
7a13e894
RS
10621 || IsKeypadKey (keysym) /* 0xff80 <= x < 0xffbe */
10622 || IsFunctionKey (keysym) /* 0xffbe <= x < 0xffe1 */
10623 /* Any "vendor-specific" key is ok. */
f0e299de
GM
10624 || (orig_keysym & (1 << 28))
10625 || (keysym != NoSymbol && nbytes == 0))
7a13e894 10626 && ! (IsModifierKey (orig_keysym)
7719aa06
RS
10627#ifndef HAVE_X11R5
10628#ifdef XK_Mode_switch
7a13e894 10629 || ((unsigned)(orig_keysym) == XK_Mode_switch)
7719aa06
RS
10630#endif
10631#ifdef XK_Num_Lock
7a13e894 10632 || ((unsigned)(orig_keysym) == XK_Num_Lock)
7719aa06
RS
10633#endif
10634#endif /* not HAVE_X11R5 */
7ef18d79
EZ
10635 /* The symbols from XK_ISO_Lock to
10636 XK_ISO_Last_Group_Lock doesn't have real
10637 modifiers but should be treated similarly
10638 to Mode_switch by Emacs. */
10639#if defined XK_ISO_Lock && defined XK_ISO_Last_Group_Lock
10640 || ((unsigned)(orig_keysym) >= XK_ISO_Lock
10641 && (unsigned)(orig_keysym) <= XK_ISO_Last_Group_Lock)
10642#endif
7a13e894 10643 ))
dc6f92b8 10644 {
10e6549c
RS
10645 if (temp_index == sizeof temp_buffer / sizeof (short))
10646 temp_index = 0;
7a13e894
RS
10647 temp_buffer[temp_index++] = keysym;
10648 bufp->kind = non_ascii_keystroke;
10649 bufp->code = keysym;
e0c1aef2 10650 XSETFRAME (bufp->frame_or_window, f);
0f8aabe9 10651 bufp->arg = Qnil;
334208b7
RS
10652 bufp->modifiers
10653 = x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO (f),
10654 modifiers);
1113d9db 10655 bufp->timestamp = event.xkey.time;
dc6f92b8 10656 bufp++;
7a13e894
RS
10657 count++;
10658 numchars--;
dc6f92b8 10659 }
7a13e894
RS
10660 else if (numchars > nbytes)
10661 {
10662 register int i;
379b5ac0 10663 register int c;
379b5ac0 10664 int nchars, len;
7a13e894
RS
10665
10666 for (i = 0; i < nbytes; i++)
10667 {
379b5ac0
KH
10668 if (temp_index == (sizeof temp_buffer
10669 / sizeof (short)))
7a13e894 10670 temp_index = 0;
379b5ac0
KH
10671 temp_buffer[temp_index++] = copy_bufptr[i];
10672 }
10673
10674 if (/* If the event is not from XIM, */
10675 event.xkey.keycode != 0
10676 /* or the current locale doesn't request
10677 decoding of the intup data, ... */
10678 || coding.type == coding_type_raw_text
10679 || coding.type == coding_type_no_conversion)
10680 {
10681 /* ... we can use the input data as is. */
10682 nchars = nbytes;
10683 }
10684 else
10685 {
10686 /* We have to decode the input data. */
10687 int require;
10688 unsigned char *p;
10689
10690 require = decoding_buffer_size (&coding, nbytes);
10691 p = (unsigned char *) alloca (require);
10692 coding.mode |= CODING_MODE_LAST_BLOCK;
10693 decode_coding (&coding, copy_bufptr, p,
10694 nbytes, require);
10695 nbytes = coding.produced;
10696 nchars = coding.produced_char;
10697 copy_bufptr = p;
10698 }
10699
10700 /* Convert the input data to a sequence of
10701 character events. */
10702 for (i = 0; i < nbytes; i += len)
10703 {
fee2aedc
GM
10704 if (nchars == nbytes)
10705 c = copy_bufptr[i], len = 1;
10706 else
10707 c = STRING_CHAR_AND_LENGTH (copy_bufptr + i,
10708 nbytes - i, len);
10709
379b5ac0
KH
10710 bufp->kind = (SINGLE_BYTE_CHAR_P (c)
10711 ? ascii_keystroke
10712 : multibyte_char_keystroke);
10713 bufp->code = c;
7a13e894 10714 XSETFRAME (bufp->frame_or_window, f);
0f8aabe9 10715 bufp->arg = Qnil;
7a13e894
RS
10716 bufp->modifiers
10717 = x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO (f),
10718 modifiers);
10719 bufp->timestamp = event.xkey.time;
10720 bufp++;
10721 }
10722
379b5ac0
KH
10723 count += nchars;
10724 numchars -= nchars;
1decb680
PE
10725
10726 if (keysym == NoSymbol)
10727 break;
7a13e894
RS
10728 }
10729 else
10730 abort ();
dc6f92b8 10731 }
10e6549c
RS
10732 else
10733 abort ();
dc6f92b8 10734 }
59ddecde
GM
10735#ifdef HAVE_X_I18N
10736 /* Don't dispatch this event since XtDispatchEvent calls
10737 XFilterEvent, and two calls in a row may freeze the
10738 client. */
10739 break;
10740#else
717ca130 10741 goto OTHER;
59ddecde 10742#endif
f451eb13 10743
f5d11644 10744 case KeyRelease:
59ddecde
GM
10745#ifdef HAVE_X_I18N
10746 /* Don't dispatch this event since XtDispatchEvent calls
10747 XFilterEvent, and two calls in a row may freeze the
10748 client. */
10749 break;
10750#else
f5d11644 10751 goto OTHER;
59ddecde 10752#endif
f5d11644 10753
7a13e894 10754 /* Here's a possible interpretation of the whole
06a2c219
GM
10755 FocusIn-EnterNotify FocusOut-LeaveNotify mess. If
10756 you get a FocusIn event, you have to get a FocusOut
10757 event before you relinquish the focus. If you
10758 haven't received a FocusIn event, then a mere
10759 LeaveNotify is enough to free you. */
f451eb13 10760
7a13e894 10761 case EnterNotify:
06a2c219 10762 {
06a2c219
GM
10763 f = x_any_window_to_frame (dpyinfo, event.xcrossing.window);
10764
2c850e26 10765#if 0
582c60f8 10766 if (event.xcrossing.focus)
06a2c219
GM
10767 {
10768 /* Avoid nasty pop/raise loops. */
10769 if (f && (!(f->auto_raise)
10770 || !(f->auto_lower)
10771 || (event.xcrossing.time - enter_timestamp) > 500))
10772 {
10773 x_new_focus_frame (dpyinfo, f);
10774 enter_timestamp = event.xcrossing.time;
10775 }
10776 }
10777 else if (f == dpyinfo->x_focus_frame)
10778 x_new_focus_frame (dpyinfo, 0);
2c850e26
RS
10779#endif
10780
06a2c219
GM
10781 /* EnterNotify counts as mouse movement,
10782 so update things that depend on mouse position. */
2533c408 10783 if (f && !f->output_data.x->hourglass_p)
06a2c219
GM
10784 note_mouse_movement (f, &event.xmotion);
10785 goto OTHER;
10786 }
dc6f92b8 10787
7a13e894 10788 case FocusIn:
19126e11 10789 f = x_any_window_to_frame (dpyinfo, event.xfocus.window);
7a13e894 10790 if (event.xfocus.detail != NotifyPointer)
0f941935 10791 dpyinfo->x_focus_event_frame = f;
7a13e894 10792 if (f)
eb72635f
GM
10793 {
10794 x_new_focus_frame (dpyinfo, f);
10795
10796 /* Don't stop displaying the initial startup message
10797 for a switch-frame event we don't need. */
10798 if (GC_NILP (Vterminal_frame)
10799 && GC_CONSP (Vframe_list)
10800 && !GC_NILP (XCDR (Vframe_list)))
10801 {
10802 bufp->kind = FOCUS_IN_EVENT;
10803 XSETFRAME (bufp->frame_or_window, f);
0f8aabe9 10804 bufp->arg = Qnil;
eb72635f
GM
10805 ++bufp, ++count, --numchars;
10806 }
10807 }
f9e24cb9 10808
6c183ba5
RS
10809#ifdef HAVE_X_I18N
10810 if (f && FRAME_XIC (f))
10811 XSetICFocus (FRAME_XIC (f));
10812#endif
10813
7a13e894 10814 goto OTHER;
10c5e63d 10815
7a13e894 10816 case LeaveNotify:
19126e11 10817 f = x_top_window_to_frame (dpyinfo, event.xcrossing.window);
7a13e894 10818 if (f)
10c5e63d 10819 {
7a13e894 10820 if (f == dpyinfo->mouse_face_mouse_frame)
06a2c219
GM
10821 {
10822 /* If we move outside the frame, then we're
10823 certainly no longer on any text in the frame. */
10824 clear_mouse_face (dpyinfo);
10825 dpyinfo->mouse_face_mouse_frame = 0;
10826 }
10827
10828 /* Generate a nil HELP_EVENT to cancel a help-echo.
10829 Do it only if there's something to cancel.
10830 Otherwise, the startup message is cleared when
10831 the mouse leaves the frame. */
10832 if (any_help_event_p)
10833 {
be010514
GM
10834 Lisp_Object frame;
10835 int n;
10836
06a2c219 10837 XSETFRAME (frame, f);
82c5d67a 10838 help_echo = Qnil;
5ab2570d
GM
10839 n = gen_help_event (bufp, numchars,
10840 Qnil, frame, Qnil, Qnil, 0);
be010514 10841 bufp += n, count += n, numchars -= n;
06a2c219 10842 }
7a13e894 10843
2c850e26 10844#if 0
582c60f8 10845 if (event.xcrossing.focus)
0f941935 10846 x_mouse_leave (dpyinfo);
10c5e63d 10847 else
7a13e894 10848 {
0f941935
KH
10849 if (f == dpyinfo->x_focus_event_frame)
10850 dpyinfo->x_focus_event_frame = 0;
140d6643 10851 if (f == dpyinfo->x_focus_frame)
0f941935 10852 x_new_focus_frame (dpyinfo, 0);
7a13e894 10853 }
2c850e26 10854#endif
10c5e63d 10855 }
7a13e894 10856 goto OTHER;
dc6f92b8 10857
7a13e894 10858 case FocusOut:
19126e11 10859 f = x_any_window_to_frame (dpyinfo, event.xfocus.window);
7a13e894 10860 if (event.xfocus.detail != NotifyPointer
0f941935
KH
10861 && f == dpyinfo->x_focus_event_frame)
10862 dpyinfo->x_focus_event_frame = 0;
10863 if (f && f == dpyinfo->x_focus_frame)
10864 x_new_focus_frame (dpyinfo, 0);
f9e24cb9 10865
6c183ba5
RS
10866#ifdef HAVE_X_I18N
10867 if (f && FRAME_XIC (f))
10868 XUnsetICFocus (FRAME_XIC (f));
10869#endif
10870
7a13e894 10871 goto OTHER;
dc6f92b8 10872
7a13e894 10873 case MotionNotify:
dc6f92b8 10874 {
06a2c219 10875 previous_help_echo = help_echo;
7cea38bc 10876 help_echo = help_echo_object = help_echo_window = Qnil;
be010514 10877 help_echo_pos = -1;
06a2c219 10878
7a13e894
RS
10879 if (dpyinfo->grabbed && last_mouse_frame
10880 && FRAME_LIVE_P (last_mouse_frame))
10881 f = last_mouse_frame;
10882 else
19126e11 10883 f = x_window_to_frame (dpyinfo, event.xmotion.window);
06a2c219 10884
66301061
KS
10885 if (dpyinfo->mouse_face_hidden)
10886 {
10887 dpyinfo->mouse_face_hidden = 0;
10888 clear_mouse_face (dpyinfo);
10889 }
10890
7a13e894
RS
10891 if (f)
10892 note_mouse_movement (f, &event.xmotion);
10893 else
10894 {
e88b3c50 10895#ifndef USE_TOOLKIT_SCROLL_BARS
7a13e894
RS
10896 struct scroll_bar *bar
10897 = x_window_to_scroll_bar (event.xmotion.window);
f451eb13 10898
7a13e894
RS
10899 if (bar)
10900 x_scroll_bar_note_movement (bar, &event);
e88b3c50 10901#endif /* USE_TOOLKIT_SCROLL_BARS */
b8009dd1 10902
06a2c219
GM
10903 /* If we move outside the frame, then we're
10904 certainly no longer on any text in the frame. */
7a13e894
RS
10905 clear_mouse_face (dpyinfo);
10906 }
06a2c219
GM
10907
10908 /* If the contents of the global variable help_echo
10909 has changed, generate a HELP_EVENT. */
b7e80413
SM
10910 if (!NILP (help_echo)
10911 || !NILP (previous_help_echo))
06a2c219
GM
10912 {
10913 Lisp_Object frame;
be010514 10914 int n;
06a2c219
GM
10915
10916 if (f)
10917 XSETFRAME (frame, f);
10918 else
10919 frame = Qnil;
10920
10921 any_help_event_p = 1;
5ab2570d 10922 n = gen_help_event (bufp, numchars, help_echo, frame,
7cea38bc
GM
10923 help_echo_window, help_echo_object,
10924 help_echo_pos);
be010514 10925 bufp += n, count += n, numchars -= n;
06a2c219
GM
10926 }
10927
10928 goto OTHER;
dc6f92b8 10929 }
dc6f92b8 10930
7a13e894 10931 case ConfigureNotify:
9829ddba
RS
10932 f = x_top_window_to_frame (dpyinfo, event.xconfigure.window);
10933 if (f)
af395ec1 10934 {
7a4bce14 10935#ifndef USE_X_TOOLKIT
d0fa3e56
EZ
10936 /* If there is a pending resize for fullscreen, don't
10937 do this one, the right one will come later.
10938 The toolkit version doesn't seem to need this, but we
7a4bce14 10939 need to reset it below. */
d0fa3e56
EZ
10940 int dont_resize =
10941 ((f->output_data.x->want_fullscreen & FULLSCREEN_WAIT)
10942 && FRAME_NEW_WIDTH (f) != 0);
bf1b7b30
KH
10943 int rows = PIXEL_TO_CHAR_HEIGHT (f, event.xconfigure.height);
10944 int columns = PIXEL_TO_CHAR_WIDTH (f, event.xconfigure.width);
d0fa3e56
EZ
10945 if (dont_resize)
10946 goto OTHER;
5c187dee 10947
2d7fc7e8
RS
10948 /* In the toolkit version, change_frame_size
10949 is called by the code that handles resizing
10950 of the EmacsFrame widget. */
7a13e894 10951
7a13e894
RS
10952 /* Even if the number of character rows and columns has
10953 not changed, the font size may have changed, so we need
10954 to check the pixel dimensions as well. */
10955 if (columns != f->width
10956 || rows != f->height
7556890b
RS
10957 || event.xconfigure.width != f->output_data.x->pixel_width
10958 || event.xconfigure.height != f->output_data.x->pixel_height)
7a13e894 10959 {
7d1e984f 10960 change_frame_size (f, rows, columns, 0, 1, 0);
7a13e894 10961 SET_FRAME_GARBAGED (f);
e687d06e 10962 cancel_mouse_face (f);
7a13e894 10963 }
2d7fc7e8 10964#endif
af395ec1 10965
7556890b
RS
10966 f->output_data.x->pixel_width = event.xconfigure.width;
10967 f->output_data.x->pixel_height = event.xconfigure.height;
7a13e894
RS
10968
10969 /* What we have now is the position of Emacs's own window.
10970 Convert that to the position of the window manager window. */
dcb07ae9
RS
10971 x_real_positions (f, &f->output_data.x->left_pos,
10972 &f->output_data.x->top_pos);
10973
d0fa3e56
EZ
10974 x_check_fullscreen_move(f);
10975 if (f->output_data.x->want_fullscreen & FULLSCREEN_WAIT)
10976 f->output_data.x->want_fullscreen &=
10977 ~(FULLSCREEN_WAIT|FULLSCREEN_BOTH);
f5d11644
GM
10978#ifdef HAVE_X_I18N
10979 if (FRAME_XIC (f) && (FRAME_XIC_STYLE (f) & XIMStatusArea))
10980 xic_set_statusarea (f);
10981#endif
10982
dcb07ae9
RS
10983 if (f->output_data.x->parent_desc != FRAME_X_DISPLAY_INFO (f)->root_window)
10984 {
10985 /* Since the WM decorations come below top_pos now,
10986 we must put them below top_pos in the future. */
10987 f->output_data.x->win_gravity = NorthWestGravity;
10988 x_wm_set_size_hint (f, (long) 0, 0);
10989 }
8f08dc93
KH
10990#ifdef USE_MOTIF
10991 /* Some window managers pass (0,0) as the location of
10992 the window, and the Motif event handler stores it
10993 in the emacs widget, which messes up Motif menus. */
10994 if (event.xconfigure.x == 0 && event.xconfigure.y == 0)
10995 {
10996 event.xconfigure.x = f->output_data.x->widget->core.x;
10997 event.xconfigure.y = f->output_data.x->widget->core.y;
10998 }
06a2c219 10999#endif /* USE_MOTIF */
7a13e894 11000 }
2d7fc7e8 11001 goto OTHER;
dc6f92b8 11002
7a13e894
RS
11003 case ButtonPress:
11004 case ButtonRelease:
11005 {
11006 /* If we decide we want to generate an event to be seen
11007 by the rest of Emacs, we put it here. */
11008 struct input_event emacs_event;
9ea173e8 11009 int tool_bar_p = 0;
06a2c219 11010
7a13e894 11011 emacs_event.kind = no_event;
7a13e894 11012 bzero (&compose_status, sizeof (compose_status));
9b07615b 11013
06a2c219
GM
11014 if (dpyinfo->grabbed
11015 && last_mouse_frame
9f67f20b
RS
11016 && FRAME_LIVE_P (last_mouse_frame))
11017 f = last_mouse_frame;
11018 else
2224b905 11019 f = x_window_to_frame (dpyinfo, event.xbutton.window);
9f67f20b 11020
06a2c219
GM
11021 if (f)
11022 {
9ea173e8
GM
11023 /* Is this in the tool-bar? */
11024 if (WINDOWP (f->tool_bar_window)
11025 && XFASTINT (XWINDOW (f->tool_bar_window)->height))
06a2c219
GM
11026 {
11027 Lisp_Object window;
11028 int p, x, y;
11029
11030 x = event.xbutton.x;
11031 y = event.xbutton.y;
11032
11033 /* Set x and y. */
11034 window = window_from_coordinates (f, x, y, &p, 1);
9ea173e8 11035 if (EQ (window, f->tool_bar_window))
06a2c219 11036 {
9ea173e8
GM
11037 x_handle_tool_bar_click (f, &event.xbutton);
11038 tool_bar_p = 1;
06a2c219
GM
11039 }
11040 }
11041
9ea173e8 11042 if (!tool_bar_p)
06a2c219
GM
11043 if (!dpyinfo->x_focus_frame
11044 || f == dpyinfo->x_focus_frame)
11045 construct_mouse_click (&emacs_event, &event, f);
7a13e894
RS
11046 }
11047 else
11048 {
06a2c219 11049#ifndef USE_TOOLKIT_SCROLL_BARS
7a13e894
RS
11050 struct scroll_bar *bar
11051 = x_window_to_scroll_bar (event.xbutton.window);
f451eb13 11052
7a13e894
RS
11053 if (bar)
11054 x_scroll_bar_handle_click (bar, &event, &emacs_event);
06a2c219 11055#endif /* not USE_TOOLKIT_SCROLL_BARS */
7a13e894
RS
11056 }
11057
11058 if (event.type == ButtonPress)
11059 {
11060 dpyinfo->grabbed |= (1 << event.xbutton.button);
11061 last_mouse_frame = f;
edad46f6
KH
11062 /* Ignore any mouse motion that happened
11063 before this event; any subsequent mouse-movement
11064 Emacs events should reflect only motion after
11065 the ButtonPress. */
a00e91cd
KH
11066 if (f != 0)
11067 f->mouse_moved = 0;
06a2c219 11068
9ea173e8
GM
11069 if (!tool_bar_p)
11070 last_tool_bar_item = -1;
7a13e894 11071 }
3afe33e7
RS
11072 else
11073 {
7a13e894 11074 dpyinfo->grabbed &= ~(1 << event.xbutton.button);
3afe33e7 11075 }
23faf38f 11076
7a13e894
RS
11077 if (numchars >= 1 && emacs_event.kind != no_event)
11078 {
11079 bcopy (&emacs_event, bufp, sizeof (struct input_event));
11080 bufp++;
11081 count++;
11082 numchars--;
11083 }
3afe33e7
RS
11084
11085#ifdef USE_X_TOOLKIT
2224b905
RS
11086 f = x_menubar_window_to_frame (dpyinfo, event.xbutton.window);
11087 /* For a down-event in the menu bar,
11088 don't pass it to Xt right now.
11089 Instead, save it away
11090 and we will pass it to Xt from kbd_buffer_get_event.
11091 That way, we can run some Lisp code first. */
91375f8f
RS
11092 if (f && event.type == ButtonPress
11093 /* Verify the event is really within the menu bar
11094 and not just sent to it due to grabbing. */
11095 && event.xbutton.x >= 0
11096 && event.xbutton.x < f->output_data.x->pixel_width
11097 && event.xbutton.y >= 0
11098 && event.xbutton.y < f->output_data.x->menubar_height
11099 && event.xbutton.same_screen)
2224b905 11100 {
8805890a 11101 SET_SAVED_BUTTON_EVENT;
2237cac9
RS
11102 XSETFRAME (last_mouse_press_frame, f);
11103 }
11104 else if (event.type == ButtonPress)
11105 {
11106 last_mouse_press_frame = Qnil;
30e671c3 11107 goto OTHER;
ce89ef46 11108 }
06a2c219 11109
2237cac9
RS
11110#ifdef USE_MOTIF /* This should do not harm for Lucid,
11111 but I am trying to be cautious. */
ce89ef46
RS
11112 else if (event.type == ButtonRelease)
11113 {
2237cac9 11114 if (!NILP (last_mouse_press_frame))
f10ded1c 11115 {
2237cac9
RS
11116 f = XFRAME (last_mouse_press_frame);
11117 if (f->output_data.x)
06a2c219 11118 SET_SAVED_BUTTON_EVENT;
f10ded1c 11119 }
06a2c219 11120 else
30e671c3 11121 goto OTHER;
2224b905 11122 }
2237cac9 11123#endif /* USE_MOTIF */
2224b905
RS
11124 else
11125 goto OTHER;
3afe33e7 11126#endif /* USE_X_TOOLKIT */
7a13e894
RS
11127 }
11128 break;
dc6f92b8 11129
7a13e894 11130 case CirculateNotify:
06a2c219
GM
11131 goto OTHER;
11132
7a13e894 11133 case CirculateRequest:
06a2c219
GM
11134 goto OTHER;
11135
11136 case VisibilityNotify:
11137 goto OTHER;
dc6f92b8 11138
7a13e894
RS
11139 case MappingNotify:
11140 /* Someone has changed the keyboard mapping - update the
11141 local cache. */
11142 switch (event.xmapping.request)
11143 {
11144 case MappingModifier:
11145 x_find_modifier_meanings (dpyinfo);
11146 /* This is meant to fall through. */
11147 case MappingKeyboard:
11148 XRefreshKeyboardMapping (&event.xmapping);
11149 }
7a13e894 11150 goto OTHER;
dc6f92b8 11151
7a13e894 11152 default:
7a13e894 11153 OTHER:
717ca130 11154#ifdef USE_X_TOOLKIT
7a13e894
RS
11155 BLOCK_INPUT;
11156 XtDispatchEvent (&event);
11157 UNBLOCK_INPUT;
3afe33e7 11158#endif /* USE_X_TOOLKIT */
7a13e894
RS
11159 break;
11160 }
dc6f92b8
JB
11161 }
11162 }
11163
06a2c219
GM
11164 out:;
11165
9a5196d0
RS
11166 /* On some systems, an X bug causes Emacs to get no more events
11167 when the window is destroyed. Detect that. (1994.) */
58769bee 11168 if (! event_found)
ef2a22d0 11169 {
ef2a22d0
RS
11170 /* Emacs and the X Server eats up CPU time if XNoOp is done every time.
11171 One XNOOP in 100 loops will make Emacs terminate.
11172 B. Bretthauer, 1994 */
11173 x_noop_count++;
58769bee 11174 if (x_noop_count >= 100)
ef2a22d0
RS
11175 {
11176 x_noop_count=0;
2224b905
RS
11177
11178 if (next_noop_dpyinfo == 0)
11179 next_noop_dpyinfo = x_display_list;
11180
11181 XNoOp (next_noop_dpyinfo->display);
11182
11183 /* Each time we get here, cycle through the displays now open. */
11184 next_noop_dpyinfo = next_noop_dpyinfo->next;
ef2a22d0
RS
11185 }
11186 }
502add23 11187
06a2c219 11188 /* If the focus was just given to an auto-raising frame,
0134a210 11189 raise it now. */
7a13e894 11190 /* ??? This ought to be able to handle more than one such frame. */
0134a210
RS
11191 if (pending_autoraise_frame)
11192 {
11193 x_raise_frame (pending_autoraise_frame);
11194 pending_autoraise_frame = 0;
11195 }
0134a210 11196
dc6f92b8 11197 UNBLOCK_INPUT;
bde5503b 11198 --handling_signal;
dc6f92b8
JB
11199 return count;
11200}
06a2c219
GM
11201
11202
11203
dc6f92b8 11204\f
06a2c219
GM
11205/***********************************************************************
11206 Text Cursor
11207 ***********************************************************************/
11208
60626bab
GM
11209/* Notice when the text cursor of window W has been completely
11210 overwritten by a drawing operation that outputs glyphs in AREA
11211 starting at X0 and ending at X1 in the line starting at Y0 and
11212 ending at Y1. X coordinates are area-relative. X1 < 0 means all
11213 the rest of the line after X0 has been written. Y coordinates
11214 are window-relative. */
06a2c219
GM
11215
11216static void
60626bab 11217notice_overwritten_cursor (w, area, x0, x1, y0, y1)
06a2c219 11218 struct window *w;
60626bab
GM
11219 enum glyph_row_area area;
11220 int x0, y0, x1, y1;
06a2c219 11221{
60626bab 11222 if (area == TEXT_AREA
f0a48a01 11223 && w->phys_cursor_on_p
60626bab
GM
11224 && y0 <= w->phys_cursor.y
11225 && y1 >= w->phys_cursor.y + w->phys_cursor_height
11226 && x0 <= w->phys_cursor.x
11227 && (x1 < 0 || x1 > w->phys_cursor.x))
f0a48a01 11228 w->phys_cursor_on_p = 0;
06a2c219 11229}
f451eb13
JB
11230
11231
06a2c219
GM
11232/* Set clipping for output in glyph row ROW. W is the window in which
11233 we operate. GC is the graphics context to set clipping in.
11234 WHOLE_LINE_P non-zero means include the areas used for truncation
11235 mark display and alike in the clipping rectangle.
11236
11237 ROW may be a text row or, e.g., a mode line. Text rows must be
11238 clipped to the interior of the window dedicated to text display,
11239 mode lines must be clipped to the whole window. */
dc6f92b8
JB
11240
11241static void
06a2c219
GM
11242x_clip_to_row (w, row, gc, whole_line_p)
11243 struct window *w;
11244 struct glyph_row *row;
11245 GC gc;
11246 int whole_line_p;
dc6f92b8 11247{
06a2c219
GM
11248 struct frame *f = XFRAME (WINDOW_FRAME (w));
11249 XRectangle clip_rect;
11250 int window_x, window_y, window_width, window_height;
dc6f92b8 11251
06a2c219 11252 window_box (w, -1, &window_x, &window_y, &window_width, &window_height);
5c1aae96 11253
06a2c219
GM
11254 clip_rect.x = WINDOW_TO_FRAME_PIXEL_X (w, 0);
11255 clip_rect.y = WINDOW_TO_FRAME_PIXEL_Y (w, row->y);
11256 clip_rect.y = max (clip_rect.y, window_y);
11257 clip_rect.width = window_width;
11258 clip_rect.height = row->visible_height;
5c1aae96 11259
06a2c219
GM
11260 /* If clipping to the whole line, including trunc marks, extend
11261 the rectangle to the left and increase its width. */
11262 if (whole_line_p)
11263 {
3f332ef3
KS
11264 clip_rect.x -= FRAME_X_LEFT_FRINGE_WIDTH (f);
11265 clip_rect.width += FRAME_X_FRINGE_WIDTH (f);
06a2c219 11266 }
5c1aae96 11267
06a2c219 11268 XSetClipRectangles (FRAME_X_DISPLAY (f), gc, 0, 0, &clip_rect, 1, Unsorted);
dc6f92b8
JB
11269}
11270
06a2c219
GM
11271
11272/* Draw a hollow box cursor on window W in glyph row ROW. */
dc6f92b8
JB
11273
11274static void
06a2c219
GM
11275x_draw_hollow_cursor (w, row)
11276 struct window *w;
11277 struct glyph_row *row;
dc6f92b8 11278{
06a2c219
GM
11279 struct frame *f = XFRAME (WINDOW_FRAME (w));
11280 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
11281 Display *dpy = FRAME_X_DISPLAY (f);
11282 int x, y, wd, h;
11283 XGCValues xgcv;
11284 struct glyph *cursor_glyph;
11285 GC gc;
11286
11287 /* Compute frame-relative coordinates from window-relative
11288 coordinates. */
11289 x = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x);
11290 y = (WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y)
11291 + row->ascent - w->phys_cursor_ascent);
11292 h = row->height - 1;
11293
11294 /* Get the glyph the cursor is on. If we can't tell because
11295 the current matrix is invalid or such, give up. */
11296 cursor_glyph = get_phys_cursor_glyph (w);
11297 if (cursor_glyph == NULL)
dc6f92b8
JB
11298 return;
11299
06a2c219
GM
11300 /* Compute the width of the rectangle to draw. If on a stretch
11301 glyph, and `x-stretch-block-cursor' is nil, don't draw a
11302 rectangle as wide as the glyph, but use a canonical character
11303 width instead. */
11304 wd = cursor_glyph->pixel_width - 1;
11305 if (cursor_glyph->type == STRETCH_GLYPH
11306 && !x_stretch_cursor_p)
11307 wd = min (CANON_X_UNIT (f), wd);
11308
11309 /* The foreground of cursor_gc is typically the same as the normal
11310 background color, which can cause the cursor box to be invisible. */
11311 xgcv.foreground = f->output_data.x->cursor_pixel;
11312 if (dpyinfo->scratch_cursor_gc)
11313 XChangeGC (dpy, dpyinfo->scratch_cursor_gc, GCForeground, &xgcv);
11314 else
11315 dpyinfo->scratch_cursor_gc = XCreateGC (dpy, FRAME_X_WINDOW (f),
11316 GCForeground, &xgcv);
11317 gc = dpyinfo->scratch_cursor_gc;
11318
11319 /* Set clipping, draw the rectangle, and reset clipping again. */
11320 x_clip_to_row (w, row, gc, 0);
11321 XDrawRectangle (dpy, FRAME_X_WINDOW (f), gc, x, y, wd, h);
11322 XSetClipMask (dpy, gc, None);
dc6f92b8
JB
11323}
11324
06a2c219
GM
11325
11326/* Draw a bar cursor on window W in glyph row ROW.
11327
11328 Implementation note: One would like to draw a bar cursor with an
11329 angle equal to the one given by the font property XA_ITALIC_ANGLE.
11330 Unfortunately, I didn't find a font yet that has this property set.
11331 --gerd. */
dc6f92b8
JB
11332
11333static void
f02d8aa0 11334x_draw_bar_cursor (w, row, width)
06a2c219
GM
11335 struct window *w;
11336 struct glyph_row *row;
f02d8aa0 11337 int width;
dc6f92b8 11338{
92f424df
GM
11339 struct frame *f = XFRAME (w->frame);
11340 struct glyph *cursor_glyph;
06a2c219 11341
92f424df
GM
11342 /* If cursor is out of bounds, don't draw garbage. This can happen
11343 in mini-buffer windows when switching between echo area glyphs
11344 and mini-buffer. */
11345 cursor_glyph = get_phys_cursor_glyph (w);
11346 if (cursor_glyph == NULL)
11347 return;
06a2c219 11348
92f424df
GM
11349 /* If on an image, draw like a normal cursor. That's usually better
11350 visible than drawing a bar, esp. if the image is large so that
11351 the bar might not be in the window. */
11352 if (cursor_glyph->type == IMAGE_GLYPH)
11353 {
11354 struct glyph_row *row;
11355 row = MATRIX_ROW (w->current_matrix, w->phys_cursor.vpos);
11356 x_draw_phys_cursor_glyph (w, row, DRAW_CURSOR);
11357 }
11358 else
11359 {
34e5d0af
GM
11360 Display *dpy = FRAME_X_DISPLAY (f);
11361 Window window = FRAME_X_WINDOW (f);
11362 GC gc = FRAME_X_DISPLAY_INFO (f)->scratch_cursor_gc;
11363 unsigned long mask = GCForeground | GCBackground | GCGraphicsExposures;
11364 struct face *face = FACE_FROM_ID (f, cursor_glyph->face_id);
11365 XGCValues xgcv;
11366
11367 /* If the glyph's background equals the color we normally draw
11368 the bar cursor in, the bar cursor in its normal color is
11369 invisible. Use the glyph's foreground color instead in this
11370 case, on the assumption that the glyph's colors are chosen so
11371 that the glyph is legible. */
11372 if (face->background == f->output_data.x->cursor_pixel)
11373 xgcv.background = xgcv.foreground = face->foreground;
11374 else
11375 xgcv.background = xgcv.foreground = f->output_data.x->cursor_pixel;
06a2c219 11376 xgcv.graphics_exposures = 0;
92f424df 11377
06a2c219
GM
11378 if (gc)
11379 XChangeGC (dpy, gc, mask, &xgcv);
11380 else
11381 {
11382 gc = XCreateGC (dpy, window, mask, &xgcv);
11383 FRAME_X_DISPLAY_INFO (f)->scratch_cursor_gc = gc;
11384 }
92f424df 11385
f02d8aa0
GM
11386 if (width < 0)
11387 width = f->output_data.x->cursor_width;
34e5d0af 11388 width = min (cursor_glyph->pixel_width, width);
92f424df 11389
06a2c219
GM
11390 x_clip_to_row (w, row, gc, 0);
11391 XFillRectangle (dpy, window, gc,
34e5d0af 11392 WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x),
06a2c219 11393 WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y),
34e5d0af 11394 width, row->height);
06a2c219
GM
11395 XSetClipMask (dpy, gc, None);
11396 }
dc6f92b8
JB
11397}
11398
06a2c219
GM
11399
11400/* Clear the cursor of window W to background color, and mark the
11401 cursor as not shown. This is used when the text where the cursor
11402 is is about to be rewritten. */
11403
dc6f92b8 11404static void
06a2c219
GM
11405x_clear_cursor (w)
11406 struct window *w;
dc6f92b8 11407{
06a2c219
GM
11408 if (FRAME_VISIBLE_P (XFRAME (w->frame)) && w->phys_cursor_on_p)
11409 x_update_window_cursor (w, 0);
11410}
90e65f07 11411
dbc4e1c1 11412
06a2c219
GM
11413/* Draw the cursor glyph of window W in glyph row ROW. See the
11414 comment of x_draw_glyphs for the meaning of HL. */
dbc4e1c1 11415
06a2c219
GM
11416static void
11417x_draw_phys_cursor_glyph (w, row, hl)
11418 struct window *w;
11419 struct glyph_row *row;
11420 enum draw_glyphs_face hl;
11421{
11422 /* If cursor hpos is out of bounds, don't draw garbage. This can
11423 happen in mini-buffer windows when switching between echo area
11424 glyphs and mini-buffer. */
11425 if (w->phys_cursor.hpos < row->used[TEXT_AREA])
66ac4b0e 11426 {
f0a48a01
GM
11427 int on_p = w->phys_cursor_on_p;
11428
66ac4b0e
GM
11429 x_draw_glyphs (w, w->phys_cursor.x, row, TEXT_AREA,
11430 w->phys_cursor.hpos, w->phys_cursor.hpos + 1,
f0a48a01
GM
11431 hl, 0);
11432 w->phys_cursor_on_p = on_p;
66ac4b0e
GM
11433
11434 /* When we erase the cursor, and ROW is overlapped by other
11435 rows, make sure that these overlapping parts of other rows
11436 are redrawn. */
11437 if (hl == DRAW_NORMAL_TEXT && row->overlapped_p)
11438 {
11439 if (row > w->current_matrix->rows
11440 && MATRIX_ROW_OVERLAPS_SUCC_P (row - 1))
11441 x_fix_overlapping_area (w, row - 1, TEXT_AREA);
11442
11443 if (MATRIX_ROW_BOTTOM_Y (row) < window_text_bottom_y (w)
11444 && MATRIX_ROW_OVERLAPS_PRED_P (row + 1))
11445 x_fix_overlapping_area (w, row + 1, TEXT_AREA);
11446 }
11447 }
06a2c219 11448}
dbc4e1c1 11449
eea6af04 11450
06a2c219 11451/* Erase the image of a cursor of window W from the screen. */
eea6af04 11452
06a2c219
GM
11453static void
11454x_erase_phys_cursor (w)
11455 struct window *w;
11456{
11457 struct frame *f = XFRAME (w->frame);
11458 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
11459 int hpos = w->phys_cursor.hpos;
11460 int vpos = w->phys_cursor.vpos;
11461 int mouse_face_here_p = 0;
11462 struct glyph_matrix *active_glyphs = w->current_matrix;
11463 struct glyph_row *cursor_row;
11464 struct glyph *cursor_glyph;
11465 enum draw_glyphs_face hl;
11466
11467 /* No cursor displayed or row invalidated => nothing to do on the
11468 screen. */
11469 if (w->phys_cursor_type == NO_CURSOR)
11470 goto mark_cursor_off;
11471
11472 /* VPOS >= active_glyphs->nrows means that window has been resized.
11473 Don't bother to erase the cursor. */
11474 if (vpos >= active_glyphs->nrows)
11475 goto mark_cursor_off;
11476
11477 /* If row containing cursor is marked invalid, there is nothing we
11478 can do. */
11479 cursor_row = MATRIX_ROW (active_glyphs, vpos);
11480 if (!cursor_row->enabled_p)
11481 goto mark_cursor_off;
11482
a2c6de8e
KS
11483 /* If row is completely invisible, don't attempt to delete a cursor which
11484 isn't there. This can happen if cursor is at top of a window, and
11485 we switch to a buffer with a header line in that window. */
11486 if (cursor_row->visible_height <= 0)
11487 goto mark_cursor_off;
11488
06a2c219
GM
11489 /* This can happen when the new row is shorter than the old one.
11490 In this case, either x_draw_glyphs or clear_end_of_line
11491 should have cleared the cursor. Note that we wouldn't be
11492 able to erase the cursor in this case because we don't have a
11493 cursor glyph at hand. */
11494 if (w->phys_cursor.hpos >= cursor_row->used[TEXT_AREA])
11495 goto mark_cursor_off;
11496
11497 /* If the cursor is in the mouse face area, redisplay that when
11498 we clear the cursor. */
8801a864
KR
11499 if (! NILP (dpyinfo->mouse_face_window)
11500 && w == XWINDOW (dpyinfo->mouse_face_window)
06a2c219
GM
11501 && (vpos > dpyinfo->mouse_face_beg_row
11502 || (vpos == dpyinfo->mouse_face_beg_row
11503 && hpos >= dpyinfo->mouse_face_beg_col))
11504 && (vpos < dpyinfo->mouse_face_end_row
11505 || (vpos == dpyinfo->mouse_face_end_row
11506 && hpos < dpyinfo->mouse_face_end_col))
11507 /* Don't redraw the cursor's spot in mouse face if it is at the
11508 end of a line (on a newline). The cursor appears there, but
11509 mouse highlighting does not. */
11510 && cursor_row->used[TEXT_AREA] > hpos)
11511 mouse_face_here_p = 1;
11512
11513 /* Maybe clear the display under the cursor. */
11514 if (w->phys_cursor_type == HOLLOW_BOX_CURSOR)
11515 {
11516 int x;
045dee35 11517 int header_line_height = WINDOW_DISPLAY_HEADER_LINE_HEIGHT (w);
dbc4e1c1 11518
06a2c219
GM
11519 cursor_glyph = get_phys_cursor_glyph (w);
11520 if (cursor_glyph == NULL)
11521 goto mark_cursor_off;
dbc4e1c1 11522
e0300d33 11523 x = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x);
06a2c219 11524
c5e6e06b
GM
11525 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
11526 x,
11527 WINDOW_TO_FRAME_PIXEL_Y (w, max (header_line_height,
11528 cursor_row->y)),
11529 cursor_glyph->pixel_width,
11530 cursor_row->visible_height,
11531 False);
dbc4e1c1 11532 }
06a2c219
GM
11533
11534 /* Erase the cursor by redrawing the character underneath it. */
11535 if (mouse_face_here_p)
11536 hl = DRAW_MOUSE_FACE;
06a2c219
GM
11537 else
11538 hl = DRAW_NORMAL_TEXT;
11539 x_draw_phys_cursor_glyph (w, cursor_row, hl);
dbc4e1c1 11540
06a2c219
GM
11541 mark_cursor_off:
11542 w->phys_cursor_on_p = 0;
11543 w->phys_cursor_type = NO_CURSOR;
dbc4e1c1
JB
11544}
11545
11546
b7f83f9e
GM
11547/* Non-zero if physical cursor of window W is within mouse face. */
11548
11549static int
11550cursor_in_mouse_face_p (w)
11551 struct window *w;
11552{
11553 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (XFRAME (w->frame));
11554 int in_mouse_face = 0;
11555
11556 if (WINDOWP (dpyinfo->mouse_face_window)
11557 && XWINDOW (dpyinfo->mouse_face_window) == w)
11558 {
11559 int hpos = w->phys_cursor.hpos;
11560 int vpos = w->phys_cursor.vpos;
11561
11562 if (vpos >= dpyinfo->mouse_face_beg_row
11563 && vpos <= dpyinfo->mouse_face_end_row
11564 && (vpos > dpyinfo->mouse_face_beg_row
11565 || hpos >= dpyinfo->mouse_face_beg_col)
11566 && (vpos < dpyinfo->mouse_face_end_row
11567 || hpos < dpyinfo->mouse_face_end_col
11568 || dpyinfo->mouse_face_past_end))
11569 in_mouse_face = 1;
11570 }
11571
11572 return in_mouse_face;
11573}
11574
11575
06a2c219
GM
11576/* Display or clear cursor of window W. If ON is zero, clear the
11577 cursor. If it is non-zero, display the cursor. If ON is nonzero,
11578 where to put the cursor is specified by HPOS, VPOS, X and Y. */
dbc4e1c1 11579
06a2c219
GM
11580void
11581x_display_and_set_cursor (w, on, hpos, vpos, x, y)
11582 struct window *w;
11583 int on, hpos, vpos, x, y;
dbc4e1c1 11584{
06a2c219
GM
11585 struct frame *f = XFRAME (w->frame);
11586 int new_cursor_type;
f02d8aa0 11587 int new_cursor_width;
06a2c219
GM
11588 struct glyph_matrix *current_glyphs;
11589 struct glyph_row *glyph_row;
11590 struct glyph *glyph;
34368a22 11591 int cursor_non_selected;
dbc4e1c1 11592
49d838ea 11593 /* This is pointless on invisible frames, and dangerous on garbaged
06a2c219
GM
11594 windows and frames; in the latter case, the frame or window may
11595 be in the midst of changing its size, and x and y may be off the
11596 window. */
11597 if (! FRAME_VISIBLE_P (f)
11598 || FRAME_GARBAGED_P (f)
11599 || vpos >= w->current_matrix->nrows
11600 || hpos >= w->current_matrix->matrix_w)
dc6f92b8
JB
11601 return;
11602
11603 /* If cursor is off and we want it off, return quickly. */
06a2c219 11604 if (!on && !w->phys_cursor_on_p)
dc6f92b8
JB
11605 return;
11606
06a2c219
GM
11607 current_glyphs = w->current_matrix;
11608 glyph_row = MATRIX_ROW (current_glyphs, vpos);
11609 glyph = glyph_row->glyphs[TEXT_AREA] + hpos;
11610
11611 /* If cursor row is not enabled, we don't really know where to
11612 display the cursor. */
11613 if (!glyph_row->enabled_p)
11614 {
11615 w->phys_cursor_on_p = 0;
11616 return;
11617 }
11618
11619 xassert (interrupt_input_blocked);
11620
11621 /* Set new_cursor_type to the cursor we want to be displayed. In a
11622 mini-buffer window, we want the cursor only to appear if we are
11623 reading input from this window. For the selected window, we want
11624 the cursor type given by the frame parameter. If explicitly
11625 marked off, draw no cursor. In all other cases, we want a hollow
11626 box cursor. */
34368a22
RS
11627 cursor_non_selected
11628 = !NILP (Fbuffer_local_value (Qcursor_in_non_selected_windows,
11629 w->buffer));
f02d8aa0 11630 new_cursor_width = -1;
9b4a7047
GM
11631 if (cursor_in_echo_area
11632 && FRAME_HAS_MINIBUF_P (f)
11633 && EQ (FRAME_MINIBUF_WINDOW (f), echo_area_window))
06a2c219 11634 {
9b4a7047
GM
11635 if (w == XWINDOW (echo_area_window))
11636 new_cursor_type = FRAME_DESIRED_CURSOR (f);
34368a22 11637 else if (cursor_non_selected)
06a2c219 11638 new_cursor_type = HOLLOW_BOX_CURSOR;
9a7bdceb
GM
11639 else
11640 new_cursor_type = NO_CURSOR;
06a2c219 11641 }
06a2c219 11642 else
9b4a7047 11643 {
7a58ab59
GM
11644 if (f != FRAME_X_DISPLAY_INFO (f)->x_highlight_frame
11645 || w != XWINDOW (f->selected_window))
9b4a7047 11646 {
2c850e26 11647 if ((MINI_WINDOW_P (w) && minibuf_level == 0)
34368a22 11648 || !cursor_non_selected
5cefa566 11649 || NILP (XBUFFER (w->buffer)->cursor_type))
9b4a7047
GM
11650 new_cursor_type = NO_CURSOR;
11651 else
11652 new_cursor_type = HOLLOW_BOX_CURSOR;
11653 }
9b4a7047 11654 else
f02d8aa0
GM
11655 {
11656 struct buffer *b = XBUFFER (w->buffer);
11657
11658 if (EQ (b->cursor_type, Qt))
11659 new_cursor_type = FRAME_DESIRED_CURSOR (f);
11660 else
11661 new_cursor_type = x_specified_cursor_type (b->cursor_type,
11662 &new_cursor_width);
e1429afe
KS
11663 if (w->cursor_off_p)
11664 {
11665 if (new_cursor_type == FILLED_BOX_CURSOR)
11666 new_cursor_type = HOLLOW_BOX_CURSOR;
11667 else if (new_cursor_type == BAR_CURSOR && new_cursor_width > 1)
11668 new_cursor_width = 1;
11669 else
11670 new_cursor_type = NO_CURSOR;
11671 }
f02d8aa0 11672 }
9b4a7047 11673 }
06a2c219
GM
11674
11675 /* If cursor is currently being shown and we don't want it to be or
11676 it is in the wrong place, or the cursor type is not what we want,
dc6f92b8 11677 erase it. */
06a2c219 11678 if (w->phys_cursor_on_p
dc6f92b8 11679 && (!on
06a2c219
GM
11680 || w->phys_cursor.x != x
11681 || w->phys_cursor.y != y
e1429afe
KS
11682 || new_cursor_type != w->phys_cursor_type
11683 || (new_cursor_type == BAR_CURSOR
11684 && new_cursor_width != w->phys_cursor_width)))
06a2c219
GM
11685 x_erase_phys_cursor (w);
11686
11687 /* If the cursor is now invisible and we want it to be visible,
11688 display it. */
11689 if (on && !w->phys_cursor_on_p)
11690 {
11691 w->phys_cursor_ascent = glyph_row->ascent;
11692 w->phys_cursor_height = glyph_row->height;
11693
11694 /* Set phys_cursor_.* before x_draw_.* is called because some
11695 of them may need the information. */
11696 w->phys_cursor.x = x;
11697 w->phys_cursor.y = glyph_row->y;
11698 w->phys_cursor.hpos = hpos;
11699 w->phys_cursor.vpos = vpos;
11700 w->phys_cursor_type = new_cursor_type;
e1429afe 11701 w->phys_cursor_width = new_cursor_width;
06a2c219
GM
11702 w->phys_cursor_on_p = 1;
11703
11704 switch (new_cursor_type)
dc6f92b8 11705 {
06a2c219
GM
11706 case HOLLOW_BOX_CURSOR:
11707 x_draw_hollow_cursor (w, glyph_row);
11708 break;
11709
11710 case FILLED_BOX_CURSOR:
11711 x_draw_phys_cursor_glyph (w, glyph_row, DRAW_CURSOR);
11712 break;
11713
11714 case BAR_CURSOR:
f02d8aa0 11715 x_draw_bar_cursor (w, glyph_row, new_cursor_width);
06a2c219
GM
11716 break;
11717
11718 case NO_CURSOR:
11719 break;
dc6f92b8 11720
06a2c219
GM
11721 default:
11722 abort ();
11723 }
59ddecde
GM
11724
11725#ifdef HAVE_X_I18N
11726 if (w == XWINDOW (f->selected_window))
11727 if (FRAME_XIC (f) && (FRAME_XIC_STYLE (f) & XIMPreeditPosition))
11728 xic_set_preeditarea (w, x, y);
11729#endif
dc6f92b8
JB
11730 }
11731
06a2c219 11732#ifndef XFlush
f676886a 11733 if (updating_frame != f)
334208b7 11734 XFlush (FRAME_X_DISPLAY (f));
06a2c219 11735#endif
dc6f92b8
JB
11736}
11737
06a2c219
GM
11738
11739/* Display the cursor on window W, or clear it. X and Y are window
11740 relative pixel coordinates. HPOS and VPOS are glyph matrix
11741 positions. If W is not the selected window, display a hollow
11742 cursor. ON non-zero means display the cursor at X, Y which
11743 correspond to HPOS, VPOS, otherwise it is cleared. */
5d46f928 11744
dfcf069d 11745void
06a2c219
GM
11746x_display_cursor (w, on, hpos, vpos, x, y)
11747 struct window *w;
11748 int on, hpos, vpos, x, y;
dc6f92b8 11749{
f94397b5 11750 BLOCK_INPUT;
06a2c219 11751 x_display_and_set_cursor (w, on, hpos, vpos, x, y);
5d46f928
RS
11752 UNBLOCK_INPUT;
11753}
11754
06a2c219
GM
11755
11756/* Display the cursor on window W, or clear it, according to ON_P.
5d46f928
RS
11757 Don't change the cursor's position. */
11758
dfcf069d 11759void
06a2c219 11760x_update_cursor (f, on_p)
5d46f928 11761 struct frame *f;
5d46f928 11762{
06a2c219
GM
11763 x_update_cursor_in_window_tree (XWINDOW (f->root_window), on_p);
11764}
11765
11766
11767/* Call x_update_window_cursor with parameter ON_P on all leaf windows
11768 in the window tree rooted at W. */
11769
11770static void
11771x_update_cursor_in_window_tree (w, on_p)
11772 struct window *w;
11773 int on_p;
11774{
11775 while (w)
11776 {
11777 if (!NILP (w->hchild))
11778 x_update_cursor_in_window_tree (XWINDOW (w->hchild), on_p);
11779 else if (!NILP (w->vchild))
11780 x_update_cursor_in_window_tree (XWINDOW (w->vchild), on_p);
11781 else
11782 x_update_window_cursor (w, on_p);
11783
11784 w = NILP (w->next) ? 0 : XWINDOW (w->next);
11785 }
11786}
5d46f928 11787
f94397b5 11788
06a2c219
GM
11789/* Switch the display of W's cursor on or off, according to the value
11790 of ON. */
11791
11792static void
11793x_update_window_cursor (w, on)
11794 struct window *w;
11795 int on;
11796{
16b5d424
GM
11797 /* Don't update cursor in windows whose frame is in the process
11798 of being deleted. */
11799 if (w->current_matrix)
11800 {
11801 BLOCK_INPUT;
11802 x_display_and_set_cursor (w, on, w->phys_cursor.hpos, w->phys_cursor.vpos,
11803 w->phys_cursor.x, w->phys_cursor.y);
11804 UNBLOCK_INPUT;
11805 }
dc6f92b8 11806}
06a2c219
GM
11807
11808
11809
dc6f92b8
JB
11810\f
11811/* Icons. */
11812
dbc4e1c1 11813/* Make the x-window of frame F use the gnu icon bitmap. */
dc6f92b8
JB
11814
11815int
990ba854 11816x_bitmap_icon (f, file)
f676886a 11817 struct frame *f;
990ba854 11818 Lisp_Object file;
dc6f92b8 11819{
06a2c219 11820 int bitmap_id;
dc6f92b8 11821
c118dd06 11822 if (FRAME_X_WINDOW (f) == 0)
dc6f92b8
JB
11823 return 1;
11824
990ba854 11825 /* Free up our existing icon bitmap if any. */
7556890b
RS
11826 if (f->output_data.x->icon_bitmap > 0)
11827 x_destroy_bitmap (f, f->output_data.x->icon_bitmap);
11828 f->output_data.x->icon_bitmap = 0;
990ba854
RS
11829
11830 if (STRINGP (file))
7f2ae036
RS
11831 bitmap_id = x_create_bitmap_from_file (f, file);
11832 else
11833 {
990ba854 11834 /* Create the GNU bitmap if necessary. */
5bf01b68 11835 if (FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id < 0)
334208b7
RS
11836 FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id
11837 = x_create_bitmap_from_data (f, gnu_bits,
11838 gnu_width, gnu_height);
990ba854
RS
11839
11840 /* The first time we create the GNU bitmap,
06a2c219 11841 this increments the ref-count one extra time.
990ba854
RS
11842 As a result, the GNU bitmap is never freed.
11843 That way, we don't have to worry about allocating it again. */
334208b7 11844 x_reference_bitmap (f, FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id);
990ba854 11845
334208b7 11846 bitmap_id = FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id;
7f2ae036
RS
11847 }
11848
11849 x_wm_set_icon_pixmap (f, bitmap_id);
7556890b 11850 f->output_data.x->icon_bitmap = bitmap_id;
dc6f92b8
JB
11851
11852 return 0;
11853}
11854
11855
1be2d067
KH
11856/* Make the x-window of frame F use a rectangle with text.
11857 Use ICON_NAME as the text. */
dc6f92b8
JB
11858
11859int
f676886a
JB
11860x_text_icon (f, icon_name)
11861 struct frame *f;
dc6f92b8
JB
11862 char *icon_name;
11863{
c118dd06 11864 if (FRAME_X_WINDOW (f) == 0)
dc6f92b8
JB
11865 return 1;
11866
1be2d067
KH
11867#ifdef HAVE_X11R4
11868 {
11869 XTextProperty text;
11870 text.value = (unsigned char *) icon_name;
11871 text.encoding = XA_STRING;
11872 text.format = 8;
11873 text.nitems = strlen (icon_name);
11874#ifdef USE_X_TOOLKIT
7556890b 11875 XSetWMIconName (FRAME_X_DISPLAY (f), XtWindow (f->output_data.x->widget),
1be2d067
KH
11876 &text);
11877#else /* not USE_X_TOOLKIT */
11878 XSetWMIconName (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), &text);
11879#endif /* not USE_X_TOOLKIT */
11880 }
11881#else /* not HAVE_X11R4 */
11882 XSetIconName (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), icon_name);
11883#endif /* not HAVE_X11R4 */
58769bee 11884
7556890b
RS
11885 if (f->output_data.x->icon_bitmap > 0)
11886 x_destroy_bitmap (f, f->output_data.x->icon_bitmap);
11887 f->output_data.x->icon_bitmap = 0;
b1c884c3 11888 x_wm_set_icon_pixmap (f, 0);
dc6f92b8
JB
11889
11890 return 0;
11891}
11892\f
e99db5a1
RS
11893#define X_ERROR_MESSAGE_SIZE 200
11894
11895/* If non-nil, this should be a string.
11896 It means catch X errors and store the error message in this string. */
11897
11898static Lisp_Object x_error_message_string;
11899
11900/* An X error handler which stores the error message in
11901 x_error_message_string. This is called from x_error_handler if
11902 x_catch_errors is in effect. */
11903
06a2c219 11904static void
e99db5a1
RS
11905x_error_catcher (display, error)
11906 Display *display;
11907 XErrorEvent *error;
11908{
11909 XGetErrorText (display, error->error_code,
11910 XSTRING (x_error_message_string)->data,
11911 X_ERROR_MESSAGE_SIZE);
11912}
11913
11914/* Begin trapping X errors for display DPY. Actually we trap X errors
11915 for all displays, but DPY should be the display you are actually
11916 operating on.
11917
11918 After calling this function, X protocol errors no longer cause
11919 Emacs to exit; instead, they are recorded in the string
11920 stored in x_error_message_string.
11921
11922 Calling x_check_errors signals an Emacs error if an X error has
11923 occurred since the last call to x_catch_errors or x_check_errors.
11924
11925 Calling x_uncatch_errors resumes the normal error handling. */
11926
11927void x_check_errors ();
11928static Lisp_Object x_catch_errors_unwind ();
11929
11930int
11931x_catch_errors (dpy)
11932 Display *dpy;
11933{
11934 int count = specpdl_ptr - specpdl;
11935
11936 /* Make sure any errors from previous requests have been dealt with. */
11937 XSync (dpy, False);
11938
11939 record_unwind_protect (x_catch_errors_unwind, x_error_message_string);
11940
11941 x_error_message_string = make_uninit_string (X_ERROR_MESSAGE_SIZE);
11942 XSTRING (x_error_message_string)->data[0] = 0;
11943
11944 return count;
11945}
11946
11947/* Unbind the binding that we made to check for X errors. */
11948
11949static Lisp_Object
11950x_catch_errors_unwind (old_val)
11951 Lisp_Object old_val;
11952{
11953 x_error_message_string = old_val;
11954 return Qnil;
11955}
11956
11957/* If any X protocol errors have arrived since the last call to
11958 x_catch_errors or x_check_errors, signal an Emacs error using
11959 sprintf (a buffer, FORMAT, the x error message text) as the text. */
11960
11961void
11962x_check_errors (dpy, format)
11963 Display *dpy;
11964 char *format;
11965{
11966 /* Make sure to catch any errors incurred so far. */
11967 XSync (dpy, False);
11968
11969 if (XSTRING (x_error_message_string)->data[0])
11970 error (format, XSTRING (x_error_message_string)->data);
11971}
11972
9829ddba
RS
11973/* Nonzero if we had any X protocol errors
11974 since we did x_catch_errors on DPY. */
e99db5a1
RS
11975
11976int
11977x_had_errors_p (dpy)
11978 Display *dpy;
11979{
11980 /* Make sure to catch any errors incurred so far. */
11981 XSync (dpy, False);
11982
11983 return XSTRING (x_error_message_string)->data[0] != 0;
11984}
11985
9829ddba
RS
11986/* Forget about any errors we have had, since we did x_catch_errors on DPY. */
11987
06a2c219 11988void
9829ddba
RS
11989x_clear_errors (dpy)
11990 Display *dpy;
11991{
11992 XSTRING (x_error_message_string)->data[0] = 0;
11993}
11994
e99db5a1
RS
11995/* Stop catching X protocol errors and let them make Emacs die.
11996 DPY should be the display that was passed to x_catch_errors.
11997 COUNT should be the value that was returned by
11998 the corresponding call to x_catch_errors. */
11999
12000void
12001x_uncatch_errors (dpy, count)
12002 Display *dpy;
12003 int count;
12004{
12005 unbind_to (count, Qnil);
12006}
12007
12008#if 0
12009static unsigned int x_wire_count;
12010x_trace_wire ()
12011{
12012 fprintf (stderr, "Lib call: %d\n", ++x_wire_count);
12013}
12014#endif /* ! 0 */
12015
12016\f
12017/* Handle SIGPIPE, which can happen when the connection to a server
12018 simply goes away. SIGPIPE is handled by x_connection_signal.
12019 Don't need to do anything, because the write which caused the
12020 SIGPIPE will fail, causing Xlib to invoke the X IO error handler,
06a2c219 12021 which will do the appropriate cleanup for us. */
e99db5a1
RS
12022
12023static SIGTYPE
12024x_connection_signal (signalnum) /* If we don't have an argument, */
06a2c219 12025 int signalnum; /* some compilers complain in signal calls. */
e99db5a1
RS
12026{
12027#ifdef USG
12028 /* USG systems forget handlers when they are used;
12029 must reestablish each time */
12030 signal (signalnum, x_connection_signal);
12031#endif /* USG */
12032}
0da1ab50 12033
e99db5a1 12034\f
0da1ab50
GM
12035/************************************************************************
12036 Handling X errors
12037 ************************************************************************/
4746118a 12038
f0e299de
GM
12039/* Error message passed to x_connection_closed. */
12040
12041static char *error_msg;
12042
a7248e4f 12043/* Function installed as fatal_error_signal_hook in
f0e299de
GM
12044 x_connection_closed. Print the X error message, and exit normally,
12045 instead of dumping core when XtCloseDisplay fails. */
12046
12047static void
12048x_fatal_error_signal ()
12049{
12050 fprintf (stderr, "%s\n", error_msg);
12051 exit (70);
12052}
12053
0da1ab50
GM
12054/* Handle the loss of connection to display DPY. ERROR_MESSAGE is
12055 the text of an error message that lead to the connection loss. */
16bd92ea 12056
4746118a 12057static SIGTYPE
5978125e
GM
12058x_connection_closed (dpy, error_message)
12059 Display *dpy;
7a13e894 12060 char *error_message;
4746118a 12061{
5978125e 12062 struct x_display_info *dpyinfo = x_display_info_for_display (dpy);
7a13e894 12063 Lisp_Object frame, tail;
0da1ab50 12064 int count;
0da1ab50 12065
f0e299de
GM
12066 error_msg = (char *) alloca (strlen (error_message) + 1);
12067 strcpy (error_msg, error_message);
1a532e54
GM
12068 handling_signal = 0;
12069
0da1ab50
GM
12070 /* Prevent being called recursively because of an error condition
12071 below. Otherwise, we might end up with printing ``can't find per
12072 display information'' in the recursive call instead of printing
12073 the original message here. */
12074 count = x_catch_errors (dpy);
12075
8a4f36cc
GM
12076 /* We have to close the display to inform Xt that it doesn't
12077 exist anymore. If we don't, Xt will continue to wait for
12078 events from the display. As a consequence, a sequence of
12079
12080 M-x make-frame-on-display RET :1 RET
12081 ...kill the new frame, so that we get an IO error...
12082 M-x make-frame-on-display RET :1 RET
12083
12084 will indefinitely wait in Xt for events for display `:1', opened
12085 in the first class to make-frame-on-display.
6186a4a0 12086
8a4f36cc
GM
12087 Closing the display is reported to lead to a bus error on
12088 OpenWindows in certain situations. I suspect that is a bug
12089 in OpenWindows. I don't know how to cicumvent it here. */
12090
f613a4c8 12091#ifdef USE_X_TOOLKIT
ae24cb3b
GM
12092 /* If DPYINFO is null, this means we didn't open the display
12093 in the first place, so don't try to close it. */
12094 if (dpyinfo)
f0e299de
GM
12095 {
12096 extern void (*fatal_error_signal_hook) P_ ((void));
12097 fatal_error_signal_hook = x_fatal_error_signal;
12098 XtCloseDisplay (dpy);
12099 fatal_error_signal_hook = NULL;
12100 }
f613a4c8 12101#endif
adabc3a9 12102
8a4f36cc 12103 /* Indicate that this display is dead. */
9e80b57d
KR
12104 if (dpyinfo)
12105 dpyinfo->display = 0;
6186a4a0 12106
06a2c219 12107 /* First delete frames whose mini-buffers are on frames
7a13e894
RS
12108 that are on the dead display. */
12109 FOR_EACH_FRAME (tail, frame)
12110 {
12111 Lisp_Object minibuf_frame;
12112 minibuf_frame
12113 = WINDOW_FRAME (XWINDOW (FRAME_MINIBUF_WINDOW (XFRAME (frame))));
f48f33ca
RS
12114 if (FRAME_X_P (XFRAME (frame))
12115 && FRAME_X_P (XFRAME (minibuf_frame))
12116 && ! EQ (frame, minibuf_frame)
12117 && FRAME_X_DISPLAY_INFO (XFRAME (minibuf_frame)) == dpyinfo)
7a13e894
RS
12118 Fdelete_frame (frame, Qt);
12119 }
12120
12121 /* Now delete all remaining frames on the dead display.
06a2c219 12122 We are now sure none of these is used as the mini-buffer
7a13e894
RS
12123 for another frame that we need to delete. */
12124 FOR_EACH_FRAME (tail, frame)
f48f33ca
RS
12125 if (FRAME_X_P (XFRAME (frame))
12126 && FRAME_X_DISPLAY_INFO (XFRAME (frame)) == dpyinfo)
07a7096a
KH
12127 {
12128 /* Set this to t so that Fdelete_frame won't get confused
12129 trying to find a replacement. */
12130 FRAME_KBOARD (XFRAME (frame))->Vdefault_minibuffer_frame = Qt;
12131 Fdelete_frame (frame, Qt);
12132 }
7a13e894 12133
482a1bd2
KH
12134 if (dpyinfo)
12135 x_delete_display (dpyinfo);
7a13e894 12136
0da1ab50
GM
12137 x_uncatch_errors (dpy, count);
12138
7a13e894
RS
12139 if (x_display_list == 0)
12140 {
f0e299de 12141 fprintf (stderr, "%s\n", error_msg);
7a13e894
RS
12142 shut_down_emacs (0, 0, Qnil);
12143 exit (70);
12144 }
12ba150f 12145
7a13e894
RS
12146 /* Ordinary stack unwind doesn't deal with these. */
12147#ifdef SIGIO
12148 sigunblock (sigmask (SIGIO));
12149#endif
12150 sigunblock (sigmask (SIGALRM));
12151 TOTALLY_UNBLOCK_INPUT;
12152
aa4d9a9e 12153 clear_waiting_for_input ();
f0e299de 12154 error ("%s", error_msg);
4746118a
JB
12155}
12156
0da1ab50 12157
7a13e894
RS
12158/* This is the usual handler for X protocol errors.
12159 It kills all frames on the display that we got the error for.
12160 If that was the only one, it prints an error message and kills Emacs. */
12161
06a2c219 12162static void
c118dd06
JB
12163x_error_quitter (display, error)
12164 Display *display;
12165 XErrorEvent *error;
12166{
7a13e894 12167 char buf[256], buf1[356];
dc6f92b8 12168
58769bee 12169 /* Note that there is no real way portable across R3/R4 to get the
c118dd06 12170 original error handler. */
dc6f92b8 12171
c118dd06 12172 XGetErrorText (display, error->error_code, buf, sizeof (buf));
0a0fdc70 12173 sprintf (buf1, "X protocol error: %s on protocol request %d",
c118dd06 12174 buf, error->request_code);
7a13e894 12175 x_connection_closed (display, buf1);
dc6f92b8
JB
12176}
12177
0da1ab50 12178
e99db5a1
RS
12179/* This is the first-level handler for X protocol errors.
12180 It calls x_error_quitter or x_error_catcher. */
7a13e894 12181
8922af5f 12182static int
e99db5a1 12183x_error_handler (display, error)
8922af5f 12184 Display *display;
e99db5a1 12185 XErrorEvent *error;
8922af5f 12186{
e99db5a1
RS
12187 if (! NILP (x_error_message_string))
12188 x_error_catcher (display, error);
12189 else
12190 x_error_quitter (display, error);
06a2c219 12191 return 0;
f9e24cb9 12192}
c118dd06 12193
e99db5a1
RS
12194/* This is the handler for X IO errors, always.
12195 It kills all frames on the display that we lost touch with.
12196 If that was the only one, it prints an error message and kills Emacs. */
7a13e894 12197
c118dd06 12198static int
e99db5a1 12199x_io_error_quitter (display)
c118dd06 12200 Display *display;
c118dd06 12201{
e99db5a1 12202 char buf[256];
dc6f92b8 12203
e99db5a1
RS
12204 sprintf (buf, "Connection lost to X server `%s'", DisplayString (display));
12205 x_connection_closed (display, buf);
06a2c219 12206 return 0;
dc6f92b8 12207}
dc6f92b8 12208\f
f451eb13
JB
12209/* Changing the font of the frame. */
12210
76bcdf39
RS
12211/* Give frame F the font named FONTNAME as its default font, and
12212 return the full name of that font. FONTNAME may be a wildcard
12213 pattern; in that case, we choose some font that fits the pattern.
12214 The return value shows which font we chose. */
12215
b5cf7a0e 12216Lisp_Object
f676886a
JB
12217x_new_font (f, fontname)
12218 struct frame *f;
dc6f92b8
JB
12219 register char *fontname;
12220{
dc43ef94 12221 struct font_info *fontp
ee569018 12222 = FS_LOAD_FONT (f, 0, fontname, -1);
dc6f92b8 12223
dc43ef94
KH
12224 if (!fontp)
12225 return Qnil;
2224a5fc 12226
dc43ef94 12227 f->output_data.x->font = (XFontStruct *) (fontp->font);
b4192550 12228 f->output_data.x->baseline_offset = fontp->baseline_offset;
dc43ef94 12229 f->output_data.x->fontset = -1;
976b73d7
KS
12230
12231 x_compute_fringe_widths (f, 1);
12232
b2cad826
KH
12233 /* Compute the scroll bar width in character columns. */
12234 if (f->scroll_bar_pixel_width > 0)
12235 {
7556890b 12236 int wid = FONT_WIDTH (f->output_data.x->font);
b2cad826
KH
12237 f->scroll_bar_cols = (f->scroll_bar_pixel_width + wid-1) / wid;
12238 }
12239 else
4e61bddf
RS
12240 {
12241 int wid = FONT_WIDTH (f->output_data.x->font);
12242 f->scroll_bar_cols = (14 + wid - 1) / wid;
12243 }
b2cad826 12244
f676886a 12245 /* Now make the frame display the given font. */
c118dd06 12246 if (FRAME_X_WINDOW (f) != 0)
dc6f92b8 12247 {
7556890b
RS
12248 XSetFont (FRAME_X_DISPLAY (f), f->output_data.x->normal_gc,
12249 f->output_data.x->font->fid);
12250 XSetFont (FRAME_X_DISPLAY (f), f->output_data.x->reverse_gc,
12251 f->output_data.x->font->fid);
12252 XSetFont (FRAME_X_DISPLAY (f), f->output_data.x->cursor_gc,
12253 f->output_data.x->font->fid);
f676886a 12254
a27f9f86 12255 frame_update_line_height (f);
3497f73e
GM
12256
12257 /* Don't change the size of a tip frame; there's no point in
12258 doing it because it's done in Fx_show_tip, and it leads to
12259 problems because the tip frame has no widget. */
12260 if (NILP (tip_frame) || XFRAME (tip_frame) != f)
12261 x_set_window_size (f, 0, f->width, f->height);
dc6f92b8 12262 }
a27f9f86
RS
12263 else
12264 /* If we are setting a new frame's font for the first time,
12265 there are no faces yet, so this font's height is the line height. */
7556890b 12266 f->output_data.x->line_height = FONT_HEIGHT (f->output_data.x->font);
dc6f92b8 12267
dc43ef94
KH
12268 return build_string (fontp->full_name);
12269}
12270
12271/* Give frame F the fontset named FONTSETNAME as its default font, and
12272 return the full name of that fontset. FONTSETNAME may be a wildcard
b5210ea7
KH
12273 pattern; in that case, we choose some fontset that fits the pattern.
12274 The return value shows which fontset we chose. */
b5cf7a0e 12275
dc43ef94
KH
12276Lisp_Object
12277x_new_fontset (f, fontsetname)
12278 struct frame *f;
12279 char *fontsetname;
12280{
ee569018 12281 int fontset = fs_query_fontset (build_string (fontsetname), 0);
dc43ef94 12282 Lisp_Object result;
b5cf7a0e 12283
dc43ef94
KH
12284 if (fontset < 0)
12285 return Qnil;
b5cf7a0e 12286
2da424f1
KH
12287 if (f->output_data.x->fontset == fontset)
12288 /* This fontset is already set in frame F. There's nothing more
12289 to do. */
ee569018 12290 return fontset_name (fontset);
dc43ef94 12291
ee569018 12292 result = x_new_font (f, (XSTRING (fontset_ascii (fontset))->data));
dc43ef94
KH
12293
12294 if (!STRINGP (result))
12295 /* Can't load ASCII font. */
12296 return Qnil;
12297
12298 /* Since x_new_font doesn't update any fontset information, do it now. */
12299 f->output_data.x->fontset = fontset;
dc43ef94 12300
f5d11644
GM
12301#ifdef HAVE_X_I18N
12302 if (FRAME_XIC (f)
12303 && (FRAME_XIC_STYLE (f) & (XIMPreeditPosition | XIMStatusArea)))
ee569018 12304 xic_set_xfontset (f, XSTRING (fontset_ascii (fontset))->data);
f5d11644
GM
12305#endif
12306
dc43ef94 12307 return build_string (fontsetname);
dc6f92b8 12308}
f5d11644 12309
976b73d7
KS
12310/* Compute actual fringe widths */
12311
12312void
12313x_compute_fringe_widths (f, redraw)
12314 struct frame *f;
12315 int redraw;
12316{
12317 int o_left = f->output_data.x->left_fringe_width;
12318 int o_right = f->output_data.x->right_fringe_width;
12319 int o_cols = f->output_data.x->fringe_cols;
12320
12321 Lisp_Object left_fringe = Fassq (Qleft_fringe, f->param_alist);
12322 Lisp_Object right_fringe = Fassq (Qright_fringe, f->param_alist);
12323 int left_fringe_width, right_fringe_width;
12324
12325 if (!NILP (left_fringe))
12326 left_fringe = Fcdr (left_fringe);
12327 if (!NILP (right_fringe))
12328 right_fringe = Fcdr (right_fringe);
12329
12330 left_fringe_width = ((NILP (left_fringe) || !INTEGERP (left_fringe)) ? 8 :
12331 XINT (left_fringe));
12332 right_fringe_width = ((NILP (right_fringe) || !INTEGERP (right_fringe)) ? 8 :
12333 XINT (right_fringe));
12334
12335 if (left_fringe_width || right_fringe_width)
12336 {
12337 int left_wid = left_fringe_width >= 0 ? left_fringe_width : -left_fringe_width;
12338 int right_wid = right_fringe_width >= 0 ? right_fringe_width : -right_fringe_width;
12339 int conf_wid = left_wid + right_wid;
12340 int font_wid = FONT_WIDTH (f->output_data.x->font);
12341 int cols = (left_wid + right_wid + font_wid-1) / font_wid;
12342 int real_wid = cols * font_wid;
12343 if (left_wid && right_wid)
12344 {
12345 if (left_fringe_width < 0)
12346 {
12347 /* Left fringe width is fixed, adjust right fringe if necessary */
12348 f->output_data.x->left_fringe_width = left_wid;
12349 f->output_data.x->right_fringe_width = real_wid - left_wid;
12350 }
12351 else if (right_fringe_width < 0)
12352 {
12353 /* Right fringe width is fixed, adjust left fringe if necessary */
12354 f->output_data.x->left_fringe_width = real_wid - right_wid;
12355 f->output_data.x->right_fringe_width = right_wid;
12356 }
12357 else
12358 {
12359 /* Adjust both fringes with an equal amount.
12360 Note that we are doing integer arithmetic here, so don't
12361 lose a pixel if the total width is an odd number. */
12362 int fill = real_wid - conf_wid;
12363 f->output_data.x->left_fringe_width = left_wid + fill/2;
12364 f->output_data.x->right_fringe_width = right_wid + fill - fill/2;
12365 }
12366 }
12367 else if (left_fringe_width)
12368 {
12369 f->output_data.x->left_fringe_width = real_wid;
12370 f->output_data.x->right_fringe_width = 0;
12371 }
12372 else
12373 {
12374 f->output_data.x->left_fringe_width = 0;
12375 f->output_data.x->right_fringe_width = real_wid;
12376 }
12377 f->output_data.x->fringe_cols = cols;
12378 f->output_data.x->fringes_extra = real_wid;
12379 }
12380 else
12381 {
12382 f->output_data.x->left_fringe_width = 0;
12383 f->output_data.x->right_fringe_width = 0;
12384 f->output_data.x->fringe_cols = 0;
12385 f->output_data.x->fringes_extra = 0;
12386 }
12387
12388 if (redraw && FRAME_VISIBLE_P (f))
12389 if (o_left != f->output_data.x->left_fringe_width ||
12390 o_right != f->output_data.x->right_fringe_width ||
12391 o_cols != f->output_data.x->fringe_cols)
12392 redraw_frame (f);
12393}
f5d11644
GM
12394\f
12395/***********************************************************************
12396 X Input Methods
12397 ***********************************************************************/
12398
12399#ifdef HAVE_X_I18N
12400
12401#ifdef HAVE_X11R6
12402
12403/* XIM destroy callback function, which is called whenever the
12404 connection to input method XIM dies. CLIENT_DATA contains a
12405 pointer to the x_display_info structure corresponding to XIM. */
12406
12407static void
12408xim_destroy_callback (xim, client_data, call_data)
12409 XIM xim;
12410 XPointer client_data;
12411 XPointer call_data;
12412{
12413 struct x_display_info *dpyinfo = (struct x_display_info *) client_data;
12414 Lisp_Object frame, tail;
12415
12416 BLOCK_INPUT;
12417
12418 /* No need to call XDestroyIC.. */
12419 FOR_EACH_FRAME (tail, frame)
12420 {
12421 struct frame *f = XFRAME (frame);
12422 if (FRAME_X_DISPLAY_INFO (f) == dpyinfo)
12423 {
12424 FRAME_XIC (f) = NULL;
12425 if (FRAME_XIC_FONTSET (f))
12426 {
12427 XFreeFontSet (FRAME_X_DISPLAY (f), FRAME_XIC_FONTSET (f));
12428 FRAME_XIC_FONTSET (f) = NULL;
12429 }
12430 }
12431 }
12432
12433 /* No need to call XCloseIM. */
12434 dpyinfo->xim = NULL;
12435 XFree (dpyinfo->xim_styles);
12436 UNBLOCK_INPUT;
12437}
12438
12439#endif /* HAVE_X11R6 */
12440
12441/* Open the connection to the XIM server on display DPYINFO.
12442 RESOURCE_NAME is the resource name Emacs uses. */
12443
12444static void
12445xim_open_dpy (dpyinfo, resource_name)
12446 struct x_display_info *dpyinfo;
12447 char *resource_name;
12448{
287f7dd6 12449#ifdef USE_XIM
f5d11644
GM
12450 XIM xim;
12451
12452 xim = XOpenIM (dpyinfo->display, dpyinfo->xrdb, resource_name, EMACS_CLASS);
12453 dpyinfo->xim = xim;
12454
12455 if (xim)
12456 {
f5d11644
GM
12457#ifdef HAVE_X11R6
12458 XIMCallback destroy;
12459#endif
12460
12461 /* Get supported styles and XIM values. */
12462 XGetIMValues (xim, XNQueryInputStyle, &dpyinfo->xim_styles, NULL);
12463
12464#ifdef HAVE_X11R6
12465 destroy.callback = xim_destroy_callback;
12466 destroy.client_data = (XPointer)dpyinfo;
cea2ad76 12467 /* This isn't prototyped in OSF 5.0. */
f5d11644
GM
12468 XSetIMValues (xim, XNDestroyCallback, &destroy, NULL);
12469#endif
12470 }
287f7dd6
GM
12471
12472#else /* not USE_XIM */
12473 dpyinfo->xim = NULL;
12474#endif /* not USE_XIM */
f5d11644
GM
12475}
12476
12477
b9de836c 12478#ifdef HAVE_X11R6_XIM
f5d11644
GM
12479
12480struct xim_inst_t
12481{
12482 struct x_display_info *dpyinfo;
12483 char *resource_name;
12484};
12485
12486/* XIM instantiate callback function, which is called whenever an XIM
12487 server is available. DISPLAY is teh display of the XIM.
12488 CLIENT_DATA contains a pointer to an xim_inst_t structure created
12489 when the callback was registered. */
12490
12491static void
12492xim_instantiate_callback (display, client_data, call_data)
12493 Display *display;
12494 XPointer client_data;
12495 XPointer call_data;
12496{
12497 struct xim_inst_t *xim_inst = (struct xim_inst_t *) client_data;
12498 struct x_display_info *dpyinfo = xim_inst->dpyinfo;
12499
12500 /* We don't support multiple XIM connections. */
12501 if (dpyinfo->xim)
12502 return;
12503
12504 xim_open_dpy (dpyinfo, xim_inst->resource_name);
12505
12506 /* Create XIC for the existing frames on the same display, as long
12507 as they have no XIC. */
12508 if (dpyinfo->xim && dpyinfo->reference_count > 0)
12509 {
12510 Lisp_Object tail, frame;
12511
12512 BLOCK_INPUT;
12513 FOR_EACH_FRAME (tail, frame)
12514 {
12515 struct frame *f = XFRAME (frame);
12516
12517 if (FRAME_X_DISPLAY_INFO (f) == xim_inst->dpyinfo)
12518 if (FRAME_XIC (f) == NULL)
12519 {
12520 create_frame_xic (f);
12521 if (FRAME_XIC_STYLE (f) & XIMStatusArea)
12522 xic_set_statusarea (f);
12523 if (FRAME_XIC_STYLE (f) & XIMPreeditPosition)
12524 {
12525 struct window *w = XWINDOW (f->selected_window);
12526 xic_set_preeditarea (w, w->cursor.x, w->cursor.y);
12527 }
12528 }
12529 }
12530
12531 UNBLOCK_INPUT;
12532 }
12533}
12534
b9de836c 12535#endif /* HAVE_X11R6_XIM */
f5d11644
GM
12536
12537
12538/* Open a connection to the XIM server on display DPYINFO.
12539 RESOURCE_NAME is the resource name for Emacs. On X11R5, open the
12540 connection only at the first time. On X11R6, open the connection
12541 in the XIM instantiate callback function. */
12542
12543static void
12544xim_initialize (dpyinfo, resource_name)
12545 struct x_display_info *dpyinfo;
12546 char *resource_name;
12547{
287f7dd6 12548#ifdef USE_XIM
b9de836c 12549#ifdef HAVE_X11R6_XIM
f5d11644
GM
12550 struct xim_inst_t *xim_inst;
12551 int len;
12552
12553 dpyinfo->xim = NULL;
12554 xim_inst = (struct xim_inst_t *) xmalloc (sizeof (struct xim_inst_t));
12555 xim_inst->dpyinfo = dpyinfo;
12556 len = strlen (resource_name);
12557 xim_inst->resource_name = (char *) xmalloc (len + 1);
12558 bcopy (resource_name, xim_inst->resource_name, len + 1);
12559 XRegisterIMInstantiateCallback (dpyinfo->display, dpyinfo->xrdb,
12560 resource_name, EMACS_CLASS,
12561 xim_instantiate_callback,
2ebb2f8b
DL
12562 /* Fixme: This is XPointer in
12563 XFree86 but (XPointer *) on
12564 Tru64, at least. */
12565 (XPointer) xim_inst);
b9de836c 12566#else /* not HAVE_X11R6_XIM */
f5d11644
GM
12567 dpyinfo->xim = NULL;
12568 xim_open_dpy (dpyinfo, resource_name);
b9de836c 12569#endif /* not HAVE_X11R6_XIM */
287f7dd6
GM
12570
12571#else /* not USE_XIM */
12572 dpyinfo->xim = NULL;
12573#endif /* not USE_XIM */
f5d11644
GM
12574}
12575
12576
12577/* Close the connection to the XIM server on display DPYINFO. */
12578
12579static void
12580xim_close_dpy (dpyinfo)
12581 struct x_display_info *dpyinfo;
12582{
287f7dd6 12583#ifdef USE_XIM
b9de836c 12584#ifdef HAVE_X11R6_XIM
8a4f36cc
GM
12585 if (dpyinfo->display)
12586 XUnregisterIMInstantiateCallback (dpyinfo->display, dpyinfo->xrdb,
12587 NULL, EMACS_CLASS,
12588 xim_instantiate_callback, NULL);
b9de836c 12589#endif /* not HAVE_X11R6_XIM */
8a4f36cc
GM
12590 if (dpyinfo->display)
12591 XCloseIM (dpyinfo->xim);
f5d11644
GM
12592 dpyinfo->xim = NULL;
12593 XFree (dpyinfo->xim_styles);
287f7dd6 12594#endif /* USE_XIM */
f5d11644
GM
12595}
12596
b9de836c 12597#endif /* not HAVE_X11R6_XIM */
f5d11644
GM
12598
12599
dc6f92b8 12600\f
2e365682
RS
12601/* Calculate the absolute position in frame F
12602 from its current recorded position values and gravity. */
12603
dfcf069d 12604void
43bca5d5 12605x_calc_absolute_position (f)
f676886a 12606 struct frame *f;
dc6f92b8 12607{
06a2c219 12608 Window child;
6dba1858 12609 int win_x = 0, win_y = 0;
7556890b 12610 int flags = f->output_data.x->size_hint_flags;
c81412a0
KH
12611 int this_window;
12612
9829ddba
RS
12613 /* We have nothing to do if the current position
12614 is already for the top-left corner. */
12615 if (! ((flags & XNegative) || (flags & YNegative)))
12616 return;
12617
c81412a0 12618#ifdef USE_X_TOOLKIT
7556890b 12619 this_window = XtWindow (f->output_data.x->widget);
c81412a0
KH
12620#else
12621 this_window = FRAME_X_WINDOW (f);
12622#endif
6dba1858
RS
12623
12624 /* Find the position of the outside upper-left corner of
9829ddba
RS
12625 the inner window, with respect to the outer window.
12626 But do this only if we will need the results. */
7556890b 12627 if (f->output_data.x->parent_desc != FRAME_X_DISPLAY_INFO (f)->root_window)
6dba1858 12628 {
9829ddba
RS
12629 int count;
12630
6dba1858 12631 BLOCK_INPUT;
9829ddba
RS
12632 count = x_catch_errors (FRAME_X_DISPLAY (f));
12633 while (1)
12634 {
12635 x_clear_errors (FRAME_X_DISPLAY (f));
12636 XTranslateCoordinates (FRAME_X_DISPLAY (f),
12637
12638 /* From-window, to-window. */
12639 this_window,
12640 f->output_data.x->parent_desc,
12641
12642 /* From-position, to-position. */
12643 0, 0, &win_x, &win_y,
12644
12645 /* Child of win. */
12646 &child);
12647 if (x_had_errors_p (FRAME_X_DISPLAY (f)))
12648 {
12649 Window newroot, newparent = 0xdeadbeef;
12650 Window *newchildren;
2ebb2f8b 12651 unsigned int nchildren;
9829ddba
RS
12652
12653 if (! XQueryTree (FRAME_X_DISPLAY (f), this_window, &newroot,
12654 &newparent, &newchildren, &nchildren))
12655 break;
58769bee 12656
7c3c78a3 12657 XFree ((char *) newchildren);
6dba1858 12658
9829ddba
RS
12659 f->output_data.x->parent_desc = newparent;
12660 }
12661 else
12662 break;
12663 }
6dba1858 12664
9829ddba 12665 x_uncatch_errors (FRAME_X_DISPLAY (f), count);
6dba1858
RS
12666 UNBLOCK_INPUT;
12667 }
12668
12669 /* Treat negative positions as relative to the leftmost bottommost
12670 position that fits on the screen. */
20f55f9a 12671 if (flags & XNegative)
7556890b 12672 f->output_data.x->left_pos = (FRAME_X_DISPLAY_INFO (f)->width
2e365682
RS
12673 - 2 * f->output_data.x->border_width - win_x
12674 - PIXEL_WIDTH (f)
12675 + f->output_data.x->left_pos);
dc6f92b8 12676
7708ced0
GM
12677 {
12678 int height = PIXEL_HEIGHT (f);
06a2c219 12679
7708ced0
GM
12680#if defined USE_X_TOOLKIT && defined USE_MOTIF
12681 /* Something is fishy here. When using Motif, starting Emacs with
12682 `-g -0-0', the frame appears too low by a few pixels.
12683
12684 This seems to be so because initially, while Emacs is starting,
12685 the column widget's height and the frame's pixel height are
12686 different. The column widget's height is the right one. In
12687 later invocations, when Emacs is up, the frame's pixel height
12688 is right, though.
12689
12690 It's not obvious where the initial small difference comes from.
12691 2000-12-01, gerd. */
12692
12693 XtVaGetValues (f->output_data.x->column_widget, XtNheight, &height, NULL);
06a2c219 12694#endif
2e365682 12695
7708ced0
GM
12696 if (flags & YNegative)
12697 f->output_data.x->top_pos = (FRAME_X_DISPLAY_INFO (f)->height
12698 - 2 * f->output_data.x->border_width
12699 - win_y
12700 - height
12701 + f->output_data.x->top_pos);
12702 }
12703
3a35ab44
RS
12704 /* The left_pos and top_pos
12705 are now relative to the top and left screen edges,
12706 so the flags should correspond. */
7556890b 12707 f->output_data.x->size_hint_flags &= ~ (XNegative | YNegative);
dc6f92b8
JB
12708}
12709
3a35ab44
RS
12710/* CHANGE_GRAVITY is 1 when calling from Fset_frame_position,
12711 to really change the position, and 0 when calling from
12712 x_make_frame_visible (in that case, XOFF and YOFF are the current
aa3ff7c9
KH
12713 position values). It is -1 when calling from x_set_frame_parameters,
12714 which means, do adjust for borders but don't change the gravity. */
3a35ab44 12715
dfcf069d 12716void
dc05a16b 12717x_set_offset (f, xoff, yoff, change_gravity)
f676886a 12718 struct frame *f;
dc6f92b8 12719 register int xoff, yoff;
dc05a16b 12720 int change_gravity;
dc6f92b8 12721{
4a4cbdd5
KH
12722 int modified_top, modified_left;
12723
aa3ff7c9 12724 if (change_gravity > 0)
3a35ab44 12725 {
7556890b
RS
12726 f->output_data.x->top_pos = yoff;
12727 f->output_data.x->left_pos = xoff;
12728 f->output_data.x->size_hint_flags &= ~ (XNegative | YNegative);
3a35ab44 12729 if (xoff < 0)
7556890b 12730 f->output_data.x->size_hint_flags |= XNegative;
3a35ab44 12731 if (yoff < 0)
7556890b
RS
12732 f->output_data.x->size_hint_flags |= YNegative;
12733 f->output_data.x->win_gravity = NorthWestGravity;
3a35ab44 12734 }
43bca5d5 12735 x_calc_absolute_position (f);
dc6f92b8
JB
12736
12737 BLOCK_INPUT;
c32cdd9a 12738 x_wm_set_size_hint (f, (long) 0, 0);
3a35ab44 12739
7556890b
RS
12740 modified_left = f->output_data.x->left_pos;
12741 modified_top = f->output_data.x->top_pos;
e73ec6fa
RS
12742#if 0 /* Running on psilocin (Debian), and displaying on the NCD X-terminal,
12743 this seems to be unnecessary and incorrect. rms, 4/17/97. */
12744 /* It is a mystery why we need to add the border_width here
12745 when the frame is already visible, but experiment says we do. */
aa3ff7c9 12746 if (change_gravity != 0)
4a4cbdd5 12747 {
7556890b
RS
12748 modified_left += f->output_data.x->border_width;
12749 modified_top += f->output_data.x->border_width;
4a4cbdd5 12750 }
e73ec6fa 12751#endif
4a4cbdd5 12752
3afe33e7 12753#ifdef USE_X_TOOLKIT
7556890b 12754 XMoveWindow (FRAME_X_DISPLAY (f), XtWindow (f->output_data.x->widget),
4a4cbdd5 12755 modified_left, modified_top);
3afe33e7 12756#else /* not USE_X_TOOLKIT */
334208b7 12757 XMoveWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
4a4cbdd5 12758 modified_left, modified_top);
3afe33e7 12759#endif /* not USE_X_TOOLKIT */
dc6f92b8
JB
12760 UNBLOCK_INPUT;
12761}
12762
d0fa3e56
EZ
12763/* Check if we need to resize the frame due to a fullscreen request.
12764 If so needed, resize the frame. */
12765static void
12766x_check_fullscreen (f)
12767 struct frame *f;
12768{
12769 if (f->output_data.x->want_fullscreen & FULLSCREEN_BOTH)
12770 {
12771 int width, height, ign;
12772
12773 x_real_positions (f, &f->output_data.x->left_pos,
12774 &f->output_data.x->top_pos);
12775
12776 x_fullscreen_adjust (f, &width, &height, &ign, &ign);
12777
12778 /* We do not need to move the window, it shall be taken care of
12779 when setting WM manager hints.
12780 If the frame is visible already, the position is checked by
12781 x_check_fullscreen_move. */
12782 if (f->width != width || f->height != height)
12783 {
12784 change_frame_size (f, height, width, 0, 1, 0);
12785 SET_FRAME_GARBAGED (f);
12786 cancel_mouse_face (f);
12787
12788 /* Wait for the change of frame size to occur */
12789 f->output_data.x->want_fullscreen |= FULLSCREEN_WAIT;
12790
12791 }
12792 }
12793}
12794
12795/* If frame parameters are set after the frame is mapped, we need to move
12796 the window. This is done in xfns.c.
12797 Some window managers moves the window to the right position, some
12798 moves the outer window manager window to the specified position.
12799 Here we check that we are in the right spot. If not, make a second
12800 move, assuming we are dealing with the second kind of window manager. */
12801static void
12802x_check_fullscreen_move (f)
12803 struct frame *f;
12804{
12805 if (f->output_data.x->want_fullscreen & FULLSCREEN_MOVE_WAIT)
12806 {
12807 int expect_top = f->output_data.x->top_pos;
12808 int expect_left = f->output_data.x->left_pos;
12809
12810 if (f->output_data.x->want_fullscreen & FULLSCREEN_HEIGHT)
12811 expect_top = 0;
12812 if (f->output_data.x->want_fullscreen & FULLSCREEN_WIDTH)
12813 expect_left = 0;
12814
12815 if (expect_top != f->output_data.x->top_pos
12816 || expect_left != f->output_data.x->left_pos)
12817 x_set_offset (f, expect_left, expect_top, 1);
12818
12819 /* Just do this once */
12820 f->output_data.x->want_fullscreen &= ~FULLSCREEN_MOVE_WAIT;
12821 }
12822}
12823
12824
12825/* Calculate fullscreen size. Return in *TOP_POS and *LEFT_POS the
12826 wanted positions of the WM window (not emacs window).
12827 Return in *WIDTH and *HEIGHT the wanted width and height of Emacs
12828 window (FRAME_X_WINDOW).
12829 */
12830void
12831x_fullscreen_adjust (f, width, height, top_pos, left_pos)
12832 struct frame *f;
12833 int *width;
12834 int *height;
12835 int *top_pos;
12836 int *left_pos;
12837{
12838 int newwidth = f->width, newheight = f->height;
12839
12840 *top_pos = f->output_data.x->top_pos;
12841 *left_pos = f->output_data.x->left_pos;
12842
12843 if (f->output_data.x->want_fullscreen & FULLSCREEN_HEIGHT)
12844 {
12845 int ph;
12846
12847 ph = FRAME_X_DISPLAY_INFO (f)->height;
12848 newheight = PIXEL_TO_CHAR_HEIGHT (f, ph);
12849 ph = CHAR_TO_PIXEL_HEIGHT (f, newheight)
12850 - f->output_data.x->y_pixels_diff;
12851 newheight = PIXEL_TO_CHAR_HEIGHT (f, ph);
12852 *top_pos = 0;
12853 }
12854
12855 if (f->output_data.x->want_fullscreen & FULLSCREEN_WIDTH)
12856 {
12857 int pw;
12858
12859 pw = FRAME_X_DISPLAY_INFO (f)->width;
12860 newwidth = PIXEL_TO_CHAR_WIDTH (f, pw);
12861 pw = CHAR_TO_PIXEL_WIDTH (f, newwidth)
12862 - f->output_data.x->x_pixels_diff;
12863 newwidth = PIXEL_TO_CHAR_WIDTH (f, pw);
12864 *left_pos = 0;
12865 }
12866
12867 *width = newwidth;
12868 *height = newheight;
12869}
12870
dc6f92b8 12871
499b1844
GM
12872/* Change the size of frame F's X window to COLS/ROWS in the case F
12873 doesn't have a widget. If CHANGE_GRAVITY is 1, we change to
12874 top-left-corner window gravity for this size change and subsequent
12875 size changes. Otherwise we leave the window gravity unchanged. */
12876
12877static void
12878x_set_window_size_1 (f, change_gravity, cols, rows)
f676886a 12879 struct frame *f;
bc20ebbf 12880 int change_gravity;
b1c884c3 12881 int cols, rows;
dc6f92b8
JB
12882{
12883 int pixelwidth, pixelheight;
80fd1fe2 12884
b1c884c3 12885 check_frame_size (f, &rows, &cols);
7556890b 12886 f->output_data.x->vertical_scroll_bar_extra
b2cad826
KH
12887 = (!FRAME_HAS_VERTICAL_SCROLL_BARS (f)
12888 ? 0
12889 : FRAME_SCROLL_BAR_PIXEL_WIDTH (f) > 0
480407eb 12890 ? FRAME_SCROLL_BAR_PIXEL_WIDTH (f)
7556890b 12891 : (FRAME_SCROLL_BAR_COLS (f) * FONT_WIDTH (f->output_data.x->font)));
976b73d7
KS
12892
12893 x_compute_fringe_widths (f, 0);
12894
f451eb13
JB
12895 pixelwidth = CHAR_TO_PIXEL_WIDTH (f, cols);
12896 pixelheight = CHAR_TO_PIXEL_HEIGHT (f, rows);
dc6f92b8 12897
7556890b 12898 f->output_data.x->win_gravity = NorthWestGravity;
c32cdd9a 12899 x_wm_set_size_hint (f, (long) 0, 0);
6ccf47d1 12900
334208b7
RS
12901 XSync (FRAME_X_DISPLAY (f), False);
12902 XResizeWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
12903 pixelwidth, pixelheight);
b1c884c3
JB
12904
12905 /* Now, strictly speaking, we can't be sure that this is accurate,
12906 but the window manager will get around to dealing with the size
12907 change request eventually, and we'll hear how it went when the
dbc4e1c1
JB
12908 ConfigureNotify event gets here.
12909
12910 We could just not bother storing any of this information here,
12911 and let the ConfigureNotify event set everything up, but that
fddd5ceb 12912 might be kind of confusing to the Lisp code, since size changes
dbc4e1c1 12913 wouldn't be reported in the frame parameters until some random
fddd5ceb
RS
12914 point in the future when the ConfigureNotify event arrives.
12915
12916 We pass 1 for DELAY since we can't run Lisp code inside of
12917 a BLOCK_INPUT. */
7d1e984f 12918 change_frame_size (f, rows, cols, 0, 1, 0);
b1c884c3
JB
12919 PIXEL_WIDTH (f) = pixelwidth;
12920 PIXEL_HEIGHT (f) = pixelheight;
12921
aee9a898
RS
12922 /* We've set {FRAME,PIXEL}_{WIDTH,HEIGHT} to the values we hope to
12923 receive in the ConfigureNotify event; if we get what we asked
12924 for, then the event won't cause the screen to become garbaged, so
12925 we have to make sure to do it here. */
12926 SET_FRAME_GARBAGED (f);
12927
12928 XFlush (FRAME_X_DISPLAY (f));
499b1844
GM
12929}
12930
12931
12932/* Call this to change the size of frame F's x-window.
12933 If CHANGE_GRAVITY is 1, we change to top-left-corner window gravity
12934 for this size change and subsequent size changes.
12935 Otherwise we leave the window gravity unchanged. */
aee9a898 12936
499b1844
GM
12937void
12938x_set_window_size (f, change_gravity, cols, rows)
12939 struct frame *f;
12940 int change_gravity;
12941 int cols, rows;
12942{
12943 BLOCK_INPUT;
12944
12945#ifdef USE_X_TOOLKIT
12946
f1f4d345 12947 if (f->output_data.x->widget != NULL)
499b1844
GM
12948 {
12949 /* The x and y position of the widget is clobbered by the
12950 call to XtSetValues within EmacsFrameSetCharSize.
12951 This is a real kludge, but I don't understand Xt so I can't
12952 figure out a correct fix. Can anyone else tell me? -- rms. */
12953 int xpos = f->output_data.x->widget->core.x;
12954 int ypos = f->output_data.x->widget->core.y;
12955 EmacsFrameSetCharSize (f->output_data.x->edit_widget, cols, rows);
12956 f->output_data.x->widget->core.x = xpos;
12957 f->output_data.x->widget->core.y = ypos;
12958 }
12959 else
12960 x_set_window_size_1 (f, change_gravity, cols, rows);
12961
12962#else /* not USE_X_TOOLKIT */
12963
12964 x_set_window_size_1 (f, change_gravity, cols, rows);
12965
aee9a898
RS
12966#endif /* not USE_X_TOOLKIT */
12967
4d73d038 12968 /* If cursor was outside the new size, mark it as off. */
06a2c219 12969 mark_window_cursors_off (XWINDOW (f->root_window));
4d73d038 12970
aee9a898
RS
12971 /* Clear out any recollection of where the mouse highlighting was,
12972 since it might be in a place that's outside the new frame size.
12973 Actually checking whether it is outside is a pain in the neck,
12974 so don't try--just let the highlighting be done afresh with new size. */
e687d06e 12975 cancel_mouse_face (f);
dbc4e1c1 12976
dc6f92b8
JB
12977 UNBLOCK_INPUT;
12978}
dc6f92b8 12979\f
d047c4eb 12980/* Mouse warping. */
dc6f92b8 12981
9b378208 12982void
f676886a
JB
12983x_set_mouse_position (f, x, y)
12984 struct frame *f;
dc6f92b8
JB
12985 int x, y;
12986{
12987 int pix_x, pix_y;
12988
7556890b
RS
12989 pix_x = CHAR_TO_PIXEL_COL (f, x) + FONT_WIDTH (f->output_data.x->font) / 2;
12990 pix_y = CHAR_TO_PIXEL_ROW (f, y) + f->output_data.x->line_height / 2;
f451eb13
JB
12991
12992 if (pix_x < 0) pix_x = 0;
12993 if (pix_x > PIXEL_WIDTH (f)) pix_x = PIXEL_WIDTH (f);
12994
12995 if (pix_y < 0) pix_y = 0;
12996 if (pix_y > PIXEL_HEIGHT (f)) pix_y = PIXEL_HEIGHT (f);
dc6f92b8
JB
12997
12998 BLOCK_INPUT;
dc6f92b8 12999
334208b7
RS
13000 XWarpPointer (FRAME_X_DISPLAY (f), None, FRAME_X_WINDOW (f),
13001 0, 0, 0, 0, pix_x, pix_y);
dc6f92b8
JB
13002 UNBLOCK_INPUT;
13003}
13004
9b378208
RS
13005/* Move the mouse to position pixel PIX_X, PIX_Y relative to frame F. */
13006
13007void
13008x_set_mouse_pixel_position (f, pix_x, pix_y)
13009 struct frame *f;
13010 int pix_x, pix_y;
13011{
13012 BLOCK_INPUT;
13013
334208b7
RS
13014 XWarpPointer (FRAME_X_DISPLAY (f), None, FRAME_X_WINDOW (f),
13015 0, 0, 0, 0, pix_x, pix_y);
9b378208
RS
13016 UNBLOCK_INPUT;
13017}
d047c4eb
KH
13018\f
13019/* focus shifting, raising and lowering. */
9b378208 13020
dfcf069d 13021void
f676886a
JB
13022x_focus_on_frame (f)
13023 struct frame *f;
dc6f92b8 13024{
1fb20991 13025#if 0 /* This proves to be unpleasant. */
f676886a 13026 x_raise_frame (f);
1fb20991 13027#endif
6d4238f3
JB
13028#if 0
13029 /* I don't think that the ICCCM allows programs to do things like this
13030 without the interaction of the window manager. Whatever you end up
f676886a 13031 doing with this code, do it to x_unfocus_frame too. */
334208b7 13032 XSetInputFocus (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
dc6f92b8 13033 RevertToPointerRoot, CurrentTime);
c118dd06 13034#endif /* ! 0 */
dc6f92b8
JB
13035}
13036
dfcf069d 13037void
f676886a
JB
13038x_unfocus_frame (f)
13039 struct frame *f;
dc6f92b8 13040{
6d4238f3 13041#if 0
f676886a 13042 /* Look at the remarks in x_focus_on_frame. */
0f941935 13043 if (FRAME_X_DISPLAY_INFO (f)->x_focus_frame == f)
334208b7 13044 XSetInputFocus (FRAME_X_DISPLAY (f), PointerRoot,
dc6f92b8 13045 RevertToPointerRoot, CurrentTime);
c118dd06 13046#endif /* ! 0 */
dc6f92b8
JB
13047}
13048
f676886a 13049/* Raise frame F. */
dc6f92b8 13050
dfcf069d 13051void
f676886a
JB
13052x_raise_frame (f)
13053 struct frame *f;
dc6f92b8 13054{
3a88c238 13055 if (f->async_visible)
dc6f92b8
JB
13056 {
13057 BLOCK_INPUT;
3afe33e7 13058#ifdef USE_X_TOOLKIT
7556890b 13059 XRaiseWindow (FRAME_X_DISPLAY (f), XtWindow (f->output_data.x->widget));
3afe33e7 13060#else /* not USE_X_TOOLKIT */
334208b7 13061 XRaiseWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
3afe33e7 13062#endif /* not USE_X_TOOLKIT */
334208b7 13063 XFlush (FRAME_X_DISPLAY (f));
dc6f92b8
JB
13064 UNBLOCK_INPUT;
13065 }
13066}
13067
f676886a 13068/* Lower frame F. */
dc6f92b8 13069
dfcf069d 13070void
f676886a
JB
13071x_lower_frame (f)
13072 struct frame *f;
dc6f92b8 13073{
3a88c238 13074 if (f->async_visible)
dc6f92b8
JB
13075 {
13076 BLOCK_INPUT;
3afe33e7 13077#ifdef USE_X_TOOLKIT
7556890b 13078 XLowerWindow (FRAME_X_DISPLAY (f), XtWindow (f->output_data.x->widget));
3afe33e7 13079#else /* not USE_X_TOOLKIT */
334208b7 13080 XLowerWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
3afe33e7 13081#endif /* not USE_X_TOOLKIT */
334208b7 13082 XFlush (FRAME_X_DISPLAY (f));
dc6f92b8
JB
13083 UNBLOCK_INPUT;
13084 }
13085}
13086
dbc4e1c1 13087static void
6b0442dc 13088XTframe_raise_lower (f, raise_flag)
dbc4e1c1 13089 FRAME_PTR f;
6b0442dc 13090 int raise_flag;
dbc4e1c1 13091{
6b0442dc 13092 if (raise_flag)
dbc4e1c1
JB
13093 x_raise_frame (f);
13094 else
13095 x_lower_frame (f);
13096}
d047c4eb
KH
13097\f
13098/* Change of visibility. */
dc6f92b8 13099
9382638d
KH
13100/* This tries to wait until the frame is really visible.
13101 However, if the window manager asks the user where to position
13102 the frame, this will return before the user finishes doing that.
13103 The frame will not actually be visible at that time,
13104 but it will become visible later when the window manager
13105 finishes with it. */
13106
dfcf069d 13107void
f676886a
JB
13108x_make_frame_visible (f)
13109 struct frame *f;
dc6f92b8 13110{
990ba854 13111 Lisp_Object type;
1aa6072f 13112 int original_top, original_left;
31be9251
GM
13113 int retry_count = 2;
13114
13115 retry:
dc6f92b8 13116
dc6f92b8 13117 BLOCK_INPUT;
dc6f92b8 13118
990ba854
RS
13119 type = x_icon_type (f);
13120 if (!NILP (type))
13121 x_bitmap_icon (f, type);
bdcd49ba 13122
f676886a 13123 if (! FRAME_VISIBLE_P (f))
90e65f07 13124 {
1aa6072f
RS
13125 /* We test FRAME_GARBAGED_P here to make sure we don't
13126 call x_set_offset a second time
13127 if we get to x_make_frame_visible a second time
13128 before the window gets really visible. */
13129 if (! FRAME_ICONIFIED_P (f)
13130 && ! f->output_data.x->asked_for_visible)
13131 x_set_offset (f, f->output_data.x->left_pos, f->output_data.x->top_pos, 0);
13132
13133 f->output_data.x->asked_for_visible = 1;
13134
90e65f07 13135 if (! EQ (Vx_no_window_manager, Qt))
f676886a 13136 x_wm_set_window_state (f, NormalState);
3afe33e7 13137#ifdef USE_X_TOOLKIT
d7a38a2e 13138 /* This was XtPopup, but that did nothing for an iconified frame. */
7556890b 13139 XtMapWidget (f->output_data.x->widget);
3afe33e7 13140#else /* not USE_X_TOOLKIT */
7f9c7f94 13141 XMapRaised (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
3afe33e7 13142#endif /* not USE_X_TOOLKIT */
0134a210
RS
13143#if 0 /* This seems to bring back scroll bars in the wrong places
13144 if the window configuration has changed. They seem
13145 to come back ok without this. */
ab648270 13146 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
334208b7 13147 XMapSubwindows (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
0134a210 13148#endif
90e65f07 13149 }
dc6f92b8 13150
334208b7 13151 XFlush (FRAME_X_DISPLAY (f));
90e65f07 13152
0dacf791
RS
13153 /* Synchronize to ensure Emacs knows the frame is visible
13154 before we do anything else. We do this loop with input not blocked
13155 so that incoming events are handled. */
13156 {
13157 Lisp_Object frame;
12ce2351 13158 int count;
28c01ffe
RS
13159 /* This must be before UNBLOCK_INPUT
13160 since events that arrive in response to the actions above
13161 will set it when they are handled. */
13162 int previously_visible = f->output_data.x->has_been_visible;
1aa6072f
RS
13163
13164 original_left = f->output_data.x->left_pos;
13165 original_top = f->output_data.x->top_pos;
c0a04927
RS
13166
13167 /* This must come after we set COUNT. */
13168 UNBLOCK_INPUT;
13169
2745e6c4 13170 /* We unblock here so that arriving X events are processed. */
1aa6072f 13171
dcb07ae9
RS
13172 /* Now move the window back to where it was "supposed to be".
13173 But don't do it if the gravity is negative.
13174 When the gravity is negative, this uses a position
28c01ffe
RS
13175 that is 3 pixels too low. Perhaps that's really the border width.
13176
13177 Don't do this if the window has never been visible before,
13178 because the window manager may choose the position
13179 and we don't want to override it. */
1aa6072f 13180
4d3f5d9a 13181 if (! FRAME_VISIBLE_P (f) && ! FRAME_ICONIFIED_P (f)
06c488fd 13182 && f->output_data.x->win_gravity == NorthWestGravity
28c01ffe 13183 && previously_visible)
1aa6072f 13184 {
2745e6c4
RS
13185 Drawable rootw;
13186 int x, y;
13187 unsigned int width, height, border, depth;
06a2c219 13188
1aa6072f 13189 BLOCK_INPUT;
9829ddba 13190
06a2c219
GM
13191 /* On some window managers (such as FVWM) moving an existing
13192 window, even to the same place, causes the window manager
13193 to introduce an offset. This can cause the window to move
13194 to an unexpected location. Check the geometry (a little
13195 slow here) and then verify that the window is in the right
13196 place. If the window is not in the right place, move it
13197 there, and take the potential window manager hit. */
2745e6c4
RS
13198 XGetGeometry (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
13199 &rootw, &x, &y, &width, &height, &border, &depth);
13200
13201 if (original_left != x || original_top != y)
13202 XMoveWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
13203 original_left, original_top);
13204
1aa6072f
RS
13205 UNBLOCK_INPUT;
13206 }
9829ddba 13207
e0c1aef2 13208 XSETFRAME (frame, f);
c0a04927 13209
12ce2351
GM
13210 /* Wait until the frame is visible. Process X events until a
13211 MapNotify event has been seen, or until we think we won't get a
13212 MapNotify at all.. */
13213 for (count = input_signal_count + 10;
13214 input_signal_count < count && !FRAME_VISIBLE_P (f);)
2a6cf806 13215 {
12ce2351 13216 /* Force processing of queued events. */
334208b7 13217 x_sync (f);
12ce2351
GM
13218
13219 /* Machines that do polling rather than SIGIO have been
13220 observed to go into a busy-wait here. So we'll fake an
13221 alarm signal to let the handler know that there's something
13222 to be read. We used to raise a real alarm, but it seems
13223 that the handler isn't always enabled here. This is
13224 probably a bug. */
8b2f8d4e 13225 if (input_polling_used ())
3b2fa4e6 13226 {
12ce2351
GM
13227 /* It could be confusing if a real alarm arrives while
13228 processing the fake one. Turn it off and let the
13229 handler reset it. */
3e71d8f2 13230 extern void poll_for_input_1 P_ ((void));
bffcfca9
GM
13231 int old_poll_suppress_count = poll_suppress_count;
13232 poll_suppress_count = 1;
13233 poll_for_input_1 ();
13234 poll_suppress_count = old_poll_suppress_count;
3b2fa4e6 13235 }
12ce2351
GM
13236
13237 /* See if a MapNotify event has been processed. */
13238 FRAME_SAMPLE_VISIBILITY (f);
2a6cf806 13239 }
31be9251
GM
13240
13241 /* 2000-09-28: In
13242
13243 (let ((f (selected-frame)))
13244 (iconify-frame f)
13245 (raise-frame f))
13246
13247 the frame is not raised with various window managers on
13248 FreeBSD, Linux and Solaris. It turns out that, for some
13249 unknown reason, the call to XtMapWidget is completely ignored.
13250 Mapping the widget a second time works. */
13251
13252 if (!FRAME_VISIBLE_P (f) && --retry_count > 0)
13253 goto retry;
0dacf791 13254 }
dc6f92b8
JB
13255}
13256
06a2c219 13257/* Change from mapped state to withdrawn state. */
dc6f92b8 13258
d047c4eb
KH
13259/* Make the frame visible (mapped and not iconified). */
13260
dfcf069d 13261void
f676886a
JB
13262x_make_frame_invisible (f)
13263 struct frame *f;
dc6f92b8 13264{
546e6d5b
RS
13265 Window window;
13266
13267#ifdef USE_X_TOOLKIT
13268 /* Use the frame's outermost window, not the one we normally draw on. */
7556890b 13269 window = XtWindow (f->output_data.x->widget);
546e6d5b
RS
13270#else /* not USE_X_TOOLKIT */
13271 window = FRAME_X_WINDOW (f);
13272#endif /* not USE_X_TOOLKIT */
dc6f92b8 13273
9319ae23 13274 /* Don't keep the highlight on an invisible frame. */
0f941935
KH
13275 if (FRAME_X_DISPLAY_INFO (f)->x_highlight_frame == f)
13276 FRAME_X_DISPLAY_INFO (f)->x_highlight_frame = 0;
9319ae23 13277
5627c40e 13278#if 0/* This might add unreliability; I don't trust it -- rms. */
9319ae23 13279 if (! f->async_visible && ! f->async_iconified)
dc6f92b8 13280 return;
5627c40e 13281#endif
dc6f92b8
JB
13282
13283 BLOCK_INPUT;
c118dd06 13284
af31d76f
RS
13285 /* Before unmapping the window, update the WM_SIZE_HINTS property to claim
13286 that the current position of the window is user-specified, rather than
13287 program-specified, so that when the window is mapped again, it will be
13288 placed at the same location, without forcing the user to position it
13289 by hand again (they have already done that once for this window.) */
c32cdd9a 13290 x_wm_set_size_hint (f, (long) 0, 1);
af31d76f 13291
c118dd06
JB
13292#ifdef HAVE_X11R4
13293
334208b7
RS
13294 if (! XWithdrawWindow (FRAME_X_DISPLAY (f), window,
13295 DefaultScreen (FRAME_X_DISPLAY (f))))
c118dd06
JB
13296 {
13297 UNBLOCK_INPUT_RESIGNAL;
546e6d5b 13298 error ("Can't notify window manager of window withdrawal");
c118dd06 13299 }
c118dd06 13300#else /* ! defined (HAVE_X11R4) */
16bd92ea 13301
c118dd06 13302 /* Tell the window manager what we're going to do. */
dc6f92b8
JB
13303 if (! EQ (Vx_no_window_manager, Qt))
13304 {
16bd92ea 13305 XEvent unmap;
dc6f92b8 13306
16bd92ea 13307 unmap.xunmap.type = UnmapNotify;
546e6d5b 13308 unmap.xunmap.window = window;
334208b7 13309 unmap.xunmap.event = DefaultRootWindow (FRAME_X_DISPLAY (f));
16bd92ea 13310 unmap.xunmap.from_configure = False;
334208b7
RS
13311 if (! XSendEvent (FRAME_X_DISPLAY (f),
13312 DefaultRootWindow (FRAME_X_DISPLAY (f)),
16bd92ea 13313 False,
06a2c219 13314 SubstructureRedirectMaskSubstructureNotifyMask,
16bd92ea
JB
13315 &unmap))
13316 {
13317 UNBLOCK_INPUT_RESIGNAL;
546e6d5b 13318 error ("Can't notify window manager of withdrawal");
16bd92ea 13319 }
dc6f92b8
JB
13320 }
13321
16bd92ea 13322 /* Unmap the window ourselves. Cheeky! */
334208b7 13323 XUnmapWindow (FRAME_X_DISPLAY (f), window);
c118dd06 13324#endif /* ! defined (HAVE_X11R4) */
dc6f92b8 13325
5627c40e
RS
13326 /* We can't distinguish this from iconification
13327 just by the event that we get from the server.
13328 So we can't win using the usual strategy of letting
13329 FRAME_SAMPLE_VISIBILITY set this. So do it by hand,
13330 and synchronize with the server to make sure we agree. */
13331 f->visible = 0;
13332 FRAME_ICONIFIED_P (f) = 0;
13333 f->async_visible = 0;
13334 f->async_iconified = 0;
13335
334208b7 13336 x_sync (f);
5627c40e 13337
dc6f92b8
JB
13338 UNBLOCK_INPUT;
13339}
13340
06a2c219 13341/* Change window state from mapped to iconified. */
dc6f92b8 13342
dfcf069d 13343void
f676886a
JB
13344x_iconify_frame (f)
13345 struct frame *f;
dc6f92b8 13346{
3afe33e7 13347 int result;
990ba854 13348 Lisp_Object type;
dc6f92b8 13349
9319ae23 13350 /* Don't keep the highlight on an invisible frame. */
0f941935
KH
13351 if (FRAME_X_DISPLAY_INFO (f)->x_highlight_frame == f)
13352 FRAME_X_DISPLAY_INFO (f)->x_highlight_frame = 0;
9319ae23 13353
3a88c238 13354 if (f->async_iconified)
dc6f92b8
JB
13355 return;
13356
3afe33e7 13357 BLOCK_INPUT;
546e6d5b 13358
9af3143a
RS
13359 FRAME_SAMPLE_VISIBILITY (f);
13360
990ba854
RS
13361 type = x_icon_type (f);
13362 if (!NILP (type))
13363 x_bitmap_icon (f, type);
bdcd49ba
RS
13364
13365#ifdef USE_X_TOOLKIT
13366
546e6d5b
RS
13367 if (! FRAME_VISIBLE_P (f))
13368 {
13369 if (! EQ (Vx_no_window_manager, Qt))
13370 x_wm_set_window_state (f, IconicState);
13371 /* This was XtPopup, but that did nothing for an iconified frame. */
7556890b 13372 XtMapWidget (f->output_data.x->widget);
9cf30a30
RS
13373 /* The server won't give us any event to indicate
13374 that an invisible frame was changed to an icon,
13375 so we have to record it here. */
13376 f->iconified = 1;
1e6bc770 13377 f->visible = 1;
9cf30a30 13378 f->async_iconified = 1;
1e6bc770 13379 f->async_visible = 0;
546e6d5b
RS
13380 UNBLOCK_INPUT;
13381 return;
13382 }
13383
334208b7 13384 result = XIconifyWindow (FRAME_X_DISPLAY (f),
7556890b 13385 XtWindow (f->output_data.x->widget),
334208b7 13386 DefaultScreen (FRAME_X_DISPLAY (f)));
3afe33e7
RS
13387 UNBLOCK_INPUT;
13388
13389 if (!result)
546e6d5b 13390 error ("Can't notify window manager of iconification");
3afe33e7
RS
13391
13392 f->async_iconified = 1;
1e6bc770
RS
13393 f->async_visible = 0;
13394
8c002a25
KH
13395
13396 BLOCK_INPUT;
334208b7 13397 XFlush (FRAME_X_DISPLAY (f));
8c002a25 13398 UNBLOCK_INPUT;
3afe33e7
RS
13399#else /* not USE_X_TOOLKIT */
13400
fd13dbb2
RS
13401 /* Make sure the X server knows where the window should be positioned,
13402 in case the user deiconifies with the window manager. */
13403 if (! FRAME_VISIBLE_P (f) && !FRAME_ICONIFIED_P (f))
7556890b 13404 x_set_offset (f, f->output_data.x->left_pos, f->output_data.x->top_pos, 0);
fd13dbb2 13405
16bd92ea
JB
13406 /* Since we don't know which revision of X we're running, we'll use both
13407 the X11R3 and X11R4 techniques. I don't know if this is a good idea. */
13408
13409 /* X11R4: send a ClientMessage to the window manager using the
13410 WM_CHANGE_STATE type. */
13411 {
13412 XEvent message;
58769bee 13413
c118dd06 13414 message.xclient.window = FRAME_X_WINDOW (f);
16bd92ea 13415 message.xclient.type = ClientMessage;
334208b7 13416 message.xclient.message_type = FRAME_X_DISPLAY_INFO (f)->Xatom_wm_change_state;
16bd92ea
JB
13417 message.xclient.format = 32;
13418 message.xclient.data.l[0] = IconicState;
13419
334208b7
RS
13420 if (! XSendEvent (FRAME_X_DISPLAY (f),
13421 DefaultRootWindow (FRAME_X_DISPLAY (f)),
16bd92ea
JB
13422 False,
13423 SubstructureRedirectMask | SubstructureNotifyMask,
13424 &message))
dc6f92b8
JB
13425 {
13426 UNBLOCK_INPUT_RESIGNAL;
546e6d5b 13427 error ("Can't notify window manager of iconification");
dc6f92b8 13428 }
16bd92ea 13429 }
dc6f92b8 13430
58769bee 13431 /* X11R3: set the initial_state field of the window manager hints to
16bd92ea
JB
13432 IconicState. */
13433 x_wm_set_window_state (f, IconicState);
dc6f92b8 13434
a9c00105
RS
13435 if (!FRAME_VISIBLE_P (f))
13436 {
13437 /* If the frame was withdrawn, before, we must map it. */
7f9c7f94 13438 XMapRaised (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
a9c00105
RS
13439 }
13440
3a88c238 13441 f->async_iconified = 1;
1e6bc770 13442 f->async_visible = 0;
dc6f92b8 13443
334208b7 13444 XFlush (FRAME_X_DISPLAY (f));
dc6f92b8 13445 UNBLOCK_INPUT;
8c002a25 13446#endif /* not USE_X_TOOLKIT */
dc6f92b8 13447}
19f71add 13448
d047c4eb 13449\f
19f71add 13450/* Free X resources of frame F. */
dc6f92b8 13451
dfcf069d 13452void
19f71add 13453x_free_frame_resources (f)
f676886a 13454 struct frame *f;
dc6f92b8 13455{
7f9c7f94 13456 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
c6ea2775
EZ
13457 Lisp_Object bar;
13458 struct scroll_bar *b;
7f9c7f94 13459
dc6f92b8 13460 BLOCK_INPUT;
c0ff3fab 13461
6186a4a0
RS
13462 /* If a display connection is dead, don't try sending more
13463 commands to the X server. */
19f71add 13464 if (dpyinfo->display)
6186a4a0 13465 {
19f71add 13466 if (f->output_data.x->icon_desc)
6186a4a0 13467 XDestroyWindow (FRAME_X_DISPLAY (f), f->output_data.x->icon_desc);
c6ea2775
EZ
13468
13469#ifdef USE_X_TOOLKIT
13470 /* Explicitly destroy the scroll bars of the frame. Without
13471 this, we get "BadDrawable" errors from the toolkit later on,
13472 presumably from expose events generated for the disappearing
13473 toolkit scroll bars. */
13474 for (bar = FRAME_SCROLL_BARS (f); !NILP (bar); bar = b->next)
13475 {
13476 b = XSCROLL_BAR (bar);
13477 x_scroll_bar_remove (b);
13478 }
13479#endif
13480
31f41daf 13481#ifdef HAVE_X_I18N
f5d11644
GM
13482 if (FRAME_XIC (f))
13483 free_frame_xic (f);
31f41daf 13484#endif
c6ea2775 13485
3afe33e7 13486#ifdef USE_X_TOOLKIT
06a2c219 13487 if (f->output_data.x->widget)
30ca89f5
GM
13488 {
13489 XtDestroyWidget (f->output_data.x->widget);
13490 f->output_data.x->widget = NULL;
13491 }
c6ea2775
EZ
13492 /* Tooltips don't have widgets, only a simple X window, even if
13493 we are using a toolkit. */
13494 else if (FRAME_X_WINDOW (f))
13495 XDestroyWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
13496
6186a4a0 13497 free_frame_menubar (f);
c6ea2775
EZ
13498#else /* !USE_X_TOOLKIT */
13499 if (FRAME_X_WINDOW (f))
13500 XDestroyWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
13501#endif /* !USE_X_TOOLKIT */
3afe33e7 13502
3e71d8f2
GM
13503 unload_color (f, f->output_data.x->foreground_pixel);
13504 unload_color (f, f->output_data.x->background_pixel);
13505 unload_color (f, f->output_data.x->cursor_pixel);
13506 unload_color (f, f->output_data.x->cursor_foreground_pixel);
13507 unload_color (f, f->output_data.x->border_pixel);
13508 unload_color (f, f->output_data.x->mouse_pixel);
c6ea2775 13509
3e71d8f2
GM
13510 if (f->output_data.x->scroll_bar_background_pixel != -1)
13511 unload_color (f, f->output_data.x->scroll_bar_background_pixel);
13512 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
13513 unload_color (f, f->output_data.x->scroll_bar_foreground_pixel);
7c1bef7a
MB
13514#ifdef USE_TOOLKIT_SCROLL_BARS
13515 /* Scrollbar shadow colors. */
13516 if (f->output_data.x->scroll_bar_top_shadow_pixel != -1)
13517 unload_color (f, f->output_data.x->scroll_bar_top_shadow_pixel);
13518 if (f->output_data.x->scroll_bar_bottom_shadow_pixel != -1)
13519 unload_color (f, f->output_data.x->scroll_bar_bottom_shadow_pixel);
13520#endif /* USE_TOOLKIT_SCROLL_BARS */
3e71d8f2
GM
13521 if (f->output_data.x->white_relief.allocated_p)
13522 unload_color (f, f->output_data.x->white_relief.pixel);
13523 if (f->output_data.x->black_relief.allocated_p)
13524 unload_color (f, f->output_data.x->black_relief.pixel);
4ca78676 13525
19f71add
GM
13526 if (FRAME_FACE_CACHE (f))
13527 free_frame_faces (f);
13528
4ca78676 13529 x_free_gcs (f);
6186a4a0
RS
13530 XFlush (FRAME_X_DISPLAY (f));
13531 }
dc6f92b8 13532
df89d8a4 13533 if (f->output_data.x->saved_menu_event)
06a2c219 13534 xfree (f->output_data.x->saved_menu_event);
0c49ce2f 13535
7556890b 13536 xfree (f->output_data.x);
19f71add
GM
13537 f->output_data.x = NULL;
13538
0f941935
KH
13539 if (f == dpyinfo->x_focus_frame)
13540 dpyinfo->x_focus_frame = 0;
13541 if (f == dpyinfo->x_focus_event_frame)
13542 dpyinfo->x_focus_event_frame = 0;
13543 if (f == dpyinfo->x_highlight_frame)
13544 dpyinfo->x_highlight_frame = 0;
c0ff3fab 13545
7f9c7f94 13546 if (f == dpyinfo->mouse_face_mouse_frame)
dc05a16b 13547 {
7f9c7f94
RS
13548 dpyinfo->mouse_face_beg_row
13549 = dpyinfo->mouse_face_beg_col = -1;
13550 dpyinfo->mouse_face_end_row
13551 = dpyinfo->mouse_face_end_col = -1;
13552 dpyinfo->mouse_face_window = Qnil;
21323706
RS
13553 dpyinfo->mouse_face_deferred_gc = 0;
13554 dpyinfo->mouse_face_mouse_frame = 0;
dc05a16b 13555 }
0134a210 13556
c0ff3fab 13557 UNBLOCK_INPUT;
dc6f92b8 13558}
19f71add
GM
13559
13560
13561/* Destroy the X window of frame F. */
13562
13563void
13564x_destroy_window (f)
13565 struct frame *f;
13566{
13567 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
13568
13569 /* If a display connection is dead, don't try sending more
13570 commands to the X server. */
13571 if (dpyinfo->display != 0)
13572 x_free_frame_resources (f);
13573
13574 dpyinfo->reference_count--;
13575}
13576
dc6f92b8 13577\f
f451eb13
JB
13578/* Setting window manager hints. */
13579
af31d76f
RS
13580/* Set the normal size hints for the window manager, for frame F.
13581 FLAGS is the flags word to use--or 0 meaning preserve the flags
13582 that the window now has.
13583 If USER_POSITION is nonzero, we set the USPosition
13584 flag (this is useful when FLAGS is 0). */
6dba1858 13585
dfcf069d 13586void
af31d76f 13587x_wm_set_size_hint (f, flags, user_position)
f676886a 13588 struct frame *f;
af31d76f
RS
13589 long flags;
13590 int user_position;
dc6f92b8
JB
13591{
13592 XSizeHints size_hints;
3afe33e7
RS
13593
13594#ifdef USE_X_TOOLKIT
7e4f2521
FP
13595 Arg al[2];
13596 int ac = 0;
13597 Dimension widget_width, widget_height;
7556890b 13598 Window window = XtWindow (f->output_data.x->widget);
3afe33e7 13599#else /* not USE_X_TOOLKIT */
c118dd06 13600 Window window = FRAME_X_WINDOW (f);
3afe33e7 13601#endif /* not USE_X_TOOLKIT */
dc6f92b8 13602
b72a58fd
RS
13603 /* Setting PMaxSize caused various problems. */
13604 size_hints.flags = PResizeInc | PMinSize /* | PMaxSize */;
dc6f92b8 13605
7556890b
RS
13606 size_hints.x = f->output_data.x->left_pos;
13607 size_hints.y = f->output_data.x->top_pos;
7553a6b7 13608
7e4f2521
FP
13609#ifdef USE_X_TOOLKIT
13610 XtSetArg (al[ac], XtNwidth, &widget_width); ac++;
13611 XtSetArg (al[ac], XtNheight, &widget_height); ac++;
7556890b 13612 XtGetValues (f->output_data.x->widget, al, ac);
7e4f2521
FP
13613 size_hints.height = widget_height;
13614 size_hints.width = widget_width;
13615#else /* not USE_X_TOOLKIT */
f676886a
JB
13616 size_hints.height = PIXEL_HEIGHT (f);
13617 size_hints.width = PIXEL_WIDTH (f);
7e4f2521 13618#endif /* not USE_X_TOOLKIT */
7553a6b7 13619
7556890b
RS
13620 size_hints.width_inc = FONT_WIDTH (f->output_data.x->font);
13621 size_hints.height_inc = f->output_data.x->line_height;
334208b7
RS
13622 size_hints.max_width
13623 = FRAME_X_DISPLAY_INFO (f)->width - CHAR_TO_PIXEL_WIDTH (f, 0);
13624 size_hints.max_height
13625 = FRAME_X_DISPLAY_INFO (f)->height - CHAR_TO_PIXEL_HEIGHT (f, 0);
0134a210 13626
d067ea8b
KH
13627 /* Calculate the base and minimum sizes.
13628
13629 (When we use the X toolkit, we don't do it here.
13630 Instead we copy the values that the widgets are using, below.) */
13631#ifndef USE_X_TOOLKIT
b1c884c3 13632 {
b0342f17 13633 int base_width, base_height;
0134a210 13634 int min_rows = 0, min_cols = 0;
b0342f17 13635
f451eb13
JB
13636 base_width = CHAR_TO_PIXEL_WIDTH (f, 0);
13637 base_height = CHAR_TO_PIXEL_HEIGHT (f, 0);
b0342f17 13638
0134a210 13639 check_frame_size (f, &min_rows, &min_cols);
b0342f17 13640
0134a210
RS
13641 /* The window manager uses the base width hints to calculate the
13642 current number of rows and columns in the frame while
13643 resizing; min_width and min_height aren't useful for this
13644 purpose, since they might not give the dimensions for a
13645 zero-row, zero-column frame.
58769bee 13646
0134a210
RS
13647 We use the base_width and base_height members if we have
13648 them; otherwise, we set the min_width and min_height members
13649 to the size for a zero x zero frame. */
b0342f17
JB
13650
13651#ifdef HAVE_X11R4
0134a210
RS
13652 size_hints.flags |= PBaseSize;
13653 size_hints.base_width = base_width;
13654 size_hints.base_height = base_height;
13655 size_hints.min_width = base_width + min_cols * size_hints.width_inc;
13656 size_hints.min_height = base_height + min_rows * size_hints.height_inc;
b0342f17 13657#else
0134a210
RS
13658 size_hints.min_width = base_width;
13659 size_hints.min_height = base_height;
b0342f17 13660#endif
b1c884c3 13661 }
dc6f92b8 13662
d067ea8b 13663 /* If we don't need the old flags, we don't need the old hint at all. */
af31d76f 13664 if (flags)
dc6f92b8 13665 {
d067ea8b
KH
13666 size_hints.flags |= flags;
13667 goto no_read;
13668 }
13669#endif /* not USE_X_TOOLKIT */
13670
13671 {
13672 XSizeHints hints; /* Sometimes I hate X Windows... */
13673 long supplied_return;
13674 int value;
af31d76f
RS
13675
13676#ifdef HAVE_X11R4
d067ea8b
KH
13677 value = XGetWMNormalHints (FRAME_X_DISPLAY (f), window, &hints,
13678 &supplied_return);
af31d76f 13679#else
d067ea8b 13680 value = XGetNormalHints (FRAME_X_DISPLAY (f), window, &hints);
af31d76f 13681#endif
58769bee 13682
d067ea8b
KH
13683#ifdef USE_X_TOOLKIT
13684 size_hints.base_height = hints.base_height;
13685 size_hints.base_width = hints.base_width;
13686 size_hints.min_height = hints.min_height;
13687 size_hints.min_width = hints.min_width;
13688#endif
13689
13690 if (flags)
13691 size_hints.flags |= flags;
13692 else
13693 {
13694 if (value == 0)
13695 hints.flags = 0;
13696 if (hints.flags & PSize)
13697 size_hints.flags |= PSize;
13698 if (hints.flags & PPosition)
13699 size_hints.flags |= PPosition;
13700 if (hints.flags & USPosition)
13701 size_hints.flags |= USPosition;
13702 if (hints.flags & USSize)
13703 size_hints.flags |= USSize;
13704 }
13705 }
13706
06a2c219 13707#ifndef USE_X_TOOLKIT
d067ea8b 13708 no_read:
06a2c219 13709#endif
0134a210 13710
af31d76f 13711#ifdef PWinGravity
7556890b 13712 size_hints.win_gravity = f->output_data.x->win_gravity;
af31d76f 13713 size_hints.flags |= PWinGravity;
dc05a16b 13714
af31d76f 13715 if (user_position)
6dba1858 13716 {
af31d76f
RS
13717 size_hints.flags &= ~ PPosition;
13718 size_hints.flags |= USPosition;
6dba1858 13719 }
2554751d 13720#endif /* PWinGravity */
6dba1858 13721
b0342f17 13722#ifdef HAVE_X11R4
334208b7 13723 XSetWMNormalHints (FRAME_X_DISPLAY (f), window, &size_hints);
b0342f17 13724#else
334208b7 13725 XSetNormalHints (FRAME_X_DISPLAY (f), window, &size_hints);
b0342f17 13726#endif
dc6f92b8
JB
13727}
13728
13729/* Used for IconicState or NormalState */
06a2c219 13730
dfcf069d 13731void
f676886a
JB
13732x_wm_set_window_state (f, state)
13733 struct frame *f;
dc6f92b8
JB
13734 int state;
13735{
3afe33e7 13736#ifdef USE_X_TOOLKIT
546e6d5b
RS
13737 Arg al[1];
13738
13739 XtSetArg (al[0], XtNinitialState, state);
7556890b 13740 XtSetValues (f->output_data.x->widget, al, 1);
3afe33e7 13741#else /* not USE_X_TOOLKIT */
c118dd06 13742 Window window = FRAME_X_WINDOW (f);
dc6f92b8 13743
7556890b
RS
13744 f->output_data.x->wm_hints.flags |= StateHint;
13745 f->output_data.x->wm_hints.initial_state = state;
b1c884c3 13746
7556890b 13747 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints);
546e6d5b 13748#endif /* not USE_X_TOOLKIT */
dc6f92b8
JB
13749}
13750
dfcf069d 13751void
7f2ae036 13752x_wm_set_icon_pixmap (f, pixmap_id)
f676886a 13753 struct frame *f;
7f2ae036 13754 int pixmap_id;
dc6f92b8 13755{
d2bd6bc4
RS
13756 Pixmap icon_pixmap;
13757
06a2c219 13758#ifndef USE_X_TOOLKIT
c118dd06 13759 Window window = FRAME_X_WINDOW (f);
75231bad 13760#endif
dc6f92b8 13761
7f2ae036 13762 if (pixmap_id > 0)
dbc4e1c1 13763 {
d2bd6bc4 13764 icon_pixmap = x_bitmap_pixmap (f, pixmap_id);
7556890b 13765 f->output_data.x->wm_hints.icon_pixmap = icon_pixmap;
dbc4e1c1
JB
13766 }
13767 else
68568555
RS
13768 {
13769 /* It seems there is no way to turn off use of an icon pixmap.
13770 The following line does it, only if no icon has yet been created,
13771 for some window managers. But with mwm it crashes.
13772 Some people say it should clear the IconPixmapHint bit in this case,
13773 but that doesn't work, and the X consortium said it isn't the
13774 right thing at all. Since there is no way to win,
13775 best to explicitly give up. */
13776#if 0
13777 f->output_data.x->wm_hints.icon_pixmap = None;
13778#else
13779 return;
13780#endif
13781 }
b1c884c3 13782
d2bd6bc4
RS
13783#ifdef USE_X_TOOLKIT /* same as in x_wm_set_window_state. */
13784
13785 {
13786 Arg al[1];
13787 XtSetArg (al[0], XtNiconPixmap, icon_pixmap);
13788 XtSetValues (f->output_data.x->widget, al, 1);
13789 }
13790
13791#else /* not USE_X_TOOLKIT */
13792
7556890b
RS
13793 f->output_data.x->wm_hints.flags |= IconPixmapHint;
13794 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints);
d2bd6bc4
RS
13795
13796#endif /* not USE_X_TOOLKIT */
dc6f92b8
JB
13797}
13798
dfcf069d 13799void
f676886a
JB
13800x_wm_set_icon_position (f, icon_x, icon_y)
13801 struct frame *f;
dc6f92b8
JB
13802 int icon_x, icon_y;
13803{
75231bad 13804#ifdef USE_X_TOOLKIT
7556890b 13805 Window window = XtWindow (f->output_data.x->widget);
75231bad 13806#else
c118dd06 13807 Window window = FRAME_X_WINDOW (f);
75231bad 13808#endif
dc6f92b8 13809
7556890b
RS
13810 f->output_data.x->wm_hints.flags |= IconPositionHint;
13811 f->output_data.x->wm_hints.icon_x = icon_x;
13812 f->output_data.x->wm_hints.icon_y = icon_y;
b1c884c3 13813
7556890b 13814 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints);
dc6f92b8
JB
13815}
13816
13817\f
06a2c219
GM
13818/***********************************************************************
13819 Fonts
13820 ***********************************************************************/
dc43ef94
KH
13821
13822/* Return a pointer to struct font_info of font FONT_IDX of frame F. */
06a2c219 13823
dc43ef94
KH
13824struct font_info *
13825x_get_font_info (f, font_idx)
13826 FRAME_PTR f;
13827 int font_idx;
13828{
13829 return (FRAME_X_FONT_TABLE (f) + font_idx);
13830}
13831
13832
9c11f79e
GM
13833/* Return a list of names of available fonts matching PATTERN on frame F.
13834
13835 If SIZE is > 0, it is the size (maximum bounds width) of fonts
13836 to be listed.
13837
13838 SIZE < 0 means include scalable fonts.
13839
13840 Frame F null means we have not yet created any frame on X, and
13841 consult the first display in x_display_list. MAXNAMES sets a limit
13842 on how many fonts to match. */
dc43ef94
KH
13843
13844Lisp_Object
13845x_list_fonts (f, pattern, size, maxnames)
9c11f79e 13846 struct frame *f;
dc43ef94
KH
13847 Lisp_Object pattern;
13848 int size;
13849 int maxnames;
13850{
06a2c219
GM
13851 Lisp_Object list = Qnil, patterns, newlist = Qnil, key = Qnil;
13852 Lisp_Object tem, second_best;
9c11f79e
GM
13853 struct x_display_info *dpyinfo
13854 = f ? FRAME_X_DISPLAY_INFO (f) : x_display_list;
13855 Display *dpy = dpyinfo->display;
09c6077f 13856 int try_XLoadQueryFont = 0;
53ca4657 13857 int count;
9c11f79e
GM
13858 int allow_scalable_fonts_p = 0;
13859
13860 if (size < 0)
13861 {
13862 allow_scalable_fonts_p = 1;
13863 size = 0;
13864 }
dc43ef94 13865
6b0efe73 13866 patterns = Fassoc (pattern, Valternate_fontname_alist);
2da424f1
KH
13867 if (NILP (patterns))
13868 patterns = Fcons (pattern, Qnil);
81ba44e5 13869
09c6077f
KH
13870 if (maxnames == 1 && !size)
13871 /* We can return any single font matching PATTERN. */
13872 try_XLoadQueryFont = 1;
9a32686f 13873
8e713be6 13874 for (; CONSP (patterns); patterns = XCDR (patterns))
dc43ef94 13875 {
dc43ef94 13876 int num_fonts;
3e71d8f2 13877 char **names = NULL;
dc43ef94 13878
8e713be6 13879 pattern = XCAR (patterns);
536f4067
RS
13880 /* See if we cached the result for this particular query.
13881 The cache is an alist of the form:
9c11f79e
GM
13882 ((((PATTERN . MAXNAMES) . SCALABLE) (FONTNAME . WIDTH) ...) ...) */
13883 tem = XCDR (dpyinfo->name_list_element);
13884 key = Fcons (Fcons (pattern, make_number (maxnames)),
13885 allow_scalable_fonts_p ? Qt : Qnil);
13886 list = Fassoc (key, tem);
13887 if (!NILP (list))
b5210ea7
KH
13888 {
13889 list = Fcdr_safe (list);
13890 /* We have a cashed list. Don't have to get the list again. */
13891 goto label_cached;
13892 }
13893
13894 /* At first, put PATTERN in the cache. */
09c6077f 13895
dc43ef94 13896 BLOCK_INPUT;
17d85edc
KH
13897 count = x_catch_errors (dpy);
13898
09c6077f
KH
13899 if (try_XLoadQueryFont)
13900 {
13901 XFontStruct *font;
13902 unsigned long value;
13903
13904 font = XLoadQueryFont (dpy, XSTRING (pattern)->data);
17d85edc
KH
13905 if (x_had_errors_p (dpy))
13906 {
13907 /* This error is perhaps due to insufficient memory on X
13908 server. Let's just ignore it. */
13909 font = NULL;
13910 x_clear_errors (dpy);
13911 }
13912
09c6077f
KH
13913 if (font
13914 && XGetFontProperty (font, XA_FONT, &value))
13915 {
13916 char *name = (char *) XGetAtomName (dpy, (Atom) value);
13917 int len = strlen (name);
01c752b5 13918 char *tmp;
09c6077f 13919
6f6512e8
KH
13920 /* If DXPC (a Differential X Protocol Compressor)
13921 Ver.3.7 is running, XGetAtomName will return null
13922 string. We must avoid such a name. */
13923 if (len == 0)
13924 try_XLoadQueryFont = 0;
13925 else
13926 {
13927 num_fonts = 1;
13928 names = (char **) alloca (sizeof (char *));
13929 /* Some systems only allow alloca assigned to a
13930 simple var. */
13931 tmp = (char *) alloca (len + 1); names[0] = tmp;
13932 bcopy (name, names[0], len + 1);
13933 XFree (name);
13934 }
09c6077f
KH
13935 }
13936 else
13937 try_XLoadQueryFont = 0;
a083fd23
RS
13938
13939 if (font)
13940 XFreeFont (dpy, font);
09c6077f
KH
13941 }
13942
13943 if (!try_XLoadQueryFont)
17d85edc
KH
13944 {
13945 /* We try at least 10 fonts because XListFonts will return
13946 auto-scaled fonts at the head. */
13947 names = XListFonts (dpy, XSTRING (pattern)->data, max (maxnames, 10),
13948 &num_fonts);
13949 if (x_had_errors_p (dpy))
13950 {
13951 /* This error is perhaps due to insufficient memory on X
13952 server. Let's just ignore it. */
13953 names = NULL;
13954 x_clear_errors (dpy);
13955 }
13956 }
13957
13958 x_uncatch_errors (dpy, count);
dc43ef94
KH
13959 UNBLOCK_INPUT;
13960
13961 if (names)
13962 {
13963 int i;
dc43ef94
KH
13964
13965 /* Make a list of all the fonts we got back.
13966 Store that in the font cache for the display. */
13967 for (i = 0; i < num_fonts; i++)
13968 {
06a2c219 13969 int width = 0;
dc43ef94 13970 char *p = names[i];
06a2c219
GM
13971 int average_width = -1, dashes = 0;
13972
dc43ef94 13973 /* Count the number of dashes in NAMES[I]. If there are
9c11f79e
GM
13974 14 dashes, and the field value following 12th dash
13975 (AVERAGE_WIDTH) is 0, this is a auto-scaled font which
13976 is usually too ugly to be used for editing. Let's
13977 ignore it. */
dc43ef94
KH
13978 while (*p)
13979 if (*p++ == '-')
13980 {
13981 dashes++;
13982 if (dashes == 7) /* PIXEL_SIZE field */
13983 width = atoi (p);
13984 else if (dashes == 12) /* AVERAGE_WIDTH field */
13985 average_width = atoi (p);
13986 }
9c11f79e
GM
13987
13988 if (allow_scalable_fonts_p
13989 || dashes < 14 || average_width != 0)
dc43ef94
KH
13990 {
13991 tem = build_string (names[i]);
13992 if (NILP (Fassoc (tem, list)))
13993 {
13994 if (STRINGP (Vx_pixel_size_width_font_regexp)
f39db7ea
RS
13995 && ((fast_c_string_match_ignore_case
13996 (Vx_pixel_size_width_font_regexp, names[i]))
dc43ef94
KH
13997 >= 0))
13998 /* We can set the value of PIXEL_SIZE to the
b5210ea7 13999 width of this font. */
dc43ef94
KH
14000 list = Fcons (Fcons (tem, make_number (width)), list);
14001 else
14002 /* For the moment, width is not known. */
14003 list = Fcons (Fcons (tem, Qnil), list);
14004 }
14005 }
14006 }
e38f4136 14007
09c6077f 14008 if (!try_XLoadQueryFont)
e38f4136
GM
14009 {
14010 BLOCK_INPUT;
14011 XFreeFontNames (names);
14012 UNBLOCK_INPUT;
14013 }
dc43ef94
KH
14014 }
14015
b5210ea7 14016 /* Now store the result in the cache. */
f3fbd155
KR
14017 XSETCDR (dpyinfo->name_list_element,
14018 Fcons (Fcons (key, list), XCDR (dpyinfo->name_list_element)));
dc43ef94 14019
b5210ea7
KH
14020 label_cached:
14021 if (NILP (list)) continue; /* Try the remaining alternatives. */
dc43ef94 14022
b5210ea7
KH
14023 newlist = second_best = Qnil;
14024 /* Make a list of the fonts that have the right width. */
8e713be6 14025 for (; CONSP (list); list = XCDR (list))
b5210ea7 14026 {
536f4067
RS
14027 int found_size;
14028
8e713be6 14029 tem = XCAR (list);
dc43ef94 14030
8e713be6 14031 if (!CONSP (tem) || NILP (XCAR (tem)))
b5210ea7
KH
14032 continue;
14033 if (!size)
14034 {
8e713be6 14035 newlist = Fcons (XCAR (tem), newlist);
b5210ea7
KH
14036 continue;
14037 }
dc43ef94 14038
8e713be6 14039 if (!INTEGERP (XCDR (tem)))
dc43ef94 14040 {
b5210ea7 14041 /* Since we have not yet known the size of this font, we
9c11f79e 14042 must try slow function call XLoadQueryFont. */
dc43ef94
KH
14043 XFontStruct *thisinfo;
14044
14045 BLOCK_INPUT;
17d85edc 14046 count = x_catch_errors (dpy);
dc43ef94 14047 thisinfo = XLoadQueryFont (dpy,
8e713be6 14048 XSTRING (XCAR (tem))->data);
17d85edc
KH
14049 if (x_had_errors_p (dpy))
14050 {
14051 /* This error is perhaps due to insufficient memory on X
14052 server. Let's just ignore it. */
14053 thisinfo = NULL;
14054 x_clear_errors (dpy);
14055 }
14056 x_uncatch_errors (dpy, count);
dc43ef94
KH
14057 UNBLOCK_INPUT;
14058
14059 if (thisinfo)
14060 {
f3fbd155
KR
14061 XSETCDR (tem,
14062 (thisinfo->min_bounds.width == 0
14063 ? make_number (0)
14064 : make_number (thisinfo->max_bounds.width)));
e38f4136 14065 BLOCK_INPUT;
dc43ef94 14066 XFreeFont (dpy, thisinfo);
e38f4136 14067 UNBLOCK_INPUT;
dc43ef94
KH
14068 }
14069 else
b5210ea7 14070 /* For unknown reason, the previous call of XListFont had
06a2c219 14071 returned a font which can't be opened. Record the size
b5210ea7 14072 as 0 not to try to open it again. */
f3fbd155 14073 XSETCDR (tem, make_number (0));
dc43ef94 14074 }
536f4067 14075
8e713be6 14076 found_size = XINT (XCDR (tem));
536f4067 14077 if (found_size == size)
8e713be6 14078 newlist = Fcons (XCAR (tem), newlist);
536f4067 14079 else if (found_size > 0)
b5210ea7 14080 {
536f4067 14081 if (NILP (second_best))
b5210ea7 14082 second_best = tem;
536f4067
RS
14083 else if (found_size < size)
14084 {
8e713be6
KR
14085 if (XINT (XCDR (second_best)) > size
14086 || XINT (XCDR (second_best)) < found_size)
536f4067
RS
14087 second_best = tem;
14088 }
14089 else
14090 {
8e713be6
KR
14091 if (XINT (XCDR (second_best)) > size
14092 && XINT (XCDR (second_best)) > found_size)
536f4067
RS
14093 second_best = tem;
14094 }
b5210ea7
KH
14095 }
14096 }
14097 if (!NILP (newlist))
14098 break;
14099 else if (!NILP (second_best))
14100 {
8e713be6 14101 newlist = Fcons (XCAR (second_best), Qnil);
b5210ea7 14102 break;
dc43ef94 14103 }
dc43ef94
KH
14104 }
14105
14106 return newlist;
14107}
14108
06a2c219
GM
14109
14110#if GLYPH_DEBUG
14111
14112/* Check that FONT is valid on frame F. It is if it can be found in F's
14113 font table. */
14114
14115static void
14116x_check_font (f, font)
14117 struct frame *f;
14118 XFontStruct *font;
14119{
14120 int i;
14121 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
14122
14123 xassert (font != NULL);
14124
14125 for (i = 0; i < dpyinfo->n_fonts; i++)
14126 if (dpyinfo->font_table[i].name
14127 && font == dpyinfo->font_table[i].font)
14128 break;
14129
14130 xassert (i < dpyinfo->n_fonts);
14131}
14132
14133#endif /* GLYPH_DEBUG != 0 */
14134
14135/* Set *W to the minimum width, *H to the minimum font height of FONT.
14136 Note: There are (broken) X fonts out there with invalid XFontStruct
14137 min_bounds contents. For example, handa@etl.go.jp reports that
14138 "-adobe-courier-medium-r-normal--*-180-*-*-m-*-iso8859-1" fonts
14139 have font->min_bounds.width == 0. */
14140
14141static INLINE void
14142x_font_min_bounds (font, w, h)
14143 XFontStruct *font;
14144 int *w, *h;
14145{
14146 *h = FONT_HEIGHT (font);
14147 *w = font->min_bounds.width;
14148
14149 /* Try to handle the case where FONT->min_bounds has invalid
14150 contents. Since the only font known to have invalid min_bounds
14151 is fixed-width, use max_bounds if min_bounds seems to be invalid. */
14152 if (*w <= 0)
14153 *w = font->max_bounds.width;
14154}
14155
14156
14157/* Compute the smallest character width and smallest font height over
14158 all fonts available on frame F. Set the members smallest_char_width
14159 and smallest_font_height in F's x_display_info structure to
14160 the values computed. Value is non-zero if smallest_font_height or
14161 smallest_char_width become smaller than they were before. */
14162
14163static int
14164x_compute_min_glyph_bounds (f)
14165 struct frame *f;
14166{
14167 int i;
14168 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
14169 XFontStruct *font;
14170 int old_width = dpyinfo->smallest_char_width;
14171 int old_height = dpyinfo->smallest_font_height;
14172
14173 dpyinfo->smallest_font_height = 100000;
14174 dpyinfo->smallest_char_width = 100000;
14175
14176 for (i = 0; i < dpyinfo->n_fonts; ++i)
14177 if (dpyinfo->font_table[i].name)
14178 {
14179 struct font_info *fontp = dpyinfo->font_table + i;
14180 int w, h;
14181
14182 font = (XFontStruct *) fontp->font;
14183 xassert (font != (XFontStruct *) ~0);
14184 x_font_min_bounds (font, &w, &h);
14185
14186 dpyinfo->smallest_font_height = min (dpyinfo->smallest_font_height, h);
14187 dpyinfo->smallest_char_width = min (dpyinfo->smallest_char_width, w);
14188 }
14189
14190 xassert (dpyinfo->smallest_char_width > 0
14191 && dpyinfo->smallest_font_height > 0);
14192
14193 return (dpyinfo->n_fonts == 1
14194 || dpyinfo->smallest_char_width < old_width
14195 || dpyinfo->smallest_font_height < old_height);
14196}
14197
14198
dc43ef94
KH
14199/* Load font named FONTNAME of the size SIZE for frame F, and return a
14200 pointer to the structure font_info while allocating it dynamically.
14201 If SIZE is 0, load any size of font.
14202 If loading is failed, return NULL. */
14203
14204struct font_info *
14205x_load_font (f, fontname, size)
14206 struct frame *f;
14207 register char *fontname;
14208 int size;
14209{
14210 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
14211 Lisp_Object font_names;
d645aaa4 14212 int count;
dc43ef94
KH
14213
14214 /* Get a list of all the fonts that match this name. Once we
14215 have a list of matching fonts, we compare them against the fonts
14216 we already have by comparing names. */
09c6077f 14217 font_names = x_list_fonts (f, build_string (fontname), size, 1);
dc43ef94
KH
14218
14219 if (!NILP (font_names))
14220 {
14221 Lisp_Object tail;
14222 int i;
14223
14224 for (i = 0; i < dpyinfo->n_fonts; i++)
8e713be6 14225 for (tail = font_names; CONSP (tail); tail = XCDR (tail))
06a2c219
GM
14226 if (dpyinfo->font_table[i].name
14227 && (!strcmp (dpyinfo->font_table[i].name,
8e713be6 14228 XSTRING (XCAR (tail))->data)
06a2c219 14229 || !strcmp (dpyinfo->font_table[i].full_name,
8e713be6 14230 XSTRING (XCAR (tail))->data)))
dc43ef94
KH
14231 return (dpyinfo->font_table + i);
14232 }
14233
14234 /* Load the font and add it to the table. */
14235 {
14236 char *full_name;
14237 XFontStruct *font;
14238 struct font_info *fontp;
14239 unsigned long value;
06a2c219 14240 int i;
dc43ef94 14241
2da424f1
KH
14242 /* If we have found fonts by x_list_font, load one of them. If
14243 not, we still try to load a font by the name given as FONTNAME
14244 because XListFonts (called in x_list_font) of some X server has
14245 a bug of not finding a font even if the font surely exists and
14246 is loadable by XLoadQueryFont. */
e1d6d5b9 14247 if (size > 0 && !NILP (font_names))
8e713be6 14248 fontname = (char *) XSTRING (XCAR (font_names))->data;
dc43ef94
KH
14249
14250 BLOCK_INPUT;
d645aaa4 14251 count = x_catch_errors (FRAME_X_DISPLAY (f));
dc43ef94 14252 font = (XFontStruct *) XLoadQueryFont (FRAME_X_DISPLAY (f), fontname);
d645aaa4
KH
14253 if (x_had_errors_p (FRAME_X_DISPLAY (f)))
14254 {
14255 /* This error is perhaps due to insufficient memory on X
14256 server. Let's just ignore it. */
14257 font = NULL;
14258 x_clear_errors (FRAME_X_DISPLAY (f));
14259 }
14260 x_uncatch_errors (FRAME_X_DISPLAY (f), count);
dc43ef94 14261 UNBLOCK_INPUT;
b5210ea7 14262 if (!font)
dc43ef94
KH
14263 return NULL;
14264
06a2c219
GM
14265 /* Find a free slot in the font table. */
14266 for (i = 0; i < dpyinfo->n_fonts; ++i)
14267 if (dpyinfo->font_table[i].name == NULL)
14268 break;
14269
14270 /* If no free slot found, maybe enlarge the font table. */
14271 if (i == dpyinfo->n_fonts
14272 && dpyinfo->n_fonts == dpyinfo->font_table_size)
dc43ef94 14273 {
06a2c219
GM
14274 int sz;
14275 dpyinfo->font_table_size = max (16, 2 * dpyinfo->font_table_size);
14276 sz = dpyinfo->font_table_size * sizeof *dpyinfo->font_table;
dc43ef94 14277 dpyinfo->font_table
06a2c219 14278 = (struct font_info *) xrealloc (dpyinfo->font_table, sz);
dc43ef94
KH
14279 }
14280
06a2c219
GM
14281 fontp = dpyinfo->font_table + i;
14282 if (i == dpyinfo->n_fonts)
14283 ++dpyinfo->n_fonts;
dc43ef94
KH
14284
14285 /* Now fill in the slots of *FONTP. */
14286 BLOCK_INPUT;
14287 fontp->font = font;
06a2c219 14288 fontp->font_idx = i;
dc43ef94
KH
14289 fontp->name = (char *) xmalloc (strlen (fontname) + 1);
14290 bcopy (fontname, fontp->name, strlen (fontname) + 1);
14291
14292 /* Try to get the full name of FONT. Put it in FULL_NAME. */
14293 full_name = 0;
14294 if (XGetFontProperty (font, XA_FONT, &value))
14295 {
14296 char *name = (char *) XGetAtomName (FRAME_X_DISPLAY (f), (Atom) value);
14297 char *p = name;
14298 int dashes = 0;
14299
14300 /* Count the number of dashes in the "full name".
14301 If it is too few, this isn't really the font's full name,
14302 so don't use it.
14303 In X11R4, the fonts did not come with their canonical names
14304 stored in them. */
14305 while (*p)
14306 {
14307 if (*p == '-')
14308 dashes++;
14309 p++;
14310 }
14311
14312 if (dashes >= 13)
14313 {
14314 full_name = (char *) xmalloc (p - name + 1);
14315 bcopy (name, full_name, p - name + 1);
14316 }
14317
14318 XFree (name);
14319 }
14320
14321 if (full_name != 0)
14322 fontp->full_name = full_name;
14323 else
14324 fontp->full_name = fontp->name;
14325
14326 fontp->size = font->max_bounds.width;
d5749adb 14327 fontp->height = FONT_HEIGHT (font);
dc43ef94 14328
2da424f1
KH
14329 if (NILP (font_names))
14330 {
14331 /* We come here because of a bug of XListFonts mentioned at
14332 the head of this block. Let's store this information in
14333 the cache for x_list_fonts. */
14334 Lisp_Object lispy_name = build_string (fontname);
14335 Lisp_Object lispy_full_name = build_string (fontp->full_name);
9c11f79e
GM
14336 Lisp_Object key = Fcons (Fcons (lispy_name, make_number (256)),
14337 Qnil);
2da424f1 14338
f3fbd155
KR
14339 XSETCDR (dpyinfo->name_list_element,
14340 Fcons (Fcons (key,
14341 Fcons (Fcons (lispy_full_name,
14342 make_number (fontp->size)),
14343 Qnil)),
14344 XCDR (dpyinfo->name_list_element)));
2da424f1 14345 if (full_name)
9c11f79e
GM
14346 {
14347 key = Fcons (Fcons (lispy_full_name, make_number (256)),
14348 Qnil);
f3fbd155
KR
14349 XSETCDR (dpyinfo->name_list_element,
14350 Fcons (Fcons (key,
14351 Fcons (Fcons (lispy_full_name,
14352 make_number (fontp->size)),
14353 Qnil)),
14354 XCDR (dpyinfo->name_list_element)));
9c11f79e 14355 }
2da424f1
KH
14356 }
14357
dc43ef94
KH
14358 /* The slot `encoding' specifies how to map a character
14359 code-points (0x20..0x7F or 0x2020..0x7F7F) of each charset to
ee569018
KH
14360 the font code-points (0:0x20..0x7F, 1:0xA0..0xFF), or
14361 (0:0x2020..0x7F7F, 1:0xA0A0..0xFFFF, 3:0x20A0..0x7FFF,
8ff102bd 14362 2:0xA020..0xFF7F). For the moment, we don't know which charset
06a2c219 14363 uses this font. So, we set information in fontp->encoding[1]
8ff102bd
RS
14364 which is never used by any charset. If mapping can't be
14365 decided, set FONT_ENCODING_NOT_DECIDED. */
dc43ef94
KH
14366 fontp->encoding[1]
14367 = (font->max_byte1 == 0
14368 /* 1-byte font */
14369 ? (font->min_char_or_byte2 < 0x80
14370 ? (font->max_char_or_byte2 < 0x80
14371 ? 0 /* 0x20..0x7F */
8ff102bd 14372 : FONT_ENCODING_NOT_DECIDED) /* 0x20..0xFF */
dc43ef94
KH
14373 : 1) /* 0xA0..0xFF */
14374 /* 2-byte font */
14375 : (font->min_byte1 < 0x80
14376 ? (font->max_byte1 < 0x80
14377 ? (font->min_char_or_byte2 < 0x80
14378 ? (font->max_char_or_byte2 < 0x80
14379 ? 0 /* 0x2020..0x7F7F */
8ff102bd 14380 : FONT_ENCODING_NOT_DECIDED) /* 0x2020..0x7FFF */
dc43ef94 14381 : 3) /* 0x20A0..0x7FFF */
8ff102bd 14382 : FONT_ENCODING_NOT_DECIDED) /* 0x20??..0xA0?? */
dc43ef94
KH
14383 : (font->min_char_or_byte2 < 0x80
14384 ? (font->max_char_or_byte2 < 0x80
14385 ? 2 /* 0xA020..0xFF7F */
8ff102bd 14386 : FONT_ENCODING_NOT_DECIDED) /* 0xA020..0xFFFF */
dc43ef94
KH
14387 : 1))); /* 0xA0A0..0xFFFF */
14388
14389 fontp->baseline_offset
14390 = (XGetFontProperty (font, dpyinfo->Xatom_MULE_BASELINE_OFFSET, &value)
14391 ? (long) value : 0);
14392 fontp->relative_compose
14393 = (XGetFontProperty (font, dpyinfo->Xatom_MULE_RELATIVE_COMPOSE, &value)
14394 ? (long) value : 0);
f78798df
KH
14395 fontp->default_ascent
14396 = (XGetFontProperty (font, dpyinfo->Xatom_MULE_DEFAULT_ASCENT, &value)
14397 ? (long) value : 0);
dc43ef94 14398
06a2c219
GM
14399 /* Set global flag fonts_changed_p to non-zero if the font loaded
14400 has a character with a smaller width than any other character
437dfb9f 14401 before, or if the font loaded has a smaller height than any
06a2c219
GM
14402 other font loaded before. If this happens, it will make a
14403 glyph matrix reallocation necessary. */
437dfb9f 14404 fonts_changed_p |= x_compute_min_glyph_bounds (f);
dc43ef94 14405 UNBLOCK_INPUT;
dc43ef94
KH
14406 return fontp;
14407 }
14408}
14409
06a2c219
GM
14410
14411/* Return a pointer to struct font_info of a font named FONTNAME for
14412 frame F. If no such font is loaded, return NULL. */
14413
dc43ef94
KH
14414struct font_info *
14415x_query_font (f, fontname)
14416 struct frame *f;
14417 register char *fontname;
14418{
14419 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
14420 int i;
14421
14422 for (i = 0; i < dpyinfo->n_fonts; i++)
06a2c219
GM
14423 if (dpyinfo->font_table[i].name
14424 && (!strcmp (dpyinfo->font_table[i].name, fontname)
14425 || !strcmp (dpyinfo->font_table[i].full_name, fontname)))
dc43ef94
KH
14426 return (dpyinfo->font_table + i);
14427 return NULL;
14428}
14429
06a2c219
GM
14430
14431/* Find a CCL program for a font specified by FONTP, and set the member
a6582676
KH
14432 `encoder' of the structure. */
14433
14434void
14435x_find_ccl_program (fontp)
14436 struct font_info *fontp;
14437{
a42f54e6 14438 Lisp_Object list, elt;
a6582676 14439
f9b5db02 14440 elt = Qnil;
8e713be6 14441 for (list = Vfont_ccl_encoder_alist; CONSP (list); list = XCDR (list))
a6582676 14442 {
8e713be6 14443 elt = XCAR (list);
a6582676 14444 if (CONSP (elt)
8e713be6 14445 && STRINGP (XCAR (elt))
9f2feff6
KH
14446 && ((fast_c_string_match_ignore_case (XCAR (elt), fontp->name)
14447 >= 0)
14448 || (fast_c_string_match_ignore_case (XCAR (elt), fontp->full_name)
14449 >= 0)))
a42f54e6
KH
14450 break;
14451 }
f9b5db02 14452
a42f54e6
KH
14453 if (! NILP (list))
14454 {
d27f8ca7
KH
14455 struct ccl_program *ccl
14456 = (struct ccl_program *) xmalloc (sizeof (struct ccl_program));
a42f54e6 14457
8e713be6 14458 if (setup_ccl_program (ccl, XCDR (elt)) < 0)
a42f54e6
KH
14459 xfree (ccl);
14460 else
14461 fontp->font_encoder = ccl;
a6582676
KH
14462 }
14463}
14464
06a2c219 14465
dc43ef94 14466\f
06a2c219
GM
14467/***********************************************************************
14468 Initialization
14469 ***********************************************************************/
f451eb13 14470
3afe33e7
RS
14471#ifdef USE_X_TOOLKIT
14472static XrmOptionDescRec emacs_options[] = {
14473 {"-geometry", ".geometry", XrmoptionSepArg, NULL},
14474 {"-iconic", ".iconic", XrmoptionNoArg, (XtPointer) "yes"},
14475
14476 {"-internal-border-width", "*EmacsScreen.internalBorderWidth",
14477 XrmoptionSepArg, NULL},
14478 {"-ib", "*EmacsScreen.internalBorderWidth", XrmoptionSepArg, NULL},
14479
14480 {"-T", "*EmacsShell.title", XrmoptionSepArg, (XtPointer) NULL},
14481 {"-wn", "*EmacsShell.title", XrmoptionSepArg, (XtPointer) NULL},
14482 {"-title", "*EmacsShell.title", XrmoptionSepArg, (XtPointer) NULL},
14483 {"-iconname", "*EmacsShell.iconName", XrmoptionSepArg, (XtPointer) NULL},
14484 {"-in", "*EmacsShell.iconName", XrmoptionSepArg, (XtPointer) NULL},
14485 {"-mc", "*pointerColor", XrmoptionSepArg, (XtPointer) NULL},
14486 {"-cr", "*cursorColor", XrmoptionSepArg, (XtPointer) NULL}
14487};
14488#endif /* USE_X_TOOLKIT */
14489
7a13e894
RS
14490static int x_initialized;
14491
29b38361
KH
14492#ifdef MULTI_KBOARD
14493/* Test whether two display-name strings agree up to the dot that separates
14494 the screen number from the server number. */
14495static int
14496same_x_server (name1, name2)
14497 char *name1, *name2;
14498{
14499 int seen_colon = 0;
cf591cc1
RS
14500 unsigned char *system_name = XSTRING (Vsystem_name)->data;
14501 int system_name_length = strlen (system_name);
14502 int length_until_period = 0;
14503
14504 while (system_name[length_until_period] != 0
14505 && system_name[length_until_period] != '.')
14506 length_until_period++;
14507
14508 /* Treat `unix' like an empty host name. */
14509 if (! strncmp (name1, "unix:", 5))
14510 name1 += 4;
14511 if (! strncmp (name2, "unix:", 5))
14512 name2 += 4;
14513 /* Treat this host's name like an empty host name. */
14514 if (! strncmp (name1, system_name, system_name_length)
14515 && name1[system_name_length] == ':')
14516 name1 += system_name_length;
14517 if (! strncmp (name2, system_name, system_name_length)
14518 && name2[system_name_length] == ':')
14519 name2 += system_name_length;
14520 /* Treat this host's domainless name like an empty host name. */
14521 if (! strncmp (name1, system_name, length_until_period)
14522 && name1[length_until_period] == ':')
14523 name1 += length_until_period;
14524 if (! strncmp (name2, system_name, length_until_period)
14525 && name2[length_until_period] == ':')
14526 name2 += length_until_period;
14527
29b38361
KH
14528 for (; *name1 != '\0' && *name1 == *name2; name1++, name2++)
14529 {
14530 if (*name1 == ':')
14531 seen_colon++;
14532 if (seen_colon && *name1 == '.')
14533 return 1;
14534 }
14535 return (seen_colon
14536 && (*name1 == '.' || *name1 == '\0')
14537 && (*name2 == '.' || *name2 == '\0'));
14538}
14539#endif
14540
334208b7 14541struct x_display_info *
1f8255f2 14542x_term_init (display_name, xrm_option, resource_name)
334208b7 14543 Lisp_Object display_name;
1f8255f2
RS
14544 char *xrm_option;
14545 char *resource_name;
dc6f92b8 14546{
334208b7 14547 int connection;
7a13e894 14548 Display *dpy;
334208b7
RS
14549 struct x_display_info *dpyinfo;
14550 XrmDatabase xrdb;
14551
60439948
KH
14552 BLOCK_INPUT;
14553
7a13e894
RS
14554 if (!x_initialized)
14555 {
14556 x_initialize ();
14557 x_initialized = 1;
14558 }
dc6f92b8 14559
3afe33e7 14560#ifdef USE_X_TOOLKIT
2d7fc7e8
RS
14561 /* weiner@footloose.sps.mot.com reports that this causes
14562 errors with X11R5:
14563 X protocol error: BadAtom (invalid Atom parameter)
14564 on protocol request 18skiloaf.
14565 So let's not use it until R6. */
14566#ifdef HAVE_X11XTR6
bdcd49ba
RS
14567 XtSetLanguageProc (NULL, NULL, NULL);
14568#endif
14569
7f9c7f94
RS
14570 {
14571 int argc = 0;
14572 char *argv[3];
14573
14574 argv[0] = "";
14575 argc = 1;
14576 if (xrm_option)
14577 {
14578 argv[argc++] = "-xrm";
14579 argv[argc++] = xrm_option;
14580 }
14581 dpy = XtOpenDisplay (Xt_app_con, XSTRING (display_name)->data,
14582 resource_name, EMACS_CLASS,
14583 emacs_options, XtNumber (emacs_options),
14584 &argc, argv);
39d8bb4d
KH
14585
14586#ifdef HAVE_X11XTR6
10537cb1 14587 /* I think this is to compensate for XtSetLanguageProc. */
71f8198a 14588 fixup_locale ();
39d8bb4d 14589#endif
7f9c7f94 14590 }
3afe33e7
RS
14591
14592#else /* not USE_X_TOOLKIT */
bdcd49ba
RS
14593#ifdef HAVE_X11R5
14594 XSetLocaleModifiers ("");
14595#endif
7a13e894 14596 dpy = XOpenDisplay (XSTRING (display_name)->data);
3afe33e7 14597#endif /* not USE_X_TOOLKIT */
334208b7 14598
7a13e894
RS
14599 /* Detect failure. */
14600 if (dpy == 0)
60439948
KH
14601 {
14602 UNBLOCK_INPUT;
14603 return 0;
14604 }
7a13e894
RS
14605
14606 /* We have definitely succeeded. Record the new connection. */
14607
14608 dpyinfo = (struct x_display_info *) xmalloc (sizeof (struct x_display_info));
f04e1297 14609 bzero (dpyinfo, sizeof *dpyinfo);
7a13e894 14610
29b38361
KH
14611#ifdef MULTI_KBOARD
14612 {
14613 struct x_display_info *share;
14614 Lisp_Object tail;
14615
14616 for (share = x_display_list, tail = x_display_name_list; share;
8e713be6
KR
14617 share = share->next, tail = XCDR (tail))
14618 if (same_x_server (XSTRING (XCAR (XCAR (tail)))->data,
29b38361
KH
14619 XSTRING (display_name)->data))
14620 break;
14621 if (share)
14622 dpyinfo->kboard = share->kboard;
14623 else
14624 {
14625 dpyinfo->kboard = (KBOARD *) xmalloc (sizeof (KBOARD));
14626 init_kboard (dpyinfo->kboard);
59e755be
KH
14627 if (!EQ (XSYMBOL (Qvendor_specific_keysyms)->function, Qunbound))
14628 {
14629 char *vendor = ServerVendor (dpy);
9b6ed9f3 14630 UNBLOCK_INPUT;
59e755be
KH
14631 dpyinfo->kboard->Vsystem_key_alist
14632 = call1 (Qvendor_specific_keysyms,
14633 build_string (vendor ? vendor : ""));
9b6ed9f3 14634 BLOCK_INPUT;
59e755be
KH
14635 }
14636
29b38361
KH
14637 dpyinfo->kboard->next_kboard = all_kboards;
14638 all_kboards = dpyinfo->kboard;
0ad5446c
KH
14639 /* Don't let the initial kboard remain current longer than necessary.
14640 That would cause problems if a file loaded on startup tries to
06a2c219 14641 prompt in the mini-buffer. */
0ad5446c
KH
14642 if (current_kboard == initial_kboard)
14643 current_kboard = dpyinfo->kboard;
29b38361
KH
14644 }
14645 dpyinfo->kboard->reference_count++;
14646 }
b9737ad3
KH
14647#endif
14648
7a13e894
RS
14649 /* Put this display on the chain. */
14650 dpyinfo->next = x_display_list;
14651 x_display_list = dpyinfo;
14652
14653 /* Put it on x_display_name_list as well, to keep them parallel. */
14654 x_display_name_list = Fcons (Fcons (display_name, Qnil),
14655 x_display_name_list);
8e713be6 14656 dpyinfo->name_list_element = XCAR (x_display_name_list);
7a13e894
RS
14657
14658 dpyinfo->display = dpy;
dc6f92b8 14659
dc6f92b8 14660#if 0
7a13e894 14661 XSetAfterFunction (x_current_display, x_trace_wire);
c118dd06 14662#endif /* ! 0 */
7a13e894
RS
14663
14664 dpyinfo->x_id_name
fc932ac6
RS
14665 = (char *) xmalloc (STRING_BYTES (XSTRING (Vinvocation_name))
14666 + STRING_BYTES (XSTRING (Vsystem_name))
7a13e894
RS
14667 + 2);
14668 sprintf (dpyinfo->x_id_name, "%s@%s",
14669 XSTRING (Vinvocation_name)->data, XSTRING (Vsystem_name)->data);
28430d3c
JB
14670
14671 /* Figure out which modifier bits mean what. */
334208b7 14672 x_find_modifier_meanings (dpyinfo);
f451eb13 14673
ab648270 14674 /* Get the scroll bar cursor. */
7a13e894 14675 dpyinfo->vertical_scroll_bar_cursor
334208b7 14676 = XCreateFontCursor (dpyinfo->display, XC_sb_v_double_arrow);
f451eb13 14677
334208b7
RS
14678 xrdb = x_load_resources (dpyinfo->display, xrm_option,
14679 resource_name, EMACS_CLASS);
14680#ifdef HAVE_XRMSETDATABASE
14681 XrmSetDatabase (dpyinfo->display, xrdb);
14682#else
14683 dpyinfo->display->db = xrdb;
14684#endif
547d9db8 14685 /* Put the rdb where we can find it in a way that works on
7a13e894
RS
14686 all versions. */
14687 dpyinfo->xrdb = xrdb;
334208b7
RS
14688
14689 dpyinfo->screen = ScreenOfDisplay (dpyinfo->display,
14690 DefaultScreen (dpyinfo->display));
5ff67d81 14691 select_visual (dpyinfo);
43bd1b2b 14692 dpyinfo->cmap = DefaultColormapOfScreen (dpyinfo->screen);
334208b7
RS
14693 dpyinfo->height = HeightOfScreen (dpyinfo->screen);
14694 dpyinfo->width = WidthOfScreen (dpyinfo->screen);
14695 dpyinfo->root_window = RootWindowOfScreen (dpyinfo->screen);
14696 dpyinfo->grabbed = 0;
14697 dpyinfo->reference_count = 0;
14698 dpyinfo->icon_bitmap_id = -1;
06a2c219 14699 dpyinfo->font_table = NULL;
7a13e894
RS
14700 dpyinfo->n_fonts = 0;
14701 dpyinfo->font_table_size = 0;
14702 dpyinfo->bitmaps = 0;
14703 dpyinfo->bitmaps_size = 0;
14704 dpyinfo->bitmaps_last = 0;
14705 dpyinfo->scratch_cursor_gc = 0;
14706 dpyinfo->mouse_face_mouse_frame = 0;
14707 dpyinfo->mouse_face_deferred_gc = 0;
14708 dpyinfo->mouse_face_beg_row = dpyinfo->mouse_face_beg_col = -1;
14709 dpyinfo->mouse_face_end_row = dpyinfo->mouse_face_end_col = -1;
06a2c219 14710 dpyinfo->mouse_face_face_id = DEFAULT_FACE_ID;
7a13e894 14711 dpyinfo->mouse_face_window = Qnil;
0a61c667 14712 dpyinfo->mouse_face_overlay = Qnil;
7a13e894
RS
14713 dpyinfo->mouse_face_mouse_x = dpyinfo->mouse_face_mouse_y = 0;
14714 dpyinfo->mouse_face_defer = 0;
66301061 14715 dpyinfo->mouse_face_hidden = 0;
0f941935
KH
14716 dpyinfo->x_focus_frame = 0;
14717 dpyinfo->x_focus_event_frame = 0;
14718 dpyinfo->x_highlight_frame = 0;
06a2c219 14719 dpyinfo->image_cache = make_image_cache ();
334208b7 14720
43bd1b2b 14721 /* See if a private colormap is requested. */
5ff67d81
GM
14722 if (dpyinfo->visual == DefaultVisualOfScreen (dpyinfo->screen))
14723 {
14724 if (dpyinfo->visual->class == PseudoColor)
14725 {
14726 Lisp_Object value;
14727 value = display_x_get_resource (dpyinfo,
14728 build_string ("privateColormap"),
14729 build_string ("PrivateColormap"),
14730 Qnil, Qnil);
14731 if (STRINGP (value)
14732 && (!strcmp (XSTRING (value)->data, "true")
14733 || !strcmp (XSTRING (value)->data, "on")))
14734 dpyinfo->cmap = XCopyColormapAndFree (dpyinfo->display, dpyinfo->cmap);
14735 }
43bd1b2b 14736 }
5ff67d81
GM
14737 else
14738 dpyinfo->cmap = XCreateColormap (dpyinfo->display, dpyinfo->root_window,
14739 dpyinfo->visual, AllocNone);
43bd1b2b 14740
06a2c219
GM
14741 {
14742 int screen_number = XScreenNumberOfScreen (dpyinfo->screen);
14743 double pixels = DisplayHeight (dpyinfo->display, screen_number);
14744 double mm = DisplayHeightMM (dpyinfo->display, screen_number);
14745 dpyinfo->resy = pixels * 25.4 / mm;
14746 pixels = DisplayWidth (dpyinfo->display, screen_number);
14747 mm = DisplayWidthMM (dpyinfo->display, screen_number);
14748 dpyinfo->resx = pixels * 25.4 / mm;
14749 }
14750
334208b7
RS
14751 dpyinfo->Xatom_wm_protocols
14752 = XInternAtom (dpyinfo->display, "WM_PROTOCOLS", False);
14753 dpyinfo->Xatom_wm_take_focus
14754 = XInternAtom (dpyinfo->display, "WM_TAKE_FOCUS", False);
14755 dpyinfo->Xatom_wm_save_yourself
14756 = XInternAtom (dpyinfo->display, "WM_SAVE_YOURSELF", False);
14757 dpyinfo->Xatom_wm_delete_window
14758 = XInternAtom (dpyinfo->display, "WM_DELETE_WINDOW", False);
14759 dpyinfo->Xatom_wm_change_state
14760 = XInternAtom (dpyinfo->display, "WM_CHANGE_STATE", False);
14761 dpyinfo->Xatom_wm_configure_denied
14762 = XInternAtom (dpyinfo->display, "WM_CONFIGURE_DENIED", False);
14763 dpyinfo->Xatom_wm_window_moved
14764 = XInternAtom (dpyinfo->display, "WM_MOVED", False);
14765 dpyinfo->Xatom_editres
14766 = XInternAtom (dpyinfo->display, "Editres", False);
14767 dpyinfo->Xatom_CLIPBOARD
14768 = XInternAtom (dpyinfo->display, "CLIPBOARD", False);
14769 dpyinfo->Xatom_TIMESTAMP
14770 = XInternAtom (dpyinfo->display, "TIMESTAMP", False);
14771 dpyinfo->Xatom_TEXT
14772 = XInternAtom (dpyinfo->display, "TEXT", False);
dc43ef94
KH
14773 dpyinfo->Xatom_COMPOUND_TEXT
14774 = XInternAtom (dpyinfo->display, "COMPOUND_TEXT", False);
334208b7
RS
14775 dpyinfo->Xatom_DELETE
14776 = XInternAtom (dpyinfo->display, "DELETE", False);
14777 dpyinfo->Xatom_MULTIPLE
14778 = XInternAtom (dpyinfo->display, "MULTIPLE", False);
14779 dpyinfo->Xatom_INCR
14780 = XInternAtom (dpyinfo->display, "INCR", False);
14781 dpyinfo->Xatom_EMACS_TMP
14782 = XInternAtom (dpyinfo->display, "_EMACS_TMP_", False);
14783 dpyinfo->Xatom_TARGETS
14784 = XInternAtom (dpyinfo->display, "TARGETS", False);
14785 dpyinfo->Xatom_NULL
14786 = XInternAtom (dpyinfo->display, "NULL", False);
14787 dpyinfo->Xatom_ATOM_PAIR
14788 = XInternAtom (dpyinfo->display, "ATOM_PAIR", False);
dc43ef94
KH
14789 /* For properties of font. */
14790 dpyinfo->Xatom_PIXEL_SIZE
14791 = XInternAtom (dpyinfo->display, "PIXEL_SIZE", False);
14792 dpyinfo->Xatom_MULE_BASELINE_OFFSET
14793 = XInternAtom (dpyinfo->display, "_MULE_BASELINE_OFFSET", False);
14794 dpyinfo->Xatom_MULE_RELATIVE_COMPOSE
14795 = XInternAtom (dpyinfo->display, "_MULE_RELATIVE_COMPOSE", False);
f78798df
KH
14796 dpyinfo->Xatom_MULE_DEFAULT_ASCENT
14797 = XInternAtom (dpyinfo->display, "_MULE_DEFAULT_ASCENT", False);
334208b7 14798
06a2c219
GM
14799 /* Ghostscript support. */
14800 dpyinfo->Xatom_PAGE = XInternAtom (dpyinfo->display, "PAGE", False);
14801 dpyinfo->Xatom_DONE = XInternAtom (dpyinfo->display, "DONE", False);
14802
14803 dpyinfo->Xatom_Scrollbar = XInternAtom (dpyinfo->display, "SCROLLBAR",
14804 False);
14805
547d9db8
KH
14806 dpyinfo->cut_buffers_initialized = 0;
14807
334208b7
RS
14808 connection = ConnectionNumber (dpyinfo->display);
14809 dpyinfo->connection = connection;
14810
dc43ef94 14811 {
5d7cc324
RS
14812 char null_bits[1];
14813
14814 null_bits[0] = 0x00;
dc43ef94
KH
14815
14816 dpyinfo->null_pixel
14817 = XCreatePixmapFromBitmapData (dpyinfo->display, dpyinfo->root_window,
14818 null_bits, 1, 1, (long) 0, (long) 0,
14819 1);
14820 }
14821
06a2c219
GM
14822 {
14823 extern int gray_bitmap_width, gray_bitmap_height;
10659c77 14824 extern char *gray_bitmap_bits;
06a2c219
GM
14825 dpyinfo->gray
14826 = XCreatePixmapFromBitmapData (dpyinfo->display, dpyinfo->root_window,
14827 gray_bitmap_bits,
14828 gray_bitmap_width, gray_bitmap_height,
14829 (unsigned long) 1, (unsigned long) 0, 1);
14830 }
14831
f5d11644
GM
14832#ifdef HAVE_X_I18N
14833 xim_initialize (dpyinfo, resource_name);
14834#endif
14835
87485d6f
MW
14836#ifdef subprocesses
14837 /* This is only needed for distinguishing keyboard and process input. */
334208b7 14838 if (connection != 0)
7a13e894 14839 add_keyboard_wait_descriptor (connection);
87485d6f 14840#endif
6d4238f3 14841
041b69ac 14842#ifndef F_SETOWN_BUG
dc6f92b8 14843#ifdef F_SETOWN
dc6f92b8 14844#ifdef F_SETOWN_SOCK_NEG
61c3ce62 14845 /* stdin is a socket here */
334208b7 14846 fcntl (connection, F_SETOWN, -getpid ());
c118dd06 14847#else /* ! defined (F_SETOWN_SOCK_NEG) */
334208b7 14848 fcntl (connection, F_SETOWN, getpid ());
c118dd06
JB
14849#endif /* ! defined (F_SETOWN_SOCK_NEG) */
14850#endif /* ! defined (F_SETOWN) */
041b69ac 14851#endif /* F_SETOWN_BUG */
dc6f92b8
JB
14852
14853#ifdef SIGIO
eee20f6a
KH
14854 if (interrupt_input)
14855 init_sigio (connection);
c118dd06 14856#endif /* ! defined (SIGIO) */
dc6f92b8 14857
51b592fb 14858#ifdef USE_LUCID
f8c39f51 14859#ifdef HAVE_X11R5 /* It seems X11R4 lacks XtCvtStringToFont, and XPointer. */
51b592fb
RS
14860 /* Make sure that we have a valid font for dialog boxes
14861 so that Xt does not crash. */
14862 {
14863 Display *dpy = dpyinfo->display;
14864 XrmValue d, fr, to;
14865 Font font;
e99db5a1 14866 int count;
51b592fb
RS
14867
14868 d.addr = (XPointer)&dpy;
14869 d.size = sizeof (Display *);
14870 fr.addr = XtDefaultFont;
14871 fr.size = sizeof (XtDefaultFont);
14872 to.size = sizeof (Font *);
14873 to.addr = (XPointer)&font;
e99db5a1 14874 count = x_catch_errors (dpy);
51b592fb
RS
14875 if (!XtCallConverter (dpy, XtCvtStringToFont, &d, 1, &fr, &to, NULL))
14876 abort ();
14877 if (x_had_errors_p (dpy) || !XQueryFont (dpy, font))
14878 XrmPutLineResource (&xrdb, "Emacs.dialog.*.font: 9x15");
e99db5a1 14879 x_uncatch_errors (dpy, count);
51b592fb
RS
14880 }
14881#endif
f8c39f51 14882#endif
51b592fb 14883
34e23e5a
GM
14884 /* See if we should run in synchronous mode. This is useful
14885 for debugging X code. */
14886 {
14887 Lisp_Object value;
14888 value = display_x_get_resource (dpyinfo,
14889 build_string ("synchronous"),
14890 build_string ("Synchronous"),
14891 Qnil, Qnil);
14892 if (STRINGP (value)
14893 && (!strcmp (XSTRING (value)->data, "true")
14894 || !strcmp (XSTRING (value)->data, "on")))
14895 XSynchronize (dpyinfo->display, True);
14896 }
14897
60439948
KH
14898 UNBLOCK_INPUT;
14899
7a13e894
RS
14900 return dpyinfo;
14901}
14902\f
14903/* Get rid of display DPYINFO, assuming all frames are already gone,
14904 and without sending any more commands to the X server. */
dc6f92b8 14905
7a13e894
RS
14906void
14907x_delete_display (dpyinfo)
14908 struct x_display_info *dpyinfo;
14909{
14910 delete_keyboard_wait_descriptor (dpyinfo->connection);
14911
14912 /* Discard this display from x_display_name_list and x_display_list.
14913 We can't use Fdelq because that can quit. */
14914 if (! NILP (x_display_name_list)
8e713be6
KR
14915 && EQ (XCAR (x_display_name_list), dpyinfo->name_list_element))
14916 x_display_name_list = XCDR (x_display_name_list);
7a13e894
RS
14917 else
14918 {
14919 Lisp_Object tail;
14920
14921 tail = x_display_name_list;
8e713be6 14922 while (CONSP (tail) && CONSP (XCDR (tail)))
7a13e894 14923 {
bffcfca9 14924 if (EQ (XCAR (XCDR (tail)), dpyinfo->name_list_element))
7a13e894 14925 {
f3fbd155 14926 XSETCDR (tail, XCDR (XCDR (tail)));
7a13e894
RS
14927 break;
14928 }
8e713be6 14929 tail = XCDR (tail);
7a13e894
RS
14930 }
14931 }
14932
9bda743f
GM
14933 if (next_noop_dpyinfo == dpyinfo)
14934 next_noop_dpyinfo = dpyinfo->next;
14935
7a13e894
RS
14936 if (x_display_list == dpyinfo)
14937 x_display_list = dpyinfo->next;
7f9c7f94
RS
14938 else
14939 {
14940 struct x_display_info *tail;
7a13e894 14941
7f9c7f94
RS
14942 for (tail = x_display_list; tail; tail = tail->next)
14943 if (tail->next == dpyinfo)
14944 tail->next = tail->next->next;
14945 }
7a13e894 14946
0d777288
RS
14947#ifndef USE_X_TOOLKIT /* I'm told Xt does this itself. */
14948#ifndef AIX /* On AIX, XCloseDisplay calls this. */
7f9c7f94
RS
14949 XrmDestroyDatabase (dpyinfo->xrdb);
14950#endif
0d777288 14951#endif
29b38361
KH
14952#ifdef MULTI_KBOARD
14953 if (--dpyinfo->kboard->reference_count == 0)
39f79001 14954 delete_kboard (dpyinfo->kboard);
b9737ad3 14955#endif
f5d11644
GM
14956#ifdef HAVE_X_I18N
14957 if (dpyinfo->xim)
14958 xim_close_dpy (dpyinfo);
14959#endif
14960
b9737ad3
KH
14961 xfree (dpyinfo->font_table);
14962 xfree (dpyinfo->x_id_name);
f04e1297 14963 xfree (dpyinfo->color_cells);
b9737ad3 14964 xfree (dpyinfo);
7a13e894 14965}
f04e1297 14966
7a13e894
RS
14967\f
14968/* Set up use of X before we make the first connection. */
14969
06a2c219
GM
14970static struct redisplay_interface x_redisplay_interface =
14971{
14972 x_produce_glyphs,
14973 x_write_glyphs,
14974 x_insert_glyphs,
14975 x_clear_end_of_line,
14976 x_scroll_run,
14977 x_after_update_window_line,
14978 x_update_window_begin,
14979 x_update_window_end,
14980 XTcursor_to,
14981 x_flush,
71b8321e 14982 x_clear_mouse_face,
66ac4b0e
GM
14983 x_get_glyph_overhangs,
14984 x_fix_overlapping_area
06a2c219
GM
14985};
14986
dfcf069d 14987void
7a13e894
RS
14988x_initialize ()
14989{
06a2c219
GM
14990 rif = &x_redisplay_interface;
14991
14992 clear_frame_hook = x_clear_frame;
14993 ins_del_lines_hook = x_ins_del_lines;
06a2c219 14994 delete_glyphs_hook = x_delete_glyphs;
dc6f92b8
JB
14995 ring_bell_hook = XTring_bell;
14996 reset_terminal_modes_hook = XTreset_terminal_modes;
14997 set_terminal_modes_hook = XTset_terminal_modes;
06a2c219
GM
14998 update_begin_hook = x_update_begin;
14999 update_end_hook = x_update_end;
dc6f92b8
JB
15000 set_terminal_window_hook = XTset_terminal_window;
15001 read_socket_hook = XTread_socket;
b8009dd1 15002 frame_up_to_date_hook = XTframe_up_to_date;
90e65f07 15003 mouse_position_hook = XTmouse_position;
f451eb13 15004 frame_rehighlight_hook = XTframe_rehighlight;
dbc4e1c1 15005 frame_raise_lower_hook = XTframe_raise_lower;
ab648270
JB
15006 set_vertical_scroll_bar_hook = XTset_vertical_scroll_bar;
15007 condemn_scroll_bars_hook = XTcondemn_scroll_bars;
15008 redeem_scroll_bar_hook = XTredeem_scroll_bar;
15009 judge_scroll_bars_hook = XTjudge_scroll_bars;
06a2c219 15010 estimate_mode_line_height_hook = x_estimate_mode_line_height;
58769bee 15011
f676886a 15012 scroll_region_ok = 1; /* we'll scroll partial frames */
9017309f 15013 char_ins_del_ok = 1;
dc6f92b8
JB
15014 line_ins_del_ok = 1; /* we'll just blt 'em */
15015 fast_clear_end_of_line = 1; /* X does this well */
58769bee 15016 memory_below_frame = 0; /* we don't remember what scrolls
dc6f92b8
JB
15017 off the bottom */
15018 baud_rate = 19200;
15019
7a13e894 15020 x_noop_count = 0;
9ea173e8 15021 last_tool_bar_item = -1;
06a2c219
GM
15022 any_help_event_p = 0;
15023
b30b24cb
RS
15024 /* Try to use interrupt input; if we can't, then start polling. */
15025 Fset_input_mode (Qt, Qnil, Qt, Qnil);
15026
7f9c7f94
RS
15027#ifdef USE_X_TOOLKIT
15028 XtToolkitInitialize ();
651f03b6 15029
7f9c7f94 15030 Xt_app_con = XtCreateApplicationContext ();
651f03b6
GM
15031
15032 /* Register a converter from strings to pixels, which uses
15033 Emacs' color allocation infrastructure. */
15034 XtAppSetTypeConverter (Xt_app_con,
15035 XtRString, XtRPixel, cvt_string_to_pixel,
15036 cvt_string_to_pixel_args,
15037 XtNumber (cvt_string_to_pixel_args),
15038 XtCacheByDisplay, cvt_pixel_dtor);
15039
665881ad 15040 XtAppSetFallbackResources (Xt_app_con, Xt_default_resources);
bffcfca9
GM
15041
15042 /* Install an asynchronous timer that processes Xt timeout events
15043 every 0.1s. This is necessary because some widget sets use
15044 timeouts internally, for example the LessTif menu bar, or the
15045 Xaw3d scroll bar. When Xt timouts aren't processed, these
15046 widgets don't behave normally. */
15047 {
15048 EMACS_TIME interval;
15049 EMACS_SET_SECS_USECS (interval, 0, 100000);
15050 start_atimer (ATIMER_CONTINUOUS, interval, x_process_timeouts, 0);
15051 }
db74249b 15052#endif
bffcfca9 15053
eccc05db 15054#ifdef USE_TOOLKIT_SCROLL_BARS
ec18280f
SM
15055 xaw3d_arrow_scroll = False;
15056 xaw3d_pick_top = True;
7f9c7f94
RS
15057#endif
15058
58769bee 15059 /* Note that there is no real way portable across R3/R4 to get the
c118dd06 15060 original error handler. */
e99db5a1 15061 XSetErrorHandler (x_error_handler);
334208b7 15062 XSetIOErrorHandler (x_io_error_quitter);
dc6f92b8 15063
06a2c219 15064 /* Disable Window Change signals; they are handled by X events. */
dc6f92b8
JB
15065#ifdef SIGWINCH
15066 signal (SIGWINCH, SIG_DFL);
c118dd06 15067#endif /* ! defined (SIGWINCH) */
dc6f92b8 15068
92e2441b 15069 signal (SIGPIPE, x_connection_signal);
5f30b957
JD
15070
15071#ifdef HAVE_X_SM
15072 x_session_initialize ();
15073#endif
dc6f92b8 15074}
55123275 15075
06a2c219 15076
55123275
JB
15077void
15078syms_of_xterm ()
15079{
e99db5a1
RS
15080 staticpro (&x_error_message_string);
15081 x_error_message_string = Qnil;
15082
7a13e894
RS
15083 staticpro (&x_display_name_list);
15084 x_display_name_list = Qnil;
334208b7 15085
ab648270 15086 staticpro (&last_mouse_scroll_bar);
e53cb100 15087 last_mouse_scroll_bar = Qnil;
59e755be
KH
15088
15089 staticpro (&Qvendor_specific_keysyms);
15090 Qvendor_specific_keysyms = intern ("vendor-specific-keysyms");
2237cac9
RS
15091
15092 staticpro (&last_mouse_press_frame);
15093 last_mouse_press_frame = Qnil;
06a2c219 15094
06a2c219 15095 help_echo = Qnil;
be010514
GM
15096 staticpro (&help_echo);
15097 help_echo_object = Qnil;
15098 staticpro (&help_echo_object);
7cea38bc
GM
15099 help_echo_window = Qnil;
15100 staticpro (&help_echo_window);
06a2c219 15101 previous_help_echo = Qnil;
be010514
GM
15102 staticpro (&previous_help_echo);
15103 help_echo_pos = -1;
06a2c219 15104
503e457e
PJ
15105 DEFVAR_BOOL ("x-autoselect-window", &x_autoselect_window_p,
15106 doc: /* *Non-nil means autoselect window with mouse pointer. */);
15107 x_autoselect_window_p = 0;
15108
7ee72033
MB
15109 DEFVAR_BOOL ("x-stretch-cursor", &x_stretch_cursor_p,
15110 doc: /* *Non-nil means draw block cursor as wide as the glyph under it.
228299fa
GM
15111For example, if a block cursor is over a tab, it will be drawn as
15112wide as that tab on the display. */);
06a2c219
GM
15113 x_stretch_cursor_p = 0;
15114
a72d5ce5 15115 DEFVAR_BOOL ("x-use-underline-position-properties",
7ee72033
MB
15116 &x_use_underline_position_properties,
15117 doc: /* *Non-nil means make use of UNDERLINE_POSITION font properties.
f0529b5b 15118nil means ignore them. If you encounter fonts with bogus
228299fa
GM
15119UNDERLINE_POSITION font properties, for example 7x13 on XFree prior
15120to 4.1, set this to nil. */);
a72d5ce5
GM
15121 x_use_underline_position_properties = 1;
15122
7ee72033
MB
15123 DEFVAR_LISP ("x-toolkit-scroll-bars", &Vx_toolkit_scroll_bars,
15124 doc: /* What X toolkit scroll bars Emacs uses.
228299fa
GM
15125A value of nil means Emacs doesn't use X toolkit scroll bars.
15126Otherwise, value is a symbol describing the X toolkit. */);
eccc05db 15127#ifdef USE_TOOLKIT_SCROLL_BARS
5bf04520
GM
15128#ifdef USE_MOTIF
15129 Vx_toolkit_scroll_bars = intern ("motif");
15130#elif defined HAVE_XAW3D
15131 Vx_toolkit_scroll_bars = intern ("xaw3d");
15132#else
15133 Vx_toolkit_scroll_bars = intern ("xaw");
15134#endif
06a2c219 15135#else
5bf04520 15136 Vx_toolkit_scroll_bars = Qnil;
06a2c219
GM
15137#endif
15138
06a2c219
GM
15139 staticpro (&last_mouse_motion_frame);
15140 last_mouse_motion_frame = Qnil;
98659da6
KG
15141
15142 Qmodifier_value = intern ("modifier-value");
15143 Qalt = intern ("alt");
15144 Fput (Qalt, Qmodifier_value, make_number (alt_modifier));
15145 Qhyper = intern ("hyper");
15146 Fput (Qhyper, Qmodifier_value, make_number (hyper_modifier));
15147 Qmeta = intern ("meta");
15148 Fput (Qmeta, Qmodifier_value, make_number (meta_modifier));
15149 Qsuper = intern ("super");
15150 Fput (Qsuper, Qmodifier_value, make_number (super_modifier));
15151
15152 DEFVAR_LISP ("x-alt-keysym", &Vx_alt_keysym,
15153 doc: /* Which keys Emacs uses for the alt modifier.
15154This should be one of the symbols `alt', `hyper', `meta', `super'.
15155For example, `alt' means use the Alt_L and Alt_R keysyms. The default
15156is nil, which is the same as `alt'. */);
15157 Vx_alt_keysym = Qnil;
15158
15159 DEFVAR_LISP ("x-hyper-keysym", &Vx_hyper_keysym,
15160 doc: /* Which keys Emacs uses for the hyper modifier.
15161This should be one of the symbols `alt', `hyper', `meta', `super'.
15162For example, `hyper' means use the Hyper_L and Hyper_R keysyms. The
15163default is nil, which is the same as `hyper'. */);
15164 Vx_hyper_keysym = Qnil;
15165
15166 DEFVAR_LISP ("x-meta-keysym", &Vx_meta_keysym,
15167 doc: /* Which keys Emacs uses for the meta modifier.
15168This should be one of the symbols `alt', `hyper', `meta', `super'.
15169For example, `meta' means use the Meta_L and Meta_R keysyms. The
15170default is nil, which is the same as `meta'. */);
15171 Vx_meta_keysym = Qnil;
15172
15173 DEFVAR_LISP ("x-super-keysym", &Vx_super_keysym,
15174 doc: /* Which keys Emacs uses for the super modifier.
15175This should be one of the symbols `alt', `hyper', `meta', `super'.
15176For example, `super' means use the Super_L and Super_R keysyms. The
15177default is nil, which is the same as `super'. */);
15178 Vx_super_keysym = Qnil;
15179
55123275 15180}
6cf0ae86 15181
1d6c120a 15182#endif /* HAVE_X_WINDOWS */