* src/macmenu.c (Vmenu_updating_frame, syms_of_xmenu):
[bpt/emacs.git] / src / xterm.c
CommitLineData
dc6f92b8 1/* X Communication module for terminals which understand the X protocol.
043f7f73 2 Copyright (C) 1989, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
5badc98d 3 2002, 2003, 2004, 2005, 2006 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
4fc5845f
LK
19the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20Boston, MA 02110-1301, 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
488dd4c4
JD
100#ifdef USE_GTK
101#include "gtkutil.h"
102#endif
103
d624284c 104#ifdef USE_LUCID
55a8b3ed 105extern int xlwmenu_window_p P_ ((Widget w, Window window));
d624284c
PJ
106extern void xlwmenu_redisplay P_ ((Widget));
107#endif
108
488dd4c4 109#if defined (USE_X_TOOLKIT) || defined (USE_GTK)
06a2c219 110
952291d9
GM
111extern void free_frame_menubar P_ ((struct frame *));
112extern struct frame *x_menubar_window_to_frame P_ ((struct x_display_info *,
113 int));
488dd4c4 114#endif
06a2c219 115
488dd4c4 116#ifdef USE_X_TOOLKIT
0fdff6bb
RS
117#if (XtSpecificationRelease >= 5) && !defined(NO_EDITRES)
118#define HACK_EDITRES
119extern void _XEditResCheckMessages ();
120#endif /* not NO_EDITRES */
06a2c219
GM
121
122/* Include toolkit specific headers for the scroll bar widget. */
123
124#ifdef USE_TOOLKIT_SCROLL_BARS
125#if defined USE_MOTIF
126#include <Xm/Xm.h> /* for LESSTIF_VERSION */
127#include <Xm/ScrollBar.h>
ec18280f
SM
128#else /* !USE_MOTIF i.e. use Xaw */
129
130#ifdef HAVE_XAW3D
06a2c219 131#include <X11/Xaw3d/Simple.h>
06a2c219 132#include <X11/Xaw3d/Scrollbar.h>
6ca53601 133#include <X11/Xaw3d/ThreeD.h>
ec18280f
SM
134#else /* !HAVE_XAW3D */
135#include <X11/Xaw/Simple.h>
136#include <X11/Xaw/Scrollbar.h>
137#endif /* !HAVE_XAW3D */
138#ifndef XtNpickTop
139#define XtNpickTop "pickTop"
140#endif /* !XtNpickTop */
141#endif /* !USE_MOTIF */
06a2c219
GM
142#endif /* USE_TOOLKIT_SCROLL_BARS */
143
3afe33e7
RS
144#endif /* USE_X_TOOLKIT */
145
488dd4c4 146#if ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK)
b849c413 147#define x_any_window_to_frame x_window_to_frame
5627c40e 148#define x_top_window_to_frame x_window_to_frame
b849c413
RS
149#endif
150
546e6d5b 151#ifdef USE_X_TOOLKIT
d067ea8b 152#include "widget.h"
546e6d5b
RS
153#ifndef XtNinitialState
154#define XtNinitialState "initialState"
155#endif
156#endif
157
06a2c219
GM
158#define abs(x) ((x) < 0 ? -(x) : (x))
159
51f3cc3b 160/* Default to using XIM if available. */
3ff483be 161#ifdef USE_XIM
51f3cc3b 162int use_xim = 1;
3ff483be
KS
163#else
164int use_xim = 0; /* configure --without-xim */
165#endif
166
06a2c219 167\f
06a2c219 168
5bf04520 169/* Non-nil means Emacs uses toolkit scroll bars. */
06a2c219 170
5bf04520 171Lisp_Object Vx_toolkit_scroll_bars;
06a2c219 172
06a2c219
GM
173/* Non-zero means that a HELP_EVENT has been generated since Emacs
174 start. */
175
176static int any_help_event_p;
177
ee8ceff8 178/* Last window where we saw the mouse. Used by mouse-autoselect-window. */
5bc62483 179static Lisp_Object last_window;
503e457e 180
a72d5ce5
GM
181/* Non-zero means make use of UNDERLINE_POSITION font properties. */
182
183int x_use_underline_position_properties;
184
30f27523
KS
185/* Non-zero means to draw the underline at the same place as the descent line. */
186
187int x_underline_at_descent_line;
188
06a2c219
GM
189/* This is a chain of structures for all the X displays currently in
190 use. */
191
334208b7 192struct x_display_info *x_display_list;
dc6f92b8 193
06a2c219
GM
194/* This is a list of cons cells, each of the form (NAME
195 . FONT-LIST-CACHE), one for each element of x_display_list and in
196 the same order. NAME is the name of the frame. FONT-LIST-CACHE
197 records previous values returned by x-list-fonts. */
198
7a13e894 199Lisp_Object x_display_name_list;
f451eb13 200
987d2ad1 201/* Frame being updated by update_frame. This is declared in term.c.
06a2c219
GM
202 This is set by update_begin and looked at by all the XT functions.
203 It is zero while not inside an update. In that case, the XT
204 functions assume that `selected_frame' is the frame to apply to. */
205
d0386f2a 206extern struct frame *updating_frame;
dc6f92b8 207
06a2c219
GM
208/* This is a frame waiting to be auto-raised, within XTread_socket. */
209
0134a210
RS
210struct frame *pending_autoraise_frame;
211
7f9c7f94
RS
212#ifdef USE_X_TOOLKIT
213/* The application context for Xt use. */
214XtAppContext Xt_app_con;
06a2c219
GM
215static String Xt_default_resources[] = {0};
216#endif /* USE_X_TOOLKIT */
665881ad 217
bffcfca9
GM
218/* Non-zero means user is interacting with a toolkit scroll bar. */
219
220static int toolkit_scroll_bar_interaction;
dc6f92b8 221
0666d82c
KS
222/* Non-zero means to not move point as a result of clicking on a
223 frame to focus it (when focus-follows-mouse is nil). */
224
225int x_mouse_click_focus_ignore_position;
226
227/* Non-zero timeout value means ignore next mouse click if it arrives
228 before that timeout elapses (i.e. as part of the same sequence of
229 events resulting from clicking on a frame to select it). */
230
231static unsigned long ignore_next_mouse_click_timeout;
232
69388238
RS
233/* Mouse movement.
234
06a2c219 235 Formerly, we used PointerMotionHintMask (in standard_event_mask)
f5bb65ec
RS
236 so that we would have to call XQueryPointer after each MotionNotify
237 event to ask for another such event. However, this made mouse tracking
238 slow, and there was a bug that made it eventually stop.
239
240 Simply asking for MotionNotify all the time seems to work better.
241
69388238
RS
242 In order to avoid asking for motion events and then throwing most
243 of them away or busy-polling the server for mouse positions, we ask
244 the server for pointer motion hints. This means that we get only
245 one event per group of mouse movements. "Groups" are delimited by
246 other kinds of events (focus changes and button clicks, for
247 example), or by XQueryPointer calls; when one of these happens, we
248 get another MotionNotify event the next time the mouse moves. This
249 is at least as efficient as getting motion events when mouse
250 tracking is on, and I suspect only negligibly worse when tracking
f5bb65ec 251 is off. */
69388238
RS
252
253/* Where the mouse was last time we reported a mouse event. */
69388238 254
06a2c219 255static XRectangle last_mouse_glyph;
0a3fde9d 256static FRAME_PTR last_mouse_glyph_frame;
2237cac9
RS
257static Lisp_Object last_mouse_press_frame;
258
69388238
RS
259/* The scroll bar in which the last X motion event occurred.
260
06a2c219
GM
261 If the last X motion event occurred in a scroll bar, we set this so
262 XTmouse_position can know whether to report a scroll bar motion or
69388238
RS
263 an ordinary motion.
264
06a2c219
GM
265 If the last X motion event didn't occur in a scroll bar, we set
266 this to Qnil, to tell XTmouse_position to return an ordinary motion
267 event. */
268
69388238
RS
269static Lisp_Object last_mouse_scroll_bar;
270
69388238
RS
271/* This is a hack. We would really prefer that XTmouse_position would
272 return the time associated with the position it returns, but there
06a2c219 273 doesn't seem to be any way to wrest the time-stamp from the server
69388238
RS
274 along with the position query. So, we just keep track of the time
275 of the last movement we received, and return that in hopes that
276 it's somewhat accurate. */
06a2c219 277
69388238
RS
278static Time last_mouse_movement_time;
279
06a2c219
GM
280/* Incremented by XTread_socket whenever it really tries to read
281 events. */
282
c0a04927
RS
283#ifdef __STDC__
284static int volatile input_signal_count;
285#else
286static int input_signal_count;
287#endif
288
7a13e894 289/* Used locally within XTread_socket. */
06a2c219 290
7a13e894 291static int x_noop_count;
dc6f92b8 292
7a13e894 293/* Initial values of argv and argc. */
06a2c219 294
7a13e894
RS
295extern char **initial_argv;
296extern int initial_argc;
dc6f92b8 297
7a13e894 298extern Lisp_Object Vcommand_line_args, Vsystem_name;
dc6f92b8 299
06a2c219 300/* Tells if a window manager is present or not. */
7a13e894
RS
301
302extern Lisp_Object Vx_no_window_manager;
dc6f92b8 303
83c6eb57 304extern Lisp_Object Qeql;
b8009dd1 305
dc6f92b8
JB
306extern int errno;
307
dfeccd2d 308/* A mask of extra modifier bits to put into every keyboard char. */
06a2c219 309
31ade731 310extern EMACS_INT extra_keyboard_modifiers;
64bb1782 311
98659da6
KG
312/* The keysyms to use for the various modifiers. */
313
314Lisp_Object Vx_alt_keysym, Vx_hyper_keysym, Vx_meta_keysym, Vx_super_keysym;
dbd4b028 315Lisp_Object Vx_keysym_table;
98659da6
KG
316static Lisp_Object Qalt, Qhyper, Qmeta, Qsuper, Qmodifier_value;
317
59e755be 318static Lisp_Object Qvendor_specific_keysyms;
3db9e31e 319static Lisp_Object Qlatin_1;
59e755be 320
952291d9 321extern XrmDatabase x_load_resources P_ ((Display *, char *, char *, char *));
66c8f1a8 322extern int x_bitmap_mask P_ ((FRAME_PTR, int));
7a13e894 323
651f03b6 324static int x_alloc_nearest_color_1 P_ ((Display *, Colormap, XColor *));
499b1844 325static void x_set_window_size_1 P_ ((struct frame *, int, int, int));
651f03b6 326static const XColor *x_color_cells P_ ((Display *, int *));
71b8321e 327static void x_update_window_end P_ ((struct window *, int, int));
e92928a7 328
06a2c219 329static int x_io_error_quitter P_ ((Display *));
06a2c219
GM
330static void x_font_min_bounds P_ ((XFontStruct *, int *, int *));
331static int x_compute_min_glyph_bounds P_ ((struct frame *));
06a2c219
GM
332static void x_update_end P_ ((struct frame *));
333static void XTframe_up_to_date P_ ((struct frame *));
06a2c219
GM
334static void XTset_terminal_modes P_ ((void));
335static void XTreset_terminal_modes P_ ((void));
06a2c219 336static void x_clear_frame P_ ((void));
06a2c219
GM
337static void frame_highlight P_ ((struct frame *));
338static void frame_unhighlight P_ ((struct frame *));
339static void x_new_focus_frame P_ ((struct x_display_info *, struct frame *));
89079179
KS
340static void x_focus_changed P_ ((int, int, struct x_display_info *,
341 struct frame *, struct input_event *));
342static void x_detect_focus_change P_ ((struct x_display_info *,
343 XEvent *, struct input_event *));
06a2c219
GM
344static void XTframe_rehighlight P_ ((struct frame *));
345static void x_frame_rehighlight P_ ((struct x_display_info *));
346static void x_draw_hollow_cursor P_ ((struct window *, struct glyph_row *));
65c26775
EZ
347static void x_draw_bar_cursor P_ ((struct window *, struct glyph_row *, int,
348 enum text_cursor_kinds));
06a2c219 349
08f66682 350static void x_clip_to_row P_ ((struct window *, struct glyph_row *, int, GC));
06a2c219 351static void x_flush P_ ((struct frame *f));
952291d9
GM
352static void x_update_begin P_ ((struct frame *));
353static void x_update_window_begin P_ ((struct window *));
952291d9 354static void x_after_update_window_line P_ ((struct glyph_row *));
810f2256 355static struct scroll_bar *x_window_to_scroll_bar P_ ((Display *, Window));
b52b65bd
GM
356static void x_scroll_bar_report_motion P_ ((struct frame **, Lisp_Object *,
357 enum scroll_bar_part *,
358 Lisp_Object *, Lisp_Object *,
359 unsigned long *));
d0fa3e56 360static void x_check_fullscreen P_ ((struct frame *));
d692a3d5
JD
361static void x_check_expected_move P_ ((struct frame *, int, int));
362static void x_sync_with_move P_ ((struct frame *, int, int, int));
89079179
KS
363static int handle_one_xevent P_ ((struct x_display_info *, XEvent *,
364 int *, struct input_event *));
2381d38d 365static SIGTYPE x_connection_closed P_ ((Display *, char *)) NO_RETURN;
488dd4c4 366
06a2c219
GM
367
368/* Flush display of frame F, or of all frames if F is null. */
369
370static void
371x_flush (f)
372 struct frame *f;
373{
374 BLOCK_INPUT;
375 if (f == NULL)
376 {
377 Lisp_Object rest, frame;
378 FOR_EACH_FRAME (rest, frame)
379 x_flush (XFRAME (frame));
380 }
381 else if (FRAME_X_P (f))
382 XFlush (FRAME_X_DISPLAY (f));
383 UNBLOCK_INPUT;
384}
385
dc6f92b8 386
06a2c219
GM
387/* Remove calls to XFlush by defining XFlush to an empty replacement.
388 Calls to XFlush should be unnecessary because the X output buffer
389 is flushed automatically as needed by calls to XPending,
390 XNextEvent, or XWindowEvent according to the XFlush man page.
391 XTread_socket calls XPending. Removing XFlush improves
392 performance. */
393
7d0393cf 394#define XFlush(DISPLAY) (void) 0
b8009dd1 395
334208b7 396\f
06a2c219
GM
397/***********************************************************************
398 Debugging
399 ***********************************************************************/
400
9382638d 401#if 0
06a2c219
GM
402
403/* This is a function useful for recording debugging information about
404 the sequence of occurrences in this file. */
9382638d 405
7d0393cf 406struct record
9382638d
KH
407{
408 char *locus;
409 int type;
410};
411
412struct record event_record[100];
413
414int event_record_index;
415
416record_event (locus, type)
417 char *locus;
418 int type;
419{
420 if (event_record_index == sizeof (event_record) / sizeof (struct record))
421 event_record_index = 0;
422
423 event_record[event_record_index].locus = locus;
424 event_record[event_record_index].type = type;
425 event_record_index++;
426}
427
428#endif /* 0 */
06a2c219
GM
429
430
9382638d 431\f
334208b7
RS
432/* Return the struct x_display_info corresponding to DPY. */
433
434struct x_display_info *
435x_display_info_for_display (dpy)
436 Display *dpy;
437{
438 struct x_display_info *dpyinfo;
439
440 for (dpyinfo = x_display_list; dpyinfo; dpyinfo = dpyinfo->next)
441 if (dpyinfo->display == dpy)
442 return dpyinfo;
16bd92ea 443
334208b7
RS
444 return 0;
445}
f451eb13 446
06a2c219
GM
447
448\f
449/***********************************************************************
450 Starting and ending an update
451 ***********************************************************************/
7d0393cf 452
06a2c219
GM
453/* Start an update of frame F. This function is installed as a hook
454 for update_begin, i.e. it is called when update_begin is called.
455 This function is called prior to calls to x_update_window_begin for
456 each window being updated. Currently, there is nothing to do here
457 because all interesting stuff is done on a window basis. */
dc6f92b8 458
dfcf069d 459static void
06a2c219 460x_update_begin (f)
f676886a 461 struct frame *f;
58769bee 462{
06a2c219
GM
463 /* Nothing to do. */
464}
dc6f92b8 465
dc6f92b8 466
06a2c219
GM
467/* Start update of window W. Set the global variable updated_window
468 to the window being updated and set output_cursor to the cursor
469 position of W. */
dc6f92b8 470
06a2c219
GM
471static void
472x_update_window_begin (w)
473 struct window *w;
474{
475 struct frame *f = XFRAME (WINDOW_FRAME (w));
476 struct x_display_info *display_info = FRAME_X_DISPLAY_INFO (f);
7d0393cf 477
06a2c219
GM
478 updated_window = w;
479 set_output_cursor (&w->cursor);
b8009dd1 480
06a2c219 481 BLOCK_INPUT;
d1bc4182 482
06a2c219 483 if (f == display_info->mouse_face_mouse_frame)
b8009dd1 484 {
514e4681 485 /* Don't do highlighting for mouse motion during the update. */
06a2c219 486 display_info->mouse_face_defer = 1;
37c2c98b 487
06a2c219
GM
488 /* If F needs to be redrawn, simply forget about any prior mouse
489 highlighting. */
9f67f20b 490 if (FRAME_GARBAGED_P (f))
06a2c219
GM
491 display_info->mouse_face_window = Qnil;
492
64f26cf5
GM
493#if 0 /* Rows in a current matrix containing glyphs in mouse-face have
494 their mouse_face_p flag set, which means that they are always
495 unequal to rows in a desired matrix which never have that
496 flag set. So, rows containing mouse-face glyphs are never
497 scrolled, and we don't have to switch the mouse highlight off
498 here to prevent it from being scrolled. */
7d0393cf 499
06a2c219
GM
500 /* Can we tell that this update does not affect the window
501 where the mouse highlight is? If so, no need to turn off.
502 Likewise, don't do anything if the frame is garbaged;
503 in that case, the frame's current matrix that we would use
504 is all wrong, and we will redisplay that line anyway. */
505 if (!NILP (display_info->mouse_face_window)
506 && w == XWINDOW (display_info->mouse_face_window))
514e4681 507 {
06a2c219 508 int i;
514e4681 509
06a2c219
GM
510 for (i = 0; i < w->desired_matrix->nrows; ++i)
511 if (MATRIX_ROW_ENABLED_P (w->desired_matrix, i))
514e4681
RS
512 break;
513
06a2c219
GM
514 if (i < w->desired_matrix->nrows)
515 clear_mouse_face (display_info);
514e4681 516 }
64f26cf5 517#endif /* 0 */
b8009dd1 518 }
6ccf47d1 519
dc6f92b8
JB
520 UNBLOCK_INPUT;
521}
522
06a2c219 523
442a09ea 524/* Draw a vertical window border from (x,y0) to (x,y1) */
06a2c219 525
dfcf069d 526static void
442a09ea 527x_draw_vertical_window_border (w, x, y0, y1)
06a2c219 528 struct window *w;
442a09ea 529 int x, y0, y1;
58769bee 530{
06a2c219 531 struct frame *f = XFRAME (WINDOW_FRAME (w));
7ecc34e9
JL
532 struct face *face;
533
534 face = FACE_FROM_ID (f, VERTICAL_BORDER_FACE_ID);
535 if (face)
536 XSetForeground (FRAME_X_DISPLAY (f), f->output_data.x->normal_gc,
537 face->foreground);
62fe13a4 538
442a09ea
KS
539 XDrawLine (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
540 f->output_data.x->normal_gc, x, y0, x, y1);
06a2c219 541}
7d0393cf 542
71b8321e
GM
543/* End update of window W (which is equal to updated_window).
544
545 Draw vertical borders between horizontally adjacent windows, and
546 display W's cursor if CURSOR_ON_P is non-zero.
547
548 MOUSE_FACE_OVERWRITTEN_P non-zero means that some row containing
549 glyphs in mouse-face were overwritten. In that case we have to
550 make sure that the mouse-highlight is properly redrawn.
551
552 W may be a menu bar pseudo-window in case we don't have X toolkit
553 support. Such windows don't have a cursor, so don't display it
554 here. */
06a2c219
GM
555
556static void
71b8321e 557x_update_window_end (w, cursor_on_p, mouse_face_overwritten_p)
06a2c219 558 struct window *w;
71b8321e 559 int cursor_on_p, mouse_face_overwritten_p;
06a2c219 560{
140330de 561 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (XFRAME (w->frame));
7d0393cf 562
06a2c219
GM
563 if (!w->pseudo_window_p)
564 {
565 BLOCK_INPUT;
71b8321e 566
06a2c219 567 if (cursor_on_p)
442a09ea
KS
568 display_and_set_cursor (w, 1, output_cursor.hpos,
569 output_cursor.vpos,
570 output_cursor.x, output_cursor.y);
7d0393cf 571
f94a2622
KS
572 if (draw_window_fringes (w, 1))
573 x_draw_vertical_border (w);
3c0882ae 574
06a2c219
GM
575 UNBLOCK_INPUT;
576 }
7d0393cf 577
140330de
GM
578 /* If a row with mouse-face was overwritten, arrange for
579 XTframe_up_to_date to redisplay the mouse highlight. */
580 if (mouse_face_overwritten_p)
581 {
582 dpyinfo->mouse_face_beg_row = dpyinfo->mouse_face_beg_col = -1;
583 dpyinfo->mouse_face_end_row = dpyinfo->mouse_face_end_col = -1;
584 dpyinfo->mouse_face_window = Qnil;
585 }
7d0393cf 586
06a2c219
GM
587 updated_window = NULL;
588}
dc6f92b8 589
dc6f92b8 590
06a2c219
GM
591/* End update of frame F. This function is installed as a hook in
592 update_end. */
593
594static void
595x_update_end (f)
596 struct frame *f;
597{
598 /* Mouse highlight may be displayed again. */
aa8bff2e 599 FRAME_X_DISPLAY_INFO (f)->mouse_face_defer = 0;
b8009dd1 600
442a09ea 601#ifndef XFlush
06a2c219 602 BLOCK_INPUT;
334208b7 603 XFlush (FRAME_X_DISPLAY (f));
dc6f92b8 604 UNBLOCK_INPUT;
442a09ea 605#endif
dc6f92b8 606}
b8009dd1 607
06a2c219
GM
608
609/* This function is called from various places in xdisp.c whenever a
610 complete update has been performed. The global variable
611 updated_window is not available here. */
b8009dd1 612
dfcf069d 613static void
b8009dd1 614XTframe_up_to_date (f)
06a2c219 615 struct frame *f;
b8009dd1 616{
06a2c219 617 if (FRAME_X_P (f))
514e4681 618 {
06a2c219 619 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
71b8321e 620
06a2c219
GM
621 if (dpyinfo->mouse_face_deferred_gc
622 || f == dpyinfo->mouse_face_mouse_frame)
623 {
624 BLOCK_INPUT;
625 if (dpyinfo->mouse_face_mouse_frame)
626 note_mouse_highlight (dpyinfo->mouse_face_mouse_frame,
627 dpyinfo->mouse_face_mouse_x,
628 dpyinfo->mouse_face_mouse_y);
629 dpyinfo->mouse_face_deferred_gc = 0;
630 UNBLOCK_INPUT;
631 }
514e4681 632 }
b8009dd1 633}
06a2c219
GM
634
635
636/* Draw truncation mark bitmaps, continuation mark bitmaps, overlay
3f332ef3 637 arrow bitmaps, or clear the fringes if no bitmaps are required
06a2c219
GM
638 before DESIRED_ROW is made current. The window being updated is
639 found in updated_window. This function It is called from
640 update_window_line only if it is known that there are differences
641 between bitmaps to be drawn between current row and DESIRED_ROW. */
642
643static void
644x_after_update_window_line (desired_row)
645 struct glyph_row *desired_row;
646{
647 struct window *w = updated_window;
ef253080 648 struct frame *f;
259cf6bc 649 int width, height;
7d0393cf 650
06a2c219 651 xassert (w);
7d0393cf 652
06a2c219 653 if (!desired_row->mode_line_p && !w->pseudo_window_p)
3c0882ae 654 desired_row->redraw_fringe_bitmaps_p = 1;
7d0393cf 655
ef253080
GM
656 /* When a window has disappeared, make sure that no rest of
657 full-width rows stays visible in the internal border. Could
658 check here if updated_window is the leftmost/rightmost window,
659 but I guess it's not worth doing since vertically split windows
660 are almost never used, internal border is rarely set, and the
661 overhead is very small. */
662 if (windows_or_buffers_changed
663 && desired_row->full_width_p
664 && (f = XFRAME (w->frame),
665 width = FRAME_INTERNAL_BORDER_WIDTH (f),
259cf6bc
GM
666 width != 0)
667 && (height = desired_row->visible_height,
668 height > 0))
ef253080 669 {
ef253080 670 int y = WINDOW_TO_FRAME_PIXEL_Y (w, max (0, desired_row->y));
06a2c219 671
ef253080
GM
672 /* Internal border is drawn below the tool bar. */
673 if (WINDOWP (f->tool_bar_window)
674 && w == XWINDOW (f->tool_bar_window))
675 y -= width;
7d0393cf 676
ef253080
GM
677 BLOCK_INPUT;
678 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
679 0, y, width, height, False);
680 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
0899d58c 681 FRAME_PIXEL_WIDTH (f) - width,
ef253080 682 y, width, height, False);
06a2c219
GM
683 UNBLOCK_INPUT;
684 }
685}
686
06a2c219 687static void
5958f265 688x_draw_fringe_bitmap (w, row, p)
06a2c219
GM
689 struct window *w;
690 struct glyph_row *row;
5958f265 691 struct draw_fringe_bitmap_params *p;
06a2c219
GM
692{
693 struct frame *f = XFRAME (WINDOW_FRAME (w));
694 Display *display = FRAME_X_DISPLAY (f);
695 Window window = FRAME_X_WINDOW (f);
06a2c219 696 GC gc = f->output_data.x->normal_gc;
5958f265 697 struct face *face = p->face;
3c0882ae 698 int rowY;
06a2c219
GM
699
700 /* Must clip because of partially visible lines. */
3c0882ae
KS
701 rowY = WINDOW_TO_FRAME_PIXEL_Y (w, row->y);
702 if (p->y < rowY)
703 {
704 /* Adjust position of "bottom aligned" bitmap on partially
705 visible last row. */
706 int oldY = row->y;
707 int oldVH = row->visible_height;
708 row->visible_height = p->h;
709 row->y -= rowY - p->y;
08f66682 710 x_clip_to_row (w, row, -1, gc);
3c0882ae
KS
711 row->y = oldY;
712 row->visible_height = oldVH;
713 }
714 else
08f66682 715 x_clip_to_row (w, row, -1, gc);
06a2c219 716
fe1a14c1 717 if (p->bx >= 0 && !p->overlay_p)
976b73d7 718 {
976b73d7
KS
719 /* In case the same realized face is used for fringes and
720 for something displayed in the text (e.g. face `region' on
721 mono-displays, the fill style may have been changed to
722 FillSolid in x_draw_glyph_string_background. */
723 if (face->stipple)
724 XSetFillStyle (display, face->gc, FillOpaqueStippled);
725 else
726 XSetForeground (display, face->gc, face->background);
7d0393cf 727
976b73d7 728 XFillRectangle (display, window, face->gc,
5958f265
KS
729 p->bx, p->by, p->nx, p->ny);
730
976b73d7
KS
731 if (!face->stipple)
732 XSetForeground (display, face->gc, face->foreground);
733 }
734
fe1a14c1 735 if (p->which)
dbdc9702 736 {
82b05d81 737 unsigned char *bits;
fe1a14c1 738 Pixmap pixmap, clipmask = (Pixmap) 0;
5958f265 739 int depth = DefaultDepthOfScreen (FRAME_X_SCREEN (f));
fe1a14c1 740 XGCValues gcv;
5958f265 741
82b05d81
KS
742 if (p->wd > 8)
743 bits = (unsigned char *)(p->bits + p->dh);
744 else
745 bits = (unsigned char *)p->bits + p->dh;
746
dbdc9702
GM
747 /* Draw the bitmap. I believe these small pixmaps can be cached
748 by the server. */
5958f265 749 pixmap = XCreatePixmapFromBitmapData (display, window, bits, p->wd, p->h,
fe1a14c1
KS
750 (p->cursor_p
751 ? (p->overlay_p ? face->background
752 : f->output_data.x->cursor_pixel)
753 : face->foreground),
dbdc9702 754 face->background, depth);
fe1a14c1
KS
755
756 if (p->overlay_p)
757 {
0666d82c 758 clipmask = XCreatePixmapFromBitmapData (display,
fe1a14c1 759 FRAME_X_DISPLAY_INFO (f)->root_window,
0666d82c 760 bits, p->wd, p->h,
fe1a14c1
KS
761 1, 0, 1);
762 gcv.clip_mask = clipmask;
763 gcv.clip_x_origin = p->x;
0666d82c 764 gcv.clip_y_origin = p->y;
fe1a14c1
KS
765 XChangeGC (display, gc, GCClipMask | GCClipXOrigin | GCClipYOrigin, &gcv);
766 }
767
5958f265
KS
768 XCopyArea (display, pixmap, window, gc, 0, 0,
769 p->wd, p->h, p->x, p->y);
dbdc9702 770 XFreePixmap (display, pixmap);
fe1a14c1
KS
771
772 if (p->overlay_p)
773 {
774 gcv.clip_mask = (Pixmap) 0;
775 XChangeGC (display, gc, GCClipMask, &gcv);
776 XFreePixmap (display, clipmask);
777 }
dbdc9702 778 }
7d0393cf 779
06a2c219
GM
780 XSetClipMask (display, gc, None);
781}
782
dc6f92b8 783\f
06a2c219
GM
784
785/* This is called when starting Emacs and when restarting after
786 suspend. When starting Emacs, no X window is mapped. And nothing
787 must be done to Emacs's own window if it is suspended (though that
788 rarely happens). */
dc6f92b8 789
dfcf069d 790static void
dc6f92b8
JB
791XTset_terminal_modes ()
792{
793}
794
06a2c219
GM
795/* This is called when exiting or suspending Emacs. Exiting will make
796 the X-windows go away, and suspending requires no action. */
dc6f92b8 797
dfcf069d 798static void
dc6f92b8
JB
799XTreset_terminal_modes ()
800{
dc6f92b8 801}
06a2c219
GM
802
803
dc6f92b8 804\f
06a2c219
GM
805/***********************************************************************
806 Display Iterator
807 ***********************************************************************/
808
809/* Function prototypes of this page. */
810
5da0698e 811static int x_encode_char P_ ((int, XChar2b *, struct font_info *, int *));
ee569018
KH
812
813
e2ef8ee6
GM
814/* Get metrics of character CHAR2B in FONT. Value is null if CHAR2B
815 is not contained in the font. */
dc43ef94 816
5da0698e
KS
817static XCharStruct *
818x_per_char_metric (font, char2b, font_type)
06a2c219
GM
819 XFontStruct *font;
820 XChar2b *char2b;
5da0698e 821 int font_type; /* unused on X */
06a2c219
GM
822{
823 /* The result metric information. */
824 XCharStruct *pcm = NULL;
dc6f92b8 825
06a2c219 826 xassert (font && char2b);
dc6f92b8 827
06a2c219 828 if (font->per_char != NULL)
dc6f92b8 829 {
06a2c219 830 if (font->min_byte1 == 0 && font->max_byte1 == 0)
dc43ef94 831 {
06a2c219
GM
832 /* min_char_or_byte2 specifies the linear character index
833 corresponding to the first element of the per_char array,
834 max_char_or_byte2 is the index of the last character. A
835 character with non-zero CHAR2B->byte1 is not in the font.
836 A character with byte2 less than min_char_or_byte2 or
837 greater max_char_or_byte2 is not in the font. */
838 if (char2b->byte1 == 0
839 && char2b->byte2 >= font->min_char_or_byte2
840 && char2b->byte2 <= font->max_char_or_byte2)
841 pcm = font->per_char + char2b->byte2 - font->min_char_or_byte2;
dc43ef94 842 }
06a2c219 843 else
dc6f92b8 844 {
06a2c219
GM
845 /* If either min_byte1 or max_byte1 are nonzero, both
846 min_char_or_byte2 and max_char_or_byte2 are less than
847 256, and the 2-byte character index values corresponding
848 to the per_char array element N (counting from 0) are:
849
850 byte1 = N/D + min_byte1
851 byte2 = N\D + min_char_or_byte2
852
853 where:
854
855 D = max_char_or_byte2 - min_char_or_byte2 + 1
856 / = integer division
857 \ = integer modulus */
858 if (char2b->byte1 >= font->min_byte1
859 && char2b->byte1 <= font->max_byte1
860 && char2b->byte2 >= font->min_char_or_byte2
861 && char2b->byte2 <= font->max_char_or_byte2)
862 {
863 pcm = (font->per_char
864 + ((font->max_char_or_byte2 - font->min_char_or_byte2 + 1)
865 * (char2b->byte1 - font->min_byte1))
866 + (char2b->byte2 - font->min_char_or_byte2));
867 }
dc6f92b8 868 }
06a2c219
GM
869 }
870 else
871 {
872 /* If the per_char pointer is null, all glyphs between the first
873 and last character indexes inclusive have the same
874 information, as given by both min_bounds and max_bounds. */
875 if (char2b->byte2 >= font->min_char_or_byte2
876 && char2b->byte2 <= font->max_char_or_byte2)
877 pcm = &font->max_bounds;
878 }
dc6f92b8 879
ee569018 880 return ((pcm == NULL
3e71d8f2 881 || (pcm->width == 0 && (pcm->rbearing - pcm->lbearing) == 0))
ee569018 882 ? NULL : pcm);
06a2c219 883}
b73b6aaf 884
57b03282 885
06a2c219
GM
886/* Encode CHAR2B using encoding information from FONT_INFO. CHAR2B is
887 the two-byte form of C. Encoding is returned in *CHAR2B. */
dc43ef94 888
5da0698e
KS
889static int
890x_encode_char (c, char2b, font_info, two_byte_p)
06a2c219
GM
891 int c;
892 XChar2b *char2b;
893 struct font_info *font_info;
5da0698e 894 int *two_byte_p;
06a2c219
GM
895{
896 int charset = CHAR_CHARSET (c);
897 XFontStruct *font = font_info->font;
898
899 /* FONT_INFO may define a scheme by which to encode byte1 and byte2.
900 This may be either a program in a special encoder language or a
901 fixed encoding. */
902 if (font_info->font_encoder)
903 {
904 /* It's a program. */
905 struct ccl_program *ccl = font_info->font_encoder;
906
d8752c9e 907 check_ccl_update (ccl);
06a2c219
GM
908 if (CHARSET_DIMENSION (charset) == 1)
909 {
910 ccl->reg[0] = charset;
911 ccl->reg[1] = char2b->byte2;
6e666629 912 ccl->reg[2] = -1;
06a2c219
GM
913 }
914 else
915 {
916 ccl->reg[0] = charset;
917 ccl->reg[1] = char2b->byte1;
918 ccl->reg[2] = char2b->byte2;
919 }
7d0393cf 920
06a2c219 921 ccl_driver (ccl, NULL, NULL, 0, 0, NULL);
7d0393cf 922
06a2c219
GM
923 /* We assume that MSBs are appropriately set/reset by CCL
924 program. */
925 if (font->max_byte1 == 0) /* 1-byte font */
ee569018 926 char2b->byte1 = 0, char2b->byte2 = ccl->reg[1];
06a2c219
GM
927 else
928 char2b->byte1 = ccl->reg[1], char2b->byte2 = ccl->reg[2];
929 }
930 else if (font_info->encoding[charset])
931 {
932 /* Fixed encoding scheme. See fontset.h for the meaning of the
933 encoding numbers. */
934 int enc = font_info->encoding[charset];
7d0393cf 935
06a2c219
GM
936 if ((enc == 1 || enc == 2)
937 && CHARSET_DIMENSION (charset) == 2)
938 char2b->byte1 |= 0x80;
7d0393cf 939
06a2c219
GM
940 if (enc == 1 || enc == 3)
941 char2b->byte2 |= 0x80;
942 }
06a2c219 943
ee569018 944 if (two_byte_p)
5da0698e 945 *two_byte_p = ((XFontStruct *) (font_info->font))->max_byte1 > 0;
b4192550 946
5da0698e 947 return FONT_TYPE_UNKNOWN;
06a2c219
GM
948}
949
950
06a2c219
GM
951\f
952/***********************************************************************
953 Glyph display
954 ***********************************************************************/
955
06a2c219 956
06a2c219 957
06a2c219
GM
958static void x_set_glyph_string_clipping P_ ((struct glyph_string *));
959static void x_set_glyph_string_gc P_ ((struct glyph_string *));
960static void x_draw_glyph_string_background P_ ((struct glyph_string *,
961 int));
962static void x_draw_glyph_string_foreground P_ ((struct glyph_string *));
b4192550 963static void x_draw_composite_glyph_string_foreground P_ ((struct glyph_string *));
06a2c219
GM
964static void x_draw_glyph_string_box P_ ((struct glyph_string *));
965static void x_draw_glyph_string P_ ((struct glyph_string *));
966static void x_compute_glyph_string_overhangs P_ ((struct glyph_string *));
967static void x_set_cursor_gc P_ ((struct glyph_string *));
968static void x_set_mode_line_face_gc P_ ((struct glyph_string *));
969static void x_set_mouse_face_gc P_ ((struct glyph_string *));
06a2c219 970static int x_alloc_lighter_color P_ ((struct frame *, Display *, Colormap,
68c45bf0 971 unsigned long *, double, int));
06a2c219 972static void x_setup_relief_color P_ ((struct frame *, struct relief *,
68c45bf0 973 double, int, unsigned long));
06a2c219
GM
974static void x_setup_relief_colors P_ ((struct glyph_string *));
975static void x_draw_image_glyph_string P_ ((struct glyph_string *));
976static void x_draw_image_relief P_ ((struct glyph_string *));
977static void x_draw_image_foreground P_ ((struct glyph_string *));
978static void x_draw_image_foreground_1 P_ ((struct glyph_string *, Pixmap));
06a2c219
GM
979static void x_clear_glyph_string_rect P_ ((struct glyph_string *, int,
980 int, int, int));
981static void x_draw_relief_rect P_ ((struct frame *, int, int, int, int,
57326d99
KS
982 int, int, int, int, int, int,
983 XRectangle *));
06a2c219
GM
984static void x_draw_box_rect P_ ((struct glyph_string *, int, int, int, int,
985 int, int, int, XRectangle *));
5da0698e
KS
986
987#if GLYPH_DEBUG
988static void x_check_font P_ ((struct frame *, XFontStruct *));
989#endif
06a2c219
GM
990
991
992/* Set S->gc to a suitable GC for drawing glyph string S in cursor
993 face. */
994
995static void
996x_set_cursor_gc (s)
997 struct glyph_string *s;
998{
999 if (s->font == FRAME_FONT (s->f)
1000 && s->face->background == FRAME_BACKGROUND_PIXEL (s->f)
1001 && s->face->foreground == FRAME_FOREGROUND_PIXEL (s->f)
b4192550 1002 && !s->cmp)
06a2c219
GM
1003 s->gc = s->f->output_data.x->cursor_gc;
1004 else
1005 {
1006 /* Cursor on non-default face: must merge. */
1007 XGCValues xgcv;
1008 unsigned long mask;
1009
1010 xgcv.background = s->f->output_data.x->cursor_pixel;
1011 xgcv.foreground = s->face->background;
1012
1013 /* If the glyph would be invisible, try a different foreground. */
1014 if (xgcv.foreground == xgcv.background)
1015 xgcv.foreground = s->face->foreground;
1016 if (xgcv.foreground == xgcv.background)
1017 xgcv.foreground = s->f->output_data.x->cursor_foreground_pixel;
1018 if (xgcv.foreground == xgcv.background)
1019 xgcv.foreground = s->face->foreground;
1020
1021 /* Make sure the cursor is distinct from text in this face. */
1022 if (xgcv.background == s->face->background
1023 && xgcv.foreground == s->face->foreground)
1024 {
1025 xgcv.background = s->face->foreground;
1026 xgcv.foreground = s->face->background;
1027 }
1028
1029 IF_DEBUG (x_check_font (s->f, s->font));
1030 xgcv.font = s->font->fid;
1031 xgcv.graphics_exposures = False;
1032 mask = GCForeground | GCBackground | GCFont | GCGraphicsExposures;
1033
1034 if (FRAME_X_DISPLAY_INFO (s->f)->scratch_cursor_gc)
1035 XChangeGC (s->display, FRAME_X_DISPLAY_INFO (s->f)->scratch_cursor_gc,
1036 mask, &xgcv);
1037 else
1038 FRAME_X_DISPLAY_INFO (s->f)->scratch_cursor_gc
1039 = XCreateGC (s->display, s->window, mask, &xgcv);
1040
1041 s->gc = FRAME_X_DISPLAY_INFO (s->f)->scratch_cursor_gc;
1042 }
1043}
1044
1045
1046/* Set up S->gc of glyph string S for drawing text in mouse face. */
7d0393cf 1047
06a2c219
GM
1048static void
1049x_set_mouse_face_gc (s)
1050 struct glyph_string *s;
7d0393cf 1051{
06a2c219 1052 int face_id;
ee569018 1053 struct face *face;
06a2c219 1054
e4ded23c 1055 /* What face has to be used last for the mouse face? */
06a2c219 1056 face_id = FRAME_X_DISPLAY_INFO (s->f)->mouse_face_face_id;
ee569018 1057 face = FACE_FROM_ID (s->f, face_id);
e4ded23c
GM
1058 if (face == NULL)
1059 face = FACE_FROM_ID (s->f, MOUSE_FACE_ID);
7d0393cf 1060
033e3e18
GM
1061 if (s->first_glyph->type == CHAR_GLYPH)
1062 face_id = FACE_FOR_CHAR (s->f, face, s->first_glyph->u.ch);
1063 else
1064 face_id = FACE_FOR_CHAR (s->f, face, 0);
06a2c219
GM
1065 s->face = FACE_FROM_ID (s->f, face_id);
1066 PREPARE_FACE_FOR_DISPLAY (s->f, s->face);
1067
1068 /* If font in this face is same as S->font, use it. */
1069 if (s->font == s->face->font)
1070 s->gc = s->face->gc;
1071 else
1072 {
1073 /* Otherwise construct scratch_cursor_gc with values from FACE
1074 but font FONT. */
1075 XGCValues xgcv;
1076 unsigned long mask;
7d0393cf 1077
06a2c219
GM
1078 xgcv.background = s->face->background;
1079 xgcv.foreground = s->face->foreground;
1080 IF_DEBUG (x_check_font (s->f, s->font));
1081 xgcv.font = s->font->fid;
1082 xgcv.graphics_exposures = False;
1083 mask = GCForeground | GCBackground | GCFont | GCGraphicsExposures;
7d0393cf 1084
06a2c219
GM
1085 if (FRAME_X_DISPLAY_INFO (s->f)->scratch_cursor_gc)
1086 XChangeGC (s->display, FRAME_X_DISPLAY_INFO (s->f)->scratch_cursor_gc,
1087 mask, &xgcv);
1088 else
1089 FRAME_X_DISPLAY_INFO (s->f)->scratch_cursor_gc
1090 = XCreateGC (s->display, s->window, mask, &xgcv);
7d0393cf 1091
06a2c219
GM
1092 s->gc = FRAME_X_DISPLAY_INFO (s->f)->scratch_cursor_gc;
1093 }
1094
1095 xassert (s->gc != 0);
1096}
1097
1098
1099/* Set S->gc of glyph string S to a GC suitable for drawing a mode line.
1100 Faces to use in the mode line have already been computed when the
1101 matrix was built, so there isn't much to do, here. */
1102
1103static INLINE void
1104x_set_mode_line_face_gc (s)
1105 struct glyph_string *s;
7d0393cf 1106{
06a2c219 1107 s->gc = s->face->gc;
06a2c219
GM
1108}
1109
1110
1111/* Set S->gc of glyph string S for drawing that glyph string. Set
1112 S->stippled_p to a non-zero value if the face of S has a stipple
1113 pattern. */
1114
1115static INLINE void
1116x_set_glyph_string_gc (s)
1117 struct glyph_string *s;
1118{
209f68d9 1119 PREPARE_FACE_FOR_DISPLAY (s->f, s->face);
7d0393cf 1120
06a2c219
GM
1121 if (s->hl == DRAW_NORMAL_TEXT)
1122 {
1123 s->gc = s->face->gc;
1124 s->stippled_p = s->face->stipple != 0;
1125 }
1126 else if (s->hl == DRAW_INVERSE_VIDEO)
1127 {
1128 x_set_mode_line_face_gc (s);
1129 s->stippled_p = s->face->stipple != 0;
1130 }
1131 else if (s->hl == DRAW_CURSOR)
1132 {
1133 x_set_cursor_gc (s);
1134 s->stippled_p = 0;
1135 }
1136 else if (s->hl == DRAW_MOUSE_FACE)
1137 {
1138 x_set_mouse_face_gc (s);
1139 s->stippled_p = s->face->stipple != 0;
1140 }
1141 else if (s->hl == DRAW_IMAGE_RAISED
1142 || s->hl == DRAW_IMAGE_SUNKEN)
1143 {
1144 s->gc = s->face->gc;
1145 s->stippled_p = s->face->stipple != 0;
1146 }
1147 else
1148 {
1149 s->gc = s->face->gc;
1150 s->stippled_p = s->face->stipple != 0;
1151 }
1152
1153 /* GC must have been set. */
1154 xassert (s->gc != 0);
1155}
1156
1157
06a2c219
GM
1158/* Set clipping for output of glyph string S. S may be part of a mode
1159 line or menu if we don't have X toolkit support. */
1160
1161static INLINE void
1162x_set_glyph_string_clipping (s)
1163 struct glyph_string *s;
1164{
1165 XRectangle r;
442a09ea 1166 get_glyph_string_clip_rect (s, &r);
06a2c219
GM
1167 XSetClipRectangles (s->display, s->gc, 0, 0, &r, 1, Unsorted);
1168}
1169
1170
5da0698e
KS
1171/* RIF:
1172 Compute left and right overhang of glyph string S. If S is a glyph
b4192550 1173 string for a composition, assume overhangs don't exist. */
06a2c219 1174
5da0698e 1175static void
06a2c219
GM
1176x_compute_glyph_string_overhangs (s)
1177 struct glyph_string *s;
1178{
b4192550 1179 if (s->cmp == NULL
06a2c219
GM
1180 && s->first_glyph->type == CHAR_GLYPH)
1181 {
1182 XCharStruct cs;
1183 int direction, font_ascent, font_descent;
1184 XTextExtents16 (s->font, s->char2b, s->nchars, &direction,
1185 &font_ascent, &font_descent, &cs);
1186 s->right_overhang = cs.rbearing > cs.width ? cs.rbearing - cs.width : 0;
1187 s->left_overhang = cs.lbearing < 0 ? -cs.lbearing : 0;
1188 }
1189}
1190
1191
06a2c219
GM
1192/* Fill rectangle X, Y, W, H with background color of glyph string S. */
1193
1194static INLINE void
1195x_clear_glyph_string_rect (s, x, y, w, h)
1196 struct glyph_string *s;
1197 int x, y, w, h;
1198{
1199 XGCValues xgcv;
1200 XGetGCValues (s->display, s->gc, GCForeground | GCBackground, &xgcv);
1201 XSetForeground (s->display, s->gc, xgcv.background);
1202 XFillRectangle (s->display, s->window, s->gc, x, y, w, h);
1203 XSetForeground (s->display, s->gc, xgcv.foreground);
1204}
1205
1206
1207/* Draw the background of glyph_string S. If S->background_filled_p
1208 is non-zero don't draw it. FORCE_P non-zero means draw the
1209 background even if it wouldn't be drawn normally. This is used
b4192550
KH
1210 when a string preceding S draws into the background of S, or S
1211 contains the first component of a composition. */
06a2c219
GM
1212
1213static void
1214x_draw_glyph_string_background (s, force_p)
1215 struct glyph_string *s;
1216 int force_p;
1217{
1218 /* Nothing to do if background has already been drawn or if it
1219 shouldn't be drawn in the first place. */
1220 if (!s->background_filled_p)
1221 {
ea2ba0d4
KH
1222 int box_line_width = max (s->face->box_line_width, 0);
1223
b4192550 1224 if (s->stippled_p)
06a2c219
GM
1225 {
1226 /* Fill background with a stipple pattern. */
1227 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
1228 XFillRectangle (s->display, s->window, s->gc, s->x,
ea2ba0d4 1229 s->y + box_line_width,
06a2c219 1230 s->background_width,
ea2ba0d4 1231 s->height - 2 * box_line_width);
06a2c219
GM
1232 XSetFillStyle (s->display, s->gc, FillSolid);
1233 s->background_filled_p = 1;
1234 }
ea2ba0d4 1235 else if (FONT_HEIGHT (s->font) < s->height - 2 * box_line_width
06a2c219
GM
1236 || s->font_not_found_p
1237 || s->extends_to_end_of_line_p
06a2c219
GM
1238 || force_p)
1239 {
ea2ba0d4 1240 x_clear_glyph_string_rect (s, s->x, s->y + box_line_width,
06a2c219 1241 s->background_width,
ea2ba0d4 1242 s->height - 2 * box_line_width);
06a2c219
GM
1243 s->background_filled_p = 1;
1244 }
1245 }
1246}
1247
1248
1249/* Draw the foreground of glyph string S. */
1250
1251static void
1252x_draw_glyph_string_foreground (s)
1253 struct glyph_string *s;
1254{
1255 int i, x;
1256
1257 /* If first glyph of S has a left box line, start drawing the text
1258 of S to the right of that box line. */
1259 if (s->face->box != FACE_NO_BOX
1260 && s->first_glyph->left_box_line_p)
ea2ba0d4 1261 x = s->x + abs (s->face->box_line_width);
06a2c219
GM
1262 else
1263 x = s->x;
1264
b4192550
KH
1265 /* Draw characters of S as rectangles if S's font could not be
1266 loaded. */
1267 if (s->font_not_found_p)
06a2c219 1268 {
b4192550 1269 for (i = 0; i < s->nchars; ++i)
06a2c219 1270 {
b4192550
KH
1271 struct glyph *g = s->first_glyph + i;
1272 XDrawRectangle (s->display, s->window,
1273 s->gc, x, s->y, g->pixel_width - 1,
1274 s->height - 1);
1275 x += g->pixel_width;
06a2c219
GM
1276 }
1277 }
1278 else
1279 {
b4192550
KH
1280 char *char1b = (char *) s->char2b;
1281 int boff = s->font_info->baseline_offset;
06a2c219 1282
b4192550
KH
1283 if (s->font_info->vertical_centering)
1284 boff = VCENTER_BASELINE_OFFSET (s->font, s->f) - boff;
1285
1286 /* If we can use 8-bit functions, condense S->char2b. */
1287 if (!s->two_byte_p)
1288 for (i = 0; i < s->nchars; ++i)
1289 char1b[i] = s->char2b[i].byte2;
1290
1291 /* Draw text with XDrawString if background has already been
1292 filled. Otherwise, use XDrawImageString. (Note that
1293 XDrawImageString is usually faster than XDrawString.) Always
1294 use XDrawImageString when drawing the cursor so that there is
1295 no chance that characters under a box cursor are invisible. */
c2ded1b7 1296 if (s->for_overlaps
b4192550
KH
1297 || (s->background_filled_p && s->hl != DRAW_CURSOR))
1298 {
1299 /* Draw characters with 16-bit or 8-bit functions. */
1300 if (s->two_byte_p)
1301 XDrawString16 (s->display, s->window, s->gc, x,
1302 s->ybase - boff, s->char2b, s->nchars);
1303 else
1304 XDrawString (s->display, s->window, s->gc, x,
1305 s->ybase - boff, char1b, s->nchars);
1306 }
06a2c219
GM
1307 else
1308 {
b4192550
KH
1309 if (s->two_byte_p)
1310 XDrawImageString16 (s->display, s->window, s->gc, x,
1311 s->ybase - boff, s->char2b, s->nchars);
06a2c219 1312 else
b4192550
KH
1313 XDrawImageString (s->display, s->window, s->gc, x,
1314 s->ybase - boff, char1b, s->nchars);
1315 }
fce13449
MB
1316
1317 if (s->face->overstrike)
1318 {
1319 /* For overstriking (to simulate bold-face), draw the
1320 characters again shifted to the right by one pixel. */
1321 if (s->two_byte_p)
1322 XDrawString16 (s->display, s->window, s->gc, x + 1,
1323 s->ybase - boff, s->char2b, s->nchars);
1324 else
1325 XDrawString (s->display, s->window, s->gc, x + 1,
1326 s->ybase - boff, char1b, s->nchars);
1327 }
b4192550
KH
1328 }
1329}
06a2c219 1330
b4192550 1331/* Draw the foreground of composite glyph string S. */
06a2c219 1332
b4192550
KH
1333static void
1334x_draw_composite_glyph_string_foreground (s)
1335 struct glyph_string *s;
1336{
1337 int i, x;
06a2c219 1338
b4192550
KH
1339 /* If first glyph of S has a left box line, start drawing the text
1340 of S to the right of that box line. */
1341 if (s->face->box != FACE_NO_BOX
1342 && s->first_glyph->left_box_line_p)
ea2ba0d4 1343 x = s->x + abs (s->face->box_line_width);
b4192550
KH
1344 else
1345 x = s->x;
06a2c219 1346
b4192550
KH
1347 /* S is a glyph string for a composition. S->gidx is the index of
1348 the first character drawn for glyphs of this composition.
1349 S->gidx == 0 means we are drawing the very first character of
1350 this composition. */
06a2c219 1351
b4192550
KH
1352 /* Draw a rectangle for the composition if the font for the very
1353 first character of the composition could not be loaded. */
1354 if (s->font_not_found_p)
1355 {
1356 if (s->gidx == 0)
1357 XDrawRectangle (s->display, s->window, s->gc, x, s->y,
1358 s->width - 1, s->height - 1);
1359 }
1360 else
1361 {
1362 for (i = 0; i < s->nchars; i++, ++s->gidx)
fce13449
MB
1363 {
1364 XDrawString16 (s->display, s->window, s->gc,
1365 x + s->cmp->offsets[s->gidx * 2],
1366 s->ybase - s->cmp->offsets[s->gidx * 2 + 1],
1367 s->char2b + i, 1);
1368 if (s->face->overstrike)
1369 XDrawString16 (s->display, s->window, s->gc,
1370 x + s->cmp->offsets[s->gidx * 2] + 1,
1371 s->ybase - s->cmp->offsets[s->gidx * 2 + 1],
1372 s->char2b + i, 1);
1373 }
06a2c219
GM
1374 }
1375}
1376
1377
80c32bcc
GM
1378#ifdef USE_X_TOOLKIT
1379
3e71d8f2 1380static struct frame *x_frame_of_widget P_ ((Widget));
651f03b6
GM
1381static Boolean cvt_string_to_pixel P_ ((Display *, XrmValue *, Cardinal *,
1382 XrmValue *, XrmValue *, XtPointer *));
1383static void cvt_pixel_dtor P_ ((XtAppContext, XrmValue *, XtPointer,
1384 XrmValue *, Cardinal *));
80c32bcc 1385
3e71d8f2
GM
1386
1387/* Return the frame on which widget WIDGET is used.. Abort if frame
1388 cannot be determined. */
1389
e851c833 1390static struct frame *
3e71d8f2 1391x_frame_of_widget (widget)
80c32bcc 1392 Widget widget;
80c32bcc 1393{
80c32bcc 1394 struct x_display_info *dpyinfo;
5c187dee 1395 Lisp_Object tail;
3e71d8f2 1396 struct frame *f;
7d0393cf 1397
80c32bcc 1398 dpyinfo = x_display_info_for_display (XtDisplay (widget));
7d0393cf 1399
80c32bcc
GM
1400 /* Find the top-level shell of the widget. Note that this function
1401 can be called when the widget is not yet realized, so XtWindow
1402 (widget) == 0. That's the reason we can't simply use
1403 x_any_window_to_frame. */
1404 while (!XtIsTopLevelShell (widget))
1405 widget = XtParent (widget);
1406
1407 /* Look for a frame with that top-level widget. Allocate the color
1408 on that frame to get the right gamma correction value. */
1409 for (tail = Vframe_list; GC_CONSP (tail); tail = XCDR (tail))
1410 if (GC_FRAMEP (XCAR (tail))
1411 && (f = XFRAME (XCAR (tail)),
1412 (f->output_data.nothing != 1
1413 && FRAME_X_DISPLAY_INFO (f) == dpyinfo))
1414 && f->output_data.x->widget == widget)
3e71d8f2 1415 return f;
80c32bcc
GM
1416
1417 abort ();
1418}
1419
3e71d8f2
GM
1420
1421/* Allocate the color COLOR->pixel on the screen and display of
1422 widget WIDGET in colormap CMAP. If an exact match cannot be
1423 allocated, try the nearest color available. Value is non-zero
1424 if successful. This is called from lwlib. */
1425
1426int
1427x_alloc_nearest_color_for_widget (widget, cmap, color)
1428 Widget widget;
1429 Colormap cmap;
1430 XColor *color;
1431{
1432 struct frame *f = x_frame_of_widget (widget);
1433 return x_alloc_nearest_color (f, cmap, color);
1434}
1435
1436
46d516e5
MB
1437/* Allocate a color which is lighter or darker than *PIXEL by FACTOR
1438 or DELTA. Try a color with RGB values multiplied by FACTOR first.
1439 If this produces the same color as PIXEL, try a color where all RGB
1440 values have DELTA added. Return the allocated color in *PIXEL.
1441 DISPLAY is the X display, CMAP is the colormap to operate on.
1442 Value is non-zero if successful. */
1443
1444int
1445x_alloc_lighter_color_for_widget (widget, display, cmap, pixel, factor, delta)
1446 Widget widget;
1447 Display *display;
1448 Colormap cmap;
1449 unsigned long *pixel;
1450 double factor;
1451 int delta;
1452{
1453 struct frame *f = x_frame_of_widget (widget);
1454 return x_alloc_lighter_color (f, display, cmap, pixel, factor, delta);
1455}
1456
1457
651f03b6
GM
1458/* Structure specifying which arguments should be passed by Xt to
1459 cvt_string_to_pixel. We want the widget's screen and colormap. */
1460
1461static XtConvertArgRec cvt_string_to_pixel_args[] =
1462 {
1463 {XtWidgetBaseOffset, (XtPointer) XtOffset (Widget, core.screen),
1464 sizeof (Screen *)},
1465 {XtWidgetBaseOffset, (XtPointer) XtOffset (Widget, core.colormap),
1466 sizeof (Colormap)}
1467 };
1468
1469
1470/* The address of this variable is returned by
1471 cvt_string_to_pixel. */
1472
1473static Pixel cvt_string_to_pixel_value;
1474
1475
1476/* Convert a color name to a pixel color.
1477
1478 DPY is the display we are working on.
1479
1480 ARGS is an array of *NARGS XrmValue structures holding additional
1481 information about the widget for which the conversion takes place.
1482 The contents of this array are determined by the specification
1483 in cvt_string_to_pixel_args.
1484
1485 FROM is a pointer to an XrmValue which points to the color name to
1486 convert. TO is an XrmValue in which to return the pixel color.
1487
1488 CLOSURE_RET is a pointer to user-data, in which we record if
1489 we allocated the color or not.
1490
1491 Value is True if successful, False otherwise. */
1492
1493static Boolean
1494cvt_string_to_pixel (dpy, args, nargs, from, to, closure_ret)
1495 Display *dpy;
1496 XrmValue *args;
1497 Cardinal *nargs;
1498 XrmValue *from, *to;
1499 XtPointer *closure_ret;
1500{
1501 Screen *screen;
1502 Colormap cmap;
1503 Pixel pixel;
1504 String color_name;
1505 XColor color;
1506
1507 if (*nargs != 2)
1508 {
1509 XtAppWarningMsg (XtDisplayToApplicationContext (dpy),
1510 "wrongParameters", "cvt_string_to_pixel",
1511 "XtToolkitError",
1512 "Screen and colormap args required", NULL, NULL);
1513 return False;
1514 }
1515
1516 screen = *(Screen **) args[0].addr;
1517 cmap = *(Colormap *) args[1].addr;
1518 color_name = (String) from->addr;
1519
1520 if (strcmp (color_name, XtDefaultBackground) == 0)
1521 {
1522 *closure_ret = (XtPointer) False;
1523 pixel = WhitePixelOfScreen (screen);
1524 }
1525 else if (strcmp (color_name, XtDefaultForeground) == 0)
1526 {
1527 *closure_ret = (XtPointer) False;
1528 pixel = BlackPixelOfScreen (screen);
1529 }
1530 else if (XParseColor (dpy, cmap, color_name, &color)
1531 && x_alloc_nearest_color_1 (dpy, cmap, &color))
1532 {
1533 pixel = color.pixel;
1534 *closure_ret = (XtPointer) True;
1535 }
1536 else
1537 {
1538 String params[1];
1539 Cardinal nparams = 1;
7d0393cf 1540
651f03b6
GM
1541 params[0] = color_name;
1542 XtAppWarningMsg (XtDisplayToApplicationContext (dpy),
1543 "badValue", "cvt_string_to_pixel",
1544 "XtToolkitError", "Invalid color `%s'",
1545 params, &nparams);
1546 return False;
1547 }
1548
1549 if (to->addr != NULL)
1550 {
1551 if (to->size < sizeof (Pixel))
1552 {
1553 to->size = sizeof (Pixel);
1554 return False;
1555 }
7d0393cf 1556
651f03b6
GM
1557 *(Pixel *) to->addr = pixel;
1558 }
1559 else
1560 {
1561 cvt_string_to_pixel_value = pixel;
1562 to->addr = (XtPointer) &cvt_string_to_pixel_value;
1563 }
7d0393cf 1564
651f03b6
GM
1565 to->size = sizeof (Pixel);
1566 return True;
1567}
1568
1569
1570/* Free a pixel color which was previously allocated via
1571 cvt_string_to_pixel. This is registered as the destructor
1572 for this type of resource via XtSetTypeConverter.
1573
1574 APP is the application context in which we work.
1575
1576 TO is a pointer to an XrmValue holding the color to free.
1577 CLOSURE is the value we stored in CLOSURE_RET for this color
1578 in cvt_string_to_pixel.
1579
1580 ARGS and NARGS are like for cvt_string_to_pixel. */
1581
1582static void
1583cvt_pixel_dtor (app, to, closure, args, nargs)
1584 XtAppContext app;
1585 XrmValuePtr to;
1586 XtPointer closure;
1587 XrmValuePtr args;
1588 Cardinal *nargs;
1589{
1590 if (*nargs != 2)
1591 {
1592 XtAppWarningMsg (app, "wrongParameters", "cvt_pixel_dtor",
1593 "XtToolkitError",
1594 "Screen and colormap arguments required",
1595 NULL, NULL);
1596 }
1597 else if (closure != NULL)
1598 {
1599 /* We did allocate the pixel, so free it. */
1600 Screen *screen = *(Screen **) args[0].addr;
1601 Colormap cmap = *(Colormap *) args[1].addr;
1602 x_free_dpy_colors (DisplayOfScreen (screen), screen, cmap,
97762eb7 1603 (Pixel *) to->addr, 1);
651f03b6
GM
1604 }
1605}
1606
1607
80c32bcc
GM
1608#endif /* USE_X_TOOLKIT */
1609
1610
f04e1297 1611/* Value is an array of XColor structures for the contents of the
651f03b6 1612 color map of display DPY. Set *NCELLS to the size of the array.
f04e1297
GM
1613 Note that this probably shouldn't be called for large color maps,
1614 say a 24-bit TrueColor map. */
1615
1616static const XColor *
651f03b6
GM
1617x_color_cells (dpy, ncells)
1618 Display *dpy;
f04e1297
GM
1619 int *ncells;
1620{
651f03b6 1621 struct x_display_info *dpyinfo = x_display_info_for_display (dpy);
f04e1297
GM
1622
1623 if (dpyinfo->color_cells == NULL)
1624 {
651f03b6 1625 Screen *screen = dpyinfo->screen;
f04e1297 1626 int i;
7d0393cf 1627
f04e1297 1628 dpyinfo->ncolor_cells
651f03b6 1629 = XDisplayCells (dpy, XScreenNumberOfScreen (screen));
f04e1297
GM
1630 dpyinfo->color_cells
1631 = (XColor *) xmalloc (dpyinfo->ncolor_cells
1632 * sizeof *dpyinfo->color_cells);
7d0393cf 1633
f04e1297
GM
1634 for (i = 0; i < dpyinfo->ncolor_cells; ++i)
1635 dpyinfo->color_cells[i].pixel = i;
7d0393cf 1636
651f03b6 1637 XQueryColors (dpy, dpyinfo->cmap,
f04e1297
GM
1638 dpyinfo->color_cells, dpyinfo->ncolor_cells);
1639 }
1640
1641 *ncells = dpyinfo->ncolor_cells;
1642 return dpyinfo->color_cells;
1643}
1644
1645
1646/* On frame F, translate pixel colors to RGB values for the NCOLORS
1647 colors in COLORS. Use cached information, if available. */
1648
1649void
1650x_query_colors (f, colors, ncolors)
1651 struct frame *f;
1652 XColor *colors;
1653 int ncolors;
1654{
1655 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
1656
1657 if (dpyinfo->color_cells)
1658 {
1659 int i;
1660 for (i = 0; i < ncolors; ++i)
1661 {
1662 unsigned long pixel = colors[i].pixel;
1663 xassert (pixel < dpyinfo->ncolor_cells);
1664 xassert (dpyinfo->color_cells[pixel].pixel == pixel);
1665 colors[i] = dpyinfo->color_cells[pixel];
1666 }
1667 }
1668 else
1669 XQueryColors (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f), colors, ncolors);
1670}
1671
1672
1673/* On frame F, translate pixel color to RGB values for the color in
1674 COLOR. Use cached information, if available. */
1675
1676void
1677x_query_color (f, color)
1678 struct frame *f;
1679 XColor *color;
1680{
1681 x_query_colors (f, color, 1);
1682}
7d0393cf 1683
f04e1297 1684
651f03b6
GM
1685/* Allocate the color COLOR->pixel on DISPLAY, colormap CMAP. If an
1686 exact match can't be allocated, try the nearest color available.
1687 Value is non-zero if successful. Set *COLOR to the color
1688 allocated. */
06a2c219 1689
651f03b6
GM
1690static int
1691x_alloc_nearest_color_1 (dpy, cmap, color)
1692 Display *dpy;
06a2c219
GM
1693 Colormap cmap;
1694 XColor *color;
1695{
80c32bcc
GM
1696 int rc;
1697
651f03b6 1698 rc = XAllocColor (dpy, cmap, color);
06a2c219
GM
1699 if (rc == 0)
1700 {
1701 /* If we got to this point, the colormap is full, so we're going
1702 to try to get the next closest color. The algorithm used is
1703 a least-squares matching, which is what X uses for closest
1704 color matching with StaticColor visuals. */
1705 int nearest, i;
1706 unsigned long nearest_delta = ~0;
f04e1297 1707 int ncells;
651f03b6 1708 const XColor *cells = x_color_cells (dpy, &ncells);
06a2c219
GM
1709
1710 for (nearest = i = 0; i < ncells; ++i)
1711 {
1712 long dred = (color->red >> 8) - (cells[i].red >> 8);
1713 long dgreen = (color->green >> 8) - (cells[i].green >> 8);
1714 long dblue = (color->blue >> 8) - (cells[i].blue >> 8);
1715 unsigned long delta = dred * dred + dgreen * dgreen + dblue * dblue;
1716
1717 if (delta < nearest_delta)
1718 {
1719 nearest = i;
1720 nearest_delta = delta;
1721 }
1722 }
7d0393cf 1723
06a2c219
GM
1724 color->red = cells[nearest].red;
1725 color->green = cells[nearest].green;
1726 color->blue = cells[nearest].blue;
651f03b6 1727 rc = XAllocColor (dpy, cmap, color);
06a2c219 1728 }
35efe0a1
GM
1729 else
1730 {
1731 /* If allocation succeeded, and the allocated pixel color is not
1732 equal to a cached pixel color recorded earlier, there was a
1733 change in the colormap, so clear the color cache. */
651f03b6 1734 struct x_display_info *dpyinfo = x_display_info_for_display (dpy);
35efe0a1 1735 XColor *cached_color;
7d0393cf 1736
35efe0a1
GM
1737 if (dpyinfo->color_cells
1738 && (cached_color = &dpyinfo->color_cells[color->pixel],
cae71efe
GM
1739 (cached_color->red != color->red
1740 || cached_color->blue != color->blue
1741 || cached_color->green != color->green)))
35efe0a1
GM
1742 {
1743 xfree (dpyinfo->color_cells);
1744 dpyinfo->color_cells = NULL;
1745 dpyinfo->ncolor_cells = 0;
1746 }
1747 }
06a2c219 1748
d9c545da
GM
1749#ifdef DEBUG_X_COLORS
1750 if (rc)
1751 register_color (color->pixel);
1752#endif /* DEBUG_X_COLORS */
7d0393cf 1753
06a2c219
GM
1754 return rc;
1755}
1756
1757
651f03b6
GM
1758/* Allocate the color COLOR->pixel on frame F, colormap CMAP. If an
1759 exact match can't be allocated, try the nearest color available.
1760 Value is non-zero if successful. Set *COLOR to the color
1761 allocated. */
1762
1763int
1764x_alloc_nearest_color (f, cmap, color)
1765 struct frame *f;
1766 Colormap cmap;
1767 XColor *color;
1768{
1769 gamma_correct (f, color);
1770 return x_alloc_nearest_color_1 (FRAME_X_DISPLAY (f), cmap, color);
1771}
1772
1773
d9c545da
GM
1774/* Allocate color PIXEL on frame F. PIXEL must already be allocated.
1775 It's necessary to do this instead of just using PIXEL directly to
1776 get color reference counts right. */
1777
1778unsigned long
1779x_copy_color (f, pixel)
1780 struct frame *f;
1781 unsigned long pixel;
1782{
1783 XColor color;
1784
1785 color.pixel = pixel;
1786 BLOCK_INPUT;
f04e1297 1787 x_query_color (f, &color);
d9c545da
GM
1788 XAllocColor (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f), &color);
1789 UNBLOCK_INPUT;
1790#ifdef DEBUG_X_COLORS
1791 register_color (pixel);
1792#endif
1793 return color.pixel;
1794}
1795
1796
3e71d8f2
GM
1797/* Allocate color PIXEL on display DPY. PIXEL must already be allocated.
1798 It's necessary to do this instead of just using PIXEL directly to
1799 get color reference counts right. */
1800
1801unsigned long
1802x_copy_dpy_color (dpy, cmap, pixel)
1803 Display *dpy;
1804 Colormap cmap;
1805 unsigned long pixel;
1806{
1807 XColor color;
1808
1809 color.pixel = pixel;
1810 BLOCK_INPUT;
1811 XQueryColor (dpy, cmap, &color);
1812 XAllocColor (dpy, cmap, &color);
1813 UNBLOCK_INPUT;
1814#ifdef DEBUG_X_COLORS
1815 register_color (pixel);
1816#endif
1817 return color.pixel;
1818}
1819
1820
6d8b0acd 1821/* Brightness beyond which a color won't have its highlight brightness
d7361edf 1822 boosted.
6d8b0acd 1823
d7361edf
MB
1824 Nominally, highlight colors for `3d' faces are calculated by
1825 brightening an object's color by a constant scale factor, but this
1826 doesn't yield good results for dark colors, so for colors who's
1827 brightness is less than this value (on a scale of 0-65535) have an
1828 use an additional additive factor.
6d8b0acd
MB
1829
1830 The value here is set so that the default menu-bar/mode-line color
1831 (grey75) will not have its highlights changed at all. */
1832#define HIGHLIGHT_COLOR_DARK_BOOST_LIMIT 48000
1833
1834
06a2c219
GM
1835/* Allocate a color which is lighter or darker than *PIXEL by FACTOR
1836 or DELTA. Try a color with RGB values multiplied by FACTOR first.
1837 If this produces the same color as PIXEL, try a color where all RGB
1838 values have DELTA added. Return the allocated color in *PIXEL.
1839 DISPLAY is the X display, CMAP is the colormap to operate on.
1840 Value is non-zero if successful. */
1841
1842static int
1843x_alloc_lighter_color (f, display, cmap, pixel, factor, delta)
1844 struct frame *f;
1845 Display *display;
1846 Colormap cmap;
1847 unsigned long *pixel;
68c45bf0 1848 double factor;
06a2c219
GM
1849 int delta;
1850{
1851 XColor color, new;
6d8b0acd 1852 long bright;
06a2c219
GM
1853 int success_p;
1854
1855 /* Get RGB color values. */
1856 color.pixel = *pixel;
f04e1297 1857 x_query_color (f, &color);
06a2c219
GM
1858
1859 /* Change RGB values by specified FACTOR. Avoid overflow! */
1860 xassert (factor >= 0);
1861 new.red = min (0xffff, factor * color.red);
1862 new.green = min (0xffff, factor * color.green);
1863 new.blue = min (0xffff, factor * color.blue);
1864
d7361edf
MB
1865 /* Calculate brightness of COLOR. */
1866 bright = (2 * color.red + 3 * color.green + color.blue) / 6;
6d8b0acd
MB
1867
1868 /* We only boost colors that are darker than
1869 HIGHLIGHT_COLOR_DARK_BOOST_LIMIT. */
1870 if (bright < HIGHLIGHT_COLOR_DARK_BOOST_LIMIT)
1871 /* Make an additive adjustment to NEW, because it's dark enough so
1872 that scaling by FACTOR alone isn't enough. */
1873 {
1874 /* How far below the limit this color is (0 - 1, 1 being darker). */
1875 double dimness = 1 - (double)bright / HIGHLIGHT_COLOR_DARK_BOOST_LIMIT;
1876 /* The additive adjustment. */
d7361edf 1877 int min_delta = delta * dimness * factor / 2;
6d8b0acd
MB
1878
1879 if (factor < 1)
1880 {
6d8b0acd
MB
1881 new.red = max (0, new.red - min_delta);
1882 new.green = max (0, new.green - min_delta);
1883 new.blue = max (0, new.blue - min_delta);
1884 }
1885 else
1886 {
1887 new.red = min (0xffff, min_delta + new.red);
1888 new.green = min (0xffff, min_delta + new.green);
1889 new.blue = min (0xffff, min_delta + new.blue);
1890 }
1891 }
1892
06a2c219 1893 /* Try to allocate the color. */
80c32bcc 1894 success_p = x_alloc_nearest_color (f, cmap, &new);
06a2c219
GM
1895 if (success_p)
1896 {
1897 if (new.pixel == *pixel)
1898 {
1899 /* If we end up with the same color as before, try adding
1900 delta to the RGB values. */
0d605c67 1901 x_free_colors (f, &new.pixel, 1);
7d0393cf 1902
06a2c219
GM
1903 new.red = min (0xffff, delta + color.red);
1904 new.green = min (0xffff, delta + color.green);
1905 new.blue = min (0xffff, delta + color.blue);
80c32bcc 1906 success_p = x_alloc_nearest_color (f, cmap, &new);
06a2c219
GM
1907 }
1908 else
1909 success_p = 1;
1910 *pixel = new.pixel;
1911 }
7d0393cf 1912
06a2c219
GM
1913 return success_p;
1914}
1915
1916
1917/* Set up the foreground color for drawing relief lines of glyph
1918 string S. RELIEF is a pointer to a struct relief containing the GC
1919 with which lines will be drawn. Use a color that is FACTOR or
1920 DELTA lighter or darker than the relief's background which is found
1921 in S->f->output_data.x->relief_background. If such a color cannot
1922 be allocated, use DEFAULT_PIXEL, instead. */
7d0393cf 1923
06a2c219
GM
1924static void
1925x_setup_relief_color (f, relief, factor, delta, default_pixel)
1926 struct frame *f;
1927 struct relief *relief;
68c45bf0 1928 double factor;
06a2c219
GM
1929 int delta;
1930 unsigned long default_pixel;
1931{
1932 XGCValues xgcv;
1933 struct x_output *di = f->output_data.x;
1934 unsigned long mask = GCForeground | GCLineWidth | GCGraphicsExposures;
1935 unsigned long pixel;
1936 unsigned long background = di->relief_background;
43bd1b2b 1937 Colormap cmap = FRAME_X_COLORMAP (f);
dcd08bfb
GM
1938 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
1939 Display *dpy = FRAME_X_DISPLAY (f);
06a2c219
GM
1940
1941 xgcv.graphics_exposures = False;
1942 xgcv.line_width = 1;
1943
1944 /* Free previously allocated color. The color cell will be reused
1945 when it has been freed as many times as it was allocated, so this
1946 doesn't affect faces using the same colors. */
1947 if (relief->gc
1948 && relief->allocated_p)
1949 {
0d605c67 1950 x_free_colors (f, &relief->pixel, 1);
06a2c219
GM
1951 relief->allocated_p = 0;
1952 }
1953
1954 /* Allocate new color. */
1955 xgcv.foreground = default_pixel;
1956 pixel = background;
dcd08bfb
GM
1957 if (dpyinfo->n_planes != 1
1958 && x_alloc_lighter_color (f, dpy, cmap, &pixel, factor, delta))
06a2c219
GM
1959 {
1960 relief->allocated_p = 1;
1961 xgcv.foreground = relief->pixel = pixel;
1962 }
7d0393cf 1963
06a2c219
GM
1964 if (relief->gc == 0)
1965 {
dcd08bfb 1966 xgcv.stipple = dpyinfo->gray;
06a2c219 1967 mask |= GCStipple;
dcd08bfb 1968 relief->gc = XCreateGC (dpy, FRAME_X_WINDOW (f), mask, &xgcv);
06a2c219
GM
1969 }
1970 else
dcd08bfb 1971 XChangeGC (dpy, relief->gc, mask, &xgcv);
06a2c219
GM
1972}
1973
1974
1975/* Set up colors for the relief lines around glyph string S. */
1976
1977static void
1978x_setup_relief_colors (s)
1979 struct glyph_string *s;
1980{
1981 struct x_output *di = s->f->output_data.x;
1982 unsigned long color;
1983
1984 if (s->face->use_box_color_for_shadows_p)
1985 color = s->face->box_color;
e2a57b34 1986 else if (s->first_glyph->type == IMAGE_GLYPH
0cb8bb48 1987 && s->img->pixmap
e2a57b34
MB
1988 && !IMAGE_BACKGROUND_TRANSPARENT (s->img, s->f, 0))
1989 color = IMAGE_BACKGROUND (s->img, s->f, 0);
06a2c219
GM
1990 else
1991 {
1992 XGCValues xgcv;
7d0393cf 1993
06a2c219
GM
1994 /* Get the background color of the face. */
1995 XGetGCValues (s->display, s->gc, GCBackground, &xgcv);
1996 color = xgcv.background;
1997 }
1998
1999 if (di->white_relief.gc == 0
2000 || color != di->relief_background)
2001 {
2002 di->relief_background = color;
2003 x_setup_relief_color (s->f, &di->white_relief, 1.2, 0x8000,
2004 WHITE_PIX_DEFAULT (s->f));
2005 x_setup_relief_color (s->f, &di->black_relief, 0.6, 0x4000,
2006 BLACK_PIX_DEFAULT (s->f));
2007 }
2008}
2009
2010
2011/* Draw a relief on frame F inside the rectangle given by LEFT_X,
2012 TOP_Y, RIGHT_X, and BOTTOM_Y. WIDTH is the thickness of the relief
2013 to draw, it must be >= 0. RAISED_P non-zero means draw a raised
2014 relief. LEFT_P non-zero means draw a relief on the left side of
2015 the rectangle. RIGHT_P non-zero means draw a relief on the right
2016 side of the rectangle. CLIP_RECT is the clipping rectangle to use
2017 when drawing. */
2018
2019static void
2020x_draw_relief_rect (f, left_x, top_y, right_x, bottom_y, width,
57326d99 2021 raised_p, top_p, bot_p, left_p, right_p, clip_rect)
06a2c219 2022 struct frame *f;
57326d99
KS
2023 int left_x, top_y, right_x, bottom_y, width;
2024 int top_p, bot_p, left_p, right_p, raised_p;
06a2c219
GM
2025 XRectangle *clip_rect;
2026{
de507556
GM
2027 Display *dpy = FRAME_X_DISPLAY (f);
2028 Window window = FRAME_X_WINDOW (f);
06a2c219
GM
2029 int i;
2030 GC gc;
7d0393cf 2031
06a2c219
GM
2032 if (raised_p)
2033 gc = f->output_data.x->white_relief.gc;
2034 else
2035 gc = f->output_data.x->black_relief.gc;
de507556 2036 XSetClipRectangles (dpy, gc, 0, 0, clip_rect, 1, Unsorted);
06a2c219
GM
2037
2038 /* Top. */
57326d99
KS
2039 if (top_p)
2040 for (i = 0; i < width; ++i)
2041 XDrawLine (dpy, window, gc,
2042 left_x + i * left_p, top_y + i,
2043 right_x + 1 - i * right_p, top_y + i);
06a2c219
GM
2044
2045 /* Left. */
2046 if (left_p)
2047 for (i = 0; i < width; ++i)
de507556 2048 XDrawLine (dpy, window, gc,
44655e77 2049 left_x + i, top_y + i, left_x + i, bottom_y - i + 1);
06a2c219 2050
de507556 2051 XSetClipMask (dpy, gc, None);
06a2c219
GM
2052 if (raised_p)
2053 gc = f->output_data.x->black_relief.gc;
2054 else
2055 gc = f->output_data.x->white_relief.gc;
de507556 2056 XSetClipRectangles (dpy, gc, 0, 0, clip_rect, 1, Unsorted);
7d0393cf 2057
06a2c219 2058 /* Bottom. */
57326d99
KS
2059 if (bot_p)
2060 for (i = 0; i < width; ++i)
2061 XDrawLine (dpy, window, gc,
2062 left_x + i * left_p, bottom_y - i,
2063 right_x + 1 - i * right_p, bottom_y - i);
7d0393cf 2064
06a2c219
GM
2065 /* Right. */
2066 if (right_p)
2067 for (i = 0; i < width; ++i)
de507556 2068 XDrawLine (dpy, window, gc,
06a2c219
GM
2069 right_x - i, top_y + i + 1, right_x - i, bottom_y - i);
2070
de507556 2071 XSetClipMask (dpy, gc, None);
06a2c219
GM
2072}
2073
2074
2075/* Draw a box on frame F inside the rectangle given by LEFT_X, TOP_Y,
2076 RIGHT_X, and BOTTOM_Y. WIDTH is the thickness of the lines to
2077 draw, it must be >= 0. LEFT_P non-zero means draw a line on the
2078 left side of the rectangle. RIGHT_P non-zero means draw a line
2079 on the right side of the rectangle. CLIP_RECT is the clipping
2080 rectangle to use when drawing. */
2081
2082static void
2083x_draw_box_rect (s, left_x, top_y, right_x, bottom_y, width,
2084 left_p, right_p, clip_rect)
2085 struct glyph_string *s;
0971e730 2086 int left_x, top_y, right_x, bottom_y, width, left_p, right_p;
06a2c219
GM
2087 XRectangle *clip_rect;
2088{
2089 XGCValues xgcv;
7d0393cf 2090
06a2c219
GM
2091 XGetGCValues (s->display, s->gc, GCForeground, &xgcv);
2092 XSetForeground (s->display, s->gc, s->face->box_color);
2093 XSetClipRectangles (s->display, s->gc, 0, 0, clip_rect, 1, Unsorted);
7d0393cf 2094
06a2c219
GM
2095 /* Top. */
2096 XFillRectangle (s->display, s->window, s->gc,
58e4fce8 2097 left_x, top_y, right_x - left_x + 1, width);
06a2c219
GM
2098
2099 /* Left. */
2100 if (left_p)
2101 XFillRectangle (s->display, s->window, s->gc,
58e4fce8 2102 left_x, top_y, width, bottom_y - top_y + 1);
06a2c219
GM
2103
2104 /* Bottom. */
2105 XFillRectangle (s->display, s->window, s->gc,
58e4fce8 2106 left_x, bottom_y - width + 1, right_x - left_x + 1, width);
7d0393cf 2107
06a2c219
GM
2108 /* Right. */
2109 if (right_p)
2110 XFillRectangle (s->display, s->window, s->gc,
58e4fce8 2111 right_x - width + 1, top_y, width, bottom_y - top_y + 1);
06a2c219
GM
2112
2113 XSetForeground (s->display, s->gc, xgcv.foreground);
2114 XSetClipMask (s->display, s->gc, None);
2115}
2116
2117
2118/* Draw a box around glyph string S. */
2119
2120static void
2121x_draw_glyph_string_box (s)
2122 struct glyph_string *s;
2123{
2124 int width, left_x, right_x, top_y, bottom_y, last_x, raised_p;
2125 int left_p, right_p;
2126 struct glyph *last_glyph;
2127 XRectangle clip_rect;
2128
82ead4b1
KS
2129 last_x = ((s->row->full_width_p && !s->w->pseudo_window_p)
2130 ? WINDOW_RIGHT_EDGE_X (s->w)
2131 : window_box_right (s->w, s->area));
7d0393cf 2132
06a2c219 2133 /* The glyph that may have a right box line. */
b4192550 2134 last_glyph = (s->cmp || s->img
06a2c219
GM
2135 ? s->first_glyph
2136 : s->first_glyph + s->nchars - 1);
2137
ea2ba0d4 2138 width = abs (s->face->box_line_width);
06a2c219
GM
2139 raised_p = s->face->box == FACE_RAISED_BOX;
2140 left_x = s->x;
57ac7c81
GM
2141 right_x = (s->row->full_width_p && s->extends_to_end_of_line_p
2142 ? last_x - 1
2143 : min (last_x, s->x + s->background_width) - 1);
06a2c219
GM
2144 top_y = s->y;
2145 bottom_y = top_y + s->height - 1;
2146
2147 left_p = (s->first_glyph->left_box_line_p
2148 || (s->hl == DRAW_MOUSE_FACE
2149 && (s->prev == NULL
2150 || s->prev->hl != s->hl)));
2151 right_p = (last_glyph->right_box_line_p
2152 || (s->hl == DRAW_MOUSE_FACE
2153 && (s->next == NULL
2154 || s->next->hl != s->hl)));
327f42ee 2155
442a09ea 2156 get_glyph_string_clip_rect (s, &clip_rect);
06a2c219
GM
2157
2158 if (s->face->box == FACE_SIMPLE_BOX)
2159 x_draw_box_rect (s, left_x, top_y, right_x, bottom_y, width,
2160 left_p, right_p, &clip_rect);
2161 else
2162 {
2163 x_setup_relief_colors (s);
2164 x_draw_relief_rect (s->f, left_x, top_y, right_x, bottom_y,
57326d99 2165 width, raised_p, 1, 1, left_p, right_p, &clip_rect);
06a2c219
GM
2166 }
2167}
2168
2169
2170/* Draw foreground of image glyph string S. */
2171
2172static void
2173x_draw_image_foreground (s)
2174 struct glyph_string *s;
2175{
57326d99
KS
2176 int x = s->x;
2177 int y = s->ybase - image_ascent (s->img, s->face, &s->slice);
06a2c219
GM
2178
2179 /* If first glyph of S has a left box line, start drawing it to the
2180 right of that line. */
2181 if (s->face->box != FACE_NO_BOX
57326d99
KS
2182 && s->first_glyph->left_box_line_p
2183 && s->slice.x == 0)
2184 x += abs (s->face->box_line_width);
06a2c219
GM
2185
2186 /* If there is a margin around the image, adjust x- and y-position
2187 by that margin. */
57326d99
KS
2188 if (s->slice.x == 0)
2189 x += s->img->hmargin;
2190 if (s->slice.y == 0)
2191 y += s->img->vmargin;
06a2c219
GM
2192
2193 if (s->img->pixmap)
2194 {
2195 if (s->img->mask)
2196 {
2197 /* We can't set both a clip mask and use XSetClipRectangles
2198 because the latter also sets a clip mask. We also can't
2199 trust on the shape extension to be available
2200 (XShapeCombineRegion). So, compute the rectangle to draw
2201 manually. */
2202 unsigned long mask = (GCClipMask | GCClipXOrigin | GCClipYOrigin
2203 | GCFunction);
2204 XGCValues xgcv;
2205 XRectangle clip_rect, image_rect, r;
2206
2207 xgcv.clip_mask = s->img->mask;
2208 xgcv.clip_x_origin = x;
2209 xgcv.clip_y_origin = y;
2210 xgcv.function = GXcopy;
2211 XChangeGC (s->display, s->gc, mask, &xgcv);
7d0393cf 2212
442a09ea 2213 get_glyph_string_clip_rect (s, &clip_rect);
06a2c219
GM
2214 image_rect.x = x;
2215 image_rect.y = y;
57326d99
KS
2216 image_rect.width = s->slice.width;
2217 image_rect.height = s->slice.height;
06a2c219
GM
2218 if (x_intersect_rectangles (&clip_rect, &image_rect, &r))
2219 XCopyArea (s->display, s->img->pixmap, s->window, s->gc,
57326d99
KS
2220 s->slice.x + r.x - x, s->slice.y + r.y - y,
2221 r.width, r.height, r.x, r.y);
06a2c219
GM
2222 }
2223 else
2224 {
49ad1d99
GM
2225 XRectangle clip_rect, image_rect, r;
2226
442a09ea 2227 get_glyph_string_clip_rect (s, &clip_rect);
49ad1d99
GM
2228 image_rect.x = x;
2229 image_rect.y = y;
57326d99
KS
2230 image_rect.width = s->slice.width;
2231 image_rect.height = s->slice.height;
49ad1d99
GM
2232 if (x_intersect_rectangles (&clip_rect, &image_rect, &r))
2233 XCopyArea (s->display, s->img->pixmap, s->window, s->gc,
57326d99
KS
2234 s->slice.x + r.x - x, s->slice.y + r.y - y,
2235 r.width, r.height, r.x, r.y);
7d0393cf 2236
06a2c219
GM
2237 /* When the image has a mask, we can expect that at
2238 least part of a mouse highlight or a block cursor will
2239 be visible. If the image doesn't have a mask, make
2240 a block cursor visible by drawing a rectangle around
2241 the image. I believe it's looking better if we do
2242 nothing here for mouse-face. */
2243 if (s->hl == DRAW_CURSOR)
534c20b2
KS
2244 {
2245 int r = s->img->relief;
2246 if (r < 0) r = -r;
57326d99
KS
2247 XDrawRectangle (s->display, s->window, s->gc,
2248 x - r, y - r,
2249 s->slice.width + r*2 - 1,
2250 s->slice.height + r*2 - 1);
534c20b2 2251 }
06a2c219
GM
2252 }
2253 }
2254 else
2255 /* Draw a rectangle if image could not be loaded. */
2256 XDrawRectangle (s->display, s->window, s->gc, x, y,
57326d99 2257 s->slice.width - 1, s->slice.height - 1);
06a2c219
GM
2258}
2259
2260
2261/* Draw a relief around the image glyph string S. */
2262
2263static void
2264x_draw_image_relief (s)
2265 struct glyph_string *s;
2266{
2267 int x0, y0, x1, y1, thick, raised_p;
2268 XRectangle r;
57326d99
KS
2269 int x = s->x;
2270 int y = s->ybase - image_ascent (s->img, s->face, &s->slice);
7d0393cf 2271
06a2c219
GM
2272 /* If first glyph of S has a left box line, start drawing it to the
2273 right of that line. */
2274 if (s->face->box != FACE_NO_BOX
57326d99
KS
2275 && s->first_glyph->left_box_line_p
2276 && s->slice.x == 0)
2277 x += abs (s->face->box_line_width);
7d0393cf 2278
06a2c219
GM
2279 /* If there is a margin around the image, adjust x- and y-position
2280 by that margin. */
57326d99
KS
2281 if (s->slice.x == 0)
2282 x += s->img->hmargin;
2283 if (s->slice.y == 0)
2284 y += s->img->vmargin;
7d0393cf 2285
06a2c219
GM
2286 if (s->hl == DRAW_IMAGE_SUNKEN
2287 || s->hl == DRAW_IMAGE_RAISED)
2288 {
62854fe2 2289 thick = tool_bar_button_relief >= 0 ? tool_bar_button_relief : DEFAULT_TOOL_BAR_BUTTON_RELIEF;
06a2c219
GM
2290 raised_p = s->hl == DRAW_IMAGE_RAISED;
2291 }
2292 else
2293 {
2294 thick = abs (s->img->relief);
2295 raised_p = s->img->relief > 0;
2296 }
7d0393cf 2297
06a2c219
GM
2298 x0 = x - thick;
2299 y0 = y - thick;
57326d99
KS
2300 x1 = x + s->slice.width + thick - 1;
2301 y1 = y + s->slice.height + thick - 1;
7d0393cf 2302
06a2c219 2303 x_setup_relief_colors (s);
442a09ea 2304 get_glyph_string_clip_rect (s, &r);
57326d99
KS
2305 x_draw_relief_rect (s->f, x0, y0, x1, y1, thick, raised_p,
2306 s->slice.y == 0,
2307 s->slice.y + s->slice.height == s->img->height,
2308 s->slice.x == 0,
2309 s->slice.x + s->slice.width == s->img->width,
2310 &r);
06a2c219
GM
2311}
2312
2313
2314/* Draw the foreground of image glyph string S to PIXMAP. */
2315
2316static void
2317x_draw_image_foreground_1 (s, pixmap)
2318 struct glyph_string *s;
2319 Pixmap pixmap;
2320{
57326d99
KS
2321 int x = 0;
2322 int y = s->ybase - s->y - image_ascent (s->img, s->face, &s->slice);
06a2c219
GM
2323
2324 /* If first glyph of S has a left box line, start drawing it to the
2325 right of that line. */
2326 if (s->face->box != FACE_NO_BOX
57326d99
KS
2327 && s->first_glyph->left_box_line_p
2328 && s->slice.x == 0)
2329 x += abs (s->face->box_line_width);
06a2c219
GM
2330
2331 /* If there is a margin around the image, adjust x- and y-position
2332 by that margin. */
57326d99
KS
2333 if (s->slice.x == 0)
2334 x += s->img->hmargin;
2335 if (s->slice.y == 0)
2336 y += s->img->vmargin;
dc43ef94 2337
06a2c219
GM
2338 if (s->img->pixmap)
2339 {
2340 if (s->img->mask)
2341 {
2342 /* We can't set both a clip mask and use XSetClipRectangles
2343 because the latter also sets a clip mask. We also can't
2344 trust on the shape extension to be available
2345 (XShapeCombineRegion). So, compute the rectangle to draw
2346 manually. */
2347 unsigned long mask = (GCClipMask | GCClipXOrigin | GCClipYOrigin
2348 | GCFunction);
2349 XGCValues xgcv;
2350
2351 xgcv.clip_mask = s->img->mask;
95911c74
JD
2352 xgcv.clip_x_origin = x - s->slice.x;
2353 xgcv.clip_y_origin = y - s->slice.y;
06a2c219
GM
2354 xgcv.function = GXcopy;
2355 XChangeGC (s->display, s->gc, mask, &xgcv);
2356
2357 XCopyArea (s->display, s->img->pixmap, pixmap, s->gc,
57326d99
KS
2358 s->slice.x, s->slice.y,
2359 s->slice.width, s->slice.height, x, y);
06a2c219
GM
2360 XSetClipMask (s->display, s->gc, None);
2361 }
2362 else
2363 {
2364 XCopyArea (s->display, s->img->pixmap, pixmap, s->gc,
57326d99
KS
2365 s->slice.x, s->slice.y,
2366 s->slice.width, s->slice.height, x, y);
7d0393cf 2367
06a2c219
GM
2368 /* When the image has a mask, we can expect that at
2369 least part of a mouse highlight or a block cursor will
2370 be visible. If the image doesn't have a mask, make
2371 a block cursor visible by drawing a rectangle around
2372 the image. I believe it's looking better if we do
2373 nothing here for mouse-face. */
2374 if (s->hl == DRAW_CURSOR)
534c20b2
KS
2375 {
2376 int r = s->img->relief;
2377 if (r < 0) r = -r;
2378 XDrawRectangle (s->display, s->window, s->gc, x - r, y - r,
57326d99
KS
2379 s->slice.width + r*2 - 1,
2380 s->slice.height + r*2 - 1);
534c20b2 2381 }
06a2c219
GM
2382 }
2383 }
2384 else
2385 /* Draw a rectangle if image could not be loaded. */
2386 XDrawRectangle (s->display, pixmap, s->gc, x, y,
57326d99 2387 s->slice.width - 1, s->slice.height - 1);
06a2c219 2388}
dc43ef94 2389
990ba854 2390
06a2c219
GM
2391/* Draw part of the background of glyph string S. X, Y, W, and H
2392 give the rectangle to draw. */
a9a5b0a5 2393
06a2c219
GM
2394static void
2395x_draw_glyph_string_bg_rect (s, x, y, w, h)
2396 struct glyph_string *s;
2397 int x, y, w, h;
2398{
2399 if (s->stippled_p)
2400 {
2401 /* Fill background with a stipple pattern. */
2402 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
2403 XFillRectangle (s->display, s->window, s->gc, x, y, w, h);
2404 XSetFillStyle (s->display, s->gc, FillSolid);
2405 }
2406 else
2407 x_clear_glyph_string_rect (s, x, y, w, h);
2408}
07e34cb0 2409
b5210ea7 2410
7d0393cf 2411/* Draw image glyph string S.
dc43ef94 2412
06a2c219
GM
2413 s->y
2414 s->x +-------------------------
2415 | s->face->box
2416 |
2417 | +-------------------------
2418 | | s->img->margin
2419 | |
2420 | | +-------------------
2421 | | | the image
dc43ef94 2422
06a2c219 2423 */
dc43ef94 2424
06a2c219
GM
2425static void
2426x_draw_image_glyph_string (s)
2427 struct glyph_string *s;
2428{
ea2ba0d4
KH
2429 int box_line_hwidth = abs (s->face->box_line_width);
2430 int box_line_vwidth = max (s->face->box_line_width, 0);
06a2c219
GM
2431 int height;
2432 Pixmap pixmap = None;
2433
57326d99
KS
2434 height = s->height;
2435 if (s->slice.y == 0)
2436 height -= box_line_vwidth;
2437 if (s->slice.y + s->slice.height >= s->img->height)
2438 height -= box_line_vwidth;
488dd4c4 2439
06a2c219
GM
2440 /* Fill background with face under the image. Do it only if row is
2441 taller than image or if image has a clip mask to reduce
2442 flickering. */
2443 s->stippled_p = s->face->stipple != 0;
57326d99 2444 if (height > s->slice.height
22d650b8
GM
2445 || s->img->hmargin
2446 || s->img->vmargin
06a2c219
GM
2447 || s->img->mask
2448 || s->img->pixmap == 0
2449 || s->width != s->background_width)
2450 {
06a2c219
GM
2451 if (s->img->mask)
2452 {
f9b5db02
GM
2453 /* Create a pixmap as large as the glyph string. Fill it
2454 with the background color. Copy the image to it, using
2455 its mask. Copy the temporary pixmap to the display. */
06a2c219
GM
2456 Screen *screen = FRAME_X_SCREEN (s->f);
2457 int depth = DefaultDepthOfScreen (screen);
2458
2459 /* Create a pixmap as large as the glyph string. */
2460 pixmap = XCreatePixmap (s->display, s->window,
2461 s->background_width,
2462 s->height, depth);
7d0393cf 2463
06a2c219
GM
2464 /* Don't clip in the following because we're working on the
2465 pixmap. */
2466 XSetClipMask (s->display, s->gc, None);
2467
2468 /* Fill the pixmap with the background color/stipple. */
2469 if (s->stippled_p)
2470 {
2471 /* Fill background with a stipple pattern. */
2472 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
2473 XFillRectangle (s->display, pixmap, s->gc,
2474 0, 0, s->background_width, s->height);
2475 XSetFillStyle (s->display, s->gc, FillSolid);
2476 }
2477 else
2478 {
2479 XGCValues xgcv;
2480 XGetGCValues (s->display, s->gc, GCForeground | GCBackground,
2481 &xgcv);
2482 XSetForeground (s->display, s->gc, xgcv.background);
2483 XFillRectangle (s->display, pixmap, s->gc,
2484 0, 0, s->background_width, s->height);
2485 XSetForeground (s->display, s->gc, xgcv.foreground);
2486 }
2487 }
2488 else
57326d99
KS
2489 {
2490 int x = s->x;
2491 int y = s->y;
2492
2493 if (s->first_glyph->left_box_line_p
2494 && s->slice.x == 0)
2495 x += box_line_hwidth;
2496
2497 if (s->slice.y == 0)
2498 y += box_line_vwidth;
2499
2500 x_draw_glyph_string_bg_rect (s, x, y, s->background_width, height);
2501 }
7d0393cf 2502
06a2c219
GM
2503 s->background_filled_p = 1;
2504 }
dc43ef94 2505
06a2c219
GM
2506 /* Draw the foreground. */
2507 if (pixmap != None)
2508 {
2509 x_draw_image_foreground_1 (s, pixmap);
2510 x_set_glyph_string_clipping (s);
2511 XCopyArea (s->display, pixmap, s->window, s->gc,
2512 0, 0, s->background_width, s->height, s->x, s->y);
2513 XFreePixmap (s->display, pixmap);
2514 }
2515 else
2516 x_draw_image_foreground (s);
b5210ea7 2517
06a2c219
GM
2518 /* If we must draw a relief around the image, do it. */
2519 if (s->img->relief
2520 || s->hl == DRAW_IMAGE_RAISED
2521 || s->hl == DRAW_IMAGE_SUNKEN)
2522 x_draw_image_relief (s);
2523}
8c1a6a84 2524
990ba854 2525
06a2c219 2526/* Draw stretch glyph string S. */
dc43ef94 2527
06a2c219
GM
2528static void
2529x_draw_stretch_glyph_string (s)
2530 struct glyph_string *s;
2531{
2532 xassert (s->first_glyph->type == STRETCH_GLYPH);
2533 s->stippled_p = s->face->stipple != 0;
990ba854 2534
06a2c219
GM
2535 if (s->hl == DRAW_CURSOR
2536 && !x_stretch_cursor_p)
2537 {
2538 /* If `x-stretch-block-cursor' is nil, don't draw a block cursor
2539 as wide as the stretch glyph. */
e8f6b0db
KS
2540 int width, background_width = s->background_width;
2541 int x = s->x, left_x = window_box_left_offset (s->w, TEXT_AREA);
2542
2543 if (x < left_x)
2544 {
2545 background_width -= left_x - x;
2546 x = left_x;
2547 }
2548 width = min (FRAME_COLUMN_WIDTH (s->f), background_width);
990ba854 2549
06a2c219 2550 /* Draw cursor. */
e8f6b0db 2551 x_draw_glyph_string_bg_rect (s, x, s->y, width, s->height);
0cdd0c9f 2552
06a2c219 2553 /* Clear rest using the GC of the original non-cursor face. */
e8f6b0db 2554 if (width < background_width)
06a2c219 2555 {
e8f6b0db
KS
2556 int y = s->y;
2557 int w = background_width - width, h = s->height;
06a2c219 2558 XRectangle r;
b7f83f9e 2559 GC gc;
dc43ef94 2560
e8f6b0db 2561 x += width;
b7f83f9e
GM
2562 if (s->row->mouse_face_p
2563 && cursor_in_mouse_face_p (s->w))
2564 {
2565 x_set_mouse_face_gc (s);
2566 gc = s->gc;
2567 }
2568 else
2569 gc = s->face->gc;
7d0393cf 2570
442a09ea 2571 get_glyph_string_clip_rect (s, &r);
06a2c219 2572 XSetClipRectangles (s->display, gc, 0, 0, &r, 1, Unsorted);
7d0393cf 2573
06a2c219
GM
2574 if (s->face->stipple)
2575 {
2576 /* Fill background with a stipple pattern. */
2577 XSetFillStyle (s->display, gc, FillOpaqueStippled);
2578 XFillRectangle (s->display, s->window, gc, x, y, w, h);
2579 XSetFillStyle (s->display, gc, FillSolid);
2580 }
2581 else
2582 {
2583 XGCValues xgcv;
2584 XGetGCValues (s->display, gc, GCForeground | GCBackground, &xgcv);
2585 XSetForeground (s->display, gc, xgcv.background);
2586 XFillRectangle (s->display, s->window, gc, x, y, w, h);
2587 XSetForeground (s->display, gc, xgcv.foreground);
2588 }
2589 }
2590 }
61e9f9f3 2591 else if (!s->background_filled_p)
e8f6b0db
KS
2592 {
2593 int background_width = s->background_width;
2594 int x = s->x, left_x = window_box_left_offset (s->w, TEXT_AREA);
2595
6c693929
KS
2596 /* Don't draw into left margin, fringe or scrollbar area
2597 except for header line and mode line. */
2598 if (x < left_x && !s->row->mode_line_p)
e8f6b0db
KS
2599 {
2600 background_width -= left_x - x;
2601 x = left_x;
2602 }
2603 if (background_width > 0)
2604 x_draw_glyph_string_bg_rect (s, x, s->y, background_width, s->height);
2605 }
7d0393cf 2606
06a2c219
GM
2607 s->background_filled_p = 1;
2608}
2609
2610
2611/* Draw glyph string S. */
2612
2613static void
2614x_draw_glyph_string (s)
2615 struct glyph_string *s;
2616{
4458cf11
KH
2617 int relief_drawn_p = 0;
2618
06a2c219
GM
2619 /* If S draws into the background of its successor, draw the
2620 background of the successor first so that S can draw into it.
2621 This makes S->next use XDrawString instead of XDrawImageString. */
c2ded1b7 2622 if (s->next && s->right_overhang && !s->for_overlaps)
06a2c219
GM
2623 {
2624 xassert (s->next->img == NULL);
2625 x_set_glyph_string_gc (s->next);
2626 x_set_glyph_string_clipping (s->next);
2627 x_draw_glyph_string_background (s->next, 1);
2628 }
97210f4e 2629
06a2c219
GM
2630 /* Set up S->gc, set clipping and draw S. */
2631 x_set_glyph_string_gc (s);
06a2c219 2632
4458cf11
KH
2633 /* Draw relief (if any) in advance for char/composition so that the
2634 glyph string can be drawn over it. */
c2ded1b7 2635 if (!s->for_overlaps
4458cf11
KH
2636 && s->face->box != FACE_NO_BOX
2637 && (s->first_glyph->type == CHAR_GLYPH
2638 || s->first_glyph->type == COMPOSITE_GLYPH))
2639
2640 {
e6269cbb 2641 x_set_glyph_string_clipping (s);
4458cf11
KH
2642 x_draw_glyph_string_background (s, 1);
2643 x_draw_glyph_string_box (s);
e6269cbb 2644 x_set_glyph_string_clipping (s);
4458cf11
KH
2645 relief_drawn_p = 1;
2646 }
e6269cbb
GM
2647 else
2648 x_set_glyph_string_clipping (s);
4458cf11 2649
06a2c219
GM
2650 switch (s->first_glyph->type)
2651 {
2652 case IMAGE_GLYPH:
2653 x_draw_image_glyph_string (s);
2654 break;
2655
2656 case STRETCH_GLYPH:
2657 x_draw_stretch_glyph_string (s);
2658 break;
2659
2660 case CHAR_GLYPH:
c2ded1b7 2661 if (s->for_overlaps)
66ac4b0e
GM
2662 s->background_filled_p = 1;
2663 else
2664 x_draw_glyph_string_background (s, 0);
06a2c219
GM
2665 x_draw_glyph_string_foreground (s);
2666 break;
2667
b4192550 2668 case COMPOSITE_GLYPH:
c2ded1b7 2669 if (s->for_overlaps || s->gidx > 0)
b4192550
KH
2670 s->background_filled_p = 1;
2671 else
2672 x_draw_glyph_string_background (s, 1);
2673 x_draw_composite_glyph_string_foreground (s);
2674 break;
2675
06a2c219
GM
2676 default:
2677 abort ();
2678 }
2679
c2ded1b7 2680 if (!s->for_overlaps)
06a2c219 2681 {
66ac4b0e
GM
2682 /* Draw underline. */
2683 if (s->face->underline_p)
2684 {
e24e84cc
GM
2685 unsigned long tem, h;
2686 int y;
06a2c219 2687
e24e84cc 2688 /* Get the underline thickness. Default is 1 pixel. */
66ac4b0e
GM
2689 if (!XGetFontProperty (s->font, XA_UNDERLINE_THICKNESS, &h))
2690 h = 1;
e24e84cc 2691
1118718c
KS
2692 y = s->y + s->height - h;
2693 if (!x_underline_at_descent_line)
30f27523
KS
2694 {
2695 /* Get the underline position. This is the recommended
2696 vertical offset in pixels from the baseline to the top of
2697 the underline. This is a signed value according to the
2698 specs, and its default is
2699
2700 ROUND ((maximum descent) / 2), with
2701 ROUND(x) = floor (x + 0.5) */
2702
2703 if (x_use_underline_position_properties
2704 && XGetFontProperty (s->font, XA_UNDERLINE_POSITION, &tem))
2705 y = s->ybase + (long) tem;
2706 else if (s->face->font)
2707 y = s->ybase + (s->face->font->max_bounds.descent + 1) / 2;
2708 }
7d0393cf 2709
66ac4b0e 2710 if (s->face->underline_defaulted_p)
e24e84cc 2711 XFillRectangle (s->display, s->window, s->gc,
30f27523 2712 s->x, y, s->background_width, h);
66ac4b0e
GM
2713 else
2714 {
2715 XGCValues xgcv;
2716 XGetGCValues (s->display, s->gc, GCForeground, &xgcv);
2717 XSetForeground (s->display, s->gc, s->face->underline_color);
e24e84cc 2718 XFillRectangle (s->display, s->window, s->gc,
30f27523 2719 s->x, y, s->background_width, h);
66ac4b0e
GM
2720 XSetForeground (s->display, s->gc, xgcv.foreground);
2721 }
dc6f92b8 2722 }
07e34cb0 2723
66ac4b0e
GM
2724 /* Draw overline. */
2725 if (s->face->overline_p)
06a2c219 2726 {
66ac4b0e
GM
2727 unsigned long dy = 0, h = 1;
2728
2729 if (s->face->overline_color_defaulted_p)
2730 XFillRectangle (s->display, s->window, s->gc, s->x, s->y + dy,
30f27523 2731 s->background_width, h);
66ac4b0e
GM
2732 else
2733 {
2734 XGCValues xgcv;
2735 XGetGCValues (s->display, s->gc, GCForeground, &xgcv);
2736 XSetForeground (s->display, s->gc, s->face->overline_color);
2737 XFillRectangle (s->display, s->window, s->gc, s->x, s->y + dy,
30f27523 2738 s->background_width, h);
66ac4b0e
GM
2739 XSetForeground (s->display, s->gc, xgcv.foreground);
2740 }
06a2c219 2741 }
7d0393cf 2742
66ac4b0e
GM
2743 /* Draw strike-through. */
2744 if (s->face->strike_through_p)
06a2c219 2745 {
66ac4b0e
GM
2746 unsigned long h = 1;
2747 unsigned long dy = (s->height - h) / 2;
2748
2749 if (s->face->strike_through_color_defaulted_p)
2750 XFillRectangle (s->display, s->window, s->gc, s->x, s->y + dy,
2751 s->width, h);
2752 else
2753 {
2754 XGCValues xgcv;
2755 XGetGCValues (s->display, s->gc, GCForeground, &xgcv);
2756 XSetForeground (s->display, s->gc, s->face->strike_through_color);
2757 XFillRectangle (s->display, s->window, s->gc, s->x, s->y + dy,
2758 s->width, h);
2759 XSetForeground (s->display, s->gc, xgcv.foreground);
2760 }
06a2c219 2761 }
7d0393cf 2762
4458cf11
KH
2763 /* Draw relief if not yet drawn. */
2764 if (!relief_drawn_p && s->face->box != FACE_NO_BOX)
66ac4b0e
GM
2765 x_draw_glyph_string_box (s);
2766 }
7d0393cf 2767
06a2c219
GM
2768 /* Reset clipping. */
2769 XSetClipMask (s->display, s->gc, None);
dc6f92b8 2770}
07e34cb0 2771
442a09ea 2772/* Shift display to make room for inserted glyphs. */
06a2c219 2773
442a09ea
KS
2774void
2775x_shift_glyphs_for_insert (f, x, y, width, height, shift_by)
2776 struct frame *f;
2777 int x, y, width, height, shift_by;
06a2c219 2778{
06a2c219
GM
2779 XCopyArea (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), FRAME_X_WINDOW (f),
2780 f->output_data.x->normal_gc,
442a09ea
KS
2781 x, y, width, height,
2782 x + shift_by, y);
0cdd0c9f 2783}
0cdd0c9f 2784
06a2c219
GM
2785/* Delete N glyphs at the nominal cursor position. Not implemented
2786 for X frames. */
c83febd7
RS
2787
2788static void
06a2c219
GM
2789x_delete_glyphs (n)
2790 register int n;
c83febd7 2791{
06a2c219 2792 abort ();
c83febd7
RS
2793}
2794
0cdd0c9f 2795
c5e6e06b
GM
2796/* Like XClearArea, but check that WIDTH and HEIGHT are reasonable.
2797 If they are <= 0, this is probably an error. */
2798
2799void
2800x_clear_area (dpy, window, x, y, width, height, exposures)
2801 Display *dpy;
2802 Window window;
2803 int x, y;
2804 int width, height;
2805 int exposures;
2806{
2807 xassert (width > 0 && height > 0);
2808 XClearArea (dpy, window, x, y, width, height, exposures);
2809}
2810
2811
06a2c219 2812/* Clear entire frame. If updating_frame is non-null, clear that
b86bd3dd 2813 frame. Otherwise clear the selected frame. */
06a2c219
GM
2814
2815static void
2816x_clear_frame ()
0cdd0c9f 2817{
06a2c219 2818 struct frame *f;
0cdd0c9f 2819
06a2c219
GM
2820 if (updating_frame)
2821 f = updating_frame;
0cdd0c9f 2822 else
b86bd3dd 2823 f = SELECTED_FRAME ();
58769bee 2824
06a2c219
GM
2825 /* Clearing the frame will erase any cursor, so mark them all as no
2826 longer visible. */
2827 mark_window_cursors_off (XWINDOW (FRAME_ROOT_WINDOW (f)));
2828 output_cursor.hpos = output_cursor.vpos = 0;
2829 output_cursor.x = -1;
2830
2831 /* We don't set the output cursor here because there will always
2832 follow an explicit cursor_to. */
2833 BLOCK_INPUT;
2834 XClearWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
2835
2836 /* We have to clear the scroll bars, too. If we have changed
2837 colors or something like that, then they should be notified. */
2838 x_scroll_bar_clear (f);
0cdd0c9f 2839
06a2c219 2840 XFlush (FRAME_X_DISPLAY (f));
0cb35f4e 2841
06a2c219 2842 UNBLOCK_INPUT;
dc6f92b8 2843}
06a2c219
GM
2844
2845
dc6f92b8 2846\f
dbc4e1c1
JB
2847/* Invert the middle quarter of the frame for .15 sec. */
2848
06a2c219
GM
2849/* We use the select system call to do the waiting, so we have to make
2850 sure it's available. If it isn't, we just won't do visual bells. */
2851
dbc4e1c1
JB
2852#if defined (HAVE_TIMEVAL) && defined (HAVE_SELECT)
2853
06a2c219
GM
2854
2855/* Subtract the `struct timeval' values X and Y, storing the result in
2856 *RESULT. Return 1 if the difference is negative, otherwise 0. */
dbc4e1c1
JB
2857
2858static int
2859timeval_subtract (result, x, y)
2860 struct timeval *result, x, y;
2861{
06a2c219
GM
2862 /* Perform the carry for the later subtraction by updating y. This
2863 is safer because on some systems the tv_sec member is unsigned. */
dbc4e1c1
JB
2864 if (x.tv_usec < y.tv_usec)
2865 {
2866 int nsec = (y.tv_usec - x.tv_usec) / 1000000 + 1;
2867 y.tv_usec -= 1000000 * nsec;
2868 y.tv_sec += nsec;
2869 }
7d0393cf 2870
dbc4e1c1
JB
2871 if (x.tv_usec - y.tv_usec > 1000000)
2872 {
2873 int nsec = (y.tv_usec - x.tv_usec) / 1000000;
2874 y.tv_usec += 1000000 * nsec;
2875 y.tv_sec -= nsec;
2876 }
2877
06a2c219
GM
2878 /* Compute the time remaining to wait. tv_usec is certainly
2879 positive. */
dbc4e1c1
JB
2880 result->tv_sec = x.tv_sec - y.tv_sec;
2881 result->tv_usec = x.tv_usec - y.tv_usec;
2882
06a2c219
GM
2883 /* Return indication of whether the result should be considered
2884 negative. */
dbc4e1c1
JB
2885 return x.tv_sec < y.tv_sec;
2886}
dc6f92b8 2887
dfcf069d 2888void
f676886a
JB
2889XTflash (f)
2890 struct frame *f;
dc6f92b8 2891{
dbc4e1c1 2892 BLOCK_INPUT;
dc6f92b8 2893
dbc4e1c1
JB
2894 {
2895 GC gc;
dc6f92b8 2896
06a2c219
GM
2897 /* Create a GC that will use the GXxor function to flip foreground
2898 pixels into background pixels. */
dbc4e1c1
JB
2899 {
2900 XGCValues values;
dc6f92b8 2901
dbc4e1c1 2902 values.function = GXxor;
7556890b
RS
2903 values.foreground = (f->output_data.x->foreground_pixel
2904 ^ f->output_data.x->background_pixel);
58769bee 2905
334208b7 2906 gc = XCreateGC (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
dbc4e1c1
JB
2907 GCFunction | GCForeground, &values);
2908 }
dc6f92b8 2909
dbc4e1c1 2910 {
e84e14c3 2911 /* Get the height not including a menu bar widget. */
0899d58c 2912 int height = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, FRAME_LINES (f));
e84e14c3
RS
2913 /* Height of each line to flash. */
2914 int flash_height = FRAME_LINE_HEIGHT (f);
2915 /* These will be the left and right margins of the rectangles. */
2916 int flash_left = FRAME_INTERNAL_BORDER_WIDTH (f);
0899d58c 2917 int flash_right = FRAME_PIXEL_WIDTH (f) - FRAME_INTERNAL_BORDER_WIDTH (f);
e84e14c3
RS
2918
2919 int width;
2920
2921 /* Don't flash the area between a scroll bar and the frame
2922 edge it is next to. */
2923 switch (FRAME_VERTICAL_SCROLL_BAR_TYPE (f))
2924 {
2925 case vertical_scroll_bar_left:
2926 flash_left += VERTICAL_SCROLL_BAR_WIDTH_TRIM;
2927 break;
2928
2929 case vertical_scroll_bar_right:
2930 flash_right -= VERTICAL_SCROLL_BAR_WIDTH_TRIM;
2931 break;
06a2c219
GM
2932
2933 default:
2934 break;
e84e14c3
RS
2935 }
2936
2937 width = flash_right - flash_left;
2938
2939 /* If window is tall, flash top and bottom line. */
2940 if (height > 3 * FRAME_LINE_HEIGHT (f))
2941 {
2942 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
06a2c219
GM
2943 flash_left,
2944 (FRAME_INTERNAL_BORDER_WIDTH (f)
0899d58c 2945 + FRAME_TOOL_BAR_LINES (f) * FRAME_LINE_HEIGHT (f)),
e84e14c3
RS
2946 width, flash_height);
2947 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
2948 flash_left,
2949 (height - flash_height
2950 - FRAME_INTERNAL_BORDER_WIDTH (f)),
2951 width, flash_height);
2952 }
2953 else
7d0393cf 2954 /* If it is short, flash it all. */
e84e14c3
RS
2955 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
2956 flash_left, FRAME_INTERNAL_BORDER_WIDTH (f),
2957 width, height - 2 * FRAME_INTERNAL_BORDER_WIDTH (f));
dc6f92b8 2958
06a2c219 2959 x_flush (f);
dc6f92b8 2960
dbc4e1c1 2961 {
06a2c219 2962 struct timeval wakeup;
dc6f92b8 2963
66c30ea1 2964 EMACS_GET_TIME (wakeup);
dc6f92b8 2965
dbc4e1c1
JB
2966 /* Compute time to wait until, propagating carry from usecs. */
2967 wakeup.tv_usec += 150000;
2968 wakeup.tv_sec += (wakeup.tv_usec / 1000000);
2969 wakeup.tv_usec %= 1000000;
2970
101922c3
GM
2971 /* Keep waiting until past the time wakeup or any input gets
2972 available. */
2973 while (! detect_input_pending ())
dbc4e1c1 2974 {
101922c3 2975 struct timeval current;
dbc4e1c1
JB
2976 struct timeval timeout;
2977
101922c3 2978 EMACS_GET_TIME (current);
dbc4e1c1 2979
101922c3
GM
2980 /* Break if result would be negative. */
2981 if (timeval_subtract (&current, wakeup, current))
dbc4e1c1
JB
2982 break;
2983
101922c3
GM
2984 /* How long `select' should wait. */
2985 timeout.tv_sec = 0;
2986 timeout.tv_usec = 10000;
2987
dbc4e1c1 2988 /* Try to wait that long--but we might wake up sooner. */
c32cdd9a 2989 select (0, NULL, NULL, NULL, &timeout);
dbc4e1c1
JB
2990 }
2991 }
58769bee 2992
e84e14c3
RS
2993 /* If window is tall, flash top and bottom line. */
2994 if (height > 3 * FRAME_LINE_HEIGHT (f))
2995 {
2996 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
06a2c219
GM
2997 flash_left,
2998 (FRAME_INTERNAL_BORDER_WIDTH (f)
0899d58c 2999 + FRAME_TOOL_BAR_LINES (f) * FRAME_LINE_HEIGHT (f)),
e84e14c3
RS
3000 width, flash_height);
3001 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
3002 flash_left,
3003 (height - flash_height
3004 - FRAME_INTERNAL_BORDER_WIDTH (f)),
3005 width, flash_height);
3006 }
3007 else
7d0393cf 3008 /* If it is short, flash it all. */
e84e14c3
RS
3009 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc,
3010 flash_left, FRAME_INTERNAL_BORDER_WIDTH (f),
3011 width, height - 2 * FRAME_INTERNAL_BORDER_WIDTH (f));
3012
334208b7 3013 XFreeGC (FRAME_X_DISPLAY (f), gc);
06a2c219 3014 x_flush (f);
dc6f92b8 3015 }
dbc4e1c1
JB
3016 }
3017
3018 UNBLOCK_INPUT;
dc6f92b8
JB
3019}
3020
06a2c219 3021#endif /* defined (HAVE_TIMEVAL) && defined (HAVE_SELECT) */
dbc4e1c1
JB
3022
3023
dc6f92b8
JB
3024/* Make audible bell. */
3025
dfcf069d 3026void
dc6f92b8
JB
3027XTring_bell ()
3028{
b86bd3dd 3029 struct frame *f = SELECTED_FRAME ();
7d0393cf 3030
b86bd3dd
GM
3031 if (FRAME_X_DISPLAY (f))
3032 {
dbc4e1c1 3033#if defined (HAVE_TIMEVAL) && defined (HAVE_SELECT)
b86bd3dd
GM
3034 if (visible_bell)
3035 XTflash (f);
3036 else
dbc4e1c1 3037#endif
b86bd3dd
GM
3038 {
3039 BLOCK_INPUT;
3040 XBell (FRAME_X_DISPLAY (f), 0);
3041 XFlush (FRAME_X_DISPLAY (f));
3042 UNBLOCK_INPUT;
3043 }
dc6f92b8
JB
3044 }
3045}
06a2c219 3046
dc6f92b8 3047\f
06a2c219
GM
3048/* Specify how many text lines, from the top of the window,
3049 should be affected by insert-lines and delete-lines operations.
3050 This, and those operations, are used only within an update
3051 that is bounded by calls to x_update_begin and x_update_end. */
dc6f92b8 3052
dfcf069d 3053static void
06a2c219
GM
3054XTset_terminal_window (n)
3055 register int n;
dc6f92b8 3056{
06a2c219 3057 /* This function intentionally left blank. */
dc6f92b8
JB
3058}
3059
06a2c219
GM
3060
3061\f
3062/***********************************************************************
3063 Line Dance
3064 ***********************************************************************/
3065
3066/* Perform an insert-lines or delete-lines operation, inserting N
3067 lines or deleting -N lines at vertical position VPOS. */
3068
dfcf069d 3069static void
06a2c219
GM
3070x_ins_del_lines (vpos, n)
3071 int vpos, n;
dc6f92b8
JB
3072{
3073 abort ();
3074}
06a2c219
GM
3075
3076
3077/* Scroll part of the display as described by RUN. */
dc6f92b8 3078
dfcf069d 3079static void
06a2c219
GM
3080x_scroll_run (w, run)
3081 struct window *w;
3082 struct run *run;
dc6f92b8 3083{
06a2c219
GM
3084 struct frame *f = XFRAME (w->frame);
3085 int x, y, width, height, from_y, to_y, bottom_y;
3086
3087 /* Get frame-relative bounding box of the text display area of W,
3f332ef3
KS
3088 without mode lines. Include in this box the left and right
3089 fringe of W. */
06a2c219 3090 window_box (w, -1, &x, &y, &width, &height);
06a2c219
GM
3091
3092 from_y = WINDOW_TO_FRAME_PIXEL_Y (w, run->current_y);
3093 to_y = WINDOW_TO_FRAME_PIXEL_Y (w, run->desired_y);
3094 bottom_y = y + height;
dc6f92b8 3095
06a2c219
GM
3096 if (to_y < from_y)
3097 {
3098 /* Scrolling up. Make sure we don't copy part of the mode
3099 line at the bottom. */
3100 if (from_y + run->height > bottom_y)
3101 height = bottom_y - from_y;
3102 else
3103 height = run->height;
3104 }
dc6f92b8 3105 else
06a2c219
GM
3106 {
3107 /* Scolling down. Make sure we don't copy over the mode line.
3108 at the bottom. */
3109 if (to_y + run->height > bottom_y)
3110 height = bottom_y - to_y;
3111 else
3112 height = run->height;
3113 }
7a13e894 3114
06a2c219 3115 BLOCK_INPUT;
7d0393cf 3116
06a2c219
GM
3117 /* Cursor off. Will be switched on again in x_update_window_end. */
3118 updated_window = w;
3119 x_clear_cursor (w);
3120
3121 XCopyArea (FRAME_X_DISPLAY (f),
3122 FRAME_X_WINDOW (f), FRAME_X_WINDOW (f),
3123 f->output_data.x->normal_gc,
3124 x, from_y,
3125 width, height,
3126 x, to_y);
7d0393cf 3127
06a2c219
GM
3128 UNBLOCK_INPUT;
3129}
dc6f92b8 3130
dc6f92b8 3131
06a2c219
GM
3132\f
3133/***********************************************************************
3134 Exposure Events
3135 ***********************************************************************/
7d0393cf 3136
442a09ea 3137\f
06a2c219 3138static void
442a09ea 3139frame_highlight (f)
06a2c219 3140 struct frame *f;
dc6f92b8 3141{
442a09ea
KS
3142 /* We used to only do this if Vx_no_window_manager was non-nil, but
3143 the ICCCM (section 4.1.6) says that the window's border pixmap
3144 and border pixel are window attributes which are "private to the
3145 client", so we can always change it to whatever we want. */
3146 BLOCK_INPUT;
3147 XSetWindowBorder (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3148 f->output_data.x->border_pixel);
3149 UNBLOCK_INPUT;
3150 x_update_cursor (f, 1);
3151}
dc6f92b8 3152
442a09ea
KS
3153static void
3154frame_unhighlight (f)
3155 struct frame *f;
3156{
3157 /* We used to only do this if Vx_no_window_manager was non-nil, but
3158 the ICCCM (section 4.1.6) says that the window's border pixmap
3159 and border pixel are window attributes which are "private to the
3160 client", so we can always change it to whatever we want. */
3161 BLOCK_INPUT;
3162 XSetWindowBorderPixmap (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3163 f->output_data.x->border_tile);
3164 UNBLOCK_INPUT;
3165 x_update_cursor (f, 1);
3166}
dc6f92b8 3167
442a09ea
KS
3168/* The focus has changed. Update the frames as necessary to reflect
3169 the new situation. Note that we can't change the selected frame
3170 here, because the Lisp code we are interrupting might become confused.
3171 Each event gets marked with the frame in which it occurred, so the
3172 Lisp code can tell when the switch took place by examining the events. */
06a2c219 3173
442a09ea
KS
3174static void
3175x_new_focus_frame (dpyinfo, frame)
3176 struct x_display_info *dpyinfo;
3177 struct frame *frame;
3178{
3179 struct frame *old_focus = dpyinfo->x_focus_frame;
06a2c219 3180
442a09ea 3181 if (frame != dpyinfo->x_focus_frame)
dc6f92b8 3182 {
442a09ea
KS
3183 /* Set this before calling other routines, so that they see
3184 the correct value of x_focus_frame. */
3185 dpyinfo->x_focus_frame = frame;
06a2c219 3186
442a09ea
KS
3187 if (old_focus && old_focus->auto_lower)
3188 x_lower_frame (old_focus);
06a2c219 3189
442a09ea
KS
3190#if 0
3191 selected_frame = frame;
3192 XSETFRAME (XWINDOW (selected_frame->selected_window)->frame,
3193 selected_frame);
f1321dc3 3194 Fselect_window (selected_frame->selected_window, Qnil);
442a09ea
KS
3195 choose_minibuf_frame ();
3196#endif /* ! 0 */
82f053ab 3197
442a09ea
KS
3198 if (dpyinfo->x_focus_frame && dpyinfo->x_focus_frame->auto_raise)
3199 pending_autoraise_frame = dpyinfo->x_focus_frame;
3200 else
3201 pending_autoraise_frame = 0;
82f053ab 3202 }
dc6f92b8 3203
442a09ea
KS
3204 x_frame_rehighlight (dpyinfo);
3205}
06a2c219 3206
442a09ea
KS
3207/* Handle FocusIn and FocusOut state changes for FRAME.
3208 If FRAME has focus and there exists more than one frame, puts
89079179 3209 a FOCUS_IN_EVENT into *BUFP. */
cab34f50 3210
89079179
KS
3211static void
3212x_focus_changed (type, state, dpyinfo, frame, bufp)
cab34f50
JD
3213 int type;
3214 int state;
3215 struct x_display_info *dpyinfo;
3216 struct frame *frame;
3217 struct input_event *bufp;
cab34f50 3218{
cab34f50
JD
3219 if (type == FocusIn)
3220 {
3221 if (dpyinfo->x_focus_event_frame != frame)
3222 {
3223 x_new_focus_frame (dpyinfo, frame);
3224 dpyinfo->x_focus_event_frame = frame;
7d0393cf 3225
cab34f50
JD
3226 /* Don't stop displaying the initial startup message
3227 for a switch-frame event we don't need. */
89079179 3228 if (GC_NILP (Vterminal_frame)
cab34f50
JD
3229 && GC_CONSP (Vframe_list)
3230 && !GC_NILP (XCDR (Vframe_list)))
3231 {
3232 bufp->kind = FOCUS_IN_EVENT;
3233 XSETFRAME (bufp->frame_or_window, frame);
cab34f50
JD
3234 }
3235 }
3236
3237 frame->output_data.x->focus_state |= state;
3238
3239#ifdef HAVE_X_I18N
3240 if (FRAME_XIC (frame))
3241 XSetICFocus (FRAME_XIC (frame));
3242#endif
3243 }
3244 else if (type == FocusOut)
3245 {
3246 frame->output_data.x->focus_state &= ~state;
7d0393cf 3247
cab34f50
JD
3248 if (dpyinfo->x_focus_event_frame == frame)
3249 {
3250 dpyinfo->x_focus_event_frame = 0;
3251 x_new_focus_frame (dpyinfo, 0);
3252 }
3253
3254#ifdef HAVE_X_I18N
3255 if (FRAME_XIC (frame))
3256 XUnsetICFocus (FRAME_XIC (frame));
3257#endif
3258 }
cab34f50
JD
3259}
3260
3261/* The focus may have changed. Figure out if it is a real focus change,
3262 by checking both FocusIn/Out and Enter/LeaveNotify events.
3263
89079179 3264 Returns FOCUS_IN_EVENT event in *BUFP. */
cab34f50 3265
89079179
KS
3266static void
3267x_detect_focus_change (dpyinfo, event, bufp)
cab34f50
JD
3268 struct x_display_info *dpyinfo;
3269 XEvent *event;
3270 struct input_event *bufp;
cab34f50
JD
3271{
3272 struct frame *frame;
7d0393cf 3273
9d00001f 3274 frame = x_any_window_to_frame (dpyinfo, event->xany.window);
89079179
KS
3275 if (! frame)
3276 return;
7d0393cf 3277
cab34f50
JD
3278 switch (event->type)
3279 {
3280 case EnterNotify:
3281 case LeaveNotify:
0b03cc78
JD
3282 {
3283 struct frame *focus_frame = dpyinfo->x_focus_event_frame;
3284 int focus_state
3285 = focus_frame ? focus_frame->output_data.x->focus_state : 0;
3286
3287 if (event->xcrossing.detail != NotifyInferior
3288 && event->xcrossing.focus
3289 && ! (focus_state & FOCUS_EXPLICIT))
89079179
KS
3290 x_focus_changed ((event->type == EnterNotify ? FocusIn : FocusOut),
3291 FOCUS_IMPLICIT,
3292 dpyinfo, frame, bufp);
0b03cc78 3293 }
cab34f50
JD
3294 break;
3295
3296 case FocusIn:
3297 case FocusOut:
89079179
KS
3298 x_focus_changed (event->type,
3299 (event->xfocus.detail == NotifyPointer ?
3300 FOCUS_IMPLICIT : FOCUS_EXPLICIT),
3301 dpyinfo, frame, bufp);
cab34f50
JD
3302 break;
3303 }
cab34f50
JD
3304}
3305
3306
37c2c98b
RS
3307/* Handle an event saying the mouse has moved out of an Emacs frame. */
3308
3309void
0f941935
KH
3310x_mouse_leave (dpyinfo)
3311 struct x_display_info *dpyinfo;
37c2c98b 3312{
0f941935 3313 x_new_focus_frame (dpyinfo, dpyinfo->x_focus_event_frame);
37c2c98b 3314}
6d4238f3 3315
f451eb13
JB
3316/* The focus has changed, or we have redirected a frame's focus to
3317 another frame (this happens when a frame uses a surrogate
06a2c219 3318 mini-buffer frame). Shift the highlight as appropriate.
0f941935
KH
3319
3320 The FRAME argument doesn't necessarily have anything to do with which
06a2c219 3321 frame is being highlighted or un-highlighted; we only use it to find
0f941935 3322 the appropriate X display info. */
06a2c219 3323
6d4238f3 3324static void
0f941935
KH
3325XTframe_rehighlight (frame)
3326 struct frame *frame;
6d4238f3 3327{
0f941935
KH
3328 x_frame_rehighlight (FRAME_X_DISPLAY_INFO (frame));
3329}
6d4238f3 3330
0f941935
KH
3331static void
3332x_frame_rehighlight (dpyinfo)
3333 struct x_display_info *dpyinfo;
3334{
3335 struct frame *old_highlight = dpyinfo->x_highlight_frame;
3336
3337 if (dpyinfo->x_focus_frame)
6d4238f3 3338 {
0f941935
KH
3339 dpyinfo->x_highlight_frame
3340 = ((GC_FRAMEP (FRAME_FOCUS_FRAME (dpyinfo->x_focus_frame)))
3341 ? XFRAME (FRAME_FOCUS_FRAME (dpyinfo->x_focus_frame))
3342 : dpyinfo->x_focus_frame);
3343 if (! FRAME_LIVE_P (dpyinfo->x_highlight_frame))
f451eb13 3344 {
0f941935
KH
3345 FRAME_FOCUS_FRAME (dpyinfo->x_focus_frame) = Qnil;
3346 dpyinfo->x_highlight_frame = dpyinfo->x_focus_frame;
f451eb13 3347 }
dc6f92b8 3348 }
6d4238f3 3349 else
0f941935 3350 dpyinfo->x_highlight_frame = 0;
dc6f92b8 3351
0f941935 3352 if (dpyinfo->x_highlight_frame != old_highlight)
6d4238f3
JB
3353 {
3354 if (old_highlight)
f676886a 3355 frame_unhighlight (old_highlight);
0f941935
KH
3356 if (dpyinfo->x_highlight_frame)
3357 frame_highlight (dpyinfo->x_highlight_frame);
6d4238f3 3358 }
dc6f92b8 3359}
06a2c219
GM
3360
3361
dc6f92b8 3362\f
06a2c219 3363/* Keyboard processing - modifier keys, vendor-specific keysyms, etc. */
dc6f92b8 3364
28430d3c
JB
3365/* Initialize mode_switch_bit and modifier_meaning. */
3366static void
334208b7
RS
3367x_find_modifier_meanings (dpyinfo)
3368 struct x_display_info *dpyinfo;
28430d3c 3369{
f689eb05 3370 int min_code, max_code;
28430d3c
JB
3371 KeySym *syms;
3372 int syms_per_code;
3373 XModifierKeymap *mods;
3374
334208b7
RS
3375 dpyinfo->meta_mod_mask = 0;
3376 dpyinfo->shift_lock_mask = 0;
3377 dpyinfo->alt_mod_mask = 0;
3378 dpyinfo->super_mod_mask = 0;
3379 dpyinfo->hyper_mod_mask = 0;
58769bee 3380
9658a521 3381#ifdef HAVE_X11R4
334208b7 3382 XDisplayKeycodes (dpyinfo->display, &min_code, &max_code);
9658a521 3383#else
4a60f8c5
RS
3384 min_code = dpyinfo->display->min_keycode;
3385 max_code = dpyinfo->display->max_keycode;
9658a521
JB
3386#endif
3387
334208b7 3388 syms = XGetKeyboardMapping (dpyinfo->display,
28430d3c
JB
3389 min_code, max_code - min_code + 1,
3390 &syms_per_code);
334208b7 3391 mods = XGetModifierMapping (dpyinfo->display);
28430d3c 3392
58769bee 3393 /* Scan the modifier table to see which modifier bits the Meta and
11edeb03 3394 Alt keysyms are on. */
28430d3c 3395 {
06a2c219 3396 int row, col; /* The row and column in the modifier table. */
b90ee8b5 3397 int found_alt_or_meta;
28430d3c
JB
3398
3399 for (row = 3; row < 8; row++)
b90ee8b5
JD
3400 {
3401 found_alt_or_meta = 0;
28430d3c
JB
3402 for (col = 0; col < mods->max_keypermod; col++)
3403 {
b90ee8b5 3404 KeyCode code = mods->modifiermap[(row * mods->max_keypermod) + col];
28430d3c 3405
af92970c
KH
3406 /* Zeroes are used for filler. Skip them. */
3407 if (code == 0)
3408 continue;
3409
28430d3c
JB
3410 /* Are any of this keycode's keysyms a meta key? */
3411 {
3412 int code_col;
3413
3414 for (code_col = 0; code_col < syms_per_code; code_col++)
3415 {
f689eb05 3416 int sym = syms[((code - min_code) * syms_per_code) + code_col];
28430d3c 3417
f689eb05 3418 switch (sym)
28430d3c 3419 {
f689eb05
JB
3420 case XK_Meta_L:
3421 case XK_Meta_R:
b90ee8b5 3422 found_alt_or_meta = 1;
334208b7 3423 dpyinfo->meta_mod_mask |= (1 << row);
28430d3c 3424 break;
f689eb05
JB
3425
3426 case XK_Alt_L:
3427 case XK_Alt_R:
b90ee8b5 3428 found_alt_or_meta = 1;
334208b7 3429 dpyinfo->alt_mod_mask |= (1 << row);
a3c44b14
RS
3430 break;
3431
3432 case XK_Hyper_L:
3433 case XK_Hyper_R:
b90ee8b5
JD
3434 if (!found_alt_or_meta)
3435 dpyinfo->hyper_mod_mask |= (1 << row);
3436 code_col = syms_per_code;
3437 col = mods->max_keypermod;
a3c44b14
RS
3438 break;
3439
3440 case XK_Super_L:
3441 case XK_Super_R:
b90ee8b5
JD
3442 if (!found_alt_or_meta)
3443 dpyinfo->super_mod_mask |= (1 << row);
3444 code_col = syms_per_code;
3445 col = mods->max_keypermod;
f689eb05 3446 break;
11edeb03
JB
3447
3448 case XK_Shift_Lock:
3449 /* Ignore this if it's not on the lock modifier. */
b90ee8b5 3450 if (!found_alt_or_meta && ((1 << row) == LockMask))
334208b7 3451 dpyinfo->shift_lock_mask = LockMask;
b90ee8b5
JD
3452 code_col = syms_per_code;
3453 col = mods->max_keypermod;
11edeb03 3454 break;
28430d3c
JB
3455 }
3456 }
3457 }
3458 }
b90ee8b5 3459 }
28430d3c
JB
3460 }
3461
f689eb05 3462 /* If we couldn't find any meta keys, accept any alt keys as meta keys. */
334208b7 3463 if (! dpyinfo->meta_mod_mask)
a3c44b14 3464 {
334208b7
RS
3465 dpyinfo->meta_mod_mask = dpyinfo->alt_mod_mask;
3466 dpyinfo->alt_mod_mask = 0;
a3c44b14 3467 }
f689eb05 3468
148c4b70
RS
3469 /* If some keys are both alt and meta,
3470 make them just meta, not alt. */
334208b7 3471 if (dpyinfo->alt_mod_mask & dpyinfo->meta_mod_mask)
148c4b70 3472 {
334208b7 3473 dpyinfo->alt_mod_mask &= ~dpyinfo->meta_mod_mask;
148c4b70 3474 }
58769bee 3475
28430d3c 3476 XFree ((char *) syms);
f689eb05 3477 XFreeModifiermap (mods);
28430d3c
JB
3478}
3479
dfeccd2d
JB
3480/* Convert between the modifier bits X uses and the modifier bits
3481 Emacs uses. */
06a2c219 3482
e92928a7 3483unsigned int
334208b7
RS
3484x_x_to_emacs_modifiers (dpyinfo, state)
3485 struct x_display_info *dpyinfo;
dc6f92b8
JB
3486 unsigned int state;
3487{
98659da6
KG
3488 EMACS_UINT mod_meta = meta_modifier;
3489 EMACS_UINT mod_alt = alt_modifier;
3490 EMACS_UINT mod_hyper = hyper_modifier;
3491 EMACS_UINT mod_super = super_modifier;
3492 Lisp_Object tem;
7d0393cf 3493
98659da6
KG
3494 tem = Fget (Vx_alt_keysym, Qmodifier_value);
3495 if (! EQ (tem, Qnil)) mod_alt = XUINT (tem);
3496 tem = Fget (Vx_meta_keysym, Qmodifier_value);
3497 if (! EQ (tem, Qnil)) mod_meta = XUINT (tem);
3498 tem = Fget (Vx_hyper_keysym, Qmodifier_value);
3499 if (! EQ (tem, Qnil)) mod_hyper = XUINT (tem);
3500 tem = Fget (Vx_super_keysym, Qmodifier_value);
3501 if (! EQ (tem, Qnil)) mod_super = XUINT (tem);
7d0393cf 3502
98659da6 3503
334208b7 3504 return ( ((state & (ShiftMask | dpyinfo->shift_lock_mask)) ? shift_modifier : 0)
98659da6
KG
3505 | ((state & ControlMask) ? ctrl_modifier : 0)
3506 | ((state & dpyinfo->meta_mod_mask) ? mod_meta : 0)
3507 | ((state & dpyinfo->alt_mod_mask) ? mod_alt : 0)
3508 | ((state & dpyinfo->super_mod_mask) ? mod_super : 0)
3509 | ((state & dpyinfo->hyper_mod_mask) ? mod_hyper : 0));
dc6f92b8
JB
3510}
3511
dfeccd2d 3512static unsigned int
334208b7
RS
3513x_emacs_to_x_modifiers (dpyinfo, state)
3514 struct x_display_info *dpyinfo;
dfeccd2d
JB
3515 unsigned int state;
3516{
98659da6
KG
3517 EMACS_UINT mod_meta = meta_modifier;
3518 EMACS_UINT mod_alt = alt_modifier;
3519 EMACS_UINT mod_hyper = hyper_modifier;
3520 EMACS_UINT mod_super = super_modifier;
7d0393cf 3521
98659da6 3522 Lisp_Object tem;
7d0393cf 3523
98659da6
KG
3524 tem = Fget (Vx_alt_keysym, Qmodifier_value);
3525 if (! EQ (tem, Qnil)) mod_alt = XUINT (tem);
3526 tem = Fget (Vx_meta_keysym, Qmodifier_value);
3527 if (! EQ (tem, Qnil)) mod_meta = XUINT (tem);
3528 tem = Fget (Vx_hyper_keysym, Qmodifier_value);
3529 if (! EQ (tem, Qnil)) mod_hyper = XUINT (tem);
3530 tem = Fget (Vx_super_keysym, Qmodifier_value);
3531 if (! EQ (tem, Qnil)) mod_super = XUINT (tem);
7d0393cf
JB
3532
3533
98659da6
KG
3534 return ( ((state & mod_alt) ? dpyinfo->alt_mod_mask : 0)
3535 | ((state & mod_super) ? dpyinfo->super_mod_mask : 0)
3536 | ((state & mod_hyper) ? dpyinfo->hyper_mod_mask : 0)
3537 | ((state & shift_modifier) ? ShiftMask : 0)
3538 | ((state & ctrl_modifier) ? ControlMask : 0)
3539 | ((state & mod_meta) ? dpyinfo->meta_mod_mask : 0));
dfeccd2d 3540}
d047c4eb
KH
3541
3542/* Convert a keysym to its name. */
3543
3544char *
3545x_get_keysym_name (keysym)
3546 KeySym keysym;
3547{
3548 char *value;
3549
3550 BLOCK_INPUT;
3551 value = XKeysymToString (keysym);
3552 UNBLOCK_INPUT;
3553
3554 return value;
3555}
06a2c219
GM
3556
3557
e4571a43
JB
3558\f
3559/* Mouse clicks and mouse movement. Rah. */
e4571a43 3560
442a09ea 3561/* Prepare a mouse-event in *RESULT for placement in the input queue.
71b8321e 3562
442a09ea
KS
3563 If the event is a button press, then note that we have grabbed
3564 the mouse. */
3565
3566static Lisp_Object
3567construct_mouse_click (result, event, f)
3568 struct input_event *result;
3569 XButtonEvent *event;
3570 struct frame *f;
71b8321e 3571{
442a09ea
KS
3572 /* Make the event type NO_EVENT; we'll change that when we decide
3573 otherwise. */
3574 result->kind = MOUSE_CLICK_EVENT;
3575 result->code = event->button - Button1;
3576 result->timestamp = event->time;
3577 result->modifiers = (x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO (f),
3578 event->state)
3579 | (event->type == ButtonRelease
3580 ? up_modifier
3581 : down_modifier));
71b8321e 3582
442a09ea
KS
3583 XSETINT (result->x, event->x);
3584 XSETINT (result->y, event->y);
3585 XSETFRAME (result->frame_or_window, f);
3586 result->arg = Qnil;
3587 return Qnil;
71b8321e
GM
3588}
3589
442a09ea
KS
3590\f
3591/* Function to report a mouse movement to the mainstream Emacs code.
3592 The input handler calls this.
71b8321e 3593
442a09ea
KS
3594 We have received a mouse movement event, which is given in *event.
3595 If the mouse is over a different glyph than it was last time, tell
3596 the mainstream emacs code by setting mouse_moved. If not, ask for
3597 another motion event, so we can check again the next time it moves. */
e687d06e 3598
442a09ea
KS
3599static XMotionEvent last_mouse_motion_event;
3600static Lisp_Object last_mouse_motion_frame;
3601
bb339c57 3602static int
442a09ea
KS
3603note_mouse_movement (frame, event)
3604 FRAME_PTR frame;
3605 XMotionEvent *event;
e687d06e 3606{
442a09ea
KS
3607 last_mouse_movement_time = event->time;
3608 last_mouse_motion_event = *event;
3609 XSETFRAME (last_mouse_motion_frame, frame);
e687d06e 3610
555ffb46
RS
3611 if (!FRAME_X_OUTPUT (frame))
3612 return 0;
0c0351b5 3613
442a09ea 3614 if (event->window != FRAME_X_WINDOW (frame))
e687d06e 3615 {
442a09ea
KS
3616 frame->mouse_moved = 1;
3617 last_mouse_scroll_bar = Qnil;
3618 note_mouse_highlight (frame, -1, -1);
0a3fde9d 3619 last_mouse_glyph_frame = 0;
bb339c57 3620 return 1;
442a09ea
KS
3621 }
3622
a4b0e228 3623
442a09ea 3624 /* Has the mouse moved off the glyph it was on at the last sighting? */
0a3fde9d
KS
3625 if (frame != last_mouse_glyph_frame
3626 || event->x < last_mouse_glyph.x
a4b0e228
JD
3627 || event->x >= last_mouse_glyph.x + last_mouse_glyph.width
3628 || event->y < last_mouse_glyph.y
3629 || event->y >= last_mouse_glyph.y + last_mouse_glyph.height)
442a09ea
KS
3630 {
3631 frame->mouse_moved = 1;
3632 last_mouse_scroll_bar = Qnil;
0a3fde9d 3633 note_mouse_highlight (frame, event->x, event->y);
9b909870 3634 /* Remember which glyph we're now on. */
cc9e7d91 3635 remember_mouse_glyph (frame, event->x, event->y, &last_mouse_glyph);
0a3fde9d 3636 last_mouse_glyph_frame = frame;
bb339c57 3637 return 1;
e687d06e 3638 }
bb339c57
KS
3639
3640 return 0;
e687d06e 3641}
b52b65bd 3642
b8009dd1 3643\f
442a09ea
KS
3644/************************************************************************
3645 Mouse Face
3646 ************************************************************************/
3647
3648static void
3649redo_mouse_highlight ()
3650{
3651 if (!NILP (last_mouse_motion_frame)
3652 && FRAME_LIVE_P (XFRAME (last_mouse_motion_frame)))
3653 note_mouse_highlight (XFRAME (last_mouse_motion_frame),
3654 last_mouse_motion_event.x,
3655 last_mouse_motion_event.y);
3656}
3657
3658
9b909870 3659
90e65f07 3660/* Return the current position of the mouse.
b52b65bd 3661 *FP should be a frame which indicates which display to ask about.
90e65f07 3662
b52b65bd
GM
3663 If the mouse movement started in a scroll bar, set *FP, *BAR_WINDOW,
3664 and *PART to the frame, window, and scroll bar part that the mouse
3665 is over. Set *X and *Y to the portion and whole of the mouse's
ab648270 3666 position on the scroll bar.
12ba150f 3667
b52b65bd
GM
3668 If the mouse movement started elsewhere, set *FP to the frame the
3669 mouse is on, *BAR_WINDOW to nil, and *X and *Y to the character cell
12ba150f
JB
3670 the mouse is over.
3671
b52b65bd 3672 Set *TIME to the server time-stamp for the time at which the mouse
12ba150f
JB
3673 was at this position.
3674
a135645a
RS
3675 Don't store anything if we don't have a valid set of values to report.
3676
90e65f07 3677 This clears the mouse_moved flag, so we can wait for the next mouse
f5bb65ec 3678 movement. */
90e65f07
JB
3679
3680static void
1cf412ec 3681XTmouse_position (fp, insist, bar_window, part, x, y, time)
334208b7 3682 FRAME_PTR *fp;
1cf412ec 3683 int insist;
12ba150f 3684 Lisp_Object *bar_window;
ab648270 3685 enum scroll_bar_part *part;
90e65f07 3686 Lisp_Object *x, *y;
e5d77022 3687 unsigned long *time;
90e65f07 3688{
a135645a
RS
3689 FRAME_PTR f1;
3690
90e65f07
JB
3691 BLOCK_INPUT;
3692
8bcee03e 3693 if (! NILP (last_mouse_scroll_bar) && insist == 0)
334208b7 3694 x_scroll_bar_report_motion (fp, bar_window, part, x, y, time);
90e65f07
JB
3695 else
3696 {
12ba150f
JB
3697 Window root;
3698 int root_x, root_y;
90e65f07 3699
12ba150f
JB
3700 Window dummy_window;
3701 int dummy;
3702
39d8bb4d
KH
3703 Lisp_Object frame, tail;
3704
3705 /* Clear the mouse-moved flag for every frame on this display. */
3706 FOR_EACH_FRAME (tail, frame)
3707 if (FRAME_X_DISPLAY (XFRAME (frame)) == FRAME_X_DISPLAY (*fp))
3708 XFRAME (frame)->mouse_moved = 0;
3709
ab648270 3710 last_mouse_scroll_bar = Qnil;
12ba150f
JB
3711
3712 /* Figure out which root window we're on. */
334208b7
RS
3713 XQueryPointer (FRAME_X_DISPLAY (*fp),
3714 DefaultRootWindow (FRAME_X_DISPLAY (*fp)),
12ba150f
JB
3715
3716 /* The root window which contains the pointer. */
3717 &root,
3718
3719 /* Trash which we can't trust if the pointer is on
3720 a different screen. */
3721 &dummy_window,
3722
3723 /* The position on that root window. */
58769bee 3724 &root_x, &root_y,
12ba150f
JB
3725
3726 /* More trash we can't trust. */
3727 &dummy, &dummy,
3728
3729 /* Modifier keys and pointer buttons, about which
3730 we don't care. */
3731 (unsigned int *) &dummy);
3732
3733 /* Now we have a position on the root; find the innermost window
3734 containing the pointer. */
3735 {
3736 Window win, child;
3737 int win_x, win_y;
06a2c219 3738 int parent_x = 0, parent_y = 0;
12ba150f
JB
3739
3740 win = root;
69388238 3741
2d7fc7e8
RS
3742 /* XTranslateCoordinates can get errors if the window
3743 structure is changing at the same time this function
3744 is running. So at least we must not crash from them. */
3745
9ba8e10d 3746 x_catch_errors (FRAME_X_DISPLAY (*fp));
2d7fc7e8 3747
334208b7 3748 if (FRAME_X_DISPLAY_INFO (*fp)->grabbed && last_mouse_frame
23faf38f 3749 && FRAME_LIVE_P (last_mouse_frame))
12ba150f 3750 {
69388238
RS
3751 /* If mouse was grabbed on a frame, give coords for that frame
3752 even if the mouse is now outside it. */
334208b7 3753 XTranslateCoordinates (FRAME_X_DISPLAY (*fp),
69388238 3754
12ba150f 3755 /* From-window, to-window. */
69388238 3756 root, FRAME_X_WINDOW (last_mouse_frame),
12ba150f
JB
3757
3758 /* From-position, to-position. */
3759 root_x, root_y, &win_x, &win_y,
3760
3761 /* Child of win. */
3762 &child);
69388238
RS
3763 f1 = last_mouse_frame;
3764 }
3765 else
3766 {
3767 while (1)
3768 {
334208b7 3769 XTranslateCoordinates (FRAME_X_DISPLAY (*fp),
12ba150f 3770
69388238
RS
3771 /* From-window, to-window. */
3772 root, win,
12ba150f 3773
69388238
RS
3774 /* From-position, to-position. */
3775 root_x, root_y, &win_x, &win_y,
3776
3777 /* Child of win. */
3778 &child);
3779
9af3143a 3780 if (child == None || child == win)
69388238
RS
3781 break;
3782
3783 win = child;
3784 parent_x = win_x;
3785 parent_y = win_y;
3786 }
12ba150f 3787
69388238
RS
3788 /* Now we know that:
3789 win is the innermost window containing the pointer
3790 (XTC says it has no child containing the pointer),
3791 win_x and win_y are the pointer's position in it
3792 (XTC did this the last time through), and
3793 parent_x and parent_y are the pointer's position in win's parent.
3794 (They are what win_x and win_y were when win was child.
3795 If win is the root window, it has no parent, and
3796 parent_{x,y} are invalid, but that's okay, because we'll
3797 never use them in that case.) */
3798
3799 /* Is win one of our frames? */
19126e11 3800 f1 = x_any_window_to_frame (FRAME_X_DISPLAY_INFO (*fp), win);
aad0f6ab
GM
3801
3802#ifdef USE_X_TOOLKIT
3803 /* If we end up with the menu bar window, say it's not
3804 on the frame. */
3805 if (f1 != NULL
3806 && f1->output_data.x->menubar_widget
3807 && win == XtWindow (f1->output_data.x->menubar_widget))
3808 f1 = NULL;
3809#endif /* USE_X_TOOLKIT */
69388238 3810 }
58769bee 3811
2d7fc7e8
RS
3812 if (x_had_errors_p (FRAME_X_DISPLAY (*fp)))
3813 f1 = 0;
3814
4545fa20 3815 x_uncatch_errors ();
2d7fc7e8 3816
ab648270 3817 /* If not, is it one of our scroll bars? */
a135645a 3818 if (! f1)
12ba150f 3819 {
810f2256
JD
3820 struct scroll_bar *bar;
3821
3822 bar = x_window_to_scroll_bar (FRAME_X_DISPLAY (*fp), win);
12ba150f
JB
3823
3824 if (bar)
3825 {
a135645a 3826 f1 = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
12ba150f
JB
3827 win_x = parent_x;
3828 win_y = parent_y;
3829 }
3830 }
90e65f07 3831
8bcee03e 3832 if (f1 == 0 && insist > 0)
b86bd3dd 3833 f1 = SELECTED_FRAME ();
1cf412ec 3834
a135645a 3835 if (f1)
12ba150f 3836 {
06a2c219
GM
3837 /* Ok, we found a frame. Store all the values.
3838 last_mouse_glyph is a rectangle used to reduce the
3839 generation of mouse events. To not miss any motion
3840 events, we must divide the frame into rectangles of the
3841 size of the smallest character that could be displayed
3842 on it, i.e. into the same rectangles that matrices on
3843 the frame are divided into. */
3844
cc9e7d91 3845 remember_mouse_glyph (f1, win_x, win_y, &last_mouse_glyph);
0a3fde9d 3846 last_mouse_glyph_frame = f1;
12ba150f
JB
3847
3848 *bar_window = Qnil;
3849 *part = 0;
334208b7 3850 *fp = f1;
e0c1aef2
KH
3851 XSETINT (*x, win_x);
3852 XSETINT (*y, win_y);
12ba150f
JB
3853 *time = last_mouse_movement_time;
3854 }
3855 }
3856 }
90e65f07
JB
3857
3858 UNBLOCK_INPUT;
3859}
f451eb13 3860
06a2c219 3861
06a2c219 3862\f
442a09ea
KS
3863/***********************************************************************
3864 Scroll bars
3865 ***********************************************************************/
3866
06a2c219
GM
3867/* Scroll bar support. */
3868
810f2256
JD
3869/* Given an X window ID and a DISPLAY, find the struct scroll_bar which
3870 manages it.
06a2c219
GM
3871 This can be called in GC, so we have to make sure to strip off mark
3872 bits. */
bffcfca9 3873
06a2c219 3874static struct scroll_bar *
810f2256
JD
3875x_window_to_scroll_bar (display, window_id)
3876 Display *display;
06a2c219
GM
3877 Window window_id;
3878{
3879 Lisp_Object tail;
3880
a11e1dce 3881#if defined (USE_GTK) && defined (USE_TOOLKIT_SCROLL_BARS)
810f2256 3882 window_id = (Window) xg_get_scroll_id_for_window (display, window_id);
a11e1dce 3883#endif /* USE_GTK && USE_TOOLKIT_SCROLL_BARS */
257f40f2 3884
06a2c219
GM
3885 for (tail = Vframe_list;
3886 XGCTYPE (tail) == Lisp_Cons;
8e713be6 3887 tail = XCDR (tail))
06a2c219
GM
3888 {
3889 Lisp_Object frame, bar, condemned;
3890
8e713be6 3891 frame = XCAR (tail);
06a2c219
GM
3892 /* All elements of Vframe_list should be frames. */
3893 if (! GC_FRAMEP (frame))
3894 abort ();
3895
3896 /* Scan this frame's scroll bar list for a scroll bar with the
3897 right window ID. */
3898 condemned = FRAME_CONDEMNED_SCROLL_BARS (XFRAME (frame));
3899 for (bar = FRAME_SCROLL_BARS (XFRAME (frame));
3900 /* This trick allows us to search both the ordinary and
3901 condemned scroll bar lists with one loop. */
3902 ! GC_NILP (bar) || (bar = condemned,
3903 condemned = Qnil,
3904 ! GC_NILP (bar));
3905 bar = XSCROLL_BAR (bar)->next)
a0c6ef2d
JD
3906 if (SCROLL_BAR_X_WINDOW (XSCROLL_BAR (bar)) == window_id &&
3907 FRAME_X_DISPLAY (XFRAME (frame)) == display)
06a2c219
GM
3908 return XSCROLL_BAR (bar);
3909 }
3910
3911 return 0;
3912}
3913
3914
01f67d2c 3915#if defined USE_LUCID
c95fc5f1
GM
3916
3917/* Return the Lucid menu bar WINDOW is part of. Return null
3918 if WINDOW is not part of a menu bar. */
3919
3920static Widget
3921x_window_to_menu_bar (window)
3922 Window window;
3923{
3924 Lisp_Object tail;
7d0393cf 3925
c95fc5f1
GM
3926 for (tail = Vframe_list;
3927 XGCTYPE (tail) == Lisp_Cons;
3928 tail = XCDR (tail))
3929 {
3930 Lisp_Object frame = XCAR (tail);
3931 Widget menu_bar = XFRAME (frame)->output_data.x->menubar_widget;
7d0393cf 3932
c95fc5f1
GM
3933 if (menu_bar && xlwmenu_window_p (menu_bar, window))
3934 return menu_bar;
3935 }
3936
3937 return NULL;
3938}
3939
01f67d2c 3940#endif /* USE_LUCID */
c95fc5f1 3941
06a2c219
GM
3942\f
3943/************************************************************************
3944 Toolkit scroll bars
3945 ************************************************************************/
3946
eccc05db 3947#ifdef USE_TOOLKIT_SCROLL_BARS
06a2c219
GM
3948
3949static void x_scroll_bar_to_input_event P_ ((XEvent *, struct input_event *));
3950static void x_send_scroll_bar_event P_ ((Lisp_Object, int, int, int));
3951static void x_create_toolkit_scroll_bar P_ ((struct frame *,
3952 struct scroll_bar *));
3953static void x_set_toolkit_scroll_bar_thumb P_ ((struct scroll_bar *,
3954 int, int, int));
3955
3956
06a2c219
GM
3957/* Lisp window being scrolled. Set when starting to interact with
3958 a toolkit scroll bar, reset to nil when ending the interaction. */
3959
3960static Lisp_Object window_being_scrolled;
3961
3962/* Last scroll bar part sent in xm_scroll_callback. */
3963
3964static int last_scroll_bar_part;
3965
ec18280f
SM
3966/* Whether this is an Xaw with arrow-scrollbars. This should imply
3967 that movements of 1/20 of the screen size are mapped to up/down. */
3968
488dd4c4
JD
3969#ifndef USE_GTK
3970/* Id of action hook installed for scroll bars. */
3971
3972static XtActionHookId action_hook_id;
3973
ec18280f
SM
3974static Boolean xaw3d_arrow_scroll;
3975
3976/* Whether the drag scrolling maintains the mouse at the top of the
3977 thumb. If not, resizing the thumb needs to be done more carefully
3978 to avoid jerkyness. */
3979
3980static Boolean xaw3d_pick_top;
3981
06a2c219 3982/* Action hook installed via XtAppAddActionHook when toolkit scroll
ec18280f 3983 bars are used.. The hook is responsible for detecting when
06a2c219 3984 the user ends an interaction with the scroll bar, and generates
3b8f9651 3985 a `end-scroll' SCROLL_BAR_CLICK_EVENT' event if so. */
06a2c219
GM
3986
3987static void
3988xt_action_hook (widget, client_data, action_name, event, params,
3989 num_params)
3990 Widget widget;
3991 XtPointer client_data;
3992 String action_name;
3993 XEvent *event;
3994 String *params;
3995 Cardinal *num_params;
3996{
3997 int scroll_bar_p;
3998 char *end_action;
7d0393cf 3999
06a2c219
GM
4000#ifdef USE_MOTIF
4001 scroll_bar_p = XmIsScrollBar (widget);
4002 end_action = "Release";
ec18280f 4003#else /* !USE_MOTIF i.e. use Xaw */
06a2c219
GM
4004 scroll_bar_p = XtIsSubclass (widget, scrollbarWidgetClass);
4005 end_action = "EndScroll";
ec18280f 4006#endif /* USE_MOTIF */
06a2c219 4007
06a2c219
GM
4008 if (scroll_bar_p
4009 && strcmp (action_name, end_action) == 0
4010 && WINDOWP (window_being_scrolled))
4011 {
4012 struct window *w;
7d0393cf 4013
06a2c219
GM
4014 x_send_scroll_bar_event (window_being_scrolled,
4015 scroll_bar_end_scroll, 0, 0);
4016 w = XWINDOW (window_being_scrolled);
62fe13a4 4017
3c671a56 4018 if (!NILP (XSCROLL_BAR (w->vertical_scroll_bar)->dragging))
95a39dc5
SM
4019 {
4020 XSCROLL_BAR (w->vertical_scroll_bar)->dragging = Qnil;
4021 /* The thumb size is incorrect while dragging: fix it. */
4022 set_vertical_scroll_bar (w);
4023 }
06a2c219
GM
4024 window_being_scrolled = Qnil;
4025 last_scroll_bar_part = -1;
bffcfca9
GM
4026
4027 /* Xt timeouts no longer needed. */
4028 toolkit_scroll_bar_interaction = 0;
06a2c219
GM
4029 }
4030}
488dd4c4 4031#endif /* not USE_GTK */
06a2c219 4032
07b3d16e
GM
4033/* A vector of windows used for communication between
4034 x_send_scroll_bar_event and x_scroll_bar_to_input_event. */
4035
4036static struct window **scroll_bar_windows;
4037static int scroll_bar_windows_size;
4038
06a2c219
GM
4039
4040/* Send a client message with message type Xatom_Scrollbar for a
4041 scroll action to the frame of WINDOW. PART is a value identifying
4042 the part of the scroll bar that was clicked on. PORTION is the
4043 amount to scroll of a whole of WHOLE. */
4044
4045static void
4046x_send_scroll_bar_event (window, part, portion, whole)
4047 Lisp_Object window;
4048 int part, portion, whole;
4049{
4050 XEvent event;
4051 XClientMessageEvent *ev = (XClientMessageEvent *) &event;
07b3d16e
GM
4052 struct window *w = XWINDOW (window);
4053 struct frame *f = XFRAME (w->frame);
4054 int i;
06a2c219 4055
07b3d16e 4056 BLOCK_INPUT;
7d0393cf 4057
06a2c219
GM
4058 /* Construct a ClientMessage event to send to the frame. */
4059 ev->type = ClientMessage;
4060 ev->message_type = FRAME_X_DISPLAY_INFO (f)->Xatom_Scrollbar;
4061 ev->display = FRAME_X_DISPLAY (f);
4062 ev->window = FRAME_X_WINDOW (f);
4063 ev->format = 32;
07b3d16e
GM
4064
4065 /* We can only transfer 32 bits in the XClientMessageEvent, which is
4066 not enough to store a pointer or Lisp_Object on a 64 bit system.
4067 So, store the window in scroll_bar_windows and pass the index
4068 into that array in the event. */
4069 for (i = 0; i < scroll_bar_windows_size; ++i)
4070 if (scroll_bar_windows[i] == NULL)
4071 break;
4072
4073 if (i == scroll_bar_windows_size)
4074 {
4075 int new_size = max (10, 2 * scroll_bar_windows_size);
4076 size_t nbytes = new_size * sizeof *scroll_bar_windows;
4077 size_t old_nbytes = scroll_bar_windows_size * sizeof *scroll_bar_windows;
7d0393cf 4078
07b3d16e
GM
4079 scroll_bar_windows = (struct window **) xrealloc (scroll_bar_windows,
4080 nbytes);
4081 bzero (&scroll_bar_windows[i], nbytes - old_nbytes);
4082 scroll_bar_windows_size = new_size;
4083 }
4084
4085 scroll_bar_windows[i] = w;
4086 ev->data.l[0] = (long) i;
06a2c219
GM
4087 ev->data.l[1] = (long) part;
4088 ev->data.l[2] = (long) 0;
4089 ev->data.l[3] = (long) portion;
4090 ev->data.l[4] = (long) whole;
4091
bffcfca9
GM
4092 /* Make Xt timeouts work while the scroll bar is active. */
4093 toolkit_scroll_bar_interaction = 1;
4094
06a2c219
GM
4095 /* Setting the event mask to zero means that the message will
4096 be sent to the client that created the window, and if that
4097 window no longer exists, no event will be sent. */
06a2c219
GM
4098 XSendEvent (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), False, 0, &event);
4099 UNBLOCK_INPUT;
4100}
4101
4102
4103/* Transform a scroll bar ClientMessage EVENT to an Emacs input event
4104 in *IEVENT. */
4105
4106static void
4107x_scroll_bar_to_input_event (event, ievent)
4108 XEvent *event;
4109 struct input_event *ievent;
4110{
4111 XClientMessageEvent *ev = (XClientMessageEvent *) event;
52e386c2
KR
4112 Lisp_Object window;
4113 struct frame *f;
07b3d16e 4114 struct window *w;
7d0393cf 4115
07b3d16e
GM
4116 w = scroll_bar_windows[ev->data.l[0]];
4117 scroll_bar_windows[ev->data.l[0]] = NULL;
52e386c2 4118
07b3d16e
GM
4119 XSETWINDOW (window, w);
4120 f = XFRAME (w->frame);
7d0393cf 4121
3b8f9651 4122 ievent->kind = SCROLL_BAR_CLICK_EVENT;
06a2c219 4123 ievent->frame_or_window = window;
0f8aabe9 4124 ievent->arg = Qnil;
488dd4c4
JD
4125#ifdef USE_GTK
4126 ievent->timestamp = CurrentTime;
4127#else
06a2c219 4128 ievent->timestamp = XtLastTimestampProcessed (FRAME_X_DISPLAY (f));
488dd4c4 4129#endif
06a2c219
GM
4130 ievent->part = ev->data.l[1];
4131 ievent->code = ev->data.l[2];
4132 ievent->x = make_number ((int) ev->data.l[3]);
4133 ievent->y = make_number ((int) ev->data.l[4]);
4134 ievent->modifiers = 0;
4135}
4136
4137
4138#ifdef USE_MOTIF
4139
4140/* Minimum and maximum values used for Motif scroll bars. */
4141
06a2c219 4142#define XM_SB_MAX 10000000
06a2c219
GM
4143
4144
4145/* Scroll bar callback for Motif scroll bars. WIDGET is the scroll
4146 bar widget. CLIENT_DATA is a pointer to the scroll_bar structure.
4696802b 4147 CALL_DATA is a pointer to a XmScrollBarCallbackStruct. */
06a2c219
GM
4148
4149static void
4150xm_scroll_callback (widget, client_data, call_data)
4151 Widget widget;
4152 XtPointer client_data, call_data;
4153{
4154 struct scroll_bar *bar = (struct scroll_bar *) client_data;
4155 XmScrollBarCallbackStruct *cs = (XmScrollBarCallbackStruct *) call_data;
06a2c219
GM
4156 int part = -1, whole = 0, portion = 0;
4157
4158 switch (cs->reason)
4159 {
4160 case XmCR_DECREMENT:
4161 bar->dragging = Qnil;
4162 part = scroll_bar_up_arrow;
4163 break;
4164
4165 case XmCR_INCREMENT:
4166 bar->dragging = Qnil;
4167 part = scroll_bar_down_arrow;
4168 break;
4169
4170 case XmCR_PAGE_DECREMENT:
4171 bar->dragging = Qnil;
4172 part = scroll_bar_above_handle;
4173 break;
4174
4175 case XmCR_PAGE_INCREMENT:
4176 bar->dragging = Qnil;
4177 part = scroll_bar_below_handle;
4178 break;
4179
4180 case XmCR_TO_TOP:
4181 bar->dragging = Qnil;
4182 part = scroll_bar_to_top;
4183 break;
7d0393cf 4184
06a2c219
GM
4185 case XmCR_TO_BOTTOM:
4186 bar->dragging = Qnil;
4187 part = scroll_bar_to_bottom;
4188 break;
4189
4190 case XmCR_DRAG:
4191 {
4192 int slider_size;
06a2c219
GM
4193
4194 /* Get the slider size. */
4195 BLOCK_INPUT;
4196 XtVaGetValues (widget, XmNsliderSize, &slider_size, NULL);
4197 UNBLOCK_INPUT;
4198
baa21c48 4199 whole = XM_SB_MAX - slider_size;
3c671a56 4200 portion = min (cs->value, whole);
6f2a7a68
SM
4201 part = scroll_bar_handle;
4202 bar->dragging = make_number (cs->value);
06a2c219
GM
4203 }
4204 break;
7d0393cf 4205
06a2c219
GM
4206 case XmCR_VALUE_CHANGED:
4207 break;
4208 };
4209
4210 if (part >= 0)
4211 {
4212 window_being_scrolled = bar->window;
4213 last_scroll_bar_part = part;
4214 x_send_scroll_bar_event (bar->window, part, portion, whole);
4215 }
4216}
4217
4218
488dd4c4
JD
4219#else /* !USE_MOTIF, i.e. Xaw or GTK */
4220#ifdef USE_GTK
17097258 4221/* Scroll bar callback for GTK scroll bars. WIDGET is the scroll
f979dc05 4222 bar widget. DATA is a pointer to the scroll_bar structure. */
488dd4c4
JD
4223
4224static void
4225xg_scroll_callback (widget, data)
f979dc05 4226 GtkRange *widget;
488dd4c4
JD
4227 gpointer data;
4228{
4229 struct scroll_bar *bar = (struct scroll_bar *) data;
4230 gdouble previous;
4231 gdouble position;
4232 gdouble *p;
4233 int diff;
177c0ea7 4234
488dd4c4 4235 int part = -1, whole = 0, portion = 0;
f979dc05 4236 GtkAdjustment *adj = GTK_ADJUSTMENT (gtk_range_get_adjustment (widget));
177c0ea7 4237
488dd4c4
JD
4238 position = gtk_adjustment_get_value (adj);
4239
4240 p = g_object_get_data (G_OBJECT (widget), XG_LAST_SB_DATA);
4241 if (! p)
4242 {
4243 p = (gdouble*) xmalloc (sizeof (gdouble));
4244 *p = XG_SB_MIN;
4245 g_object_set_data (G_OBJECT (widget), XG_LAST_SB_DATA, p);
4246 }
4247
4248 previous = *p;
4249 *p = position;
4250
fecad3f6
JD
4251 if (xg_ignore_gtk_scrollbar) return;
4252
488dd4c4 4253 diff = (int) (position - previous);
177c0ea7 4254
488dd4c4
JD
4255 if (diff == (int) adj->step_increment)
4256 {
4257 part = scroll_bar_down_arrow;
4258 bar->dragging = Qnil;
4259 }
4260 else if (-diff == (int) adj->step_increment)
4261 {
4262 part = scroll_bar_up_arrow;
4263 bar->dragging = Qnil;
4264 }
4265 else if (diff == (int) adj->page_increment)
4266 {
4267 part = scroll_bar_below_handle;
4268 bar->dragging = Qnil;
4269 }
4270 else if (-diff == (int) adj->page_increment)
4271 {
4272 part = scroll_bar_above_handle;
4273 bar->dragging = Qnil;
4274 }
4275 else
4276 {
4277 part = scroll_bar_handle;
4278 whole = adj->upper - adj->page_size;
17097258
JD
4279 portion = min ((int)position, whole);
4280 bar->dragging = make_number ((int)portion);
488dd4c4 4281 }
177c0ea7 4282
488dd4c4 4283 if (part >= 0)
82ead4b1 4284 {
488dd4c4
JD
4285 window_being_scrolled = bar->window;
4286 last_scroll_bar_part = part;
4287 x_send_scroll_bar_event (bar->window, part, portion, whole);
4288 }
4289}
06a2c219 4290
488dd4c4 4291#else /* not USE_GTK */
06a2c219 4292
ec18280f 4293/* Xaw scroll bar callback. Invoked when the thumb is dragged.
06a2c219
GM
4294 WIDGET is the scroll bar widget. CLIENT_DATA is a pointer to the
4295 scroll bar struct. CALL_DATA is a pointer to a float saying where
4296 the thumb is. */
4297
4298static void
ec18280f 4299xaw_jump_callback (widget, client_data, call_data)
06a2c219
GM
4300 Widget widget;
4301 XtPointer client_data, call_data;
4302{
4303 struct scroll_bar *bar = (struct scroll_bar *) client_data;
4304 float top = *(float *) call_data;
4305 float shown;
ec18280f
SM
4306 int whole, portion, height;
4307 int part;
06a2c219
GM
4308
4309 /* Get the size of the thumb, a value between 0 and 1. */
4310 BLOCK_INPUT;
ec18280f 4311 XtVaGetValues (widget, XtNshown, &shown, XtNheight, &height, NULL);
06a2c219
GM
4312 UNBLOCK_INPUT;
4313
4314 whole = 10000000;
4315 portion = shown < 1 ? top * whole : 0;
06a2c219 4316
ec18280f
SM
4317 if (shown < 1 && (abs (top + shown - 1) < 1.0/height))
4318 /* Some derivatives of Xaw refuse to shrink the thumb when you reach
4319 the bottom, so we force the scrolling whenever we see that we're
4320 too close to the bottom (in x_set_toolkit_scroll_bar_thumb
4321 we try to ensure that we always stay two pixels away from the
4322 bottom). */
06a2c219
GM
4323 part = scroll_bar_down_arrow;
4324 else
4325 part = scroll_bar_handle;
4326
4327 window_being_scrolled = bar->window;
4328 bar->dragging = make_number (portion);
4329 last_scroll_bar_part = part;
4330 x_send_scroll_bar_event (bar->window, part, portion, whole);
4331}
4332
4333
ec18280f
SM
4334/* Xaw scroll bar callback. Invoked for incremental scrolling.,
4335 i.e. line or page up or down. WIDGET is the Xaw scroll bar
06a2c219
GM
4336 widget. CLIENT_DATA is a pointer to the scroll_bar structure for
4337 the scroll bar. CALL_DATA is an integer specifying the action that
dbd4b028 4338 has taken place. Its magnitude is in the range 0..height of the
06a2c219
GM
4339 scroll bar. Negative values mean scroll towards buffer start.
4340 Values < height of scroll bar mean line-wise movement. */
4341
4342static void
ec18280f 4343xaw_scroll_callback (widget, client_data, call_data)
06a2c219
GM
4344 Widget widget;
4345 XtPointer client_data, call_data;
4346{
4347 struct scroll_bar *bar = (struct scroll_bar *) client_data;
560d7ceb
DL
4348 /* The position really is stored cast to a pointer. */
4349 int position = (long) call_data;
06a2c219
GM
4350 Dimension height;
4351 int part;
4352
4353 /* Get the height of the scroll bar. */
4354 BLOCK_INPUT;
4355 XtVaGetValues (widget, XtNheight, &height, NULL);
4356 UNBLOCK_INPUT;
4357
ec18280f
SM
4358 if (abs (position) >= height)
4359 part = (position < 0) ? scroll_bar_above_handle : scroll_bar_below_handle;
4360
4361 /* If Xaw3d was compiled with ARROW_SCROLLBAR,
4362 it maps line-movement to call_data = max(5, height/20). */
4363 else if (xaw3d_arrow_scroll && abs (position) <= max (5, height / 20))
4364 part = (position < 0) ? scroll_bar_up_arrow : scroll_bar_down_arrow;
06a2c219 4365 else
ec18280f 4366 part = scroll_bar_move_ratio;
06a2c219
GM
4367
4368 window_being_scrolled = bar->window;
4369 bar->dragging = Qnil;
4370 last_scroll_bar_part = part;
ec18280f 4371 x_send_scroll_bar_event (bar->window, part, position, height);
06a2c219
GM
4372}
4373
488dd4c4 4374#endif /* not USE_GTK */
06a2c219
GM
4375#endif /* not USE_MOTIF */
4376
488dd4c4 4377#define SCROLL_BAR_NAME "verticalScrollBar"
06a2c219
GM
4378
4379/* Create the widget for scroll bar BAR on frame F. Record the widget
4380 and X window of the scroll bar in BAR. */
4381
488dd4c4
JD
4382#ifdef USE_GTK
4383static void
4384x_create_toolkit_scroll_bar (f, bar)
4385 struct frame *f;
4386 struct scroll_bar *bar;
4387{
4388 char *scroll_bar_name = SCROLL_BAR_NAME;
4389
4390 BLOCK_INPUT;
4391 xg_create_scroll_bar (f, bar, G_CALLBACK (xg_scroll_callback),
4392 scroll_bar_name);
4393 UNBLOCK_INPUT;
4394}
4395
4396#else /* not USE_GTK */
4397
06a2c219
GM
4398static void
4399x_create_toolkit_scroll_bar (f, bar)
4400 struct frame *f;
4401 struct scroll_bar *bar;
4402{
4403 Window xwindow;
4404 Widget widget;
4405 Arg av[20];
4406 int ac = 0;
488dd4c4 4407 char *scroll_bar_name = SCROLL_BAR_NAME;
06a2c219
GM
4408 unsigned long pixel;
4409
4410 BLOCK_INPUT;
4411
4412#ifdef USE_MOTIF
06a2c219
GM
4413 /* Set resources. Create the widget. */
4414 XtSetArg (av[ac], XtNmappedWhenManaged, False); ++ac;
3c671a56 4415 XtSetArg (av[ac], XmNminimum, 0); ++ac;
06a2c219
GM
4416 XtSetArg (av[ac], XmNmaximum, XM_SB_MAX); ++ac;
4417 XtSetArg (av[ac], XmNorientation, XmVERTICAL); ++ac;
4418 XtSetArg (av[ac], XmNprocessingDirection, XmMAX_ON_BOTTOM), ++ac;
4419 XtSetArg (av[ac], XmNincrement, 1); ++ac;
4420 XtSetArg (av[ac], XmNpageIncrement, 1); ++ac;
4421
4422 pixel = f->output_data.x->scroll_bar_foreground_pixel;
4423 if (pixel != -1)
4424 {
4425 XtSetArg (av[ac], XmNforeground, pixel);
4426 ++ac;
4427 }
7d0393cf 4428
06a2c219
GM
4429 pixel = f->output_data.x->scroll_bar_background_pixel;
4430 if (pixel != -1)
4431 {
4432 XtSetArg (av[ac], XmNbackground, pixel);
4433 ++ac;
4434 }
7d0393cf 4435
06a2c219
GM
4436 widget = XmCreateScrollBar (f->output_data.x->edit_widget,
4437 scroll_bar_name, av, ac);
4438
4439 /* Add one callback for everything that can happen. */
4440 XtAddCallback (widget, XmNdecrementCallback, xm_scroll_callback,
4441 (XtPointer) bar);
4442 XtAddCallback (widget, XmNdragCallback, xm_scroll_callback,
4443 (XtPointer) bar);
4444 XtAddCallback (widget, XmNincrementCallback, xm_scroll_callback,
4445 (XtPointer) bar);
4446 XtAddCallback (widget, XmNpageDecrementCallback, xm_scroll_callback,
4447 (XtPointer) bar);
4448 XtAddCallback (widget, XmNpageIncrementCallback, xm_scroll_callback,
4449 (XtPointer) bar);
4450 XtAddCallback (widget, XmNtoBottomCallback, xm_scroll_callback,
4451 (XtPointer) bar);
4452 XtAddCallback (widget, XmNtoTopCallback, xm_scroll_callback,
4453 (XtPointer) bar);
7d0393cf 4454
06a2c219
GM
4455 /* Realize the widget. Only after that is the X window created. */
4456 XtRealizeWidget (widget);
4457
4458 /* Set the cursor to an arrow. I didn't find a resource to do that.
4459 And I'm wondering why it hasn't an arrow cursor by default. */
4460 XDefineCursor (XtDisplay (widget), XtWindow (widget),
4461 f->output_data.x->nontext_cursor);
7d0393cf 4462
ec18280f 4463#else /* !USE_MOTIF i.e. use Xaw */
7d0393cf 4464
06a2c219
GM
4465 /* Set resources. Create the widget. The background of the
4466 Xaw3d scroll bar widget is a little bit light for my taste.
4467 We don't alter it here to let users change it according
4468 to their taste with `emacs*verticalScrollBar.background: xxx'. */
4469 XtSetArg (av[ac], XtNmappedWhenManaged, False); ++ac;
4470 XtSetArg (av[ac], XtNorientation, XtorientVertical); ++ac;
ec18280f
SM
4471 /* For smoother scrolling with Xaw3d -sm */
4472 /* XtSetArg (av[ac], XtNpickTop, True); ++ac; */
7d0393cf 4473
06a2c219
GM
4474 pixel = f->output_data.x->scroll_bar_foreground_pixel;
4475 if (pixel != -1)
4476 {
4477 XtSetArg (av[ac], XtNforeground, pixel);
4478 ++ac;
4479 }
7d0393cf 4480
06a2c219
GM
4481 pixel = f->output_data.x->scroll_bar_background_pixel;
4482 if (pixel != -1)
4483 {
4484 XtSetArg (av[ac], XtNbackground, pixel);
4485 ++ac;
4486 }
7c1bef7a
MB
4487
4488 /* Top/bottom shadow colors. */
4489
4490 /* Allocate them, if necessary. */
4491 if (f->output_data.x->scroll_bar_top_shadow_pixel == -1)
4492 {
4493 pixel = f->output_data.x->scroll_bar_background_pixel;
4494 if (!x_alloc_lighter_color (f, FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f),
4495 &pixel, 1.2, 0x8000))
4496 pixel = -1;
4497 f->output_data.x->scroll_bar_top_shadow_pixel = pixel;
4498 }
4499 if (f->output_data.x->scroll_bar_bottom_shadow_pixel == -1)
4500 {
4501 pixel = f->output_data.x->scroll_bar_background_pixel;
4502 if (!x_alloc_lighter_color (f, FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f),
4503 &pixel, 0.6, 0x4000))
4504 pixel = -1;
4505 f->output_data.x->scroll_bar_bottom_shadow_pixel = pixel;
4506 }
4507
6ca53601 4508#ifdef XtNbeNiceToColormap
7c1bef7a
MB
4509 /* Tell the toolkit about them. */
4510 if (f->output_data.x->scroll_bar_top_shadow_pixel == -1
4511 || f->output_data.x->scroll_bar_bottom_shadow_pixel == -1)
4512 /* We tried to allocate a color for the top/bottom shadow, and
4513 failed, so tell Xaw3d to use dithering instead. */
4514 {
4515 XtSetArg (av[ac], XtNbeNiceToColormap, True);
4516 ++ac;
4517 }
4518 else
4519 /* Tell what colors Xaw3d should use for the top/bottom shadow, to
4520 be more consistent with other emacs 3d colors, and since Xaw3d is
4521 not good at dealing with allocation failure. */
4522 {
4523 /* This tells Xaw3d to use real colors instead of dithering for
4524 the shadows. */
4525 XtSetArg (av[ac], XtNbeNiceToColormap, False);
4526 ++ac;
4527
4528 /* Specify the colors. */
4529 pixel = f->output_data.x->scroll_bar_top_shadow_pixel;
4530 if (pixel != -1)
4531 {
6ca53601 4532 XtSetArg (av[ac], XtNtopShadowPixel, pixel);
7c1bef7a
MB
4533 ++ac;
4534 }
4535 pixel = f->output_data.x->scroll_bar_bottom_shadow_pixel;
4536 if (pixel != -1)
4537 {
6ca53601 4538 XtSetArg (av[ac], XtNbottomShadowPixel, pixel);
7c1bef7a
MB
4539 ++ac;
4540 }
4541 }
6ca53601 4542#endif
7c1bef7a 4543
06a2c219
GM
4544 widget = XtCreateWidget (scroll_bar_name, scrollbarWidgetClass,
4545 f->output_data.x->edit_widget, av, ac);
ec18280f
SM
4546
4547 {
4548 char *initial = "";
4549 char *val = initial;
4550 XtVaGetValues (widget, XtNscrollVCursor, (XtPointer) &val,
9cfc7da4
SM
4551#ifdef XtNarrowScrollbars
4552 XtNarrowScrollbars, (XtPointer) &xaw3d_arrow_scroll,
4553#endif
ec18280f 4554 XtNpickTop, (XtPointer) &xaw3d_pick_top, NULL);
9cfc7da4 4555 if (xaw3d_arrow_scroll || val == initial)
ec18280f
SM
4556 { /* ARROW_SCROLL */
4557 xaw3d_arrow_scroll = True;
9cfc7da4 4558 /* Isn't that just a personal preference ? --Stef */
ec18280f
SM
4559 XtVaSetValues (widget, XtNcursorName, "top_left_arrow", NULL);
4560 }
4561 }
7d0393cf 4562
06a2c219 4563 /* Define callbacks. */
ec18280f
SM
4564 XtAddCallback (widget, XtNjumpProc, xaw_jump_callback, (XtPointer) bar);
4565 XtAddCallback (widget, XtNscrollProc, xaw_scroll_callback,
06a2c219 4566 (XtPointer) bar);
7d0393cf 4567
06a2c219
GM
4568 /* Realize the widget. Only after that is the X window created. */
4569 XtRealizeWidget (widget);
7d0393cf 4570
ec18280f 4571#endif /* !USE_MOTIF */
06a2c219 4572
2a51c026 4573 /* Install an action hook that lets us detect when the user
06a2c219
GM
4574 finishes interacting with a scroll bar. */
4575 if (action_hook_id == 0)
4576 action_hook_id = XtAppAddActionHook (Xt_app_con, xt_action_hook, 0);
7d0393cf 4577
06a2c219
GM
4578 /* Remember X window and widget in the scroll bar vector. */
4579 SET_SCROLL_BAR_X_WIDGET (bar, widget);
4580 xwindow = XtWindow (widget);
4581 SET_SCROLL_BAR_X_WINDOW (bar, xwindow);
4582
4583 UNBLOCK_INPUT;
4584}
488dd4c4 4585#endif /* not USE_GTK */
06a2c219
GM
4586
4587
4588/* Set the thumb size and position of scroll bar BAR. We are currently
4589 displaying PORTION out of a whole WHOLE, and our position POSITION. */
4590
488dd4c4
JD
4591#ifdef USE_GTK
4592static void
4593x_set_toolkit_scroll_bar_thumb (bar, portion, position, whole)
4594 struct scroll_bar *bar;
4595 int portion, position, whole;
4596{
4597 xg_set_toolkit_scroll_bar_thumb (bar, portion, position, whole);
4598}
4599
4600#else /* not USE_GTK */
06a2c219
GM
4601static void
4602x_set_toolkit_scroll_bar_thumb (bar, portion, position, whole)
4603 struct scroll_bar *bar;
4604 int portion, position, whole;
f451eb13 4605{
e83dc917
GM
4606 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
4607 Widget widget = SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f), bar);
06a2c219 4608 float top, shown;
f451eb13 4609
6f2a7a68
SM
4610 BLOCK_INPUT;
4611
4612#ifdef USE_MOTIF
4613
4614 /* We use an estimate of 30 chars per line rather than the real
4615 `portion' value. This has the disadvantage that the thumb size
4616 is not very representative, but it makes our life a lot easier.
4617 Otherwise, we have to constantly adjust the thumb size, which
4618 we can't always do quickly enough: while dragging, the size of
4619 the thumb might prevent the user from dragging the thumb all the
4620 way to the end. but Motif and some versions of Xaw3d don't allow
4621 updating the thumb size while dragging. Also, even if we can update
4622 its size, the update will often happen too late.
4623 If you don't believe it, check out revision 1.650 of xterm.c to see
4624 what hoops we were going through and the still poor behavior we got. */
0899d58c 4625 portion = WINDOW_TOTAL_LINES (XWINDOW (bar->window)) * 30;
6f2a7a68
SM
4626 /* When the thumb is at the bottom, position == whole.
4627 So we need to increase `whole' to make space for the thumb. */
4628 whole += portion;
4629
4630 if (whole <= 0)
06a2c219
GM
4631 top = 0, shown = 1;
4632 else
f451eb13 4633 {
06a2c219
GM
4634 top = (float) position / whole;
4635 shown = (float) portion / whole;
4636 }
f451eb13 4637
6f2a7a68
SM
4638 if (NILP (bar->dragging))
4639 {
4640 int size, value;
06a2c219 4641
6f2a7a68
SM
4642 /* Slider size. Must be in the range [1 .. MAX - MIN] where MAX
4643 is the scroll bar's maximum and MIN is the scroll bar's minimum
4644 value. */
3c671a56
SM
4645 size = shown * XM_SB_MAX;
4646 size = min (size, XM_SB_MAX);
6f2a7a68 4647 size = max (size, 1);
06a2c219 4648
6f2a7a68 4649 /* Position. Must be in the range [MIN .. MAX - SLIDER_SIZE]. */
3c671a56 4650 value = top * XM_SB_MAX;
6f2a7a68 4651 value = min (value, XM_SB_MAX - size);
7d0393cf 4652
06a2c219 4653 XmScrollBarSetValues (widget, value, size, 0, 0, False);
6f2a7a68 4654 }
ec18280f 4655#else /* !USE_MOTIF i.e. use Xaw */
6f2a7a68
SM
4656
4657 if (whole == 0)
4658 top = 0, shown = 1;
4659 else
4660 {
4661 top = (float) position / whole;
4662 shown = (float) portion / whole;
4663 }
4664
06a2c219 4665 {
ec18280f
SM
4666 float old_top, old_shown;
4667 Dimension height;
4668 XtVaGetValues (widget,
4669 XtNtopOfThumb, &old_top,
4670 XtNshown, &old_shown,
4671 XtNheight, &height,
4672 NULL);
4673
4674 /* Massage the top+shown values. */
4675 if (NILP (bar->dragging) || last_scroll_bar_part == scroll_bar_down_arrow)
4676 top = max (0, min (1, top));
4677 else
4678 top = old_top;
4679 /* Keep two pixels available for moving the thumb down. */
4680 shown = max (0, min (1 - top - (2.0 / height), shown));
06a2c219
GM
4681
4682 /* If the call to XawScrollbarSetThumb below doesn't seem to work,
4683 check that your system's configuration file contains a define
4684 for `NARROWPROTO'. See s/freebsd.h for an example. */
ec18280f 4685 if (top != old_top || shown != old_shown)
eb393530 4686 {
ec18280f 4687 if (NILP (bar->dragging))
eb393530 4688 XawScrollbarSetThumb (widget, top, shown);
06a2c219
GM
4689 else
4690 {
ec18280f
SM
4691 /* Try to make the scrolling a tad smoother. */
4692 if (!xaw3d_pick_top)
4693 shown = min (shown, old_shown);
7d0393cf 4694
ec18280f 4695 XawScrollbarSetThumb (widget, top, shown);
06a2c219 4696 }
06a2c219
GM
4697 }
4698 }
ec18280f 4699#endif /* !USE_MOTIF */
06a2c219
GM
4700
4701 UNBLOCK_INPUT;
f451eb13 4702}
488dd4c4 4703#endif /* not USE_GTK */
f451eb13 4704
06a2c219
GM
4705#endif /* USE_TOOLKIT_SCROLL_BARS */
4706
4707
4708\f
4709/************************************************************************
4710 Scroll bars, general
4711 ************************************************************************/
7d0393cf 4712
06a2c219
GM
4713/* Create a scroll bar and return the scroll bar vector for it. W is
4714 the Emacs window on which to create the scroll bar. TOP, LEFT,
f7ccf929 4715 WIDTH and HEIGHT are the pixel coordinates and dimensions of the
06a2c219
GM
4716 scroll bar. */
4717
ab648270 4718static struct scroll_bar *
06a2c219
GM
4719x_scroll_bar_create (w, top, left, width, height)
4720 struct window *w;
f451eb13
JB
4721 int top, left, width, height;
4722{
06a2c219 4723 struct frame *f = XFRAME (w->frame);
334208b7
RS
4724 struct scroll_bar *bar
4725 = XSCROLL_BAR (Fmake_vector (make_number (SCROLL_BAR_VEC_SIZE), Qnil));
f451eb13
JB
4726
4727 BLOCK_INPUT;
4728
eccc05db 4729#ifdef USE_TOOLKIT_SCROLL_BARS
06a2c219
GM
4730 x_create_toolkit_scroll_bar (f, bar);
4731#else /* not USE_TOOLKIT_SCROLL_BARS */
f451eb13
JB
4732 {
4733 XSetWindowAttributes a;
4734 unsigned long mask;
5c187dee 4735 Window window;
06a2c219
GM
4736
4737 a.background_pixel = f->output_data.x->scroll_bar_background_pixel;
4738 if (a.background_pixel == -1)
4739 a.background_pixel = f->output_data.x->background_pixel;
7d0393cf 4740
12ba150f 4741 a.event_mask = (ButtonPressMask | ButtonReleaseMask
9a572e2a 4742 | ButtonMotionMask | PointerMotionHintMask
12ba150f 4743 | ExposureMask);
7a13e894 4744 a.cursor = FRAME_X_DISPLAY_INFO (f)->vertical_scroll_bar_cursor;
f451eb13 4745
dbc4e1c1 4746 mask = (CWBackPixel | CWEventMask | CWCursor);
f451eb13 4747
06a2c219
GM
4748 /* Clear the area of W that will serve as a scroll bar. This is
4749 for the case that a window has been split horizontally. In
4750 this case, no clear_frame is generated to reduce flickering. */
7b49b9d2
GM
4751 if (width > 0 && height > 0)
4752 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
4753 left, top, width,
4754 window_box_height (w), False);
06a2c219
GM
4755
4756 window = XCreateWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
4757 /* Position and size of scroll bar. */
4758 left + VERTICAL_SCROLL_BAR_WIDTH_TRIM,
4759 top,
4760 width - VERTICAL_SCROLL_BAR_WIDTH_TRIM * 2,
4761 height,
4762 /* Border width, depth, class, and visual. */
4763 0,
4764 CopyFromParent,
4765 CopyFromParent,
4766 CopyFromParent,
4767 /* Attributes. */
4768 mask, &a);
4769 SET_SCROLL_BAR_X_WINDOW (bar, window);
f451eb13 4770 }
06a2c219 4771#endif /* not USE_TOOLKIT_SCROLL_BARS */
f451eb13 4772
06a2c219 4773 XSETWINDOW (bar->window, w);
e0c1aef2
KH
4774 XSETINT (bar->top, top);
4775 XSETINT (bar->left, left);
4776 XSETINT (bar->width, width);
4777 XSETINT (bar->height, height);
4778 XSETINT (bar->start, 0);
4779 XSETINT (bar->end, 0);
12ba150f 4780 bar->dragging = Qnil;
f451eb13
JB
4781
4782 /* Add bar to its frame's list of scroll bars. */
334208b7 4783 bar->next = FRAME_SCROLL_BARS (f);
12ba150f 4784 bar->prev = Qnil;
334208b7 4785 XSETVECTOR (FRAME_SCROLL_BARS (f), bar);
06a2c219 4786 if (!NILP (bar->next))
e0c1aef2 4787 XSETVECTOR (XSCROLL_BAR (bar->next)->prev, bar);
f451eb13 4788
06a2c219 4789 /* Map the window/widget. */
eccc05db 4790#ifdef USE_TOOLKIT_SCROLL_BARS
f964b4d7 4791 {
488dd4c4
JD
4792#ifdef USE_GTK
4793 xg_update_scrollbar_pos (f,
4794 SCROLL_BAR_X_WINDOW (bar),
4795 top,
4796 left + VERTICAL_SCROLL_BAR_WIDTH_TRIM,
4797 width - VERTICAL_SCROLL_BAR_WIDTH_TRIM * 2,
6bd8015d 4798 max (height, 1));
488dd4c4
JD
4799 xg_show_scroll_bar (SCROLL_BAR_X_WINDOW (bar));
4800#else /* not USE_GTK */
f964b4d7
GM
4801 Widget scroll_bar = SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f), bar);
4802 XtConfigureWidget (scroll_bar,
4803 left + VERTICAL_SCROLL_BAR_WIDTH_TRIM,
4804 top,
4805 width - VERTICAL_SCROLL_BAR_WIDTH_TRIM * 2,
4806 max (height, 1), 0);
4807 XtMapWidget (scroll_bar);
488dd4c4 4808#endif /* not USE_GTK */
f964b4d7 4809 }
06a2c219 4810#else /* not USE_TOOLKIT_SCROLL_BARS */
7f9c7f94 4811 XMapRaised (FRAME_X_DISPLAY (f), SCROLL_BAR_X_WINDOW (bar));
06a2c219 4812#endif /* not USE_TOOLKIT_SCROLL_BARS */
f451eb13
JB
4813
4814 UNBLOCK_INPUT;
12ba150f 4815 return bar;
f451eb13
JB
4816}
4817
06a2c219 4818
12ba150f 4819/* Draw BAR's handle in the proper position.
7d0393cf 4820
12ba150f
JB
4821 If the handle is already drawn from START to END, don't bother
4822 redrawing it, unless REBUILD is non-zero; in that case, always
4823 redraw it. (REBUILD is handy for drawing the handle after expose
58769bee 4824 events.)
12ba150f
JB
4825
4826 Normally, we want to constrain the start and end of the handle to
06a2c219
GM
4827 fit inside its rectangle, but if the user is dragging the scroll
4828 bar handle, we want to let them drag it down all the way, so that
4829 the bar's top is as far down as it goes; otherwise, there's no way
4830 to move to the very end of the buffer. */
4831
5c187dee
GM
4832#ifndef USE_TOOLKIT_SCROLL_BARS
4833
f451eb13 4834static void
ab648270
JB
4835x_scroll_bar_set_handle (bar, start, end, rebuild)
4836 struct scroll_bar *bar;
f451eb13 4837 int start, end;
12ba150f 4838 int rebuild;
f451eb13 4839{
12ba150f 4840 int dragging = ! NILP (bar->dragging);
ab648270 4841 Window w = SCROLL_BAR_X_WINDOW (bar);
334208b7 4842 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
7556890b 4843 GC gc = f->output_data.x->normal_gc;
12ba150f
JB
4844
4845 /* If the display is already accurate, do nothing. */
4846 if (! rebuild
4847 && start == XINT (bar->start)
4848 && end == XINT (bar->end))
4849 return;
4850
f451eb13
JB
4851 BLOCK_INPUT;
4852
4853 {
d9cdbb3d
RS
4854 int inside_width = VERTICAL_SCROLL_BAR_INSIDE_WIDTH (f, XINT (bar->width));
4855 int inside_height = VERTICAL_SCROLL_BAR_INSIDE_HEIGHT (f, XINT (bar->height));
4856 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, XINT (bar->height));
f451eb13
JB
4857
4858 /* Make sure the values are reasonable, and try to preserve
4859 the distance between start and end. */
12ba150f
JB
4860 {
4861 int length = end - start;
4862
4863 if (start < 0)
4864 start = 0;
4865 else if (start > top_range)
4866 start = top_range;
4867 end = start + length;
4868
4869 if (end < start)
4870 end = start;
4871 else if (end > top_range && ! dragging)
4872 end = top_range;
4873 }
f451eb13 4874
ab648270 4875 /* Store the adjusted setting in the scroll bar. */
e0c1aef2
KH
4876 XSETINT (bar->start, start);
4877 XSETINT (bar->end, end);
f451eb13 4878
12ba150f
JB
4879 /* Clip the end position, just for display. */
4880 if (end > top_range)
4881 end = top_range;
f451eb13 4882
ab648270 4883 /* Draw bottom positions VERTICAL_SCROLL_BAR_MIN_HANDLE pixels
12ba150f
JB
4884 below top positions, to make sure the handle is always at least
4885 that many pixels tall. */
ab648270 4886 end += VERTICAL_SCROLL_BAR_MIN_HANDLE;
f451eb13 4887
12ba150f
JB
4888 /* Draw the empty space above the handle. Note that we can't clear
4889 zero-height areas; that means "clear to end of window." */
4890 if (0 < start)
c5e6e06b
GM
4891 x_clear_area (FRAME_X_DISPLAY (f), w,
4892 /* x, y, width, height, and exposures. */
4893 VERTICAL_SCROLL_BAR_LEFT_BORDER,
4894 VERTICAL_SCROLL_BAR_TOP_BORDER,
4895 inside_width, start,
4896 False);
f451eb13 4897
06a2c219
GM
4898 /* Change to proper foreground color if one is specified. */
4899 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
4900 XSetForeground (FRAME_X_DISPLAY (f), gc,
4901 f->output_data.x->scroll_bar_foreground_pixel);
4902
12ba150f 4903 /* Draw the handle itself. */
334208b7 4904 XFillRectangle (FRAME_X_DISPLAY (f), w, gc,
12ba150f 4905 /* x, y, width, height */
ab648270
JB
4906 VERTICAL_SCROLL_BAR_LEFT_BORDER,
4907 VERTICAL_SCROLL_BAR_TOP_BORDER + start,
12ba150f 4908 inside_width, end - start);
f451eb13 4909
06a2c219
GM
4910 /* Restore the foreground color of the GC if we changed it above. */
4911 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
4912 XSetForeground (FRAME_X_DISPLAY (f), gc,
4913 f->output_data.x->foreground_pixel);
f451eb13 4914
12ba150f
JB
4915 /* Draw the empty space below the handle. Note that we can't
4916 clear zero-height areas; that means "clear to end of window." */
4917 if (end < inside_height)
c5e6e06b
GM
4918 x_clear_area (FRAME_X_DISPLAY (f), w,
4919 /* x, y, width, height, and exposures. */
4920 VERTICAL_SCROLL_BAR_LEFT_BORDER,
4921 VERTICAL_SCROLL_BAR_TOP_BORDER + end,
4922 inside_width, inside_height - end,
4923 False);
f451eb13 4924
f451eb13
JB
4925 }
4926
f451eb13
JB
4927 UNBLOCK_INPUT;
4928}
4929
5c187dee 4930#endif /* !USE_TOOLKIT_SCROLL_BARS */
f451eb13 4931
06a2c219
GM
4932/* Destroy scroll bar BAR, and set its Emacs window's scroll bar to
4933 nil. */
58769bee 4934
12ba150f 4935static void
ab648270
JB
4936x_scroll_bar_remove (bar)
4937 struct scroll_bar *bar;
12ba150f 4938{
e83dc917 4939 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
12ba150f
JB
4940 BLOCK_INPUT;
4941
eccc05db 4942#ifdef USE_TOOLKIT_SCROLL_BARS
488dd4c4
JD
4943#ifdef USE_GTK
4944 xg_remove_scroll_bar (f, SCROLL_BAR_X_WINDOW (bar));
4945#else /* not USE_GTK */
e83dc917 4946 XtDestroyWidget (SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f), bar));
488dd4c4 4947#endif /* not USE_GTK */
e83dc917
GM
4948#else
4949 XDestroyWindow (FRAME_X_DISPLAY (f), SCROLL_BAR_X_WINDOW (bar));
4950#endif
7d0393cf 4951
ab648270
JB
4952 /* Disassociate this scroll bar from its window. */
4953 XWINDOW (bar->window)->vertical_scroll_bar = Qnil;
12ba150f
JB
4954
4955 UNBLOCK_INPUT;
4956}
4957
06a2c219 4958
12ba150f
JB
4959/* Set the handle of the vertical scroll bar for WINDOW to indicate
4960 that we are displaying PORTION characters out of a total of WHOLE
ab648270 4961 characters, starting at POSITION. If WINDOW has no scroll bar,
12ba150f 4962 create one. */
06a2c219 4963
12ba150f 4964static void
06a2c219
GM
4965XTset_vertical_scroll_bar (w, portion, whole, position)
4966 struct window *w;
f451eb13
JB
4967 int portion, whole, position;
4968{
06a2c219 4969 struct frame *f = XFRAME (w->frame);
ab648270 4970 struct scroll_bar *bar;
3c6ede7b 4971 int top, height, left, sb_left, width, sb_width;
0899d58c 4972 int window_y, window_height;
06a2c219 4973
3c6ede7b 4974 /* Get window dimensions. */
0899d58c 4975 window_box (w, -1, 0, &window_y, 0, &window_height);
3c6ede7b 4976 top = window_y;
0899d58c 4977 width = WINDOW_CONFIG_SCROLL_BAR_COLS (w) * FRAME_COLUMN_WIDTH (f);
3c6ede7b 4978 height = window_height;
06a2c219 4979
3c6ede7b 4980 /* Compute the left edge of the scroll bar area. */
0899d58c 4981 left = WINDOW_SCROLL_BAR_AREA_X (w);
3c6ede7b
GM
4982
4983 /* Compute the width of the scroll bar which might be less than
4984 the width of the area reserved for the scroll bar. */
0899d58c
KS
4985 if (WINDOW_CONFIG_SCROLL_BAR_WIDTH (w) > 0)
4986 sb_width = WINDOW_CONFIG_SCROLL_BAR_WIDTH (w);
06a2c219 4987 else
3c6ede7b 4988 sb_width = width;
12ba150f 4989
3c6ede7b
GM
4990 /* Compute the left edge of the scroll bar. */
4991#ifdef USE_TOOLKIT_SCROLL_BARS
0899d58c 4992 if (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w))
13fcb889
KS
4993 sb_left = (left +
4994 (WINDOW_RIGHTMOST_P (w)
4995 ? width - sb_width - (width - sb_width) / 2
4996 : 0));
3c6ede7b 4997 else
13fcb889
KS
4998 sb_left = (left +
4999 (WINDOW_LEFTMOST_P (w)
5000 ? (width - sb_width) / 2
5001 : width - sb_width));
3c6ede7b 5002#else
0899d58c 5003 if (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w))
7d0393cf 5004 sb_left = left + width - sb_width;
3c6ede7b
GM
5005 else
5006 sb_left = left;
5007#endif
7d0393cf 5008
ab648270 5009 /* Does the scroll bar exist yet? */
06a2c219 5010 if (NILP (w->vertical_scroll_bar))
3c6ede7b 5011 {
7b49b9d2 5012 if (width > 0 && height > 0)
b547b6e8
GM
5013 {
5014 BLOCK_INPUT;
5015 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5016 left, top, width, height, False);
5017 UNBLOCK_INPUT;
5018 }
7d0393cf 5019
3c6ede7b
GM
5020 bar = x_scroll_bar_create (w, top, sb_left, sb_width, height);
5021 }
f451eb13 5022 else
12ba150f
JB
5023 {
5024 /* It may just need to be moved and resized. */
06a2c219 5025 unsigned int mask = 0;
7d0393cf 5026
06a2c219
GM
5027 bar = XSCROLL_BAR (w->vertical_scroll_bar);
5028
5029 BLOCK_INPUT;
5030
3c6ede7b 5031 if (sb_left != XINT (bar->left))
06a2c219 5032 mask |= CWX;
3c6ede7b 5033 if (top != XINT (bar->top))
06a2c219 5034 mask |= CWY;
3c6ede7b 5035 if (sb_width != XINT (bar->width))
06a2c219 5036 mask |= CWWidth;
7d0393cf 5037 if (height != XINT (bar->height))
06a2c219 5038 mask |= CWHeight;
7d0393cf 5039
06a2c219 5040#ifdef USE_TOOLKIT_SCROLL_BARS
fe6f39d9 5041
06a2c219
GM
5042 /* Move/size the scroll bar widget. */
5043 if (mask)
13fcb889
KS
5044 {
5045 /* Since toolkit scroll bars are smaller than the space reserved
5046 for them on the frame, we have to clear "under" them. */
5047 if (width > 0 && height > 0)
5048 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5049 left, top, width, height, False);
6bd8015d
JD
5050#ifdef USE_GTK
5051 xg_update_scrollbar_pos (f,
5052 SCROLL_BAR_X_WINDOW (bar),
5053 top,
5054 sb_left + VERTICAL_SCROLL_BAR_WIDTH_TRIM,
5055 sb_width - VERTICAL_SCROLL_BAR_WIDTH_TRIM *2,
5056 max (height, 1));
5057#else /* not USE_GTK */
488dd4c4
JD
5058 XtConfigureWidget (SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f), bar),
5059 sb_left + VERTICAL_SCROLL_BAR_WIDTH_TRIM,
5060 top,
5061 sb_width - VERTICAL_SCROLL_BAR_WIDTH_TRIM * 2,
5062 max (height, 1), 0);
488dd4c4 5063#endif /* not USE_GTK */
6bd8015d 5064 }
06a2c219 5065#else /* not USE_TOOLKIT_SCROLL_BARS */
7d0393cf 5066
357e7376
GM
5067 /* Clear areas not covered by the scroll bar because of
5068 VERTICAL_SCROLL_BAR_WIDTH_TRIM. */
e1f6572f
RS
5069 if (VERTICAL_SCROLL_BAR_WIDTH_TRIM)
5070 {
c5e6e06b
GM
5071 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5072 left, top, VERTICAL_SCROLL_BAR_WIDTH_TRIM,
5073 height, False);
5074 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5075 left + width - VERTICAL_SCROLL_BAR_WIDTH_TRIM,
5076 top, VERTICAL_SCROLL_BAR_WIDTH_TRIM,
5077 height, False);
e1f6572f 5078 }
357e7376
GM
5079
5080 /* Clear areas not covered by the scroll bar because it's not as
f7ccf929 5081 wide as the area reserved for it. This makes sure a
357e7376
GM
5082 previous mode line display is cleared after C-x 2 C-x 1, for
5083 example. */
5084 {
0899d58c 5085 int area_width = WINDOW_CONFIG_SCROLL_BAR_COLS (w) * FRAME_COLUMN_WIDTH (f);
357e7376 5086 int rest = area_width - sb_width;
38d2af0c
GM
5087 if (rest > 0 && height > 0)
5088 {
0899d58c 5089 if (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w))
38d2af0c
GM
5090 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5091 left + area_width - rest, top,
5092 rest, height, False);
5093 else
5094 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
5095 left, top, rest, height, False);
5096 }
357e7376 5097 }
7d0393cf 5098
06a2c219
GM
5099 /* Move/size the scroll bar window. */
5100 if (mask)
5101 {
5102 XWindowChanges wc;
7d0393cf 5103
3c6ede7b
GM
5104 wc.x = sb_left + VERTICAL_SCROLL_BAR_WIDTH_TRIM;
5105 wc.y = top;
5106 wc.width = sb_width - VERTICAL_SCROLL_BAR_WIDTH_TRIM * 2;
5107 wc.height = height;
06a2c219
GM
5108 XConfigureWindow (FRAME_X_DISPLAY (f), SCROLL_BAR_X_WINDOW (bar),
5109 mask, &wc);
5110 }
7d0393cf 5111
06a2c219
GM
5112#endif /* not USE_TOOLKIT_SCROLL_BARS */
5113
5114 /* Remember new settings. */
3c6ede7b
GM
5115 XSETINT (bar->left, sb_left);
5116 XSETINT (bar->top, top);
5117 XSETINT (bar->width, sb_width);
5118 XSETINT (bar->height, height);
7d0393cf 5119
06a2c219 5120 UNBLOCK_INPUT;
12ba150f 5121 }
f451eb13 5122
eccc05db 5123#ifdef USE_TOOLKIT_SCROLL_BARS
06a2c219
GM
5124 x_set_toolkit_scroll_bar_thumb (bar, portion, position, whole);
5125#else /* not USE_TOOLKIT_SCROLL_BARS */
ab648270 5126 /* Set the scroll bar's current state, unless we're currently being
f451eb13 5127 dragged. */
12ba150f 5128 if (NILP (bar->dragging))
f451eb13 5129 {
92857db0 5130 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, height);
f451eb13 5131
12ba150f 5132 if (whole == 0)
ab648270 5133 x_scroll_bar_set_handle (bar, 0, top_range, 0);
12ba150f
JB
5134 else
5135 {
43f868f5
JB
5136 int start = ((double) position * top_range) / whole;
5137 int end = ((double) (position + portion) * top_range) / whole;
ab648270 5138 x_scroll_bar_set_handle (bar, start, end, 0);
12ba150f 5139 }
f451eb13 5140 }
06a2c219 5141#endif /* not USE_TOOLKIT_SCROLL_BARS */
f451eb13 5142
06a2c219 5143 XSETVECTOR (w->vertical_scroll_bar, bar);
f451eb13
JB
5144}
5145
12ba150f 5146
f451eb13 5147/* The following three hooks are used when we're doing a thorough
ab648270 5148 redisplay of the frame. We don't explicitly know which scroll bars
f451eb13 5149 are going to be deleted, because keeping track of when windows go
12ba150f
JB
5150 away is a real pain - "Can you say set-window-configuration, boys
5151 and girls?" Instead, we just assert at the beginning of redisplay
ab648270 5152 that *all* scroll bars are to be removed, and then save a scroll bar
12ba150f 5153 from the fiery pit when we actually redisplay its window. */
f451eb13 5154
ab648270
JB
5155/* Arrange for all scroll bars on FRAME to be removed at the next call
5156 to `*judge_scroll_bars_hook'. A scroll bar may be spared if
06a2c219
GM
5157 `*redeem_scroll_bar_hook' is applied to its window before the judgment. */
5158
58769bee 5159static void
ab648270 5160XTcondemn_scroll_bars (frame)
f451eb13
JB
5161 FRAME_PTR frame;
5162{
f9e24cb9
RS
5163 /* Transfer all the scroll bars to FRAME_CONDEMNED_SCROLL_BARS. */
5164 while (! NILP (FRAME_SCROLL_BARS (frame)))
5165 {
5166 Lisp_Object bar;
5167 bar = FRAME_SCROLL_BARS (frame);
5168 FRAME_SCROLL_BARS (frame) = XSCROLL_BAR (bar)->next;
5169 XSCROLL_BAR (bar)->next = FRAME_CONDEMNED_SCROLL_BARS (frame);
5170 XSCROLL_BAR (bar)->prev = Qnil;
5171 if (! NILP (FRAME_CONDEMNED_SCROLL_BARS (frame)))
5172 XSCROLL_BAR (FRAME_CONDEMNED_SCROLL_BARS (frame))->prev = bar;
5173 FRAME_CONDEMNED_SCROLL_BARS (frame) = bar;
5174 }
f451eb13
JB
5175}
5176
fa2dfc30 5177
06a2c219 5178/* Un-mark WINDOW's scroll bar for deletion in this judgment cycle.
12ba150f 5179 Note that WINDOW isn't necessarily condemned at all. */
fa2dfc30 5180
f451eb13 5181static void
ab648270 5182XTredeem_scroll_bar (window)
12ba150f 5183 struct window *window;
f451eb13 5184{
ab648270 5185 struct scroll_bar *bar;
fa2dfc30 5186 struct frame *f;
12ba150f 5187
ab648270
JB
5188 /* We can't redeem this window's scroll bar if it doesn't have one. */
5189 if (NILP (window->vertical_scroll_bar))
12ba150f
JB
5190 abort ();
5191
ab648270 5192 bar = XSCROLL_BAR (window->vertical_scroll_bar);
12ba150f
JB
5193
5194 /* Unlink it from the condemned list. */
fa2dfc30
GM
5195 f = XFRAME (WINDOW_FRAME (window));
5196 if (NILP (bar->prev))
5197 {
5198 /* If the prev pointer is nil, it must be the first in one of
5199 the lists. */
5200 if (EQ (FRAME_SCROLL_BARS (f), window->vertical_scroll_bar))
5201 /* It's not condemned. Everything's fine. */
5202 return;
5203 else if (EQ (FRAME_CONDEMNED_SCROLL_BARS (f),
5204 window->vertical_scroll_bar))
5205 FRAME_CONDEMNED_SCROLL_BARS (f) = bar->next;
5206 else
5207 /* If its prev pointer is nil, it must be at the front of
5208 one or the other! */
5209 abort ();
5210 }
5211 else
5212 XSCROLL_BAR (bar->prev)->next = bar->next;
12ba150f 5213
fa2dfc30
GM
5214 if (! NILP (bar->next))
5215 XSCROLL_BAR (bar->next)->prev = bar->prev;
12ba150f 5216
fa2dfc30
GM
5217 bar->next = FRAME_SCROLL_BARS (f);
5218 bar->prev = Qnil;
5219 XSETVECTOR (FRAME_SCROLL_BARS (f), bar);
5220 if (! NILP (bar->next))
5221 XSETVECTOR (XSCROLL_BAR (bar->next)->prev, bar);
f451eb13
JB
5222}
5223
ab648270
JB
5224/* Remove all scroll bars on FRAME that haven't been saved since the
5225 last call to `*condemn_scroll_bars_hook'. */
06a2c219 5226
f451eb13 5227static void
ab648270 5228XTjudge_scroll_bars (f)
12ba150f 5229 FRAME_PTR f;
f451eb13 5230{
12ba150f 5231 Lisp_Object bar, next;
f451eb13 5232
ab648270 5233 bar = FRAME_CONDEMNED_SCROLL_BARS (f);
cf7cb199
JB
5234
5235 /* Clear out the condemned list now so we won't try to process any
ab648270
JB
5236 more events on the hapless scroll bars. */
5237 FRAME_CONDEMNED_SCROLL_BARS (f) = Qnil;
cf7cb199
JB
5238
5239 for (; ! NILP (bar); bar = next)
f451eb13 5240 {
ab648270 5241 struct scroll_bar *b = XSCROLL_BAR (bar);
12ba150f 5242
ab648270 5243 x_scroll_bar_remove (b);
12ba150f
JB
5244
5245 next = b->next;
5246 b->next = b->prev = Qnil;
f451eb13 5247 }
12ba150f 5248
ab648270 5249 /* Now there should be no references to the condemned scroll bars,
12ba150f 5250 and they should get garbage-collected. */
f451eb13
JB
5251}
5252
5253
3c671a56 5254#ifndef USE_TOOLKIT_SCROLL_BARS
06a2c219
GM
5255/* Handle an Expose or GraphicsExpose event on a scroll bar. This
5256 is a no-op when using toolkit scroll bars.
ab648270
JB
5257
5258 This may be called from a signal handler, so we have to ignore GC
5259 mark bits. */
06a2c219 5260
f451eb13 5261static void
ab648270
JB
5262x_scroll_bar_expose (bar, event)
5263 struct scroll_bar *bar;
f451eb13
JB
5264 XEvent *event;
5265{
ab648270 5266 Window w = SCROLL_BAR_X_WINDOW (bar);
334208b7 5267 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
7556890b 5268 GC gc = f->output_data.x->normal_gc;
3cbd2e0b 5269 int width_trim = VERTICAL_SCROLL_BAR_WIDTH_TRIM;
12ba150f 5270
f451eb13
JB
5271 BLOCK_INPUT;
5272
ab648270 5273 x_scroll_bar_set_handle (bar, XINT (bar->start), XINT (bar->end), 1);
f451eb13 5274
06a2c219 5275 /* Draw a one-pixel border just inside the edges of the scroll bar. */
334208b7 5276 XDrawRectangle (FRAME_X_DISPLAY (f), w, gc,
f451eb13
JB
5277
5278 /* x, y, width, height */
d9cdbb3d 5279 0, 0,
3cbd2e0b 5280 XINT (bar->width) - 1 - width_trim - width_trim,
d9cdbb3d 5281 XINT (bar->height) - 1);
7d0393cf 5282
f451eb13 5283 UNBLOCK_INPUT;
06a2c219 5284
f451eb13 5285}
3c671a56 5286#endif /* not USE_TOOLKIT_SCROLL_BARS */
f451eb13 5287
ab648270 5288/* Handle a mouse click on the scroll bar BAR. If *EMACS_EVENT's kind
3b8f9651 5289 is set to something other than NO_EVENT, it is enqueued.
ab648270
JB
5290
5291 This may be called from a signal handler, so we have to ignore GC
5292 mark bits. */
06a2c219 5293
5c187dee 5294
f451eb13 5295static void
ab648270
JB
5296x_scroll_bar_handle_click (bar, event, emacs_event)
5297 struct scroll_bar *bar;
f451eb13
JB
5298 XEvent *event;
5299 struct input_event *emacs_event;
5300{
0299d313 5301 if (! GC_WINDOWP (bar->window))
12ba150f
JB
5302 abort ();
5303
3b8f9651 5304 emacs_event->kind = SCROLL_BAR_CLICK_EVENT;
69388238 5305 emacs_event->code = event->xbutton.button - Button1;
0299d313 5306 emacs_event->modifiers
7d0393cf 5307 = (x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO
0299d313
RS
5308 (XFRAME (WINDOW_FRAME (XWINDOW (bar->window)))),
5309 event->xbutton.state)
5310 | (event->type == ButtonRelease
5311 ? up_modifier
5312 : down_modifier));
12ba150f 5313 emacs_event->frame_or_window = bar->window;
0f8aabe9 5314 emacs_event->arg = Qnil;
f451eb13 5315 emacs_event->timestamp = event->xbutton.time;
12ba150f 5316 {
06a2c219 5317#if 0
d9cdbb3d 5318 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
0299d313 5319 int internal_height
d9cdbb3d 5320 = VERTICAL_SCROLL_BAR_INSIDE_HEIGHT (f, XINT (bar->height));
06a2c219 5321#endif
0299d313 5322 int top_range
d9cdbb3d 5323 = VERTICAL_SCROLL_BAR_TOP_RANGE (f, XINT (bar->height));
ab648270 5324 int y = event->xbutton.y - VERTICAL_SCROLL_BAR_TOP_BORDER;
12ba150f
JB
5325
5326 if (y < 0) y = 0;
5327 if (y > top_range) y = top_range;
5328
5329 if (y < XINT (bar->start))
ab648270
JB
5330 emacs_event->part = scroll_bar_above_handle;
5331 else if (y < XINT (bar->end) + VERTICAL_SCROLL_BAR_MIN_HANDLE)
5332 emacs_event->part = scroll_bar_handle;
12ba150f 5333 else
ab648270 5334 emacs_event->part = scroll_bar_below_handle;
929787e1
JB
5335
5336 /* Just because the user has clicked on the handle doesn't mean
5116f055
JB
5337 they want to drag it. Lisp code needs to be able to decide
5338 whether or not we're dragging. */
929787e1 5339#if 0
12ba150f
JB
5340 /* If the user has just clicked on the handle, record where they're
5341 holding it. */
5342 if (event->type == ButtonPress
ab648270 5343 && emacs_event->part == scroll_bar_handle)
e0c1aef2 5344 XSETINT (bar->dragging, y - XINT (bar->start));
929787e1 5345#endif
12ba150f 5346
257f40f2 5347#ifndef USE_TOOLKIT_SCROLL_BARS
12ba150f
JB
5348 /* If the user has released the handle, set it to its final position. */
5349 if (event->type == ButtonRelease
5350 && ! NILP (bar->dragging))
5351 {
5352 int new_start = y - XINT (bar->dragging);
5353 int new_end = new_start + (XINT (bar->end) - XINT (bar->start));
f451eb13 5354
ab648270 5355 x_scroll_bar_set_handle (bar, new_start, new_end, 0);
12ba150f
JB
5356 bar->dragging = Qnil;
5357 }
257f40f2 5358#endif
f451eb13 5359
5116f055
JB
5360 /* Same deal here as the other #if 0. */
5361#if 0
58769bee 5362 /* Clicks on the handle are always reported as occurring at the top of
12ba150f 5363 the handle. */
ab648270 5364 if (emacs_event->part == scroll_bar_handle)
12ba150f
JB
5365 emacs_event->x = bar->start;
5366 else
e0c1aef2 5367 XSETINT (emacs_event->x, y);
5116f055 5368#else
e0c1aef2 5369 XSETINT (emacs_event->x, y);
5116f055 5370#endif
f451eb13 5371
e0c1aef2 5372 XSETINT (emacs_event->y, top_range);
12ba150f
JB
5373 }
5374}
f451eb13 5375
257f40f2
JD
5376#ifndef USE_TOOLKIT_SCROLL_BARS
5377
ab648270
JB
5378/* Handle some mouse motion while someone is dragging the scroll bar.
5379
5380 This may be called from a signal handler, so we have to ignore GC
5381 mark bits. */
06a2c219 5382
f451eb13 5383static void
ab648270
JB
5384x_scroll_bar_note_movement (bar, event)
5385 struct scroll_bar *bar;
f451eb13
JB
5386 XEvent *event;
5387{
39d8bb4d
KH
5388 FRAME_PTR f = XFRAME (XWINDOW (bar->window)->frame);
5389
f451eb13
JB
5390 last_mouse_movement_time = event->xmotion.time;
5391
39d8bb4d 5392 f->mouse_moved = 1;
e0c1aef2 5393 XSETVECTOR (last_mouse_scroll_bar, bar);
f451eb13
JB
5394
5395 /* If we're dragging the bar, display it. */
ab648270 5396 if (! GC_NILP (bar->dragging))
f451eb13
JB
5397 {
5398 /* Where should the handle be now? */
12ba150f 5399 int new_start = event->xmotion.y - XINT (bar->dragging);
f451eb13 5400
12ba150f 5401 if (new_start != XINT (bar->start))
f451eb13 5402 {
12ba150f 5403 int new_end = new_start + (XINT (bar->end) - XINT (bar->start));
58769bee 5404
ab648270 5405 x_scroll_bar_set_handle (bar, new_start, new_end, 0);
f451eb13
JB
5406 }
5407 }
f451eb13
JB
5408}
5409
5c187dee
GM
5410#endif /* !USE_TOOLKIT_SCROLL_BARS */
5411
12ba150f 5412/* Return information to the user about the current position of the mouse
ab648270 5413 on the scroll bar. */
06a2c219 5414
12ba150f 5415static void
334208b7
RS
5416x_scroll_bar_report_motion (fp, bar_window, part, x, y, time)
5417 FRAME_PTR *fp;
12ba150f 5418 Lisp_Object *bar_window;
ab648270 5419 enum scroll_bar_part *part;
12ba150f
JB
5420 Lisp_Object *x, *y;
5421 unsigned long *time;
5422{
ab648270 5423 struct scroll_bar *bar = XSCROLL_BAR (last_mouse_scroll_bar);
334208b7
RS
5424 Window w = SCROLL_BAR_X_WINDOW (bar);
5425 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
12ba150f 5426 int win_x, win_y;
559cb2fb
JB
5427 Window dummy_window;
5428 int dummy_coord;
5429 unsigned int dummy_mask;
12ba150f 5430
cf7cb199
JB
5431 BLOCK_INPUT;
5432
ab648270 5433 /* Get the mouse's position relative to the scroll bar window, and
12ba150f 5434 report that. */
334208b7 5435 if (! XQueryPointer (FRAME_X_DISPLAY (f), w,
12ba150f 5436
559cb2fb
JB
5437 /* Root, child, root x and root y. */
5438 &dummy_window, &dummy_window,
5439 &dummy_coord, &dummy_coord,
12ba150f 5440
559cb2fb
JB
5441 /* Position relative to scroll bar. */
5442 &win_x, &win_y,
12ba150f 5443
559cb2fb
JB
5444 /* Mouse buttons and modifier keys. */
5445 &dummy_mask))
7a13e894 5446 ;
559cb2fb
JB
5447 else
5448 {
06a2c219 5449#if 0
559cb2fb 5450 int inside_height
d9cdbb3d 5451 = VERTICAL_SCROLL_BAR_INSIDE_HEIGHT (f, XINT (bar->height));
06a2c219 5452#endif
559cb2fb 5453 int top_range
d9cdbb3d 5454 = VERTICAL_SCROLL_BAR_TOP_RANGE (f, XINT (bar->height));
559cb2fb
JB
5455
5456 win_y -= VERTICAL_SCROLL_BAR_TOP_BORDER;
5457
5458 if (! NILP (bar->dragging))
5459 win_y -= XINT (bar->dragging);
5460
5461 if (win_y < 0)
5462 win_y = 0;
5463 if (win_y > top_range)
5464 win_y = top_range;
5465
334208b7 5466 *fp = f;
7a13e894 5467 *bar_window = bar->window;
559cb2fb
JB
5468
5469 if (! NILP (bar->dragging))
5470 *part = scroll_bar_handle;
5471 else if (win_y < XINT (bar->start))
5472 *part = scroll_bar_above_handle;
5473 else if (win_y < XINT (bar->end) + VERTICAL_SCROLL_BAR_MIN_HANDLE)
5474 *part = scroll_bar_handle;
5475 else
5476 *part = scroll_bar_below_handle;
12ba150f 5477
e0c1aef2
KH
5478 XSETINT (*x, win_y);
5479 XSETINT (*y, top_range);
12ba150f 5480
39d8bb4d 5481 f->mouse_moved = 0;
559cb2fb
JB
5482 last_mouse_scroll_bar = Qnil;
5483 }
12ba150f 5484
559cb2fb 5485 *time = last_mouse_movement_time;
cf7cb199 5486
cf7cb199 5487 UNBLOCK_INPUT;
12ba150f
JB
5488}
5489
f451eb13 5490
dbc4e1c1 5491/* The screen has been cleared so we may have changed foreground or
ab648270
JB
5492 background colors, and the scroll bars may need to be redrawn.
5493 Clear out the scroll bars, and ask for expose events, so we can
dbc4e1c1
JB
5494 redraw them. */
5495
dfcf069d 5496void
ab648270 5497x_scroll_bar_clear (f)
dbc4e1c1
JB
5498 FRAME_PTR f;
5499{
06a2c219 5500#ifndef USE_TOOLKIT_SCROLL_BARS
dbc4e1c1
JB
5501 Lisp_Object bar;
5502
b80c363e
RS
5503 /* We can have scroll bars even if this is 0,
5504 if we just turned off scroll bar mode.
5505 But in that case we should not clear them. */
5506 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
5507 for (bar = FRAME_SCROLL_BARS (f); VECTORP (bar);
5508 bar = XSCROLL_BAR (bar)->next)
c5e6e06b
GM
5509 XClearArea (FRAME_X_DISPLAY (f),
5510 SCROLL_BAR_X_WINDOW (XSCROLL_BAR (bar)),
b80c363e 5511 0, 0, 0, 0, True);
06a2c219 5512#endif /* not USE_TOOLKIT_SCROLL_BARS */
dbc4e1c1
JB
5513}
5514
09756a85 5515\f
f451eb13 5516/* The main X event-reading loop - XTread_socket. */
dc6f92b8 5517
042c33d3 5518#if 0
06a2c219 5519/* Time stamp of enter window event. This is only used by XTread_socket,
dc6f92b8
JB
5520 but we have to put it out here, since static variables within functions
5521 sometimes don't work. */
06a2c219 5522
dc6f92b8 5523static Time enter_timestamp;
042c33d3 5524#endif
dc6f92b8 5525
11edeb03 5526/* This holds the state XLookupString needs to implement dead keys
58769bee 5527 and other tricks known as "compose processing". _X Window System_
11edeb03
JB
5528 says that a portable program can't use this, but Stephen Gildea assures
5529 me that letting the compiler initialize it to zeros will work okay.
5530
5531 This must be defined outside of XTread_socket, for the same reasons
f7d40b3b 5532 given for enter_timestamp, above. */
06a2c219 5533
11edeb03
JB
5534static XComposeStatus compose_status;
5535
10e6549c
RS
5536/* Record the last 100 characters stored
5537 to help debug the loss-of-chars-during-GC problem. */
06a2c219 5538
2224b905
RS
5539static int temp_index;
5540static short temp_buffer[100];
10e6549c 5541
89079179
KS
5542#define STORE_KEYSYM_FOR_DEBUG(keysym) \
5543 if (temp_index == sizeof temp_buffer / sizeof (short)) \
5544 temp_index = 0; \
5545 temp_buffer[temp_index++] = (keysym)
5546
7a13e894
RS
5547/* Set this to nonzero to fake an "X I/O error"
5548 on a particular display. */
06a2c219 5549
7a13e894
RS
5550struct x_display_info *XTread_socket_fake_io_error;
5551
2224b905
RS
5552/* When we find no input here, we occasionally do a no-op command
5553 to verify that the X server is still running and we can still talk with it.
5554 We try all the open displays, one by one.
5555 This variable is used for cycling thru the displays. */
06a2c219 5556
2224b905
RS
5557static struct x_display_info *next_noop_dpyinfo;
5558
06a2c219
GM
5559#define SET_SAVED_MENU_EVENT(size) \
5560 do \
5561 { \
5562 if (f->output_data.x->saved_menu_event == 0) \
5563 f->output_data.x->saved_menu_event \
5564 = (XEvent *) xmalloc (sizeof (XEvent)); \
5565 bcopy (&event, f->output_data.x->saved_menu_event, size); \
9b516537
AS
5566 inev.ie.kind = MENU_BAR_ACTIVATE_EVENT; \
5567 XSETFRAME (inev.ie.frame_or_window, f); \
06a2c219
GM
5568 } \
5569 while (0)
5570
8805890a 5571#define SET_SAVED_BUTTON_EVENT SET_SAVED_MENU_EVENT (sizeof (XButtonEvent))
06a2c219 5572#define SET_SAVED_KEY_EVENT SET_SAVED_MENU_EVENT (sizeof (XKeyEvent))
8805890a 5573
dc6f92b8 5574
bf338245
JD
5575enum
5576{
5577 X_EVENT_NORMAL,
5578 X_EVENT_GOTO_OUT,
5579 X_EVENT_DROP
5580};
dc6f92b8 5581
1fcfb866
JD
5582/* Filter events for the current X input method.
5583 DPYINFO is the display this event is for.
5584 EVENT is the X event to filter.
5585
5586 Returns non-zero if the event was filtered, caller shall not process
5587 this event further.
5588 Returns zero if event is wasn't filtered. */
177c0ea7 5589
1fcfb866
JD
5590#ifdef HAVE_X_I18N
5591static int
5592x_filter_event (dpyinfo, event)
5593 struct x_display_info *dpyinfo;
5594 XEvent *event;
5595{
5596 /* XFilterEvent returns non-zero if the input method has
5597 consumed the event. We pass the frame's X window to
5598 XFilterEvent because that's the one for which the IC
5599 was created. */
5600
5601 struct frame *f1 = x_any_window_to_frame (dpyinfo,
5602 event->xclient.window);
5603
5604 return XFilterEvent (event, f1 ? FRAME_X_WINDOW (f1) : None);
5605}
5606#endif
5607
488dd4c4 5608#ifdef USE_GTK
488dd4c4
JD
5609static int current_count;
5610static int current_finish;
89079179 5611static struct input_event *current_hold_quit;
488dd4c4
JD
5612
5613/* This is the filter function invoked by the GTK event loop.
5614 It is invoked before the XEvent is translated to a GdkEvent,
89079179 5615 so we have a chance to act on the event before GTK. */
488dd4c4
JD
5616static GdkFilterReturn
5617event_handler_gdk (gxev, ev, data)
5618 GdkXEvent *gxev;
5619 GdkEvent *ev;
5620 gpointer data;
5621{
810f2256 5622 XEvent *xev = (XEvent *) gxev;
488dd4c4 5623
89079179 5624 if (current_count >= 0)
1fcfb866 5625 {
810f2256
JD
5626 struct x_display_info *dpyinfo;
5627
5628 dpyinfo = x_display_info_for_display (xev->xany.display);
5629
1fcfb866
JD
5630#ifdef HAVE_X_I18N
5631 /* Filter events for the current X input method.
5632 GTK calls XFilterEvent but not for key press and release,
5633 so we do it here. */
5634 if (xev->type == KeyPress || xev->type == KeyRelease)
810f2256 5635 if (dpyinfo && x_filter_event (dpyinfo, xev))
1fcfb866
JD
5636 return GDK_FILTER_REMOVE;
5637#endif
810f2256
JD
5638
5639 if (! dpyinfo)
5640 current_finish = X_EVENT_NORMAL;
5641 else
89079179
KS
5642 {
5643 current_count +=
0666d82c 5644 handle_one_xevent (dpyinfo, xev, &current_finish,
89079179
KS
5645 current_hold_quit);
5646 }
1fcfb866 5647 }
488dd4c4 5648 else
810f2256 5649 current_finish = x_dispatch_event (xev, xev->xany.display);
488dd4c4
JD
5650
5651 if (current_finish == X_EVENT_GOTO_OUT || current_finish == X_EVENT_DROP)
5652 return GDK_FILTER_REMOVE;
5653
5654 return GDK_FILTER_CONTINUE;
5655}
5656#endif /* USE_GTK */
5657
5658
bf338245 5659/* Handles the XEvent EVENT on display DPYINFO.
177c0ea7 5660
bf338245
JD
5661 *FINISH is X_EVENT_GOTO_OUT if caller should stop reading events.
5662 *FINISH is zero if caller should continue reading events.
5663 *FINISH is X_EVENT_DROP if event should not be passed to the toolkit.
5664
bf338245 5665 We return the number of characters stored into the buffer. */
177c0ea7 5666
6f2a7a68 5667static int
89079179 5668handle_one_xevent (dpyinfo, eventp, finish, hold_quit)
bf338245
JD
5669 struct x_display_info *dpyinfo;
5670 XEvent *eventp;
bf338245 5671 int *finish;
89079179 5672 struct input_event *hold_quit;
dc6f92b8 5673{
9b516537
AS
5674 union {
5675 struct input_event ie;
5676 struct selection_input_event sie;
5677 } inev;
dc6f92b8 5678 int count = 0;
89079179 5679 int do_help = 0;
dc6f92b8 5680 int nbytes = 0;
f676886a 5681 struct frame *f;
379b5ac0 5682 struct coding_system coding;
bf338245 5683 XEvent event = *eventp;
dc6f92b8 5684
bf338245 5685 *finish = X_EVENT_NORMAL;
177c0ea7 5686
9b516537
AS
5687 EVENT_INIT (inev.ie);
5688 inev.ie.kind = NO_EVENT;
5689 inev.ie.arg = Qnil;
89079179 5690
bf338245 5691 switch (event.type)
7a13e894 5692 {
bf338245
JD
5693 case ClientMessage:
5694 {
5695 if (event.xclient.message_type
5696 == dpyinfo->Xatom_wm_protocols
5697 && event.xclient.format == 32)
5698 {
5699 if (event.xclient.data.l[0]
5700 == dpyinfo->Xatom_wm_take_focus)
5701 {
5702 /* Use x_any_window_to_frame because this
5703 could be the shell widget window
5704 if the frame has no title bar. */
5705 f = x_any_window_to_frame (dpyinfo, event.xclient.window);
6c183ba5 5706#ifdef HAVE_X_I18N
bf338245
JD
5707 /* Not quite sure this is needed -pd */
5708 if (f && FRAME_XIC (f))
5709 XSetICFocus (FRAME_XIC (f));
6c183ba5 5710#endif
f1da8f06
GM
5711#if 0 /* Emacs sets WM hints whose `input' field is `true'. This
5712 instructs the WM to set the input focus automatically for
5713 Emacs with a call to XSetInputFocus. Setting WM_TAKE_FOCUS
5714 tells the WM to send us a ClientMessage WM_TAKE_FOCUS after
5715 it has set the focus. So, XSetInputFocus below is not
5716 needed.
5717
5718 The call to XSetInputFocus below has also caused trouble. In
5719 cases where the XSetInputFocus done by the WM and the one
5720 below are temporally close (on a fast machine), the call
5721 below can generate additional FocusIn events which confuse
5722 Emacs. */
7d0393cf 5723
bf338245
JD
5724 /* Since we set WM_TAKE_FOCUS, we must call
5725 XSetInputFocus explicitly. But not if f is null,
5726 since that might be an event for a deleted frame. */
5727 if (f)
5728 {
5729 Display *d = event.xclient.display;
5730 /* Catch and ignore errors, in case window has been
5731 iconified by a window manager such as GWM. */
9ba8e10d 5732 x_catch_errors (d);
bf338245
JD
5733 XSetInputFocus (d, event.xclient.window,
5734 /* The ICCCM says this is
5735 the only valid choice. */
5736 RevertToParent,
5737 event.xclient.data.l[1]);
5738 /* This is needed to detect the error
5739 if there is an error. */
5740 XSync (d, False);
4545fa20 5741 x_uncatch_errors ();
bf338245
JD
5742 }
5743 /* Not certain about handling scroll bars here */
f1da8f06 5744#endif /* 0 */
89079179 5745 goto done;
bf338245 5746 }
89079179
KS
5747
5748 if (event.xclient.data.l[0]
bf338245
JD
5749 == dpyinfo->Xatom_wm_save_yourself)
5750 {
5751 /* Save state modify the WM_COMMAND property to
5752 something which can reinstate us. This notifies
5753 the session manager, who's looking for such a
5754 PropertyNotify. Can restart processing when
5755 a keyboard or mouse event arrives. */
5756 /* If we have a session manager, don't set this.
5757 KDE will then start two Emacsen, one for the
5758 session manager and one for this. */
5f30b957 5759#ifdef HAVE_X_SM
89079179 5760 if (! x_session_have_connection ())
5f30b957 5761#endif
bf338245
JD
5762 {
5763 f = x_top_window_to_frame (dpyinfo,
5764 event.xclient.window);
5765 /* This is just so we only give real data once
5766 for a single Emacs process. */
5767 if (f == SELECTED_FRAME ())
5768 XSetCommand (FRAME_X_DISPLAY (f),
5769 event.xclient.window,
5770 initial_argv, initial_argc);
5771 else if (f)
5772 XSetCommand (FRAME_X_DISPLAY (f),
5773 event.xclient.window,
5774 0, 0);
5775 }
89079179 5776 goto done;
bf338245 5777 }
89079179
KS
5778
5779 if (event.xclient.data.l[0]
5780 == dpyinfo->Xatom_wm_delete_window)
bf338245 5781 {
89079179 5782 f = x_any_window_to_frame (dpyinfo,
bf338245 5783 event.xclient.window);
89079179
KS
5784 if (!f)
5785 goto OTHER; /* May be a dialog that is to be removed */
7a13e894 5786
9b516537
AS
5787 inev.ie.kind = DELETE_WINDOW_EVENT;
5788 XSETFRAME (inev.ie.frame_or_window, f);
89079179 5789 goto done;
bf338245 5790 }
89079179
KS
5791
5792 goto done;
bf338245 5793 }
89079179
KS
5794
5795 if (event.xclient.message_type
bf338245
JD
5796 == dpyinfo->Xatom_wm_configure_denied)
5797 {
89079179 5798 goto done;
bf338245 5799 }
89079179
KS
5800
5801 if (event.xclient.message_type
5802 == dpyinfo->Xatom_wm_window_moved)
bf338245
JD
5803 {
5804 int new_x, new_y;
89079179 5805 f = x_window_to_frame (dpyinfo, event.xclient.window);
bf338245
JD
5806
5807 new_x = event.xclient.data.s[0];
5808 new_y = event.xclient.data.s[1];
5809
5810 if (f)
5811 {
0899d58c
KS
5812 f->left_pos = new_x;
5813 f->top_pos = new_y;
bf338245 5814 }
89079179 5815 goto done;
bf338245 5816 }
89079179 5817
0fdff6bb 5818#ifdef HACK_EDITRES
89079179
KS
5819 if (event.xclient.message_type
5820 == dpyinfo->Xatom_editres)
bf338245 5821 {
89079179 5822 f = x_any_window_to_frame (dpyinfo, event.xclient.window);
79fb0ab7
JD
5823 if (f)
5824 _XEditResCheckMessages (f->output_data.x->widget, NULL,
5825 &event, NULL);
89079179 5826 goto done;
bf338245 5827 }
0fdff6bb 5828#endif /* HACK_EDITRES */
89079179
KS
5829
5830 if ((event.xclient.message_type
5831 == dpyinfo->Xatom_DONE)
5832 || (event.xclient.message_type
5833 == dpyinfo->Xatom_PAGE))
bf338245
JD
5834 {
5835 /* Ghostview job completed. Kill it. We could
5836 reply with "Next" if we received "Page", but we
5837 currently never do because we are interested in
5838 images, only, which should have 1 page. */
5839 Pixmap pixmap = (Pixmap) event.xclient.data.l[1];
89079179 5840 f = x_window_to_frame (dpyinfo, event.xclient.window);
fb6341e7
KS
5841 if (!f)
5842 goto OTHER;
bf338245
JD
5843 x_kill_gs_process (pixmap, f);
5844 expose_frame (f, 0, 0, 0, 0);
89079179 5845 goto done;
bf338245 5846 }
89079179 5847
06a2c219 5848#ifdef USE_TOOLKIT_SCROLL_BARS
bf338245
JD
5849 /* Scroll bar callbacks send a ClientMessage from which
5850 we construct an input_event. */
89079179
KS
5851 if (event.xclient.message_type
5852 == dpyinfo->Xatom_Scrollbar)
bf338245 5853 {
9b516537 5854 x_scroll_bar_to_input_event (&event, &inev.ie);
89079179
KS
5855 *finish = X_EVENT_GOTO_OUT;
5856 goto done;
bf338245 5857 }
06a2c219 5858#endif /* USE_TOOLKIT_SCROLL_BARS */
e69745bb 5859
89079179 5860 f = x_any_window_to_frame (dpyinfo, event.xclient.window);
89079179
KS
5861 if (!f)
5862 goto OTHER;
9b516537 5863 if (x_handle_dnd_message (f, &event.xclient, dpyinfo, &inev.ie))
89079179 5864 *finish = X_EVENT_DROP;
bf338245
JD
5865 }
5866 break;
dc6f92b8 5867
bf338245 5868 case SelectionNotify:
3afe33e7 5869#ifdef USE_X_TOOLKIT
bf338245
JD
5870 if (! x_window_to_frame (dpyinfo, event.xselection.requestor))
5871 goto OTHER;
3afe33e7 5872#endif /* not USE_X_TOOLKIT */
bf338245
JD
5873 x_handle_selection_notify (&event.xselection);
5874 break;
d56a553a 5875
bf338245 5876 case SelectionClear: /* Someone has grabbed ownership. */
3afe33e7 5877#ifdef USE_X_TOOLKIT
bf338245
JD
5878 if (! x_window_to_frame (dpyinfo, event.xselectionclear.window))
5879 goto OTHER;
3afe33e7 5880#endif /* USE_X_TOOLKIT */
bf338245
JD
5881 {
5882 XSelectionClearEvent *eventp = (XSelectionClearEvent *) &event;
d56a553a 5883
9b516537
AS
5884 inev.ie.kind = SELECTION_CLEAR_EVENT;
5885 SELECTION_EVENT_DISPLAY (&inev.sie) = eventp->display;
5886 SELECTION_EVENT_SELECTION (&inev.sie) = eventp->selection;
5887 SELECTION_EVENT_TIME (&inev.sie) = eventp->time;
5888 inev.ie.frame_or_window = Qnil;
bf338245
JD
5889 }
5890 break;
dc6f92b8 5891
bf338245 5892 case SelectionRequest: /* Someone wants our selection. */
3afe33e7 5893#ifdef USE_X_TOOLKIT
bf338245
JD
5894 if (!x_window_to_frame (dpyinfo, event.xselectionrequest.owner))
5895 goto OTHER;
3afe33e7 5896#endif /* USE_X_TOOLKIT */
958f04e8 5897 {
bf338245
JD
5898 XSelectionRequestEvent *eventp
5899 = (XSelectionRequestEvent *) &event;
5900
9b516537
AS
5901 inev.ie.kind = SELECTION_REQUEST_EVENT;
5902 SELECTION_EVENT_DISPLAY (&inev.sie) = eventp->display;
5903 SELECTION_EVENT_REQUESTOR (&inev.sie) = eventp->requestor;
5904 SELECTION_EVENT_SELECTION (&inev.sie) = eventp->selection;
5905 SELECTION_EVENT_TARGET (&inev.sie) = eventp->target;
5906 SELECTION_EVENT_PROPERTY (&inev.sie) = eventp->property;
5907 SELECTION_EVENT_TIME (&inev.sie) = eventp->time;
5908 inev.ie.frame_or_window = Qnil;
958f04e8 5909 }
bf338245 5910 break;
7a13e894 5911
bf338245 5912 case PropertyNotify:
1d2b2268
GM
5913#if 0 /* This is plain wrong. In the case that we are waiting for a
5914 PropertyNotify used as an ACK in incremental selection
5915 transfer, the property will be on the receiver's window. */
5916#if defined USE_X_TOOLKIT
bf338245
JD
5917 if (!x_any_window_to_frame (dpyinfo, event.xproperty.window))
5918 goto OTHER;
1d2b2268
GM
5919#endif
5920#endif
bf338245
JD
5921 x_handle_property_notify (&event.xproperty);
5922 goto OTHER;
dc6f92b8 5923
bf338245
JD
5924 case ReparentNotify:
5925 f = x_top_window_to_frame (dpyinfo, event.xreparent.window);
5926 if (f)
5927 {
5928 int x, y;
5929 f->output_data.x->parent_desc = event.xreparent.parent;
5930 x_real_positions (f, &x, &y);
0899d58c
KS
5931 f->left_pos = x;
5932 f->top_pos = y;
c1f0671a
JD
5933
5934 /* Perhaps reparented due to a WM restart. Reset this. */
5935 FRAME_X_DISPLAY_INFO (f)->wm_type = X_WMTYPE_UNKNOWN;
bf338245 5936 }
15213141 5937 goto OTHER;
3bd330d4 5938
bf338245
JD
5939 case Expose:
5940 f = x_window_to_frame (dpyinfo, event.xexpose.window);
5941 if (f)
5942 {
5943 x_check_fullscreen (f);
d0fa3e56 5944
42d02da0
JD
5945#ifdef USE_GTK
5946 /* This seems to be needed for GTK 2.6. */
5947 x_clear_area (event.xexpose.display,
5948 event.xexpose.window,
5949 event.xexpose.x, event.xexpose.y,
5950 event.xexpose.width, event.xexpose.height,
5951 FALSE);
5952#endif
bf338245
JD
5953 if (f->async_visible == 0)
5954 {
5955 f->async_visible = 1;
5956 f->async_iconified = 0;
5957 f->output_data.x->has_been_visible = 1;
5958 SET_FRAME_GARBAGED (f);
5959 }
5960 else
0899d58c
KS
5961 expose_frame (f,
5962 event.xexpose.x, event.xexpose.y,
bf338245
JD
5963 event.xexpose.width, event.xexpose.height);
5964 }
5965 else
5966 {
12949a7f 5967#ifndef USE_TOOLKIT_SCROLL_BARS
bf338245 5968 struct scroll_bar *bar;
12949a7f 5969#endif
01f67d2c 5970#if defined USE_LUCID
bf338245
JD
5971 /* Submenus of the Lucid menu bar aren't widgets
5972 themselves, so there's no way to dispatch events
5973 to them. Recognize this case separately. */
5974 {
5975 Widget widget
5976 = x_window_to_menu_bar (event.xexpose.window);
5977 if (widget)
5978 xlwmenu_redisplay (widget);
5979 }
01f67d2c
PJ
5980#endif /* USE_LUCID */
5981
06a2c219 5982#ifdef USE_TOOLKIT_SCROLL_BARS
bf338245
JD
5983 /* Dispatch event to the widget. */
5984 goto OTHER;
06a2c219 5985#else /* not USE_TOOLKIT_SCROLL_BARS */
810f2256
JD
5986 bar = x_window_to_scroll_bar (event.xexpose.display,
5987 event.xexpose.window);
58769bee 5988
bf338245
JD
5989 if (bar)
5990 x_scroll_bar_expose (bar, &event);
3afe33e7 5991#ifdef USE_X_TOOLKIT
bf338245
JD
5992 else
5993 goto OTHER;
3afe33e7 5994#endif /* USE_X_TOOLKIT */
06a2c219 5995#endif /* not USE_TOOLKIT_SCROLL_BARS */
bf338245
JD
5996 }
5997 break;
dc6f92b8 5998
bf338245
JD
5999 case GraphicsExpose: /* This occurs when an XCopyArea's
6000 source area was obscured or not
6001 available. */
6002 f = x_window_to_frame (dpyinfo, event.xgraphicsexpose.drawable);
6003 if (f)
6004 {
6005 expose_frame (f,
6006 event.xgraphicsexpose.x, event.xgraphicsexpose.y,
6007 event.xgraphicsexpose.width,
6008 event.xgraphicsexpose.height);
6009 }
3afe33e7 6010#ifdef USE_X_TOOLKIT
bf338245
JD
6011 else
6012 goto OTHER;
3afe33e7 6013#endif /* USE_X_TOOLKIT */
bf338245 6014 break;
7d0393cf 6015
bf338245
JD
6016 case NoExpose: /* This occurs when an XCopyArea's
6017 source area was completely
6018 available. */
6019 break;
dc6f92b8 6020
bf338245
JD
6021 case UnmapNotify:
6022 /* Redo the mouse-highlight after the tooltip has gone. */
6023 if (event.xmap.window == tip_window)
6024 {
6025 tip_window = 0;
6026 redo_mouse_highlight ();
6027 }
bddd097c 6028
bf338245
JD
6029 f = x_top_window_to_frame (dpyinfo, event.xunmap.window);
6030 if (f) /* F may no longer exist if
6031 the frame was deleted. */
6032 {
6033 /* While a frame is unmapped, display generation is
6034 disabled; you don't want to spend time updating a
6035 display that won't ever be seen. */
6036 f->async_visible = 0;
6037 /* We can't distinguish, from the event, whether the window
6038 has become iconified or invisible. So assume, if it
6039 was previously visible, than now it is iconified.
6040 But x_make_frame_invisible clears both
6041 the visible flag and the iconified flag;
6042 and that way, we know the window is not iconified now. */
6043 if (FRAME_VISIBLE_P (f) || FRAME_ICONIFIED_P (f))
6044 {
6045 f->async_iconified = 1;
dc6f92b8 6046
9b516537
AS
6047 inev.ie.kind = ICONIFY_EVENT;
6048 XSETFRAME (inev.ie.frame_or_window, f);
bf338245
JD
6049 }
6050 }
6051 goto OTHER;
6052
6053 case MapNotify:
6054 if (event.xmap.window == tip_window)
6055 /* The tooltip has been drawn already. Avoid
6056 the SET_FRAME_GARBAGED below. */
6057 goto OTHER;
6058
6059 /* We use x_top_window_to_frame because map events can
6060 come for sub-windows and they don't mean that the
6061 frame is visible. */
6062 f = x_top_window_to_frame (dpyinfo, event.xmap.window);
6063 if (f)
6064 {
d64b707c 6065 /* wait_reading_process_output will notice this and update
bf338245
JD
6066 the frame's display structures.
6067 If we where iconified, we should not set garbaged,
6068 because that stops redrawing on Expose events. This looks
6069 bad if we are called from a recursive event loop
6070 (x_dispatch_event), for example when a dialog is up. */
6071 if (! f->async_iconified)
6072 SET_FRAME_GARBAGED (f);
6073
6074 f->async_visible = 1;
6075 f->async_iconified = 0;
6076 f->output_data.x->has_been_visible = 1;
6077
6078 if (f->iconified)
6079 {
9b516537
AS
6080 inev.ie.kind = DEICONIFY_EVENT;
6081 XSETFRAME (inev.ie.frame_or_window, f);
bf338245
JD
6082 }
6083 else if (! NILP (Vframe_list)
6084 && ! NILP (XCDR (Vframe_list)))
6085 /* Force a redisplay sooner or later
6086 to update the frame titles
6087 in case this is the second frame. */
6088 record_asynch_buffer_change ();
6089 }
6090 goto OTHER;
2a793c0c 6091
bf338245 6092 case KeyPress:
2a793c0c 6093
0666d82c
KS
6094 ignore_next_mouse_click_timeout = 0;
6095
22174d10 6096#if defined (USE_X_TOOLKIT) || defined (USE_GTK)
bf338245 6097 /* Dispatch KeyPress events when in menu. */
488dd4c4 6098 if (popup_activated ())
bf338245 6099 goto OTHER;
22174d10 6100#endif
488dd4c4 6101
bf338245 6102 f = x_any_window_to_frame (dpyinfo, event.xkey.window);
f451eb13 6103
92daa848
RS
6104 /* If mouse-highlight is an integer, input clears out
6105 mouse highlighting. */
99c60e86 6106 if (!dpyinfo->mouse_face_hidden && INTEGERP (Vmouse_highlight)
295fa1d4
KS
6107 && (f == 0
6108 || !EQ (f->tool_bar_window, dpyinfo->mouse_face_window)))
bf338245 6109 {
bf338245 6110 clear_mouse_face (dpyinfo);
40d0e281 6111 dpyinfo->mouse_face_hidden = 1;
bf338245 6112 }
66301061 6113
eccc05db 6114#if defined USE_MOTIF && defined USE_TOOLKIT_SCROLL_BARS
bf338245
JD
6115 if (f == 0)
6116 {
6117 /* Scroll bars consume key events, but we want
6118 the keys to go to the scroll bar's frame. */
6119 Widget widget = XtWindowToWidget (dpyinfo->display,
6120 event.xkey.window);
6121 if (widget && XmIsScrollBar (widget))
6122 {
6123 widget = XtParent (widget);
6124 f = x_any_window_to_frame (dpyinfo, XtWindow (widget));
6125 }
6126 }
eccc05db 6127#endif /* USE_MOTIF and USE_TOOLKIT_SCROLL_BARS */
06a2c219 6128
bf338245
JD
6129 if (f != 0)
6130 {
6131 KeySym keysym, orig_keysym;
6132 /* al%imercury@uunet.uu.net says that making this 81
6133 instead of 80 fixed a bug whereby meta chars made
6134 his Emacs hang.
6135
6136 It seems that some version of XmbLookupString has
6137 a bug of not returning XBufferOverflow in
6138 status_return even if the input is too long to
6139 fit in 81 bytes. So, we must prepare sufficient
6140 bytes for copy_buffer. 513 bytes (256 chars for
6141 two-byte character set) seems to be a fairly good
6142 approximation. -- 2000.8.10 handa@etl.go.jp */
6143 unsigned char copy_buffer[513];
6144 unsigned char *copy_bufptr = copy_buffer;
6145 int copy_bufsiz = sizeof (copy_buffer);
6146 int modifiers;
6147 Lisp_Object coding_system = Qlatin_1;
89079179 6148 Lisp_Object c;
bf338245 6149
e8a84b6c
JD
6150#ifdef USE_GTK
6151 /* Don't pass keys to GTK. A Tab will shift focus to the
6152 tool bar in GTK 2.4. Keys will still go to menus and
6153 dialogs because in that case popup_activated is TRUE
6154 (see above). */
6155 *finish = X_EVENT_DROP;
6156#endif
6157
bf338245
JD
6158 event.xkey.state
6159 |= x_emacs_to_x_modifiers (FRAME_X_DISPLAY_INFO (f),
6160 extra_keyboard_modifiers);
6161 modifiers = event.xkey.state;
6162
6163 /* This will have to go some day... */
6164
6165 /* make_lispy_event turns chars into control chars.
6166 Don't do it here because XLookupString is too eager. */
6167 event.xkey.state &= ~ControlMask;
6168 event.xkey.state &= ~(dpyinfo->meta_mod_mask
6169 | dpyinfo->super_mod_mask
6170 | dpyinfo->hyper_mod_mask
6171 | dpyinfo->alt_mod_mask);
6172
6173 /* In case Meta is ComposeCharacter,
6174 clear its status. According to Markus Ehrnsperger
6175 Markus.Ehrnsperger@lehrstuhl-bross.physik.uni-muenchen.de
6176 this enables ComposeCharacter to work whether or
6177 not it is combined with Meta. */
6178 if (modifiers & dpyinfo->meta_mod_mask)
6179 bzero (&compose_status, sizeof (compose_status));
1cf4a0d1 6180
6c183ba5 6181#ifdef HAVE_X_I18N
bf338245
JD
6182 if (FRAME_XIC (f))
6183 {
6184 Status status_return;
6185
6186 coding_system = Vlocale_coding_system;
6187 nbytes = XmbLookupString (FRAME_XIC (f),
6188 &event.xkey, copy_bufptr,
6189 copy_bufsiz, &keysym,
6190 &status_return);
6191 if (status_return == XBufferOverflow)
6192 {
6193 copy_bufsiz = nbytes + 1;
fa8459a3 6194 copy_bufptr = (unsigned char *) alloca (copy_bufsiz);
bf338245
JD
6195 nbytes = XmbLookupString (FRAME_XIC (f),
6196 &event.xkey, copy_bufptr,
6197 copy_bufsiz, &keysym,
6198 &status_return);
6199 }
6200 /* Xutf8LookupString is a new but already deprecated interface. -stef */
96035dca 6201#if 0 && defined X_HAVE_UTF8_STRING
bf338245
JD
6202 else if (status_return == XLookupKeySym)
6203 { /* Try again but with utf-8. */
6204 coding_system = Qutf_8;
6205 nbytes = Xutf8LookupString (FRAME_XIC (f),
6206 &event.xkey, copy_bufptr,
6207 copy_bufsiz, &keysym,
6208 &status_return);
6209 if (status_return == XBufferOverflow)
6210 {
6211 copy_bufsiz = nbytes + 1;
fa8459a3 6212 copy_bufptr = (unsigned char *) alloca (copy_bufsiz);
bf338245
JD
6213 nbytes = Xutf8LookupString (FRAME_XIC (f),
6214 &event.xkey,
6215 copy_bufptr,
6216 copy_bufsiz, &keysym,
6217 &status_return);
6218 }
6219 }
c997eae5 6220#endif
f5d11644 6221
bf338245
JD
6222 if (status_return == XLookupNone)
6223 break;
6224 else if (status_return == XLookupChars)
6225 {
6226 keysym = NoSymbol;
6227 modifiers = 0;
6228 }
6229 else if (status_return != XLookupKeySym
6230 && status_return != XLookupBoth)
6231 abort ();
6232 }
6233 else
6234 nbytes = XLookupString (&event.xkey, copy_bufptr,
6235 copy_bufsiz, &keysym,
6236 &compose_status);
6c183ba5 6237#else
bf338245
JD
6238 nbytes = XLookupString (&event.xkey, copy_bufptr,
6239 copy_bufsiz, &keysym,
6240 &compose_status);
6c183ba5 6241#endif
dc6f92b8 6242
a633a954
JD
6243 /* If not using XIM/XIC, and a compose sequence is in progress,
6244 we break here. Otherwise, chars_matched is always 0. */
6245 if (compose_status.chars_matched > 0 && nbytes == 0)
6246 break;
6247
a6d0ae55 6248 bzero (&compose_status, sizeof (compose_status));
bf338245 6249 orig_keysym = keysym;
55123275 6250
89079179 6251 /* Common for all keysym input events. */
9b516537
AS
6252 XSETFRAME (inev.ie.frame_or_window, f);
6253 inev.ie.modifiers
89079179 6254 = x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO (f), modifiers);
9b516537 6255 inev.ie.timestamp = event.xkey.time;
bf338245 6256
89079179
KS
6257 /* First deal with keysyms which have defined
6258 translations to characters. */
6259 if (keysym >= 32 && keysym < 128)
6260 /* Avoid explicitly decoding each ASCII character. */
6261 {
9b516537
AS
6262 inev.ie.kind = ASCII_KEYSTROKE_EVENT;
6263 inev.ie.code = keysym;
89079179
KS
6264 goto done_keysym;
6265 }
6266
3d930b17 6267 /* Keysyms directly mapped to supported Unicode characters. */
71578d4f 6268 if ((keysym >= 0x01000000 && keysym <= 0x010033ff)
3d930b17
KH
6269 || (keysym >= 0x0100e000 && keysym <= 0x0100ffff))
6270 {
71578d4f
KH
6271 int code = keysym & 0xFFFF, charset_id, c1, c2;
6272
6273 if (code < 0x80)
6274 {
6275 inev.ie.kind = ASCII_KEYSTROKE_EVENT;
6276 inev.ie.code = code;
6277 }
6278 else if (code < 0x100)
6279 {
6280 if (code < 0xA0)
6281 charset_id = CHARSET_8_BIT_CONTROL;
6282 else
6283 charset_id = charset_latin_iso8859_1;
6284 inev.ie.kind = MULTIBYTE_CHAR_KEYSTROKE_EVENT;
6285 inev.ie.code = MAKE_CHAR (charset_id, code, 0);
6286 }
3d930b17 6287 else
71578d4f
KH
6288 {
6289 if (code < 0x2500)
6290 charset_id = charset_mule_unicode_0100_24ff,
6291 code -= 0x100;
6292 else if (code < 0xE000)
6293 charset_id = charset_mule_unicode_2500_33ff,
6294 code -= 0x2500;
6295 else
6296 charset_id = charset_mule_unicode_e000_ffff,
6297 code -= 0xE000;
6298 c1 = (code / 96) + 32, c2 = (code % 96) + 32;
6299 inev.ie.kind = MULTIBYTE_CHAR_KEYSTROKE_EVENT;
6300 inev.ie.code = MAKE_CHAR (charset_id, c1, c2);
6301 }
3d930b17
KH
6302 goto done_keysym;
6303 }
6304
89079179
KS
6305 /* Now non-ASCII. */
6306 if (HASH_TABLE_P (Vx_keysym_table)
6307 && (NATNUMP (c = Fgethash (make_number (keysym),
6308 Vx_keysym_table,
6309 Qnil))))
6310 {
9b516537
AS
6311 inev.ie.kind = (SINGLE_BYTE_CHAR_P (XFASTINT (c))
6312 ? ASCII_KEYSTROKE_EVENT
6313 : MULTIBYTE_CHAR_KEYSTROKE_EVENT);
6314 inev.ie.code = XFASTINT (c);
89079179
KS
6315 goto done_keysym;
6316 }
6317
6318 /* Random non-modifier sorts of keysyms. */
6319 if (((keysym >= XK_BackSpace && keysym <= XK_Escape)
bf338245 6320 || keysym == XK_Delete
1097aea0 6321#ifdef XK_ISO_Left_Tab
bf338245
JD
6322 || (keysym >= XK_ISO_Left_Tab
6323 && keysym <= XK_ISO_Enter)
1097aea0 6324#endif
bf338245
JD
6325 || IsCursorKey (keysym) /* 0xff50 <= x < 0xff60 */
6326 || IsMiscFunctionKey (keysym) /* 0xff60 <= x < VARIES */
c34790e0 6327#ifdef HPUX
bf338245
JD
6328 /* This recognizes the "extended function
6329 keys". It seems there's no cleaner way.
6330 Test IsModifierKey to avoid handling
6331 mode_switch incorrectly. */
6332 || ((unsigned) (keysym) >= XK_Select
6333 && (unsigned)(keysym) < XK_KP_Space)
69388238
RS
6334#endif
6335#ifdef XK_dead_circumflex
bf338245 6336 || orig_keysym == XK_dead_circumflex
69388238
RS
6337#endif
6338#ifdef XK_dead_grave
bf338245 6339 || orig_keysym == XK_dead_grave
69388238
RS
6340#endif
6341#ifdef XK_dead_tilde
bf338245 6342 || orig_keysym == XK_dead_tilde
69388238
RS
6343#endif
6344#ifdef XK_dead_diaeresis
bf338245 6345 || orig_keysym == XK_dead_diaeresis
69388238
RS
6346#endif
6347#ifdef XK_dead_macron
bf338245 6348 || orig_keysym == XK_dead_macron
69388238
RS
6349#endif
6350#ifdef XK_dead_degree
bf338245 6351 || orig_keysym == XK_dead_degree
69388238
RS
6352#endif
6353#ifdef XK_dead_acute
bf338245 6354 || orig_keysym == XK_dead_acute
69388238
RS
6355#endif
6356#ifdef XK_dead_cedilla
bf338245 6357 || orig_keysym == XK_dead_cedilla
69388238
RS
6358#endif
6359#ifdef XK_dead_breve
bf338245 6360 || orig_keysym == XK_dead_breve
69388238
RS
6361#endif
6362#ifdef XK_dead_ogonek
bf338245 6363 || orig_keysym == XK_dead_ogonek
69388238
RS
6364#endif
6365#ifdef XK_dead_caron
bf338245 6366 || orig_keysym == XK_dead_caron
69388238
RS
6367#endif
6368#ifdef XK_dead_doubleacute
bf338245 6369 || orig_keysym == XK_dead_doubleacute
69388238
RS
6370#endif
6371#ifdef XK_dead_abovedot
bf338245 6372 || orig_keysym == XK_dead_abovedot
c34790e0 6373#endif
bf338245
JD
6374 || IsKeypadKey (keysym) /* 0xff80 <= x < 0xffbe */
6375 || IsFunctionKey (keysym) /* 0xffbe <= x < 0xffe1 */
6376 /* Any "vendor-specific" key is ok. */
6377 || (orig_keysym & (1 << 28))
6378 || (keysym != NoSymbol && nbytes == 0))
6379 && ! (IsModifierKey (orig_keysym)
7719aa06
RS
6380#ifndef HAVE_X11R5
6381#ifdef XK_Mode_switch
bf338245 6382 || ((unsigned)(orig_keysym) == XK_Mode_switch)
7719aa06
RS
6383#endif
6384#ifdef XK_Num_Lock
bf338245 6385 || ((unsigned)(orig_keysym) == XK_Num_Lock)
7719aa06
RS
6386#endif
6387#endif /* not HAVE_X11R5 */
bf338245
JD
6388 /* The symbols from XK_ISO_Lock
6389 to XK_ISO_Last_Group_Lock
6390 don't have real modifiers but
6391 should be treated similarly to
6392 Mode_switch by Emacs. */
7ef18d79 6393#if defined XK_ISO_Lock && defined XK_ISO_Last_Group_Lock
bf338245
JD
6394 || ((unsigned)(orig_keysym)
6395 >= XK_ISO_Lock
6396 && (unsigned)(orig_keysym)
6397 <= XK_ISO_Last_Group_Lock)
7ef18d79 6398#endif
bf338245 6399 ))
89079179
KS
6400 {
6401 STORE_KEYSYM_FOR_DEBUG (keysym);
6402 /* make_lispy_event will convert this to a symbolic
6403 key. */
9b516537
AS
6404 inev.ie.kind = NON_ASCII_KEYSTROKE_EVENT;
6405 inev.ie.code = keysym;
89079179
KS
6406 goto done_keysym;
6407 }
379b5ac0 6408
89079179
KS
6409 { /* Raw bytes, not keysym. */
6410 register int i;
6411 register int c;
6412 int nchars, len;
6413
6414 /* The input should be decoded with `coding_system'
6415 which depends on which X*LookupString function
6416 we used just above and the locale. */
6417 setup_coding_system (coding_system, &coding);
6418 coding.src_multibyte = 0;
6419 coding.dst_multibyte = 1;
6420 /* The input is converted to events, thus we can't
6421 handle composition. Anyway, there's no XIM that
6422 gives us composition information. */
6423 coding.composing = COMPOSITION_DISABLED;
6424
6425 for (i = 0; i < nbytes; i++)
6426 {
6427 STORE_KEYSYM_FOR_DEBUG (copy_bufptr[i]);
6428 }
379b5ac0 6429
89079179
KS
6430 {
6431 /* Decode the input data. */
6432 int require;
6433 unsigned char *p;
6434
6435 require = decoding_buffer_size (&coding, nbytes);
6436 p = (unsigned char *) alloca (require);
6437 coding.mode |= CODING_MODE_LAST_BLOCK;
6438 /* We explicitly disable composition handling because
6439 key data should not contain any composition sequence. */
6440 coding.composing = COMPOSITION_DISABLED;
6441 decode_coding (&coding, copy_bufptr, p, nbytes, require);
6442 nbytes = coding.produced;
6443 nchars = coding.produced_char;
6444 copy_bufptr = p;
6445 }
bf338245 6446
89079179
KS
6447 /* Convert the input data to a sequence of
6448 character events. */
6449 for (i = 0; i < nbytes; i += len)
6450 {
6451 if (nchars == nbytes)
6452 c = copy_bufptr[i], len = 1;
6453 else
6454 c = STRING_CHAR_AND_LENGTH (copy_bufptr + i,
6455 nbytes - i, len);
9b516537 6456 inev.ie.kind = (SINGLE_BYTE_CHAR_P (c)
89079179
KS
6457 ? ASCII_KEYSTROKE_EVENT
6458 : MULTIBYTE_CHAR_KEYSTROKE_EVENT);
9b516537
AS
6459 inev.ie.code = c;
6460 kbd_buffer_store_event_hold (&inev.ie, hold_quit);
89079179 6461 }
bf338245 6462
89079179
KS
6463 /* Previous code updated count by nchars rather than nbytes,
6464 but that seems bogus to me. ++kfs */
6465 count += nbytes;
6466
9b516537 6467 inev.ie.kind = NO_EVENT; /* Already stored above. */
89079179
KS
6468
6469 if (keysym == NoSymbol)
6470 break;
6471 }
bf338245 6472 }
89079179 6473 done_keysym:
59ddecde 6474#ifdef HAVE_X_I18N
bf338245
JD
6475 /* Don't dispatch this event since XtDispatchEvent calls
6476 XFilterEvent, and two calls in a row may freeze the
6477 client. */
6478 break;
59ddecde 6479#else
bf338245 6480 goto OTHER;
59ddecde 6481#endif
f451eb13 6482
bf338245 6483 case KeyRelease:
59ddecde 6484#ifdef HAVE_X_I18N
bf338245
JD
6485 /* Don't dispatch this event since XtDispatchEvent calls
6486 XFilterEvent, and two calls in a row may freeze the
6487 client. */
6488 break;
59ddecde 6489#else
bf338245 6490 goto OTHER;
59ddecde 6491#endif
f5d11644 6492
bf338245 6493 case EnterNotify:
9b516537 6494 x_detect_focus_change (dpyinfo, &event, &inev.ie);
7d0393cf 6495
89079179 6496 f = x_any_window_to_frame (dpyinfo, event.xcrossing.window);
06a2c219 6497
0666d82c
KS
6498 if (f && x_mouse_click_focus_ignore_position)
6499 ignore_next_mouse_click_timeout = event.xmotion.time + 200;
6500
2c850e26 6501#if 0
89079179
KS
6502 if (event.xcrossing.focus)
6503 {
6504 /* Avoid nasty pop/raise loops. */
6505 if (f && (!(f->auto_raise)
6506 || !(f->auto_lower)
6507 || (event.xcrossing.time - enter_timestamp) > 500))
6508 {
6509 x_new_focus_frame (dpyinfo, f);
6510 enter_timestamp = event.xcrossing.time;
6511 }
6512 }
6513 else if (f == dpyinfo->x_focus_frame)
6514 x_new_focus_frame (dpyinfo, 0);
bf338245 6515#endif
f9e24cb9 6516
89079179
KS
6517 /* EnterNotify counts as mouse movement,
6518 so update things that depend on mouse position. */
6519 if (f && !f->output_data.x->hourglass_p)
6520 note_mouse_movement (f, &event.xmotion);
a8f116e7
JD
6521#ifdef USE_GTK
6522 /* We may get an EnterNotify on the buttons in the toolbar. In that
6523 case we moved out of any highlighted area and need to note this. */
6524 if (!f && last_mouse_glyph_frame)
6525 note_mouse_movement (last_mouse_glyph_frame, &event);
6526#endif
89079179 6527 goto OTHER;
cab34f50 6528
bf338245 6529 case FocusIn:
9b516537 6530 x_detect_focus_change (dpyinfo, &event, &inev.ie);
bf338245 6531 goto OTHER;
7a13e894 6532
bf338245 6533 case LeaveNotify:
9b516537 6534 x_detect_focus_change (dpyinfo, &event, &inev.ie);
cab34f50 6535
bf338245
JD
6536 f = x_top_window_to_frame (dpyinfo, event.xcrossing.window);
6537 if (f)
6538 {
6539 if (f == dpyinfo->mouse_face_mouse_frame)
6540 {
6541 /* If we move outside the frame, then we're
6542 certainly no longer on any text in the frame. */
6543 clear_mouse_face (dpyinfo);
6544 dpyinfo->mouse_face_mouse_frame = 0;
6545 }
6c183ba5 6546
bf338245
JD
6547 /* Generate a nil HELP_EVENT to cancel a help-echo.
6548 Do it only if there's something to cancel.
6549 Otherwise, the startup message is cleared when
6550 the mouse leaves the frame. */
6551 if (any_help_event_p)
89079179 6552 do_help = -1;
bf338245 6553 }
a8f116e7
JD
6554#ifdef USE_GTK
6555 /* See comment in EnterNotify above */
6556 else if (last_mouse_glyph_frame)
6557 note_mouse_movement (last_mouse_glyph_frame, &event);
6558#endif
bf338245 6559 goto OTHER;
7d0393cf 6560
bf338245 6561 case FocusOut:
9b516537 6562 x_detect_focus_change (dpyinfo, &event, &inev.ie);
bf338245 6563 goto OTHER;
5bc62483 6564
bf338245
JD
6565 case MotionNotify:
6566 {
442a09ea 6567 previous_help_echo_string = help_echo_string;
bb339c57 6568 help_echo_string = Qnil;
bf338245
JD
6569
6570 if (dpyinfo->grabbed && last_mouse_frame
6571 && FRAME_LIVE_P (last_mouse_frame))
6572 f = last_mouse_frame;
6573 else
6574 f = x_window_to_frame (dpyinfo, event.xmotion.window);
6575
6576 if (dpyinfo->mouse_face_hidden)
6577 {
6578 dpyinfo->mouse_face_hidden = 0;
6579 clear_mouse_face (dpyinfo);
6580 }
6581
6582 if (f)
6583 {
6584
6585 /* Generate SELECT_WINDOW_EVENTs when needed. */
92b23323 6586 if (!NILP (Vmouse_autoselect_window))
bf338245
JD
6587 {
6588 Lisp_Object window;
bf338245
JD
6589
6590 window = window_from_coordinates (f,
6591 event.xmotion.x, event.xmotion.y,
0899d58c 6592 0, 0, 0, 0);
bf338245
JD
6593
6594 /* Window will be selected only when it is not selected now and
6595 last mouse movement event was not in it. Minibuffer window
6596 will be selected iff it is active. */
810f2256 6597 if (WINDOWP (window)
bf338245 6598 && !EQ (window, last_window)
89079179 6599 && !EQ (window, selected_window))
bf338245 6600 {
9b516537
AS
6601 inev.ie.kind = SELECT_WINDOW_EVENT;
6602 inev.ie.frame_or_window = window;
bf338245 6603 }
5bc62483 6604
bf338245
JD
6605 last_window=window;
6606 }
bb339c57
KS
6607 if (!note_mouse_movement (f, &event.xmotion))
6608 help_echo_string = previous_help_echo_string;
bf338245
JD
6609 }
6610 else
6611 {
e88b3c50 6612#ifndef USE_TOOLKIT_SCROLL_BARS
bf338245 6613 struct scroll_bar *bar
810f2256
JD
6614 = x_window_to_scroll_bar (event.xmotion.display,
6615 event.xmotion.window);
f451eb13 6616
bf338245
JD
6617 if (bar)
6618 x_scroll_bar_note_movement (bar, &event);
e88b3c50 6619#endif /* USE_TOOLKIT_SCROLL_BARS */
b8009dd1 6620
bf338245
JD
6621 /* If we move outside the frame, then we're
6622 certainly no longer on any text in the frame. */
6623 clear_mouse_face (dpyinfo);
6624 }
6625
442a09ea 6626 /* If the contents of the global variable help_echo_string
bf338245 6627 has changed, generate a HELP_EVENT. */
442a09ea
KS
6628 if (!NILP (help_echo_string)
6629 || !NILP (previous_help_echo_string))
89079179 6630 do_help = 1;
bf338245
JD
6631 goto OTHER;
6632 }
dc6f92b8 6633
bf338245
JD
6634 case ConfigureNotify:
6635 f = x_top_window_to_frame (dpyinfo, event.xconfigure.window);
6636 if (f)
6637 {
7a4bce14 6638#ifndef USE_X_TOOLKIT
488dd4c4
JD
6639#ifdef USE_GTK
6640 xg_resize_widgets (f, event.xconfigure.width,
6641 event.xconfigure.height);
6642#else /* not USE_GTK */
bf338245
JD
6643 /* If there is a pending resize for fullscreen, don't
6644 do this one, the right one will come later.
6645 The toolkit version doesn't seem to need this, but we
6646 need to reset it below. */
62fe13a4 6647 int dont_resize
0899d58c
KS
6648 = ((f->want_fullscreen & FULLSCREEN_WAIT)
6649 && f->new_text_cols != 0);
6650 int rows = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, event.xconfigure.height);
6651 int columns = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, event.xconfigure.width);
6652
bf338245
JD
6653 if (dont_resize)
6654 goto OTHER;
6655
6656 /* In the toolkit version, change_frame_size
6657 is called by the code that handles resizing
6658 of the EmacsFrame widget. */
6659
6660 /* Even if the number of character rows and columns has
6661 not changed, the font size may have changed, so we need
6662 to check the pixel dimensions as well. */
0899d58c
KS
6663 if (columns != FRAME_COLS (f)
6664 || rows != FRAME_LINES (f)
6665 || event.xconfigure.width != FRAME_PIXEL_WIDTH (f)
6666 || event.xconfigure.height != FRAME_PIXEL_HEIGHT (f))
bf338245
JD
6667 {
6668 change_frame_size (f, rows, columns, 0, 1, 0);
6669 SET_FRAME_GARBAGED (f);
6670 cancel_mouse_face (f);
6671 }
488dd4c4 6672#endif /* not USE_GTK */
2d7fc7e8 6673#endif
af395ec1 6674
0899d58c
KS
6675 FRAME_PIXEL_WIDTH (f) = event.xconfigure.width;
6676 FRAME_PIXEL_HEIGHT (f) = event.xconfigure.height;
7a13e894 6677
488dd4c4
JD
6678#ifdef USE_GTK
6679 /* GTK creates windows but doesn't map them.
6680 Only get real positions and check fullscreen when mapped. */
6681 if (FRAME_GTK_OUTER_WIDGET (f)
6682 && GTK_WIDGET_MAPPED (FRAME_GTK_OUTER_WIDGET (f)))
488dd4c4 6683#endif
0899d58c 6684 {
0899d58c
KS
6685 x_real_positions (f, &f->left_pos, &f->top_pos);
6686
0899d58c
KS
6687 if (f->want_fullscreen & FULLSCREEN_WAIT)
6688 f->want_fullscreen &= ~(FULLSCREEN_WAIT|FULLSCREEN_BOTH);
488dd4c4 6689 }
0899d58c 6690
f5d11644 6691#ifdef HAVE_X_I18N
bf338245
JD
6692 if (FRAME_XIC (f) && (FRAME_XIC_STYLE (f) & XIMStatusArea))
6693 xic_set_statusarea (f);
f5d11644
GM
6694#endif
6695
bf338245
JD
6696 if (f->output_data.x->parent_desc != FRAME_X_DISPLAY_INFO (f)->root_window)
6697 {
6698 /* Since the WM decorations come below top_pos now,
6699 we must put them below top_pos in the future. */
0899d58c 6700 f->win_gravity = NorthWestGravity;
bf338245
JD
6701 x_wm_set_size_hint (f, (long) 0, 0);
6702 }
6703 }
6704 goto OTHER;
dc6f92b8 6705
bf338245 6706 case ButtonRelease:
488dd4c4 6707 case ButtonPress:
bf338245
JD
6708 {
6709 /* If we decide we want to generate an event to be seen
6710 by the rest of Emacs, we put it here. */
bf338245
JD
6711 int tool_bar_p = 0;
6712
bf338245 6713 bzero (&compose_status, sizeof (compose_status));
0a3fde9d 6714 last_mouse_glyph_frame = 0;
bf338245
JD
6715
6716 if (dpyinfo->grabbed
6717 && last_mouse_frame
6718 && FRAME_LIVE_P (last_mouse_frame))
6719 f = last_mouse_frame;
6720 else
6721 f = x_window_to_frame (dpyinfo, event.xbutton.window);
6722
6723 if (f)
6724 {
6725 /* Is this in the tool-bar? */
6726 if (WINDOWP (f->tool_bar_window)
0899d58c 6727 && WINDOW_TOTAL_LINES (XWINDOW (f->tool_bar_window)))
bf338245
JD
6728 {
6729 Lisp_Object window;
442a09ea
KS
6730 int x = event.xbutton.x;
6731 int y = event.xbutton.y;
06a2c219 6732
0899d58c 6733 window = window_from_coordinates (f, x, y, 0, 0, 0, 1);
bf338245
JD
6734 if (EQ (window, f->tool_bar_window))
6735 {
442a09ea
KS
6736 if (event.xbutton.type == ButtonPress)
6737 handle_tool_bar_click (f, x, y, 1, 0);
6738 else
6739 handle_tool_bar_click (f, x, y, 0,
6740 x_x_to_emacs_modifiers (dpyinfo,
6741 event.xbutton.state));
6742 tool_bar_p = 1;
bf338245
JD
6743 }
6744 }
06a2c219 6745
bf338245
JD
6746 if (!tool_bar_p)
6747 if (!dpyinfo->x_focus_frame
6748 || f == dpyinfo->x_focus_frame)
488dd4c4 6749 {
22174d10 6750#if defined (USE_X_TOOLKIT) || defined (USE_GTK)
488dd4c4 6751 if (! popup_activated ())
22174d10 6752#endif
0666d82c
KS
6753 {
6754 if (ignore_next_mouse_click_timeout)
6755 {
6756 if (event.type == ButtonPress
6757 && (int)(event.xbutton.time - ignore_next_mouse_click_timeout) > 0)
6758 {
6759 ignore_next_mouse_click_timeout = 0;
6c4eb4ce 6760 construct_mouse_click (&inev.ie, &event.xbutton, f);
0666d82c
KS
6761 }
6762 if (event.type == ButtonRelease)
6763 ignore_next_mouse_click_timeout = 0;
6764 }
6765 else
6c4eb4ce 6766 construct_mouse_click (&inev.ie, &event.xbutton, f);
0666d82c 6767 }
488dd4c4 6768 }
bf338245
JD
6769 }
6770 else
6771 {
bf338245 6772 struct scroll_bar *bar
810f2256
JD
6773 = x_window_to_scroll_bar (event.xbutton.display,
6774 event.xbutton.window);
f451eb13 6775
257f40f2
JD
6776#ifdef USE_TOOLKIT_SCROLL_BARS
6777 /* Make the "Ctrl-Mouse-2 splits window" work for toolkit
6778 scroll bars. */
6779 if (bar && event.xbutton.state & ControlMask)
6780 {
9b516537 6781 x_scroll_bar_handle_click (bar, &event, &inev.ie);
257f40f2
JD
6782 *finish = X_EVENT_DROP;
6783 }
6784#else /* not USE_TOOLKIT_SCROLL_BARS */
bf338245 6785 if (bar)
9b516537 6786 x_scroll_bar_handle_click (bar, &event, &inev.ie);
06a2c219 6787#endif /* not USE_TOOLKIT_SCROLL_BARS */
bf338245
JD
6788 }
6789
6790 if (event.type == ButtonPress)
6791 {
6792 dpyinfo->grabbed |= (1 << event.xbutton.button);
6793 last_mouse_frame = f;
bf338245
JD
6794
6795 if (!tool_bar_p)
6796 last_tool_bar_item = -1;
6797 }
6798 else
488dd4c4 6799 dpyinfo->grabbed &= ~(1 << event.xbutton.button);
bf338245 6800
24aad441
KS
6801 /* Ignore any mouse motion that happened before this event;
6802 any subsequent mouse-movement Emacs events should reflect
6803 only motion after the ButtonPress/Release. */
6804 if (f != 0)
6805 f->mouse_moved = 0;
6806
488dd4c4 6807#if defined (USE_X_TOOLKIT) || defined (USE_GTK)
bf338245
JD
6808 f = x_menubar_window_to_frame (dpyinfo, event.xbutton.window);
6809 /* For a down-event in the menu bar,
6810 don't pass it to Xt right now.
6811 Instead, save it away
6812 and we will pass it to Xt from kbd_buffer_get_event.
6813 That way, we can run some Lisp code first. */
488dd4c4
JD
6814 if (
6815#ifdef USE_GTK
6816 ! popup_activated ()
6817 &&
6818#endif
6819 f && event.type == ButtonPress
bf338245
JD
6820 /* Verify the event is really within the menu bar
6821 and not just sent to it due to grabbing. */
6822 && event.xbutton.x >= 0
0899d58c 6823 && event.xbutton.x < FRAME_PIXEL_WIDTH (f)
bf338245
JD
6824 && event.xbutton.y >= 0
6825 && event.xbutton.y < f->output_data.x->menubar_height
6826 && event.xbutton.same_screen)
6827 {
6828 SET_SAVED_BUTTON_EVENT;
6829 XSETFRAME (last_mouse_press_frame, f);
488dd4c4
JD
6830#ifdef USE_GTK
6831 *finish = X_EVENT_DROP;
6832#endif
bf338245
JD
6833 }
6834 else if (event.type == ButtonPress)
6835 {
6836 last_mouse_press_frame = Qnil;
6837 goto OTHER;
6838 }
06a2c219 6839
2237cac9
RS
6840#ifdef USE_MOTIF /* This should do not harm for Lucid,
6841 but I am trying to be cautious. */
bf338245
JD
6842 else if (event.type == ButtonRelease)
6843 {
6844 if (!NILP (last_mouse_press_frame))
6845 {
6846 f = XFRAME (last_mouse_press_frame);
6847 if (f->output_data.x)
6848 SET_SAVED_BUTTON_EVENT;
6849 }
6850 else
6851 goto OTHER;
6852 }
2237cac9 6853#endif /* USE_MOTIF */
bf338245
JD
6854 else
6855 goto OTHER;
488dd4c4 6856#endif /* USE_X_TOOLKIT || USE_GTK */
bf338245
JD
6857 }
6858 break;
dc6f92b8 6859
bf338245
JD
6860 case CirculateNotify:
6861 goto OTHER;
7d0393cf 6862
bf338245
JD
6863 case CirculateRequest:
6864 goto OTHER;
06a2c219 6865
bf338245
JD
6866 case VisibilityNotify:
6867 goto OTHER;
dc6f92b8 6868
bf338245
JD
6869 case MappingNotify:
6870 /* Someone has changed the keyboard mapping - update the
6871 local cache. */
6872 switch (event.xmapping.request)
6873 {
6874 case MappingModifier:
6875 x_find_modifier_meanings (dpyinfo);
6876 /* This is meant to fall through. */
6877 case MappingKeyboard:
6878 XRefreshKeyboardMapping (&event.xmapping);
6879 }
6880 goto OTHER;
dc6f92b8 6881
bf338245
JD
6882 default:
6883 OTHER:
717ca130 6884#ifdef USE_X_TOOLKIT
bf338245 6885 BLOCK_INPUT;
257f40f2
JD
6886 if (*finish != X_EVENT_DROP)
6887 XtDispatchEvent (&event);
bf338245 6888 UNBLOCK_INPUT;
3afe33e7 6889#endif /* USE_X_TOOLKIT */
bf338245
JD
6890 break;
6891 }
6892
89079179 6893 done:
9b516537 6894 if (inev.ie.kind != NO_EVENT)
89079179 6895 {
9b516537 6896 kbd_buffer_store_event_hold (&inev.ie, hold_quit);
89079179
KS
6897 count++;
6898 }
177c0ea7 6899
89079179
KS
6900 if (do_help
6901 && !(hold_quit && hold_quit->kind != NO_EVENT))
6902 {
6903 Lisp_Object frame;
bf338245 6904
89079179
KS
6905 if (f)
6906 XSETFRAME (frame, f);
6907 else
6908 frame = Qnil;
177c0ea7 6909
89079179
KS
6910 if (do_help > 0)
6911 {
6912 any_help_event_p = 1;
6913 gen_help_event (help_echo_string, frame, help_echo_window,
6914 help_echo_object, help_echo_pos);
0666d82c 6915 }
89079179
KS
6916 else
6917 {
6918 help_echo_string = Qnil;
6919 gen_help_event (Qnil, frame, Qnil, Qnil, 0);
6920 }
6921 count++;
6922 }
6923
6924 *eventp = event;
bf338245
JD
6925 return count;
6926}
6927
6928
6929/* Handles the XEvent EVENT on display DISPLAY.
6930 This is used for event loops outside the normal event handling,
1fcfb866
JD
6931 i.e. looping while a popup menu or a dialog is posted.
6932
6933 Returns the value handle_one_xevent sets in the finish argument. */
6934int
bf338245
JD
6935x_dispatch_event (event, display)
6936 XEvent *event;
6937 Display *display;
6938{
6939 struct x_display_info *dpyinfo;
1fcfb866 6940 int finish = X_EVENT_NORMAL;
177c0ea7 6941
810f2256 6942 dpyinfo = x_display_info_for_display (display);
177c0ea7 6943
bf338245 6944 if (dpyinfo)
89079179 6945 handle_one_xevent (dpyinfo, event, &finish, 0);
1fcfb866
JD
6946
6947 return finish;
bf338245
JD
6948}
6949
6950
6951/* Read events coming from the X server.
6952 This routine is called by the SIGIO handler.
6953 We return as soon as there are no more events to be read.
6954
bf338245
JD
6955 We return the number of characters stored into the buffer,
6956 thus pretending to be `read'.
6957
6958 EXPECTED is nonzero if the caller knows input is available. */
6959
6960static int
89079179 6961XTread_socket (sd, expected, hold_quit)
bf338245 6962 register int sd;
bf338245 6963 int expected;
89079179 6964 struct input_event *hold_quit;
bf338245
JD
6965{
6966 int count = 0;
bf338245
JD
6967 XEvent event;
6968 int event_found = 0;
6969 struct x_display_info *dpyinfo;
6970
6971 if (interrupt_input_blocked)
6972 {
6973 interrupt_input_pending = 1;
6974 return -1;
6975 }
6976
6977 interrupt_input_pending = 0;
6978 BLOCK_INPUT;
6979
6980 /* So people can tell when we have read the available input. */
6981 input_signal_count++;
6982
bf338245
JD
6983 ++handling_signal;
6984
6985 /* Find the display we are supposed to read input for.
6986 It's the one communicating on descriptor SD. */
6987 for (dpyinfo = x_display_list; dpyinfo; dpyinfo = dpyinfo->next)
6988 {
6989#if 0 /* This ought to be unnecessary; let's verify it. */
6990#ifdef FIOSNBIO
6991 /* If available, Xlib uses FIOSNBIO to make the socket
6992 non-blocking, and then looks for EWOULDBLOCK. If O_NDELAY is set,
6993 FIOSNBIO is ignored, and instead of signaling EWOULDBLOCK,
6994 a read returns 0, which Xlib interprets as equivalent to EPIPE. */
6995 fcntl (dpyinfo->connection, F_SETFL, 0);
6996#endif /* ! defined (FIOSNBIO) */
6997#endif
6998
6999#if 0 /* This code can't be made to work, with multiple displays,
7000 and appears not to be used on any system any more.
7001 Also keyboard.c doesn't turn O_NDELAY on and off
7002 for X connections. */
7003#ifndef SIGIO
7004#ifndef HAVE_SELECT
7005 if (! (fcntl (dpyinfo->connection, F_GETFL, 0) & O_NDELAY))
7006 {
7007 extern int read_alarm_should_throw;
7008 read_alarm_should_throw = 1;
7009 XPeekEvent (dpyinfo->display, &event);
7010 read_alarm_should_throw = 0;
7011 }
7012#endif /* HAVE_SELECT */
7013#endif /* SIGIO */
7014#endif
7015
7016 /* For debugging, this gives a way to fake an I/O error. */
7017 if (dpyinfo == XTread_socket_fake_io_error)
7018 {
7019 XTread_socket_fake_io_error = 0;
7020 x_io_error_quitter (dpyinfo->display);
dc6f92b8 7021 }
bf338245
JD
7022
7023#ifdef HAVE_X_SM
89079179
KS
7024 {
7025 struct input_event inev;
7026 BLOCK_INPUT;
7027 /* We don't need to EVENT_INIT (inev) here, as
7028 x_session_check_input copies an entire input_event. */
7029 if (x_session_check_input (&inev))
7030 {
7031 kbd_buffer_store_event_hold (&inev, hold_quit);
7032 count++;
7033 }
7034 UNBLOCK_INPUT;
7035 }
bf338245
JD
7036#endif
7037
810f2256 7038#ifndef USE_GTK
bf338245
JD
7039 while (XPending (dpyinfo->display))
7040 {
7041 int finish;
177c0ea7 7042
bf338245
JD
7043 XNextEvent (dpyinfo->display, &event);
7044
7045#ifdef HAVE_X_I18N
1fcfb866
JD
7046 /* Filter events for the current X input method. */
7047 if (x_filter_event (dpyinfo, &event))
7048 break;
bf338245
JD
7049#endif
7050 event_found = 1;
7051
89079179 7052 count += handle_one_xevent (dpyinfo, &event, &finish, hold_quit);
bf338245
JD
7053
7054 if (finish == X_EVENT_GOTO_OUT)
7055 goto out;
7056 }
810f2256
JD
7057#endif /* not USE_GTK */
7058 }
7059
7060#ifdef USE_GTK
7061
7062 /* For GTK we must use the GTK event loop. But XEvents gets passed
7063 to our filter function above, and then to the big event switch.
7064 We use a bunch of globals to communicate with our filter function,
7065 that is kind of ugly, but it works.
7066
7067 There is no way to do one display at the time, GTK just does events
7068 from all displays. */
7069
7070 while (gtk_events_pending ())
7071 {
7072 current_count = count;
89079179 7073 current_hold_quit = hold_quit;
810f2256
JD
7074
7075 gtk_main_iteration ();
7076
7077 count = current_count;
89079179
KS
7078 current_count = -1;
7079 current_hold_quit = 0;
810f2256
JD
7080
7081 if (current_finish == X_EVENT_GOTO_OUT)
7082 break;
dc6f92b8 7083 }
810f2256 7084#endif /* USE_GTK */
dc6f92b8 7085
06a2c219
GM
7086 out:;
7087
9a5196d0
RS
7088 /* On some systems, an X bug causes Emacs to get no more events
7089 when the window is destroyed. Detect that. (1994.) */
58769bee 7090 if (! event_found)
ef2a22d0 7091 {
ef2a22d0
RS
7092 /* Emacs and the X Server eats up CPU time if XNoOp is done every time.
7093 One XNOOP in 100 loops will make Emacs terminate.
7094 B. Bretthauer, 1994 */
7095 x_noop_count++;
58769bee 7096 if (x_noop_count >= 100)
ef2a22d0
RS
7097 {
7098 x_noop_count=0;
2224b905
RS
7099
7100 if (next_noop_dpyinfo == 0)
7101 next_noop_dpyinfo = x_display_list;
7102
7103 XNoOp (next_noop_dpyinfo->display);
7104
7105 /* Each time we get here, cycle through the displays now open. */
7106 next_noop_dpyinfo = next_noop_dpyinfo->next;
ef2a22d0
RS
7107 }
7108 }
502add23 7109
06a2c219 7110 /* If the focus was just given to an auto-raising frame,
0134a210 7111 raise it now. */
7a13e894 7112 /* ??? This ought to be able to handle more than one such frame. */
0134a210
RS
7113 if (pending_autoraise_frame)
7114 {
7115 x_raise_frame (pending_autoraise_frame);
7116 pending_autoraise_frame = 0;
7117 }
0134a210 7118
bde5503b 7119 --handling_signal;
89079179
KS
7120 UNBLOCK_INPUT;
7121
dc6f92b8
JB
7122 return count;
7123}
06a2c219
GM
7124
7125
7126
dc6f92b8 7127\f
06a2c219
GM
7128/***********************************************************************
7129 Text Cursor
7130 ***********************************************************************/
7131
06a2c219
GM
7132/* Set clipping for output in glyph row ROW. W is the window in which
7133 we operate. GC is the graphics context to set clipping in.
06a2c219
GM
7134
7135 ROW may be a text row or, e.g., a mode line. Text rows must be
7136 clipped to the interior of the window dedicated to text display,
7137 mode lines must be clipped to the whole window. */
dc6f92b8
JB
7138
7139static void
08f66682 7140x_clip_to_row (w, row, area, gc)
06a2c219
GM
7141 struct window *w;
7142 struct glyph_row *row;
08f66682 7143 int area;
06a2c219 7144 GC gc;
dc6f92b8 7145{
06a2c219
GM
7146 struct frame *f = XFRAME (WINDOW_FRAME (w));
7147 XRectangle clip_rect;
08f66682 7148 int window_x, window_y, window_width;
dc6f92b8 7149
08f66682 7150 window_box (w, area, &window_x, &window_y, &window_width, 0);
5c1aae96 7151
08f66682 7152 clip_rect.x = window_x;
dbd8ee19 7153 clip_rect.y = WINDOW_TO_FRAME_PIXEL_Y (w, max (0, row->y));
06a2c219
GM
7154 clip_rect.y = max (clip_rect.y, window_y);
7155 clip_rect.width = window_width;
7156 clip_rect.height = row->visible_height;
5c1aae96 7157
06a2c219 7158 XSetClipRectangles (FRAME_X_DISPLAY (f), gc, 0, 0, &clip_rect, 1, Unsorted);
dc6f92b8
JB
7159}
7160
06a2c219
GM
7161
7162/* Draw a hollow box cursor on window W in glyph row ROW. */
dc6f92b8
JB
7163
7164static void
06a2c219
GM
7165x_draw_hollow_cursor (w, row)
7166 struct window *w;
7167 struct glyph_row *row;
dc6f92b8 7168{
06a2c219
GM
7169 struct frame *f = XFRAME (WINDOW_FRAME (w));
7170 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
7171 Display *dpy = FRAME_X_DISPLAY (f);
7172 int x, y, wd, h;
7173 XGCValues xgcv;
7174 struct glyph *cursor_glyph;
7175 GC gc;
7176
06a2c219
GM
7177 /* Get the glyph the cursor is on. If we can't tell because
7178 the current matrix is invalid or such, give up. */
7179 cursor_glyph = get_phys_cursor_glyph (w);
7180 if (cursor_glyph == NULL)
dc6f92b8
JB
7181 return;
7182
dbd8ee19 7183 /* Compute frame-relative coordinates for phys cursor. */
e8f6b0db 7184 get_phys_cursor_geometry (w, row, cursor_glyph, &x, &y, &h);
dbd8ee19 7185 wd = w->phys_cursor_width;
83c6eb57 7186
06a2c219
GM
7187 /* The foreground of cursor_gc is typically the same as the normal
7188 background color, which can cause the cursor box to be invisible. */
7189 xgcv.foreground = f->output_data.x->cursor_pixel;
7190 if (dpyinfo->scratch_cursor_gc)
7191 XChangeGC (dpy, dpyinfo->scratch_cursor_gc, GCForeground, &xgcv);
7192 else
7193 dpyinfo->scratch_cursor_gc = XCreateGC (dpy, FRAME_X_WINDOW (f),
7194 GCForeground, &xgcv);
7195 gc = dpyinfo->scratch_cursor_gc;
7196
7197 /* Set clipping, draw the rectangle, and reset clipping again. */
08f66682 7198 x_clip_to_row (w, row, TEXT_AREA, gc);
005a80de 7199 XDrawRectangle (dpy, FRAME_X_WINDOW (f), gc, x, y, wd, h - 1);
06a2c219 7200 XSetClipMask (dpy, gc, None);
dc6f92b8
JB
7201}
7202
06a2c219
GM
7203
7204/* Draw a bar cursor on window W in glyph row ROW.
7205
7206 Implementation note: One would like to draw a bar cursor with an
7207 angle equal to the one given by the font property XA_ITALIC_ANGLE.
7208 Unfortunately, I didn't find a font yet that has this property set.
7209 --gerd. */
dc6f92b8
JB
7210
7211static void
65c26775 7212x_draw_bar_cursor (w, row, width, kind)
06a2c219
GM
7213 struct window *w;
7214 struct glyph_row *row;
f02d8aa0 7215 int width;
65c26775 7216 enum text_cursor_kinds kind;
dc6f92b8 7217{
92f424df
GM
7218 struct frame *f = XFRAME (w->frame);
7219 struct glyph *cursor_glyph;
7d0393cf 7220
92f424df
GM
7221 /* If cursor is out of bounds, don't draw garbage. This can happen
7222 in mini-buffer windows when switching between echo area glyphs
7223 and mini-buffer. */
7224 cursor_glyph = get_phys_cursor_glyph (w);
7225 if (cursor_glyph == NULL)
7226 return;
06a2c219 7227
92f424df
GM
7228 /* If on an image, draw like a normal cursor. That's usually better
7229 visible than drawing a bar, esp. if the image is large so that
7230 the bar might not be in the window. */
7231 if (cursor_glyph->type == IMAGE_GLYPH)
7232 {
7233 struct glyph_row *row;
7234 row = MATRIX_ROW (w->current_matrix, w->phys_cursor.vpos);
442a09ea 7235 draw_phys_cursor_glyph (w, row, DRAW_CURSOR);
92f424df
GM
7236 }
7237 else
7238 {
34e5d0af
GM
7239 Display *dpy = FRAME_X_DISPLAY (f);
7240 Window window = FRAME_X_WINDOW (f);
7241 GC gc = FRAME_X_DISPLAY_INFO (f)->scratch_cursor_gc;
7242 unsigned long mask = GCForeground | GCBackground | GCGraphicsExposures;
7243 struct face *face = FACE_FROM_ID (f, cursor_glyph->face_id);
7244 XGCValues xgcv;
7245
7246 /* If the glyph's background equals the color we normally draw
7247 the bar cursor in, the bar cursor in its normal color is
7248 invisible. Use the glyph's foreground color instead in this
7249 case, on the assumption that the glyph's colors are chosen so
7250 that the glyph is legible. */
7251 if (face->background == f->output_data.x->cursor_pixel)
7252 xgcv.background = xgcv.foreground = face->foreground;
7253 else
7254 xgcv.background = xgcv.foreground = f->output_data.x->cursor_pixel;
06a2c219 7255 xgcv.graphics_exposures = 0;
7d0393cf 7256
06a2c219
GM
7257 if (gc)
7258 XChangeGC (dpy, gc, mask, &xgcv);
7259 else
7260 {
7261 gc = XCreateGC (dpy, window, mask, &xgcv);
7262 FRAME_X_DISPLAY_INFO (f)->scratch_cursor_gc = gc;
7263 }
7d0393cf 7264
f02d8aa0 7265 if (width < 0)
fdbe859c 7266 width = FRAME_CURSOR_WIDTH (f);
34e5d0af 7267 width = min (cursor_glyph->pixel_width, width);
7d0393cf 7268
b3738089 7269 w->phys_cursor_width = width;
08f66682 7270 x_clip_to_row (w, row, TEXT_AREA, gc);
7d0393cf 7271
65c26775
EZ
7272 if (kind == BAR_CURSOR)
7273 XFillRectangle (dpy, window, gc,
7274 WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x),
7275 WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y),
7276 width, row->height);
7277 else
7278 XFillRectangle (dpy, window, gc,
7279 WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x),
7280 WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y +
7281 row->height - width),
7282 cursor_glyph->pixel_width,
7283 width);
7284
06a2c219
GM
7285 XSetClipMask (dpy, gc, None);
7286 }
dc6f92b8
JB
7287}
7288
06a2c219 7289
442a09ea 7290/* RIF: Define cursor CURSOR on frame F. */
06a2c219 7291
dc6f92b8 7292static void
442a09ea
KS
7293x_define_frame_cursor (f, cursor)
7294 struct frame *f;
7295 Cursor cursor;
dc6f92b8 7296{
442a09ea 7297 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), cursor);
06a2c219 7298}
90e65f07 7299
dbc4e1c1 7300
442a09ea 7301/* RIF: Clear area on frame F. */
dbc4e1c1 7302
06a2c219 7303static void
442a09ea
KS
7304x_clear_frame_area (f, x, y, width, height)
7305 struct frame *f;
7306 int x, y, width, height;
06a2c219 7307{
442a09ea
KS
7308 x_clear_area (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
7309 x, y, width, height, False);
06a2c219 7310}
dbc4e1c1 7311
eea6af04 7312
442a09ea 7313/* RIF: Draw cursor on window W. */
eea6af04 7314
06a2c219 7315static void
e5a3b7d9 7316x_draw_window_cursor (w, glyph_row, x, y, cursor_type, cursor_width, on_p, active_p)
06a2c219 7317 struct window *w;
442a09ea 7318 struct glyph_row *glyph_row;
e5a3b7d9
KS
7319 int x, y;
7320 int cursor_type, cursor_width;
7321 int on_p, active_p;
dbc4e1c1 7322{
442a09ea 7323 struct frame *f = XFRAME (WINDOW_FRAME (w));
06a2c219 7324
e5a3b7d9 7325 if (on_p)
06a2c219 7326 {
e5a3b7d9 7327 w->phys_cursor_type = cursor_type;
06a2c219
GM
7328 w->phys_cursor_on_p = 1;
7329
3c0882ae
KS
7330 if (glyph_row->exact_window_width_line_p
7331 && w->phys_cursor.hpos >= glyph_row->used[TEXT_AREA])
7332 {
7333 glyph_row->cursor_in_fringe_p = 1;
7334 draw_fringe_bitmap (w, glyph_row, 0);
7335 }
7336 else
e5a3b7d9 7337 switch (cursor_type)
dc6f92b8 7338 {
06a2c219
GM
7339 case HOLLOW_BOX_CURSOR:
7340 x_draw_hollow_cursor (w, glyph_row);
7341 break;
7342
7343 case FILLED_BOX_CURSOR:
442a09ea 7344 draw_phys_cursor_glyph (w, glyph_row, DRAW_CURSOR);
06a2c219
GM
7345 break;
7346
7347 case BAR_CURSOR:
e5a3b7d9 7348 x_draw_bar_cursor (w, glyph_row, cursor_width, BAR_CURSOR);
65c26775
EZ
7349 break;
7350
7351 case HBAR_CURSOR:
e5a3b7d9 7352 x_draw_bar_cursor (w, glyph_row, cursor_width, HBAR_CURSOR);
06a2c219
GM
7353 break;
7354
7355 case NO_CURSOR:
4398e673 7356 w->phys_cursor_width = 0;
06a2c219 7357 break;
dc6f92b8 7358
06a2c219
GM
7359 default:
7360 abort ();
7361 }
7d0393cf 7362
59ddecde
GM
7363#ifdef HAVE_X_I18N
7364 if (w == XWINDOW (f->selected_window))
7365 if (FRAME_XIC (f) && (FRAME_XIC_STYLE (f) & XIMPreeditPosition))
7366 xic_set_preeditarea (w, x, y);
7367#endif
dc6f92b8
JB
7368 }
7369
06a2c219 7370#ifndef XFlush
f676886a 7371 if (updating_frame != f)
334208b7 7372 XFlush (FRAME_X_DISPLAY (f));
06a2c219 7373#endif
dc6f92b8
JB
7374}
7375
dc6f92b8
JB
7376\f
7377/* Icons. */
7378
dbc4e1c1 7379/* Make the x-window of frame F use the gnu icon bitmap. */
dc6f92b8
JB
7380
7381int
990ba854 7382x_bitmap_icon (f, file)
f676886a 7383 struct frame *f;
990ba854 7384 Lisp_Object file;
dc6f92b8 7385{
06a2c219 7386 int bitmap_id;
dc6f92b8 7387
c118dd06 7388 if (FRAME_X_WINDOW (f) == 0)
dc6f92b8
JB
7389 return 1;
7390
62fe13a4 7391 /* Free up our existing icon bitmap and mask if any. */
7556890b
RS
7392 if (f->output_data.x->icon_bitmap > 0)
7393 x_destroy_bitmap (f, f->output_data.x->icon_bitmap);
7394 f->output_data.x->icon_bitmap = 0;
990ba854
RS
7395
7396 if (STRINGP (file))
62fe13a4
JB
7397 {
7398#ifdef USE_GTK
810f2256 7399 /* Use gtk_window_set_icon_from_file () if available,
62fe13a4 7400 It's not restricted to bitmaps */
810f2256 7401 if (xg_set_icon (f, file))
62fe13a4
JB
7402 return 0;
7403#endif /* USE_GTK */
7404 bitmap_id = x_create_bitmap_from_file (f, file);
810f2256 7405 x_create_bitmap_mask (f, bitmap_id);
62fe13a4 7406 }
7f2ae036
RS
7407 else
7408 {
62fe13a4 7409 /* Create the GNU bitmap and mask if necessary. */
5bf01b68 7410 if (FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id < 0)
62fe13a4 7411 {
9f7b984b
CY
7412 int rc = -1;
7413
786a43d6 7414#if defined (HAVE_XPM) && defined (HAVE_X_WINDOWS)
9f7b984b
CY
7415#ifdef USE_GTK
7416 if (xg_set_icon_from_xpm_data (f, gnu_xpm_bits))
7417 return 0;
786a43d6 7418#else
9f7b984b
CY
7419 rc = x_create_bitmap_from_xpm_data (f, gnu_xpm_bits);
7420 if (rc != -1)
7421 FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id = rc;
7422#endif /* USE_GTK */
7423#endif /* defined (HAVE_XPM) && defined (HAVE_X_WINDOWS) */
7424
7425 /* If all else fails, use the (black and white) xbm image. */
7426 if (rc == -1)
7427 {
7428 rc = x_create_bitmap_from_data (f, gnu_xbm_bits,
7429 gnu_xbm_width, gnu_xbm_height);
7430 if (rc == -1)
7431 return 1;
7432
7433 FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id = rc;
7434 x_create_bitmap_mask (f, FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id);
7435 }
62fe13a4 7436 }
990ba854 7437
62fe13a4 7438 /* The first time we create the GNU bitmap and mask,
06a2c219 7439 this increments the ref-count one extra time.
62fe13a4 7440 As a result, the GNU bitmap and mask are never freed.
990ba854 7441 That way, we don't have to worry about allocating it again. */
334208b7 7442 x_reference_bitmap (f, FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id);
990ba854 7443
334208b7 7444 bitmap_id = FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id;
7f2ae036
RS
7445 }
7446
7447 x_wm_set_icon_pixmap (f, bitmap_id);
7556890b 7448 f->output_data.x->icon_bitmap = bitmap_id;
dc6f92b8
JB
7449
7450 return 0;
7451}
7452
7453
1be2d067
KH
7454/* Make the x-window of frame F use a rectangle with text.
7455 Use ICON_NAME as the text. */
dc6f92b8
JB
7456
7457int
f676886a
JB
7458x_text_icon (f, icon_name)
7459 struct frame *f;
dc6f92b8
JB
7460 char *icon_name;
7461{
c118dd06 7462 if (FRAME_X_WINDOW (f) == 0)
dc6f92b8
JB
7463 return 1;
7464
1be2d067
KH
7465#ifdef HAVE_X11R4
7466 {
7467 XTextProperty text;
7468 text.value = (unsigned char *) icon_name;
7469 text.encoding = XA_STRING;
7470 text.format = 8;
7471 text.nitems = strlen (icon_name);
2436a4e4 7472 XSetWMIconName (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f), &text);
1be2d067
KH
7473 }
7474#else /* not HAVE_X11R4 */
2436a4e4 7475 XSetIconName (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f), icon_name);
1be2d067 7476#endif /* not HAVE_X11R4 */
58769bee 7477
7556890b
RS
7478 if (f->output_data.x->icon_bitmap > 0)
7479 x_destroy_bitmap (f, f->output_data.x->icon_bitmap);
7480 f->output_data.x->icon_bitmap = 0;
b1c884c3 7481 x_wm_set_icon_pixmap (f, 0);
dc6f92b8
JB
7482
7483 return 0;
7484}
7485\f
e99db5a1
RS
7486#define X_ERROR_MESSAGE_SIZE 200
7487
7488/* If non-nil, this should be a string.
9ba8e10d
CY
7489 It means catch X errors and store the error message in this string.
7490
7491 The reason we use a stack is that x_catch_error/x_uncatch_error can
7492 be called from a signal handler.
7493*/
e99db5a1 7494
5badc98d
SM
7495struct x_error_message_stack {
7496 char string[X_ERROR_MESSAGE_SIZE];
7497 Display *dpy;
7498 struct x_error_message_stack *prev;
7499};
7500static struct x_error_message_stack *x_error_message;
e99db5a1
RS
7501
7502/* An X error handler which stores the error message in
9e69bfa4 7503 *x_error_message. This is called from x_error_handler if
e99db5a1
RS
7504 x_catch_errors is in effect. */
7505
06a2c219 7506static void
e99db5a1
RS
7507x_error_catcher (display, error)
7508 Display *display;
7509 XErrorEvent *error;
7510{
7511 XGetErrorText (display, error->error_code,
5badc98d 7512 x_error_message->string,
e99db5a1
RS
7513 X_ERROR_MESSAGE_SIZE);
7514}
7515
7516/* Begin trapping X errors for display DPY. Actually we trap X errors
7517 for all displays, but DPY should be the display you are actually
7518 operating on.
7519
7520 After calling this function, X protocol errors no longer cause
7521 Emacs to exit; instead, they are recorded in the string
9e69bfa4 7522 stored in *x_error_message.
e99db5a1
RS
7523
7524 Calling x_check_errors signals an Emacs error if an X error has
7525 occurred since the last call to x_catch_errors or x_check_errors.
7526
7527 Calling x_uncatch_errors resumes the normal error handling. */
7528
7529void x_check_errors ();
e99db5a1 7530
9ba8e10d 7531void
e99db5a1
RS
7532x_catch_errors (dpy)
7533 Display *dpy;
7534{
5eeafdc9 7535 struct x_error_message_stack *data = xmalloc (sizeof (*data));
e99db5a1
RS
7536
7537 /* Make sure any errors from previous requests have been dealt with. */
7538 XSync (dpy, False);
7539
5badc98d
SM
7540 data->dpy = dpy;
7541 data->string[0] = 0;
7542 data->prev = x_error_message;
7543 x_error_message = data;
e99db5a1
RS
7544}
7545
9ba8e10d
CY
7546/* Undo the last x_catch_errors call.
7547 DPY should be the display that was passed to x_catch_errors. */
e99db5a1 7548
9ba8e10d 7549void
4545fa20 7550x_uncatch_errors ()
e99db5a1 7551{
5badc98d 7552 struct x_error_message_stack *tmp;
781d152a 7553
8a34117e
CY
7554 BLOCK_INPUT;
7555
2728b5d0
JD
7556 /* The display may have been closed before this function is called.
7557 Check if it is still open before calling XSync. */
4545fa20 7558 if (x_display_info_for_display (x_error_message->dpy) != 0)
8a34117e 7559 XSync (x_error_message->dpy, False);
781d152a 7560
5badc98d
SM
7561 tmp = x_error_message;
7562 x_error_message = x_error_message->prev;
9ba8e10d 7563 xfree (tmp);
8a34117e 7564 UNBLOCK_INPUT;
e99db5a1
RS
7565}
7566
7567/* If any X protocol errors have arrived since the last call to
7568 x_catch_errors or x_check_errors, signal an Emacs error using
7569 sprintf (a buffer, FORMAT, the x error message text) as the text. */
7570
7571void
7572x_check_errors (dpy, format)
7573 Display *dpy;
7574 char *format;
7575{
7576 /* Make sure to catch any errors incurred so far. */
7577 XSync (dpy, False);
7578
5badc98d 7579 if (x_error_message->string[0])
9ba8e10d
CY
7580 {
7581 char string[X_ERROR_MESSAGE_SIZE];
7582 bcopy (x_error_message->string, string, X_ERROR_MESSAGE_SIZE);
4545fa20 7583 x_uncatch_errors ();
9ba8e10d
CY
7584 error (format, string);
7585 }
e99db5a1
RS
7586}
7587
9829ddba
RS
7588/* Nonzero if we had any X protocol errors
7589 since we did x_catch_errors on DPY. */
e99db5a1
RS
7590
7591int
7592x_had_errors_p (dpy)
7593 Display *dpy;
7594{
7595 /* Make sure to catch any errors incurred so far. */
7596 XSync (dpy, False);
7597
5badc98d 7598 return x_error_message->string[0] != 0;
e99db5a1
RS
7599}
7600
9829ddba
RS
7601/* Forget about any errors we have had, since we did x_catch_errors on DPY. */
7602
06a2c219 7603void
9829ddba
RS
7604x_clear_errors (dpy)
7605 Display *dpy;
7606{
5badc98d 7607 x_error_message->string[0] = 0;
e6feb692
RS
7608}
7609
7610/* Close off all unclosed x_catch_errors calls. */
7611
7612void
7613x_fully_uncatch_errors ()
7614{
7615 while (x_error_message)
7616 x_uncatch_errors ();
7617}
7618
7619/* Nonzero if x_catch_errors has been done and not yet canceled. */
7620
7621int
7622x_catching_errors ()
7623{
7624 return x_error_message != 0;
9829ddba
RS
7625}
7626
e99db5a1
RS
7627#if 0
7628static unsigned int x_wire_count;
7629x_trace_wire ()
7630{
7631 fprintf (stderr, "Lib call: %d\n", ++x_wire_count);
7632}
7633#endif /* ! 0 */
7634
7635\f
7636/* Handle SIGPIPE, which can happen when the connection to a server
7637 simply goes away. SIGPIPE is handled by x_connection_signal.
7d0393cf 7638 Don't need to do anything, because the write which caused the
e99db5a1 7639 SIGPIPE will fail, causing Xlib to invoke the X IO error handler,
06a2c219 7640 which will do the appropriate cleanup for us. */
7d0393cf 7641
e99db5a1
RS
7642static SIGTYPE
7643x_connection_signal (signalnum) /* If we don't have an argument, */
06a2c219 7644 int signalnum; /* some compilers complain in signal calls. */
e99db5a1
RS
7645{
7646#ifdef USG
7647 /* USG systems forget handlers when they are used;
7648 must reestablish each time */
7649 signal (signalnum, x_connection_signal);
7650#endif /* USG */
7651}
0da1ab50 7652
e99db5a1 7653\f
0da1ab50
GM
7654/************************************************************************
7655 Handling X errors
7656 ************************************************************************/
4746118a 7657
f0e299de
GM
7658/* Error message passed to x_connection_closed. */
7659
7660static char *error_msg;
7661
a7248e4f 7662/* Function installed as fatal_error_signal_hook in
f0e299de
GM
7663 x_connection_closed. Print the X error message, and exit normally,
7664 instead of dumping core when XtCloseDisplay fails. */
7665
7666static void
7667x_fatal_error_signal ()
7668{
7669 fprintf (stderr, "%s\n", error_msg);
7670 exit (70);
7671}
7672
0da1ab50
GM
7673/* Handle the loss of connection to display DPY. ERROR_MESSAGE is
7674 the text of an error message that lead to the connection loss. */
16bd92ea 7675
4746118a 7676static SIGTYPE
5978125e
GM
7677x_connection_closed (dpy, error_message)
7678 Display *dpy;
7a13e894 7679 char *error_message;
4746118a 7680{
5978125e 7681 struct x_display_info *dpyinfo = x_display_info_for_display (dpy);
7a13e894 7682 Lisp_Object frame, tail;
7d0393cf 7683
f0e299de
GM
7684 error_msg = (char *) alloca (strlen (error_message) + 1);
7685 strcpy (error_msg, error_message);
1a532e54 7686 handling_signal = 0;
7d0393cf 7687
0da1ab50
GM
7688 /* Prevent being called recursively because of an error condition
7689 below. Otherwise, we might end up with printing ``can't find per
7690 display information'' in the recursive call instead of printing
7691 the original message here. */
9ba8e10d 7692 x_catch_errors (dpy);
7d0393cf 7693
8a4f36cc
GM
7694 /* We have to close the display to inform Xt that it doesn't
7695 exist anymore. If we don't, Xt will continue to wait for
7696 events from the display. As a consequence, a sequence of
7697
7698 M-x make-frame-on-display RET :1 RET
7699 ...kill the new frame, so that we get an IO error...
7700 M-x make-frame-on-display RET :1 RET
7701
7702 will indefinitely wait in Xt for events for display `:1', opened
7703 in the first class to make-frame-on-display.
6186a4a0 7704
8a4f36cc
GM
7705 Closing the display is reported to lead to a bus error on
7706 OpenWindows in certain situations. I suspect that is a bug
7707 in OpenWindows. I don't know how to cicumvent it here. */
7d0393cf 7708
f613a4c8 7709#ifdef USE_X_TOOLKIT
ae24cb3b
GM
7710 /* If DPYINFO is null, this means we didn't open the display
7711 in the first place, so don't try to close it. */
7712 if (dpyinfo)
f0e299de
GM
7713 {
7714 extern void (*fatal_error_signal_hook) P_ ((void));
7715 fatal_error_signal_hook = x_fatal_error_signal;
7716 XtCloseDisplay (dpy);
7717 fatal_error_signal_hook = NULL;
7718 }
f613a4c8 7719#endif
adabc3a9 7720
810f2256
JD
7721#ifdef USE_GTK
7722 if (dpyinfo)
7723 xg_display_close (dpyinfo->display);
7724#endif
7725
8a4f36cc 7726 /* Indicate that this display is dead. */
9e80b57d
KR
7727 if (dpyinfo)
7728 dpyinfo->display = 0;
6186a4a0 7729
06a2c219 7730 /* First delete frames whose mini-buffers are on frames
7a13e894
RS
7731 that are on the dead display. */
7732 FOR_EACH_FRAME (tail, frame)
7733 {
7734 Lisp_Object minibuf_frame;
7735 minibuf_frame
7736 = WINDOW_FRAME (XWINDOW (FRAME_MINIBUF_WINDOW (XFRAME (frame))));
f48f33ca
RS
7737 if (FRAME_X_P (XFRAME (frame))
7738 && FRAME_X_P (XFRAME (minibuf_frame))
7739 && ! EQ (frame, minibuf_frame)
7740 && FRAME_X_DISPLAY_INFO (XFRAME (minibuf_frame)) == dpyinfo)
7a13e894
RS
7741 Fdelete_frame (frame, Qt);
7742 }
7743
7744 /* Now delete all remaining frames on the dead display.
06a2c219 7745 We are now sure none of these is used as the mini-buffer
7a13e894
RS
7746 for another frame that we need to delete. */
7747 FOR_EACH_FRAME (tail, frame)
f48f33ca
RS
7748 if (FRAME_X_P (XFRAME (frame))
7749 && FRAME_X_DISPLAY_INFO (XFRAME (frame)) == dpyinfo)
07a7096a
KH
7750 {
7751 /* Set this to t so that Fdelete_frame won't get confused
7752 trying to find a replacement. */
7753 FRAME_KBOARD (XFRAME (frame))->Vdefault_minibuffer_frame = Qt;
7754 Fdelete_frame (frame, Qt);
7755 }
7a13e894 7756
482a1bd2
KH
7757 if (dpyinfo)
7758 x_delete_display (dpyinfo);
7a13e894 7759
4545fa20 7760 x_uncatch_errors ();
7d0393cf 7761
7a13e894
RS
7762 if (x_display_list == 0)
7763 {
f0e299de 7764 fprintf (stderr, "%s\n", error_msg);
7a13e894
RS
7765 shut_down_emacs (0, 0, Qnil);
7766 exit (70);
7767 }
12ba150f 7768
7a13e894
RS
7769 /* Ordinary stack unwind doesn't deal with these. */
7770#ifdef SIGIO
7771 sigunblock (sigmask (SIGIO));
7772#endif
7773 sigunblock (sigmask (SIGALRM));
7774 TOTALLY_UNBLOCK_INPUT;
7775
aa4d9a9e 7776 clear_waiting_for_input ();
f0e299de 7777 error ("%s", error_msg);
4746118a
JB
7778}
7779
043f7f73
SM
7780/* We specifically use it before defining it, so that gcc doesn't inline it,
7781 otherwise gdb doesn't know how to properly put a breakpoint on it. */
9e69bfa4 7782static void x_error_quitter P_ ((Display *, XErrorEvent *));
043f7f73 7783
b70001a1
RS
7784/* This is the first-level handler for X protocol errors.
7785 It calls x_error_quitter or x_error_catcher. */
7786
7787static int
7788x_error_handler (display, error)
7789 Display *display;
7790 XErrorEvent *error;
7791{
5badc98d 7792 if (x_error_message)
b70001a1
RS
7793 x_error_catcher (display, error);
7794 else
7795 x_error_quitter (display, error);
7796 return 0;
7797}
0da1ab50 7798
7a13e894
RS
7799/* This is the usual handler for X protocol errors.
7800 It kills all frames on the display that we got the error for.
7801 If that was the only one, it prints an error message and kills Emacs. */
7802
799775ff 7803/* .gdbinit puts a breakpoint here, so make sure it is not inlined. */
b70001a1 7804
799775ff
RS
7805#if __GNUC__ >= 3 /* On GCC 3.0 we might get a warning. */
7806#define NO_INLINE __attribute__((noinline))
7807#else
7808#define NO_INLINE
7809#endif
7810
285a529b
RS
7811/* Some versions of GNU/Linux define noinline in their headers. */
7812
5599ac10
RS
7813#ifdef noinline
7814#undef noinline
285a529b
RS
7815#endif
7816
799775ff
RS
7817/* On older GCC versions, just putting x_error_quitter
7818 after x_error_handler prevents inlining into the former. */
7819
7820static void NO_INLINE
c118dd06
JB
7821x_error_quitter (display, error)
7822 Display *display;
7823 XErrorEvent *error;
7824{
7a13e894 7825 char buf[256], buf1[356];
dc6f92b8 7826
9e69bfa4
RS
7827 /* Ignore BadName errors. They can happen because of fonts
7828 or colors that are not defined. */
7829
7830 if (error->error_code == BadName)
7831 return;
7832
58769bee 7833 /* Note that there is no real way portable across R3/R4 to get the
c118dd06 7834 original error handler. */
dc6f92b8 7835
c118dd06 7836 XGetErrorText (display, error->error_code, buf, sizeof (buf));
0a0fdc70 7837 sprintf (buf1, "X protocol error: %s on protocol request %d",
c118dd06 7838 buf, error->request_code);
7a13e894 7839 x_connection_closed (display, buf1);
dc6f92b8
JB
7840}
7841
0da1ab50 7842
e99db5a1
RS
7843/* This is the handler for X IO errors, always.
7844 It kills all frames on the display that we lost touch with.
7845 If that was the only one, it prints an error message and kills Emacs. */
7a13e894 7846
c118dd06 7847static int
e99db5a1 7848x_io_error_quitter (display)
c118dd06 7849 Display *display;
c118dd06 7850{
e99db5a1 7851 char buf[256];
dc6f92b8 7852
e99db5a1
RS
7853 sprintf (buf, "Connection lost to X server `%s'", DisplayString (display));
7854 x_connection_closed (display, buf);
06a2c219 7855 return 0;
dc6f92b8 7856}
dc6f92b8 7857\f
f451eb13
JB
7858/* Changing the font of the frame. */
7859
76bcdf39
RS
7860/* Give frame F the font named FONTNAME as its default font, and
7861 return the full name of that font. FONTNAME may be a wildcard
7862 pattern; in that case, we choose some font that fits the pattern.
7863 The return value shows which font we chose. */
7864
b5cf7a0e 7865Lisp_Object
f676886a
JB
7866x_new_font (f, fontname)
7867 struct frame *f;
dc6f92b8
JB
7868 register char *fontname;
7869{
dc43ef94 7870 struct font_info *fontp
ee569018 7871 = FS_LOAD_FONT (f, 0, fontname, -1);
dc6f92b8 7872
dc43ef94
KH
7873 if (!fontp)
7874 return Qnil;
2224a5fc 7875
0899d58c
KS
7876 FRAME_FONT (f) = (XFontStruct *) (fontp->font);
7877 FRAME_BASELINE_OFFSET (f) = fontp->baseline_offset;
7878 FRAME_FONTSET (f) = -1;
7879
6875d1ae
KH
7880 FRAME_COLUMN_WIDTH (f) = fontp->average_width;
7881 FRAME_SPACE_WIDTH (f) = fontp->space_width;
0899d58c 7882 FRAME_LINE_HEIGHT (f) = FONT_HEIGHT (FRAME_FONT (f));
976b73d7 7883
5958f265 7884 compute_fringe_widths (f, 1);
976b73d7 7885
b2cad826 7886 /* Compute the scroll bar width in character columns. */
0899d58c 7887 if (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) > 0)
b2cad826 7888 {
0899d58c
KS
7889 int wid = FRAME_COLUMN_WIDTH (f);
7890 FRAME_CONFIG_SCROLL_BAR_COLS (f)
7891 = (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) + wid-1) / wid;
b2cad826
KH
7892 }
7893 else
4e61bddf 7894 {
0899d58c
KS
7895 int wid = FRAME_COLUMN_WIDTH (f);
7896 FRAME_CONFIG_SCROLL_BAR_COLS (f) = (14 + wid - 1) / wid;
4e61bddf 7897 }
b2cad826 7898
f676886a 7899 /* Now make the frame display the given font. */
c118dd06 7900 if (FRAME_X_WINDOW (f) != 0)
dc6f92b8 7901 {
7556890b 7902 XSetFont (FRAME_X_DISPLAY (f), f->output_data.x->normal_gc,
0899d58c 7903 FRAME_FONT (f)->fid);
7556890b 7904 XSetFont (FRAME_X_DISPLAY (f), f->output_data.x->reverse_gc,
0899d58c 7905 FRAME_FONT (f)->fid);
7556890b 7906 XSetFont (FRAME_X_DISPLAY (f), f->output_data.x->cursor_gc,
0899d58c 7907 FRAME_FONT (f)->fid);
3497f73e
GM
7908
7909 /* Don't change the size of a tip frame; there's no point in
7910 doing it because it's done in Fx_show_tip, and it leads to
7911 problems because the tip frame has no widget. */
7912 if (NILP (tip_frame) || XFRAME (tip_frame) != f)
0899d58c 7913 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
dc6f92b8
JB
7914 }
7915
dc43ef94
KH
7916 return build_string (fontp->full_name);
7917}
7918
7919/* Give frame F the fontset named FONTSETNAME as its default font, and
7920 return the full name of that fontset. FONTSETNAME may be a wildcard
b5210ea7
KH
7921 pattern; in that case, we choose some fontset that fits the pattern.
7922 The return value shows which fontset we chose. */
b5cf7a0e 7923
dc43ef94
KH
7924Lisp_Object
7925x_new_fontset (f, fontsetname)
7926 struct frame *f;
7927 char *fontsetname;
7928{
ee569018 7929 int fontset = fs_query_fontset (build_string (fontsetname), 0);
dc43ef94 7930 Lisp_Object result;
b5cf7a0e 7931
dc43ef94
KH
7932 if (fontset < 0)
7933 return Qnil;
b5cf7a0e 7934
0899d58c 7935 if (FRAME_FONTSET (f) == fontset)
2da424f1
KH
7936 /* This fontset is already set in frame F. There's nothing more
7937 to do. */
ee569018 7938 return fontset_name (fontset);
dc43ef94 7939
d5db4077 7940 result = x_new_font (f, (SDATA (fontset_ascii (fontset))));
dc43ef94
KH
7941
7942 if (!STRINGP (result))
7943 /* Can't load ASCII font. */
7944 return Qnil;
7945
7946 /* Since x_new_font doesn't update any fontset information, do it now. */
0899d58c 7947 FRAME_FONTSET (f) = fontset;
dc43ef94 7948
f5d11644
GM
7949#ifdef HAVE_X_I18N
7950 if (FRAME_XIC (f)
7951 && (FRAME_XIC_STYLE (f) & (XIMPreeditPosition | XIMStatusArea)))
d5db4077 7952 xic_set_xfontset (f, SDATA (fontset_ascii (fontset)));
f5d11644 7953#endif
7d0393cf 7954
dc43ef94 7955 return build_string (fontsetname);
dc6f92b8 7956}
f5d11644
GM
7957
7958\f
7959/***********************************************************************
7960 X Input Methods
7961 ***********************************************************************/
7962
7963#ifdef HAVE_X_I18N
7964
7965#ifdef HAVE_X11R6
7966
7967/* XIM destroy callback function, which is called whenever the
7968 connection to input method XIM dies. CLIENT_DATA contains a
7969 pointer to the x_display_info structure corresponding to XIM. */
7970
7971static void
7972xim_destroy_callback (xim, client_data, call_data)
7973 XIM xim;
7974 XPointer client_data;
7975 XPointer call_data;
7976{
7977 struct x_display_info *dpyinfo = (struct x_display_info *) client_data;
7978 Lisp_Object frame, tail;
7d0393cf 7979
f5d11644 7980 BLOCK_INPUT;
7d0393cf 7981
f5d11644
GM
7982 /* No need to call XDestroyIC.. */
7983 FOR_EACH_FRAME (tail, frame)
7984 {
7985 struct frame *f = XFRAME (frame);
7986 if (FRAME_X_DISPLAY_INFO (f) == dpyinfo)
7987 {
7988 FRAME_XIC (f) = NULL;
c27ed90a 7989 xic_free_xfontset (f);
f5d11644
GM
7990 }
7991 }
7d0393cf 7992
f5d11644
GM
7993 /* No need to call XCloseIM. */
7994 dpyinfo->xim = NULL;
7995 XFree (dpyinfo->xim_styles);
7996 UNBLOCK_INPUT;
7997}
7998
7999#endif /* HAVE_X11R6 */
8000
dbd4b028
DL
8001#ifdef HAVE_X11R6
8002/* This isn't prototyped in OSF 5.0 or 5.1a. */
8003extern char *XSetIMValues P_ ((XIM, ...));
8004#endif
8005
f5d11644
GM
8006/* Open the connection to the XIM server on display DPYINFO.
8007 RESOURCE_NAME is the resource name Emacs uses. */
8008
8009static void
8010xim_open_dpy (dpyinfo, resource_name)
8011 struct x_display_info *dpyinfo;
8012 char *resource_name;
8013{
8014 XIM xim;
8015
7e7ade6e 8016#ifdef HAVE_XIM
51f3cc3b 8017 if (use_xim)
f5d11644 8018 {
51f3cc3b
DL
8019 xim = XOpenIM (dpyinfo->display, dpyinfo->xrdb, resource_name,
8020 EMACS_CLASS);
8021 dpyinfo->xim = xim;
8022
8023 if (xim)
8024 {
f5d11644 8025#ifdef HAVE_X11R6
51f3cc3b 8026 XIMCallback destroy;
f5d11644 8027#endif
7d0393cf 8028
51f3cc3b
DL
8029 /* Get supported styles and XIM values. */
8030 XGetIMValues (xim, XNQueryInputStyle, &dpyinfo->xim_styles, NULL);
7d0393cf 8031
f5d11644 8032#ifdef HAVE_X11R6
51f3cc3b
DL
8033 destroy.callback = xim_destroy_callback;
8034 destroy.client_data = (XPointer)dpyinfo;
8035 XSetIMValues (xim, XNDestroyCallback, &destroy, NULL);
f5d11644 8036#endif
51f3cc3b 8037 }
f5d11644 8038 }
7d0393cf 8039
51f3cc3b 8040 else
7e7ade6e 8041#endif /* HAVE_XIM */
51f3cc3b 8042 dpyinfo->xim = NULL;
f5d11644
GM
8043}
8044
8045
b9de836c 8046#ifdef HAVE_X11R6_XIM
f5d11644
GM
8047
8048struct xim_inst_t
8049{
8050 struct x_display_info *dpyinfo;
8051 char *resource_name;
8052};
8053
8054/* XIM instantiate callback function, which is called whenever an XIM
1fcfb866 8055 server is available. DISPLAY is the display of the XIM.
f5d11644
GM
8056 CLIENT_DATA contains a pointer to an xim_inst_t structure created
8057 when the callback was registered. */
8058
8059static void
8060xim_instantiate_callback (display, client_data, call_data)
8061 Display *display;
8062 XPointer client_data;
8063 XPointer call_data;
8064{
8065 struct xim_inst_t *xim_inst = (struct xim_inst_t *) client_data;
8066 struct x_display_info *dpyinfo = xim_inst->dpyinfo;
8067
8068 /* We don't support multiple XIM connections. */
8069 if (dpyinfo->xim)
8070 return;
7d0393cf 8071
f5d11644
GM
8072 xim_open_dpy (dpyinfo, xim_inst->resource_name);
8073
8074 /* Create XIC for the existing frames on the same display, as long
8075 as they have no XIC. */
8076 if (dpyinfo->xim && dpyinfo->reference_count > 0)
8077 {
8078 Lisp_Object tail, frame;
8079
8080 BLOCK_INPUT;
8081 FOR_EACH_FRAME (tail, frame)
8082 {
8083 struct frame *f = XFRAME (frame);
7d0393cf 8084
f5d11644
GM
8085 if (FRAME_X_DISPLAY_INFO (f) == xim_inst->dpyinfo)
8086 if (FRAME_XIC (f) == NULL)
8087 {
8088 create_frame_xic (f);
8089 if (FRAME_XIC_STYLE (f) & XIMStatusArea)
8090 xic_set_statusarea (f);
8091 if (FRAME_XIC_STYLE (f) & XIMPreeditPosition)
8092 {
8093 struct window *w = XWINDOW (f->selected_window);
8094 xic_set_preeditarea (w, w->cursor.x, w->cursor.y);
8095 }
8096 }
8097 }
7d0393cf 8098
f5d11644
GM
8099 UNBLOCK_INPUT;
8100 }
8101}
8102
b9de836c 8103#endif /* HAVE_X11R6_XIM */
f5d11644
GM
8104
8105
8106/* Open a connection to the XIM server on display DPYINFO.
8107 RESOURCE_NAME is the resource name for Emacs. On X11R5, open the
8108 connection only at the first time. On X11R6, open the connection
8109 in the XIM instantiate callback function. */
8110
8111static void
8112xim_initialize (dpyinfo, resource_name)
8113 struct x_display_info *dpyinfo;
8114 char *resource_name;
8115{
7e7ade6e 8116#ifdef HAVE_XIM
51f3cc3b
DL
8117 if (use_xim)
8118 {
b9de836c 8119#ifdef HAVE_X11R6_XIM
51f3cc3b
DL
8120 struct xim_inst_t *xim_inst;
8121 int len;
8122
8123 dpyinfo->xim = NULL;
8124 xim_inst = (struct xim_inst_t *) xmalloc (sizeof (struct xim_inst_t));
8125 xim_inst->dpyinfo = dpyinfo;
8126 len = strlen (resource_name);
8127 xim_inst->resource_name = (char *) xmalloc (len + 1);
8128 bcopy (resource_name, xim_inst->resource_name, len + 1);
8129 XRegisterIMInstantiateCallback (dpyinfo->display, dpyinfo->xrdb,
8130 resource_name, EMACS_CLASS,
8131 xim_instantiate_callback,
bcea31c2
DL
8132 /* This is XPointer in XFree86
8133 but (XPointer *) on Tru64, at
8134 least, hence the configure test. */
fdc39b59 8135 (XRegisterIMInstantiateCallback_arg6) xim_inst);
b9de836c 8136#else /* not HAVE_X11R6_XIM */
51f3cc3b
DL
8137 dpyinfo->xim = NULL;
8138 xim_open_dpy (dpyinfo, resource_name);
b9de836c 8139#endif /* not HAVE_X11R6_XIM */
7d0393cf 8140
51f3cc3b
DL
8141 }
8142 else
7e7ade6e 8143#endif /* HAVE_XIM */
51f3cc3b 8144 dpyinfo->xim = NULL;
f5d11644
GM
8145}
8146
8147
8148/* Close the connection to the XIM server on display DPYINFO. */
8149
8150static void
8151xim_close_dpy (dpyinfo)
8152 struct x_display_info *dpyinfo;
8153{
7e7ade6e 8154#ifdef HAVE_XIM
51f3cc3b
DL
8155 if (use_xim)
8156 {
b9de836c 8157#ifdef HAVE_X11R6_XIM
51f3cc3b
DL
8158 if (dpyinfo->display)
8159 XUnregisterIMInstantiateCallback (dpyinfo->display, dpyinfo->xrdb,
8160 NULL, EMACS_CLASS,
8161 xim_instantiate_callback, NULL);
b9de836c 8162#endif /* not HAVE_X11R6_XIM */
51f3cc3b
DL
8163 if (dpyinfo->display)
8164 XCloseIM (dpyinfo->xim);
8165 dpyinfo->xim = NULL;
8166 XFree (dpyinfo->xim_styles);
8167 }
7e7ade6e 8168#endif /* HAVE_XIM */
f5d11644
GM
8169}
8170
b9de836c 8171#endif /* not HAVE_X11R6_XIM */
f5d11644
GM
8172
8173
dc6f92b8 8174\f
2e365682
RS
8175/* Calculate the absolute position in frame F
8176 from its current recorded position values and gravity. */
8177
dfcf069d 8178void
43bca5d5 8179x_calc_absolute_position (f)
f676886a 8180 struct frame *f;
dc6f92b8 8181{
0899d58c 8182 int flags = f->size_hint_flags;
c81412a0 8183
9829ddba
RS
8184 /* We have nothing to do if the current position
8185 is already for the top-left corner. */
8186 if (! ((flags & XNegative) || (flags & YNegative)))
8187 return;
8188
6dba1858
RS
8189 /* Treat negative positions as relative to the leftmost bottommost
8190 position that fits on the screen. */
20f55f9a 8191 if (flags & XNegative)
0899d58c 8192 f->left_pos = (FRAME_X_DISPLAY_INFO (f)->width
c83c9f9d 8193 - FRAME_PIXEL_WIDTH (f) + f->left_pos);
dc6f92b8 8194
7708ced0 8195 {
0899d58c 8196 int height = FRAME_PIXEL_HEIGHT (f);
06a2c219 8197
7708ced0
GM
8198#if defined USE_X_TOOLKIT && defined USE_MOTIF
8199 /* Something is fishy here. When using Motif, starting Emacs with
8200 `-g -0-0', the frame appears too low by a few pixels.
8201
8202 This seems to be so because initially, while Emacs is starting,
8203 the column widget's height and the frame's pixel height are
8204 different. The column widget's height is the right one. In
8205 later invocations, when Emacs is up, the frame's pixel height
8206 is right, though.
8207
8208 It's not obvious where the initial small difference comes from.
8209 2000-12-01, gerd. */
7d0393cf 8210
7708ced0 8211 XtVaGetValues (f->output_data.x->column_widget, XtNheight, &height, NULL);
06a2c219 8212#endif
2e365682 8213
7708ced0 8214 if (flags & YNegative)
c83c9f9d 8215 f->top_pos = (FRAME_X_DISPLAY_INFO (f)->height - height + f->top_pos);
7708ced0 8216 }
7d0393cf 8217
3a35ab44
RS
8218 /* The left_pos and top_pos
8219 are now relative to the top and left screen edges,
8220 so the flags should correspond. */
0899d58c 8221 f->size_hint_flags &= ~ (XNegative | YNegative);
dc6f92b8
JB
8222}
8223
3a35ab44
RS
8224/* CHANGE_GRAVITY is 1 when calling from Fset_frame_position,
8225 to really change the position, and 0 when calling from
8226 x_make_frame_visible (in that case, XOFF and YOFF are the current
aa3ff7c9
KH
8227 position values). It is -1 when calling from x_set_frame_parameters,
8228 which means, do adjust for borders but don't change the gravity. */
3a35ab44 8229
dfcf069d 8230void
dc05a16b 8231x_set_offset (f, xoff, yoff, change_gravity)
f676886a 8232 struct frame *f;
dc6f92b8 8233 register int xoff, yoff;
dc05a16b 8234 int change_gravity;
dc6f92b8 8235{
4a4cbdd5
KH
8236 int modified_top, modified_left;
8237
d692a3d5 8238 if (change_gravity != 0)
3a35ab44 8239 {
d692a3d5
JD
8240 FRAME_X_OUTPUT (f)->left_before_move = f->left_pos;
8241 FRAME_X_OUTPUT (f)->top_before_move = f->top_pos;
8242
0899d58c
KS
8243 f->top_pos = yoff;
8244 f->left_pos = xoff;
8245 f->size_hint_flags &= ~ (XNegative | YNegative);
3a35ab44 8246 if (xoff < 0)
0899d58c 8247 f->size_hint_flags |= XNegative;
3a35ab44 8248 if (yoff < 0)
0899d58c
KS
8249 f->size_hint_flags |= YNegative;
8250 f->win_gravity = NorthWestGravity;
3a35ab44 8251 }
43bca5d5 8252 x_calc_absolute_position (f);
0666d82c 8253
dc6f92b8 8254 BLOCK_INPUT;
c32cdd9a 8255 x_wm_set_size_hint (f, (long) 0, 0);
3a35ab44 8256
0899d58c
KS
8257 modified_left = f->left_pos;
8258 modified_top = f->top_pos;
8f5b9e34 8259
d692a3d5 8260 if (change_gravity != 0 && FRAME_X_DISPLAY_INFO (f)->wm_type == X_WMTYPE_A)
c1f0671a 8261 {
068ae0fd
JD
8262 /* Some WMs (twm, wmaker at least) has an offset that is smaller
8263 than the WM decorations. So we use the calculated offset instead
8264 of the WM decoration sizes here (x/y_pixels_outer_diff). */
8265 modified_left += FRAME_X_OUTPUT (f)->move_offset_left;
8266 modified_top += FRAME_X_OUTPUT (f)->move_offset_top;
c1f0671a
JD
8267 }
8268
488dd4c4
JD
8269 XMoveWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
8270 modified_left, modified_top);
c1f0671a 8271
d692a3d5
JD
8272 x_sync_with_move (f, f->left_pos, f->top_pos,
8273 FRAME_X_DISPLAY_INFO (f)->wm_type == X_WMTYPE_UNKNOWN
8274 ? 1 : 0);
8275
8276 /* change_gravity is non-zero when this function is called from Lisp to
8277 programmatically move a frame. In that case, we call
8278 x_check_expected_move to discover if we have a "Type A" or "Type B"
8279 window manager, and, for a "Type A" window manager, adjust the position
8280 of the frame.
8281
8282 We call x_check_expected_move if a programmatic move occurred, and
8283 either the window manager type (A/B) is unknown or it is Type A but we
8284 need to compute the top/left offset adjustment for this frame. */
8285
8286 if (change_gravity != 0 &&
8287 (FRAME_X_DISPLAY_INFO (f)->wm_type == X_WMTYPE_UNKNOWN
8288 || (FRAME_X_DISPLAY_INFO (f)->wm_type == X_WMTYPE_A
8289 && (FRAME_X_OUTPUT (f)->move_offset_left == 0
8290 && FRAME_X_OUTPUT (f)->move_offset_top == 0))))
8291 x_check_expected_move (f, modified_left, modified_top);
c1f0671a 8292
dc6f92b8
JB
8293 UNBLOCK_INPUT;
8294}
8295
d0fa3e56
EZ
8296/* Check if we need to resize the frame due to a fullscreen request.
8297 If so needed, resize the frame. */
8298static void
8299x_check_fullscreen (f)
8300 struct frame *f;
8301{
0899d58c 8302 if (f->want_fullscreen & FULLSCREEN_BOTH)
d0fa3e56
EZ
8303 {
8304 int width, height, ign;
7d0393cf 8305
0899d58c 8306 x_real_positions (f, &f->left_pos, &f->top_pos);
d0fa3e56
EZ
8307
8308 x_fullscreen_adjust (f, &width, &height, &ign, &ign);
7d0393cf 8309
d0fa3e56
EZ
8310 /* We do not need to move the window, it shall be taken care of
8311 when setting WM manager hints.
8312 If the frame is visible already, the position is checked by
c1f0671a 8313 x_check_expected_move. */
0899d58c 8314 if (FRAME_COLS (f) != width || FRAME_LINES (f) != height)
d0fa3e56
EZ
8315 {
8316 change_frame_size (f, height, width, 0, 1, 0);
8317 SET_FRAME_GARBAGED (f);
8318 cancel_mouse_face (f);
8319
8320 /* Wait for the change of frame size to occur */
0899d58c 8321 f->want_fullscreen |= FULLSCREEN_WAIT;
d0fa3e56
EZ
8322 }
8323 }
8324}
8325
d692a3d5
JD
8326/* This function is called by x_set_offset to determine whether the window
8327 manager interfered with the positioning of the frame. Type A window
8328 managers position the surrounding window manager decorations a small
8329 amount above and left of the user-supplied position. Type B window
8330 managers position the surrounding window manager decorations at the
8331 user-specified position. If we detect a Type A window manager, we
8332 compensate by moving the window right and down by the proper amount. */
8333
d0fa3e56 8334static void
d692a3d5 8335x_check_expected_move (f, expected_left, expected_top)
d0fa3e56 8336 struct frame *f;
d692a3d5
JD
8337 int expected_left;
8338 int expected_top;
d0fa3e56 8339{
d692a3d5
JD
8340 int count = 0, current_left = 0, current_top = 0;
8341
8342 /* x_real_positions returns the left and top offsets of the outermost
8343 window manager window around the frame. */
068ae0fd 8344
d692a3d5
JD
8345 x_real_positions (f, &current_left, &current_top);
8346
8347 if (current_left != expected_left || current_top != expected_top)
c1f0671a 8348 {
d692a3d5
JD
8349 /* It's a "Type A" window manager. */
8350
8351 int adjusted_left;
8352 int adjusted_top;
8353
068ae0fd 8354 FRAME_X_DISPLAY_INFO (f)->wm_type = X_WMTYPE_A;
d692a3d5
JD
8355 FRAME_X_OUTPUT (f)->move_offset_left = expected_left - current_left;
8356 FRAME_X_OUTPUT (f)->move_offset_top = expected_top - current_top;
8357
8358 /* Now fix the mispositioned frame's location. */
068ae0fd 8359
d692a3d5
JD
8360 adjusted_left = expected_left + FRAME_X_OUTPUT (f)->move_offset_left;
8361 adjusted_top = expected_top + FRAME_X_OUTPUT (f)->move_offset_top;
8362
8363 XMoveWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
8364 adjusted_left, adjusted_top);
8365
8366 x_sync_with_move (f, expected_left, expected_top, 0);
c1f0671a 8367 }
d692a3d5
JD
8368 else
8369 /* It's a "Type B" window manager. We don't have to adjust the
8370 frame's position. */
8371
c1f0671a 8372 FRAME_X_DISPLAY_INFO (f)->wm_type = X_WMTYPE_B;
d692a3d5
JD
8373}
8374
8375
8376/* Wait for XGetGeometry to return up-to-date position information for a
8377 recently-moved frame. Call this immediately after calling XMoveWindow.
8378 If FUZZY is non-zero, then LEFT and TOP are just estimates of where the
8379 frame has been moved to, so we use a fuzzy position comparison instead
8380 of an exact comparison. */
8381
8382static void
8383x_sync_with_move (f, left, top, fuzzy)
8384 struct frame *f;
8385 int left, top, fuzzy;
8386{
8387 int count = 0;
8388
8389 while (count++ < 50)
8390 {
8391 int current_left = 0, current_top = 0;
8392
8393 /* In theory, this call to XSync only needs to happen once, but in
8394 practice, it doesn't seem to work, hence the need for the surrounding
8395 loop. */
8396
8397 XSync (FRAME_X_DISPLAY (f), False);
8398 x_real_positions (f, &current_left, &current_top);
8399
8400 if (fuzzy)
8401 {
8402 /* The left fuzz-factor is 10 pixels. The top fuzz-factor is 40
8403 pixels. */
d0fa3e56 8404
d692a3d5
JD
8405 if (abs (current_left - left) <= 10 && abs (current_top - top) <= 40)
8406 return;
d0fa3e56 8407 }
d692a3d5
JD
8408 else if (current_left == left && current_top == top)
8409 return;
8410 }
8411
8412 /* As a last resort, just wait 0.5 seconds and hope that XGetGeometry
8413 will then return up-to-date position info. */
8414
8415 wait_reading_process_output (0, 500000, 0, 0, Qnil, NULL, 0);
d0fa3e56
EZ
8416}
8417
8418
499b1844
GM
8419/* Change the size of frame F's X window to COLS/ROWS in the case F
8420 doesn't have a widget. If CHANGE_GRAVITY is 1, we change to
8421 top-left-corner window gravity for this size change and subsequent
8422 size changes. Otherwise we leave the window gravity unchanged. */
8423
8424static void
8425x_set_window_size_1 (f, change_gravity, cols, rows)
f676886a 8426 struct frame *f;
bc20ebbf 8427 int change_gravity;
b1c884c3 8428 int cols, rows;
dc6f92b8
JB
8429{
8430 int pixelwidth, pixelheight;
80fd1fe2 8431
b1c884c3 8432 check_frame_size (f, &rows, &cols);
0899d58c 8433 f->scroll_bar_actual_width
b2cad826
KH
8434 = (!FRAME_HAS_VERTICAL_SCROLL_BARS (f)
8435 ? 0
0899d58c
KS
8436 : FRAME_CONFIG_SCROLL_BAR_WIDTH (f) > 0
8437 ? FRAME_CONFIG_SCROLL_BAR_WIDTH (f)
8438 : (FRAME_CONFIG_SCROLL_BAR_COLS (f) * FRAME_COLUMN_WIDTH (f)));
976b73d7 8439
5958f265 8440 compute_fringe_widths (f, 0);
976b73d7 8441
0899d58c
KS
8442 pixelwidth = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, cols);
8443 pixelheight = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, rows);
dc6f92b8 8444
0899d58c 8445 f->win_gravity = NorthWestGravity;
c32cdd9a 8446 x_wm_set_size_hint (f, (long) 0, 0);
6ccf47d1 8447
334208b7
RS
8448 XSync (FRAME_X_DISPLAY (f), False);
8449 XResizeWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
8450 pixelwidth, pixelheight);
b1c884c3
JB
8451
8452 /* Now, strictly speaking, we can't be sure that this is accurate,
8453 but the window manager will get around to dealing with the size
8454 change request eventually, and we'll hear how it went when the
dbc4e1c1
JB
8455 ConfigureNotify event gets here.
8456
8457 We could just not bother storing any of this information here,
8458 and let the ConfigureNotify event set everything up, but that
fddd5ceb 8459 might be kind of confusing to the Lisp code, since size changes
dbc4e1c1 8460 wouldn't be reported in the frame parameters until some random
fddd5ceb
RS
8461 point in the future when the ConfigureNotify event arrives.
8462
8463 We pass 1 for DELAY since we can't run Lisp code inside of
8464 a BLOCK_INPUT. */
7d1e984f 8465 change_frame_size (f, rows, cols, 0, 1, 0);
0899d58c
KS
8466 FRAME_PIXEL_WIDTH (f) = pixelwidth;
8467 FRAME_PIXEL_HEIGHT (f) = pixelheight;
b1c884c3 8468
aee9a898
RS
8469 /* We've set {FRAME,PIXEL}_{WIDTH,HEIGHT} to the values we hope to
8470 receive in the ConfigureNotify event; if we get what we asked
8471 for, then the event won't cause the screen to become garbaged, so
8472 we have to make sure to do it here. */
8473 SET_FRAME_GARBAGED (f);
8474
8475 XFlush (FRAME_X_DISPLAY (f));
499b1844
GM
8476}
8477
8478
8479/* Call this to change the size of frame F's x-window.
8480 If CHANGE_GRAVITY is 1, we change to top-left-corner window gravity
8481 for this size change and subsequent size changes.
8482 Otherwise we leave the window gravity unchanged. */
aee9a898 8483
499b1844
GM
8484void
8485x_set_window_size (f, change_gravity, cols, rows)
8486 struct frame *f;
8487 int change_gravity;
8488 int cols, rows;
8489{
8490 BLOCK_INPUT;
8491
488dd4c4
JD
8492#ifdef USE_GTK
8493 if (FRAME_GTK_WIDGET (f))
8494 xg_frame_set_char_size (f, cols, rows);
8495 else
8496 x_set_window_size_1 (f, change_gravity, cols, rows);
8497#elif USE_X_TOOLKIT
7d0393cf 8498
f1f4d345 8499 if (f->output_data.x->widget != NULL)
499b1844
GM
8500 {
8501 /* The x and y position of the widget is clobbered by the
8502 call to XtSetValues within EmacsFrameSetCharSize.
8503 This is a real kludge, but I don't understand Xt so I can't
8504 figure out a correct fix. Can anyone else tell me? -- rms. */
8505 int xpos = f->output_data.x->widget->core.x;
8506 int ypos = f->output_data.x->widget->core.y;
8507 EmacsFrameSetCharSize (f->output_data.x->edit_widget, cols, rows);
8508 f->output_data.x->widget->core.x = xpos;
8509 f->output_data.x->widget->core.y = ypos;
8510 }
8511 else
8512 x_set_window_size_1 (f, change_gravity, cols, rows);
7d0393cf 8513
499b1844 8514#else /* not USE_X_TOOLKIT */
7d0393cf 8515
499b1844 8516 x_set_window_size_1 (f, change_gravity, cols, rows);
7d0393cf 8517
aee9a898
RS
8518#endif /* not USE_X_TOOLKIT */
8519
4d73d038 8520 /* If cursor was outside the new size, mark it as off. */
06a2c219 8521 mark_window_cursors_off (XWINDOW (f->root_window));
4d73d038 8522
aee9a898 8523 /* Clear out any recollection of where the mouse highlighting was,
7d0393cf 8524 since it might be in a place that's outside the new frame size.
aee9a898
RS
8525 Actually checking whether it is outside is a pain in the neck,
8526 so don't try--just let the highlighting be done afresh with new size. */
e687d06e 8527 cancel_mouse_face (f);
dbc4e1c1 8528
dc6f92b8
JB
8529 UNBLOCK_INPUT;
8530}
dc6f92b8 8531\f
d047c4eb 8532/* Mouse warping. */
dc6f92b8 8533
9b378208 8534void
f676886a
JB
8535x_set_mouse_position (f, x, y)
8536 struct frame *f;
dc6f92b8
JB
8537 int x, y;
8538{
8539 int pix_x, pix_y;
8540
0899d58c
KS
8541 pix_x = FRAME_COL_TO_PIXEL_X (f, x) + FRAME_COLUMN_WIDTH (f) / 2;
8542 pix_y = FRAME_LINE_TO_PIXEL_Y (f, y) + FRAME_LINE_HEIGHT (f) / 2;
f451eb13
JB
8543
8544 if (pix_x < 0) pix_x = 0;
0899d58c 8545 if (pix_x > FRAME_PIXEL_WIDTH (f)) pix_x = FRAME_PIXEL_WIDTH (f);
f451eb13
JB
8546
8547 if (pix_y < 0) pix_y = 0;
0899d58c 8548 if (pix_y > FRAME_PIXEL_HEIGHT (f)) pix_y = FRAME_PIXEL_HEIGHT (f);
dc6f92b8
JB
8549
8550 BLOCK_INPUT;
dc6f92b8 8551
334208b7
RS
8552 XWarpPointer (FRAME_X_DISPLAY (f), None, FRAME_X_WINDOW (f),
8553 0, 0, 0, 0, pix_x, pix_y);
dc6f92b8
JB
8554 UNBLOCK_INPUT;
8555}
8556
9b378208
RS
8557/* Move the mouse to position pixel PIX_X, PIX_Y relative to frame F. */
8558
8559void
8560x_set_mouse_pixel_position (f, pix_x, pix_y)
8561 struct frame *f;
8562 int pix_x, pix_y;
8563{
8564 BLOCK_INPUT;
8565
334208b7
RS
8566 XWarpPointer (FRAME_X_DISPLAY (f), None, FRAME_X_WINDOW (f),
8567 0, 0, 0, 0, pix_x, pix_y);
9b378208
RS
8568 UNBLOCK_INPUT;
8569}
d047c4eb
KH
8570\f
8571/* focus shifting, raising and lowering. */
9b378208 8572
dfcf069d 8573void
f676886a
JB
8574x_focus_on_frame (f)
8575 struct frame *f;
dc6f92b8 8576{
1fb20991 8577#if 0 /* This proves to be unpleasant. */
f676886a 8578 x_raise_frame (f);
1fb20991 8579#endif
6d4238f3
JB
8580#if 0
8581 /* I don't think that the ICCCM allows programs to do things like this
8582 without the interaction of the window manager. Whatever you end up
f676886a 8583 doing with this code, do it to x_unfocus_frame too. */
334208b7 8584 XSetInputFocus (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
dc6f92b8 8585 RevertToPointerRoot, CurrentTime);
c118dd06 8586#endif /* ! 0 */
dc6f92b8
JB
8587}
8588
dfcf069d 8589void
f676886a
JB
8590x_unfocus_frame (f)
8591 struct frame *f;
dc6f92b8 8592{
6d4238f3 8593#if 0
f676886a 8594 /* Look at the remarks in x_focus_on_frame. */
0f941935 8595 if (FRAME_X_DISPLAY_INFO (f)->x_focus_frame == f)
334208b7 8596 XSetInputFocus (FRAME_X_DISPLAY (f), PointerRoot,
dc6f92b8 8597 RevertToPointerRoot, CurrentTime);
c118dd06 8598#endif /* ! 0 */
dc6f92b8
JB
8599}
8600
f676886a 8601/* Raise frame F. */
dc6f92b8 8602
dfcf069d 8603void
f676886a
JB
8604x_raise_frame (f)
8605 struct frame *f;
dc6f92b8 8606{
3a88c238 8607 if (f->async_visible)
dc6f92b8
JB
8608 {
8609 BLOCK_INPUT;
2436a4e4 8610 XRaiseWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f));
334208b7 8611 XFlush (FRAME_X_DISPLAY (f));
dc6f92b8
JB
8612 UNBLOCK_INPUT;
8613 }
8614}
8615
f676886a 8616/* Lower frame F. */
dc6f92b8 8617
dfcf069d 8618void
f676886a
JB
8619x_lower_frame (f)
8620 struct frame *f;
dc6f92b8 8621{
3a88c238 8622 if (f->async_visible)
dc6f92b8
JB
8623 {
8624 BLOCK_INPUT;
2436a4e4 8625 XLowerWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f));
334208b7 8626 XFlush (FRAME_X_DISPLAY (f));
dc6f92b8
JB
8627 UNBLOCK_INPUT;
8628 }
8629}
8630
dbc4e1c1 8631static void
6b0442dc 8632XTframe_raise_lower (f, raise_flag)
dbc4e1c1 8633 FRAME_PTR f;
6b0442dc 8634 int raise_flag;
dbc4e1c1 8635{
6b0442dc 8636 if (raise_flag)
dbc4e1c1
JB
8637 x_raise_frame (f);
8638 else
8639 x_lower_frame (f);
8640}
d047c4eb
KH
8641\f
8642/* Change of visibility. */
dc6f92b8 8643
9382638d
KH
8644/* This tries to wait until the frame is really visible.
8645 However, if the window manager asks the user where to position
8646 the frame, this will return before the user finishes doing that.
8647 The frame will not actually be visible at that time,
8648 but it will become visible later when the window manager
8649 finishes with it. */
8650
dfcf069d 8651void
f676886a
JB
8652x_make_frame_visible (f)
8653 struct frame *f;
dc6f92b8 8654{
990ba854 8655 Lisp_Object type;
1aa6072f 8656 int original_top, original_left;
31be9251
GM
8657 int retry_count = 2;
8658
8659 retry:
dc6f92b8 8660
dc6f92b8 8661 BLOCK_INPUT;
dc6f92b8 8662
990ba854
RS
8663 type = x_icon_type (f);
8664 if (!NILP (type))
8665 x_bitmap_icon (f, type);
bdcd49ba 8666
f676886a 8667 if (! FRAME_VISIBLE_P (f))
90e65f07 8668 {
1aa6072f
RS
8669 /* We test FRAME_GARBAGED_P here to make sure we don't
8670 call x_set_offset a second time
8671 if we get to x_make_frame_visible a second time
8672 before the window gets really visible. */
8673 if (! FRAME_ICONIFIED_P (f)
8674 && ! f->output_data.x->asked_for_visible)
0899d58c 8675 x_set_offset (f, f->left_pos, f->top_pos, 0);
1aa6072f
RS
8676
8677 f->output_data.x->asked_for_visible = 1;
8678
90e65f07 8679 if (! EQ (Vx_no_window_manager, Qt))
f676886a 8680 x_wm_set_window_state (f, NormalState);
3afe33e7 8681#ifdef USE_X_TOOLKIT
d7a38a2e 8682 /* This was XtPopup, but that did nothing for an iconified frame. */
7556890b 8683 XtMapWidget (f->output_data.x->widget);
3afe33e7 8684#else /* not USE_X_TOOLKIT */
488dd4c4
JD
8685#ifdef USE_GTK
8686 gtk_widget_show_all (FRAME_GTK_OUTER_WIDGET (f));
7b76ca1c 8687 gtk_window_deiconify (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
488dd4c4 8688#else
7f9c7f94 8689 XMapRaised (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
488dd4c4 8690#endif /* not USE_GTK */
3afe33e7 8691#endif /* not USE_X_TOOLKIT */
0134a210
RS
8692#if 0 /* This seems to bring back scroll bars in the wrong places
8693 if the window configuration has changed. They seem
8694 to come back ok without this. */
ab648270 8695 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
334208b7 8696 XMapSubwindows (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
0134a210 8697#endif
90e65f07 8698 }
dc6f92b8 8699
334208b7 8700 XFlush (FRAME_X_DISPLAY (f));
90e65f07 8701
0dacf791
RS
8702 /* Synchronize to ensure Emacs knows the frame is visible
8703 before we do anything else. We do this loop with input not blocked
8704 so that incoming events are handled. */
8705 {
8706 Lisp_Object frame;
12ce2351 8707 int count;
28c01ffe
RS
8708 /* This must be before UNBLOCK_INPUT
8709 since events that arrive in response to the actions above
8710 will set it when they are handled. */
8711 int previously_visible = f->output_data.x->has_been_visible;
1aa6072f 8712
0899d58c
KS
8713 original_left = f->left_pos;
8714 original_top = f->top_pos;
c0a04927
RS
8715
8716 /* This must come after we set COUNT. */
8717 UNBLOCK_INPUT;
8718
2745e6c4 8719 /* We unblock here so that arriving X events are processed. */
1aa6072f 8720
dcb07ae9
RS
8721 /* Now move the window back to where it was "supposed to be".
8722 But don't do it if the gravity is negative.
8723 When the gravity is negative, this uses a position
28c01ffe
RS
8724 that is 3 pixels too low. Perhaps that's really the border width.
8725
8726 Don't do this if the window has never been visible before,
8727 because the window manager may choose the position
8728 and we don't want to override it. */
1aa6072f 8729
4d3f5d9a 8730 if (! FRAME_VISIBLE_P (f) && ! FRAME_ICONIFIED_P (f)
0899d58c 8731 && f->win_gravity == NorthWestGravity
28c01ffe 8732 && previously_visible)
1aa6072f 8733 {
2745e6c4
RS
8734 Drawable rootw;
8735 int x, y;
8736 unsigned int width, height, border, depth;
7d0393cf 8737
1aa6072f 8738 BLOCK_INPUT;
9829ddba 8739
06a2c219
GM
8740 /* On some window managers (such as FVWM) moving an existing
8741 window, even to the same place, causes the window manager
8742 to introduce an offset. This can cause the window to move
8743 to an unexpected location. Check the geometry (a little
8744 slow here) and then verify that the window is in the right
8745 place. If the window is not in the right place, move it
8746 there, and take the potential window manager hit. */
2745e6c4
RS
8747 XGetGeometry (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
8748 &rootw, &x, &y, &width, &height, &border, &depth);
8749
8750 if (original_left != x || original_top != y)
8751 XMoveWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
8752 original_left, original_top);
8753
1aa6072f
RS
8754 UNBLOCK_INPUT;
8755 }
9829ddba 8756
e0c1aef2 8757 XSETFRAME (frame, f);
c0a04927 8758
12ce2351
GM
8759 /* Wait until the frame is visible. Process X events until a
8760 MapNotify event has been seen, or until we think we won't get a
8761 MapNotify at all.. */
8762 for (count = input_signal_count + 10;
8763 input_signal_count < count && !FRAME_VISIBLE_P (f);)
2a6cf806 8764 {
12ce2351 8765 /* Force processing of queued events. */
334208b7 8766 x_sync (f);
12ce2351
GM
8767
8768 /* Machines that do polling rather than SIGIO have been
8769 observed to go into a busy-wait here. So we'll fake an
8770 alarm signal to let the handler know that there's something
8771 to be read. We used to raise a real alarm, but it seems
8772 that the handler isn't always enabled here. This is
8773 probably a bug. */
8b2f8d4e 8774 if (input_polling_used ())
3b2fa4e6 8775 {
12ce2351
GM
8776 /* It could be confusing if a real alarm arrives while
8777 processing the fake one. Turn it off and let the
8778 handler reset it. */
3e71d8f2 8779 extern void poll_for_input_1 P_ ((void));
bffcfca9
GM
8780 int old_poll_suppress_count = poll_suppress_count;
8781 poll_suppress_count = 1;
8782 poll_for_input_1 ();
8783 poll_suppress_count = old_poll_suppress_count;
3b2fa4e6 8784 }
12ce2351
GM
8785
8786 /* See if a MapNotify event has been processed. */
8787 FRAME_SAMPLE_VISIBILITY (f);
2a6cf806 8788 }
31be9251
GM
8789
8790 /* 2000-09-28: In
8791
8792 (let ((f (selected-frame)))
8793 (iconify-frame f)
8794 (raise-frame f))
8795
8796 the frame is not raised with various window managers on
554061d8 8797 FreeBSD, GNU/Linux and Solaris. It turns out that, for some
31be9251
GM
8798 unknown reason, the call to XtMapWidget is completely ignored.
8799 Mapping the widget a second time works. */
7d0393cf 8800
31be9251
GM
8801 if (!FRAME_VISIBLE_P (f) && --retry_count > 0)
8802 goto retry;
0dacf791 8803 }
dc6f92b8
JB
8804}
8805
06a2c219 8806/* Change from mapped state to withdrawn state. */
dc6f92b8 8807
d047c4eb
KH
8808/* Make the frame visible (mapped and not iconified). */
8809
dfcf069d 8810void
f676886a
JB
8811x_make_frame_invisible (f)
8812 struct frame *f;
dc6f92b8 8813{
546e6d5b
RS
8814 Window window;
8815
546e6d5b 8816 /* Use the frame's outermost window, not the one we normally draw on. */
2436a4e4 8817 window = FRAME_OUTER_WINDOW (f);
dc6f92b8 8818
9319ae23 8819 /* Don't keep the highlight on an invisible frame. */
0f941935
KH
8820 if (FRAME_X_DISPLAY_INFO (f)->x_highlight_frame == f)
8821 FRAME_X_DISPLAY_INFO (f)->x_highlight_frame = 0;
9319ae23 8822
5627c40e 8823#if 0/* This might add unreliability; I don't trust it -- rms. */
9319ae23 8824 if (! f->async_visible && ! f->async_iconified)
dc6f92b8 8825 return;
5627c40e 8826#endif
dc6f92b8
JB
8827
8828 BLOCK_INPUT;
c118dd06 8829
af31d76f
RS
8830 /* Before unmapping the window, update the WM_SIZE_HINTS property to claim
8831 that the current position of the window is user-specified, rather than
8832 program-specified, so that when the window is mapped again, it will be
8833 placed at the same location, without forcing the user to position it
8834 by hand again (they have already done that once for this window.) */
c32cdd9a 8835 x_wm_set_size_hint (f, (long) 0, 1);
af31d76f 8836
488dd4c4
JD
8837#ifdef USE_GTK
8838 if (FRAME_GTK_OUTER_WIDGET (f))
3c671a56
SM
8839 gtk_widget_hide (FRAME_GTK_OUTER_WIDGET (f));
8840 else
488dd4c4 8841#endif
3c671a56 8842 {
c118dd06
JB
8843#ifdef HAVE_X11R4
8844
334208b7
RS
8845 if (! XWithdrawWindow (FRAME_X_DISPLAY (f), window,
8846 DefaultScreen (FRAME_X_DISPLAY (f))))
c118dd06
JB
8847 {
8848 UNBLOCK_INPUT_RESIGNAL;
546e6d5b 8849 error ("Can't notify window manager of window withdrawal");
c118dd06 8850 }
c118dd06 8851#else /* ! defined (HAVE_X11R4) */
16bd92ea 8852
c118dd06 8853 /* Tell the window manager what we're going to do. */
dc6f92b8
JB
8854 if (! EQ (Vx_no_window_manager, Qt))
8855 {
16bd92ea 8856 XEvent unmap;
dc6f92b8 8857
16bd92ea 8858 unmap.xunmap.type = UnmapNotify;
546e6d5b 8859 unmap.xunmap.window = window;
334208b7 8860 unmap.xunmap.event = DefaultRootWindow (FRAME_X_DISPLAY (f));
16bd92ea 8861 unmap.xunmap.from_configure = False;
334208b7
RS
8862 if (! XSendEvent (FRAME_X_DISPLAY (f),
8863 DefaultRootWindow (FRAME_X_DISPLAY (f)),
16bd92ea 8864 False,
06a2c219 8865 SubstructureRedirectMaskSubstructureNotifyMask,
16bd92ea
JB
8866 &unmap))
8867 {
8868 UNBLOCK_INPUT_RESIGNAL;
546e6d5b 8869 error ("Can't notify window manager of withdrawal");
16bd92ea 8870 }
dc6f92b8
JB
8871 }
8872
16bd92ea 8873 /* Unmap the window ourselves. Cheeky! */
334208b7 8874 XUnmapWindow (FRAME_X_DISPLAY (f), window);
c118dd06 8875#endif /* ! defined (HAVE_X11R4) */
3c671a56 8876 }
dc6f92b8 8877
5627c40e
RS
8878 /* We can't distinguish this from iconification
8879 just by the event that we get from the server.
8880 So we can't win using the usual strategy of letting
8881 FRAME_SAMPLE_VISIBILITY set this. So do it by hand,
8882 and synchronize with the server to make sure we agree. */
8883 f->visible = 0;
8884 FRAME_ICONIFIED_P (f) = 0;
8885 f->async_visible = 0;
8886 f->async_iconified = 0;
8887
334208b7 8888 x_sync (f);
5627c40e 8889
dc6f92b8
JB
8890 UNBLOCK_INPUT;
8891}
8892
06a2c219 8893/* Change window state from mapped to iconified. */
dc6f92b8 8894
dfcf069d 8895void
f676886a
JB
8896x_iconify_frame (f)
8897 struct frame *f;
dc6f92b8 8898{
3afe33e7 8899 int result;
990ba854 8900 Lisp_Object type;
dc6f92b8 8901
9319ae23 8902 /* Don't keep the highlight on an invisible frame. */
0f941935
KH
8903 if (FRAME_X_DISPLAY_INFO (f)->x_highlight_frame == f)
8904 FRAME_X_DISPLAY_INFO (f)->x_highlight_frame = 0;
9319ae23 8905
3a88c238 8906 if (f->async_iconified)
dc6f92b8
JB
8907 return;
8908
3afe33e7 8909 BLOCK_INPUT;
546e6d5b 8910
9af3143a
RS
8911 FRAME_SAMPLE_VISIBILITY (f);
8912
990ba854
RS
8913 type = x_icon_type (f);
8914 if (!NILP (type))
8915 x_bitmap_icon (f, type);
bdcd49ba 8916
488dd4c4
JD
8917#ifdef USE_GTK
8918 if (FRAME_GTK_OUTER_WIDGET (f))
8919 {
8920 if (! FRAME_VISIBLE_P (f))
8921 gtk_widget_show_all (FRAME_GTK_OUTER_WIDGET (f));
8922
8923 gtk_window_iconify (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
8924 f->iconified = 1;
8925 f->visible = 1;
8926 f->async_iconified = 1;
8927 f->async_visible = 0;
8928 UNBLOCK_INPUT;
8929 return;
8930 }
8931#endif
8932
bdcd49ba
RS
8933#ifdef USE_X_TOOLKIT
8934
546e6d5b
RS
8935 if (! FRAME_VISIBLE_P (f))
8936 {
8937 if (! EQ (Vx_no_window_manager, Qt))
8938 x_wm_set_window_state (f, IconicState);
8939 /* This was XtPopup, but that did nothing for an iconified frame. */
7556890b 8940 XtMapWidget (f->output_data.x->widget);
9cf30a30
RS
8941 /* The server won't give us any event to indicate
8942 that an invisible frame was changed to an icon,
8943 so we have to record it here. */
8944 f->iconified = 1;
1e6bc770 8945 f->visible = 1;
9cf30a30 8946 f->async_iconified = 1;
1e6bc770 8947 f->async_visible = 0;
546e6d5b
RS
8948 UNBLOCK_INPUT;
8949 return;
8950 }
8951
334208b7 8952 result = XIconifyWindow (FRAME_X_DISPLAY (f),
7556890b 8953 XtWindow (f->output_data.x->widget),
334208b7 8954 DefaultScreen (FRAME_X_DISPLAY (f)));
3afe33e7
RS
8955 UNBLOCK_INPUT;
8956
8957 if (!result)
546e6d5b 8958 error ("Can't notify window manager of iconification");
3afe33e7
RS
8959
8960 f->async_iconified = 1;
1e6bc770
RS
8961 f->async_visible = 0;
8962
8c002a25
KH
8963
8964 BLOCK_INPUT;
334208b7 8965 XFlush (FRAME_X_DISPLAY (f));
8c002a25 8966 UNBLOCK_INPUT;
3afe33e7
RS
8967#else /* not USE_X_TOOLKIT */
8968
fd13dbb2
RS
8969 /* Make sure the X server knows where the window should be positioned,
8970 in case the user deiconifies with the window manager. */
8971 if (! FRAME_VISIBLE_P (f) && !FRAME_ICONIFIED_P (f))
0899d58c 8972 x_set_offset (f, f->left_pos, f->top_pos, 0);
fd13dbb2 8973
16bd92ea
JB
8974 /* Since we don't know which revision of X we're running, we'll use both
8975 the X11R3 and X11R4 techniques. I don't know if this is a good idea. */
8976
8977 /* X11R4: send a ClientMessage to the window manager using the
8978 WM_CHANGE_STATE type. */
8979 {
8980 XEvent message;
58769bee 8981
c118dd06 8982 message.xclient.window = FRAME_X_WINDOW (f);
16bd92ea 8983 message.xclient.type = ClientMessage;
334208b7 8984 message.xclient.message_type = FRAME_X_DISPLAY_INFO (f)->Xatom_wm_change_state;
16bd92ea
JB
8985 message.xclient.format = 32;
8986 message.xclient.data.l[0] = IconicState;
8987
334208b7
RS
8988 if (! XSendEvent (FRAME_X_DISPLAY (f),
8989 DefaultRootWindow (FRAME_X_DISPLAY (f)),
16bd92ea
JB
8990 False,
8991 SubstructureRedirectMask | SubstructureNotifyMask,
8992 &message))
dc6f92b8
JB
8993 {
8994 UNBLOCK_INPUT_RESIGNAL;
546e6d5b 8995 error ("Can't notify window manager of iconification");
dc6f92b8 8996 }
16bd92ea 8997 }
dc6f92b8 8998
58769bee 8999 /* X11R3: set the initial_state field of the window manager hints to
16bd92ea
JB
9000 IconicState. */
9001 x_wm_set_window_state (f, IconicState);
dc6f92b8 9002
a9c00105
RS
9003 if (!FRAME_VISIBLE_P (f))
9004 {
9005 /* If the frame was withdrawn, before, we must map it. */
7f9c7f94 9006 XMapRaised (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
a9c00105
RS
9007 }
9008
3a88c238 9009 f->async_iconified = 1;
1e6bc770 9010 f->async_visible = 0;
dc6f92b8 9011
334208b7 9012 XFlush (FRAME_X_DISPLAY (f));
dc6f92b8 9013 UNBLOCK_INPUT;
8c002a25 9014#endif /* not USE_X_TOOLKIT */
dc6f92b8 9015}
19f71add 9016
d047c4eb 9017\f
19f71add 9018/* Free X resources of frame F. */
dc6f92b8 9019
dfcf069d 9020void
19f71add 9021x_free_frame_resources (f)
f676886a 9022 struct frame *f;
dc6f92b8 9023{
7f9c7f94 9024 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
c6ea2775
EZ
9025 Lisp_Object bar;
9026 struct scroll_bar *b;
7f9c7f94 9027
dc6f92b8 9028 BLOCK_INPUT;
c0ff3fab 9029
6186a4a0
RS
9030 /* If a display connection is dead, don't try sending more
9031 commands to the X server. */
19f71add 9032 if (dpyinfo->display)
6186a4a0 9033 {
19f71add 9034 if (f->output_data.x->icon_desc)
6186a4a0 9035 XDestroyWindow (FRAME_X_DISPLAY (f), f->output_data.x->icon_desc);
c6ea2775
EZ
9036
9037#ifdef USE_X_TOOLKIT
9038 /* Explicitly destroy the scroll bars of the frame. Without
9039 this, we get "BadDrawable" errors from the toolkit later on,
9040 presumably from expose events generated for the disappearing
9041 toolkit scroll bars. */
9042 for (bar = FRAME_SCROLL_BARS (f); !NILP (bar); bar = b->next)
9043 {
9044 b = XSCROLL_BAR (bar);
9045 x_scroll_bar_remove (b);
9046 }
9047#endif
9048
31f41daf 9049#ifdef HAVE_X_I18N
f5d11644
GM
9050 if (FRAME_XIC (f))
9051 free_frame_xic (f);
31f41daf 9052#endif
c6ea2775 9053
3afe33e7 9054#ifdef USE_X_TOOLKIT
06a2c219 9055 if (f->output_data.x->widget)
30ca89f5
GM
9056 {
9057 XtDestroyWidget (f->output_data.x->widget);
9058 f->output_data.x->widget = NULL;
9059 }
c6ea2775
EZ
9060 /* Tooltips don't have widgets, only a simple X window, even if
9061 we are using a toolkit. */
9062 else if (FRAME_X_WINDOW (f))
9063 XDestroyWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
9064
6186a4a0 9065 free_frame_menubar (f);
c6ea2775 9066#else /* !USE_X_TOOLKIT */
488dd4c4
JD
9067
9068#ifdef USE_GTK
9069 /* In the GTK version, tooltips are normal X
9070 frames. We must check and free both types. */
9071 if (FRAME_GTK_OUTER_WIDGET (f))
9072 {
9073 gtk_widget_destroy (FRAME_GTK_OUTER_WIDGET (f));
9074 FRAME_X_WINDOW (f) = 0; /* Set to avoid XDestroyWindow below */
9075 FRAME_GTK_OUTER_WIDGET (f) = 0;
9076 }
9077#endif /* USE_GTK */
177c0ea7 9078
c6ea2775
EZ
9079 if (FRAME_X_WINDOW (f))
9080 XDestroyWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
9081#endif /* !USE_X_TOOLKIT */
3afe33e7 9082
3e71d8f2
GM
9083 unload_color (f, f->output_data.x->foreground_pixel);
9084 unload_color (f, f->output_data.x->background_pixel);
9085 unload_color (f, f->output_data.x->cursor_pixel);
9086 unload_color (f, f->output_data.x->cursor_foreground_pixel);
9087 unload_color (f, f->output_data.x->border_pixel);
9088 unload_color (f, f->output_data.x->mouse_pixel);
c6ea2775 9089
3e71d8f2
GM
9090 if (f->output_data.x->scroll_bar_background_pixel != -1)
9091 unload_color (f, f->output_data.x->scroll_bar_background_pixel);
9092 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
9093 unload_color (f, f->output_data.x->scroll_bar_foreground_pixel);
7c1bef7a
MB
9094#ifdef USE_TOOLKIT_SCROLL_BARS
9095 /* Scrollbar shadow colors. */
9096 if (f->output_data.x->scroll_bar_top_shadow_pixel != -1)
9097 unload_color (f, f->output_data.x->scroll_bar_top_shadow_pixel);
9098 if (f->output_data.x->scroll_bar_bottom_shadow_pixel != -1)
9099 unload_color (f, f->output_data.x->scroll_bar_bottom_shadow_pixel);
9100#endif /* USE_TOOLKIT_SCROLL_BARS */
3e71d8f2
GM
9101 if (f->output_data.x->white_relief.allocated_p)
9102 unload_color (f, f->output_data.x->white_relief.pixel);
9103 if (f->output_data.x->black_relief.allocated_p)
9104 unload_color (f, f->output_data.x->black_relief.pixel);
4ca78676 9105
19f71add
GM
9106 if (FRAME_FACE_CACHE (f))
9107 free_frame_faces (f);
7d0393cf 9108
4ca78676 9109 x_free_gcs (f);
6186a4a0
RS
9110 XFlush (FRAME_X_DISPLAY (f));
9111 }
dc6f92b8 9112
df89d8a4 9113 if (f->output_data.x->saved_menu_event)
06a2c219 9114 xfree (f->output_data.x->saved_menu_event);
0c49ce2f 9115
7556890b 9116 xfree (f->output_data.x);
19f71add 9117 f->output_data.x = NULL;
7d0393cf 9118
0f941935
KH
9119 if (f == dpyinfo->x_focus_frame)
9120 dpyinfo->x_focus_frame = 0;
9121 if (f == dpyinfo->x_focus_event_frame)
9122 dpyinfo->x_focus_event_frame = 0;
9123 if (f == dpyinfo->x_highlight_frame)
9124 dpyinfo->x_highlight_frame = 0;
c0ff3fab 9125
7f9c7f94 9126 if (f == dpyinfo->mouse_face_mouse_frame)
dc05a16b 9127 {
7f9c7f94
RS
9128 dpyinfo->mouse_face_beg_row
9129 = dpyinfo->mouse_face_beg_col = -1;
9130 dpyinfo->mouse_face_end_row
9131 = dpyinfo->mouse_face_end_col = -1;
9132 dpyinfo->mouse_face_window = Qnil;
21323706
RS
9133 dpyinfo->mouse_face_deferred_gc = 0;
9134 dpyinfo->mouse_face_mouse_frame = 0;
dc05a16b 9135 }
0134a210 9136
c0ff3fab 9137 UNBLOCK_INPUT;
dc6f92b8 9138}
19f71add
GM
9139
9140
9141/* Destroy the X window of frame F. */
9142
9143void
9144x_destroy_window (f)
9145 struct frame *f;
9146{
9147 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
9148
9149 /* If a display connection is dead, don't try sending more
9150 commands to the X server. */
9151 if (dpyinfo->display != 0)
9152 x_free_frame_resources (f);
9153
9154 dpyinfo->reference_count--;
9155}
9156
dc6f92b8 9157\f
f451eb13
JB
9158/* Setting window manager hints. */
9159
af31d76f
RS
9160/* Set the normal size hints for the window manager, for frame F.
9161 FLAGS is the flags word to use--or 0 meaning preserve the flags
9162 that the window now has.
9163 If USER_POSITION is nonzero, we set the USPosition
488dd4c4
JD
9164 flag (this is useful when FLAGS is 0).
9165 The GTK version is in gtkutils.c */
6dba1858 9166
488dd4c4 9167#ifndef USE_GTK
dfcf069d 9168void
af31d76f 9169x_wm_set_size_hint (f, flags, user_position)
f676886a 9170 struct frame *f;
af31d76f
RS
9171 long flags;
9172 int user_position;
dc6f92b8
JB
9173{
9174 XSizeHints size_hints;
3afe33e7
RS
9175
9176#ifdef USE_X_TOOLKIT
7e4f2521
FP
9177 Arg al[2];
9178 int ac = 0;
9179 Dimension widget_width, widget_height;
488dd4c4 9180#endif
177c0ea7 9181
488dd4c4 9182 Window window = FRAME_OUTER_WINDOW (f);
dc6f92b8 9183
b72a58fd
RS
9184 /* Setting PMaxSize caused various problems. */
9185 size_hints.flags = PResizeInc | PMinSize /* | PMaxSize */;
dc6f92b8 9186
0899d58c
KS
9187 size_hints.x = f->left_pos;
9188 size_hints.y = f->top_pos;
7553a6b7 9189
7e4f2521
FP
9190#ifdef USE_X_TOOLKIT
9191 XtSetArg (al[ac], XtNwidth, &widget_width); ac++;
9192 XtSetArg (al[ac], XtNheight, &widget_height); ac++;
7556890b 9193 XtGetValues (f->output_data.x->widget, al, ac);
7e4f2521
FP
9194 size_hints.height = widget_height;
9195 size_hints.width = widget_width;
9196#else /* not USE_X_TOOLKIT */
0899d58c
KS
9197 size_hints.height = FRAME_PIXEL_HEIGHT (f);
9198 size_hints.width = FRAME_PIXEL_WIDTH (f);
7e4f2521 9199#endif /* not USE_X_TOOLKIT */
7553a6b7 9200
0899d58c
KS
9201 size_hints.width_inc = FRAME_COLUMN_WIDTH (f);
9202 size_hints.height_inc = FRAME_LINE_HEIGHT (f);
334208b7 9203 size_hints.max_width
0899d58c 9204 = FRAME_X_DISPLAY_INFO (f)->width - FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, 0);
334208b7 9205 size_hints.max_height
0899d58c 9206 = FRAME_X_DISPLAY_INFO (f)->height - FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, 0);
0134a210 9207
d067ea8b
KH
9208 /* Calculate the base and minimum sizes.
9209
9210 (When we use the X toolkit, we don't do it here.
9211 Instead we copy the values that the widgets are using, below.) */
9212#ifndef USE_X_TOOLKIT
b1c884c3 9213 {
b0342f17 9214 int base_width, base_height;
0134a210 9215 int min_rows = 0, min_cols = 0;
b0342f17 9216
0899d58c
KS
9217 base_width = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, 0);
9218 base_height = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, 0);
b0342f17 9219
0134a210 9220 check_frame_size (f, &min_rows, &min_cols);
b0342f17 9221
0134a210
RS
9222 /* The window manager uses the base width hints to calculate the
9223 current number of rows and columns in the frame while
9224 resizing; min_width and min_height aren't useful for this
9225 purpose, since they might not give the dimensions for a
9226 zero-row, zero-column frame.
58769bee 9227
0134a210
RS
9228 We use the base_width and base_height members if we have
9229 them; otherwise, we set the min_width and min_height members
9230 to the size for a zero x zero frame. */
b0342f17
JB
9231
9232#ifdef HAVE_X11R4
0134a210
RS
9233 size_hints.flags |= PBaseSize;
9234 size_hints.base_width = base_width;
9235 size_hints.base_height = base_height;
9236 size_hints.min_width = base_width + min_cols * size_hints.width_inc;
9237 size_hints.min_height = base_height + min_rows * size_hints.height_inc;
b0342f17 9238#else
0134a210
RS
9239 size_hints.min_width = base_width;
9240 size_hints.min_height = base_height;
b0342f17 9241#endif
b1c884c3 9242 }
dc6f92b8 9243
d067ea8b 9244 /* If we don't need the old flags, we don't need the old hint at all. */
af31d76f 9245 if (flags)
dc6f92b8 9246 {
d067ea8b
KH
9247 size_hints.flags |= flags;
9248 goto no_read;
9249 }
9250#endif /* not USE_X_TOOLKIT */
9251
9252 {
9253 XSizeHints hints; /* Sometimes I hate X Windows... */
9254 long supplied_return;
9255 int value;
af31d76f
RS
9256
9257#ifdef HAVE_X11R4
d067ea8b
KH
9258 value = XGetWMNormalHints (FRAME_X_DISPLAY (f), window, &hints,
9259 &supplied_return);
af31d76f 9260#else
d067ea8b 9261 value = XGetNormalHints (FRAME_X_DISPLAY (f), window, &hints);
af31d76f 9262#endif
58769bee 9263
d067ea8b
KH
9264#ifdef USE_X_TOOLKIT
9265 size_hints.base_height = hints.base_height;
9266 size_hints.base_width = hints.base_width;
9267 size_hints.min_height = hints.min_height;
9268 size_hints.min_width = hints.min_width;
9269#endif
9270
9271 if (flags)
9272 size_hints.flags |= flags;
9273 else
9274 {
9275 if (value == 0)
9276 hints.flags = 0;
9277 if (hints.flags & PSize)
9278 size_hints.flags |= PSize;
9279 if (hints.flags & PPosition)
9280 size_hints.flags |= PPosition;
9281 if (hints.flags & USPosition)
9282 size_hints.flags |= USPosition;
9283 if (hints.flags & USSize)
9284 size_hints.flags |= USSize;
9285 }
9286 }
9287
06a2c219 9288#ifndef USE_X_TOOLKIT
d067ea8b 9289 no_read:
06a2c219 9290#endif
0134a210 9291
af31d76f 9292#ifdef PWinGravity
0899d58c 9293 size_hints.win_gravity = f->win_gravity;
af31d76f 9294 size_hints.flags |= PWinGravity;
dc05a16b 9295
af31d76f 9296 if (user_position)
6dba1858 9297 {
af31d76f
RS
9298 size_hints.flags &= ~ PPosition;
9299 size_hints.flags |= USPosition;
6dba1858 9300 }
2554751d 9301#endif /* PWinGravity */
6dba1858 9302
b0342f17 9303#ifdef HAVE_X11R4
334208b7 9304 XSetWMNormalHints (FRAME_X_DISPLAY (f), window, &size_hints);
b0342f17 9305#else
334208b7 9306 XSetNormalHints (FRAME_X_DISPLAY (f), window, &size_hints);
b0342f17 9307#endif
dc6f92b8 9308}
488dd4c4 9309#endif /* not USE_GTK */
dc6f92b8
JB
9310
9311/* Used for IconicState or NormalState */
06a2c219 9312
dfcf069d 9313void
f676886a
JB
9314x_wm_set_window_state (f, state)
9315 struct frame *f;
dc6f92b8
JB
9316 int state;
9317{
3afe33e7 9318#ifdef USE_X_TOOLKIT
546e6d5b
RS
9319 Arg al[1];
9320
9321 XtSetArg (al[0], XtNinitialState, state);
7556890b 9322 XtSetValues (f->output_data.x->widget, al, 1);
3afe33e7 9323#else /* not USE_X_TOOLKIT */
c118dd06 9324 Window window = FRAME_X_WINDOW (f);
dc6f92b8 9325
7556890b
RS
9326 f->output_data.x->wm_hints.flags |= StateHint;
9327 f->output_data.x->wm_hints.initial_state = state;
b1c884c3 9328
7556890b 9329 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints);
546e6d5b 9330#endif /* not USE_X_TOOLKIT */
dc6f92b8
JB
9331}
9332
dfcf069d 9333void
7f2ae036 9334x_wm_set_icon_pixmap (f, pixmap_id)
f676886a 9335 struct frame *f;
7f2ae036 9336 int pixmap_id;
dc6f92b8 9337{
62fe13a4 9338 Pixmap icon_pixmap, icon_mask;
d2bd6bc4 9339
06a2c219 9340#ifndef USE_X_TOOLKIT
488dd4c4 9341 Window window = FRAME_OUTER_WINDOW (f);
75231bad 9342#endif
dc6f92b8 9343
7f2ae036 9344 if (pixmap_id > 0)
dbc4e1c1 9345 {
d2bd6bc4 9346 icon_pixmap = x_bitmap_pixmap (f, pixmap_id);
7556890b 9347 f->output_data.x->wm_hints.icon_pixmap = icon_pixmap;
62fe13a4
JB
9348 icon_mask = x_bitmap_mask (f, pixmap_id);
9349 f->output_data.x->wm_hints.icon_mask = icon_mask;
dbc4e1c1
JB
9350 }
9351 else
68568555
RS
9352 {
9353 /* It seems there is no way to turn off use of an icon pixmap.
9354 The following line does it, only if no icon has yet been created,
9355 for some window managers. But with mwm it crashes.
9356 Some people say it should clear the IconPixmapHint bit in this case,
9357 but that doesn't work, and the X consortium said it isn't the
9358 right thing at all. Since there is no way to win,
9359 best to explicitly give up. */
9360#if 0
9361 f->output_data.x->wm_hints.icon_pixmap = None;
62fe13a4 9362 f->output_data.x->wm_hints.icon_mask = None;
68568555
RS
9363#else
9364 return;
9365#endif
9366 }
b1c884c3 9367
cb515a21
JD
9368
9369#ifdef USE_GTK
9370 {
e76738f9 9371 xg_set_frame_icon (f, icon_pixmap, icon_mask);
cb515a21
JD
9372 return;
9373 }
9374
9375#elif defined (USE_X_TOOLKIT) /* same as in x_wm_set_window_state. */
d2bd6bc4
RS
9376
9377 {
9378 Arg al[1];
9379 XtSetArg (al[0], XtNiconPixmap, icon_pixmap);
9380 XtSetValues (f->output_data.x->widget, al, 1);
62fe13a4
JB
9381 XtSetArg (al[0], XtNiconMask, icon_mask);
9382 XtSetValues (f->output_data.x->widget, al, 1);
d2bd6bc4
RS
9383 }
9384
cb515a21 9385#else /* not USE_X_TOOLKIT && not USE_GTK */
7d0393cf 9386
62fe13a4 9387 f->output_data.x->wm_hints.flags |= (IconPixmapHint | IconMaskHint);
7556890b 9388 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints);
d2bd6bc4 9389
cb515a21 9390#endif /* not USE_X_TOOLKIT && not USE_GTK */
dc6f92b8
JB
9391}
9392
dfcf069d 9393void
f676886a
JB
9394x_wm_set_icon_position (f, icon_x, icon_y)
9395 struct frame *f;
dc6f92b8
JB
9396 int icon_x, icon_y;
9397{
2436a4e4 9398 Window window = FRAME_OUTER_WINDOW (f);
dc6f92b8 9399
7556890b
RS
9400 f->output_data.x->wm_hints.flags |= IconPositionHint;
9401 f->output_data.x->wm_hints.icon_x = icon_x;
9402 f->output_data.x->wm_hints.icon_y = icon_y;
b1c884c3 9403
7556890b 9404 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints);
dc6f92b8
JB
9405}
9406
9407\f
06a2c219
GM
9408/***********************************************************************
9409 Fonts
9410 ***********************************************************************/
dc43ef94
KH
9411
9412/* Return a pointer to struct font_info of font FONT_IDX of frame F. */
06a2c219 9413
dc43ef94
KH
9414struct font_info *
9415x_get_font_info (f, font_idx)
9416 FRAME_PTR f;
9417 int font_idx;
9418{
9419 return (FRAME_X_FONT_TABLE (f) + font_idx);
9420}
9421
9422
9c11f79e
GM
9423/* Return a list of names of available fonts matching PATTERN on frame F.
9424
9425 If SIZE is > 0, it is the size (maximum bounds width) of fonts
9426 to be listed.
9427
9428 SIZE < 0 means include scalable fonts.
9429
9430 Frame F null means we have not yet created any frame on X, and
9431 consult the first display in x_display_list. MAXNAMES sets a limit
9432 on how many fonts to match. */
dc43ef94
KH
9433
9434Lisp_Object
9435x_list_fonts (f, pattern, size, maxnames)
9c11f79e 9436 struct frame *f;
dc43ef94
KH
9437 Lisp_Object pattern;
9438 int size;
9439 int maxnames;
9440{
06a2c219
GM
9441 Lisp_Object list = Qnil, patterns, newlist = Qnil, key = Qnil;
9442 Lisp_Object tem, second_best;
9c11f79e
GM
9443 struct x_display_info *dpyinfo
9444 = f ? FRAME_X_DISPLAY_INFO (f) : x_display_list;
9445 Display *dpy = dpyinfo->display;
09c6077f 9446 int try_XLoadQueryFont = 0;
176c852b 9447 int allow_auto_scaled_font = 0;
9c11f79e
GM
9448
9449 if (size < 0)
9450 {
176c852b 9451 allow_auto_scaled_font = 1;
9c11f79e
GM
9452 size = 0;
9453 }
dc43ef94 9454
6b0efe73 9455 patterns = Fassoc (pattern, Valternate_fontname_alist);
2da424f1
KH
9456 if (NILP (patterns))
9457 patterns = Fcons (pattern, Qnil);
81ba44e5 9458
09c6077f
KH
9459 if (maxnames == 1 && !size)
9460 /* We can return any single font matching PATTERN. */
9461 try_XLoadQueryFont = 1;
9a32686f 9462
8e713be6 9463 for (; CONSP (patterns); patterns = XCDR (patterns))
dc43ef94 9464 {
dc43ef94 9465 int num_fonts;
3e71d8f2 9466 char **names = NULL;
dc43ef94 9467
8e713be6 9468 pattern = XCAR (patterns);
536f4067
RS
9469 /* See if we cached the result for this particular query.
9470 The cache is an alist of the form:
9c11f79e
GM
9471 ((((PATTERN . MAXNAMES) . SCALABLE) (FONTNAME . WIDTH) ...) ...) */
9472 tem = XCDR (dpyinfo->name_list_element);
9473 key = Fcons (Fcons (pattern, make_number (maxnames)),
176c852b 9474 allow_auto_scaled_font ? Qt : Qnil);
9c11f79e
GM
9475 list = Fassoc (key, tem);
9476 if (!NILP (list))
b5210ea7
KH
9477 {
9478 list = Fcdr_safe (list);
9479 /* We have a cashed list. Don't have to get the list again. */
9480 goto label_cached;
9481 }
9482
9483 /* At first, put PATTERN in the cache. */
09c6077f 9484
dc43ef94 9485 BLOCK_INPUT;
9ba8e10d 9486 x_catch_errors (dpy);
17d85edc 9487
09c6077f
KH
9488 if (try_XLoadQueryFont)
9489 {
9490 XFontStruct *font;
9491 unsigned long value;
9492
d5db4077 9493 font = XLoadQueryFont (dpy, SDATA (pattern));
17d85edc
KH
9494 if (x_had_errors_p (dpy))
9495 {
9496 /* This error is perhaps due to insufficient memory on X
9497 server. Let's just ignore it. */
9498 font = NULL;
9499 x_clear_errors (dpy);
9500 }
9501
09c6077f
KH
9502 if (font
9503 && XGetFontProperty (font, XA_FONT, &value))
9504 {
9505 char *name = (char *) XGetAtomName (dpy, (Atom) value);
9506 int len = strlen (name);
01c752b5 9507 char *tmp;
09c6077f 9508
6f6512e8
KH
9509 /* If DXPC (a Differential X Protocol Compressor)
9510 Ver.3.7 is running, XGetAtomName will return null
9511 string. We must avoid such a name. */
9512 if (len == 0)
9513 try_XLoadQueryFont = 0;
9514 else
9515 {
9516 num_fonts = 1;
9517 names = (char **) alloca (sizeof (char *));
9518 /* Some systems only allow alloca assigned to a
9519 simple var. */
9520 tmp = (char *) alloca (len + 1); names[0] = tmp;
9521 bcopy (name, names[0], len + 1);
9522 XFree (name);
9523 }
09c6077f
KH
9524 }
9525 else
9526 try_XLoadQueryFont = 0;
a083fd23
RS
9527
9528 if (font)
9529 XFreeFont (dpy, font);
09c6077f
KH
9530 }
9531
9532 if (!try_XLoadQueryFont)
17d85edc
KH
9533 {
9534 /* We try at least 10 fonts because XListFonts will return
9535 auto-scaled fonts at the head. */
ee5be7c3
JD
9536 if (maxnames < 0)
9537 {
9538 int limit;
9539
9540 for (limit = 500;;)
9541 {
9542 names = XListFonts (dpy, SDATA (pattern), limit, &num_fonts);
9543 if (num_fonts == limit)
9544 {
9545 BLOCK_INPUT;
9546 XFreeFontNames (names);
9547 UNBLOCK_INPUT;
9548 limit *= 2;
9549 }
9550 else
9551 break;
9552 }
9553 }
9554 else
9555 names = XListFonts (dpy, SDATA (pattern), max (maxnames, 10),
9556 &num_fonts);
9557
17d85edc
KH
9558 if (x_had_errors_p (dpy))
9559 {
9560 /* This error is perhaps due to insufficient memory on X
9561 server. Let's just ignore it. */
9562 names = NULL;
9563 x_clear_errors (dpy);
9564 }
9565 }
9566
4545fa20 9567 x_uncatch_errors ();
dc43ef94
KH
9568 UNBLOCK_INPUT;
9569
9570 if (names)
9571 {
9572 int i;
dc43ef94
KH
9573
9574 /* Make a list of all the fonts we got back.
9575 Store that in the font cache for the display. */
9576 for (i = 0; i < num_fonts; i++)
9577 {
06a2c219 9578 int width = 0;
dc43ef94 9579 char *p = names[i];
176c852b 9580 int average_width = -1, resx = 0, dashes = 0;
7d0393cf 9581
dc43ef94 9582 /* Count the number of dashes in NAMES[I]. If there are
176c852b
KH
9583 14 dashes, the field value following 9th dash
9584 (RESOLUTION_X) is nonzero, and the field value
9585 following 12th dash (AVERAGE_WIDTH) is 0, this is a
9586 auto-scaled font which is usually too ugly to be used
9587 for editing. Let's ignore it. */
dc43ef94
KH
9588 while (*p)
9589 if (*p++ == '-')
9590 {
9591 dashes++;
9592 if (dashes == 7) /* PIXEL_SIZE field */
9593 width = atoi (p);
176c852b
KH
9594 else if (dashes == 9)
9595 resx = atoi (p);
dc43ef94
KH
9596 else if (dashes == 12) /* AVERAGE_WIDTH field */
9597 average_width = atoi (p);
9598 }
7d0393cf 9599
176c852b
KH
9600 if (allow_auto_scaled_font
9601 || dashes < 14 || average_width != 0 || resx == 0)
dc43ef94
KH
9602 {
9603 tem = build_string (names[i]);
9604 if (NILP (Fassoc (tem, list)))
9605 {
9606 if (STRINGP (Vx_pixel_size_width_font_regexp)
f39db7ea
RS
9607 && ((fast_c_string_match_ignore_case
9608 (Vx_pixel_size_width_font_regexp, names[i]))
dc43ef94
KH
9609 >= 0))
9610 /* We can set the value of PIXEL_SIZE to the
b5210ea7 9611 width of this font. */
dc43ef94
KH
9612 list = Fcons (Fcons (tem, make_number (width)), list);
9613 else
9614 /* For the moment, width is not known. */
9615 list = Fcons (Fcons (tem, Qnil), list);
9616 }
9617 }
9618 }
7d0393cf 9619
09c6077f 9620 if (!try_XLoadQueryFont)
e38f4136
GM
9621 {
9622 BLOCK_INPUT;
9623 XFreeFontNames (names);
9624 UNBLOCK_INPUT;
9625 }
dc43ef94
KH
9626 }
9627
b5210ea7 9628 /* Now store the result in the cache. */
f3fbd155
KR
9629 XSETCDR (dpyinfo->name_list_element,
9630 Fcons (Fcons (key, list), XCDR (dpyinfo->name_list_element)));
dc43ef94 9631
b5210ea7
KH
9632 label_cached:
9633 if (NILP (list)) continue; /* Try the remaining alternatives. */
dc43ef94 9634
b5210ea7
KH
9635 newlist = second_best = Qnil;
9636 /* Make a list of the fonts that have the right width. */
8e713be6 9637 for (; CONSP (list); list = XCDR (list))
b5210ea7 9638 {
536f4067
RS
9639 int found_size;
9640
8e713be6 9641 tem = XCAR (list);
dc43ef94 9642
8e713be6 9643 if (!CONSP (tem) || NILP (XCAR (tem)))
b5210ea7
KH
9644 continue;
9645 if (!size)
9646 {
8e713be6 9647 newlist = Fcons (XCAR (tem), newlist);
b5210ea7
KH
9648 continue;
9649 }
dc43ef94 9650
8e713be6 9651 if (!INTEGERP (XCDR (tem)))
dc43ef94 9652 {
b5210ea7 9653 /* Since we have not yet known the size of this font, we
9c11f79e 9654 must try slow function call XLoadQueryFont. */
dc43ef94
KH
9655 XFontStruct *thisinfo;
9656
9657 BLOCK_INPUT;
9ba8e10d 9658 x_catch_errors (dpy);
dc43ef94 9659 thisinfo = XLoadQueryFont (dpy,
d5db4077 9660 SDATA (XCAR (tem)));
17d85edc
KH
9661 if (x_had_errors_p (dpy))
9662 {
9663 /* This error is perhaps due to insufficient memory on X
9664 server. Let's just ignore it. */
9665 thisinfo = NULL;
9666 x_clear_errors (dpy);
9667 }
4545fa20 9668 x_uncatch_errors ();
dc43ef94
KH
9669 UNBLOCK_INPUT;
9670
9671 if (thisinfo)
9672 {
f3fbd155
KR
9673 XSETCDR (tem,
9674 (thisinfo->min_bounds.width == 0
9675 ? make_number (0)
9676 : make_number (thisinfo->max_bounds.width)));
e38f4136 9677 BLOCK_INPUT;
dc43ef94 9678 XFreeFont (dpy, thisinfo);
e38f4136 9679 UNBLOCK_INPUT;
dc43ef94
KH
9680 }
9681 else
b5210ea7 9682 /* For unknown reason, the previous call of XListFont had
06a2c219 9683 returned a font which can't be opened. Record the size
b5210ea7 9684 as 0 not to try to open it again. */
f3fbd155 9685 XSETCDR (tem, make_number (0));
dc43ef94 9686 }
536f4067 9687
8e713be6 9688 found_size = XINT (XCDR (tem));
536f4067 9689 if (found_size == size)
8e713be6 9690 newlist = Fcons (XCAR (tem), newlist);
536f4067 9691 else if (found_size > 0)
b5210ea7 9692 {
536f4067 9693 if (NILP (second_best))
b5210ea7 9694 second_best = tem;
536f4067
RS
9695 else if (found_size < size)
9696 {
8e713be6
KR
9697 if (XINT (XCDR (second_best)) > size
9698 || XINT (XCDR (second_best)) < found_size)
536f4067
RS
9699 second_best = tem;
9700 }
9701 else
9702 {
8e713be6
KR
9703 if (XINT (XCDR (second_best)) > size
9704 && XINT (XCDR (second_best)) > found_size)
536f4067
RS
9705 second_best = tem;
9706 }
b5210ea7
KH
9707 }
9708 }
9709 if (!NILP (newlist))
9710 break;
9711 else if (!NILP (second_best))
9712 {
8e713be6 9713 newlist = Fcons (XCAR (second_best), Qnil);
b5210ea7 9714 break;
dc43ef94 9715 }
dc43ef94
KH
9716 }
9717
9718 return newlist;
7d0393cf 9719}
dc43ef94 9720
06a2c219
GM
9721
9722#if GLYPH_DEBUG
9723
9724/* Check that FONT is valid on frame F. It is if it can be found in F's
9725 font table. */
9726
9727static void
9728x_check_font (f, font)
9729 struct frame *f;
9730 XFontStruct *font;
9731{
9732 int i;
9733 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
9734
9735 xassert (font != NULL);
9736
9737 for (i = 0; i < dpyinfo->n_fonts; i++)
7d0393cf 9738 if (dpyinfo->font_table[i].name
06a2c219
GM
9739 && font == dpyinfo->font_table[i].font)
9740 break;
9741
9742 xassert (i < dpyinfo->n_fonts);
9743}
9744
9745#endif /* GLYPH_DEBUG != 0 */
9746
9747/* Set *W to the minimum width, *H to the minimum font height of FONT.
9748 Note: There are (broken) X fonts out there with invalid XFontStruct
9749 min_bounds contents. For example, handa@etl.go.jp reports that
9750 "-adobe-courier-medium-r-normal--*-180-*-*-m-*-iso8859-1" fonts
9751 have font->min_bounds.width == 0. */
9752
9753static INLINE void
9754x_font_min_bounds (font, w, h)
9755 XFontStruct *font;
9756 int *w, *h;
9757{
9758 *h = FONT_HEIGHT (font);
9759 *w = font->min_bounds.width;
9760
9761 /* Try to handle the case where FONT->min_bounds has invalid
9762 contents. Since the only font known to have invalid min_bounds
9763 is fixed-width, use max_bounds if min_bounds seems to be invalid. */
9764 if (*w <= 0)
9765 *w = font->max_bounds.width;
9766}
9767
9768
9769/* Compute the smallest character width and smallest font height over
9770 all fonts available on frame F. Set the members smallest_char_width
9771 and smallest_font_height in F's x_display_info structure to
9772 the values computed. Value is non-zero if smallest_font_height or
9773 smallest_char_width become smaller than they were before. */
9774
9775static int
9776x_compute_min_glyph_bounds (f)
9777 struct frame *f;
9778{
9779 int i;
9780 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
9781 XFontStruct *font;
9782 int old_width = dpyinfo->smallest_char_width;
9783 int old_height = dpyinfo->smallest_font_height;
7d0393cf 9784
06a2c219
GM
9785 dpyinfo->smallest_font_height = 100000;
9786 dpyinfo->smallest_char_width = 100000;
7d0393cf 9787
06a2c219
GM
9788 for (i = 0; i < dpyinfo->n_fonts; ++i)
9789 if (dpyinfo->font_table[i].name)
9790 {
9791 struct font_info *fontp = dpyinfo->font_table + i;
9792 int w, h;
7d0393cf 9793
06a2c219
GM
9794 font = (XFontStruct *) fontp->font;
9795 xassert (font != (XFontStruct *) ~0);
9796 x_font_min_bounds (font, &w, &h);
7d0393cf 9797
06a2c219
GM
9798 dpyinfo->smallest_font_height = min (dpyinfo->smallest_font_height, h);
9799 dpyinfo->smallest_char_width = min (dpyinfo->smallest_char_width, w);
9800 }
9801
9802 xassert (dpyinfo->smallest_char_width > 0
9803 && dpyinfo->smallest_font_height > 0);
9804
9805 return (dpyinfo->n_fonts == 1
9806 || dpyinfo->smallest_char_width < old_width
9807 || dpyinfo->smallest_font_height < old_height);
9808}
9809
9810
dc43ef94
KH
9811/* Load font named FONTNAME of the size SIZE for frame F, and return a
9812 pointer to the structure font_info while allocating it dynamically.
9813 If SIZE is 0, load any size of font.
9814 If loading is failed, return NULL. */
9815
9816struct font_info *
9817x_load_font (f, fontname, size)
9818 struct frame *f;
9819 register char *fontname;
9820 int size;
9821{
9822 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
9823 Lisp_Object font_names;
9824
9825 /* Get a list of all the fonts that match this name. Once we
9826 have a list of matching fonts, we compare them against the fonts
9827 we already have by comparing names. */
09c6077f 9828 font_names = x_list_fonts (f, build_string (fontname), size, 1);
dc43ef94
KH
9829
9830 if (!NILP (font_names))
9831 {
9832 Lisp_Object tail;
9833 int i;
9834
9835 for (i = 0; i < dpyinfo->n_fonts; i++)
8e713be6 9836 for (tail = font_names; CONSP (tail); tail = XCDR (tail))
06a2c219
GM
9837 if (dpyinfo->font_table[i].name
9838 && (!strcmp (dpyinfo->font_table[i].name,
d5db4077 9839 SDATA (XCAR (tail)))
06a2c219 9840 || !strcmp (dpyinfo->font_table[i].full_name,
d5db4077 9841 SDATA (XCAR (tail)))))
dc43ef94
KH
9842 return (dpyinfo->font_table + i);
9843 }
9844
9845 /* Load the font and add it to the table. */
9846 {
9847 char *full_name;
9848 XFontStruct *font;
9849 struct font_info *fontp;
9850 unsigned long value;
06a2c219 9851 int i;
dc43ef94 9852
2da424f1
KH
9853 /* If we have found fonts by x_list_font, load one of them. If
9854 not, we still try to load a font by the name given as FONTNAME
9855 because XListFonts (called in x_list_font) of some X server has
9856 a bug of not finding a font even if the font surely exists and
9857 is loadable by XLoadQueryFont. */
e1d6d5b9 9858 if (size > 0 && !NILP (font_names))
d5db4077 9859 fontname = (char *) SDATA (XCAR (font_names));
dc43ef94
KH
9860
9861 BLOCK_INPUT;
9ba8e10d 9862 x_catch_errors (FRAME_X_DISPLAY (f));
dc43ef94 9863 font = (XFontStruct *) XLoadQueryFont (FRAME_X_DISPLAY (f), fontname);
d645aaa4
KH
9864 if (x_had_errors_p (FRAME_X_DISPLAY (f)))
9865 {
9866 /* This error is perhaps due to insufficient memory on X
9867 server. Let's just ignore it. */
9868 font = NULL;
9869 x_clear_errors (FRAME_X_DISPLAY (f));
9870 }
4545fa20 9871 x_uncatch_errors ();
dc43ef94 9872 UNBLOCK_INPUT;
b5210ea7 9873 if (!font)
dc43ef94
KH
9874 return NULL;
9875
06a2c219
GM
9876 /* Find a free slot in the font table. */
9877 for (i = 0; i < dpyinfo->n_fonts; ++i)
9878 if (dpyinfo->font_table[i].name == NULL)
9879 break;
9880
9881 /* If no free slot found, maybe enlarge the font table. */
9882 if (i == dpyinfo->n_fonts
9883 && dpyinfo->n_fonts == dpyinfo->font_table_size)
dc43ef94 9884 {
06a2c219
GM
9885 int sz;
9886 dpyinfo->font_table_size = max (16, 2 * dpyinfo->font_table_size);
9887 sz = dpyinfo->font_table_size * sizeof *dpyinfo->font_table;
dc43ef94 9888 dpyinfo->font_table
06a2c219 9889 = (struct font_info *) xrealloc (dpyinfo->font_table, sz);
dc43ef94
KH
9890 }
9891
06a2c219
GM
9892 fontp = dpyinfo->font_table + i;
9893 if (i == dpyinfo->n_fonts)
9894 ++dpyinfo->n_fonts;
dc43ef94
KH
9895
9896 /* Now fill in the slots of *FONTP. */
9897 BLOCK_INPUT;
589e039f 9898 bzero (fontp, sizeof (*fontp));
dc43ef94 9899 fontp->font = font;
06a2c219 9900 fontp->font_idx = i;
dc43ef94
KH
9901 fontp->name = (char *) xmalloc (strlen (fontname) + 1);
9902 bcopy (fontname, fontp->name, strlen (fontname) + 1);
9903
6875d1ae
KH
9904 if (font->min_bounds.width == font->max_bounds.width)
9905 {
9906 /* Fixed width font. */
9907 fontp->average_width = fontp->space_width = font->min_bounds.width;
9908 }
9909 else
9910 {
9911 XChar2b char2b;
9912 XCharStruct *pcm;
9913
9914 char2b.byte1 = 0x00, char2b.byte2 = 0x20;
9915 pcm = x_per_char_metric (font, &char2b, 0);
9916 if (pcm)
9917 fontp->space_width = pcm->width;
9918 else
9919 fontp->space_width = FONT_WIDTH (font);
9920
9921 fontp->average_width
9922 = (XGetFontProperty (font, dpyinfo->Xatom_AVERAGE_WIDTH, &value)
9923 ? (long) value / 10 : 0);
9924 if (fontp->average_width < 0)
9925 fontp->average_width = - fontp->average_width;
9926 if (fontp->average_width == 0)
9927 {
9928 if (pcm)
9929 {
9930 int width = pcm->width;
9931 for (char2b.byte2 = 33; char2b.byte2 <= 126; char2b.byte2++)
9932 if ((pcm = x_per_char_metric (font, &char2b, 0)) != NULL)
9933 width += pcm->width;
9934 fontp->average_width = width / 95;
9935 }
9936 else
9937 fontp->average_width = FONT_WIDTH (font);
9938 }
9939 }
9940
dc43ef94
KH
9941 /* Try to get the full name of FONT. Put it in FULL_NAME. */
9942 full_name = 0;
9943 if (XGetFontProperty (font, XA_FONT, &value))
9944 {
9945 char *name = (char *) XGetAtomName (FRAME_X_DISPLAY (f), (Atom) value);
9946 char *p = name;
9947 int dashes = 0;
9948
9949 /* Count the number of dashes in the "full name".
9950 If it is too few, this isn't really the font's full name,
9951 so don't use it.
9952 In X11R4, the fonts did not come with their canonical names
9953 stored in them. */
9954 while (*p)
9955 {
9956 if (*p == '-')
9957 dashes++;
9958 p++;
9959 }
9960
9961 if (dashes >= 13)
9962 {
9963 full_name = (char *) xmalloc (p - name + 1);
9964 bcopy (name, full_name, p - name + 1);
9965 }
9966
9967 XFree (name);
9968 }
7d0393cf 9969
dc43ef94
KH
9970 if (full_name != 0)
9971 fontp->full_name = full_name;
9972 else
9973 fontp->full_name = fontp->name;
9974
9975 fontp->size = font->max_bounds.width;
d5749adb 9976 fontp->height = FONT_HEIGHT (font);
dc43ef94 9977
2da424f1
KH
9978 if (NILP (font_names))
9979 {
9980 /* We come here because of a bug of XListFonts mentioned at
9981 the head of this block. Let's store this information in
9982 the cache for x_list_fonts. */
9983 Lisp_Object lispy_name = build_string (fontname);
9984 Lisp_Object lispy_full_name = build_string (fontp->full_name);
9c11f79e
GM
9985 Lisp_Object key = Fcons (Fcons (lispy_name, make_number (256)),
9986 Qnil);
2da424f1 9987
f3fbd155
KR
9988 XSETCDR (dpyinfo->name_list_element,
9989 Fcons (Fcons (key,
9990 Fcons (Fcons (lispy_full_name,
9991 make_number (fontp->size)),
9992 Qnil)),
9993 XCDR (dpyinfo->name_list_element)));
2da424f1 9994 if (full_name)
9c11f79e
GM
9995 {
9996 key = Fcons (Fcons (lispy_full_name, make_number (256)),
9997 Qnil);
f3fbd155
KR
9998 XSETCDR (dpyinfo->name_list_element,
9999 Fcons (Fcons (key,
10000 Fcons (Fcons (lispy_full_name,
10001 make_number (fontp->size)),
10002 Qnil)),
10003 XCDR (dpyinfo->name_list_element)));
9c11f79e 10004 }
2da424f1
KH
10005 }
10006
dc43ef94
KH
10007 /* The slot `encoding' specifies how to map a character
10008 code-points (0x20..0x7F or 0x2020..0x7F7F) of each charset to
ee569018
KH
10009 the font code-points (0:0x20..0x7F, 1:0xA0..0xFF), or
10010 (0:0x2020..0x7F7F, 1:0xA0A0..0xFFFF, 3:0x20A0..0x7FFF,
8ff102bd 10011 2:0xA020..0xFF7F). For the moment, we don't know which charset
06a2c219 10012 uses this font. So, we set information in fontp->encoding[1]
8ff102bd
RS
10013 which is never used by any charset. If mapping can't be
10014 decided, set FONT_ENCODING_NOT_DECIDED. */
dc43ef94
KH
10015 fontp->encoding[1]
10016 = (font->max_byte1 == 0
10017 /* 1-byte font */
10018 ? (font->min_char_or_byte2 < 0x80
10019 ? (font->max_char_or_byte2 < 0x80
10020 ? 0 /* 0x20..0x7F */
8ff102bd 10021 : FONT_ENCODING_NOT_DECIDED) /* 0x20..0xFF */
dc43ef94
KH
10022 : 1) /* 0xA0..0xFF */
10023 /* 2-byte font */
10024 : (font->min_byte1 < 0x80
10025 ? (font->max_byte1 < 0x80
10026 ? (font->min_char_or_byte2 < 0x80
10027 ? (font->max_char_or_byte2 < 0x80
10028 ? 0 /* 0x2020..0x7F7F */
8ff102bd 10029 : FONT_ENCODING_NOT_DECIDED) /* 0x2020..0x7FFF */
dc43ef94 10030 : 3) /* 0x20A0..0x7FFF */
8ff102bd 10031 : FONT_ENCODING_NOT_DECIDED) /* 0x20??..0xA0?? */
dc43ef94
KH
10032 : (font->min_char_or_byte2 < 0x80
10033 ? (font->max_char_or_byte2 < 0x80
10034 ? 2 /* 0xA020..0xFF7F */
8ff102bd 10035 : FONT_ENCODING_NOT_DECIDED) /* 0xA020..0xFFFF */
dc43ef94
KH
10036 : 1))); /* 0xA0A0..0xFFFF */
10037
10038 fontp->baseline_offset
10039 = (XGetFontProperty (font, dpyinfo->Xatom_MULE_BASELINE_OFFSET, &value)
10040 ? (long) value : 0);
10041 fontp->relative_compose
10042 = (XGetFontProperty (font, dpyinfo->Xatom_MULE_RELATIVE_COMPOSE, &value)
10043 ? (long) value : 0);
f78798df
KH
10044 fontp->default_ascent
10045 = (XGetFontProperty (font, dpyinfo->Xatom_MULE_DEFAULT_ASCENT, &value)
10046 ? (long) value : 0);
dc43ef94 10047
06a2c219
GM
10048 /* Set global flag fonts_changed_p to non-zero if the font loaded
10049 has a character with a smaller width than any other character
437dfb9f 10050 before, or if the font loaded has a smaller height than any
06a2c219
GM
10051 other font loaded before. If this happens, it will make a
10052 glyph matrix reallocation necessary. */
437dfb9f 10053 fonts_changed_p |= x_compute_min_glyph_bounds (f);
dc43ef94 10054 UNBLOCK_INPUT;
dc43ef94
KH
10055 return fontp;
10056 }
10057}
10058
06a2c219
GM
10059
10060/* Return a pointer to struct font_info of a font named FONTNAME for
10061 frame F. If no such font is loaded, return NULL. */
10062
dc43ef94
KH
10063struct font_info *
10064x_query_font (f, fontname)
10065 struct frame *f;
10066 register char *fontname;
10067{
10068 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
10069 int i;
10070
10071 for (i = 0; i < dpyinfo->n_fonts; i++)
06a2c219 10072 if (dpyinfo->font_table[i].name
dc3ca107
KH
10073 && (!strcasecmp (dpyinfo->font_table[i].name, fontname)
10074 || !strcasecmp (dpyinfo->font_table[i].full_name, fontname)))
dc43ef94
KH
10075 return (dpyinfo->font_table + i);
10076 return NULL;
10077}
10078
06a2c219
GM
10079
10080/* Find a CCL program for a font specified by FONTP, and set the member
a6582676
KH
10081 `encoder' of the structure. */
10082
10083void
10084x_find_ccl_program (fontp)
10085 struct font_info *fontp;
10086{
a42f54e6 10087 Lisp_Object list, elt;
a6582676 10088
f9b5db02 10089 elt = Qnil;
8e713be6 10090 for (list = Vfont_ccl_encoder_alist; CONSP (list); list = XCDR (list))
a6582676 10091 {
8e713be6 10092 elt = XCAR (list);
a6582676 10093 if (CONSP (elt)
8e713be6 10094 && STRINGP (XCAR (elt))
9f2feff6
KH
10095 && ((fast_c_string_match_ignore_case (XCAR (elt), fontp->name)
10096 >= 0)
10097 || (fast_c_string_match_ignore_case (XCAR (elt), fontp->full_name)
10098 >= 0)))
a42f54e6
KH
10099 break;
10100 }
7d0393cf 10101
a42f54e6
KH
10102 if (! NILP (list))
10103 {
d27f8ca7
KH
10104 struct ccl_program *ccl
10105 = (struct ccl_program *) xmalloc (sizeof (struct ccl_program));
a42f54e6 10106
8e713be6 10107 if (setup_ccl_program (ccl, XCDR (elt)) < 0)
a42f54e6
KH
10108 xfree (ccl);
10109 else
10110 fontp->font_encoder = ccl;
a6582676
KH
10111 }
10112}
10113
06a2c219 10114
dc43ef94 10115\f
06a2c219
GM
10116/***********************************************************************
10117 Initialization
10118 ***********************************************************************/
f451eb13 10119
3afe33e7
RS
10120#ifdef USE_X_TOOLKIT
10121static XrmOptionDescRec emacs_options[] = {
10122 {"-geometry", ".geometry", XrmoptionSepArg, NULL},
10123 {"-iconic", ".iconic", XrmoptionNoArg, (XtPointer) "yes"},
10124
10125 {"-internal-border-width", "*EmacsScreen.internalBorderWidth",
10126 XrmoptionSepArg, NULL},
10127 {"-ib", "*EmacsScreen.internalBorderWidth", XrmoptionSepArg, NULL},
10128
10129 {"-T", "*EmacsShell.title", XrmoptionSepArg, (XtPointer) NULL},
10130 {"-wn", "*EmacsShell.title", XrmoptionSepArg, (XtPointer) NULL},
10131 {"-title", "*EmacsShell.title", XrmoptionSepArg, (XtPointer) NULL},
10132 {"-iconname", "*EmacsShell.iconName", XrmoptionSepArg, (XtPointer) NULL},
10133 {"-in", "*EmacsShell.iconName", XrmoptionSepArg, (XtPointer) NULL},
10134 {"-mc", "*pointerColor", XrmoptionSepArg, (XtPointer) NULL},
10135 {"-cr", "*cursorColor", XrmoptionSepArg, (XtPointer) NULL}
10136};
10137#endif /* USE_X_TOOLKIT */
10138
7a13e894
RS
10139static int x_initialized;
10140
11e887e2
JD
10141#ifdef HAVE_X_SM
10142static int x_session_initialized;
10143#endif
10144
29b38361
KH
10145#ifdef MULTI_KBOARD
10146/* Test whether two display-name strings agree up to the dot that separates
10147 the screen number from the server number. */
10148static int
10149same_x_server (name1, name2)
59ab1dc7 10150 const char *name1, *name2;
29b38361
KH
10151{
10152 int seen_colon = 0;
59ab1dc7 10153 const unsigned char *system_name = SDATA (Vsystem_name);
cf591cc1
RS
10154 int system_name_length = strlen (system_name);
10155 int length_until_period = 0;
10156
10157 while (system_name[length_until_period] != 0
10158 && system_name[length_until_period] != '.')
10159 length_until_period++;
10160
10161 /* Treat `unix' like an empty host name. */
10162 if (! strncmp (name1, "unix:", 5))
10163 name1 += 4;
10164 if (! strncmp (name2, "unix:", 5))
10165 name2 += 4;
10166 /* Treat this host's name like an empty host name. */
10167 if (! strncmp (name1, system_name, system_name_length)
10168 && name1[system_name_length] == ':')
10169 name1 += system_name_length;
10170 if (! strncmp (name2, system_name, system_name_length)
10171 && name2[system_name_length] == ':')
10172 name2 += system_name_length;
10173 /* Treat this host's domainless name like an empty host name. */
10174 if (! strncmp (name1, system_name, length_until_period)
10175 && name1[length_until_period] == ':')
10176 name1 += length_until_period;
10177 if (! strncmp (name2, system_name, length_until_period)
10178 && name2[length_until_period] == ':')
10179 name2 += length_until_period;
10180
29b38361
KH
10181 for (; *name1 != '\0' && *name1 == *name2; name1++, name2++)
10182 {
10183 if (*name1 == ':')
10184 seen_colon++;
10185 if (seen_colon && *name1 == '.')
10186 return 1;
10187 }
10188 return (seen_colon
10189 && (*name1 == '.' || *name1 == '\0')
10190 && (*name2 == '.' || *name2 == '\0'));
10191}
10192#endif
10193
9d35adc7
JD
10194/* Count number of set bits in mask and number of bits to shift to
10195 get to the first bit. With MASK 0x7e0, *BITS is set to 6, and *OFFSET
10196 to 5. */
10197static void
10198get_bits_and_offset (mask, bits, offset)
10199 unsigned long mask;
10200 int *bits;
10201 int *offset;
10202{
10203 int nr = 0;
10204 int off = 0;
10205
10206 while (!(mask & 1))
10207 {
10208 off++;
10209 mask >>= 1;
10210 }
10211
10212 while (mask & 1)
10213 {
10214 nr++;
10215 mask >>= 1;
10216 }
10217
10218 *offset = off;
10219 *bits = nr;
10220}
10221
3c7b6f9f
EZ
10222int
10223x_display_ok (display)
10224 const char * display;
10225{
10226 int dpy_ok = 1;
10227 Display *dpy;
3c7b6f9f 10228
c1fc674b
AS
10229 dpy = XOpenDisplay (display);
10230 if (dpy)
3c7b6f9f
EZ
10231 XCloseDisplay (dpy);
10232 else
10233 dpy_ok = 0;
10234 return dpy_ok;
10235}
10236
334208b7 10237struct x_display_info *
1f8255f2 10238x_term_init (display_name, xrm_option, resource_name)
334208b7 10239 Lisp_Object display_name;
1f8255f2
RS
10240 char *xrm_option;
10241 char *resource_name;
dc6f92b8 10242{
334208b7 10243 int connection;
7a13e894 10244 Display *dpy;
334208b7
RS
10245 struct x_display_info *dpyinfo;
10246 XrmDatabase xrdb;
10247
60439948
KH
10248 BLOCK_INPUT;
10249
7a13e894
RS
10250 if (!x_initialized)
10251 {
10252 x_initialize ();
231d6cfb 10253 ++x_initialized;
7a13e894 10254 }
dc6f92b8 10255
488dd4c4
JD
10256#ifdef USE_GTK
10257 {
10258#define NUM_ARGV 10
10259 int argc;
10260 char *argv[NUM_ARGV];
10261 char **argv2 = argv;
10262 GdkAtom atom;
10263
810f2256
JD
10264 if (x_initialized++ > 1)
10265 {
10266 /* Opening another display. If xg_display_open returns less
10267 than zero, we are probably on GTK 2.0, which can only handle
10268 one display. GTK 2.2 or later can handle more than one. */
10269 if (xg_display_open (SDATA (display_name), &dpy) < 0)
10270 error ("Sorry, this version of GTK can only handle one display");
10271 }
10272 else
10273 {
10274 for (argc = 0; argc < NUM_ARGV; ++argc)
10275 argv[argc] = 0;
488dd4c4 10276
810f2256
JD
10277 argc = 0;
10278 argv[argc++] = initial_argv[0];
488dd4c4 10279
810f2256
JD
10280 if (! NILP (display_name))
10281 {
10282 argv[argc++] = "--display";
10283 argv[argc++] = SDATA (display_name);
10284 }
488dd4c4 10285
810f2256
JD
10286 argv[argc++] = "--name";
10287 argv[argc++] = resource_name;
177c0ea7 10288
1fcfb866 10289#ifdef HAVE_X11R5
810f2256 10290 XSetLocaleModifiers ("");
1fcfb866
JD
10291#endif
10292
810f2256 10293 gtk_init (&argc, &argv2);
488dd4c4 10294
810f2256
JD
10295 /* gtk_init does set_locale. We must fix locale after calling it. */
10296 fixup_locale ();
10297 xg_initialize ();
488dd4c4 10298
810f2256 10299 dpy = GDK_DISPLAY ();
177c0ea7 10300
810f2256
JD
10301 /* NULL window -> events for all windows go to our function */
10302 gdk_window_add_filter (NULL, event_handler_gdk, NULL);
488dd4c4 10303
810f2256
JD
10304 /* Load our own gtkrc if it exists. */
10305 {
810f2256
JD
10306 char *file = "~/.emacs.d/gtkrc";
10307 Lisp_Object s, abs_file;
488dd4c4 10308
810f2256
JD
10309 s = make_string (file, strlen (file));
10310 abs_file = Fexpand_file_name (s, Qnil);
488dd4c4 10311
810f2256
JD
10312 if (! NILP (abs_file) && !NILP (Ffile_readable_p (abs_file)))
10313 gtk_rc_parse (SDATA (abs_file));
810f2256 10314 }
177c0ea7 10315
810f2256
JD
10316 XSetErrorHandler (x_error_handler);
10317 XSetIOErrorHandler (x_io_error_quitter);
10318 }
488dd4c4
JD
10319 }
10320#else /* not USE_GTK */
3afe33e7 10321#ifdef USE_X_TOOLKIT
2d7fc7e8
RS
10322 /* weiner@footloose.sps.mot.com reports that this causes
10323 errors with X11R5:
10324 X protocol error: BadAtom (invalid Atom parameter)
10325 on protocol request 18skiloaf.
10326 So let's not use it until R6. */
10327#ifdef HAVE_X11XTR6
bdcd49ba
RS
10328 XtSetLanguageProc (NULL, NULL, NULL);
10329#endif
10330
7f9c7f94
RS
10331 {
10332 int argc = 0;
10333 char *argv[3];
10334
10335 argv[0] = "";
10336 argc = 1;
10337 if (xrm_option)
10338 {
10339 argv[argc++] = "-xrm";
10340 argv[argc++] = xrm_option;
10341 }
bc4e60fc 10342 turn_on_atimers (0);
d5db4077 10343 dpy = XtOpenDisplay (Xt_app_con, SDATA (display_name),
7f9c7f94
RS
10344 resource_name, EMACS_CLASS,
10345 emacs_options, XtNumber (emacs_options),
10346 &argc, argv);
bc4e60fc 10347 turn_on_atimers (1);
39d8bb4d
KH
10348
10349#ifdef HAVE_X11XTR6
10537cb1 10350 /* I think this is to compensate for XtSetLanguageProc. */
71f8198a 10351 fixup_locale ();
39d8bb4d 10352#endif
7f9c7f94 10353 }
3afe33e7
RS
10354
10355#else /* not USE_X_TOOLKIT */
bdcd49ba
RS
10356#ifdef HAVE_X11R5
10357 XSetLocaleModifiers ("");
10358#endif
d5db4077 10359 dpy = XOpenDisplay (SDATA (display_name));
3afe33e7 10360#endif /* not USE_X_TOOLKIT */
488dd4c4 10361#endif /* not USE_GTK*/
334208b7 10362
7a13e894
RS
10363 /* Detect failure. */
10364 if (dpy == 0)
60439948
KH
10365 {
10366 UNBLOCK_INPUT;
10367 return 0;
10368 }
7a13e894
RS
10369
10370 /* We have definitely succeeded. Record the new connection. */
10371
10372 dpyinfo = (struct x_display_info *) xmalloc (sizeof (struct x_display_info));
f04e1297 10373 bzero (dpyinfo, sizeof *dpyinfo);
7a13e894 10374
29b38361
KH
10375#ifdef MULTI_KBOARD
10376 {
10377 struct x_display_info *share;
10378 Lisp_Object tail;
10379
10380 for (share = x_display_list, tail = x_display_name_list; share;
8e713be6 10381 share = share->next, tail = XCDR (tail))
d5db4077
KR
10382 if (same_x_server (SDATA (XCAR (XCAR (tail))),
10383 SDATA (display_name)))
29b38361
KH
10384 break;
10385 if (share)
10386 dpyinfo->kboard = share->kboard;
10387 else
10388 {
10389 dpyinfo->kboard = (KBOARD *) xmalloc (sizeof (KBOARD));
10390 init_kboard (dpyinfo->kboard);
59e755be
KH
10391 if (!EQ (XSYMBOL (Qvendor_specific_keysyms)->function, Qunbound))
10392 {
10393 char *vendor = ServerVendor (dpy);
9b6ed9f3 10394 UNBLOCK_INPUT;
59e755be
KH
10395 dpyinfo->kboard->Vsystem_key_alist
10396 = call1 (Qvendor_specific_keysyms,
10397 build_string (vendor ? vendor : ""));
9b6ed9f3 10398 BLOCK_INPUT;
59e755be
KH
10399 }
10400
29b38361
KH
10401 dpyinfo->kboard->next_kboard = all_kboards;
10402 all_kboards = dpyinfo->kboard;
0ad5446c
KH
10403 /* Don't let the initial kboard remain current longer than necessary.
10404 That would cause problems if a file loaded on startup tries to
06a2c219 10405 prompt in the mini-buffer. */
0ad5446c
KH
10406 if (current_kboard == initial_kboard)
10407 current_kboard = dpyinfo->kboard;
29b38361
KH
10408 }
10409 dpyinfo->kboard->reference_count++;
10410 }
b9737ad3
KH
10411#endif
10412
7a13e894
RS
10413 /* Put this display on the chain. */
10414 dpyinfo->next = x_display_list;
10415 x_display_list = dpyinfo;
10416
7d0393cf 10417 /* Put it on x_display_name_list as well, to keep them parallel. */
7a13e894
RS
10418 x_display_name_list = Fcons (Fcons (display_name, Qnil),
10419 x_display_name_list);
8e713be6 10420 dpyinfo->name_list_element = XCAR (x_display_name_list);
7a13e894
RS
10421
10422 dpyinfo->display = dpy;
dc6f92b8 10423
dc6f92b8 10424#if 0
7a13e894 10425 XSetAfterFunction (x_current_display, x_trace_wire);
c118dd06 10426#endif /* ! 0 */
7a13e894
RS
10427
10428 dpyinfo->x_id_name
d5db4077
KR
10429 = (char *) xmalloc (SBYTES (Vinvocation_name)
10430 + SBYTES (Vsystem_name)
7a13e894
RS
10431 + 2);
10432 sprintf (dpyinfo->x_id_name, "%s@%s",
d5db4077 10433 SDATA (Vinvocation_name), SDATA (Vsystem_name));
28430d3c
JB
10434
10435 /* Figure out which modifier bits mean what. */
334208b7 10436 x_find_modifier_meanings (dpyinfo);
f451eb13 10437
ab648270 10438 /* Get the scroll bar cursor. */
810f2256
JD
10439#ifdef USE_GTK
10440 /* We must create a GTK cursor, it is required for GTK widgets. */
10441 dpyinfo->xg_cursor = xg_create_default_cursor (dpyinfo->display);
10442#endif /* USE_GTK */
10443
7a13e894 10444 dpyinfo->vertical_scroll_bar_cursor
334208b7 10445 = XCreateFontCursor (dpyinfo->display, XC_sb_v_double_arrow);
f451eb13 10446
334208b7
RS
10447 xrdb = x_load_resources (dpyinfo->display, xrm_option,
10448 resource_name, EMACS_CLASS);
10449#ifdef HAVE_XRMSETDATABASE
10450 XrmSetDatabase (dpyinfo->display, xrdb);
10451#else
10452 dpyinfo->display->db = xrdb;
10453#endif
547d9db8 10454 /* Put the rdb where we can find it in a way that works on
7a13e894
RS
10455 all versions. */
10456 dpyinfo->xrdb = xrdb;
334208b7
RS
10457
10458 dpyinfo->screen = ScreenOfDisplay (dpyinfo->display,
10459 DefaultScreen (dpyinfo->display));
5ff67d81 10460 select_visual (dpyinfo);
43bd1b2b 10461 dpyinfo->cmap = DefaultColormapOfScreen (dpyinfo->screen);
334208b7
RS
10462 dpyinfo->height = HeightOfScreen (dpyinfo->screen);
10463 dpyinfo->width = WidthOfScreen (dpyinfo->screen);
10464 dpyinfo->root_window = RootWindowOfScreen (dpyinfo->screen);
231d6cfb 10465 dpyinfo->client_leader_window = 0;
334208b7
RS
10466 dpyinfo->grabbed = 0;
10467 dpyinfo->reference_count = 0;
10468 dpyinfo->icon_bitmap_id = -1;
06a2c219 10469 dpyinfo->font_table = NULL;
7a13e894
RS
10470 dpyinfo->n_fonts = 0;
10471 dpyinfo->font_table_size = 0;
10472 dpyinfo->bitmaps = 0;
10473 dpyinfo->bitmaps_size = 0;
10474 dpyinfo->bitmaps_last = 0;
10475 dpyinfo->scratch_cursor_gc = 0;
10476 dpyinfo->mouse_face_mouse_frame = 0;
10477 dpyinfo->mouse_face_deferred_gc = 0;
10478 dpyinfo->mouse_face_beg_row = dpyinfo->mouse_face_beg_col = -1;
10479 dpyinfo->mouse_face_end_row = dpyinfo->mouse_face_end_col = -1;
06a2c219 10480 dpyinfo->mouse_face_face_id = DEFAULT_FACE_ID;
7a13e894 10481 dpyinfo->mouse_face_window = Qnil;
0a61c667 10482 dpyinfo->mouse_face_overlay = Qnil;
7a13e894
RS
10483 dpyinfo->mouse_face_mouse_x = dpyinfo->mouse_face_mouse_y = 0;
10484 dpyinfo->mouse_face_defer = 0;
66301061 10485 dpyinfo->mouse_face_hidden = 0;
0f941935
KH
10486 dpyinfo->x_focus_frame = 0;
10487 dpyinfo->x_focus_event_frame = 0;
10488 dpyinfo->x_highlight_frame = 0;
06a2c219 10489 dpyinfo->image_cache = make_image_cache ();
c1f0671a 10490 dpyinfo->wm_type = X_WMTYPE_UNKNOWN;
334208b7 10491
9d35adc7
JD
10492 /* See if we can construct pixel values from RGB values. */
10493 dpyinfo->red_bits = dpyinfo->blue_bits = dpyinfo->green_bits = 0;
10494 dpyinfo->red_offset = dpyinfo->blue_offset = dpyinfo->green_offset = 0;
10495
10496 if (dpyinfo->visual->class == TrueColor)
10497 {
10498 get_bits_and_offset (dpyinfo->visual->red_mask,
10499 &dpyinfo->red_bits, &dpyinfo->red_offset);
10500 get_bits_and_offset (dpyinfo->visual->blue_mask,
10501 &dpyinfo->blue_bits, &dpyinfo->blue_offset);
10502 get_bits_and_offset (dpyinfo->visual->green_mask,
10503 &dpyinfo->green_bits, &dpyinfo->green_offset);
10504 }
0666d82c 10505
43bd1b2b 10506 /* See if a private colormap is requested. */
5ff67d81
GM
10507 if (dpyinfo->visual == DefaultVisualOfScreen (dpyinfo->screen))
10508 {
10509 if (dpyinfo->visual->class == PseudoColor)
10510 {
10511 Lisp_Object value;
10512 value = display_x_get_resource (dpyinfo,
10513 build_string ("privateColormap"),
10514 build_string ("PrivateColormap"),
10515 Qnil, Qnil);
10516 if (STRINGP (value)
d5db4077
KR
10517 && (!strcmp (SDATA (value), "true")
10518 || !strcmp (SDATA (value), "on")))
5ff67d81
GM
10519 dpyinfo->cmap = XCopyColormapAndFree (dpyinfo->display, dpyinfo->cmap);
10520 }
43bd1b2b 10521 }
5ff67d81
GM
10522 else
10523 dpyinfo->cmap = XCreateColormap (dpyinfo->display, dpyinfo->root_window,
10524 dpyinfo->visual, AllocNone);
7d0393cf 10525
06a2c219
GM
10526 {
10527 int screen_number = XScreenNumberOfScreen (dpyinfo->screen);
10528 double pixels = DisplayHeight (dpyinfo->display, screen_number);
10529 double mm = DisplayHeightMM (dpyinfo->display, screen_number);
2c51754c
SM
10530 /* Mac OS X 10.3's Xserver sometimes reports 0.0mm. */
10531 dpyinfo->resy = (mm < 1) ? 100 : pixels * 25.4 / mm;
06a2c219 10532 pixels = DisplayWidth (dpyinfo->display, screen_number);
2c51754c 10533 /* Mac OS X 10.3's Xserver sometimes reports 0.0mm. */
06a2c219 10534 mm = DisplayWidthMM (dpyinfo->display, screen_number);
2c51754c 10535 dpyinfo->resx = (mm < 1) ? 100 : pixels * 25.4 / mm;
06a2c219 10536 }
7d0393cf 10537
334208b7
RS
10538 dpyinfo->Xatom_wm_protocols
10539 = XInternAtom (dpyinfo->display, "WM_PROTOCOLS", False);
10540 dpyinfo->Xatom_wm_take_focus
10541 = XInternAtom (dpyinfo->display, "WM_TAKE_FOCUS", False);
10542 dpyinfo->Xatom_wm_save_yourself
10543 = XInternAtom (dpyinfo->display, "WM_SAVE_YOURSELF", False);
10544 dpyinfo->Xatom_wm_delete_window
10545 = XInternAtom (dpyinfo->display, "WM_DELETE_WINDOW", False);
10546 dpyinfo->Xatom_wm_change_state
10547 = XInternAtom (dpyinfo->display, "WM_CHANGE_STATE", False);
10548 dpyinfo->Xatom_wm_configure_denied
10549 = XInternAtom (dpyinfo->display, "WM_CONFIGURE_DENIED", False);
10550 dpyinfo->Xatom_wm_window_moved
10551 = XInternAtom (dpyinfo->display, "WM_MOVED", False);
231d6cfb
JD
10552 dpyinfo->Xatom_wm_client_leader
10553 = XInternAtom (dpyinfo->display, "WM_CLIENT_LEADER", False);
334208b7
RS
10554 dpyinfo->Xatom_editres
10555 = XInternAtom (dpyinfo->display, "Editres", False);
10556 dpyinfo->Xatom_CLIPBOARD
10557 = XInternAtom (dpyinfo->display, "CLIPBOARD", False);
10558 dpyinfo->Xatom_TIMESTAMP
10559 = XInternAtom (dpyinfo->display, "TIMESTAMP", False);
10560 dpyinfo->Xatom_TEXT
10561 = XInternAtom (dpyinfo->display, "TEXT", False);
dc43ef94
KH
10562 dpyinfo->Xatom_COMPOUND_TEXT
10563 = XInternAtom (dpyinfo->display, "COMPOUND_TEXT", False);
c62525b7
KH
10564 dpyinfo->Xatom_UTF8_STRING
10565 = XInternAtom (dpyinfo->display, "UTF8_STRING", False);
334208b7
RS
10566 dpyinfo->Xatom_DELETE
10567 = XInternAtom (dpyinfo->display, "DELETE", False);
10568 dpyinfo->Xatom_MULTIPLE
10569 = XInternAtom (dpyinfo->display, "MULTIPLE", False);
10570 dpyinfo->Xatom_INCR
10571 = XInternAtom (dpyinfo->display, "INCR", False);
10572 dpyinfo->Xatom_EMACS_TMP
10573 = XInternAtom (dpyinfo->display, "_EMACS_TMP_", False);
10574 dpyinfo->Xatom_TARGETS
10575 = XInternAtom (dpyinfo->display, "TARGETS", False);
10576 dpyinfo->Xatom_NULL
10577 = XInternAtom (dpyinfo->display, "NULL", False);
10578 dpyinfo->Xatom_ATOM_PAIR
10579 = XInternAtom (dpyinfo->display, "ATOM_PAIR", False);
dc43ef94
KH
10580 /* For properties of font. */
10581 dpyinfo->Xatom_PIXEL_SIZE
10582 = XInternAtom (dpyinfo->display, "PIXEL_SIZE", False);
6875d1ae
KH
10583 dpyinfo->Xatom_AVERAGE_WIDTH
10584 = XInternAtom (dpyinfo->display, "AVERAGE_WIDTH", False);
dc43ef94
KH
10585 dpyinfo->Xatom_MULE_BASELINE_OFFSET
10586 = XInternAtom (dpyinfo->display, "_MULE_BASELINE_OFFSET", False);
10587 dpyinfo->Xatom_MULE_RELATIVE_COMPOSE
10588 = XInternAtom (dpyinfo->display, "_MULE_RELATIVE_COMPOSE", False);
f78798df
KH
10589 dpyinfo->Xatom_MULE_DEFAULT_ASCENT
10590 = XInternAtom (dpyinfo->display, "_MULE_DEFAULT_ASCENT", False);
334208b7 10591
06a2c219
GM
10592 /* Ghostscript support. */
10593 dpyinfo->Xatom_PAGE = XInternAtom (dpyinfo->display, "PAGE", False);
10594 dpyinfo->Xatom_DONE = XInternAtom (dpyinfo->display, "DONE", False);
7d0393cf 10595
06a2c219
GM
10596 dpyinfo->Xatom_Scrollbar = XInternAtom (dpyinfo->display, "SCROLLBAR",
10597 False);
10598
547d9db8
KH
10599 dpyinfo->cut_buffers_initialized = 0;
10600
93acf8f3
JD
10601 dpyinfo->x_dnd_atoms_size = 8;
10602 dpyinfo->x_dnd_atoms_length = 0;
10603 dpyinfo->x_dnd_atoms = xmalloc (sizeof (*dpyinfo->x_dnd_atoms)
10604 * dpyinfo->x_dnd_atoms_size);
10605
334208b7
RS
10606 connection = ConnectionNumber (dpyinfo->display);
10607 dpyinfo->connection = connection;
10608
dc43ef94 10609 {
5d7cc324
RS
10610 char null_bits[1];
10611
10612 null_bits[0] = 0x00;
dc43ef94
KH
10613
10614 dpyinfo->null_pixel
7d0393cf 10615 = XCreatePixmapFromBitmapData (dpyinfo->display, dpyinfo->root_window,
dc43ef94
KH
10616 null_bits, 1, 1, (long) 0, (long) 0,
10617 1);
10618 }
10619
06a2c219
GM
10620 {
10621 extern int gray_bitmap_width, gray_bitmap_height;
10659c77 10622 extern char *gray_bitmap_bits;
06a2c219
GM
10623 dpyinfo->gray
10624 = XCreatePixmapFromBitmapData (dpyinfo->display, dpyinfo->root_window,
10625 gray_bitmap_bits,
10626 gray_bitmap_width, gray_bitmap_height,
10627 (unsigned long) 1, (unsigned long) 0, 1);
10628 }
10629
f5d11644
GM
10630#ifdef HAVE_X_I18N
10631 xim_initialize (dpyinfo, resource_name);
10632#endif
7d0393cf 10633
87485d6f
MW
10634#ifdef subprocesses
10635 /* This is only needed for distinguishing keyboard and process input. */
334208b7 10636 if (connection != 0)
7a13e894 10637 add_keyboard_wait_descriptor (connection);
87485d6f 10638#endif
6d4238f3 10639
041b69ac 10640#ifndef F_SETOWN_BUG
dc6f92b8 10641#ifdef F_SETOWN
dc6f92b8 10642#ifdef F_SETOWN_SOCK_NEG
61c3ce62 10643 /* stdin is a socket here */
334208b7 10644 fcntl (connection, F_SETOWN, -getpid ());
c118dd06 10645#else /* ! defined (F_SETOWN_SOCK_NEG) */
334208b7 10646 fcntl (connection, F_SETOWN, getpid ());
c118dd06
JB
10647#endif /* ! defined (F_SETOWN_SOCK_NEG) */
10648#endif /* ! defined (F_SETOWN) */
041b69ac 10649#endif /* F_SETOWN_BUG */
dc6f92b8
JB
10650
10651#ifdef SIGIO
eee20f6a
KH
10652 if (interrupt_input)
10653 init_sigio (connection);
c118dd06 10654#endif /* ! defined (SIGIO) */
dc6f92b8 10655
51b592fb 10656#ifdef USE_LUCID
f8c39f51 10657#ifdef HAVE_X11R5 /* It seems X11R4 lacks XtCvtStringToFont, and XPointer. */
51b592fb
RS
10658 /* Make sure that we have a valid font for dialog boxes
10659 so that Xt does not crash. */
10660 {
10661 Display *dpy = dpyinfo->display;
10662 XrmValue d, fr, to;
10663 Font font;
7d0393cf 10664
51b592fb
RS
10665 d.addr = (XPointer)&dpy;
10666 d.size = sizeof (Display *);
10667 fr.addr = XtDefaultFont;
10668 fr.size = sizeof (XtDefaultFont);
10669 to.size = sizeof (Font *);
10670 to.addr = (XPointer)&font;
9ba8e10d 10671 x_catch_errors (dpy);
51b592fb
RS
10672 if (!XtCallConverter (dpy, XtCvtStringToFont, &d, 1, &fr, &to, NULL))
10673 abort ();
10674 if (x_had_errors_p (dpy) || !XQueryFont (dpy, font))
10675 XrmPutLineResource (&xrdb, "Emacs.dialog.*.font: 9x15");
4545fa20 10676 x_uncatch_errors ();
51b592fb
RS
10677 }
10678#endif
f8c39f51 10679#endif
51b592fb 10680
34e23e5a
GM
10681 /* See if we should run in synchronous mode. This is useful
10682 for debugging X code. */
10683 {
10684 Lisp_Object value;
10685 value = display_x_get_resource (dpyinfo,
10686 build_string ("synchronous"),
10687 build_string ("Synchronous"),
10688 Qnil, Qnil);
10689 if (STRINGP (value)
d5db4077
KR
10690 && (!strcmp (SDATA (value), "true")
10691 || !strcmp (SDATA (value), "on")))
34e23e5a
GM
10692 XSynchronize (dpyinfo->display, True);
10693 }
62fe13a4 10694
51f3cc3b
DL
10695 {
10696 Lisp_Object value;
10697 value = display_x_get_resource (dpyinfo,
10698 build_string ("useXIM"),
10699 build_string ("UseXIM"),
10700 Qnil, Qnil);
539465b3 10701#ifdef USE_XIM
51f3cc3b
DL
10702 if (STRINGP (value)
10703 && (!strcmp (XSTRING (value)->data, "false")
10704 || !strcmp (XSTRING (value)->data, "off")))
10705 use_xim = 0;
539465b3
KS
10706#else
10707 if (STRINGP (value)
10708 && (!strcmp (XSTRING (value)->data, "true")
10709 || !strcmp (XSTRING (value)->data, "on")))
10710 use_xim = 1;
10711#endif
51f3cc3b 10712 }
7d0393cf 10713
231d6cfb
JD
10714#ifdef HAVE_X_SM
10715 /* Only do this for the first display. */
11e887e2 10716 if (!x_session_initialized++)
231d6cfb
JD
10717 x_session_initialize (dpyinfo);
10718#endif
10719
60439948
KH
10720 UNBLOCK_INPUT;
10721
7a13e894
RS
10722 return dpyinfo;
10723}
10724\f
10725/* Get rid of display DPYINFO, assuming all frames are already gone,
10726 and without sending any more commands to the X server. */
dc6f92b8 10727
7a13e894
RS
10728void
10729x_delete_display (dpyinfo)
10730 struct x_display_info *dpyinfo;
10731{
96f09305
JD
10732 int i;
10733
7a13e894
RS
10734 delete_keyboard_wait_descriptor (dpyinfo->connection);
10735
10736 /* Discard this display from x_display_name_list and x_display_list.
10737 We can't use Fdelq because that can quit. */
10738 if (! NILP (x_display_name_list)
8e713be6
KR
10739 && EQ (XCAR (x_display_name_list), dpyinfo->name_list_element))
10740 x_display_name_list = XCDR (x_display_name_list);
7a13e894
RS
10741 else
10742 {
10743 Lisp_Object tail;
10744
10745 tail = x_display_name_list;
8e713be6 10746 while (CONSP (tail) && CONSP (XCDR (tail)))
7a13e894 10747 {
bffcfca9 10748 if (EQ (XCAR (XCDR (tail)), dpyinfo->name_list_element))
7a13e894 10749 {
f3fbd155 10750 XSETCDR (tail, XCDR (XCDR (tail)));
7a13e894
RS
10751 break;
10752 }
8e713be6 10753 tail = XCDR (tail);
7a13e894
RS
10754 }
10755 }
10756
9bda743f
GM
10757 if (next_noop_dpyinfo == dpyinfo)
10758 next_noop_dpyinfo = dpyinfo->next;
10759
7a13e894
RS
10760 if (x_display_list == dpyinfo)
10761 x_display_list = dpyinfo->next;
7f9c7f94
RS
10762 else
10763 {
10764 struct x_display_info *tail;
7a13e894 10765
7f9c7f94
RS
10766 for (tail = x_display_list; tail; tail = tail->next)
10767 if (tail->next == dpyinfo)
10768 tail->next = tail->next->next;
10769 }
7a13e894 10770
0d777288
RS
10771#ifndef USE_X_TOOLKIT /* I'm told Xt does this itself. */
10772#ifndef AIX /* On AIX, XCloseDisplay calls this. */
7f9c7f94
RS
10773 XrmDestroyDatabase (dpyinfo->xrdb);
10774#endif
0d777288 10775#endif
29b38361
KH
10776#ifdef MULTI_KBOARD
10777 if (--dpyinfo->kboard->reference_count == 0)
39f79001 10778 delete_kboard (dpyinfo->kboard);
b9737ad3 10779#endif
f5d11644
GM
10780#ifdef HAVE_X_I18N
10781 if (dpyinfo->xim)
10782 xim_close_dpy (dpyinfo);
10783#endif
7d0393cf 10784
96f09305
JD
10785 /* Free the font names in the font table. */
10786 for (i = 0; i < dpyinfo->n_fonts; i++)
10787 if (dpyinfo->font_table[i].name)
10788 {
10789 if (dpyinfo->font_table[i].name != dpyinfo->font_table[i].full_name)
10790 xfree (dpyinfo->font_table[i].full_name);
10791 xfree (dpyinfo->font_table[i].name);
10792 }
10793
4fbd0f6d
KS
10794 if (dpyinfo->font_table)
10795 {
10796 if (dpyinfo->font_table->font_encoder)
10797 xfree (dpyinfo->font_table->font_encoder);
10798 xfree (dpyinfo->font_table);
10799 }
10800 if (dpyinfo->x_id_name)
10801 xfree (dpyinfo->x_id_name);
10802 if (dpyinfo->color_cells)
10803 xfree (dpyinfo->color_cells);
b9737ad3 10804 xfree (dpyinfo);
7a13e894 10805}
f04e1297 10806
442a09ea
KS
10807#ifdef USE_X_TOOLKIT
10808
10809/* Atimer callback function for TIMER. Called every 0.1s to process
10810 Xt timeouts, if needed. We must avoid calling XtAppPending as
10811 much as possible because that function does an implicit XFlush
10812 that slows us down. */
10813
10814static void
10815x_process_timeouts (timer)
10816 struct atimer *timer;
10817{
10818 if (toolkit_scroll_bar_interaction || popup_activated ())
10819 {
10820 BLOCK_INPUT;
10821 while (XtAppPending (Xt_app_con) & XtIMTimer)
10822 XtAppProcessEvent (Xt_app_con, XtIMTimer);
10823 UNBLOCK_INPUT;
10824 }
10825}
10826
10827#endif /* USE_X_TOOLKIT */
10828
7a13e894
RS
10829\f
10830/* Set up use of X before we make the first connection. */
10831
f8240bf8
KS
10832extern frame_parm_handler x_frame_parm_handlers[];
10833
06a2c219
GM
10834static struct redisplay_interface x_redisplay_interface =
10835{
f8240bf8 10836 x_frame_parm_handlers,
06a2c219
GM
10837 x_produce_glyphs,
10838 x_write_glyphs,
10839 x_insert_glyphs,
10840 x_clear_end_of_line,
10841 x_scroll_run,
10842 x_after_update_window_line,
10843 x_update_window_begin,
10844 x_update_window_end,
442a09ea
KS
10845 x_cursor_to,
10846 x_flush,
61087d3f 10847#ifdef XFlush
06a2c219 10848 x_flush,
442a09ea
KS
10849#else
10850 0, /* flush_display_optional */
10851#endif
10852 x_clear_window_mouse_face,
66ac4b0e 10853 x_get_glyph_overhangs,
5958f265 10854 x_fix_overlapping_area,
5da0698e 10855 x_draw_fringe_bitmap,
fe1a14c1
KS
10856 0, /* define_fringe_bitmap */
10857 0, /* destroy_fringe_bitmap */
5da0698e
KS
10858 x_per_char_metric,
10859 x_encode_char,
10860 x_compute_glyph_string_overhangs,
442a09ea
KS
10861 x_draw_glyph_string,
10862 x_define_frame_cursor,
10863 x_clear_frame_area,
10864 x_draw_window_cursor,
10865 x_draw_vertical_window_border,
10866 x_shift_glyphs_for_insert
06a2c219
GM
10867};
10868
dfcf069d 10869void
7a13e894
RS
10870x_initialize ()
10871{
06a2c219
GM
10872 rif = &x_redisplay_interface;
10873
10874 clear_frame_hook = x_clear_frame;
10875 ins_del_lines_hook = x_ins_del_lines;
06a2c219 10876 delete_glyphs_hook = x_delete_glyphs;
dc6f92b8
JB
10877 ring_bell_hook = XTring_bell;
10878 reset_terminal_modes_hook = XTreset_terminal_modes;
10879 set_terminal_modes_hook = XTset_terminal_modes;
06a2c219
GM
10880 update_begin_hook = x_update_begin;
10881 update_end_hook = x_update_end;
dc6f92b8
JB
10882 set_terminal_window_hook = XTset_terminal_window;
10883 read_socket_hook = XTread_socket;
b8009dd1 10884 frame_up_to_date_hook = XTframe_up_to_date;
90e65f07 10885 mouse_position_hook = XTmouse_position;
f451eb13 10886 frame_rehighlight_hook = XTframe_rehighlight;
dbc4e1c1 10887 frame_raise_lower_hook = XTframe_raise_lower;
ab648270
JB
10888 set_vertical_scroll_bar_hook = XTset_vertical_scroll_bar;
10889 condemn_scroll_bars_hook = XTcondemn_scroll_bars;
10890 redeem_scroll_bar_hook = XTredeem_scroll_bar;
10891 judge_scroll_bars_hook = XTjudge_scroll_bars;
58769bee 10892
f676886a 10893 scroll_region_ok = 1; /* we'll scroll partial frames */
9017309f 10894 char_ins_del_ok = 1;
dc6f92b8
JB
10895 line_ins_del_ok = 1; /* we'll just blt 'em */
10896 fast_clear_end_of_line = 1; /* X does this well */
58769bee 10897 memory_below_frame = 0; /* we don't remember what scrolls
dc6f92b8
JB
10898 off the bottom */
10899 baud_rate = 19200;
10900
7a13e894 10901 x_noop_count = 0;
9ea173e8 10902 last_tool_bar_item = -1;
06a2c219 10903 any_help_event_p = 0;
ccf1626a 10904 ignore_next_mouse_click_timeout = 0;
11e887e2
JD
10905#ifdef HAVE_X_SM
10906 x_session_initialized = 0;
10907#endif
7d0393cf 10908
89079179
KS
10909#ifdef USE_GTK
10910 current_count = -1;
10911#endif
10912
b30b24cb
RS
10913 /* Try to use interrupt input; if we can't, then start polling. */
10914 Fset_input_mode (Qt, Qnil, Qt, Qnil);
10915
7f9c7f94
RS
10916#ifdef USE_X_TOOLKIT
10917 XtToolkitInitialize ();
651f03b6 10918
7f9c7f94 10919 Xt_app_con = XtCreateApplicationContext ();
7d0393cf 10920
651f03b6
GM
10921 /* Register a converter from strings to pixels, which uses
10922 Emacs' color allocation infrastructure. */
10923 XtAppSetTypeConverter (Xt_app_con,
10924 XtRString, XtRPixel, cvt_string_to_pixel,
10925 cvt_string_to_pixel_args,
10926 XtNumber (cvt_string_to_pixel_args),
10927 XtCacheByDisplay, cvt_pixel_dtor);
10928
665881ad 10929 XtAppSetFallbackResources (Xt_app_con, Xt_default_resources);
bffcfca9
GM
10930
10931 /* Install an asynchronous timer that processes Xt timeout events
10932 every 0.1s. This is necessary because some widget sets use
10933 timeouts internally, for example the LessTif menu bar, or the
10934 Xaw3d scroll bar. When Xt timouts aren't processed, these
10935 widgets don't behave normally. */
10936 {
10937 EMACS_TIME interval;
10938 EMACS_SET_SECS_USECS (interval, 0, 100000);
10939 start_atimer (ATIMER_CONTINUOUS, interval, x_process_timeouts, 0);
10940 }
db74249b 10941#endif
7d0393cf 10942
eccc05db 10943#ifdef USE_TOOLKIT_SCROLL_BARS
488dd4c4 10944#ifndef USE_GTK
ec18280f
SM
10945 xaw3d_arrow_scroll = False;
10946 xaw3d_pick_top = True;
488dd4c4 10947#endif
7f9c7f94
RS
10948#endif
10949
58769bee 10950 /* Note that there is no real way portable across R3/R4 to get the
c118dd06 10951 original error handler. */
e99db5a1 10952 XSetErrorHandler (x_error_handler);
334208b7 10953 XSetIOErrorHandler (x_io_error_quitter);
dc6f92b8 10954
06a2c219 10955 /* Disable Window Change signals; they are handled by X events. */
dc6f92b8
JB
10956#ifdef SIGWINCH
10957 signal (SIGWINCH, SIG_DFL);
a59facca 10958#endif /* SIGWINCH */
dc6f92b8 10959
92e2441b 10960 signal (SIGPIPE, x_connection_signal);
dc6f92b8 10961}
55123275 10962
06a2c219 10963
55123275
JB
10964void
10965syms_of_xterm ()
10966{
5badc98d 10967 x_error_message = NULL;
e99db5a1 10968
7a13e894
RS
10969 staticpro (&x_display_name_list);
10970 x_display_name_list = Qnil;
334208b7 10971
ab648270 10972 staticpro (&last_mouse_scroll_bar);
e53cb100 10973 last_mouse_scroll_bar = Qnil;
59e755be
KH
10974
10975 staticpro (&Qvendor_specific_keysyms);
10976 Qvendor_specific_keysyms = intern ("vendor-specific-keysyms");
2237cac9 10977
c997eae5
SM
10978 staticpro (&Qutf_8);
10979 Qutf_8 = intern ("utf-8");
10980 staticpro (&Qlatin_1);
10981 Qlatin_1 = intern ("latin-1");
10982
2237cac9
RS
10983 staticpro (&last_mouse_press_frame);
10984 last_mouse_press_frame = Qnil;
06a2c219 10985
a72d5ce5 10986 DEFVAR_BOOL ("x-use-underline-position-properties",
7ee72033
MB
10987 &x_use_underline_position_properties,
10988 doc: /* *Non-nil means make use of UNDERLINE_POSITION font properties.
f0529b5b 10989nil means ignore them. If you encounter fonts with bogus
228299fa
GM
10990UNDERLINE_POSITION font properties, for example 7x13 on XFree prior
10991to 4.1, set this to nil. */);
a72d5ce5
GM
10992 x_use_underline_position_properties = 1;
10993
30f27523
KS
10994 DEFVAR_BOOL ("x-underline-at-descent-line",
10995 &x_underline_at_descent_line,
10996 doc: /* *Non-nil means to draw the underline at the same place as the descent line.
10997nil means to draw the underline according to the value of the variable
10998`x-use-underline-position-properties', which is usually at the baseline
10999level. The default value is nil. */);
11000 x_underline_at_descent_line = 0;
11001
0666d82c
KS
11002 DEFVAR_BOOL ("x-mouse-click-focus-ignore-position",
11003 &x_mouse_click_focus_ignore_position,
11004 doc: /* Non-nil means that a mouse click to focus a frame does not move point.
11005This variable is only used when the window manager requires that you
11006click on a frame to select it (give it focus). In that case, a value
11007of nil, means that the selected window and cursor position changes to
11008reflect the mouse click position, while a non-nil value means that the
11009selected window or cursor position is preserved. */);
11010 x_mouse_click_focus_ignore_position = 0;
11011
7ee72033
MB
11012 DEFVAR_LISP ("x-toolkit-scroll-bars", &Vx_toolkit_scroll_bars,
11013 doc: /* What X toolkit scroll bars Emacs uses.
228299fa
GM
11014A value of nil means Emacs doesn't use X toolkit scroll bars.
11015Otherwise, value is a symbol describing the X toolkit. */);
eccc05db 11016#ifdef USE_TOOLKIT_SCROLL_BARS
5bf04520
GM
11017#ifdef USE_MOTIF
11018 Vx_toolkit_scroll_bars = intern ("motif");
11019#elif defined HAVE_XAW3D
11020 Vx_toolkit_scroll_bars = intern ("xaw3d");
488dd4c4
JD
11021#elif USE_GTK
11022 Vx_toolkit_scroll_bars = intern ("gtk");
5bf04520
GM
11023#else
11024 Vx_toolkit_scroll_bars = intern ("xaw");
11025#endif
06a2c219 11026#else
5bf04520 11027 Vx_toolkit_scroll_bars = Qnil;
06a2c219
GM
11028#endif
11029
06a2c219
GM
11030 staticpro (&last_mouse_motion_frame);
11031 last_mouse_motion_frame = Qnil;
7d0393cf 11032
98659da6
KG
11033 Qmodifier_value = intern ("modifier-value");
11034 Qalt = intern ("alt");
11035 Fput (Qalt, Qmodifier_value, make_number (alt_modifier));
11036 Qhyper = intern ("hyper");
11037 Fput (Qhyper, Qmodifier_value, make_number (hyper_modifier));
11038 Qmeta = intern ("meta");
11039 Fput (Qmeta, Qmodifier_value, make_number (meta_modifier));
11040 Qsuper = intern ("super");
11041 Fput (Qsuper, Qmodifier_value, make_number (super_modifier));
7d0393cf 11042
98659da6
KG
11043 DEFVAR_LISP ("x-alt-keysym", &Vx_alt_keysym,
11044 doc: /* Which keys Emacs uses for the alt modifier.
11045This should be one of the symbols `alt', `hyper', `meta', `super'.
11046For example, `alt' means use the Alt_L and Alt_R keysyms. The default
11047is nil, which is the same as `alt'. */);
11048 Vx_alt_keysym = Qnil;
7d0393cf 11049
98659da6
KG
11050 DEFVAR_LISP ("x-hyper-keysym", &Vx_hyper_keysym,
11051 doc: /* Which keys Emacs uses for the hyper modifier.
11052This should be one of the symbols `alt', `hyper', `meta', `super'.
11053For example, `hyper' means use the Hyper_L and Hyper_R keysyms. The
11054default is nil, which is the same as `hyper'. */);
11055 Vx_hyper_keysym = Qnil;
7d0393cf 11056
98659da6
KG
11057 DEFVAR_LISP ("x-meta-keysym", &Vx_meta_keysym,
11058 doc: /* Which keys Emacs uses for the meta modifier.
11059This should be one of the symbols `alt', `hyper', `meta', `super'.
11060For example, `meta' means use the Meta_L and Meta_R keysyms. The
11061default is nil, which is the same as `meta'. */);
11062 Vx_meta_keysym = Qnil;
7d0393cf 11063
98659da6
KG
11064 DEFVAR_LISP ("x-super-keysym", &Vx_super_keysym,
11065 doc: /* Which keys Emacs uses for the super modifier.
11066This should be one of the symbols `alt', `hyper', `meta', `super'.
11067For example, `super' means use the Super_L and Super_R keysyms. The
11068default is nil, which is the same as `super'. */);
11069 Vx_super_keysym = Qnil;
11070
dbd4b028
DL
11071 DEFVAR_LISP ("x-keysym-table", &Vx_keysym_table,
11072 doc: /* Hash table of character codes indexed by X keysym codes. */);
11073 Vx_keysym_table = make_hash_table (Qeql, make_number (900),
11074 make_float (DEFAULT_REHASH_SIZE),
11075 make_float (DEFAULT_REHASH_THRESHOLD),
11076 Qnil, Qnil, Qnil);
55123275 11077}
6cf0ae86 11078
1d6c120a 11079#endif /* HAVE_X_WINDOWS */
ab5796a9
MB
11080
11081/* arch-tag: 6d4e4cb7-abc1-4302-9585-d84dcfb09d0f
11082 (do not change this comment) */