]> code.delx.au - gnu-emacs/blob - src/xterm.c
Revision: miles@gnu.org--gnu-2004/emacs--unicode--0--patch-36
[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_output 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 = XCAR (old_val);
7615 Display *dpy = XSAVE_VALUE (first)->pointer;
7616
7617 /* The display may have been closed before this function is called.
7618 Check if it is still open before calling XSync. */
7619 if (x_display_info_for_display (dpy) != 0)
7620 XSync (dpy, False);
7621
7622 x_error_message_string = XCDR (old_val);
7623 return Qnil;
7624 }
7625
7626 /* If any X protocol errors have arrived since the last call to
7627 x_catch_errors or x_check_errors, signal an Emacs error using
7628 sprintf (a buffer, FORMAT, the x error message text) as the text. */
7629
7630 void
7631 x_check_errors (dpy, format)
7632 Display *dpy;
7633 char *format;
7634 {
7635 /* Make sure to catch any errors incurred so far. */
7636 XSync (dpy, False);
7637
7638 if (SREF (x_error_message_string, 0))
7639 error (format, SDATA (x_error_message_string));
7640 }
7641
7642 /* Nonzero if we had any X protocol errors
7643 since we did x_catch_errors on DPY. */
7644
7645 int
7646 x_had_errors_p (dpy)
7647 Display *dpy;
7648 {
7649 /* Make sure to catch any errors incurred so far. */
7650 XSync (dpy, False);
7651
7652 return SREF (x_error_message_string, 0) != 0;
7653 }
7654
7655 /* Forget about any errors we have had, since we did x_catch_errors on DPY. */
7656
7657 void
7658 x_clear_errors (dpy)
7659 Display *dpy;
7660 {
7661 SSET (x_error_message_string, 0, 0);
7662 }
7663
7664 /* Stop catching X protocol errors and let them make Emacs die.
7665 DPY should be the display that was passed to x_catch_errors.
7666 COUNT should be the value that was returned by
7667 the corresponding call to x_catch_errors. */
7668
7669 void
7670 x_uncatch_errors (dpy, count)
7671 Display *dpy;
7672 int count;
7673 {
7674 unbind_to (count, Qnil);
7675 }
7676
7677 #if 0
7678 static unsigned int x_wire_count;
7679 x_trace_wire ()
7680 {
7681 fprintf (stderr, "Lib call: %d\n", ++x_wire_count);
7682 }
7683 #endif /* ! 0 */
7684
7685 \f
7686 /* Handle SIGPIPE, which can happen when the connection to a server
7687 simply goes away. SIGPIPE is handled by x_connection_signal.
7688 Don't need to do anything, because the write which caused the
7689 SIGPIPE will fail, causing Xlib to invoke the X IO error handler,
7690 which will do the appropriate cleanup for us. */
7691
7692 static SIGTYPE
7693 x_connection_signal (signalnum) /* If we don't have an argument, */
7694 int signalnum; /* some compilers complain in signal calls. */
7695 {
7696 #ifdef USG
7697 /* USG systems forget handlers when they are used;
7698 must reestablish each time */
7699 signal (signalnum, x_connection_signal);
7700 #endif /* USG */
7701 }
7702
7703 \f
7704 /************************************************************************
7705 Handling X errors
7706 ************************************************************************/
7707
7708 /* Error message passed to x_connection_closed. */
7709
7710 static char *error_msg;
7711
7712 /* Function installed as fatal_error_signal_hook in
7713 x_connection_closed. Print the X error message, and exit normally,
7714 instead of dumping core when XtCloseDisplay fails. */
7715
7716 static void
7717 x_fatal_error_signal ()
7718 {
7719 fprintf (stderr, "%s\n", error_msg);
7720 exit (70);
7721 }
7722
7723 /* Handle the loss of connection to display DPY. ERROR_MESSAGE is
7724 the text of an error message that lead to the connection loss. */
7725
7726 static SIGTYPE
7727 x_connection_closed (dpy, error_message)
7728 Display *dpy;
7729 char *error_message;
7730 {
7731 struct x_display_info *dpyinfo = x_display_info_for_display (dpy);
7732 Lisp_Object frame, tail;
7733 int count;
7734
7735 error_msg = (char *) alloca (strlen (error_message) + 1);
7736 strcpy (error_msg, error_message);
7737 handling_signal = 0;
7738
7739 /* Prevent being called recursively because of an error condition
7740 below. Otherwise, we might end up with printing ``can't find per
7741 display information'' in the recursive call instead of printing
7742 the original message here. */
7743 count = x_catch_errors (dpy);
7744
7745 /* We have to close the display to inform Xt that it doesn't
7746 exist anymore. If we don't, Xt will continue to wait for
7747 events from the display. As a consequence, a sequence of
7748
7749 M-x make-frame-on-display RET :1 RET
7750 ...kill the new frame, so that we get an IO error...
7751 M-x make-frame-on-display RET :1 RET
7752
7753 will indefinitely wait in Xt for events for display `:1', opened
7754 in the first class to make-frame-on-display.
7755
7756 Closing the display is reported to lead to a bus error on
7757 OpenWindows in certain situations. I suspect that is a bug
7758 in OpenWindows. I don't know how to cicumvent it here. */
7759
7760 #ifdef USE_X_TOOLKIT
7761 /* If DPYINFO is null, this means we didn't open the display
7762 in the first place, so don't try to close it. */
7763 if (dpyinfo)
7764 {
7765 extern void (*fatal_error_signal_hook) P_ ((void));
7766 fatal_error_signal_hook = x_fatal_error_signal;
7767 XtCloseDisplay (dpy);
7768 fatal_error_signal_hook = NULL;
7769 }
7770 #endif
7771
7772 #ifdef USE_GTK
7773 if (dpyinfo)
7774 xg_display_close (dpyinfo->display);
7775 #endif
7776
7777 /* Indicate that this display is dead. */
7778 if (dpyinfo)
7779 dpyinfo->display = 0;
7780
7781 /* First delete frames whose mini-buffers are on frames
7782 that are on the dead display. */
7783 FOR_EACH_FRAME (tail, frame)
7784 {
7785 Lisp_Object minibuf_frame;
7786 minibuf_frame
7787 = WINDOW_FRAME (XWINDOW (FRAME_MINIBUF_WINDOW (XFRAME (frame))));
7788 if (FRAME_X_P (XFRAME (frame))
7789 && FRAME_X_P (XFRAME (minibuf_frame))
7790 && ! EQ (frame, minibuf_frame)
7791 && FRAME_X_DISPLAY_INFO (XFRAME (minibuf_frame)) == dpyinfo)
7792 Fdelete_frame (frame, Qt);
7793 }
7794
7795 /* Now delete all remaining frames on the dead display.
7796 We are now sure none of these is used as the mini-buffer
7797 for another frame that we need to delete. */
7798 FOR_EACH_FRAME (tail, frame)
7799 if (FRAME_X_P (XFRAME (frame))
7800 && FRAME_X_DISPLAY_INFO (XFRAME (frame)) == dpyinfo)
7801 {
7802 /* Set this to t so that Fdelete_frame won't get confused
7803 trying to find a replacement. */
7804 FRAME_KBOARD (XFRAME (frame))->Vdefault_minibuffer_frame = Qt;
7805 Fdelete_frame (frame, Qt);
7806 }
7807
7808 if (dpyinfo)
7809 x_delete_display (dpyinfo);
7810
7811 x_uncatch_errors (dpy, count);
7812
7813 if (x_display_list == 0)
7814 {
7815 fprintf (stderr, "%s\n", error_msg);
7816 shut_down_emacs (0, 0, Qnil);
7817 exit (70);
7818 }
7819
7820 /* Ordinary stack unwind doesn't deal with these. */
7821 #ifdef SIGIO
7822 sigunblock (sigmask (SIGIO));
7823 #endif
7824 sigunblock (sigmask (SIGALRM));
7825 TOTALLY_UNBLOCK_INPUT;
7826
7827 clear_waiting_for_input ();
7828 error ("%s", error_msg);
7829 }
7830
7831
7832 /* This is the usual handler for X protocol errors.
7833 It kills all frames on the display that we got the error for.
7834 If that was the only one, it prints an error message and kills Emacs. */
7835
7836 static void
7837 x_error_quitter (display, error)
7838 Display *display;
7839 XErrorEvent *error;
7840 {
7841 char buf[256], buf1[356];
7842
7843 /* Note that there is no real way portable across R3/R4 to get the
7844 original error handler. */
7845
7846 XGetErrorText (display, error->error_code, buf, sizeof (buf));
7847 sprintf (buf1, "X protocol error: %s on protocol request %d",
7848 buf, error->request_code);
7849 x_connection_closed (display, buf1);
7850 }
7851
7852
7853 /* This is the first-level handler for X protocol errors.
7854 It calls x_error_quitter or x_error_catcher. */
7855
7856 static int
7857 x_error_handler (display, error)
7858 Display *display;
7859 XErrorEvent *error;
7860 {
7861 if (! NILP (x_error_message_string))
7862 x_error_catcher (display, error);
7863 else
7864 x_error_quitter (display, error);
7865 return 0;
7866 }
7867
7868 /* This is the handler for X IO errors, always.
7869 It kills all frames on the display that we lost touch with.
7870 If that was the only one, it prints an error message and kills Emacs. */
7871
7872 static int
7873 x_io_error_quitter (display)
7874 Display *display;
7875 {
7876 char buf[256];
7877
7878 sprintf (buf, "Connection lost to X server `%s'", DisplayString (display));
7879 x_connection_closed (display, buf);
7880 return 0;
7881 }
7882 \f
7883 /* Changing the font of the frame. */
7884
7885 /* Give frame F the font named FONTNAME as its default font, and
7886 return the full name of that font. FONTNAME may be a wildcard
7887 pattern; in that case, we choose some font that fits the pattern.
7888 The return value shows which font we chose. */
7889
7890 Lisp_Object
7891 x_new_font (f, fontname)
7892 struct frame *f;
7893 register char *fontname;
7894 {
7895 struct font_info *fontp
7896 = FS_LOAD_FONT (f, fontname);
7897
7898 if (!fontp)
7899 return Qnil;
7900
7901 if (FRAME_FONT (f) == (XFontStruct *) (fontp->font))
7902 /* This font is already set in frame F. There's nothing more to
7903 do. */
7904 return build_string (fontp->full_name);
7905
7906 FRAME_FONT (f) = (XFontStruct *) (fontp->font);
7907 FRAME_BASELINE_OFFSET (f) = fontp->baseline_offset;
7908 FRAME_FONTSET (f) = -1;
7909
7910 FRAME_COLUMN_WIDTH (f) = FONT_WIDTH (FRAME_FONT (f));
7911 FRAME_LINE_HEIGHT (f) = FONT_HEIGHT (FRAME_FONT (f));
7912
7913 compute_fringe_widths (f, 1);
7914
7915 /* Compute the scroll bar width in character columns. */
7916 if (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) > 0)
7917 {
7918 int wid = FRAME_COLUMN_WIDTH (f);
7919 FRAME_CONFIG_SCROLL_BAR_COLS (f)
7920 = (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) + wid-1) / wid;
7921 }
7922 else
7923 {
7924 int wid = FRAME_COLUMN_WIDTH (f);
7925 FRAME_CONFIG_SCROLL_BAR_COLS (f) = (14 + wid - 1) / wid;
7926 }
7927
7928 /* Now make the frame display the given font. */
7929 if (FRAME_X_WINDOW (f) != 0)
7930 {
7931 XSetFont (FRAME_X_DISPLAY (f), f->output_data.x->normal_gc,
7932 FRAME_FONT (f)->fid);
7933 XSetFont (FRAME_X_DISPLAY (f), f->output_data.x->reverse_gc,
7934 FRAME_FONT (f)->fid);
7935 XSetFont (FRAME_X_DISPLAY (f), f->output_data.x->cursor_gc,
7936 FRAME_FONT (f)->fid);
7937
7938 /* Don't change the size of a tip frame; there's no point in
7939 doing it because it's done in Fx_show_tip, and it leads to
7940 problems because the tip frame has no widget. */
7941 if (NILP (tip_frame) || XFRAME (tip_frame) != f)
7942 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
7943 }
7944
7945 return build_string (fontp->full_name);
7946 }
7947
7948 /* Give frame F the fontset named FONTSETNAME as its default fontset,
7949 and return the full name of that fontset. FONTSETNAME may be a
7950 wildcard pattern; in that case, we choose some fontset that fits
7951 the pattern. FONTSETNAME may be a font name for ASCII characters;
7952 in that case, we create a fontset from that font name.
7953
7954 The return value shows which fontset we chose.
7955 If FONTSETNAME specifies the default fontset, return Qt.
7956 If an ASCII font in the specified fontset can't be loaded, return
7957 Qnil. */
7958
7959 Lisp_Object
7960 x_new_fontset (f, fontsetname)
7961 struct frame *f;
7962 Lisp_Object fontsetname;
7963 {
7964 int fontset = fs_query_fontset (fontsetname, 0);
7965 Lisp_Object result;
7966
7967 if (fontset > 0 && f->output_data.x->fontset == fontset)
7968 /* This fontset is already set in frame F. There's nothing more
7969 to do. */
7970 return fontset_name (fontset);
7971 else if (fontset == 0)
7972 /* The default fontset can't be the default font. */
7973 return Qt;
7974
7975 if (fontset > 0)
7976 result = x_new_font (f, (SDATA (fontset_ascii (fontset))));
7977 else
7978 result = x_new_font (f, SDATA (fontsetname));
7979
7980 if (!STRINGP (result))
7981 /* Can't load ASCII font. */
7982 return Qnil;
7983
7984 if (fontset < 0)
7985 fontset = new_fontset_from_font_name (result);
7986
7987 /* Since x_new_font doesn't update any fontset information, do it now. */
7988 FRAME_FONTSET (f) = fontset;
7989
7990 #ifdef HAVE_X_I18N
7991 if (FRAME_XIC (f)
7992 && (FRAME_XIC_STYLE (f) & (XIMPreeditPosition | XIMStatusArea)))
7993 xic_set_xfontset (f, SDATA (fontset_ascii (fontset)));
7994 #endif
7995
7996 return fontset_name (fontset);
7997 }
7998
7999 \f
8000 /***********************************************************************
8001 X Input Methods
8002 ***********************************************************************/
8003
8004 #ifdef HAVE_X_I18N
8005
8006 #ifdef HAVE_X11R6
8007
8008 /* XIM destroy callback function, which is called whenever the
8009 connection to input method XIM dies. CLIENT_DATA contains a
8010 pointer to the x_display_info structure corresponding to XIM. */
8011
8012 static void
8013 xim_destroy_callback (xim, client_data, call_data)
8014 XIM xim;
8015 XPointer client_data;
8016 XPointer call_data;
8017 {
8018 struct x_display_info *dpyinfo = (struct x_display_info *) client_data;
8019 Lisp_Object frame, tail;
8020
8021 BLOCK_INPUT;
8022
8023 /* No need to call XDestroyIC.. */
8024 FOR_EACH_FRAME (tail, frame)
8025 {
8026 struct frame *f = XFRAME (frame);
8027 if (FRAME_X_DISPLAY_INFO (f) == dpyinfo)
8028 {
8029 FRAME_XIC (f) = NULL;
8030 if (FRAME_XIC_FONTSET (f))
8031 {
8032 XFreeFontSet (FRAME_X_DISPLAY (f), FRAME_XIC_FONTSET (f));
8033 FRAME_XIC_FONTSET (f) = NULL;
8034 }
8035 }
8036 }
8037
8038 /* No need to call XCloseIM. */
8039 dpyinfo->xim = NULL;
8040 XFree (dpyinfo->xim_styles);
8041 UNBLOCK_INPUT;
8042 }
8043
8044 #endif /* HAVE_X11R6 */
8045
8046 #ifdef HAVE_X11R6
8047 /* This isn't prototyped in OSF 5.0 or 5.1a. */
8048 extern char *XSetIMValues P_ ((XIM, ...));
8049 #endif
8050
8051 /* Open the connection to the XIM server on display DPYINFO.
8052 RESOURCE_NAME is the resource name Emacs uses. */
8053
8054 static void
8055 xim_open_dpy (dpyinfo, resource_name)
8056 struct x_display_info *dpyinfo;
8057 char *resource_name;
8058 {
8059 XIM xim;
8060
8061 #ifdef HAVE_XIM
8062 if (use_xim)
8063 {
8064 xim = XOpenIM (dpyinfo->display, dpyinfo->xrdb, resource_name,
8065 EMACS_CLASS);
8066 dpyinfo->xim = xim;
8067
8068 if (xim)
8069 {
8070 #ifdef HAVE_X11R6
8071 XIMCallback destroy;
8072 #endif
8073
8074 /* Get supported styles and XIM values. */
8075 XGetIMValues (xim, XNQueryInputStyle, &dpyinfo->xim_styles, NULL);
8076
8077 #ifdef HAVE_X11R6
8078 destroy.callback = xim_destroy_callback;
8079 destroy.client_data = (XPointer)dpyinfo;
8080 XSetIMValues (xim, XNDestroyCallback, &destroy, NULL);
8081 #endif
8082 }
8083 }
8084
8085 else
8086 #endif /* HAVE_XIM */
8087 dpyinfo->xim = NULL;
8088 }
8089
8090
8091 #ifdef HAVE_X11R6_XIM
8092
8093 struct xim_inst_t
8094 {
8095 struct x_display_info *dpyinfo;
8096 char *resource_name;
8097 };
8098
8099 /* XIM instantiate callback function, which is called whenever an XIM
8100 server is available. DISPLAY is the display of the XIM.
8101 CLIENT_DATA contains a pointer to an xim_inst_t structure created
8102 when the callback was registered. */
8103
8104 static void
8105 xim_instantiate_callback (display, client_data, call_data)
8106 Display *display;
8107 XPointer client_data;
8108 XPointer call_data;
8109 {
8110 struct xim_inst_t *xim_inst = (struct xim_inst_t *) client_data;
8111 struct x_display_info *dpyinfo = xim_inst->dpyinfo;
8112
8113 /* We don't support multiple XIM connections. */
8114 if (dpyinfo->xim)
8115 return;
8116
8117 xim_open_dpy (dpyinfo, xim_inst->resource_name);
8118
8119 /* Create XIC for the existing frames on the same display, as long
8120 as they have no XIC. */
8121 if (dpyinfo->xim && dpyinfo->reference_count > 0)
8122 {
8123 Lisp_Object tail, frame;
8124
8125 BLOCK_INPUT;
8126 FOR_EACH_FRAME (tail, frame)
8127 {
8128 struct frame *f = XFRAME (frame);
8129
8130 if (FRAME_X_DISPLAY_INFO (f) == xim_inst->dpyinfo)
8131 if (FRAME_XIC (f) == NULL)
8132 {
8133 create_frame_xic (f);
8134 if (FRAME_XIC_STYLE (f) & XIMStatusArea)
8135 xic_set_statusarea (f);
8136 if (FRAME_XIC_STYLE (f) & XIMPreeditPosition)
8137 {
8138 struct window *w = XWINDOW (f->selected_window);
8139 xic_set_preeditarea (w, w->cursor.x, w->cursor.y);
8140 }
8141 }
8142 }
8143
8144 UNBLOCK_INPUT;
8145 }
8146 }
8147
8148 #endif /* HAVE_X11R6_XIM */
8149
8150
8151 /* Open a connection to the XIM server on display DPYINFO.
8152 RESOURCE_NAME is the resource name for Emacs. On X11R5, open the
8153 connection only at the first time. On X11R6, open the connection
8154 in the XIM instantiate callback function. */
8155
8156 static void
8157 xim_initialize (dpyinfo, resource_name)
8158 struct x_display_info *dpyinfo;
8159 char *resource_name;
8160 {
8161 #ifdef HAVE_XIM
8162 if (use_xim)
8163 {
8164 #ifdef HAVE_X11R6_XIM
8165 struct xim_inst_t *xim_inst;
8166 int len;
8167
8168 dpyinfo->xim = NULL;
8169 xim_inst = (struct xim_inst_t *) xmalloc (sizeof (struct xim_inst_t));
8170 xim_inst->dpyinfo = dpyinfo;
8171 len = strlen (resource_name);
8172 xim_inst->resource_name = (char *) xmalloc (len + 1);
8173 bcopy (resource_name, xim_inst->resource_name, len + 1);
8174 XRegisterIMInstantiateCallback (dpyinfo->display, dpyinfo->xrdb,
8175 resource_name, EMACS_CLASS,
8176 xim_instantiate_callback,
8177 /* This is XPointer in XFree86
8178 but (XPointer *) on Tru64, at
8179 least, hence the configure test. */
8180 (XRegisterIMInstantiateCallback_arg6) xim_inst);
8181 #else /* not HAVE_X11R6_XIM */
8182 dpyinfo->xim = NULL;
8183 xim_open_dpy (dpyinfo, resource_name);
8184 #endif /* not HAVE_X11R6_XIM */
8185
8186 }
8187 else
8188 #endif /* HAVE_XIM */
8189 dpyinfo->xim = NULL;
8190 }
8191
8192
8193 /* Close the connection to the XIM server on display DPYINFO. */
8194
8195 static void
8196 xim_close_dpy (dpyinfo)
8197 struct x_display_info *dpyinfo;
8198 {
8199 #ifdef HAVE_XIM
8200 if (use_xim)
8201 {
8202 #ifdef HAVE_X11R6_XIM
8203 if (dpyinfo->display)
8204 XUnregisterIMInstantiateCallback (dpyinfo->display, dpyinfo->xrdb,
8205 NULL, EMACS_CLASS,
8206 xim_instantiate_callback, NULL);
8207 #endif /* not HAVE_X11R6_XIM */
8208 if (dpyinfo->display)
8209 XCloseIM (dpyinfo->xim);
8210 dpyinfo->xim = NULL;
8211 XFree (dpyinfo->xim_styles);
8212 }
8213 #endif /* HAVE_XIM */
8214 }
8215
8216 #endif /* not HAVE_X11R6_XIM */
8217
8218
8219 \f
8220 /* Calculate the absolute position in frame F
8221 from its current recorded position values and gravity. */
8222
8223 void
8224 x_calc_absolute_position (f)
8225 struct frame *f;
8226 {
8227 int win_x = 0, win_y = 0;
8228 int flags = f->size_hint_flags;
8229
8230 /* We have nothing to do if the current position
8231 is already for the top-left corner. */
8232 if (! ((flags & XNegative) || (flags & YNegative)))
8233 return;
8234
8235 /* Find the offsets of the outside upper-left corner of
8236 the inner window, with respect to the outer window.
8237 But do this only if we will need the results. */
8238 if (f->output_data.x->parent_desc != FRAME_X_DISPLAY_INFO (f)->root_window)
8239 /* This is to get *_pixels_outer_diff. */
8240 x_real_positions (f, &win_x, &win_y);
8241
8242 /* Treat negative positions as relative to the leftmost bottommost
8243 position that fits on the screen. */
8244 if (flags & XNegative)
8245 f->left_pos = (FRAME_X_DISPLAY_INFO (f)->width
8246 - 2 * FRAME_X_OUTPUT (f)->x_pixels_outer_diff
8247 - FRAME_PIXEL_WIDTH (f)
8248 + f->left_pos);
8249
8250 {
8251 int height = FRAME_PIXEL_HEIGHT (f);
8252
8253 #if defined USE_X_TOOLKIT && defined USE_MOTIF
8254 /* Something is fishy here. When using Motif, starting Emacs with
8255 `-g -0-0', the frame appears too low by a few pixels.
8256
8257 This seems to be so because initially, while Emacs is starting,
8258 the column widget's height and the frame's pixel height are
8259 different. The column widget's height is the right one. In
8260 later invocations, when Emacs is up, the frame's pixel height
8261 is right, though.
8262
8263 It's not obvious where the initial small difference comes from.
8264 2000-12-01, gerd. */
8265
8266 XtVaGetValues (f->output_data.x->column_widget, XtNheight, &height, NULL);
8267 #endif
8268
8269 if (flags & YNegative)
8270 f->top_pos = (FRAME_X_DISPLAY_INFO (f)->height
8271 - FRAME_X_OUTPUT (f)->y_pixels_outer_diff
8272
8273 /* Assume the window manager decorations are the same size on
8274 three sides, i.e. left, right and bottom. This is to
8275 compensate for the bottom part. */
8276 - FRAME_X_OUTPUT (f)->x_pixels_outer_diff
8277 - height
8278 + f->top_pos);
8279 }
8280
8281 /* The left_pos and top_pos
8282 are now relative to the top and left screen edges,
8283 so the flags should correspond. */
8284 f->size_hint_flags &= ~ (XNegative | YNegative);
8285 }
8286
8287 /* CHANGE_GRAVITY is 1 when calling from Fset_frame_position,
8288 to really change the position, and 0 when calling from
8289 x_make_frame_visible (in that case, XOFF and YOFF are the current
8290 position values). It is -1 when calling from x_set_frame_parameters,
8291 which means, do adjust for borders but don't change the gravity. */
8292
8293 void
8294 x_set_offset (f, xoff, yoff, change_gravity)
8295 struct frame *f;
8296 register int xoff, yoff;
8297 int change_gravity;
8298 {
8299 int modified_top, modified_left;
8300
8301 if (change_gravity > 0)
8302 {
8303 f->top_pos = yoff;
8304 f->left_pos = xoff;
8305 f->size_hint_flags &= ~ (XNegative | YNegative);
8306 if (xoff < 0)
8307 f->size_hint_flags |= XNegative;
8308 if (yoff < 0)
8309 f->size_hint_flags |= YNegative;
8310 f->win_gravity = NorthWestGravity;
8311 }
8312 x_calc_absolute_position (f);
8313
8314 BLOCK_INPUT;
8315 x_wm_set_size_hint (f, (long) 0, 0);
8316
8317 modified_left = f->left_pos;
8318 modified_top = f->top_pos;
8319
8320 if (FRAME_X_DISPLAY_INFO (f)->wm_type == X_WMTYPE_A)
8321 {
8322 /* Some WMs (twm, wmaker at least) has an offset that is smaller
8323 than the WM decorations. So we use the calculated offset instead
8324 of the WM decoration sizes here (x/y_pixels_outer_diff). */
8325 modified_left += FRAME_X_OUTPUT (f)->move_offset_left;
8326 modified_top += FRAME_X_OUTPUT (f)->move_offset_top;
8327 }
8328
8329 XMoveWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
8330 modified_left, modified_top);
8331
8332 if (FRAME_VISIBLE_P (f)
8333 && FRAME_X_DISPLAY_INFO (f)->wm_type == X_WMTYPE_UNKNOWN)
8334 {
8335 FRAME_X_OUTPUT (f)->check_expected_move = 1;
8336 FRAME_X_OUTPUT (f)->expected_top = f->top_pos;
8337 FRAME_X_OUTPUT (f)->expected_left = f->left_pos;
8338 }
8339
8340 UNBLOCK_INPUT;
8341 }
8342
8343 /* Check if we need to resize the frame due to a fullscreen request.
8344 If so needed, resize the frame. */
8345 static void
8346 x_check_fullscreen (f)
8347 struct frame *f;
8348 {
8349 if (f->want_fullscreen & FULLSCREEN_BOTH)
8350 {
8351 int width, height, ign;
8352
8353 x_real_positions (f, &f->left_pos, &f->top_pos);
8354
8355 x_fullscreen_adjust (f, &width, &height, &ign, &ign);
8356
8357 /* We do not need to move the window, it shall be taken care of
8358 when setting WM manager hints.
8359 If the frame is visible already, the position is checked by
8360 x_check_expected_move. */
8361 if (FRAME_COLS (f) != width || FRAME_LINES (f) != height)
8362 {
8363 change_frame_size (f, height, width, 0, 1, 0);
8364 SET_FRAME_GARBAGED (f);
8365 cancel_mouse_face (f);
8366
8367 /* Wait for the change of frame size to occur */
8368 f->want_fullscreen |= FULLSCREEN_WAIT;
8369 }
8370 }
8371 }
8372
8373 /* If frame parameters are set after the frame is mapped, we need to move
8374 the window.
8375 Some window managers moves the window to the right position, some
8376 moves the outer window manager window to the specified position.
8377 Here we check that we are in the right spot. If not, make a second
8378 move, assuming we are dealing with the second kind of window manager. */
8379 static void
8380 x_check_expected_move (f)
8381 struct frame *f;
8382 {
8383 if (FRAME_X_OUTPUT (f)->check_expected_move)
8384 {
8385 int expect_top = FRAME_X_OUTPUT (f)->expected_top;
8386 int expect_left = FRAME_X_OUTPUT (f)->expected_left;
8387
8388 if (expect_top != f->top_pos || expect_left != f->left_pos)
8389 {
8390 FRAME_X_DISPLAY_INFO (f)->wm_type = X_WMTYPE_A;
8391 FRAME_X_OUTPUT (f)->move_offset_left = expect_left - f->left_pos;
8392 FRAME_X_OUTPUT (f)->move_offset_top = expect_top - f->top_pos;
8393
8394 x_set_offset (f, expect_left, expect_top, 1);
8395 }
8396 else if (FRAME_X_DISPLAY_INFO (f)->wm_type == X_WMTYPE_UNKNOWN)
8397 FRAME_X_DISPLAY_INFO (f)->wm_type = X_WMTYPE_B;
8398
8399 /* Just do this once */
8400 FRAME_X_OUTPUT (f)->check_expected_move = 0;
8401 }
8402 }
8403
8404
8405 /* Change the size of frame F's X window to COLS/ROWS in the case F
8406 doesn't have a widget. If CHANGE_GRAVITY is 1, we change to
8407 top-left-corner window gravity for this size change and subsequent
8408 size changes. Otherwise we leave the window gravity unchanged. */
8409
8410 static void
8411 x_set_window_size_1 (f, change_gravity, cols, rows)
8412 struct frame *f;
8413 int change_gravity;
8414 int cols, rows;
8415 {
8416 int pixelwidth, pixelheight;
8417
8418 check_frame_size (f, &rows, &cols);
8419 f->scroll_bar_actual_width
8420 = (!FRAME_HAS_VERTICAL_SCROLL_BARS (f)
8421 ? 0
8422 : FRAME_CONFIG_SCROLL_BAR_WIDTH (f) > 0
8423 ? FRAME_CONFIG_SCROLL_BAR_WIDTH (f)
8424 : (FRAME_CONFIG_SCROLL_BAR_COLS (f) * FRAME_COLUMN_WIDTH (f)));
8425
8426 compute_fringe_widths (f, 0);
8427
8428 pixelwidth = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, cols);
8429 pixelheight = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, rows);
8430
8431 f->win_gravity = NorthWestGravity;
8432 x_wm_set_size_hint (f, (long) 0, 0);
8433
8434 XSync (FRAME_X_DISPLAY (f), False);
8435 XResizeWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
8436 pixelwidth, pixelheight);
8437
8438 /* Now, strictly speaking, we can't be sure that this is accurate,
8439 but the window manager will get around to dealing with the size
8440 change request eventually, and we'll hear how it went when the
8441 ConfigureNotify event gets here.
8442
8443 We could just not bother storing any of this information here,
8444 and let the ConfigureNotify event set everything up, but that
8445 might be kind of confusing to the Lisp code, since size changes
8446 wouldn't be reported in the frame parameters until some random
8447 point in the future when the ConfigureNotify event arrives.
8448
8449 We pass 1 for DELAY since we can't run Lisp code inside of
8450 a BLOCK_INPUT. */
8451 change_frame_size (f, rows, cols, 0, 1, 0);
8452 FRAME_PIXEL_WIDTH (f) = pixelwidth;
8453 FRAME_PIXEL_HEIGHT (f) = pixelheight;
8454
8455 /* We've set {FRAME,PIXEL}_{WIDTH,HEIGHT} to the values we hope to
8456 receive in the ConfigureNotify event; if we get what we asked
8457 for, then the event won't cause the screen to become garbaged, so
8458 we have to make sure to do it here. */
8459 SET_FRAME_GARBAGED (f);
8460
8461 XFlush (FRAME_X_DISPLAY (f));
8462 }
8463
8464
8465 /* Call this to change the size of frame F's x-window.
8466 If CHANGE_GRAVITY is 1, we change to top-left-corner window gravity
8467 for this size change and subsequent size changes.
8468 Otherwise we leave the window gravity unchanged. */
8469
8470 void
8471 x_set_window_size (f, change_gravity, cols, rows)
8472 struct frame *f;
8473 int change_gravity;
8474 int cols, rows;
8475 {
8476 BLOCK_INPUT;
8477
8478 #ifdef USE_GTK
8479 if (FRAME_GTK_WIDGET (f))
8480 xg_frame_set_char_size (f, cols, rows);
8481 else
8482 x_set_window_size_1 (f, change_gravity, cols, rows);
8483 #elif USE_X_TOOLKIT
8484
8485 if (f->output_data.x->widget != NULL)
8486 {
8487 /* The x and y position of the widget is clobbered by the
8488 call to XtSetValues within EmacsFrameSetCharSize.
8489 This is a real kludge, but I don't understand Xt so I can't
8490 figure out a correct fix. Can anyone else tell me? -- rms. */
8491 int xpos = f->output_data.x->widget->core.x;
8492 int ypos = f->output_data.x->widget->core.y;
8493 EmacsFrameSetCharSize (f->output_data.x->edit_widget, cols, rows);
8494 f->output_data.x->widget->core.x = xpos;
8495 f->output_data.x->widget->core.y = ypos;
8496 }
8497 else
8498 x_set_window_size_1 (f, change_gravity, cols, rows);
8499
8500 #else /* not USE_X_TOOLKIT */
8501
8502 x_set_window_size_1 (f, change_gravity, cols, rows);
8503
8504 #endif /* not USE_X_TOOLKIT */
8505
8506 /* If cursor was outside the new size, mark it as off. */
8507 mark_window_cursors_off (XWINDOW (f->root_window));
8508
8509 /* Clear out any recollection of where the mouse highlighting was,
8510 since it might be in a place that's outside the new frame size.
8511 Actually checking whether it is outside is a pain in the neck,
8512 so don't try--just let the highlighting be done afresh with new size. */
8513 cancel_mouse_face (f);
8514
8515 UNBLOCK_INPUT;
8516 }
8517 \f
8518 /* Mouse warping. */
8519
8520 void
8521 x_set_mouse_position (f, x, y)
8522 struct frame *f;
8523 int x, y;
8524 {
8525 int pix_x, pix_y;
8526
8527 pix_x = FRAME_COL_TO_PIXEL_X (f, x) + FRAME_COLUMN_WIDTH (f) / 2;
8528 pix_y = FRAME_LINE_TO_PIXEL_Y (f, y) + FRAME_LINE_HEIGHT (f) / 2;
8529
8530 if (pix_x < 0) pix_x = 0;
8531 if (pix_x > FRAME_PIXEL_WIDTH (f)) pix_x = FRAME_PIXEL_WIDTH (f);
8532
8533 if (pix_y < 0) pix_y = 0;
8534 if (pix_y > FRAME_PIXEL_HEIGHT (f)) pix_y = FRAME_PIXEL_HEIGHT (f);
8535
8536 BLOCK_INPUT;
8537
8538 XWarpPointer (FRAME_X_DISPLAY (f), None, FRAME_X_WINDOW (f),
8539 0, 0, 0, 0, pix_x, pix_y);
8540 UNBLOCK_INPUT;
8541 }
8542
8543 /* Move the mouse to position pixel PIX_X, PIX_Y relative to frame F. */
8544
8545 void
8546 x_set_mouse_pixel_position (f, pix_x, pix_y)
8547 struct frame *f;
8548 int pix_x, pix_y;
8549 {
8550 BLOCK_INPUT;
8551
8552 XWarpPointer (FRAME_X_DISPLAY (f), None, FRAME_X_WINDOW (f),
8553 0, 0, 0, 0, pix_x, pix_y);
8554 UNBLOCK_INPUT;
8555 }
8556 \f
8557 /* focus shifting, raising and lowering. */
8558
8559 void
8560 x_focus_on_frame (f)
8561 struct frame *f;
8562 {
8563 #if 0 /* This proves to be unpleasant. */
8564 x_raise_frame (f);
8565 #endif
8566 #if 0
8567 /* I don't think that the ICCCM allows programs to do things like this
8568 without the interaction of the window manager. Whatever you end up
8569 doing with this code, do it to x_unfocus_frame too. */
8570 XSetInputFocus (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
8571 RevertToPointerRoot, CurrentTime);
8572 #endif /* ! 0 */
8573 }
8574
8575 void
8576 x_unfocus_frame (f)
8577 struct frame *f;
8578 {
8579 #if 0
8580 /* Look at the remarks in x_focus_on_frame. */
8581 if (FRAME_X_DISPLAY_INFO (f)->x_focus_frame == f)
8582 XSetInputFocus (FRAME_X_DISPLAY (f), PointerRoot,
8583 RevertToPointerRoot, CurrentTime);
8584 #endif /* ! 0 */
8585 }
8586
8587 /* Raise frame F. */
8588
8589 void
8590 x_raise_frame (f)
8591 struct frame *f;
8592 {
8593 if (f->async_visible)
8594 {
8595 BLOCK_INPUT;
8596 XRaiseWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f));
8597 XFlush (FRAME_X_DISPLAY (f));
8598 UNBLOCK_INPUT;
8599 }
8600 }
8601
8602 /* Lower frame F. */
8603
8604 void
8605 x_lower_frame (f)
8606 struct frame *f;
8607 {
8608 if (f->async_visible)
8609 {
8610 BLOCK_INPUT;
8611 XLowerWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f));
8612 XFlush (FRAME_X_DISPLAY (f));
8613 UNBLOCK_INPUT;
8614 }
8615 }
8616
8617 static void
8618 XTframe_raise_lower (f, raise_flag)
8619 FRAME_PTR f;
8620 int raise_flag;
8621 {
8622 if (raise_flag)
8623 x_raise_frame (f);
8624 else
8625 x_lower_frame (f);
8626 }
8627 \f
8628 /* Change of visibility. */
8629
8630 /* This tries to wait until the frame is really visible.
8631 However, if the window manager asks the user where to position
8632 the frame, this will return before the user finishes doing that.
8633 The frame will not actually be visible at that time,
8634 but it will become visible later when the window manager
8635 finishes with it. */
8636
8637 void
8638 x_make_frame_visible (f)
8639 struct frame *f;
8640 {
8641 Lisp_Object type;
8642 int original_top, original_left;
8643 int retry_count = 2;
8644
8645 retry:
8646
8647 BLOCK_INPUT;
8648
8649 type = x_icon_type (f);
8650 if (!NILP (type))
8651 x_bitmap_icon (f, type);
8652
8653 if (! FRAME_VISIBLE_P (f))
8654 {
8655 /* We test FRAME_GARBAGED_P here to make sure we don't
8656 call x_set_offset a second time
8657 if we get to x_make_frame_visible a second time
8658 before the window gets really visible. */
8659 if (! FRAME_ICONIFIED_P (f)
8660 && ! f->output_data.x->asked_for_visible)
8661 x_set_offset (f, f->left_pos, f->top_pos, 0);
8662
8663 f->output_data.x->asked_for_visible = 1;
8664
8665 if (! EQ (Vx_no_window_manager, Qt))
8666 x_wm_set_window_state (f, NormalState);
8667 #ifdef USE_X_TOOLKIT
8668 /* This was XtPopup, but that did nothing for an iconified frame. */
8669 XtMapWidget (f->output_data.x->widget);
8670 #else /* not USE_X_TOOLKIT */
8671 #ifdef USE_GTK
8672 gtk_widget_show_all (FRAME_GTK_OUTER_WIDGET (f));
8673 gtk_window_deiconify (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
8674 #else
8675 XMapRaised (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
8676 #endif /* not USE_GTK */
8677 #endif /* not USE_X_TOOLKIT */
8678 #if 0 /* This seems to bring back scroll bars in the wrong places
8679 if the window configuration has changed. They seem
8680 to come back ok without this. */
8681 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
8682 XMapSubwindows (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
8683 #endif
8684 }
8685
8686 XFlush (FRAME_X_DISPLAY (f));
8687
8688 /* Synchronize to ensure Emacs knows the frame is visible
8689 before we do anything else. We do this loop with input not blocked
8690 so that incoming events are handled. */
8691 {
8692 Lisp_Object frame;
8693 int count;
8694 /* This must be before UNBLOCK_INPUT
8695 since events that arrive in response to the actions above
8696 will set it when they are handled. */
8697 int previously_visible = f->output_data.x->has_been_visible;
8698
8699 original_left = f->left_pos;
8700 original_top = f->top_pos;
8701
8702 /* This must come after we set COUNT. */
8703 UNBLOCK_INPUT;
8704
8705 /* We unblock here so that arriving X events are processed. */
8706
8707 /* Now move the window back to where it was "supposed to be".
8708 But don't do it if the gravity is negative.
8709 When the gravity is negative, this uses a position
8710 that is 3 pixels too low. Perhaps that's really the border width.
8711
8712 Don't do this if the window has never been visible before,
8713 because the window manager may choose the position
8714 and we don't want to override it. */
8715
8716 if (! FRAME_VISIBLE_P (f) && ! FRAME_ICONIFIED_P (f)
8717 && f->win_gravity == NorthWestGravity
8718 && previously_visible)
8719 {
8720 Drawable rootw;
8721 int x, y;
8722 unsigned int width, height, border, depth;
8723
8724 BLOCK_INPUT;
8725
8726 /* On some window managers (such as FVWM) moving an existing
8727 window, even to the same place, causes the window manager
8728 to introduce an offset. This can cause the window to move
8729 to an unexpected location. Check the geometry (a little
8730 slow here) and then verify that the window is in the right
8731 place. If the window is not in the right place, move it
8732 there, and take the potential window manager hit. */
8733 XGetGeometry (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
8734 &rootw, &x, &y, &width, &height, &border, &depth);
8735
8736 if (original_left != x || original_top != y)
8737 XMoveWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f),
8738 original_left, original_top);
8739
8740 UNBLOCK_INPUT;
8741 }
8742
8743 XSETFRAME (frame, f);
8744
8745 /* Wait until the frame is visible. Process X events until a
8746 MapNotify event has been seen, or until we think we won't get a
8747 MapNotify at all.. */
8748 for (count = input_signal_count + 10;
8749 input_signal_count < count && !FRAME_VISIBLE_P (f);)
8750 {
8751 /* Force processing of queued events. */
8752 x_sync (f);
8753
8754 /* Machines that do polling rather than SIGIO have been
8755 observed to go into a busy-wait here. So we'll fake an
8756 alarm signal to let the handler know that there's something
8757 to be read. We used to raise a real alarm, but it seems
8758 that the handler isn't always enabled here. This is
8759 probably a bug. */
8760 if (input_polling_used ())
8761 {
8762 /* It could be confusing if a real alarm arrives while
8763 processing the fake one. Turn it off and let the
8764 handler reset it. */
8765 extern void poll_for_input_1 P_ ((void));
8766 int old_poll_suppress_count = poll_suppress_count;
8767 poll_suppress_count = 1;
8768 poll_for_input_1 ();
8769 poll_suppress_count = old_poll_suppress_count;
8770 }
8771
8772 /* See if a MapNotify event has been processed. */
8773 FRAME_SAMPLE_VISIBILITY (f);
8774 }
8775
8776 /* 2000-09-28: In
8777
8778 (let ((f (selected-frame)))
8779 (iconify-frame f)
8780 (raise-frame f))
8781
8782 the frame is not raised with various window managers on
8783 FreeBSD, GNU/Linux and Solaris. It turns out that, for some
8784 unknown reason, the call to XtMapWidget is completely ignored.
8785 Mapping the widget a second time works. */
8786
8787 if (!FRAME_VISIBLE_P (f) && --retry_count > 0)
8788 goto retry;
8789 }
8790 }
8791
8792 /* Change from mapped state to withdrawn state. */
8793
8794 /* Make the frame visible (mapped and not iconified). */
8795
8796 void
8797 x_make_frame_invisible (f)
8798 struct frame *f;
8799 {
8800 Window window;
8801
8802 /* Use the frame's outermost window, not the one we normally draw on. */
8803 window = FRAME_OUTER_WINDOW (f);
8804
8805 /* Don't keep the highlight on an invisible frame. */
8806 if (FRAME_X_DISPLAY_INFO (f)->x_highlight_frame == f)
8807 FRAME_X_DISPLAY_INFO (f)->x_highlight_frame = 0;
8808
8809 #if 0/* This might add unreliability; I don't trust it -- rms. */
8810 if (! f->async_visible && ! f->async_iconified)
8811 return;
8812 #endif
8813
8814 BLOCK_INPUT;
8815
8816 /* Before unmapping the window, update the WM_SIZE_HINTS property to claim
8817 that the current position of the window is user-specified, rather than
8818 program-specified, so that when the window is mapped again, it will be
8819 placed at the same location, without forcing the user to position it
8820 by hand again (they have already done that once for this window.) */
8821 x_wm_set_size_hint (f, (long) 0, 1);
8822
8823 #ifdef USE_GTK
8824 if (FRAME_GTK_OUTER_WIDGET (f))
8825 gtk_widget_hide (FRAME_GTK_OUTER_WIDGET (f));
8826 else
8827 #endif
8828 {
8829 #ifdef HAVE_X11R4
8830
8831 if (! XWithdrawWindow (FRAME_X_DISPLAY (f), window,
8832 DefaultScreen (FRAME_X_DISPLAY (f))))
8833 {
8834 UNBLOCK_INPUT_RESIGNAL;
8835 error ("Can't notify window manager of window withdrawal");
8836 }
8837 #else /* ! defined (HAVE_X11R4) */
8838
8839 /* Tell the window manager what we're going to do. */
8840 if (! EQ (Vx_no_window_manager, Qt))
8841 {
8842 XEvent unmap;
8843
8844 unmap.xunmap.type = UnmapNotify;
8845 unmap.xunmap.window = window;
8846 unmap.xunmap.event = DefaultRootWindow (FRAME_X_DISPLAY (f));
8847 unmap.xunmap.from_configure = False;
8848 if (! XSendEvent (FRAME_X_DISPLAY (f),
8849 DefaultRootWindow (FRAME_X_DISPLAY (f)),
8850 False,
8851 SubstructureRedirectMaskSubstructureNotifyMask,
8852 &unmap))
8853 {
8854 UNBLOCK_INPUT_RESIGNAL;
8855 error ("Can't notify window manager of withdrawal");
8856 }
8857 }
8858
8859 /* Unmap the window ourselves. Cheeky! */
8860 XUnmapWindow (FRAME_X_DISPLAY (f), window);
8861 #endif /* ! defined (HAVE_X11R4) */
8862 }
8863
8864 /* We can't distinguish this from iconification
8865 just by the event that we get from the server.
8866 So we can't win using the usual strategy of letting
8867 FRAME_SAMPLE_VISIBILITY set this. So do it by hand,
8868 and synchronize with the server to make sure we agree. */
8869 f->visible = 0;
8870 FRAME_ICONIFIED_P (f) = 0;
8871 f->async_visible = 0;
8872 f->async_iconified = 0;
8873
8874 x_sync (f);
8875
8876 UNBLOCK_INPUT;
8877 }
8878
8879 /* Change window state from mapped to iconified. */
8880
8881 void
8882 x_iconify_frame (f)
8883 struct frame *f;
8884 {
8885 int result;
8886 Lisp_Object type;
8887
8888 /* Don't keep the highlight on an invisible frame. */
8889 if (FRAME_X_DISPLAY_INFO (f)->x_highlight_frame == f)
8890 FRAME_X_DISPLAY_INFO (f)->x_highlight_frame = 0;
8891
8892 if (f->async_iconified)
8893 return;
8894
8895 BLOCK_INPUT;
8896
8897 FRAME_SAMPLE_VISIBILITY (f);
8898
8899 type = x_icon_type (f);
8900 if (!NILP (type))
8901 x_bitmap_icon (f, type);
8902
8903 #ifdef USE_GTK
8904 if (FRAME_GTK_OUTER_WIDGET (f))
8905 {
8906 if (! FRAME_VISIBLE_P (f))
8907 gtk_widget_show_all (FRAME_GTK_OUTER_WIDGET (f));
8908
8909 gtk_window_iconify (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
8910 f->iconified = 1;
8911 f->visible = 1;
8912 f->async_iconified = 1;
8913 f->async_visible = 0;
8914 UNBLOCK_INPUT;
8915 return;
8916 }
8917 #endif
8918
8919 #ifdef USE_X_TOOLKIT
8920
8921 if (! FRAME_VISIBLE_P (f))
8922 {
8923 if (! EQ (Vx_no_window_manager, Qt))
8924 x_wm_set_window_state (f, IconicState);
8925 /* This was XtPopup, but that did nothing for an iconified frame. */
8926 XtMapWidget (f->output_data.x->widget);
8927 /* The server won't give us any event to indicate
8928 that an invisible frame was changed to an icon,
8929 so we have to record it here. */
8930 f->iconified = 1;
8931 f->visible = 1;
8932 f->async_iconified = 1;
8933 f->async_visible = 0;
8934 UNBLOCK_INPUT;
8935 return;
8936 }
8937
8938 result = XIconifyWindow (FRAME_X_DISPLAY (f),
8939 XtWindow (f->output_data.x->widget),
8940 DefaultScreen (FRAME_X_DISPLAY (f)));
8941 UNBLOCK_INPUT;
8942
8943 if (!result)
8944 error ("Can't notify window manager of iconification");
8945
8946 f->async_iconified = 1;
8947 f->async_visible = 0;
8948
8949
8950 BLOCK_INPUT;
8951 XFlush (FRAME_X_DISPLAY (f));
8952 UNBLOCK_INPUT;
8953 #else /* not USE_X_TOOLKIT */
8954
8955 /* Make sure the X server knows where the window should be positioned,
8956 in case the user deiconifies with the window manager. */
8957 if (! FRAME_VISIBLE_P (f) && !FRAME_ICONIFIED_P (f))
8958 x_set_offset (f, f->left_pos, f->top_pos, 0);
8959
8960 /* Since we don't know which revision of X we're running, we'll use both
8961 the X11R3 and X11R4 techniques. I don't know if this is a good idea. */
8962
8963 /* X11R4: send a ClientMessage to the window manager using the
8964 WM_CHANGE_STATE type. */
8965 {
8966 XEvent message;
8967
8968 message.xclient.window = FRAME_X_WINDOW (f);
8969 message.xclient.type = ClientMessage;
8970 message.xclient.message_type = FRAME_X_DISPLAY_INFO (f)->Xatom_wm_change_state;
8971 message.xclient.format = 32;
8972 message.xclient.data.l[0] = IconicState;
8973
8974 if (! XSendEvent (FRAME_X_DISPLAY (f),
8975 DefaultRootWindow (FRAME_X_DISPLAY (f)),
8976 False,
8977 SubstructureRedirectMask | SubstructureNotifyMask,
8978 &message))
8979 {
8980 UNBLOCK_INPUT_RESIGNAL;
8981 error ("Can't notify window manager of iconification");
8982 }
8983 }
8984
8985 /* X11R3: set the initial_state field of the window manager hints to
8986 IconicState. */
8987 x_wm_set_window_state (f, IconicState);
8988
8989 if (!FRAME_VISIBLE_P (f))
8990 {
8991 /* If the frame was withdrawn, before, we must map it. */
8992 XMapRaised (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
8993 }
8994
8995 f->async_iconified = 1;
8996 f->async_visible = 0;
8997
8998 XFlush (FRAME_X_DISPLAY (f));
8999 UNBLOCK_INPUT;
9000 #endif /* not USE_X_TOOLKIT */
9001 }
9002
9003 \f
9004 /* Free X resources of frame F. */
9005
9006 void
9007 x_free_frame_resources (f)
9008 struct frame *f;
9009 {
9010 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
9011 Lisp_Object bar;
9012 struct scroll_bar *b;
9013
9014 BLOCK_INPUT;
9015
9016 /* If a display connection is dead, don't try sending more
9017 commands to the X server. */
9018 if (dpyinfo->display)
9019 {
9020 if (f->output_data.x->icon_desc)
9021 XDestroyWindow (FRAME_X_DISPLAY (f), f->output_data.x->icon_desc);
9022
9023 #ifdef USE_X_TOOLKIT
9024 /* Explicitly destroy the scroll bars of the frame. Without
9025 this, we get "BadDrawable" errors from the toolkit later on,
9026 presumably from expose events generated for the disappearing
9027 toolkit scroll bars. */
9028 for (bar = FRAME_SCROLL_BARS (f); !NILP (bar); bar = b->next)
9029 {
9030 b = XSCROLL_BAR (bar);
9031 x_scroll_bar_remove (b);
9032 }
9033 #endif
9034
9035 #ifdef HAVE_X_I18N
9036 if (FRAME_XIC (f))
9037 free_frame_xic (f);
9038 #endif
9039
9040 #ifdef USE_X_TOOLKIT
9041 if (f->output_data.x->widget)
9042 {
9043 XtDestroyWidget (f->output_data.x->widget);
9044 f->output_data.x->widget = NULL;
9045 }
9046 /* Tooltips don't have widgets, only a simple X window, even if
9047 we are using a toolkit. */
9048 else if (FRAME_X_WINDOW (f))
9049 XDestroyWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
9050
9051 free_frame_menubar (f);
9052 #else /* !USE_X_TOOLKIT */
9053
9054 #ifdef USE_GTK
9055 /* In the GTK version, tooltips are normal X
9056 frames. We must check and free both types. */
9057 if (FRAME_GTK_OUTER_WIDGET (f))
9058 {
9059 gtk_widget_destroy (FRAME_GTK_OUTER_WIDGET (f));
9060 FRAME_X_WINDOW (f) = 0; /* Set to avoid XDestroyWindow below */
9061 FRAME_GTK_OUTER_WIDGET (f) = 0;
9062 }
9063 #endif /* USE_GTK */
9064
9065 if (FRAME_X_WINDOW (f))
9066 XDestroyWindow (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
9067 #endif /* !USE_X_TOOLKIT */
9068
9069 unload_color (f, f->output_data.x->foreground_pixel);
9070 unload_color (f, f->output_data.x->background_pixel);
9071 unload_color (f, f->output_data.x->cursor_pixel);
9072 unload_color (f, f->output_data.x->cursor_foreground_pixel);
9073 unload_color (f, f->output_data.x->border_pixel);
9074 unload_color (f, f->output_data.x->mouse_pixel);
9075
9076 if (f->output_data.x->scroll_bar_background_pixel != -1)
9077 unload_color (f, f->output_data.x->scroll_bar_background_pixel);
9078 if (f->output_data.x->scroll_bar_foreground_pixel != -1)
9079 unload_color (f, f->output_data.x->scroll_bar_foreground_pixel);
9080 #ifdef USE_TOOLKIT_SCROLL_BARS
9081 /* Scrollbar shadow colors. */
9082 if (f->output_data.x->scroll_bar_top_shadow_pixel != -1)
9083 unload_color (f, f->output_data.x->scroll_bar_top_shadow_pixel);
9084 if (f->output_data.x->scroll_bar_bottom_shadow_pixel != -1)
9085 unload_color (f, f->output_data.x->scroll_bar_bottom_shadow_pixel);
9086 #endif /* USE_TOOLKIT_SCROLL_BARS */
9087 if (f->output_data.x->white_relief.allocated_p)
9088 unload_color (f, f->output_data.x->white_relief.pixel);
9089 if (f->output_data.x->black_relief.allocated_p)
9090 unload_color (f, f->output_data.x->black_relief.pixel);
9091
9092 if (FRAME_FACE_CACHE (f))
9093 free_frame_faces (f);
9094
9095 x_free_gcs (f);
9096 XFlush (FRAME_X_DISPLAY (f));
9097 }
9098
9099 if (f->output_data.x->saved_menu_event)
9100 xfree (f->output_data.x->saved_menu_event);
9101
9102 xfree (f->output_data.x);
9103 f->output_data.x = NULL;
9104
9105 if (f == dpyinfo->x_focus_frame)
9106 dpyinfo->x_focus_frame = 0;
9107 if (f == dpyinfo->x_focus_event_frame)
9108 dpyinfo->x_focus_event_frame = 0;
9109 if (f == dpyinfo->x_highlight_frame)
9110 dpyinfo->x_highlight_frame = 0;
9111
9112 if (f == dpyinfo->mouse_face_mouse_frame)
9113 {
9114 dpyinfo->mouse_face_beg_row
9115 = dpyinfo->mouse_face_beg_col = -1;
9116 dpyinfo->mouse_face_end_row
9117 = dpyinfo->mouse_face_end_col = -1;
9118 dpyinfo->mouse_face_window = Qnil;
9119 dpyinfo->mouse_face_deferred_gc = 0;
9120 dpyinfo->mouse_face_mouse_frame = 0;
9121 }
9122
9123 UNBLOCK_INPUT;
9124 }
9125
9126
9127 /* Destroy the X window of frame F. */
9128
9129 void
9130 x_destroy_window (f)
9131 struct frame *f;
9132 {
9133 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
9134
9135 /* If a display connection is dead, don't try sending more
9136 commands to the X server. */
9137 if (dpyinfo->display != 0)
9138 x_free_frame_resources (f);
9139
9140 dpyinfo->reference_count--;
9141 }
9142
9143 \f
9144 /* Setting window manager hints. */
9145
9146 /* Set the normal size hints for the window manager, for frame F.
9147 FLAGS is the flags word to use--or 0 meaning preserve the flags
9148 that the window now has.
9149 If USER_POSITION is nonzero, we set the USPosition
9150 flag (this is useful when FLAGS is 0).
9151 The GTK version is in gtkutils.c */
9152
9153 #ifndef USE_GTK
9154 void
9155 x_wm_set_size_hint (f, flags, user_position)
9156 struct frame *f;
9157 long flags;
9158 int user_position;
9159 {
9160 XSizeHints size_hints;
9161
9162 #ifdef USE_X_TOOLKIT
9163 Arg al[2];
9164 int ac = 0;
9165 Dimension widget_width, widget_height;
9166 #endif
9167
9168 Window window = FRAME_OUTER_WINDOW (f);
9169
9170 /* Setting PMaxSize caused various problems. */
9171 size_hints.flags = PResizeInc | PMinSize /* | PMaxSize */;
9172
9173 size_hints.x = f->left_pos;
9174 size_hints.y = f->top_pos;
9175
9176 #ifdef USE_X_TOOLKIT
9177 XtSetArg (al[ac], XtNwidth, &widget_width); ac++;
9178 XtSetArg (al[ac], XtNheight, &widget_height); ac++;
9179 XtGetValues (f->output_data.x->widget, al, ac);
9180 size_hints.height = widget_height;
9181 size_hints.width = widget_width;
9182 #else /* not USE_X_TOOLKIT */
9183 size_hints.height = FRAME_PIXEL_HEIGHT (f);
9184 size_hints.width = FRAME_PIXEL_WIDTH (f);
9185 #endif /* not USE_X_TOOLKIT */
9186
9187 size_hints.width_inc = FRAME_COLUMN_WIDTH (f);
9188 size_hints.height_inc = FRAME_LINE_HEIGHT (f);
9189 size_hints.max_width
9190 = FRAME_X_DISPLAY_INFO (f)->width - FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, 0);
9191 size_hints.max_height
9192 = FRAME_X_DISPLAY_INFO (f)->height - FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, 0);
9193
9194 /* Calculate the base and minimum sizes.
9195
9196 (When we use the X toolkit, we don't do it here.
9197 Instead we copy the values that the widgets are using, below.) */
9198 #ifndef USE_X_TOOLKIT
9199 {
9200 int base_width, base_height;
9201 int min_rows = 0, min_cols = 0;
9202
9203 base_width = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, 0);
9204 base_height = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, 0);
9205
9206 check_frame_size (f, &min_rows, &min_cols);
9207
9208 /* The window manager uses the base width hints to calculate the
9209 current number of rows and columns in the frame while
9210 resizing; min_width and min_height aren't useful for this
9211 purpose, since they might not give the dimensions for a
9212 zero-row, zero-column frame.
9213
9214 We use the base_width and base_height members if we have
9215 them; otherwise, we set the min_width and min_height members
9216 to the size for a zero x zero frame. */
9217
9218 #ifdef HAVE_X11R4
9219 size_hints.flags |= PBaseSize;
9220 size_hints.base_width = base_width;
9221 size_hints.base_height = base_height;
9222 size_hints.min_width = base_width + min_cols * size_hints.width_inc;
9223 size_hints.min_height = base_height + min_rows * size_hints.height_inc;
9224 #else
9225 size_hints.min_width = base_width;
9226 size_hints.min_height = base_height;
9227 #endif
9228 }
9229
9230 /* If we don't need the old flags, we don't need the old hint at all. */
9231 if (flags)
9232 {
9233 size_hints.flags |= flags;
9234 goto no_read;
9235 }
9236 #endif /* not USE_X_TOOLKIT */
9237
9238 {
9239 XSizeHints hints; /* Sometimes I hate X Windows... */
9240 long supplied_return;
9241 int value;
9242
9243 #ifdef HAVE_X11R4
9244 value = XGetWMNormalHints (FRAME_X_DISPLAY (f), window, &hints,
9245 &supplied_return);
9246 #else
9247 value = XGetNormalHints (FRAME_X_DISPLAY (f), window, &hints);
9248 #endif
9249
9250 #ifdef USE_X_TOOLKIT
9251 size_hints.base_height = hints.base_height;
9252 size_hints.base_width = hints.base_width;
9253 size_hints.min_height = hints.min_height;
9254 size_hints.min_width = hints.min_width;
9255 #endif
9256
9257 if (flags)
9258 size_hints.flags |= flags;
9259 else
9260 {
9261 if (value == 0)
9262 hints.flags = 0;
9263 if (hints.flags & PSize)
9264 size_hints.flags |= PSize;
9265 if (hints.flags & PPosition)
9266 size_hints.flags |= PPosition;
9267 if (hints.flags & USPosition)
9268 size_hints.flags |= USPosition;
9269 if (hints.flags & USSize)
9270 size_hints.flags |= USSize;
9271 }
9272 }
9273
9274 #ifndef USE_X_TOOLKIT
9275 no_read:
9276 #endif
9277
9278 #ifdef PWinGravity
9279 size_hints.win_gravity = f->win_gravity;
9280 size_hints.flags |= PWinGravity;
9281
9282 if (user_position)
9283 {
9284 size_hints.flags &= ~ PPosition;
9285 size_hints.flags |= USPosition;
9286 }
9287 #endif /* PWinGravity */
9288
9289 #ifdef HAVE_X11R4
9290 XSetWMNormalHints (FRAME_X_DISPLAY (f), window, &size_hints);
9291 #else
9292 XSetNormalHints (FRAME_X_DISPLAY (f), window, &size_hints);
9293 #endif
9294 }
9295 #endif /* not USE_GTK */
9296
9297 /* Used for IconicState or NormalState */
9298
9299 void
9300 x_wm_set_window_state (f, state)
9301 struct frame *f;
9302 int state;
9303 {
9304 #ifdef USE_X_TOOLKIT
9305 Arg al[1];
9306
9307 XtSetArg (al[0], XtNinitialState, state);
9308 XtSetValues (f->output_data.x->widget, al, 1);
9309 #else /* not USE_X_TOOLKIT */
9310 Window window = FRAME_X_WINDOW (f);
9311
9312 f->output_data.x->wm_hints.flags |= StateHint;
9313 f->output_data.x->wm_hints.initial_state = state;
9314
9315 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints);
9316 #endif /* not USE_X_TOOLKIT */
9317 }
9318
9319 void
9320 x_wm_set_icon_pixmap (f, pixmap_id)
9321 struct frame *f;
9322 int pixmap_id;
9323 {
9324 Pixmap icon_pixmap, icon_mask;
9325
9326 #ifndef USE_X_TOOLKIT
9327 Window window = FRAME_OUTER_WINDOW (f);
9328 #endif
9329
9330 if (pixmap_id > 0)
9331 {
9332 icon_pixmap = x_bitmap_pixmap (f, pixmap_id);
9333 f->output_data.x->wm_hints.icon_pixmap = icon_pixmap;
9334 icon_mask = x_bitmap_mask (f, pixmap_id);
9335 f->output_data.x->wm_hints.icon_mask = icon_mask;
9336 }
9337 else
9338 {
9339 /* It seems there is no way to turn off use of an icon pixmap.
9340 The following line does it, only if no icon has yet been created,
9341 for some window managers. But with mwm it crashes.
9342 Some people say it should clear the IconPixmapHint bit in this case,
9343 but that doesn't work, and the X consortium said it isn't the
9344 right thing at all. Since there is no way to win,
9345 best to explicitly give up. */
9346 #if 0
9347 f->output_data.x->wm_hints.icon_pixmap = None;
9348 f->output_data.x->wm_hints.icon_mask = None;
9349 #else
9350 return;
9351 #endif
9352 }
9353
9354 #ifdef USE_X_TOOLKIT /* same as in x_wm_set_window_state. */
9355
9356 {
9357 Arg al[1];
9358 XtSetArg (al[0], XtNiconPixmap, icon_pixmap);
9359 XtSetValues (f->output_data.x->widget, al, 1);
9360 XtSetArg (al[0], XtNiconMask, icon_mask);
9361 XtSetValues (f->output_data.x->widget, al, 1);
9362 }
9363
9364 #else /* not USE_X_TOOLKIT */
9365
9366 f->output_data.x->wm_hints.flags |= (IconPixmapHint | IconMaskHint);
9367 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints);
9368
9369 #endif /* not USE_X_TOOLKIT */
9370 }
9371
9372 void
9373 x_wm_set_icon_position (f, icon_x, icon_y)
9374 struct frame *f;
9375 int icon_x, icon_y;
9376 {
9377 Window window = FRAME_OUTER_WINDOW (f);
9378
9379 f->output_data.x->wm_hints.flags |= IconPositionHint;
9380 f->output_data.x->wm_hints.icon_x = icon_x;
9381 f->output_data.x->wm_hints.icon_y = icon_y;
9382
9383 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints);
9384 }
9385
9386 \f
9387 /***********************************************************************
9388 Fonts
9389 ***********************************************************************/
9390
9391 /* Return a pointer to struct font_info of font FONT_IDX of frame F. */
9392
9393 struct font_info *
9394 x_get_font_info (f, font_idx)
9395 FRAME_PTR f;
9396 int font_idx;
9397 {
9398 return (FRAME_X_FONT_TABLE (f) + font_idx);
9399 }
9400
9401
9402 /* Return a list of names of available fonts matching PATTERN on frame F.
9403
9404 If SIZE is > 0, it is the size (maximum bounds width) of fonts
9405 to be listed.
9406
9407 SIZE < 0 means include auto scaled fonts.
9408
9409 Frame F null means we have not yet created any frame on X, and
9410 consult the first display in x_display_list. MAXNAMES sets a limit
9411 on how many fonts to match. */
9412
9413 Lisp_Object
9414 x_list_fonts (f, pattern, size, maxnames)
9415 struct frame *f;
9416 Lisp_Object pattern;
9417 int size;
9418 int maxnames;
9419 {
9420 Lisp_Object list = Qnil, patterns, newlist = Qnil, key = Qnil;
9421 Lisp_Object tem, second_best;
9422 struct x_display_info *dpyinfo
9423 = f ? FRAME_X_DISPLAY_INFO (f) : x_display_list;
9424 Display *dpy = dpyinfo->display;
9425 int try_XLoadQueryFont = 0;
9426 int count;
9427 int allow_auto_scaled_font = 0;
9428
9429 if (size < 0)
9430 {
9431 allow_auto_scaled_font = 1;
9432 size = 0;
9433 }
9434
9435 patterns = Fassoc (pattern, Valternate_fontname_alist);
9436 if (NILP (patterns))
9437 patterns = Fcons (pattern, Qnil);
9438
9439 if (maxnames == 1 && !size)
9440 /* We can return any single font matching PATTERN. */
9441 try_XLoadQueryFont = 1;
9442
9443 for (; CONSP (patterns); patterns = XCDR (patterns))
9444 {
9445 int num_fonts;
9446 char **names = NULL;
9447
9448 pattern = XCAR (patterns);
9449 /* See if we cached the result for this particular query.
9450 The cache is an alist of the form:
9451 ((((PATTERN . MAXNAMES) . SCALABLE) (FONTNAME . WIDTH) ...) ...) */
9452 tem = XCDR (dpyinfo->name_list_element);
9453 key = Fcons (Fcons (pattern, make_number (maxnames)),
9454 allow_auto_scaled_font ? Qt : Qnil);
9455 list = Fassoc (key, tem);
9456 if (!NILP (list))
9457 {
9458 list = Fcdr_safe (list);
9459 /* We have a cashed list. Don't have to get the list again. */
9460 goto label_cached;
9461 }
9462
9463 /* At first, put PATTERN in the cache. */
9464
9465 BLOCK_INPUT;
9466 count = x_catch_errors (dpy);
9467
9468 if (try_XLoadQueryFont)
9469 {
9470 XFontStruct *font;
9471 unsigned long value;
9472
9473 font = XLoadQueryFont (dpy, SDATA (pattern));
9474 if (x_had_errors_p (dpy))
9475 {
9476 /* This error is perhaps due to insufficient memory on X
9477 server. Let's just ignore it. */
9478 font = NULL;
9479 x_clear_errors (dpy);
9480 }
9481
9482 if (font
9483 && XGetFontProperty (font, XA_FONT, &value))
9484 {
9485 char *name = (char *) XGetAtomName (dpy, (Atom) value);
9486 int len = strlen (name);
9487 char *tmp;
9488
9489 /* If DXPC (a Differential X Protocol Compressor)
9490 Ver.3.7 is running, XGetAtomName will return null
9491 string. We must avoid such a name. */
9492 if (len == 0)
9493 try_XLoadQueryFont = 0;
9494 else
9495 {
9496 num_fonts = 1;
9497 names = (char **) alloca (sizeof (char *));
9498 /* Some systems only allow alloca assigned to a
9499 simple var. */
9500 tmp = (char *) alloca (len + 1); names[0] = tmp;
9501 bcopy (name, names[0], len + 1);
9502 XFree (name);
9503 }
9504 }
9505 else
9506 try_XLoadQueryFont = 0;
9507
9508 if (font)
9509 XFreeFont (dpy, font);
9510 }
9511
9512 if (!try_XLoadQueryFont)
9513 {
9514 /* We try at least 10 fonts because XListFonts will return
9515 auto-scaled fonts at the head. */
9516 if (maxnames < 0)
9517 {
9518 int limit;
9519
9520 for (limit = 500;;)
9521 {
9522 names = XListFonts (dpy, SDATA (pattern), limit, &num_fonts);
9523 if (num_fonts == limit)
9524 {
9525 BLOCK_INPUT;
9526 XFreeFontNames (names);
9527 UNBLOCK_INPUT;
9528 limit *= 2;
9529 }
9530 else
9531 break;
9532 }
9533 }
9534 else
9535 names = XListFonts (dpy, SDATA (pattern), max (maxnames, 10),
9536 &num_fonts);
9537
9538 if (x_had_errors_p (dpy))
9539 {
9540 /* This error is perhaps due to insufficient memory on X
9541 server. Let's just ignore it. */
9542 names = NULL;
9543 x_clear_errors (dpy);
9544 }
9545 }
9546
9547 x_uncatch_errors (dpy, count);
9548 UNBLOCK_INPUT;
9549
9550 if (names)
9551 {
9552 int i;
9553
9554 /* Make a list of all the fonts we got back.
9555 Store that in the font cache for the display. */
9556 for (i = 0; i < num_fonts; i++)
9557 {
9558 int width = 0;
9559 char *p = names[i];
9560 int average_width = -1, resx = 0, dashes = 0;
9561
9562 /* Count the number of dashes in NAMES[I]. If there are
9563 14 dashes, the field value following 9th dash
9564 (RESOLUTION_X) is nonzero, and the field value
9565 following 12th dash (AVERAGE_WIDTH) is 0, this is a
9566 auto-scaled font which is usually too ugly to be used
9567 for editing. Let's ignore it. */
9568 while (*p)
9569 if (*p++ == '-')
9570 {
9571 dashes++;
9572 if (dashes == 7) /* PIXEL_SIZE field */
9573 width = atoi (p);
9574 else if (dashes == 9)
9575 resx = atoi (p);
9576 else if (dashes == 12) /* AVERAGE_WIDTH field */
9577 average_width = atoi (p);
9578 }
9579
9580 if (allow_auto_scaled_font
9581 || dashes < 14 || average_width != 0 || resx == 0)
9582 {
9583 tem = build_string (names[i]);
9584 if (NILP (Fassoc (tem, list)))
9585 {
9586 if (STRINGP (Vx_pixel_size_width_font_regexp)
9587 && ((fast_c_string_match_ignore_case
9588 (Vx_pixel_size_width_font_regexp, names[i]))
9589 >= 0))
9590 /* We can set the value of PIXEL_SIZE to the
9591 width of this font. */
9592 list = Fcons (Fcons (tem, make_number (width)), list);
9593 else
9594 /* For the moment, width is not known. */
9595 list = Fcons (Fcons (tem, Qnil), list);
9596 }
9597 }
9598 }
9599
9600 if (!try_XLoadQueryFont)
9601 {
9602 BLOCK_INPUT;
9603 XFreeFontNames (names);
9604 UNBLOCK_INPUT;
9605 }
9606 }
9607
9608 /* Now store the result in the cache. */
9609 XSETCDR (dpyinfo->name_list_element,
9610 Fcons (Fcons (key, list), XCDR (dpyinfo->name_list_element)));
9611
9612 label_cached:
9613 if (NILP (list)) continue; /* Try the remaining alternatives. */
9614
9615 newlist = second_best = Qnil;
9616 /* Make a list of the fonts that have the right width. */
9617 for (; CONSP (list); list = XCDR (list))
9618 {
9619 int found_size;
9620
9621 tem = XCAR (list);
9622
9623 if (!CONSP (tem) || NILP (XCAR (tem)))
9624 continue;
9625 if (!size)
9626 {
9627 newlist = Fcons (XCAR (tem), newlist);
9628 continue;
9629 }
9630
9631 if (!INTEGERP (XCDR (tem)))
9632 {
9633 /* Since we have not yet known the size of this font, we
9634 must try slow function call XLoadQueryFont. */
9635 XFontStruct *thisinfo;
9636
9637 BLOCK_INPUT;
9638 count = x_catch_errors (dpy);
9639 thisinfo = XLoadQueryFont (dpy,
9640 SDATA (XCAR (tem)));
9641 if (x_had_errors_p (dpy))
9642 {
9643 /* This error is perhaps due to insufficient memory on X
9644 server. Let's just ignore it. */
9645 thisinfo = NULL;
9646 x_clear_errors (dpy);
9647 }
9648 x_uncatch_errors (dpy, count);
9649 UNBLOCK_INPUT;
9650
9651 if (thisinfo)
9652 {
9653 XSETCDR (tem,
9654 (thisinfo->min_bounds.width == 0
9655 ? make_number (0)
9656 : make_number (thisinfo->max_bounds.width)));
9657 BLOCK_INPUT;
9658 XFreeFont (dpy, thisinfo);
9659 UNBLOCK_INPUT;
9660 }
9661 else
9662 /* For unknown reason, the previous call of XListFont had
9663 returned a font which can't be opened. Record the size
9664 as 0 not to try to open it again. */
9665 XSETCDR (tem, make_number (0));
9666 }
9667
9668 found_size = XINT (XCDR (tem));
9669 if (found_size == size)
9670 newlist = Fcons (XCAR (tem), newlist);
9671 else if (found_size > 0)
9672 {
9673 if (NILP (second_best))
9674 second_best = tem;
9675 else if (found_size < size)
9676 {
9677 if (XINT (XCDR (second_best)) > size
9678 || XINT (XCDR (second_best)) < found_size)
9679 second_best = tem;
9680 }
9681 else
9682 {
9683 if (XINT (XCDR (second_best)) > size
9684 && XINT (XCDR (second_best)) > found_size)
9685 second_best = tem;
9686 }
9687 }
9688 }
9689 if (!NILP (newlist))
9690 break;
9691 else if (!NILP (second_best))
9692 {
9693 newlist = Fcons (XCAR (second_best), Qnil);
9694 break;
9695 }
9696 }
9697
9698 return newlist;
9699 }
9700
9701
9702 #if GLYPH_DEBUG
9703
9704 /* Check that FONT is valid on frame F. It is if it can be found in F's
9705 font table. */
9706
9707 static void
9708 x_check_font (f, font)
9709 struct frame *f;
9710 XFontStruct *font;
9711 {
9712 int i;
9713 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
9714
9715 xassert (font != NULL);
9716
9717 for (i = 0; i < dpyinfo->n_fonts; i++)
9718 if (dpyinfo->font_table[i].name
9719 && font == dpyinfo->font_table[i].font)
9720 break;
9721
9722 xassert (i < dpyinfo->n_fonts);
9723 }
9724
9725 #endif /* GLYPH_DEBUG != 0 */
9726
9727 /* Set *W to the minimum width, *H to the minimum font height of FONT.
9728 Note: There are (broken) X fonts out there with invalid XFontStruct
9729 min_bounds contents. For example, handa@etl.go.jp reports that
9730 "-adobe-courier-medium-r-normal--*-180-*-*-m-*-iso8859-1" fonts
9731 have font->min_bounds.width == 0. */
9732
9733 static INLINE void
9734 x_font_min_bounds (font, w, h)
9735 XFontStruct *font;
9736 int *w, *h;
9737 {
9738 *h = FONT_HEIGHT (font);
9739 *w = font->min_bounds.width;
9740
9741 /* Try to handle the case where FONT->min_bounds has invalid
9742 contents. Since the only font known to have invalid min_bounds
9743 is fixed-width, use max_bounds if min_bounds seems to be invalid. */
9744 if (*w <= 0)
9745 *w = font->max_bounds.width;
9746 }
9747
9748
9749 /* Compute the smallest character width and smallest font height over
9750 all fonts available on frame F. Set the members smallest_char_width
9751 and smallest_font_height in F's x_display_info structure to
9752 the values computed. Value is non-zero if smallest_font_height or
9753 smallest_char_width become smaller than they were before. */
9754
9755 static int
9756 x_compute_min_glyph_bounds (f)
9757 struct frame *f;
9758 {
9759 int i;
9760 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
9761 XFontStruct *font;
9762 int old_width = dpyinfo->smallest_char_width;
9763 int old_height = dpyinfo->smallest_font_height;
9764
9765 dpyinfo->smallest_font_height = 100000;
9766 dpyinfo->smallest_char_width = 100000;
9767
9768 for (i = 0; i < dpyinfo->n_fonts; ++i)
9769 if (dpyinfo->font_table[i].name)
9770 {
9771 struct font_info *fontp = dpyinfo->font_table + i;
9772 int w, h;
9773
9774 font = (XFontStruct *) fontp->font;
9775 xassert (font != (XFontStruct *) ~0);
9776 x_font_min_bounds (font, &w, &h);
9777
9778 dpyinfo->smallest_font_height = min (dpyinfo->smallest_font_height, h);
9779 dpyinfo->smallest_char_width = min (dpyinfo->smallest_char_width, w);
9780 }
9781
9782 xassert (dpyinfo->smallest_char_width > 0
9783 && dpyinfo->smallest_font_height > 0);
9784
9785 return (dpyinfo->n_fonts == 1
9786 || dpyinfo->smallest_char_width < old_width
9787 || dpyinfo->smallest_font_height < old_height);
9788 }
9789
9790
9791 /* Load font named FONTNAME of the size SIZE for frame F, and return a
9792 pointer to the structure font_info while allocating it dynamically.
9793 If SIZE is 0, load any size of font.
9794 If loading is failed, return NULL. */
9795
9796 struct font_info *
9797 x_load_font (f, fontname, size)
9798 struct frame *f;
9799 register char *fontname;
9800 int size;
9801 {
9802 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
9803 Lisp_Object font_names;
9804 int count;
9805
9806 /* Get a list of all the fonts that match this name. Once we
9807 have a list of matching fonts, we compare them against the fonts
9808 we already have by comparing names. */
9809 font_names = x_list_fonts (f, build_string (fontname), size, 1);
9810
9811 if (!NILP (font_names))
9812 {
9813 Lisp_Object tail;
9814 int i;
9815
9816 for (i = 0; i < dpyinfo->n_fonts; i++)
9817 for (tail = font_names; CONSP (tail); tail = XCDR (tail))
9818 if (dpyinfo->font_table[i].name
9819 && (!strcmp (dpyinfo->font_table[i].name,
9820 SDATA (XCAR (tail)))
9821 || !strcmp (dpyinfo->font_table[i].full_name,
9822 SDATA (XCAR (tail)))))
9823 return (dpyinfo->font_table + i);
9824 }
9825
9826 /* Load the font and add it to the table. */
9827 {
9828 char *full_name;
9829 XFontStruct *font;
9830 struct font_info *fontp;
9831 unsigned long value;
9832 int i;
9833
9834 /* If we have found fonts by x_list_font, load one of them. If
9835 not, we still try to load a font by the name given as FONTNAME
9836 because XListFonts (called in x_list_font) of some X server has
9837 a bug of not finding a font even if the font surely exists and
9838 is loadable by XLoadQueryFont. */
9839 if (size > 0 && !NILP (font_names))
9840 fontname = (char *) SDATA (XCAR (font_names));
9841
9842 BLOCK_INPUT;
9843 count = x_catch_errors (FRAME_X_DISPLAY (f));
9844 font = (XFontStruct *) XLoadQueryFont (FRAME_X_DISPLAY (f), fontname);
9845 if (x_had_errors_p (FRAME_X_DISPLAY (f)))
9846 {
9847 /* This error is perhaps due to insufficient memory on X
9848 server. Let's just ignore it. */
9849 font = NULL;
9850 x_clear_errors (FRAME_X_DISPLAY (f));
9851 }
9852 x_uncatch_errors (FRAME_X_DISPLAY (f), count);
9853 UNBLOCK_INPUT;
9854 if (!font)
9855 return NULL;
9856
9857 /* Find a free slot in the font table. */
9858 for (i = 0; i < dpyinfo->n_fonts; ++i)
9859 if (dpyinfo->font_table[i].name == NULL)
9860 break;
9861
9862 /* If no free slot found, maybe enlarge the font table. */
9863 if (i == dpyinfo->n_fonts
9864 && dpyinfo->n_fonts == dpyinfo->font_table_size)
9865 {
9866 int sz;
9867 dpyinfo->font_table_size = max (16, 2 * dpyinfo->font_table_size);
9868 sz = dpyinfo->font_table_size * sizeof *dpyinfo->font_table;
9869 dpyinfo->font_table
9870 = (struct font_info *) xrealloc (dpyinfo->font_table, sz);
9871 }
9872
9873 fontp = dpyinfo->font_table + i;
9874 if (i == dpyinfo->n_fonts)
9875 ++dpyinfo->n_fonts;
9876
9877 /* Now fill in the slots of *FONTP. */
9878 BLOCK_INPUT;
9879 bzero (fontp, sizeof (*fontp));
9880 fontp->font = font;
9881 fontp->font_idx = i;
9882 fontp->charset = -1; /* fs_load_font sets it. */
9883 fontp->name = (char *) xmalloc (strlen (fontname) + 1);
9884 bcopy (fontname, fontp->name, strlen (fontname) + 1);
9885
9886 /* Try to get the full name of FONT. Put it in FULL_NAME. */
9887 full_name = 0;
9888 if (XGetFontProperty (font, XA_FONT, &value))
9889 {
9890 char *name = (char *) XGetAtomName (FRAME_X_DISPLAY (f), (Atom) value);
9891 char *p = name;
9892 int dashes = 0;
9893
9894 /* Count the number of dashes in the "full name".
9895 If it is too few, this isn't really the font's full name,
9896 so don't use it.
9897 In X11R4, the fonts did not come with their canonical names
9898 stored in them. */
9899 while (*p)
9900 {
9901 if (*p == '-')
9902 dashes++;
9903 p++;
9904 }
9905
9906 if (dashes >= 13)
9907 {
9908 full_name = (char *) xmalloc (p - name + 1);
9909 bcopy (name, full_name, p - name + 1);
9910 }
9911
9912 XFree (name);
9913 }
9914
9915 if (full_name != 0)
9916 fontp->full_name = full_name;
9917 else
9918 fontp->full_name = fontp->name;
9919
9920 fontp->size = font->max_bounds.width;
9921 fontp->height = FONT_HEIGHT (font);
9922
9923 if (NILP (font_names))
9924 {
9925 /* We come here because of a bug of XListFonts mentioned at
9926 the head of this block. Let's store this information in
9927 the cache for x_list_fonts. */
9928 Lisp_Object lispy_name = build_string (fontname);
9929 Lisp_Object lispy_full_name = build_string (fontp->full_name);
9930 Lisp_Object key = Fcons (Fcons (lispy_name, make_number (256)),
9931 Qnil);
9932
9933 XSETCDR (dpyinfo->name_list_element,
9934 Fcons (Fcons (key,
9935 Fcons (Fcons (lispy_full_name,
9936 make_number (fontp->size)),
9937 Qnil)),
9938 XCDR (dpyinfo->name_list_element)));
9939 if (full_name)
9940 {
9941 key = Fcons (Fcons (lispy_full_name, make_number (256)),
9942 Qnil);
9943 XSETCDR (dpyinfo->name_list_element,
9944 Fcons (Fcons (key,
9945 Fcons (Fcons (lispy_full_name,
9946 make_number (fontp->size)),
9947 Qnil)),
9948 XCDR (dpyinfo->name_list_element)));
9949 }
9950 }
9951
9952 /* The slot `encoding' specifies how to map a character
9953 code-points (0x20..0x7F or 0x2020..0x7F7F) of each charset to
9954 the font code-points (0:0x20..0x7F, 1:0xA0..0xFF), or
9955 (0:0x2020..0x7F7F, 1:0xA0A0..0xFFFF, 3:0x20A0..0x7FFF,
9956 2:0xA020..0xFF7F). For the moment, we don't know which charset
9957 uses this font. So, we set information in fontp->encoding_type
9958 which is never used by any charset. If mapping can't be
9959 decided, set FONT_ENCODING_NOT_DECIDED. */
9960 fontp->encoding_type
9961 = (font->max_byte1 == 0
9962 /* 1-byte font */
9963 ? (font->min_char_or_byte2 < 0x80
9964 ? (font->max_char_or_byte2 < 0x80
9965 ? 0 /* 0x20..0x7F */
9966 : FONT_ENCODING_NOT_DECIDED) /* 0x20..0xFF */
9967 : 1) /* 0xA0..0xFF */
9968 /* 2-byte font */
9969 : (font->min_byte1 < 0x80
9970 ? (font->max_byte1 < 0x80
9971 ? (font->min_char_or_byte2 < 0x80
9972 ? (font->max_char_or_byte2 < 0x80
9973 ? 0 /* 0x2020..0x7F7F */
9974 : FONT_ENCODING_NOT_DECIDED) /* 0x2020..0x7FFF */
9975 : 3) /* 0x20A0..0x7FFF */
9976 : FONT_ENCODING_NOT_DECIDED) /* 0x20??..0xA0?? */
9977 : (font->min_char_or_byte2 < 0x80
9978 ? (font->max_char_or_byte2 < 0x80
9979 ? 2 /* 0xA020..0xFF7F */
9980 : FONT_ENCODING_NOT_DECIDED) /* 0xA020..0xFFFF */
9981 : 1))); /* 0xA0A0..0xFFFF */
9982
9983 fontp->baseline_offset
9984 = (XGetFontProperty (font, dpyinfo->Xatom_MULE_BASELINE_OFFSET, &value)
9985 ? (long) value : 0);
9986 fontp->relative_compose
9987 = (XGetFontProperty (font, dpyinfo->Xatom_MULE_RELATIVE_COMPOSE, &value)
9988 ? (long) value : 0);
9989 fontp->default_ascent
9990 = (XGetFontProperty (font, dpyinfo->Xatom_MULE_DEFAULT_ASCENT, &value)
9991 ? (long) value : 0);
9992
9993 /* Set global flag fonts_changed_p to non-zero if the font loaded
9994 has a character with a smaller width than any other character
9995 before, or if the font loaded has a smaller height than any
9996 other font loaded before. If this happens, it will make a
9997 glyph matrix reallocation necessary. */
9998 fonts_changed_p |= x_compute_min_glyph_bounds (f);
9999 UNBLOCK_INPUT;
10000 return fontp;
10001 }
10002 }
10003
10004
10005 /* Return a pointer to struct font_info of a font named FONTNAME for
10006 frame F. If no such font is loaded, return NULL. */
10007
10008 struct font_info *
10009 x_query_font (f, fontname)
10010 struct frame *f;
10011 register char *fontname;
10012 {
10013 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
10014 int i;
10015
10016 for (i = 0; i < dpyinfo->n_fonts; i++)
10017 if (dpyinfo->font_table[i].name
10018 && (!strcmp (dpyinfo->font_table[i].name, fontname)
10019 || !strcmp (dpyinfo->font_table[i].full_name, fontname)))
10020 return (dpyinfo->font_table + i);
10021 return NULL;
10022 }
10023
10024
10025 /* Find a CCL program for a font specified by FONTP, and set the member
10026 `encoder' of the structure. */
10027
10028 void
10029 x_find_ccl_program (fontp)
10030 struct font_info *fontp;
10031 {
10032 Lisp_Object list, elt;
10033
10034 elt = Qnil;
10035 for (list = Vfont_ccl_encoder_alist; CONSP (list); list = XCDR (list))
10036 {
10037 elt = XCAR (list);
10038 if (CONSP (elt)
10039 && STRINGP (XCAR (elt))
10040 && ((fast_c_string_match_ignore_case (XCAR (elt), fontp->name)
10041 >= 0)
10042 || (fast_c_string_match_ignore_case (XCAR (elt), fontp->full_name)
10043 >= 0)))
10044 break;
10045 }
10046
10047 if (! NILP (list))
10048 {
10049 struct ccl_program *ccl
10050 = (struct ccl_program *) xmalloc (sizeof (struct ccl_program));
10051
10052 if (setup_ccl_program (ccl, XCDR (elt)) < 0)
10053 xfree (ccl);
10054 else
10055 fontp->font_encoder = ccl;
10056 }
10057 }
10058
10059
10060 /* Return a char-table whose elements are t if the font FONT_INFO
10061 contains a glyph for the corresponding character, and nil if
10062 not. */
10063
10064 Lisp_Object
10065 x_get_font_repertory (f, font_info)
10066 FRAME_PTR f;
10067 struct font_info *font_info;
10068 {
10069 XFontStruct *font = (XFontStruct *) font_info->font;
10070 Lisp_Object table;
10071 int min_byte1, max_byte1, min_byte2, max_byte2;
10072 int c;
10073 struct charset *charset = CHARSET_FROM_ID (font_info->charset);
10074 int offset = CHARSET_OFFSET (charset);
10075
10076 table = Fmake_char_table (Qnil, Qnil);
10077
10078 min_byte1 = font->min_byte1;
10079 max_byte1 = font->max_byte1;
10080 min_byte2 = font->min_char_or_byte2;
10081 max_byte2 = font->max_char_or_byte2;
10082 if (min_byte1 == 0 && max_byte1 == 0)
10083 {
10084 if (! font->per_char || font->all_chars_exist == True)
10085 {
10086 if (offset >= 0)
10087 char_table_set_range (table, offset + min_byte2,
10088 offset + max_byte2, Qt);
10089 else
10090 for (; min_byte2 <= max_byte2; min_byte2++)
10091 {
10092 c = DECODE_CHAR (charset, min_byte2);
10093 CHAR_TABLE_SET (table, c, Qt);
10094 }
10095 }
10096 else
10097 {
10098 XCharStruct *pcm = font->per_char;
10099 int from = -1;
10100 int i;
10101
10102 for (i = min_byte2; i <= max_byte2; i++, pcm++)
10103 {
10104 if (pcm->width == 0 && pcm->rbearing == pcm->lbearing)
10105 {
10106 if (from >= 0)
10107 {
10108 if (offset >= 0)
10109 char_table_set_range (table, offset + from,
10110 offset + i - 1, Qt);
10111 else
10112 for (; from < i; from++)
10113 {
10114 c = DECODE_CHAR (charset, from);
10115 CHAR_TABLE_SET (table, c, Qt);
10116 }
10117 from = -1;
10118 }
10119 }
10120 else if (from < 0)
10121 from = i;
10122 }
10123 if (from >= 0)
10124 {
10125 if (offset >= 0)
10126 char_table_set_range (table, offset + from, offset + i - 1,
10127 Qt);
10128 else
10129 for (; from < i; from++)
10130 {
10131 c = DECODE_CHAR (charset, from);
10132 CHAR_TABLE_SET (table, c, Qt);
10133 }
10134 }
10135 }
10136 }
10137 else
10138 {
10139 if (! font->per_char || font->all_chars_exist == True)
10140 {
10141 int i, j;
10142
10143 if (offset >= 0)
10144 for (i = min_byte1; i <= max_byte1; i++)
10145 char_table_set_range
10146 (table, offset + ((i << 8) | min_byte2),
10147 offset + ((i << 8) | max_byte2), Qt);
10148 else
10149 for (i = min_byte1; i <= max_byte1; i++)
10150 for (j = min_byte2; j <= max_byte2; j++)
10151 {
10152 unsigned code = (i << 8) | j;
10153 c = DECODE_CHAR (charset, code);
10154 CHAR_TABLE_SET (table, c, Qt);
10155 }
10156 }
10157 else
10158 {
10159 XCharStruct *pcm = font->per_char;
10160 int i;
10161
10162 for (i = min_byte1; i <= max_byte1; i++)
10163 {
10164 int from = -1;
10165 int j;
10166
10167 for (j = min_byte2; j <= max_byte2; j++, pcm++)
10168 {
10169 if (pcm->width == 0 && pcm->rbearing == pcm->lbearing)
10170 {
10171 if (from >= 0)
10172 {
10173 if (offset >= 0)
10174 char_table_set_range
10175 (table, offset + ((i << 8) | from),
10176 offset + ((i << 8) | (j - 1)), Qt);
10177 else
10178 {
10179 for (; from < j; from++)
10180 {
10181 unsigned code = (i << 8) | from;
10182 c = ENCODE_CHAR (charset, code);
10183 CHAR_TABLE_SET (table, c, Qt);
10184 }
10185 }
10186 from = -1;
10187 }
10188 }
10189 else if (from < 0)
10190 from = j;
10191 }
10192 if (from >= 0)
10193 {
10194 if (offset >= 0)
10195 char_table_set_range
10196 (table, offset + ((i << 8) | from),
10197 offset + ((i << 8) | (j - 1)), Qt);
10198 else
10199 {
10200 for (; from < j; from++)
10201 {
10202 unsigned code = (i << 8) | from;
10203 c = DECODE_CHAR (charset, code);
10204 CHAR_TABLE_SET (table, c, Qt);
10205 }
10206 }
10207 }
10208 }
10209 }
10210 }
10211
10212 return table;
10213 }
10214 \f
10215 /***********************************************************************
10216 Initialization
10217 ***********************************************************************/
10218
10219 #ifdef USE_X_TOOLKIT
10220 static XrmOptionDescRec emacs_options[] = {
10221 {"-geometry", ".geometry", XrmoptionSepArg, NULL},
10222 {"-iconic", ".iconic", XrmoptionNoArg, (XtPointer) "yes"},
10223
10224 {"-internal-border-width", "*EmacsScreen.internalBorderWidth",
10225 XrmoptionSepArg, NULL},
10226 {"-ib", "*EmacsScreen.internalBorderWidth", XrmoptionSepArg, NULL},
10227
10228 {"-T", "*EmacsShell.title", XrmoptionSepArg, (XtPointer) NULL},
10229 {"-wn", "*EmacsShell.title", XrmoptionSepArg, (XtPointer) NULL},
10230 {"-title", "*EmacsShell.title", XrmoptionSepArg, (XtPointer) NULL},
10231 {"-iconname", "*EmacsShell.iconName", XrmoptionSepArg, (XtPointer) NULL},
10232 {"-in", "*EmacsShell.iconName", XrmoptionSepArg, (XtPointer) NULL},
10233 {"-mc", "*pointerColor", XrmoptionSepArg, (XtPointer) NULL},
10234 {"-cr", "*cursorColor", XrmoptionSepArg, (XtPointer) NULL}
10235 };
10236 #endif /* USE_X_TOOLKIT */
10237
10238 static int x_initialized;
10239
10240 #ifdef MULTI_KBOARD
10241 /* Test whether two display-name strings agree up to the dot that separates
10242 the screen number from the server number. */
10243 static int
10244 same_x_server (name1, name2)
10245 const char *name1, *name2;
10246 {
10247 int seen_colon = 0;
10248 const unsigned char *system_name = SDATA (Vsystem_name);
10249 int system_name_length = strlen (system_name);
10250 int length_until_period = 0;
10251
10252 while (system_name[length_until_period] != 0
10253 && system_name[length_until_period] != '.')
10254 length_until_period++;
10255
10256 /* Treat `unix' like an empty host name. */
10257 if (! strncmp (name1, "unix:", 5))
10258 name1 += 4;
10259 if (! strncmp (name2, "unix:", 5))
10260 name2 += 4;
10261 /* Treat this host's name like an empty host name. */
10262 if (! strncmp (name1, system_name, system_name_length)
10263 && name1[system_name_length] == ':')
10264 name1 += system_name_length;
10265 if (! strncmp (name2, system_name, system_name_length)
10266 && name2[system_name_length] == ':')
10267 name2 += system_name_length;
10268 /* Treat this host's domainless name like an empty host name. */
10269 if (! strncmp (name1, system_name, length_until_period)
10270 && name1[length_until_period] == ':')
10271 name1 += length_until_period;
10272 if (! strncmp (name2, system_name, length_until_period)
10273 && name2[length_until_period] == ':')
10274 name2 += length_until_period;
10275
10276 for (; *name1 != '\0' && *name1 == *name2; name1++, name2++)
10277 {
10278 if (*name1 == ':')
10279 seen_colon++;
10280 if (seen_colon && *name1 == '.')
10281 return 1;
10282 }
10283 return (seen_colon
10284 && (*name1 == '.' || *name1 == '\0')
10285 && (*name2 == '.' || *name2 == '\0'));
10286 }
10287 #endif
10288
10289 /* Count number of set bits in mask and number of bits to shift to
10290 get to the first bit. With MASK 0x7e0, *BITS is set to 6, and *OFFSET
10291 to 5. */
10292 static void
10293 get_bits_and_offset (mask, bits, offset)
10294 unsigned long mask;
10295 int *bits;
10296 int *offset;
10297 {
10298 int nr = 0;
10299 int off = 0;
10300
10301 while (!(mask & 1))
10302 {
10303 off++;
10304 mask >>= 1;
10305 }
10306
10307 while (mask & 1)
10308 {
10309 nr++;
10310 mask >>= 1;
10311 }
10312
10313 *offset = off;
10314 *bits = nr;
10315 }
10316
10317 struct x_display_info *
10318 x_term_init (display_name, xrm_option, resource_name)
10319 Lisp_Object display_name;
10320 char *xrm_option;
10321 char *resource_name;
10322 {
10323 int connection;
10324 Display *dpy;
10325 struct x_display_info *dpyinfo;
10326 XrmDatabase xrdb;
10327
10328 BLOCK_INPUT;
10329
10330 if (!x_initialized)
10331 {
10332 x_initialize ();
10333 ++x_initialized;
10334 }
10335
10336 #ifdef USE_GTK
10337 {
10338 #define NUM_ARGV 10
10339 int argc;
10340 char *argv[NUM_ARGV];
10341 char **argv2 = argv;
10342 GdkAtom atom;
10343
10344 if (x_initialized++ > 1)
10345 {
10346 /* Opening another display. If xg_display_open returns less
10347 than zero, we are probably on GTK 2.0, which can only handle
10348 one display. GTK 2.2 or later can handle more than one. */
10349 if (xg_display_open (SDATA (display_name), &dpy) < 0)
10350 error ("Sorry, this version of GTK can only handle one display");
10351 }
10352 else
10353 {
10354 for (argc = 0; argc < NUM_ARGV; ++argc)
10355 argv[argc] = 0;
10356
10357 argc = 0;
10358 argv[argc++] = initial_argv[0];
10359
10360 if (! NILP (display_name))
10361 {
10362 argv[argc++] = "--display";
10363 argv[argc++] = SDATA (display_name);
10364 }
10365
10366 argv[argc++] = "--name";
10367 argv[argc++] = resource_name;
10368
10369 #ifdef HAVE_X11R5
10370 XSetLocaleModifiers ("");
10371 #endif
10372
10373 gtk_init (&argc, &argv2);
10374
10375 /* gtk_init does set_locale. We must fix locale after calling it. */
10376 fixup_locale ();
10377 xg_initialize ();
10378
10379 dpy = GDK_DISPLAY ();
10380
10381 /* NULL window -> events for all windows go to our function */
10382 gdk_window_add_filter (NULL, event_handler_gdk, NULL);
10383
10384 /* Load our own gtkrc if it exists. */
10385 {
10386 struct gcpro gcpro1, gcpro2;
10387 char *file = "~/.emacs.d/gtkrc";
10388 Lisp_Object s, abs_file;
10389
10390 GCPRO2 (s, abs_file);
10391 s = make_string (file, strlen (file));
10392 abs_file = Fexpand_file_name (s, Qnil);
10393
10394 if (! NILP (abs_file) && !NILP (Ffile_readable_p (abs_file)))
10395 gtk_rc_parse (SDATA (abs_file));
10396
10397 UNGCPRO;
10398 }
10399
10400 XSetErrorHandler (x_error_handler);
10401 XSetIOErrorHandler (x_io_error_quitter);
10402 }
10403 }
10404 #else /* not USE_GTK */
10405 #ifdef USE_X_TOOLKIT
10406 /* weiner@footloose.sps.mot.com reports that this causes
10407 errors with X11R5:
10408 X protocol error: BadAtom (invalid Atom parameter)
10409 on protocol request 18skiloaf.
10410 So let's not use it until R6. */
10411 #ifdef HAVE_X11XTR6
10412 XtSetLanguageProc (NULL, NULL, NULL);
10413 #endif
10414
10415 {
10416 int argc = 0;
10417 char *argv[3];
10418
10419 argv[0] = "";
10420 argc = 1;
10421 if (xrm_option)
10422 {
10423 argv[argc++] = "-xrm";
10424 argv[argc++] = xrm_option;
10425 }
10426 turn_on_atimers (0);
10427 dpy = XtOpenDisplay (Xt_app_con, SDATA (display_name),
10428 resource_name, EMACS_CLASS,
10429 emacs_options, XtNumber (emacs_options),
10430 &argc, argv);
10431 turn_on_atimers (1);
10432
10433 #ifdef HAVE_X11XTR6
10434 /* I think this is to compensate for XtSetLanguageProc. */
10435 fixup_locale ();
10436 #endif
10437 }
10438
10439 #else /* not USE_X_TOOLKIT */
10440 #ifdef HAVE_X11R5
10441 XSetLocaleModifiers ("");
10442 #endif
10443 dpy = XOpenDisplay (SDATA (display_name));
10444 #endif /* not USE_X_TOOLKIT */
10445 #endif /* not USE_GTK*/
10446
10447 /* Detect failure. */
10448 if (dpy == 0)
10449 {
10450 UNBLOCK_INPUT;
10451 return 0;
10452 }
10453
10454 /* We have definitely succeeded. Record the new connection. */
10455
10456 dpyinfo = (struct x_display_info *) xmalloc (sizeof (struct x_display_info));
10457 bzero (dpyinfo, sizeof *dpyinfo);
10458
10459 #ifdef MULTI_KBOARD
10460 {
10461 struct x_display_info *share;
10462 Lisp_Object tail;
10463
10464 for (share = x_display_list, tail = x_display_name_list; share;
10465 share = share->next, tail = XCDR (tail))
10466 if (same_x_server (SDATA (XCAR (XCAR (tail))),
10467 SDATA (display_name)))
10468 break;
10469 if (share)
10470 dpyinfo->kboard = share->kboard;
10471 else
10472 {
10473 dpyinfo->kboard = (KBOARD *) xmalloc (sizeof (KBOARD));
10474 init_kboard (dpyinfo->kboard);
10475 if (!EQ (XSYMBOL (Qvendor_specific_keysyms)->function, Qunbound))
10476 {
10477 char *vendor = ServerVendor (dpy);
10478 UNBLOCK_INPUT;
10479 dpyinfo->kboard->Vsystem_key_alist
10480 = call1 (Qvendor_specific_keysyms,
10481 build_string (vendor ? vendor : ""));
10482 BLOCK_INPUT;
10483 }
10484
10485 dpyinfo->kboard->next_kboard = all_kboards;
10486 all_kboards = dpyinfo->kboard;
10487 /* Don't let the initial kboard remain current longer than necessary.
10488 That would cause problems if a file loaded on startup tries to
10489 prompt in the mini-buffer. */
10490 if (current_kboard == initial_kboard)
10491 current_kboard = dpyinfo->kboard;
10492 }
10493 dpyinfo->kboard->reference_count++;
10494 }
10495 #endif
10496
10497 /* Put this display on the chain. */
10498 dpyinfo->next = x_display_list;
10499 x_display_list = dpyinfo;
10500
10501 /* Put it on x_display_name_list as well, to keep them parallel. */
10502 x_display_name_list = Fcons (Fcons (display_name, Qnil),
10503 x_display_name_list);
10504 dpyinfo->name_list_element = XCAR (x_display_name_list);
10505
10506 dpyinfo->display = dpy;
10507
10508 #if 0
10509 XSetAfterFunction (x_current_display, x_trace_wire);
10510 #endif /* ! 0 */
10511
10512 dpyinfo->x_id_name
10513 = (char *) xmalloc (SBYTES (Vinvocation_name)
10514 + SBYTES (Vsystem_name)
10515 + 2);
10516 sprintf (dpyinfo->x_id_name, "%s@%s",
10517 SDATA (Vinvocation_name), SDATA (Vsystem_name));
10518
10519 /* Figure out which modifier bits mean what. */
10520 x_find_modifier_meanings (dpyinfo);
10521
10522 /* Get the scroll bar cursor. */
10523 #ifdef USE_GTK
10524 /* We must create a GTK cursor, it is required for GTK widgets. */
10525 dpyinfo->xg_cursor = xg_create_default_cursor (dpyinfo->display);
10526 #endif /* USE_GTK */
10527
10528 dpyinfo->vertical_scroll_bar_cursor
10529 = XCreateFontCursor (dpyinfo->display, XC_sb_v_double_arrow);
10530
10531 xrdb = x_load_resources (dpyinfo->display, xrm_option,
10532 resource_name, EMACS_CLASS);
10533 #ifdef HAVE_XRMSETDATABASE
10534 XrmSetDatabase (dpyinfo->display, xrdb);
10535 #else
10536 dpyinfo->display->db = xrdb;
10537 #endif
10538 /* Put the rdb where we can find it in a way that works on
10539 all versions. */
10540 dpyinfo->xrdb = xrdb;
10541
10542 dpyinfo->screen = ScreenOfDisplay (dpyinfo->display,
10543 DefaultScreen (dpyinfo->display));
10544 select_visual (dpyinfo);
10545 dpyinfo->cmap = DefaultColormapOfScreen (dpyinfo->screen);
10546 dpyinfo->height = HeightOfScreen (dpyinfo->screen);
10547 dpyinfo->width = WidthOfScreen (dpyinfo->screen);
10548 dpyinfo->root_window = RootWindowOfScreen (dpyinfo->screen);
10549 dpyinfo->client_leader_window = 0;
10550 dpyinfo->grabbed = 0;
10551 dpyinfo->reference_count = 0;
10552 dpyinfo->icon_bitmap_id = -1;
10553 dpyinfo->font_table = NULL;
10554 dpyinfo->n_fonts = 0;
10555 dpyinfo->font_table_size = 0;
10556 dpyinfo->bitmaps = 0;
10557 dpyinfo->bitmaps_size = 0;
10558 dpyinfo->bitmaps_last = 0;
10559 dpyinfo->scratch_cursor_gc = 0;
10560 dpyinfo->mouse_face_mouse_frame = 0;
10561 dpyinfo->mouse_face_deferred_gc = 0;
10562 dpyinfo->mouse_face_beg_row = dpyinfo->mouse_face_beg_col = -1;
10563 dpyinfo->mouse_face_end_row = dpyinfo->mouse_face_end_col = -1;
10564 dpyinfo->mouse_face_face_id = DEFAULT_FACE_ID;
10565 dpyinfo->mouse_face_window = Qnil;
10566 dpyinfo->mouse_face_overlay = Qnil;
10567 dpyinfo->mouse_face_mouse_x = dpyinfo->mouse_face_mouse_y = 0;
10568 dpyinfo->mouse_face_defer = 0;
10569 dpyinfo->mouse_face_hidden = 0;
10570 dpyinfo->x_focus_frame = 0;
10571 dpyinfo->x_focus_event_frame = 0;
10572 dpyinfo->x_highlight_frame = 0;
10573 dpyinfo->image_cache = make_image_cache ();
10574 dpyinfo->wm_type = X_WMTYPE_UNKNOWN;
10575
10576 /* See if we can construct pixel values from RGB values. */
10577 dpyinfo->red_bits = dpyinfo->blue_bits = dpyinfo->green_bits = 0;
10578 dpyinfo->red_offset = dpyinfo->blue_offset = dpyinfo->green_offset = 0;
10579
10580 if (dpyinfo->visual->class == TrueColor)
10581 {
10582 get_bits_and_offset (dpyinfo->visual->red_mask,
10583 &dpyinfo->red_bits, &dpyinfo->red_offset);
10584 get_bits_and_offset (dpyinfo->visual->blue_mask,
10585 &dpyinfo->blue_bits, &dpyinfo->blue_offset);
10586 get_bits_and_offset (dpyinfo->visual->green_mask,
10587 &dpyinfo->green_bits, &dpyinfo->green_offset);
10588 }
10589
10590 /* See if a private colormap is requested. */
10591 if (dpyinfo->visual == DefaultVisualOfScreen (dpyinfo->screen))
10592 {
10593 if (dpyinfo->visual->class == PseudoColor)
10594 {
10595 Lisp_Object value;
10596 value = display_x_get_resource (dpyinfo,
10597 build_string ("privateColormap"),
10598 build_string ("PrivateColormap"),
10599 Qnil, Qnil);
10600 if (STRINGP (value)
10601 && (!strcmp (SDATA (value), "true")
10602 || !strcmp (SDATA (value), "on")))
10603 dpyinfo->cmap = XCopyColormapAndFree (dpyinfo->display, dpyinfo->cmap);
10604 }
10605 }
10606 else
10607 dpyinfo->cmap = XCreateColormap (dpyinfo->display, dpyinfo->root_window,
10608 dpyinfo->visual, AllocNone);
10609
10610 {
10611 int screen_number = XScreenNumberOfScreen (dpyinfo->screen);
10612 double pixels = DisplayHeight (dpyinfo->display, screen_number);
10613 double mm = DisplayHeightMM (dpyinfo->display, screen_number);
10614 dpyinfo->resy = pixels * 25.4 / mm;
10615 pixels = DisplayWidth (dpyinfo->display, screen_number);
10616 mm = DisplayWidthMM (dpyinfo->display, screen_number);
10617 dpyinfo->resx = pixels * 25.4 / mm;
10618 }
10619
10620 dpyinfo->Xatom_wm_protocols
10621 = XInternAtom (dpyinfo->display, "WM_PROTOCOLS", False);
10622 dpyinfo->Xatom_wm_take_focus
10623 = XInternAtom (dpyinfo->display, "WM_TAKE_FOCUS", False);
10624 dpyinfo->Xatom_wm_save_yourself
10625 = XInternAtom (dpyinfo->display, "WM_SAVE_YOURSELF", False);
10626 dpyinfo->Xatom_wm_delete_window
10627 = XInternAtom (dpyinfo->display, "WM_DELETE_WINDOW", False);
10628 dpyinfo->Xatom_wm_change_state
10629 = XInternAtom (dpyinfo->display, "WM_CHANGE_STATE", False);
10630 dpyinfo->Xatom_wm_configure_denied
10631 = XInternAtom (dpyinfo->display, "WM_CONFIGURE_DENIED", False);
10632 dpyinfo->Xatom_wm_window_moved
10633 = XInternAtom (dpyinfo->display, "WM_MOVED", False);
10634 dpyinfo->Xatom_wm_client_leader
10635 = XInternAtom (dpyinfo->display, "WM_CLIENT_LEADER", False);
10636 dpyinfo->Xatom_editres
10637 = XInternAtom (dpyinfo->display, "Editres", False);
10638 dpyinfo->Xatom_CLIPBOARD
10639 = XInternAtom (dpyinfo->display, "CLIPBOARD", False);
10640 dpyinfo->Xatom_TIMESTAMP
10641 = XInternAtom (dpyinfo->display, "TIMESTAMP", False);
10642 dpyinfo->Xatom_TEXT
10643 = XInternAtom (dpyinfo->display, "TEXT", False);
10644 dpyinfo->Xatom_COMPOUND_TEXT
10645 = XInternAtom (dpyinfo->display, "COMPOUND_TEXT", False);
10646 dpyinfo->Xatom_UTF8_STRING
10647 = XInternAtom (dpyinfo->display, "UTF8_STRING", False);
10648 dpyinfo->Xatom_DELETE
10649 = XInternAtom (dpyinfo->display, "DELETE", False);
10650 dpyinfo->Xatom_MULTIPLE
10651 = XInternAtom (dpyinfo->display, "MULTIPLE", False);
10652 dpyinfo->Xatom_INCR
10653 = XInternAtom (dpyinfo->display, "INCR", False);
10654 dpyinfo->Xatom_EMACS_TMP
10655 = XInternAtom (dpyinfo->display, "_EMACS_TMP_", False);
10656 dpyinfo->Xatom_TARGETS
10657 = XInternAtom (dpyinfo->display, "TARGETS", False);
10658 dpyinfo->Xatom_NULL
10659 = XInternAtom (dpyinfo->display, "NULL", False);
10660 dpyinfo->Xatom_ATOM_PAIR
10661 = XInternAtom (dpyinfo->display, "ATOM_PAIR", False);
10662 /* For properties of font. */
10663 dpyinfo->Xatom_PIXEL_SIZE
10664 = XInternAtom (dpyinfo->display, "PIXEL_SIZE", False);
10665 dpyinfo->Xatom_MULE_BASELINE_OFFSET
10666 = XInternAtom (dpyinfo->display, "_MULE_BASELINE_OFFSET", False);
10667 dpyinfo->Xatom_MULE_RELATIVE_COMPOSE
10668 = XInternAtom (dpyinfo->display, "_MULE_RELATIVE_COMPOSE", False);
10669 dpyinfo->Xatom_MULE_DEFAULT_ASCENT
10670 = XInternAtom (dpyinfo->display, "_MULE_DEFAULT_ASCENT", False);
10671
10672 /* Ghostscript support. */
10673 dpyinfo->Xatom_PAGE = XInternAtom (dpyinfo->display, "PAGE", False);
10674 dpyinfo->Xatom_DONE = XInternAtom (dpyinfo->display, "DONE", False);
10675
10676 dpyinfo->Xatom_Scrollbar = XInternAtom (dpyinfo->display, "SCROLLBAR",
10677 False);
10678
10679 dpyinfo->cut_buffers_initialized = 0;
10680
10681 connection = ConnectionNumber (dpyinfo->display);
10682 dpyinfo->connection = connection;
10683
10684 {
10685 char null_bits[1];
10686
10687 null_bits[0] = 0x00;
10688
10689 dpyinfo->null_pixel
10690 = XCreatePixmapFromBitmapData (dpyinfo->display, dpyinfo->root_window,
10691 null_bits, 1, 1, (long) 0, (long) 0,
10692 1);
10693 }
10694
10695 {
10696 extern int gray_bitmap_width, gray_bitmap_height;
10697 extern char *gray_bitmap_bits;
10698 dpyinfo->gray
10699 = XCreatePixmapFromBitmapData (dpyinfo->display, dpyinfo->root_window,
10700 gray_bitmap_bits,
10701 gray_bitmap_width, gray_bitmap_height,
10702 (unsigned long) 1, (unsigned long) 0, 1);
10703 }
10704
10705 #ifdef HAVE_X_I18N
10706 xim_initialize (dpyinfo, resource_name);
10707 #endif
10708
10709 #ifdef subprocesses
10710 /* This is only needed for distinguishing keyboard and process input. */
10711 if (connection != 0)
10712 add_keyboard_wait_descriptor (connection);
10713 #endif
10714
10715 #ifndef F_SETOWN_BUG
10716 #ifdef F_SETOWN
10717 #ifdef F_SETOWN_SOCK_NEG
10718 /* stdin is a socket here */
10719 fcntl (connection, F_SETOWN, -getpid ());
10720 #else /* ! defined (F_SETOWN_SOCK_NEG) */
10721 fcntl (connection, F_SETOWN, getpid ());
10722 #endif /* ! defined (F_SETOWN_SOCK_NEG) */
10723 #endif /* ! defined (F_SETOWN) */
10724 #endif /* F_SETOWN_BUG */
10725
10726 #ifdef SIGIO
10727 if (interrupt_input)
10728 init_sigio (connection);
10729 #endif /* ! defined (SIGIO) */
10730
10731 #ifdef USE_LUCID
10732 #ifdef HAVE_X11R5 /* It seems X11R4 lacks XtCvtStringToFont, and XPointer. */
10733 /* Make sure that we have a valid font for dialog boxes
10734 so that Xt does not crash. */
10735 {
10736 Display *dpy = dpyinfo->display;
10737 XrmValue d, fr, to;
10738 Font font;
10739 int count;
10740
10741 d.addr = (XPointer)&dpy;
10742 d.size = sizeof (Display *);
10743 fr.addr = XtDefaultFont;
10744 fr.size = sizeof (XtDefaultFont);
10745 to.size = sizeof (Font *);
10746 to.addr = (XPointer)&font;
10747 count = x_catch_errors (dpy);
10748 if (!XtCallConverter (dpy, XtCvtStringToFont, &d, 1, &fr, &to, NULL))
10749 abort ();
10750 if (x_had_errors_p (dpy) || !XQueryFont (dpy, font))
10751 XrmPutLineResource (&xrdb, "Emacs.dialog.*.font: 9x15");
10752 x_uncatch_errors (dpy, count);
10753 }
10754 #endif
10755 #endif
10756
10757 /* See if we should run in synchronous mode. This is useful
10758 for debugging X code. */
10759 {
10760 Lisp_Object value;
10761 value = display_x_get_resource (dpyinfo,
10762 build_string ("synchronous"),
10763 build_string ("Synchronous"),
10764 Qnil, Qnil);
10765 if (STRINGP (value)
10766 && (!strcmp (SDATA (value), "true")
10767 || !strcmp (SDATA (value), "on")))
10768 XSynchronize (dpyinfo->display, True);
10769 }
10770
10771 {
10772 Lisp_Object value;
10773 value = display_x_get_resource (dpyinfo,
10774 build_string ("useXIM"),
10775 build_string ("UseXIM"),
10776 Qnil, Qnil);
10777 #ifdef USE_XIM
10778 if (STRINGP (value)
10779 && (!strcmp (XSTRING (value)->data, "false")
10780 || !strcmp (XSTRING (value)->data, "off")))
10781 use_xim = 0;
10782 #else
10783 if (STRINGP (value)
10784 && (!strcmp (XSTRING (value)->data, "true")
10785 || !strcmp (XSTRING (value)->data, "on")))
10786 use_xim = 1;
10787 #endif
10788 }
10789
10790 #ifdef HAVE_X_SM
10791 /* Only do this for the first display. */
10792 if (x_initialized == 1)
10793 x_session_initialize (dpyinfo);
10794 #endif
10795
10796 UNBLOCK_INPUT;
10797
10798 return dpyinfo;
10799 }
10800 \f
10801 /* Get rid of display DPYINFO, assuming all frames are already gone,
10802 and without sending any more commands to the X server. */
10803
10804 void
10805 x_delete_display (dpyinfo)
10806 struct x_display_info *dpyinfo;
10807 {
10808 int i;
10809
10810 delete_keyboard_wait_descriptor (dpyinfo->connection);
10811
10812 /* Discard this display from x_display_name_list and x_display_list.
10813 We can't use Fdelq because that can quit. */
10814 if (! NILP (x_display_name_list)
10815 && EQ (XCAR (x_display_name_list), dpyinfo->name_list_element))
10816 x_display_name_list = XCDR (x_display_name_list);
10817 else
10818 {
10819 Lisp_Object tail;
10820
10821 tail = x_display_name_list;
10822 while (CONSP (tail) && CONSP (XCDR (tail)))
10823 {
10824 if (EQ (XCAR (XCDR (tail)), dpyinfo->name_list_element))
10825 {
10826 XSETCDR (tail, XCDR (XCDR (tail)));
10827 break;
10828 }
10829 tail = XCDR (tail);
10830 }
10831 }
10832
10833 if (next_noop_dpyinfo == dpyinfo)
10834 next_noop_dpyinfo = dpyinfo->next;
10835
10836 if (x_display_list == dpyinfo)
10837 x_display_list = dpyinfo->next;
10838 else
10839 {
10840 struct x_display_info *tail;
10841
10842 for (tail = x_display_list; tail; tail = tail->next)
10843 if (tail->next == dpyinfo)
10844 tail->next = tail->next->next;
10845 }
10846
10847 #ifndef USE_X_TOOLKIT /* I'm told Xt does this itself. */
10848 #ifndef AIX /* On AIX, XCloseDisplay calls this. */
10849 XrmDestroyDatabase (dpyinfo->xrdb);
10850 #endif
10851 #endif
10852 #ifdef MULTI_KBOARD
10853 if (--dpyinfo->kboard->reference_count == 0)
10854 delete_kboard (dpyinfo->kboard);
10855 #endif
10856 #ifdef HAVE_X_I18N
10857 if (dpyinfo->xim)
10858 xim_close_dpy (dpyinfo);
10859 #endif
10860
10861 /* Free the font names in the font table. */
10862 for (i = 0; i < dpyinfo->n_fonts; i++)
10863 if (dpyinfo->font_table[i].name)
10864 {
10865 if (dpyinfo->font_table[i].name != dpyinfo->font_table[i].full_name)
10866 xfree (dpyinfo->font_table[i].full_name);
10867 xfree (dpyinfo->font_table[i].name);
10868 }
10869
10870 if (dpyinfo->font_table->font_encoder)
10871 xfree (dpyinfo->font_table->font_encoder);
10872
10873 xfree (dpyinfo->font_table);
10874 xfree (dpyinfo->x_id_name);
10875 xfree (dpyinfo->color_cells);
10876 xfree (dpyinfo);
10877 }
10878
10879 #ifdef USE_X_TOOLKIT
10880
10881 /* Atimer callback function for TIMER. Called every 0.1s to process
10882 Xt timeouts, if needed. We must avoid calling XtAppPending as
10883 much as possible because that function does an implicit XFlush
10884 that slows us down. */
10885
10886 static void
10887 x_process_timeouts (timer)
10888 struct atimer *timer;
10889 {
10890 if (toolkit_scroll_bar_interaction || popup_activated ())
10891 {
10892 BLOCK_INPUT;
10893 while (XtAppPending (Xt_app_con) & XtIMTimer)
10894 XtAppProcessEvent (Xt_app_con, XtIMTimer);
10895 UNBLOCK_INPUT;
10896 }
10897 }
10898
10899 #endif /* USE_X_TOOLKIT */
10900
10901 \f
10902 /* Set up use of X before we make the first connection. */
10903
10904 extern frame_parm_handler x_frame_parm_handlers[];
10905
10906 static struct redisplay_interface x_redisplay_interface =
10907 {
10908 x_frame_parm_handlers,
10909 x_produce_glyphs,
10910 x_write_glyphs,
10911 x_insert_glyphs,
10912 x_clear_end_of_line,
10913 x_scroll_run,
10914 x_after_update_window_line,
10915 x_update_window_begin,
10916 x_update_window_end,
10917 x_cursor_to,
10918 x_flush,
10919 #ifndef XFlush
10920 x_flush,
10921 #else
10922 0, /* flush_display_optional */
10923 #endif
10924 x_clear_window_mouse_face,
10925 x_get_glyph_overhangs,
10926 x_fix_overlapping_area,
10927 x_draw_fringe_bitmap,
10928 0, /* define_fringe_bitmap */
10929 0, /* destroy_fringe_bitmap */
10930 x_per_char_metric,
10931 x_encode_char,
10932 x_compute_glyph_string_overhangs,
10933 x_draw_glyph_string,
10934 x_define_frame_cursor,
10935 x_clear_frame_area,
10936 x_draw_window_cursor,
10937 x_draw_vertical_window_border,
10938 x_shift_glyphs_for_insert
10939 };
10940
10941 void
10942 x_initialize ()
10943 {
10944 rif = &x_redisplay_interface;
10945
10946 clear_frame_hook = x_clear_frame;
10947 ins_del_lines_hook = x_ins_del_lines;
10948 delete_glyphs_hook = x_delete_glyphs;
10949 ring_bell_hook = XTring_bell;
10950 reset_terminal_modes_hook = XTreset_terminal_modes;
10951 set_terminal_modes_hook = XTset_terminal_modes;
10952 update_begin_hook = x_update_begin;
10953 update_end_hook = x_update_end;
10954 set_terminal_window_hook = XTset_terminal_window;
10955 read_socket_hook = XTread_socket;
10956 frame_up_to_date_hook = XTframe_up_to_date;
10957 mouse_position_hook = XTmouse_position;
10958 frame_rehighlight_hook = XTframe_rehighlight;
10959 frame_raise_lower_hook = XTframe_raise_lower;
10960 set_vertical_scroll_bar_hook = XTset_vertical_scroll_bar;
10961 condemn_scroll_bars_hook = XTcondemn_scroll_bars;
10962 redeem_scroll_bar_hook = XTredeem_scroll_bar;
10963 judge_scroll_bars_hook = XTjudge_scroll_bars;
10964
10965 scroll_region_ok = 1; /* we'll scroll partial frames */
10966 char_ins_del_ok = 1;
10967 line_ins_del_ok = 1; /* we'll just blt 'em */
10968 fast_clear_end_of_line = 1; /* X does this well */
10969 memory_below_frame = 0; /* we don't remember what scrolls
10970 off the bottom */
10971 baud_rate = 19200;
10972
10973 x_noop_count = 0;
10974 last_tool_bar_item = -1;
10975 any_help_event_p = 0;
10976 ignore_next_mouse_click_timeout = 0;
10977
10978 #ifdef USE_GTK
10979 current_count = -1;
10980 #endif
10981
10982 /* Try to use interrupt input; if we can't, then start polling. */
10983 Fset_input_mode (Qt, Qnil, Qt, Qnil);
10984
10985 #ifdef USE_X_TOOLKIT
10986 XtToolkitInitialize ();
10987
10988 Xt_app_con = XtCreateApplicationContext ();
10989
10990 /* Register a converter from strings to pixels, which uses
10991 Emacs' color allocation infrastructure. */
10992 XtAppSetTypeConverter (Xt_app_con,
10993 XtRString, XtRPixel, cvt_string_to_pixel,
10994 cvt_string_to_pixel_args,
10995 XtNumber (cvt_string_to_pixel_args),
10996 XtCacheByDisplay, cvt_pixel_dtor);
10997
10998 XtAppSetFallbackResources (Xt_app_con, Xt_default_resources);
10999
11000 /* Install an asynchronous timer that processes Xt timeout events
11001 every 0.1s. This is necessary because some widget sets use
11002 timeouts internally, for example the LessTif menu bar, or the
11003 Xaw3d scroll bar. When Xt timouts aren't processed, these
11004 widgets don't behave normally. */
11005 {
11006 EMACS_TIME interval;
11007 EMACS_SET_SECS_USECS (interval, 0, 100000);
11008 start_atimer (ATIMER_CONTINUOUS, interval, x_process_timeouts, 0);
11009 }
11010 #endif
11011
11012 #ifdef USE_TOOLKIT_SCROLL_BARS
11013 #ifndef USE_GTK
11014 xaw3d_arrow_scroll = False;
11015 xaw3d_pick_top = True;
11016 #endif
11017 #endif
11018
11019 /* Note that there is no real way portable across R3/R4 to get the
11020 original error handler. */
11021 XSetErrorHandler (x_error_handler);
11022 XSetIOErrorHandler (x_io_error_quitter);
11023
11024 /* Disable Window Change signals; they are handled by X events. */
11025 #ifdef SIGWINCH
11026 signal (SIGWINCH, SIG_DFL);
11027 #endif /* SIGWINCH */
11028
11029 signal (SIGPIPE, x_connection_signal);
11030 }
11031
11032
11033 void
11034 syms_of_xterm ()
11035 {
11036 staticpro (&x_error_message_string);
11037 x_error_message_string = Qnil;
11038
11039 staticpro (&x_display_name_list);
11040 x_display_name_list = Qnil;
11041
11042 staticpro (&last_mouse_scroll_bar);
11043 last_mouse_scroll_bar = Qnil;
11044
11045 staticpro (&Qvendor_specific_keysyms);
11046 Qvendor_specific_keysyms = intern ("vendor-specific-keysyms");
11047
11048 staticpro (&Qlatin_1);
11049 Qlatin_1 = intern ("latin-1");
11050
11051 staticpro (&last_mouse_press_frame);
11052 last_mouse_press_frame = Qnil;
11053
11054 DEFVAR_BOOL ("x-use-underline-position-properties",
11055 &x_use_underline_position_properties,
11056 doc: /* *Non-nil means make use of UNDERLINE_POSITION font properties.
11057 nil means ignore them. If you encounter fonts with bogus
11058 UNDERLINE_POSITION font properties, for example 7x13 on XFree prior
11059 to 4.1, set this to nil. */);
11060 x_use_underline_position_properties = 1;
11061
11062 DEFVAR_BOOL ("x-mouse-click-focus-ignore-position",
11063 &x_mouse_click_focus_ignore_position,
11064 doc: /* Non-nil means that a mouse click to focus a frame does not move point.
11065 This variable is only used when the window manager requires that you
11066 click on a frame to select it (give it focus). In that case, a value
11067 of nil, means that the selected window and cursor position changes to
11068 reflect the mouse click position, while a non-nil value means that the
11069 selected window or cursor position is preserved. */);
11070 x_mouse_click_focus_ignore_position = 0;
11071
11072 DEFVAR_LISP ("x-toolkit-scroll-bars", &Vx_toolkit_scroll_bars,
11073 doc: /* What X toolkit scroll bars Emacs uses.
11074 A value of nil means Emacs doesn't use X toolkit scroll bars.
11075 Otherwise, value is a symbol describing the X toolkit. */);
11076 #ifdef USE_TOOLKIT_SCROLL_BARS
11077 #ifdef USE_MOTIF
11078 Vx_toolkit_scroll_bars = intern ("motif");
11079 #elif defined HAVE_XAW3D
11080 Vx_toolkit_scroll_bars = intern ("xaw3d");
11081 #elif USE_GTK
11082 Vx_toolkit_scroll_bars = intern ("gtk");
11083 #else
11084 Vx_toolkit_scroll_bars = intern ("xaw");
11085 #endif
11086 #else
11087 Vx_toolkit_scroll_bars = Qnil;
11088 #endif
11089
11090 staticpro (&last_mouse_motion_frame);
11091 last_mouse_motion_frame = Qnil;
11092
11093 Qmodifier_value = intern ("modifier-value");
11094 Qalt = intern ("alt");
11095 Fput (Qalt, Qmodifier_value, make_number (alt_modifier));
11096 Qhyper = intern ("hyper");
11097 Fput (Qhyper, Qmodifier_value, make_number (hyper_modifier));
11098 Qmeta = intern ("meta");
11099 Fput (Qmeta, Qmodifier_value, make_number (meta_modifier));
11100 Qsuper = intern ("super");
11101 Fput (Qsuper, Qmodifier_value, make_number (super_modifier));
11102
11103 DEFVAR_LISP ("x-alt-keysym", &Vx_alt_keysym,
11104 doc: /* Which keys Emacs uses for the alt modifier.
11105 This should be one of the symbols `alt', `hyper', `meta', `super'.
11106 For example, `alt' means use the Alt_L and Alt_R keysyms. The default
11107 is nil, which is the same as `alt'. */);
11108 Vx_alt_keysym = Qnil;
11109
11110 DEFVAR_LISP ("x-hyper-keysym", &Vx_hyper_keysym,
11111 doc: /* Which keys Emacs uses for the hyper modifier.
11112 This should be one of the symbols `alt', `hyper', `meta', `super'.
11113 For example, `hyper' means use the Hyper_L and Hyper_R keysyms. The
11114 default is nil, which is the same as `hyper'. */);
11115 Vx_hyper_keysym = Qnil;
11116
11117 DEFVAR_LISP ("x-meta-keysym", &Vx_meta_keysym,
11118 doc: /* Which keys Emacs uses for the meta modifier.
11119 This should be one of the symbols `alt', `hyper', `meta', `super'.
11120 For example, `meta' means use the Meta_L and Meta_R keysyms. The
11121 default is nil, which is the same as `meta'. */);
11122 Vx_meta_keysym = Qnil;
11123
11124 DEFVAR_LISP ("x-super-keysym", &Vx_super_keysym,
11125 doc: /* Which keys Emacs uses for the super modifier.
11126 This should be one of the symbols `alt', `hyper', `meta', `super'.
11127 For example, `super' means use the Super_L and Super_R keysyms. The
11128 default is nil, which is the same as `super'. */);
11129 Vx_super_keysym = Qnil;
11130
11131 DEFVAR_LISP ("x-keysym-table", &Vx_keysym_table,
11132 doc: /* Hash table of character codes indexed by X keysym codes. */);
11133 Vx_keysym_table = make_hash_table (Qeql, make_number (900),
11134 make_float (DEFAULT_REHASH_SIZE),
11135 make_float (DEFAULT_REHASH_THRESHOLD),
11136 Qnil, Qnil, Qnil);
11137 }
11138
11139 #endif /* HAVE_X_WINDOWS */
11140
11141 /* arch-tag: 6d4e4cb7-abc1-4302-9585-d84dcfb09d0f
11142 (do not change this comment) */