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