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