Update copyright.
[bpt/emacs.git] / src / xterm.c
CommitLineData
dc6f92b8 1/* X Communication module for terminals which understand the X protocol.
b8009dd1 2 Copyright (C) 1989, 1993, 1994 Free Software Foundation, Inc.
dc6f92b8
JB
3
4This file is part of GNU Emacs.
5
6GNU Emacs is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
4746118a 8the Free Software Foundation; either version 2, or (at your option)
dc6f92b8
JB
9any later version.
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Emacs; see the file COPYING. If not, write to
18the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
19
3afe33e7
RS
20/* Xt features made by Fred Pierresteguy. */
21
039440c4
RS
22/* On 4.3 these lose if they come after xterm.h. */
23/* On HP-UX 8.0 signal.h loses if it comes after config.h. */
24/* Putting these at the beginning seems to be standard for other .c files. */
25#include <stdio.h>
26#include <signal.h>
27
18160b98 28#include <config.h>
dc6f92b8 29
3afe33e7 30/* Need syssignal.h for various externs and definitions that may be required
bc20ebbf 31 by some configurations for calls to signal later in this source file. */
3afe33e7
RS
32#include "syssignal.h"
33
dc6f92b8
JB
34#ifdef HAVE_X_WINDOWS
35
36#include "lisp.h"
9ac0d9e0 37#include "blockinput.h"
dc6f92b8 38
dc6f92b8
JB
39/* This may include sys/types.h, and that somehow loses
40 if this is not done before the other system files. */
41#include "xterm.h"
f451eb13 42#include <X11/cursorfont.h>
dc6f92b8 43
16bd92ea 44#ifndef USG
dc6f92b8
JB
45/* Load sys/types.h if not already loaded.
46 In some systems loading it twice is suicidal. */
47#ifndef makedev
48#include <sys/types.h>
c118dd06
JB
49#endif /* makedev */
50#endif /* USG */
dc6f92b8
JB
51
52#ifdef BSD
53#include <sys/ioctl.h>
54#include <strings.h>
c118dd06 55#else /* ! defined (BSD) */
febf25d5 56#ifndef VMS
dc6f92b8 57#include <string.h>
febf25d5 58#endif
c118dd06 59#endif /* ! defined (BSD) */
dc6f92b8 60
2d368234 61#include "systty.h"
3a2712f9 62#include "systime.h"
dc6f92b8 63
b8009dd1 64#ifndef INCLUDED_FCNTL
dc6f92b8 65#include <fcntl.h>
b8009dd1 66#endif
dc6f92b8
JB
67#include <ctype.h>
68#include <errno.h>
69#include <setjmp.h>
70#include <sys/stat.h>
71#include <sys/param.h>
72
73#include "dispextern.h"
74#include "termhooks.h"
75#include "termopts.h"
76#include "termchar.h"
77#if 0
78#include "sink.h"
79#include "sinkmask.h"
c118dd06 80#endif /* ! 0 */
dc6f92b8 81#include "gnu.h"
f676886a 82#include "frame.h"
dc6f92b8 83#include "disptab.h"
dc6f92b8 84#include "buffer.h"
f451eb13 85#include "window.h"
dc6f92b8 86
3afe33e7
RS
87#ifdef USE_X_TOOLKIT
88extern XtAppContext Xt_app_con;
89extern Widget Xt_app_shell;
9d7e2e3e 90extern void free_frame_menubar ();
c2df547c 91extern void _XEditResCheckMessages ();
3afe33e7
RS
92#endif /* USE_X_TOOLKIT */
93
b849c413
RS
94#ifndef USE_X_TOOLKIT
95#define x_any_window_to_frame x_window_to_frame
5627c40e 96#define x_top_window_to_frame x_window_to_frame
b849c413
RS
97#endif
98
dc6f92b8
JB
99#ifdef HAVE_X11
100#define XMapWindow XMapRaised /* Raise them when mapping. */
c118dd06 101#else /* ! defined (HAVE_X11) */
dc6f92b8
JB
102#include <X/Xkeyboard.h>
103/*#include <X/Xproto.h> */
c118dd06 104#endif /* ! defined (HAVE_X11) */
dc6f92b8 105
c34efc6c
JB
106#ifdef FD_SET
107/* We could get this from param.h, but better not to depend on finding that.
108 And better not to risk that it might define other symbols used in this
109 file. */
110#ifdef FD_SETSIZE
111#define MAXDESC FD_SETSIZE
112#else
113#define MAXDESC 64
114#endif
115#define SELECT_TYPE fd_set
116#else /* no FD_SET */
117#define MAXDESC 32
118#define SELECT_TYPE int
119
120/* Define the macros to access a single-int bitmap of descriptors. */
121#define FD_SET(n, p) (*(p) |= (1 << (n)))
122#define FD_CLR(n, p) (*(p) &= ~(1 << (n)))
123#define FD_ISSET(n, p) (*(p) & (1 << (n)))
124#define FD_ZERO(p) (*(p) = 0)
125#endif /* no FD_SET */
126
dc6f92b8
JB
127/* For sending Meta-characters. Do we need this? */
128#define METABIT 0200
129
130#define min(a,b) ((a)<(b) ? (a) : (b))
131#define max(a,b) ((a)>(b) ? (a) : (b))
69388238 132\f
dc6f92b8
JB
133/* Nonzero means we must reprint all windows
134 because 1) we received an ExposeWindow event
f451eb13 135 or 2) we received too many ExposeRegion events to record.
dc6f92b8 136
f451eb13 137 This is never needed under X11. */
dc6f92b8
JB
138static int expose_all_windows;
139
140/* Nonzero means we must reprint all icon windows. */
141
142static int expose_all_icons;
143
144#ifndef HAVE_X11
145/* ExposeRegion events, when received, are copied into this queue
146 for later processing. */
147
148static struct event_queue x_expose_queue;
149
69388238 150/* ButtonPress and ButtonReleased events, when received,
dc6f92b8
JB
151 are copied into this queue for later processing. */
152
153struct event_queue x_mouse_queue;
c118dd06 154#endif /* HAVE_X11 */
dc6f92b8 155
dc6f92b8
JB
156#if defined (SIGIO) && defined (FIONREAD)
157int BLOCK_INPUT_mask;
c118dd06 158#endif /* ! defined (SIGIO) && defined (FIONREAD) */
dc6f92b8 159
dc6f92b8
JB
160/* The id of a bitmap used for icon windows.
161 One such map is shared by all Emacs icon windows.
162 This is zero if we have not yet had a need to create the bitmap. */
163
164static Bitmap icon_bitmap;
165
166/* Font used for text icons. */
167
168static FONT_TYPE *icon_font_info;
169
170/* Stuff for dealing with the main icon title. */
171
172extern Lisp_Object Vcommand_line_args;
60fb3ee1 173char *hostname, *x_id_name;
dc6f92b8
JB
174
175/* This is the X connection that we are using. */
176
177Display *x_current_display;
178
ab648270
JB
179/* The cursor to use for vertical scroll bars on x_current_display. */
180static Cursor x_vertical_scroll_bar_cursor;
f451eb13 181
987d2ad1 182/* Frame being updated by update_frame. This is declared in term.c.
d0386f2a 183 This is set by update_begin and looked at by all the
dc6f92b8 184 XT functions. It is zero while not inside an update.
f676886a
JB
185 In that case, the XT functions assume that `selected_frame'
186 is the frame to apply to. */
d0386f2a 187extern struct frame *updating_frame;
dc6f92b8 188
f676886a 189/* The frame (if any) which has the X window that has keyboard focus.
f451eb13
JB
190 Zero if none. This is examined by Ffocus_frame in frame.c. Note
191 that a mere EnterNotify event can set this; if you need to know the
192 last frame specified in a FocusIn or FocusOut event, use
193 x_focus_event_frame. */
f676886a 194struct frame *x_focus_frame;
dc6f92b8 195
0134a210
RS
196/* This is a frame waiting to be autoraised, within XTread_socket. */
197struct frame *pending_autoraise_frame;
198
f451eb13
JB
199/* The last frame mentioned in a FocusIn or FocusOut event. This is
200 separate from x_focus_frame, because whether or not LeaveNotify
201 events cause us to lose focus depends on whether or not we have
202 received a FocusIn event for it. */
203struct frame *x_focus_event_frame;
204
f676886a
JB
205/* The frame which currently has the visual highlight, and should get
206 keyboard input (other sorts of input have the frame encoded in the
207 event). It points to the X focus frame's selected window's
208 frame. It differs from x_focus_frame when we're using a global
6d4238f3 209 minibuffer. */
f676886a 210static struct frame *x_highlight_frame;
6d4238f3 211
dc6f92b8 212/* From .Xdefaults, the value of "emacs.WarpMouse". If non-zero,
f676886a 213 mouse is moved to inside of frame when frame is de-iconified. */
dc6f92b8
JB
214
215static int warp_mouse_on_deiconify;
216
217/* During an update, maximum vpos for ins/del line operations to affect. */
218
219static int flexlines;
220
221/* During an update, nonzero if chars output now should be highlighted. */
222
223static int highlight;
224
225/* Nominal cursor position -- where to draw output.
226 During an update, these are different from the cursor-box position. */
227
228static int curs_x;
229static int curs_y;
230
69388238
RS
231/* Mouse movement.
232
233 In order to avoid asking for motion events and then throwing most
234 of them away or busy-polling the server for mouse positions, we ask
235 the server for pointer motion hints. This means that we get only
236 one event per group of mouse movements. "Groups" are delimited by
237 other kinds of events (focus changes and button clicks, for
238 example), or by XQueryPointer calls; when one of these happens, we
239 get another MotionNotify event the next time the mouse moves. This
240 is at least as efficient as getting motion events when mouse
241 tracking is on, and I suspect only negligibly worse when tracking
242 is off.
243
244 The silly O'Reilly & Associates Nutshell guides barely document
245 pointer motion hints at all (I think you have to infer how they
246 work from an example), and the description of XQueryPointer doesn't
247 mention that calling it causes you to get another motion hint from
248 the server, which is very important. */
249
250/* Where the mouse was last time we reported a mouse event. */
251static FRAME_PTR last_mouse_frame;
252static XRectangle last_mouse_glyph;
253
254/* The scroll bar in which the last X motion event occurred.
255
256 If the last X motion event occurred in a scroll bar, we set this
257 so XTmouse_position can know whether to report a scroll bar motion or
258 an ordinary motion.
259
260 If the last X motion event didn't occur in a scroll bar, we set this
261 to Qnil, to tell XTmouse_position to return an ordinary motion event. */
262static Lisp_Object last_mouse_scroll_bar;
263
af31d76f 264/* Record which buttons are currently pressed. */
69388238
RS
265unsigned int x_mouse_grabbed;
266
267/* This is a hack. We would really prefer that XTmouse_position would
268 return the time associated with the position it returns, but there
269 doesn't seem to be any way to wrest the timestamp from the server
270 along with the position query. So, we just keep track of the time
271 of the last movement we received, and return that in hopes that
272 it's somewhat accurate. */
273static Time last_mouse_movement_time;
274
b8009dd1
RS
275/* These variables describe the range of text currently shown
276 in its mouse-face, together with the window they apply to.
277 As long as the mouse stays within this range, we need not
278 redraw anything on its account. */
3b506386
KH
279static int mouse_face_beg_row, mouse_face_beg_col;
280static int mouse_face_end_row, mouse_face_end_col;
b8009dd1
RS
281static Lisp_Object mouse_face_window;
282static int mouse_face_face_id;
283
514e4681
RS
284/* 1 if a mouse motion event came and we didn't handle it right away because
285 gc was in progress. */
286static int mouse_face_deferred_gc;
287
b8009dd1
RS
288/* FRAME and X, Y position of mouse when last checked for highlighting. */
289static FRAME_PTR mouse_face_mouse_frame;
290static int mouse_face_mouse_x, mouse_face_mouse_y;
291
292/* Nonzero means defer mouse-motion highlighting. */
293static int mouse_face_defer;
294
dc6f92b8
JB
295#ifdef HAVE_X11
296/* `t' if a mouse button is depressed. */
297
298extern Lisp_Object Vmouse_depressed;
299
300/* Tells if a window manager is present or not. */
301
302extern Lisp_Object Vx_no_window_manager;
303
304/* Timestamp that we requested selection data was made. */
305extern Time requestor_time;
306
307/* ID of the window requesting selection data. */
308extern Window requestor_window;
309
310/* Nonzero enables some debugging for the X interface code. */
311extern int _Xdebug;
312
c2df547c 313extern Lisp_Object Qface, Qmouse_face;
b8009dd1 314
c118dd06 315#else /* ! defined (HAVE_X11) */
dc6f92b8
JB
316
317/* Bit patterns for the mouse cursor. */
318
319short MouseCursor[] = {
320 0x0000, 0x0008, 0x0018, 0x0038,
321 0x0078, 0x00f8, 0x01f8, 0x03f8,
322 0x07f8, 0x00f8, 0x00d8, 0x0188,
323 0x0180, 0x0300, 0x0300, 0x0000};
324
325short MouseMask[] = {
326 0x000c, 0x001c, 0x003c, 0x007c,
327 0x00fc, 0x01fc, 0x03fc, 0x07fc,
328 0x0ffc, 0x0ffc, 0x01fc, 0x03dc,
329 0x03cc, 0x0780, 0x0780, 0x0300};
330
331static short grey_bits[] = {
332 0x0005, 0x000a, 0x0005, 0x000a};
333
334static Pixmap GreyPixmap = 0;
c118dd06 335#endif /* ! defined (HAVE_X11) */
dc6f92b8
JB
336
337/* From time to time we get info on an Emacs window, here. */
338
339static WINDOWINFO_TYPE windowinfo;
340
341extern int errno;
342
dfeccd2d 343/* A mask of extra modifier bits to put into every keyboard char. */
64bb1782
RS
344extern int extra_keyboard_modifiers;
345
dc6f92b8
JB
346extern Display *XOpenDisplay ();
347extern Window XCreateWindow ();
348
349extern Cursor XCreateCursor ();
350extern FONT_TYPE *XOpenFont ();
351
352static void flashback ();
c83febd7 353static void redraw_previous_char ();
0cdd0c9f 354static void redraw_following_char ();
3afe33e7 355static unsigned int x_x_to_emacs_modifiers ();
dc6f92b8 356
55836b73 357static int fast_find_position ();
b8009dd1
RS
358static void note_mouse_highlight ();
359static void clear_mouse_face ();
360static void show_mouse_face ();
361
dc6f92b8
JB
362#ifndef HAVE_X11
363static void dumpqueue ();
c118dd06 364#endif /* HAVE_X11 */
dc6f92b8
JB
365
366void dumpborder ();
4746118a
JB
367static int XTcursor_to ();
368static int XTclear_end_of_line ();
16bd92ea
JB
369
370\f
f451eb13
JB
371/* Starting and ending updates.
372
373 These hooks are called by update_frame at the beginning and end
f676886a
JB
374 of a frame update. We record in `updating_frame' the identity
375 of the frame being updated, so that the XT... functions do not
376 need to take a frame as argument. Most of the XT... functions
dc6f92b8 377 should never be called except during an update, the only exceptions
c83febd7 378 being XTcursor_to, XTwrite_glyphs and XTreassert_line_highlight. */
dc6f92b8
JB
379
380extern int mouse_track_top, mouse_track_left, mouse_track_width;
381
382static
f676886a
JB
383XTupdate_begin (f)
384 struct frame *f;
dc6f92b8
JB
385{
386 int mask;
387
f676886a 388 if (f == 0)
dc6f92b8
JB
389 abort ();
390
f676886a 391 flexlines = f->height;
dc6f92b8
JB
392 highlight = 0;
393
dc6f92b8 394 BLOCK_INPUT;
b8009dd1
RS
395
396 if (f == mouse_face_mouse_frame)
397 {
514e4681 398 /* Don't do highlighting for mouse motion during the update. */
b8009dd1
RS
399 mouse_face_defer = 1;
400 if (!NILP (mouse_face_window))
514e4681
RS
401 {
402 int firstline, lastline, i;
403 struct window *w = XWINDOW (mouse_face_window);
404
405 /* Find the first, and the last+1, lines affected by redisplay. */
406 for (firstline = 0; firstline < f->height; firstline++)
407 if (FRAME_DESIRED_GLYPHS (f)->enable[firstline])
408 break;
409
410 lastline = f->height;
411 for (i = f->height - 1; i >= 0; i--)
412 {
413 if (FRAME_DESIRED_GLYPHS (f)->enable[i])
414 break;
415 else
416 lastline = i;
417 }
418
419 /* Can we tell that this update does not affect the window
420 where the mouse highlight is? If so, no need to turn off. */
421 if (! (firstline > (XFASTINT (w->top) + window_internal_height (w))
422 || lastline < XFASTINT (w->top)))
423 /* Otherwise turn off the mouse highlight now. */
424 clear_mouse_face ();
425 }
b8009dd1 426 }
dc6f92b8
JB
427#ifndef HAVE_X11
428 dumpqueue ();
c118dd06 429#endif /* HAVE_X11 */
dc6f92b8
JB
430 UNBLOCK_INPUT;
431}
432
f451eb13 433#ifndef HAVE_X11
dc6f92b8 434static void x_do_pending_expose ();
f451eb13 435#endif
dc6f92b8
JB
436
437static
f676886a
JB
438XTupdate_end (f)
439 struct frame *f;
dc6f92b8
JB
440{
441 int mask;
442
dc6f92b8
JB
443 BLOCK_INPUT;
444#ifndef HAVE_X11
445 dumpqueue ();
dc6f92b8 446 x_do_pending_expose ();
f451eb13 447#endif /* HAVE_X11 */
dc6f92b8 448
f676886a 449 x_display_cursor (f, 1);
dc6f92b8 450
b8009dd1
RS
451 if (f == mouse_face_mouse_frame)
452 mouse_face_defer = 0;
453#if 0
454 /* This fails in the case of having updated only the echo area
455 if we have switched buffers. In that case, FRAME_CURRENT_GLYPHS
456 has no relation to the current contents, and its charstarts
457 have no relation to the contents of the window-buffer.
458 I don't know a clean way to check
459 for that case. window_end_valid isn't set up yet. */
460 if (f == mouse_face_mouse_frame)
461 note_mouse_highlight (f, mouse_face_mouse_x, mouse_face_mouse_y);
462#endif
463
dc6f92b8
JB
464 XFlushQueue ();
465 UNBLOCK_INPUT;
466}
b8009dd1 467
514e4681 468/* This is called after a redisplay on frame F. */
b8009dd1
RS
469
470static
471XTframe_up_to_date (f)
472 FRAME_PTR f;
473{
514e4681
RS
474 if (mouse_face_deferred_gc || f == mouse_face_mouse_frame)
475 {
476 note_mouse_highlight (mouse_face_mouse_frame,
477 mouse_face_mouse_x, mouse_face_mouse_y);
478 mouse_face_deferred_gc = 0;
479 }
b8009dd1 480}
dc6f92b8
JB
481\f
482/* External interface to control of standout mode.
483 Call this when about to modify line at position VPOS
484 and not change whether it is highlighted. */
485
486XTreassert_line_highlight (new, vpos)
487 int new, vpos;
488{
489 highlight = new;
490}
491
492/* Call this when about to modify line at position VPOS
493 and change whether it is highlighted. */
494
495static
496XTchange_line_highlight (new_highlight, vpos, first_unused_hpos)
497 int new_highlight, vpos, first_unused_hpos;
498{
499 highlight = new_highlight;
500 XTcursor_to (vpos, 0);
f676886a 501 XTclear_end_of_line (updating_frame->width);
dc6f92b8
JB
502}
503
504/* This is used when starting Emacs and when restarting after suspend.
505 When starting Emacs, no X window is mapped. And nothing must be done
506 to Emacs's own window if it is suspended (though that rarely happens). */
507
508static
509XTset_terminal_modes ()
510{
511}
512
513/* This is called when exiting or suspending Emacs.
514 Exiting will make the X-windows go away, and suspending
515 requires no action. */
516
517static
518XTreset_terminal_modes ()
519{
f676886a 520/* XTclear_frame (); */
dc6f92b8
JB
521}
522\f
f451eb13
JB
523/* Set the nominal cursor position of the frame.
524 This is where display update commands will take effect.
dc6f92b8
JB
525 This does not affect the place where the cursor-box is displayed. */
526
4746118a 527static int
dc6f92b8
JB
528XTcursor_to (row, col)
529 register int row, col;
530{
531 int mask;
532 int orow = row;
533
534 curs_x = col;
535 curs_y = row;
536
f676886a 537 if (updating_frame == 0)
dc6f92b8
JB
538 {
539 BLOCK_INPUT;
f676886a 540 x_display_cursor (selected_frame, 1);
dc6f92b8
JB
541 XFlushQueue ();
542 UNBLOCK_INPUT;
543 }
544}
545\f
546/* Display a sequence of N glyphs found at GP.
547 WINDOW is the x-window to output to. LEFT and TOP are starting coords.
b8009dd1
RS
548 HL is 1 if this text is highlighted, 2 if the cursor is on it,
549 3 if should appear in its mouse-face.
0cdd0c9f
RS
550 JUST_FOREGROUND if 1 means draw only the foreground;
551 don't alter the background.
dc6f92b8 552
07e34cb0 553 FONT is the default font to use (for glyphs whose font-code is 0).
dc6f92b8 554
07e34cb0
JB
555 Since the display generation code is responsible for calling
556 compute_char_face and compute_glyph_face on everything it puts in
557 the display structure, we can assume that the face code on each
28f72798 558 glyph is a valid index into FRAME_COMPUTED_FACES (f), and the one
f94397b5
KH
559 to which we can actually apply intern_face.
560 Call this function with input blocked. */
dc6f92b8 561
07e34cb0
JB
562#if 1
563/* This is the multi-face code. */
dc6f92b8 564
dc6f92b8 565static void
0cdd0c9f 566dumpglyphs (f, left, top, gp, n, hl, just_foreground)
f676886a 567 struct frame *f;
dc6f92b8
JB
568 int left, top;
569 register GLYPH *gp; /* Points to first GLYPH. */
570 register int n; /* Number of glyphs to display. */
571 int hl;
0cdd0c9f 572 int just_foreground;
dc6f92b8 573{
07e34cb0
JB
574 /* Holds characters to be displayed. */
575 char *buf = (char *) alloca (f->width * sizeof (*buf));
dc6f92b8
JB
576 register char *cp; /* Steps through buf[]. */
577 register int tlen = GLYPH_TABLE_LENGTH;
578 register Lisp_Object *tbase = GLYPH_TABLE_BASE;
c118dd06 579 Window window = FRAME_X_WINDOW (f);
0cdd0c9f 580 int orig_left = left;
dc6f92b8 581
07e34cb0 582 while (n > 0)
dc6f92b8
JB
583 {
584 /* Get the face-code of the next GLYPH. */
585 int cf, len;
586 int g = *gp;
587
07e34cb0 588 GLYPH_FOLLOW_ALIASES (tbase, tlen, g);
6f63ba79 589 cf = FAST_GLYPH_FACE (g);
dc6f92b8
JB
590
591 /* Find the run of consecutive glyphs with the same face-code.
592 Extract their character codes into BUF. */
593 cp = buf;
594 while (n > 0)
595 {
596 g = *gp;
07e34cb0 597 GLYPH_FOLLOW_ALIASES (tbase, tlen, g);
6f63ba79 598 if (FAST_GLYPH_FACE (g) != cf)
dc6f92b8
JB
599 break;
600
6f63ba79 601 *cp++ = FAST_GLYPH_CHAR (g);
dc6f92b8
JB
602 --n;
603 ++gp;
604 }
605
606 /* LEN gets the length of the run. */
607 len = cp - buf;
608
609 /* Now output this run of chars, with the font and pixel values
610 determined by the face code CF. */
07e34cb0
JB
611 {
612 struct face *face = FRAME_DEFAULT_FACE (f);
613 FONT_TYPE *font = FACE_FONT (face);
614 GC gc = FACE_GC (face);
b73b6aaf 615 int gc_temporary = 0;
07e34cb0 616
b8009dd1
RS
617 /* HL = 3 means use a mouse face previously chosen. */
618 if (hl == 3)
619 cf = mouse_face_face_id;
620
b73b6aaf
RS
621 /* First look at the face of the text itself. */
622 if (cf != 0)
07e34cb0 623 {
a07d4bc5
RS
624 /* It's possible for the display table to specify
625 a face code that is out of range. Use 0 in that case. */
28f72798
JB
626 if (cf < 0 || cf >= FRAME_N_COMPUTED_FACES (f)
627 || FRAME_COMPUTED_FACES (f) [cf] == 0)
a07d4bc5 628 cf = 0;
07e34cb0
JB
629
630 if (cf == 1)
631 face = FRAME_MODE_LINE_FACE (f);
632 else
28f72798 633 face = intern_face (f, FRAME_COMPUTED_FACES (f) [cf]);
07e34cb0
JB
634 font = FACE_FONT (face);
635 gc = FACE_GC (face);
636 }
4a4dc352
JB
637
638 /* Then comes the distinction between modeline and normal text. */
07e34cb0
JB
639 else if (hl == 0)
640 ;
641 else if (hl == 1)
642 {
643 face = FRAME_MODE_LINE_FACE (f);
644 font = FACE_FONT (face);
645 gc = FACE_GC (face);
b73b6aaf
RS
646 }
647
648#define FACE_DEFAULT (~0)
649
650 /* Now override that if the cursor's on this character. */
b5cf7a0e 651 if (hl == 2)
b73b6aaf 652 {
dc05a16b 653 if (!face->font
b5cf7a0e
JB
654 || (int) face->font == FACE_DEFAULT)
655 {
656 gc = f->display.x->cursor_gc;
657 }
658 /* Cursor on non-default face: must merge. */
659 else
660 {
661 XGCValues xgcv;
662 unsigned long mask;
663
664 xgcv.background = f->display.x->cursor_pixel;
df5a440b
RS
665 if (face == FRAME_DEFAULT_FACE (f))
666 xgcv.foreground = f->display.x->cursor_foreground_pixel;
667 else
668 xgcv.foreground = face->foreground;
669 /* If the glyph would be invisible,
670 try a different foreground. */
671 if (xgcv.foreground == xgcv.background)
672 xgcv.foreground = face->background;
673 if (xgcv.foreground == xgcv.background)
674 xgcv.foreground = f->display.x->cursor_foreground_pixel;
675 if (xgcv.foreground == xgcv.background)
676 xgcv.foreground = face->foreground;
677 /* Make sure the cursor is distinct from text in this face. */
678 if (xgcv.background == face->background
679 && xgcv.foreground == face->foreground)
680 {
681 xgcv.background = face->foreground;
682 xgcv.foreground = face->background;
683 }
b5cf7a0e
JB
684 xgcv.font = face->font->fid;
685 xgcv.graphics_exposures = 0;
686 mask = GCForeground | GCBackground | GCFont | GCGraphicsExposures;
687 gc = XCreateGC (x_current_display, FRAME_X_WINDOW (f),
688 mask, &xgcv);
b73b6aaf 689#if 0
b5cf7a0e
JB
690 if (face->stipple && face->stipple != FACE_DEFAULT)
691 XSetStipple (x_current_display, gc, face->stipple);
b73b6aaf 692#endif
b5cf7a0e
JB
693 gc_temporary = 1;
694 }
07e34cb0 695 }
07e34cb0 696
b5cf7a0e
JB
697 if ((int) font == FACE_DEFAULT)
698 font = f->display.x->font;
699
0cdd0c9f
RS
700 if (just_foreground)
701 XDrawString (x_current_display, window, gc,
702 left, top + FONT_BASE (font), buf, len);
703 else
704 {
705 XDrawImageString (x_current_display, window, gc,
706 left, top + FONT_BASE (font), buf, len);
707 /* Clear the rest of the line's height. */
708 if (f->display.x->line_height != FONT_HEIGHT (font))
709 XClearArea (x_current_display, window, left,
710 top + FONT_HEIGHT (font),
711 FONT_WIDTH (font) * len,
712 /* This is how many pixels of height
713 we have to clear. */
714 f->display.x->line_height - FONT_HEIGHT (font),
715 False);
716 }
717
718#if 0 /* Doesn't work, because it uses FRAME_CURRENT_GLYPHS,
719 which often is not up to date yet. */
720 if (!just_foreground)
721 {
722 if (left == orig_left)
723 redraw_previous_char (f, PIXEL_TO_CHAR_COL (f, left),
724 PIXEL_TO_CHAR_ROW (f, top), hl == 1);
725 if (n == 0)
726 redraw_following_char (f, PIXEL_TO_CHAR_COL (f, left + len * FONT_WIDTH (font)),
727 PIXEL_TO_CHAR_ROW (f, top), hl == 1);
728 }
729#endif
07e34cb0 730
b73b6aaf
RS
731 if (gc_temporary)
732 XFreeGC (x_current_display, gc);
733
07e34cb0
JB
734 /* We should probably check for XA_UNDERLINE_POSITION and
735 XA_UNDERLINE_THICKNESS properties on the font, but let's
736 just get the thing working, and come back to that. */
dc6f92b8 737 {
4a4dc352 738 int underline_position = 1;
07e34cb0 739
4a4dc352
JB
740 if (font->descent <= underline_position)
741 underline_position = font->descent - 1;
07e34cb0
JB
742
743 if (face->underline)
744 XFillRectangle (x_current_display, FRAME_X_WINDOW (f),
745 FACE_GC (face),
746 left, (top
747 + FONT_BASE (font)
748 + underline_position),
749 len * FONT_WIDTH (font), 1);
dc6f92b8 750 }
07e34cb0
JB
751
752 left += len * FONT_WIDTH (font);
753 }
dc6f92b8
JB
754 }
755}
07e34cb0
JB
756#endif /* 1 */
757
758#if 0
759/* This is the old single-face code. */
760
761static void
762dumpglyphs (f, left, top, gp, n, hl, font)
763 struct frame *f;
764 int left, top;
765 register GLYPH *gp; /* Points to first GLYPH. */
766 register int n; /* Number of glyphs to display. */
767 int hl;
768 FONT_TYPE *font;
769{
770 register int len;
771 Window window = FRAME_X_WINDOW (f);
772 GC drawing_gc = (hl == 2 ? f->display.x->cursor_gc
773 : (hl ? f->display.x->reverse_gc
774 : f->display.x->normal_gc));
775
776 if (sizeof (GLYPH) == sizeof (XChar2b))
777 XDrawImageString16 (x_current_display, window, drawing_gc,
778 left, top + FONT_BASE (font), (XChar2b *) gp, n);
779 else if (sizeof (GLYPH) == sizeof (unsigned char))
780 XDrawImageString (x_current_display, window, drawing_gc,
781 left, top + FONT_BASE (font), (char *) gp, n);
782 else
783 /* What size of glyph ARE you using? And does X have a function to
784 draw them? */
785 abort ();
786}
787#endif
dc6f92b8 788\f
f451eb13
JB
789/* Output some text at the nominal frame cursor position.
790 Advance the cursor over the text.
dc6f92b8
JB
791 Output LEN glyphs at START.
792
793 `highlight', set up by XTreassert_line_highlight or XTchange_line_highlight,
794 controls the pixel values used for foreground and background. */
795
796static
797XTwrite_glyphs (start, len)
798 register GLYPH *start;
799 int len;
800{
801 register int temp_length;
802 int mask;
f676886a 803 struct frame *f;
dc6f92b8
JB
804
805 BLOCK_INPUT;
806
f676886a
JB
807 f = updating_frame;
808 if (f == 0)
dc6f92b8 809 {
f676886a 810 f = selected_frame;
dc6f92b8 811 /* If not within an update,
f676886a
JB
812 output at the frame's visible cursor. */
813 curs_x = f->cursor_x;
814 curs_y = f->cursor_y;
dc6f92b8
JB
815 }
816
f676886a 817 dumpglyphs (f,
12ba150f
JB
818 CHAR_TO_PIXEL_COL (f, curs_x),
819 CHAR_TO_PIXEL_ROW (f, curs_y),
0cdd0c9f 820 start, len, highlight, 0);
90e65f07
JB
821
822 /* If we drew on top of the cursor, note that it is turned off. */
f676886a
JB
823 if (curs_y == f->phys_cursor_y
824 && curs_x <= f->phys_cursor_x
825 && curs_x + len > f->phys_cursor_x)
826 f->phys_cursor_x = -1;
dc6f92b8 827
f676886a 828 if (updating_frame == 0)
dc6f92b8 829 {
f676886a
JB
830 f->cursor_x += len;
831 x_display_cursor (f, 1);
832 f->cursor_x -= len;
dc6f92b8
JB
833 }
834 else
835 curs_x += len;
836
837 UNBLOCK_INPUT;
838}
839\f
f451eb13
JB
840/* Clear to the end of the line.
841 Erase the current text line from the nominal cursor position (inclusive)
dc6f92b8
JB
842 to column FIRST_UNUSED (exclusive). The idea is that everything
843 from FIRST_UNUSED onward is already erased. */
844
4746118a 845static int
dc6f92b8
JB
846XTclear_end_of_line (first_unused)
847 register int first_unused;
848{
f676886a 849 struct frame *f = updating_frame;
dc6f92b8
JB
850 int mask;
851
f676886a 852 if (f == 0)
dc6f92b8
JB
853 abort ();
854
f676886a 855 if (curs_y < 0 || curs_y >= f->height)
dc6f92b8
JB
856 return;
857 if (first_unused <= 0)
858 return;
859
f676886a
JB
860 if (first_unused >= f->width)
861 first_unused = f->width;
dc6f92b8
JB
862
863 BLOCK_INPUT;
864
90e65f07 865 /* Notice if the cursor will be cleared by this operation. */
f676886a
JB
866 if (curs_y == f->phys_cursor_y
867 && curs_x <= f->phys_cursor_x
868 && f->phys_cursor_x < first_unused)
869 f->phys_cursor_x = -1;
dc6f92b8
JB
870
871#ifdef HAVE_X11
c118dd06 872 XClearArea (x_current_display, FRAME_X_WINDOW (f),
12ba150f
JB
873 CHAR_TO_PIXEL_COL (f, curs_x),
874 CHAR_TO_PIXEL_ROW (f, curs_y),
f676886a 875 FONT_WIDTH (f->display.x->font) * (first_unused - curs_x),
a27f9f86 876 f->display.x->line_height, False);
c83febd7 877#if 0
0cdd0c9f 878 redraw_previous_char (f, curs_x, curs_y, highlight);
c83febd7 879#endif
c118dd06
JB
880#else /* ! defined (HAVE_X11) */
881 XPixSet (FRAME_X_WINDOW (f),
12ba150f
JB
882 CHAR_TO_PIXEL_COL (f, curs_x),
883 CHAR_TO_PIXEL_ROW (f, curs_y),
f676886a 884 FONT_WIDTH (f->display.x->font) * (first_unused - curs_x),
a27f9f86 885 f->display.x->line_height,
f676886a 886 f->display.x->background_pixel);
c118dd06 887#endif /* ! defined (HAVE_X11) */
dc6f92b8
JB
888
889 UNBLOCK_INPUT;
890}
891
0cdd0c9f
RS
892static
893XTclear_frame ()
894{
895 int mask;
896 struct frame *f = updating_frame;
897
898 if (f == 0)
899 f = selected_frame;
900
901 f->phys_cursor_x = -1; /* Cursor not visible. */
902 curs_x = 0; /* Nominal cursor position is top left. */
903 curs_y = 0;
904
905 BLOCK_INPUT;
906
907 XClear (FRAME_X_WINDOW (f));
908
909 /* We have to clear the scroll bars, too. If we have changed
910 colors or something like that, then they should be notified. */
911 x_scroll_bar_clear (f);
912
913#ifndef HAVE_X11
914 dumpborder (f, 0);
915#endif /* HAVE_X11 */
916
917 XFlushQueue ();
918 UNBLOCK_INPUT;
919}
920\f
921#if 0
922/* This currently does not work because FRAME_CURRENT_GLYPHS doesn't
923 always contain the right glyphs to use.
924
925 It also needs to be changed to look at the details of the font and
926 see whether there is really overlap, and do nothing when there is
927 not. This can use font_char_overlap_left and font_char_overlap_right,
928 but just how to use them is not clear. */
929
c83febd7
RS
930/* Erase the character (if any) at the position just before X, Y in frame F,
931 then redraw it and the character before it.
932 This is necessary when we erase starting at X,
f94397b5
KH
933 in case the character after X overlaps into the one before X.
934 Call this function with input blocked. */
c83febd7
RS
935
936static void
0cdd0c9f 937redraw_previous_char (f, x, y, highlight_flag)
c83febd7
RS
938 FRAME_PTR f;
939 int x, y;
0cdd0c9f 940 int highlight_flag;
c83febd7
RS
941{
942 /* Erase the character before the new ones, in case
943 what was here before overlaps it.
944 Reoutput that character, and the previous character
945 (in case the previous character overlaps it). */
946 if (x > 0)
947 {
948 int start_x = x - 2;
949 if (start_x < 0)
950 start_x = 0;
951 XClearArea (x_current_display, FRAME_X_WINDOW (f),
952 CHAR_TO_PIXEL_COL (f, x - 1),
953 CHAR_TO_PIXEL_ROW (f, y),
954 FONT_WIDTH (f->display.x->font),
a27f9f86 955 f->display.x->line_height, False);
c83febd7
RS
956
957 dumpglyphs (f, CHAR_TO_PIXEL_COL (f, start_x),
958 CHAR_TO_PIXEL_ROW (f, y),
959 &FRAME_CURRENT_GLYPHS (f)->glyphs[y][start_x],
0cdd0c9f 960 x - start_x, highlight_flag, 1);
c83febd7
RS
961 }
962}
963
0cdd0c9f
RS
964/* Erase the character (if any) at the position X, Y in frame F,
965 then redraw it and the character after it.
966 This is necessary when we erase endng at X,
967 in case the character after X overlaps into the one before X.
968 Call this function with input blocked. */
969
970static void
971redraw_following_char (f, x, y, highlight_flag)
972 FRAME_PTR f;
973 int x, y;
974 int highlight_flag;
dc6f92b8 975{
0cdd0c9f
RS
976 int limit = FRAME_CURRENT_GLYPHS (f)->used[y];
977 /* Erase the character after the new ones, in case
978 what was here before overlaps it.
979 Reoutput that character, and the following character
980 (in case the following character overlaps it). */
981 if (x < limit
982 && FRAME_CURRENT_GLYPHS (f)->glyphs[y][x] != SPACEGLYPH)
983 {
984 int end_x = x + 2;
985 if (end_x > limit)
986 end_x = limit;
987 XClearArea (x_current_display, FRAME_X_WINDOW (f),
988 CHAR_TO_PIXEL_COL (f, x),
989 CHAR_TO_PIXEL_ROW (f, y),
990 FONT_WIDTH (f->display.x->font),
991 f->display.x->line_height, False);
dc6f92b8 992
0cdd0c9f
RS
993 dumpglyphs (f, CHAR_TO_PIXEL_COL (f, x),
994 CHAR_TO_PIXEL_ROW (f, y),
995 &FRAME_CURRENT_GLYPHS (f)->glyphs[y][x],
996 end_x - x, highlight_flag, 1);
997 }
998}
999#endif /* 0 */
1000\f
1001#if 0 /* Not in use yet */
dc6f92b8 1002
0cdd0c9f 1003/* Return 1 if character C in font F extends past its left edge. */
dbc4e1c1 1004
0cdd0c9f
RS
1005static int
1006font_char_overlap_left (font, c)
1007 XFontStruct *font;
1008 int c;
1009{
1010 XCharStruct *s;
dbc4e1c1 1011
0cdd0c9f
RS
1012 /* Find the bounding-box info for C. */
1013 if (font->per_char == 0)
1014 s = &font->max_bounds;
1015 else
1016 {
1017 int rowlen = font->max_char_or_byte2 - font->min_char_or_byte2 + 1;
1018 int row, within;
1019
1020 /* Decode char into row number (byte 1) and code within row (byte 2). */
1021 row = c >> 8;
1022 within = c & 0177;
1023 if (!(within >= font->min_char_or_byte2
1024 && within <= font->max_char_or_byte2
1025 && row >= font->min_byte1
1026 && row <= font->max_byte1))
1027 {
1028 /* If char is out of range, try the font's default char instead. */
1029 c = font->default_char;
1030 row = c >> (INTBITS - 8);
1031 within = c & 0177;
1032 }
1033 if (!(within >= font->min_char_or_byte2
1034 && within <= font->max_char_or_byte2
1035 && row >= font->min_byte1
1036 && row <= font->max_byte1))
1037 /* Still out of range means this char does not overlap. */
1038 return 0;
1039 else
1040 /* We found the info for this char. */
1041 s = (font->per_char + (within - font->min_char_or_byte2)
1042 + row * rowlen);
1043 }
dbc4e1c1 1044
0cdd0c9f
RS
1045 return (s && s->lbearing < 0);
1046}
dbc4e1c1 1047
0cdd0c9f
RS
1048/* Return 1 if character C in font F extends past its right edge. */
1049
1050static int
1051font_char_overlap_right (font, c)
1052 XFontStruct *font;
1053 int c;
1054{
1055 XCharStruct *s;
1056
1057 /* Find the bounding-box info for C. */
1058 if (font->per_char == 0)
1059 s = &font->max_bounds;
1060 else
1061 {
1062 int rowlen = font->max_char_or_byte2 - font->min_char_or_byte2 + 1;
1063 int row, within;
1064
1065 /* Decode char into row number (byte 1) and code within row (byte 2). */
1066 row = c >> 8;
1067 within = c & 0177;
1068 if (!(within >= font->min_char_or_byte2
1069 && within <= font->max_char_or_byte2
1070 && row >= font->min_byte1
1071 && row <= font->max_byte1))
1072 {
1073 /* If char is out of range, try the font's default char instead. */
1074 c = font->default_char;
1075 row = c >> (INTBITS - 8);
1076 within = c & 0177;
1077 }
1078 if (!(within >= font->min_char_or_byte2
1079 && within <= font->max_char_or_byte2
1080 && row >= font->min_byte1
1081 && row <= font->max_byte1))
1082 /* Still out of range means this char does not overlap. */
1083 return 0;
1084 else
1085 /* We found the info for this char. */
1086 s = (font->per_char + (within - font->min_char_or_byte2)
1087 + row * rowlen);
1088 }
1089
1090 return (s && s->rbearing >= s->width);
dc6f92b8 1091}
0cdd0c9f 1092#endif /* 0 */
dc6f92b8 1093\f
dbc4e1c1
JB
1094/* Invert the middle quarter of the frame for .15 sec. */
1095
1096/* We use the select system call to do the waiting, so we have to make sure
eb8c3be9 1097 it's available. If it isn't, we just won't do visual bells. */
dbc4e1c1
JB
1098#if defined (HAVE_TIMEVAL) && defined (HAVE_SELECT)
1099
1100/* Subtract the `struct timeval' values X and Y,
1101 storing the result in RESULT.
1102 Return 1 if the difference is negative, otherwise 0. */
1103
1104static int
1105timeval_subtract (result, x, y)
1106 struct timeval *result, x, y;
1107{
1108 /* Perform the carry for the later subtraction by updating y.
1109 This is safer because on some systems
1110 the tv_sec member is unsigned. */
1111 if (x.tv_usec < y.tv_usec)
1112 {
1113 int nsec = (y.tv_usec - x.tv_usec) / 1000000 + 1;
1114 y.tv_usec -= 1000000 * nsec;
1115 y.tv_sec += nsec;
1116 }
1117 if (x.tv_usec - y.tv_usec > 1000000)
1118 {
1119 int nsec = (y.tv_usec - x.tv_usec) / 1000000;
1120 y.tv_usec += 1000000 * nsec;
1121 y.tv_sec -= nsec;
1122 }
1123
1124 /* Compute the time remaining to wait. tv_usec is certainly positive. */
1125 result->tv_sec = x.tv_sec - y.tv_sec;
1126 result->tv_usec = x.tv_usec - y.tv_usec;
1127
1128 /* Return indication of whether the result should be considered negative. */
1129 return x.tv_sec < y.tv_sec;
1130}
dc6f92b8 1131
f676886a
JB
1132XTflash (f)
1133 struct frame *f;
dc6f92b8 1134{
dbc4e1c1 1135 BLOCK_INPUT;
dc6f92b8 1136
dbc4e1c1
JB
1137 {
1138 GC gc;
dc6f92b8 1139
dbc4e1c1
JB
1140 /* Create a GC that will use the GXxor function to flip foreground pixels
1141 into background pixels. */
1142 {
1143 XGCValues values;
dc6f92b8 1144
dbc4e1c1
JB
1145 values.function = GXxor;
1146 values.foreground = (f->display.x->foreground_pixel
1147 ^ f->display.x->background_pixel);
1148
1149 gc = XCreateGC (x_current_display, FRAME_X_WINDOW (f),
1150 GCFunction | GCForeground, &values);
1151 }
dc6f92b8 1152
dbc4e1c1
JB
1153 {
1154 int width = PIXEL_WIDTH (f);
1155 int height = PIXEL_HEIGHT (f);
dc6f92b8 1156
dbc4e1c1
JB
1157 XFillRectangle (x_current_display, FRAME_X_WINDOW (f), gc,
1158 width/4, height/4, width/2, height/2);
1159 XFlush (x_current_display);
dc6f92b8 1160
dbc4e1c1
JB
1161 {
1162 struct timeval wakeup, now;
dc6f92b8 1163
66c30ea1 1164 EMACS_GET_TIME (wakeup);
dc6f92b8 1165
dbc4e1c1
JB
1166 /* Compute time to wait until, propagating carry from usecs. */
1167 wakeup.tv_usec += 150000;
1168 wakeup.tv_sec += (wakeup.tv_usec / 1000000);
1169 wakeup.tv_usec %= 1000000;
1170
1171 /* Keep waiting until past the time wakeup. */
1172 while (1)
1173 {
1174 struct timeval timeout;
1175
66c30ea1 1176 EMACS_GET_TIME (timeout);
dbc4e1c1
JB
1177
1178 /* In effect, timeout = wakeup - timeout.
1179 Break if result would be negative. */
1180 if (timeval_subtract (&timeout, wakeup, timeout))
1181 break;
1182
1183 /* Try to wait that long--but we might wake up sooner. */
1184 select (0, 0, 0, 0, &timeout);
1185 }
1186 }
1187
1188 XFillRectangle (x_current_display, FRAME_X_WINDOW (f), gc,
1189 width/4, height/4, width/2, height/2);
1190 XFreeGC (x_current_display, gc);
1191 XFlush (x_current_display);
dc6f92b8 1192 }
dbc4e1c1
JB
1193 }
1194
1195 UNBLOCK_INPUT;
dc6f92b8
JB
1196}
1197
dbc4e1c1
JB
1198#endif
1199
1200
dc6f92b8
JB
1201/* Make audible bell. */
1202
1203#ifdef HAVE_X11
bc20ebbf 1204#define XRINGBELL XBell (x_current_display, 0)
c118dd06 1205#else /* ! defined (HAVE_X11) */
bc20ebbf 1206#define XRINGBELL XFeep (0);
c118dd06 1207#endif /* ! defined (HAVE_X11) */
dc6f92b8
JB
1208
1209XTring_bell ()
1210{
5a6ef893
RS
1211 if (x_current_display == 0)
1212 return;
1213
dbc4e1c1 1214#if defined (HAVE_TIMEVAL) && defined (HAVE_SELECT)
dc6f92b8 1215 if (visible_bell)
f676886a 1216 XTflash (selected_frame);
dc6f92b8 1217 else
dbc4e1c1 1218#endif
dc6f92b8
JB
1219 {
1220 BLOCK_INPUT;
1221 XRINGBELL;
1222 XFlushQueue ();
1223 UNBLOCK_INPUT;
1224 }
1225}
1226\f
f451eb13
JB
1227/* Insert and delete character.
1228 These are not supposed to be used because we are supposed to turn
1229 off the feature of using them. */
dc6f92b8
JB
1230
1231static
1232XTinsert_glyphs (start, len)
1233 register char *start;
1234 register int len;
1235{
1236 abort ();
1237}
1238
1239static
1240XTdelete_glyphs (n)
1241 register int n;
1242{
1243 abort ();
1244}
1245\f
1246/* Specify how many text lines, from the top of the window,
1247 should be affected by insert-lines and delete-lines operations.
1248 This, and those operations, are used only within an update
1249 that is bounded by calls to XTupdate_begin and XTupdate_end. */
1250
1251static
1252XTset_terminal_window (n)
1253 register int n;
1254{
f676886a 1255 if (updating_frame == 0)
dc6f92b8
JB
1256 abort ();
1257
f676886a
JB
1258 if ((n <= 0) || (n > updating_frame->height))
1259 flexlines = updating_frame->height;
dc6f92b8
JB
1260 else
1261 flexlines = n;
1262}
1263\f
f451eb13
JB
1264/* Perform an insert-lines operation.
1265 Insert N lines at a vertical position curs_y. */
dc6f92b8
JB
1266
1267static void
1268stufflines (n)
1269 register int n;
1270{
1271 register int topregion, bottomregion;
1272 register int length, newtop, mask;
f676886a
JB
1273 register struct frame *f = updating_frame;
1274 int intborder = f->display.x->internal_border_width;
dc6f92b8
JB
1275
1276 if (curs_y >= flexlines)
1277 return;
1278
1279 topregion = curs_y;
1280 bottomregion = flexlines - (n + 1);
1281 newtop = topregion + n;
1282 length = (bottomregion - topregion) + 1;
1283
1284#ifndef HAVE_X11
1285 dumpqueue ();
c118dd06 1286#endif /* HAVE_X11 */
dc6f92b8
JB
1287
1288 if ((length > 0) && (newtop <= flexlines))
1289 {
1290#ifdef HAVE_X11
c118dd06
JB
1291 XCopyArea (x_current_display, FRAME_X_WINDOW (f),
1292 FRAME_X_WINDOW (f), f->display.x->normal_gc,
12ba150f 1293 intborder, CHAR_TO_PIXEL_ROW (f, topregion),
f676886a 1294 f->width * FONT_WIDTH (f->display.x->font),
a27f9f86 1295 length * f->display.x->line_height, intborder,
12ba150f 1296 CHAR_TO_PIXEL_ROW (f, newtop));
c118dd06
JB
1297#else /* ! defined (HAVE_X11) */
1298 XMoveArea (FRAME_X_WINDOW (f),
12ba150f
JB
1299 intborder, CHAR_TO_PIXEL_ROW (f, topregion),
1300 intborder, CHAR_TO_PIXEL_ROW (f, newtop),
f676886a 1301 f->width * FONT_WIDTH (f->display.x->font),
a27f9f86 1302 length * f->display.x->line_height);
dc6f92b8
JB
1303 /* Now we must process any ExposeRegion events that occur
1304 if the area being copied from is obscured.
1305 We can't let it wait because further i/d operations
1306 may want to copy this area to another area. */
1307 x_read_exposes ();
c118dd06 1308#endif /* ! defined (HAVE_X11) */
dc6f92b8
JB
1309 }
1310
1311 newtop = min (newtop, (flexlines - 1));
1312 length = newtop - topregion;
1313 if (length > 0)
1314 {
1315#ifdef HAVE_X11
c118dd06 1316 XClearArea (x_current_display, FRAME_X_WINDOW (f), intborder,
12ba150f 1317 CHAR_TO_PIXEL_ROW (f, topregion),
f676886a 1318 f->width * FONT_WIDTH (f->display.x->font),
a27f9f86 1319 n * f->display.x->line_height, False);
c118dd06
JB
1320#else /* ! defined (HAVE_X11) */
1321 XPixSet (FRAME_X_WINDOW (f),
dc6f92b8 1322 intborder,
12ba150f 1323 CHAR_TO_PIXEL_ROW (f, topregion),
f676886a 1324 f->width * FONT_WIDTH (f->display.x->font),
a27f9f86 1325 n * f->display.x->line_height,
f676886a 1326 f->display.x->background_pixel);
c118dd06 1327#endif /* ! defined (HAVE_X11) */
dc6f92b8
JB
1328 }
1329}
1330
1331/* Perform a delete-lines operation, deleting N lines
1332 at a vertical position curs_y. */
1333
1334static void
1335scraplines (n)
1336 register int n;
1337{
1338 int mask;
f676886a
JB
1339 register struct frame *f = updating_frame;
1340 int intborder = f->display.x->internal_border_width;
dc6f92b8
JB
1341
1342 if (curs_y >= flexlines)
1343 return;
1344
1345#ifndef HAVE_X11
1346 dumpqueue ();
c118dd06 1347#endif /* HAVE_X11 */
dc6f92b8
JB
1348
1349 if ((curs_y + n) >= flexlines)
1350 {
1351 if (flexlines >= (curs_y + 1))
1352 {
1353#ifdef HAVE_X11
c118dd06 1354 XClearArea (x_current_display, FRAME_X_WINDOW (f), intborder,
12ba150f 1355 CHAR_TO_PIXEL_ROW (f, curs_y),
f676886a 1356 f->width * FONT_WIDTH (f->display.x->font),
a27f9f86 1357 (flexlines - curs_y) * f->display.x->line_height, False);
c118dd06
JB
1358#else /* ! defined (HAVE_X11) */
1359 XPixSet (FRAME_X_WINDOW (f),
12ba150f 1360 intborder, CHAR_TO_PIXEL_ROW (f, curs_y),
f676886a 1361 f->width * FONT_WIDTH (f->display.x->font),
a27f9f86 1362 (flexlines - curs_y) * f->display.x->line_height,
f676886a 1363 f->display.x->background_pixel);
c118dd06 1364#endif /* ! defined (HAVE_X11) */
dc6f92b8
JB
1365 }
1366 }
1367 else
1368 {
1369#ifdef HAVE_X11
c118dd06
JB
1370 XCopyArea (x_current_display, FRAME_X_WINDOW (f),
1371 FRAME_X_WINDOW (f), f->display.x->normal_gc,
dc6f92b8 1372 intborder,
12ba150f 1373 CHAR_TO_PIXEL_ROW (f, curs_y + n),
f676886a 1374 f->width * FONT_WIDTH (f->display.x->font),
a27f9f86 1375 (flexlines - (curs_y + n)) * f->display.x->line_height,
12ba150f 1376 intborder, CHAR_TO_PIXEL_ROW (f, curs_y));
c118dd06 1377 XClearArea (x_current_display, FRAME_X_WINDOW (f),
dc6f92b8 1378 intborder,
12ba150f 1379 CHAR_TO_PIXEL_ROW (f, flexlines - n),
f676886a 1380 f->width * FONT_WIDTH (f->display.x->font),
a27f9f86 1381 n * f->display.x->line_height, False);
c118dd06
JB
1382#else /* ! defined (HAVE_X11) */
1383 XMoveArea (FRAME_X_WINDOW (f),
dc6f92b8 1384 intborder,
12ba150f
JB
1385 CHAR_TO_PIXEL_ROW (f, curs_y + n),
1386 intborder, CHAR_TO_PIXEL_ROW (f, curs_y),
f676886a 1387 f->width * FONT_WIDTH (f->display.x->font),
a27f9f86 1388 (flexlines - (curs_y + n)) * f->display.x->line_height);
dc6f92b8
JB
1389 /* Now we must process any ExposeRegion events that occur
1390 if the area being copied from is obscured.
1391 We can't let it wait because further i/d operations
1392 may want to copy this area to another area. */
1393 x_read_exposes ();
c118dd06 1394 XPixSet (FRAME_X_WINDOW (f), intborder,
12ba150f 1395 CHAR_TO_PIXEL_ROW (f, flexlines - n),
f676886a 1396 f->width * FONT_WIDTH (f->display.x->font),
a27f9f86 1397 n * f->display.x->line_height, f->display.x->background_pixel);
c118dd06 1398#endif /* ! defined (HAVE_X11) */
dc6f92b8
JB
1399 }
1400}
1401
1402/* Perform an insert-lines or delete-lines operation,
1403 inserting N lines or deleting -N lines at vertical position VPOS. */
1404
1405XTins_del_lines (vpos, n)
1406 int vpos, n;
1407{
f676886a 1408 if (updating_frame == 0)
dc6f92b8
JB
1409 abort ();
1410
90e65f07 1411 /* Hide the cursor. */
f676886a 1412 x_display_cursor (updating_frame, 0);
dc6f92b8
JB
1413
1414 XTcursor_to (vpos, 0);
1415
1416 BLOCK_INPUT;
1417 if (n >= 0)
1418 stufflines (n);
1419 else
1420 scraplines (-n);
1421 XFlushQueue ();
1422 UNBLOCK_INPUT;
1423}
1424\f
f451eb13 1425/* Support routines for exposure events. */
dc6f92b8
JB
1426static void clear_cursor ();
1427
f676886a
JB
1428/* Output into a rectangle of an X-window (for frame F)
1429 the characters in f->phys_lines that overlap that rectangle.
dc6f92b8 1430 TOP and LEFT are the position of the upper left corner of the rectangle.
f94397b5
KH
1431 ROWS and COLS are the size of the rectangle.
1432 Call this function with input blocked. */
dc6f92b8
JB
1433
1434static void
f676886a
JB
1435dumprectangle (f, left, top, cols, rows)
1436 struct frame *f;
dc6f92b8
JB
1437 register int left, top, cols, rows;
1438{
f676886a 1439 register struct frame_glyphs *active_frame = FRAME_CURRENT_GLYPHS (f);
dc6f92b8
JB
1440 int cursor_cleared = 0;
1441 int bottom, right;
1442 register int y;
1443
f676886a 1444 if (FRAME_GARBAGED_P (f))
dc6f92b8
JB
1445 return;
1446
dc6f92b8
JB
1447 /* Express rectangle as four edges, instead of position-and-size. */
1448 bottom = top + rows;
1449 right = left + cols;
1450
1451#ifndef HAVE_X11 /* Window manger does this for X11. */
12ba150f
JB
1452 {
1453 int intborder = f->display.x->internal_border_width;
1454
1455 /* If the rectangle includes any of the internal border area,
1456 redisplay the border emphasis. */
1457 if (top < intborder || left < intborder
a27f9f86
RS
1458 || bottom > intborder + f->height * f->display.x->line_height
1459 || right > intborder + f->width * f->display.x->line_height)
12ba150f
JB
1460 dumpborder (f, 0);
1461 }
b8009dd1 1462#endif /* not HAVE_X11 Window manger does this for X11. */
dc6f92b8
JB
1463
1464 /* Convert rectangle edges in pixels to edges in chars.
1465 Round down for left and top, up for right and bottom. */
12ba150f
JB
1466 top = PIXEL_TO_CHAR_ROW (f, top);
1467 left = PIXEL_TO_CHAR_COL (f, left);
a27f9f86 1468 bottom += (f->display.x->line_height - 1);
f676886a 1469 right += (FONT_WIDTH (f->display.x->font) - 1);
12ba150f
JB
1470 bottom = PIXEL_TO_CHAR_ROW (f, bottom);
1471 right = PIXEL_TO_CHAR_COL (f, right);
dc6f92b8
JB
1472
1473 /* Clip the rectangle to what can be visible. */
1474 if (left < 0)
1475 left = 0;
1476 if (top < 0)
1477 top = 0;
f676886a
JB
1478 if (right > f->width)
1479 right = f->width;
1480 if (bottom > f->height)
1481 bottom = f->height;
dc6f92b8
JB
1482
1483 /* Get size in chars of the rectangle. */
1484 cols = right - left;
1485 rows = bottom - top;
1486
1487 /* If rectangle has zero area, return. */
1488 if (rows <= 0) return;
1489 if (cols <= 0) return;
1490
1491 /* Turn off the cursor if it is in the rectangle.
1492 We will turn it back on afterward. */
f676886a
JB
1493 if ((f->phys_cursor_x >= left) && (f->phys_cursor_x < right)
1494 && (f->phys_cursor_y >= top) && (f->phys_cursor_y < bottom))
dc6f92b8 1495 {
f676886a 1496 clear_cursor (f);
dc6f92b8
JB
1497 cursor_cleared = 1;
1498 }
1499
1500 /* Display the text in the rectangle, one text line at a time. */
1501
1502 for (y = top; y < bottom; y++)
1503 {
f676886a 1504 GLYPH *line = &active_frame->glyphs[y][left];
dc6f92b8 1505
f676886a 1506 if (! active_frame->enable[y] || left > active_frame->used[y])
dc6f92b8
JB
1507 continue;
1508
f676886a 1509 dumpglyphs (f,
12ba150f
JB
1510 CHAR_TO_PIXEL_COL (f, left),
1511 CHAR_TO_PIXEL_ROW (f, y),
1512 line, min (cols, active_frame->used[y] - left),
0cdd0c9f 1513 active_frame->highlight[y], 0);
dc6f92b8
JB
1514 }
1515
1516 /* Turn the cursor on if we turned it off. */
1517
1518 if (cursor_cleared)
f676886a 1519 x_display_cursor (f, 1);
dc6f92b8
JB
1520}
1521
1522#ifndef HAVE_X11
1523/* Process all queued ExposeRegion events. */
1524
1525static void
1526dumpqueue ()
1527{
1528 register int i;
1529 XExposeRegionEvent r;
1530
1531 while (dequeue_event (&r, &x_expose_queue))
1532 {
f676886a
JB
1533 struct frame *f = x_window_to_frame (r.window);
1534 if (f->display.x->icon_desc == r.window)
1535 refreshicon (f);
dc6f92b8 1536 else
f676886a 1537 dumprectangle (f, r.x, r.y, r.width, r.height);
dc6f92b8
JB
1538 }
1539 XFlushQueue ();
1540}
c118dd06 1541#endif /* HAVE_X11 */
dc6f92b8 1542\f
f451eb13 1543/* Process all expose events that are pending, for X10.
f676886a
JB
1544 Redraws the cursor if necessary on any frame that
1545 is not in the process of being updated with update_frame. */
dc6f92b8 1546
f451eb13 1547#ifndef HAVE_X11
dc6f92b8
JB
1548static void
1549x_do_pending_expose ()
1550{
1551 int mask;
f676886a
JB
1552 struct frame *f;
1553 Lisp_Object tail, frame;
dc6f92b8
JB
1554
1555 if (expose_all_windows)
1556 {
1557 expose_all_windows = 0;
f676886a 1558 for (tail = Vframe_list; CONSP (tail); tail = XCONS (tail)->cdr)
dc6f92b8
JB
1559 {
1560 register int temp_width, temp_height;
1561 int intborder;
1562
f676886a 1563 frame = XCONS (tail)->car;
ab648270 1564 if (XGCTYPE (frame) != Lisp_Frame)
dc6f92b8 1565 continue;
f676886a 1566 f = XFRAME (frame);
b1c884c3 1567 if (! FRAME_X_P (f))
dc6f92b8 1568 continue;
3a88c238 1569 if (!f->async_visible)
dc6f92b8 1570 continue;
f676886a 1571 if (!f->display.x->needs_exposure)
dc6f92b8
JB
1572 continue;
1573
f676886a 1574 intborder = f->display.x->internal_border_width;
dc6f92b8 1575
f676886a 1576 clear_cursor (f);
c118dd06 1577 XGetWindowInfo (FRAME_X_WINDOW (f), &windowinfo);
dc6f92b8 1578 temp_width = ((windowinfo.width - 2 * intborder
ab648270 1579 - f->display.x->v_scroll_bar_width)
f676886a 1580 / FONT_WIDTH (f->display.x->font));
dc6f92b8 1581 temp_height = ((windowinfo.height- 2 * intborder
ab648270 1582 - f->display.x->h_scroll_bar_height)
a27f9f86 1583 / f->display.x->line_height);
f676886a 1584 if (temp_width != f->width || temp_height != f->height)
dc6f92b8 1585 {
f676886a 1586 change_frame_size (f, max (1, temp_height),
b1c884c3 1587 max (1, temp_width), 0, 1);
ab648270 1588 x_resize_scroll_bars (f);
dc6f92b8 1589 }
f676886a
JB
1590 f->display.x->left_pos = windowinfo.x;
1591 f->display.x->top_pos = windowinfo.y;
1592 dumprectangle (f, 0, 0, PIXEL_WIDTH (f), PIXEL_HEIGHT (f));
dc6f92b8 1593#if 0
f676886a 1594 dumpborder (f, 0);
c118dd06 1595#endif /* ! 0 */
f676886a
JB
1596 f->display.x->needs_exposure = 0;
1597 if (updating_frame != f)
1598 x_display_cursor (f, 1);
dc6f92b8
JB
1599 XFlushQueue ();
1600 }
1601 }
1602 else
1603 /* Handle any individual-rectangle expose events queued
1604 for various windows. */
1605#ifdef HAVE_X11
1606 ;
c118dd06 1607#else /* ! defined (HAVE_X11) */
dc6f92b8 1608 dumpqueue ();
c118dd06 1609#endif /* ! defined (HAVE_X11) */
dc6f92b8 1610}
f451eb13 1611#endif
dc6f92b8
JB
1612
1613#ifdef HAVE_X11
1614static void
f676886a
JB
1615frame_highlight (frame)
1616 struct frame *frame;
dc6f92b8 1617{
b3e1e05c
JB
1618 /* We used to only do this if Vx_no_window_manager was non-nil, but
1619 the ICCCM (section 4.1.6) says that the window's border pixmap
1620 and border pixel are window attributes which are "private to the
1621 client", so we can always change it to whatever we want. */
1622 BLOCK_INPUT;
1623 XSetWindowBorder (x_current_display, FRAME_X_WINDOW (frame),
1624 frame->display.x->border_pixel);
1625 UNBLOCK_INPUT;
f676886a 1626 x_display_cursor (frame, 1);
dc6f92b8
JB
1627}
1628
1629static void
f676886a
JB
1630frame_unhighlight (frame)
1631 struct frame *frame;
dc6f92b8 1632{
b3e1e05c
JB
1633 /* We used to only do this if Vx_no_window_manager was non-nil, but
1634 the ICCCM (section 4.1.6) says that the window's border pixmap
1635 and border pixel are window attributes which are "private to the
1636 client", so we can always change it to whatever we want. */
1637 BLOCK_INPUT;
1638 XSetWindowBorderPixmap (x_current_display, FRAME_X_WINDOW (frame),
1639 frame->display.x->border_tile);
1640 UNBLOCK_INPUT;
f676886a 1641 x_display_cursor (frame, 1);
dc6f92b8 1642}
c118dd06 1643#else /* ! defined (HAVE_X11) */
f676886a
JB
1644/* Dump the border-emphasis of frame F.
1645 If F is selected, this is a lining of the same color as the border,
dc6f92b8 1646 just within the border, occupying a portion of the internal border.
f676886a 1647 If F is not selected, it is background in the same place.
dc6f92b8
JB
1648 If ALWAYS is 0, don't bother explicitly drawing if it's background.
1649
f676886a 1650 ALWAYS = 1 is used when a frame becomes selected or deselected.
dc6f92b8
JB
1651 In that case, we also turn the cursor off and on again
1652 so it will appear in the proper shape (solid if selected; else hollow.) */
1653
1654static void
f676886a
JB
1655dumpborder (f, always)
1656 struct frame *f;
dc6f92b8
JB
1657 int always;
1658{
f676886a
JB
1659 int thickness = f->display.x->internal_border_width / 2;
1660 int width = PIXEL_WIDTH (f);
1661 int height = PIXEL_HEIGHT (f);
dc6f92b8
JB
1662 int pixel;
1663
f676886a 1664 if (f != selected_frame)
dc6f92b8
JB
1665 {
1666 if (!always)
1667 return;
1668
f676886a 1669 pixel = f->display.x->background_pixel;
dc6f92b8
JB
1670 }
1671 else
1672 {
f676886a 1673 pixel = f->display.x->border_pixel;
dc6f92b8
JB
1674 }
1675
c118dd06
JB
1676 XPixSet (FRAME_X_WINDOW (f), 0, 0, width, thickness, pixel);
1677 XPixSet (FRAME_X_WINDOW (f), 0, 0, thickness, height, pixel);
1678 XPixSet (FRAME_X_WINDOW (f), 0, height - thickness, width,
dc6f92b8 1679 thickness, pixel);
c118dd06 1680 XPixSet (FRAME_X_WINDOW (f), width - thickness, 0, thickness,
dc6f92b8
JB
1681 height, pixel);
1682
1683 if (always)
f676886a 1684 x_display_cursor (f, 1);
dc6f92b8 1685}
c118dd06 1686#endif /* ! defined (HAVE_X11) */
dc6f92b8 1687
f676886a 1688static void XTframe_rehighlight ();
6d4238f3 1689
f676886a
JB
1690/* The focus has changed. Update the frames as necessary to reflect
1691 the new situation. Note that we can't change the selected frame
dc6f92b8 1692 here, because the lisp code we are interrupting might become confused.
eb8c3be9 1693 Each event gets marked with the frame in which it occurred, so the
6d4238f3 1694 lisp code can tell when the switch took place by examining the events. */
dc6f92b8 1695
6d4238f3 1696static void
f676886a
JB
1697x_new_focus_frame (frame)
1698 struct frame *frame;
dc6f92b8 1699{
f676886a 1700 struct frame *old_focus = x_focus_frame;
dc6f92b8
JB
1701 int events_enqueued = 0;
1702
f676886a 1703 if (frame != x_focus_frame)
dc6f92b8 1704 {
6d4238f3 1705 /* Set this before calling other routines, so that they see
f676886a
JB
1706 the correct value of x_focus_frame. */
1707 x_focus_frame = frame;
6d4238f3
JB
1708
1709 if (old_focus && old_focus->auto_lower)
f676886a 1710 x_lower_frame (old_focus);
dc6f92b8
JB
1711
1712#if 0
f676886a
JB
1713 selected_frame = frame;
1714 XSET (XWINDOW (selected_frame->selected_window)->frame,
1715 Lisp_Frame, selected_frame);
1716 Fselect_window (selected_frame->selected_window);
1717 choose_minibuf_frame ();
c118dd06 1718#endif /* ! 0 */
dc6f92b8 1719
f676886a 1720 if (x_focus_frame && x_focus_frame->auto_raise)
0134a210
RS
1721 pending_autoraise_frame = x_focus_frame;
1722 else
1723 pending_autoraise_frame = 0;
6d4238f3 1724 }
dc6f92b8 1725
f676886a 1726 XTframe_rehighlight ();
6d4238f3
JB
1727}
1728
1729
f451eb13
JB
1730/* The focus has changed, or we have redirected a frame's focus to
1731 another frame (this happens when a frame uses a surrogate
1732 minibuffer frame). Shift the highlight as appropriate. */
6d4238f3 1733static void
f676886a 1734XTframe_rehighlight ()
6d4238f3 1735{
f676886a 1736 struct frame *old_highlight = x_highlight_frame;
6d4238f3 1737
f676886a 1738 if (x_focus_frame)
6d4238f3 1739 {
f451eb13 1740 x_highlight_frame =
ab648270 1741 ((XGCTYPE (FRAME_FOCUS_FRAME (x_focus_frame)) == Lisp_Frame)
f451eb13
JB
1742 ? XFRAME (FRAME_FOCUS_FRAME (x_focus_frame))
1743 : x_focus_frame);
1744 if (! FRAME_LIVE_P (x_highlight_frame))
1745 {
1746 FRAME_FOCUS_FRAME (x_focus_frame) = Qnil;
1747 x_highlight_frame = x_focus_frame;
1748 }
dc6f92b8 1749 }
6d4238f3 1750 else
f676886a 1751 x_highlight_frame = 0;
dc6f92b8 1752
f676886a 1753 if (x_highlight_frame != old_highlight)
6d4238f3
JB
1754 {
1755 if (old_highlight)
f676886a
JB
1756 frame_unhighlight (old_highlight);
1757 if (x_highlight_frame)
1758 frame_highlight (x_highlight_frame);
6d4238f3 1759 }
dc6f92b8
JB
1760}
1761\f
e4571a43 1762/* Keyboard processing - modifier keys, vendor-specific keysyms, etc. */
dc6f92b8 1763
28430d3c
JB
1764/* Which modifier keys are on which modifier bits?
1765
1766 With each keystroke, X returns eight bits indicating which modifier
11edeb03
JB
1767 keys were held down when the key was pressed. The interpretation
1768 of the top five modifier bits depends on what keys are attached
28430d3c
JB
1769 to them. If the Meta_L and Meta_R keysyms are on mod5, then mod5
1770 is the meta bit.
1771
1772 x_meta_mod_mask is a mask containing the bits used for the meta key.
1773 It may have more than one bit set, if more than one modifier bit
1774 has meta keys on it. Basically, if EVENT is a KeyPress event,
11edeb03
JB
1775 the meta key is pressed if (EVENT.state & x_meta_mod_mask) != 0.
1776
1777 x_shift_lock_mask is LockMask if the XK_Shift_Lock keysym is on the
1778 lock modifier bit, or zero otherwise. Non-alphabetic keys should
1779 only be affected by the lock modifier bit if XK_Shift_Lock is in
1780 use; XK_Caps_Lock should only affect alphabetic keys. With this
1781 arrangement, the lock modifier should shift the character if
1782 (EVENT.state & x_shift_lock_mask) != 0. */
1783static int x_meta_mod_mask, x_shift_lock_mask;
28430d3c 1784
a3c44b14
RS
1785/* These are like x_meta_mod_mask, but for different modifiers. */
1786static int x_alt_mod_mask, x_super_mod_mask, x_hyper_mod_mask;
1787
28430d3c
JB
1788/* Initialize mode_switch_bit and modifier_meaning. */
1789static void
1790x_find_modifier_meanings ()
1791{
f689eb05 1792 int min_code, max_code;
28430d3c
JB
1793 KeySym *syms;
1794 int syms_per_code;
1795 XModifierKeymap *mods;
1796
1797 x_meta_mod_mask = 0;
11edeb03 1798 x_shift_lock_mask = 0;
a3c44b14
RS
1799 x_alt_mod_mask = 0;
1800 x_super_mod_mask = 0;
1801 x_hyper_mod_mask = 0;
28430d3c 1802
9658a521 1803#ifdef HAVE_X11R4
28430d3c 1804 XDisplayKeycodes (x_current_display, &min_code, &max_code);
9658a521
JB
1805#else
1806 min_code = x_current_display->min_keycode;
1807 max_code = x_current_display->max_keycode;
1808#endif
1809
28430d3c
JB
1810 syms = XGetKeyboardMapping (x_current_display,
1811 min_code, max_code - min_code + 1,
1812 &syms_per_code);
1813 mods = XGetModifierMapping (x_current_display);
1814
11edeb03
JB
1815 /* Scan the modifier table to see which modifier bits the Meta and
1816 Alt keysyms are on. */
28430d3c
JB
1817 {
1818 int row, col; /* The row and column in the modifier table. */
1819
1820 for (row = 3; row < 8; row++)
1821 for (col = 0; col < mods->max_keypermod; col++)
1822 {
1823 KeyCode code =
1824 mods->modifiermap[(row * mods->max_keypermod) + col];
1825
af92970c
KH
1826 /* Zeroes are used for filler. Skip them. */
1827 if (code == 0)
1828 continue;
1829
28430d3c
JB
1830 /* Are any of this keycode's keysyms a meta key? */
1831 {
1832 int code_col;
1833
1834 for (code_col = 0; code_col < syms_per_code; code_col++)
1835 {
f689eb05 1836 int sym = syms[((code - min_code) * syms_per_code) + code_col];
28430d3c 1837
f689eb05 1838 switch (sym)
28430d3c 1839 {
f689eb05
JB
1840 case XK_Meta_L:
1841 case XK_Meta_R:
28430d3c
JB
1842 x_meta_mod_mask |= (1 << row);
1843 break;
f689eb05
JB
1844
1845 case XK_Alt_L:
1846 case XK_Alt_R:
a3c44b14
RS
1847 x_alt_mod_mask |= (1 << row);
1848 break;
1849
1850 case XK_Hyper_L:
1851 case XK_Hyper_R:
1852 x_hyper_mod_mask |= (1 << row);
1853 break;
1854
1855 case XK_Super_L:
1856 case XK_Super_R:
1857 x_super_mod_mask |= (1 << row);
f689eb05 1858 break;
11edeb03
JB
1859
1860 case XK_Shift_Lock:
1861 /* Ignore this if it's not on the lock modifier. */
1862 if ((1 << row) == LockMask)
1863 x_shift_lock_mask = LockMask;
1864 break;
28430d3c
JB
1865 }
1866 }
1867 }
1868 }
1869 }
1870
f689eb05
JB
1871 /* If we couldn't find any meta keys, accept any alt keys as meta keys. */
1872 if (! x_meta_mod_mask)
a3c44b14
RS
1873 {
1874 x_meta_mod_mask = x_alt_mod_mask;
1875 x_alt_mod_mask = 0;
1876 }
f689eb05 1877
148c4b70
RS
1878 /* If some keys are both alt and meta,
1879 make them just meta, not alt. */
1880 if (x_alt_mod_mask & x_meta_mod_mask)
1881 {
1882 x_alt_mod_mask &= ~x_meta_mod_mask;
1883 }
1884
28430d3c 1885 XFree ((char *) syms);
f689eb05 1886 XFreeModifiermap (mods);
28430d3c
JB
1887}
1888
dfeccd2d
JB
1889/* Convert between the modifier bits X uses and the modifier bits
1890 Emacs uses. */
7c5283e4 1891static unsigned int
dfeccd2d 1892x_x_to_emacs_modifiers (state)
dc6f92b8
JB
1893 unsigned int state;
1894{
11edeb03
JB
1895 return ( ((state & (ShiftMask | x_shift_lock_mask)) ? shift_modifier : 0)
1896 | ((state & ControlMask) ? ctrl_modifier : 0)
a3c44b14
RS
1897 | ((state & x_meta_mod_mask) ? meta_modifier : 0)
1898 | ((state & x_alt_mod_mask) ? alt_modifier : 0)
1899 | ((state & x_super_mod_mask) ? super_modifier : 0)
1900 | ((state & x_hyper_mod_mask) ? hyper_modifier : 0));
dc6f92b8
JB
1901}
1902
dfeccd2d
JB
1903static unsigned int
1904x_emacs_to_x_modifiers (state)
1905 unsigned int state;
1906{
1907 return ( ((state & alt_modifier) ? x_alt_mod_mask : 0)
1908 | ((state & super_modifier) ? x_super_mod_mask : 0)
1909 | ((state & hyper_modifier) ? x_hyper_mod_mask : 0)
1910 | ((state & shift_modifier) ? ShiftMask : 0)
1911 | ((state & ctrl_modifier) ? ControlMask : 0)
1912 | ((state & meta_modifier) ? x_meta_mod_mask : 0));
1913}
1914
e4571a43
JB
1915/* Return true iff KEYSYM is a vendor-specific keysym that we should
1916 return as a function key. If you add a keysym to this, you should
1917 make sure that the tables make_lispy_event uses contain a suitable
1918 name for it. */
1919static int
1920x_is_vendor_fkey (sym)
1921 KeySym sym;
1922{
1923 return 0
1924#ifdef DXK_Remove
1925 || (sym == DXK_Remove)
1926#endif
1927 ;
1928}
1929
1930\f
1931/* Mouse clicks and mouse movement. Rah. */
1932#ifdef HAVE_X11
1933
1934/* Given a pixel position (PIX_X, PIX_Y) on the frame F, return
1935 glyph co-ordinates in (*X, *Y). Set *BOUNDS to the rectangle
69388238
RS
1936 that the glyph at X, Y occupies, if BOUNDS != 0.
1937 If NOCLIP is nonzero, do not force the value into range. */
1938
c8dba240 1939void
69388238 1940pixel_to_glyph_coords (f, pix_x, pix_y, x, y, bounds, noclip)
e4571a43 1941 FRAME_PTR f;
69388238 1942 register int pix_x, pix_y;
e4571a43
JB
1943 register int *x, *y;
1944 XRectangle *bounds;
69388238 1945 int noclip;
e4571a43 1946{
69388238
RS
1947 /* Arrange for the division in PIXEL_TO_CHAR_COL etc. to round down
1948 even for negative values. */
1949 if (pix_x < 0)
1950 pix_x -= FONT_WIDTH ((f)->display.x->font) - 1;
1951 if (pix_y < 0)
a27f9f86 1952 pix_y -= (f)->display.x->line_height - 1;
69388238 1953
e4571a43
JB
1954 pix_x = PIXEL_TO_CHAR_COL (f, pix_x);
1955 pix_y = PIXEL_TO_CHAR_ROW (f, pix_y);
1956
1957 if (bounds)
1958 {
1959 bounds->width = FONT_WIDTH (f->display.x->font);
a27f9f86 1960 bounds->height = f->display.x->line_height;
e4571a43
JB
1961 bounds->x = CHAR_TO_PIXEL_COL (f, pix_x);
1962 bounds->y = CHAR_TO_PIXEL_ROW (f, pix_y);
1963 }
1964
69388238
RS
1965 if (!noclip)
1966 {
1967 if (pix_x < 0)
1968 pix_x = 0;
1969 else if (pix_x > f->width)
1970 pix_x = f->width;
1971
1972 if (pix_y < 0)
1973 pix_y = 0;
1974 else if (pix_y > f->height)
1975 pix_y = f->height;
1976 }
e4571a43
JB
1977
1978 *x = pix_x;
1979 *y = pix_y;
1980}
1981
2b5c9e71
RS
1982void
1983glyph_to_pixel_coords (f, x, y, pix_x, pix_y)
1984 FRAME_PTR f;
1985 register int x, y;
1986 register int *pix_x, *pix_y;
1987{
1988 *pix_x = CHAR_TO_PIXEL_COL (f, x);
1989 *pix_y = CHAR_TO_PIXEL_ROW (f, y);
1990}
1991
dc6f92b8
JB
1992/* Prepare a mouse-event in *RESULT for placement in the input queue.
1993
1994 If the event is a button press, then note that we have grabbed
f451eb13 1995 the mouse. */
dc6f92b8
JB
1996
1997static Lisp_Object
f451eb13 1998construct_mouse_click (result, event, f)
dc6f92b8
JB
1999 struct input_event *result;
2000 XButtonEvent *event;
f676886a 2001 struct frame *f;
dc6f92b8 2002{
f451eb13 2003 /* Make the event type no_event; we'll change that when we decide
dc6f92b8 2004 otherwise. */
f451eb13 2005 result->kind = mouse_click;
69388238 2006 result->code = event->button - Button1;
1113d9db 2007 result->timestamp = event->time;
dfeccd2d 2008 result->modifiers = (x_x_to_emacs_modifiers (event->state)
f689eb05
JB
2009 | (event->type == ButtonRelease
2010 ? up_modifier
2011 : down_modifier));
dc6f92b8
JB
2012
2013 /* Notice if the mouse is still grabbed. */
2014 if (event->type == ButtonPress)
2015 {
2016 if (! x_mouse_grabbed)
2017 Vmouse_depressed = Qt;
90e65f07 2018 x_mouse_grabbed |= (1 << event->button);
69388238 2019 last_mouse_frame = f;
dc6f92b8
JB
2020 }
2021 else if (event->type == ButtonRelease)
2022 {
90e65f07 2023 x_mouse_grabbed &= ~(1 << event->button);
dc6f92b8
JB
2024 if (!x_mouse_grabbed)
2025 Vmouse_depressed = Qnil;
2026 }
2027
f451eb13
JB
2028 {
2029 int row, column;
dc6f92b8 2030
2b5c9e71 2031#if 0
69388238 2032 pixel_to_glyph_coords (f, event->x, event->y, &column, &row, NULL, 0);
f451eb13
JB
2033 XFASTINT (result->x) = column;
2034 XFASTINT (result->y) = row;
2b5c9e71 2035#endif
09fe4c31
RS
2036 XSET (result->x, Lisp_Int, event->x);
2037 XSET (result->y, Lisp_Int, event->y);
12ba150f 2038 XSET (result->frame_or_window, Lisp_Frame, f);
f451eb13 2039 }
dc6f92b8 2040}
b849c413
RS
2041
2042/* Prepare a menu-event in *RESULT for placement in the input queue. */
2043
2044static Lisp_Object
2045construct_menu_click (result, event, f)
2046 struct input_event *result;
2047 XButtonEvent *event;
2048 struct frame *f;
2049{
2050 /* Make the event type no_event; we'll change that when we decide
2051 otherwise. */
2052 result->kind = mouse_click;
2053 XSET (result->code, Lisp_Int, event->button - Button1);
2054 result->timestamp = event->time;
2055 result->modifiers = (x_x_to_emacs_modifiers (event->state)
2056 | (event->type == ButtonRelease
2057 ? up_modifier
2058 : down_modifier));
2059
09fe4c31
RS
2060 XSET (result->x, Lisp_Int, event->x);
2061 XSET (result->y, Lisp_Int, -1);
c8dba240 2062 XSET (result->frame_or_window, Lisp_Frame, f);
b849c413 2063}
69388238 2064\f
90e65f07
JB
2065/* Function to report a mouse movement to the mainstream Emacs code.
2066 The input handler calls this.
2067
2068 We have received a mouse movement event, which is given in *event.
2069 If the mouse is over a different glyph than it was last time, tell
2070 the mainstream emacs code by setting mouse_moved. If not, ask for
2071 another motion event, so we can check again the next time it moves. */
b8009dd1 2072
90e65f07 2073static void
12ba150f 2074note_mouse_movement (frame, event)
f676886a 2075 FRAME_PTR frame;
90e65f07
JB
2076 XMotionEvent *event;
2077
2078{
e5d77022
JB
2079 last_mouse_movement_time = event->time;
2080
90e65f07
JB
2081 /* Has the mouse moved off the glyph it was on at the last sighting? */
2082 if (event->x < last_mouse_glyph.x
2083 || event->x >= last_mouse_glyph.x + last_mouse_glyph.width
2084 || event->y < last_mouse_glyph.y
2085 || event->y >= last_mouse_glyph.y + last_mouse_glyph.height)
12ba150f
JB
2086 {
2087 mouse_moved = 1;
ab648270 2088 last_mouse_scroll_bar = Qnil;
b8009dd1
RS
2089
2090 note_mouse_highlight (frame, event->x, event->y);
2091
2092 /* Ask for another mouse motion event. */
2093 {
2094 int dummy;
2095
2096 XQueryPointer (event->display, event->window,
2097 (Window *) &dummy, (Window *) &dummy,
2098 &dummy, &dummy, &dummy, &dummy,
2099 (unsigned int *) &dummy);
2100 }
12ba150f 2101 }
90e65f07
JB
2102 else
2103 {
2104 /* It's on the same glyph. Call XQueryPointer so we'll get an
2105 event the next time the mouse moves and we can see if it's
2106 *still* on the same glyph. */
2107 int dummy;
2108
2109 XQueryPointer (event->display, event->window,
2110 (Window *) &dummy, (Window *) &dummy,
2111 &dummy, &dummy, &dummy, &dummy,
2112 (unsigned int *) &dummy);
2113 }
2114}
2115
bf1c0ba1
RS
2116/* This is used for debugging, to turn off note_mouse_highlight. */
2117static int disable_mouse_highlight;
2118
b8009dd1
RS
2119/* Take proper action when the mouse has moved to position X, Y on frame F
2120 as regards highlighting characters that have mouse-face properties.
2121 Also dehighlighting chars where the mouse was before. */
2122
2123static void
2124note_mouse_highlight (f, x, y)
2125 FRAME_PTR f;
2126{
2127 int row, column, portion;
2128 XRectangle new_glyph;
2129 Lisp_Object window;
2130 struct window *w;
2131
bf1c0ba1
RS
2132 if (disable_mouse_highlight)
2133 return;
2134
b8009dd1
RS
2135 mouse_face_mouse_x = x;
2136 mouse_face_mouse_y = y;
2137 mouse_face_mouse_frame = f;
2138
2139 if (mouse_face_defer)
2140 return;
2141
514e4681
RS
2142 if (gc_in_progress)
2143 {
2144 mouse_face_deferred_gc = 1;
2145 return;
2146 }
2147
b8009dd1
RS
2148 /* Find out which glyph the mouse is on. */
2149 pixel_to_glyph_coords (f, x, y, &column, &row,
2150 &new_glyph, x_mouse_grabbed);
2151
2152 /* Which window is that in? */
2153 window = window_from_coordinates (f, column, row, &portion);
2154 w = XWINDOW (window);
2155
2156 /* If we were displaying active text in another window, clear that. */
2157 if (! EQ (window, mouse_face_window))
2158 clear_mouse_face ();
2159
0cdd0c9f
RS
2160 /* Are we in a window whose display is up to date?
2161 And verify the buffer's text has not changed. */
b8009dd1 2162 if (WINDOWP (window) && portion == 0
0cdd0c9f
RS
2163 && EQ (w->window_end_valid, w->buffer)
2164 && w->last_modified == BUF_MODIFF (XBUFFER (w->buffer)))
b8009dd1
RS
2165 {
2166 int *ptr = FRAME_CURRENT_GLYPHS (f)->charstarts[row];
2167 int i, pos;
2168
2169 /* Find which buffer position the mouse corresponds to. */
2170 for (i = column; i >= 0; i--)
2171 if (ptr[i] > 0)
2172 break;
2173 pos = ptr[i];
2174 /* Is it outside the displayed active region (if any)? */
55836b73
KH
2175 if (pos <= 0)
2176 clear_mouse_face ();
2177 else if (! (EQ (window, mouse_face_window)
3b506386
KH
2178 && row >= mouse_face_beg_row
2179 && row <= mouse_face_end_row
2180 && (row > mouse_face_beg_row || column >= mouse_face_beg_col)
2181 && (row < mouse_face_end_row || column < mouse_face_end_col)))
b8009dd1
RS
2182 {
2183 Lisp_Object mouse_face, overlay, position;
2184 Lisp_Object *overlay_vec;
2185 int len, noverlays, ignor1;
f8bdb8e6 2186 struct buffer *obuf;
e444162e 2187 int obegv, ozv;
f8bdb8e6 2188
e444162e
RS
2189 /* If we get an out-of-range value, return now; avoid an error. */
2190 if (pos > BUF_Z (XBUFFER (w->buffer)))
f8bdb8e6 2191 return;
b8009dd1 2192
09fe4c31
RS
2193 /* Make the window's buffer temporarily current for
2194 overlays_at and compute_char_face. */
f8bdb8e6 2195 obuf = current_buffer;
09fe4c31 2196 current_buffer = XBUFFER (w->buffer);
e444162e
RS
2197 obegv = BEGV;
2198 ozv = ZV;
2199 BEGV = BEG;
2200 ZV = Z;
09fe4c31 2201
b8009dd1
RS
2202 /* Yes. Clear the display of the old active region, if any. */
2203 clear_mouse_face ();
2204
2205 /* Is this char mouse-active? */
2206 XSET (position, Lisp_Int, pos);
2207
2208 len = 10;
2209 overlay_vec = (Lisp_Object *) xmalloc (len * sizeof (Lisp_Object));
2210
2211 /* Put all the overlays we want in a vector in overlay_vec.
2212 Store the length in len. */
2213 noverlays = overlays_at (XINT (pos), 1, &overlay_vec, &len, &ignor1);
09fe4c31 2214 noverlays = sort_overlays (overlay_vec, noverlays, w);
b8009dd1
RS
2215
2216 /* Find the highest priority overlay that has a mouse-face prop. */
2217 overlay = Qnil;
2218 for (i = 0; i < noverlays; i++)
2219 {
2220 mouse_face = Foverlay_get (overlay_vec[i], Qmouse_face);
2221 if (!NILP (mouse_face))
2222 {
2223 overlay = overlay_vec[i];
2224 break;
2225 }
2226 }
2227 free (overlay_vec);
2228 /* If no overlay applies, get a text property. */
2229 if (NILP (overlay))
2230 mouse_face = Fget_text_property (position, Qmouse_face, w->buffer);
2231
2232 /* Handle the overlay case. */
2233 if (! NILP (overlay))
2234 {
2235 /* Find the range of text around this char that
2236 should be active. */
2237 Lisp_Object before, after;
2238 int ignore;
2239
2240 before = Foverlay_start (overlay);
2241 after = Foverlay_end (overlay);
2242 /* Record this as the current active region. */
3b506386
KH
2243 fast_find_position (window, before,
2244 &mouse_face_beg_col, &mouse_face_beg_row);
2245 fast_find_position (window, after,
2246 &mouse_face_end_col, &mouse_face_end_row);
b8009dd1
RS
2247 mouse_face_window = window;
2248 mouse_face_face_id = compute_char_face (f, w, pos, 0, 0,
2249 &ignore, pos + 1, 1);
2250
2251 /* Display it as active. */
2252 show_mouse_face (1);
2253 }
2254 /* Handle the text property case. */
2255 else if (! NILP (mouse_face))
2256 {
2257 /* Find the range of text around this char that
2258 should be active. */
2259 Lisp_Object before, after, beginning, end;
2260 int ignore;
2261
2262 beginning = Fmarker_position (w->start);
2263 XSET (end, Lisp_Int,
09fe4c31 2264 (BUF_Z (XBUFFER (w->buffer))
b8009dd1
RS
2265 - XFASTINT (w->window_end_pos)));
2266 before
2267 = Fprevious_single_property_change (make_number (pos + 1),
2268 Qmouse_face,
2269 w->buffer, beginning);
2270 after
2271 = Fnext_single_property_change (position, Qmouse_face,
2272 w->buffer, end);
2273 /* Record this as the current active region. */
3b506386
KH
2274 fast_find_position (window, before,
2275 &mouse_face_beg_col, &mouse_face_beg_row);
2276 fast_find_position (window, after,
2277 &mouse_face_end_col, &mouse_face_end_row);
b8009dd1
RS
2278 mouse_face_window = window;
2279 mouse_face_face_id
2280 = compute_char_face (f, w, pos, 0, 0,
2281 &ignore, pos + 1, 1);
2282
2283 /* Display it as active. */
2284 show_mouse_face (1);
2285 }
e444162e
RS
2286 BEGV = obegv;
2287 ZV = ozv;
09fe4c31 2288 current_buffer = obuf;
b8009dd1 2289 }
b8009dd1
RS
2290 }
2291}
2292\f
2293/* Find the row and column of position POS in window WINDOW.
2294 Store them in *COLUMNP and *ROWP.
bf1c0ba1
RS
2295 This assumes display in WINDOW is up to date.
2296 If POS is above start of WINDOW, return coords
2297 of start of first screen line.
2298 If POS is after end of WINDOW, return coords of end of last screen line. */
b8009dd1
RS
2299
2300static int
2301fast_find_position (window, pos, columnp, rowp)
2302 Lisp_Object window;
2303 int pos;
2304 int *columnp, *rowp;
2305{
2306 struct window *w = XWINDOW (window);
2307 FRAME_PTR f = XFRAME (WINDOW_FRAME (w));
2308 int i;
2309 int row;
2310 int left = w->left;
2311 int top = w->top;
2312 int height = XFASTINT (w->height) - ! MINI_WINDOW_P (w);
2313 int width = window_internal_width (w);
2314 int *charstarts;
bf1c0ba1 2315 int lastcol;
b8009dd1
RS
2316
2317 for (i = 0;
2318 i < height;
2319 i++)
2320 {
2321 int linestart = FRAME_CURRENT_GLYPHS (f)->charstarts[top + i][left];
2322 if (linestart > pos)
2323 break;
2324 if (linestart > 0)
2325 row = i;
2326 }
2327
2328 charstarts = FRAME_CURRENT_GLYPHS (f)->charstarts[top + row];
bf1c0ba1 2329 lastcol = left;
b8009dd1 2330 for (i = 0; i < width; i++)
bf1c0ba1
RS
2331 {
2332 if (charstarts[left + i] == pos)
2333 {
2334 *rowp = row + top;
2335 *columnp = i + left;
2336 return 1;
2337 }
2338 else if (charstarts[left + i] > pos)
2339 lastcol = left + i;
2340 }
b8009dd1 2341
bf1c0ba1
RS
2342 *rowp = row + top;
2343 *columnp = lastcol;
b8009dd1
RS
2344 return 0;
2345}
2346
2347/* Display the active region described by mouse_face_*
2348 in its mouse-face if HL > 0, in its normal face if HL = 0. */
2349
2350static void
2351show_mouse_face (hl)
2352 int hl;
2353{
b8009dd1
RS
2354 struct window *w = XWINDOW (mouse_face_window);
2355 int width = window_internal_width (w);
2356 FRAME_PTR f = XFRAME (WINDOW_FRAME (w));
2357 int i;
514e4681
RS
2358 int curs_x = f->phys_cursor_x;
2359 int curs_y = f->phys_cursor_y;
2360 int cursor_off = 0;
b8009dd1 2361
3b506386 2362 for (i = mouse_face_beg_row; i <= mouse_face_end_row; i++)
b8009dd1 2363 {
3b506386
KH
2364 int column = (i == mouse_face_beg_row ? mouse_face_beg_col : w->left);
2365 int endcolumn = (i == mouse_face_end_row ? mouse_face_end_col : w->left + width);
514e4681
RS
2366 endcolumn = min (endcolumn, FRAME_CURRENT_GLYPHS (f)->used[i] - w->left);
2367
2368 /* If the cursor's in the text we are about to rewrite,
2369 turn the cursor off. */
2370 if (i == curs_y
3b506386 2371 && curs_x >= mouse_face_beg_col - 1 && curs_x <= mouse_face_end_col)
514e4681
RS
2372 {
2373 x_display_cursor (f, 0);
2374 cursor_off = 1;
2375 }
b8009dd1
RS
2376
2377 dumpglyphs (f,
2378 CHAR_TO_PIXEL_COL (f, column),
2379 CHAR_TO_PIXEL_ROW (f, i),
2380 FRAME_CURRENT_GLYPHS (f)->glyphs[i] + column,
2381 endcolumn - column,
2382 /* Highlight with mouse face if hl > 0. */
0cdd0c9f 2383 hl > 0 ? 3 : 0, 0);
b8009dd1
RS
2384 }
2385
514e4681
RS
2386 /* If we turned the cursor off, turn it back on. */
2387 if (cursor_off)
2388 x_display_cursor (f, 1);
27ead1d5
FP
2389
2390 /* Change the mouse cursor according to the value of HL. */
2391 if (hl > 0)
2392 XDefineCursor (XDISPLAY FRAME_X_WINDOW (f), f->display.x->cross_cursor);
2393 else
2394 XDefineCursor (XDISPLAY FRAME_X_WINDOW (f), f->display.x->text_cursor);
b8009dd1
RS
2395}
2396
2397/* Clear out the mouse-highlighted active region.
2398 Redraw it unhighlighted first. */
2399
2400static void
2401clear_mouse_face ()
2402{
2403 if (! NILP (mouse_face_window))
2404 show_mouse_face (0);
2405
3b506386
KH
2406 mouse_face_beg_row = mouse_face_beg_col = -1;
2407 mouse_face_end_row = mouse_face_end_col = -1;
b8009dd1
RS
2408 mouse_face_window = Qnil;
2409}
2410\f
ab648270
JB
2411static struct scroll_bar *x_window_to_scroll_bar ();
2412static void x_scroll_bar_report_motion ();
12ba150f 2413
90e65f07
JB
2414/* Return the current position of the mouse.
2415
ab648270
JB
2416 If the mouse movement started in a scroll bar, set *f, *bar_window,
2417 and *part to the frame, window, and scroll bar part that the mouse
12ba150f 2418 is over. Set *x and *y to the portion and whole of the mouse's
ab648270 2419 position on the scroll bar.
12ba150f
JB
2420
2421 If the mouse movement started elsewhere, set *f to the frame the
2422 mouse is on, *bar_window to nil, and *x and *y to the character cell
2423 the mouse is over.
2424
2425 Set *time to the server timestamp for the time at which the mouse
2426 was at this position.
2427
a135645a
RS
2428 Don't store anything if we don't have a valid set of values to report.
2429
90e65f07 2430 This clears the mouse_moved flag, so we can wait for the next mouse
12ba150f
JB
2431 movement. This also calls XQueryPointer, which will cause the
2432 server to give us another MotionNotify when the mouse moves
2433 again. */
90e65f07
JB
2434
2435static void
12ba150f 2436XTmouse_position (f, bar_window, part, x, y, time)
472895ad 2437 FRAME_PTR *f;
12ba150f 2438 Lisp_Object *bar_window;
ab648270 2439 enum scroll_bar_part *part;
90e65f07 2440 Lisp_Object *x, *y;
e5d77022 2441 unsigned long *time;
90e65f07 2442{
a135645a
RS
2443 FRAME_PTR f1;
2444
90e65f07
JB
2445 BLOCK_INPUT;
2446
ab648270
JB
2447 if (! NILP (last_mouse_scroll_bar))
2448 x_scroll_bar_report_motion (f, bar_window, part, x, y, time);
90e65f07
JB
2449 else
2450 {
12ba150f
JB
2451 Window root;
2452 int root_x, root_y;
90e65f07 2453
12ba150f
JB
2454 Window dummy_window;
2455 int dummy;
2456
2457 mouse_moved = 0;
ab648270 2458 last_mouse_scroll_bar = Qnil;
12ba150f
JB
2459
2460 /* Figure out which root window we're on. */
2461 XQueryPointer (x_current_display,
2462 DefaultRootWindow (x_current_display),
2463
2464 /* The root window which contains the pointer. */
2465 &root,
2466
2467 /* Trash which we can't trust if the pointer is on
2468 a different screen. */
2469 &dummy_window,
2470
2471 /* The position on that root window. */
2472 &root_x, &root_y,
2473
2474 /* More trash we can't trust. */
2475 &dummy, &dummy,
2476
2477 /* Modifier keys and pointer buttons, about which
2478 we don't care. */
2479 (unsigned int *) &dummy);
2480
2481 /* Now we have a position on the root; find the innermost window
2482 containing the pointer. */
2483 {
2484 Window win, child;
2485 int win_x, win_y;
2486 int parent_x, parent_y;
2487
2488 win = root;
69388238 2489
06ef4a3f 2490 if (x_mouse_grabbed && FRAME_LIVE_P (last_mouse_frame))
12ba150f 2491 {
69388238
RS
2492 /* If mouse was grabbed on a frame, give coords for that frame
2493 even if the mouse is now outside it. */
12ba150f 2494 XTranslateCoordinates (x_current_display,
69388238 2495
12ba150f 2496 /* From-window, to-window. */
69388238 2497 root, FRAME_X_WINDOW (last_mouse_frame),
12ba150f
JB
2498
2499 /* From-position, to-position. */
2500 root_x, root_y, &win_x, &win_y,
2501
2502 /* Child of win. */
2503 &child);
69388238
RS
2504 f1 = last_mouse_frame;
2505 }
2506 else
2507 {
2508 while (1)
2509 {
2510 XTranslateCoordinates (x_current_display,
12ba150f 2511
69388238
RS
2512 /* From-window, to-window. */
2513 root, win,
12ba150f 2514
69388238
RS
2515 /* From-position, to-position. */
2516 root_x, root_y, &win_x, &win_y,
2517
2518 /* Child of win. */
2519 &child);
2520
2521 if (child == None)
2522 break;
2523
2524 win = child;
2525 parent_x = win_x;
2526 parent_y = win_y;
2527 }
12ba150f 2528
69388238
RS
2529 /* Now we know that:
2530 win is the innermost window containing the pointer
2531 (XTC says it has no child containing the pointer),
2532 win_x and win_y are the pointer's position in it
2533 (XTC did this the last time through), and
2534 parent_x and parent_y are the pointer's position in win's parent.
2535 (They are what win_x and win_y were when win was child.
2536 If win is the root window, it has no parent, and
2537 parent_{x,y} are invalid, but that's okay, because we'll
2538 never use them in that case.) */
2539
2540 /* Is win one of our frames? */
2b5c9e71 2541 f1 = x_any_window_to_frame (win);
69388238 2542 }
12ba150f 2543
ab648270 2544 /* If not, is it one of our scroll bars? */
a135645a 2545 if (! f1)
12ba150f 2546 {
ab648270 2547 struct scroll_bar *bar = x_window_to_scroll_bar (win);
12ba150f
JB
2548
2549 if (bar)
2550 {
a135645a 2551 f1 = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
12ba150f
JB
2552 win_x = parent_x;
2553 win_y = parent_y;
2554 }
2555 }
90e65f07 2556
a135645a 2557 if (f1)
12ba150f 2558 {
2b5c9e71
RS
2559 int ignore1, ignore2;
2560
2561 /* Ok, we found a frame. Store all the values. */
a135645a 2562
2b5c9e71 2563 pixel_to_glyph_coords (f1, win_x, win_y, &ignore1, &ignore2,
69388238 2564 &last_mouse_glyph, x_mouse_grabbed);
12ba150f
JB
2565
2566 *bar_window = Qnil;
2567 *part = 0;
a135645a 2568 *f = f1;
12ba150f
JB
2569 XSET (*x, Lisp_Int, win_x);
2570 XSET (*y, Lisp_Int, win_y);
2571 *time = last_mouse_movement_time;
2572 }
2573 }
2574 }
90e65f07
JB
2575
2576 UNBLOCK_INPUT;
2577}
2578
c118dd06 2579#else /* ! defined (HAVE_X11) */
dc6f92b8 2580#define XEvent XKeyPressedEvent
c118dd06
JB
2581#endif /* ! defined (HAVE_X11) */
2582\f
ab648270 2583/* Scroll bar support. */
f451eb13 2584
ab648270
JB
2585/* Given an X window ID, find the struct scroll_bar which manages it.
2586 This can be called in GC, so we have to make sure to strip off mark
2587 bits. */
2588static struct scroll_bar *
2589x_window_to_scroll_bar (window_id)
f451eb13
JB
2590 Window window_id;
2591{
2592 Lisp_Object tail, frame;
f451eb13 2593
ab648270
JB
2594 for (tail = Vframe_list;
2595 XGCTYPE (tail) == Lisp_Cons;
2596 tail = XCONS (tail)->cdr)
f451eb13 2597 {
abdda982 2598 Lisp_Object frame, bar, condemned;
f451eb13 2599
abdda982 2600 frame = XCONS (tail)->car;
f451eb13 2601 /* All elements of Vframe_list should be frames. */
ab648270 2602 if (XGCTYPE (frame) != Lisp_Frame)
f451eb13
JB
2603 abort ();
2604
ab648270 2605 /* Scan this frame's scroll bar list for a scroll bar with the
f451eb13 2606 right window ID. */
ab648270
JB
2607 condemned = FRAME_CONDEMNED_SCROLL_BARS (XFRAME (frame));
2608 for (bar = FRAME_SCROLL_BARS (XFRAME (frame));
cf7cb199 2609 /* This trick allows us to search both the ordinary and
ab648270
JB
2610 condemned scroll bar lists with one loop. */
2611 ! GC_NILP (bar) || (bar = condemned,
2612 condemned = Qnil,
2613 ! GC_NILP (bar));
bc20ebbf 2614 bar = XSCROLL_BAR (bar)->next)
ab648270
JB
2615 if (SCROLL_BAR_X_WINDOW (XSCROLL_BAR (bar)) == window_id)
2616 return XSCROLL_BAR (bar);
f451eb13
JB
2617 }
2618
2619 return 0;
2620}
2621
ab648270
JB
2622/* Open a new X window to serve as a scroll bar, and return the
2623 scroll bar vector for it. */
2624static struct scroll_bar *
2625x_scroll_bar_create (window, top, left, width, height)
12ba150f 2626 struct window *window;
f451eb13
JB
2627 int top, left, width, height;
2628{
12ba150f 2629 FRAME_PTR frame = XFRAME (WINDOW_FRAME (window));
ab648270
JB
2630 struct scroll_bar *bar =
2631 XSCROLL_BAR (Fmake_vector (make_number (SCROLL_BAR_VEC_SIZE), Qnil));
f451eb13
JB
2632
2633 BLOCK_INPUT;
2634
2635 {
2636 XSetWindowAttributes a;
2637 unsigned long mask;
12ba150f
JB
2638 a.background_pixel = frame->display.x->background_pixel;
2639 a.event_mask = (ButtonPressMask | ButtonReleaseMask
9a572e2a 2640 | ButtonMotionMask | PointerMotionHintMask
12ba150f 2641 | ExposureMask);
ab648270 2642 a.cursor = x_vertical_scroll_bar_cursor;
f451eb13 2643
dbc4e1c1 2644 mask = (CWBackPixel | CWEventMask | CWCursor);
f451eb13 2645
3afe33e7
RS
2646#if 0
2647
2648 ac = 0;
2649 XtSetArg (al[ac], XtNx, left); ac++;
2650 XtSetArg (al[ac], XtNy, top); ac++;
2651 XtSetArg (al[ac], XtNwidth, width); ac++;
2652 XtSetArg (al[ac], XtNheight, height); ac++;
2653 XtSetArg (al[ac], XtNborderWidth, 0); ac++;
2654 sb_widget = XtCreateManagedWidget ("box",
7246d1d3
KH
2655 boxWidgetClass,
2656 frame->display.x->edit_widget, al, ac);
2657 SET_SCROLL_BAR_X_WINDOW
3afe33e7
RS
2658 (bar, sb_widget->core.window);
2659#endif
7246d1d3 2660 SET_SCROLL_BAR_X_WINDOW
12ba150f
JB
2661 (bar,
2662 XCreateWindow (x_current_display, FRAME_X_WINDOW (frame),
f451eb13 2663
ab648270 2664 /* Position and size of scroll bar. */
12ba150f 2665 left, top, width, height,
f451eb13 2666
12ba150f
JB
2667 /* Border width, depth, class, and visual. */
2668 0, CopyFromParent, CopyFromParent, CopyFromParent,
f451eb13 2669
12ba150f
JB
2670 /* Attributes. */
2671 mask, &a));
f451eb13
JB
2672 }
2673
12ba150f
JB
2674 XSET (bar->window, Lisp_Window, window);
2675 XSET (bar->top, Lisp_Int, top);
2676 XSET (bar->left, Lisp_Int, left);
2677 XSET (bar->width, Lisp_Int, width);
2678 XSET (bar->height, Lisp_Int, height);
2679 XSET (bar->start, Lisp_Int, 0);
2680 XSET (bar->end, Lisp_Int, 0);
2681 bar->dragging = Qnil;
f451eb13
JB
2682
2683 /* Add bar to its frame's list of scroll bars. */
ab648270 2684 bar->next = FRAME_SCROLL_BARS (frame);
12ba150f 2685 bar->prev = Qnil;
ab648270 2686 XSET (FRAME_SCROLL_BARS (frame), Lisp_Vector, bar);
12ba150f 2687 if (! NILP (bar->next))
ab648270 2688 XSET (XSCROLL_BAR (bar->next)->prev, Lisp_Vector, bar);
f451eb13 2689
ab648270 2690 XMapWindow (x_current_display, SCROLL_BAR_X_WINDOW (bar));
f451eb13
JB
2691
2692 UNBLOCK_INPUT;
12ba150f
JB
2693
2694 return bar;
f451eb13
JB
2695}
2696
12ba150f
JB
2697/* Draw BAR's handle in the proper position.
2698 If the handle is already drawn from START to END, don't bother
2699 redrawing it, unless REBUILD is non-zero; in that case, always
2700 redraw it. (REBUILD is handy for drawing the handle after expose
2701 events.)
2702
2703 Normally, we want to constrain the start and end of the handle to
ab648270 2704 fit inside its rectangle, but if the user is dragging the scroll bar
12ba150f
JB
2705 handle, we want to let them drag it down all the way, so that the
2706 bar's top is as far down as it goes; otherwise, there's no way to
2707 move to the very end of the buffer. */
f451eb13 2708static void
ab648270
JB
2709x_scroll_bar_set_handle (bar, start, end, rebuild)
2710 struct scroll_bar *bar;
f451eb13 2711 int start, end;
12ba150f 2712 int rebuild;
f451eb13 2713{
12ba150f 2714 int dragging = ! NILP (bar->dragging);
ab648270 2715 Window w = SCROLL_BAR_X_WINDOW (bar);
12ba150f
JB
2716 GC gc = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)))->display.x->normal_gc;
2717
2718 /* If the display is already accurate, do nothing. */
2719 if (! rebuild
2720 && start == XINT (bar->start)
2721 && end == XINT (bar->end))
2722 return;
2723
f451eb13
JB
2724 BLOCK_INPUT;
2725
2726 {
ab648270
JB
2727 int inside_width = VERTICAL_SCROLL_BAR_INSIDE_WIDTH (XINT (bar->width));
2728 int inside_height = VERTICAL_SCROLL_BAR_INSIDE_HEIGHT (XINT (bar->height));
2729 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (XINT (bar->height));
f451eb13
JB
2730
2731 /* Make sure the values are reasonable, and try to preserve
2732 the distance between start and end. */
12ba150f
JB
2733 {
2734 int length = end - start;
2735
2736 if (start < 0)
2737 start = 0;
2738 else if (start > top_range)
2739 start = top_range;
2740 end = start + length;
2741
2742 if (end < start)
2743 end = start;
2744 else if (end > top_range && ! dragging)
2745 end = top_range;
2746 }
f451eb13 2747
ab648270 2748 /* Store the adjusted setting in the scroll bar. */
12ba150f
JB
2749 XSET (bar->start, Lisp_Int, start);
2750 XSET (bar->end, Lisp_Int, end);
f451eb13 2751
12ba150f
JB
2752 /* Clip the end position, just for display. */
2753 if (end > top_range)
2754 end = top_range;
f451eb13 2755
ab648270 2756 /* Draw bottom positions VERTICAL_SCROLL_BAR_MIN_HANDLE pixels
12ba150f
JB
2757 below top positions, to make sure the handle is always at least
2758 that many pixels tall. */
ab648270 2759 end += VERTICAL_SCROLL_BAR_MIN_HANDLE;
f451eb13 2760
12ba150f
JB
2761 /* Draw the empty space above the handle. Note that we can't clear
2762 zero-height areas; that means "clear to end of window." */
2763 if (0 < start)
2764 XClearArea (x_current_display, w,
f451eb13 2765
12ba150f 2766 /* x, y, width, height, and exposures. */
ab648270
JB
2767 VERTICAL_SCROLL_BAR_LEFT_BORDER,
2768 VERTICAL_SCROLL_BAR_TOP_BORDER,
12ba150f
JB
2769 inside_width, start,
2770 False);
f451eb13 2771
12ba150f
JB
2772 /* Draw the handle itself. */
2773 XFillRectangle (x_current_display, w, gc,
f451eb13 2774
12ba150f 2775 /* x, y, width, height */
ab648270
JB
2776 VERTICAL_SCROLL_BAR_LEFT_BORDER,
2777 VERTICAL_SCROLL_BAR_TOP_BORDER + start,
12ba150f 2778 inside_width, end - start);
f451eb13 2779
f451eb13 2780
12ba150f
JB
2781 /* Draw the empty space below the handle. Note that we can't
2782 clear zero-height areas; that means "clear to end of window." */
2783 if (end < inside_height)
2784 XClearArea (x_current_display, w,
f451eb13 2785
12ba150f 2786 /* x, y, width, height, and exposures. */
ab648270
JB
2787 VERTICAL_SCROLL_BAR_LEFT_BORDER,
2788 VERTICAL_SCROLL_BAR_TOP_BORDER + end,
12ba150f
JB
2789 inside_width, inside_height - end,
2790 False);
f451eb13 2791
f451eb13
JB
2792 }
2793
f451eb13
JB
2794 UNBLOCK_INPUT;
2795}
2796
eb8c3be9 2797/* Move a scroll bar around on the screen, to accommodate changing
12ba150f 2798 window configurations. */
f451eb13 2799static void
ab648270
JB
2800x_scroll_bar_move (bar, top, left, width, height)
2801 struct scroll_bar *bar;
f451eb13
JB
2802 int top, left, width, height;
2803{
2804 BLOCK_INPUT;
2805
2806 {
2807 XWindowChanges wc;
2808 unsigned int mask = 0;
2809
2810 wc.x = left;
2811 wc.y = top;
2812 wc.width = width;
2813 wc.height = height;
2814
12ba150f
JB
2815 if (left != XINT (bar->left)) mask |= CWX;
2816 if (top != XINT (bar->top)) mask |= CWY;
2817 if (width != XINT (bar->width)) mask |= CWWidth;
2818 if (height != XINT (bar->height)) mask |= CWHeight;
2819
2820 if (mask)
ab648270 2821 XConfigureWindow (x_current_display, SCROLL_BAR_X_WINDOW (bar),
12ba150f 2822 mask, &wc);
f451eb13
JB
2823 }
2824
12ba150f
JB
2825 XSET (bar->left, Lisp_Int, left);
2826 XSET (bar->top, Lisp_Int, top);
2827 XSET (bar->width, Lisp_Int, width);
2828 XSET (bar->height, Lisp_Int, height);
2829
f451eb13
JB
2830 UNBLOCK_INPUT;
2831}
2832
ab648270 2833/* Destroy the X window for BAR, and set its Emacs window's scroll bar
12ba150f
JB
2834 to nil. */
2835static void
ab648270
JB
2836x_scroll_bar_remove (bar)
2837 struct scroll_bar *bar;
12ba150f
JB
2838{
2839 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
2840
2841 BLOCK_INPUT;
2842
2843 /* Destroy the window. */
ab648270 2844 XDestroyWindow (x_current_display, SCROLL_BAR_X_WINDOW (bar));
12ba150f 2845
ab648270
JB
2846 /* Disassociate this scroll bar from its window. */
2847 XWINDOW (bar->window)->vertical_scroll_bar = Qnil;
12ba150f
JB
2848
2849 UNBLOCK_INPUT;
2850}
2851
2852/* Set the handle of the vertical scroll bar for WINDOW to indicate
2853 that we are displaying PORTION characters out of a total of WHOLE
ab648270 2854 characters, starting at POSITION. If WINDOW has no scroll bar,
12ba150f
JB
2855 create one. */
2856static void
ab648270 2857XTset_vertical_scroll_bar (window, portion, whole, position)
f451eb13
JB
2858 struct window *window;
2859 int portion, whole, position;
2860{
2861 FRAME_PTR f = XFRAME (WINDOW_FRAME (window));
f451eb13 2862 int top = XINT (window->top);
ab648270
JB
2863 int left = WINDOW_VERTICAL_SCROLL_BAR_COLUMN (window);
2864 int height = WINDOW_VERTICAL_SCROLL_BAR_HEIGHT (window);
f451eb13 2865
ab648270 2866 /* Where should this scroll bar be, pixelwise? */
12ba150f
JB
2867 int pixel_top = CHAR_TO_PIXEL_ROW (f, top);
2868 int pixel_left = CHAR_TO_PIXEL_COL (f, left);
ab648270
JB
2869 int pixel_width = VERTICAL_SCROLL_BAR_PIXEL_WIDTH (f);
2870 int pixel_height = VERTICAL_SCROLL_BAR_PIXEL_HEIGHT (f, height);
f451eb13 2871
ab648270 2872 struct scroll_bar *bar;
12ba150f 2873
ab648270
JB
2874 /* Does the scroll bar exist yet? */
2875 if (NILP (window->vertical_scroll_bar))
2876 bar = x_scroll_bar_create (window,
f451eb13
JB
2877 pixel_top, pixel_left,
2878 pixel_width, pixel_height);
2879 else
12ba150f
JB
2880 {
2881 /* It may just need to be moved and resized. */
ab648270
JB
2882 bar = XSCROLL_BAR (window->vertical_scroll_bar);
2883 x_scroll_bar_move (bar, pixel_top, pixel_left, pixel_width, pixel_height);
12ba150f 2884 }
f451eb13 2885
ab648270 2886 /* Set the scroll bar's current state, unless we're currently being
f451eb13 2887 dragged. */
12ba150f 2888 if (NILP (bar->dragging))
f451eb13 2889 {
12ba150f 2890 int top_range =
ab648270 2891 VERTICAL_SCROLL_BAR_TOP_RANGE (pixel_height);
f451eb13 2892
12ba150f 2893 if (whole == 0)
ab648270 2894 x_scroll_bar_set_handle (bar, 0, top_range, 0);
12ba150f
JB
2895 else
2896 {
43f868f5
JB
2897 int start = ((double) position * top_range) / whole;
2898 int end = ((double) (position + portion) * top_range) / whole;
12ba150f 2899
ab648270 2900 x_scroll_bar_set_handle (bar, start, end, 0);
12ba150f 2901 }
f451eb13
JB
2902 }
2903
ab648270 2904 XSET (window->vertical_scroll_bar, Lisp_Vector, bar);
f451eb13
JB
2905}
2906
12ba150f 2907
f451eb13 2908/* The following three hooks are used when we're doing a thorough
ab648270 2909 redisplay of the frame. We don't explicitly know which scroll bars
f451eb13 2910 are going to be deleted, because keeping track of when windows go
12ba150f
JB
2911 away is a real pain - "Can you say set-window-configuration, boys
2912 and girls?" Instead, we just assert at the beginning of redisplay
ab648270 2913 that *all* scroll bars are to be removed, and then save a scroll bar
12ba150f 2914 from the fiery pit when we actually redisplay its window. */
f451eb13 2915
ab648270
JB
2916/* Arrange for all scroll bars on FRAME to be removed at the next call
2917 to `*judge_scroll_bars_hook'. A scroll bar may be spared if
2918 `*redeem_scroll_bar_hook' is applied to its window before the judgement. */
f451eb13 2919static void
ab648270 2920XTcondemn_scroll_bars (frame)
f451eb13
JB
2921 FRAME_PTR frame;
2922{
12ba150f
JB
2923 /* The condemned list should be empty at this point; if it's not,
2924 then the rest of Emacs isn't using the condemn/redeem/judge
2925 protocol correctly. */
ab648270 2926 if (! NILP (FRAME_CONDEMNED_SCROLL_BARS (frame)))
12ba150f
JB
2927 abort ();
2928
2929 /* Move them all to the "condemned" list. */
ab648270
JB
2930 FRAME_CONDEMNED_SCROLL_BARS (frame) = FRAME_SCROLL_BARS (frame);
2931 FRAME_SCROLL_BARS (frame) = Qnil;
f451eb13
JB
2932}
2933
ab648270 2934/* Unmark WINDOW's scroll bar for deletion in this judgement cycle.
12ba150f 2935 Note that WINDOW isn't necessarily condemned at all. */
f451eb13 2936static void
ab648270 2937XTredeem_scroll_bar (window)
12ba150f 2938 struct window *window;
f451eb13 2939{
ab648270 2940 struct scroll_bar *bar;
12ba150f 2941
ab648270
JB
2942 /* We can't redeem this window's scroll bar if it doesn't have one. */
2943 if (NILP (window->vertical_scroll_bar))
12ba150f
JB
2944 abort ();
2945
ab648270 2946 bar = XSCROLL_BAR (window->vertical_scroll_bar);
12ba150f
JB
2947
2948 /* Unlink it from the condemned list. */
2949 {
2950 FRAME_PTR f = XFRAME (WINDOW_FRAME (window));
2951
2952 if (NILP (bar->prev))
2953 {
2954 /* If the prev pointer is nil, it must be the first in one of
2955 the lists. */
ab648270 2956 if (EQ (FRAME_SCROLL_BARS (f), window->vertical_scroll_bar))
12ba150f
JB
2957 /* It's not condemned. Everything's fine. */
2958 return;
ab648270
JB
2959 else if (EQ (FRAME_CONDEMNED_SCROLL_BARS (f),
2960 window->vertical_scroll_bar))
2961 FRAME_CONDEMNED_SCROLL_BARS (f) = bar->next;
12ba150f
JB
2962 else
2963 /* If its prev pointer is nil, it must be at the front of
2964 one or the other! */
2965 abort ();
2966 }
2967 else
ab648270 2968 XSCROLL_BAR (bar->prev)->next = bar->next;
12ba150f
JB
2969
2970 if (! NILP (bar->next))
ab648270 2971 XSCROLL_BAR (bar->next)->prev = bar->prev;
12ba150f 2972
ab648270 2973 bar->next = FRAME_SCROLL_BARS (f);
12ba150f 2974 bar->prev = Qnil;
ab648270 2975 XSET (FRAME_SCROLL_BARS (f), Lisp_Vector, bar);
12ba150f 2976 if (! NILP (bar->next))
ab648270 2977 XSET (XSCROLL_BAR (bar->next)->prev, Lisp_Vector, bar);
12ba150f 2978 }
f451eb13
JB
2979}
2980
ab648270
JB
2981/* Remove all scroll bars on FRAME that haven't been saved since the
2982 last call to `*condemn_scroll_bars_hook'. */
f451eb13 2983static void
ab648270 2984XTjudge_scroll_bars (f)
12ba150f 2985 FRAME_PTR f;
f451eb13 2986{
12ba150f 2987 Lisp_Object bar, next;
f451eb13 2988
ab648270 2989 bar = FRAME_CONDEMNED_SCROLL_BARS (f);
cf7cb199
JB
2990
2991 /* Clear out the condemned list now so we won't try to process any
ab648270
JB
2992 more events on the hapless scroll bars. */
2993 FRAME_CONDEMNED_SCROLL_BARS (f) = Qnil;
cf7cb199
JB
2994
2995 for (; ! NILP (bar); bar = next)
f451eb13 2996 {
ab648270 2997 struct scroll_bar *b = XSCROLL_BAR (bar);
12ba150f 2998
ab648270 2999 x_scroll_bar_remove (b);
12ba150f
JB
3000
3001 next = b->next;
3002 b->next = b->prev = Qnil;
f451eb13 3003 }
12ba150f 3004
ab648270 3005 /* Now there should be no references to the condemned scroll bars,
12ba150f 3006 and they should get garbage-collected. */
f451eb13
JB
3007}
3008
3009
ab648270
JB
3010/* Handle an Expose or GraphicsExpose event on a scroll bar.
3011
3012 This may be called from a signal handler, so we have to ignore GC
3013 mark bits. */
f451eb13 3014static void
ab648270
JB
3015x_scroll_bar_expose (bar, event)
3016 struct scroll_bar *bar;
f451eb13
JB
3017 XEvent *event;
3018{
ab648270 3019 Window w = SCROLL_BAR_X_WINDOW (bar);
12ba150f
JB
3020 GC gc = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)))->display.x->normal_gc;
3021
f451eb13
JB
3022 BLOCK_INPUT;
3023
ab648270 3024 x_scroll_bar_set_handle (bar, XINT (bar->start), XINT (bar->end), 1);
f451eb13 3025
ab648270 3026 /* Draw a one-pixel border just inside the edges of the scroll bar. */
12ba150f 3027 XDrawRectangle (x_current_display, w, gc,
f451eb13
JB
3028
3029 /* x, y, width, height */
12ba150f 3030 0, 0, XINT (bar->width) - 1, XINT (bar->height) - 1);
f451eb13 3031
f451eb13
JB
3032 UNBLOCK_INPUT;
3033}
3034
ab648270
JB
3035/* Handle a mouse click on the scroll bar BAR. If *EMACS_EVENT's kind
3036 is set to something other than no_event, it is enqueued.
3037
3038 This may be called from a signal handler, so we have to ignore GC
3039 mark bits. */
f451eb13 3040static void
ab648270
JB
3041x_scroll_bar_handle_click (bar, event, emacs_event)
3042 struct scroll_bar *bar;
f451eb13
JB
3043 XEvent *event;
3044 struct input_event *emacs_event;
3045{
ab648270 3046 if (XGCTYPE (bar->window) != Lisp_Window)
12ba150f
JB
3047 abort ();
3048
ab648270 3049 emacs_event->kind = scroll_bar_click;
69388238 3050 emacs_event->code = event->xbutton.button - Button1;
f451eb13 3051 emacs_event->modifiers =
dfeccd2d 3052 (x_x_to_emacs_modifiers (event->xbutton.state)
f451eb13
JB
3053 | (event->type == ButtonRelease
3054 ? up_modifier
3055 : down_modifier));
12ba150f 3056 emacs_event->frame_or_window = bar->window;
f451eb13 3057 emacs_event->timestamp = event->xbutton.time;
12ba150f
JB
3058 {
3059 int internal_height =
ab648270 3060 VERTICAL_SCROLL_BAR_INSIDE_HEIGHT (XINT (bar->height));
12ba150f 3061 int top_range =
ab648270
JB
3062 VERTICAL_SCROLL_BAR_TOP_RANGE (XINT (bar->height));
3063 int y = event->xbutton.y - VERTICAL_SCROLL_BAR_TOP_BORDER;
12ba150f
JB
3064
3065 if (y < 0) y = 0;
3066 if (y > top_range) y = top_range;
3067
3068 if (y < XINT (bar->start))
ab648270
JB
3069 emacs_event->part = scroll_bar_above_handle;
3070 else if (y < XINT (bar->end) + VERTICAL_SCROLL_BAR_MIN_HANDLE)
3071 emacs_event->part = scroll_bar_handle;
12ba150f 3072 else
ab648270 3073 emacs_event->part = scroll_bar_below_handle;
929787e1
JB
3074
3075 /* Just because the user has clicked on the handle doesn't mean
5116f055
JB
3076 they want to drag it. Lisp code needs to be able to decide
3077 whether or not we're dragging. */
929787e1 3078#if 0
12ba150f
JB
3079 /* If the user has just clicked on the handle, record where they're
3080 holding it. */
3081 if (event->type == ButtonPress
ab648270 3082 && emacs_event->part == scroll_bar_handle)
12ba150f 3083 XSET (bar->dragging, Lisp_Int, y - XINT (bar->start));
929787e1 3084#endif
12ba150f
JB
3085
3086 /* If the user has released the handle, set it to its final position. */
3087 if (event->type == ButtonRelease
3088 && ! NILP (bar->dragging))
3089 {
3090 int new_start = y - XINT (bar->dragging);
3091 int new_end = new_start + (XINT (bar->end) - XINT (bar->start));
f451eb13 3092
ab648270 3093 x_scroll_bar_set_handle (bar, new_start, new_end, 0);
12ba150f
JB
3094 bar->dragging = Qnil;
3095 }
f451eb13 3096
5116f055
JB
3097 /* Same deal here as the other #if 0. */
3098#if 0
eb8c3be9 3099 /* Clicks on the handle are always reported as occurring at the top of
12ba150f 3100 the handle. */
ab648270 3101 if (emacs_event->part == scroll_bar_handle)
12ba150f
JB
3102 emacs_event->x = bar->start;
3103 else
3104 XSET (emacs_event->x, Lisp_Int, y);
5116f055
JB
3105#else
3106 XSET (emacs_event->x, Lisp_Int, y);
3107#endif
f451eb13 3108
12ba150f
JB
3109 XSET (emacs_event->y, Lisp_Int, top_range);
3110 }
3111}
f451eb13 3112
ab648270
JB
3113/* Handle some mouse motion while someone is dragging the scroll bar.
3114
3115 This may be called from a signal handler, so we have to ignore GC
3116 mark bits. */
f451eb13 3117static void
ab648270
JB
3118x_scroll_bar_note_movement (bar, event)
3119 struct scroll_bar *bar;
f451eb13
JB
3120 XEvent *event;
3121{
3122 last_mouse_movement_time = event->xmotion.time;
3123
3124 mouse_moved = 1;
ab648270 3125 XSET (last_mouse_scroll_bar, Lisp_Vector, bar);
f451eb13
JB
3126
3127 /* If we're dragging the bar, display it. */
ab648270 3128 if (! GC_NILP (bar->dragging))
f451eb13
JB
3129 {
3130 /* Where should the handle be now? */
12ba150f 3131 int new_start = event->xmotion.y - XINT (bar->dragging);
f451eb13 3132
12ba150f 3133 if (new_start != XINT (bar->start))
f451eb13 3134 {
12ba150f 3135 int new_end = new_start + (XINT (bar->end) - XINT (bar->start));
f451eb13 3136
ab648270 3137 x_scroll_bar_set_handle (bar, new_start, new_end, 0);
f451eb13
JB
3138 }
3139 }
3140
3141 /* Call XQueryPointer so we'll get an event the next time the mouse
3142 moves and we can see *still* on the same position. */
3143 {
3144 int dummy;
3145
3146 XQueryPointer (event->xmotion.display, event->xmotion.window,
3147 (Window *) &dummy, (Window *) &dummy,
3148 &dummy, &dummy, &dummy, &dummy,
3149 (unsigned int *) &dummy);
3150 }
3151}
3152
12ba150f 3153/* Return information to the user about the current position of the mouse
ab648270 3154 on the scroll bar. */
12ba150f 3155static void
ab648270 3156x_scroll_bar_report_motion (f, bar_window, part, x, y, time)
12ba150f
JB
3157 FRAME_PTR *f;
3158 Lisp_Object *bar_window;
ab648270 3159 enum scroll_bar_part *part;
12ba150f
JB
3160 Lisp_Object *x, *y;
3161 unsigned long *time;
3162{
ab648270 3163 struct scroll_bar *bar = XSCROLL_BAR (last_mouse_scroll_bar);
12ba150f 3164 int win_x, win_y;
559cb2fb
JB
3165 Window dummy_window;
3166 int dummy_coord;
3167 unsigned int dummy_mask;
12ba150f 3168
cf7cb199
JB
3169 BLOCK_INPUT;
3170
ab648270 3171 /* Get the mouse's position relative to the scroll bar window, and
12ba150f 3172 report that. */
559cb2fb
JB
3173 if (! XQueryPointer (x_current_display,
3174 SCROLL_BAR_X_WINDOW (bar),
12ba150f 3175
559cb2fb
JB
3176 /* Root, child, root x and root y. */
3177 &dummy_window, &dummy_window,
3178 &dummy_coord, &dummy_coord,
12ba150f 3179
559cb2fb
JB
3180 /* Position relative to scroll bar. */
3181 &win_x, &win_y,
12ba150f 3182
559cb2fb
JB
3183 /* Mouse buttons and modifier keys. */
3184 &dummy_mask))
3185 *f = 0;
3186 else
3187 {
3188 int inside_height
3189 = VERTICAL_SCROLL_BAR_INSIDE_HEIGHT (XINT (bar->height));
3190 int top_range
3191 = VERTICAL_SCROLL_BAR_TOP_RANGE (XINT (bar->height));
3192
3193 win_y -= VERTICAL_SCROLL_BAR_TOP_BORDER;
3194
3195 if (! NILP (bar->dragging))
3196 win_y -= XINT (bar->dragging);
3197
3198 if (win_y < 0)
3199 win_y = 0;
3200 if (win_y > top_range)
3201 win_y = top_range;
3202
3203 *f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
3204 *bar_window = bar->window;
3205
3206 if (! NILP (bar->dragging))
3207 *part = scroll_bar_handle;
3208 else if (win_y < XINT (bar->start))
3209 *part = scroll_bar_above_handle;
3210 else if (win_y < XINT (bar->end) + VERTICAL_SCROLL_BAR_MIN_HANDLE)
3211 *part = scroll_bar_handle;
3212 else
3213 *part = scroll_bar_below_handle;
12ba150f 3214
559cb2fb
JB
3215 XSET (*x, Lisp_Int, win_y);
3216 XSET (*y, Lisp_Int, top_range);
12ba150f 3217
559cb2fb
JB
3218 mouse_moved = 0;
3219 last_mouse_scroll_bar = Qnil;
3220 }
12ba150f 3221
559cb2fb 3222 *time = last_mouse_movement_time;
cf7cb199 3223
cf7cb199 3224 UNBLOCK_INPUT;
12ba150f
JB
3225}
3226
f451eb13 3227
dbc4e1c1 3228/* The screen has been cleared so we may have changed foreground or
ab648270
JB
3229 background colors, and the scroll bars may need to be redrawn.
3230 Clear out the scroll bars, and ask for expose events, so we can
dbc4e1c1
JB
3231 redraw them. */
3232
ab648270 3233x_scroll_bar_clear (f)
dbc4e1c1
JB
3234 FRAME_PTR f;
3235{
3236 Lisp_Object bar;
3237
ab648270 3238 for (bar = FRAME_SCROLL_BARS (f);
dbc4e1c1 3239 XTYPE (bar) == Lisp_Vector;
ab648270
JB
3240 bar = XSCROLL_BAR (bar)->next)
3241 XClearArea (x_current_display, SCROLL_BAR_X_WINDOW (XSCROLL_BAR (bar)),
dbc4e1c1
JB
3242 0, 0, 0, 0, True);
3243}
3244
3afe33e7
RS
3245/* This processes Expose events from the menubar specific X event
3246 loop in menubar.c. This allows to redisplay the frame if necessary
3247 when handling menubar or popup items. */
3248
3249void
3250process_expose_from_menu (event)
3251 XEvent event;
3252{
3253 FRAME_PTR f;
3254
f94397b5
KH
3255 BLOCK_INPUT;
3256
3afe33e7
RS
3257 f = x_window_to_frame (event.xexpose.window);
3258 if (f)
3259 {
3260 if (f->async_visible == 0)
3261 {
3262 f->async_visible = 1;
3263 f->async_iconified = 0;
3264 SET_FRAME_GARBAGED (f);
3265 }
3266 else
3267 {
3268 dumprectangle (x_window_to_frame (event.xexpose.window),
3269 event.xexpose.x, event.xexpose.y,
3270 event.xexpose.width, event.xexpose.height);
3271 }
3272 }
3273 else
3274 {
3275 struct scroll_bar *bar
3276 = x_window_to_scroll_bar (event.xexpose.window);
3277
3278 if (bar)
3279 x_scroll_bar_expose (bar, &event);
3280 }
f94397b5
KH
3281
3282 UNBLOCK_INPUT;
3afe33e7 3283}
dbc4e1c1 3284
f451eb13
JB
3285\f
3286/* The main X event-reading loop - XTread_socket. */
dc6f92b8 3287
dc6f92b8
JB
3288/* Timestamp of enter window event. This is only used by XTread_socket,
3289 but we have to put it out here, since static variables within functions
3290 sometimes don't work. */
3291static Time enter_timestamp;
3292
11edeb03
JB
3293/* This holds the state XLookupString needs to implement dead keys
3294 and other tricks known as "compose processing". _X Window System_
3295 says that a portable program can't use this, but Stephen Gildea assures
3296 me that letting the compiler initialize it to zeros will work okay.
3297
3298 This must be defined outside of XTread_socket, for the same reasons
3299 given for enter_timestamp, above. */
3300static XComposeStatus compose_status;
3301
c047688c
JA
3302/* Communication with window managers. */
3303Atom Xatom_wm_protocols;
3304
3305/* Kinds of protocol things we may receive. */
3306Atom Xatom_wm_take_focus;
3307Atom Xatom_wm_save_yourself;
3308Atom Xatom_wm_delete_window;
3309
3310/* Other WM communication */
3311Atom Xatom_wm_configure_denied; /* When our config request is denied */
3312Atom Xatom_wm_window_moved; /* When the WM moves us. */
3313
d56a553a
RS
3314/* Window manager communication. */
3315Atom Xatom_wm_change_state;
3316
c2df547c
RS
3317/* EditRes protocol */
3318Atom Xatom_editres_name;
3319
10e6549c
RS
3320/* Record the last 100 characters stored
3321 to help debug the loss-of-chars-during-GC problem. */
3322int temp_index;
3323short temp_buffer[100];
3324
dc6f92b8
JB
3325/* Read events coming from the X server.
3326 This routine is called by the SIGIO handler.
3327 We return as soon as there are no more events to be read.
3328
3329 Events representing keys are stored in buffer BUFP,
3330 which can hold up to NUMCHARS characters.
3331 We return the number of characters stored into the buffer,
3332 thus pretending to be `read'.
3333
3334 WAITP is nonzero if we should block until input arrives.
3335 EXPECTED is nonzero if the caller knows input is available. */
3336
7c5283e4 3337int
dc6f92b8
JB
3338XTread_socket (sd, bufp, numchars, waitp, expected)
3339 register int sd;
3340 register struct input_event *bufp;
3341 register int numchars;
3342 int waitp;
3343 int expected;
3344{
3345 int count = 0;
3346 int nbytes = 0;
3347 int mask;
3348 int items_pending; /* How many items are in the X queue. */
3349 XEvent event;
f676886a 3350 struct frame *f;
66f55a9d 3351 int event_found = 0;
dc6f92b8
JB
3352 int prefix;
3353 Lisp_Object part;
3354
9ac0d9e0 3355 if (interrupt_input_blocked)
dc6f92b8 3356 {
9ac0d9e0 3357 interrupt_input_pending = 1;
dc6f92b8
JB
3358 return -1;
3359 }
3360
9ac0d9e0 3361 interrupt_input_pending = 0;
dc6f92b8
JB
3362 BLOCK_INPUT;
3363
3364 if (numchars <= 0)
3365 abort (); /* Don't think this happens. */
3366
3367#ifdef FIOSNBIO
3368 /* If available, Xlib uses FIOSNBIO to make the socket
3369 non-blocking, and then looks for EWOULDBLOCK. If O_NDELAY is set,
3370 FIOSNBIO is ignored, and instead of signalling EWOULDBLOCK,
3371 a read returns 0, which Xlib interprets as equivalent to EPIPE. */
3372 fcntl (fileno (stdin), F_SETFL, 0);
c118dd06 3373#endif /* ! defined (FIOSNBIO) */
dc6f92b8
JB
3374
3375#ifndef SIGIO
3376#ifndef HAVE_SELECT
3377 if (! (fcntl (fileno (stdin), F_GETFL, 0) & O_NDELAY))
3378 {
3379 extern int read_alarm_should_throw;
3380 read_alarm_should_throw = 1;
3381 XPeekEvent (XDISPLAY &event);
3382 read_alarm_should_throw = 0;
3383 }
c118dd06
JB
3384#endif /* HAVE_SELECT */
3385#endif /* SIGIO */
dc6f92b8
JB
3386
3387 while (XStuffPending () != 0)
3388 {
3389 XNextEvent (XDISPLAY &event);
3390 event_found = 1;
3391
3392 switch (event.type)
3393 {
3394#ifdef HAVE_X11
c047688c
JA
3395 case ClientMessage:
3396 {
3397 if (event.xclient.message_type == Xatom_wm_protocols
3398 && event.xclient.format == 32)
3399 {
3400 if (event.xclient.data.l[0] == Xatom_wm_take_focus)
3401 {
3afe33e7 3402 f = x_window_to_frame (event.xclient.window);
0a178815
RS
3403 /* Since we set WM_TAKE_FOCUS, we must call
3404 XSetInputFocus explicitly. But not if f is null,
3405 since that might be an event for a deleted frame. */
f676886a 3406 if (f)
5627c40e
RS
3407 XSetInputFocus (event.xclient.display,
3408 event.xclient.window,
3409 RevertToPointerRoot,
3410 event.xclient.data.l[1]);
ab648270 3411 /* Not certain about handling scroll bars here */
c047688c
JA
3412 }
3413 else if (event.xclient.data.l[0] == Xatom_wm_save_yourself)
3414 {
3415 /* Save state modify the WM_COMMAND property to
3416 something which can reinstate us. This notifies
3417 the session manager, who's looking for such a
3418 PropertyNotify. Can restart processing when
3419 a keyboard or mouse event arrives. */
3420 if (numchars > 0)
3421 {
3422 }
3423 }
3424 else if (event.xclient.data.l[0] == Xatom_wm_delete_window)
3425 {
82aebaf4 3426 struct frame *f = x_any_window_to_frame (event.xclient.window);
c047688c 3427
f676886a 3428 if (f)
1fb20991
RS
3429 {
3430 if (numchars == 0)
3431 abort ();
3432
3433 bufp->kind = delete_window_event;
3434 XSET (bufp->frame_or_window, Lisp_Frame, f);
3435 bufp++;
3436
3437 count += 1;
3438 numchars -= 1;
3439 }
c047688c
JA
3440 }
3441 }
3442 else if (event.xclient.message_type == Xatom_wm_configure_denied)
3443 {
3444 }
3445 else if (event.xclient.message_type == Xatom_wm_window_moved)
3446 {
3447 int new_x, new_y;
1fb20991
RS
3448 struct frame *f = x_window_to_frame (event.xclient.window);
3449
4357eba7
JB
3450 new_x = event.xclient.data.s[0];
3451 new_y = event.xclient.data.s[1];
1fb20991
RS
3452
3453 if (f)
3454 {
3455 f->display.x->left_pos = new_x;
3456 f->display.x->top_pos = new_y;
3457 }
c047688c 3458 }
5627c40e 3459#if defined (USE_X_TOOLKIT) && defined (HAVE_X11R5)
c2df547c
RS
3460 else if (event.xclient.message_type == Xatom_editres_name)
3461 {
3462 struct frame *f = x_any_window_to_frame (event.xclient.window);
3463 _XEditResCheckMessages (f->display.x->widget, NULL, &event, NULL);
3464 }
5627c40e 3465#endif /* USE_X_TOOLKIT and HAVE_X11R5 */
c047688c
JA
3466 }
3467 break;
dc6f92b8 3468
d56a553a 3469 case SelectionNotify:
3afe33e7 3470#ifdef USE_X_TOOLKIT
b2bd9b6a 3471 if (! x_window_to_frame (event.xselection.requestor))
3afe33e7 3472 goto OTHER;
3afe33e7 3473#endif /* not USE_X_TOOLKIT */
b2bd9b6a 3474 x_handle_selection_notify (&event);
d56a553a 3475 break;
d56a553a 3476
dc6f92b8 3477 case SelectionClear: /* Someone has grabbed ownership. */
3afe33e7 3478#ifdef USE_X_TOOLKIT
b2bd9b6a
RS
3479 if (! x_window_to_frame (event.xselectionclear.window))
3480 goto OTHER;
3afe33e7 3481#endif /* USE_X_TOOLKIT */
b2bd9b6a 3482 {
d56a553a
RS
3483 XSelectionClearEvent *eventp = (XSelectionClearEvent *) &event;
3484
3485 if (numchars == 0)
3486 abort ();
3487
3488 bufp->kind = selection_clear_event;
3489 SELECTION_EVENT_DISPLAY (bufp) = eventp->display;
3490 SELECTION_EVENT_SELECTION (bufp) = eventp->selection;
3491 SELECTION_EVENT_TIME (bufp) = eventp->time;
3492 bufp++;
3493
3494 count += 1;
3495 numchars -= 1;
3afe33e7 3496 }
dc6f92b8
JB
3497 break;
3498
3499 case SelectionRequest: /* Someone wants our selection. */
3afe33e7 3500#ifdef USE_X_TOOLKIT
b2bd9b6a
RS
3501 if (!x_window_to_frame (event.xselectionrequest.owner))
3502 goto OTHER;
3afe33e7 3503#endif /* USE_X_TOOLKIT */
b2bd9b6a 3504 {
d56a553a
RS
3505 XSelectionRequestEvent *eventp = (XSelectionRequestEvent *) &event;
3506
3507 if (numchars == 0)
3508 abort ();
3509
3510 bufp->kind = selection_request_event;
3511 SELECTION_EVENT_DISPLAY (bufp) = eventp->display;
3512 SELECTION_EVENT_REQUESTOR (bufp) = eventp->requestor;
3513 SELECTION_EVENT_SELECTION (bufp) = eventp->selection;
3514 SELECTION_EVENT_TARGET (bufp) = eventp->target;
3515 SELECTION_EVENT_PROPERTY (bufp) = eventp->property;
3516 SELECTION_EVENT_TIME (bufp) = eventp->time;
3517 bufp++;
3518
3519 count += 1;
3520 numchars -= 1;
3afe33e7 3521 }
dc6f92b8
JB
3522 break;
3523
3524 case PropertyNotify:
3afe33e7 3525#ifdef USE_X_TOOLKIT
b2bd9b6a 3526 if (!x_any_window_to_frame (event.xproperty.window))
3afe33e7 3527 goto OTHER;
3afe33e7 3528#endif /* not USE_X_TOOLKIT */
b2bd9b6a 3529 x_handle_property_notify (&event);
dc6f92b8
JB
3530 break;
3531
3bd330d4
RS
3532 case ReparentNotify:
3533 f = x_window_to_frame (event.xreparent.window);
3534 if (f)
3535 f->display.x->parent_desc = event.xreparent.parent;
3536 break;
3537
dc6f92b8 3538 case Expose:
f676886a
JB
3539 f = x_window_to_frame (event.xexpose.window);
3540 if (f)
dc6f92b8 3541 {
3a88c238 3542 if (f->async_visible == 0)
dc6f92b8 3543 {
3a88c238
JB
3544 f->async_visible = 1;
3545 f->async_iconified = 0;
f676886a 3546 SET_FRAME_GARBAGED (f);
dc6f92b8
JB
3547 }
3548 else
b2bd9b6a
RS
3549 dumprectangle (x_window_to_frame (event.xexpose.window),
3550 event.xexpose.x, event.xexpose.y,
3551 event.xexpose.width, event.xexpose.height);
f451eb13
JB
3552 }
3553 else
3554 {
ab648270
JB
3555 struct scroll_bar *bar
3556 = x_window_to_scroll_bar (event.xexpose.window);
3afe33e7 3557
f451eb13 3558 if (bar)
3afe33e7
RS
3559 x_scroll_bar_expose (bar, &event);
3560#ifdef USE_X_TOOLKIT
3561 else
3562 goto OTHER;
3563#endif /* USE_X_TOOLKIT */
dc6f92b8
JB
3564 }
3565 break;
3566
3567 case GraphicsExpose: /* This occurs when an XCopyArea's
3568 source area was obscured or not
3569 available.*/
f451eb13
JB
3570 f = x_window_to_frame (event.xgraphicsexpose.drawable);
3571 if (f)
3572 {
3573 dumprectangle (f,
3574 event.xgraphicsexpose.x, event.xgraphicsexpose.y,
3575 event.xgraphicsexpose.width,
3576 event.xgraphicsexpose.height);
f451eb13 3577 }
3afe33e7
RS
3578#ifdef USE_X_TOOLKIT
3579 else
3580 goto OTHER;
3581#endif /* USE_X_TOOLKIT */
dc6f92b8
JB
3582 break;
3583
3584 case NoExpose: /* This occurs when an XCopyArea's
3585 source area was completely
3586 available */
3587 break;
c118dd06 3588#else /* ! defined (HAVE_X11) */
dc6f92b8
JB
3589 case ExposeWindow:
3590 if (event.subwindow != 0)
3591 break; /* duplicate event */
f676886a
JB
3592 f = x_window_to_frame (event.window);
3593 if (event.window == f->display.x->icon_desc)
dc6f92b8 3594 {
f676886a 3595 refreshicon (f);
3a88c238 3596 f->async_iconified = 1;
dc6f92b8 3597 }
c118dd06 3598 if (event.window == FRAME_X_WINDOW (f))
dc6f92b8
JB
3599 {
3600 /* Say must check all windows' needs_exposure flags. */
3601 expose_all_windows = 1;
f676886a 3602 f->display.x->needs_exposure = 1;
3a88c238 3603 f->async_visible = 1;
dc6f92b8
JB
3604 }
3605 break;
3606
3607 case ExposeRegion:
3608 if (event.subwindow != 0)
3609 break; /* duplicate event */
f676886a
JB
3610 f = x_window_to_frame (event.window);
3611 if (event.window == f->display.x->icon_desc)
dc6f92b8 3612 {
f676886a 3613 refreshicon (f);
dc6f92b8
JB
3614 break;
3615 }
3616 /* If window already needs full redraw, ignore this rectangle. */
f676886a 3617 if (expose_all_windows && f->display.x->needs_exposure)
dc6f92b8
JB
3618 break;
3619 /* Put the event on the queue of rectangles to redraw. */
3620 if (enqueue_event (&event, &x_expose_queue))
3621 /* If it is full, we can't record the rectangle,
3622 so redraw this entire window. */
3623 {
3624 /* Say must check all windows' needs_exposure flags. */
3625 expose_all_windows = 1;
f676886a 3626 f->display.x->needs_exposure = 1;
dc6f92b8
JB
3627 }
3628 break;
3629
3630 case ExposeCopy:
3631 /* This should happen only when we are expecting it,
3632 in x_read_exposes. */
3633 abort ();
c118dd06 3634#endif /* ! defined (HAVE_X11) */
dc6f92b8
JB
3635
3636#ifdef HAVE_X11
3637 case UnmapNotify:
dc05a16b 3638 f = x_any_window_to_frame (event.xunmap.window);
f451eb13 3639 if (f) /* F may no longer exist if
f676886a 3640 the frame was deleted. */
f451eb13
JB
3641 {
3642 /* While a frame is unmapped, display generation is
3643 disabled; you don't want to spend time updating a
3644 display that won't ever be seen. */
3645 f->async_visible = 0;
5627c40e
RS
3646 /* We can't distinguish, from the event, whether the window
3647 has become iconified or invisible. So assume, if it
3648 was previously visible, than now it is iconified.
3649 We depend on x_make_frame_invisible to mark it iconified. */
9319ae23
RS
3650 if (FRAME_VISIBLE_P (f) || FRAME_ICONIFIED_P (f))
3651 f->async_iconified = 1;
f451eb13 3652 }
3afe33e7
RS
3653#ifdef USE_X_TOOLKIT
3654 goto OTHER;
3655#endif /* USE_X_TOOLKIT */
dc6f92b8
JB
3656 break;
3657
3658 case MapNotify:
b2bd9b6a
RS
3659 /* We use x_top_window_to_frame because map events can come
3660 for subwindows and they don't mean that the frame is visible. */
5627c40e 3661 f = x_top_window_to_frame (event.xmap.window);
f676886a 3662 if (f)
dc6f92b8 3663 {
3a88c238
JB
3664 f->async_visible = 1;
3665 f->async_iconified = 0;
dc6f92b8
JB
3666
3667 /* wait_reading_process_input will notice this and update
f676886a
JB
3668 the frame's display structures. */
3669 SET_FRAME_GARBAGED (f);
dc6f92b8 3670 }
3afe33e7
RS
3671#ifdef USE_X_TOOLKIT
3672 goto OTHER;
3673#endif /* USE_X_TOOLKIT */
b2bd9b6a 3674 break;
dc6f92b8
JB
3675
3676 /* Turn off processing if we become fully obscured. */
3677 case VisibilityNotify:
3678 break;
3679
c118dd06 3680#else /* ! defined (HAVE_X11) */
dc6f92b8 3681 case UnmapWindow:
f676886a
JB
3682 f = x_window_to_frame (event.window);
3683 if (event.window == f->display.x->icon_desc)
3a88c238 3684 f->async_iconified = 0;
c118dd06 3685 if (event.window == FRAME_X_WINDOW (f))
3a88c238 3686 f->async_visible = 0;
dc6f92b8 3687 break;
c118dd06 3688#endif /* ! defined (HAVE_X11) */
dc6f92b8
JB
3689
3690#ifdef HAVE_X11
3691 case KeyPress:
1dea5a83 3692 f = x_any_window_to_frame (event.xkey.window);
f451eb13 3693
f676886a 3694 if (f != 0)
dc6f92b8 3695 {
2d368234 3696 KeySym keysym, orig_keysym;
bf6d8fb9
RS
3697 /* al%imercury@uunet.uu.net says that making this 81 instead of
3698 80 fixed a bug whereby meta chars made his Emacs hang. */
3699 unsigned char copy_buffer[81];
64bb1782
RS
3700 int modifiers;
3701
dfeccd2d
JB
3702 event.xkey.state
3703 |= x_emacs_to_x_modifiers (extra_keyboard_modifiers);
64bb1782 3704 modifiers = event.xkey.state;
3a2712f9 3705
11edeb03 3706 /* This will have to go some day... */
752a043f
JB
3707
3708 /* make_lispy_event turns chars into control chars.
3709 Don't do it here because XLookupString is too eager. */
3710 event.xkey.state &= ~ControlMask;
11edeb03
JB
3711 nbytes =
3712 XLookupString (&event.xkey, copy_buffer, 80, &keysym,
3713 &compose_status);
dc6f92b8 3714
55123275
JB
3715 /* Strip off the vendor-specific keysym bit, and take a shot
3716 at recognizing the codes. HP servers have extra keysyms
3717 that fit into the MiscFunctionKey category. */
2d368234 3718 orig_keysym = keysym;
55123275
JB
3719 keysym &= ~(1<<28);
3720
dc6f92b8
JB
3721 if (numchars > 1)
3722 {
64a07219
JB
3723 if (((keysym >= XK_BackSpace && keysym <= XK_Escape)
3724 || keysym == XK_Delete
3725 || IsCursorKey (keysym) /* 0xff50 <= x < 0xff60 */
3726 || IsMiscFunctionKey (keysym) /* 0xff60 <= x < VARIES */
c34790e0 3727#ifdef HPUX
64a07219
JB
3728 /* This recognizes the "extended function keys".
3729 It seems there's no cleaner way.
3730 Test IsModifierKey to avoid handling mode_switch
3731 incorrectly. */
3732 || ((unsigned) (keysym) >= XK_Select
3733 && (unsigned)(keysym) < XK_KP_Space)
69388238
RS
3734#endif
3735#ifdef XK_dead_circumflex
3736 || orig_keysym == XK_dead_circumflex
3737#endif
3738#ifdef XK_dead_grave
3739 || orig_keysym == XK_dead_grave
3740#endif
3741#ifdef XK_dead_tilde
3742 || orig_keysym == XK_dead_tilde
3743#endif
3744#ifdef XK_dead_diaeresis
3745 || orig_keysym == XK_dead_diaeresis
3746#endif
3747#ifdef XK_dead_macron
3748 || orig_keysym == XK_dead_macron
3749#endif
3750#ifdef XK_dead_degree
3751 || orig_keysym == XK_dead_degree
3752#endif
3753#ifdef XK_dead_acute
3754 || orig_keysym == XK_dead_acute
3755#endif
3756#ifdef XK_dead_cedilla
3757 || orig_keysym == XK_dead_cedilla
3758#endif
3759#ifdef XK_dead_breve
3760 || orig_keysym == XK_dead_breve
3761#endif
3762#ifdef XK_dead_ogonek
3763 || orig_keysym == XK_dead_ogonek
3764#endif
3765#ifdef XK_dead_caron
3766 || orig_keysym == XK_dead_caron
3767#endif
3768#ifdef XK_dead_doubleacute
3769 || orig_keysym == XK_dead_doubleacute
3770#endif
3771#ifdef XK_dead_abovedot
3772 || orig_keysym == XK_dead_abovedot
c34790e0 3773#endif
64a07219
JB
3774 || IsKeypadKey (keysym) /* 0xff80 <= x < 0xffbe */
3775 || IsFunctionKey (keysym) /* 0xffbe <= x < 0xffe1 */
3776 || x_is_vendor_fkey (orig_keysym))
7719aa06
RS
3777 && ! (IsModifierKey (orig_keysym)
3778#ifndef HAVE_X11R5
3779#ifdef XK_Mode_switch
3780 || ((unsigned)(orig_keysym) == XK_Mode_switch)
3781#endif
3782#ifdef XK_Num_Lock
3783 || ((unsigned)(orig_keysym) == XK_Num_Lock)
3784#endif
3785#endif /* not HAVE_X11R5 */
3786 ))
dc6f92b8 3787 {
10e6549c
RS
3788 if (temp_index == sizeof temp_buffer / sizeof (short))
3789 temp_index = 0;
3790 temp_buffer[temp_index++] = keysym;
dc6f92b8 3791 bufp->kind = non_ascii_keystroke;
69388238 3792 bufp->code = keysym;
12ba150f 3793 XSET (bufp->frame_or_window, Lisp_Frame, f);
dfeccd2d 3794 bufp->modifiers = x_x_to_emacs_modifiers (modifiers);
1113d9db 3795 bufp->timestamp = event.xkey.time;
dc6f92b8
JB
3796 bufp++;
3797 count++;
3798 numchars--;
3799 }
3800 else if (numchars > nbytes)
3801 {
3802 register int i;
3803
10e6549c 3804 for (i = 0; i < nbytes; i++)
dc6f92b8 3805 {
10e6549c
RS
3806 if (temp_index == sizeof temp_buffer / sizeof (short))
3807 temp_index = 0;
3808 temp_buffer[temp_index++] = copy_buffer[i];
dc6f92b8 3809 bufp->kind = ascii_keystroke;
69388238 3810 bufp->code = copy_buffer[i];
12ba150f 3811 XSET (bufp->frame_or_window, Lisp_Frame, f);
dfeccd2d 3812 bufp->modifiers = x_x_to_emacs_modifiers (modifiers);
1113d9db 3813 bufp->timestamp = event.xkey.time;
dc6f92b8
JB
3814 bufp++;
3815 }
dc6f92b8
JB
3816
3817 count += nbytes;
3818 numchars -= nbytes;
3819 }
10e6549c
RS
3820 else
3821 abort ();
dc6f92b8 3822 }
10e6549c
RS
3823 else
3824 abort ();
dc6f92b8
JB
3825 }
3826 break;
c118dd06 3827#else /* ! defined (HAVE_X11) */
dc6f92b8
JB
3828 case KeyPressed:
3829 {
3830 register char *where_mapping;
3831
f676886a 3832 f = x_window_to_frame (event.window);
dc6f92b8 3833 /* Ignore keys typed on icon windows. */
f676886a 3834 if (f != 0 && event.window == f->display.x->icon_desc)
dc6f92b8
JB
3835 break;
3836 where_mapping = XLookupMapping (&event, &nbytes);
3837 /* Nasty fix for arrow keys */
3838 if (!nbytes && IsCursorKey (event.detail & 0xff))
3839 {
3840 switch (event.detail & 0xff)
3841 {
3842 case KC_CURSOR_LEFT:
3843 where_mapping = "\002";
3844 break;
3845 case KC_CURSOR_RIGHT:
3846 where_mapping = "\006";
3847 break;
3848 case KC_CURSOR_UP:
3849 where_mapping = "\020";
3850 break;
3851 case KC_CURSOR_DOWN:
3852 where_mapping = "\016";
3853 break;
3854 }
3855 nbytes = 1;
3856 }
3857 if (numchars - nbytes > 0)
3858 {
3859 register int i;
3860
3861 for (i = 0; i < nbytes; i++)
3862 {
3863 bufp->kind = ascii_keystroke;
69388238 3864 bufp->code = where_mapping[i];
90e65f07 3865 XSET (bufp->time, Lisp_Int, event.xkey.time);
12ba150f 3866 XSET (bufp->frame_or_window, Lisp_Frame, f);
dc6f92b8
JB
3867 bufp++;
3868 }
3869 count += nbytes;
3870 numchars -= nbytes;
3871 }
3872 }
3873 break;
c118dd06 3874#endif /* ! defined (HAVE_X11) */
dc6f92b8
JB
3875
3876#ifdef HAVE_X11
f451eb13
JB
3877
3878 /* Here's a possible interpretation of the whole
3879 FocusIn-EnterNotify FocusOut-LeaveNotify mess. If you get a
3880 FocusIn event, you have to get a FocusOut event before you
3881 relinquish the focus. If you haven't received a FocusIn event,
3882 then a mere LeaveNotify is enough to free you. */
3883
dc6f92b8 3884 case EnterNotify:
1dea5a83 3885 f = x_any_window_to_frame (event.xcrossing.window);
6d4238f3 3886
f451eb13 3887 if (event.xcrossing.focus) /* Entered Window */
dc6f92b8 3888 {
dc6f92b8 3889 /* Avoid nasty pop/raise loops. */
f676886a
JB
3890 if (f && (!(f->auto_raise)
3891 || !(f->auto_lower)
dc6f92b8
JB
3892 || (event.xcrossing.time - enter_timestamp) > 500))
3893 {
f676886a 3894 x_new_focus_frame (f);
dc6f92b8
JB
3895 enter_timestamp = event.xcrossing.time;
3896 }
dc6f92b8 3897 }
f676886a
JB
3898 else if (f == x_focus_frame)
3899 x_new_focus_frame (0);
3afe33e7
RS
3900#ifdef USE_X_TOOLKIT
3901 goto OTHER;
3902#endif /* USE_X_TOOLKIT */
dc6f92b8
JB
3903 break;
3904
3905 case FocusIn:
1dea5a83 3906 f = x_any_window_to_frame (event.xfocus.window);
f451eb13
JB
3907 if (event.xfocus.detail != NotifyPointer)
3908 x_focus_event_frame = f;
f676886a
JB
3909 if (f)
3910 x_new_focus_frame (f);
3afe33e7
RS
3911#ifdef USE_X_TOOLKIT
3912 goto OTHER;
3913#endif /* USE_X_TOOLKIT */
dc6f92b8
JB
3914 break;
3915
f451eb13 3916
dc6f92b8 3917 case LeaveNotify:
10c5e63d
KH
3918 f = x_top_window_to_frame (event.xcrossing.window);
3919 if (f)
f451eb13 3920 {
10c5e63d
KH
3921 if (f == mouse_face_mouse_frame)
3922 /* If we move outside the frame,
3923 then we're certainly no longer on any text in the frame. */
3924 clear_mouse_face ();
3925
3926 if (event.xcrossing.focus)
3927 {
3928 if (! x_focus_event_frame)
3929 x_new_focus_frame (0);
3930 else
3931 x_new_focus_frame (f);
3932 }
3933 else
3934 {
3935 if (f == x_focus_event_frame)
3936 x_focus_event_frame = 0;
3937 if (f == x_focus_frame)
3938 x_new_focus_frame (0);
3939 }
dc6f92b8 3940 }
3afe33e7
RS
3941#ifdef USE_X_TOOLKIT
3942 goto OTHER;
3943#endif /* USE_X_TOOLKIT */
dc6f92b8
JB
3944 break;
3945
3946 case FocusOut:
1dea5a83 3947 f = x_any_window_to_frame (event.xfocus.window);
f451eb13
JB
3948 if (event.xfocus.detail != NotifyPointer
3949 && f == x_focus_event_frame)
3950 x_focus_event_frame = 0;
f676886a
JB
3951 if (f && f == x_focus_frame)
3952 x_new_focus_frame (0);
3afe33e7
RS
3953#ifdef USE_X_TOOLKIT
3954 goto OTHER;
3955#endif /* USE_X_TOOLKIT */
dc6f92b8
JB
3956 break;
3957
c118dd06 3958#else /* ! defined (HAVE_X11) */
dc6f92b8
JB
3959
3960 case EnterWindow:
3961 if ((event.detail & 0xFF) == 1)
3962 break; /* Coming from our own subwindow */
3963 if (event.subwindow != 0)
3964 break; /* Entering our own subwindow. */
3965
3966 {
f676886a
JB
3967 f = x_window_to_frame (event.window);
3968 x_mouse_frame = f;
dc6f92b8 3969
f676886a 3970 x_new_focus_frame (f);
dc6f92b8
JB
3971 }
3972 break;
3973
3974 case LeaveWindow:
3975 if ((event.detail & 0xFF) == 1)
3976 break; /* Entering our own subwindow */
3977 if (event.subwindow != 0)
3978 break; /* Leaving our own subwindow. */
3979
f676886a
JB
3980 x_mouse_frame = 0;
3981 if (x_focus_frame == 0
3982 && x_input_frame != 0
3983 && x_input_frame == x_window_to_frame (event.window)
c118dd06 3984 && event.window == FRAME_X_WINDOW (x_input_frame))
dc6f92b8 3985 {
f676886a
JB
3986 f = x_input_frame;
3987 x_input_frame = 0;
3988 if (f)
3989 frame_unhighlight (f);
dc6f92b8
JB
3990 }
3991 break;
c118dd06 3992#endif /* ! defined (HAVE_X11) */
dc6f92b8
JB
3993
3994#ifdef HAVE_X11
3995 case MotionNotify:
3996 {
06ef4a3f 3997 if (x_mouse_grabbed && FRAME_LIVE_P (last_mouse_frame))
69388238
RS
3998 f = last_mouse_frame;
3999 else
4000 f = x_window_to_frame (event.xmotion.window);
f676886a 4001 if (f)
12ba150f 4002 note_mouse_movement (f, &event.xmotion);
f451eb13 4003 else
dc6f92b8 4004 {
69388238
RS
4005 struct scroll_bar *bar
4006 = x_window_to_scroll_bar (event.xmotion.window);
f451eb13
JB
4007
4008 if (bar)
ab648270 4009 x_scroll_bar_note_movement (bar, &event);
b8009dd1
RS
4010
4011 /* If we move outside the frame,
4012 then we're certainly no longer on any text in the frame. */
4013 clear_mouse_face ();
dc6f92b8 4014 }
dc6f92b8 4015 }
0a178815
RS
4016#if 0 /* This should be unnecessary, since the toolkit has no use
4017 for motion events that happen outside of the menu event loop,
4018 and it seems to cause the bug that mouse events stop coming
4019 after a while. */
3afe33e7
RS
4020#ifdef USE_X_TOOLKIT
4021 goto OTHER;
4022#endif /* USE_X_TOOLKIT */
0a178815 4023#endif
dc6f92b8
JB
4024 break;
4025
4026 case ConfigureNotify:
13ce2d73 4027 f = x_any_window_to_frame (event.xconfigure.window);
3afe33e7 4028#ifdef USE_X_TOOLKIT
13ce2d73
FP
4029 if (f
4030 && ! event.xconfigure.send_event
4031 && (event.xconfigure.window == XtWindow (f->display.x->widget)))
4032 {
4033 Window win, child;
4034 int win_x, win_y;
4035
4036 /* Find the position of the outside upper-left corner of
4037 the window, in the root coordinate system. Don't
4038 refer to the parent window here; we may be processing
4039 this event after the window manager has changed our
4040 parent, but before we have reached the ReparentNotify. */
4041 XTranslateCoordinates (x_current_display,
4042
4043 /* From-window, to-window. */
4044 XtWindow (f->display.x->widget),
4045 ROOT_WINDOW,
4046
4047 /* From-position, to-position. */
4048 -event.xconfigure.border_width,
4049 -event.xconfigure.border_width,
4050 &win_x, &win_y,
4051
4052 /* Child of win. */
4053 &child);
4054 event.xconfigure.x = win_x;
4055 event.xconfigure.y = win_y;
4056
4057 f->display.x->pixel_width = event.xconfigure.width;
4058 f->display.x->pixel_height = event.xconfigure.height;
4059 f->display.x->left_pos = event.xconfigure.x;
4060 f->display.x->top_pos = event.xconfigure.y;
4061 }
4062 goto OTHER;
3afe33e7 4063#else /* not USE_X_TOOLKIT */
dbc4e1c1
JB
4064 if (f)
4065 {
4066 int rows = PIXEL_TO_CHAR_HEIGHT (f, event.xconfigure.height);
4067 int columns = PIXEL_TO_CHAR_WIDTH (f, event.xconfigure.width);
4068
4069 /* Even if the number of character rows and columns has
4070 not changed, the font size may have changed, so we need
4071 to check the pixel dimensions as well. */
4072 if (columns != f->width
4073 || rows != f->height
4074 || event.xconfigure.width != f->display.x->pixel_width
4075 || event.xconfigure.height != f->display.x->pixel_height)
4076 {
4077 change_frame_size (f, rows, columns, 0, 1);
4078 SET_FRAME_GARBAGED (f);
4079 }
dc6f92b8 4080
3bd330d4 4081 if (! event.xconfigure.send_event)
af395ec1
RS
4082 {
4083 Window win, child;
4084 int win_x, win_y;
4085
6cc35d86
JB
4086 /* Find the position of the outside upper-left corner of
4087 the window, in the root coordinate system. Don't
4088 refer to the parent window here; we may be processing
4089 this event after the window manager has changed our
4090 parent, but before we have reached the ReparentNotify. */
af395ec1
RS
4091 XTranslateCoordinates (x_current_display,
4092
4093 /* From-window, to-window. */
6cc35d86 4094 f->display.x->window_desc,
3bd330d4 4095 ROOT_WINDOW,
af395ec1
RS
4096
4097 /* From-position, to-position. */
6cc35d86
JB
4098 -event.xconfigure.border_width,
4099 -event.xconfigure.border_width,
af395ec1
RS
4100 &win_x, &win_y,
4101
4102 /* Child of win. */
4103 &child);
4104 event.xconfigure.x = win_x;
4105 event.xconfigure.y = win_y;
4106 }
4107
dbc4e1c1
JB
4108 f->display.x->pixel_width = event.xconfigure.width;
4109 f->display.x->pixel_height = event.xconfigure.height;
4110 f->display.x->left_pos = event.xconfigure.x;
4111 f->display.x->top_pos = event.xconfigure.y;
4112 }
3afe33e7 4113#endif /* not USE_X_TOOLKIT */
dbc4e1c1 4114 break;
dc6f92b8
JB
4115
4116 case ButtonPress:
4117 case ButtonRelease:
4118 {
4119 /* If we decide we want to generate an event to be seen
4120 by the rest of Emacs, we put it here. */
4121 struct input_event emacs_event;
4122 emacs_event.kind = no_event;
4123
f676886a
JB
4124 f = x_window_to_frame (event.xbutton.window);
4125 if (f)
f451eb13
JB
4126 {
4127 if (!x_focus_frame || (f == x_focus_frame))
69388238 4128 construct_mouse_click (&emacs_event, &event, f);
f451eb13 4129 }
dc6f92b8 4130 else
f451eb13 4131 {
ab648270
JB
4132 struct scroll_bar *bar =
4133 x_window_to_scroll_bar (event.xbutton.window);
f451eb13
JB
4134
4135 if (bar)
ab648270 4136 x_scroll_bar_handle_click (bar, &event, &emacs_event);
3afe33e7
RS
4137#ifdef USE_X_TOOLKIT
4138 else
4139 {
4140 f = x_any_window_to_frame (event.xbutton.window);
4141 if (f && event.type == ButtonPress)
4142 construct_menu_click (&emacs_event,
4143 &event, f);
4144 }
4145#endif /* USE_X_TOOLKIT */
f451eb13 4146 }
dc6f92b8
JB
4147
4148 if (numchars >= 1 && emacs_event.kind != no_event)
4149 {
4150 bcopy (&emacs_event, bufp, sizeof (struct input_event));
4151 bufp++;
4152 count++;
4153 numchars--;
4154 }
3afe33e7
RS
4155
4156#ifdef USE_X_TOOLKIT
4157 goto OTHER;
4158#endif /* USE_X_TOOLKIT */
dc6f92b8
JB
4159 }
4160 break;
4161
c118dd06 4162#else /* ! defined (HAVE_X11) */
dc6f92b8
JB
4163 case ButtonPressed:
4164 case ButtonReleased:
f676886a
JB
4165 f = x_window_to_frame (event.window);
4166 if (f)
dc6f92b8 4167 {
f676886a 4168 if (event.window == f->display.x->icon_desc)
dc6f92b8 4169 {
f676886a 4170 x_make_frame_visible (f);
dc6f92b8
JB
4171
4172 if (warp_mouse_on_deiconify)
c118dd06 4173 XWarpMouse (FRAME_X_WINDOW (f), 10, 10);
dc6f92b8
JB
4174 break;
4175 }
c118dd06 4176 if (event.window == FRAME_X_WINDOW (f))
dc6f92b8 4177 {
f676886a
JB
4178 if (f->auto_raise)
4179 x_raise_frame (f);
dc6f92b8
JB
4180 }
4181 }
4182 enqueue_event (&event, &x_mouse_queue);
4183 if (numchars >= 2)
4184 {
4185 bufp->kind = ascii_keystroke;
69388238 4186 bufp->code = 'X' & 037; /* C-x */
12ba150f 4187 XSET (bufp->frame_or_window, Lisp_Frame, f);
90e65f07 4188 XSET (bufp->time, Lisp_Int, event.xkey.time);
dc6f92b8
JB
4189 bufp++;
4190
4191 bufp->kind = ascii_keystroke;
69388238 4192 bufp->code = 0; /* C-@ */
12ba150f 4193 XSET (bufp->frame_or_window, Lisp_Frame, f);
90e65f07 4194 XSET (bufp->time, Lisp_Int, event.xkey.time);
dc6f92b8
JB
4195 bufp++;
4196
4197 count += 2;
4198 numchars -= 2;
4199 }
4200 break;
c118dd06 4201#endif /* ! defined (HAVE_X11) */
dc6f92b8
JB
4202
4203#ifdef HAVE_X11
4204
4205 case CirculateNotify:
4206 break;
4207 case CirculateRequest:
4208 break;
4209
c118dd06 4210#endif /* ! defined (HAVE_X11) */
dc6f92b8
JB
4211
4212 case MappingNotify:
11edeb03
JB
4213 /* Someone has changed the keyboard mapping - update the
4214 local cache. */
4215 switch (event.xmapping.request)
4216 {
4217 case MappingModifier:
4218 x_find_modifier_meanings ();
4219 /* This is meant to fall through. */
4220 case MappingKeyboard:
4221 XRefreshKeyboardMapping (&event.xmapping);
4222 }
3afe33e7
RS
4223#ifdef USE_X_TOOLKIT
4224 goto OTHER;
4225#endif /* USE_X_TOOLKIT */
dc6f92b8
JB
4226 break;
4227
4228 default:
3afe33e7
RS
4229#ifdef USE_X_TOOLKIT
4230 OTHER:
4231 BLOCK_INPUT;
4232 XtDispatchEvent (&event);
4233 UNBLOCK_INPUT;
4234#endif /* USE_X_TOOLKIT */
dc6f92b8
JB
4235 break;
4236 }
4237 }
4238
502add23
RS
4239#ifdef X_IO_BUG
4240 if (! event_found)
4241 /* On some systems, an X bug causes Emacs to get no more events
7071e5dd 4242 when the window is destroyed. Detect that. (1994.) */
502add23
RS
4243 XNoOp (x_current_display);
4244#endif /* X_IO_BUG */
4245
7071e5dd
RS
4246#if 0 /* This fails for serial-line connections to the X server,
4247 because the characters arrive one by one, and a partial
4248 command makes select return but gives nothing to read.
4249 We'll have to hope that the bug that this tried to fix
4250 in 1988 has been fixed in Xlib or the X server. */
dc6f92b8
JB
4251#ifdef HAVE_SELECT
4252 if (expected && ! event_found)
4253 {
4254 /* AOJ 880406: if select returns true but XPending doesn't, it means that
4255 there is an EOF condition; in other words, that X has died.
4256 Act as if there had been a hangup. */
dc6f92b8 4257 int fd = ConnectionNumber (x_current_display);
307feb1f 4258 SELECT_TYPE mask, junk1, junk2;
66f55a9d 4259 EMACS_TIME timeout;
dc6f92b8 4260
61c3ce62
RS
4261 FD_ZERO (&mask);
4262 FD_SET (fd, &mask);
66f55a9d 4263 EMACS_SET_SECS_USECS (timeout, 0, 0);
307feb1f
RS
4264 FD_ZERO (&junk1);
4265 FD_ZERO (&junk2);
4266 if (0 != select (fd + 1, &mask, &junk1, &junk2, &timeout)
dc6f92b8
JB
4267 && !XStuffPending ())
4268 kill (getpid (), SIGHUP);
4269 }
61c3ce62 4270#endif /* HAVE_SELECT */
7071e5dd 4271#endif /* 0 */
dc6f92b8 4272
f451eb13 4273#ifndef HAVE_X11
f676886a 4274 if (updating_frame == 0)
dc6f92b8 4275 x_do_pending_expose ();
f451eb13 4276#endif
dc6f92b8 4277
0134a210
RS
4278 /* If the focus was just given to an autoraising frame,
4279 raise it now. */
4280#ifdef HAVE_X11
4281 if (pending_autoraise_frame)
4282 {
4283 x_raise_frame (pending_autoraise_frame);
4284 pending_autoraise_frame = 0;
4285 }
4286#endif
4287
dc6f92b8
JB
4288 UNBLOCK_INPUT;
4289 return count;
4290}
4291
4292#ifndef HAVE_X11
4293/* Read and process only Expose events
4294 until we get an ExposeCopy event; then return.
4295 This is used in insert/delete line.
4296 We assume input is already blocked. */
4297
4298static void
4299x_read_exposes ()
4300{
f676886a 4301 struct frame *f;
dc6f92b8
JB
4302 XKeyPressedEvent event;
4303
4304 while (1)
4305 {
4306 /* while there are more events*/
4307 XMaskEvent (ExposeWindow | ExposeRegion | ExposeCopy, &event);
4308 switch (event.type)
4309 {
4310 case ExposeWindow:
4311 if (event.subwindow != 0)
4312 break; /* duplicate event */
f676886a
JB
4313 f = x_window_to_frame (event.window);
4314 if (event.window == f->display.x->icon_desc)
dc6f92b8 4315 {
f676886a 4316 refreshicon (f);
dc6f92b8
JB
4317 break;
4318 }
c118dd06 4319 if (event.window == FRAME_X_WINDOW (f))
dc6f92b8
JB
4320 {
4321 expose_all_windows = 1;
f676886a 4322 f->display.x->needs_exposure = 1;
dc6f92b8
JB
4323 break;
4324 }
4325 break;
4326
4327 case ExposeRegion:
4328 if (event.subwindow != 0)
4329 break; /* duplicate event */
f676886a
JB
4330 f = x_window_to_frame (event.window);
4331 if (event.window == f->display.x->icon_desc)
dc6f92b8 4332 {
f676886a 4333 refreshicon (f);
dc6f92b8
JB
4334 break;
4335 }
4336 /* If window already needs full redraw, ignore this rectangle. */
f676886a 4337 if (expose_all_windows && f->display.x->needs_exposure)
dc6f92b8
JB
4338 break;
4339 /* Put the event on the queue of rectangles to redraw. */
4340 if (enqueue_event (&event, &x_expose_queue))
4341 /* If it is full, we can't record the rectangle,
4342 so redraw this entire window. */
4343 {
4344 /* Say must check all windows' needs_exposure flags. */
4345 expose_all_windows = 1;
f676886a 4346 f->display.x->needs_exposure = 1;
dc6f92b8
JB
4347 }
4348 break;
4349
4350 case ExposeCopy:
4351 return;
4352 }
4353 }
4354}
4355#endif /* HAVE_X11 */
4356
dc6f92b8 4357\f
f451eb13
JB
4358/* Drawing the cursor. */
4359
4360
dc6f92b8
JB
4361/* Draw a hollow box cursor. Don't change the inside of the box. */
4362
4363static void
f676886a
JB
4364x_draw_box (f)
4365 struct frame *f;
dc6f92b8 4366{
12ba150f
JB
4367 int left = CHAR_TO_PIXEL_COL (f, f->cursor_x);
4368 int top = CHAR_TO_PIXEL_ROW (f, f->cursor_y);
f676886a 4369 int width = FONT_WIDTH (f->display.x->font);
a27f9f86 4370 int height = f->display.x->line_height;
dc6f92b8
JB
4371
4372#ifdef HAVE_X11
c118dd06 4373 XDrawRectangle (x_current_display, FRAME_X_WINDOW (f),
f676886a 4374 f->display.x->cursor_gc,
dc6f92b8 4375 left, top, width - 1, height - 1);
c118dd06
JB
4376#else /* ! defined (HAVE_X11) */
4377 XPixSet (FRAME_X_WINDOW (f),
dc6f92b8 4378 left, top, width, 1,
f676886a 4379 f->display.x->cursor_pixel);
dc6f92b8 4380
c118dd06 4381 XPixSet (FRAME_X_WINDOW (f),
dc6f92b8 4382 left, top, 1, height,
f676886a 4383 f->display.x->cursor_pixel);
dc6f92b8 4384
c118dd06 4385 XPixSet (FRAME_X_WINDOW (f),
dc6f92b8 4386 left+width-1, top, 1, height,
f676886a 4387 f->display.x->cursor_pixel);
dc6f92b8 4388
c118dd06 4389 XPixSet (FRAME_X_WINDOW (f),
dc6f92b8 4390 left, top+height-1, width, 1,
f676886a 4391 f->display.x->cursor_pixel);
c118dd06 4392#endif /* ! defined (HAVE_X11) */
dc6f92b8
JB
4393}
4394
f676886a 4395/* Clear the cursor of frame F to background color,
dc6f92b8
JB
4396 and mark the cursor as not shown.
4397 This is used when the text where the cursor is
4398 is about to be rewritten. */
4399
4400static void
f676886a
JB
4401clear_cursor (f)
4402 struct frame *f;
dc6f92b8
JB
4403{
4404 int mask;
4405
f451eb13 4406 if (! FRAME_VISIBLE_P (f)
f676886a 4407 || f->phys_cursor_x < 0)
dc6f92b8
JB
4408 return;
4409
4410#ifdef HAVE_X11
f676886a 4411 x_display_cursor (f, 0);
c118dd06
JB
4412#else /* ! defined (HAVE_X11) */
4413 XPixSet (FRAME_X_WINDOW (f),
12ba150f
JB
4414 CHAR_TO_PIXEL_COL (f, f->phys_cursor_x),
4415 CHAR_TO_PIXEL_ROW (f, f->phys_cursor_y),
a27f9f86 4416 FONT_WIDTH (f->display.x->font), f->display.x->line_height,
f676886a 4417 f->display.x->background_pixel);
c118dd06 4418#endif /* ! defined (HAVE_X11) */
f676886a 4419 f->phys_cursor_x = -1;
dc6f92b8
JB
4420}
4421
f676886a 4422/* Redraw the glyph at ROW, COLUMN on frame F, in the style
90e65f07
JB
4423 HIGHLIGHT. HIGHLIGHT is as defined for dumpglyphs. Return the
4424 glyph drawn. */
dc6f92b8
JB
4425
4426static void
f676886a
JB
4427x_draw_single_glyph (f, row, column, glyph, highlight)
4428 struct frame *f;
dc6f92b8 4429 int row, column;
90e65f07 4430 GLYPH glyph;
dc6f92b8
JB
4431 int highlight;
4432{
f676886a 4433 dumpglyphs (f,
12ba150f
JB
4434 CHAR_TO_PIXEL_COL (f, column),
4435 CHAR_TO_PIXEL_ROW (f, row),
0cdd0c9f 4436 &glyph, 1, highlight, 0);
dc6f92b8
JB
4437}
4438
dc6f92b8 4439static void
dbc4e1c1 4440x_display_bar_cursor (f, on)
f676886a 4441 struct frame *f;
dc6f92b8
JB
4442 int on;
4443{
f676886a 4444 struct frame_glyphs *current_glyphs = FRAME_CURRENT_GLYPHS (f);
90e65f07 4445
49d838ea
JB
4446 /* This is pointless on invisible frames, and dangerous on garbaged
4447 frames; in the latter case, the frame may be in the midst of
4448 changing its size, and curs_x and curs_y may be off the frame. */
4449 if (! FRAME_VISIBLE_P (f) || FRAME_GARBAGED_P (f))
dbc4e1c1
JB
4450 return;
4451
4452 if (! on && f->phys_cursor_x < 0)
4453 return;
4454
f676886a 4455 /* If we're not updating, then we want to use the current frame's
1113d9db 4456 cursor position, not our local idea of where the cursor ought to be. */
f676886a 4457 if (f != updating_frame)
1113d9db 4458 {
f676886a
JB
4459 curs_x = FRAME_CURSOR_X (f);
4460 curs_y = FRAME_CURSOR_Y (f);
1113d9db
JB
4461 }
4462
dbc4e1c1
JB
4463 /* If there is anything wrong with the current cursor state, remove it. */
4464 if (f->phys_cursor_x >= 0
4465 && (!on
4466 || f->phys_cursor_x != curs_x
4467 || f->phys_cursor_y != curs_y
4468 || f->display.x->current_cursor != bar_cursor))
4469 {
4470 /* Erase the cursor by redrawing the character underneath it. */
4471 x_draw_single_glyph (f, f->phys_cursor_y, f->phys_cursor_x,
4472 f->phys_cursor_glyph,
4473 current_glyphs->highlight[f->phys_cursor_y]);
4474 f->phys_cursor_x = -1;
4475 }
4476
4477 /* If we now need a cursor in the new place or in the new form, do it so. */
4478 if (on
4479 && (f->phys_cursor_x < 0
4480 || (f->display.x->current_cursor != bar_cursor)))
4481 {
4482 f->phys_cursor_glyph
4483 = ((current_glyphs->enable[curs_y]
4484 && curs_x < current_glyphs->used[curs_y])
4485 ? current_glyphs->glyphs[curs_y][curs_x]
4486 : SPACEGLYPH);
4487 XFillRectangle (x_current_display, FRAME_X_WINDOW (f),
4488 f->display.x->cursor_gc,
4489 CHAR_TO_PIXEL_COL (f, curs_x),
4490 CHAR_TO_PIXEL_ROW (f, curs_y),
a27f9f86 4491 1, f->display.x->line_height);
dbc4e1c1
JB
4492
4493 f->phys_cursor_x = curs_x;
4494 f->phys_cursor_y = curs_y;
4495
4496 f->display.x->current_cursor = bar_cursor;
4497 }
4498
4499 if (updating_frame != f)
4500 XFlushQueue ();
4501}
4502
4503
4504/* Turn the displayed cursor of frame F on or off according to ON.
4505 If ON is nonzero, where to put the cursor is specified
4506 by F->cursor_x and F->cursor_y. */
4507
4508static void
4509x_display_box_cursor (f, on)
4510 struct frame *f;
4511 int on;
4512{
4513 struct frame_glyphs *current_glyphs = FRAME_CURRENT_GLYPHS (f);
4514
49d838ea
JB
4515 /* This is pointless on invisible frames, and dangerous on garbaged
4516 frames; in the latter case, the frame may be in the midst of
4517 changing its size, and curs_x and curs_y may be off the frame. */
4518 if (! FRAME_VISIBLE_P (f) || FRAME_GARBAGED_P (f))
dc6f92b8
JB
4519 return;
4520
4521 /* If cursor is off and we want it off, return quickly. */
f676886a 4522 if (!on && f->phys_cursor_x < 0)
dc6f92b8
JB
4523 return;
4524
dbc4e1c1
JB
4525 /* If we're not updating, then we want to use the current frame's
4526 cursor position, not our local idea of where the cursor ought to be. */
4527 if (f != updating_frame)
4528 {
4529 curs_x = FRAME_CURSOR_X (f);
4530 curs_y = FRAME_CURSOR_Y (f);
4531 }
4532
dc6f92b8
JB
4533 /* If cursor is currently being shown and we don't want it to be
4534 or it is in the wrong place,
4535 or we want a hollow box and it's not so, (pout!)
4536 erase it. */
f676886a 4537 if (f->phys_cursor_x >= 0
dc6f92b8 4538 && (!on
f676886a
JB
4539 || f->phys_cursor_x != curs_x
4540 || f->phys_cursor_y != curs_y
dbc4e1c1 4541 || (f->display.x->current_cursor != hollow_box_cursor
f676886a 4542 && (f != x_highlight_frame))))
dc6f92b8 4543 {
0cdd0c9f
RS
4544 /* If the font is not as tall as a whole line,
4545 we must explicitly clear the line's whole height. */
4546 if (FONT_HEIGHT (f->display.x->font) != f->display.x->line_height)
4547 XClearArea (x_current_display, FRAME_X_WINDOW (f),
4548 CHAR_TO_PIXEL_COL (f, f->phys_cursor_x),
4549 CHAR_TO_PIXEL_ROW (f, f->phys_cursor_y),
4550 FONT_WIDTH (f->display.x->font),
4551 f->display.x->line_height, False);
dc6f92b8 4552 /* Erase the cursor by redrawing the character underneath it. */
f676886a
JB
4553 x_draw_single_glyph (f, f->phys_cursor_y, f->phys_cursor_x,
4554 f->phys_cursor_glyph,
4555 current_glyphs->highlight[f->phys_cursor_y]);
4556 f->phys_cursor_x = -1;
dc6f92b8
JB
4557 }
4558
4559 /* If we want to show a cursor,
4560 or we want a box cursor and it's not so,
4561 write it in the right place. */
4562 if (on
f676886a 4563 && (f->phys_cursor_x < 0
dbc4e1c1 4564 || (f->display.x->current_cursor != filled_box_cursor
f676886a 4565 && f == x_highlight_frame)))
dc6f92b8 4566 {
f676886a 4567 f->phys_cursor_glyph
1113d9db
JB
4568 = ((current_glyphs->enable[curs_y]
4569 && curs_x < current_glyphs->used[curs_y])
4570 ? current_glyphs->glyphs[curs_y][curs_x]
90e65f07 4571 : SPACEGLYPH);
f676886a 4572 if (f != x_highlight_frame)
dc6f92b8 4573 {
f676886a 4574 x_draw_box (f);
dbc4e1c1 4575 f->display.x->current_cursor = hollow_box_cursor;
dc6f92b8
JB
4576 }
4577 else
4578 {
f676886a
JB
4579 x_draw_single_glyph (f, curs_y, curs_x,
4580 f->phys_cursor_glyph, 2);
dbc4e1c1 4581 f->display.x->current_cursor = filled_box_cursor;
dc6f92b8
JB
4582 }
4583
f676886a
JB
4584 f->phys_cursor_x = curs_x;
4585 f->phys_cursor_y = curs_y;
dc6f92b8
JB
4586 }
4587
f676886a 4588 if (updating_frame != f)
dc6f92b8
JB
4589 XFlushQueue ();
4590}
4591
f676886a
JB
4592x_display_cursor (f, on)
4593 struct frame *f;
dc6f92b8
JB
4594 int on;
4595{
f94397b5
KH
4596 BLOCK_INPUT;
4597
dbc4e1c1 4598 if (FRAME_DESIRED_CURSOR (f) == filled_box_cursor)
f676886a 4599 x_display_box_cursor (f, on);
dbc4e1c1 4600 else if (FRAME_DESIRED_CURSOR (f) == bar_cursor)
f676886a 4601 x_display_bar_cursor (f, on);
dbc4e1c1
JB
4602 else
4603 /* Those are the only two we have implemented! */
4604 abort ();
f94397b5
KH
4605
4606 UNBLOCK_INPUT;
dc6f92b8
JB
4607}
4608\f
4609/* Icons. */
4610
f676886a 4611/* Refresh bitmap kitchen sink icon for frame F
dc6f92b8
JB
4612 when we get an expose event for it. */
4613
f676886a
JB
4614refreshicon (f)
4615 struct frame *f;
dc6f92b8
JB
4616{
4617#ifdef HAVE_X11
4618 /* Normally, the window manager handles this function. */
c118dd06 4619#else /* ! defined (HAVE_X11) */
dc6f92b8
JB
4620 int mask;
4621
f676886a
JB
4622 if (f->display.x->icon_bitmap_flag)
4623 XBitmapBitsPut (f->display.x->icon_desc, 0, 0, sink_width, sink_height,
dc6f92b8
JB
4624 sink_bits, BlackPixel, WHITE_PIX_DEFAULT,
4625 icon_bitmap, GXcopy, AllPlanes);
4626 else
4627 {
f676886a 4628 extern struct frame *selected_frame;
dc6f92b8
JB
4629 struct Lisp_String *str;
4630 unsigned char *string;
4631
4632 string
f676886a 4633 = XSTRING (XBUFFER (XWINDOW (f->selected_window)->buffer)->name)->data;
dc6f92b8 4634
f676886a 4635 if (f->display.x->icon_label != string)
dc6f92b8 4636 {
f676886a
JB
4637 f->display.x->icon_label = string;
4638 XChangeWindow (f->display.x->icon_desc,
dc6f92b8
JB
4639 XQueryWidth (string, icon_font_info->id) + 10,
4640 icon_font_info->height + 10);
4641 }
4642
f676886a 4643 XText (f->display.x->icon_desc, 5, 5, string,
dc6f92b8
JB
4644 str->size, icon_font_info->id,
4645 BLACK_PIX_DEFAULT, WHITE_PIX_DEFAULT);
4646 }
4647 XFlushQueue ();
c118dd06 4648#endif /* ! defined (HAVE_X11) */
dc6f92b8
JB
4649}
4650
dbc4e1c1 4651/* Make the x-window of frame F use the gnu icon bitmap. */
dc6f92b8
JB
4652
4653int
f676886a
JB
4654x_bitmap_icon (f)
4655 struct frame *f;
dc6f92b8
JB
4656{
4657 int mask;
4658 Window icon_window;
4659
c118dd06 4660 if (FRAME_X_WINDOW (f) == 0)
dc6f92b8
JB
4661 return 1;
4662
4663#ifdef HAVE_X11
8583db58
RS
4664 if (! icon_bitmap)
4665 icon_bitmap =
4666 XCreateBitmapFromData (x_current_display, FRAME_X_WINDOW (f),
4667 gnu_bits, gnu_width, gnu_height);
f676886a
JB
4668 x_wm_set_icon_pixmap (f, icon_bitmap);
4669 f->display.x->icon_bitmap_flag = 1;
c118dd06 4670#else /* ! defined (HAVE_X11) */
f676886a 4671 if (f->display.x->icon_desc)
dc6f92b8 4672 {
c118dd06 4673 XClearIconWindow (FRAME_X_WINDOW (f));
f676886a 4674 XDestroyWindow (f->display.x->icon_desc);
dc6f92b8
JB
4675 }
4676
f676886a 4677 icon_window = XCreateWindow (f->display.x->parent_desc,
dc6f92b8
JB
4678 0, 0, sink_width, sink_height,
4679 2, WhitePixmap, (Pixmap) NULL);
4680
4681 if (icon_window == 0)
4682 return 1;
4683
c118dd06 4684 XSetIconWindow (FRAME_X_WINDOW (f), icon_window);
dc6f92b8
JB
4685 XSelectInput (icon_window, ExposeWindow | UnmapWindow);
4686
f676886a
JB
4687 f->display.x->icon_desc = icon_window;
4688 f->display.x->icon_bitmap_flag = 1;
dc6f92b8
JB
4689
4690 if (icon_bitmap == 0)
4691 icon_bitmap
4692 = XStoreBitmap (sink_mask_width, sink_mask_height, sink_mask_bits);
c118dd06 4693#endif /* ! defined (HAVE_X11) */
dc6f92b8
JB
4694
4695 return 0;
4696}
4697
4698
f676886a 4699/* Make the x-window of frame F use a rectangle with text. */
dc6f92b8
JB
4700
4701int
f676886a
JB
4702x_text_icon (f, icon_name)
4703 struct frame *f;
dc6f92b8
JB
4704 char *icon_name;
4705{
4706#ifndef HAVE_X11
4707 int mask;
4708 int width;
4709 Window icon_window;
4710 char *X_DefaultValue;
4711 Bitmap b1;
4712
dc6f92b8
JB
4713#ifndef WhitePixel
4714#define WhitePixel 1
c118dd06 4715#endif /* WhitePixel */
dc6f92b8
JB
4716
4717#ifndef BlackPixel
4718#define BlackPixel 0
c118dd06
JB
4719#endif /* BlackPixel */
4720#endif /* HAVE_X11 */
dc6f92b8 4721
c118dd06 4722 if (FRAME_X_WINDOW (f) == 0)
dc6f92b8
JB
4723 return 1;
4724
dc6f92b8
JB
4725#ifdef HAVE_X11
4726 if (icon_name)
f676886a 4727 f->display.x->icon_label = icon_name;
dc6f92b8 4728 else
f676886a
JB
4729 if (! f->display.x->icon_label)
4730 f->display.x->icon_label = " *emacs* ";
dc6f92b8 4731
dfeccd2d 4732#if 0
c118dd06 4733 XSetIconName (x_current_display, FRAME_X_WINDOW (f),
f676886a 4734 (char *) f->display.x->icon_label);
dfeccd2d 4735#endif
dc6f92b8 4736
f676886a 4737 f->display.x->icon_bitmap_flag = 0;
b1c884c3 4738 x_wm_set_icon_pixmap (f, 0);
c118dd06 4739#else /* ! defined (HAVE_X11) */
dbc4e1c1
JB
4740 if (icon_font_info == 0)
4741 icon_font_info
4742 = XGetFont (XGetDefault (XDISPLAY
59653951 4743 (char *) XSTRING (Vinvocation_name)->data,
dbc4e1c1
JB
4744 "BodyFont"));
4745
f676886a 4746 if (f->display.x->icon_desc)
dc6f92b8 4747 {
c118dd06 4748 XClearIconWindow (XDISPLAY FRAME_X_WINDOW (f));
f676886a 4749 XDestroyWindow (XDISPLAY f->display.x->icon_desc);
dc6f92b8
JB
4750 }
4751
4752 if (icon_name)
f676886a 4753 f->display.x->icon_label = (unsigned char *) icon_name;
dc6f92b8 4754 else
f676886a
JB
4755 if (! f->display.x->icon_label)
4756 f->display.x->icon_label = XSTRING (f->name)->data;
dc6f92b8 4757
f676886a
JB
4758 width = XStringWidth (f->display.x->icon_label, icon_font_info, 0, 0);
4759 icon_window = XCreateWindow (f->display.x->parent_desc,
4760 f->display.x->left_pos,
4761 f->display.x->top_pos,
dc6f92b8
JB
4762 width + 10, icon_font_info->height + 10,
4763 2, BlackPixmap, WhitePixmap);
4764
4765 if (icon_window == 0)
4766 return 1;
4767
c118dd06 4768 XSetIconWindow (FRAME_X_WINDOW (f), icon_window);
dc6f92b8
JB
4769 XSelectInput (icon_window, ExposeWindow | ExposeRegion | UnmapWindow | ButtonPressed);
4770
f676886a
JB
4771 f->display.x->icon_desc = icon_window;
4772 f->display.x->icon_bitmap_flag = 0;
4773 f->display.x->icon_label = 0;
c118dd06 4774#endif /* ! defined (HAVE_X11) */
dc6f92b8
JB
4775
4776 return 0;
4777}
4778\f
4746118a
JB
4779/* Handling X errors. */
4780
12ba150f
JB
4781/* Shut down Emacs in an orderly fashion, because of a SIGPIPE on the
4782 X server's connection, or an error reported via the X protocol. */
16bd92ea 4783
4746118a 4784static SIGTYPE
c118dd06 4785x_connection_closed ()
4746118a
JB
4786{
4787 if (_Xdebug)
4788 abort ();
12ba150f 4789
1cd2d6d4 4790 shut_down_emacs (0, 1, Qnil);
12ba150f
JB
4791
4792 exit (70);
4746118a
JB
4793}
4794
8922af5f
JB
4795/* An X error handler which prints an error message and then kills
4796 Emacs. This is what's normally installed as Xlib's handler for
4797 protocol errors. */
c118dd06
JB
4798static int
4799x_error_quitter (display, error)
4800 Display *display;
4801 XErrorEvent *error;
4802{
4803 char buf[256];
dc6f92b8 4804
c118dd06
JB
4805 /* Note that there is no real way portable across R3/R4 to get the
4806 original error handler. */
dc6f92b8 4807
c118dd06
JB
4808 XGetErrorText (display, error->error_code, buf, sizeof (buf));
4809 fprintf (stderr, "X protocol error: %s on protocol request %d\n",
4810 buf, error->request_code);
dc6f92b8 4811
e09f9351 4812#if 0
12ba150f
JB
4813 /* While we're testing Emacs 19, we'll just dump core whenever we
4814 get an X error, so we can figure out why it happened. */
4815 abort ();
e09f9351 4816#endif
12ba150f 4817
c118dd06 4818 x_connection_closed ();
dc6f92b8
JB
4819}
4820
8922af5f
JB
4821/* A handler for X IO errors which prints an error message and then
4822 kills Emacs. This is what is always installed as Xlib's handler
4823 for I/O errors. */
4824static int
4825x_io_error_quitter (display)
4826 Display *display;
4827{
4828 fprintf (stderr, "Connection to X server %s lost.\n",
4829 XDisplayName (DisplayString (display)));
4830
e09f9351 4831#if 0
8922af5f
JB
4832 /* While we're testing Emacs 19, we'll just dump core whenever we
4833 get an X error, so we can figure out why it happened. */
4834 abort ();
e09f9351 4835#endif
8922af5f
JB
4836
4837 x_connection_closed ();
4838}
4839
c118dd06 4840/* A buffer for storing X error messages. */
cef13e55
RS
4841static char *x_caught_error_message;
4842#define X_CAUGHT_ERROR_MESSAGE_SIZE 200
c118dd06
JB
4843
4844/* An X error handler which stores the error message in
4845 x_caught_error_message. This is what's installed when
4846 x_catch_errors is in effect. */
4847static int
4848x_error_catcher (display, error)
4849 Display *display;
4850 XErrorEvent *error;
4851{
4852 XGetErrorText (display, error->error_code,
cef13e55 4853 x_caught_error_message, X_CAUGHT_ERROR_MESSAGE_SIZE);
c118dd06
JB
4854}
4855
4856
4857/* Begin trapping X errors.
dc6f92b8 4858
c118dd06
JB
4859 After calling this function, X protocol errors no longer cause
4860 Emacs to exit; instead, they are recorded in x_cfc_error_message.
dc6f92b8 4861
c118dd06
JB
4862 Calling x_check_errors signals an Emacs error if an X error has
4863 occurred since the last call to x_catch_errors or x_check_errors.
4864
4865 Calling x_uncatch_errors resumes the normal error handling. */
4866
bc20ebbf 4867void x_catch_errors (), x_check_errors (), x_uncatch_errors ();
c118dd06
JB
4868
4869void
4870x_catch_errors ()
dc6f92b8 4871{
c118dd06
JB
4872 /* Make sure any errors from previous requests have been dealt with. */
4873 XSync (x_current_display, False);
dc6f92b8 4874
c118dd06 4875 /* Set up the error buffer. */
60f9aad3 4876 x_caught_error_message
cef13e55
RS
4877 = (char*) xmalloc (X_CAUGHT_ERROR_MESSAGE_SIZE);
4878 x_caught_error_message[0] = '\0';
16bd92ea 4879
c118dd06
JB
4880 /* Install our little error handler. */
4881 XHandleError (x_error_catcher);
4882}
16bd92ea 4883
c118dd06
JB
4884/* If any X protocol errors have arrived since the last call to
4885 x_catch_errors or x_check_errors, signal an Emacs error using
4886 sprintf (a buffer, FORMAT, the x error message text) as the text. */
812361a1 4887
c118dd06
JB
4888void
4889x_check_errors (format)
4890 char *format;
4891{
4892 /* Make sure to catch any errors incurred so far. */
4893 XSync (x_current_display, False);
16bd92ea 4894
cef13e55 4895 if (x_caught_error_message[0])
c118dd06 4896 {
cef13e55 4897 char buf[X_CAUGHT_ERROR_MESSAGE_SIZE + 56];
dc6f92b8 4898
cef13e55 4899 sprintf (buf, format, x_caught_error_message);
c118dd06
JB
4900 x_uncatch_errors ();
4901 error (buf);
4902 }
4903}
4904
b849c413
RS
4905/* Nonzero if we had any X protocol errors since we did x_catch_errors. */
4906
4907int
4908x_had_errors_p ()
4909{
4910 /* Make sure to catch any errors incurred so far. */
4911 XSync (x_current_display, False);
4912
4913 return x_caught_error_message[0] != 0;
4914}
4915
812361a1
RS
4916/* Stop catching X protocol errors and let them make Emacs die. */
4917
c118dd06
JB
4918void
4919x_uncatch_errors ()
4920{
9ac0d9e0 4921 xfree (x_caught_error_message);
cef13e55 4922 x_caught_error_message = 0;
c118dd06 4923 XHandleError (x_error_quitter);
dc6f92b8
JB
4924}
4925
dc6f92b8
JB
4926#if 0
4927static unsigned int x_wire_count;
4928x_trace_wire ()
4929{
4930 fprintf (stderr, "Lib call: %d\n", ++x_wire_count);
4931}
c118dd06 4932#endif /* ! 0 */
dc6f92b8
JB
4933
4934\f
f451eb13
JB
4935/* Changing the font of the frame. */
4936
f676886a 4937/* Set the font of the x-window specified by frame F
dc6f92b8 4938 to the font named NEWNAME. This is safe to use
f676886a 4939 even before F has an actual x-window. */
dc6f92b8
JB
4940
4941#ifdef HAVE_X11
4942
2224a5fc
RS
4943struct font_info
4944{
4945 XFontStruct *font;
4946 char *name;
4947};
4948
dc6f92b8 4949/* A table of all the fonts we have already loaded. */
2224a5fc 4950static struct font_info *x_font_table;
dc6f92b8
JB
4951
4952/* The current capacity of x_font_table. */
4953static int x_font_table_size;
4954
4955/* The number of fonts actually stored in x_font_table.
4956 x_font_table[n] is used and valid iff 0 <= n < n_fonts.
4957 0 <= n_fonts <= x_font_table_size. */
4958static int n_fonts;
4959
b5cf7a0e 4960Lisp_Object
f676886a
JB
4961x_new_font (f, fontname)
4962 struct frame *f;
dc6f92b8
JB
4963 register char *fontname;
4964{
dc6f92b8
JB
4965 int already_loaded;
4966 int n_matching_fonts;
4967 XFontStruct *font_info;
4968 char **font_names;
4969
4970 /* Get a list of all the fonts that match this name. Once we
4971 have a list of matching fonts, we compare them against the fonts
4972 we already have by comparing font ids. */
2224a5fc
RS
4973 font_names = (char **) XListFonts (x_current_display, fontname,
4974 1024, &n_matching_fonts);
0c94f6ee
JB
4975 /* Apparently it doesn't set n_matching_fonts to zero when it can't
4976 find any matches; font_names == 0 is the only clue. */
4977 if (! font_names)
4978 n_matching_fonts = 0;
4979
5835f860
RS
4980 /* Don't just give up if n_matching_fonts is 0.
4981 Apparently there's a bug on Suns: XListFontsWithInfo can
4982 fail to find a font, but XLoadQueryFont may still find it. */
dc6f92b8 4983
90e65f07 4984 /* See if we've already loaded a matching font. */
5835f860
RS
4985 already_loaded = -1;
4986 if (n_matching_fonts != 0)
4987 {
4988 int i, j;
dc6f92b8 4989
5835f860
RS
4990 for (i = 0; i < n_fonts; i++)
4991 for (j = 0; j < n_matching_fonts; j++)
2224a5fc 4992 if (!strcmp (x_font_table[i].name, font_names[j]))
5835f860
RS
4993 {
4994 already_loaded = i;
4995 fontname = font_names[j];
4996 goto found_font;
4997 }
4998 }
dc6f92b8
JB
4999 found_font:
5000
5001 /* If we have, just return it from the table. */
2224a5fc
RS
5002 if (already_loaded >= 0)
5003 f->display.x->font = x_font_table[already_loaded].font;
90e65f07 5004
dc6f92b8
JB
5005 /* Otherwise, load the font and add it to the table. */
5006 else
5007 {
9696f58b 5008 int i;
dc6f92b8
JB
5009 XFontStruct *font;
5010
9696f58b 5011 /* Try to find a character-cell font in the list. */
f126bd67
JB
5012#if 0
5013 /* A laudable goal, but this isn't how to do it. */
9696f58b
JB
5014 for (i = 0; i < n_matching_fonts; i++)
5015 if (! font_info[i].per_char)
5016 break;
f126bd67
JB
5017#else
5018 i = 0;
5019#endif
9696f58b 5020
5835f860
RS
5021 /* See comment above. */
5022 if (n_matching_fonts != 0)
9696f58b
JB
5023 fontname = font_names[i];
5024
dc6f92b8
JB
5025 font = (XFontStruct *) XLoadQueryFont (x_current_display, fontname);
5026 if (! font)
5835f860 5027 {
2224a5fc 5028 /* Free the information from XListFonts. */
5835f860 5029 if (n_matching_fonts)
2224a5fc 5030 XFreeFontNames (font_names);
5835f860
RS
5031 return Qnil;
5032 }
dc6f92b8
JB
5033
5034 /* Do we need to create the table? */
5035 if (x_font_table_size == 0)
5036 {
5037 x_font_table_size = 16;
5038 x_font_table
2224a5fc
RS
5039 = (struct font_info *) xmalloc (x_font_table_size
5040 * sizeof (x_font_table[0]));
dc6f92b8
JB
5041 }
5042 /* Do we need to grow the table? */
5043 else if (n_fonts >= x_font_table_size)
5044 {
90e65f07 5045 x_font_table_size *= 2;
dc6f92b8 5046 x_font_table
2224a5fc
RS
5047 = (struct font_info *) xrealloc (x_font_table,
5048 (x_font_table_size
5049 * sizeof (x_font_table[0])));
dc6f92b8
JB
5050 }
5051
dff815ef 5052 x_font_table[n_fonts].name = (char *) xmalloc (strlen (fontname) + 1);
2224a5fc
RS
5053 bcopy (fontname, x_font_table[n_fonts].name, strlen (fontname) + 1);
5054 f->display.x->font = x_font_table[n_fonts++].font = font;
dc6f92b8 5055 }
2224a5fc 5056
f676886a 5057 /* Now make the frame display the given font. */
c118dd06 5058 if (FRAME_X_WINDOW (f) != 0)
dc6f92b8 5059 {
f676886a
JB
5060 XSetFont (x_current_display, f->display.x->normal_gc,
5061 f->display.x->font->fid);
5062 XSetFont (x_current_display, f->display.x->reverse_gc,
5063 f->display.x->font->fid);
5064 XSetFont (x_current_display, f->display.x->cursor_gc,
5065 f->display.x->font->fid);
5066
a27f9f86 5067 frame_update_line_height (f);
0134a210 5068 x_set_window_size (f, 0, f->width, f->height);
dc6f92b8 5069 }
a27f9f86
RS
5070 else
5071 /* If we are setting a new frame's font for the first time,
5072 there are no faces yet, so this font's height is the line height. */
0cdd0c9f 5073 f->display.x->line_height = FONT_HEIGHT (f->display.x->font);
dc6f92b8 5074
b5cf7a0e 5075 {
abdda982 5076 Lisp_Object lispy_name;
b5cf7a0e 5077
abdda982 5078 lispy_name = build_string (fontname);
b5cf7a0e 5079
2224a5fc 5080 /* Free the information from XListFonts. The data
b5cf7a0e 5081 we actually retain comes from XLoadQueryFont. */
2224a5fc 5082 XFreeFontNames (font_names);
b5cf7a0e
JB
5083
5084 return lispy_name;
5085 }
dc6f92b8 5086}
c118dd06 5087#else /* ! defined (HAVE_X11) */
f676886a
JB
5088x_new_font (f, newname)
5089 struct frame *f;
dc6f92b8
JB
5090 register char *newname;
5091{
5092 FONT_TYPE *temp;
5093 int mask;
5094
5095 temp = XGetFont (newname);
5096 if (temp == (FONT_TYPE *) 0)
5097 return 1;
5098
f676886a
JB
5099 if (f->display.x->font)
5100 XLoseFont (f->display.x->font);
dc6f92b8 5101
f676886a 5102 f->display.x->font = temp;
dc6f92b8 5103
c118dd06 5104 if (FRAME_X_WINDOW (f) != 0)
bc20ebbf 5105 x_set_window_size (f, 0, f->width, f->height);
dc6f92b8
JB
5106
5107 return 0;
5108}
c118dd06 5109#endif /* ! defined (HAVE_X11) */
dc6f92b8 5110\f
43bca5d5 5111x_calc_absolute_position (f)
f676886a 5112 struct frame *f;
dc6f92b8
JB
5113{
5114#ifdef HAVE_X11
6dba1858
RS
5115 Window win, child;
5116 int win_x = 0, win_y = 0;
43bca5d5 5117 int flags = f->display.x->size_hint_flags;
6dba1858
RS
5118
5119 /* Find the position of the outside upper-left corner of
5120 the inner window, with respect to the outer window. */
5121 if (f->display.x->parent_desc != ROOT_WINDOW)
5122 {
5123 BLOCK_INPUT;
5124 XTranslateCoordinates (x_current_display,
5125
5126 /* From-window, to-window. */
5127 f->display.x->window_desc,
5128 f->display.x->parent_desc,
5129
5130 /* From-position, to-position. */
5131 0, 0, &win_x, &win_y,
5132
5133 /* Child of win. */
5134 &child);
5135 UNBLOCK_INPUT;
5136 }
5137
5138 /* Treat negative positions as relative to the leftmost bottommost
5139 position that fits on the screen. */
20f55f9a 5140 if (flags & XNegative)
31ea78fd 5141 f->display.x->left_pos = (x_screen_width
69388238 5142 - 2 * f->display.x->border_width - win_x
31ea78fd
JB
5143 - PIXEL_WIDTH (f)
5144 + f->display.x->left_pos);
dc6f92b8 5145
20f55f9a 5146 if (flags & YNegative)
31ea78fd 5147 f->display.x->top_pos = (x_screen_height
69388238 5148 - 2 * f->display.x->border_width - win_y
31ea78fd
JB
5149 - PIXEL_HEIGHT (f)
5150 + f->display.x->top_pos);
6dba1858 5151
c118dd06 5152#else /* ! defined (HAVE_X11) */
dc6f92b8
JB
5153 WINDOWINFO_TYPE parentinfo;
5154
c118dd06 5155 XGetWindowInfo (FRAME_X_WINDOW (f), &parentinfo);
dc6f92b8 5156
f676886a
JB
5157 if (f->display.x->left_pos < 0)
5158 f->display.x->left_pos = parentinfo.width + (f->display.x->left_pos + 1)
5159 - PIXEL_WIDTH (f) - 2 * f->display.x->internal_border_width;
dc6f92b8 5160
f676886a
JB
5161 if (f->display.x->top_pos < 0)
5162 f->display.x->top_pos = parentinfo.height + (f->display.x->top_pos + 1)
5163 - PIXEL_HEIGHT (f) - 2 * f->display.x->internal_border_width;
c118dd06 5164#endif /* ! defined (HAVE_X11) */
dc6f92b8
JB
5165}
5166
dc05a16b 5167x_set_offset (f, xoff, yoff, change_gravity)
f676886a 5168 struct frame *f;
dc6f92b8 5169 register int xoff, yoff;
dc05a16b 5170 int change_gravity;
dc6f92b8 5171{
f676886a
JB
5172 f->display.x->top_pos = yoff;
5173 f->display.x->left_pos = xoff;
43bca5d5 5174 x_calc_absolute_position (f);
dc6f92b8
JB
5175
5176 BLOCK_INPUT;
3afe33e7
RS
5177#ifdef USE_X_TOOLKIT
5178 XMoveWindow (XDISPLAY XtWindow (f->display.x->widget),
5179 f->display.x->left_pos, f->display.x->top_pos);
5180#else /* not USE_X_TOOLKIT */
c118dd06 5181 XMoveWindow (XDISPLAY FRAME_X_WINDOW (f),
f676886a 5182 f->display.x->left_pos, f->display.x->top_pos);
3afe33e7 5183#endif /* not USE_X_TOOLKIT */
dc6f92b8 5184#ifdef HAVE_X11
dc05a16b
RS
5185 if (change_gravity)
5186 f->display.x->win_gravity = NorthWestGravity;
5187
af31d76f 5188 x_wm_set_size_hint (f, 0, 0);
c118dd06 5189#endif /* ! defined (HAVE_X11) */
dc6f92b8
JB
5190 UNBLOCK_INPUT;
5191}
5192
bc20ebbf
FP
5193/* Call this to change the size of frame F's x-window.
5194 If CHANGE_GRAVITY is 1, we change to top-left-corner window gravity
5195 for this size change and subsequent size changes.
5196 Otherwise we leave the window gravity unchanged. */
dc6f92b8 5197
bc20ebbf 5198x_set_window_size (f, change_gravity, cols, rows)
f676886a 5199 struct frame *f;
bc20ebbf 5200 int change_gravity;
b1c884c3 5201 int cols, rows;
dc6f92b8
JB
5202{
5203 int pixelwidth, pixelheight;
5204 int mask;
dc6f92b8 5205
80fd1fe2
FP
5206#ifdef USE_X_TOOLKIT
5207 BLOCK_INPUT;
5208 EmacsFrameSetCharSize (f->display.x->edit_widget, cols, rows);
5209 UNBLOCK_INPUT;
5210
5211#else /* not USE_X_TOOLKIT */
5212
dc6f92b8
JB
5213 BLOCK_INPUT;
5214
b1c884c3 5215 check_frame_size (f, &rows, &cols);
6dba1858
RS
5216 f->display.x->vertical_scroll_bar_extra
5217 = (FRAME_HAS_VERTICAL_SCROLL_BARS (f)
5218 ? VERTICAL_SCROLL_BAR_PIXEL_WIDTH (f)
5219 : 0);
f451eb13
JB
5220 pixelwidth = CHAR_TO_PIXEL_WIDTH (f, cols);
5221 pixelheight = CHAR_TO_PIXEL_HEIGHT (f, rows);
dc6f92b8
JB
5222
5223#ifdef HAVE_X11
af31d76f
RS
5224 f->display.x->win_gravity = NorthWestGravity;
5225 x_wm_set_size_hint (f, 0, 0);
c118dd06 5226#endif /* ! defined (HAVE_X11) */
0cdd0c9f 5227 XSync (x_current_display, False);
c118dd06 5228 XChangeWindowSize (FRAME_X_WINDOW (f), pixelwidth, pixelheight);
b1c884c3
JB
5229
5230 /* Now, strictly speaking, we can't be sure that this is accurate,
5231 but the window manager will get around to dealing with the size
5232 change request eventually, and we'll hear how it went when the
dbc4e1c1
JB
5233 ConfigureNotify event gets here.
5234
5235 We could just not bother storing any of this information here,
5236 and let the ConfigureNotify event set everything up, but that
5237 might be kind of confusing to the lisp code, since size changes
5238 wouldn't be reported in the frame parameters until some random
5239 point in the future when the ConfigureNotify event arrives. */
8922af5f 5240 change_frame_size (f, rows, cols, 0, 0);
b1c884c3
JB
5241 PIXEL_WIDTH (f) = pixelwidth;
5242 PIXEL_HEIGHT (f) = pixelheight;
5243
dbc4e1c1
JB
5244 /* We've set {FRAME,PIXEL}_{WIDTH,HEIGHT} to the values we hope to
5245 receive in the ConfigureNotify event; if we get what we asked
5246 for, then the event won't cause the screen to become garbaged, so
5247 we have to make sure to do it here. */
5248 SET_FRAME_GARBAGED (f);
5249
dc6f92b8
JB
5250 XFlushQueue ();
5251 UNBLOCK_INPUT;
80fd1fe2 5252#endif /* not USE_X_TOOLKIT */
dc6f92b8
JB
5253}
5254
5255#ifndef HAVE_X11
f676886a
JB
5256x_set_resize_hint (f)
5257 struct frame *f;
dc6f92b8 5258{
12ba150f
JB
5259 XSetResizeHint (FRAME_X_WINDOW (f),
5260 2 * f->display.x->internal_border_width,
f676886a 5261 2 * f->display.x->internal_border_width,
12ba150f 5262 FONT_WIDTH (f->display.x->font),
a27f9f86 5263 f->display.x->line_height);
dc6f92b8 5264}
c118dd06 5265#endif /* HAVE_X11 */
dc6f92b8 5266\f
f451eb13 5267/* Mouse warping, focus shifting, raising and lowering. */
dc6f92b8 5268
9b378208 5269void
f676886a
JB
5270x_set_mouse_position (f, x, y)
5271 struct frame *f;
dc6f92b8
JB
5272 int x, y;
5273{
5274 int pix_x, pix_y;
5275
12ba150f 5276 pix_x = CHAR_TO_PIXEL_COL (f, x) + FONT_WIDTH (f->display.x->font) / 2;
a27f9f86 5277 pix_y = CHAR_TO_PIXEL_ROW (f, y) + f->display.x->line_height / 2;
f451eb13
JB
5278
5279 if (pix_x < 0) pix_x = 0;
5280 if (pix_x > PIXEL_WIDTH (f)) pix_x = PIXEL_WIDTH (f);
5281
5282 if (pix_y < 0) pix_y = 0;
5283 if (pix_y > PIXEL_HEIGHT (f)) pix_y = PIXEL_HEIGHT (f);
dc6f92b8
JB
5284
5285 BLOCK_INPUT;
dc6f92b8 5286
c118dd06 5287 XWarpMousePointer (FRAME_X_WINDOW (f), pix_x, pix_y);
dc6f92b8
JB
5288 UNBLOCK_INPUT;
5289}
5290
9b378208
RS
5291/* Move the mouse to position pixel PIX_X, PIX_Y relative to frame F. */
5292
5293void
5294x_set_mouse_pixel_position (f, pix_x, pix_y)
5295 struct frame *f;
5296 int pix_x, pix_y;
5297{
5298 BLOCK_INPUT;
5299
5300 XWarpMousePointer (FRAME_X_WINDOW (f), pix_x, pix_y);
5301 UNBLOCK_INPUT;
5302}
5303
dc6f92b8 5304#ifdef HAVE_X11
f676886a
JB
5305x_focus_on_frame (f)
5306 struct frame *f;
dc6f92b8 5307{
1fb20991 5308#if 0 /* This proves to be unpleasant. */
f676886a 5309 x_raise_frame (f);
1fb20991 5310#endif
6d4238f3
JB
5311#if 0
5312 /* I don't think that the ICCCM allows programs to do things like this
5313 without the interaction of the window manager. Whatever you end up
f676886a 5314 doing with this code, do it to x_unfocus_frame too. */
c118dd06 5315 XSetInputFocus (x_current_display, FRAME_X_WINDOW (f),
dc6f92b8 5316 RevertToPointerRoot, CurrentTime);
c118dd06 5317#endif /* ! 0 */
dc6f92b8
JB
5318}
5319
f676886a
JB
5320x_unfocus_frame (f)
5321 struct frame *f;
dc6f92b8 5322{
6d4238f3 5323#if 0
f676886a
JB
5324 /* Look at the remarks in x_focus_on_frame. */
5325 if (x_focus_frame == f)
dc6f92b8
JB
5326 XSetInputFocus (x_current_display, PointerRoot,
5327 RevertToPointerRoot, CurrentTime);
c118dd06 5328#endif /* ! 0 */
dc6f92b8
JB
5329}
5330
c118dd06 5331#endif /* ! defined (HAVE_X11) */
dc6f92b8 5332
f676886a 5333/* Raise frame F. */
dc6f92b8 5334
f676886a
JB
5335x_raise_frame (f)
5336 struct frame *f;
dc6f92b8 5337{
3a88c238 5338 if (f->async_visible)
dc6f92b8
JB
5339 {
5340 BLOCK_INPUT;
3afe33e7
RS
5341#ifdef USE_X_TOOLKIT
5342 XRaiseWindow (XDISPLAY XtWindow (f->display.x->widget));
5343#else /* not USE_X_TOOLKIT */
c118dd06 5344 XRaiseWindow (XDISPLAY FRAME_X_WINDOW (f));
3afe33e7 5345#endif /* not USE_X_TOOLKIT */
dc6f92b8
JB
5346 XFlushQueue ();
5347 UNBLOCK_INPUT;
5348 }
5349}
5350
f676886a 5351/* Lower frame F. */
dc6f92b8 5352
f676886a
JB
5353x_lower_frame (f)
5354 struct frame *f;
dc6f92b8 5355{
3a88c238 5356 if (f->async_visible)
dc6f92b8
JB
5357 {
5358 BLOCK_INPUT;
3afe33e7
RS
5359#ifdef USE_X_TOOLKIT
5360 XLowerWindow (XDISPLAY XtWindow (f->display.x->widget));
5361#else /* not USE_X_TOOLKIT */
c118dd06 5362 XLowerWindow (XDISPLAY FRAME_X_WINDOW (f));
3afe33e7 5363#endif /* not USE_X_TOOLKIT */
dc6f92b8
JB
5364 XFlushQueue ();
5365 UNBLOCK_INPUT;
5366 }
5367}
5368
dbc4e1c1
JB
5369static void
5370XTframe_raise_lower (f, raise)
5371 FRAME_PTR f;
5372 int raise;
5373{
5374 if (raise)
5375 x_raise_frame (f);
5376 else
5377 x_lower_frame (f);
5378}
5379
5380
dc6f92b8
JB
5381/* Change from withdrawn state to mapped state. */
5382
f676886a
JB
5383x_make_frame_visible (f)
5384 struct frame *f;
dc6f92b8
JB
5385{
5386 int mask;
5387
dc6f92b8 5388 BLOCK_INPUT;
dc6f92b8 5389
f676886a 5390 if (! FRAME_VISIBLE_P (f))
90e65f07
JB
5391 {
5392#ifdef HAVE_X11
af31d76f 5393#ifndef USE_X_TOOLKIT
996e89cd 5394 x_set_offset (f, f->display.x->left_pos, f->display.x->top_pos, 0);
af31d76f 5395#endif
dc05a16b 5396
90e65f07 5397 if (! EQ (Vx_no_window_manager, Qt))
f676886a 5398 x_wm_set_window_state (f, NormalState);
3afe33e7 5399#ifdef USE_X_TOOLKIT
d7a38a2e
RS
5400 /* This was XtPopup, but that did nothing for an iconified frame. */
5401 XtMapWidget (f->display.x->widget);
3afe33e7 5402#else /* not USE_X_TOOLKIT */
c118dd06 5403 XMapWindow (XDISPLAY FRAME_X_WINDOW (f));
3afe33e7 5404#endif /* not USE_X_TOOLKIT */
0134a210
RS
5405#if 0 /* This seems to bring back scroll bars in the wrong places
5406 if the window configuration has changed. They seem
5407 to come back ok without this. */
ab648270 5408 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
c118dd06 5409 XMapSubwindows (x_current_display, FRAME_X_WINDOW (f));
0134a210 5410#endif
c118dd06
JB
5411#else /* ! defined (HAVE_X11) */
5412 XMapWindow (XDISPLAY FRAME_X_WINDOW (f));
f676886a
JB
5413 if (f->display.x->icon_desc != 0)
5414 XUnmapWindow (f->display.x->icon_desc);
dc6f92b8 5415
90e65f07 5416 /* Handled by the MapNotify event for X11 */
3a88c238
JB
5417 f->async_visible = 1;
5418 f->async_iconified = 0;
dc6f92b8 5419
f676886a 5420 /* NOTE: this may cause problems for the first frame. */
90e65f07 5421 XTcursor_to (0, 0);
c118dd06 5422#endif /* ! defined (HAVE_X11) */
90e65f07 5423 }
dc6f92b8 5424
dc6f92b8 5425 XFlushQueue ();
90e65f07 5426
dc6f92b8
JB
5427 UNBLOCK_INPUT;
5428}
5429
5430/* Change from mapped state to withdrawn state. */
5431
f676886a
JB
5432x_make_frame_invisible (f)
5433 struct frame *f;
dc6f92b8
JB
5434{
5435 int mask;
5436
9319ae23
RS
5437 /* Don't keep the highlight on an invisible frame. */
5438 if (x_highlight_frame == f)
5439 x_highlight_frame = 0;
5440
5627c40e 5441#if 0/* This might add unreliability; I don't trust it -- rms. */
9319ae23 5442 if (! f->async_visible && ! f->async_iconified)
dc6f92b8 5443 return;
5627c40e 5444#endif
dc6f92b8
JB
5445
5446 BLOCK_INPUT;
c118dd06 5447
af31d76f
RS
5448 /* Before unmapping the window, update the WM_SIZE_HINTS property to claim
5449 that the current position of the window is user-specified, rather than
5450 program-specified, so that when the window is mapped again, it will be
5451 placed at the same location, without forcing the user to position it
5452 by hand again (they have already done that once for this window.) */
5453 x_wm_set_size_hint (f, 0, 1);
5454
c118dd06
JB
5455#ifdef HAVE_X11R4
5456
bc20ebbf 5457#ifdef USE_X_TOOLKIT
5627c40e 5458 XtPopdown (f->display.x->widget);
bc20ebbf 5459#else /* not USE_X_TOOLKIT */
c118dd06
JB
5460 if (! XWithdrawWindow (x_current_display, FRAME_X_WINDOW (f),
5461 DefaultScreen (x_current_display)))
5462 {
5463 UNBLOCK_INPUT_RESIGNAL;
eb8c3be9 5464 error ("can't notify window manager of window withdrawal");
c118dd06 5465 }
5627c40e 5466#endif /* not USE_X_TOOLKIT */
c118dd06
JB
5467
5468#else /* ! defined (HAVE_X11R4) */
dc6f92b8 5469#ifdef HAVE_X11
16bd92ea 5470
c118dd06 5471 /* Tell the window manager what we're going to do. */
dc6f92b8
JB
5472 if (! EQ (Vx_no_window_manager, Qt))
5473 {
16bd92ea 5474 XEvent unmap;
dc6f92b8 5475
16bd92ea 5476 unmap.xunmap.type = UnmapNotify;
bc20ebbf
FP
5477#ifdef USE_X_TOOLKIT
5478 unmap.xunmap.window = XtWindow (f->display.x->widget);
5479#else /* not USE_X_TOOLKIT */
c118dd06 5480 unmap.xunmap.window = FRAME_X_WINDOW (f);
bc20ebbf 5481#endif /* not USE_X_TOOLKIT */
16bd92ea
JB
5482 unmap.xunmap.event = DefaultRootWindow (x_current_display);
5483 unmap.xunmap.from_configure = False;
5484 if (! XSendEvent (x_current_display,
5485 DefaultRootWindow (x_current_display),
5486 False,
5487 SubstructureRedirectMask|SubstructureNotifyMask,
5488 &unmap))
5489 {
5490 UNBLOCK_INPUT_RESIGNAL;
5491 error ("can't notify window manager of withdrawal");
5492 }
dc6f92b8
JB
5493 }
5494
16bd92ea 5495 /* Unmap the window ourselves. Cheeky! */
bc20ebbf
FP
5496#ifdef USE_X_TOOLKIT
5497 XUnmapWindow (x_current_display, XtWindow (f->display.x->widget));
5498#else /* not USE_X_TOOLKIT */
c118dd06 5499 XUnmapWindow (x_current_display, FRAME_X_WINDOW (f));
bc20ebbf 5500#endif /* not USE_X_TOOLKIT */
c118dd06 5501#else /* ! defined (HAVE_X11) */
dc6f92b8 5502
c118dd06 5503 XUnmapWindow (FRAME_X_WINDOW (f));
f676886a 5504 if (f->display.x->icon_desc != 0)
c118dd06
JB
5505 XUnmapWindow (f->display.x->icon_desc);
5506
5507#endif /* ! defined (HAVE_X11) */
5508#endif /* ! defined (HAVE_X11R4) */
dc6f92b8 5509
5627c40e
RS
5510 /* We can't distinguish this from iconification
5511 just by the event that we get from the server.
5512 So we can't win using the usual strategy of letting
5513 FRAME_SAMPLE_VISIBILITY set this. So do it by hand,
5514 and synchronize with the server to make sure we agree. */
5515 f->visible = 0;
5516 FRAME_ICONIFIED_P (f) = 0;
5517 f->async_visible = 0;
5518 f->async_iconified = 0;
5519
5520 x_sync ();
5521
dc6f92b8
JB
5522 UNBLOCK_INPUT;
5523}
5524
dc6f92b8
JB
5525/* Change window state from mapped to iconified. */
5526
f676886a
JB
5527x_iconify_frame (f)
5528 struct frame *f;
dc6f92b8
JB
5529{
5530 int mask;
3afe33e7 5531 int result;
dc6f92b8 5532
9319ae23
RS
5533 /* Don't keep the highlight on an invisible frame. */
5534 if (x_highlight_frame == f)
5535 x_highlight_frame = 0;
5536
3a88c238 5537 if (f->async_iconified)
dc6f92b8
JB
5538 return;
5539
3afe33e7
RS
5540#ifdef USE_X_TOOLKIT
5541 BLOCK_INPUT;
5542 result = XIconifyWindow (x_current_display,
bc20ebbf 5543 XtWindow (f->display.x->widget),
3afe33e7
RS
5544 DefaultScreen (x_current_display));
5545 UNBLOCK_INPUT;
5546
5547 if (!result)
5548 error ("Can't notify window manager of iconification.");
5549
5550 f->async_iconified = 1;
8c002a25
KH
5551
5552 BLOCK_INPUT;
5553 XFlushQueue ();
5554 UNBLOCK_INPUT;
3afe33e7
RS
5555#else /* not USE_X_TOOLKIT */
5556
dc6f92b8
JB
5557 BLOCK_INPUT;
5558
5559#ifdef HAVE_X11
16bd92ea
JB
5560 /* Since we don't know which revision of X we're running, we'll use both
5561 the X11R3 and X11R4 techniques. I don't know if this is a good idea. */
5562
5563 /* X11R4: send a ClientMessage to the window manager using the
5564 WM_CHANGE_STATE type. */
5565 {
5566 XEvent message;
5567
c118dd06 5568 message.xclient.window = FRAME_X_WINDOW (f);
16bd92ea
JB
5569 message.xclient.type = ClientMessage;
5570 message.xclient.message_type = Xatom_wm_change_state;
5571 message.xclient.format = 32;
5572 message.xclient.data.l[0] = IconicState;
5573
5574 if (! XSendEvent (x_current_display,
5575 DefaultRootWindow (x_current_display),
5576 False,
5577 SubstructureRedirectMask | SubstructureNotifyMask,
5578 &message))
dc6f92b8
JB
5579 {
5580 UNBLOCK_INPUT_RESIGNAL;
5581 error ("Can't notify window manager of iconification.");
5582 }
16bd92ea 5583 }
dc6f92b8 5584
16bd92ea
JB
5585 /* X11R3: set the initial_state field of the window manager hints to
5586 IconicState. */
5587 x_wm_set_window_state (f, IconicState);
dc6f92b8 5588
a9c00105
RS
5589 if (!FRAME_VISIBLE_P (f))
5590 {
5591 /* If the frame was withdrawn, before, we must map it. */
5592 XMapWindow (XDISPLAY FRAME_X_WINDOW (f));
0134a210 5593#if 0 /* We don't have subwindows in the icon. */
a9c00105
RS
5594 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
5595 XMapSubwindows (x_current_display, FRAME_X_WINDOW (f));
0134a210 5596#endif
a9c00105
RS
5597 }
5598
3a88c238 5599 f->async_iconified = 1;
c118dd06
JB
5600#else /* ! defined (HAVE_X11) */
5601 XUnmapWindow (XDISPLAY FRAME_X_WINDOW (f));
dc6f92b8 5602
3a88c238 5603 f->async_visible = 0; /* Handled in the UnMap event for X11. */
f676886a 5604 if (f->display.x->icon_desc != 0)
dc6f92b8 5605 {
f676886a
JB
5606 XMapWindow (XDISPLAY f->display.x->icon_desc);
5607 refreshicon (f);
dc6f92b8 5608 }
c118dd06 5609#endif /* ! defined (HAVE_X11) */
dc6f92b8
JB
5610
5611 XFlushQueue ();
5612 UNBLOCK_INPUT;
8c002a25 5613#endif /* not USE_X_TOOLKIT */
dc6f92b8
JB
5614}
5615
c0ff3fab 5616/* Destroy the X window of frame F. */
dc6f92b8 5617
c0ff3fab 5618x_destroy_window (f)
f676886a 5619 struct frame *f;
dc6f92b8 5620{
dc6f92b8 5621 BLOCK_INPUT;
c0ff3fab
JB
5622
5623 if (f->display.x->icon_desc != 0)
5624 XDestroyWindow (XDISPLAY f->display.x->icon_desc);
5625 XDestroyWindow (XDISPLAY f->display.x->window_desc);
3afe33e7
RS
5626#ifdef USE_X_TOOLKIT
5627 XtDestroyWidget (f->display.x->widget);
9d7e2e3e 5628 free_frame_menubar (f);
3afe33e7
RS
5629#endif /* USE_X_TOOLKIT */
5630
07e34cb0 5631 free_frame_faces (f);
dc6f92b8 5632 XFlushQueue ();
dc6f92b8 5633
9ac0d9e0 5634 xfree (f->display.x);
c0ff3fab 5635 f->display.x = 0;
f676886a
JB
5636 if (f == x_focus_frame)
5637 x_focus_frame = 0;
5638 if (f == x_highlight_frame)
5639 x_highlight_frame = 0;
c0ff3fab 5640
0134a210 5641 if (f == mouse_face_mouse_frame)
dc05a16b 5642 {
3b506386
KH
5643 mouse_face_beg_row = mouse_face_beg_col = -1;
5644 mouse_face_end_row = mouse_face_end_col = -1;
dc05a16b
RS
5645 mouse_face_window = Qnil;
5646 }
0134a210 5647
c0ff3fab 5648 UNBLOCK_INPUT;
dc6f92b8
JB
5649}
5650\f
f451eb13
JB
5651/* Manage event queues for X10. */
5652
dc6f92b8
JB
5653#ifndef HAVE_X11
5654
5655/* Manage event queues.
5656
5657 This code is only used by the X10 support.
5658
5659 We cannot leave events in the X queue and get them when we are ready
5660 because X does not provide a subroutine to get only a certain kind
5661 of event but not block if there are no queued events of that kind.
5662
5663 Therefore, we must examine events as they come in and copy events
5664 of certain kinds into our private queues.
5665
5666 All ExposeRegion events are put in x_expose_queue.
69388238 5667 All ButtonPress and ButtonRelease events are put in x_mouse_queue. */
dc6f92b8
JB
5668
5669
5670/* Write the event *P_XREP into the event queue *QUEUE.
5671 If the queue is full, do nothing, but return nonzero. */
5672
5673int
5674enqueue_event (p_xrep, queue)
5675 register XEvent *p_xrep;
5676 register struct event_queue *queue;
5677{
5678 int newindex = queue->windex + 1;
5679 if (newindex == EVENT_BUFFER_SIZE)
5680 newindex = 0;
5681 if (newindex == queue->rindex)
5682 return -1;
5683 queue->xrep[queue->windex] = *p_xrep;
5684 queue->windex = newindex;
5685 return 0;
5686}
5687
5688/* Fetch the next event from queue *QUEUE and store it in *P_XREP.
5689 If *QUEUE is empty, do nothing and return 0. */
5690
5691int
5692dequeue_event (p_xrep, queue)
5693 register XEvent *p_xrep;
5694 register struct event_queue *queue;
5695{
5696 if (queue->windex == queue->rindex)
5697 return 0;
5698 *p_xrep = queue->xrep[queue->rindex++];
5699 if (queue->rindex == EVENT_BUFFER_SIZE)
5700 queue->rindex = 0;
5701 return 1;
5702}
5703
5704/* Return the number of events buffered in *QUEUE. */
5705
5706int
5707queue_event_count (queue)
5708 register struct event_queue *queue;
5709{
5710 int tem = queue->windex - queue->rindex;
5711 if (tem >= 0)
5712 return tem;
5713 return EVENT_BUFFER_SIZE + tem;
5714}
5715
5716/* Return nonzero if mouse input is pending. */
5717
5718int
5719mouse_event_pending_p ()
5720{
5721 return queue_event_count (&x_mouse_queue);
5722}
c118dd06 5723#endif /* HAVE_X11 */
dc6f92b8 5724\f
f451eb13
JB
5725/* Setting window manager hints. */
5726
dc6f92b8
JB
5727#ifdef HAVE_X11
5728
af31d76f
RS
5729/* Set the normal size hints for the window manager, for frame F.
5730 FLAGS is the flags word to use--or 0 meaning preserve the flags
5731 that the window now has.
5732 If USER_POSITION is nonzero, we set the USPosition
5733 flag (this is useful when FLAGS is 0). */
6dba1858 5734
af31d76f 5735x_wm_set_size_hint (f, flags, user_position)
f676886a 5736 struct frame *f;
af31d76f
RS
5737 long flags;
5738 int user_position;
dc6f92b8
JB
5739{
5740 XSizeHints size_hints;
3afe33e7
RS
5741
5742#ifdef USE_X_TOOLKIT
7e4f2521
FP
5743 Arg al[2];
5744 int ac = 0;
5745 Dimension widget_width, widget_height;
bc20ebbf 5746 Window window = XtWindow (f->display.x->widget);
3afe33e7 5747#else /* not USE_X_TOOLKIT */
c118dd06 5748 Window window = FRAME_X_WINDOW (f);
3afe33e7 5749#endif /* not USE_X_TOOLKIT */
dc6f92b8 5750
b72a58fd
RS
5751 /* Setting PMaxSize caused various problems. */
5752 size_hints.flags = PResizeInc | PMinSize /* | PMaxSize */;
dc6f92b8 5753
f676886a
JB
5754 flexlines = f->height;
5755
5756 size_hints.x = f->display.x->left_pos;
5757 size_hints.y = f->display.x->top_pos;
7553a6b7 5758
7e4f2521
FP
5759#ifdef USE_X_TOOLKIT
5760 XtSetArg (al[ac], XtNwidth, &widget_width); ac++;
5761 XtSetArg (al[ac], XtNheight, &widget_height); ac++;
5762 XtGetValues (f->display.x->column_widget, al, ac);
5763 size_hints.height = widget_height;
5764 size_hints.width = widget_width;
5765#else /* not USE_X_TOOLKIT */
f676886a
JB
5766 size_hints.height = PIXEL_HEIGHT (f);
5767 size_hints.width = PIXEL_WIDTH (f);
7e4f2521 5768#endif /* not USE_X_TOOLKIT */
7553a6b7 5769
f676886a 5770 size_hints.width_inc = FONT_WIDTH (f->display.x->font);
a27f9f86 5771 size_hints.height_inc = f->display.x->line_height;
7553a6b7
RS
5772 size_hints.max_width = x_screen_width - CHAR_TO_PIXEL_WIDTH (f, 0);
5773 size_hints.max_height = x_screen_height - CHAR_TO_PIXEL_HEIGHT (f, 0);
0134a210 5774
b1c884c3 5775 {
b0342f17 5776 int base_width, base_height;
0134a210 5777 int min_rows = 0, min_cols = 0;
b0342f17 5778
f451eb13
JB
5779 base_width = CHAR_TO_PIXEL_WIDTH (f, 0);
5780 base_height = CHAR_TO_PIXEL_HEIGHT (f, 0);
b0342f17 5781
0134a210 5782 check_frame_size (f, &min_rows, &min_cols);
b0342f17 5783
0134a210
RS
5784 /* The window manager uses the base width hints to calculate the
5785 current number of rows and columns in the frame while
5786 resizing; min_width and min_height aren't useful for this
5787 purpose, since they might not give the dimensions for a
5788 zero-row, zero-column frame.
5789
5790 We use the base_width and base_height members if we have
5791 them; otherwise, we set the min_width and min_height members
5792 to the size for a zero x zero frame. */
b0342f17
JB
5793
5794#ifdef HAVE_X11R4
0134a210
RS
5795 size_hints.flags |= PBaseSize;
5796 size_hints.base_width = base_width;
5797 size_hints.base_height = base_height;
5798 size_hints.min_width = base_width + min_cols * size_hints.width_inc;
5799 size_hints.min_height = base_height + min_rows * size_hints.height_inc;
b0342f17 5800#else
0134a210
RS
5801 size_hints.min_width = base_width;
5802 size_hints.min_height = base_height;
b0342f17 5803#endif
b1c884c3 5804 }
dc6f92b8 5805
af31d76f
RS
5806 if (flags)
5807 size_hints.flags |= flags;
dc6f92b8
JB
5808 else
5809 {
5810 XSizeHints hints; /* Sometimes I hate X Windows... */
af31d76f
RS
5811 long supplied_return;
5812 int value;
5813
5814#ifdef HAVE_X11R4
5815 value = XGetWMNormalHints (x_current_display, window, &hints,
5816 &supplied_return);
5817#else
5818 value = XGetNormalHints (x_current_display, window, &hints);
5819#endif
dc6f92b8 5820
af31d76f 5821 if (value == 0)
82ee0df4 5822 hints.flags = 0;
dc6f92b8
JB
5823 if (hints.flags & PSize)
5824 size_hints.flags |= PSize;
5825 if (hints.flags & PPosition)
5826 size_hints.flags |= PPosition;
5827 if (hints.flags & USPosition)
5828 size_hints.flags |= USPosition;
5829 if (hints.flags & USSize)
5830 size_hints.flags |= USSize;
5831 }
0134a210 5832
af31d76f 5833#ifdef PWinGravity
dc05a16b 5834 size_hints.win_gravity = f->display.x->win_gravity;
af31d76f 5835 size_hints.flags |= PWinGravity;
dc05a16b 5836
af31d76f 5837 if (user_position)
6dba1858 5838 {
af31d76f
RS
5839 size_hints.flags &= ~ PPosition;
5840 size_hints.flags |= USPosition;
6dba1858 5841 }
2554751d 5842#endif /* PWinGravity */
6dba1858 5843
b0342f17
JB
5844#ifdef HAVE_X11R4
5845 XSetWMNormalHints (x_current_display, window, &size_hints);
5846#else
dc6f92b8 5847 XSetNormalHints (x_current_display, window, &size_hints);
b0342f17 5848#endif
dc6f92b8
JB
5849}
5850
5851/* Used for IconicState or NormalState */
f676886a
JB
5852x_wm_set_window_state (f, state)
5853 struct frame *f;
dc6f92b8
JB
5854 int state;
5855{
3afe33e7 5856#ifdef USE_X_TOOLKIT
bc20ebbf 5857 Window window = XtWindow (f->display.x->widget);
3afe33e7 5858#else /* not USE_X_TOOLKIT */
c118dd06 5859 Window window = FRAME_X_WINDOW (f);
3afe33e7 5860#endif /* not USE_X_TOOLKIT */
dc6f92b8 5861
16bd92ea
JB
5862 f->display.x->wm_hints.flags |= StateHint;
5863 f->display.x->wm_hints.initial_state = state;
b1c884c3 5864
16bd92ea 5865 XSetWMHints (x_current_display, window, &f->display.x->wm_hints);
dc6f92b8
JB
5866}
5867
f676886a
JB
5868x_wm_set_icon_pixmap (f, icon_pixmap)
5869 struct frame *f;
dc6f92b8
JB
5870 Pixmap icon_pixmap;
5871{
c118dd06 5872 Window window = FRAME_X_WINDOW (f);
dc6f92b8 5873
dbc4e1c1
JB
5874 if (icon_pixmap)
5875 {
5876 f->display.x->wm_hints.icon_pixmap = icon_pixmap;
5877 f->display.x->wm_hints.flags |= IconPixmapHint;
5878 }
5879 else
5880 f->display.x->wm_hints.flags &= ~IconPixmapHint;
b1c884c3 5881
16bd92ea 5882 XSetWMHints (x_current_display, window, &f->display.x->wm_hints);
dc6f92b8
JB
5883}
5884
f676886a
JB
5885x_wm_set_icon_position (f, icon_x, icon_y)
5886 struct frame *f;
dc6f92b8
JB
5887 int icon_x, icon_y;
5888{
c118dd06 5889 Window window = FRAME_X_WINDOW (f);
dc6f92b8 5890
16bd92ea
JB
5891 f->display.x->wm_hints.flags |= IconPositionHint;
5892 f->display.x->wm_hints.icon_x = icon_x;
5893 f->display.x->wm_hints.icon_y = icon_y;
b1c884c3 5894
16bd92ea 5895 XSetWMHints (x_current_display, window, &f->display.x->wm_hints);
dc6f92b8
JB
5896}
5897
5898\f
f451eb13
JB
5899/* Initialization. */
5900
3afe33e7
RS
5901#ifdef USE_X_TOOLKIT
5902static XrmOptionDescRec emacs_options[] = {
5903 {"-geometry", ".geometry", XrmoptionSepArg, NULL},
5904 {"-iconic", ".iconic", XrmoptionNoArg, (XtPointer) "yes"},
5905
5906 {"-internal-border-width", "*EmacsScreen.internalBorderWidth",
5907 XrmoptionSepArg, NULL},
5908 {"-ib", "*EmacsScreen.internalBorderWidth", XrmoptionSepArg, NULL},
5909
5910 {"-T", "*EmacsShell.title", XrmoptionSepArg, (XtPointer) NULL},
5911 {"-wn", "*EmacsShell.title", XrmoptionSepArg, (XtPointer) NULL},
5912 {"-title", "*EmacsShell.title", XrmoptionSepArg, (XtPointer) NULL},
5913 {"-iconname", "*EmacsShell.iconName", XrmoptionSepArg, (XtPointer) NULL},
5914 {"-in", "*EmacsShell.iconName", XrmoptionSepArg, (XtPointer) NULL},
5915 {"-mc", "*pointerColor", XrmoptionSepArg, (XtPointer) NULL},
5916 {"-cr", "*cursorColor", XrmoptionSepArg, (XtPointer) NULL}
5917};
5918#endif /* USE_X_TOOLKIT */
5919
dc6f92b8
JB
5920void
5921x_term_init (display_name)
5922 char *display_name;
5923{
f676886a 5924 Lisp_Object frame;
dc6f92b8 5925 char *defaultvalue;
3afe33e7
RS
5926 int argc = 0;
5927 char** argv = 0;
041b69ac 5928#ifndef F_SETOWN_BUG
dc6f92b8
JB
5929#ifdef F_SETOWN
5930 extern int old_fcntl_owner;
c118dd06 5931#endif /* ! defined (F_SETOWN) */
041b69ac 5932#endif /* F_SETOWN_BUG */
6d4238f3 5933
f676886a 5934 x_focus_frame = x_highlight_frame = 0;
dc6f92b8 5935
3afe33e7 5936#ifdef USE_X_TOOLKIT
c2df547c 5937 argv = (char **) XtMalloc (5 * sizeof (char *));
3afe33e7
RS
5938 argv [0] = "";
5939 argv [1] = "-display";
5940 argv [2] = display_name;
c2df547c
RS
5941 argv [3] = "-name";
5942 argv [4] = "emacs";
5943 argc = 5;
3afe33e7 5944 Xt_app_shell = XtAppInitialize (&Xt_app_con, "Emacs",
bc20ebbf 5945 emacs_options, XtNumber (emacs_options),
3afe33e7
RS
5946 &argc, argv,
5947 NULL, NULL, 0);
983f76b8 5948 XtFree ((char *)argv);
3afe33e7
RS
5949 x_current_display = XtDisplay (Xt_app_shell);
5950
5951#else /* not USE_X_TOOLKIT */
dc6f92b8 5952 x_current_display = XOpenDisplay (display_name);
3afe33e7 5953#endif /* not USE_X_TOOLKIT */
dc6f92b8 5954 if (x_current_display == 0)
041b69ac
JB
5955 fatal ("X server %s not responding.\n\
5956Check the DISPLAY environment variable or use \"-d\"\n",
dc6f92b8
JB
5957 display_name);
5958
5959#ifdef HAVE_X11
5960 {
dc6f92b8
JB
5961#if 0
5962 XSetAfterFunction (x_current_display, x_trace_wire);
c118dd06 5963#endif /* ! 0 */
8c86eccd 5964 hostname = get_system_name ();
59653951 5965 x_id_name = (char *) xmalloc (XSTRING (Vinvocation_name)->size
60fb3ee1
JB
5966 + strlen (hostname)
5967 + 2);
59653951 5968 sprintf (x_id_name, "%s@%s", XSTRING (Vinvocation_name)->data, hostname);
dc6f92b8 5969 }
28430d3c
JB
5970
5971 /* Figure out which modifier bits mean what. */
5972 x_find_modifier_meanings ();
f451eb13 5973
ab648270 5974 /* Get the scroll bar cursor. */
d56a553a
RS
5975 x_vertical_scroll_bar_cursor
5976 = XCreateFontCursor (x_current_display, XC_sb_v_double_arrow);
f451eb13 5977
d56a553a 5978#if 0
28430d3c
JB
5979 /* Watch for PropertyNotify events on the root window; we use them
5980 to figure out when to invalidate our cache of the cut buffers. */
5981 x_watch_cut_buffer_cache ();
d56a553a 5982#endif
28430d3c 5983
a4fc7360 5984 if (ConnectionNumber (x_current_display) != 0)
61c3ce62
RS
5985 change_keyboard_wait_descriptor (ConnectionNumber (x_current_display));
5986 change_input_fd (ConnectionNumber (x_current_display));
6d4238f3 5987
c118dd06 5988#endif /* ! defined (HAVE_X11) */
dc6f92b8 5989
041b69ac 5990#ifndef F_SETOWN_BUG
dc6f92b8 5991#ifdef F_SETOWN
61c3ce62 5992 old_fcntl_owner = fcntl (ConnectionNumber (x_current_display), F_GETOWN, 0);
dc6f92b8 5993#ifdef F_SETOWN_SOCK_NEG
61c3ce62
RS
5994 /* stdin is a socket here */
5995 fcntl (ConnectionNumber (x_current_display), F_SETOWN, -getpid ());
c118dd06 5996#else /* ! defined (F_SETOWN_SOCK_NEG) */
61c3ce62 5997 fcntl (ConnectionNumber (x_current_display), F_SETOWN, getpid ());
c118dd06
JB
5998#endif /* ! defined (F_SETOWN_SOCK_NEG) */
5999#endif /* ! defined (F_SETOWN) */
041b69ac 6000#endif /* F_SETOWN_BUG */
dc6f92b8
JB
6001
6002#ifdef SIGIO
6003 init_sigio ();
c118dd06 6004#endif /* ! defined (SIGIO) */
dc6f92b8 6005
dc6f92b8
JB
6006 expose_all_windows = 0;
6007
f676886a 6008 clear_frame_hook = XTclear_frame;
dc6f92b8
JB
6009 clear_end_of_line_hook = XTclear_end_of_line;
6010 ins_del_lines_hook = XTins_del_lines;
6011 change_line_highlight_hook = XTchange_line_highlight;
6012 insert_glyphs_hook = XTinsert_glyphs;
6013 write_glyphs_hook = XTwrite_glyphs;
6014 delete_glyphs_hook = XTdelete_glyphs;
6015 ring_bell_hook = XTring_bell;
6016 reset_terminal_modes_hook = XTreset_terminal_modes;
6017 set_terminal_modes_hook = XTset_terminal_modes;
6018 update_begin_hook = XTupdate_begin;
6019 update_end_hook = XTupdate_end;
6020 set_terminal_window_hook = XTset_terminal_window;
6021 read_socket_hook = XTread_socket;
b8009dd1 6022 frame_up_to_date_hook = XTframe_up_to_date;
dc6f92b8
JB
6023 cursor_to_hook = XTcursor_to;
6024 reassert_line_highlight_hook = XTreassert_line_highlight;
90e65f07 6025 mouse_position_hook = XTmouse_position;
f451eb13 6026 frame_rehighlight_hook = XTframe_rehighlight;
dbc4e1c1 6027 frame_raise_lower_hook = XTframe_raise_lower;
ab648270
JB
6028 set_vertical_scroll_bar_hook = XTset_vertical_scroll_bar;
6029 condemn_scroll_bars_hook = XTcondemn_scroll_bars;
6030 redeem_scroll_bar_hook = XTredeem_scroll_bar;
6031 judge_scroll_bars_hook = XTjudge_scroll_bars;
dc6f92b8 6032
f676886a 6033 scroll_region_ok = 1; /* we'll scroll partial frames */
dc6f92b8
JB
6034 char_ins_del_ok = 0; /* just as fast to write the line */
6035 line_ins_del_ok = 1; /* we'll just blt 'em */
6036 fast_clear_end_of_line = 1; /* X does this well */
f676886a 6037 memory_below_frame = 0; /* we don't remember what scrolls
dc6f92b8
JB
6038 off the bottom */
6039 baud_rate = 19200;
6040
b30b24cb
RS
6041 /* Try to use interrupt input; if we can't, then start polling. */
6042 Fset_input_mode (Qt, Qnil, Qt, Qnil);
6043
c118dd06
JB
6044 /* Note that there is no real way portable across R3/R4 to get the
6045 original error handler. */
6046 XHandleError (x_error_quitter);
8922af5f 6047 XHandleIOError (x_io_error_quitter);
dc6f92b8
JB
6048
6049 /* Disable Window Change signals; they are handled by X events. */
6050#ifdef SIGWINCH
6051 signal (SIGWINCH, SIG_DFL);
c118dd06 6052#endif /* ! defined (SIGWINCH) */
dc6f92b8 6053
c118dd06 6054 signal (SIGPIPE, x_connection_closed);
dc6f92b8 6055}
55123275
JB
6056
6057void
6058syms_of_xterm ()
6059{
ab648270 6060 staticpro (&last_mouse_scroll_bar);
e53cb100 6061 last_mouse_scroll_bar = Qnil;
b8009dd1
RS
6062 staticpro (&mouse_face_window);
6063 mouse_face_window = Qnil;
55123275 6064}
c118dd06
JB
6065#endif /* ! defined (HAVE_X11) */
6066#endif /* ! defined (HAVE_X_WINDOWS) */