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