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