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