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