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