1 /* X Communication module for terminals which understand the X protocol.
3 Copyright (C) 1989, 1993-2014 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
20 /* New display code by Gerd Moellmann <gerd@gnu.org>. */
21 /* Xt features made by Fred Pierresteguy. */
27 #include "blockinput.h"
28 #include "syssignal.h"
30 /* This may include sys/types.h, and that somehow loses
31 if this is not done before the other system files. */
33 #include <X11/cursorfont.h>
35 /* If we have Xfixes extension, use it for pointer blanking. */
37 #include <X11/extensions/Xfixes.h>
40 /* Using Xft implies that XRender is available. */
42 #include <X11/extensions/Xrender.h>
45 /* Load sys/types.h if not already loaded.
46 In some systems loading it twice is suicidal. */
48 #include <sys/types.h>
51 #include <sys/ioctl.h>
58 /* Caused redefinition of DBL_DIG on Netbsd; seems not to be needed. */
59 /* #include <sys/param.h> */
62 #include "character.h"
65 #include "dispextern.h"
67 #include "termhooks.h"
70 #include "emacs-icon.h"
75 #include "intervals.h"
80 #include "xsettings.h"
82 #include "sysselect.h"
86 #include <X11/Shell.h>
94 #include <X11/Xproto.h>
98 #if defined (USE_LUCID) || defined (USE_MOTIF)
99 #include "../lwlib/xlwmenu.h"
103 #if !defined (NO_EDITRES)
105 extern void _XEditResCheckMessages (Widget
, XtPointer
, XEvent
*, Boolean
*);
106 #endif /* not NO_EDITRES */
108 /* Include toolkit specific headers for the scroll bar widget. */
110 #ifdef USE_TOOLKIT_SCROLL_BARS
111 #if defined USE_MOTIF
112 #include <Xm/Xm.h> /* For LESSTIF_VERSION */
113 #include <Xm/ScrollBar.h>
114 #else /* !USE_MOTIF i.e. use Xaw */
117 #include <X11/Xaw3d/Simple.h>
118 #include <X11/Xaw3d/Scrollbar.h>
119 #include <X11/Xaw3d/ThreeD.h>
120 #else /* !HAVE_XAW3D */
121 #include <X11/Xaw/Simple.h>
122 #include <X11/Xaw/Scrollbar.h>
123 #endif /* !HAVE_XAW3D */
125 #define XtNpickTop "pickTop"
126 #endif /* !XtNpickTop */
127 #endif /* !USE_MOTIF */
128 #endif /* USE_TOOLKIT_SCROLL_BARS */
130 #endif /* USE_X_TOOLKIT */
134 #ifndef XtNinitialState
135 #define XtNinitialState "initialState"
139 #include "bitmaps/gray.xbm"
142 #include <X11/XKBlib.h>
145 /* Default to using XIM if available. */
149 bool use_xim
= false; /* configure --without-xim */
152 /* Non-zero means that a HELP_EVENT has been generated since Emacs
155 static bool any_help_event_p
;
157 /* This is a chain of structures for all the X displays currently in
160 struct x_display_info
*x_display_list
;
164 /* The application context for Xt use. */
165 XtAppContext Xt_app_con
;
166 static String Xt_default_resources
[] = {0};
168 /* Non-zero means user is interacting with a toolkit scroll bar. */
169 static bool toolkit_scroll_bar_interaction
;
171 #endif /* USE_X_TOOLKIT */
173 /* Non-zero timeout value means ignore next mouse click if it arrives
174 before that timeout elapses (i.e. as part of the same sequence of
175 events resulting from clicking on a frame to select it). */
177 static Time ignore_next_mouse_click_timeout
;
179 /* Used locally within XTread_socket. */
181 static int x_noop_count
;
183 static Lisp_Object Qalt
, Qhyper
, Qmeta
, Qsuper
, Qmodifier_value
;
185 static Lisp_Object Qvendor_specific_keysyms
;
186 static Lisp_Object Qlatin_1
;
189 /* The name of the Emacs icon file. */
190 static Lisp_Object xg_default_icon_file
;
192 /* Used in gtkutil.c. */
193 Lisp_Object Qx_gtk_map_stock
;
196 /* Some functions take this as char *, not const char *. */
197 static char emacs_class
[] = EMACS_CLASS
;
201 XEMBED_MAPPED
= 1 << 0
206 XEMBED_EMBEDDED_NOTIFY
= 0,
207 XEMBED_WINDOW_ACTIVATE
= 1,
208 XEMBED_WINDOW_DEACTIVATE
= 2,
209 XEMBED_REQUEST_FOCUS
= 3,
211 XEMBED_FOCUS_OUT
= 5,
212 XEMBED_FOCUS_NEXT
= 6,
213 XEMBED_FOCUS_PREV
= 7,
215 XEMBED_MODALITY_ON
= 10,
216 XEMBED_MODALITY_OFF
= 11,
217 XEMBED_REGISTER_ACCELERATOR
= 12,
218 XEMBED_UNREGISTER_ACCELERATOR
= 13,
219 XEMBED_ACTIVATE_ACCELERATOR
= 14
222 static bool x_alloc_nearest_color_1 (Display
*, Colormap
, XColor
*);
223 static void x_set_window_size_1 (struct frame
*, int, int, int, bool);
224 static void x_raise_frame (struct frame
*);
225 static void x_lower_frame (struct frame
*);
226 static const XColor
*x_color_cells (Display
*, int *);
227 static int x_io_error_quitter (Display
*);
228 static struct terminal
*x_create_terminal (struct x_display_info
*);
229 static void x_update_end (struct frame
*);
230 static void XTframe_up_to_date (struct frame
*);
231 static void x_clear_frame (struct frame
*);
232 static _Noreturn
void x_ins_del_lines (struct frame
*, int, int);
233 static void frame_highlight (struct frame
*);
234 static void frame_unhighlight (struct frame
*);
235 static void x_new_focus_frame (struct x_display_info
*, struct frame
*);
236 static void x_focus_changed (int, int, struct x_display_info
*,
237 struct frame
*, struct input_event
*);
238 static void XTframe_rehighlight (struct frame
*);
239 static void x_frame_rehighlight (struct x_display_info
*);
240 static void x_draw_hollow_cursor (struct window
*, struct glyph_row
*);
241 static void x_draw_bar_cursor (struct window
*, struct glyph_row
*, int,
242 enum text_cursor_kinds
);
244 static void x_clip_to_row (struct window
*, struct glyph_row
*,
245 enum glyph_row_area
, GC
);
246 static void x_flush (struct frame
*f
);
247 static void x_update_begin (struct frame
*);
248 static void x_update_window_begin (struct window
*);
249 static struct scroll_bar
*x_window_to_scroll_bar (Display
*, Window
, int);
250 static void x_scroll_bar_report_motion (struct frame
**, Lisp_Object
*,
251 enum scroll_bar_part
*,
252 Lisp_Object
*, Lisp_Object
*,
254 static void x_horizontal_scroll_bar_report_motion (struct frame
**, Lisp_Object
*,
255 enum scroll_bar_part
*,
256 Lisp_Object
*, Lisp_Object
*,
258 static int x_handle_net_wm_state (struct frame
*, const XPropertyEvent
*);
259 static void x_check_fullscreen (struct frame
*);
260 static void x_check_expected_move (struct frame
*, int, int);
261 static void x_sync_with_move (struct frame
*, int, int, int);
262 static int handle_one_xevent (struct x_display_info
*,
263 const XEvent
*, int *,
264 struct input_event
*);
265 #if ! (defined USE_X_TOOLKIT || defined USE_MOTIF)
266 static int x_dispatch_event (XEvent
*, Display
*);
268 /* Don't declare this _Noreturn because we want no
269 interference with debugging failing X calls. */
270 static void x_connection_closed (Display
*, const char *);
271 static void x_wm_set_window_state (struct frame
*, int);
272 static void x_wm_set_icon_pixmap (struct frame
*, ptrdiff_t);
273 static void x_initialize (void);
275 static int get_current_wm_state (struct frame
*, Window
, int *, int *);
277 /* Flush display of frame F. */
280 x_flush (struct frame
*f
)
282 eassert (f
&& FRAME_X_P (f
));
283 /* Don't call XFlush when it is not safe to redisplay; the X
284 connection may be broken. */
285 if (!NILP (Vinhibit_redisplay
))
289 XFlush (FRAME_X_DISPLAY (f
));
294 /* Remove calls to XFlush by defining XFlush to an empty replacement.
295 Calls to XFlush should be unnecessary because the X output buffer
296 is flushed automatically as needed by calls to XPending,
297 XNextEvent, or XWindowEvent according to the XFlush man page.
298 XTread_socket calls XPending. Removing XFlush improves
301 #define XFlush(DISPLAY) (void) 0
304 /***********************************************************************
306 ***********************************************************************/
310 /* This is a function useful for recording debugging information about
311 the sequence of occurrences in this file. */
319 struct record event_record
[100];
321 int event_record_index
;
324 record_event (char *locus
, int type
)
326 if (event_record_index
== ARRAYELTS (event_record
))
327 event_record_index
= 0;
329 event_record
[event_record_index
].locus
= locus
;
330 event_record
[event_record_index
].type
= type
;
331 event_record_index
++;
338 /* Return the struct x_display_info corresponding to DPY. */
340 struct x_display_info
*
341 x_display_info_for_display (Display
*dpy
)
343 struct x_display_info
*dpyinfo
;
345 for (dpyinfo
= x_display_list
; dpyinfo
; dpyinfo
= dpyinfo
->next
)
346 if (dpyinfo
->display
== dpy
)
353 x_find_topmost_parent (struct frame
*f
)
355 struct x_output
*x
= f
->output_data
.x
;
356 Window win
= None
, wi
= x
->parent_desc
;
357 Display
*dpy
= FRAME_X_DISPLAY (f
);
359 while (wi
!= FRAME_DISPLAY_INFO (f
)->root_window
)
363 unsigned int nchildren
;
366 if (XQueryTree (dpy
, win
, &root
, &wi
, &children
, &nchildren
))
375 #define OPAQUE 0xffffffff
378 x_set_frame_alpha (struct frame
*f
)
380 struct x_display_info
*dpyinfo
= FRAME_DISPLAY_INFO (f
);
381 Display
*dpy
= FRAME_X_DISPLAY (f
);
382 Window win
= FRAME_OUTER_WINDOW (f
);
384 double alpha_min
= 1.0;
388 if (dpyinfo
->x_highlight_frame
== f
)
393 if (FLOATP (Vframe_alpha_lower_limit
))
394 alpha_min
= XFLOAT_DATA (Vframe_alpha_lower_limit
);
395 else if (INTEGERP (Vframe_alpha_lower_limit
))
396 alpha_min
= (XINT (Vframe_alpha_lower_limit
)) / 100.0;
400 else if (alpha
> 1.0)
402 else if (0.0 <= alpha
&& alpha
< alpha_min
&& alpha_min
<= 1.0)
405 opac
= alpha
* OPAQUE
;
407 x_catch_errors (dpy
);
409 /* If there is a parent from the window manager, put the property there
410 also, to work around broken window managers that fail to do that.
411 Do this unconditionally as this function is called on reparent when
412 alpha has not changed on the frame. */
414 parent
= x_find_topmost_parent (f
);
416 XChangeProperty (dpy
, parent
, dpyinfo
->Xatom_net_wm_window_opacity
,
417 XA_CARDINAL
, 32, PropModeReplace
,
418 (unsigned char *) &opac
, 1);
420 /* return unless necessary */
425 unsigned long n
, left
;
427 rc
= XGetWindowProperty (dpy
, win
, dpyinfo
->Xatom_net_wm_window_opacity
,
428 0, 1, False
, XA_CARDINAL
,
429 &actual
, &format
, &n
, &left
,
432 if (rc
== Success
&& actual
!= None
)
434 unsigned long value
= *(unsigned long *)data
;
444 XChangeProperty (dpy
, win
, dpyinfo
->Xatom_net_wm_window_opacity
,
445 XA_CARDINAL
, 32, PropModeReplace
,
446 (unsigned char *) &opac
, 1);
450 /***********************************************************************
451 Starting and ending an update
452 ***********************************************************************/
454 /* Start an update of frame F. This function is installed as a hook
455 for update_begin, i.e. it is called when update_begin is called.
456 This function is called prior to calls to x_update_window_begin for
457 each window being updated. Currently, there is nothing to do here
458 because all interesting stuff is done on a window basis. */
461 x_update_begin (struct frame
*f
)
467 /* Start update of window W. */
470 x_update_window_begin (struct window
*w
)
472 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
473 Mouse_HLInfo
*hlinfo
= MOUSE_HL_INFO (f
);
475 w
->output_cursor
= w
->cursor
;
479 if (f
== hlinfo
->mouse_face_mouse_frame
)
481 /* Don't do highlighting for mouse motion during the update. */
482 hlinfo
->mouse_face_defer
= 1;
484 /* If F needs to be redrawn, simply forget about any prior mouse
486 if (FRAME_GARBAGED_P (f
))
487 hlinfo
->mouse_face_window
= Qnil
;
494 /* Draw a vertical window border from (x,y0) to (x,y1) */
497 x_draw_vertical_window_border (struct window
*w
, int x
, int y0
, int y1
)
499 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
502 face
= FACE_FROM_ID (f
, VERTICAL_BORDER_FACE_ID
);
504 XSetForeground (FRAME_X_DISPLAY (f
), f
->output_data
.x
->normal_gc
,
507 XDrawLine (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
508 f
->output_data
.x
->normal_gc
, x
, y0
, x
, y1
);
511 /* Draw a window divider from (x0,y0) to (x1,y1) */
514 x_draw_window_divider (struct window
*w
, int x0
, int x1
, int y0
, int y1
)
516 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
517 struct face
*face
= FACE_FROM_ID (f
, WINDOW_DIVIDER_FACE_ID
);
518 struct face
*face_first
= FACE_FROM_ID (f
, WINDOW_DIVIDER_FIRST_PIXEL_FACE_ID
);
519 struct face
*face_last
= FACE_FROM_ID (f
, WINDOW_DIVIDER_LAST_PIXEL_FACE_ID
);
520 unsigned long color
= face
? face
->foreground
: FRAME_FOREGROUND_PIXEL (f
);
521 unsigned long color_first
= (face_first
522 ? face_first
->foreground
523 : FRAME_FOREGROUND_PIXEL (f
));
524 unsigned long color_last
= (face_last
525 ? face_last
->foreground
526 : FRAME_FOREGROUND_PIXEL (f
));
527 Display
*display
= FRAME_X_DISPLAY (f
);
528 Window window
= FRAME_X_WINDOW (f
);
530 if (y1
- y0
> x1
- x0
&& x1
- x0
> 2)
533 XSetForeground (display
, f
->output_data
.x
->normal_gc
, color_first
);
534 XFillRectangle (display
, window
, f
->output_data
.x
->normal_gc
,
536 XSetForeground (display
, f
->output_data
.x
->normal_gc
, color
);
537 XFillRectangle (display
, window
, f
->output_data
.x
->normal_gc
,
538 x0
+ 1, y0
, x1
- x0
- 2, y1
- y0
);
539 XSetForeground (display
, f
->output_data
.x
->normal_gc
, color_last
);
540 XFillRectangle (display
, window
, f
->output_data
.x
->normal_gc
,
541 x1
- 1, y0
, 1, y1
- y0
);
543 else if (x1
- x0
> y1
- y0
&& y1
- y0
> 3)
546 XSetForeground (display
, f
->output_data
.x
->normal_gc
, color_first
);
547 XFillRectangle (display
, window
, f
->output_data
.x
->normal_gc
,
549 XSetForeground (display
, f
->output_data
.x
->normal_gc
, color
);
550 XFillRectangle (display
, window
, f
->output_data
.x
->normal_gc
,
551 x0
, y0
+ 1, x1
- x0
, y1
- y0
- 2);
552 XSetForeground (display
, f
->output_data
.x
->normal_gc
, color_last
);
553 XFillRectangle (display
, window
, f
->output_data
.x
->normal_gc
,
554 x0
, y1
- 1, x1
- x0
, 1);
558 XSetForeground (display
, f
->output_data
.x
->normal_gc
, color
);
559 XFillRectangle (display
, window
, f
->output_data
.x
->normal_gc
,
560 x0
, y0
, x1
- x0
, y1
- y0
);
564 /* End update of window W.
566 Draw vertical borders between horizontally adjacent windows, and
567 display W's cursor if CURSOR_ON_P is non-zero.
569 MOUSE_FACE_OVERWRITTEN_P non-zero means that some row containing
570 glyphs in mouse-face were overwritten. In that case we have to
571 make sure that the mouse-highlight is properly redrawn.
573 W may be a menu bar pseudo-window in case we don't have X toolkit
574 support. Such windows don't have a cursor, so don't display it
578 x_update_window_end (struct window
*w
, bool cursor_on_p
,
579 bool mouse_face_overwritten_p
)
581 if (!w
->pseudo_window_p
)
586 display_and_set_cursor (w
, 1,
587 w
->output_cursor
.hpos
, w
->output_cursor
.vpos
,
588 w
->output_cursor
.x
, w
->output_cursor
.y
);
590 if (draw_window_fringes (w
, 1))
592 if (WINDOW_RIGHT_DIVIDER_WIDTH (w
))
593 x_draw_right_divider (w
);
595 x_draw_vertical_border (w
);
601 /* If a row with mouse-face was overwritten, arrange for
602 XTframe_up_to_date to redisplay the mouse highlight. */
603 if (mouse_face_overwritten_p
)
605 Mouse_HLInfo
*hlinfo
= MOUSE_HL_INFO (XFRAME (w
->frame
));
607 hlinfo
->mouse_face_beg_row
= hlinfo
->mouse_face_beg_col
= -1;
608 hlinfo
->mouse_face_end_row
= hlinfo
->mouse_face_end_col
= -1;
609 hlinfo
->mouse_face_window
= Qnil
;
614 /* End update of frame F. This function is installed as a hook in
618 x_update_end (struct frame
*f
)
620 /* Mouse highlight may be displayed again. */
621 MOUSE_HL_INFO (f
)->mouse_face_defer
= 0;
625 XFlush (FRAME_X_DISPLAY (f
));
631 /* This function is called from various places in xdisp.c
632 whenever a complete update has been performed. */
635 XTframe_up_to_date (struct frame
*f
)
638 FRAME_MOUSE_UPDATE (f
);
642 /* Clear under internal border if any (GTK has its own version). */
645 x_clear_under_internal_border (struct frame
*f
)
647 if (FRAME_INTERNAL_BORDER_WIDTH (f
) > 0)
649 Display
*display
= FRAME_X_DISPLAY (f
);
650 Window window
= FRAME_X_WINDOW (f
);
651 int border
= FRAME_INTERNAL_BORDER_WIDTH (f
);
652 int width
= FRAME_PIXEL_WIDTH (f
);
653 int height
= FRAME_PIXEL_HEIGHT (f
);
654 int margin
= FRAME_TOP_MARGIN_HEIGHT (f
);
657 x_clear_area (display
, window
, 0, 0, border
, height
);
658 x_clear_area (display
, window
, 0, margin
, width
, border
);
659 x_clear_area (display
, window
, width
- border
, 0, border
, height
);
660 x_clear_area (display
, window
, 0, height
- border
, width
, border
);
666 /* Draw truncation mark bitmaps, continuation mark bitmaps, overlay
667 arrow bitmaps, or clear the fringes if no bitmaps are required
668 before DESIRED_ROW is made current. This function is called from
669 update_window_line only if it is known that there are differences
670 between bitmaps to be drawn between current row and DESIRED_ROW. */
673 x_after_update_window_line (struct window
*w
, struct glyph_row
*desired_row
)
677 if (!desired_row
->mode_line_p
&& !w
->pseudo_window_p
)
678 desired_row
->redraw_fringe_bitmaps_p
= 1;
681 /* When a window has disappeared, make sure that no rest of
682 full-width rows stays visible in the internal border. Could
683 check here if updated window is the leftmost/rightmost window,
684 but I guess it's not worth doing since vertically split windows
685 are almost never used, internal border is rarely set, and the
686 overhead is very small. */
691 if (windows_or_buffers_changed
692 && desired_row
->full_width_p
693 && (f
= XFRAME (w
->frame
),
694 width
= FRAME_INTERNAL_BORDER_WIDTH (f
),
696 && (height
= desired_row
->visible_height
,
699 int y
= WINDOW_TO_FRAME_PIXEL_Y (w
, max (0, desired_row
->y
));
702 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
703 0, y
, width
, height
);
704 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
705 FRAME_PIXEL_WIDTH (f
) - width
,
714 x_draw_fringe_bitmap (struct window
*w
, struct glyph_row
*row
, struct draw_fringe_bitmap_params
*p
)
716 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
717 Display
*display
= FRAME_X_DISPLAY (f
);
718 Window window
= FRAME_X_WINDOW (f
);
719 GC gc
= f
->output_data
.x
->normal_gc
;
720 struct face
*face
= p
->face
;
722 /* Must clip because of partially visible lines. */
723 x_clip_to_row (w
, row
, ANY_AREA
, gc
);
725 if (p
->bx
>= 0 && !p
->overlay_p
)
727 /* In case the same realized face is used for fringes and
728 for something displayed in the text (e.g. face `region' on
729 mono-displays, the fill style may have been changed to
730 FillSolid in x_draw_glyph_string_background. */
732 XSetFillStyle (display
, face
->gc
, FillOpaqueStippled
);
734 XSetForeground (display
, face
->gc
, face
->background
);
736 XFillRectangle (display
, window
, face
->gc
,
737 p
->bx
, p
->by
, p
->nx
, p
->ny
);
740 XSetForeground (display
, face
->gc
, face
->foreground
);
746 Pixmap pixmap
, clipmask
= (Pixmap
) 0;
747 int depth
= DefaultDepthOfScreen (FRAME_X_SCREEN (f
));
751 bits
= (char *) (p
->bits
+ p
->dh
);
753 bits
= (char *) p
->bits
+ p
->dh
;
755 /* Draw the bitmap. I believe these small pixmaps can be cached
757 pixmap
= XCreatePixmapFromBitmapData (display
, window
, bits
, p
->wd
, p
->h
,
759 ? (p
->overlay_p
? face
->background
760 : f
->output_data
.x
->cursor_pixel
)
762 face
->background
, depth
);
766 clipmask
= XCreatePixmapFromBitmapData (display
,
767 FRAME_DISPLAY_INFO (f
)->root_window
,
770 gcv
.clip_mask
= clipmask
;
771 gcv
.clip_x_origin
= p
->x
;
772 gcv
.clip_y_origin
= p
->y
;
773 XChangeGC (display
, gc
, GCClipMask
| GCClipXOrigin
| GCClipYOrigin
, &gcv
);
776 XCopyArea (display
, pixmap
, window
, gc
, 0, 0,
777 p
->wd
, p
->h
, p
->x
, p
->y
);
778 XFreePixmap (display
, pixmap
);
782 gcv
.clip_mask
= (Pixmap
) 0;
783 XChangeGC (display
, gc
, GCClipMask
, &gcv
);
784 XFreePixmap (display
, clipmask
);
788 XSetClipMask (display
, gc
, None
);
791 /***********************************************************************
793 ***********************************************************************/
797 static void x_set_glyph_string_clipping (struct glyph_string
*);
798 static void x_set_glyph_string_gc (struct glyph_string
*);
799 static void x_draw_glyph_string_foreground (struct glyph_string
*);
800 static void x_draw_composite_glyph_string_foreground (struct glyph_string
*);
801 static void x_draw_glyph_string_box (struct glyph_string
*);
802 static void x_draw_glyph_string (struct glyph_string
*);
803 static _Noreturn
void x_delete_glyphs (struct frame
*, int);
804 static void x_compute_glyph_string_overhangs (struct glyph_string
*);
805 static void x_set_cursor_gc (struct glyph_string
*);
806 static void x_set_mode_line_face_gc (struct glyph_string
*);
807 static void x_set_mouse_face_gc (struct glyph_string
*);
808 static bool x_alloc_lighter_color (struct frame
*, Display
*, Colormap
,
809 unsigned long *, double, int);
810 static void x_setup_relief_color (struct frame
*, struct relief
*,
811 double, int, unsigned long);
812 static void x_setup_relief_colors (struct glyph_string
*);
813 static void x_draw_image_glyph_string (struct glyph_string
*);
814 static void x_draw_image_relief (struct glyph_string
*);
815 static void x_draw_image_foreground (struct glyph_string
*);
816 static void x_draw_image_foreground_1 (struct glyph_string
*, Pixmap
);
817 static void x_clear_glyph_string_rect (struct glyph_string
*, int,
819 static void x_draw_relief_rect (struct frame
*, int, int, int, int,
820 int, int, int, int, int, int,
822 static void x_draw_box_rect (struct glyph_string
*, int, int, int, int,
823 int, int, int, XRectangle
*);
824 static void x_scroll_bar_clear (struct frame
*);
827 static void x_check_font (struct frame
*, struct font
*);
831 /* Set S->gc to a suitable GC for drawing glyph string S in cursor
835 x_set_cursor_gc (struct glyph_string
*s
)
837 if (s
->font
== FRAME_FONT (s
->f
)
838 && s
->face
->background
== FRAME_BACKGROUND_PIXEL (s
->f
)
839 && s
->face
->foreground
== FRAME_FOREGROUND_PIXEL (s
->f
)
841 s
->gc
= s
->f
->output_data
.x
->cursor_gc
;
844 /* Cursor on non-default face: must merge. */
848 xgcv
.background
= s
->f
->output_data
.x
->cursor_pixel
;
849 xgcv
.foreground
= s
->face
->background
;
851 /* If the glyph would be invisible, try a different foreground. */
852 if (xgcv
.foreground
== xgcv
.background
)
853 xgcv
.foreground
= s
->face
->foreground
;
854 if (xgcv
.foreground
== xgcv
.background
)
855 xgcv
.foreground
= s
->f
->output_data
.x
->cursor_foreground_pixel
;
856 if (xgcv
.foreground
== xgcv
.background
)
857 xgcv
.foreground
= s
->face
->foreground
;
859 /* Make sure the cursor is distinct from text in this face. */
860 if (xgcv
.background
== s
->face
->background
861 && xgcv
.foreground
== s
->face
->foreground
)
863 xgcv
.background
= s
->face
->foreground
;
864 xgcv
.foreground
= s
->face
->background
;
867 IF_DEBUG (x_check_font (s
->f
, s
->font
));
868 xgcv
.graphics_exposures
= False
;
869 mask
= GCForeground
| GCBackground
| GCGraphicsExposures
;
871 if (FRAME_DISPLAY_INFO (s
->f
)->scratch_cursor_gc
)
872 XChangeGC (s
->display
, FRAME_DISPLAY_INFO (s
->f
)->scratch_cursor_gc
,
875 FRAME_DISPLAY_INFO (s
->f
)->scratch_cursor_gc
876 = XCreateGC (s
->display
, s
->window
, mask
, &xgcv
);
878 s
->gc
= FRAME_DISPLAY_INFO (s
->f
)->scratch_cursor_gc
;
883 /* Set up S->gc of glyph string S for drawing text in mouse face. */
886 x_set_mouse_face_gc (struct glyph_string
*s
)
891 /* What face has to be used last for the mouse face? */
892 face_id
= MOUSE_HL_INFO (s
->f
)->mouse_face_face_id
;
893 face
= FACE_FROM_ID (s
->f
, face_id
);
895 face
= FACE_FROM_ID (s
->f
, MOUSE_FACE_ID
);
897 if (s
->first_glyph
->type
== CHAR_GLYPH
)
898 face_id
= FACE_FOR_CHAR (s
->f
, face
, s
->first_glyph
->u
.ch
, -1, Qnil
);
900 face_id
= FACE_FOR_CHAR (s
->f
, face
, 0, -1, Qnil
);
901 s
->face
= FACE_FROM_ID (s
->f
, face_id
);
902 prepare_face_for_display (s
->f
, s
->face
);
904 if (s
->font
== s
->face
->font
)
908 /* Otherwise construct scratch_cursor_gc with values from FACE
913 xgcv
.background
= s
->face
->background
;
914 xgcv
.foreground
= s
->face
->foreground
;
915 xgcv
.graphics_exposures
= False
;
916 mask
= GCForeground
| GCBackground
| GCGraphicsExposures
;
918 if (FRAME_DISPLAY_INFO (s
->f
)->scratch_cursor_gc
)
919 XChangeGC (s
->display
, FRAME_DISPLAY_INFO (s
->f
)->scratch_cursor_gc
,
922 FRAME_DISPLAY_INFO (s
->f
)->scratch_cursor_gc
923 = XCreateGC (s
->display
, s
->window
, mask
, &xgcv
);
925 s
->gc
= FRAME_DISPLAY_INFO (s
->f
)->scratch_cursor_gc
;
928 eassert (s
->gc
!= 0);
932 /* Set S->gc of glyph string S to a GC suitable for drawing a mode line.
933 Faces to use in the mode line have already been computed when the
934 matrix was built, so there isn't much to do, here. */
937 x_set_mode_line_face_gc (struct glyph_string
*s
)
943 /* Set S->gc of glyph string S for drawing that glyph string. Set
944 S->stippled_p to a non-zero value if the face of S has a stipple
948 x_set_glyph_string_gc (struct glyph_string
*s
)
950 prepare_face_for_display (s
->f
, s
->face
);
952 if (s
->hl
== DRAW_NORMAL_TEXT
)
955 s
->stippled_p
= s
->face
->stipple
!= 0;
957 else if (s
->hl
== DRAW_INVERSE_VIDEO
)
959 x_set_mode_line_face_gc (s
);
960 s
->stippled_p
= s
->face
->stipple
!= 0;
962 else if (s
->hl
== DRAW_CURSOR
)
967 else if (s
->hl
== DRAW_MOUSE_FACE
)
969 x_set_mouse_face_gc (s
);
970 s
->stippled_p
= s
->face
->stipple
!= 0;
972 else if (s
->hl
== DRAW_IMAGE_RAISED
973 || s
->hl
== DRAW_IMAGE_SUNKEN
)
976 s
->stippled_p
= s
->face
->stipple
!= 0;
981 /* GC must have been set. */
982 eassert (s
->gc
!= 0);
986 /* Set clipping for output of glyph string S. S may be part of a mode
987 line or menu if we don't have X toolkit support. */
990 x_set_glyph_string_clipping (struct glyph_string
*s
)
992 XRectangle
*r
= s
->clip
;
993 int n
= get_glyph_string_clip_rects (s
, r
, 2);
996 XSetClipRectangles (s
->display
, s
->gc
, 0, 0, r
, n
, Unsorted
);
1001 /* Set SRC's clipping for output of glyph string DST. This is called
1002 when we are drawing DST's left_overhang or right_overhang only in
1006 x_set_glyph_string_clipping_exactly (struct glyph_string
*src
, struct glyph_string
*dst
)
1011 r
.width
= src
->width
;
1013 r
.height
= src
->height
;
1016 XSetClipRectangles (dst
->display
, dst
->gc
, 0, 0, &r
, 1, Unsorted
);
1021 Compute left and right overhang of glyph string S. */
1024 x_compute_glyph_string_overhangs (struct glyph_string
*s
)
1027 && (s
->first_glyph
->type
== CHAR_GLYPH
1028 || s
->first_glyph
->type
== COMPOSITE_GLYPH
))
1030 struct font_metrics metrics
;
1032 if (s
->first_glyph
->type
== CHAR_GLYPH
)
1034 unsigned *code
= alloca (sizeof (unsigned) * s
->nchars
);
1035 struct font
*font
= s
->font
;
1038 for (i
= 0; i
< s
->nchars
; i
++)
1039 code
[i
] = (s
->char2b
[i
].byte1
<< 8) | s
->char2b
[i
].byte2
;
1040 font
->driver
->text_extents (font
, code
, s
->nchars
, &metrics
);
1044 Lisp_Object gstring
= composition_gstring_from_id (s
->cmp_id
);
1046 composition_gstring_width (gstring
, s
->cmp_from
, s
->cmp_to
, &metrics
);
1048 s
->right_overhang
= (metrics
.rbearing
> metrics
.width
1049 ? metrics
.rbearing
- metrics
.width
: 0);
1050 s
->left_overhang
= metrics
.lbearing
< 0 ? - metrics
.lbearing
: 0;
1054 s
->right_overhang
= s
->cmp
->rbearing
- s
->cmp
->pixel_width
;
1055 s
->left_overhang
= - s
->cmp
->lbearing
;
1060 /* Fill rectangle X, Y, W, H with background color of glyph string S. */
1063 x_clear_glyph_string_rect (struct glyph_string
*s
, int x
, int y
, int w
, int h
)
1066 XGetGCValues (s
->display
, s
->gc
, GCForeground
| GCBackground
, &xgcv
);
1067 XSetForeground (s
->display
, s
->gc
, xgcv
.background
);
1068 XFillRectangle (s
->display
, s
->window
, s
->gc
, x
, y
, w
, h
);
1069 XSetForeground (s
->display
, s
->gc
, xgcv
.foreground
);
1073 /* Draw the background of glyph_string S. If S->background_filled_p
1074 is non-zero don't draw it. FORCE_P non-zero means draw the
1075 background even if it wouldn't be drawn normally. This is used
1076 when a string preceding S draws into the background of S, or S
1077 contains the first component of a composition. */
1080 x_draw_glyph_string_background (struct glyph_string
*s
, bool force_p
)
1082 /* Nothing to do if background has already been drawn or if it
1083 shouldn't be drawn in the first place. */
1084 if (!s
->background_filled_p
)
1086 int box_line_width
= max (s
->face
->box_line_width
, 0);
1090 /* Fill background with a stipple pattern. */
1091 XSetFillStyle (s
->display
, s
->gc
, FillOpaqueStippled
);
1092 XFillRectangle (s
->display
, s
->window
, s
->gc
, s
->x
,
1093 s
->y
+ box_line_width
,
1094 s
->background_width
,
1095 s
->height
- 2 * box_line_width
);
1096 XSetFillStyle (s
->display
, s
->gc
, FillSolid
);
1097 s
->background_filled_p
= 1;
1099 else if (FONT_HEIGHT (s
->font
) < s
->height
- 2 * box_line_width
1100 || s
->font_not_found_p
1101 || s
->extends_to_end_of_line_p
1104 x_clear_glyph_string_rect (s
, s
->x
, s
->y
+ box_line_width
,
1105 s
->background_width
,
1106 s
->height
- 2 * box_line_width
);
1107 s
->background_filled_p
= 1;
1113 /* Draw the foreground of glyph string S. */
1116 x_draw_glyph_string_foreground (struct glyph_string
*s
)
1120 /* If first glyph of S has a left box line, start drawing the text
1121 of S to the right of that box line. */
1122 if (s
->face
->box
!= FACE_NO_BOX
1123 && s
->first_glyph
->left_box_line_p
)
1124 x
= s
->x
+ eabs (s
->face
->box_line_width
);
1128 /* Draw characters of S as rectangles if S's font could not be
1130 if (s
->font_not_found_p
)
1132 for (i
= 0; i
< s
->nchars
; ++i
)
1134 struct glyph
*g
= s
->first_glyph
+ i
;
1135 XDrawRectangle (s
->display
, s
->window
,
1136 s
->gc
, x
, s
->y
, g
->pixel_width
- 1,
1138 x
+= g
->pixel_width
;
1143 struct font
*font
= s
->font
;
1144 int boff
= font
->baseline_offset
;
1147 if (font
->vertical_centering
)
1148 boff
= VCENTER_BASELINE_OFFSET (font
, s
->f
) - boff
;
1150 y
= s
->ybase
- boff
;
1152 || (s
->background_filled_p
&& s
->hl
!= DRAW_CURSOR
))
1153 font
->driver
->draw (s
, 0, s
->nchars
, x
, y
, 0);
1155 font
->driver
->draw (s
, 0, s
->nchars
, x
, y
, 1);
1156 if (s
->face
->overstrike
)
1157 font
->driver
->draw (s
, 0, s
->nchars
, x
+ 1, y
, 0);
1161 /* Draw the foreground of composite glyph string S. */
1164 x_draw_composite_glyph_string_foreground (struct glyph_string
*s
)
1167 struct font
*font
= s
->font
;
1169 /* If first glyph of S has a left box line, start drawing the text
1170 of S to the right of that box line. */
1171 if (s
->face
&& s
->face
->box
!= FACE_NO_BOX
1172 && s
->first_glyph
->left_box_line_p
)
1173 x
= s
->x
+ eabs (s
->face
->box_line_width
);
1177 /* S is a glyph string for a composition. S->cmp_from is the index
1178 of the first character drawn for glyphs of this composition.
1179 S->cmp_from == 0 means we are drawing the very first character of
1180 this composition. */
1182 /* Draw a rectangle for the composition if the font for the very
1183 first character of the composition could not be loaded. */
1184 if (s
->font_not_found_p
)
1186 if (s
->cmp_from
== 0)
1187 XDrawRectangle (s
->display
, s
->window
, s
->gc
, x
, s
->y
,
1188 s
->width
- 1, s
->height
- 1);
1190 else if (! s
->first_glyph
->u
.cmp
.automatic
)
1194 for (i
= 0, j
= s
->cmp_from
; i
< s
->nchars
; i
++, j
++)
1195 /* TAB in a composition means display glyphs with padding
1196 space on the left or right. */
1197 if (COMPOSITION_GLYPH (s
->cmp
, j
) != '\t')
1199 int xx
= x
+ s
->cmp
->offsets
[j
* 2];
1200 int yy
= y
- s
->cmp
->offsets
[j
* 2 + 1];
1202 font
->driver
->draw (s
, j
, j
+ 1, xx
, yy
, 0);
1203 if (s
->face
->overstrike
)
1204 font
->driver
->draw (s
, j
, j
+ 1, xx
+ 1, yy
, 0);
1209 Lisp_Object gstring
= composition_gstring_from_id (s
->cmp_id
);
1214 for (i
= j
= s
->cmp_from
; i
< s
->cmp_to
; i
++)
1216 glyph
= LGSTRING_GLYPH (gstring
, i
);
1217 if (NILP (LGLYPH_ADJUSTMENT (glyph
)))
1218 width
+= LGLYPH_WIDTH (glyph
);
1221 int xoff
, yoff
, wadjust
;
1225 font
->driver
->draw (s
, j
, i
, x
, y
, 0);
1226 if (s
->face
->overstrike
)
1227 font
->driver
->draw (s
, j
, i
, x
+ 1, y
, 0);
1230 xoff
= LGLYPH_XOFF (glyph
);
1231 yoff
= LGLYPH_YOFF (glyph
);
1232 wadjust
= LGLYPH_WADJUST (glyph
);
1233 font
->driver
->draw (s
, i
, i
+ 1, x
+ xoff
, y
+ yoff
, 0);
1234 if (s
->face
->overstrike
)
1235 font
->driver
->draw (s
, i
, i
+ 1, x
+ xoff
+ 1, y
+ yoff
, 0);
1243 font
->driver
->draw (s
, j
, i
, x
, y
, 0);
1244 if (s
->face
->overstrike
)
1245 font
->driver
->draw (s
, j
, i
, x
+ 1, y
, 0);
1251 /* Draw the foreground of glyph string S for glyphless characters. */
1254 x_draw_glyphless_glyph_string_foreground (struct glyph_string
*s
)
1256 struct glyph
*glyph
= s
->first_glyph
;
1260 /* If first glyph of S has a left box line, start drawing the text
1261 of S to the right of that box line. */
1262 if (s
->face
&& s
->face
->box
!= FACE_NO_BOX
1263 && s
->first_glyph
->left_box_line_p
)
1264 x
= s
->x
+ eabs (s
->face
->box_line_width
);
1270 for (i
= 0; i
< s
->nchars
; i
++, glyph
++)
1272 char buf
[7], *str
= NULL
;
1273 int len
= glyph
->u
.glyphless
.len
;
1275 if (glyph
->u
.glyphless
.method
== GLYPHLESS_DISPLAY_ACRONYM
)
1278 && CHAR_TABLE_P (Vglyphless_char_display
)
1279 && (CHAR_TABLE_EXTRA_SLOTS (XCHAR_TABLE (Vglyphless_char_display
))
1283 = (! glyph
->u
.glyphless
.for_no_font
1284 ? CHAR_TABLE_REF (Vglyphless_char_display
,
1285 glyph
->u
.glyphless
.ch
)
1286 : XCHAR_TABLE (Vglyphless_char_display
)->extras
[0]);
1287 if (STRINGP (acronym
))
1288 str
= SSDATA (acronym
);
1291 else if (glyph
->u
.glyphless
.method
== GLYPHLESS_DISPLAY_HEX_CODE
)
1293 sprintf (buf
, "%0*X",
1294 glyph
->u
.glyphless
.ch
< 0x10000 ? 4 : 6,
1295 glyph
->u
.glyphless
.ch
);
1301 int upper_len
= (len
+ 1) / 2;
1304 /* It is assured that all LEN characters in STR is ASCII. */
1305 for (j
= 0; j
< len
; j
++)
1307 code
= s
->font
->driver
->encode_char (s
->font
, str
[j
]);
1308 STORE_XCHAR2B (char2b
+ j
, code
>> 8, code
& 0xFF);
1310 s
->font
->driver
->draw (s
, 0, upper_len
,
1311 x
+ glyph
->slice
.glyphless
.upper_xoff
,
1312 s
->ybase
+ glyph
->slice
.glyphless
.upper_yoff
,
1314 s
->font
->driver
->draw (s
, upper_len
, len
,
1315 x
+ glyph
->slice
.glyphless
.lower_xoff
,
1316 s
->ybase
+ glyph
->slice
.glyphless
.lower_yoff
,
1319 if (glyph
->u
.glyphless
.method
!= GLYPHLESS_DISPLAY_THIN_SPACE
)
1320 XDrawRectangle (s
->display
, s
->window
, s
->gc
,
1321 x
, s
->ybase
- glyph
->ascent
,
1322 glyph
->pixel_width
- 1,
1323 glyph
->ascent
+ glyph
->descent
- 1);
1324 x
+= glyph
->pixel_width
;
1328 #ifdef USE_X_TOOLKIT
1332 /* Return the frame on which widget WIDGET is used.. Abort if frame
1333 cannot be determined. */
1335 static struct frame
*
1336 x_frame_of_widget (Widget widget
)
1338 struct x_display_info
*dpyinfo
;
1339 Lisp_Object tail
, frame
;
1342 dpyinfo
= x_display_info_for_display (XtDisplay (widget
));
1344 /* Find the top-level shell of the widget. Note that this function
1345 can be called when the widget is not yet realized, so XtWindow
1346 (widget) == 0. That's the reason we can't simply use
1347 x_any_window_to_frame. */
1348 while (!XtIsTopLevelShell (widget
))
1349 widget
= XtParent (widget
);
1351 /* Look for a frame with that top-level widget. Allocate the color
1352 on that frame to get the right gamma correction value. */
1353 FOR_EACH_FRAME (tail
, frame
)
1357 && f
->output_data
.nothing
!= 1
1358 && FRAME_DISPLAY_INFO (f
) == dpyinfo
1359 && f
->output_data
.x
->widget
== widget
)
1365 /* Allocate a color which is lighter or darker than *PIXEL by FACTOR
1366 or DELTA. Try a color with RGB values multiplied by FACTOR first.
1367 If this produces the same color as PIXEL, try a color where all RGB
1368 values have DELTA added. Return the allocated color in *PIXEL.
1369 DISPLAY is the X display, CMAP is the colormap to operate on.
1370 Value is true if successful. */
1373 x_alloc_lighter_color_for_widget (Widget widget
, Display
*display
, Colormap cmap
,
1374 unsigned long *pixel
, double factor
, int delta
)
1376 struct frame
*f
= x_frame_of_widget (widget
);
1377 return x_alloc_lighter_color (f
, display
, cmap
, pixel
, factor
, delta
);
1380 #endif /* USE_LUCID */
1383 /* Structure specifying which arguments should be passed by Xt to
1384 cvt_string_to_pixel. We want the widget's screen and colormap. */
1386 static XtConvertArgRec cvt_string_to_pixel_args
[] =
1388 {XtWidgetBaseOffset
, (XtPointer
) XtOffset (Widget
, core
.screen
),
1390 {XtWidgetBaseOffset
, (XtPointer
) XtOffset (Widget
, core
.colormap
),
1395 /* The address of this variable is returned by
1396 cvt_string_to_pixel. */
1398 static Pixel cvt_string_to_pixel_value
;
1401 /* Convert a color name to a pixel color.
1403 DPY is the display we are working on.
1405 ARGS is an array of *NARGS XrmValue structures holding additional
1406 information about the widget for which the conversion takes place.
1407 The contents of this array are determined by the specification
1408 in cvt_string_to_pixel_args.
1410 FROM is a pointer to an XrmValue which points to the color name to
1411 convert. TO is an XrmValue in which to return the pixel color.
1413 CLOSURE_RET is a pointer to user-data, in which we record if
1414 we allocated the color or not.
1416 Value is True if successful, False otherwise. */
1419 cvt_string_to_pixel (Display
*dpy
, XrmValue
*args
, Cardinal
*nargs
,
1420 XrmValue
*from
, XrmValue
*to
,
1421 XtPointer
*closure_ret
)
1431 XtAppWarningMsg (XtDisplayToApplicationContext (dpy
),
1432 "wrongParameters", "cvt_string_to_pixel",
1434 "Screen and colormap args required", NULL
, NULL
);
1438 screen
= *(Screen
**) args
[0].addr
;
1439 cmap
= *(Colormap
*) args
[1].addr
;
1440 color_name
= (String
) from
->addr
;
1442 if (strcmp (color_name
, XtDefaultBackground
) == 0)
1444 *closure_ret
= (XtPointer
) False
;
1445 pixel
= WhitePixelOfScreen (screen
);
1447 else if (strcmp (color_name
, XtDefaultForeground
) == 0)
1449 *closure_ret
= (XtPointer
) False
;
1450 pixel
= BlackPixelOfScreen (screen
);
1452 else if (XParseColor (dpy
, cmap
, color_name
, &color
)
1453 && x_alloc_nearest_color_1 (dpy
, cmap
, &color
))
1455 pixel
= color
.pixel
;
1456 *closure_ret
= (XtPointer
) True
;
1461 Cardinal nparams
= 1;
1463 params
[0] = color_name
;
1464 XtAppWarningMsg (XtDisplayToApplicationContext (dpy
),
1465 "badValue", "cvt_string_to_pixel",
1466 "XtToolkitError", "Invalid color `%s'",
1471 if (to
->addr
!= NULL
)
1473 if (to
->size
< sizeof (Pixel
))
1475 to
->size
= sizeof (Pixel
);
1479 *(Pixel
*) to
->addr
= pixel
;
1483 cvt_string_to_pixel_value
= pixel
;
1484 to
->addr
= (XtPointer
) &cvt_string_to_pixel_value
;
1487 to
->size
= sizeof (Pixel
);
1492 /* Free a pixel color which was previously allocated via
1493 cvt_string_to_pixel. This is registered as the destructor
1494 for this type of resource via XtSetTypeConverter.
1496 APP is the application context in which we work.
1498 TO is a pointer to an XrmValue holding the color to free.
1499 CLOSURE is the value we stored in CLOSURE_RET for this color
1500 in cvt_string_to_pixel.
1502 ARGS and NARGS are like for cvt_string_to_pixel. */
1505 cvt_pixel_dtor (XtAppContext app
, XrmValuePtr to
, XtPointer closure
, XrmValuePtr args
,
1510 XtAppWarningMsg (app
, "wrongParameters", "cvt_pixel_dtor",
1512 "Screen and colormap arguments required",
1515 else if (closure
!= NULL
)
1517 /* We did allocate the pixel, so free it. */
1518 Screen
*screen
= *(Screen
**) args
[0].addr
;
1519 Colormap cmap
= *(Colormap
*) args
[1].addr
;
1520 x_free_dpy_colors (DisplayOfScreen (screen
), screen
, cmap
,
1521 (Pixel
*) to
->addr
, 1);
1526 #endif /* USE_X_TOOLKIT */
1529 /* Value is an array of XColor structures for the contents of the
1530 color map of display DPY. Set *NCELLS to the size of the array.
1531 Note that this probably shouldn't be called for large color maps,
1532 say a 24-bit TrueColor map. */
1534 static const XColor
*
1535 x_color_cells (Display
*dpy
, int *ncells
)
1537 struct x_display_info
*dpyinfo
= x_display_info_for_display (dpy
);
1539 if (dpyinfo
->color_cells
== NULL
)
1541 Screen
*screen
= dpyinfo
->screen
;
1542 int ncolor_cells
= XDisplayCells (dpy
, XScreenNumberOfScreen (screen
));
1545 dpyinfo
->color_cells
= xnmalloc (ncolor_cells
,
1546 sizeof *dpyinfo
->color_cells
);
1547 dpyinfo
->ncolor_cells
= ncolor_cells
;
1549 for (i
= 0; i
< ncolor_cells
; ++i
)
1550 dpyinfo
->color_cells
[i
].pixel
= i
;
1552 XQueryColors (dpy
, dpyinfo
->cmap
,
1553 dpyinfo
->color_cells
, ncolor_cells
);
1556 *ncells
= dpyinfo
->ncolor_cells
;
1557 return dpyinfo
->color_cells
;
1561 /* On frame F, translate pixel colors to RGB values for the NCOLORS
1562 colors in COLORS. Use cached information, if available. */
1565 x_query_colors (struct frame
*f
, XColor
*colors
, int ncolors
)
1567 struct x_display_info
*dpyinfo
= FRAME_DISPLAY_INFO (f
);
1569 if (dpyinfo
->color_cells
)
1572 for (i
= 0; i
< ncolors
; ++i
)
1574 unsigned long pixel
= colors
[i
].pixel
;
1575 eassert (pixel
< dpyinfo
->ncolor_cells
);
1576 eassert (dpyinfo
->color_cells
[pixel
].pixel
== pixel
);
1577 colors
[i
] = dpyinfo
->color_cells
[pixel
];
1581 XQueryColors (FRAME_X_DISPLAY (f
), FRAME_X_COLORMAP (f
), colors
, ncolors
);
1585 /* On frame F, translate pixel color to RGB values for the color in
1586 COLOR. Use cached information, if available. */
1589 x_query_color (struct frame
*f
, XColor
*color
)
1591 x_query_colors (f
, color
, 1);
1595 /* Allocate the color COLOR->pixel on DISPLAY, colormap CMAP. If an
1596 exact match can't be allocated, try the nearest color available.
1597 Value is true if successful. Set *COLOR to the color
1601 x_alloc_nearest_color_1 (Display
*dpy
, Colormap cmap
, XColor
*color
)
1605 rc
= XAllocColor (dpy
, cmap
, color
) != 0;
1608 /* If we got to this point, the colormap is full, so we're going
1609 to try to get the next closest color. The algorithm used is
1610 a least-squares matching, which is what X uses for closest
1611 color matching with StaticColor visuals. */
1613 int max_color_delta
= 255;
1614 int max_delta
= 3 * max_color_delta
;
1615 int nearest_delta
= max_delta
+ 1;
1617 const XColor
*cells
= x_color_cells (dpy
, &ncells
);
1619 for (nearest
= i
= 0; i
< ncells
; ++i
)
1621 int dred
= (color
->red
>> 8) - (cells
[i
].red
>> 8);
1622 int dgreen
= (color
->green
>> 8) - (cells
[i
].green
>> 8);
1623 int dblue
= (color
->blue
>> 8) - (cells
[i
].blue
>> 8);
1624 int delta
= dred
* dred
+ dgreen
* dgreen
+ dblue
* dblue
;
1626 if (delta
< nearest_delta
)
1629 nearest_delta
= delta
;
1633 color
->red
= cells
[nearest
].red
;
1634 color
->green
= cells
[nearest
].green
;
1635 color
->blue
= cells
[nearest
].blue
;
1636 rc
= XAllocColor (dpy
, cmap
, color
) != 0;
1640 /* If allocation succeeded, and the allocated pixel color is not
1641 equal to a cached pixel color recorded earlier, there was a
1642 change in the colormap, so clear the color cache. */
1643 struct x_display_info
*dpyinfo
= x_display_info_for_display (dpy
);
1644 XColor
*cached_color
;
1646 if (dpyinfo
->color_cells
1647 && (cached_color
= &dpyinfo
->color_cells
[color
->pixel
],
1648 (cached_color
->red
!= color
->red
1649 || cached_color
->blue
!= color
->blue
1650 || cached_color
->green
!= color
->green
)))
1652 xfree (dpyinfo
->color_cells
);
1653 dpyinfo
->color_cells
= NULL
;
1654 dpyinfo
->ncolor_cells
= 0;
1658 #ifdef DEBUG_X_COLORS
1660 register_color (color
->pixel
);
1661 #endif /* DEBUG_X_COLORS */
1667 /* Allocate the color COLOR->pixel on frame F, colormap CMAP. If an
1668 exact match can't be allocated, try the nearest color available.
1669 Value is true if successful. Set *COLOR to the color
1673 x_alloc_nearest_color (struct frame
*f
, Colormap cmap
, XColor
*color
)
1675 gamma_correct (f
, color
);
1676 return x_alloc_nearest_color_1 (FRAME_X_DISPLAY (f
), cmap
, color
);
1680 /* Allocate color PIXEL on frame F. PIXEL must already be allocated.
1681 It's necessary to do this instead of just using PIXEL directly to
1682 get color reference counts right. */
1685 x_copy_color (struct frame
*f
, unsigned long pixel
)
1689 color
.pixel
= pixel
;
1691 x_query_color (f
, &color
);
1692 XAllocColor (FRAME_X_DISPLAY (f
), FRAME_X_COLORMAP (f
), &color
);
1694 #ifdef DEBUG_X_COLORS
1695 register_color (pixel
);
1701 /* Brightness beyond which a color won't have its highlight brightness
1704 Nominally, highlight colors for `3d' faces are calculated by
1705 brightening an object's color by a constant scale factor, but this
1706 doesn't yield good results for dark colors, so for colors who's
1707 brightness is less than this value (on a scale of 0-65535) have an
1708 use an additional additive factor.
1710 The value here is set so that the default menu-bar/mode-line color
1711 (grey75) will not have its highlights changed at all. */
1712 #define HIGHLIGHT_COLOR_DARK_BOOST_LIMIT 48000
1715 /* Allocate a color which is lighter or darker than *PIXEL by FACTOR
1716 or DELTA. Try a color with RGB values multiplied by FACTOR first.
1717 If this produces the same color as PIXEL, try a color where all RGB
1718 values have DELTA added. Return the allocated color in *PIXEL.
1719 DISPLAY is the X display, CMAP is the colormap to operate on.
1720 Value is non-zero if successful. */
1723 x_alloc_lighter_color (struct frame
*f
, Display
*display
, Colormap cmap
,
1724 unsigned long *pixel
, double factor
, int delta
)
1730 /* Get RGB color values. */
1731 color
.pixel
= *pixel
;
1732 x_query_color (f
, &color
);
1734 /* Change RGB values by specified FACTOR. Avoid overflow! */
1735 eassert (factor
>= 0);
1736 new.red
= min (0xffff, factor
* color
.red
);
1737 new.green
= min (0xffff, factor
* color
.green
);
1738 new.blue
= min (0xffff, factor
* color
.blue
);
1740 /* Calculate brightness of COLOR. */
1741 bright
= (2 * color
.red
+ 3 * color
.green
+ color
.blue
) / 6;
1743 /* We only boost colors that are darker than
1744 HIGHLIGHT_COLOR_DARK_BOOST_LIMIT. */
1745 if (bright
< HIGHLIGHT_COLOR_DARK_BOOST_LIMIT
)
1746 /* Make an additive adjustment to NEW, because it's dark enough so
1747 that scaling by FACTOR alone isn't enough. */
1749 /* How far below the limit this color is (0 - 1, 1 being darker). */
1750 double dimness
= 1 - (double)bright
/ HIGHLIGHT_COLOR_DARK_BOOST_LIMIT
;
1751 /* The additive adjustment. */
1752 int min_delta
= delta
* dimness
* factor
/ 2;
1756 new.red
= max (0, new.red
- min_delta
);
1757 new.green
= max (0, new.green
- min_delta
);
1758 new.blue
= max (0, new.blue
- min_delta
);
1762 new.red
= min (0xffff, min_delta
+ new.red
);
1763 new.green
= min (0xffff, min_delta
+ new.green
);
1764 new.blue
= min (0xffff, min_delta
+ new.blue
);
1768 /* Try to allocate the color. */
1769 success_p
= x_alloc_nearest_color (f
, cmap
, &new);
1772 if (new.pixel
== *pixel
)
1774 /* If we end up with the same color as before, try adding
1775 delta to the RGB values. */
1776 x_free_colors (f
, &new.pixel
, 1);
1778 new.red
= min (0xffff, delta
+ color
.red
);
1779 new.green
= min (0xffff, delta
+ color
.green
);
1780 new.blue
= min (0xffff, delta
+ color
.blue
);
1781 success_p
= x_alloc_nearest_color (f
, cmap
, &new);
1792 /* Set up the foreground color for drawing relief lines of glyph
1793 string S. RELIEF is a pointer to a struct relief containing the GC
1794 with which lines will be drawn. Use a color that is FACTOR or
1795 DELTA lighter or darker than the relief's background which is found
1796 in S->f->output_data.x->relief_background. If such a color cannot
1797 be allocated, use DEFAULT_PIXEL, instead. */
1800 x_setup_relief_color (struct frame
*f
, struct relief
*relief
, double factor
,
1801 int delta
, unsigned long default_pixel
)
1804 struct x_output
*di
= f
->output_data
.x
;
1805 unsigned long mask
= GCForeground
| GCLineWidth
| GCGraphicsExposures
;
1806 unsigned long pixel
;
1807 unsigned long background
= di
->relief_background
;
1808 Colormap cmap
= FRAME_X_COLORMAP (f
);
1809 struct x_display_info
*dpyinfo
= FRAME_DISPLAY_INFO (f
);
1810 Display
*dpy
= FRAME_X_DISPLAY (f
);
1812 xgcv
.graphics_exposures
= False
;
1813 xgcv
.line_width
= 1;
1815 /* Free previously allocated color. The color cell will be reused
1816 when it has been freed as many times as it was allocated, so this
1817 doesn't affect faces using the same colors. */
1818 if (relief
->gc
&& relief
->pixel
!= -1)
1820 x_free_colors (f
, &relief
->pixel
, 1);
1824 /* Allocate new color. */
1825 xgcv
.foreground
= default_pixel
;
1827 if (dpyinfo
->n_planes
!= 1
1828 && x_alloc_lighter_color (f
, dpy
, cmap
, &pixel
, factor
, delta
))
1829 xgcv
.foreground
= relief
->pixel
= pixel
;
1831 if (relief
->gc
== 0)
1833 xgcv
.stipple
= dpyinfo
->gray
;
1835 relief
->gc
= XCreateGC (dpy
, FRAME_X_WINDOW (f
), mask
, &xgcv
);
1838 XChangeGC (dpy
, relief
->gc
, mask
, &xgcv
);
1842 /* Set up colors for the relief lines around glyph string S. */
1845 x_setup_relief_colors (struct glyph_string
*s
)
1847 struct x_output
*di
= s
->f
->output_data
.x
;
1848 unsigned long color
;
1850 if (s
->face
->use_box_color_for_shadows_p
)
1851 color
= s
->face
->box_color
;
1852 else if (s
->first_glyph
->type
== IMAGE_GLYPH
1854 && !IMAGE_BACKGROUND_TRANSPARENT (s
->img
, s
->f
, 0))
1855 color
= IMAGE_BACKGROUND (s
->img
, s
->f
, 0);
1860 /* Get the background color of the face. */
1861 XGetGCValues (s
->display
, s
->gc
, GCBackground
, &xgcv
);
1862 color
= xgcv
.background
;
1865 if (di
->white_relief
.gc
== 0
1866 || color
!= di
->relief_background
)
1868 di
->relief_background
= color
;
1869 x_setup_relief_color (s
->f
, &di
->white_relief
, 1.2, 0x8000,
1870 WHITE_PIX_DEFAULT (s
->f
));
1871 x_setup_relief_color (s
->f
, &di
->black_relief
, 0.6, 0x4000,
1872 BLACK_PIX_DEFAULT (s
->f
));
1877 /* Draw a relief on frame F inside the rectangle given by LEFT_X,
1878 TOP_Y, RIGHT_X, and BOTTOM_Y. WIDTH is the thickness of the relief
1879 to draw, it must be >= 0. RAISED_P non-zero means draw a raised
1880 relief. LEFT_P non-zero means draw a relief on the left side of
1881 the rectangle. RIGHT_P non-zero means draw a relief on the right
1882 side of the rectangle. CLIP_RECT is the clipping rectangle to use
1886 x_draw_relief_rect (struct frame
*f
,
1887 int left_x
, int top_y
, int right_x
, int bottom_y
, int width
,
1888 int raised_p
, int top_p
, int bot_p
, int left_p
, int right_p
,
1889 XRectangle
*clip_rect
)
1891 Display
*dpy
= FRAME_X_DISPLAY (f
);
1892 Window window
= FRAME_X_WINDOW (f
);
1897 gc
= f
->output_data
.x
->white_relief
.gc
;
1899 gc
= f
->output_data
.x
->black_relief
.gc
;
1900 XSetClipRectangles (dpy
, gc
, 0, 0, clip_rect
, 1, Unsorted
);
1902 /* This code is more complicated than it has to be, because of two
1903 minor hacks to make the boxes look nicer: (i) if width > 1, draw
1904 the outermost line using the black relief. (ii) Omit the four
1911 XDrawLine (dpy
, window
, gc
,
1912 left_x
+ (left_p
? 1 : 0), top_y
,
1913 right_x
+ (right_p
? 0 : 1), top_y
);
1915 for (i
= 1; i
< width
; ++i
)
1916 XDrawLine (dpy
, window
, gc
,
1917 left_x
+ i
* left_p
, top_y
+ i
,
1918 right_x
+ 1 - i
* right_p
, top_y
+ i
);
1925 XDrawLine (dpy
, window
, gc
, left_x
, top_y
+ 1, left_x
, bottom_y
);
1927 XClearArea (dpy
, window
, left_x
, top_y
, 1, 1, False
);
1928 XClearArea (dpy
, window
, left_x
, bottom_y
, 1, 1, False
);
1930 for (i
= (width
> 1 ? 1 : 0); i
< width
; ++i
)
1931 XDrawLine (dpy
, window
, gc
,
1932 left_x
+ i
, top_y
+ (i
+ 1) * top_p
,
1933 left_x
+ i
, bottom_y
+ 1 - (i
+ 1) * bot_p
);
1936 XSetClipMask (dpy
, gc
, None
);
1938 gc
= f
->output_data
.x
->black_relief
.gc
;
1940 gc
= f
->output_data
.x
->white_relief
.gc
;
1941 XSetClipRectangles (dpy
, gc
, 0, 0, clip_rect
, 1, Unsorted
);
1945 /* Outermost top line. */
1947 XDrawLine (dpy
, window
, gc
,
1948 left_x
+ (left_p
? 1 : 0), top_y
,
1949 right_x
+ (right_p
? 0 : 1), top_y
);
1951 /* Outermost left line. */
1953 XDrawLine (dpy
, window
, gc
, left_x
, top_y
+ 1, left_x
, bottom_y
);
1959 XDrawLine (dpy
, window
, gc
,
1960 left_x
+ (left_p
? 1 : 0), bottom_y
,
1961 right_x
+ (right_p
? 0 : 1), bottom_y
);
1962 for (i
= 1; i
< width
; ++i
)
1963 XDrawLine (dpy
, window
, gc
,
1964 left_x
+ i
* left_p
, bottom_y
- i
,
1965 right_x
+ 1 - i
* right_p
, bottom_y
- i
);
1971 XClearArea (dpy
, window
, right_x
, top_y
, 1, 1, False
);
1972 XClearArea (dpy
, window
, right_x
, bottom_y
, 1, 1, False
);
1973 for (i
= 0; i
< width
; ++i
)
1974 XDrawLine (dpy
, window
, gc
,
1975 right_x
- i
, top_y
+ (i
+ 1) * top_p
,
1976 right_x
- i
, bottom_y
+ 1 - (i
+ 1) * bot_p
);
1979 XSetClipMask (dpy
, gc
, None
);
1983 /* Draw a box on frame F inside the rectangle given by LEFT_X, TOP_Y,
1984 RIGHT_X, and BOTTOM_Y. WIDTH is the thickness of the lines to
1985 draw, it must be >= 0. LEFT_P non-zero means draw a line on the
1986 left side of the rectangle. RIGHT_P non-zero means draw a line
1987 on the right side of the rectangle. CLIP_RECT is the clipping
1988 rectangle to use when drawing. */
1991 x_draw_box_rect (struct glyph_string
*s
,
1992 int left_x
, int top_y
, int right_x
, int bottom_y
, int width
,
1993 int left_p
, int right_p
, XRectangle
*clip_rect
)
1997 XGetGCValues (s
->display
, s
->gc
, GCForeground
, &xgcv
);
1998 XSetForeground (s
->display
, s
->gc
, s
->face
->box_color
);
1999 XSetClipRectangles (s
->display
, s
->gc
, 0, 0, clip_rect
, 1, Unsorted
);
2002 XFillRectangle (s
->display
, s
->window
, s
->gc
,
2003 left_x
, top_y
, right_x
- left_x
+ 1, width
);
2007 XFillRectangle (s
->display
, s
->window
, s
->gc
,
2008 left_x
, top_y
, width
, bottom_y
- top_y
+ 1);
2011 XFillRectangle (s
->display
, s
->window
, s
->gc
,
2012 left_x
, bottom_y
- width
+ 1, right_x
- left_x
+ 1, width
);
2016 XFillRectangle (s
->display
, s
->window
, s
->gc
,
2017 right_x
- width
+ 1, top_y
, width
, bottom_y
- top_y
+ 1);
2019 XSetForeground (s
->display
, s
->gc
, xgcv
.foreground
);
2020 XSetClipMask (s
->display
, s
->gc
, None
);
2024 /* Draw a box around glyph string S. */
2027 x_draw_glyph_string_box (struct glyph_string
*s
)
2029 int width
, left_x
, right_x
, top_y
, bottom_y
, last_x
, raised_p
;
2030 int left_p
, right_p
;
2031 struct glyph
*last_glyph
;
2032 XRectangle clip_rect
;
2034 last_x
= ((s
->row
->full_width_p
&& !s
->w
->pseudo_window_p
)
2035 ? WINDOW_RIGHT_EDGE_X (s
->w
)
2036 : window_box_right (s
->w
, s
->area
));
2038 /* The glyph that may have a right box line. */
2039 last_glyph
= (s
->cmp
|| s
->img
2041 : s
->first_glyph
+ s
->nchars
- 1);
2043 width
= eabs (s
->face
->box_line_width
);
2044 raised_p
= s
->face
->box
== FACE_RAISED_BOX
;
2046 right_x
= (s
->row
->full_width_p
&& s
->extends_to_end_of_line_p
2048 : min (last_x
, s
->x
+ s
->background_width
) - 1);
2050 bottom_y
= top_y
+ s
->height
- 1;
2052 left_p
= (s
->first_glyph
->left_box_line_p
2053 || (s
->hl
== DRAW_MOUSE_FACE
2055 || s
->prev
->hl
!= s
->hl
)));
2056 right_p
= (last_glyph
->right_box_line_p
2057 || (s
->hl
== DRAW_MOUSE_FACE
2059 || s
->next
->hl
!= s
->hl
)));
2061 get_glyph_string_clip_rect (s
, &clip_rect
);
2063 if (s
->face
->box
== FACE_SIMPLE_BOX
)
2064 x_draw_box_rect (s
, left_x
, top_y
, right_x
, bottom_y
, width
,
2065 left_p
, right_p
, &clip_rect
);
2068 x_setup_relief_colors (s
);
2069 x_draw_relief_rect (s
->f
, left_x
, top_y
, right_x
, bottom_y
,
2070 width
, raised_p
, 1, 1, left_p
, right_p
, &clip_rect
);
2075 /* Draw foreground of image glyph string S. */
2078 x_draw_image_foreground (struct glyph_string
*s
)
2081 int y
= s
->ybase
- image_ascent (s
->img
, s
->face
, &s
->slice
);
2083 /* If first glyph of S has a left box line, start drawing it to the
2084 right of that line. */
2085 if (s
->face
->box
!= FACE_NO_BOX
2086 && s
->first_glyph
->left_box_line_p
2088 x
+= eabs (s
->face
->box_line_width
);
2090 /* If there is a margin around the image, adjust x- and y-position
2092 if (s
->slice
.x
== 0)
2093 x
+= s
->img
->hmargin
;
2094 if (s
->slice
.y
== 0)
2095 y
+= s
->img
->vmargin
;
2101 /* We can't set both a clip mask and use XSetClipRectangles
2102 because the latter also sets a clip mask. We also can't
2103 trust on the shape extension to be available
2104 (XShapeCombineRegion). So, compute the rectangle to draw
2106 unsigned long mask
= (GCClipMask
| GCClipXOrigin
| GCClipYOrigin
2109 XRectangle clip_rect
, image_rect
, r
;
2111 xgcv
.clip_mask
= s
->img
->mask
;
2112 xgcv
.clip_x_origin
= x
;
2113 xgcv
.clip_y_origin
= y
;
2114 xgcv
.function
= GXcopy
;
2115 XChangeGC (s
->display
, s
->gc
, mask
, &xgcv
);
2117 get_glyph_string_clip_rect (s
, &clip_rect
);
2120 image_rect
.width
= s
->slice
.width
;
2121 image_rect
.height
= s
->slice
.height
;
2122 if (x_intersect_rectangles (&clip_rect
, &image_rect
, &r
))
2123 XCopyArea (s
->display
, s
->img
->pixmap
, s
->window
, s
->gc
,
2124 s
->slice
.x
+ r
.x
- x
, s
->slice
.y
+ r
.y
- y
,
2125 r
.width
, r
.height
, r
.x
, r
.y
);
2129 XRectangle clip_rect
, image_rect
, r
;
2131 get_glyph_string_clip_rect (s
, &clip_rect
);
2134 image_rect
.width
= s
->slice
.width
;
2135 image_rect
.height
= s
->slice
.height
;
2136 if (x_intersect_rectangles (&clip_rect
, &image_rect
, &r
))
2137 XCopyArea (s
->display
, s
->img
->pixmap
, s
->window
, s
->gc
,
2138 s
->slice
.x
+ r
.x
- x
, s
->slice
.y
+ r
.y
- y
,
2139 r
.width
, r
.height
, r
.x
, r
.y
);
2141 /* When the image has a mask, we can expect that at
2142 least part of a mouse highlight or a block cursor will
2143 be visible. If the image doesn't have a mask, make
2144 a block cursor visible by drawing a rectangle around
2145 the image. I believe it's looking better if we do
2146 nothing here for mouse-face. */
2147 if (s
->hl
== DRAW_CURSOR
)
2149 int relief
= eabs (s
->img
->relief
);
2150 XDrawRectangle (s
->display
, s
->window
, s
->gc
,
2151 x
- relief
, y
- relief
,
2152 s
->slice
.width
+ relief
*2 - 1,
2153 s
->slice
.height
+ relief
*2 - 1);
2158 /* Draw a rectangle if image could not be loaded. */
2159 XDrawRectangle (s
->display
, s
->window
, s
->gc
, x
, y
,
2160 s
->slice
.width
- 1, s
->slice
.height
- 1);
2164 /* Draw a relief around the image glyph string S. */
2167 x_draw_image_relief (struct glyph_string
*s
)
2169 int x1
, y1
, thick
, raised_p
, top_p
, bot_p
, left_p
, right_p
;
2170 int extra_x
, extra_y
;
2173 int y
= s
->ybase
- image_ascent (s
->img
, s
->face
, &s
->slice
);
2175 /* If first glyph of S has a left box line, start drawing it to the
2176 right of that line. */
2177 if (s
->face
->box
!= FACE_NO_BOX
2178 && s
->first_glyph
->left_box_line_p
2180 x
+= eabs (s
->face
->box_line_width
);
2182 /* If there is a margin around the image, adjust x- and y-position
2184 if (s
->slice
.x
== 0)
2185 x
+= s
->img
->hmargin
;
2186 if (s
->slice
.y
== 0)
2187 y
+= s
->img
->vmargin
;
2189 if (s
->hl
== DRAW_IMAGE_SUNKEN
2190 || s
->hl
== DRAW_IMAGE_RAISED
)
2192 thick
= tool_bar_button_relief
>= 0 ? tool_bar_button_relief
: DEFAULT_TOOL_BAR_BUTTON_RELIEF
;
2193 raised_p
= s
->hl
== DRAW_IMAGE_RAISED
;
2197 thick
= eabs (s
->img
->relief
);
2198 raised_p
= s
->img
->relief
> 0;
2201 x1
= x
+ s
->slice
.width
- 1;
2202 y1
= y
+ s
->slice
.height
- 1;
2204 extra_x
= extra_y
= 0;
2205 if (s
->face
->id
== TOOL_BAR_FACE_ID
)
2207 if (CONSP (Vtool_bar_button_margin
)
2208 && INTEGERP (XCAR (Vtool_bar_button_margin
))
2209 && INTEGERP (XCDR (Vtool_bar_button_margin
)))
2211 extra_x
= XINT (XCAR (Vtool_bar_button_margin
));
2212 extra_y
= XINT (XCDR (Vtool_bar_button_margin
));
2214 else if (INTEGERP (Vtool_bar_button_margin
))
2215 extra_x
= extra_y
= XINT (Vtool_bar_button_margin
);
2218 top_p
= bot_p
= left_p
= right_p
= 0;
2220 if (s
->slice
.x
== 0)
2221 x
-= thick
+ extra_x
, left_p
= 1;
2222 if (s
->slice
.y
== 0)
2223 y
-= thick
+ extra_y
, top_p
= 1;
2224 if (s
->slice
.x
+ s
->slice
.width
== s
->img
->width
)
2225 x1
+= thick
+ extra_x
, right_p
= 1;
2226 if (s
->slice
.y
+ s
->slice
.height
== s
->img
->height
)
2227 y1
+= thick
+ extra_y
, bot_p
= 1;
2229 x_setup_relief_colors (s
);
2230 get_glyph_string_clip_rect (s
, &r
);
2231 x_draw_relief_rect (s
->f
, x
, y
, x1
, y1
, thick
, raised_p
,
2232 top_p
, bot_p
, left_p
, right_p
, &r
);
2236 /* Draw the foreground of image glyph string S to PIXMAP. */
2239 x_draw_image_foreground_1 (struct glyph_string
*s
, Pixmap pixmap
)
2242 int y
= s
->ybase
- s
->y
- image_ascent (s
->img
, s
->face
, &s
->slice
);
2244 /* If first glyph of S has a left box line, start drawing it to the
2245 right of that line. */
2246 if (s
->face
->box
!= FACE_NO_BOX
2247 && s
->first_glyph
->left_box_line_p
2249 x
+= eabs (s
->face
->box_line_width
);
2251 /* If there is a margin around the image, adjust x- and y-position
2253 if (s
->slice
.x
== 0)
2254 x
+= s
->img
->hmargin
;
2255 if (s
->slice
.y
== 0)
2256 y
+= s
->img
->vmargin
;
2262 /* We can't set both a clip mask and use XSetClipRectangles
2263 because the latter also sets a clip mask. We also can't
2264 trust on the shape extension to be available
2265 (XShapeCombineRegion). So, compute the rectangle to draw
2267 unsigned long mask
= (GCClipMask
| GCClipXOrigin
| GCClipYOrigin
2271 xgcv
.clip_mask
= s
->img
->mask
;
2272 xgcv
.clip_x_origin
= x
- s
->slice
.x
;
2273 xgcv
.clip_y_origin
= y
- s
->slice
.y
;
2274 xgcv
.function
= GXcopy
;
2275 XChangeGC (s
->display
, s
->gc
, mask
, &xgcv
);
2277 XCopyArea (s
->display
, s
->img
->pixmap
, pixmap
, s
->gc
,
2278 s
->slice
.x
, s
->slice
.y
,
2279 s
->slice
.width
, s
->slice
.height
, x
, y
);
2280 XSetClipMask (s
->display
, s
->gc
, None
);
2284 XCopyArea (s
->display
, s
->img
->pixmap
, pixmap
, s
->gc
,
2285 s
->slice
.x
, s
->slice
.y
,
2286 s
->slice
.width
, s
->slice
.height
, x
, y
);
2288 /* When the image has a mask, we can expect that at
2289 least part of a mouse highlight or a block cursor will
2290 be visible. If the image doesn't have a mask, make
2291 a block cursor visible by drawing a rectangle around
2292 the image. I believe it's looking better if we do
2293 nothing here for mouse-face. */
2294 if (s
->hl
== DRAW_CURSOR
)
2296 int r
= eabs (s
->img
->relief
);
2297 XDrawRectangle (s
->display
, s
->window
, s
->gc
, x
- r
, y
- r
,
2298 s
->slice
.width
+ r
*2 - 1,
2299 s
->slice
.height
+ r
*2 - 1);
2304 /* Draw a rectangle if image could not be loaded. */
2305 XDrawRectangle (s
->display
, pixmap
, s
->gc
, x
, y
,
2306 s
->slice
.width
- 1, s
->slice
.height
- 1);
2310 /* Draw part of the background of glyph string S. X, Y, W, and H
2311 give the rectangle to draw. */
2314 x_draw_glyph_string_bg_rect (struct glyph_string
*s
, int x
, int y
, int w
, int h
)
2318 /* Fill background with a stipple pattern. */
2319 XSetFillStyle (s
->display
, s
->gc
, FillOpaqueStippled
);
2320 XFillRectangle (s
->display
, s
->window
, s
->gc
, x
, y
, w
, h
);
2321 XSetFillStyle (s
->display
, s
->gc
, FillSolid
);
2324 x_clear_glyph_string_rect (s
, x
, y
, w
, h
);
2328 /* Draw image glyph string S.
2331 s->x +-------------------------
2334 | +-------------------------
2337 | | +-------------------
2343 x_draw_image_glyph_string (struct glyph_string
*s
)
2345 int box_line_hwidth
= eabs (s
->face
->box_line_width
);
2346 int box_line_vwidth
= max (s
->face
->box_line_width
, 0);
2348 Pixmap pixmap
= None
;
2351 if (s
->slice
.y
== 0)
2352 height
-= box_line_vwidth
;
2353 if (s
->slice
.y
+ s
->slice
.height
>= s
->img
->height
)
2354 height
-= box_line_vwidth
;
2356 /* Fill background with face under the image. Do it only if row is
2357 taller than image or if image has a clip mask to reduce
2359 s
->stippled_p
= s
->face
->stipple
!= 0;
2360 if (height
> s
->slice
.height
2364 || s
->img
->pixmap
== 0
2365 || s
->width
!= s
->background_width
)
2369 /* Create a pixmap as large as the glyph string. Fill it
2370 with the background color. Copy the image to it, using
2371 its mask. Copy the temporary pixmap to the display. */
2372 Screen
*screen
= FRAME_X_SCREEN (s
->f
);
2373 int depth
= DefaultDepthOfScreen (screen
);
2375 /* Create a pixmap as large as the glyph string. */
2376 pixmap
= XCreatePixmap (s
->display
, s
->window
,
2377 s
->background_width
,
2380 /* Don't clip in the following because we're working on the
2382 XSetClipMask (s
->display
, s
->gc
, None
);
2384 /* Fill the pixmap with the background color/stipple. */
2387 /* Fill background with a stipple pattern. */
2388 XSetFillStyle (s
->display
, s
->gc
, FillOpaqueStippled
);
2389 XSetTSOrigin (s
->display
, s
->gc
, - s
->x
, - s
->y
);
2390 XFillRectangle (s
->display
, pixmap
, s
->gc
,
2391 0, 0, s
->background_width
, s
->height
);
2392 XSetFillStyle (s
->display
, s
->gc
, FillSolid
);
2393 XSetTSOrigin (s
->display
, s
->gc
, 0, 0);
2398 XGetGCValues (s
->display
, s
->gc
, GCForeground
| GCBackground
,
2400 XSetForeground (s
->display
, s
->gc
, xgcv
.background
);
2401 XFillRectangle (s
->display
, pixmap
, s
->gc
,
2402 0, 0, s
->background_width
, s
->height
);
2403 XSetForeground (s
->display
, s
->gc
, xgcv
.foreground
);
2410 int width
= s
->background_width
;
2412 if (s
->first_glyph
->left_box_line_p
2415 x
+= box_line_hwidth
;
2416 width
-= box_line_hwidth
;
2419 if (s
->slice
.y
== 0)
2420 y
+= box_line_vwidth
;
2422 x_draw_glyph_string_bg_rect (s
, x
, y
, width
, height
);
2425 s
->background_filled_p
= 1;
2428 /* Draw the foreground. */
2431 x_draw_image_foreground_1 (s
, pixmap
);
2432 x_set_glyph_string_clipping (s
);
2433 XCopyArea (s
->display
, pixmap
, s
->window
, s
->gc
,
2434 0, 0, s
->background_width
, s
->height
, s
->x
, s
->y
);
2435 XFreePixmap (s
->display
, pixmap
);
2438 x_draw_image_foreground (s
);
2440 /* If we must draw a relief around the image, do it. */
2442 || s
->hl
== DRAW_IMAGE_RAISED
2443 || s
->hl
== DRAW_IMAGE_SUNKEN
)
2444 x_draw_image_relief (s
);
2448 /* Draw stretch glyph string S. */
2451 x_draw_stretch_glyph_string (struct glyph_string
*s
)
2453 eassert (s
->first_glyph
->type
== STRETCH_GLYPH
);
2455 if (s
->hl
== DRAW_CURSOR
2456 && !x_stretch_cursor_p
)
2458 /* If `x-stretch-cursor' is nil, don't draw a block cursor as
2459 wide as the stretch glyph. */
2460 int width
, background_width
= s
->background_width
;
2463 if (!s
->row
->reversed_p
)
2465 int left_x
= window_box_left_offset (s
->w
, TEXT_AREA
);
2469 background_width
-= left_x
- x
;
2475 /* In R2L rows, draw the cursor on the right edge of the
2477 int right_x
= window_box_right_offset (s
->w
, TEXT_AREA
);
2479 if (x
+ background_width
> right_x
)
2480 background_width
-= x
- right_x
;
2481 x
+= background_width
;
2483 width
= min (FRAME_COLUMN_WIDTH (s
->f
), background_width
);
2484 if (s
->row
->reversed_p
)
2488 x_draw_glyph_string_bg_rect (s
, x
, s
->y
, width
, s
->height
);
2490 /* Clear rest using the GC of the original non-cursor face. */
2491 if (width
< background_width
)
2494 int w
= background_width
- width
, h
= s
->height
;
2498 if (!s
->row
->reversed_p
)
2502 if (s
->row
->mouse_face_p
2503 && cursor_in_mouse_face_p (s
->w
))
2505 x_set_mouse_face_gc (s
);
2511 get_glyph_string_clip_rect (s
, &r
);
2512 XSetClipRectangles (s
->display
, gc
, 0, 0, &r
, 1, Unsorted
);
2514 if (s
->face
->stipple
)
2516 /* Fill background with a stipple pattern. */
2517 XSetFillStyle (s
->display
, gc
, FillOpaqueStippled
);
2518 XFillRectangle (s
->display
, s
->window
, gc
, x
, y
, w
, h
);
2519 XSetFillStyle (s
->display
, gc
, FillSolid
);
2524 XGetGCValues (s
->display
, gc
, GCForeground
| GCBackground
, &xgcv
);
2525 XSetForeground (s
->display
, gc
, xgcv
.background
);
2526 XFillRectangle (s
->display
, s
->window
, gc
, x
, y
, w
, h
);
2527 XSetForeground (s
->display
, gc
, xgcv
.foreground
);
2530 XSetClipMask (s
->display
, gc
, None
);
2533 else if (!s
->background_filled_p
)
2535 int background_width
= s
->background_width
;
2536 int x
= s
->x
, left_x
= window_box_left_offset (s
->w
, TEXT_AREA
);
2538 /* Don't draw into left margin, fringe or scrollbar area
2539 except for header line and mode line. */
2540 if (x
< left_x
&& !s
->row
->mode_line_p
)
2542 background_width
-= left_x
- x
;
2545 if (background_width
> 0)
2546 x_draw_glyph_string_bg_rect (s
, x
, s
->y
, background_width
, s
->height
);
2549 s
->background_filled_p
= 1;
2553 Draw a wavy line under S. The wave fills wave_height pixels from y0.
2559 wave_height = 3 | * * * *
2564 x_draw_underwave (struct glyph_string
*s
)
2566 int wave_height
= 3, wave_length
= 2;
2567 int dx
, dy
, x0
, y0
, width
, x1
, y1
, x2
, y2
, odd
, xmax
;
2568 XRectangle wave_clip
, string_clip
, final_clip
;
2571 dy
= wave_height
- 1;
2573 y0
= s
->ybase
- wave_height
+ 3;
2577 /* Find and set clipping rectangle */
2581 wave_clip
.width
= width
;
2582 wave_clip
.height
= wave_height
;
2583 get_glyph_string_clip_rect (s
, &string_clip
);
2585 if (!x_intersect_rectangles (&wave_clip
, &string_clip
, &final_clip
))
2588 XSetClipRectangles (s
->display
, s
->gc
, 0, 0, &final_clip
, 1, Unsorted
);
2590 /* Draw the waves */
2592 x1
= x0
- (x0
% dx
);
2602 if (INT_MAX
- dx
< xmax
)
2607 XDrawLine (s
->display
, s
->window
, s
->gc
, x1
, y1
, x2
, y2
);
2609 x2
+= dx
, y2
= y0
+ odd
*dy
;
2613 /* Restore previous clipping rectangle(s) */
2614 XSetClipRectangles (s
->display
, s
->gc
, 0, 0, s
->clip
, s
->num_clips
, Unsorted
);
2618 /* Draw glyph string S. */
2621 x_draw_glyph_string (struct glyph_string
*s
)
2623 bool relief_drawn_p
= 0;
2625 /* If S draws into the background of its successors, draw the
2626 background of the successors first so that S can draw into it.
2627 This makes S->next use XDrawString instead of XDrawImageString. */
2628 if (s
->next
&& s
->right_overhang
&& !s
->for_overlaps
)
2631 struct glyph_string
*next
;
2633 for (width
= 0, next
= s
->next
;
2634 next
&& width
< s
->right_overhang
;
2635 width
+= next
->width
, next
= next
->next
)
2636 if (next
->first_glyph
->type
!= IMAGE_GLYPH
)
2638 x_set_glyph_string_gc (next
);
2639 x_set_glyph_string_clipping (next
);
2640 if (next
->first_glyph
->type
== STRETCH_GLYPH
)
2641 x_draw_stretch_glyph_string (next
);
2643 x_draw_glyph_string_background (next
, 1);
2644 next
->num_clips
= 0;
2648 /* Set up S->gc, set clipping and draw S. */
2649 x_set_glyph_string_gc (s
);
2651 /* Draw relief (if any) in advance for char/composition so that the
2652 glyph string can be drawn over it. */
2653 if (!s
->for_overlaps
2654 && s
->face
->box
!= FACE_NO_BOX
2655 && (s
->first_glyph
->type
== CHAR_GLYPH
2656 || s
->first_glyph
->type
== COMPOSITE_GLYPH
))
2659 x_set_glyph_string_clipping (s
);
2660 x_draw_glyph_string_background (s
, 1);
2661 x_draw_glyph_string_box (s
);
2662 x_set_glyph_string_clipping (s
);
2665 else if (!s
->clip_head
/* draw_glyphs didn't specify a clip mask. */
2667 && ((s
->prev
&& s
->prev
->hl
!= s
->hl
&& s
->left_overhang
)
2668 || (s
->next
&& s
->next
->hl
!= s
->hl
&& s
->right_overhang
)))
2669 /* We must clip just this glyph. left_overhang part has already
2670 drawn when s->prev was drawn, and right_overhang part will be
2671 drawn later when s->next is drawn. */
2672 x_set_glyph_string_clipping_exactly (s
, s
);
2674 x_set_glyph_string_clipping (s
);
2676 switch (s
->first_glyph
->type
)
2679 x_draw_image_glyph_string (s
);
2683 x_draw_stretch_glyph_string (s
);
2687 if (s
->for_overlaps
)
2688 s
->background_filled_p
= 1;
2690 x_draw_glyph_string_background (s
, 0);
2691 x_draw_glyph_string_foreground (s
);
2694 case COMPOSITE_GLYPH
:
2695 if (s
->for_overlaps
|| (s
->cmp_from
> 0
2696 && ! s
->first_glyph
->u
.cmp
.automatic
))
2697 s
->background_filled_p
= 1;
2699 x_draw_glyph_string_background (s
, 1);
2700 x_draw_composite_glyph_string_foreground (s
);
2703 case GLYPHLESS_GLYPH
:
2704 if (s
->for_overlaps
)
2705 s
->background_filled_p
= 1;
2707 x_draw_glyph_string_background (s
, 1);
2708 x_draw_glyphless_glyph_string_foreground (s
);
2715 if (!s
->for_overlaps
)
2717 /* Draw underline. */
2718 if (s
->face
->underline_p
)
2720 if (s
->face
->underline_type
== FACE_UNDER_WAVE
)
2722 if (s
->face
->underline_defaulted_p
)
2723 x_draw_underwave (s
);
2727 XGetGCValues (s
->display
, s
->gc
, GCForeground
, &xgcv
);
2728 XSetForeground (s
->display
, s
->gc
, s
->face
->underline_color
);
2729 x_draw_underwave (s
);
2730 XSetForeground (s
->display
, s
->gc
, xgcv
.foreground
);
2733 else if (s
->face
->underline_type
== FACE_UNDER_LINE
)
2735 unsigned long thickness
, position
;
2738 if (s
->prev
&& s
->prev
->face
->underline_p
2739 && s
->prev
->face
->underline_type
== FACE_UNDER_LINE
)
2741 /* We use the same underline style as the previous one. */
2742 thickness
= s
->prev
->underline_thickness
;
2743 position
= s
->prev
->underline_position
;
2747 /* Get the underline thickness. Default is 1 pixel. */
2748 if (s
->font
&& s
->font
->underline_thickness
> 0)
2749 thickness
= s
->font
->underline_thickness
;
2752 if (x_underline_at_descent_line
)
2753 position
= (s
->height
- thickness
) - (s
->ybase
- s
->y
);
2756 /* Get the underline position. This is the recommended
2757 vertical offset in pixels from the baseline to the top of
2758 the underline. This is a signed value according to the
2759 specs, and its default is
2761 ROUND ((maximum descent) / 2), with
2762 ROUND(x) = floor (x + 0.5) */
2764 if (x_use_underline_position_properties
2765 && s
->font
&& s
->font
->underline_position
>= 0)
2766 position
= s
->font
->underline_position
;
2768 position
= (s
->font
->descent
+ 1) / 2;
2770 position
= underline_minimum_offset
;
2772 position
= max (position
, underline_minimum_offset
);
2774 /* Check the sanity of thickness and position. We should
2775 avoid drawing underline out of the current line area. */
2776 if (s
->y
+ s
->height
<= s
->ybase
+ position
)
2777 position
= (s
->height
- 1) - (s
->ybase
- s
->y
);
2778 if (s
->y
+ s
->height
< s
->ybase
+ position
+ thickness
)
2779 thickness
= (s
->y
+ s
->height
) - (s
->ybase
+ position
);
2780 s
->underline_thickness
= thickness
;
2781 s
->underline_position
= position
;
2782 y
= s
->ybase
+ position
;
2783 if (s
->face
->underline_defaulted_p
)
2784 XFillRectangle (s
->display
, s
->window
, s
->gc
,
2785 s
->x
, y
, s
->width
, thickness
);
2789 XGetGCValues (s
->display
, s
->gc
, GCForeground
, &xgcv
);
2790 XSetForeground (s
->display
, s
->gc
, s
->face
->underline_color
);
2791 XFillRectangle (s
->display
, s
->window
, s
->gc
,
2792 s
->x
, y
, s
->width
, thickness
);
2793 XSetForeground (s
->display
, s
->gc
, xgcv
.foreground
);
2797 /* Draw overline. */
2798 if (s
->face
->overline_p
)
2800 unsigned long dy
= 0, h
= 1;
2802 if (s
->face
->overline_color_defaulted_p
)
2803 XFillRectangle (s
->display
, s
->window
, s
->gc
, s
->x
, s
->y
+ dy
,
2808 XGetGCValues (s
->display
, s
->gc
, GCForeground
, &xgcv
);
2809 XSetForeground (s
->display
, s
->gc
, s
->face
->overline_color
);
2810 XFillRectangle (s
->display
, s
->window
, s
->gc
, s
->x
, s
->y
+ dy
,
2812 XSetForeground (s
->display
, s
->gc
, xgcv
.foreground
);
2816 /* Draw strike-through. */
2817 if (s
->face
->strike_through_p
)
2819 unsigned long h
= 1;
2820 unsigned long dy
= (s
->height
- h
) / 2;
2822 if (s
->face
->strike_through_color_defaulted_p
)
2823 XFillRectangle (s
->display
, s
->window
, s
->gc
, s
->x
, s
->y
+ dy
,
2828 XGetGCValues (s
->display
, s
->gc
, GCForeground
, &xgcv
);
2829 XSetForeground (s
->display
, s
->gc
, s
->face
->strike_through_color
);
2830 XFillRectangle (s
->display
, s
->window
, s
->gc
, s
->x
, s
->y
+ dy
,
2832 XSetForeground (s
->display
, s
->gc
, xgcv
.foreground
);
2836 /* Draw relief if not yet drawn. */
2837 if (!relief_drawn_p
&& s
->face
->box
!= FACE_NO_BOX
)
2838 x_draw_glyph_string_box (s
);
2842 struct glyph_string
*prev
;
2844 for (prev
= s
->prev
; prev
; prev
= prev
->prev
)
2845 if (prev
->hl
!= s
->hl
2846 && prev
->x
+ prev
->width
+ prev
->right_overhang
> s
->x
)
2848 /* As prev was drawn while clipped to its own area, we
2849 must draw the right_overhang part using s->hl now. */
2850 enum draw_glyphs_face save
= prev
->hl
;
2853 x_set_glyph_string_gc (prev
);
2854 x_set_glyph_string_clipping_exactly (s
, prev
);
2855 if (prev
->first_glyph
->type
== CHAR_GLYPH
)
2856 x_draw_glyph_string_foreground (prev
);
2858 x_draw_composite_glyph_string_foreground (prev
);
2859 XSetClipMask (prev
->display
, prev
->gc
, None
);
2861 prev
->num_clips
= 0;
2867 struct glyph_string
*next
;
2869 for (next
= s
->next
; next
; next
= next
->next
)
2870 if (next
->hl
!= s
->hl
2871 && next
->x
- next
->left_overhang
< s
->x
+ s
->width
)
2873 /* As next will be drawn while clipped to its own area,
2874 we must draw the left_overhang part using s->hl now. */
2875 enum draw_glyphs_face save
= next
->hl
;
2878 x_set_glyph_string_gc (next
);
2879 x_set_glyph_string_clipping_exactly (s
, next
);
2880 if (next
->first_glyph
->type
== CHAR_GLYPH
)
2881 x_draw_glyph_string_foreground (next
);
2883 x_draw_composite_glyph_string_foreground (next
);
2884 XSetClipMask (next
->display
, next
->gc
, None
);
2886 next
->num_clips
= 0;
2887 next
->clip_head
= s
->next
;
2892 /* Reset clipping. */
2893 XSetClipMask (s
->display
, s
->gc
, None
);
2897 /* Shift display to make room for inserted glyphs. */
2900 x_shift_glyphs_for_insert (struct frame
*f
, int x
, int y
, int width
, int height
, int shift_by
)
2902 XCopyArea (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), FRAME_X_WINDOW (f
),
2903 f
->output_data
.x
->normal_gc
,
2904 x
, y
, width
, height
,
2908 /* Delete N glyphs at the nominal cursor position. Not implemented
2912 x_delete_glyphs (struct frame
*f
, register int n
)
2918 /* Like XClearArea, but check that WIDTH and HEIGHT are reasonable.
2919 If they are <= 0, this is probably an error. */
2922 x_clear_area (Display
*dpy
, Window window
, int x
, int y
, int width
, int height
)
2924 eassert (width
> 0 && height
> 0);
2925 XClearArea (dpy
, window
, x
, y
, width
, height
, False
);
2929 /* Clear an entire frame. */
2932 x_clear_frame (struct frame
*f
)
2934 /* Clearing the frame will erase any cursor, so mark them all as no
2936 mark_window_cursors_off (XWINDOW (FRAME_ROOT_WINDOW (f
)));
2940 XClearWindow (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
));
2942 /* We have to clear the scroll bars. If we have changed colors or
2943 something like that, then they should be notified. */
2944 x_scroll_bar_clear (f
);
2946 #if defined (USE_GTK) && defined (USE_TOOLKIT_SCROLL_BARS)
2947 /* Make sure scroll bars are redrawn. As they aren't redrawn by
2948 redisplay, do it here. */
2949 if (FRAME_GTK_WIDGET (f
))
2950 gtk_widget_queue_draw (FRAME_GTK_WIDGET (f
));
2953 XFlush (FRAME_X_DISPLAY (f
));
2958 /* RIF: Show hourglass cursor on frame F. */
2961 x_show_hourglass (struct frame
*f
)
2963 Display
*dpy
= FRAME_X_DISPLAY (f
);
2967 struct x_output
*x
= FRAME_X_OUTPUT (f
);
2968 #ifdef USE_X_TOOLKIT
2971 if (FRAME_OUTER_WINDOW (f
))
2976 if (!x
->hourglass_window
)
2978 unsigned long mask
= CWCursor
;
2979 XSetWindowAttributes attrs
;
2981 Window parent
= FRAME_X_WINDOW (f
);
2983 Window parent
= FRAME_OUTER_WINDOW (f
);
2985 attrs
.cursor
= x
->hourglass_cursor
;
2987 x
->hourglass_window
= XCreateWindow
2988 (dpy
, parent
, 0, 0, 32000, 32000, 0, 0,
2989 InputOnly
, CopyFromParent
, mask
, &attrs
);
2992 XMapRaised (dpy
, x
->hourglass_window
);
2998 /* RIF: Cancel hourglass cursor on frame F. */
3001 x_hide_hourglass (struct frame
*f
)
3003 struct x_output
*x
= FRAME_X_OUTPUT (f
);
3005 /* Watch out for newly created frames. */
3006 if (x
->hourglass_window
)
3008 XUnmapWindow (FRAME_X_DISPLAY (f
), x
->hourglass_window
);
3009 /* Sync here because XTread_socket looks at the
3010 hourglass_p flag that is reset to zero below. */
3011 XSync (FRAME_X_DISPLAY (f
), False
);
3016 /* Invert the middle quarter of the frame for .15 sec. */
3019 XTflash (struct frame
*f
)
3025 /* Use Gdk routines to draw. This way, we won't draw over scroll bars
3026 when the scroll bars and the edit widget share the same X window. */
3027 GdkWindow
*window
= gtk_widget_get_window (FRAME_GTK_WIDGET (f
));
3029 cairo_t
*cr
= gdk_cairo_create (window
);
3030 cairo_set_source_rgb (cr
, 1, 1, 1);
3031 cairo_set_operator (cr
, CAIRO_OPERATOR_DIFFERENCE
);
3032 #define XFillRectangle(d, win, gc, x, y, w, h) \
3034 cairo_rectangle (cr, x, y, w, h); \
3038 #else /* ! HAVE_GTK3 */
3041 vals
.foreground
.pixel
= (FRAME_FOREGROUND_PIXEL (f
)
3042 ^ FRAME_BACKGROUND_PIXEL (f
));
3043 vals
.function
= GDK_XOR
;
3044 gc
= gdk_gc_new_with_values (window
,
3045 &vals
, GDK_GC_FUNCTION
| GDK_GC_FOREGROUND
);
3046 #define XFillRectangle(d, win, gc, x, y, w, h) \
3047 gdk_draw_rectangle (window, gc, TRUE, x, y, w, h)
3048 #endif /* ! HAVE_GTK3 */
3049 #else /* ! USE_GTK */
3052 /* Create a GC that will use the GXxor function to flip foreground
3053 pixels into background pixels. */
3057 values
.function
= GXxor
;
3058 values
.foreground
= (FRAME_FOREGROUND_PIXEL (f
)
3059 ^ FRAME_BACKGROUND_PIXEL (f
));
3061 gc
= XCreateGC (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
3062 GCFunction
| GCForeground
, &values
);
3066 /* Get the height not including a menu bar widget. */
3067 int height
= FRAME_PIXEL_HEIGHT (f
);
3068 /* Height of each line to flash. */
3069 int flash_height
= FRAME_LINE_HEIGHT (f
);
3070 /* These will be the left and right margins of the rectangles. */
3071 int flash_left
= FRAME_INTERNAL_BORDER_WIDTH (f
);
3072 int flash_right
= FRAME_PIXEL_WIDTH (f
) - FRAME_INTERNAL_BORDER_WIDTH (f
);
3073 int width
= flash_right
- flash_left
;
3075 /* If window is tall, flash top and bottom line. */
3076 if (height
> 3 * FRAME_LINE_HEIGHT (f
))
3078 XFillRectangle (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), gc
,
3080 (FRAME_INTERNAL_BORDER_WIDTH (f
)
3081 + FRAME_TOP_MARGIN_HEIGHT (f
)),
3082 width
, flash_height
);
3083 XFillRectangle (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), gc
,
3085 (height
- flash_height
3086 - FRAME_INTERNAL_BORDER_WIDTH (f
)),
3087 width
, flash_height
);
3091 /* If it is short, flash it all. */
3092 XFillRectangle (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), gc
,
3093 flash_left
, FRAME_INTERNAL_BORDER_WIDTH (f
),
3094 width
, height
- 2 * FRAME_INTERNAL_BORDER_WIDTH (f
));
3099 struct timespec delay
= make_timespec (0, 150 * 1000 * 1000);
3100 struct timespec wakeup
= timespec_add (current_timespec (), delay
);
3102 /* Keep waiting until past the time wakeup or any input gets
3104 while (! detect_input_pending ())
3106 struct timespec current
= current_timespec ();
3107 struct timespec timeout
;
3109 /* Break if result would not be positive. */
3110 if (timespec_cmp (wakeup
, current
) <= 0)
3113 /* How long `select' should wait. */
3114 timeout
= make_timespec (0, 10 * 1000 * 1000);
3116 /* Try to wait that long--but we might wake up sooner. */
3117 pselect (0, NULL
, NULL
, NULL
, &timeout
, NULL
);
3121 /* If window is tall, flash top and bottom line. */
3122 if (height
> 3 * FRAME_LINE_HEIGHT (f
))
3124 XFillRectangle (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), gc
,
3126 (FRAME_INTERNAL_BORDER_WIDTH (f
)
3127 + FRAME_TOP_MARGIN_HEIGHT (f
)),
3128 width
, flash_height
);
3129 XFillRectangle (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), gc
,
3131 (height
- flash_height
3132 - FRAME_INTERNAL_BORDER_WIDTH (f
)),
3133 width
, flash_height
);
3136 /* If it is short, flash it all. */
3137 XFillRectangle (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), gc
,
3138 flash_left
, FRAME_INTERNAL_BORDER_WIDTH (f
),
3139 width
, height
- 2 * FRAME_INTERNAL_BORDER_WIDTH (f
));
3145 g_object_unref (G_OBJECT (gc
));
3147 #undef XFillRectangle
3149 XFreeGC (FRAME_X_DISPLAY (f
), gc
);
3160 XTtoggle_invisible_pointer (struct frame
*f
, int invisible
)
3163 FRAME_DISPLAY_INFO (f
)->toggle_visible_pointer (f
, invisible
);
3168 /* Make audible bell. */
3171 XTring_bell (struct frame
*f
)
3173 if (FRAME_X_DISPLAY (f
))
3181 XkbBell (FRAME_X_DISPLAY (f
), None
, 0, None
);
3183 XBell (FRAME_X_DISPLAY (f
), 0);
3185 XFlush (FRAME_X_DISPLAY (f
));
3191 /***********************************************************************
3193 ***********************************************************************/
3195 /* Perform an insert-lines or delete-lines operation, inserting N
3196 lines or deleting -N lines at vertical position VPOS. */
3199 x_ins_del_lines (struct frame
*f
, int vpos
, int n
)
3205 /* Scroll part of the display as described by RUN. */
3208 x_scroll_run (struct window
*w
, struct run
*run
)
3210 struct frame
*f
= XFRAME (w
->frame
);
3211 int x
, y
, width
, height
, from_y
, to_y
, bottom_y
;
3213 /* Get frame-relative bounding box of the text display area of W,
3214 without mode lines. Include in this box the left and right
3216 window_box (w
, ANY_AREA
, &x
, &y
, &width
, &height
);
3218 from_y
= WINDOW_TO_FRAME_PIXEL_Y (w
, run
->current_y
);
3219 to_y
= WINDOW_TO_FRAME_PIXEL_Y (w
, run
->desired_y
);
3220 bottom_y
= y
+ height
;
3224 /* Scrolling up. Make sure we don't copy part of the mode
3225 line at the bottom. */
3226 if (from_y
+ run
->height
> bottom_y
)
3227 height
= bottom_y
- from_y
;
3229 height
= run
->height
;
3233 /* Scrolling down. Make sure we don't copy over the mode line.
3235 if (to_y
+ run
->height
> bottom_y
)
3236 height
= bottom_y
- to_y
;
3238 height
= run
->height
;
3243 /* Cursor off. Will be switched on again in x_update_window_end. */
3246 XCopyArea (FRAME_X_DISPLAY (f
),
3247 FRAME_X_WINDOW (f
), FRAME_X_WINDOW (f
),
3248 f
->output_data
.x
->normal_gc
,
3258 /***********************************************************************
3260 ***********************************************************************/
3264 frame_highlight (struct frame
*f
)
3266 /* We used to only do this if Vx_no_window_manager was non-nil, but
3267 the ICCCM (section 4.1.6) says that the window's border pixmap
3268 and border pixel are window attributes which are "private to the
3269 client", so we can always change it to whatever we want. */
3271 /* I recently started to get errors in this XSetWindowBorder, depending on
3272 the window-manager in use, tho something more is at play since I've been
3273 using that same window-manager binary for ever. Let's not crash just
3274 because of this (bug#9310). */
3275 x_catch_errors (FRAME_X_DISPLAY (f
));
3276 XSetWindowBorder (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
3277 f
->output_data
.x
->border_pixel
);
3278 x_uncatch_errors ();
3280 x_update_cursor (f
, 1);
3281 x_set_frame_alpha (f
);
3285 frame_unhighlight (struct frame
*f
)
3287 /* We used to only do this if Vx_no_window_manager was non-nil, but
3288 the ICCCM (section 4.1.6) says that the window's border pixmap
3289 and border pixel are window attributes which are "private to the
3290 client", so we can always change it to whatever we want. */
3292 /* Same as above for XSetWindowBorder (bug#9310). */
3293 x_catch_errors (FRAME_X_DISPLAY (f
));
3294 XSetWindowBorderPixmap (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
3295 f
->output_data
.x
->border_tile
);
3296 x_uncatch_errors ();
3298 x_update_cursor (f
, 1);
3299 x_set_frame_alpha (f
);
3302 /* The focus has changed. Update the frames as necessary to reflect
3303 the new situation. Note that we can't change the selected frame
3304 here, because the Lisp code we are interrupting might become confused.
3305 Each event gets marked with the frame in which it occurred, so the
3306 Lisp code can tell when the switch took place by examining the events. */
3309 x_new_focus_frame (struct x_display_info
*dpyinfo
, struct frame
*frame
)
3311 struct frame
*old_focus
= dpyinfo
->x_focus_frame
;
3313 if (frame
!= dpyinfo
->x_focus_frame
)
3315 /* Set this before calling other routines, so that they see
3316 the correct value of x_focus_frame. */
3317 dpyinfo
->x_focus_frame
= frame
;
3319 if (old_focus
&& old_focus
->auto_lower
)
3320 x_lower_frame (old_focus
);
3322 if (dpyinfo
->x_focus_frame
&& dpyinfo
->x_focus_frame
->auto_raise
)
3323 dpyinfo
->x_pending_autoraise_frame
= dpyinfo
->x_focus_frame
;
3325 dpyinfo
->x_pending_autoraise_frame
= NULL
;
3328 x_frame_rehighlight (dpyinfo
);
3331 /* Handle FocusIn and FocusOut state changes for FRAME.
3332 If FRAME has focus and there exists more than one frame, puts
3333 a FOCUS_IN_EVENT into *BUFP. */
3336 x_focus_changed (int type
, int state
, struct x_display_info
*dpyinfo
, struct frame
*frame
, struct input_event
*bufp
)
3338 if (type
== FocusIn
)
3340 if (dpyinfo
->x_focus_event_frame
!= frame
)
3342 x_new_focus_frame (dpyinfo
, frame
);
3343 dpyinfo
->x_focus_event_frame
= frame
;
3345 /* Don't stop displaying the initial startup message
3346 for a switch-frame event we don't need. */
3347 /* When run as a daemon, Vterminal_frame is always NIL. */
3348 bufp
->arg
= (((NILP (Vterminal_frame
)
3349 || ! FRAME_X_P (XFRAME (Vterminal_frame
))
3350 || EQ (Fdaemonp (), Qt
))
3351 && CONSP (Vframe_list
)
3352 && !NILP (XCDR (Vframe_list
)))
3354 bufp
->kind
= FOCUS_IN_EVENT
;
3355 XSETFRAME (bufp
->frame_or_window
, frame
);
3358 frame
->output_data
.x
->focus_state
|= state
;
3361 if (FRAME_XIC (frame
))
3362 XSetICFocus (FRAME_XIC (frame
));
3365 else if (type
== FocusOut
)
3367 frame
->output_data
.x
->focus_state
&= ~state
;
3369 if (dpyinfo
->x_focus_event_frame
== frame
)
3371 dpyinfo
->x_focus_event_frame
= 0;
3372 x_new_focus_frame (dpyinfo
, 0);
3374 bufp
->kind
= FOCUS_OUT_EVENT
;
3375 XSETFRAME (bufp
->frame_or_window
, frame
);
3379 if (FRAME_XIC (frame
))
3380 XUnsetICFocus (FRAME_XIC (frame
));
3382 if (frame
->pointer_invisible
)
3383 XTtoggle_invisible_pointer (frame
, 0);
3387 /* Return the Emacs frame-object corresponding to an X window.
3388 It could be the frame's main window or an icon window. */
3390 static struct frame
*
3391 x_window_to_frame (struct x_display_info
*dpyinfo
, int wdesc
)
3393 Lisp_Object tail
, frame
;
3399 FOR_EACH_FRAME (tail
, frame
)
3402 if (!FRAME_X_P (f
) || FRAME_DISPLAY_INFO (f
) != dpyinfo
)
3404 if (f
->output_data
.x
->hourglass_window
== wdesc
)
3406 #ifdef USE_X_TOOLKIT
3407 if ((f
->output_data
.x
->edit_widget
3408 && XtWindow (f
->output_data
.x
->edit_widget
) == wdesc
)
3409 /* A tooltip frame? */
3410 || (!f
->output_data
.x
->edit_widget
3411 && FRAME_X_WINDOW (f
) == wdesc
)
3412 || f
->output_data
.x
->icon_desc
== wdesc
)
3414 #else /* not USE_X_TOOLKIT */
3416 if (f
->output_data
.x
->edit_widget
)
3418 GtkWidget
*gwdesc
= xg_win_to_widget (dpyinfo
->display
, wdesc
);
3419 struct x_output
*x
= f
->output_data
.x
;
3420 if (gwdesc
!= 0 && gwdesc
== x
->edit_widget
)
3423 #endif /* USE_GTK */
3424 if (FRAME_X_WINDOW (f
) == wdesc
3425 || f
->output_data
.x
->icon_desc
== wdesc
)
3427 #endif /* not USE_X_TOOLKIT */
3432 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
3434 /* Like x_window_to_frame but also compares the window with the widget's
3437 static struct frame
*
3438 x_any_window_to_frame (struct x_display_info
*dpyinfo
, int wdesc
)
3440 Lisp_Object tail
, frame
;
3441 struct frame
*f
, *found
= NULL
;
3447 FOR_EACH_FRAME (tail
, frame
)
3452 if (FRAME_X_P (f
) && FRAME_DISPLAY_INFO (f
) == dpyinfo
)
3454 /* This frame matches if the window is any of its widgets. */
3455 x
= f
->output_data
.x
;
3456 if (x
->hourglass_window
== wdesc
)
3461 GtkWidget
*gwdesc
= xg_win_to_widget (dpyinfo
->display
, wdesc
);
3463 && gtk_widget_get_toplevel (gwdesc
) == x
->widget
)
3466 if (wdesc
== XtWindow (x
->widget
)
3467 || wdesc
== XtWindow (x
->column_widget
)
3468 || wdesc
== XtWindow (x
->edit_widget
))
3470 /* Match if the window is this frame's menubar. */
3471 else if (lw_window_is_in_menubar (wdesc
, x
->menubar_widget
))
3475 else if (FRAME_X_WINDOW (f
) == wdesc
)
3476 /* A tooltip frame. */
3484 /* Likewise, but consider only the menu bar widget. */
3486 static struct frame
*
3487 x_menubar_window_to_frame (struct x_display_info
*dpyinfo
,
3488 const XEvent
*event
)
3490 Window wdesc
= event
->xany
.window
;
3491 Lisp_Object tail
, frame
;
3498 FOR_EACH_FRAME (tail
, frame
)
3501 if (!FRAME_X_P (f
) || FRAME_DISPLAY_INFO (f
) != dpyinfo
)
3503 x
= f
->output_data
.x
;
3505 if (x
->menubar_widget
&& xg_event_is_for_menubar (f
, event
))
3508 /* Match if the window is this frame's menubar. */
3509 if (x
->menubar_widget
3510 && lw_window_is_in_menubar (wdesc
, x
->menubar_widget
))
3517 /* Return the frame whose principal (outermost) window is WDESC.
3518 If WDESC is some other (smaller) window, we return 0. */
3521 x_top_window_to_frame (struct x_display_info
*dpyinfo
, int wdesc
)
3523 Lisp_Object tail
, frame
;
3530 FOR_EACH_FRAME (tail
, frame
)
3533 if (!FRAME_X_P (f
) || FRAME_DISPLAY_INFO (f
) != dpyinfo
)
3535 x
= f
->output_data
.x
;
3539 /* This frame matches if the window is its topmost widget. */
3541 GtkWidget
*gwdesc
= xg_win_to_widget (dpyinfo
->display
, wdesc
);
3542 if (gwdesc
== x
->widget
)
3545 if (wdesc
== XtWindow (x
->widget
))
3549 else if (FRAME_X_WINDOW (f
) == wdesc
)
3550 /* Tooltip frame. */
3556 #else /* !USE_X_TOOLKIT && !USE_GTK */
3558 #define x_any_window_to_frame(d, i) x_window_to_frame (d, i)
3559 #define x_top_window_to_frame(d, i) x_window_to_frame (d, i)
3561 #endif /* USE_X_TOOLKIT || USE_GTK */
3563 /* The focus may have changed. Figure out if it is a real focus change,
3564 by checking both FocusIn/Out and Enter/LeaveNotify events.
3566 Returns FOCUS_IN_EVENT event in *BUFP. */
3569 x_detect_focus_change (struct x_display_info
*dpyinfo
, struct frame
*frame
,
3570 const XEvent
*event
, struct input_event
*bufp
)
3575 switch (event
->type
)
3580 struct frame
*focus_frame
= dpyinfo
->x_focus_event_frame
;
3582 = focus_frame
? focus_frame
->output_data
.x
->focus_state
: 0;
3584 if (event
->xcrossing
.detail
!= NotifyInferior
3585 && event
->xcrossing
.focus
3586 && ! (focus_state
& FOCUS_EXPLICIT
))
3587 x_focus_changed ((event
->type
== EnterNotify
? FocusIn
: FocusOut
),
3589 dpyinfo
, frame
, bufp
);
3595 x_focus_changed (event
->type
,
3596 (event
->xfocus
.detail
== NotifyPointer
?
3597 FOCUS_IMPLICIT
: FOCUS_EXPLICIT
),
3598 dpyinfo
, frame
, bufp
);
3602 if (event
->xclient
.message_type
== dpyinfo
->Xatom_XEMBED
)
3604 enum xembed_message msg
= event
->xclient
.data
.l
[1];
3605 x_focus_changed ((msg
== XEMBED_FOCUS_IN
? FocusIn
: FocusOut
),
3606 FOCUS_EXPLICIT
, dpyinfo
, frame
, bufp
);
3613 #if !defined USE_X_TOOLKIT && !defined USE_GTK
3614 /* Handle an event saying the mouse has moved out of an Emacs frame. */
3617 x_mouse_leave (struct x_display_info
*dpyinfo
)
3619 x_new_focus_frame (dpyinfo
, dpyinfo
->x_focus_event_frame
);
3623 /* The focus has changed, or we have redirected a frame's focus to
3624 another frame (this happens when a frame uses a surrogate
3625 mini-buffer frame). Shift the highlight as appropriate.
3627 The FRAME argument doesn't necessarily have anything to do with which
3628 frame is being highlighted or un-highlighted; we only use it to find
3629 the appropriate X display info. */
3632 XTframe_rehighlight (struct frame
*frame
)
3634 x_frame_rehighlight (FRAME_DISPLAY_INFO (frame
));
3638 x_frame_rehighlight (struct x_display_info
*dpyinfo
)
3640 struct frame
*old_highlight
= dpyinfo
->x_highlight_frame
;
3642 if (dpyinfo
->x_focus_frame
)
3644 dpyinfo
->x_highlight_frame
3645 = ((FRAMEP (FRAME_FOCUS_FRAME (dpyinfo
->x_focus_frame
)))
3646 ? XFRAME (FRAME_FOCUS_FRAME (dpyinfo
->x_focus_frame
))
3647 : dpyinfo
->x_focus_frame
);
3648 if (! FRAME_LIVE_P (dpyinfo
->x_highlight_frame
))
3650 fset_focus_frame (dpyinfo
->x_focus_frame
, Qnil
);
3651 dpyinfo
->x_highlight_frame
= dpyinfo
->x_focus_frame
;
3655 dpyinfo
->x_highlight_frame
= 0;
3657 if (dpyinfo
->x_highlight_frame
!= old_highlight
)
3660 frame_unhighlight (old_highlight
);
3661 if (dpyinfo
->x_highlight_frame
)
3662 frame_highlight (dpyinfo
->x_highlight_frame
);
3668 /* Keyboard processing - modifier keys, vendor-specific keysyms, etc. */
3670 /* Initialize mode_switch_bit and modifier_meaning. */
3672 x_find_modifier_meanings (struct x_display_info
*dpyinfo
)
3674 int min_code
, max_code
;
3677 XModifierKeymap
*mods
;
3679 dpyinfo
->meta_mod_mask
= 0;
3680 dpyinfo
->shift_lock_mask
= 0;
3681 dpyinfo
->alt_mod_mask
= 0;
3682 dpyinfo
->super_mod_mask
= 0;
3683 dpyinfo
->hyper_mod_mask
= 0;
3685 XDisplayKeycodes (dpyinfo
->display
, &min_code
, &max_code
);
3687 syms
= XGetKeyboardMapping (dpyinfo
->display
,
3688 min_code
, max_code
- min_code
+ 1,
3690 mods
= XGetModifierMapping (dpyinfo
->display
);
3692 /* Scan the modifier table to see which modifier bits the Meta and
3693 Alt keysyms are on. */
3695 int row
, col
; /* The row and column in the modifier table. */
3696 int found_alt_or_meta
;
3698 for (row
= 3; row
< 8; row
++)
3700 found_alt_or_meta
= 0;
3701 for (col
= 0; col
< mods
->max_keypermod
; col
++)
3703 KeyCode code
= mods
->modifiermap
[(row
* mods
->max_keypermod
) + col
];
3705 /* Zeroes are used for filler. Skip them. */
3709 /* Are any of this keycode's keysyms a meta key? */
3713 for (code_col
= 0; code_col
< syms_per_code
; code_col
++)
3715 int sym
= syms
[((code
- min_code
) * syms_per_code
) + code_col
];
3721 found_alt_or_meta
= 1;
3722 dpyinfo
->meta_mod_mask
|= (1 << row
);
3727 found_alt_or_meta
= 1;
3728 dpyinfo
->alt_mod_mask
|= (1 << row
);
3733 if (!found_alt_or_meta
)
3734 dpyinfo
->hyper_mod_mask
|= (1 << row
);
3735 code_col
= syms_per_code
;
3736 col
= mods
->max_keypermod
;
3741 if (!found_alt_or_meta
)
3742 dpyinfo
->super_mod_mask
|= (1 << row
);
3743 code_col
= syms_per_code
;
3744 col
= mods
->max_keypermod
;
3748 /* Ignore this if it's not on the lock modifier. */
3749 if (!found_alt_or_meta
&& ((1 << row
) == LockMask
))
3750 dpyinfo
->shift_lock_mask
= LockMask
;
3751 code_col
= syms_per_code
;
3752 col
= mods
->max_keypermod
;
3761 /* If we couldn't find any meta keys, accept any alt keys as meta keys. */
3762 if (! dpyinfo
->meta_mod_mask
)
3764 dpyinfo
->meta_mod_mask
= dpyinfo
->alt_mod_mask
;
3765 dpyinfo
->alt_mod_mask
= 0;
3768 /* If some keys are both alt and meta,
3769 make them just meta, not alt. */
3770 if (dpyinfo
->alt_mod_mask
& dpyinfo
->meta_mod_mask
)
3772 dpyinfo
->alt_mod_mask
&= ~dpyinfo
->meta_mod_mask
;
3776 XFreeModifiermap (mods
);
3779 /* Convert between the modifier bits X uses and the modifier bits
3783 x_x_to_emacs_modifiers (struct x_display_info
*dpyinfo
, int state
)
3785 int mod_meta
= meta_modifier
;
3786 int mod_alt
= alt_modifier
;
3787 int mod_hyper
= hyper_modifier
;
3788 int mod_super
= super_modifier
;
3791 tem
= Fget (Vx_alt_keysym
, Qmodifier_value
);
3792 if (INTEGERP (tem
)) mod_alt
= XINT (tem
) & INT_MAX
;
3793 tem
= Fget (Vx_meta_keysym
, Qmodifier_value
);
3794 if (INTEGERP (tem
)) mod_meta
= XINT (tem
) & INT_MAX
;
3795 tem
= Fget (Vx_hyper_keysym
, Qmodifier_value
);
3796 if (INTEGERP (tem
)) mod_hyper
= XINT (tem
) & INT_MAX
;
3797 tem
= Fget (Vx_super_keysym
, Qmodifier_value
);
3798 if (INTEGERP (tem
)) mod_super
= XINT (tem
) & INT_MAX
;
3800 return ( ((state
& (ShiftMask
| dpyinfo
->shift_lock_mask
)) ? shift_modifier
: 0)
3801 | ((state
& ControlMask
) ? ctrl_modifier
: 0)
3802 | ((state
& dpyinfo
->meta_mod_mask
) ? mod_meta
: 0)
3803 | ((state
& dpyinfo
->alt_mod_mask
) ? mod_alt
: 0)
3804 | ((state
& dpyinfo
->super_mod_mask
) ? mod_super
: 0)
3805 | ((state
& dpyinfo
->hyper_mod_mask
) ? mod_hyper
: 0));
3809 x_emacs_to_x_modifiers (struct x_display_info
*dpyinfo
, EMACS_INT state
)
3811 EMACS_INT mod_meta
= meta_modifier
;
3812 EMACS_INT mod_alt
= alt_modifier
;
3813 EMACS_INT mod_hyper
= hyper_modifier
;
3814 EMACS_INT mod_super
= super_modifier
;
3818 tem
= Fget (Vx_alt_keysym
, Qmodifier_value
);
3819 if (INTEGERP (tem
)) mod_alt
= XINT (tem
);
3820 tem
= Fget (Vx_meta_keysym
, Qmodifier_value
);
3821 if (INTEGERP (tem
)) mod_meta
= XINT (tem
);
3822 tem
= Fget (Vx_hyper_keysym
, Qmodifier_value
);
3823 if (INTEGERP (tem
)) mod_hyper
= XINT (tem
);
3824 tem
= Fget (Vx_super_keysym
, Qmodifier_value
);
3825 if (INTEGERP (tem
)) mod_super
= XINT (tem
);
3828 return ( ((state
& mod_alt
) ? dpyinfo
->alt_mod_mask
: 0)
3829 | ((state
& mod_super
) ? dpyinfo
->super_mod_mask
: 0)
3830 | ((state
& mod_hyper
) ? dpyinfo
->hyper_mod_mask
: 0)
3831 | ((state
& shift_modifier
) ? ShiftMask
: 0)
3832 | ((state
& ctrl_modifier
) ? ControlMask
: 0)
3833 | ((state
& mod_meta
) ? dpyinfo
->meta_mod_mask
: 0));
3836 /* Convert a keysym to its name. */
3839 x_get_keysym_name (int keysym
)
3844 value
= XKeysymToString (keysym
);
3850 /* Mouse clicks and mouse movement. Rah.
3852 Formerly, we used PointerMotionHintMask (in standard_event_mask)
3853 so that we would have to call XQueryPointer after each MotionNotify
3854 event to ask for another such event. However, this made mouse tracking
3855 slow, and there was a bug that made it eventually stop.
3857 Simply asking for MotionNotify all the time seems to work better.
3859 In order to avoid asking for motion events and then throwing most
3860 of them away or busy-polling the server for mouse positions, we ask
3861 the server for pointer motion hints. This means that we get only
3862 one event per group of mouse movements. "Groups" are delimited by
3863 other kinds of events (focus changes and button clicks, for
3864 example), or by XQueryPointer calls; when one of these happens, we
3865 get another MotionNotify event the next time the mouse moves. This
3866 is at least as efficient as getting motion events when mouse
3867 tracking is on, and I suspect only negligibly worse when tracking
3870 /* Prepare a mouse-event in *RESULT for placement in the input queue.
3872 If the event is a button press, then note that we have grabbed
3876 construct_mouse_click (struct input_event
*result
,
3877 const XButtonEvent
*event
,
3880 /* Make the event type NO_EVENT; we'll change that when we decide
3882 result
->kind
= MOUSE_CLICK_EVENT
;
3883 result
->code
= event
->button
- Button1
;
3884 result
->timestamp
= event
->time
;
3885 result
->modifiers
= (x_x_to_emacs_modifiers (FRAME_DISPLAY_INFO (f
),
3887 | (event
->type
== ButtonRelease
3891 XSETINT (result
->x
, event
->x
);
3892 XSETINT (result
->y
, event
->y
);
3893 XSETFRAME (result
->frame_or_window
, f
);
3898 /* Function to report a mouse movement to the mainstream Emacs code.
3899 The input handler calls this.
3901 We have received a mouse movement event, which is given in *event.
3902 If the mouse is over a different glyph than it was last time, tell
3903 the mainstream emacs code by setting mouse_moved. If not, ask for
3904 another motion event, so we can check again the next time it moves. */
3907 note_mouse_movement (struct frame
*frame
, const XMotionEvent
*event
)
3910 struct x_display_info
*dpyinfo
;
3912 if (!FRAME_X_OUTPUT (frame
))
3915 dpyinfo
= FRAME_DISPLAY_INFO (frame
);
3916 dpyinfo
->last_mouse_movement_time
= event
->time
;
3917 dpyinfo
->last_mouse_motion_frame
= frame
;
3918 dpyinfo
->last_mouse_motion_x
= event
->x
;
3919 dpyinfo
->last_mouse_motion_y
= event
->y
;
3921 if (event
->window
!= FRAME_X_WINDOW (frame
))
3923 frame
->mouse_moved
= 1;
3924 dpyinfo
->last_mouse_scroll_bar
= NULL
;
3925 note_mouse_highlight (frame
, -1, -1);
3926 dpyinfo
->last_mouse_glyph_frame
= NULL
;
3931 /* Has the mouse moved off the glyph it was on at the last sighting? */
3932 r
= &dpyinfo
->last_mouse_glyph
;
3933 if (frame
!= dpyinfo
->last_mouse_glyph_frame
3934 || event
->x
< r
->x
|| event
->x
>= r
->x
+ r
->width
3935 || event
->y
< r
->y
|| event
->y
>= r
->y
+ r
->height
)
3937 frame
->mouse_moved
= 1;
3938 dpyinfo
->last_mouse_scroll_bar
= NULL
;
3939 note_mouse_highlight (frame
, event
->x
, event
->y
);
3940 /* Remember which glyph we're now on. */
3941 remember_mouse_glyph (frame
, event
->x
, event
->y
, r
);
3942 dpyinfo
->last_mouse_glyph_frame
= frame
;
3949 /* Return the current position of the mouse.
3950 *FP should be a frame which indicates which display to ask about.
3952 If the mouse movement started in a scroll bar, set *FP, *BAR_WINDOW,
3953 and *PART to the frame, window, and scroll bar part that the mouse
3954 is over. Set *X and *Y to the portion and whole of the mouse's
3955 position on the scroll bar.
3957 If the mouse movement started elsewhere, set *FP to the frame the
3958 mouse is on, *BAR_WINDOW to nil, and *X and *Y to the character cell
3961 Set *TIMESTAMP to the server time-stamp for the time at which the mouse
3962 was at this position.
3964 Don't store anything if we don't have a valid set of values to report.
3966 This clears the mouse_moved flag, so we can wait for the next mouse
3970 XTmouse_position (struct frame
**fp
, int insist
, Lisp_Object
*bar_window
,
3971 enum scroll_bar_part
*part
, Lisp_Object
*x
, Lisp_Object
*y
,
3975 struct x_display_info
*dpyinfo
= FRAME_DISPLAY_INFO (*fp
);
3979 if (dpyinfo
->last_mouse_scroll_bar
&& insist
== 0)
3981 struct scroll_bar
*bar
= dpyinfo
->last_mouse_scroll_bar
;
3983 if (bar
->horizontal
)
3984 x_horizontal_scroll_bar_report_motion (fp
, bar_window
, part
, x
, y
, timestamp
);
3986 x_scroll_bar_report_motion (fp
, bar_window
, part
, x
, y
, timestamp
);
3993 Window dummy_window
;
3996 Lisp_Object frame
, tail
;
3998 /* Clear the mouse-moved flag for every frame on this display. */
3999 FOR_EACH_FRAME (tail
, frame
)
4000 if (FRAME_X_P (XFRAME (frame
))
4001 && FRAME_X_DISPLAY (XFRAME (frame
)) == FRAME_X_DISPLAY (*fp
))
4002 XFRAME (frame
)->mouse_moved
= 0;
4004 dpyinfo
->last_mouse_scroll_bar
= NULL
;
4006 /* Figure out which root window we're on. */
4007 XQueryPointer (FRAME_X_DISPLAY (*fp
),
4008 DefaultRootWindow (FRAME_X_DISPLAY (*fp
)),
4010 /* The root window which contains the pointer. */
4013 /* Trash which we can't trust if the pointer is on
4014 a different screen. */
4017 /* The position on that root window. */
4020 /* More trash we can't trust. */
4023 /* Modifier keys and pointer buttons, about which
4025 (unsigned int *) &dummy
);
4027 /* Now we have a position on the root; find the innermost window
4028 containing the pointer. */
4032 int parent_x
= 0, parent_y
= 0;
4036 /* XTranslateCoordinates can get errors if the window
4037 structure is changing at the same time this function
4038 is running. So at least we must not crash from them. */
4040 x_catch_errors (FRAME_X_DISPLAY (*fp
));
4042 if (x_mouse_grabbed (dpyinfo
))
4044 /* If mouse was grabbed on a frame, give coords for that frame
4045 even if the mouse is now outside it. */
4046 XTranslateCoordinates (FRAME_X_DISPLAY (*fp
),
4052 FRAME_X_WINDOW (dpyinfo
->last_mouse_frame
),
4054 /* From-position, to-position. */
4055 root_x
, root_y
, &win_x
, &win_y
,
4059 f1
= dpyinfo
->last_mouse_frame
;
4065 XTranslateCoordinates (FRAME_X_DISPLAY (*fp
),
4067 /* From-window, to-window. */
4070 /* From-position, to-position. */
4071 root_x
, root_y
, &win_x
, &win_y
,
4076 if (child
== None
|| child
== win
)
4079 /* We don't wan't to know the innermost window. We
4080 want the edit window. For non-Gtk+ the innermost
4081 window is the edit window. For Gtk+ it might not
4082 be. It might be the tool bar for example. */
4083 if (x_window_to_frame (dpyinfo
, win
))
4091 /* Now we know that:
4092 win is the innermost window containing the pointer
4093 (XTC says it has no child containing the pointer),
4094 win_x and win_y are the pointer's position in it
4095 (XTC did this the last time through), and
4096 parent_x and parent_y are the pointer's position in win's parent.
4097 (They are what win_x and win_y were when win was child.
4098 If win is the root window, it has no parent, and
4099 parent_{x,y} are invalid, but that's okay, because we'll
4100 never use them in that case.) */
4103 /* We don't wan't to know the innermost window. We
4104 want the edit window. */
4105 f1
= x_window_to_frame (dpyinfo
, win
);
4107 /* Is win one of our frames? */
4108 f1
= x_any_window_to_frame (dpyinfo
, win
);
4111 #ifdef USE_X_TOOLKIT
4112 /* If we end up with the menu bar window, say it's not
4115 && f1
->output_data
.x
->menubar_widget
4116 && win
== XtWindow (f1
->output_data
.x
->menubar_widget
))
4118 #endif /* USE_X_TOOLKIT */
4121 if (x_had_errors_p (FRAME_X_DISPLAY (*fp
)))
4124 x_uncatch_errors ();
4126 /* If not, is it one of our scroll bars? */
4129 struct scroll_bar
*bar
;
4131 bar
= x_window_to_scroll_bar (FRAME_X_DISPLAY (*fp
), win
, 2);
4135 f1
= XFRAME (WINDOW_FRAME (XWINDOW (bar
->window
)));
4141 if (f1
== 0 && insist
> 0)
4142 f1
= SELECTED_FRAME ();
4146 /* Ok, we found a frame. Store all the values.
4147 last_mouse_glyph is a rectangle used to reduce the
4148 generation of mouse events. To not miss any motion
4149 events, we must divide the frame into rectangles of the
4150 size of the smallest character that could be displayed
4151 on it, i.e. into the same rectangles that matrices on
4152 the frame are divided into. */
4154 /* FIXME: what if F1 is not an X frame? */
4155 dpyinfo
= FRAME_DISPLAY_INFO (f1
);
4156 remember_mouse_glyph (f1
, win_x
, win_y
, &dpyinfo
->last_mouse_glyph
);
4157 dpyinfo
->last_mouse_glyph_frame
= f1
;
4162 XSETINT (*x
, win_x
);
4163 XSETINT (*y
, win_y
);
4164 *timestamp
= dpyinfo
->last_mouse_movement_time
;
4174 /***********************************************************************
4176 ***********************************************************************/
4178 /* Scroll bar support. */
4180 /* Given an X window ID and a DISPLAY, find the struct scroll_bar which
4182 This can be called in GC, so we have to make sure to strip off mark
4185 static struct scroll_bar
*
4186 x_window_to_scroll_bar (Display
*display
, Window window_id
, int type
)
4188 Lisp_Object tail
, frame
;
4190 #if defined (USE_GTK) && defined (USE_TOOLKIT_SCROLL_BARS)
4191 window_id
= (Window
) xg_get_scroll_id_for_window (display
, window_id
);
4192 #endif /* USE_GTK && USE_TOOLKIT_SCROLL_BARS */
4194 FOR_EACH_FRAME (tail
, frame
)
4196 Lisp_Object bar
, condemned
;
4198 if (! FRAME_X_P (XFRAME (frame
)))
4201 /* Scan this frame's scroll bar list for a scroll bar with the
4203 condemned
= FRAME_CONDEMNED_SCROLL_BARS (XFRAME (frame
));
4204 for (bar
= FRAME_SCROLL_BARS (XFRAME (frame
));
4205 /* This trick allows us to search both the ordinary and
4206 condemned scroll bar lists with one loop. */
4207 ! NILP (bar
) || (bar
= condemned
,
4210 bar
= XSCROLL_BAR (bar
)->next
)
4211 if (XSCROLL_BAR (bar
)->x_window
== window_id
4212 && FRAME_X_DISPLAY (XFRAME (frame
)) == display
4214 || (type
== 1 && XSCROLL_BAR (bar
)->horizontal
)
4215 || (type
== 0 && !XSCROLL_BAR (bar
)->horizontal
)))
4216 return XSCROLL_BAR (bar
);
4223 #if defined USE_LUCID
4225 /* Return the Lucid menu bar WINDOW is part of. Return null
4226 if WINDOW is not part of a menu bar. */
4229 x_window_to_menu_bar (Window window
)
4231 Lisp_Object tail
, frame
;
4233 FOR_EACH_FRAME (tail
, frame
)
4234 if (FRAME_X_P (XFRAME (frame
)))
4236 Widget menu_bar
= XFRAME (frame
)->output_data
.x
->menubar_widget
;
4238 if (menu_bar
&& xlwmenu_window_p (menu_bar
, window
))
4244 #endif /* USE_LUCID */
4247 /************************************************************************
4249 ************************************************************************/
4251 #ifdef USE_TOOLKIT_SCROLL_BARS
4253 static void x_send_scroll_bar_event (Lisp_Object
, int, int, int, bool);
4255 /* Lisp window being scrolled. Set when starting to interact with
4256 a toolkit scroll bar, reset to nil when ending the interaction. */
4258 static Lisp_Object window_being_scrolled
;
4260 /* Whether this is an Xaw with arrow-scrollbars. This should imply
4261 that movements of 1/20 of the screen size are mapped to up/down. */
4264 /* Id of action hook installed for scroll bars. */
4266 static XtActionHookId action_hook_id
;
4267 static XtActionHookId horizontal_action_hook_id
;
4269 static Boolean xaw3d_arrow_scroll
;
4271 /* Whether the drag scrolling maintains the mouse at the top of the
4272 thumb. If not, resizing the thumb needs to be done more carefully
4273 to avoid jerkiness. */
4275 static Boolean xaw3d_pick_top
;
4277 /* Action hook installed via XtAppAddActionHook when toolkit scroll
4278 bars are used.. The hook is responsible for detecting when
4279 the user ends an interaction with the scroll bar, and generates
4280 a `end-scroll' SCROLL_BAR_CLICK_EVENT' event if so. */
4283 xt_action_hook (Widget widget
, XtPointer client_data
, String action_name
,
4284 XEvent
*event
, String
*params
, Cardinal
*num_params
)
4287 const char *end_action
;
4290 scroll_bar_p
= XmIsScrollBar (widget
);
4291 end_action
= "Release";
4292 #else /* !USE_MOTIF i.e. use Xaw */
4293 scroll_bar_p
= XtIsSubclass (widget
, scrollbarWidgetClass
);
4294 end_action
= "EndScroll";
4295 #endif /* USE_MOTIF */
4298 && strcmp (action_name
, end_action
) == 0
4299 && WINDOWP (window_being_scrolled
))
4302 struct scroll_bar
*bar
;
4304 x_send_scroll_bar_event (window_being_scrolled
,
4305 scroll_bar_end_scroll
, 0, 0, 0);
4306 w
= XWINDOW (window_being_scrolled
);
4307 bar
= XSCROLL_BAR (w
->vertical_scroll_bar
);
4309 if (bar
->dragging
!= -1)
4312 /* The thumb size is incorrect while dragging: fix it. */
4313 set_vertical_scroll_bar (w
);
4315 window_being_scrolled
= Qnil
;
4316 #if defined (USE_LUCID)
4317 bar
->last_seen_part
= scroll_bar_nowhere
;
4319 /* Xt timeouts no longer needed. */
4320 toolkit_scroll_bar_interaction
= 0;
4326 xt_horizontal_action_hook (Widget widget
, XtPointer client_data
, String action_name
,
4327 XEvent
*event
, String
*params
, Cardinal
*num_params
)
4330 const char *end_action
;
4333 scroll_bar_p
= XmIsScrollBar (widget
);
4334 end_action
= "Release";
4335 #else /* !USE_MOTIF i.e. use Xaw */
4336 scroll_bar_p
= XtIsSubclass (widget
, scrollbarWidgetClass
);
4337 end_action
= "EndScroll";
4338 #endif /* USE_MOTIF */
4341 && strcmp (action_name
, end_action
) == 0
4342 && WINDOWP (window_being_scrolled
))
4345 struct scroll_bar
*bar
;
4347 x_send_scroll_bar_event (window_being_scrolled
,
4348 scroll_bar_end_scroll
, 0, 0, 1);
4349 w
= XWINDOW (window_being_scrolled
);
4350 bar
= XSCROLL_BAR (w
->horizontal_scroll_bar
);
4352 if (bar
->dragging
!= -1)
4355 /* The thumb size is incorrect while dragging: fix it. */
4356 set_horizontal_scroll_bar (w
);
4358 window_being_scrolled
= Qnil
;
4359 #if defined (USE_LUCID)
4360 bar
->last_seen_part
= scroll_bar_nowhere
;
4362 /* Xt timeouts no longer needed. */
4363 toolkit_scroll_bar_interaction
= 0;
4366 #endif /* not USE_GTK */
4368 /* Send a client message with message type Xatom_Scrollbar for a
4369 scroll action to the frame of WINDOW. PART is a value identifying
4370 the part of the scroll bar that was clicked on. PORTION is the
4371 amount to scroll of a whole of WHOLE. */
4374 x_send_scroll_bar_event (Lisp_Object window
, int part
, int portion
, int whole
, bool horizontal
)
4377 XClientMessageEvent
*ev
= &event
.xclient
;
4378 struct window
*w
= XWINDOW (window
);
4379 struct frame
*f
= XFRAME (w
->frame
);
4380 intptr_t iw
= (intptr_t) w
;
4381 enum { BITS_PER_INTPTR
= CHAR_BIT
* sizeof iw
};
4382 verify (BITS_PER_INTPTR
<= 64);
4383 int sign_shift
= BITS_PER_INTPTR
- 32;
4387 /* Construct a ClientMessage event to send to the frame. */
4388 ev
->type
= ClientMessage
;
4389 ev
->message_type
= (horizontal
4390 ? FRAME_DISPLAY_INFO (f
)->Xatom_Horizontal_Scrollbar
4391 : FRAME_DISPLAY_INFO (f
)->Xatom_Scrollbar
);
4392 ev
->display
= FRAME_X_DISPLAY (f
);
4393 ev
->window
= FRAME_X_WINDOW (f
);
4396 /* A 32-bit X client on a 64-bit X server can pass a window pointer
4397 as-is. A 64-bit client on a 32-bit X server is in trouble
4398 because a pointer does not fit and would be truncated while
4399 passing through the server. So use two slots and hope that X12
4400 will resolve such issues someday. */
4401 ev
->data
.l
[0] = iw
>> 31 >> 1;
4402 ev
->data
.l
[1] = sign_shift
<= 0 ? iw
: iw
<< sign_shift
>> sign_shift
;
4403 ev
->data
.l
[2] = part
;
4404 ev
->data
.l
[3] = portion
;
4405 ev
->data
.l
[4] = whole
;
4407 /* Make Xt timeouts work while the scroll bar is active. */
4408 #ifdef USE_X_TOOLKIT
4409 toolkit_scroll_bar_interaction
= 1;
4410 x_activate_timeout_atimer ();
4413 /* Setting the event mask to zero means that the message will
4414 be sent to the client that created the window, and if that
4415 window no longer exists, no event will be sent. */
4416 XSendEvent (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), False
, 0, &event
);
4421 /* Transform a scroll bar ClientMessage EVENT to an Emacs input event
4425 x_scroll_bar_to_input_event (const XEvent
*event
,
4426 struct input_event
*ievent
)
4428 const XClientMessageEvent
*ev
= &event
->xclient
;
4432 /* See the comment in the function above. */
4433 intptr_t iw0
= ev
->data
.l
[0];
4434 intptr_t iw1
= ev
->data
.l
[1];
4435 intptr_t iw
= (iw0
<< 31 << 1) + (iw1
& 0xffffffffu
);
4436 w
= (struct window
*) iw
;
4438 XSETWINDOW (window
, w
);
4440 ievent
->kind
= SCROLL_BAR_CLICK_EVENT
;
4441 ievent
->frame_or_window
= window
;
4444 ievent
->timestamp
= CurrentTime
;
4447 XtLastTimestampProcessed (FRAME_X_DISPLAY (XFRAME (w
->frame
)));
4450 ievent
->part
= ev
->data
.l
[2];
4451 ievent
->x
= make_number (ev
->data
.l
[3]);
4452 ievent
->y
= make_number (ev
->data
.l
[4]);
4453 ievent
->modifiers
= 0;
4456 /* Transform a horizontal scroll bar ClientMessage EVENT to an Emacs
4457 input event in *IEVENT. */
4460 x_horizontal_scroll_bar_to_input_event (const XEvent
*event
,
4461 struct input_event
*ievent
)
4463 const XClientMessageEvent
*ev
= &event
->xclient
;
4467 /* See the comment in the function above. */
4468 intptr_t iw0
= ev
->data
.l
[0];
4469 intptr_t iw1
= ev
->data
.l
[1];
4470 intptr_t iw
= (iw0
<< 31 << 1) + (iw1
& 0xffffffffu
);
4471 w
= (struct window
*) iw
;
4473 XSETWINDOW (window
, w
);
4475 ievent
->kind
= HORIZONTAL_SCROLL_BAR_CLICK_EVENT
;
4476 ievent
->frame_or_window
= window
;
4479 ievent
->timestamp
= CurrentTime
;
4482 XtLastTimestampProcessed (FRAME_X_DISPLAY (XFRAME (w
->frame
)));
4485 ievent
->part
= ev
->data
.l
[2];
4486 ievent
->x
= make_number (ev
->data
.l
[3]);
4487 ievent
->y
= make_number (ev
->data
.l
[4]);
4488 ievent
->modifiers
= 0;
4494 /* Minimum and maximum values used for Motif scroll bars. */
4496 #define XM_SB_MAX 10000000
4498 /* Scroll bar callback for Motif scroll bars. WIDGET is the scroll
4499 bar widget. CLIENT_DATA is a pointer to the scroll_bar structure.
4500 CALL_DATA is a pointer to a XmScrollBarCallbackStruct. */
4503 xm_scroll_callback (Widget widget
, XtPointer client_data
, XtPointer call_data
)
4505 struct scroll_bar
*bar
= client_data
;
4506 XmScrollBarCallbackStruct
*cs
= call_data
;
4507 int part
= -1, whole
= 0, portion
= 0;
4508 int horizontal
= bar
->horizontal
;
4512 case XmCR_DECREMENT
:
4514 part
= horizontal
? scroll_bar_left_arrow
: scroll_bar_up_arrow
;
4517 case XmCR_INCREMENT
:
4519 part
= horizontal
? scroll_bar_right_arrow
: scroll_bar_down_arrow
;
4522 case XmCR_PAGE_DECREMENT
:
4524 part
= horizontal
? scroll_bar_before_handle
: scroll_bar_above_handle
;
4527 case XmCR_PAGE_INCREMENT
:
4529 part
= horizontal
? scroll_bar_after_handle
: scroll_bar_below_handle
;
4534 part
= horizontal
? scroll_bar_to_leftmost
: scroll_bar_to_top
;
4537 case XmCR_TO_BOTTOM
:
4539 part
= horizontal
? scroll_bar_to_rightmost
: scroll_bar_to_bottom
;
4547 XtVaGetValues (widget
, XmNsliderSize
, &slider_size
, NULL
);
4552 portion
= bar
->whole
* ((float)cs
->value
/ XM_SB_MAX
);
4553 whole
= bar
->whole
* ((float)(XM_SB_MAX
- slider_size
) / XM_SB_MAX
);
4554 portion
= min (portion
, whole
);
4555 part
= scroll_bar_horizontal_handle
;
4559 whole
= XM_SB_MAX
- slider_size
;
4560 portion
= min (cs
->value
, whole
);
4561 part
= scroll_bar_handle
;
4564 bar
->dragging
= cs
->value
;
4568 case XmCR_VALUE_CHANGED
:
4574 window_being_scrolled
= bar
->window
;
4575 x_send_scroll_bar_event (bar
->window
, part
, portion
, whole
, bar
->horizontal
);
4579 #elif defined USE_GTK
4581 /* Scroll bar callback for GTK scroll bars. WIDGET is the scroll
4582 bar widget. DATA is a pointer to the scroll_bar structure. */
4585 xg_scroll_callback (GtkRange
*range
,
4586 GtkScrollType scroll
,
4590 struct scroll_bar
*bar
= user_data
;
4591 int part
= -1, whole
= 0, portion
= 0;
4592 GtkAdjustment
*adj
= GTK_ADJUSTMENT (gtk_range_get_adjustment (range
));
4593 struct frame
*f
= g_object_get_data (G_OBJECT (range
), XG_FRAME_DATA
);
4595 if (xg_ignore_gtk_scrollbar
) return FALSE
;
4599 case GTK_SCROLL_JUMP
:
4600 /* Buttons 1 2 or 3 must be grabbed. */
4601 if (FRAME_DISPLAY_INFO (f
)->grabbed
!= 0
4602 && FRAME_DISPLAY_INFO (f
)->grabbed
< (1 << 4))
4604 if (bar
->horizontal
)
4606 part
= scroll_bar_horizontal_handle
;
4607 whole
= (int)(gtk_adjustment_get_upper (adj
) -
4608 gtk_adjustment_get_page_size (adj
));
4609 portion
= min ((int)value
, whole
);
4610 bar
->dragging
= portion
;
4614 part
= scroll_bar_handle
;
4615 whole
= gtk_adjustment_get_upper (adj
) -
4616 gtk_adjustment_get_page_size (adj
);
4617 portion
= min ((int)value
, whole
);
4618 bar
->dragging
= portion
;
4622 case GTK_SCROLL_STEP_BACKWARD
:
4623 part
= (bar
->horizontal
4624 ? scroll_bar_left_arrow
: scroll_bar_up_arrow
);
4627 case GTK_SCROLL_STEP_FORWARD
:
4628 part
= (bar
->horizontal
4629 ? scroll_bar_right_arrow
: scroll_bar_down_arrow
);
4632 case GTK_SCROLL_PAGE_BACKWARD
:
4633 part
= (bar
->horizontal
4634 ? scroll_bar_before_handle
: scroll_bar_above_handle
);
4637 case GTK_SCROLL_PAGE_FORWARD
:
4638 part
= (bar
->horizontal
4639 ? scroll_bar_after_handle
: scroll_bar_below_handle
);
4646 window_being_scrolled
= bar
->window
;
4647 x_send_scroll_bar_event (bar
->window
, part
, portion
, whole
, bar
->horizontal
);
4653 /* Callback for button release. Sets dragging to -1 when dragging is done. */
4656 xg_end_scroll_callback (GtkWidget
*widget
,
4657 GdkEventButton
*event
,
4660 struct scroll_bar
*bar
= user_data
;
4662 if (WINDOWP (window_being_scrolled
))
4664 x_send_scroll_bar_event (window_being_scrolled
,
4665 scroll_bar_end_scroll
, 0, 0, bar
->horizontal
);
4666 window_being_scrolled
= Qnil
;
4673 #else /* not USE_GTK and not USE_MOTIF */
4675 /* Xaw scroll bar callback. Invoked when the thumb is dragged.
4676 WIDGET is the scroll bar widget. CLIENT_DATA is a pointer to the
4677 scroll bar struct. CALL_DATA is a pointer to a float saying where
4681 xaw_jump_callback (Widget widget
, XtPointer client_data
, XtPointer call_data
)
4683 struct scroll_bar
*bar
= client_data
;
4684 float *top_addr
= call_data
;
4685 float top
= *top_addr
;
4687 int whole
, portion
, height
, width
;
4688 enum scroll_bar_part part
;
4689 int horizontal
= bar
->horizontal
;
4694 /* Get the size of the thumb, a value between 0 and 1. */
4696 XtVaGetValues (widget
, XtNshown
, &shown
, XtNwidth
, &width
, NULL
);
4701 whole
= bar
->whole
- (shown
* bar
->whole
);
4702 portion
= min (top
* bar
->whole
, whole
);
4710 part
= scroll_bar_horizontal_handle
;
4714 /* Get the size of the thumb, a value between 0 and 1. */
4716 XtVaGetValues (widget
, XtNshown
, &shown
, XtNheight
, &height
, NULL
);
4720 portion
= shown
< 1 ? top
* whole
: 0;
4722 if (shown
< 1 && (eabs (top
+ shown
- 1) < 1.0f
/ height
))
4723 /* Some derivatives of Xaw refuse to shrink the thumb when you reach
4724 the bottom, so we force the scrolling whenever we see that we're
4725 too close to the bottom (in x_set_toolkit_scroll_bar_thumb
4726 we try to ensure that we always stay two pixels away from the
4728 part
= scroll_bar_down_arrow
;
4730 part
= scroll_bar_handle
;
4733 window_being_scrolled
= bar
->window
;
4734 bar
->dragging
= portion
;
4735 bar
->last_seen_part
= part
;
4736 x_send_scroll_bar_event (bar
->window
, part
, portion
, whole
, bar
->horizontal
);
4740 /* Xaw scroll bar callback. Invoked for incremental scrolling.,
4741 i.e. line or page up or down. WIDGET is the Xaw scroll bar
4742 widget. CLIENT_DATA is a pointer to the scroll_bar structure for
4743 the scroll bar. CALL_DATA is an integer specifying the action that
4744 has taken place. Its magnitude is in the range 0..height of the
4745 scroll bar. Negative values mean scroll towards buffer start.
4746 Values < height of scroll bar mean line-wise movement. */
4749 xaw_scroll_callback (Widget widget
, XtPointer client_data
, XtPointer call_data
)
4751 struct scroll_bar
*bar
= client_data
;
4752 /* The position really is stored cast to a pointer. */
4753 int position
= (intptr_t) call_data
;
4754 Dimension height
, width
;
4755 enum scroll_bar_part part
;
4757 if (bar
->horizontal
)
4759 /* Get the width of the scroll bar. */
4761 XtVaGetValues (widget
, XtNwidth
, &width
, NULL
);
4764 if (eabs (position
) >= width
)
4765 part
= (position
< 0) ? scroll_bar_before_handle
: scroll_bar_after_handle
;
4767 /* If Xaw3d was compiled with ARROW_SCROLLBAR,
4768 it maps line-movement to call_data = max(5, height/20). */
4769 else if (xaw3d_arrow_scroll
&& eabs (position
) <= max (5, width
/ 20))
4770 part
= (position
< 0) ? scroll_bar_left_arrow
: scroll_bar_right_arrow
;
4772 part
= scroll_bar_move_ratio
;
4774 window_being_scrolled
= bar
->window
;
4776 bar
->last_seen_part
= part
;
4777 x_send_scroll_bar_event (bar
->window
, part
, position
, width
, bar
->horizontal
);
4782 /* Get the height of the scroll bar. */
4784 XtVaGetValues (widget
, XtNheight
, &height
, NULL
);
4787 if (eabs (position
) >= height
)
4788 part
= (position
< 0) ? scroll_bar_above_handle
: scroll_bar_below_handle
;
4790 /* If Xaw3d was compiled with ARROW_SCROLLBAR,
4791 it maps line-movement to call_data = max(5, height/20). */
4792 else if (xaw3d_arrow_scroll
&& eabs (position
) <= max (5, height
/ 20))
4793 part
= (position
< 0) ? scroll_bar_up_arrow
: scroll_bar_down_arrow
;
4795 part
= scroll_bar_move_ratio
;
4797 window_being_scrolled
= bar
->window
;
4799 bar
->last_seen_part
= part
;
4800 x_send_scroll_bar_event (bar
->window
, part
, position
, height
, bar
->horizontal
);
4804 #endif /* not USE_GTK and not USE_MOTIF */
4806 #define SCROLL_BAR_NAME "verticalScrollBar"
4807 #define SCROLL_BAR_HORIZONTAL_NAME "horizontalScrollBar"
4809 /* Create the widget for scroll bar BAR on frame F. Record the widget
4810 and X window of the scroll bar in BAR. */
4814 x_create_toolkit_scroll_bar (struct frame
*f
, struct scroll_bar
*bar
)
4816 const char *scroll_bar_name
= SCROLL_BAR_NAME
;
4819 xg_create_scroll_bar (f
, bar
, G_CALLBACK (xg_scroll_callback
),
4820 G_CALLBACK (xg_end_scroll_callback
),
4826 x_create_horizontal_toolkit_scroll_bar (struct frame
*f
, struct scroll_bar
*bar
)
4828 const char *scroll_bar_name
= SCROLL_BAR_HORIZONTAL_NAME
;
4831 xg_create_horizontal_scroll_bar (f
, bar
, G_CALLBACK (xg_scroll_callback
),
4832 G_CALLBACK (xg_end_scroll_callback
),
4837 #else /* not USE_GTK */
4840 x_create_toolkit_scroll_bar (struct frame
*f
, struct scroll_bar
*bar
)
4846 const char *scroll_bar_name
= SCROLL_BAR_NAME
;
4847 unsigned long pixel
;
4852 /* Set resources. Create the widget. */
4853 XtSetArg (av
[ac
], XtNmappedWhenManaged
, False
); ++ac
;
4854 XtSetArg (av
[ac
], XmNminimum
, 0); ++ac
;
4855 XtSetArg (av
[ac
], XmNmaximum
, XM_SB_MAX
); ++ac
;
4856 XtSetArg (av
[ac
], XmNorientation
, XmVERTICAL
); ++ac
;
4857 XtSetArg (av
[ac
], XmNprocessingDirection
, XmMAX_ON_BOTTOM
), ++ac
;
4858 XtSetArg (av
[ac
], XmNincrement
, 1); ++ac
;
4859 XtSetArg (av
[ac
], XmNpageIncrement
, 1); ++ac
;
4861 pixel
= f
->output_data
.x
->scroll_bar_foreground_pixel
;
4864 XtSetArg (av
[ac
], XmNforeground
, pixel
);
4868 pixel
= f
->output_data
.x
->scroll_bar_background_pixel
;
4871 XtSetArg (av
[ac
], XmNbackground
, pixel
);
4875 widget
= XmCreateScrollBar (f
->output_data
.x
->edit_widget
,
4876 (char *) scroll_bar_name
, av
, ac
);
4878 /* Add one callback for everything that can happen. */
4879 XtAddCallback (widget
, XmNdecrementCallback
, xm_scroll_callback
,
4881 XtAddCallback (widget
, XmNdragCallback
, xm_scroll_callback
,
4883 XtAddCallback (widget
, XmNincrementCallback
, xm_scroll_callback
,
4885 XtAddCallback (widget
, XmNpageDecrementCallback
, xm_scroll_callback
,
4887 XtAddCallback (widget
, XmNpageIncrementCallback
, xm_scroll_callback
,
4889 XtAddCallback (widget
, XmNtoBottomCallback
, xm_scroll_callback
,
4891 XtAddCallback (widget
, XmNtoTopCallback
, xm_scroll_callback
,
4894 /* Realize the widget. Only after that is the X window created. */
4895 XtRealizeWidget (widget
);
4897 /* Set the cursor to an arrow. I didn't find a resource to do that.
4898 And I'm wondering why it hasn't an arrow cursor by default. */
4899 XDefineCursor (XtDisplay (widget
), XtWindow (widget
),
4900 f
->output_data
.x
->nontext_cursor
);
4902 #else /* !USE_MOTIF i.e. use Xaw */
4904 /* Set resources. Create the widget. The background of the
4905 Xaw3d scroll bar widget is a little bit light for my taste.
4906 We don't alter it here to let users change it according
4907 to their taste with `emacs*verticalScrollBar.background: xxx'. */
4908 XtSetArg (av
[ac
], XtNmappedWhenManaged
, False
); ++ac
;
4909 XtSetArg (av
[ac
], XtNorientation
, XtorientVertical
); ++ac
;
4910 /* For smoother scrolling with Xaw3d -sm */
4911 /* XtSetArg (av[ac], XtNpickTop, True); ++ac; */
4913 pixel
= f
->output_data
.x
->scroll_bar_foreground_pixel
;
4916 XtSetArg (av
[ac
], XtNforeground
, pixel
);
4920 pixel
= f
->output_data
.x
->scroll_bar_background_pixel
;
4923 XtSetArg (av
[ac
], XtNbackground
, pixel
);
4927 /* Top/bottom shadow colors. */
4929 /* Allocate them, if necessary. */
4930 if (f
->output_data
.x
->scroll_bar_top_shadow_pixel
== -1)
4932 pixel
= f
->output_data
.x
->scroll_bar_background_pixel
;
4935 if (!x_alloc_lighter_color (f
, FRAME_X_DISPLAY (f
),
4936 FRAME_X_COLORMAP (f
),
4937 &pixel
, 1.2, 0x8000))
4939 f
->output_data
.x
->scroll_bar_top_shadow_pixel
= pixel
;
4942 if (f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
== -1)
4944 pixel
= f
->output_data
.x
->scroll_bar_background_pixel
;
4947 if (!x_alloc_lighter_color (f
, FRAME_X_DISPLAY (f
),
4948 FRAME_X_COLORMAP (f
),
4949 &pixel
, 0.6, 0x4000))
4951 f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
= pixel
;
4955 #ifdef XtNbeNiceToColormap
4956 /* Tell the toolkit about them. */
4957 if (f
->output_data
.x
->scroll_bar_top_shadow_pixel
== -1
4958 || f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
== -1)
4959 /* We tried to allocate a color for the top/bottom shadow, and
4960 failed, so tell Xaw3d to use dithering instead. */
4961 /* But only if we have a small colormap. Xaw3d can allocate nice
4964 XtSetArg (av
[ac
], XtNbeNiceToColormap
,
4965 DefaultDepthOfScreen (FRAME_X_SCREEN (f
)) < 16);
4969 /* Tell what colors Xaw3d should use for the top/bottom shadow, to
4970 be more consistent with other emacs 3d colors, and since Xaw3d is
4971 not good at dealing with allocation failure. */
4973 /* This tells Xaw3d to use real colors instead of dithering for
4975 XtSetArg (av
[ac
], XtNbeNiceToColormap
, False
);
4978 /* Specify the colors. */
4979 pixel
= f
->output_data
.x
->scroll_bar_top_shadow_pixel
;
4982 XtSetArg (av
[ac
], XtNtopShadowPixel
, pixel
);
4985 pixel
= f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
;
4988 XtSetArg (av
[ac
], XtNbottomShadowPixel
, pixel
);
4994 widget
= XtCreateWidget (scroll_bar_name
, scrollbarWidgetClass
,
4995 f
->output_data
.x
->edit_widget
, av
, ac
);
4998 char const *initial
= "";
4999 char const *val
= initial
;
5000 XtVaGetValues (widget
, XtNscrollVCursor
, (XtPointer
) &val
,
5001 #ifdef XtNarrowScrollbars
5002 XtNarrowScrollbars
, (XtPointer
) &xaw3d_arrow_scroll
,
5004 XtNpickTop
, (XtPointer
) &xaw3d_pick_top
, NULL
);
5005 if (xaw3d_arrow_scroll
|| val
== initial
)
5006 { /* ARROW_SCROLL */
5007 xaw3d_arrow_scroll
= True
;
5008 /* Isn't that just a personal preference ? --Stef */
5009 XtVaSetValues (widget
, XtNcursorName
, "top_left_arrow", NULL
);
5013 /* Define callbacks. */
5014 XtAddCallback (widget
, XtNjumpProc
, xaw_jump_callback
, (XtPointer
) bar
);
5015 XtAddCallback (widget
, XtNscrollProc
, xaw_scroll_callback
,
5018 /* Realize the widget. Only after that is the X window created. */
5019 XtRealizeWidget (widget
);
5021 #endif /* !USE_MOTIF */
5023 /* Install an action hook that lets us detect when the user
5024 finishes interacting with a scroll bar. */
5025 if (action_hook_id
== 0)
5026 action_hook_id
= XtAppAddActionHook (Xt_app_con
, xt_action_hook
, 0);
5028 /* Remember X window and widget in the scroll bar vector. */
5029 SET_SCROLL_BAR_X_WIDGET (bar
, widget
);
5030 xwindow
= XtWindow (widget
);
5031 bar
->x_window
= xwindow
;
5033 bar
->horizontal
= 0;
5039 x_create_horizontal_toolkit_scroll_bar (struct frame
*f
, struct scroll_bar
*bar
)
5045 const char *scroll_bar_name
= SCROLL_BAR_HORIZONTAL_NAME
;
5046 unsigned long pixel
;
5051 /* Set resources. Create the widget. */
5052 XtSetArg (av
[ac
], XtNmappedWhenManaged
, False
); ++ac
;
5053 XtSetArg (av
[ac
], XmNminimum
, 0); ++ac
;
5054 XtSetArg (av
[ac
], XmNmaximum
, XM_SB_MAX
); ++ac
;
5055 XtSetArg (av
[ac
], XmNorientation
, XmHORIZONTAL
); ++ac
;
5056 XtSetArg (av
[ac
], XmNprocessingDirection
, XmMAX_ON_RIGHT
), ++ac
;
5057 XtSetArg (av
[ac
], XmNincrement
, 1); ++ac
;
5058 XtSetArg (av
[ac
], XmNpageIncrement
, 1); ++ac
;
5060 pixel
= f
->output_data
.x
->scroll_bar_foreground_pixel
;
5063 XtSetArg (av
[ac
], XmNforeground
, pixel
);
5067 pixel
= f
->output_data
.x
->scroll_bar_background_pixel
;
5070 XtSetArg (av
[ac
], XmNbackground
, pixel
);
5074 widget
= XmCreateScrollBar (f
->output_data
.x
->edit_widget
,
5075 (char *) scroll_bar_name
, av
, ac
);
5077 /* Add one callback for everything that can happen. */
5078 XtAddCallback (widget
, XmNdecrementCallback
, xm_scroll_callback
,
5080 XtAddCallback (widget
, XmNdragCallback
, xm_scroll_callback
,
5082 XtAddCallback (widget
, XmNincrementCallback
, xm_scroll_callback
,
5084 XtAddCallback (widget
, XmNpageDecrementCallback
, xm_scroll_callback
,
5086 XtAddCallback (widget
, XmNpageIncrementCallback
, xm_scroll_callback
,
5088 XtAddCallback (widget
, XmNtoBottomCallback
, xm_scroll_callback
,
5090 XtAddCallback (widget
, XmNtoTopCallback
, xm_scroll_callback
,
5093 /* Realize the widget. Only after that is the X window created. */
5094 XtRealizeWidget (widget
);
5096 /* Set the cursor to an arrow. I didn't find a resource to do that.
5097 And I'm wondering why it hasn't an arrow cursor by default. */
5098 XDefineCursor (XtDisplay (widget
), XtWindow (widget
),
5099 f
->output_data
.x
->nontext_cursor
);
5101 #else /* !USE_MOTIF i.e. use Xaw */
5103 /* Set resources. Create the widget. The background of the
5104 Xaw3d scroll bar widget is a little bit light for my taste.
5105 We don't alter it here to let users change it according
5106 to their taste with `emacs*verticalScrollBar.background: xxx'. */
5107 XtSetArg (av
[ac
], XtNmappedWhenManaged
, False
); ++ac
;
5108 XtSetArg (av
[ac
], XtNorientation
, XtorientHorizontal
); ++ac
;
5109 /* For smoother scrolling with Xaw3d -sm */
5110 /* XtSetArg (av[ac], XtNpickTop, True); ++ac; */
5112 pixel
= f
->output_data
.x
->scroll_bar_foreground_pixel
;
5115 XtSetArg (av
[ac
], XtNforeground
, pixel
);
5119 pixel
= f
->output_data
.x
->scroll_bar_background_pixel
;
5122 XtSetArg (av
[ac
], XtNbackground
, pixel
);
5126 /* Top/bottom shadow colors. */
5128 /* Allocate them, if necessary. */
5129 if (f
->output_data
.x
->scroll_bar_top_shadow_pixel
== -1)
5131 pixel
= f
->output_data
.x
->scroll_bar_background_pixel
;
5134 if (!x_alloc_lighter_color (f
, FRAME_X_DISPLAY (f
),
5135 FRAME_X_COLORMAP (f
),
5136 &pixel
, 1.2, 0x8000))
5138 f
->output_data
.x
->scroll_bar_top_shadow_pixel
= pixel
;
5141 if (f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
== -1)
5143 pixel
= f
->output_data
.x
->scroll_bar_background_pixel
;
5146 if (!x_alloc_lighter_color (f
, FRAME_X_DISPLAY (f
),
5147 FRAME_X_COLORMAP (f
),
5148 &pixel
, 0.6, 0x4000))
5150 f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
= pixel
;
5154 #ifdef XtNbeNiceToColormap
5155 /* Tell the toolkit about them. */
5156 if (f
->output_data
.x
->scroll_bar_top_shadow_pixel
== -1
5157 || f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
== -1)
5158 /* We tried to allocate a color for the top/bottom shadow, and
5159 failed, so tell Xaw3d to use dithering instead. */
5160 /* But only if we have a small colormap. Xaw3d can allocate nice
5163 XtSetArg (av
[ac
], XtNbeNiceToColormap
,
5164 DefaultDepthOfScreen (FRAME_X_SCREEN (f
)) < 16);
5168 /* Tell what colors Xaw3d should use for the top/bottom shadow, to
5169 be more consistent with other emacs 3d colors, and since Xaw3d is
5170 not good at dealing with allocation failure. */
5172 /* This tells Xaw3d to use real colors instead of dithering for
5174 XtSetArg (av
[ac
], XtNbeNiceToColormap
, False
);
5177 /* Specify the colors. */
5178 pixel
= f
->output_data
.x
->scroll_bar_top_shadow_pixel
;
5181 XtSetArg (av
[ac
], XtNtopShadowPixel
, pixel
);
5184 pixel
= f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
;
5187 XtSetArg (av
[ac
], XtNbottomShadowPixel
, pixel
);
5193 widget
= XtCreateWidget (scroll_bar_name
, scrollbarWidgetClass
,
5194 f
->output_data
.x
->edit_widget
, av
, ac
);
5197 char const *initial
= "";
5198 char const *val
= initial
;
5199 XtVaGetValues (widget
, XtNscrollVCursor
, (XtPointer
) &val
,
5200 #ifdef XtNarrowScrollbars
5201 XtNarrowScrollbars
, (XtPointer
) &xaw3d_arrow_scroll
,
5203 XtNpickTop
, (XtPointer
) &xaw3d_pick_top
, NULL
);
5204 if (xaw3d_arrow_scroll
|| val
== initial
)
5205 { /* ARROW_SCROLL */
5206 xaw3d_arrow_scroll
= True
;
5207 /* Isn't that just a personal preference ? --Stef */
5208 XtVaSetValues (widget
, XtNcursorName
, "top_left_arrow", NULL
);
5212 /* Define callbacks. */
5213 XtAddCallback (widget
, XtNjumpProc
, xaw_jump_callback
, (XtPointer
) bar
);
5214 XtAddCallback (widget
, XtNscrollProc
, xaw_scroll_callback
,
5217 /* Realize the widget. Only after that is the X window created. */
5218 XtRealizeWidget (widget
);
5220 #endif /* !USE_MOTIF */
5222 /* Install an action hook that lets us detect when the user
5223 finishes interacting with a scroll bar. */
5224 if (horizontal_action_hook_id
== 0)
5225 horizontal_action_hook_id
5226 = XtAppAddActionHook (Xt_app_con
, xt_horizontal_action_hook
, 0);
5228 /* Remember X window and widget in the scroll bar vector. */
5229 SET_SCROLL_BAR_X_WIDGET (bar
, widget
);
5230 xwindow
= XtWindow (widget
);
5231 bar
->x_window
= xwindow
;
5233 bar
->horizontal
= 1;
5237 #endif /* not USE_GTK */
5240 /* Set the thumb size and position of scroll bar BAR. We are currently
5241 displaying PORTION out of a whole WHOLE, and our position POSITION. */
5245 x_set_toolkit_scroll_bar_thumb (struct scroll_bar
*bar
, int portion
, int position
, int whole
)
5247 xg_set_toolkit_scroll_bar_thumb (bar
, portion
, position
, whole
);
5251 x_set_toolkit_horizontal_scroll_bar_thumb (struct scroll_bar
*bar
, int portion
, int position
, int whole
)
5253 xg_set_toolkit_horizontal_scroll_bar_thumb (bar
, portion
, position
, whole
);
5256 #else /* not USE_GTK */
5258 x_set_toolkit_scroll_bar_thumb (struct scroll_bar
*bar
, int portion
, int position
,
5261 struct frame
*f
= XFRAME (WINDOW_FRAME (XWINDOW (bar
->window
)));
5262 Widget widget
= SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f
), bar
);
5269 if (scroll_bar_adjust_thumb_portion_p
)
5271 /* We use an estimate of 30 chars per line rather than the real
5272 `portion' value. This has the disadvantage that the thumb size
5273 is not very representative, but it makes our life a lot easier.
5274 Otherwise, we have to constantly adjust the thumb size, which
5275 we can't always do quickly enough: while dragging, the size of
5276 the thumb might prevent the user from dragging the thumb all the
5277 way to the end. but Motif and some versions of Xaw3d don't allow
5278 updating the thumb size while dragging. Also, even if we can update
5279 its size, the update will often happen too late.
5280 If you don't believe it, check out revision 1.650 of xterm.c to see
5281 what hoops we were going through and the still poor behavior we got. */
5282 portion
= WINDOW_TOTAL_LINES (XWINDOW (bar
->window
)) * 30;
5283 /* When the thumb is at the bottom, position == whole.
5284 So we need to increase `whole' to make space for the thumb. */
5292 top
= (float) position
/ whole
;
5293 shown
= (float) portion
/ whole
;
5296 if (bar
->dragging
== -1)
5300 /* Slider size. Must be in the range [1 .. MAX - MIN] where MAX
5301 is the scroll bar's maximum and MIN is the scroll bar's minimum
5303 size
= clip_to_bounds (1, shown
* XM_SB_MAX
, XM_SB_MAX
);
5305 /* Position. Must be in the range [MIN .. MAX - SLIDER_SIZE]. */
5306 value
= top
* XM_SB_MAX
;
5307 value
= min (value
, XM_SB_MAX
- size
);
5309 XmScrollBarSetValues (widget
, value
, size
, 0, 0, False
);
5311 #else /* !USE_MOTIF i.e. use Xaw */
5317 top
= (float) position
/ whole
;
5318 shown
= (float) portion
/ whole
;
5322 float old_top
, old_shown
;
5324 XtVaGetValues (widget
,
5325 XtNtopOfThumb
, &old_top
,
5326 XtNshown
, &old_shown
,
5330 /* Massage the top+shown values. */
5331 if (bar
->dragging
== -1 || bar
->last_seen_part
== scroll_bar_down_arrow
)
5332 top
= max (0, min (1, top
));
5335 #if ! defined (HAVE_XAW3D)
5336 /* With Xaw, 'top' values too closer to 1.0 may
5337 cause the thumb to disappear. Fix that. */
5338 top
= min (top
, 0.99f
);
5340 /* Keep two pixels available for moving the thumb down. */
5341 shown
= max (0, min (1 - top
- (2.0f
/ height
), shown
));
5342 #if ! defined (HAVE_XAW3D)
5343 /* Likewise with too small 'shown'. */
5344 shown
= max (shown
, 0.01f
);
5347 /* If the call to XawScrollbarSetThumb below doesn't seem to
5348 work, check that 'NARROWPROTO' is defined in src/config.h.
5349 If this is not so, most likely you need to fix configure. */
5350 if (top
!= old_top
|| shown
!= old_shown
)
5352 if (bar
->dragging
== -1)
5353 XawScrollbarSetThumb (widget
, top
, shown
);
5356 /* Try to make the scrolling a tad smoother. */
5357 if (!xaw3d_pick_top
)
5358 shown
= min (shown
, old_shown
);
5360 XawScrollbarSetThumb (widget
, top
, shown
);
5364 #endif /* !USE_MOTIF */
5370 x_set_toolkit_horizontal_scroll_bar_thumb (struct scroll_bar
*bar
, int portion
, int position
,
5373 struct frame
*f
= XFRAME (WINDOW_FRAME (XWINDOW (bar
->window
)));
5374 Widget widget
= SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f
), bar
);
5381 shown
= (float) portion
/ whole
;
5382 top
= (float) position
/ (whole
- portion
);
5384 int size
= clip_to_bounds (1, shown
* XM_SB_MAX
, XM_SB_MAX
);
5385 int value
= clip_to_bounds (0, top
* (XM_SB_MAX
- size
), XM_SB_MAX
- size
);
5387 XmScrollBarSetValues (widget
, value
, size
, 0, 0, False
);
5389 #else /* !USE_MOTIF i.e. use Xaw */
5395 top
= (float) position
/ whole
;
5396 shown
= (float) portion
/ whole
;
5400 float old_top
, old_shown
;
5402 XtVaGetValues (widget
,
5403 XtNtopOfThumb
, &old_top
,
5404 XtNshown
, &old_shown
,
5409 /* Massage the top+shown values. */
5410 if (bar
->dragging
== -1 || bar
->last_seen_part
== scroll_bar_down_arrow
)
5411 top
= max (0, min (1, top
));
5414 #if ! defined (HAVE_XAW3D)
5415 /* With Xaw, 'top' values too closer to 1.0 may
5416 cause the thumb to disappear. Fix that. */
5417 top
= min (top
, 0.99f
);
5419 /* Keep two pixels available for moving the thumb down. */
5420 shown
= max (0, min (1 - top
- (2.0f
/ height
), shown
));
5421 #if ! defined (HAVE_XAW3D)
5422 /* Likewise with too small 'shown'. */
5423 shown
= max (shown
, 0.01f
);
5427 /* If the call to XawScrollbarSetThumb below doesn't seem to
5428 work, check that 'NARROWPROTO' is defined in src/config.h.
5429 If this is not so, most likely you need to fix configure. */
5430 XawScrollbarSetThumb (widget
, top
, shown
);
5432 if (top
!= old_top
|| shown
!= old_shown
)
5434 if (bar
->dragging
== -1)
5435 XawScrollbarSetThumb (widget
, top
, shown
);
5438 /* Try to make the scrolling a tad smoother. */
5439 if (!xaw3d_pick_top
)
5440 shown
= min (shown
, old_shown
);
5442 XawScrollbarSetThumb (widget
, top
, shown
);
5447 #endif /* !USE_MOTIF */
5451 #endif /* not USE_GTK */
5453 #endif /* USE_TOOLKIT_SCROLL_BARS */
5457 /************************************************************************
5458 Scroll bars, general
5459 ************************************************************************/
5461 /* Create a scroll bar and return the scroll bar vector for it. W is
5462 the Emacs window on which to create the scroll bar. TOP, LEFT,
5463 WIDTH and HEIGHT are the pixel coordinates and dimensions of the
5466 static struct scroll_bar
*
5467 x_scroll_bar_create (struct window
*w
, int top
, int left
, int width
, int height
, bool horizontal
)
5469 struct frame
*f
= XFRAME (w
->frame
);
5470 struct scroll_bar
*bar
5471 = ALLOCATE_PSEUDOVECTOR (struct scroll_bar
, x_window
, PVEC_OTHER
);
5476 #ifdef USE_TOOLKIT_SCROLL_BARS
5478 x_create_horizontal_toolkit_scroll_bar (f
, bar
);
5480 x_create_toolkit_scroll_bar (f
, bar
);
5481 #else /* not USE_TOOLKIT_SCROLL_BARS */
5483 XSetWindowAttributes a
;
5487 a
.background_pixel
= f
->output_data
.x
->scroll_bar_background_pixel
;
5488 if (a
.background_pixel
== -1)
5489 a
.background_pixel
= FRAME_BACKGROUND_PIXEL (f
);
5491 a
.event_mask
= (ButtonPressMask
| ButtonReleaseMask
5492 | ButtonMotionMask
| PointerMotionHintMask
5494 a
.cursor
= FRAME_DISPLAY_INFO (f
)->vertical_scroll_bar_cursor
;
5496 mask
= (CWBackPixel
| CWEventMask
| CWCursor
);
5498 /* Clear the area of W that will serve as a scroll bar. This is
5499 for the case that a window has been split horizontally. In
5500 this case, no clear_frame is generated to reduce flickering. */
5501 if (width
> 0 && window_box_height (w
) > 0)
5502 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
5503 left
, top
, width
, window_box_height (w
));
5505 window
= XCreateWindow (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
5506 /* Position and size of scroll bar. */
5507 left
, top
, width
, height
,
5508 /* Border width, depth, class, and visual. */
5515 bar
->x_window
= window
;
5517 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5519 XSETWINDOW (bar
->window
, w
);
5523 bar
->height
= height
;
5527 bar
->horizontal
= horizontal
;
5528 #if defined (USE_TOOLKIT_SCROLL_BARS) && defined (USE_LUCID)
5529 bar
->last_seen_part
= scroll_bar_nowhere
;
5532 /* Add bar to its frame's list of scroll bars. */
5533 bar
->next
= FRAME_SCROLL_BARS (f
);
5535 XSETVECTOR (barobj
, bar
);
5536 fset_scroll_bars (f
, barobj
);
5537 if (!NILP (bar
->next
))
5538 XSETVECTOR (XSCROLL_BAR (bar
->next
)->prev
, bar
);
5540 /* Map the window/widget. */
5541 #ifdef USE_TOOLKIT_SCROLL_BARS
5545 xg_update_horizontal_scrollbar_pos (f
, bar
->x_window
, top
,
5546 left
, width
, max (height
, 1));
5548 xg_update_scrollbar_pos (f
, bar
->x_window
, top
,
5549 left
, width
, max (height
, 1));
5550 #else /* not USE_GTK */
5551 Widget scroll_bar
= SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f
), bar
);
5552 XtConfigureWidget (scroll_bar
, left
, top
, width
, max (height
, 1), 0);
5553 XtMapWidget (scroll_bar
);
5554 #endif /* not USE_GTK */
5556 #else /* not USE_TOOLKIT_SCROLL_BARS */
5557 XMapRaised (FRAME_X_DISPLAY (f
), bar
->x_window
);
5558 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5565 #ifndef USE_TOOLKIT_SCROLL_BARS
5567 /* Draw BAR's handle in the proper position.
5569 If the handle is already drawn from START to END, don't bother
5570 redrawing it, unless REBUILD is non-zero; in that case, always
5571 redraw it. (REBUILD is handy for drawing the handle after expose
5574 Normally, we want to constrain the start and end of the handle to
5575 fit inside its rectangle, but if the user is dragging the scroll
5576 bar handle, we want to let them drag it down all the way, so that
5577 the bar's top is as far down as it goes; otherwise, there's no way
5578 to move to the very end of the buffer. */
5581 x_scroll_bar_set_handle (struct scroll_bar
*bar
, int start
, int end
, int rebuild
)
5583 bool dragging
= bar
->dragging
!= -1;
5584 Window w
= bar
->x_window
;
5585 struct frame
*f
= XFRAME (WINDOW_FRAME (XWINDOW (bar
->window
)));
5586 GC gc
= f
->output_data
.x
->normal_gc
;
5588 /* If the display is already accurate, do nothing. */
5590 && start
== bar
->start
5597 int inside_width
= VERTICAL_SCROLL_BAR_INSIDE_WIDTH (f
, bar
->width
);
5598 int inside_height
= VERTICAL_SCROLL_BAR_INSIDE_HEIGHT (f
, bar
->height
);
5599 int top_range
= VERTICAL_SCROLL_BAR_TOP_RANGE (f
, bar
->height
);
5601 /* Make sure the values are reasonable, and try to preserve
5602 the distance between start and end. */
5604 int length
= end
- start
;
5608 else if (start
> top_range
)
5610 end
= start
+ length
;
5614 else if (end
> top_range
&& ! dragging
)
5618 /* Store the adjusted setting in the scroll bar. */
5622 /* Clip the end position, just for display. */
5623 if (end
> top_range
)
5626 /* Draw bottom positions VERTICAL_SCROLL_BAR_MIN_HANDLE pixels
5627 below top positions, to make sure the handle is always at least
5628 that many pixels tall. */
5629 end
+= VERTICAL_SCROLL_BAR_MIN_HANDLE
;
5631 /* Draw the empty space above the handle. Note that we can't clear
5632 zero-height areas; that means "clear to end of window." */
5633 if ((inside_width
> 0) && (start
> 0))
5634 x_clear_area (FRAME_X_DISPLAY (f
), w
,
5635 VERTICAL_SCROLL_BAR_LEFT_BORDER
,
5636 VERTICAL_SCROLL_BAR_TOP_BORDER
,
5637 inside_width
, start
);
5639 /* Change to proper foreground color if one is specified. */
5640 if (f
->output_data
.x
->scroll_bar_foreground_pixel
!= -1)
5641 XSetForeground (FRAME_X_DISPLAY (f
), gc
,
5642 f
->output_data
.x
->scroll_bar_foreground_pixel
);
5644 /* Draw the handle itself. */
5645 XFillRectangle (FRAME_X_DISPLAY (f
), w
, gc
,
5646 /* x, y, width, height */
5647 VERTICAL_SCROLL_BAR_LEFT_BORDER
,
5648 VERTICAL_SCROLL_BAR_TOP_BORDER
+ start
,
5649 inside_width
, end
- start
);
5651 /* Restore the foreground color of the GC if we changed it above. */
5652 if (f
->output_data
.x
->scroll_bar_foreground_pixel
!= -1)
5653 XSetForeground (FRAME_X_DISPLAY (f
), gc
,
5654 FRAME_FOREGROUND_PIXEL (f
));
5656 /* Draw the empty space below the handle. Note that we can't
5657 clear zero-height areas; that means "clear to end of window." */
5658 if ((inside_width
> 0) && (end
< inside_height
))
5659 x_clear_area (FRAME_X_DISPLAY (f
), w
,
5660 VERTICAL_SCROLL_BAR_LEFT_BORDER
,
5661 VERTICAL_SCROLL_BAR_TOP_BORDER
+ end
,
5662 inside_width
, inside_height
- end
);
5668 #endif /* !USE_TOOLKIT_SCROLL_BARS */
5670 /* Destroy scroll bar BAR, and set its Emacs window's scroll bar to
5674 x_scroll_bar_remove (struct scroll_bar
*bar
)
5676 struct frame
*f
= XFRAME (WINDOW_FRAME (XWINDOW (bar
->window
)));
5679 #ifdef USE_TOOLKIT_SCROLL_BARS
5681 xg_remove_scroll_bar (f
, bar
->x_window
);
5682 #else /* not USE_GTK */
5683 XtDestroyWidget (SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f
), bar
));
5684 #endif /* not USE_GTK */
5686 XDestroyWindow (FRAME_X_DISPLAY (f
), bar
->x_window
);
5689 /* Dissociate this scroll bar from its window. */
5690 if (bar
->horizontal
)
5691 wset_horizontal_scroll_bar (XWINDOW (bar
->window
), Qnil
);
5693 wset_vertical_scroll_bar (XWINDOW (bar
->window
), Qnil
);
5699 /* Set the handle of the vertical scroll bar for WINDOW to indicate
5700 that we are displaying PORTION characters out of a total of WHOLE
5701 characters, starting at POSITION. If WINDOW has no scroll bar,
5705 XTset_vertical_scroll_bar (struct window
*w
, int portion
, int whole
, int position
)
5707 struct frame
*f
= XFRAME (w
->frame
);
5709 struct scroll_bar
*bar
;
5710 int top
, height
, left
, width
;
5711 int window_y
, window_height
;
5713 /* Get window dimensions. */
5714 window_box (w
, ANY_AREA
, 0, &window_y
, 0, &window_height
);
5716 height
= window_height
;
5717 left
= WINDOW_SCROLL_BAR_AREA_X (w
);
5718 width
= WINDOW_SCROLL_BAR_AREA_WIDTH (w
);
5720 /* Does the scroll bar exist yet? */
5721 if (NILP (w
->vertical_scroll_bar
))
5723 if (width
> 0 && height
> 0)
5726 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
5727 left
, top
, width
, height
);
5731 bar
= x_scroll_bar_create (w
, top
, left
, width
, max (height
, 1), 0);
5735 /* It may just need to be moved and resized. */
5736 unsigned int mask
= 0;
5738 bar
= XSCROLL_BAR (w
->vertical_scroll_bar
);
5742 if (left
!= bar
->left
)
5744 if (top
!= bar
->top
)
5746 if (width
!= bar
->width
)
5748 if (height
!= bar
->height
)
5751 #ifdef USE_TOOLKIT_SCROLL_BARS
5753 /* Move/size the scroll bar widget. */
5756 /* Since toolkit scroll bars are smaller than the space reserved
5757 for them on the frame, we have to clear "under" them. */
5758 if (width
> 0 && height
> 0)
5759 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
5760 left
, top
, width
, height
);
5762 xg_update_scrollbar_pos (f
, bar
->x_window
, top
,
5763 left
, width
, max (height
, 1));
5764 #else /* not USE_GTK */
5765 XtConfigureWidget (SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f
), bar
),
5766 left
, top
, width
, max (height
, 1), 0);
5767 #endif /* not USE_GTK */
5769 #else /* not USE_TOOLKIT_SCROLL_BARS */
5771 /* Move/size the scroll bar window. */
5780 XConfigureWindow (FRAME_X_DISPLAY (f
), bar
->x_window
,
5784 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5786 /* Remember new settings. */
5790 bar
->height
= height
;
5795 #ifdef USE_TOOLKIT_SCROLL_BARS
5796 x_set_toolkit_scroll_bar_thumb (bar
, portion
, position
, whole
);
5797 #else /* not USE_TOOLKIT_SCROLL_BARS */
5798 /* Set the scroll bar's current state, unless we're currently being
5800 if (bar
->dragging
== -1)
5802 int top_range
= VERTICAL_SCROLL_BAR_TOP_RANGE (f
, height
);
5805 x_scroll_bar_set_handle (bar
, 0, top_range
, 0);
5808 int start
= ((double) position
* top_range
) / whole
;
5809 int end
= ((double) (position
+ portion
) * top_range
) / whole
;
5810 x_scroll_bar_set_handle (bar
, start
, end
, 0);
5813 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5815 XSETVECTOR (barobj
, bar
);
5816 wset_vertical_scroll_bar (w
, barobj
);
5821 XTset_horizontal_scroll_bar (struct window
*w
, int portion
, int whole
, int position
)
5823 struct frame
*f
= XFRAME (w
->frame
);
5825 struct scroll_bar
*bar
;
5826 int top
, height
, left
, width
;
5827 int window_x
, window_width
;
5828 int pixel_width
= WINDOW_PIXEL_WIDTH (w
);
5830 /* Get window dimensions. */
5831 window_box (w
, ANY_AREA
, &window_x
, 0, &window_width
, 0);
5833 width
= window_width
;
5834 top
= WINDOW_SCROLL_BAR_AREA_Y (w
);
5835 height
= WINDOW_SCROLL_BAR_AREA_HEIGHT (w
);
5837 /* Does the scroll bar exist yet? */
5838 if (NILP (w
->horizontal_scroll_bar
))
5840 if (width
> 0 && height
> 0)
5844 /* Clear also part between window_width and
5845 WINDOW_PIXEL_WIDTH. */
5846 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
5847 left
, top
, pixel_width
, height
);
5851 bar
= x_scroll_bar_create (w
, top
, left
, width
, height
, 1);
5855 /* It may just need to be moved and resized. */
5856 unsigned int mask
= 0;
5858 bar
= XSCROLL_BAR (w
->horizontal_scroll_bar
);
5862 if (left
!= bar
->left
)
5864 if (top
!= bar
->top
)
5866 if (width
!= bar
->width
)
5868 if (height
!= bar
->height
)
5871 #ifdef USE_TOOLKIT_SCROLL_BARS
5872 /* Move/size the scroll bar widget. */
5875 /* Since toolkit scroll bars are smaller than the space reserved
5876 for them on the frame, we have to clear "under" them. */
5877 if (width
> 0 && height
> 0)
5878 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
5879 WINDOW_LEFT_EDGE_X (w
), top
,
5880 pixel_width
- WINDOW_RIGHT_DIVIDER_WIDTH (w
), height
);
5882 xg_update_horizontal_scrollbar_pos (f
, bar
->x_window
, top
, left
,
5884 #else /* not USE_GTK */
5885 XtConfigureWidget (SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f
), bar
),
5886 left
, top
, width
, height
, 0);
5887 #endif /* not USE_GTK */
5889 #else /* not USE_TOOLKIT_SCROLL_BARS */
5891 /* Clear areas not covered by the scroll bar because it's not as
5892 wide as the area reserved for it. This makes sure a
5893 previous mode line display is cleared after C-x 2 C-x 1, for
5896 int area_height
= WINDOW_CONFIG_SCROLL_BAR_HEIGHT (w
);
5897 int rest
= area_height
- height
;
5898 if (rest
> 0 && width
> 0)
5899 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
5900 left
, top
, width
, rest
);
5903 /* Move/size the scroll bar window. */
5912 XConfigureWindow (FRAME_X_DISPLAY (f
), bar
->x_window
,
5916 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5918 /* Remember new settings. */
5922 bar
->height
= height
;
5927 #ifdef USE_TOOLKIT_SCROLL_BARS
5928 x_set_toolkit_horizontal_scroll_bar_thumb (bar
, portion
, position
, whole
);
5929 #else /* not USE_TOOLKIT_SCROLL_BARS */
5930 /* Set the scroll bar's current state, unless we're currently being
5932 if (bar
->dragging
== -1)
5934 int left_range
= HORIZONTAL_SCROLL_BAR_LEFT_RANGE (f
, width
);
5937 x_scroll_bar_set_handle (bar
, 0, left_range
, 0);
5940 int start
= ((double) position
* left_range
) / whole
;
5941 int end
= ((double) (position
+ portion
) * left_range
) / whole
;
5942 x_scroll_bar_set_handle (bar
, start
, end
, 0);
5945 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5947 XSETVECTOR (barobj
, bar
);
5948 wset_horizontal_scroll_bar (w
, barobj
);
5952 /* The following three hooks are used when we're doing a thorough
5953 redisplay of the frame. We don't explicitly know which scroll bars
5954 are going to be deleted, because keeping track of when windows go
5955 away is a real pain - "Can you say set-window-configuration, boys
5956 and girls?" Instead, we just assert at the beginning of redisplay
5957 that *all* scroll bars are to be removed, and then save a scroll bar
5958 from the fiery pit when we actually redisplay its window. */
5960 /* Arrange for all scroll bars on FRAME to be removed at the next call
5961 to `*judge_scroll_bars_hook'. A scroll bar may be spared if
5962 `*redeem_scroll_bar_hook' is applied to its window before the judgment. */
5965 XTcondemn_scroll_bars (struct frame
*frame
)
5967 if (!NILP (FRAME_SCROLL_BARS (frame
)))
5969 if (!NILP (FRAME_CONDEMNED_SCROLL_BARS (frame
)))
5971 /* Prepend scrollbars to already condemned ones. */
5972 Lisp_Object last
= FRAME_SCROLL_BARS (frame
);
5974 while (!NILP (XSCROLL_BAR (last
)->next
))
5975 last
= XSCROLL_BAR (last
)->next
;
5977 XSCROLL_BAR (last
)->next
= FRAME_CONDEMNED_SCROLL_BARS (frame
);
5978 XSCROLL_BAR (FRAME_CONDEMNED_SCROLL_BARS (frame
))->prev
= last
;
5981 fset_condemned_scroll_bars (frame
, FRAME_SCROLL_BARS (frame
));
5982 fset_scroll_bars (frame
, Qnil
);
5987 /* Un-mark WINDOW's scroll bar for deletion in this judgment cycle.
5988 Note that WINDOW isn't necessarily condemned at all. */
5991 XTredeem_scroll_bar (struct window
*w
)
5993 struct scroll_bar
*bar
;
5997 /* We can't redeem this window's scroll bar if it doesn't have one. */
5998 if (NILP (w
->vertical_scroll_bar
) && NILP (w
->horizontal_scroll_bar
))
6001 if (!NILP (w
->vertical_scroll_bar
) && WINDOW_HAS_VERTICAL_SCROLL_BAR (w
))
6003 bar
= XSCROLL_BAR (w
->vertical_scroll_bar
);
6004 /* Unlink it from the condemned list. */
6005 f
= XFRAME (WINDOW_FRAME (w
));
6006 if (NILP (bar
->prev
))
6008 /* If the prev pointer is nil, it must be the first in one of
6010 if (EQ (FRAME_SCROLL_BARS (f
), w
->vertical_scroll_bar
))
6011 /* It's not condemned. Everything's fine. */
6013 else if (EQ (FRAME_CONDEMNED_SCROLL_BARS (f
),
6014 w
->vertical_scroll_bar
))
6015 fset_condemned_scroll_bars (f
, bar
->next
);
6017 /* If its prev pointer is nil, it must be at the front of
6018 one or the other! */
6022 XSCROLL_BAR (bar
->prev
)->next
= bar
->next
;
6024 if (! NILP (bar
->next
))
6025 XSCROLL_BAR (bar
->next
)->prev
= bar
->prev
;
6027 bar
->next
= FRAME_SCROLL_BARS (f
);
6029 XSETVECTOR (barobj
, bar
);
6030 fset_scroll_bars (f
, barobj
);
6031 if (! NILP (bar
->next
))
6032 XSETVECTOR (XSCROLL_BAR (bar
->next
)->prev
, bar
);
6036 if (!NILP (w
->horizontal_scroll_bar
) && WINDOW_HAS_HORIZONTAL_SCROLL_BAR (w
))
6038 bar
= XSCROLL_BAR (w
->horizontal_scroll_bar
);
6039 /* Unlink it from the condemned list. */
6040 f
= XFRAME (WINDOW_FRAME (w
));
6041 if (NILP (bar
->prev
))
6043 /* If the prev pointer is nil, it must be the first in one of
6045 if (EQ (FRAME_SCROLL_BARS (f
), w
->horizontal_scroll_bar
))
6046 /* It's not condemned. Everything's fine. */
6048 else if (EQ (FRAME_CONDEMNED_SCROLL_BARS (f
),
6049 w
->horizontal_scroll_bar
))
6050 fset_condemned_scroll_bars (f
, bar
->next
);
6052 /* If its prev pointer is nil, it must be at the front of
6053 one or the other! */
6057 XSCROLL_BAR (bar
->prev
)->next
= bar
->next
;
6059 if (! NILP (bar
->next
))
6060 XSCROLL_BAR (bar
->next
)->prev
= bar
->prev
;
6062 bar
->next
= FRAME_SCROLL_BARS (f
);
6064 XSETVECTOR (barobj
, bar
);
6065 fset_scroll_bars (f
, barobj
);
6066 if (! NILP (bar
->next
))
6067 XSETVECTOR (XSCROLL_BAR (bar
->next
)->prev
, bar
);
6071 /* Remove all scroll bars on FRAME that haven't been saved since the
6072 last call to `*condemn_scroll_bars_hook'. */
6075 XTjudge_scroll_bars (struct frame
*f
)
6077 Lisp_Object bar
, next
;
6079 bar
= FRAME_CONDEMNED_SCROLL_BARS (f
);
6081 /* Clear out the condemned list now so we won't try to process any
6082 more events on the hapless scroll bars. */
6083 fset_condemned_scroll_bars (f
, Qnil
);
6085 for (; ! NILP (bar
); bar
= next
)
6087 struct scroll_bar
*b
= XSCROLL_BAR (bar
);
6089 x_scroll_bar_remove (b
);
6092 b
->next
= b
->prev
= Qnil
;
6095 /* Now there should be no references to the condemned scroll bars,
6096 and they should get garbage-collected. */
6100 #ifndef USE_TOOLKIT_SCROLL_BARS
6101 /* Handle an Expose or GraphicsExpose event on a scroll bar. This
6102 is a no-op when using toolkit scroll bars.
6104 This may be called from a signal handler, so we have to ignore GC
6108 x_scroll_bar_expose (struct scroll_bar
*bar
, const XEvent
*event
)
6110 Window w
= bar
->x_window
;
6111 struct frame
*f
= XFRAME (WINDOW_FRAME (XWINDOW (bar
->window
)));
6112 GC gc
= f
->output_data
.x
->normal_gc
;
6116 x_scroll_bar_set_handle (bar
, bar
->start
, bar
->end
, 1);
6118 /* Switch to scroll bar foreground color. */
6119 if (f
->output_data
.x
->scroll_bar_foreground_pixel
!= -1)
6120 XSetForeground (FRAME_X_DISPLAY (f
), gc
,
6121 f
->output_data
.x
->scroll_bar_foreground_pixel
);
6123 /* Draw a one-pixel border just inside the edges of the scroll bar. */
6124 XDrawRectangle (FRAME_X_DISPLAY (f
), w
, gc
,
6125 /* x, y, width, height */
6126 0, 0, bar
->width
- 1, bar
->height
- 1);
6128 /* Restore the foreground color of the GC if we changed it above. */
6129 if (f
->output_data
.x
->scroll_bar_foreground_pixel
!= -1)
6130 XSetForeground (FRAME_X_DISPLAY (f
), gc
,
6131 FRAME_FOREGROUND_PIXEL (f
));
6136 #endif /* not USE_TOOLKIT_SCROLL_BARS */
6138 /* Handle a mouse click on the scroll bar BAR. If *EMACS_EVENT's kind
6139 is set to something other than NO_EVENT, it is enqueued.
6141 This may be called from a signal handler, so we have to ignore GC
6146 x_scroll_bar_handle_click (struct scroll_bar
*bar
,
6147 const XEvent
*event
,
6148 struct input_event
*emacs_event
)
6150 if (! WINDOWP (bar
->window
))
6153 emacs_event
->kind
= (bar
->horizontal
6154 ? HORIZONTAL_SCROLL_BAR_CLICK_EVENT
6155 : SCROLL_BAR_CLICK_EVENT
);
6156 emacs_event
->code
= event
->xbutton
.button
- Button1
;
6157 emacs_event
->modifiers
6158 = (x_x_to_emacs_modifiers (FRAME_DISPLAY_INFO
6159 (XFRAME (WINDOW_FRAME (XWINDOW (bar
->window
)))),
6160 event
->xbutton
.state
)
6161 | (event
->type
== ButtonRelease
6164 emacs_event
->frame_or_window
= bar
->window
;
6165 emacs_event
->arg
= Qnil
;
6166 emacs_event
->timestamp
= event
->xbutton
.time
;
6167 if (bar
->horizontal
)
6170 = HORIZONTAL_SCROLL_BAR_LEFT_RANGE (f
, bar
->width
);
6171 int x
= event
->xbutton
.x
- HORIZONTAL_SCROLL_BAR_LEFT_BORDER
;
6174 if (x
> left_range
) x
= left_range
;
6177 emacs_event
->part
= scroll_bar_before_handle
;
6178 else if (x
< bar
->end
+ HORIZONTAL_SCROLL_BAR_MIN_HANDLE
)
6179 emacs_event
->part
= scroll_bar_horizontal_handle
;
6181 emacs_event
->part
= scroll_bar_after_handle
;
6183 #ifndef USE_TOOLKIT_SCROLL_BARS
6184 /* If the user has released the handle, set it to its final position. */
6185 if (event
->type
== ButtonRelease
&& bar
->dragging
!= -1)
6187 int new_start
= - bar
->dragging
;
6188 int new_end
= new_start
+ bar
->end
- bar
->start
;
6190 x_scroll_bar_set_handle (bar
, new_start
, new_end
, 0);
6195 XSETINT (emacs_event
->x
, left_range
);
6196 XSETINT (emacs_event
->y
, x
);
6201 = VERTICAL_SCROLL_BAR_TOP_RANGE (f
, bar
->height
);
6202 int y
= event
->xbutton
.y
- VERTICAL_SCROLL_BAR_TOP_BORDER
;
6205 if (y
> top_range
) y
= top_range
;
6208 emacs_event
->part
= scroll_bar_above_handle
;
6209 else if (y
< bar
->end
+ VERTICAL_SCROLL_BAR_MIN_HANDLE
)
6210 emacs_event
->part
= scroll_bar_handle
;
6212 emacs_event
->part
= scroll_bar_below_handle
;
6214 #ifndef USE_TOOLKIT_SCROLL_BARS
6215 /* If the user has released the handle, set it to its final position. */
6216 if (event
->type
== ButtonRelease
&& bar
->dragging
!= -1)
6218 int new_start
= y
- bar
->dragging
;
6219 int new_end
= new_start
+ bar
->end
- bar
->start
;
6221 x_scroll_bar_set_handle (bar
, new_start
, new_end
, 0);
6226 XSETINT (emacs_event
->x
, y
);
6227 XSETINT (emacs_event
->y
, top_range
);
6231 #ifndef USE_TOOLKIT_SCROLL_BARS
6233 /* Handle some mouse motion while someone is dragging the scroll bar.
6235 This may be called from a signal handler, so we have to ignore GC
6239 x_scroll_bar_note_movement (struct scroll_bar
*bar
,
6240 const XMotionEvent
*event
)
6242 struct frame
*f
= XFRAME (XWINDOW (bar
->window
)->frame
);
6243 struct x_display_info
*dpyinfo
= FRAME_DISPLAY_INFO (f
);
6245 dpyinfo
->last_mouse_movement_time
= event
->time
;
6246 dpyinfo
->last_mouse_scroll_bar
= bar
;
6249 /* If we're dragging the bar, display it. */
6250 if (bar
->dragging
!= -1)
6252 /* Where should the handle be now? */
6253 int new_start
= event
->y
- bar
->dragging
;
6255 if (new_start
!= bar
->start
)
6257 int new_end
= new_start
+ bar
->end
- bar
->start
;
6259 x_scroll_bar_set_handle (bar
, new_start
, new_end
, 0);
6264 #endif /* !USE_TOOLKIT_SCROLL_BARS */
6266 /* Return information to the user about the current position of the mouse
6267 on the scroll bar. */
6270 x_scroll_bar_report_motion (struct frame
**fp
, Lisp_Object
*bar_window
,
6271 enum scroll_bar_part
*part
, Lisp_Object
*x
,
6272 Lisp_Object
*y
, Time
*timestamp
)
6274 struct x_display_info
*dpyinfo
= FRAME_DISPLAY_INFO (*fp
);
6275 struct scroll_bar
*bar
= dpyinfo
->last_mouse_scroll_bar
;
6276 Window w
= bar
->x_window
;
6277 struct frame
*f
= XFRAME (WINDOW_FRAME (XWINDOW (bar
->window
)));
6279 Window dummy_window
;
6281 unsigned int dummy_mask
;
6285 /* Get the mouse's position relative to the scroll bar window, and
6287 if (XQueryPointer (FRAME_X_DISPLAY (f
), w
,
6289 /* Root, child, root x and root y. */
6290 &dummy_window
, &dummy_window
,
6291 &dummy_coord
, &dummy_coord
,
6293 /* Position relative to scroll bar. */
6296 /* Mouse buttons and modifier keys. */
6299 int top_range
= VERTICAL_SCROLL_BAR_TOP_RANGE (f
, bar
->height
);
6301 win_y
-= VERTICAL_SCROLL_BAR_TOP_BORDER
;
6303 if (bar
->dragging
!= -1)
6304 win_y
-= bar
->dragging
;
6308 if (win_y
> top_range
)
6312 *bar_window
= bar
->window
;
6314 if (bar
->dragging
!= -1)
6315 *part
= scroll_bar_handle
;
6316 else if (win_y
< bar
->start
)
6317 *part
= scroll_bar_above_handle
;
6318 else if (win_y
< bar
->end
+ VERTICAL_SCROLL_BAR_MIN_HANDLE
)
6319 *part
= scroll_bar_handle
;
6321 *part
= scroll_bar_below_handle
;
6323 XSETINT (*x
, win_y
);
6324 XSETINT (*y
, top_range
);
6327 dpyinfo
->last_mouse_scroll_bar
= NULL
;
6328 *timestamp
= dpyinfo
->last_mouse_movement_time
;
6335 /* Return information to the user about the current position of the mouse
6336 on the scroll bar. */
6339 x_horizontal_scroll_bar_report_motion (struct frame
**fp
, Lisp_Object
*bar_window
,
6340 enum scroll_bar_part
*part
, Lisp_Object
*x
,
6341 Lisp_Object
*y
, Time
*timestamp
)
6343 struct x_display_info
*dpyinfo
= FRAME_DISPLAY_INFO (*fp
);
6344 struct scroll_bar
*bar
= dpyinfo
->last_mouse_scroll_bar
;
6345 Window w
= bar
->x_window
;
6346 struct frame
*f
= XFRAME (WINDOW_FRAME (XWINDOW (bar
->window
)));
6348 Window dummy_window
;
6350 unsigned int dummy_mask
;
6354 /* Get the mouse's position relative to the scroll bar window, and
6356 if (XQueryPointer (FRAME_X_DISPLAY (f
), w
,
6358 /* Root, child, root x and root y. */
6359 &dummy_window
, &dummy_window
,
6360 &dummy_coord
, &dummy_coord
,
6362 /* Position relative to scroll bar. */
6365 /* Mouse buttons and modifier keys. */
6368 int left_range
= HORIZONTAL_SCROLL_BAR_LEFT_RANGE (f
, bar
->width
);
6370 win_x
-= HORIZONTAL_SCROLL_BAR_LEFT_BORDER
;
6372 if (bar
->dragging
!= -1)
6373 win_x
-= bar
->dragging
;
6377 if (win_x
> left_range
)
6381 *bar_window
= bar
->window
;
6383 if (bar
->dragging
!= -1)
6384 *part
= scroll_bar_horizontal_handle
;
6385 else if (win_x
< bar
->start
)
6386 *part
= scroll_bar_before_handle
;
6387 else if (win_x
< bar
->end
+ HORIZONTAL_SCROLL_BAR_MIN_HANDLE
)
6388 *part
= scroll_bar_handle
;
6390 *part
= scroll_bar_after_handle
;
6392 XSETINT (*y
, win_x
);
6393 XSETINT (*x
, left_range
);
6396 dpyinfo
->last_mouse_scroll_bar
= NULL
;
6397 *timestamp
= dpyinfo
->last_mouse_movement_time
;
6404 /* The screen has been cleared so we may have changed foreground or
6405 background colors, and the scroll bars may need to be redrawn.
6406 Clear out the scroll bars, and ask for expose events, so we can
6410 x_scroll_bar_clear (struct frame
*f
)
6412 #ifndef USE_TOOLKIT_SCROLL_BARS
6415 /* We can have scroll bars even if this is 0,
6416 if we just turned off scroll bar mode.
6417 But in that case we should not clear them. */
6418 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f
))
6419 for (bar
= FRAME_SCROLL_BARS (f
); VECTORP (bar
);
6420 bar
= XSCROLL_BAR (bar
)->next
)
6421 XClearArea (FRAME_X_DISPLAY (f
),
6422 XSCROLL_BAR (bar
)->x_window
,
6424 #endif /* not USE_TOOLKIT_SCROLL_BARS */
6427 #ifdef ENABLE_CHECKING
6429 /* Record the last 100 characters stored
6430 to help debug the loss-of-chars-during-GC problem. */
6432 static int temp_index
;
6433 static short temp_buffer
[100];
6435 #define STORE_KEYSYM_FOR_DEBUG(keysym) \
6436 if (temp_index == ARRAYELTS (temp_buffer)) \
6438 temp_buffer[temp_index++] = (keysym)
6440 #else /* not ENABLE_CHECKING */
6442 #define STORE_KEYSYM_FOR_DEBUG(keysym) ((void)0)
6444 #endif /* ENABLE_CHECKING */
6446 /* Set this to nonzero to fake an "X I/O error"
6447 on a particular display. */
6449 static struct x_display_info
*XTread_socket_fake_io_error
;
6451 /* When we find no input here, we occasionally do a no-op command
6452 to verify that the X server is still running and we can still talk with it.
6453 We try all the open displays, one by one.
6454 This variable is used for cycling thru the displays. */
6456 static struct x_display_info
*next_noop_dpyinfo
;
6465 /* Filter events for the current X input method.
6466 DPYINFO is the display this event is for.
6467 EVENT is the X event to filter.
6469 Returns non-zero if the event was filtered, caller shall not process
6471 Returns zero if event is wasn't filtered. */
6475 x_filter_event (struct x_display_info
*dpyinfo
, XEvent
*event
)
6477 /* XFilterEvent returns non-zero if the input method has
6478 consumed the event. We pass the frame's X window to
6479 XFilterEvent because that's the one for which the IC
6482 struct frame
*f1
= x_any_window_to_frame (dpyinfo
,
6483 event
->xclient
.window
);
6485 return XFilterEvent (event
, f1
? FRAME_X_WINDOW (f1
) : None
);
6490 static int current_count
;
6491 static int current_finish
;
6492 static struct input_event
*current_hold_quit
;
6494 /* This is the filter function invoked by the GTK event loop.
6495 It is invoked before the XEvent is translated to a GdkEvent,
6496 so we have a chance to act on the event before GTK. */
6497 static GdkFilterReturn
6498 event_handler_gdk (GdkXEvent
*gxev
, GdkEvent
*ev
, gpointer data
)
6500 XEvent
*xev
= (XEvent
*) gxev
;
6503 if (current_count
>= 0)
6505 struct x_display_info
*dpyinfo
;
6507 dpyinfo
= x_display_info_for_display (xev
->xany
.display
);
6510 /* Filter events for the current X input method.
6511 GTK calls XFilterEvent but not for key press and release,
6512 so we do it here. */
6513 if ((xev
->type
== KeyPress
|| xev
->type
== KeyRelease
)
6515 && x_filter_event (dpyinfo
, xev
))
6518 return GDK_FILTER_REMOVE
;
6523 current_finish
= X_EVENT_NORMAL
;
6526 += handle_one_xevent (dpyinfo
, xev
, ¤t_finish
,
6530 current_finish
= x_dispatch_event (xev
, xev
->xany
.display
);
6534 if (current_finish
== X_EVENT_GOTO_OUT
|| current_finish
== X_EVENT_DROP
)
6535 return GDK_FILTER_REMOVE
;
6537 return GDK_FILTER_CONTINUE
;
6539 #endif /* USE_GTK */
6542 static void xembed_send_message (struct frame
*f
, Time
,
6543 enum xembed_message
,
6544 long detail
, long data1
, long data2
);
6547 x_net_wm_state (struct frame
*f
, Window window
)
6549 int value
= FULLSCREEN_NONE
;
6550 Lisp_Object lval
= Qnil
;
6553 (void)get_current_wm_state (f
, window
, &value
, &sticky
);
6557 case FULLSCREEN_WIDTH
:
6560 case FULLSCREEN_HEIGHT
:
6563 case FULLSCREEN_BOTH
:
6566 case FULLSCREEN_MAXIMIZED
:
6571 store_frame_param (f
, Qfullscreen
, lval
);
6572 /** store_frame_param (f, Qsticky, sticky ? Qt : Qnil); **/
6575 /* Handles the XEvent EVENT on display DPYINFO.
6577 *FINISH is X_EVENT_GOTO_OUT if caller should stop reading events.
6578 *FINISH is zero if caller should continue reading events.
6579 *FINISH is X_EVENT_DROP if event should not be passed to the toolkit.
6580 *EVENT is unchanged unless we're processing KeyPress event.
6582 We return the number of characters stored into the buffer. */
6585 handle_one_xevent (struct x_display_info
*dpyinfo
,
6586 const XEvent
*event
,
6587 int *finish
, struct input_event
*hold_quit
)
6590 struct input_event ie
;
6591 struct selection_input_event sie
;
6595 ptrdiff_t nbytes
= 0;
6596 struct frame
*any
, *f
= NULL
;
6597 struct coding_system coding
;
6598 Mouse_HLInfo
*hlinfo
= &dpyinfo
->mouse_highlight
;
6599 /* This holds the state XLookupString needs to implement dead keys
6600 and other tricks known as "compose processing". _X Window System_
6601 says that a portable program can't use this, but Stephen Gildea assures
6602 me that letting the compiler initialize it to zeros will work okay. */
6603 static XComposeStatus compose_status
;
6607 *finish
= X_EVENT_NORMAL
;
6609 EVENT_INIT (inev
.ie
);
6610 inev
.ie
.kind
= NO_EVENT
;
6613 any
= x_any_window_to_frame (dpyinfo
, event
->xany
.window
);
6615 if (any
&& any
->wait_event_type
== event
->type
)
6616 any
->wait_event_type
= 0; /* Indicates we got it. */
6618 switch (event
->type
)
6622 if (event
->xclient
.message_type
== dpyinfo
->Xatom_wm_protocols
6623 && event
->xclient
.format
== 32)
6625 if (event
->xclient
.data
.l
[0] == dpyinfo
->Xatom_wm_take_focus
)
6627 /* Use the value returned by x_any_window_to_frame
6628 because this could be the shell widget window
6629 if the frame has no title bar. */
6632 /* Not quite sure this is needed -pd */
6633 if (f
&& FRAME_XIC (f
))
6634 XSetICFocus (FRAME_XIC (f
));
6636 #if 0 /* Emacs sets WM hints whose `input' field is `true'. This
6637 instructs the WM to set the input focus automatically for
6638 Emacs with a call to XSetInputFocus. Setting WM_TAKE_FOCUS
6639 tells the WM to send us a ClientMessage WM_TAKE_FOCUS after
6640 it has set the focus. So, XSetInputFocus below is not
6643 The call to XSetInputFocus below has also caused trouble. In
6644 cases where the XSetInputFocus done by the WM and the one
6645 below are temporally close (on a fast machine), the call
6646 below can generate additional FocusIn events which confuse
6649 /* Since we set WM_TAKE_FOCUS, we must call
6650 XSetInputFocus explicitly. But not if f is null,
6651 since that might be an event for a deleted frame. */
6654 Display
*d
= event
->xclient
.display
;
6655 /* Catch and ignore errors, in case window has been
6656 iconified by a window manager such as GWM. */
6658 XSetInputFocus (d
, event
->xclient
.window
,
6659 /* The ICCCM says this is
6660 the only valid choice. */
6662 event
->xclient
.data
.l
[1]);
6663 /* This is needed to detect the error
6664 if there is an error. */
6666 x_uncatch_errors ();
6668 /* Not certain about handling scroll bars here */
6673 if (event
->xclient
.data
.l
[0] == dpyinfo
->Xatom_wm_save_yourself
)
6675 /* Save state modify the WM_COMMAND property to
6676 something which can reinstate us. This notifies
6677 the session manager, who's looking for such a
6678 PropertyNotify. Can restart processing when
6679 a keyboard or mouse event arrives. */
6680 /* If we have a session manager, don't set this.
6681 KDE will then start two Emacsen, one for the
6682 session manager and one for this. */
6684 if (! x_session_have_connection ())
6687 f
= x_top_window_to_frame (dpyinfo
,
6688 event
->xclient
.window
);
6689 /* This is just so we only give real data once
6690 for a single Emacs process. */
6691 if (f
== SELECTED_FRAME ())
6692 XSetCommand (FRAME_X_DISPLAY (f
),
6693 event
->xclient
.window
,
6694 initial_argv
, initial_argc
);
6696 XSetCommand (FRAME_X_DISPLAY (f
),
6697 event
->xclient
.window
,
6703 if (event
->xclient
.data
.l
[0] == dpyinfo
->Xatom_wm_delete_window
)
6707 goto OTHER
; /* May be a dialog that is to be removed */
6709 inev
.ie
.kind
= DELETE_WINDOW_EVENT
;
6710 XSETFRAME (inev
.ie
.frame_or_window
, f
);
6717 if (event
->xclient
.message_type
== dpyinfo
->Xatom_wm_configure_denied
)
6720 if (event
->xclient
.message_type
== dpyinfo
->Xatom_wm_window_moved
)
6723 f
= x_window_to_frame (dpyinfo
, event
->xclient
.window
);
6725 new_x
= event
->xclient
.data
.s
[0];
6726 new_y
= event
->xclient
.data
.s
[1];
6730 f
->left_pos
= new_x
;
6737 if (event
->xclient
.message_type
== dpyinfo
->Xatom_editres
)
6741 _XEditResCheckMessages (f
->output_data
.x
->widget
,
6742 NULL
, (XEvent
*) event
, NULL
);
6745 #endif /* HACK_EDITRES */
6747 if (event
->xclient
.message_type
== dpyinfo
->Xatom_DONE
6748 || event
->xclient
.message_type
== dpyinfo
->Xatom_PAGE
)
6750 /* Ghostview job completed. Kill it. We could
6751 reply with "Next" if we received "Page", but we
6752 currently never do because we are interested in
6753 images, only, which should have 1 page. */
6754 Pixmap pixmap
= (Pixmap
) event
->xclient
.data
.l
[1];
6755 f
= x_window_to_frame (dpyinfo
, event
->xclient
.window
);
6758 x_kill_gs_process (pixmap
, f
);
6759 expose_frame (f
, 0, 0, 0, 0);
6763 #ifdef USE_TOOLKIT_SCROLL_BARS
6764 /* Scroll bar callbacks send a ClientMessage from which
6765 we construct an input_event. */
6766 if (event
->xclient
.message_type
== dpyinfo
->Xatom_Scrollbar
)
6768 x_scroll_bar_to_input_event (event
, &inev
.ie
);
6769 *finish
= X_EVENT_GOTO_OUT
;
6772 else if (event
->xclient
.message_type
== dpyinfo
->Xatom_Horizontal_Scrollbar
)
6774 x_horizontal_scroll_bar_to_input_event (event
, &inev
.ie
);
6775 *finish
= X_EVENT_GOTO_OUT
;
6778 #endif /* USE_TOOLKIT_SCROLL_BARS */
6780 /* XEmbed messages from the embedder (if any). */
6781 if (event
->xclient
.message_type
== dpyinfo
->Xatom_XEMBED
)
6783 enum xembed_message msg
= event
->xclient
.data
.l
[1];
6784 if (msg
== XEMBED_FOCUS_IN
|| msg
== XEMBED_FOCUS_OUT
)
6785 x_detect_focus_change (dpyinfo
, any
, event
, &inev
.ie
);
6787 *finish
= X_EVENT_GOTO_OUT
;
6791 xft_settings_event (dpyinfo
, event
);
6796 if (x_handle_dnd_message (f
, &event
->xclient
, dpyinfo
, &inev
.ie
))
6797 *finish
= X_EVENT_DROP
;
6801 case SelectionNotify
:
6802 dpyinfo
->last_user_time
= event
->xselection
.time
;
6803 #ifdef USE_X_TOOLKIT
6804 if (! x_window_to_frame (dpyinfo
, event
->xselection
.requestor
))
6806 #endif /* not USE_X_TOOLKIT */
6807 x_handle_selection_notify (&event
->xselection
);
6810 case SelectionClear
: /* Someone has grabbed ownership. */
6811 dpyinfo
->last_user_time
= event
->xselectionclear
.time
;
6812 #ifdef USE_X_TOOLKIT
6813 if (! x_window_to_frame (dpyinfo
, event
->xselectionclear
.window
))
6815 #endif /* USE_X_TOOLKIT */
6817 const XSelectionClearEvent
*eventp
= &event
->xselectionclear
;
6819 inev
.ie
.kind
= SELECTION_CLEAR_EVENT
;
6820 SELECTION_EVENT_DPYINFO (&inev
.sie
) = dpyinfo
;
6821 SELECTION_EVENT_SELECTION (&inev
.sie
) = eventp
->selection
;
6822 SELECTION_EVENT_TIME (&inev
.sie
) = eventp
->time
;
6826 case SelectionRequest
: /* Someone wants our selection. */
6827 dpyinfo
->last_user_time
= event
->xselectionrequest
.time
;
6828 #ifdef USE_X_TOOLKIT
6829 if (!x_window_to_frame (dpyinfo
, event
->xselectionrequest
.owner
))
6831 #endif /* USE_X_TOOLKIT */
6833 const XSelectionRequestEvent
*eventp
= &event
->xselectionrequest
;
6835 inev
.ie
.kind
= SELECTION_REQUEST_EVENT
;
6836 SELECTION_EVENT_DPYINFO (&inev
.sie
) = dpyinfo
;
6837 SELECTION_EVENT_REQUESTOR (&inev
.sie
) = eventp
->requestor
;
6838 SELECTION_EVENT_SELECTION (&inev
.sie
) = eventp
->selection
;
6839 SELECTION_EVENT_TARGET (&inev
.sie
) = eventp
->target
;
6840 SELECTION_EVENT_PROPERTY (&inev
.sie
) = eventp
->property
;
6841 SELECTION_EVENT_TIME (&inev
.sie
) = eventp
->time
;
6845 case PropertyNotify
:
6846 dpyinfo
->last_user_time
= event
->xproperty
.time
;
6847 f
= x_top_window_to_frame (dpyinfo
, event
->xproperty
.window
);
6848 if (f
&& event
->xproperty
.atom
== dpyinfo
->Xatom_net_wm_state
)
6850 if (x_handle_net_wm_state (f
, &event
->xproperty
)
6851 && FRAME_ICONIFIED_P (f
)
6852 && f
->output_data
.x
->net_wm_state_hidden_seen
)
6854 /* Gnome shell does not iconify us when C-z is pressed.
6855 It hides the frame. So if our state says we aren't
6856 hidden anymore, treat it as deiconified. */
6857 SET_FRAME_VISIBLE (f
, 1);
6858 SET_FRAME_ICONIFIED (f
, 0);
6859 f
->output_data
.x
->has_been_visible
= 1;
6860 f
->output_data
.x
->net_wm_state_hidden_seen
= 0;
6861 inev
.ie
.kind
= DEICONIFY_EVENT
;
6862 XSETFRAME (inev
.ie
.frame_or_window
, f
);
6864 else if (! FRAME_ICONIFIED_P (f
)
6865 && f
->output_data
.x
->net_wm_state_hidden_seen
)
6867 SET_FRAME_VISIBLE (f
, 0);
6868 SET_FRAME_ICONIFIED (f
, 1);
6869 inev
.ie
.kind
= ICONIFY_EVENT
;
6870 XSETFRAME (inev
.ie
.frame_or_window
, f
);
6874 x_handle_property_notify (&event
->xproperty
);
6875 xft_settings_event (dpyinfo
, event
);
6878 case ReparentNotify
:
6879 f
= x_top_window_to_frame (dpyinfo
, event
->xreparent
.window
);
6882 f
->output_data
.x
->parent_desc
= event
->xreparent
.parent
;
6883 x_real_positions (f
, &f
->left_pos
, &f
->top_pos
);
6885 /* Perhaps reparented due to a WM restart. Reset this. */
6886 FRAME_DISPLAY_INFO (f
)->wm_type
= X_WMTYPE_UNKNOWN
;
6887 FRAME_DISPLAY_INFO (f
)->net_supported_window
= 0;
6889 x_set_frame_alpha (f
);
6894 f
= x_window_to_frame (dpyinfo
, event
->xexpose
.window
);
6897 if (!FRAME_VISIBLE_P (f
))
6899 SET_FRAME_VISIBLE (f
, 1);
6900 SET_FRAME_ICONIFIED (f
, 0);
6901 f
->output_data
.x
->has_been_visible
= 1;
6902 SET_FRAME_GARBAGED (f
);
6907 /* This seems to be needed for GTK 2.6 and later, see
6908 http://debbugs.gnu.org/cgi/bugreport.cgi?bug=15398. */
6909 x_clear_area (event
->xexpose
.display
,
6910 event
->xexpose
.window
,
6911 event
->xexpose
.x
, event
->xexpose
.y
,
6912 event
->xexpose
.width
, event
->xexpose
.height
);
6914 expose_frame (f
, event
->xexpose
.x
, event
->xexpose
.y
,
6915 event
->xexpose
.width
, event
->xexpose
.height
);
6920 #ifndef USE_TOOLKIT_SCROLL_BARS
6921 struct scroll_bar
*bar
;
6923 #if defined USE_LUCID
6924 /* Submenus of the Lucid menu bar aren't widgets
6925 themselves, so there's no way to dispatch events
6926 to them. Recognize this case separately. */
6928 Widget widget
= x_window_to_menu_bar (event
->xexpose
.window
);
6930 xlwmenu_redisplay (widget
);
6932 #endif /* USE_LUCID */
6934 #ifdef USE_TOOLKIT_SCROLL_BARS
6935 /* Dispatch event to the widget. */
6937 #else /* not USE_TOOLKIT_SCROLL_BARS */
6938 bar
= x_window_to_scroll_bar (event
->xexpose
.display
,
6939 event
->xexpose
.window
, 2);
6942 x_scroll_bar_expose (bar
, event
);
6943 #ifdef USE_X_TOOLKIT
6946 #endif /* USE_X_TOOLKIT */
6947 #endif /* not USE_TOOLKIT_SCROLL_BARS */
6951 case GraphicsExpose
: /* This occurs when an XCopyArea's
6952 source area was obscured or not
6954 f
= x_window_to_frame (dpyinfo
, event
->xgraphicsexpose
.drawable
);
6956 expose_frame (f
, event
->xgraphicsexpose
.x
,
6957 event
->xgraphicsexpose
.y
,
6958 event
->xgraphicsexpose
.width
,
6959 event
->xgraphicsexpose
.height
);
6960 #ifdef USE_X_TOOLKIT
6963 #endif /* USE_X_TOOLKIT */
6966 case NoExpose
: /* This occurs when an XCopyArea's
6967 source area was completely
6972 /* Redo the mouse-highlight after the tooltip has gone. */
6973 if (event
->xunmap
.window
== tip_window
)
6976 x_redo_mouse_highlight (dpyinfo
);
6979 f
= x_top_window_to_frame (dpyinfo
, event
->xunmap
.window
);
6980 if (f
) /* F may no longer exist if
6981 the frame was deleted. */
6983 bool visible
= FRAME_VISIBLE_P (f
);
6984 /* While a frame is unmapped, display generation is
6985 disabled; you don't want to spend time updating a
6986 display that won't ever be seen. */
6987 SET_FRAME_VISIBLE (f
, 0);
6988 /* We can't distinguish, from the event, whether the window
6989 has become iconified or invisible. So assume, if it
6990 was previously visible, than now it is iconified.
6991 But x_make_frame_invisible clears both
6992 the visible flag and the iconified flag;
6993 and that way, we know the window is not iconified now. */
6994 if (visible
|| FRAME_ICONIFIED_P (f
))
6996 SET_FRAME_ICONIFIED (f
, 1);
6997 inev
.ie
.kind
= ICONIFY_EVENT
;
6998 XSETFRAME (inev
.ie
.frame_or_window
, f
);
7004 if (event
->xmap
.window
== tip_window
)
7005 /* The tooltip has been drawn already. Avoid
7006 the SET_FRAME_GARBAGED below. */
7009 /* We use x_top_window_to_frame because map events can
7010 come for sub-windows and they don't mean that the
7011 frame is visible. */
7012 f
= x_top_window_to_frame (dpyinfo
, event
->xmap
.window
);
7015 bool iconified
= FRAME_ICONIFIED_P (f
);
7017 /* Check if fullscreen was specified before we where mapped the
7018 first time, i.e. from the command line. */
7019 if (!f
->output_data
.x
->has_been_visible
)
7020 x_check_fullscreen (f
);
7022 SET_FRAME_VISIBLE (f
, 1);
7023 SET_FRAME_ICONIFIED (f
, 0);
7024 f
->output_data
.x
->has_been_visible
= 1;
7028 inev
.ie
.kind
= DEICONIFY_EVENT
;
7029 XSETFRAME (inev
.ie
.frame_or_window
, f
);
7031 else if (! NILP (Vframe_list
) && ! NILP (XCDR (Vframe_list
)))
7032 /* Force a redisplay sooner or later to update the
7033 frame titles in case this is the second frame. */
7034 record_asynch_buffer_change ();
7037 xg_frame_resized (f
, -1, -1);
7044 dpyinfo
->last_user_time
= event
->xkey
.time
;
7045 ignore_next_mouse_click_timeout
= 0;
7047 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
7048 /* Dispatch KeyPress events when in menu. */
7049 if (popup_activated ())
7055 #if ! defined (USE_GTK)
7056 /* If mouse-highlight is an integer, input clears out
7057 mouse highlighting. */
7058 if (!hlinfo
->mouse_face_hidden
&& INTEGERP (Vmouse_highlight
)
7060 || !EQ (f
->tool_bar_window
, hlinfo
->mouse_face_window
)))
7062 clear_mouse_face (hlinfo
);
7063 hlinfo
->mouse_face_hidden
= 1;
7067 #if defined USE_MOTIF && defined USE_TOOLKIT_SCROLL_BARS
7070 /* Scroll bars consume key events, but we want
7071 the keys to go to the scroll bar's frame. */
7072 Widget widget
= XtWindowToWidget (dpyinfo
->display
,
7073 event
->xkey
.window
);
7074 if (widget
&& XmIsScrollBar (widget
))
7076 widget
= XtParent (widget
);
7077 f
= x_any_window_to_frame (dpyinfo
, XtWindow (widget
));
7080 #endif /* USE_MOTIF and USE_TOOLKIT_SCROLL_BARS */
7084 KeySym keysym
, orig_keysym
;
7085 /* al%imercury@uunet.uu.net says that making this 81
7086 instead of 80 fixed a bug whereby meta chars made
7089 It seems that some version of XmbLookupString has
7090 a bug of not returning XBufferOverflow in
7091 status_return even if the input is too long to
7092 fit in 81 bytes. So, we must prepare sufficient
7093 bytes for copy_buffer. 513 bytes (256 chars for
7094 two-byte character set) seems to be a fairly good
7095 approximation. -- 2000.8.10 handa@etl.go.jp */
7096 unsigned char copy_buffer
[513];
7097 unsigned char *copy_bufptr
= copy_buffer
;
7098 int copy_bufsiz
= sizeof (copy_buffer
);
7100 Lisp_Object coding_system
= Qlatin_1
;
7102 /* Event will be modified. */
7103 XKeyEvent xkey
= event
->xkey
;
7106 /* Don't pass keys to GTK. A Tab will shift focus to the
7107 tool bar in GTK 2.4. Keys will still go to menus and
7108 dialogs because in that case popup_activated is nonzero
7110 *finish
= X_EVENT_DROP
;
7113 xkey
.state
|= x_emacs_to_x_modifiers (FRAME_DISPLAY_INFO (f
),
7114 extra_keyboard_modifiers
);
7115 modifiers
= xkey
.state
;
7117 /* This will have to go some day... */
7119 /* make_lispy_event turns chars into control chars.
7120 Don't do it here because XLookupString is too eager. */
7121 xkey
.state
&= ~ControlMask
;
7122 xkey
.state
&= ~(dpyinfo
->meta_mod_mask
7123 | dpyinfo
->super_mod_mask
7124 | dpyinfo
->hyper_mod_mask
7125 | dpyinfo
->alt_mod_mask
);
7127 /* In case Meta is ComposeCharacter,
7128 clear its status. According to Markus Ehrnsperger
7129 Markus.Ehrnsperger@lehrstuhl-bross.physik.uni-muenchen.de
7130 this enables ComposeCharacter to work whether or
7131 not it is combined with Meta. */
7132 if (modifiers
& dpyinfo
->meta_mod_mask
)
7133 memset (&compose_status
, 0, sizeof (compose_status
));
7138 Status status_return
;
7140 coding_system
= Vlocale_coding_system
;
7141 nbytes
= XmbLookupString (FRAME_XIC (f
),
7142 &xkey
, (char *) copy_bufptr
,
7143 copy_bufsiz
, &keysym
,
7145 if (status_return
== XBufferOverflow
)
7147 copy_bufsiz
= nbytes
+ 1;
7148 copy_bufptr
= alloca (copy_bufsiz
);
7149 nbytes
= XmbLookupString (FRAME_XIC (f
),
7150 &xkey
, (char *) copy_bufptr
,
7151 copy_bufsiz
, &keysym
,
7154 /* Xutf8LookupString is a new but already deprecated interface. -stef */
7155 if (status_return
== XLookupNone
)
7157 else if (status_return
== XLookupChars
)
7162 else if (status_return
!= XLookupKeySym
7163 && status_return
!= XLookupBoth
)
7167 nbytes
= XLookupString (&xkey
, (char *) copy_bufptr
,
7168 copy_bufsiz
, &keysym
,
7171 nbytes
= XLookupString (&xkey
, (char *) copy_bufptr
,
7172 copy_bufsiz
, &keysym
,
7176 /* If not using XIM/XIC, and a compose sequence is in progress,
7177 we break here. Otherwise, chars_matched is always 0. */
7178 if (compose_status
.chars_matched
> 0 && nbytes
== 0)
7181 memset (&compose_status
, 0, sizeof (compose_status
));
7182 orig_keysym
= keysym
;
7184 /* Common for all keysym input events. */
7185 XSETFRAME (inev
.ie
.frame_or_window
, f
);
7187 = x_x_to_emacs_modifiers (FRAME_DISPLAY_INFO (f
), modifiers
);
7188 inev
.ie
.timestamp
= xkey
.time
;
7190 /* First deal with keysyms which have defined
7191 translations to characters. */
7192 if (keysym
>= 32 && keysym
< 128)
7193 /* Avoid explicitly decoding each ASCII character. */
7195 inev
.ie
.kind
= ASCII_KEYSTROKE_EVENT
;
7196 inev
.ie
.code
= keysym
;
7200 /* Keysyms directly mapped to Unicode characters. */
7201 if (keysym
>= 0x01000000 && keysym
<= 0x0110FFFF)
7203 if (keysym
< 0x01000080)
7204 inev
.ie
.kind
= ASCII_KEYSTROKE_EVENT
;
7206 inev
.ie
.kind
= MULTIBYTE_CHAR_KEYSTROKE_EVENT
;
7207 inev
.ie
.code
= keysym
& 0xFFFFFF;
7211 /* Now non-ASCII. */
7212 if (HASH_TABLE_P (Vx_keysym_table
)
7213 && (c
= Fgethash (make_number (keysym
),
7218 inev
.ie
.kind
= (SINGLE_BYTE_CHAR_P (XFASTINT (c
))
7219 ? ASCII_KEYSTROKE_EVENT
7220 : MULTIBYTE_CHAR_KEYSTROKE_EVENT
);
7221 inev
.ie
.code
= XFASTINT (c
);
7225 /* Random non-modifier sorts of keysyms. */
7226 if (((keysym
>= XK_BackSpace
&& keysym
<= XK_Escape
)
7227 || keysym
== XK_Delete
7228 #ifdef XK_ISO_Left_Tab
7229 || (keysym
>= XK_ISO_Left_Tab
7230 && keysym
<= XK_ISO_Enter
)
7232 || IsCursorKey (keysym
) /* 0xff50 <= x < 0xff60 */
7233 || IsMiscFunctionKey (keysym
) /* 0xff60 <= x < VARIES */
7235 /* This recognizes the "extended function
7236 keys". It seems there's no cleaner way.
7237 Test IsModifierKey to avoid handling
7238 mode_switch incorrectly. */
7239 || (XK_Select
<= keysym
&& keysym
< XK_KP_Space
)
7241 #ifdef XK_dead_circumflex
7242 || orig_keysym
== XK_dead_circumflex
7244 #ifdef XK_dead_grave
7245 || orig_keysym
== XK_dead_grave
7247 #ifdef XK_dead_tilde
7248 || orig_keysym
== XK_dead_tilde
7250 #ifdef XK_dead_diaeresis
7251 || orig_keysym
== XK_dead_diaeresis
7253 #ifdef XK_dead_macron
7254 || orig_keysym
== XK_dead_macron
7256 #ifdef XK_dead_degree
7257 || orig_keysym
== XK_dead_degree
7259 #ifdef XK_dead_acute
7260 || orig_keysym
== XK_dead_acute
7262 #ifdef XK_dead_cedilla
7263 || orig_keysym
== XK_dead_cedilla
7265 #ifdef XK_dead_breve
7266 || orig_keysym
== XK_dead_breve
7268 #ifdef XK_dead_ogonek
7269 || orig_keysym
== XK_dead_ogonek
7271 #ifdef XK_dead_caron
7272 || orig_keysym
== XK_dead_caron
7274 #ifdef XK_dead_doubleacute
7275 || orig_keysym
== XK_dead_doubleacute
7277 #ifdef XK_dead_abovedot
7278 || orig_keysym
== XK_dead_abovedot
7280 || IsKeypadKey (keysym
) /* 0xff80 <= x < 0xffbe */
7281 || IsFunctionKey (keysym
) /* 0xffbe <= x < 0xffe1 */
7282 /* Any "vendor-specific" key is ok. */
7283 || (orig_keysym
& (1 << 28))
7284 || (keysym
!= NoSymbol
&& nbytes
== 0))
7285 && ! (IsModifierKey (orig_keysym
)
7286 /* The symbols from XK_ISO_Lock
7287 to XK_ISO_Last_Group_Lock
7288 don't have real modifiers but
7289 should be treated similarly to
7290 Mode_switch by Emacs. */
7291 #if defined XK_ISO_Lock && defined XK_ISO_Last_Group_Lock
7292 || (XK_ISO_Lock
<= orig_keysym
7293 && orig_keysym
<= XK_ISO_Last_Group_Lock
)
7297 STORE_KEYSYM_FOR_DEBUG (keysym
);
7298 /* make_lispy_event will convert this to a symbolic
7300 inev
.ie
.kind
= NON_ASCII_KEYSTROKE_EVENT
;
7301 inev
.ie
.code
= keysym
;
7305 { /* Raw bytes, not keysym. */
7309 for (i
= 0, nchars
= 0; i
< nbytes
; i
++)
7311 if (ASCII_CHAR_P (copy_bufptr
[i
]))
7313 STORE_KEYSYM_FOR_DEBUG (copy_bufptr
[i
]);
7316 if (nchars
< nbytes
)
7318 /* Decode the input data. */
7320 /* The input should be decoded with `coding_system'
7321 which depends on which X*LookupString function
7322 we used just above and the locale. */
7323 setup_coding_system (coding_system
, &coding
);
7324 coding
.src_multibyte
= 0;
7325 coding
.dst_multibyte
= 1;
7326 /* The input is converted to events, thus we can't
7327 handle composition. Anyway, there's no XIM that
7328 gives us composition information. */
7329 coding
.common_flags
&= ~CODING_ANNOTATION_MASK
;
7331 SAFE_NALLOCA (coding
.destination
, MAX_MULTIBYTE_LENGTH
,
7333 coding
.dst_bytes
= MAX_MULTIBYTE_LENGTH
* nbytes
;
7334 coding
.mode
|= CODING_MODE_LAST_BLOCK
;
7335 decode_coding_c_string (&coding
, copy_bufptr
, nbytes
, Qnil
);
7336 nbytes
= coding
.produced
;
7337 nchars
= coding
.produced_char
;
7338 copy_bufptr
= coding
.destination
;
7341 /* Convert the input data to a sequence of
7342 character events. */
7343 for (i
= 0; i
< nbytes
; i
+= len
)
7346 if (nchars
== nbytes
)
7347 ch
= copy_bufptr
[i
], len
= 1;
7349 ch
= STRING_CHAR_AND_LENGTH (copy_bufptr
+ i
, len
);
7350 inev
.ie
.kind
= (SINGLE_BYTE_CHAR_P (ch
)
7351 ? ASCII_KEYSTROKE_EVENT
7352 : MULTIBYTE_CHAR_KEYSTROKE_EVENT
);
7354 kbd_buffer_store_event_hold (&inev
.ie
, hold_quit
);
7359 inev
.ie
.kind
= NO_EVENT
; /* Already stored above. */
7361 if (keysym
== NoSymbol
)
7364 /* FIXME: check side effects and remove this. */
7365 ((XEvent
*) event
)->xkey
= xkey
;
7369 /* Don't dispatch this event since XtDispatchEvent calls
7370 XFilterEvent, and two calls in a row may freeze the
7378 dpyinfo
->last_user_time
= event
->xkey
.time
;
7380 /* Don't dispatch this event since XtDispatchEvent calls
7381 XFilterEvent, and two calls in a row may freeze the
7389 dpyinfo
->last_user_time
= event
->xcrossing
.time
;
7390 x_detect_focus_change (dpyinfo
, any
, event
, &inev
.ie
);
7394 if (f
&& x_mouse_click_focus_ignore_position
)
7395 ignore_next_mouse_click_timeout
= event
->xmotion
.time
+ 200;
7397 /* EnterNotify counts as mouse movement,
7398 so update things that depend on mouse position. */
7399 if (f
&& !f
->output_data
.x
->hourglass_p
)
7400 note_mouse_movement (f
, &event
->xmotion
);
7402 /* We may get an EnterNotify on the buttons in the toolbar. In that
7403 case we moved out of any highlighted area and need to note this. */
7404 if (!f
&& dpyinfo
->last_mouse_glyph_frame
)
7405 note_mouse_movement (dpyinfo
->last_mouse_glyph_frame
, &event
->xmotion
);
7410 x_detect_focus_change (dpyinfo
, any
, event
, &inev
.ie
);
7414 dpyinfo
->last_user_time
= event
->xcrossing
.time
;
7415 x_detect_focus_change (dpyinfo
, any
, event
, &inev
.ie
);
7417 f
= x_top_window_to_frame (dpyinfo
, event
->xcrossing
.window
);
7420 if (f
== hlinfo
->mouse_face_mouse_frame
)
7422 /* If we move outside the frame, then we're
7423 certainly no longer on any text in the frame. */
7424 clear_mouse_face (hlinfo
);
7425 hlinfo
->mouse_face_mouse_frame
= 0;
7428 /* Generate a nil HELP_EVENT to cancel a help-echo.
7429 Do it only if there's something to cancel.
7430 Otherwise, the startup message is cleared when
7431 the mouse leaves the frame. */
7432 if (any_help_event_p
)
7436 /* See comment in EnterNotify above */
7437 else if (dpyinfo
->last_mouse_glyph_frame
)
7438 note_mouse_movement (dpyinfo
->last_mouse_glyph_frame
, &event
->xmotion
);
7443 x_detect_focus_change (dpyinfo
, any
, event
, &inev
.ie
);
7448 dpyinfo
->last_user_time
= event
->xmotion
.time
;
7449 previous_help_echo_string
= help_echo_string
;
7450 help_echo_string
= Qnil
;
7452 f
= (x_mouse_grabbed (dpyinfo
) ? dpyinfo
->last_mouse_frame
7453 : x_window_to_frame (dpyinfo
, event
->xmotion
.window
));
7455 if (hlinfo
->mouse_face_hidden
)
7457 hlinfo
->mouse_face_hidden
= 0;
7458 clear_mouse_face (hlinfo
);
7462 if (f
&& xg_event_is_for_scrollbar (f
, event
))
7468 /* Generate SELECT_WINDOW_EVENTs when needed.
7469 Don't let popup menus influence things (bug#1261). */
7470 if (!NILP (Vmouse_autoselect_window
) && !popup_activated ())
7472 static Lisp_Object last_mouse_window
;
7473 Lisp_Object window
= window_from_coordinates
7474 (f
, event
->xmotion
.x
, event
->xmotion
.y
, 0, 0);
7476 /* Window will be selected only when it is not selected now and
7477 last mouse movement event was not in it. Minibuffer window
7478 will be selected only when it is active. */
7479 if (WINDOWP (window
)
7480 && !EQ (window
, last_mouse_window
)
7481 && !EQ (window
, selected_window
)
7482 /* For click-to-focus window managers
7483 create event iff we don't leave the
7485 && (focus_follows_mouse
7486 || (EQ (XWINDOW (window
)->frame
,
7487 XWINDOW (selected_window
)->frame
))))
7489 inev
.ie
.kind
= SELECT_WINDOW_EVENT
;
7490 inev
.ie
.frame_or_window
= window
;
7492 /* Remember the last window where we saw the mouse. */
7493 last_mouse_window
= window
;
7495 if (!note_mouse_movement (f
, &event
->xmotion
))
7496 help_echo_string
= previous_help_echo_string
;
7500 #ifndef USE_TOOLKIT_SCROLL_BARS
7501 struct scroll_bar
*bar
7502 = x_window_to_scroll_bar (event
->xmotion
.display
,
7503 event
->xmotion
.window
, 2);
7506 x_scroll_bar_note_movement (bar
, &event
->xmotion
);
7507 #endif /* USE_TOOLKIT_SCROLL_BARS */
7509 /* If we move outside the frame, then we're
7510 certainly no longer on any text in the frame. */
7511 clear_mouse_face (hlinfo
);
7514 /* If the contents of the global variable help_echo_string
7515 has changed, generate a HELP_EVENT. */
7516 if (!NILP (help_echo_string
)
7517 || !NILP (previous_help_echo_string
))
7522 case ConfigureNotify
:
7523 f
= x_top_window_to_frame (dpyinfo
, event
->xconfigure
.window
);
7527 && event
->xconfigure
.window
== FRAME_X_WINDOW (f
))
7529 xg_frame_resized (f
, event
->xconfigure
.width
,
7530 event
->xconfigure
.height
);
7536 x_net_wm_state (f
, event
->xconfigure
.window
);
7538 #ifndef USE_X_TOOLKIT
7540 int width
= FRAME_PIXEL_TO_TEXT_WIDTH (f
, event
->xconfigure
.width
);
7541 int height
= FRAME_PIXEL_TO_TEXT_HEIGHT (f
, event
->xconfigure
.height
);
7543 /* In the toolkit version, change_frame_size
7544 is called by the code that handles resizing
7545 of the EmacsFrame widget. */
7547 /* Even if the number of character rows and columns has
7548 not changed, the font size may have changed, so we need
7549 to check the pixel dimensions as well. */
7550 if (width
!= FRAME_TEXT_WIDTH (f
)
7551 || height
!= FRAME_TEXT_HEIGHT (f
)
7552 || event
->xconfigure
.width
!= FRAME_PIXEL_WIDTH (f
)
7553 || event
->xconfigure
.height
!= FRAME_PIXEL_HEIGHT (f
))
7555 change_frame_size (f
, width
, height
, 0, 1, 0, 1);
7556 x_clear_under_internal_border (f
);
7557 SET_FRAME_GARBAGED (f
);
7558 cancel_mouse_face (f
);
7561 /** FRAME_PIXEL_WIDTH (f) = event->xconfigure.width; **/
7562 /** FRAME_PIXEL_HEIGHT (f) = event->xconfigure.height; **/
7563 #endif /* not USE_GTK */
7567 /* GTK creates windows but doesn't map them.
7568 Only get real positions when mapped. */
7569 if (FRAME_GTK_OUTER_WIDGET (f
)
7570 && gtk_widget_get_mapped (FRAME_GTK_OUTER_WIDGET (f
)))
7572 x_real_positions (f
, &f
->left_pos
, &f
->top_pos
);
7575 if (FRAME_XIC (f
) && (FRAME_XIC_STYLE (f
) & XIMStatusArea
))
7576 xic_set_statusarea (f
);
7585 /* If we decide we want to generate an event to be seen
7586 by the rest of Emacs, we put it here. */
7587 bool tool_bar_p
= 0;
7589 memset (&compose_status
, 0, sizeof (compose_status
));
7590 dpyinfo
->last_mouse_glyph_frame
= NULL
;
7591 dpyinfo
->last_user_time
= event
->xbutton
.time
;
7593 f
= (x_mouse_grabbed (dpyinfo
) ? dpyinfo
->last_mouse_frame
7594 : x_window_to_frame (dpyinfo
, event
->xbutton
.window
));
7597 if (f
&& xg_event_is_for_scrollbar (f
, event
))
7602 #if ! defined (USE_GTK)
7603 /* Is this in the tool-bar? */
7604 if (WINDOWP (f
->tool_bar_window
)
7605 && WINDOW_TOTAL_LINES (XWINDOW (f
->tool_bar_window
)))
7608 int x
= event
->xbutton
.x
;
7609 int y
= event
->xbutton
.y
;
7611 window
= window_from_coordinates (f
, x
, y
, 0, 1);
7612 tool_bar_p
= EQ (window
, f
->tool_bar_window
);
7614 if (tool_bar_p
&& event
->xbutton
.button
< 4)
7615 handle_tool_bar_click
7616 (f
, x
, y
, event
->xbutton
.type
== ButtonPress
,
7617 x_x_to_emacs_modifiers (dpyinfo
, event
->xbutton
.state
));
7619 #endif /* !USE_GTK */
7622 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
7623 if (! popup_activated ())
7626 if (ignore_next_mouse_click_timeout
)
7628 if (event
->type
== ButtonPress
7629 && event
->xbutton
.time
> ignore_next_mouse_click_timeout
)
7631 ignore_next_mouse_click_timeout
= 0;
7632 construct_mouse_click (&inev
.ie
, &event
->xbutton
, f
);
7634 if (event
->type
== ButtonRelease
)
7635 ignore_next_mouse_click_timeout
= 0;
7638 construct_mouse_click (&inev
.ie
, &event
->xbutton
, f
);
7640 if (FRAME_X_EMBEDDED_P (f
))
7641 xembed_send_message (f
, event
->xbutton
.time
,
7642 XEMBED_REQUEST_FOCUS
, 0, 0, 0);
7646 struct scroll_bar
*bar
7647 = x_window_to_scroll_bar (event
->xbutton
.display
,
7648 event
->xbutton
.window
, 2);
7650 #ifdef USE_TOOLKIT_SCROLL_BARS
7651 /* Make the "Ctrl-Mouse-2 splits window" work for toolkit
7653 if (bar
&& event
->xbutton
.state
& ControlMask
)
7655 x_scroll_bar_handle_click (bar
, event
, &inev
.ie
);
7656 *finish
= X_EVENT_DROP
;
7658 #else /* not USE_TOOLKIT_SCROLL_BARS */
7660 x_scroll_bar_handle_click (bar
, event
, &inev
.ie
);
7661 #endif /* not USE_TOOLKIT_SCROLL_BARS */
7664 if (event
->type
== ButtonPress
)
7666 dpyinfo
->grabbed
|= (1 << event
->xbutton
.button
);
7667 dpyinfo
->last_mouse_frame
= f
;
7668 #if ! defined (USE_GTK)
7669 if (f
&& !tool_bar_p
)
7670 f
->last_tool_bar_item
= -1;
7671 #endif /* not USE_GTK */
7674 dpyinfo
->grabbed
&= ~(1 << event
->xbutton
.button
);
7676 /* Ignore any mouse motion that happened before this event;
7677 any subsequent mouse-movement Emacs events should reflect
7678 only motion after the ButtonPress/Release. */
7682 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
7683 f
= x_menubar_window_to_frame (dpyinfo
, event
);
7684 /* For a down-event in the menu bar,
7685 don't pass it to Xt right now.
7686 Instead, save it away
7687 and we will pass it to Xt from kbd_buffer_get_event.
7688 That way, we can run some Lisp code first. */
7689 if (! popup_activated ()
7691 /* Gtk+ menus only react to the first three buttons. */
7692 && event
->xbutton
.button
< 3
7694 && f
&& event
->type
== ButtonPress
7695 /* Verify the event is really within the menu bar
7696 and not just sent to it due to grabbing. */
7697 && event
->xbutton
.x
>= 0
7698 && event
->xbutton
.x
< FRAME_PIXEL_WIDTH (f
)
7699 && event
->xbutton
.y
>= 0
7700 && event
->xbutton
.y
< FRAME_MENUBAR_HEIGHT (f
)
7701 && event
->xbutton
.same_screen
)
7703 if (!f
->output_data
.x
->saved_menu_event
)
7704 f
->output_data
.x
->saved_menu_event
= xmalloc (sizeof *event
);
7705 *f
->output_data
.x
->saved_menu_event
= *event
;
7706 inev
.ie
.kind
= MENU_BAR_ACTIVATE_EVENT
;
7707 XSETFRAME (inev
.ie
.frame_or_window
, f
);
7708 *finish
= X_EVENT_DROP
;
7712 #endif /* USE_X_TOOLKIT || USE_GTK */
7716 case CirculateNotify
:
7719 case CirculateRequest
:
7722 case VisibilityNotify
:
7726 /* Someone has changed the keyboard mapping - update the
7728 switch (event
->xmapping
.request
)
7730 case MappingModifier
:
7731 x_find_modifier_meanings (dpyinfo
);
7732 /* This is meant to fall through. */
7733 case MappingKeyboard
:
7734 XRefreshKeyboardMapping ((XMappingEvent
*) &event
->xmapping
);
7739 xft_settings_event (dpyinfo
, event
);
7744 #ifdef USE_X_TOOLKIT
7746 if (*finish
!= X_EVENT_DROP
)
7747 XtDispatchEvent ((XEvent
*) event
);
7749 #endif /* USE_X_TOOLKIT */
7754 if (inev
.ie
.kind
!= NO_EVENT
)
7756 kbd_buffer_store_event_hold (&inev
.ie
, hold_quit
);
7761 && !(hold_quit
&& hold_quit
->kind
!= NO_EVENT
))
7766 XSETFRAME (frame
, f
);
7772 any_help_event_p
= 1;
7773 gen_help_event (help_echo_string
, frame
, help_echo_window
,
7774 help_echo_object
, help_echo_pos
);
7778 help_echo_string
= Qnil
;
7779 gen_help_event (Qnil
, frame
, Qnil
, Qnil
, 0);
7788 /* Handles the XEvent EVENT on display DISPLAY.
7789 This is used for event loops outside the normal event handling,
7790 i.e. looping while a popup menu or a dialog is posted.
7792 Returns the value handle_one_xevent sets in the finish argument. */
7794 x_dispatch_event (XEvent
*event
, Display
*display
)
7796 struct x_display_info
*dpyinfo
;
7797 int finish
= X_EVENT_NORMAL
;
7799 dpyinfo
= x_display_info_for_display (display
);
7802 handle_one_xevent (dpyinfo
, event
, &finish
, 0);
7807 /* Read events coming from the X server.
7808 Return as soon as there are no more events to be read.
7810 Return the number of characters stored into the buffer,
7811 thus pretending to be `read' (except the characters we store
7812 in the keyboard buffer can be multibyte, so are not necessarily
7816 XTread_socket (struct terminal
*terminal
, struct input_event
*hold_quit
)
7819 int event_found
= 0;
7820 struct x_display_info
*dpyinfo
= terminal
->display_info
.x
;
7824 /* For debugging, this gives a way to fake an I/O error. */
7825 if (dpyinfo
== XTread_socket_fake_io_error
)
7827 XTread_socket_fake_io_error
= 0;
7828 x_io_error_quitter (dpyinfo
->display
);
7832 while (XPending (dpyinfo
->display
))
7837 XNextEvent (dpyinfo
->display
, &event
);
7840 /* Filter events for the current X input method. */
7841 if (x_filter_event (dpyinfo
, &event
))
7846 count
+= handle_one_xevent (dpyinfo
, &event
, &finish
, hold_quit
);
7848 if (finish
== X_EVENT_GOTO_OUT
)
7854 /* For GTK we must use the GTK event loop. But XEvents gets passed
7855 to our filter function above, and then to the big event switch.
7856 We use a bunch of globals to communicate with our filter function,
7857 that is kind of ugly, but it works.
7859 There is no way to do one display at the time, GTK just does events
7860 from all displays. */
7862 while (gtk_events_pending ())
7864 current_count
= count
;
7865 current_hold_quit
= hold_quit
;
7867 gtk_main_iteration ();
7869 count
= current_count
;
7871 current_hold_quit
= 0;
7873 if (current_finish
== X_EVENT_GOTO_OUT
)
7876 #endif /* USE_GTK */
7878 /* On some systems, an X bug causes Emacs to get no more events
7879 when the window is destroyed. Detect that. (1994.) */
7882 /* Emacs and the X Server eats up CPU time if XNoOp is done every time.
7883 One XNOOP in 100 loops will make Emacs terminate.
7884 B. Bretthauer, 1994 */
7886 if (x_noop_count
>= 100)
7890 if (next_noop_dpyinfo
== 0)
7891 next_noop_dpyinfo
= x_display_list
;
7893 XNoOp (next_noop_dpyinfo
->display
);
7895 /* Each time we get here, cycle through the displays now open. */
7896 next_noop_dpyinfo
= next_noop_dpyinfo
->next
;
7900 /* If the focus was just given to an auto-raising frame,
7901 raise it now. FIXME: handle more than one such frame. */
7902 if (dpyinfo
->x_pending_autoraise_frame
)
7904 x_raise_frame (dpyinfo
->x_pending_autoraise_frame
);
7905 dpyinfo
->x_pending_autoraise_frame
= NULL
;
7916 /***********************************************************************
7918 ***********************************************************************/
7920 /* Set clipping for output in glyph row ROW. W is the window in which
7921 we operate. GC is the graphics context to set clipping in.
7923 ROW may be a text row or, e.g., a mode line. Text rows must be
7924 clipped to the interior of the window dedicated to text display,
7925 mode lines must be clipped to the whole window. */
7928 x_clip_to_row (struct window
*w
, struct glyph_row
*row
,
7929 enum glyph_row_area area
, GC gc
)
7931 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
7932 XRectangle clip_rect
;
7933 int window_x
, window_y
, window_width
;
7935 window_box (w
, area
, &window_x
, &window_y
, &window_width
, 0);
7937 clip_rect
.x
= window_x
;
7938 clip_rect
.y
= WINDOW_TO_FRAME_PIXEL_Y (w
, max (0, row
->y
));
7939 clip_rect
.y
= max (clip_rect
.y
, window_y
);
7940 clip_rect
.width
= window_width
;
7941 clip_rect
.height
= row
->visible_height
;
7943 XSetClipRectangles (FRAME_X_DISPLAY (f
), gc
, 0, 0, &clip_rect
, 1, Unsorted
);
7947 /* Draw a hollow box cursor on window W in glyph row ROW. */
7950 x_draw_hollow_cursor (struct window
*w
, struct glyph_row
*row
)
7952 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
7953 struct x_display_info
*dpyinfo
= FRAME_DISPLAY_INFO (f
);
7954 Display
*dpy
= FRAME_X_DISPLAY (f
);
7957 struct glyph
*cursor_glyph
;
7960 /* Get the glyph the cursor is on. If we can't tell because
7961 the current matrix is invalid or such, give up. */
7962 cursor_glyph
= get_phys_cursor_glyph (w
);
7963 if (cursor_glyph
== NULL
)
7966 /* Compute frame-relative coordinates for phys cursor. */
7967 get_phys_cursor_geometry (w
, row
, cursor_glyph
, &x
, &y
, &h
);
7968 wd
= w
->phys_cursor_width
;
7970 /* The foreground of cursor_gc is typically the same as the normal
7971 background color, which can cause the cursor box to be invisible. */
7972 xgcv
.foreground
= f
->output_data
.x
->cursor_pixel
;
7973 if (dpyinfo
->scratch_cursor_gc
)
7974 XChangeGC (dpy
, dpyinfo
->scratch_cursor_gc
, GCForeground
, &xgcv
);
7976 dpyinfo
->scratch_cursor_gc
= XCreateGC (dpy
, FRAME_X_WINDOW (f
),
7977 GCForeground
, &xgcv
);
7978 gc
= dpyinfo
->scratch_cursor_gc
;
7980 /* Set clipping, draw the rectangle, and reset clipping again. */
7981 x_clip_to_row (w
, row
, TEXT_AREA
, gc
);
7982 XDrawRectangle (dpy
, FRAME_X_WINDOW (f
), gc
, x
, y
, wd
, h
- 1);
7983 XSetClipMask (dpy
, gc
, None
);
7987 /* Draw a bar cursor on window W in glyph row ROW.
7989 Implementation note: One would like to draw a bar cursor with an
7990 angle equal to the one given by the font property XA_ITALIC_ANGLE.
7991 Unfortunately, I didn't find a font yet that has this property set.
7995 x_draw_bar_cursor (struct window
*w
, struct glyph_row
*row
, int width
, enum text_cursor_kinds kind
)
7997 struct frame
*f
= XFRAME (w
->frame
);
7998 struct glyph
*cursor_glyph
;
8000 /* If cursor is out of bounds, don't draw garbage. This can happen
8001 in mini-buffer windows when switching between echo area glyphs
8003 cursor_glyph
= get_phys_cursor_glyph (w
);
8004 if (cursor_glyph
== NULL
)
8007 /* If on an image, draw like a normal cursor. That's usually better
8008 visible than drawing a bar, esp. if the image is large so that
8009 the bar might not be in the window. */
8010 if (cursor_glyph
->type
== IMAGE_GLYPH
)
8012 struct glyph_row
*r
;
8013 r
= MATRIX_ROW (w
->current_matrix
, w
->phys_cursor
.vpos
);
8014 draw_phys_cursor_glyph (w
, r
, DRAW_CURSOR
);
8018 Display
*dpy
= FRAME_X_DISPLAY (f
);
8019 Window window
= FRAME_X_WINDOW (f
);
8020 GC gc
= FRAME_DISPLAY_INFO (f
)->scratch_cursor_gc
;
8021 unsigned long mask
= GCForeground
| GCBackground
| GCGraphicsExposures
;
8022 struct face
*face
= FACE_FROM_ID (f
, cursor_glyph
->face_id
);
8025 /* If the glyph's background equals the color we normally draw
8026 the bars cursor in, the bar cursor in its normal color is
8027 invisible. Use the glyph's foreground color instead in this
8028 case, on the assumption that the glyph's colors are chosen so
8029 that the glyph is legible. */
8030 if (face
->background
== f
->output_data
.x
->cursor_pixel
)
8031 xgcv
.background
= xgcv
.foreground
= face
->foreground
;
8033 xgcv
.background
= xgcv
.foreground
= f
->output_data
.x
->cursor_pixel
;
8034 xgcv
.graphics_exposures
= 0;
8037 XChangeGC (dpy
, gc
, mask
, &xgcv
);
8040 gc
= XCreateGC (dpy
, window
, mask
, &xgcv
);
8041 FRAME_DISPLAY_INFO (f
)->scratch_cursor_gc
= gc
;
8044 x_clip_to_row (w
, row
, TEXT_AREA
, gc
);
8046 if (kind
== BAR_CURSOR
)
8048 int x
= WINDOW_TEXT_TO_FRAME_PIXEL_X (w
, w
->phys_cursor
.x
);
8051 width
= FRAME_CURSOR_WIDTH (f
);
8052 width
= min (cursor_glyph
->pixel_width
, width
);
8054 w
->phys_cursor_width
= width
;
8056 /* If the character under cursor is R2L, draw the bar cursor
8057 on the right of its glyph, rather than on the left. */
8058 if ((cursor_glyph
->resolved_level
& 1) != 0)
8059 x
+= cursor_glyph
->pixel_width
- width
;
8061 XFillRectangle (dpy
, window
, gc
, x
,
8062 WINDOW_TO_FRAME_PIXEL_Y (w
, w
->phys_cursor
.y
),
8063 width
, row
->height
);
8067 int dummy_x
, dummy_y
, dummy_h
;
8070 width
= row
->height
;
8072 width
= min (row
->height
, width
);
8074 get_phys_cursor_geometry (w
, row
, cursor_glyph
, &dummy_x
,
8075 &dummy_y
, &dummy_h
);
8077 XFillRectangle (dpy
, window
, gc
,
8078 WINDOW_TEXT_TO_FRAME_PIXEL_X (w
, w
->phys_cursor
.x
),
8079 WINDOW_TO_FRAME_PIXEL_Y (w
, w
->phys_cursor
.y
+
8080 row
->height
- width
),
8081 w
->phys_cursor_width
, width
);
8084 XSetClipMask (dpy
, gc
, None
);
8089 /* RIF: Define cursor CURSOR on frame F. */
8092 x_define_frame_cursor (struct frame
*f
, Cursor cursor
)
8094 if (!f
->pointer_invisible
8095 && f
->output_data
.x
->current_cursor
!= cursor
)
8096 XDefineCursor (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), cursor
);
8097 f
->output_data
.x
->current_cursor
= cursor
;
8101 /* RIF: Clear area on frame F. */
8104 x_clear_frame_area (struct frame
*f
, int x
, int y
, int width
, int height
)
8106 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), x
, y
, width
, height
);
8108 /* Must queue a redraw, because scroll bars might have been cleared. */
8109 if (FRAME_GTK_WIDGET (f
))
8110 gtk_widget_queue_draw (FRAME_GTK_WIDGET (f
));
8115 /* RIF: Draw cursor on window W. */
8118 x_draw_window_cursor (struct window
*w
, struct glyph_row
*glyph_row
, int x
,
8119 int y
, enum text_cursor_kinds cursor_type
,
8120 int cursor_width
, bool on_p
, bool active_p
)
8122 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
8126 w
->phys_cursor_type
= cursor_type
;
8127 w
->phys_cursor_on_p
= 1;
8129 if (glyph_row
->exact_window_width_line_p
8130 && (glyph_row
->reversed_p
8131 ? (w
->phys_cursor
.hpos
< 0)
8132 : (w
->phys_cursor
.hpos
>= glyph_row
->used
[TEXT_AREA
])))
8134 glyph_row
->cursor_in_fringe_p
= 1;
8135 draw_fringe_bitmap (w
, glyph_row
, glyph_row
->reversed_p
);
8139 switch (cursor_type
)
8141 case HOLLOW_BOX_CURSOR
:
8142 x_draw_hollow_cursor (w
, glyph_row
);
8145 case FILLED_BOX_CURSOR
:
8146 draw_phys_cursor_glyph (w
, glyph_row
, DRAW_CURSOR
);
8150 x_draw_bar_cursor (w
, glyph_row
, cursor_width
, BAR_CURSOR
);
8154 x_draw_bar_cursor (w
, glyph_row
, cursor_width
, HBAR_CURSOR
);
8158 w
->phys_cursor_width
= 0;
8167 if (w
== XWINDOW (f
->selected_window
))
8168 if (FRAME_XIC (f
) && (FRAME_XIC_STYLE (f
) & XIMPreeditPosition
))
8169 xic_set_preeditarea (w
, x
, y
);
8173 XFlush (FRAME_X_DISPLAY (f
));
8179 /* Make the x-window of frame F use the gnu icon bitmap. */
8182 x_bitmap_icon (struct frame
*f
, Lisp_Object file
)
8184 ptrdiff_t bitmap_id
;
8186 if (FRAME_X_WINDOW (f
) == 0)
8189 /* Free up our existing icon bitmap and mask if any. */
8190 if (f
->output_data
.x
->icon_bitmap
> 0)
8191 x_destroy_bitmap (f
, f
->output_data
.x
->icon_bitmap
);
8192 f
->output_data
.x
->icon_bitmap
= 0;
8197 /* Use gtk_window_set_icon_from_file () if available,
8198 It's not restricted to bitmaps */
8199 if (xg_set_icon (f
, file
))
8201 #endif /* USE_GTK */
8202 bitmap_id
= x_create_bitmap_from_file (f
, file
);
8203 x_create_bitmap_mask (f
, bitmap_id
);
8207 /* Create the GNU bitmap and mask if necessary. */
8208 if (FRAME_DISPLAY_INFO (f
)->icon_bitmap_id
< 0)
8214 if (FRAME_DISPLAY_INFO (f
)->icon_bitmap_id
== -2
8215 || xg_set_icon (f
, xg_default_icon_file
)
8216 || xg_set_icon_from_xpm_data (f
, gnu_xpm_bits
))
8218 FRAME_DISPLAY_INFO (f
)->icon_bitmap_id
= -2;
8222 #elif defined (HAVE_XPM) && defined (HAVE_X_WINDOWS)
8224 rc
= x_create_bitmap_from_xpm_data (f
, gnu_xpm_bits
);
8226 FRAME_DISPLAY_INFO (f
)->icon_bitmap_id
= rc
;
8230 /* If all else fails, use the (black and white) xbm image. */
8233 rc
= x_create_bitmap_from_data (f
, (char *) gnu_xbm_bits
,
8234 gnu_xbm_width
, gnu_xbm_height
);
8238 FRAME_DISPLAY_INFO (f
)->icon_bitmap_id
= rc
;
8239 x_create_bitmap_mask (f
, FRAME_DISPLAY_INFO (f
)->icon_bitmap_id
);
8243 /* The first time we create the GNU bitmap and mask,
8244 this increments the ref-count one extra time.
8245 As a result, the GNU bitmap and mask are never freed.
8246 That way, we don't have to worry about allocating it again. */
8247 x_reference_bitmap (f
, FRAME_DISPLAY_INFO (f
)->icon_bitmap_id
);
8249 bitmap_id
= FRAME_DISPLAY_INFO (f
)->icon_bitmap_id
;
8252 x_wm_set_icon_pixmap (f
, bitmap_id
);
8253 f
->output_data
.x
->icon_bitmap
= bitmap_id
;
8259 /* Make the x-window of frame F use a rectangle with text.
8260 Use ICON_NAME as the text. */
8263 x_text_icon (struct frame
*f
, const char *icon_name
)
8265 if (FRAME_X_WINDOW (f
) == 0)
8270 text
.value
= (unsigned char *) icon_name
;
8271 text
.encoding
= XA_STRING
;
8273 text
.nitems
= strlen (icon_name
);
8274 XSetWMIconName (FRAME_X_DISPLAY (f
), FRAME_OUTER_WINDOW (f
), &text
);
8277 if (f
->output_data
.x
->icon_bitmap
> 0)
8278 x_destroy_bitmap (f
, f
->output_data
.x
->icon_bitmap
);
8279 f
->output_data
.x
->icon_bitmap
= 0;
8280 x_wm_set_icon_pixmap (f
, 0);
8285 #define X_ERROR_MESSAGE_SIZE 200
8287 /* If non-nil, this should be a string.
8288 It means catch X errors and store the error message in this string.
8290 The reason we use a stack is that x_catch_error/x_uncatch_error can
8291 be called from a signal handler.
8294 struct x_error_message_stack
{
8295 char string
[X_ERROR_MESSAGE_SIZE
];
8297 struct x_error_message_stack
*prev
;
8299 static struct x_error_message_stack
*x_error_message
;
8301 /* An X error handler which stores the error message in
8302 *x_error_message. This is called from x_error_handler if
8303 x_catch_errors is in effect. */
8306 x_error_catcher (Display
*display
, XErrorEvent
*event
)
8308 XGetErrorText (display
, event
->error_code
,
8309 x_error_message
->string
,
8310 X_ERROR_MESSAGE_SIZE
);
8313 /* Begin trapping X errors for display DPY. Actually we trap X errors
8314 for all displays, but DPY should be the display you are actually
8317 After calling this function, X protocol errors no longer cause
8318 Emacs to exit; instead, they are recorded in the string
8319 stored in *x_error_message.
8321 Calling x_check_errors signals an Emacs error if an X error has
8322 occurred since the last call to x_catch_errors or x_check_errors.
8324 Calling x_uncatch_errors resumes the normal error handling. */
8327 x_catch_errors (Display
*dpy
)
8329 struct x_error_message_stack
*data
= xmalloc (sizeof *data
);
8331 /* Make sure any errors from previous requests have been dealt with. */
8335 data
->string
[0] = 0;
8336 data
->prev
= x_error_message
;
8337 x_error_message
= data
;
8340 /* Undo the last x_catch_errors call.
8341 DPY should be the display that was passed to x_catch_errors. */
8344 x_uncatch_errors (void)
8346 struct x_error_message_stack
*tmp
;
8350 /* The display may have been closed before this function is called.
8351 Check if it is still open before calling XSync. */
8352 if (x_display_info_for_display (x_error_message
->dpy
) != 0)
8353 XSync (x_error_message
->dpy
, False
);
8355 tmp
= x_error_message
;
8356 x_error_message
= x_error_message
->prev
;
8361 /* If any X protocol errors have arrived since the last call to
8362 x_catch_errors or x_check_errors, signal an Emacs error using
8363 sprintf (a buffer, FORMAT, the x error message text) as the text. */
8366 x_check_errors (Display
*dpy
, const char *format
)
8368 /* Make sure to catch any errors incurred so far. */
8371 if (x_error_message
->string
[0])
8373 char string
[X_ERROR_MESSAGE_SIZE
];
8374 memcpy (string
, x_error_message
->string
, X_ERROR_MESSAGE_SIZE
);
8375 x_uncatch_errors ();
8376 error (format
, string
);
8380 /* Nonzero if we had any X protocol errors
8381 since we did x_catch_errors on DPY. */
8384 x_had_errors_p (Display
*dpy
)
8386 /* Make sure to catch any errors incurred so far. */
8389 return x_error_message
->string
[0] != 0;
8392 /* Forget about any errors we have had, since we did x_catch_errors on DPY. */
8395 x_clear_errors (Display
*dpy
)
8397 x_error_message
->string
[0] = 0;
8400 #if 0 /* See comment in unwind_to_catch why calling this is a bad
8401 * idea. --lorentey */
8402 /* Close off all unclosed x_catch_errors calls. */
8405 x_fully_uncatch_errors (void)
8407 while (x_error_message
)
8408 x_uncatch_errors ();
8413 static unsigned int x_wire_count
;
8416 fprintf (stderr
, "Lib call: %d\n", ++x_wire_count
);
8421 /************************************************************************
8423 ************************************************************************/
8425 /* Error message passed to x_connection_closed. */
8427 static char *error_msg
;
8429 /* Handle the loss of connection to display DPY. ERROR_MESSAGE is
8430 the text of an error message that lead to the connection loss. */
8433 x_connection_closed (Display
*dpy
, const char *error_message
)
8435 struct x_display_info
*dpyinfo
= x_display_info_for_display (dpy
);
8436 Lisp_Object frame
, tail
;
8437 ptrdiff_t idx
= SPECPDL_INDEX ();
8439 error_msg
= alloca (strlen (error_message
) + 1);
8440 strcpy (error_msg
, error_message
);
8442 /* Inhibit redisplay while frames are being deleted. */
8443 specbind (Qinhibit_redisplay
, Qt
);
8447 /* Protect display from being closed when we delete the last
8449 dpyinfo
->reference_count
++;
8450 dpyinfo
->terminal
->reference_count
++;
8453 /* First delete frames whose mini-buffers are on frames
8454 that are on the dead display. */
8455 FOR_EACH_FRAME (tail
, frame
)
8457 Lisp_Object minibuf_frame
;
8459 = WINDOW_FRAME (XWINDOW (FRAME_MINIBUF_WINDOW (XFRAME (frame
))));
8460 if (FRAME_X_P (XFRAME (frame
))
8461 && FRAME_X_P (XFRAME (minibuf_frame
))
8462 && ! EQ (frame
, minibuf_frame
)
8463 && FRAME_DISPLAY_INFO (XFRAME (minibuf_frame
)) == dpyinfo
)
8464 delete_frame (frame
, Qnoelisp
);
8467 /* Now delete all remaining frames on the dead display.
8468 We are now sure none of these is used as the mini-buffer
8469 for another frame that we need to delete. */
8470 FOR_EACH_FRAME (tail
, frame
)
8471 if (FRAME_X_P (XFRAME (frame
))
8472 && FRAME_DISPLAY_INFO (XFRAME (frame
)) == dpyinfo
)
8474 /* Set this to t so that delete_frame won't get confused
8475 trying to find a replacement. */
8476 kset_default_minibuffer_frame (FRAME_KBOARD (XFRAME (frame
)), Qt
);
8477 delete_frame (frame
, Qnoelisp
);
8480 /* If DPYINFO is null, this means we didn't open the display in the
8481 first place, so don't try to close it. */
8484 /* We can not call XtCloseDisplay here because it calls XSync.
8485 XSync inside the error handler apparently hangs Emacs. On
8486 current Xt versions, this isn't needed either. */
8488 /* A long-standing GTK bug prevents proper disconnect handling
8489 (https://bugzilla.gnome.org/show_bug.cgi?id=85715). Once,
8490 the resulting Glib error message loop filled a user's disk.
8491 To avoid this, kill Emacs unconditionally on disconnect. */
8492 shut_down_emacs (0, Qnil
);
8493 fprintf (stderr
, "%s\n\
8494 When compiled with GTK, Emacs cannot recover from X disconnects.\n\
8495 This is a GTK bug: https://bugzilla.gnome.org/show_bug.cgi?id=85715\n\
8496 For details, see etc/PROBLEMS.\n",
8499 #endif /* USE_GTK */
8501 /* Indicate that this display is dead. */
8502 dpyinfo
->display
= 0;
8504 dpyinfo
->reference_count
--;
8505 dpyinfo
->terminal
->reference_count
--;
8506 if (dpyinfo
->reference_count
!= 0)
8507 /* We have just closed all frames on this display. */
8512 XSETTERMINAL (tmp
, dpyinfo
->terminal
);
8513 Fdelete_terminal (tmp
, Qnoelisp
);
8517 if (terminal_list
== 0)
8519 fprintf (stderr
, "%s\n", error_msg
);
8520 Fkill_emacs (make_number (70));
8524 totally_unblock_input ();
8526 unbind_to (idx
, Qnil
);
8527 clear_waiting_for_input ();
8529 /* Tell GCC not to suggest attribute 'noreturn' for this function. */
8530 IF_LINT (if (! terminal_list
) return; )
8532 /* Here, we absolutely have to use a non-local exit (e.g. signal, throw,
8533 longjmp), because returning from this function would get us back into
8534 Xlib's code which will directly call `exit'. */
8535 error ("%s", error_msg
);
8538 /* We specifically use it before defining it, so that gcc doesn't inline it,
8539 otherwise gdb doesn't know how to properly put a breakpoint on it. */
8540 static void x_error_quitter (Display
*, XErrorEvent
*);
8542 /* This is the first-level handler for X protocol errors.
8543 It calls x_error_quitter or x_error_catcher. */
8546 x_error_handler (Display
*display
, XErrorEvent
*event
)
8548 #if defined USE_GTK && defined HAVE_GTK3
8549 if ((event
->error_code
== BadMatch
|| event
->error_code
== BadWindow
)
8550 && event
->request_code
== X_SetInputFocus
)
8556 if (x_error_message
)
8557 x_error_catcher (display
, event
);
8559 x_error_quitter (display
, event
);
8563 /* This is the usual handler for X protocol errors.
8564 It kills all frames on the display that we got the error for.
8565 If that was the only one, it prints an error message and kills Emacs. */
8567 /* .gdbinit puts a breakpoint here, so make sure it is not inlined. */
8569 /* On older GCC versions, just putting x_error_quitter
8570 after x_error_handler prevents inlining into the former. */
8572 static void NO_INLINE
8573 x_error_quitter (Display
*display
, XErrorEvent
*event
)
8575 char buf
[256], buf1
[356];
8577 /* Ignore BadName errors. They can happen because of fonts
8578 or colors that are not defined. */
8580 if (event
->error_code
== BadName
)
8583 /* Note that there is no real way portable across R3/R4 to get the
8584 original error handler. */
8586 XGetErrorText (display
, event
->error_code
, buf
, sizeof (buf
));
8587 sprintf (buf1
, "X protocol error: %s on protocol request %d",
8588 buf
, event
->request_code
);
8589 x_connection_closed (display
, buf1
);
8593 /* This is the handler for X IO errors, always.
8594 It kills all frames on the display that we lost touch with.
8595 If that was the only one, it prints an error message and kills Emacs. */
8598 x_io_error_quitter (Display
*display
)
8602 snprintf (buf
, sizeof buf
, "Connection lost to X server `%s'",
8603 DisplayString (display
));
8604 x_connection_closed (display
, buf
);
8608 /* Changing the font of the frame. */
8610 /* Give frame F the font FONT-OBJECT as its default font. The return
8611 value is FONT-OBJECT. FONTSET is an ID of the fontset for the
8612 frame. If it is negative, generate a new fontset from
8616 x_new_font (struct frame
*f
, Lisp_Object font_object
, int fontset
)
8618 struct font
*font
= XFONT_OBJECT (font_object
);
8622 fontset
= fontset_from_font (font_object
);
8623 FRAME_FONTSET (f
) = fontset
;
8624 if (FRAME_FONT (f
) == font
)
8625 /* This font is already set in frame F. There's nothing more to
8629 FRAME_FONT (f
) = font
;
8630 FRAME_BASELINE_OFFSET (f
) = font
->baseline_offset
;
8631 FRAME_COLUMN_WIDTH (f
) = font
->average_width
;
8632 FRAME_LINE_HEIGHT (f
) = FONT_HEIGHT (font
);
8634 #ifndef USE_X_TOOLKIT \
8635 /** FRAME_TOOL_BAR_HEIGHT (f) = FRAME_TOOL_BAR_LINES (f) * FRAME_LINE_HEIGHT (f); **/
8636 FRAME_MENU_BAR_HEIGHT (f
) = FRAME_MENU_BAR_LINES (f
) * FRAME_LINE_HEIGHT (f
);
8639 /* Compute character columns occupied by scrollbar.
8641 Don't do things differently for non-toolkit scrollbars
8643 unit
= FRAME_COLUMN_WIDTH (f
);
8644 if (FRAME_CONFIG_SCROLL_BAR_WIDTH (f
) > 0)
8645 FRAME_CONFIG_SCROLL_BAR_COLS (f
)
8646 = (FRAME_CONFIG_SCROLL_BAR_WIDTH (f
) + unit
- 1) / unit
;
8648 FRAME_CONFIG_SCROLL_BAR_COLS (f
) = (14 + unit
- 1) / unit
;
8650 if (FRAME_X_WINDOW (f
) != 0)
8652 /* Don't change the size of a tip frame; there's no point in
8653 doing it because it's done in Fx_show_tip, and it leads to
8654 problems because the tip frame has no widget. */
8655 if (NILP (tip_frame
) || XFRAME (tip_frame
) != f
)
8656 x_set_window_size (f
, 0, FRAME_COLS (f
) * FRAME_COLUMN_WIDTH (f
),
8657 FRAME_LINES (f
) * FRAME_LINE_HEIGHT (f
), 1);
8662 && (FRAME_XIC_STYLE (f
) & (XIMPreeditPosition
| XIMStatusArea
)))
8665 xic_set_xfontset (f
, SSDATA (fontset_ascii (fontset
)));
8674 /***********************************************************************
8676 ***********************************************************************/
8682 /* XIM destroy callback function, which is called whenever the
8683 connection to input method XIM dies. CLIENT_DATA contains a
8684 pointer to the x_display_info structure corresponding to XIM. */
8687 xim_destroy_callback (XIM xim
, XPointer client_data
, XPointer call_data
)
8689 struct x_display_info
*dpyinfo
= (struct x_display_info
*) client_data
;
8690 Lisp_Object frame
, tail
;
8694 /* No need to call XDestroyIC.. */
8695 FOR_EACH_FRAME (tail
, frame
)
8697 struct frame
*f
= XFRAME (frame
);
8698 if (FRAME_X_P (f
) && FRAME_DISPLAY_INFO (f
) == dpyinfo
)
8700 FRAME_XIC (f
) = NULL
;
8701 xic_free_xfontset (f
);
8705 /* No need to call XCloseIM. */
8706 dpyinfo
->xim
= NULL
;
8707 XFree (dpyinfo
->xim_styles
);
8711 #endif /* HAVE_X11R6 */
8713 /* Open the connection to the XIM server on display DPYINFO.
8714 RESOURCE_NAME is the resource name Emacs uses. */
8717 xim_open_dpy (struct x_display_info
*dpyinfo
, char *resource_name
)
8725 XCloseIM (dpyinfo
->xim
);
8726 xim
= XOpenIM (dpyinfo
->display
, dpyinfo
->xrdb
, resource_name
,
8733 XIMCallback destroy
;
8736 /* Get supported styles and XIM values. */
8737 XGetIMValues (xim
, XNQueryInputStyle
, &dpyinfo
->xim_styles
, NULL
);
8740 destroy
.callback
= xim_destroy_callback
;
8741 destroy
.client_data
= (XPointer
)dpyinfo
;
8742 XSetIMValues (xim
, XNDestroyCallback
, &destroy
, NULL
);
8748 #endif /* HAVE_XIM */
8749 dpyinfo
->xim
= NULL
;
8753 #ifdef HAVE_X11R6_XIM
8755 /* XIM instantiate callback function, which is called whenever an XIM
8756 server is available. DISPLAY is the display of the XIM.
8757 CLIENT_DATA contains a pointer to an xim_inst_t structure created
8758 when the callback was registered. */
8761 xim_instantiate_callback (Display
*display
, XPointer client_data
, XPointer call_data
)
8763 struct xim_inst_t
*xim_inst
= (struct xim_inst_t
*) client_data
;
8764 struct x_display_info
*dpyinfo
= xim_inst
->dpyinfo
;
8766 /* We don't support multiple XIM connections. */
8770 xim_open_dpy (dpyinfo
, xim_inst
->resource_name
);
8772 /* Create XIC for the existing frames on the same display, as long
8773 as they have no XIC. */
8774 if (dpyinfo
->xim
&& dpyinfo
->reference_count
> 0)
8776 Lisp_Object tail
, frame
;
8779 FOR_EACH_FRAME (tail
, frame
)
8781 struct frame
*f
= XFRAME (frame
);
8784 && FRAME_DISPLAY_INFO (f
) == xim_inst
->dpyinfo
)
8785 if (FRAME_XIC (f
) == NULL
)
8787 create_frame_xic (f
);
8788 if (FRAME_XIC_STYLE (f
) & XIMStatusArea
)
8789 xic_set_statusarea (f
);
8790 if (FRAME_XIC_STYLE (f
) & XIMPreeditPosition
)
8792 struct window
*w
= XWINDOW (f
->selected_window
);
8793 xic_set_preeditarea (w
, w
->cursor
.x
, w
->cursor
.y
);
8802 #endif /* HAVE_X11R6_XIM */
8805 /* Open a connection to the XIM server on display DPYINFO.
8806 RESOURCE_NAME is the resource name for Emacs. On X11R5, open the
8807 connection only at the first time. On X11R6, open the connection
8808 in the XIM instantiate callback function. */
8811 xim_initialize (struct x_display_info
*dpyinfo
, char *resource_name
)
8813 dpyinfo
->xim
= NULL
;
8817 #ifdef HAVE_X11R6_XIM
8818 struct xim_inst_t
*xim_inst
= xmalloc (sizeof *xim_inst
);
8821 dpyinfo
->xim_callback_data
= xim_inst
;
8822 xim_inst
->dpyinfo
= dpyinfo
;
8823 xim_inst
->resource_name
= xstrdup (resource_name
);
8824 ret
= XRegisterIMInstantiateCallback
8825 (dpyinfo
->display
, dpyinfo
->xrdb
, xim_inst
->resource_name
,
8826 emacs_class
, xim_instantiate_callback
,
8827 /* This is XPointer in XFree86 but (XPointer *)
8828 on Tru64, at least, hence the configure test. */
8829 (XRegisterIMInstantiateCallback_arg6
) xim_inst
);
8830 eassert (ret
== True
);
8831 #else /* not HAVE_X11R6_XIM */
8832 xim_open_dpy (dpyinfo
, resource_name
);
8833 #endif /* not HAVE_X11R6_XIM */
8835 #endif /* HAVE_XIM */
8839 /* Close the connection to the XIM server on display DPYINFO. */
8842 xim_close_dpy (struct x_display_info
*dpyinfo
)
8847 #ifdef HAVE_X11R6_XIM
8848 struct xim_inst_t
*xim_inst
= dpyinfo
->xim_callback_data
;
8850 if (dpyinfo
->display
)
8852 Bool ret
= XUnregisterIMInstantiateCallback
8853 (dpyinfo
->display
, dpyinfo
->xrdb
, xim_inst
->resource_name
,
8854 emacs_class
, xim_instantiate_callback
,
8855 (XRegisterIMInstantiateCallback_arg6
) xim_inst
);
8856 eassert (ret
== True
);
8858 xfree (xim_inst
->resource_name
);
8860 #endif /* HAVE_X11R6_XIM */
8861 if (dpyinfo
->display
)
8862 XCloseIM (dpyinfo
->xim
);
8863 dpyinfo
->xim
= NULL
;
8864 XFree (dpyinfo
->xim_styles
);
8866 #endif /* HAVE_XIM */
8869 #endif /* not HAVE_X11R6_XIM */
8873 /* Calculate the absolute position in frame F
8874 from its current recorded position values and gravity. */
8877 x_calc_absolute_position (struct frame
*f
)
8879 int flags
= f
->size_hint_flags
;
8881 /* We have nothing to do if the current position
8882 is already for the top-left corner. */
8883 if (! ((flags
& XNegative
) || (flags
& YNegative
)))
8886 /* Treat negative positions as relative to the leftmost bottommost
8887 position that fits on the screen. */
8888 if (flags
& XNegative
)
8889 f
->left_pos
= x_display_pixel_width (FRAME_DISPLAY_INFO (f
))
8890 - FRAME_PIXEL_WIDTH (f
) + f
->left_pos
;
8893 int height
= FRAME_PIXEL_HEIGHT (f
);
8895 #if defined USE_X_TOOLKIT && defined USE_MOTIF
8896 /* Something is fishy here. When using Motif, starting Emacs with
8897 `-g -0-0', the frame appears too low by a few pixels.
8899 This seems to be so because initially, while Emacs is starting,
8900 the column widget's height and the frame's pixel height are
8901 different. The column widget's height is the right one. In
8902 later invocations, when Emacs is up, the frame's pixel height
8905 It's not obvious where the initial small difference comes from.
8906 2000-12-01, gerd. */
8908 XtVaGetValues (f
->output_data
.x
->column_widget
, XtNheight
, &height
, NULL
);
8911 if (flags
& YNegative
)
8912 f
->top_pos
= x_display_pixel_height (FRAME_DISPLAY_INFO (f
))
8913 - height
+ f
->top_pos
;
8916 /* The left_pos and top_pos
8917 are now relative to the top and left screen edges,
8918 so the flags should correspond. */
8919 f
->size_hint_flags
&= ~ (XNegative
| YNegative
);
8922 /* CHANGE_GRAVITY is 1 when calling from Fset_frame_position,
8923 to really change the position, and 0 when calling from
8924 x_make_frame_visible (in that case, XOFF and YOFF are the current
8925 position values). It is -1 when calling from x_set_frame_parameters,
8926 which means, do adjust for borders but don't change the gravity. */
8929 x_set_offset (struct frame
*f
, register int xoff
, register int yoff
, int change_gravity
)
8931 int modified_top
, modified_left
;
8933 if (change_gravity
> 0)
8937 f
->size_hint_flags
&= ~ (XNegative
| YNegative
);
8939 f
->size_hint_flags
|= XNegative
;
8941 f
->size_hint_flags
|= YNegative
;
8942 f
->win_gravity
= NorthWestGravity
;
8944 x_calc_absolute_position (f
);
8947 x_wm_set_size_hint (f
, 0, 0);
8949 modified_left
= f
->left_pos
;
8950 modified_top
= f
->top_pos
;
8952 if (change_gravity
!= 0 && FRAME_DISPLAY_INFO (f
)->wm_type
== X_WMTYPE_A
)
8954 /* Some WMs (twm, wmaker at least) has an offset that is smaller
8955 than the WM decorations. So we use the calculated offset instead
8956 of the WM decoration sizes here (x/y_pixels_outer_diff). */
8957 modified_left
+= FRAME_X_OUTPUT (f
)->move_offset_left
;
8958 modified_top
+= FRAME_X_OUTPUT (f
)->move_offset_top
;
8961 XMoveWindow (FRAME_X_DISPLAY (f
), FRAME_OUTER_WINDOW (f
),
8962 modified_left
, modified_top
);
8964 x_sync_with_move (f
, f
->left_pos
, f
->top_pos
,
8965 FRAME_DISPLAY_INFO (f
)->wm_type
== X_WMTYPE_UNKNOWN
8968 /* change_gravity is non-zero when this function is called from Lisp to
8969 programmatically move a frame. In that case, we call
8970 x_check_expected_move to discover if we have a "Type A" or "Type B"
8971 window manager, and, for a "Type A" window manager, adjust the position
8974 We call x_check_expected_move if a programmatic move occurred, and
8975 either the window manager type (A/B) is unknown or it is Type A but we
8976 need to compute the top/left offset adjustment for this frame. */
8978 if (change_gravity
!= 0 &&
8979 (FRAME_DISPLAY_INFO (f
)->wm_type
== X_WMTYPE_UNKNOWN
8980 || (FRAME_DISPLAY_INFO (f
)->wm_type
== X_WMTYPE_A
8981 && (FRAME_X_OUTPUT (f
)->move_offset_left
== 0
8982 && FRAME_X_OUTPUT (f
)->move_offset_top
== 0))))
8983 x_check_expected_move (f
, modified_left
, modified_top
);
8988 /* Return non-zero if _NET_SUPPORTING_WM_CHECK window exists and _NET_SUPPORTED
8989 on the root window for frame F contains ATOMNAME.
8990 This is how a WM check shall be done according to the Window Manager
8991 Specification/Extended Window Manager Hints at
8992 http://freedesktop.org/wiki/Specifications/wm-spec. */
8995 wm_supports (struct frame
*f
, Atom want_atom
)
8998 unsigned long actual_size
, bytes_remaining
;
8999 int i
, rc
, actual_format
;
9000 Window wmcheck_window
;
9001 struct x_display_info
*dpyinfo
= FRAME_DISPLAY_INFO (f
);
9002 Window target_window
= dpyinfo
->root_window
;
9003 long max_len
= 65536;
9004 Display
*dpy
= FRAME_X_DISPLAY (f
);
9005 unsigned char *tmp_data
= NULL
;
9006 Atom target_type
= XA_WINDOW
;
9010 x_catch_errors (dpy
);
9011 rc
= XGetWindowProperty (dpy
, target_window
,
9012 dpyinfo
->Xatom_net_supporting_wm_check
,
9013 0, max_len
, False
, target_type
,
9014 &actual_type
, &actual_format
, &actual_size
,
9015 &bytes_remaining
, &tmp_data
);
9017 if (rc
!= Success
|| actual_type
!= XA_WINDOW
|| x_had_errors_p (dpy
))
9019 if (tmp_data
) XFree (tmp_data
);
9020 x_uncatch_errors ();
9025 wmcheck_window
= *(Window
*) tmp_data
;
9028 /* Check if window exists. */
9029 XSelectInput (dpy
, wmcheck_window
, StructureNotifyMask
);
9031 if (x_had_errors_p (dpy
))
9033 x_uncatch_errors ();
9038 if (dpyinfo
->net_supported_window
!= wmcheck_window
)
9040 /* Window changed, reload atoms */
9041 if (dpyinfo
->net_supported_atoms
!= NULL
)
9042 XFree (dpyinfo
->net_supported_atoms
);
9043 dpyinfo
->net_supported_atoms
= NULL
;
9044 dpyinfo
->nr_net_supported_atoms
= 0;
9045 dpyinfo
->net_supported_window
= 0;
9047 target_type
= XA_ATOM
;
9049 rc
= XGetWindowProperty (dpy
, target_window
,
9050 dpyinfo
->Xatom_net_supported
,
9051 0, max_len
, False
, target_type
,
9052 &actual_type
, &actual_format
, &actual_size
,
9053 &bytes_remaining
, &tmp_data
);
9055 if (rc
!= Success
|| actual_type
!= XA_ATOM
|| x_had_errors_p (dpy
))
9057 if (tmp_data
) XFree (tmp_data
);
9058 x_uncatch_errors ();
9063 dpyinfo
->net_supported_atoms
= (Atom
*)tmp_data
;
9064 dpyinfo
->nr_net_supported_atoms
= actual_size
;
9065 dpyinfo
->net_supported_window
= wmcheck_window
;
9070 for (i
= 0; rc
== 0 && i
< dpyinfo
->nr_net_supported_atoms
; ++i
)
9071 rc
= dpyinfo
->net_supported_atoms
[i
] == want_atom
;
9073 x_uncatch_errors ();
9080 set_wm_state (Lisp_Object frame
, int add
, Atom atom
, Atom value
)
9082 struct x_display_info
*dpyinfo
= FRAME_DISPLAY_INFO (XFRAME (frame
));
9084 x_send_client_event (frame
, make_number (0), frame
,
9085 dpyinfo
->Xatom_net_wm_state
,
9087 /* 1 = add, 0 = remove */
9089 (make_number (add
? 1 : 0),
9091 (make_fixnum_or_float (atom
),
9093 ? list1 (make_fixnum_or_float (value
))
9098 x_set_sticky (struct frame
*f
, Lisp_Object new_value
, Lisp_Object old_value
)
9101 struct x_display_info
*dpyinfo
= FRAME_DISPLAY_INFO (f
);
9103 XSETFRAME (frame
, f
);
9105 set_wm_state (frame
, NILP (new_value
) ? 0 : 1,
9106 dpyinfo
->Xatom_net_wm_state_sticky
, None
);
9109 /* Return the current _NET_WM_STATE.
9110 SIZE_STATE is set to one of the FULLSCREEN_* values.
9111 STICKY is set to 1 if the sticky state is set, 0 if not.
9113 Return non-zero if we are not hidden, zero if we are. */
9116 get_current_wm_state (struct frame
*f
,
9122 unsigned long actual_size
, bytes_remaining
;
9123 int i
, rc
, actual_format
, is_hidden
= 0;
9124 struct x_display_info
*dpyinfo
= FRAME_DISPLAY_INFO (f
);
9125 long max_len
= 65536;
9126 Display
*dpy
= FRAME_X_DISPLAY (f
);
9127 unsigned char *tmp_data
= NULL
;
9128 Atom target_type
= XA_ATOM
;
9131 *size_state
= FULLSCREEN_NONE
;
9134 x_catch_errors (dpy
);
9135 rc
= XGetWindowProperty (dpy
, window
, dpyinfo
->Xatom_net_wm_state
,
9136 0, max_len
, False
, target_type
,
9137 &actual_type
, &actual_format
, &actual_size
,
9138 &bytes_remaining
, &tmp_data
);
9140 if (rc
!= Success
|| actual_type
!= target_type
|| x_had_errors_p (dpy
))
9142 if (tmp_data
) XFree (tmp_data
);
9143 x_uncatch_errors ();
9145 return !FRAME_ICONIFIED_P (f
);
9148 x_uncatch_errors ();
9150 for (i
= 0; i
< actual_size
; ++i
)
9152 Atom a
= ((Atom
*)tmp_data
)[i
];
9153 if (a
== dpyinfo
->Xatom_net_wm_state_hidden
)
9156 f
->output_data
.x
->net_wm_state_hidden_seen
= 1;
9158 else if (a
== dpyinfo
->Xatom_net_wm_state_maximized_horz
)
9160 if (*size_state
== FULLSCREEN_HEIGHT
)
9161 *size_state
= FULLSCREEN_MAXIMIZED
;
9163 *size_state
= FULLSCREEN_WIDTH
;
9165 else if (a
== dpyinfo
->Xatom_net_wm_state_maximized_vert
)
9167 if (*size_state
== FULLSCREEN_WIDTH
)
9168 *size_state
= FULLSCREEN_MAXIMIZED
;
9170 *size_state
= FULLSCREEN_HEIGHT
;
9172 else if (a
== dpyinfo
->Xatom_net_wm_state_fullscreen
)
9173 *size_state
= FULLSCREEN_BOTH
;
9174 else if (a
== dpyinfo
->Xatom_net_wm_state_sticky
)
9178 if (tmp_data
) XFree (tmp_data
);
9183 /* Do fullscreen as specified in extended window manager hints */
9186 do_ewmh_fullscreen (struct frame
*f
)
9188 struct x_display_info
*dpyinfo
= FRAME_DISPLAY_INFO (f
);
9189 int have_net_atom
= wm_supports (f
, dpyinfo
->Xatom_net_wm_state
);
9192 (void)get_current_wm_state (f
, FRAME_OUTER_WINDOW (f
), &cur
, &dummy
);
9194 /* Some window managers don't say they support _NET_WM_STATE, but they do say
9195 they support _NET_WM_STATE_FULLSCREEN. Try that also. */
9197 have_net_atom
= wm_supports (f
, dpyinfo
->Xatom_net_wm_state_fullscreen
);
9199 if (have_net_atom
&& cur
!= f
->want_fullscreen
)
9203 XSETFRAME (frame
, f
);
9205 /* Keep number of calls to set_wm_state as low as possible.
9206 Some window managers, or possible Gtk+, hangs when too many
9207 are sent at once. */
9208 switch (f
->want_fullscreen
)
9210 case FULLSCREEN_BOTH
:
9211 if (cur
== FULLSCREEN_WIDTH
|| cur
== FULLSCREEN_MAXIMIZED
9212 || cur
== FULLSCREEN_HEIGHT
)
9213 set_wm_state (frame
, 0, dpyinfo
->Xatom_net_wm_state_maximized_horz
,
9214 dpyinfo
->Xatom_net_wm_state_maximized_vert
);
9215 set_wm_state (frame
, 1, dpyinfo
->Xatom_net_wm_state_fullscreen
, None
);
9217 case FULLSCREEN_WIDTH
:
9218 if (cur
== FULLSCREEN_BOTH
|| cur
== FULLSCREEN_HEIGHT
9219 || cur
== FULLSCREEN_MAXIMIZED
)
9220 set_wm_state (frame
, 0, dpyinfo
->Xatom_net_wm_state_fullscreen
,
9221 dpyinfo
->Xatom_net_wm_state_maximized_vert
);
9222 if (cur
!= FULLSCREEN_MAXIMIZED
)
9223 set_wm_state (frame
, 1, dpyinfo
->Xatom_net_wm_state_maximized_horz
, None
);
9225 case FULLSCREEN_HEIGHT
:
9226 if (cur
== FULLSCREEN_BOTH
|| cur
== FULLSCREEN_WIDTH
9227 || cur
== FULLSCREEN_MAXIMIZED
)
9228 set_wm_state (frame
, 0, dpyinfo
->Xatom_net_wm_state_fullscreen
,
9229 dpyinfo
->Xatom_net_wm_state_maximized_horz
);
9230 if (cur
!= FULLSCREEN_MAXIMIZED
)
9231 set_wm_state (frame
, 1, dpyinfo
->Xatom_net_wm_state_maximized_vert
, None
);
9233 case FULLSCREEN_MAXIMIZED
:
9234 if (cur
== FULLSCREEN_BOTH
)
9235 set_wm_state (frame
, 0, dpyinfo
->Xatom_net_wm_state_fullscreen
, None
);
9236 set_wm_state (frame
, 1, dpyinfo
->Xatom_net_wm_state_maximized_horz
,
9237 dpyinfo
->Xatom_net_wm_state_maximized_vert
);
9239 case FULLSCREEN_NONE
:
9240 if (cur
== FULLSCREEN_BOTH
)
9241 set_wm_state (frame
, 0, dpyinfo
->Xatom_net_wm_state_fullscreen
, None
);
9243 set_wm_state (frame
, 0, dpyinfo
->Xatom_net_wm_state_maximized_horz
,
9244 dpyinfo
->Xatom_net_wm_state_maximized_vert
);
9247 f
->want_fullscreen
= FULLSCREEN_NONE
;
9251 return have_net_atom
;
9255 XTfullscreen_hook (struct frame
*f
)
9257 if (FRAME_VISIBLE_P (f
))
9260 x_check_fullscreen (f
);
9268 x_handle_net_wm_state (struct frame
*f
, const XPropertyEvent
*event
)
9270 int value
= FULLSCREEN_NONE
;
9273 int not_hidden
= get_current_wm_state (f
, event
->window
, &value
, &sticky
);
9278 case FULLSCREEN_WIDTH
:
9281 case FULLSCREEN_HEIGHT
:
9284 case FULLSCREEN_BOTH
:
9287 case FULLSCREEN_MAXIMIZED
:
9292 store_frame_param (f
, Qfullscreen
, lval
);
9293 store_frame_param (f
, Qsticky
, sticky
? Qt
: Qnil
);
9298 /* Check if we need to resize the frame due to a fullscreen request.
9299 If so needed, resize the frame. */
9301 x_check_fullscreen (struct frame
*f
)
9303 if (do_ewmh_fullscreen (f
))
9306 if (f
->output_data
.x
->parent_desc
!= FRAME_DISPLAY_INFO (f
)->root_window
)
9307 return; /* Only fullscreen without WM or with EWM hints (above). */
9309 /* Setting fullscreen to nil doesn't do anything. We could save the
9310 last non-fullscreen size and restore it, but it seems like a
9311 lot of work for this unusual case (no window manager running). */
9313 if (f
->want_fullscreen
!= FULLSCREEN_NONE
)
9315 int width
= FRAME_PIXEL_WIDTH (f
), height
= FRAME_PIXEL_HEIGHT (f
);
9316 struct x_display_info
*dpyinfo
= FRAME_DISPLAY_INFO (f
);
9318 switch (f
->want_fullscreen
)
9320 /* No difference between these two when there is no WM */
9321 case FULLSCREEN_BOTH
:
9322 case FULLSCREEN_MAXIMIZED
:
9323 width
= x_display_pixel_width (dpyinfo
);
9324 height
= x_display_pixel_height (dpyinfo
);
9326 case FULLSCREEN_WIDTH
:
9327 width
= x_display_pixel_width (dpyinfo
);
9329 case FULLSCREEN_HEIGHT
:
9330 height
= x_display_pixel_height (dpyinfo
);
9333 XResizeWindow (FRAME_X_DISPLAY (f
), FRAME_OUTER_WINDOW (f
),
9338 /* This function is called by x_set_offset to determine whether the window
9339 manager interfered with the positioning of the frame. Type A window
9340 managers position the surrounding window manager decorations a small
9341 amount above and left of the user-supplied position. Type B window
9342 managers position the surrounding window manager decorations at the
9343 user-specified position. If we detect a Type A window manager, we
9344 compensate by moving the window right and down by the proper amount. */
9347 x_check_expected_move (struct frame
*f
, int expected_left
, int expected_top
)
9349 int current_left
= 0, current_top
= 0;
9351 /* x_real_positions returns the left and top offsets of the outermost
9352 window manager window around the frame. */
9354 x_real_positions (f
, ¤t_left
, ¤t_top
);
9356 if (current_left
!= expected_left
|| current_top
!= expected_top
)
9358 /* It's a "Type A" window manager. */
9363 FRAME_DISPLAY_INFO (f
)->wm_type
= X_WMTYPE_A
;
9364 FRAME_X_OUTPUT (f
)->move_offset_left
= expected_left
- current_left
;
9365 FRAME_X_OUTPUT (f
)->move_offset_top
= expected_top
- current_top
;
9367 /* Now fix the mispositioned frame's location. */
9369 adjusted_left
= expected_left
+ FRAME_X_OUTPUT (f
)->move_offset_left
;
9370 adjusted_top
= expected_top
+ FRAME_X_OUTPUT (f
)->move_offset_top
;
9372 XMoveWindow (FRAME_X_DISPLAY (f
), FRAME_OUTER_WINDOW (f
),
9373 adjusted_left
, adjusted_top
);
9375 x_sync_with_move (f
, expected_left
, expected_top
, 0);
9378 /* It's a "Type B" window manager. We don't have to adjust the
9379 frame's position. */
9381 FRAME_DISPLAY_INFO (f
)->wm_type
= X_WMTYPE_B
;
9385 /* Wait for XGetGeometry to return up-to-date position information for a
9386 recently-moved frame. Call this immediately after calling XMoveWindow.
9387 If FUZZY is non-zero, then LEFT and TOP are just estimates of where the
9388 frame has been moved to, so we use a fuzzy position comparison instead
9389 of an exact comparison. */
9392 x_sync_with_move (struct frame
*f
, int left
, int top
, int fuzzy
)
9396 while (count
++ < 50)
9398 int current_left
= 0, current_top
= 0;
9400 /* In theory, this call to XSync only needs to happen once, but in
9401 practice, it doesn't seem to work, hence the need for the surrounding
9404 XSync (FRAME_X_DISPLAY (f
), False
);
9405 x_real_positions (f
, ¤t_left
, ¤t_top
);
9409 /* The left fuzz-factor is 10 pixels. The top fuzz-factor is 40
9412 if (eabs (current_left
- left
) <= 10
9413 && eabs (current_top
- top
) <= 40)
9416 else if (current_left
== left
&& current_top
== top
)
9420 /* As a last resort, just wait 0.5 seconds and hope that XGetGeometry
9421 will then return up-to-date position info. */
9423 wait_reading_process_output (0, 500000000, 0, 0, Qnil
, NULL
, 0);
9427 /* Wait for an event on frame F matching EVENTTYPE. */
9429 x_wait_for_event (struct frame
*f
, int eventtype
)
9431 int level
= interrupt_input_blocked
;
9434 struct timespec tmo
, tmo_at
, time_now
;
9435 int fd
= ConnectionNumber (FRAME_X_DISPLAY (f
));
9437 f
->wait_event_type
= eventtype
;
9439 /* Set timeout to 0.1 second. Hopefully not noticeable.
9440 Maybe it should be configurable. */
9441 tmo
= make_timespec (0, 100 * 1000 * 1000);
9442 tmo_at
= timespec_add (current_timespec (), tmo
);
9444 while (f
->wait_event_type
)
9446 pending_signals
= 1;
9447 totally_unblock_input ();
9448 /* XTread_socket is called after unblock. */
9450 interrupt_input_blocked
= level
;
9455 time_now
= current_timespec ();
9456 if (timespec_cmp (tmo_at
, time_now
) < 0)
9459 tmo
= timespec_sub (tmo_at
, time_now
);
9460 if (pselect (fd
+ 1, &fds
, NULL
, NULL
, &tmo
, NULL
) == 0)
9461 break; /* Timeout */
9464 f
->wait_event_type
= 0;
9468 /* Change the size of frame F's X window to WIDTH/HEIGHT in the case F
9469 doesn't have a widget. If CHANGE_GRAVITY is 1, we change to
9470 top-left-corner window gravity for this size change and subsequent
9471 size changes. Otherwise we leave the window gravity unchanged. */
9474 x_set_window_size_1 (struct frame
*f
, int change_gravity
, int width
, int height
, bool pixelwise
)
9476 int pixelwidth
, pixelheight
;
9478 /** if (pixelwise) **/
9480 /** pixelwidth = FRAME_TEXT_TO_PIXEL_WIDTH (f, width); **/
9481 /** pixelheight = FRAME_TEXT_TO_PIXEL_HEIGHT (f, height); **/
9485 /** pixelwidth = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, width); **/
9486 /** pixelheight = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, height); **/
9489 /** FRAME_TOOL_BAR_HEIGHT (f) = FRAME_TOOLBAR_HEIGHT (f); **/
9490 pixelwidth
= (pixelwise
9491 ? FRAME_TEXT_TO_PIXEL_WIDTH (f
, width
)
9492 : FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f
, width
));
9493 pixelheight
= ((pixelwise
9494 ? FRAME_TEXT_TO_PIXEL_HEIGHT (f
, height
)
9495 : FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f
, height
)));
9497 /** pixelwidth = ((pixelwise ? width : (width * FRAME_COLUMN_WIDTH (f))) **/
9498 /** + FRAME_SCROLL_BAR_AREA_WIDTH (f) **/
9499 /** + FRAME_TOTAL_FRINGE_WIDTH (f) **/
9500 /** + 2 * FRAME_INTERNAL_BORDER_WIDTH (f)); **/
9502 /** pixelheight = ((pixelwise ? height : (height * FRAME_LINE_HEIGHT (f))) **/
9503 /** + FRAME_TOOLBAR_HEIGHT (f) **/
9504 /** + FRAME_SCROLL_BAR_AREA_HEIGHT (f) **/
9505 /** + 2 * FRAME_INTERNAL_BORDER_WIDTH (f)); **/
9507 if (change_gravity
) f
->win_gravity
= NorthWestGravity
;
9508 x_wm_set_size_hint (f
, 0, 0);
9509 XResizeWindow (FRAME_X_DISPLAY (f
), FRAME_OUTER_WINDOW (f
),
9510 pixelwidth
, pixelheight
+ FRAME_MENUBAR_HEIGHT (f
));
9513 /* We've set {FRAME,PIXEL}_{WIDTH,HEIGHT} to the values we hope to
9514 receive in the ConfigureNotify event; if we get what we asked
9515 for, then the event won't cause the screen to become garbaged, so
9516 we have to make sure to do it here. */
9517 SET_FRAME_GARBAGED (f
);
9519 /* Now, strictly speaking, we can't be sure that this is accurate,
9520 but the window manager will get around to dealing with the size
9521 change request eventually, and we'll hear how it went when the
9522 ConfigureNotify event gets here.
9524 We could just not bother storing any of this information here,
9525 and let the ConfigureNotify event set everything up, but that
9526 might be kind of confusing to the Lisp code, since size changes
9527 wouldn't be reported in the frame parameters until some random
9528 point in the future when the ConfigureNotify event arrives.
9530 We pass 1 for DELAY since we can't run Lisp code inside of
9533 /* But the ConfigureNotify may in fact never arrive, and then this is
9534 not right if the frame is visible. Instead wait (with timeout)
9535 for the ConfigureNotify. */
9536 if (FRAME_VISIBLE_P (f
))
9537 x_wait_for_event (f
, ConfigureNotify
);
9540 change_frame_size (f
, pixelwidth
, pixelheight
, 0, 1, 0, 1);
9546 /* Call this to change the size of frame F's x-window.
9547 If CHANGE_GRAVITY is 1, we change to top-left-corner window gravity
9548 for this size change and subsequent size changes.
9549 Otherwise we leave the window gravity unchanged. */
9552 x_set_window_size (struct frame
*f
, int change_gravity
, int width
, int height
, bool pixelwise
)
9556 /* The following breaks our calculations. If it's really needed,
9557 think of something else. */
9559 if (NILP (tip_frame
) || XFRAME (tip_frame
) != f
)
9561 int text_width
, text_height
;
9563 /* When the frame is maximized/fullscreen or running under for
9564 example Xmonad, x_set_window_size_1 will be a no-op.
9565 In that case, the right thing to do is extend rows/width to
9566 the current frame size. We do that first if x_set_window_size_1
9567 turns out to not be a no-op (there is no way to know).
9568 The size will be adjusted again if the frame gets a
9569 ConfigureNotify event as a result of x_set_window_size. */
9570 int pixelh
= FRAME_PIXEL_HEIGHT (f
);
9571 #ifdef USE_X_TOOLKIT
9572 /* The menu bar is not part of text lines. The tool bar
9574 pixelh
-= FRAME_MENUBAR_HEIGHT (f
);
9576 text_width
= FRAME_PIXEL_TO_TEXT_WIDTH (f
, FRAME_PIXEL_WIDTH (f
));
9577 text_height
= FRAME_PIXEL_TO_TEXT_HEIGHT (f
, pixelh
);
9579 change_frame_size (f
, text_width
, text_height
, 0, 1, 0, 1);
9584 if (FRAME_GTK_WIDGET (f
))
9586 xg_frame_set_char_size (f
, width
* FRAME_COLUMN_WIDTH (f
),
9587 height
* FRAME_LINE_HEIGHT (f
));
9589 xg_frame_set_char_size (f
, width
, height
);
9591 x_set_window_size_1 (f
, change_gravity
, width
, height
, pixelwise
);
9592 #else /* not USE_GTK */
9594 x_set_window_size_1 (f
, change_gravity
, width
, height
, pixelwise
);
9595 x_clear_under_internal_border (f
);
9597 #endif /* not USE_GTK */
9599 /* If cursor was outside the new size, mark it as off. */
9600 mark_window_cursors_off (XWINDOW (f
->root_window
));
9602 /* Clear out any recollection of where the mouse highlighting was,
9603 since it might be in a place that's outside the new frame size.
9604 Actually checking whether it is outside is a pain in the neck,
9605 so don't try--just let the highlighting be done afresh with new size. */
9606 cancel_mouse_face (f
);
9610 do_pending_window_change (0);
9613 /* Move the mouse to position pixel PIX_X, PIX_Y relative to frame F. */
9616 frame_set_mouse_pixel_position (struct frame
*f
, int pix_x
, int pix_y
)
9620 XWarpPointer (FRAME_X_DISPLAY (f
), None
, FRAME_X_WINDOW (f
),
9621 0, 0, 0, 0, pix_x
, pix_y
);
9625 /* Raise frame F. */
9628 x_raise_frame (struct frame
*f
)
9631 if (FRAME_VISIBLE_P (f
))
9632 XRaiseWindow (FRAME_X_DISPLAY (f
), FRAME_OUTER_WINDOW (f
));
9633 XFlush (FRAME_X_DISPLAY (f
));
9637 /* Lower frame F. */
9640 x_lower_frame (struct frame
*f
)
9642 if (FRAME_VISIBLE_P (f
))
9645 XLowerWindow (FRAME_X_DISPLAY (f
), FRAME_OUTER_WINDOW (f
));
9646 XFlush (FRAME_X_DISPLAY (f
));
9651 /* Request focus with XEmbed */
9654 xembed_request_focus (struct frame
*f
)
9656 /* See XEmbed Protocol Specification at
9657 http://freedesktop.org/wiki/Specifications/xembed-spec */
9658 if (FRAME_VISIBLE_P (f
))
9659 xembed_send_message (f
, CurrentTime
,
9660 XEMBED_REQUEST_FOCUS
, 0, 0, 0);
9663 /* Activate frame with Extended Window Manager Hints */
9666 x_ewmh_activate_frame (struct frame
*f
)
9668 /* See Window Manager Specification/Extended Window Manager Hints at
9669 http://freedesktop.org/wiki/Specifications/wm-spec */
9671 struct x_display_info
*dpyinfo
= FRAME_DISPLAY_INFO (f
);
9673 if (FRAME_VISIBLE_P (f
) && wm_supports (f
, dpyinfo
->Xatom_net_active_window
))
9676 XSETFRAME (frame
, f
);
9677 x_send_client_event (frame
, make_number (0), frame
,
9678 dpyinfo
->Xatom_net_active_window
,
9680 list2i (1, dpyinfo
->last_user_time
));
9685 XTframe_raise_lower (struct frame
*f
, int raise_flag
)
9693 /* XEmbed implementation. */
9695 #if defined USE_X_TOOLKIT || ! defined USE_GTK
9697 /* XEmbed implementation. */
9699 #define XEMBED_VERSION 0
9702 xembed_set_info (struct frame
*f
, enum xembed_info flags
)
9704 unsigned long data
[2];
9705 struct x_display_info
*dpyinfo
= FRAME_DISPLAY_INFO (f
);
9707 data
[0] = XEMBED_VERSION
;
9710 XChangeProperty (FRAME_X_DISPLAY (f
), FRAME_OUTER_WINDOW (f
),
9711 dpyinfo
->Xatom_XEMBED_INFO
, dpyinfo
->Xatom_XEMBED_INFO
,
9712 32, PropModeReplace
, (unsigned char *) data
, 2);
9714 #endif /* defined USE_X_TOOLKIT || ! defined USE_GTK */
9717 xembed_send_message (struct frame
*f
, Time t
, enum xembed_message msg
,
9718 long int detail
, long int data1
, long int data2
)
9722 event
.xclient
.type
= ClientMessage
;
9723 event
.xclient
.window
= FRAME_X_OUTPUT (f
)->parent_desc
;
9724 event
.xclient
.message_type
= FRAME_DISPLAY_INFO (f
)->Xatom_XEMBED
;
9725 event
.xclient
.format
= 32;
9726 event
.xclient
.data
.l
[0] = t
;
9727 event
.xclient
.data
.l
[1] = msg
;
9728 event
.xclient
.data
.l
[2] = detail
;
9729 event
.xclient
.data
.l
[3] = data1
;
9730 event
.xclient
.data
.l
[4] = data2
;
9732 XSendEvent (FRAME_X_DISPLAY (f
), FRAME_X_OUTPUT (f
)->parent_desc
,
9733 False
, NoEventMask
, &event
);
9734 XSync (FRAME_X_DISPLAY (f
), False
);
9737 /* Change of visibility. */
9739 /* This tries to wait until the frame is really visible.
9740 However, if the window manager asks the user where to position
9741 the frame, this will return before the user finishes doing that.
9742 The frame will not actually be visible at that time,
9743 but it will become visible later when the window manager
9744 finishes with it. */
9747 x_make_frame_visible (struct frame
*f
)
9749 int original_top
, original_left
;
9754 x_set_bitmap_icon (f
);
9756 if (! FRAME_VISIBLE_P (f
))
9758 /* We test FRAME_GARBAGED_P here to make sure we don't
9759 call x_set_offset a second time
9760 if we get to x_make_frame_visible a second time
9761 before the window gets really visible. */
9762 if (! FRAME_ICONIFIED_P (f
)
9763 && ! FRAME_X_EMBEDDED_P (f
)
9764 && ! f
->output_data
.x
->asked_for_visible
)
9765 x_set_offset (f
, f
->left_pos
, f
->top_pos
, 0);
9767 f
->output_data
.x
->asked_for_visible
= 1;
9769 if (! EQ (Vx_no_window_manager
, Qt
))
9770 x_wm_set_window_state (f
, NormalState
);
9771 #ifdef USE_X_TOOLKIT
9772 if (FRAME_X_EMBEDDED_P (f
))
9773 xembed_set_info (f
, XEMBED_MAPPED
);
9776 /* This was XtPopup, but that did nothing for an iconified frame. */
9777 XtMapWidget (f
->output_data
.x
->widget
);
9779 #else /* not USE_X_TOOLKIT */
9781 gtk_widget_show_all (FRAME_GTK_OUTER_WIDGET (f
));
9782 gtk_window_deiconify (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)));
9784 if (FRAME_X_EMBEDDED_P (f
))
9785 xembed_set_info (f
, XEMBED_MAPPED
);
9787 XMapRaised (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
));
9788 #endif /* not USE_GTK */
9789 #endif /* not USE_X_TOOLKIT */
9792 XFlush (FRAME_X_DISPLAY (f
));
9794 /* Synchronize to ensure Emacs knows the frame is visible
9795 before we do anything else. We do this loop with input not blocked
9796 so that incoming events are handled. */
9799 /* This must be before UNBLOCK_INPUT
9800 since events that arrive in response to the actions above
9801 will set it when they are handled. */
9802 int previously_visible
= f
->output_data
.x
->has_been_visible
;
9804 original_left
= f
->left_pos
;
9805 original_top
= f
->top_pos
;
9807 /* This must come after we set COUNT. */
9810 /* We unblock here so that arriving X events are processed. */
9812 /* Now move the window back to where it was "supposed to be".
9813 But don't do it if the gravity is negative.
9814 When the gravity is negative, this uses a position
9815 that is 3 pixels too low. Perhaps that's really the border width.
9817 Don't do this if the window has never been visible before,
9818 because the window manager may choose the position
9819 and we don't want to override it. */
9821 if (! FRAME_VISIBLE_P (f
)
9822 && ! FRAME_ICONIFIED_P (f
)
9823 && ! FRAME_X_EMBEDDED_P (f
)
9824 && f
->win_gravity
== NorthWestGravity
9825 && previously_visible
)
9829 unsigned int width
, height
, border
, depth
;
9833 /* On some window managers (such as FVWM) moving an existing
9834 window, even to the same place, causes the window manager
9835 to introduce an offset. This can cause the window to move
9836 to an unexpected location. Check the geometry (a little
9837 slow here) and then verify that the window is in the right
9838 place. If the window is not in the right place, move it
9839 there, and take the potential window manager hit. */
9840 XGetGeometry (FRAME_X_DISPLAY (f
), FRAME_OUTER_WINDOW (f
),
9841 &rootw
, &x
, &y
, &width
, &height
, &border
, &depth
);
9843 if (original_left
!= x
|| original_top
!= y
)
9844 XMoveWindow (FRAME_X_DISPLAY (f
), FRAME_OUTER_WINDOW (f
),
9845 original_left
, original_top
);
9850 XSETFRAME (frame
, f
);
9852 /* Process X events until a MapNotify event has been seen. */
9853 while (!FRAME_VISIBLE_P (f
))
9855 /* Force processing of queued events. */
9858 /* If on another desktop, the deiconify/map may be ignored and the
9859 frame never becomes visible. XMonad does this.
9860 Prevent an endless loop. */
9861 if (FRAME_ICONIFIED_P (f
) && ++tries
> 100)
9864 /* This hack is still in use at least for Cygwin. See
9865 http://lists.gnu.org/archive/html/emacs-devel/2013-12/msg00351.html.
9867 Machines that do polling rather than SIGIO have been
9868 observed to go into a busy-wait here. So we'll fake an
9869 alarm signal to let the handler know that there's something
9870 to be read. We used to raise a real alarm, but it seems
9871 that the handler isn't always enabled here. This is
9873 if (input_polling_used ())
9875 /* It could be confusing if a real alarm arrives while
9876 processing the fake one. Turn it off and let the
9877 handler reset it. */
9878 int old_poll_suppress_count
= poll_suppress_count
;
9879 poll_suppress_count
= 1;
9880 poll_for_input_1 ();
9881 poll_suppress_count
= old_poll_suppress_count
;
9884 if (XPending (FRAME_X_DISPLAY (f
)))
9887 XNextEvent (FRAME_X_DISPLAY (f
), &xev
);
9888 x_dispatch_event (&xev
, FRAME_X_DISPLAY (f
));
9894 /* Change from mapped state to withdrawn state. */
9896 /* Make the frame visible (mapped and not iconified). */
9899 x_make_frame_invisible (struct frame
*f
)
9903 /* Use the frame's outermost window, not the one we normally draw on. */
9904 window
= FRAME_OUTER_WINDOW (f
);
9906 /* Don't keep the highlight on an invisible frame. */
9907 if (FRAME_DISPLAY_INFO (f
)->x_highlight_frame
== f
)
9908 FRAME_DISPLAY_INFO (f
)->x_highlight_frame
= 0;
9912 /* Before unmapping the window, update the WM_SIZE_HINTS property to claim
9913 that the current position of the window is user-specified, rather than
9914 program-specified, so that when the window is mapped again, it will be
9915 placed at the same location, without forcing the user to position it
9916 by hand again (they have already done that once for this window.) */
9917 x_wm_set_size_hint (f
, 0, 1);
9920 if (FRAME_GTK_OUTER_WIDGET (f
))
9921 gtk_widget_hide (FRAME_GTK_OUTER_WIDGET (f
));
9924 if (FRAME_X_EMBEDDED_P (f
))
9925 xembed_set_info (f
, 0);
9930 if (! XWithdrawWindow (FRAME_X_DISPLAY (f
), window
,
9931 DefaultScreen (FRAME_X_DISPLAY (f
))))
9934 error ("Can't notify window manager of window withdrawal");
9938 /* We can't distinguish this from iconification
9939 just by the event that we get from the server.
9940 So we can't win using the usual strategy of letting
9941 FRAME_SAMPLE_VISIBILITY set this. So do it by hand,
9942 and synchronize with the server to make sure we agree. */
9943 SET_FRAME_VISIBLE (f
, 0);
9944 SET_FRAME_ICONIFIED (f
, 0);
9951 /* Change window state from mapped to iconified. */
9954 x_iconify_frame (struct frame
*f
)
9956 #ifdef USE_X_TOOLKIT
9960 /* Don't keep the highlight on an invisible frame. */
9961 if (FRAME_DISPLAY_INFO (f
)->x_highlight_frame
== f
)
9962 FRAME_DISPLAY_INFO (f
)->x_highlight_frame
= 0;
9964 if (FRAME_ICONIFIED_P (f
))
9969 x_set_bitmap_icon (f
);
9971 #if defined (USE_GTK)
9972 if (FRAME_GTK_OUTER_WIDGET (f
))
9974 if (! FRAME_VISIBLE_P (f
))
9975 gtk_widget_show_all (FRAME_GTK_OUTER_WIDGET (f
));
9977 gtk_window_iconify (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)));
9978 SET_FRAME_VISIBLE (f
, 0);
9979 SET_FRAME_ICONIFIED (f
, 1);
9985 #ifdef USE_X_TOOLKIT
9987 if (! FRAME_VISIBLE_P (f
))
9989 if (! EQ (Vx_no_window_manager
, Qt
))
9990 x_wm_set_window_state (f
, IconicState
);
9991 /* This was XtPopup, but that did nothing for an iconified frame. */
9992 XtMapWidget (f
->output_data
.x
->widget
);
9993 /* The server won't give us any event to indicate
9994 that an invisible frame was changed to an icon,
9995 so we have to record it here. */
9996 SET_FRAME_VISIBLE (f
, 0);
9997 SET_FRAME_ICONIFIED (f
, 1);
10002 result
= XIconifyWindow (FRAME_X_DISPLAY (f
),
10003 XtWindow (f
->output_data
.x
->widget
),
10004 DefaultScreen (FRAME_X_DISPLAY (f
)));
10008 error ("Can't notify window manager of iconification");
10010 SET_FRAME_ICONIFIED (f
, 1);
10011 SET_FRAME_VISIBLE (f
, 0);
10014 XFlush (FRAME_X_DISPLAY (f
));
10016 #else /* not USE_X_TOOLKIT */
10018 /* Make sure the X server knows where the window should be positioned,
10019 in case the user deiconifies with the window manager. */
10020 if (! FRAME_VISIBLE_P (f
)
10021 && ! FRAME_ICONIFIED_P (f
)
10022 && ! FRAME_X_EMBEDDED_P (f
))
10023 x_set_offset (f
, f
->left_pos
, f
->top_pos
, 0);
10025 /* Since we don't know which revision of X we're running, we'll use both
10026 the X11R3 and X11R4 techniques. I don't know if this is a good idea. */
10028 /* X11R4: send a ClientMessage to the window manager using the
10029 WM_CHANGE_STATE type. */
10033 msg
.xclient
.window
= FRAME_X_WINDOW (f
);
10034 msg
.xclient
.type
= ClientMessage
;
10035 msg
.xclient
.message_type
= FRAME_DISPLAY_INFO (f
)->Xatom_wm_change_state
;
10036 msg
.xclient
.format
= 32;
10037 msg
.xclient
.data
.l
[0] = IconicState
;
10039 if (! XSendEvent (FRAME_X_DISPLAY (f
),
10040 DefaultRootWindow (FRAME_X_DISPLAY (f
)),
10042 SubstructureRedirectMask
| SubstructureNotifyMask
,
10046 error ("Can't notify window manager of iconification");
10050 /* X11R3: set the initial_state field of the window manager hints to
10052 x_wm_set_window_state (f
, IconicState
);
10054 if (!FRAME_VISIBLE_P (f
))
10056 /* If the frame was withdrawn, before, we must map it. */
10057 XMapRaised (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
));
10060 SET_FRAME_ICONIFIED (f
, 1);
10061 SET_FRAME_VISIBLE (f
, 0);
10063 XFlush (FRAME_X_DISPLAY (f
));
10065 #endif /* not USE_X_TOOLKIT */
10069 /* Free X resources of frame F. */
10072 x_free_frame_resources (struct frame
*f
)
10074 struct x_display_info
*dpyinfo
= FRAME_DISPLAY_INFO (f
);
10075 Mouse_HLInfo
*hlinfo
= &dpyinfo
->mouse_highlight
;
10076 #ifdef USE_X_TOOLKIT
10078 struct scroll_bar
*b
;
10083 /* If a display connection is dead, don't try sending more
10084 commands to the X server. */
10085 if (dpyinfo
->display
)
10087 /* Always exit with visible pointer to avoid weird issue
10088 with Xfixes (Bug#17609). */
10089 if (f
->pointer_invisible
)
10090 FRAME_DISPLAY_INFO (f
)->toggle_visible_pointer (f
, 0);
10092 /* We must free faces before destroying windows because some
10093 font-driver (e.g. xft) access a window while finishing a
10095 free_frame_faces (f
);
10097 if (f
->output_data
.x
->icon_desc
)
10098 XDestroyWindow (FRAME_X_DISPLAY (f
), f
->output_data
.x
->icon_desc
);
10100 #ifdef USE_X_TOOLKIT
10101 /* Explicitly destroy the scroll bars of the frame. Without
10102 this, we get "BadDrawable" errors from the toolkit later on,
10103 presumably from expose events generated for the disappearing
10104 toolkit scroll bars. */
10105 for (bar
= FRAME_SCROLL_BARS (f
); !NILP (bar
); bar
= b
->next
)
10107 b
= XSCROLL_BAR (bar
);
10108 x_scroll_bar_remove (b
);
10114 free_frame_xic (f
);
10117 #ifdef USE_X_TOOLKIT
10118 if (f
->output_data
.x
->widget
)
10120 XtDestroyWidget (f
->output_data
.x
->widget
);
10121 f
->output_data
.x
->widget
= NULL
;
10123 /* Tooltips don't have widgets, only a simple X window, even if
10124 we are using a toolkit. */
10125 else if (FRAME_X_WINDOW (f
))
10126 XDestroyWindow (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
));
10128 free_frame_menubar (f
);
10130 if (f
->shell_position
)
10131 xfree (f
->shell_position
);
10132 #else /* !USE_X_TOOLKIT */
10135 xg_free_frame_widgets (f
);
10136 #endif /* USE_GTK */
10138 if (FRAME_X_WINDOW (f
))
10139 XDestroyWindow (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
));
10140 #endif /* !USE_X_TOOLKIT */
10142 unload_color (f
, FRAME_FOREGROUND_PIXEL (f
));
10143 unload_color (f
, FRAME_BACKGROUND_PIXEL (f
));
10144 unload_color (f
, f
->output_data
.x
->cursor_pixel
);
10145 unload_color (f
, f
->output_data
.x
->cursor_foreground_pixel
);
10146 unload_color (f
, f
->output_data
.x
->border_pixel
);
10147 unload_color (f
, f
->output_data
.x
->mouse_pixel
);
10149 if (f
->output_data
.x
->scroll_bar_background_pixel
!= -1)
10150 unload_color (f
, f
->output_data
.x
->scroll_bar_background_pixel
);
10151 if (f
->output_data
.x
->scroll_bar_foreground_pixel
!= -1)
10152 unload_color (f
, f
->output_data
.x
->scroll_bar_foreground_pixel
);
10153 #if defined (USE_LUCID) && defined (USE_TOOLKIT_SCROLL_BARS)
10154 /* Scrollbar shadow colors. */
10155 if (f
->output_data
.x
->scroll_bar_top_shadow_pixel
!= -1)
10156 unload_color (f
, f
->output_data
.x
->scroll_bar_top_shadow_pixel
);
10157 if (f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
!= -1)
10158 unload_color (f
, f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
);
10159 #endif /* USE_LUCID && USE_TOOLKIT_SCROLL_BARS */
10160 if (f
->output_data
.x
->white_relief
.pixel
!= -1)
10161 unload_color (f
, f
->output_data
.x
->white_relief
.pixel
);
10162 if (f
->output_data
.x
->black_relief
.pixel
!= -1)
10163 unload_color (f
, f
->output_data
.x
->black_relief
.pixel
);
10167 /* Free extra GCs allocated by x_setup_relief_colors. */
10168 if (f
->output_data
.x
->white_relief
.gc
)
10170 XFreeGC (dpyinfo
->display
, f
->output_data
.x
->white_relief
.gc
);
10171 f
->output_data
.x
->white_relief
.gc
= 0;
10173 if (f
->output_data
.x
->black_relief
.gc
)
10175 XFreeGC (dpyinfo
->display
, f
->output_data
.x
->black_relief
.gc
);
10176 f
->output_data
.x
->black_relief
.gc
= 0;
10179 /* Free cursors. */
10180 if (f
->output_data
.x
->text_cursor
!= 0)
10181 XFreeCursor (FRAME_X_DISPLAY (f
), f
->output_data
.x
->text_cursor
);
10182 if (f
->output_data
.x
->nontext_cursor
!= 0)
10183 XFreeCursor (FRAME_X_DISPLAY (f
), f
->output_data
.x
->nontext_cursor
);
10184 if (f
->output_data
.x
->modeline_cursor
!= 0)
10185 XFreeCursor (FRAME_X_DISPLAY (f
), f
->output_data
.x
->modeline_cursor
);
10186 if (f
->output_data
.x
->hand_cursor
!= 0)
10187 XFreeCursor (FRAME_X_DISPLAY (f
), f
->output_data
.x
->hand_cursor
);
10188 if (f
->output_data
.x
->hourglass_cursor
!= 0)
10189 XFreeCursor (FRAME_X_DISPLAY (f
), f
->output_data
.x
->hourglass_cursor
);
10190 if (f
->output_data
.x
->horizontal_drag_cursor
!= 0)
10191 XFreeCursor (FRAME_X_DISPLAY (f
), f
->output_data
.x
->horizontal_drag_cursor
);
10192 if (f
->output_data
.x
->vertical_drag_cursor
!= 0)
10193 XFreeCursor (FRAME_X_DISPLAY (f
), f
->output_data
.x
->vertical_drag_cursor
);
10195 XFlush (FRAME_X_DISPLAY (f
));
10198 xfree (f
->output_data
.x
->saved_menu_event
);
10199 xfree (f
->output_data
.x
);
10200 f
->output_data
.x
= NULL
;
10202 if (f
== dpyinfo
->x_focus_frame
)
10203 dpyinfo
->x_focus_frame
= 0;
10204 if (f
== dpyinfo
->x_focus_event_frame
)
10205 dpyinfo
->x_focus_event_frame
= 0;
10206 if (f
== dpyinfo
->x_highlight_frame
)
10207 dpyinfo
->x_highlight_frame
= 0;
10208 if (f
== hlinfo
->mouse_face_mouse_frame
)
10209 reset_mouse_highlight (hlinfo
);
10215 /* Destroy the X window of frame F. */
10218 x_destroy_window (struct frame
*f
)
10220 struct x_display_info
*dpyinfo
= FRAME_DISPLAY_INFO (f
);
10222 /* If a display connection is dead, don't try sending more
10223 commands to the X server. */
10224 if (dpyinfo
->display
!= 0)
10225 x_free_frame_resources (f
);
10227 dpyinfo
->reference_count
--;
10231 /* Setting window manager hints. */
10233 /* Set the normal size hints for the window manager, for frame F.
10234 FLAGS is the flags word to use--or 0 meaning preserve the flags
10235 that the window now has.
10236 If USER_POSITION, set the USPosition
10237 flag (this is useful when FLAGS is 0).
10238 The GTK version is in gtkutils.c. */
10242 x_wm_set_size_hint (struct frame
*f
, long flags
, bool user_position
)
10244 XSizeHints size_hints
;
10245 Window window
= FRAME_OUTER_WINDOW (f
);
10250 #ifdef USE_X_TOOLKIT
10251 if (f
->output_data
.x
->widget
)
10253 widget_update_wm_size_hints (f
->output_data
.x
->widget
);
10258 /* Setting PMaxSize caused various problems. */
10259 size_hints
.flags
= PResizeInc
| PMinSize
/* | PMaxSize */;
10261 size_hints
.x
= f
->left_pos
;
10262 size_hints
.y
= f
->top_pos
;
10264 size_hints
.height
= FRAME_PIXEL_HEIGHT (f
);
10265 size_hints
.width
= FRAME_PIXEL_WIDTH (f
);
10267 size_hints
.width_inc
= frame_resize_pixelwise
? 1 : FRAME_COLUMN_WIDTH (f
);
10268 size_hints
.height_inc
= frame_resize_pixelwise
? 1 : FRAME_LINE_HEIGHT (f
);
10270 size_hints
.max_width
= x_display_pixel_width (FRAME_DISPLAY_INFO (f
))
10271 - FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f
, 0);
10272 size_hints
.max_height
= x_display_pixel_height (FRAME_DISPLAY_INFO (f
))
10273 - FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f
, 0);
10275 /* Calculate the base and minimum sizes. */
10277 int base_width
, base_height
;
10278 int min_rows
= 0, min_cols
= 0;
10280 base_width
= FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f
, 0);
10281 base_height
= FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f
, 0);
10283 if (frame_resize_pixelwise
)
10284 /* Needed to prevent a bad protocol error crash when making the
10285 frame size very small. */
10287 min_cols
= 2 * min_cols
;
10288 min_rows
= 2 * min_rows
;
10291 /* The window manager uses the base width hints to calculate the
10292 current number of rows and columns in the frame while
10293 resizing; min_width and min_height aren't useful for this
10294 purpose, since they might not give the dimensions for a
10295 zero-row, zero-column frame.
10297 We use the base_width and base_height members if we have
10298 them; otherwise, we set the min_width and min_height members
10299 to the size for a zero x zero frame. */
10301 size_hints
.flags
|= PBaseSize
;
10302 size_hints
.base_width
= base_width
;
10303 size_hints
.base_height
= base_height
+ FRAME_MENUBAR_HEIGHT (f
);
10304 size_hints
.min_width
= base_width
+ min_cols
* FRAME_COLUMN_WIDTH (f
);
10305 size_hints
.min_height
= base_height
+ min_rows
* FRAME_LINE_HEIGHT (f
);
10308 /* If we don't need the old flags, we don't need the old hint at all. */
10311 size_hints
.flags
|= flags
;
10316 XSizeHints hints
; /* Sometimes I hate X Windows... */
10317 long supplied_return
;
10320 value
= XGetWMNormalHints (FRAME_X_DISPLAY (f
), window
, &hints
,
10324 size_hints
.flags
|= flags
;
10329 if (hints
.flags
& PSize
)
10330 size_hints
.flags
|= PSize
;
10331 if (hints
.flags
& PPosition
)
10332 size_hints
.flags
|= PPosition
;
10333 if (hints
.flags
& USPosition
)
10334 size_hints
.flags
|= USPosition
;
10335 if (hints
.flags
& USSize
)
10336 size_hints
.flags
|= USSize
;
10343 size_hints
.win_gravity
= f
->win_gravity
;
10344 size_hints
.flags
|= PWinGravity
;
10348 size_hints
.flags
&= ~ PPosition
;
10349 size_hints
.flags
|= USPosition
;
10351 #endif /* PWinGravity */
10353 XSetWMNormalHints (FRAME_X_DISPLAY (f
), window
, &size_hints
);
10355 #endif /* not USE_GTK */
10357 /* Used for IconicState or NormalState */
10360 x_wm_set_window_state (struct frame
*f
, int state
)
10362 #ifdef USE_X_TOOLKIT
10365 XtSetArg (al
[0], XtNinitialState
, state
);
10366 XtSetValues (f
->output_data
.x
->widget
, al
, 1);
10367 #else /* not USE_X_TOOLKIT */
10368 Window window
= FRAME_X_WINDOW (f
);
10370 f
->output_data
.x
->wm_hints
.flags
|= StateHint
;
10371 f
->output_data
.x
->wm_hints
.initial_state
= state
;
10373 XSetWMHints (FRAME_X_DISPLAY (f
), window
, &f
->output_data
.x
->wm_hints
);
10374 #endif /* not USE_X_TOOLKIT */
10378 x_wm_set_icon_pixmap (struct frame
*f
, ptrdiff_t pixmap_id
)
10380 Pixmap icon_pixmap
, icon_mask
;
10382 #if !defined USE_X_TOOLKIT && !defined USE_GTK
10383 Window window
= FRAME_OUTER_WINDOW (f
);
10388 icon_pixmap
= x_bitmap_pixmap (f
, pixmap_id
);
10389 f
->output_data
.x
->wm_hints
.icon_pixmap
= icon_pixmap
;
10390 icon_mask
= x_bitmap_mask (f
, pixmap_id
);
10391 f
->output_data
.x
->wm_hints
.icon_mask
= icon_mask
;
10395 /* It seems there is no way to turn off use of an icon
10403 xg_set_frame_icon (f
, icon_pixmap
, icon_mask
);
10407 #elif defined (USE_X_TOOLKIT) /* same as in x_wm_set_window_state. */
10411 XtSetArg (al
[0], XtNiconPixmap
, icon_pixmap
);
10412 XtSetValues (f
->output_data
.x
->widget
, al
, 1);
10413 XtSetArg (al
[0], XtNiconMask
, icon_mask
);
10414 XtSetValues (f
->output_data
.x
->widget
, al
, 1);
10417 #else /* not USE_X_TOOLKIT && not USE_GTK */
10419 f
->output_data
.x
->wm_hints
.flags
|= (IconPixmapHint
| IconMaskHint
);
10420 XSetWMHints (FRAME_X_DISPLAY (f
), window
, &f
->output_data
.x
->wm_hints
);
10422 #endif /* not USE_X_TOOLKIT && not USE_GTK */
10426 x_wm_set_icon_position (struct frame
*f
, int icon_x
, int icon_y
)
10428 Window window
= FRAME_OUTER_WINDOW (f
);
10430 f
->output_data
.x
->wm_hints
.flags
|= IconPositionHint
;
10431 f
->output_data
.x
->wm_hints
.icon_x
= icon_x
;
10432 f
->output_data
.x
->wm_hints
.icon_y
= icon_y
;
10434 XSetWMHints (FRAME_X_DISPLAY (f
), window
, &f
->output_data
.x
->wm_hints
);
10438 /***********************************************************************
10440 ***********************************************************************/
10444 /* Check that FONT is valid on frame F. It is if it can be found in F's
10448 x_check_font (struct frame
*f
, struct font
*font
)
10450 eassert (font
!= NULL
&& ! NILP (font
->props
[FONT_TYPE_INDEX
]));
10451 if (font
->driver
->check
)
10452 eassert (font
->driver
->check (f
, font
) == 0);
10455 #endif /* GLYPH_DEBUG */
10458 /***********************************************************************
10460 ***********************************************************************/
10462 #ifdef USE_X_TOOLKIT
10463 static XrmOptionDescRec emacs_options
[] = {
10464 {"-geometry", ".geometry", XrmoptionSepArg
, NULL
},
10465 {"-iconic", ".iconic", XrmoptionNoArg
, (XtPointer
) "yes"},
10467 {"-internal-border-width", "*EmacsScreen.internalBorderWidth",
10468 XrmoptionSepArg
, NULL
},
10469 {"-ib", "*EmacsScreen.internalBorderWidth", XrmoptionSepArg
, NULL
},
10471 {"-T", "*EmacsShell.title", XrmoptionSepArg
, (XtPointer
) NULL
},
10472 {"-wn", "*EmacsShell.title", XrmoptionSepArg
, (XtPointer
) NULL
},
10473 {"-title", "*EmacsShell.title", XrmoptionSepArg
, (XtPointer
) NULL
},
10474 {"-iconname", "*EmacsShell.iconName", XrmoptionSepArg
, (XtPointer
) NULL
},
10475 {"-in", "*EmacsShell.iconName", XrmoptionSepArg
, (XtPointer
) NULL
},
10476 {"-mc", "*pointerColor", XrmoptionSepArg
, (XtPointer
) NULL
},
10477 {"-cr", "*cursorColor", XrmoptionSepArg
, (XtPointer
) NULL
}
10480 /* Whether atimer for Xt timeouts is activated or not. */
10482 static int x_timeout_atimer_activated_flag
;
10484 #endif /* USE_X_TOOLKIT */
10486 static int x_initialized
;
10488 /* Test whether two display-name strings agree up to the dot that separates
10489 the screen number from the server number. */
10491 same_x_server (const char *name1
, const char *name2
)
10493 int seen_colon
= 0;
10494 const char *system_name
= SSDATA (Vsystem_name
);
10495 ptrdiff_t system_name_length
= SBYTES (Vsystem_name
);
10496 ptrdiff_t length_until_period
= 0;
10498 while (system_name
[length_until_period
] != 0
10499 && system_name
[length_until_period
] != '.')
10500 length_until_period
++;
10502 /* Treat `unix' like an empty host name. */
10503 if (! strncmp (name1
, "unix:", 5))
10505 if (! strncmp (name2
, "unix:", 5))
10507 /* Treat this host's name like an empty host name. */
10508 if (! strncmp (name1
, system_name
, system_name_length
)
10509 && name1
[system_name_length
] == ':')
10510 name1
+= system_name_length
;
10511 if (! strncmp (name2
, system_name
, system_name_length
)
10512 && name2
[system_name_length
] == ':')
10513 name2
+= system_name_length
;
10514 /* Treat this host's domainless name like an empty host name. */
10515 if (! strncmp (name1
, system_name
, length_until_period
)
10516 && name1
[length_until_period
] == ':')
10517 name1
+= length_until_period
;
10518 if (! strncmp (name2
, system_name
, length_until_period
)
10519 && name2
[length_until_period
] == ':')
10520 name2
+= length_until_period
;
10522 for (; *name1
!= '\0' && *name1
== *name2
; name1
++, name2
++)
10526 if (seen_colon
&& *name1
== '.')
10530 && (*name1
== '.' || *name1
== '\0')
10531 && (*name2
== '.' || *name2
== '\0'));
10534 /* Count number of set bits in mask and number of bits to shift to
10535 get to the first bit. With MASK 0x7e0, *BITS is set to 6, and *OFFSET
10538 get_bits_and_offset (unsigned long mask
, int *bits
, int *offset
)
10543 while (!(mask
& 1))
10559 /* Return 1 if display DISPLAY is available for use, 0 otherwise.
10560 But don't permanently open it, just test its availability. */
10563 x_display_ok (const char *display
)
10565 Display
*dpy
= XOpenDisplay (display
);
10566 return dpy
? (XCloseDisplay (dpy
), 1) : 0;
10571 my_log_handler (const gchar
*log_domain
, GLogLevelFlags log_level
,
10572 const gchar
*msg
, gpointer user_data
)
10574 if (!strstr (msg
, "g_set_prgname"))
10575 fprintf (stderr
, "%s-WARNING **: %s\n", log_domain
, msg
);
10579 /* Create invisible cursor on X display referred by DPYINFO. */
10582 make_invisible_cursor (struct x_display_info
*dpyinfo
)
10584 Display
*dpy
= dpyinfo
->display
;
10585 static char const no_data
[] = { 0 };
10590 x_catch_errors (dpy
);
10591 pix
= XCreateBitmapFromData (dpy
, dpyinfo
->root_window
, no_data
, 1, 1);
10592 if (! x_had_errors_p (dpy
) && pix
!= None
)
10596 col
.red
= col
.green
= col
.blue
= 0;
10597 col
.flags
= DoRed
| DoGreen
| DoBlue
;
10598 pixc
= XCreatePixmapCursor (dpy
, pix
, pix
, &col
, &col
, 0, 0);
10599 if (! x_had_errors_p (dpy
) && pixc
!= None
)
10601 XFreePixmap (dpy
, pix
);
10604 x_uncatch_errors ();
10609 /* True if DPY supports Xfixes extension >= 4. */
10612 x_probe_xfixes_extension (Display
*dpy
)
10616 return XFixesQueryVersion (dpy
, &major
, &minor
) && major
>= 4;
10619 #endif /* HAVE_XFIXES */
10622 /* Toggle mouse pointer visibility on frame F by using Xfixes functions. */
10625 xfixes_toggle_visible_pointer (struct frame
*f
, bool invisible
)
10629 XFixesHideCursor (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
));
10631 XFixesShowCursor (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
));
10632 f
->pointer_invisible
= invisible
;
10635 #endif /* HAVE_XFIXES */
10638 /* Toggle mouse pointer visibility on frame F by using invisible cursor. */
10641 x_toggle_visible_pointer (struct frame
*f
, bool invisible
)
10643 eassert (FRAME_DISPLAY_INFO (f
)->invisible_cursor
!= 0);
10645 XDefineCursor (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
10646 FRAME_DISPLAY_INFO (f
)->invisible_cursor
);
10648 XDefineCursor (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
10649 f
->output_data
.x
->current_cursor
);
10650 f
->pointer_invisible
= invisible
;
10653 /* Setup pointer blanking, prefer Xfixes if available. */
10656 x_setup_pointer_blanking (struct x_display_info
*dpyinfo
)
10658 /* FIXME: the brave tester should set EMACS_XFIXES because we're suspecting
10659 X server bug, see http://debbugs.gnu.org/cgi/bugreport.cgi?bug=17609. */
10660 if (egetenv ("EMACS_XFIXES") && x_probe_xfixes_extension (dpyinfo
->display
))
10661 dpyinfo
->toggle_visible_pointer
= xfixes_toggle_visible_pointer
;
10664 dpyinfo
->toggle_visible_pointer
= x_toggle_visible_pointer
;
10665 dpyinfo
->invisible_cursor
= make_invisible_cursor (dpyinfo
);
10669 /* Current X display connection identifier. Incremented for each next
10670 connection established. */
10671 static unsigned x_display_id
;
10673 /* Open a connection to X display DISPLAY_NAME, and return
10674 the structure that describes the open display.
10675 If we cannot contact the display, return null. */
10677 struct x_display_info
*
10678 x_term_init (Lisp_Object display_name
, char *xrm_option
, char *resource_name
)
10681 struct terminal
*terminal
;
10682 struct x_display_info
*dpyinfo
;
10688 if (!x_initialized
)
10694 if (! x_display_ok (SSDATA (display_name
)))
10695 error ("Display %s can't be opened", SSDATA (display_name
));
10699 #define NUM_ARGV 10
10701 char *argv
[NUM_ARGV
];
10702 char **argv2
= argv
;
10705 if (x_initialized
++ > 1)
10707 xg_display_open (SSDATA (display_name
), &dpy
);
10711 static char display_opt
[] = "--display";
10712 static char name_opt
[] = "--name";
10714 for (argc
= 0; argc
< NUM_ARGV
; ++argc
)
10718 argv
[argc
++] = initial_argv
[0];
10720 if (! NILP (display_name
))
10722 argv
[argc
++] = display_opt
;
10723 argv
[argc
++] = SSDATA (display_name
);
10726 argv
[argc
++] = name_opt
;
10727 argv
[argc
++] = resource_name
;
10729 XSetLocaleModifiers ("");
10731 /* Emacs can only handle core input events, so make sure
10732 Gtk doesn't use Xinput or Xinput2 extensions. */
10733 xputenv ("GDK_CORE_DEVICE_EVENTS=1");
10735 /* Work around GLib bug that outputs a faulty warning. See
10736 https://bugzilla.gnome.org/show_bug.cgi?id=563627. */
10737 id
= g_log_set_handler ("GLib", G_LOG_LEVEL_WARNING
| G_LOG_FLAG_FATAL
10738 | G_LOG_FLAG_RECURSION
, my_log_handler
, NULL
);
10740 /* NULL window -> events for all windows go to our function.
10741 Call before gtk_init so Gtk+ event filters comes after our. */
10742 gdk_window_add_filter (NULL
, event_handler_gdk
, NULL
);
10744 /* gtk_init does set_locale. Fix locale before and after. */
10746 gtk_init (&argc
, &argv2
);
10749 g_log_remove_handler ("GLib", id
);
10753 dpy
= DEFAULT_GDK_DISPLAY ();
10755 #if ! GTK_CHECK_VERSION (2, 90, 0)
10756 /* Load our own gtkrc if it exists. */
10758 const char *file
= "~/.emacs.d/gtkrc";
10759 Lisp_Object s
, abs_file
;
10761 s
= build_string (file
);
10762 abs_file
= Fexpand_file_name (s
, Qnil
);
10764 if (! NILP (abs_file
) && !NILP (Ffile_readable_p (abs_file
)))
10765 gtk_rc_parse (SSDATA (abs_file
));
10769 XSetErrorHandler (x_error_handler
);
10770 XSetIOErrorHandler (x_io_error_quitter
);
10773 #else /* not USE_GTK */
10774 #ifdef USE_X_TOOLKIT
10775 /* weiner@footloose.sps.mot.com reports that this causes
10777 X protocol error: BadAtom (invalid Atom parameter)
10778 on protocol request 18skiloaf.
10779 So let's not use it until R6. */
10780 #ifdef HAVE_X11XTR6
10781 XtSetLanguageProc (NULL
, NULL
, NULL
);
10792 argv
[argc
++] = "-xrm";
10793 argv
[argc
++] = xrm_option
;
10795 turn_on_atimers (0);
10796 dpy
= XtOpenDisplay (Xt_app_con
, SSDATA (display_name
),
10797 resource_name
, EMACS_CLASS
,
10798 emacs_options
, XtNumber (emacs_options
),
10800 turn_on_atimers (1);
10802 #ifdef HAVE_X11XTR6
10803 /* I think this is to compensate for XtSetLanguageProc. */
10808 #else /* not USE_X_TOOLKIT */
10809 XSetLocaleModifiers ("");
10810 dpy
= XOpenDisplay (SSDATA (display_name
));
10811 #endif /* not USE_X_TOOLKIT */
10812 #endif /* not USE_GTK*/
10814 /* Detect failure. */
10821 /* We have definitely succeeded. Record the new connection. */
10823 dpyinfo
= xzalloc (sizeof *dpyinfo
);
10824 terminal
= x_create_terminal (dpyinfo
);
10827 struct x_display_info
*share
;
10829 for (share
= x_display_list
; share
; share
= share
->next
)
10830 if (same_x_server (SSDATA (XCAR (share
->name_list_element
)),
10831 SSDATA (display_name
)))
10834 terminal
->kboard
= share
->terminal
->kboard
;
10837 terminal
->kboard
= allocate_kboard (Qx
);
10839 if (!EQ (XSYMBOL (Qvendor_specific_keysyms
)->function
, Qunbound
))
10841 char *vendor
= ServerVendor (dpy
);
10843 /* Protect terminal from GC before removing it from the
10844 list of terminals. */
10845 struct gcpro gcpro1
;
10846 Lisp_Object gcpro_term
;
10847 XSETTERMINAL (gcpro_term
, terminal
);
10848 GCPRO1 (gcpro_term
);
10850 /* Temporarily hide the partially initialized terminal. */
10851 terminal_list
= terminal
->next_terminal
;
10853 kset_system_key_alist
10855 call1 (Qvendor_specific_keysyms
,
10856 vendor
? build_string (vendor
) : empty_unibyte_string
));
10858 terminal
->next_terminal
= terminal_list
;
10859 terminal_list
= terminal
;
10863 /* Don't let the initial kboard remain current longer than necessary.
10864 That would cause problems if a file loaded on startup tries to
10865 prompt in the mini-buffer. */
10866 if (current_kboard
== initial_kboard
)
10867 current_kboard
= terminal
->kboard
;
10869 terminal
->kboard
->reference_count
++;
10872 /* Put this display on the chain. */
10873 dpyinfo
->next
= x_display_list
;
10874 x_display_list
= dpyinfo
;
10876 dpyinfo
->name_list_element
= Fcons (display_name
, Qnil
);
10877 dpyinfo
->display
= dpy
;
10878 dpyinfo
->connection
= ConnectionNumber (dpyinfo
->display
);
10880 /* Set the name of the terminal. */
10881 terminal
->name
= xlispstrdup (display_name
);
10884 XSetAfterFunction (x_current_display
, x_trace_wire
);
10887 lim
= min (PTRDIFF_MAX
, SIZE_MAX
) - sizeof "@";
10888 if (lim
- SBYTES (Vinvocation_name
) < SBYTES (Vsystem_name
))
10889 memory_full (SIZE_MAX
);
10890 dpyinfo
->x_id
= ++x_display_id
;
10891 dpyinfo
->x_id_name
= xmalloc (SBYTES (Vinvocation_name
)
10892 + SBYTES (Vsystem_name
) + 2);
10893 strcat (strcat (strcpy (dpyinfo
->x_id_name
, SSDATA (Vinvocation_name
)), "@"),
10894 SSDATA (Vsystem_name
));
10896 /* Figure out which modifier bits mean what. */
10897 x_find_modifier_meanings (dpyinfo
);
10899 /* Get the scroll bar cursor. */
10901 /* We must create a GTK cursor, it is required for GTK widgets. */
10902 dpyinfo
->xg_cursor
= xg_create_default_cursor (dpyinfo
->display
);
10903 #endif /* USE_GTK */
10905 dpyinfo
->vertical_scroll_bar_cursor
10906 = XCreateFontCursor (dpyinfo
->display
, XC_sb_v_double_arrow
);
10908 dpyinfo
->horizontal_scroll_bar_cursor
10909 = XCreateFontCursor (dpyinfo
->display
, XC_sb_h_double_arrow
);
10911 xrdb
= x_load_resources (dpyinfo
->display
, xrm_option
,
10912 resource_name
, EMACS_CLASS
);
10913 #ifdef HAVE_XRMSETDATABASE
10914 XrmSetDatabase (dpyinfo
->display
, xrdb
);
10916 dpyinfo
->display
->db
= xrdb
;
10918 /* Put the rdb where we can find it in a way that works on
10920 dpyinfo
->xrdb
= xrdb
;
10922 dpyinfo
->screen
= ScreenOfDisplay (dpyinfo
->display
,
10923 DefaultScreen (dpyinfo
->display
));
10924 select_visual (dpyinfo
);
10925 dpyinfo
->cmap
= DefaultColormapOfScreen (dpyinfo
->screen
);
10926 dpyinfo
->root_window
= RootWindowOfScreen (dpyinfo
->screen
);
10927 dpyinfo
->icon_bitmap_id
= -1;
10928 dpyinfo
->wm_type
= X_WMTYPE_UNKNOWN
;
10930 reset_mouse_highlight (&dpyinfo
->mouse_highlight
);
10932 /* See if we can construct pixel values from RGB values. */
10933 if (dpyinfo
->visual
->class == TrueColor
)
10935 get_bits_and_offset (dpyinfo
->visual
->red_mask
,
10936 &dpyinfo
->red_bits
, &dpyinfo
->red_offset
);
10937 get_bits_and_offset (dpyinfo
->visual
->blue_mask
,
10938 &dpyinfo
->blue_bits
, &dpyinfo
->blue_offset
);
10939 get_bits_and_offset (dpyinfo
->visual
->green_mask
,
10940 &dpyinfo
->green_bits
, &dpyinfo
->green_offset
);
10943 /* See if a private colormap is requested. */
10944 if (dpyinfo
->visual
== DefaultVisualOfScreen (dpyinfo
->screen
))
10946 if (dpyinfo
->visual
->class == PseudoColor
)
10949 value
= display_x_get_resource (dpyinfo
,
10950 build_string ("privateColormap"),
10951 build_string ("PrivateColormap"),
10953 if (STRINGP (value
)
10954 && (!strcmp (SSDATA (value
), "true")
10955 || !strcmp (SSDATA (value
), "on")))
10956 dpyinfo
->cmap
= XCopyColormapAndFree (dpyinfo
->display
, dpyinfo
->cmap
);
10960 dpyinfo
->cmap
= XCreateColormap (dpyinfo
->display
, dpyinfo
->root_window
,
10961 dpyinfo
->visual
, AllocNone
);
10965 /* If we are using Xft, the following precautions should be made:
10967 1. Make sure that the Xrender extension is added before the Xft one.
10968 Otherwise, the close-display hook set by Xft is called after the one
10969 for Xrender, and the former tries to re-add the latter. This results
10970 in inconsistency of internal states and leads to X protocol error when
10971 one reconnects to the same X server (Bug#1696).
10973 2. Check dpi value in X resources. It is better we use it as well,
10974 since Xft will use it, as will all Gnome applications. If our real DPI
10975 is smaller or larger than the one Xft uses, our font will look smaller
10976 or larger than other for other applications, even if it is the same
10977 font name (monospace-10 for example). */
10979 int event_base
, error_base
;
10983 XRenderQueryExtension (dpyinfo
->display
, &event_base
, &error_base
);
10985 v
= XGetDefault (dpyinfo
->display
, "Xft", "dpi");
10986 if (v
!= NULL
&& sscanf (v
, "%lf", &d
) == 1)
10987 dpyinfo
->resy
= dpyinfo
->resx
= d
;
10991 if (dpyinfo
->resy
< 1)
10993 int screen_number
= XScreenNumberOfScreen (dpyinfo
->screen
);
10994 double pixels
= DisplayHeight (dpyinfo
->display
, screen_number
);
10995 double mm
= DisplayHeightMM (dpyinfo
->display
, screen_number
);
10996 /* Mac OS X 10.3's Xserver sometimes reports 0.0mm. */
10997 dpyinfo
->resy
= (mm
< 1) ? 100 : pixels
* 25.4 / mm
;
10998 pixels
= DisplayWidth (dpyinfo
->display
, screen_number
);
10999 mm
= DisplayWidthMM (dpyinfo
->display
, screen_number
);
11000 /* Mac OS X 10.3's Xserver sometimes reports 0.0mm. */
11001 dpyinfo
->resx
= (mm
< 1) ? 100 : pixels
* 25.4 / mm
;
11005 static const struct
11010 #define ATOM_REFS_INIT(string, member) \
11011 { string, offsetof (struct x_display_info, member) },
11012 ATOM_REFS_INIT ("WM_PROTOCOLS", Xatom_wm_protocols
)
11013 ATOM_REFS_INIT ("WM_TAKE_FOCUS", Xatom_wm_take_focus
)
11014 ATOM_REFS_INIT ("WM_SAVE_YOURSELF", Xatom_wm_save_yourself
)
11015 ATOM_REFS_INIT ("WM_DELETE_WINDOW", Xatom_wm_delete_window
)
11016 ATOM_REFS_INIT ("WM_CHANGE_STATE", Xatom_wm_change_state
)
11017 ATOM_REFS_INIT ("WM_CONFIGURE_DENIED", Xatom_wm_configure_denied
)
11018 ATOM_REFS_INIT ("WM_MOVED", Xatom_wm_window_moved
)
11019 ATOM_REFS_INIT ("WM_CLIENT_LEADER", Xatom_wm_client_leader
)
11020 ATOM_REFS_INIT ("Editres", Xatom_editres
)
11021 ATOM_REFS_INIT ("CLIPBOARD", Xatom_CLIPBOARD
)
11022 ATOM_REFS_INIT ("TIMESTAMP", Xatom_TIMESTAMP
)
11023 ATOM_REFS_INIT ("TEXT", Xatom_TEXT
)
11024 ATOM_REFS_INIT ("COMPOUND_TEXT", Xatom_COMPOUND_TEXT
)
11025 ATOM_REFS_INIT ("UTF8_STRING", Xatom_UTF8_STRING
)
11026 ATOM_REFS_INIT ("DELETE", Xatom_DELETE
)
11027 ATOM_REFS_INIT ("MULTIPLE", Xatom_MULTIPLE
)
11028 ATOM_REFS_INIT ("INCR", Xatom_INCR
)
11029 ATOM_REFS_INIT ("_EMACS_TMP_", Xatom_EMACS_TMP
)
11030 ATOM_REFS_INIT ("TARGETS", Xatom_TARGETS
)
11031 ATOM_REFS_INIT ("NULL", Xatom_NULL
)
11032 ATOM_REFS_INIT ("ATOM", Xatom_ATOM
)
11033 ATOM_REFS_INIT ("ATOM_PAIR", Xatom_ATOM_PAIR
)
11034 ATOM_REFS_INIT ("CLIPBOARD_MANAGER", Xatom_CLIPBOARD_MANAGER
)
11035 ATOM_REFS_INIT ("_XEMBED_INFO", Xatom_XEMBED_INFO
)
11036 /* For properties of font. */
11037 ATOM_REFS_INIT ("PIXEL_SIZE", Xatom_PIXEL_SIZE
)
11038 ATOM_REFS_INIT ("AVERAGE_WIDTH", Xatom_AVERAGE_WIDTH
)
11039 ATOM_REFS_INIT ("_MULE_BASELINE_OFFSET", Xatom_MULE_BASELINE_OFFSET
)
11040 ATOM_REFS_INIT ("_MULE_RELATIVE_COMPOSE", Xatom_MULE_RELATIVE_COMPOSE
)
11041 ATOM_REFS_INIT ("_MULE_DEFAULT_ASCENT", Xatom_MULE_DEFAULT_ASCENT
)
11042 /* Ghostscript support. */
11043 ATOM_REFS_INIT ("DONE", Xatom_DONE
)
11044 ATOM_REFS_INIT ("PAGE", Xatom_PAGE
)
11045 ATOM_REFS_INIT ("SCROLLBAR", Xatom_Scrollbar
)
11046 ATOM_REFS_INIT ("HORIZONTAL_SCROLLBAR", Xatom_Horizontal_Scrollbar
)
11047 ATOM_REFS_INIT ("_XEMBED", Xatom_XEMBED
)
11049 ATOM_REFS_INIT ("_NET_WM_STATE", Xatom_net_wm_state
)
11050 ATOM_REFS_INIT ("_NET_WM_STATE_FULLSCREEN", Xatom_net_wm_state_fullscreen
)
11051 ATOM_REFS_INIT ("_NET_WM_STATE_MAXIMIZED_HORZ",
11052 Xatom_net_wm_state_maximized_horz
)
11053 ATOM_REFS_INIT ("_NET_WM_STATE_MAXIMIZED_VERT",
11054 Xatom_net_wm_state_maximized_vert
)
11055 ATOM_REFS_INIT ("_NET_WM_STATE_STICKY", Xatom_net_wm_state_sticky
)
11056 ATOM_REFS_INIT ("_NET_WM_STATE_HIDDEN", Xatom_net_wm_state_hidden
)
11057 ATOM_REFS_INIT ("_NET_WM_WINDOW_TYPE", Xatom_net_window_type
)
11058 ATOM_REFS_INIT ("_NET_WM_WINDOW_TYPE_TOOLTIP",
11059 Xatom_net_window_type_tooltip
)
11060 ATOM_REFS_INIT ("_NET_WM_ICON_NAME", Xatom_net_wm_icon_name
)
11061 ATOM_REFS_INIT ("_NET_WM_NAME", Xatom_net_wm_name
)
11062 ATOM_REFS_INIT ("_NET_SUPPORTED", Xatom_net_supported
)
11063 ATOM_REFS_INIT ("_NET_SUPPORTING_WM_CHECK", Xatom_net_supporting_wm_check
)
11064 ATOM_REFS_INIT ("_NET_WM_WINDOW_OPACITY", Xatom_net_wm_window_opacity
)
11065 ATOM_REFS_INIT ("_NET_ACTIVE_WINDOW", Xatom_net_active_window
)
11066 ATOM_REFS_INIT ("_NET_FRAME_EXTENTS", Xatom_net_frame_extents
)
11067 ATOM_REFS_INIT ("_NET_CURRENT_DESKTOP", Xatom_net_current_desktop
)
11068 ATOM_REFS_INIT ("_NET_WORKAREA", Xatom_net_workarea
)
11069 /* Session management */
11070 ATOM_REFS_INIT ("SM_CLIENT_ID", Xatom_SM_CLIENT_ID
)
11071 ATOM_REFS_INIT ("_XSETTINGS_SETTINGS", Xatom_xsettings_prop
)
11072 ATOM_REFS_INIT ("MANAGER", Xatom_xsettings_mgr
)
11076 const int atom_count
= ARRAYELTS (atom_refs
);
11077 /* 1 for _XSETTINGS_SN */
11078 const int total_atom_count
= 1 + atom_count
;
11079 Atom
*atoms_return
= xmalloc (total_atom_count
* sizeof *atoms_return
);
11080 char **atom_names
= xmalloc (total_atom_count
* sizeof *atom_names
);
11081 static char const xsettings_fmt
[] = "_XSETTINGS_S%d";
11082 char xsettings_atom_name
[sizeof xsettings_fmt
- 2
11083 + INT_STRLEN_BOUND (int)];
11085 for (i
= 0; i
< atom_count
; i
++)
11086 atom_names
[i
] = (char *) atom_refs
[i
].name
;
11088 /* Build _XSETTINGS_SN atom name */
11089 sprintf (xsettings_atom_name
, xsettings_fmt
,
11090 XScreenNumberOfScreen (dpyinfo
->screen
));
11091 atom_names
[i
] = xsettings_atom_name
;
11093 XInternAtoms (dpyinfo
->display
, atom_names
, total_atom_count
,
11094 False
, atoms_return
);
11096 for (i
= 0; i
< atom_count
; i
++)
11097 *(Atom
*) ((char *) dpyinfo
+ atom_refs
[i
].offset
) = atoms_return
[i
];
11099 /* Manual copy of last atom */
11100 dpyinfo
->Xatom_xsettings_sel
= atoms_return
[i
];
11102 xfree (atom_names
);
11103 xfree (atoms_return
);
11106 dpyinfo
->x_dnd_atoms_size
= 8;
11107 dpyinfo
->x_dnd_atoms
= xmalloc (sizeof *dpyinfo
->x_dnd_atoms
11108 * dpyinfo
->x_dnd_atoms_size
);
11110 = XCreatePixmapFromBitmapData (dpyinfo
->display
, dpyinfo
->root_window
,
11111 gray_bits
, gray_width
, gray_height
,
11114 x_setup_pointer_blanking (dpyinfo
);
11117 xim_initialize (dpyinfo
, resource_name
);
11120 xsettings_initialize (dpyinfo
);
11122 /* This is only needed for distinguishing keyboard and process input. */
11123 if (dpyinfo
->connection
!= 0)
11124 add_keyboard_wait_descriptor (dpyinfo
->connection
);
11127 fcntl (dpyinfo
->connection
, F_SETOWN
, getpid ());
11128 #endif /* ! defined (F_SETOWN) */
11130 if (interrupt_input
)
11131 init_sigio (dpyinfo
->connection
);
11135 XrmValue d
, fr
, to
;
11138 dpy
= dpyinfo
->display
;
11139 d
.addr
= (XPointer
)&dpy
;
11140 d
.size
= sizeof (Display
*);
11141 fr
.addr
= XtDefaultFont
;
11142 fr
.size
= sizeof (XtDefaultFont
);
11143 to
.size
= sizeof (Font
*);
11144 to
.addr
= (XPointer
)&font
;
11145 x_catch_errors (dpy
);
11146 if (!XtCallConverter (dpy
, XtCvtStringToFont
, &d
, 1, &fr
, &to
, NULL
))
11148 if (x_had_errors_p (dpy
) || !XQueryFont (dpy
, font
))
11149 XrmPutLineResource (&xrdb
, "Emacs.dialog.*.font: 9x15");
11150 /* Do not free XFontStruct returned by the above call to XQueryFont.
11151 This leads to X protocol errors at XtCloseDisplay (Bug#18403). */
11152 x_uncatch_errors ();
11156 /* See if we should run in synchronous mode. This is useful
11157 for debugging X code. */
11160 value
= display_x_get_resource (dpyinfo
,
11161 build_string ("synchronous"),
11162 build_string ("Synchronous"),
11164 if (STRINGP (value
)
11165 && (!strcmp (SSDATA (value
), "true")
11166 || !strcmp (SSDATA (value
), "on")))
11167 XSynchronize (dpyinfo
->display
, True
);
11172 value
= display_x_get_resource (dpyinfo
,
11173 build_string ("useXIM"),
11174 build_string ("UseXIM"),
11177 if (STRINGP (value
)
11178 && (!strcmp (SSDATA (value
), "false")
11179 || !strcmp (SSDATA (value
), "off")))
11182 if (STRINGP (value
)
11183 && (!strcmp (SSDATA (value
), "true")
11184 || !strcmp (SSDATA (value
), "on")))
11190 /* Only do this for the very first display in the Emacs session.
11191 Ignore X session management when Emacs was first started on a
11192 tty or started as a daemon. */
11193 if (terminal
->id
== 1 && ! IS_DAEMON
)
11194 x_session_initialize (dpyinfo
);
11202 /* Get rid of display DPYINFO, deleting all frames on it,
11203 and without sending any more commands to the X server. */
11206 x_delete_display (struct x_display_info
*dpyinfo
)
11208 struct terminal
*t
;
11210 /* Close all frames and delete the generic struct terminal for this
11212 for (t
= terminal_list
; t
; t
= t
->next_terminal
)
11213 if (t
->type
== output_x_window
&& t
->display_info
.x
== dpyinfo
)
11216 /* Close X session management when we close its display. */
11217 if (t
->id
== 1 && x_session_have_connection ())
11218 x_session_close ();
11220 delete_terminal (t
);
11224 if (next_noop_dpyinfo
== dpyinfo
)
11225 next_noop_dpyinfo
= dpyinfo
->next
;
11227 if (x_display_list
== dpyinfo
)
11228 x_display_list
= dpyinfo
->next
;
11231 struct x_display_info
*tail
;
11233 for (tail
= x_display_list
; tail
; tail
= tail
->next
)
11234 if (tail
->next
== dpyinfo
)
11235 tail
->next
= tail
->next
->next
;
11238 xfree (dpyinfo
->x_id_name
);
11239 xfree (dpyinfo
->x_dnd_atoms
);
11240 xfree (dpyinfo
->color_cells
);
11244 #ifdef USE_X_TOOLKIT
11246 /* Atimer callback function for TIMER. Called every 0.1s to process
11247 Xt timeouts, if needed. We must avoid calling XtAppPending as
11248 much as possible because that function does an implicit XFlush
11249 that slows us down. */
11252 x_process_timeouts (struct atimer
*timer
)
11255 x_timeout_atimer_activated_flag
= 0;
11256 if (toolkit_scroll_bar_interaction
|| popup_activated ())
11258 while (XtAppPending (Xt_app_con
) & XtIMTimer
)
11259 XtAppProcessEvent (Xt_app_con
, XtIMTimer
);
11260 /* Reactivate the atimer for next time. */
11261 x_activate_timeout_atimer ();
11266 /* Install an asynchronous timer that processes Xt timeout events
11267 every 0.1s as long as either `toolkit_scroll_bar_interaction' or
11268 `popup_activated_flag' (in xmenu.c) is set. Make sure to call this
11269 function whenever these variables are set. This is necessary
11270 because some widget sets use timeouts internally, for example the
11271 LessTif menu bar, or the Xaw3d scroll bar. When Xt timeouts aren't
11272 processed, these widgets don't behave normally. */
11275 x_activate_timeout_atimer (void)
11278 if (!x_timeout_atimer_activated_flag
)
11280 struct timespec interval
= make_timespec (0, 100 * 1000 * 1000);
11281 start_atimer (ATIMER_RELATIVE
, interval
, x_process_timeouts
, 0);
11282 x_timeout_atimer_activated_flag
= 1;
11287 #endif /* USE_X_TOOLKIT */
11290 /* Set up use of X before we make the first connection. */
11292 static struct redisplay_interface x_redisplay_interface
=
11294 x_frame_parm_handlers
,
11298 x_clear_end_of_line
,
11300 x_after_update_window_line
,
11301 x_update_window_begin
,
11302 x_update_window_end
,
11304 x_clear_window_mouse_face
,
11305 x_get_glyph_overhangs
,
11306 x_fix_overlapping_area
,
11307 x_draw_fringe_bitmap
,
11308 0, /* define_fringe_bitmap */
11309 0, /* destroy_fringe_bitmap */
11310 x_compute_glyph_string_overhangs
,
11311 x_draw_glyph_string
,
11312 x_define_frame_cursor
,
11313 x_clear_frame_area
,
11314 x_draw_window_cursor
,
11315 x_draw_vertical_window_border
,
11316 x_draw_window_divider
,
11317 x_shift_glyphs_for_insert
,
11323 /* This function is called when the last frame on a display is deleted. */
11325 x_delete_terminal (struct terminal
*terminal
)
11327 struct x_display_info
*dpyinfo
= terminal
->display_info
.x
;
11329 /* Protect against recursive calls. delete_frame in
11330 delete_terminal calls us back when it deletes our last frame. */
11331 if (!terminal
->name
)
11336 /* We must close our connection to the XIM server before closing the
11339 xim_close_dpy (dpyinfo
);
11342 /* If called from x_connection_closed, the display may already be closed
11343 and dpyinfo->display was set to 0 to indicate that. */
11344 if (dpyinfo
->display
)
11346 x_destroy_all_bitmaps (dpyinfo
);
11347 XSetCloseDownMode (dpyinfo
->display
, DestroyAll
);
11349 /* Whether or not XCloseDisplay destroys the associated resource
11350 database depends on the version of libX11. To avoid both
11351 crash and memory leak, we dissociate the database from the
11352 display and then destroy dpyinfo->xrdb ourselves.
11354 Unfortunately, the above strategy does not work in some
11355 situations due to a bug in newer versions of libX11: because
11356 XrmSetDatabase doesn't clear the flag XlibDisplayDfltRMDB if
11357 dpy->db is NULL, XCloseDisplay destroys the associated
11358 database whereas it has not been created by XGetDefault
11359 (Bug#21974 in freedesktop.org Bugzilla). As a workaround, we
11360 don't destroy the database here in order to avoid the crash
11361 in the above situations for now, though that may cause memory
11362 leaks in other situations. */
11364 #ifdef HAVE_XRMSETDATABASE
11365 XrmSetDatabase (dpyinfo
->display
, NULL
);
11367 dpyinfo
->display
->db
= NULL
;
11369 /* We used to call XrmDestroyDatabase from x_delete_display, but
11370 some older versions of libX11 crash if we call it after
11371 closing all the displays. */
11372 XrmDestroyDatabase (dpyinfo
->xrdb
);
11376 xg_display_close (dpyinfo
->display
);
11378 #ifdef USE_X_TOOLKIT
11379 XtCloseDisplay (dpyinfo
->display
);
11381 XCloseDisplay (dpyinfo
->display
);
11383 #endif /* ! USE_GTK */
11385 /* No more input on this descriptor. Do not close it because
11386 it's already closed by X(t)CloseDisplay (Bug#18403). */
11387 eassert (0 <= dpyinfo
->connection
);
11388 delete_keyboard_wait_descriptor (dpyinfo
->connection
);
11390 /* Mark as dead. */
11391 dpyinfo
->display
= NULL
;
11392 dpyinfo
->connection
= -1;
11395 x_delete_display (dpyinfo
);
11399 /* Create a struct terminal, initialize it with the X11 specific
11400 functions and make DISPLAY->TERMINAL point to it. */
11402 static struct terminal
*
11403 x_create_terminal (struct x_display_info
*dpyinfo
)
11405 struct terminal
*terminal
;
11407 terminal
= create_terminal (output_x_window
, &x_redisplay_interface
);
11409 terminal
->display_info
.x
= dpyinfo
;
11410 dpyinfo
->terminal
= terminal
;
11412 /* kboard is initialized in x_term_init. */
11414 terminal
->clear_frame_hook
= x_clear_frame
;
11415 terminal
->ins_del_lines_hook
= x_ins_del_lines
;
11416 terminal
->delete_glyphs_hook
= x_delete_glyphs
;
11417 terminal
->ring_bell_hook
= XTring_bell
;
11418 terminal
->toggle_invisible_pointer_hook
= XTtoggle_invisible_pointer
;
11419 terminal
->update_begin_hook
= x_update_begin
;
11420 terminal
->update_end_hook
= x_update_end
;
11421 terminal
->read_socket_hook
= XTread_socket
;
11422 terminal
->frame_up_to_date_hook
= XTframe_up_to_date
;
11423 terminal
->mouse_position_hook
= XTmouse_position
;
11424 terminal
->frame_rehighlight_hook
= XTframe_rehighlight
;
11425 terminal
->frame_raise_lower_hook
= XTframe_raise_lower
;
11426 terminal
->fullscreen_hook
= XTfullscreen_hook
;
11427 terminal
->menu_show_hook
= x_menu_show
;
11428 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
11429 terminal
->popup_dialog_hook
= xw_popup_dialog
;
11431 terminal
->set_vertical_scroll_bar_hook
= XTset_vertical_scroll_bar
;
11432 terminal
->set_horizontal_scroll_bar_hook
= XTset_horizontal_scroll_bar
;
11433 terminal
->condemn_scroll_bars_hook
= XTcondemn_scroll_bars
;
11434 terminal
->redeem_scroll_bar_hook
= XTredeem_scroll_bar
;
11435 terminal
->judge_scroll_bars_hook
= XTjudge_scroll_bars
;
11436 terminal
->delete_frame_hook
= x_destroy_window
;
11437 terminal
->delete_terminal_hook
= x_delete_terminal
;
11438 /* Other hooks are NULL by default. */
11444 x_initialize (void)
11449 any_help_event_p
= 0;
11450 ignore_next_mouse_click_timeout
= 0;
11453 current_count
= -1;
11456 /* Try to use interrupt input; if we can't, then start polling. */
11457 Fset_input_interrupt_mode (Qt
);
11459 #ifdef USE_X_TOOLKIT
11460 XtToolkitInitialize ();
11462 Xt_app_con
= XtCreateApplicationContext ();
11464 /* Register a converter from strings to pixels, which uses
11465 Emacs' color allocation infrastructure. */
11466 XtAppSetTypeConverter (Xt_app_con
,
11467 XtRString
, XtRPixel
, cvt_string_to_pixel
,
11468 cvt_string_to_pixel_args
,
11469 XtNumber (cvt_string_to_pixel_args
),
11470 XtCacheByDisplay
, cvt_pixel_dtor
);
11472 XtAppSetFallbackResources (Xt_app_con
, Xt_default_resources
);
11475 #ifdef USE_TOOLKIT_SCROLL_BARS
11477 xaw3d_arrow_scroll
= False
;
11478 xaw3d_pick_top
= True
;
11482 /* Note that there is no real way portable across R3/R4 to get the
11483 original error handler. */
11484 XSetErrorHandler (x_error_handler
);
11485 XSetIOErrorHandler (x_io_error_quitter
);
11490 syms_of_xterm (void)
11492 x_error_message
= NULL
;
11494 DEFSYM (Qvendor_specific_keysyms
, "vendor-specific-keysyms");
11495 DEFSYM (Qlatin_1
, "latin-1");
11498 xg_default_icon_file
= build_pure_c_string ("icons/hicolor/scalable/apps/emacs.svg");
11499 staticpro (&xg_default_icon_file
);
11501 DEFSYM (Qx_gtk_map_stock
, "x-gtk-map-stock");
11504 DEFVAR_BOOL ("x-use-underline-position-properties",
11505 x_use_underline_position_properties
,
11506 doc
: /* Non-nil means make use of UNDERLINE_POSITION font properties.
11507 A value of nil means ignore them. If you encounter fonts with bogus
11508 UNDERLINE_POSITION font properties, for example 7x13 on XFree prior
11509 to 4.1, set this to nil. You can also use `underline-minimum-offset'
11510 to override the font's UNDERLINE_POSITION for small font display
11512 x_use_underline_position_properties
= 1;
11514 DEFVAR_BOOL ("x-underline-at-descent-line",
11515 x_underline_at_descent_line
,
11516 doc
: /* Non-nil means to draw the underline at the same place as the descent line.
11517 A value of nil means to draw the underline according to the value of the
11518 variable `x-use-underline-position-properties', which is usually at the
11519 baseline level. The default value is nil. */);
11520 x_underline_at_descent_line
= 0;
11522 DEFVAR_BOOL ("x-mouse-click-focus-ignore-position",
11523 x_mouse_click_focus_ignore_position
,
11524 doc
: /* Non-nil means that a mouse click to focus a frame does not move point.
11525 This variable is only used when the window manager requires that you
11526 click on a frame to select it (give it focus). In that case, a value
11527 of nil, means that the selected window and cursor position changes to
11528 reflect the mouse click position, while a non-nil value means that the
11529 selected window or cursor position is preserved. */);
11530 x_mouse_click_focus_ignore_position
= 0;
11532 DEFVAR_LISP ("x-toolkit-scroll-bars", Vx_toolkit_scroll_bars
,
11533 doc
: /* Which toolkit scroll bars Emacs uses, if any.
11534 A value of nil means Emacs doesn't use toolkit scroll bars.
11535 With the X Window system, the value is a symbol describing the
11536 X toolkit. Possible values are: gtk, motif, xaw, or xaw3d.
11537 With MS Windows or Nextstep, the value is t. */);
11538 #ifdef USE_TOOLKIT_SCROLL_BARS
11540 Vx_toolkit_scroll_bars
= intern_c_string ("motif");
11541 #elif defined HAVE_XAW3D
11542 Vx_toolkit_scroll_bars
= intern_c_string ("xaw3d");
11544 Vx_toolkit_scroll_bars
= intern_c_string ("gtk");
11546 Vx_toolkit_scroll_bars
= intern_c_string ("xaw");
11549 Vx_toolkit_scroll_bars
= Qnil
;
11552 DEFSYM (Qmodifier_value
, "modifier-value");
11553 DEFSYM (Qalt
, "alt");
11554 Fput (Qalt
, Qmodifier_value
, make_number (alt_modifier
));
11555 DEFSYM (Qhyper
, "hyper");
11556 Fput (Qhyper
, Qmodifier_value
, make_number (hyper_modifier
));
11557 DEFSYM (Qmeta
, "meta");
11558 Fput (Qmeta
, Qmodifier_value
, make_number (meta_modifier
));
11559 DEFSYM (Qsuper
, "super");
11560 Fput (Qsuper
, Qmodifier_value
, make_number (super_modifier
));
11562 DEFVAR_LISP ("x-alt-keysym", Vx_alt_keysym
,
11563 doc
: /* Which keys Emacs uses for the alt modifier.
11564 This should be one of the symbols `alt', `hyper', `meta', `super'.
11565 For example, `alt' means use the Alt_L and Alt_R keysyms. The default
11566 is nil, which is the same as `alt'. */);
11567 Vx_alt_keysym
= Qnil
;
11569 DEFVAR_LISP ("x-hyper-keysym", Vx_hyper_keysym
,
11570 doc
: /* Which keys Emacs uses for the hyper modifier.
11571 This should be one of the symbols `alt', `hyper', `meta', `super'.
11572 For example, `hyper' means use the Hyper_L and Hyper_R keysyms. The
11573 default is nil, which is the same as `hyper'. */);
11574 Vx_hyper_keysym
= Qnil
;
11576 DEFVAR_LISP ("x-meta-keysym", Vx_meta_keysym
,
11577 doc
: /* Which keys Emacs uses for the meta modifier.
11578 This should be one of the symbols `alt', `hyper', `meta', `super'.
11579 For example, `meta' means use the Meta_L and Meta_R keysyms. The
11580 default is nil, which is the same as `meta'. */);
11581 Vx_meta_keysym
= Qnil
;
11583 DEFVAR_LISP ("x-super-keysym", Vx_super_keysym
,
11584 doc
: /* Which keys Emacs uses for the super modifier.
11585 This should be one of the symbols `alt', `hyper', `meta', `super'.
11586 For example, `super' means use the Super_L and Super_R keysyms. The
11587 default is nil, which is the same as `super'. */);
11588 Vx_super_keysym
= Qnil
;
11590 DEFVAR_LISP ("x-keysym-table", Vx_keysym_table
,
11591 doc
: /* Hash table of character codes indexed by X keysym codes. */);
11592 Vx_keysym_table
= make_hash_table (hashtest_eql
, make_number (900),
11593 make_float (DEFAULT_REHASH_SIZE
),
11594 make_float (DEFAULT_REHASH_THRESHOLD
),