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