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