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