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