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