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