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