1 /* X Communication module for terminals which understand the X protocol.
2 Copyright (C) 1989, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
3 2002, 2003, 2004, 2005, 2006 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 2, or (at your option)
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; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA. */
22 /* New display code by Gerd Moellmann <gerd@gnu.org>. */
23 /* Xt features made by Fred Pierresteguy. */
27 /* On 4.3 these lose if they come after xterm.h. */
28 /* Putting these at the beginning seems to be standard for other .c files. */
36 #include "blockinput.h"
38 /* Need syssignal.h for various externs and definitions that may be required
39 by some configurations for calls to signal later in this source file. */
40 #include "syssignal.h"
42 /* This may include sys/types.h, and that somehow loses
43 if this is not done before the other system files. */
45 #include <X11/cursorfont.h>
47 /* Load sys/types.h if not already loaded.
48 In some systems loading it twice is suicidal. */
50 #include <sys/types.h>
54 #include <sys/ioctl.h>
55 #endif /* ! defined (BSD_SYSTEM) */
59 #ifndef INCLUDED_FCNTL
66 /* Caused redefinition of DBL_DIG on Netbsd; seems not to be needed. */
67 /* #include <sys/param.h> */
73 #include "dispextern.h"
75 #include "termhooks.h"
83 #include "intervals.h"
89 #include <X11/Shell.h>
92 #ifdef HAVE_SYS_TIME_H
104 extern int xlwmenu_window_p
P_ ((Widget w
, Window window
));
105 extern void xlwmenu_redisplay
P_ ((Widget
));
108 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
110 extern void free_frame_menubar
P_ ((struct frame
*));
111 extern struct frame
*x_menubar_window_to_frame
P_ ((struct x_display_info
*,
116 #if (XtSpecificationRelease >= 5) && !defined(NO_EDITRES)
118 extern void _XEditResCheckMessages ();
119 #endif /* not NO_EDITRES */
121 /* Include toolkit specific headers for the scroll bar widget. */
123 #ifdef USE_TOOLKIT_SCROLL_BARS
124 #if defined USE_MOTIF
125 #include <Xm/Xm.h> /* for LESSTIF_VERSION */
126 #include <Xm/ScrollBar.h>
127 #else /* !USE_MOTIF i.e. use Xaw */
130 #include <X11/Xaw3d/Simple.h>
131 #include <X11/Xaw3d/Scrollbar.h>
132 #include <X11/Xaw3d/ThreeD.h>
133 #else /* !HAVE_XAW3D */
134 #include <X11/Xaw/Simple.h>
135 #include <X11/Xaw/Scrollbar.h>
136 #endif /* !HAVE_XAW3D */
138 #define XtNpickTop "pickTop"
139 #endif /* !XtNpickTop */
140 #endif /* !USE_MOTIF */
141 #endif /* USE_TOOLKIT_SCROLL_BARS */
143 #endif /* USE_X_TOOLKIT */
145 #if ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK)
146 #define x_any_window_to_frame x_window_to_frame
147 #define x_top_window_to_frame x_window_to_frame
152 #ifndef XtNinitialState
153 #define XtNinitialState "initialState"
157 #define abs(x) ((x) < 0 ? -(x) : (x))
159 /* Default to using XIM if available. */
163 int use_xim
= 0; /* configure --without-xim */
168 /* Non-nil means Emacs uses toolkit scroll bars. */
170 Lisp_Object Vx_toolkit_scroll_bars
;
172 /* Non-zero means that a HELP_EVENT has been generated since Emacs
175 static int any_help_event_p
;
177 /* Last window where we saw the mouse. Used by mouse-autoselect-window. */
178 static Lisp_Object last_window
;
180 /* Non-zero means make use of UNDERLINE_POSITION font properties. */
182 int x_use_underline_position_properties
;
184 /* This is a chain of structures for all the X displays currently in
187 struct x_display_info
*x_display_list
;
189 /* This is a list of cons cells, each of the form (NAME
190 . FONT-LIST-CACHE), one for each element of x_display_list and in
191 the same order. NAME is the name of the frame. FONT-LIST-CACHE
192 records previous values returned by x-list-fonts. */
194 Lisp_Object x_display_name_list
;
196 /* Frame being updated by update_frame. This is declared in term.c.
197 This is set by update_begin and looked at by all the XT functions.
198 It is zero while not inside an update. In that case, the XT
199 functions assume that `selected_frame' is the frame to apply to. */
201 extern struct frame
*updating_frame
;
203 /* This is a frame waiting to be auto-raised, within XTread_socket. */
205 struct frame
*pending_autoraise_frame
;
208 /* The application context for Xt use. */
209 XtAppContext Xt_app_con
;
210 static String Xt_default_resources
[] = {0};
211 #endif /* USE_X_TOOLKIT */
213 /* Non-zero means user is interacting with a toolkit scroll bar. */
215 static int toolkit_scroll_bar_interaction
;
217 /* Non-zero means to not move point as a result of clicking on a
218 frame to focus it (when focus-follows-mouse is nil). */
220 int x_mouse_click_focus_ignore_position
;
222 /* Non-zero timeout value means ignore next mouse click if it arrives
223 before that timeout elapses (i.e. as part of the same sequence of
224 events resulting from clicking on a frame to select it). */
226 static unsigned long ignore_next_mouse_click_timeout
;
230 Formerly, we used PointerMotionHintMask (in standard_event_mask)
231 so that we would have to call XQueryPointer after each MotionNotify
232 event to ask for another such event. However, this made mouse tracking
233 slow, and there was a bug that made it eventually stop.
235 Simply asking for MotionNotify all the time seems to work better.
237 In order to avoid asking for motion events and then throwing most
238 of them away or busy-polling the server for mouse positions, we ask
239 the server for pointer motion hints. This means that we get only
240 one event per group of mouse movements. "Groups" are delimited by
241 other kinds of events (focus changes and button clicks, for
242 example), or by XQueryPointer calls; when one of these happens, we
243 get another MotionNotify event the next time the mouse moves. This
244 is at least as efficient as getting motion events when mouse
245 tracking is on, and I suspect only negligibly worse when tracking
248 /* Where the mouse was last time we reported a mouse event. */
250 static XRectangle last_mouse_glyph
;
251 static FRAME_PTR last_mouse_glyph_frame
;
252 static Lisp_Object last_mouse_press_frame
;
254 /* The scroll bar in which the last X motion event occurred.
256 If the last X motion event occurred in a scroll bar, we set this so
257 XTmouse_position can know whether to report a scroll bar motion or
260 If the last X motion event didn't occur in a scroll bar, we set
261 this to Qnil, to tell XTmouse_position to return an ordinary motion
264 static Lisp_Object last_mouse_scroll_bar
;
266 /* This is a hack. We would really prefer that XTmouse_position would
267 return the time associated with the position it returns, but there
268 doesn't seem to be any way to wrest the time-stamp from the server
269 along with the position query. So, we just keep track of the time
270 of the last movement we received, and return that in hopes that
271 it's somewhat accurate. */
273 static Time last_mouse_movement_time
;
275 /* Incremented by XTread_socket whenever it really tries to read
279 static int volatile input_signal_count
;
281 static int input_signal_count
;
284 /* Used locally within XTread_socket. */
286 static int x_noop_count
;
288 /* Initial values of argv and argc. */
290 extern char **initial_argv
;
291 extern int initial_argc
;
293 extern Lisp_Object Vcommand_line_args
, Vsystem_name
;
295 /* Tells if a window manager is present or not. */
297 extern Lisp_Object Vx_no_window_manager
;
299 extern Lisp_Object Qeql
;
303 /* A mask of extra modifier bits to put into every keyboard char. */
305 extern EMACS_INT extra_keyboard_modifiers
;
307 /* The keysyms to use for the various modifiers. */
309 Lisp_Object Vx_alt_keysym
, Vx_hyper_keysym
, Vx_meta_keysym
, Vx_super_keysym
;
310 Lisp_Object Vx_keysym_table
;
311 static Lisp_Object Qalt
, Qhyper
, Qmeta
, Qsuper
, Qmodifier_value
;
313 static Lisp_Object Qvendor_specific_keysyms
;
314 static Lisp_Object Qlatin_1
;
316 /* Used in x_flush. */
318 extern Lisp_Object Vinhibit_redisplay
;
320 extern XrmDatabase x_load_resources
P_ ((Display
*, char *, char *, char *));
321 extern int x_bitmap_mask
P_ ((FRAME_PTR
, int));
323 static int x_alloc_nearest_color_1
P_ ((Display
*, Colormap
, XColor
*));
324 static void x_set_window_size_1
P_ ((struct frame
*, int, int, int));
325 static const XColor
*x_color_cells
P_ ((Display
*, int *));
326 static void x_update_window_end
P_ ((struct window
*, int, int));
328 static int x_io_error_quitter
P_ ((Display
*));
329 static struct terminal
*x_create_terminal
P_ ((struct x_display_info
*));
330 void x_delete_terminal
P_ ((struct terminal
*));
331 static void x_font_min_bounds
P_ ((XFontStruct
*, int *, int *));
332 static int x_compute_min_glyph_bounds
P_ ((struct frame
*));
333 static void x_update_end
P_ ((struct frame
*));
334 static void XTframe_up_to_date
P_ ((struct frame
*));
335 static void XTset_terminal_modes
P_ ((struct terminal
*));
336 static void XTreset_terminal_modes
P_ ((struct terminal
*));
337 static void x_clear_frame
P_ ((struct frame
*));
338 static void frame_highlight
P_ ((struct frame
*));
339 static void frame_unhighlight
P_ ((struct frame
*));
340 static void x_new_focus_frame
P_ ((struct x_display_info
*, struct frame
*));
341 static void x_focus_changed
P_ ((int, int, struct x_display_info
*,
342 struct frame
*, struct input_event
*));
343 static void x_detect_focus_change
P_ ((struct x_display_info
*,
344 XEvent
*, struct input_event
*));
345 static void XTframe_rehighlight
P_ ((struct frame
*));
346 static void x_frame_rehighlight
P_ ((struct x_display_info
*));
347 static void x_draw_hollow_cursor
P_ ((struct window
*, struct glyph_row
*));
348 static void x_draw_bar_cursor
P_ ((struct window
*, struct glyph_row
*, int,
349 enum text_cursor_kinds
));
351 static void x_clip_to_row
P_ ((struct window
*, struct glyph_row
*, int, GC
));
352 static void x_flush
P_ ((struct frame
*f
));
353 static void x_update_begin
P_ ((struct frame
*));
354 static void x_update_window_begin
P_ ((struct window
*));
355 static void x_after_update_window_line
P_ ((struct glyph_row
*));
356 static struct scroll_bar
*x_window_to_scroll_bar
P_ ((Display
*, Window
));
357 static void x_scroll_bar_report_motion
P_ ((struct frame
**, Lisp_Object
*,
358 enum scroll_bar_part
*,
359 Lisp_Object
*, Lisp_Object
*,
361 static void x_check_fullscreen
P_ ((struct frame
*));
362 static void x_check_expected_move
P_ ((struct frame
*));
363 static int handle_one_xevent
P_ ((struct x_display_info
*, XEvent
*,
364 int *, struct input_event
*));
367 /* Flush display of frame F, or of all frames if F is null. */
373 /* Don't call XFlush when it is not safe to redisplay; the X
374 connection may be broken. */
375 if (!NILP (Vinhibit_redisplay
))
381 Lisp_Object rest
, frame
;
382 FOR_EACH_FRAME (rest
, frame
)
383 if (FRAME_X_P (XFRAME (frame
)))
384 x_flush (XFRAME (frame
));
386 else if (FRAME_X_P (f
))
387 XFlush (FRAME_X_DISPLAY (f
));
392 /* Remove calls to XFlush by defining XFlush to an empty replacement.
393 Calls to XFlush should be unnecessary because the X output buffer
394 is flushed automatically as needed by calls to XPending,
395 XNextEvent, or XWindowEvent according to the XFlush man page.
396 XTread_socket calls XPending. Removing XFlush improves
399 #define XFlush(DISPLAY) (void) 0
402 /***********************************************************************
404 ***********************************************************************/
408 /* This is a function useful for recording debugging information about
409 the sequence of occurrences in this file. */
417 struct record event_record
[100];
419 int event_record_index
;
421 record_event (locus
, type
)
425 if (event_record_index
== sizeof (event_record
) / sizeof (struct record
))
426 event_record_index
= 0;
428 event_record
[event_record_index
].locus
= locus
;
429 event_record
[event_record_index
].type
= type
;
430 event_record_index
++;
437 /* Return the struct x_display_info corresponding to DPY. */
439 struct x_display_info
*
440 x_display_info_for_display (dpy
)
443 struct x_display_info
*dpyinfo
;
445 for (dpyinfo
= x_display_list
; dpyinfo
; dpyinfo
= dpyinfo
->next
)
446 if (dpyinfo
->display
== dpy
)
454 /***********************************************************************
455 Starting and ending an update
456 ***********************************************************************/
458 /* Start an update of frame F. This function is installed as a hook
459 for update_begin, i.e. it is called when update_begin is called.
460 This function is called prior to calls to x_update_window_begin for
461 each window being updated. Currently, there is nothing to do here
462 because all interesting stuff is done on a window basis. */
472 /* Start update of window W. Set the global variable updated_window
473 to the window being updated and set output_cursor to the cursor
477 x_update_window_begin (w
)
480 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
481 struct x_display_info
*display_info
= FRAME_X_DISPLAY_INFO (f
);
484 set_output_cursor (&w
->cursor
);
488 if (f
== display_info
->mouse_face_mouse_frame
)
490 /* Don't do highlighting for mouse motion during the update. */
491 display_info
->mouse_face_defer
= 1;
493 /* If F needs to be redrawn, simply forget about any prior mouse
495 if (FRAME_GARBAGED_P (f
))
496 display_info
->mouse_face_window
= Qnil
;
498 #if 0 /* Rows in a current matrix containing glyphs in mouse-face have
499 their mouse_face_p flag set, which means that they are always
500 unequal to rows in a desired matrix which never have that
501 flag set. So, rows containing mouse-face glyphs are never
502 scrolled, and we don't have to switch the mouse highlight off
503 here to prevent it from being scrolled. */
505 /* Can we tell that this update does not affect the window
506 where the mouse highlight is? If so, no need to turn off.
507 Likewise, don't do anything if the frame is garbaged;
508 in that case, the frame's current matrix that we would use
509 is all wrong, and we will redisplay that line anyway. */
510 if (!NILP (display_info
->mouse_face_window
)
511 && w
== XWINDOW (display_info
->mouse_face_window
))
515 for (i
= 0; i
< w
->desired_matrix
->nrows
; ++i
)
516 if (MATRIX_ROW_ENABLED_P (w
->desired_matrix
, i
))
519 if (i
< w
->desired_matrix
->nrows
)
520 clear_mouse_face (display_info
);
529 /* Draw a vertical window border from (x,y0) to (x,y1) */
532 x_draw_vertical_window_border (w
, x
, y0
, y1
)
536 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
539 face
= FACE_FROM_ID (f
, VERTICAL_BORDER_FACE_ID
);
541 XSetForeground (FRAME_X_DISPLAY (f
), f
->output_data
.x
->normal_gc
,
544 XDrawLine (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
545 f
->output_data
.x
->normal_gc
, x
, y0
, x
, y1
);
548 /* End update of window W (which is equal to updated_window).
550 Draw vertical borders between horizontally adjacent windows, and
551 display W's cursor if CURSOR_ON_P is non-zero.
553 MOUSE_FACE_OVERWRITTEN_P non-zero means that some row containing
554 glyphs in mouse-face were overwritten. In that case we have to
555 make sure that the mouse-highlight is properly redrawn.
557 W may be a menu bar pseudo-window in case we don't have X toolkit
558 support. Such windows don't have a cursor, so don't display it
562 x_update_window_end (w
, cursor_on_p
, mouse_face_overwritten_p
)
564 int cursor_on_p
, mouse_face_overwritten_p
;
566 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (XFRAME (w
->frame
));
568 if (!w
->pseudo_window_p
)
573 display_and_set_cursor (w
, 1, output_cursor
.hpos
,
575 output_cursor
.x
, output_cursor
.y
);
577 if (draw_window_fringes (w
, 1))
578 x_draw_vertical_border (w
);
583 /* If a row with mouse-face was overwritten, arrange for
584 XTframe_up_to_date to redisplay the mouse highlight. */
585 if (mouse_face_overwritten_p
)
587 dpyinfo
->mouse_face_beg_row
= dpyinfo
->mouse_face_beg_col
= -1;
588 dpyinfo
->mouse_face_end_row
= dpyinfo
->mouse_face_end_col
= -1;
589 dpyinfo
->mouse_face_window
= Qnil
;
592 updated_window
= NULL
;
596 /* End update of frame F. This function is installed as a hook in
603 /* Mouse highlight may be displayed again. */
604 FRAME_X_DISPLAY_INFO (f
)->mouse_face_defer
= 0;
608 XFlush (FRAME_X_DISPLAY (f
));
614 /* This function is called from various places in xdisp.c whenever a
615 complete update has been performed. The global variable
616 updated_window is not available here. */
619 XTframe_up_to_date (f
)
624 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
626 if (dpyinfo
->mouse_face_deferred_gc
627 || f
== dpyinfo
->mouse_face_mouse_frame
)
630 if (dpyinfo
->mouse_face_mouse_frame
)
631 note_mouse_highlight (dpyinfo
->mouse_face_mouse_frame
,
632 dpyinfo
->mouse_face_mouse_x
,
633 dpyinfo
->mouse_face_mouse_y
);
634 dpyinfo
->mouse_face_deferred_gc
= 0;
641 /* Draw truncation mark bitmaps, continuation mark bitmaps, overlay
642 arrow bitmaps, or clear the fringes if no bitmaps are required
643 before DESIRED_ROW is made current. The window being updated is
644 found in updated_window. This function It is called from
645 update_window_line only if it is known that there are differences
646 between bitmaps to be drawn between current row and DESIRED_ROW. */
649 x_after_update_window_line (desired_row
)
650 struct glyph_row
*desired_row
;
652 struct window
*w
= updated_window
;
658 if (!desired_row
->mode_line_p
&& !w
->pseudo_window_p
)
659 desired_row
->redraw_fringe_bitmaps_p
= 1;
661 /* When a window has disappeared, make sure that no rest of
662 full-width rows stays visible in the internal border. Could
663 check here if updated_window is the leftmost/rightmost window,
664 but I guess it's not worth doing since vertically split windows
665 are almost never used, internal border is rarely set, and the
666 overhead is very small. */
667 if (windows_or_buffers_changed
668 && desired_row
->full_width_p
669 && (f
= XFRAME (w
->frame
),
670 width
= FRAME_INTERNAL_BORDER_WIDTH (f
),
672 && (height
= desired_row
->visible_height
,
675 int y
= WINDOW_TO_FRAME_PIXEL_Y (w
, max (0, desired_row
->y
));
677 /* Internal border is drawn below the tool bar. */
678 if (WINDOWP (f
->tool_bar_window
)
679 && w
== XWINDOW (f
->tool_bar_window
))
683 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
684 0, y
, width
, height
, False
);
685 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
686 FRAME_PIXEL_WIDTH (f
) - width
,
687 y
, width
, height
, False
);
693 x_draw_fringe_bitmap (w
, row
, p
)
695 struct glyph_row
*row
;
696 struct draw_fringe_bitmap_params
*p
;
698 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
699 Display
*display
= FRAME_X_DISPLAY (f
);
700 Window window
= FRAME_X_WINDOW (f
);
701 GC gc
= f
->output_data
.x
->normal_gc
;
702 struct face
*face
= p
->face
;
705 /* Must clip because of partially visible lines. */
706 rowY
= WINDOW_TO_FRAME_PIXEL_Y (w
, row
->y
);
709 /* Adjust position of "bottom aligned" bitmap on partially
712 int oldVH
= row
->visible_height
;
713 row
->visible_height
= p
->h
;
714 row
->y
-= rowY
- p
->y
;
715 x_clip_to_row (w
, row
, -1, gc
);
717 row
->visible_height
= oldVH
;
720 x_clip_to_row (w
, row
, -1, gc
);
722 if (p
->bx
>= 0 && !p
->overlay_p
)
724 /* In case the same realized face is used for fringes and
725 for something displayed in the text (e.g. face `region' on
726 mono-displays, the fill style may have been changed to
727 FillSolid in x_draw_glyph_string_background. */
729 XSetFillStyle (display
, face
->gc
, FillOpaqueStippled
);
731 XSetForeground (display
, face
->gc
, face
->background
);
733 XFillRectangle (display
, window
, face
->gc
,
734 p
->bx
, p
->by
, p
->nx
, p
->ny
);
737 XSetForeground (display
, face
->gc
, face
->foreground
);
743 Pixmap pixmap
, clipmask
= (Pixmap
) 0;
744 int depth
= DefaultDepthOfScreen (FRAME_X_SCREEN (f
));
748 bits
= (unsigned char *)(p
->bits
+ p
->dh
);
750 bits
= (unsigned char *)p
->bits
+ p
->dh
;
752 /* Draw the bitmap. I believe these small pixmaps can be cached
754 pixmap
= XCreatePixmapFromBitmapData (display
, window
, bits
, p
->wd
, p
->h
,
756 ? (p
->overlay_p
? face
->background
757 : f
->output_data
.x
->cursor_pixel
)
759 face
->background
, depth
);
763 clipmask
= XCreatePixmapFromBitmapData (display
,
764 FRAME_X_DISPLAY_INFO (f
)->root_window
,
767 gcv
.clip_mask
= clipmask
;
768 gcv
.clip_x_origin
= p
->x
;
769 gcv
.clip_y_origin
= p
->y
;
770 XChangeGC (display
, gc
, GCClipMask
| GCClipXOrigin
| GCClipYOrigin
, &gcv
);
773 XCopyArea (display
, pixmap
, window
, gc
, 0, 0,
774 p
->wd
, p
->h
, p
->x
, p
->y
);
775 XFreePixmap (display
, pixmap
);
779 gcv
.clip_mask
= (Pixmap
) 0;
780 XChangeGC (display
, gc
, GCClipMask
, &gcv
);
781 XFreePixmap (display
, clipmask
);
785 XSetClipMask (display
, gc
, None
);
790 /* This is called when starting Emacs and when restarting after
791 suspend. When starting Emacs, no X window is mapped. And nothing
792 must be done to Emacs's own window if it is suspended (though that
796 XTset_terminal_modes (struct terminal
*terminal
)
800 /* This is called when exiting or suspending Emacs. Exiting will make
801 the X-windows go away, and suspending requires no action. */
804 XTreset_terminal_modes (struct terminal
*terminal
)
810 /***********************************************************************
812 ***********************************************************************/
814 /* Function prototypes of this page. */
816 static int x_encode_char
P_ ((int, XChar2b
*, struct font_info
*, int *));
819 /* Get metrics of character CHAR2B in FONT. Value is null if CHAR2B
820 is not contained in the font. */
823 x_per_char_metric (font
, char2b
, font_type
)
826 int font_type
; /* unused on X */
828 /* The result metric information. */
829 XCharStruct
*pcm
= NULL
;
831 xassert (font
&& char2b
);
833 if (font
->per_char
!= NULL
)
835 if (font
->min_byte1
== 0 && font
->max_byte1
== 0)
837 /* min_char_or_byte2 specifies the linear character index
838 corresponding to the first element of the per_char array,
839 max_char_or_byte2 is the index of the last character. A
840 character with non-zero CHAR2B->byte1 is not in the font.
841 A character with byte2 less than min_char_or_byte2 or
842 greater max_char_or_byte2 is not in the font. */
843 if (char2b
->byte1
== 0
844 && char2b
->byte2
>= font
->min_char_or_byte2
845 && char2b
->byte2
<= font
->max_char_or_byte2
)
846 pcm
= font
->per_char
+ char2b
->byte2
- font
->min_char_or_byte2
;
850 /* If either min_byte1 or max_byte1 are nonzero, both
851 min_char_or_byte2 and max_char_or_byte2 are less than
852 256, and the 2-byte character index values corresponding
853 to the per_char array element N (counting from 0) are:
855 byte1 = N/D + min_byte1
856 byte2 = N\D + min_char_or_byte2
860 D = max_char_or_byte2 - min_char_or_byte2 + 1
862 \ = integer modulus */
863 if (char2b
->byte1
>= font
->min_byte1
864 && char2b
->byte1
<= font
->max_byte1
865 && char2b
->byte2
>= font
->min_char_or_byte2
866 && char2b
->byte2
<= font
->max_char_or_byte2
)
868 pcm
= (font
->per_char
869 + ((font
->max_char_or_byte2
- font
->min_char_or_byte2
+ 1)
870 * (char2b
->byte1
- font
->min_byte1
))
871 + (char2b
->byte2
- font
->min_char_or_byte2
));
877 /* If the per_char pointer is null, all glyphs between the first
878 and last character indexes inclusive have the same
879 information, as given by both min_bounds and max_bounds. */
880 if (char2b
->byte2
>= font
->min_char_or_byte2
881 && char2b
->byte2
<= font
->max_char_or_byte2
)
882 pcm
= &font
->max_bounds
;
886 || (pcm
->width
== 0 && (pcm
->rbearing
- pcm
->lbearing
) == 0))
891 /* Encode CHAR2B using encoding information from FONT_INFO. CHAR2B is
892 the two-byte form of C. Encoding is returned in *CHAR2B. */
895 x_encode_char (c
, char2b
, font_info
, two_byte_p
)
898 struct font_info
*font_info
;
901 int charset
= CHAR_CHARSET (c
);
902 XFontStruct
*font
= font_info
->font
;
904 /* FONT_INFO may define a scheme by which to encode byte1 and byte2.
905 This may be either a program in a special encoder language or a
907 if (font_info
->font_encoder
)
909 /* It's a program. */
910 struct ccl_program
*ccl
= font_info
->font_encoder
;
912 check_ccl_update (ccl
);
913 if (CHARSET_DIMENSION (charset
) == 1)
915 ccl
->reg
[0] = charset
;
916 ccl
->reg
[1] = char2b
->byte2
;
921 ccl
->reg
[0] = charset
;
922 ccl
->reg
[1] = char2b
->byte1
;
923 ccl
->reg
[2] = char2b
->byte2
;
926 ccl_driver (ccl
, NULL
, NULL
, 0, 0, NULL
);
928 /* We assume that MSBs are appropriately set/reset by CCL
930 if (font
->max_byte1
== 0) /* 1-byte font */
931 char2b
->byte1
= 0, char2b
->byte2
= ccl
->reg
[1];
933 char2b
->byte1
= ccl
->reg
[1], char2b
->byte2
= ccl
->reg
[2];
935 else if (font_info
->encoding
[charset
])
937 /* Fixed encoding scheme. See fontset.h for the meaning of the
939 int enc
= font_info
->encoding
[charset
];
941 if ((enc
== 1 || enc
== 2)
942 && CHARSET_DIMENSION (charset
) == 2)
943 char2b
->byte1
|= 0x80;
945 if (enc
== 1 || enc
== 3)
946 char2b
->byte2
|= 0x80;
950 *two_byte_p
= ((XFontStruct
*) (font_info
->font
))->max_byte1
> 0;
952 return FONT_TYPE_UNKNOWN
;
957 /***********************************************************************
959 ***********************************************************************/
963 static void x_set_glyph_string_clipping
P_ ((struct glyph_string
*));
964 static void x_set_glyph_string_gc
P_ ((struct glyph_string
*));
965 static void x_draw_glyph_string_background
P_ ((struct glyph_string
*,
967 static void x_draw_glyph_string_foreground
P_ ((struct glyph_string
*));
968 static void x_draw_composite_glyph_string_foreground
P_ ((struct glyph_string
*));
969 static void x_draw_glyph_string_box
P_ ((struct glyph_string
*));
970 static void x_draw_glyph_string
P_ ((struct glyph_string
*));
971 static void x_compute_glyph_string_overhangs
P_ ((struct glyph_string
*));
972 static void x_set_cursor_gc
P_ ((struct glyph_string
*));
973 static void x_set_mode_line_face_gc
P_ ((struct glyph_string
*));
974 static void x_set_mouse_face_gc
P_ ((struct glyph_string
*));
975 static int x_alloc_lighter_color
P_ ((struct frame
*, Display
*, Colormap
,
976 unsigned long *, double, int));
977 static void x_setup_relief_color
P_ ((struct frame
*, struct relief
*,
978 double, int, unsigned long));
979 static void x_setup_relief_colors
P_ ((struct glyph_string
*));
980 static void x_draw_image_glyph_string
P_ ((struct glyph_string
*));
981 static void x_draw_image_relief
P_ ((struct glyph_string
*));
982 static void x_draw_image_foreground
P_ ((struct glyph_string
*));
983 static void x_draw_image_foreground_1
P_ ((struct glyph_string
*, Pixmap
));
984 static void x_clear_glyph_string_rect
P_ ((struct glyph_string
*, int,
986 static void x_draw_relief_rect
P_ ((struct frame
*, int, int, int, int,
987 int, int, int, int, int, int,
989 static void x_draw_box_rect
P_ ((struct glyph_string
*, int, int, int, int,
990 int, int, int, XRectangle
*));
993 static void x_check_font
P_ ((struct frame
*, XFontStruct
*));
997 /* Set S->gc to a suitable GC for drawing glyph string S in cursor
1002 struct glyph_string
*s
;
1004 if (s
->font
== FRAME_FONT (s
->f
)
1005 && s
->face
->background
== FRAME_BACKGROUND_PIXEL (s
->f
)
1006 && s
->face
->foreground
== FRAME_FOREGROUND_PIXEL (s
->f
)
1008 s
->gc
= s
->f
->output_data
.x
->cursor_gc
;
1011 /* Cursor on non-default face: must merge. */
1015 xgcv
.background
= s
->f
->output_data
.x
->cursor_pixel
;
1016 xgcv
.foreground
= s
->face
->background
;
1018 /* If the glyph would be invisible, try a different foreground. */
1019 if (xgcv
.foreground
== xgcv
.background
)
1020 xgcv
.foreground
= s
->face
->foreground
;
1021 if (xgcv
.foreground
== xgcv
.background
)
1022 xgcv
.foreground
= s
->f
->output_data
.x
->cursor_foreground_pixel
;
1023 if (xgcv
.foreground
== xgcv
.background
)
1024 xgcv
.foreground
= s
->face
->foreground
;
1026 /* Make sure the cursor is distinct from text in this face. */
1027 if (xgcv
.background
== s
->face
->background
1028 && xgcv
.foreground
== s
->face
->foreground
)
1030 xgcv
.background
= s
->face
->foreground
;
1031 xgcv
.foreground
= s
->face
->background
;
1034 IF_DEBUG (x_check_font (s
->f
, s
->font
));
1035 xgcv
.font
= s
->font
->fid
;
1036 xgcv
.graphics_exposures
= False
;
1037 mask
= GCForeground
| GCBackground
| GCFont
| GCGraphicsExposures
;
1039 if (FRAME_X_DISPLAY_INFO (s
->f
)->scratch_cursor_gc
)
1040 XChangeGC (s
->display
, FRAME_X_DISPLAY_INFO (s
->f
)->scratch_cursor_gc
,
1043 FRAME_X_DISPLAY_INFO (s
->f
)->scratch_cursor_gc
1044 = XCreateGC (s
->display
, s
->window
, mask
, &xgcv
);
1046 s
->gc
= FRAME_X_DISPLAY_INFO (s
->f
)->scratch_cursor_gc
;
1051 /* Set up S->gc of glyph string S for drawing text in mouse face. */
1054 x_set_mouse_face_gc (s
)
1055 struct glyph_string
*s
;
1060 /* What face has to be used last for the mouse face? */
1061 face_id
= FRAME_X_DISPLAY_INFO (s
->f
)->mouse_face_face_id
;
1062 face
= FACE_FROM_ID (s
->f
, face_id
);
1064 face
= FACE_FROM_ID (s
->f
, MOUSE_FACE_ID
);
1066 if (s
->first_glyph
->type
== CHAR_GLYPH
)
1067 face_id
= FACE_FOR_CHAR (s
->f
, face
, s
->first_glyph
->u
.ch
);
1069 face_id
= FACE_FOR_CHAR (s
->f
, face
, 0);
1070 s
->face
= FACE_FROM_ID (s
->f
, face_id
);
1071 PREPARE_FACE_FOR_DISPLAY (s
->f
, s
->face
);
1073 /* If font in this face is same as S->font, use it. */
1074 if (s
->font
== s
->face
->font
)
1075 s
->gc
= s
->face
->gc
;
1078 /* Otherwise construct scratch_cursor_gc with values from FACE
1083 xgcv
.background
= s
->face
->background
;
1084 xgcv
.foreground
= s
->face
->foreground
;
1085 IF_DEBUG (x_check_font (s
->f
, s
->font
));
1086 xgcv
.font
= s
->font
->fid
;
1087 xgcv
.graphics_exposures
= False
;
1088 mask
= GCForeground
| GCBackground
| GCFont
| GCGraphicsExposures
;
1090 if (FRAME_X_DISPLAY_INFO (s
->f
)->scratch_cursor_gc
)
1091 XChangeGC (s
->display
, FRAME_X_DISPLAY_INFO (s
->f
)->scratch_cursor_gc
,
1094 FRAME_X_DISPLAY_INFO (s
->f
)->scratch_cursor_gc
1095 = XCreateGC (s
->display
, s
->window
, mask
, &xgcv
);
1097 s
->gc
= FRAME_X_DISPLAY_INFO (s
->f
)->scratch_cursor_gc
;
1100 xassert (s
->gc
!= 0);
1104 /* Set S->gc of glyph string S to a GC suitable for drawing a mode line.
1105 Faces to use in the mode line have already been computed when the
1106 matrix was built, so there isn't much to do, here. */
1109 x_set_mode_line_face_gc (s
)
1110 struct glyph_string
*s
;
1112 s
->gc
= s
->face
->gc
;
1116 /* Set S->gc of glyph string S for drawing that glyph string. Set
1117 S->stippled_p to a non-zero value if the face of S has a stipple
1121 x_set_glyph_string_gc (s
)
1122 struct glyph_string
*s
;
1124 PREPARE_FACE_FOR_DISPLAY (s
->f
, s
->face
);
1126 if (s
->hl
== DRAW_NORMAL_TEXT
)
1128 s
->gc
= s
->face
->gc
;
1129 s
->stippled_p
= s
->face
->stipple
!= 0;
1131 else if (s
->hl
== DRAW_INVERSE_VIDEO
)
1133 x_set_mode_line_face_gc (s
);
1134 s
->stippled_p
= s
->face
->stipple
!= 0;
1136 else if (s
->hl
== DRAW_CURSOR
)
1138 x_set_cursor_gc (s
);
1141 else if (s
->hl
== DRAW_MOUSE_FACE
)
1143 x_set_mouse_face_gc (s
);
1144 s
->stippled_p
= s
->face
->stipple
!= 0;
1146 else if (s
->hl
== DRAW_IMAGE_RAISED
1147 || s
->hl
== DRAW_IMAGE_SUNKEN
)
1149 s
->gc
= s
->face
->gc
;
1150 s
->stippled_p
= s
->face
->stipple
!= 0;
1154 s
->gc
= s
->face
->gc
;
1155 s
->stippled_p
= s
->face
->stipple
!= 0;
1158 /* GC must have been set. */
1159 xassert (s
->gc
!= 0);
1163 /* Set clipping for output of glyph string S. S may be part of a mode
1164 line or menu if we don't have X toolkit support. */
1167 x_set_glyph_string_clipping (s
)
1168 struct glyph_string
*s
;
1171 get_glyph_string_clip_rect (s
, &r
);
1172 XSetClipRectangles (s
->display
, s
->gc
, 0, 0, &r
, 1, Unsorted
);
1177 Compute left and right overhang of glyph string S. If S is a glyph
1178 string for a composition, assume overhangs don't exist. */
1181 x_compute_glyph_string_overhangs (s
)
1182 struct glyph_string
*s
;
1185 && s
->first_glyph
->type
== CHAR_GLYPH
)
1188 int direction
, font_ascent
, font_descent
;
1189 XTextExtents16 (s
->font
, s
->char2b
, s
->nchars
, &direction
,
1190 &font_ascent
, &font_descent
, &cs
);
1191 s
->right_overhang
= cs
.rbearing
> cs
.width
? cs
.rbearing
- cs
.width
: 0;
1192 s
->left_overhang
= cs
.lbearing
< 0 ? -cs
.lbearing
: 0;
1197 /* Fill rectangle X, Y, W, H with background color of glyph string S. */
1200 x_clear_glyph_string_rect (s
, x
, y
, w
, h
)
1201 struct glyph_string
*s
;
1205 XGetGCValues (s
->display
, s
->gc
, GCForeground
| GCBackground
, &xgcv
);
1206 XSetForeground (s
->display
, s
->gc
, xgcv
.background
);
1207 XFillRectangle (s
->display
, s
->window
, s
->gc
, x
, y
, w
, h
);
1208 XSetForeground (s
->display
, s
->gc
, xgcv
.foreground
);
1212 /* Draw the background of glyph_string S. If S->background_filled_p
1213 is non-zero don't draw it. FORCE_P non-zero means draw the
1214 background even if it wouldn't be drawn normally. This is used
1215 when a string preceding S draws into the background of S, or S
1216 contains the first component of a composition. */
1219 x_draw_glyph_string_background (s
, force_p
)
1220 struct glyph_string
*s
;
1223 /* Nothing to do if background has already been drawn or if it
1224 shouldn't be drawn in the first place. */
1225 if (!s
->background_filled_p
)
1227 int box_line_width
= max (s
->face
->box_line_width
, 0);
1231 /* Fill background with a stipple pattern. */
1232 XSetFillStyle (s
->display
, s
->gc
, FillOpaqueStippled
);
1233 XFillRectangle (s
->display
, s
->window
, s
->gc
, s
->x
,
1234 s
->y
+ box_line_width
,
1235 s
->background_width
,
1236 s
->height
- 2 * box_line_width
);
1237 XSetFillStyle (s
->display
, s
->gc
, FillSolid
);
1238 s
->background_filled_p
= 1;
1240 else if (FONT_HEIGHT (s
->font
) < s
->height
- 2 * box_line_width
1241 || s
->font_not_found_p
1242 || s
->extends_to_end_of_line_p
1245 x_clear_glyph_string_rect (s
, s
->x
, s
->y
+ box_line_width
,
1246 s
->background_width
,
1247 s
->height
- 2 * box_line_width
);
1248 s
->background_filled_p
= 1;
1254 /* Draw the foreground of glyph string S. */
1257 x_draw_glyph_string_foreground (s
)
1258 struct glyph_string
*s
;
1262 /* If first glyph of S has a left box line, start drawing the text
1263 of S to the right of that box line. */
1264 if (s
->face
->box
!= FACE_NO_BOX
1265 && s
->first_glyph
->left_box_line_p
)
1266 x
= s
->x
+ abs (s
->face
->box_line_width
);
1270 /* Draw characters of S as rectangles if S's font could not be
1272 if (s
->font_not_found_p
)
1274 for (i
= 0; i
< s
->nchars
; ++i
)
1276 struct glyph
*g
= s
->first_glyph
+ i
;
1277 XDrawRectangle (s
->display
, s
->window
,
1278 s
->gc
, x
, s
->y
, g
->pixel_width
- 1,
1280 x
+= g
->pixel_width
;
1285 char *char1b
= (char *) s
->char2b
;
1286 int boff
= s
->font_info
->baseline_offset
;
1288 if (s
->font_info
->vertical_centering
)
1289 boff
= VCENTER_BASELINE_OFFSET (s
->font
, s
->f
) - boff
;
1291 /* If we can use 8-bit functions, condense S->char2b. */
1293 for (i
= 0; i
< s
->nchars
; ++i
)
1294 char1b
[i
] = s
->char2b
[i
].byte2
;
1296 /* Draw text with XDrawString if background has already been
1297 filled. Otherwise, use XDrawImageString. (Note that
1298 XDrawImageString is usually faster than XDrawString.) Always
1299 use XDrawImageString when drawing the cursor so that there is
1300 no chance that characters under a box cursor are invisible. */
1302 || (s
->background_filled_p
&& s
->hl
!= DRAW_CURSOR
))
1304 /* Draw characters with 16-bit or 8-bit functions. */
1306 XDrawString16 (s
->display
, s
->window
, s
->gc
, x
,
1307 s
->ybase
- boff
, s
->char2b
, s
->nchars
);
1309 XDrawString (s
->display
, s
->window
, s
->gc
, x
,
1310 s
->ybase
- boff
, char1b
, s
->nchars
);
1315 XDrawImageString16 (s
->display
, s
->window
, s
->gc
, x
,
1316 s
->ybase
- boff
, s
->char2b
, s
->nchars
);
1318 XDrawImageString (s
->display
, s
->window
, s
->gc
, x
,
1319 s
->ybase
- boff
, char1b
, s
->nchars
);
1322 if (s
->face
->overstrike
)
1324 /* For overstriking (to simulate bold-face), draw the
1325 characters again shifted to the right by one pixel. */
1327 XDrawString16 (s
->display
, s
->window
, s
->gc
, x
+ 1,
1328 s
->ybase
- boff
, s
->char2b
, s
->nchars
);
1330 XDrawString (s
->display
, s
->window
, s
->gc
, x
+ 1,
1331 s
->ybase
- boff
, char1b
, s
->nchars
);
1336 /* Draw the foreground of composite glyph string S. */
1339 x_draw_composite_glyph_string_foreground (s
)
1340 struct glyph_string
*s
;
1344 /* If first glyph of S has a left box line, start drawing the text
1345 of S to the right of that box line. */
1346 if (s
->face
->box
!= FACE_NO_BOX
1347 && s
->first_glyph
->left_box_line_p
)
1348 x
= s
->x
+ abs (s
->face
->box_line_width
);
1352 /* S is a glyph string for a composition. S->gidx is the index of
1353 the first character drawn for glyphs of this composition.
1354 S->gidx == 0 means we are drawing the very first character of
1355 this composition. */
1357 /* Draw a rectangle for the composition if the font for the very
1358 first character of the composition could not be loaded. */
1359 if (s
->font_not_found_p
)
1362 XDrawRectangle (s
->display
, s
->window
, s
->gc
, x
, s
->y
,
1363 s
->width
- 1, s
->height
- 1);
1367 for (i
= 0; i
< s
->nchars
; i
++, ++s
->gidx
)
1369 XDrawString16 (s
->display
, s
->window
, s
->gc
,
1370 x
+ s
->cmp
->offsets
[s
->gidx
* 2],
1371 s
->ybase
- s
->cmp
->offsets
[s
->gidx
* 2 + 1],
1373 if (s
->face
->overstrike
)
1374 XDrawString16 (s
->display
, s
->window
, s
->gc
,
1375 x
+ s
->cmp
->offsets
[s
->gidx
* 2] + 1,
1376 s
->ybase
- s
->cmp
->offsets
[s
->gidx
* 2 + 1],
1383 #ifdef USE_X_TOOLKIT
1385 static struct frame
*x_frame_of_widget
P_ ((Widget
));
1386 static Boolean cvt_string_to_pixel
P_ ((Display
*, XrmValue
*, Cardinal
*,
1387 XrmValue
*, XrmValue
*, XtPointer
*));
1388 static void cvt_pixel_dtor
P_ ((XtAppContext
, XrmValue
*, XtPointer
,
1389 XrmValue
*, Cardinal
*));
1392 /* Return the frame on which widget WIDGET is used.. Abort if frame
1393 cannot be determined. */
1395 static struct frame
*
1396 x_frame_of_widget (widget
)
1399 struct x_display_info
*dpyinfo
;
1403 dpyinfo
= x_display_info_for_display (XtDisplay (widget
));
1405 /* Find the top-level shell of the widget. Note that this function
1406 can be called when the widget is not yet realized, so XtWindow
1407 (widget) == 0. That's the reason we can't simply use
1408 x_any_window_to_frame. */
1409 while (!XtIsTopLevelShell (widget
))
1410 widget
= XtParent (widget
);
1412 /* Look for a frame with that top-level widget. Allocate the color
1413 on that frame to get the right gamma correction value. */
1414 for (tail
= Vframe_list
; GC_CONSP (tail
); tail
= XCDR (tail
))
1415 if (GC_FRAMEP (XCAR (tail
))
1416 && (f
= XFRAME (XCAR (tail
)),
1418 && f
->output_data
.nothing
!= 1
1419 && FRAME_X_DISPLAY_INFO (f
) == dpyinfo
))
1420 && f
->output_data
.x
->widget
== widget
)
1427 /* Allocate the color COLOR->pixel on the screen and display of
1428 widget WIDGET in colormap CMAP. If an exact match cannot be
1429 allocated, try the nearest color available. Value is non-zero
1430 if successful. This is called from lwlib. */
1433 x_alloc_nearest_color_for_widget (widget
, cmap
, color
)
1438 struct frame
*f
= x_frame_of_widget (widget
);
1439 return x_alloc_nearest_color (f
, cmap
, color
);
1443 /* Allocate a color which is lighter or darker than *PIXEL by FACTOR
1444 or DELTA. Try a color with RGB values multiplied by FACTOR first.
1445 If this produces the same color as PIXEL, try a color where all RGB
1446 values have DELTA added. Return the allocated color in *PIXEL.
1447 DISPLAY is the X display, CMAP is the colormap to operate on.
1448 Value is non-zero if successful. */
1451 x_alloc_lighter_color_for_widget (widget
, display
, cmap
, pixel
, factor
, delta
)
1455 unsigned long *pixel
;
1459 struct frame
*f
= x_frame_of_widget (widget
);
1460 return x_alloc_lighter_color (f
, display
, cmap
, pixel
, factor
, delta
);
1464 /* Structure specifying which arguments should be passed by Xt to
1465 cvt_string_to_pixel. We want the widget's screen and colormap. */
1467 static XtConvertArgRec cvt_string_to_pixel_args
[] =
1469 {XtWidgetBaseOffset
, (XtPointer
) XtOffset (Widget
, core
.screen
),
1471 {XtWidgetBaseOffset
, (XtPointer
) XtOffset (Widget
, core
.colormap
),
1476 /* The address of this variable is returned by
1477 cvt_string_to_pixel. */
1479 static Pixel cvt_string_to_pixel_value
;
1482 /* Convert a color name to a pixel color.
1484 DPY is the display we are working on.
1486 ARGS is an array of *NARGS XrmValue structures holding additional
1487 information about the widget for which the conversion takes place.
1488 The contents of this array are determined by the specification
1489 in cvt_string_to_pixel_args.
1491 FROM is a pointer to an XrmValue which points to the color name to
1492 convert. TO is an XrmValue in which to return the pixel color.
1494 CLOSURE_RET is a pointer to user-data, in which we record if
1495 we allocated the color or not.
1497 Value is True if successful, False otherwise. */
1500 cvt_string_to_pixel (dpy
, args
, nargs
, from
, to
, closure_ret
)
1504 XrmValue
*from
, *to
;
1505 XtPointer
*closure_ret
;
1515 XtAppWarningMsg (XtDisplayToApplicationContext (dpy
),
1516 "wrongParameters", "cvt_string_to_pixel",
1518 "Screen and colormap args required", NULL
, NULL
);
1522 screen
= *(Screen
**) args
[0].addr
;
1523 cmap
= *(Colormap
*) args
[1].addr
;
1524 color_name
= (String
) from
->addr
;
1526 if (strcmp (color_name
, XtDefaultBackground
) == 0)
1528 *closure_ret
= (XtPointer
) False
;
1529 pixel
= WhitePixelOfScreen (screen
);
1531 else if (strcmp (color_name
, XtDefaultForeground
) == 0)
1533 *closure_ret
= (XtPointer
) False
;
1534 pixel
= BlackPixelOfScreen (screen
);
1536 else if (XParseColor (dpy
, cmap
, color_name
, &color
)
1537 && x_alloc_nearest_color_1 (dpy
, cmap
, &color
))
1539 pixel
= color
.pixel
;
1540 *closure_ret
= (XtPointer
) True
;
1545 Cardinal nparams
= 1;
1547 params
[0] = color_name
;
1548 XtAppWarningMsg (XtDisplayToApplicationContext (dpy
),
1549 "badValue", "cvt_string_to_pixel",
1550 "XtToolkitError", "Invalid color `%s'",
1555 if (to
->addr
!= NULL
)
1557 if (to
->size
< sizeof (Pixel
))
1559 to
->size
= sizeof (Pixel
);
1563 *(Pixel
*) to
->addr
= pixel
;
1567 cvt_string_to_pixel_value
= pixel
;
1568 to
->addr
= (XtPointer
) &cvt_string_to_pixel_value
;
1571 to
->size
= sizeof (Pixel
);
1576 /* Free a pixel color which was previously allocated via
1577 cvt_string_to_pixel. This is registered as the destructor
1578 for this type of resource via XtSetTypeConverter.
1580 APP is the application context in which we work.
1582 TO is a pointer to an XrmValue holding the color to free.
1583 CLOSURE is the value we stored in CLOSURE_RET for this color
1584 in cvt_string_to_pixel.
1586 ARGS and NARGS are like for cvt_string_to_pixel. */
1589 cvt_pixel_dtor (app
, to
, closure
, args
, nargs
)
1598 XtAppWarningMsg (app
, "wrongParameters", "cvt_pixel_dtor",
1600 "Screen and colormap arguments required",
1603 else if (closure
!= NULL
)
1605 /* We did allocate the pixel, so free it. */
1606 Screen
*screen
= *(Screen
**) args
[0].addr
;
1607 Colormap cmap
= *(Colormap
*) args
[1].addr
;
1608 x_free_dpy_colors (DisplayOfScreen (screen
), screen
, cmap
,
1609 (Pixel
*) to
->addr
, 1);
1614 #endif /* USE_X_TOOLKIT */
1617 /* Value is an array of XColor structures for the contents of the
1618 color map of display DPY. Set *NCELLS to the size of the array.
1619 Note that this probably shouldn't be called for large color maps,
1620 say a 24-bit TrueColor map. */
1622 static const XColor
*
1623 x_color_cells (dpy
, ncells
)
1627 struct x_display_info
*dpyinfo
= x_display_info_for_display (dpy
);
1629 if (dpyinfo
->color_cells
== NULL
)
1631 Screen
*screen
= dpyinfo
->screen
;
1634 dpyinfo
->ncolor_cells
1635 = XDisplayCells (dpy
, XScreenNumberOfScreen (screen
));
1636 dpyinfo
->color_cells
1637 = (XColor
*) xmalloc (dpyinfo
->ncolor_cells
1638 * sizeof *dpyinfo
->color_cells
);
1640 for (i
= 0; i
< dpyinfo
->ncolor_cells
; ++i
)
1641 dpyinfo
->color_cells
[i
].pixel
= i
;
1643 XQueryColors (dpy
, dpyinfo
->cmap
,
1644 dpyinfo
->color_cells
, dpyinfo
->ncolor_cells
);
1647 *ncells
= dpyinfo
->ncolor_cells
;
1648 return dpyinfo
->color_cells
;
1652 /* On frame F, translate pixel colors to RGB values for the NCOLORS
1653 colors in COLORS. Use cached information, if available. */
1656 x_query_colors (f
, colors
, ncolors
)
1661 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
1663 if (dpyinfo
->color_cells
)
1666 for (i
= 0; i
< ncolors
; ++i
)
1668 unsigned long pixel
= colors
[i
].pixel
;
1669 xassert (pixel
< dpyinfo
->ncolor_cells
);
1670 xassert (dpyinfo
->color_cells
[pixel
].pixel
== pixel
);
1671 colors
[i
] = dpyinfo
->color_cells
[pixel
];
1675 XQueryColors (FRAME_X_DISPLAY (f
), FRAME_X_COLORMAP (f
), colors
, ncolors
);
1679 /* On frame F, translate pixel color to RGB values for the color in
1680 COLOR. Use cached information, if available. */
1683 x_query_color (f
, color
)
1687 x_query_colors (f
, color
, 1);
1691 /* Allocate the color COLOR->pixel on DISPLAY, colormap CMAP. If an
1692 exact match can't be allocated, try the nearest color available.
1693 Value is non-zero if successful. Set *COLOR to the color
1697 x_alloc_nearest_color_1 (dpy
, cmap
, color
)
1704 rc
= XAllocColor (dpy
, cmap
, color
);
1707 /* If we got to this point, the colormap is full, so we're going
1708 to try to get the next closest color. The algorithm used is
1709 a least-squares matching, which is what X uses for closest
1710 color matching with StaticColor visuals. */
1712 unsigned long nearest_delta
= ~0;
1714 const XColor
*cells
= x_color_cells (dpy
, &ncells
);
1716 for (nearest
= i
= 0; i
< ncells
; ++i
)
1718 long dred
= (color
->red
>> 8) - (cells
[i
].red
>> 8);
1719 long dgreen
= (color
->green
>> 8) - (cells
[i
].green
>> 8);
1720 long dblue
= (color
->blue
>> 8) - (cells
[i
].blue
>> 8);
1721 unsigned long delta
= dred
* dred
+ dgreen
* dgreen
+ dblue
* dblue
;
1723 if (delta
< nearest_delta
)
1726 nearest_delta
= delta
;
1730 color
->red
= cells
[nearest
].red
;
1731 color
->green
= cells
[nearest
].green
;
1732 color
->blue
= cells
[nearest
].blue
;
1733 rc
= XAllocColor (dpy
, cmap
, color
);
1737 /* If allocation succeeded, and the allocated pixel color is not
1738 equal to a cached pixel color recorded earlier, there was a
1739 change in the colormap, so clear the color cache. */
1740 struct x_display_info
*dpyinfo
= x_display_info_for_display (dpy
);
1741 XColor
*cached_color
;
1743 if (dpyinfo
->color_cells
1744 && (cached_color
= &dpyinfo
->color_cells
[color
->pixel
],
1745 (cached_color
->red
!= color
->red
1746 || cached_color
->blue
!= color
->blue
1747 || cached_color
->green
!= color
->green
)))
1749 xfree (dpyinfo
->color_cells
);
1750 dpyinfo
->color_cells
= NULL
;
1751 dpyinfo
->ncolor_cells
= 0;
1755 #ifdef DEBUG_X_COLORS
1757 register_color (color
->pixel
);
1758 #endif /* DEBUG_X_COLORS */
1764 /* Allocate the color COLOR->pixel on frame F, colormap CMAP. If an
1765 exact match can't be allocated, try the nearest color available.
1766 Value is non-zero if successful. Set *COLOR to the color
1770 x_alloc_nearest_color (f
, cmap
, color
)
1775 gamma_correct (f
, color
);
1776 return x_alloc_nearest_color_1 (FRAME_X_DISPLAY (f
), cmap
, color
);
1780 /* Allocate color PIXEL on frame F. PIXEL must already be allocated.
1781 It's necessary to do this instead of just using PIXEL directly to
1782 get color reference counts right. */
1785 x_copy_color (f
, pixel
)
1787 unsigned long pixel
;
1791 color
.pixel
= pixel
;
1793 x_query_color (f
, &color
);
1794 XAllocColor (FRAME_X_DISPLAY (f
), FRAME_X_COLORMAP (f
), &color
);
1796 #ifdef DEBUG_X_COLORS
1797 register_color (pixel
);
1803 /* Allocate color PIXEL on display DPY. PIXEL must already be allocated.
1804 It's necessary to do this instead of just using PIXEL directly to
1805 get color reference counts right. */
1808 x_copy_dpy_color (dpy
, cmap
, pixel
)
1811 unsigned long pixel
;
1815 color
.pixel
= pixel
;
1817 XQueryColor (dpy
, cmap
, &color
);
1818 XAllocColor (dpy
, cmap
, &color
);
1820 #ifdef DEBUG_X_COLORS
1821 register_color (pixel
);
1827 /* Brightness beyond which a color won't have its highlight brightness
1830 Nominally, highlight colors for `3d' faces are calculated by
1831 brightening an object's color by a constant scale factor, but this
1832 doesn't yield good results for dark colors, so for colors who's
1833 brightness is less than this value (on a scale of 0-65535) have an
1834 use an additional additive factor.
1836 The value here is set so that the default menu-bar/mode-line color
1837 (grey75) will not have its highlights changed at all. */
1838 #define HIGHLIGHT_COLOR_DARK_BOOST_LIMIT 48000
1841 /* Allocate a color which is lighter or darker than *PIXEL by FACTOR
1842 or DELTA. Try a color with RGB values multiplied by FACTOR first.
1843 If this produces the same color as PIXEL, try a color where all RGB
1844 values have DELTA added. Return the allocated color in *PIXEL.
1845 DISPLAY is the X display, CMAP is the colormap to operate on.
1846 Value is non-zero if successful. */
1849 x_alloc_lighter_color (f
, display
, cmap
, pixel
, factor
, delta
)
1853 unsigned long *pixel
;
1861 /* Get RGB color values. */
1862 color
.pixel
= *pixel
;
1863 x_query_color (f
, &color
);
1865 /* Change RGB values by specified FACTOR. Avoid overflow! */
1866 xassert (factor
>= 0);
1867 new.red
= min (0xffff, factor
* color
.red
);
1868 new.green
= min (0xffff, factor
* color
.green
);
1869 new.blue
= min (0xffff, factor
* color
.blue
);
1871 /* Calculate brightness of COLOR. */
1872 bright
= (2 * color
.red
+ 3 * color
.green
+ color
.blue
) / 6;
1874 /* We only boost colors that are darker than
1875 HIGHLIGHT_COLOR_DARK_BOOST_LIMIT. */
1876 if (bright
< HIGHLIGHT_COLOR_DARK_BOOST_LIMIT
)
1877 /* Make an additive adjustment to NEW, because it's dark enough so
1878 that scaling by FACTOR alone isn't enough. */
1880 /* How far below the limit this color is (0 - 1, 1 being darker). */
1881 double dimness
= 1 - (double)bright
/ HIGHLIGHT_COLOR_DARK_BOOST_LIMIT
;
1882 /* The additive adjustment. */
1883 int min_delta
= delta
* dimness
* factor
/ 2;
1887 new.red
= max (0, new.red
- min_delta
);
1888 new.green
= max (0, new.green
- min_delta
);
1889 new.blue
= max (0, new.blue
- min_delta
);
1893 new.red
= min (0xffff, min_delta
+ new.red
);
1894 new.green
= min (0xffff, min_delta
+ new.green
);
1895 new.blue
= min (0xffff, min_delta
+ new.blue
);
1899 /* Try to allocate the color. */
1900 success_p
= x_alloc_nearest_color (f
, cmap
, &new);
1903 if (new.pixel
== *pixel
)
1905 /* If we end up with the same color as before, try adding
1906 delta to the RGB values. */
1907 x_free_colors (f
, &new.pixel
, 1);
1909 new.red
= min (0xffff, delta
+ color
.red
);
1910 new.green
= min (0xffff, delta
+ color
.green
);
1911 new.blue
= min (0xffff, delta
+ color
.blue
);
1912 success_p
= x_alloc_nearest_color (f
, cmap
, &new);
1923 /* Set up the foreground color for drawing relief lines of glyph
1924 string S. RELIEF is a pointer to a struct relief containing the GC
1925 with which lines will be drawn. Use a color that is FACTOR or
1926 DELTA lighter or darker than the relief's background which is found
1927 in S->f->output_data.x->relief_background. If such a color cannot
1928 be allocated, use DEFAULT_PIXEL, instead. */
1931 x_setup_relief_color (f
, relief
, factor
, delta
, default_pixel
)
1933 struct relief
*relief
;
1936 unsigned long default_pixel
;
1939 struct x_output
*di
= f
->output_data
.x
;
1940 unsigned long mask
= GCForeground
| GCLineWidth
| GCGraphicsExposures
;
1941 unsigned long pixel
;
1942 unsigned long background
= di
->relief_background
;
1943 Colormap cmap
= FRAME_X_COLORMAP (f
);
1944 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
1945 Display
*dpy
= FRAME_X_DISPLAY (f
);
1947 xgcv
.graphics_exposures
= False
;
1948 xgcv
.line_width
= 1;
1950 /* Free previously allocated color. The color cell will be reused
1951 when it has been freed as many times as it was allocated, so this
1952 doesn't affect faces using the same colors. */
1954 && relief
->allocated_p
)
1956 x_free_colors (f
, &relief
->pixel
, 1);
1957 relief
->allocated_p
= 0;
1960 /* Allocate new color. */
1961 xgcv
.foreground
= default_pixel
;
1963 if (dpyinfo
->n_planes
!= 1
1964 && x_alloc_lighter_color (f
, dpy
, cmap
, &pixel
, factor
, delta
))
1966 relief
->allocated_p
= 1;
1967 xgcv
.foreground
= relief
->pixel
= pixel
;
1970 if (relief
->gc
== 0)
1972 xgcv
.stipple
= dpyinfo
->gray
;
1974 relief
->gc
= XCreateGC (dpy
, FRAME_X_WINDOW (f
), mask
, &xgcv
);
1977 XChangeGC (dpy
, relief
->gc
, mask
, &xgcv
);
1981 /* Set up colors for the relief lines around glyph string S. */
1984 x_setup_relief_colors (s
)
1985 struct glyph_string
*s
;
1987 struct x_output
*di
= s
->f
->output_data
.x
;
1988 unsigned long color
;
1990 if (s
->face
->use_box_color_for_shadows_p
)
1991 color
= s
->face
->box_color
;
1992 else if (s
->first_glyph
->type
== IMAGE_GLYPH
1994 && !IMAGE_BACKGROUND_TRANSPARENT (s
->img
, s
->f
, 0))
1995 color
= IMAGE_BACKGROUND (s
->img
, s
->f
, 0);
2000 /* Get the background color of the face. */
2001 XGetGCValues (s
->display
, s
->gc
, GCBackground
, &xgcv
);
2002 color
= xgcv
.background
;
2005 if (di
->white_relief
.gc
== 0
2006 || color
!= di
->relief_background
)
2008 di
->relief_background
= color
;
2009 x_setup_relief_color (s
->f
, &di
->white_relief
, 1.2, 0x8000,
2010 WHITE_PIX_DEFAULT (s
->f
));
2011 x_setup_relief_color (s
->f
, &di
->black_relief
, 0.6, 0x4000,
2012 BLACK_PIX_DEFAULT (s
->f
));
2017 /* Draw a relief on frame F inside the rectangle given by LEFT_X,
2018 TOP_Y, RIGHT_X, and BOTTOM_Y. WIDTH is the thickness of the relief
2019 to draw, it must be >= 0. RAISED_P non-zero means draw a raised
2020 relief. LEFT_P non-zero means draw a relief on the left side of
2021 the rectangle. RIGHT_P non-zero means draw a relief on the right
2022 side of the rectangle. CLIP_RECT is the clipping rectangle to use
2026 x_draw_relief_rect (f
, left_x
, top_y
, right_x
, bottom_y
, width
,
2027 raised_p
, top_p
, bot_p
, left_p
, right_p
, clip_rect
)
2029 int left_x
, top_y
, right_x
, bottom_y
, width
;
2030 int top_p
, bot_p
, left_p
, right_p
, raised_p
;
2031 XRectangle
*clip_rect
;
2033 Display
*dpy
= FRAME_X_DISPLAY (f
);
2034 Window window
= FRAME_X_WINDOW (f
);
2039 gc
= f
->output_data
.x
->white_relief
.gc
;
2041 gc
= f
->output_data
.x
->black_relief
.gc
;
2042 XSetClipRectangles (dpy
, gc
, 0, 0, clip_rect
, 1, Unsorted
);
2046 for (i
= 0; i
< width
; ++i
)
2047 XDrawLine (dpy
, window
, gc
,
2048 left_x
+ i
* left_p
, top_y
+ i
,
2049 right_x
+ 1 - i
* right_p
, top_y
+ i
);
2053 for (i
= 0; i
< width
; ++i
)
2054 XDrawLine (dpy
, window
, gc
,
2055 left_x
+ i
, top_y
+ i
, left_x
+ i
, bottom_y
- i
+ 1);
2057 XSetClipMask (dpy
, gc
, None
);
2059 gc
= f
->output_data
.x
->black_relief
.gc
;
2061 gc
= f
->output_data
.x
->white_relief
.gc
;
2062 XSetClipRectangles (dpy
, gc
, 0, 0, clip_rect
, 1, Unsorted
);
2066 for (i
= 0; i
< width
; ++i
)
2067 XDrawLine (dpy
, window
, gc
,
2068 left_x
+ i
* left_p
, bottom_y
- i
,
2069 right_x
+ 1 - i
* right_p
, bottom_y
- i
);
2073 for (i
= 0; i
< width
; ++i
)
2074 XDrawLine (dpy
, window
, gc
,
2075 right_x
- i
, top_y
+ i
+ 1, right_x
- i
, bottom_y
- i
);
2077 XSetClipMask (dpy
, gc
, None
);
2081 /* Draw a box on frame F inside the rectangle given by LEFT_X, TOP_Y,
2082 RIGHT_X, and BOTTOM_Y. WIDTH is the thickness of the lines to
2083 draw, it must be >= 0. LEFT_P non-zero means draw a line on the
2084 left side of the rectangle. RIGHT_P non-zero means draw a line
2085 on the right side of the rectangle. CLIP_RECT is the clipping
2086 rectangle to use when drawing. */
2089 x_draw_box_rect (s
, left_x
, top_y
, right_x
, bottom_y
, width
,
2090 left_p
, right_p
, clip_rect
)
2091 struct glyph_string
*s
;
2092 int left_x
, top_y
, right_x
, bottom_y
, width
, left_p
, right_p
;
2093 XRectangle
*clip_rect
;
2097 XGetGCValues (s
->display
, s
->gc
, GCForeground
, &xgcv
);
2098 XSetForeground (s
->display
, s
->gc
, s
->face
->box_color
);
2099 XSetClipRectangles (s
->display
, s
->gc
, 0, 0, clip_rect
, 1, Unsorted
);
2102 XFillRectangle (s
->display
, s
->window
, s
->gc
,
2103 left_x
, top_y
, right_x
- left_x
+ 1, width
);
2107 XFillRectangle (s
->display
, s
->window
, s
->gc
,
2108 left_x
, top_y
, width
, bottom_y
- top_y
+ 1);
2111 XFillRectangle (s
->display
, s
->window
, s
->gc
,
2112 left_x
, bottom_y
- width
+ 1, right_x
- left_x
+ 1, width
);
2116 XFillRectangle (s
->display
, s
->window
, s
->gc
,
2117 right_x
- width
+ 1, top_y
, width
, bottom_y
- top_y
+ 1);
2119 XSetForeground (s
->display
, s
->gc
, xgcv
.foreground
);
2120 XSetClipMask (s
->display
, s
->gc
, None
);
2124 /* Draw a box around glyph string S. */
2127 x_draw_glyph_string_box (s
)
2128 struct glyph_string
*s
;
2130 int width
, left_x
, right_x
, top_y
, bottom_y
, last_x
, raised_p
;
2131 int left_p
, right_p
;
2132 struct glyph
*last_glyph
;
2133 XRectangle clip_rect
;
2135 last_x
= ((s
->row
->full_width_p
&& !s
->w
->pseudo_window_p
)
2136 ? WINDOW_RIGHT_EDGE_X (s
->w
)
2137 : window_box_right (s
->w
, s
->area
));
2139 /* The glyph that may have a right box line. */
2140 last_glyph
= (s
->cmp
|| s
->img
2142 : s
->first_glyph
+ s
->nchars
- 1);
2144 width
= abs (s
->face
->box_line_width
);
2145 raised_p
= s
->face
->box
== FACE_RAISED_BOX
;
2147 right_x
= (s
->row
->full_width_p
&& s
->extends_to_end_of_line_p
2149 : min (last_x
, s
->x
+ s
->background_width
) - 1);
2151 bottom_y
= top_y
+ s
->height
- 1;
2153 left_p
= (s
->first_glyph
->left_box_line_p
2154 || (s
->hl
== DRAW_MOUSE_FACE
2156 || s
->prev
->hl
!= s
->hl
)));
2157 right_p
= (last_glyph
->right_box_line_p
2158 || (s
->hl
== DRAW_MOUSE_FACE
2160 || s
->next
->hl
!= s
->hl
)));
2162 get_glyph_string_clip_rect (s
, &clip_rect
);
2164 if (s
->face
->box
== FACE_SIMPLE_BOX
)
2165 x_draw_box_rect (s
, left_x
, top_y
, right_x
, bottom_y
, width
,
2166 left_p
, right_p
, &clip_rect
);
2169 x_setup_relief_colors (s
);
2170 x_draw_relief_rect (s
->f
, left_x
, top_y
, right_x
, bottom_y
,
2171 width
, raised_p
, 1, 1, left_p
, right_p
, &clip_rect
);
2176 /* Draw foreground of image glyph string S. */
2179 x_draw_image_foreground (s
)
2180 struct glyph_string
*s
;
2183 int y
= s
->ybase
- image_ascent (s
->img
, s
->face
, &s
->slice
);
2185 /* If first glyph of S has a left box line, start drawing it to the
2186 right of that line. */
2187 if (s
->face
->box
!= FACE_NO_BOX
2188 && s
->first_glyph
->left_box_line_p
2190 x
+= abs (s
->face
->box_line_width
);
2192 /* If there is a margin around the image, adjust x- and y-position
2194 if (s
->slice
.x
== 0)
2195 x
+= s
->img
->hmargin
;
2196 if (s
->slice
.y
== 0)
2197 y
+= s
->img
->vmargin
;
2203 /* We can't set both a clip mask and use XSetClipRectangles
2204 because the latter also sets a clip mask. We also can't
2205 trust on the shape extension to be available
2206 (XShapeCombineRegion). So, compute the rectangle to draw
2208 unsigned long mask
= (GCClipMask
| GCClipXOrigin
| GCClipYOrigin
2211 XRectangle clip_rect
, image_rect
, r
;
2213 xgcv
.clip_mask
= s
->img
->mask
;
2214 xgcv
.clip_x_origin
= x
;
2215 xgcv
.clip_y_origin
= y
;
2216 xgcv
.function
= GXcopy
;
2217 XChangeGC (s
->display
, s
->gc
, mask
, &xgcv
);
2219 get_glyph_string_clip_rect (s
, &clip_rect
);
2222 image_rect
.width
= s
->slice
.width
;
2223 image_rect
.height
= s
->slice
.height
;
2224 if (x_intersect_rectangles (&clip_rect
, &image_rect
, &r
))
2225 XCopyArea (s
->display
, s
->img
->pixmap
, s
->window
, s
->gc
,
2226 s
->slice
.x
+ r
.x
- x
, s
->slice
.y
+ r
.y
- y
,
2227 r
.width
, r
.height
, r
.x
, r
.y
);
2231 XRectangle clip_rect
, image_rect
, r
;
2233 get_glyph_string_clip_rect (s
, &clip_rect
);
2236 image_rect
.width
= s
->slice
.width
;
2237 image_rect
.height
= s
->slice
.height
;
2238 if (x_intersect_rectangles (&clip_rect
, &image_rect
, &r
))
2239 XCopyArea (s
->display
, s
->img
->pixmap
, s
->window
, s
->gc
,
2240 s
->slice
.x
+ r
.x
- x
, s
->slice
.y
+ r
.y
- y
,
2241 r
.width
, r
.height
, r
.x
, r
.y
);
2243 /* When the image has a mask, we can expect that at
2244 least part of a mouse highlight or a block cursor will
2245 be visible. If the image doesn't have a mask, make
2246 a block cursor visible by drawing a rectangle around
2247 the image. I believe it's looking better if we do
2248 nothing here for mouse-face. */
2249 if (s
->hl
== DRAW_CURSOR
)
2251 int r
= s
->img
->relief
;
2253 XDrawRectangle (s
->display
, s
->window
, s
->gc
,
2255 s
->slice
.width
+ r
*2 - 1,
2256 s
->slice
.height
+ r
*2 - 1);
2261 /* Draw a rectangle if image could not be loaded. */
2262 XDrawRectangle (s
->display
, s
->window
, s
->gc
, x
, y
,
2263 s
->slice
.width
- 1, s
->slice
.height
- 1);
2267 /* Draw a relief around the image glyph string S. */
2270 x_draw_image_relief (s
)
2271 struct glyph_string
*s
;
2273 int x0
, y0
, x1
, y1
, thick
, raised_p
;
2276 int y
= s
->ybase
- image_ascent (s
->img
, s
->face
, &s
->slice
);
2278 /* If first glyph of S has a left box line, start drawing it to the
2279 right of that line. */
2280 if (s
->face
->box
!= FACE_NO_BOX
2281 && s
->first_glyph
->left_box_line_p
2283 x
+= abs (s
->face
->box_line_width
);
2285 /* If there is a margin around the image, adjust x- and y-position
2287 if (s
->slice
.x
== 0)
2288 x
+= s
->img
->hmargin
;
2289 if (s
->slice
.y
== 0)
2290 y
+= s
->img
->vmargin
;
2292 if (s
->hl
== DRAW_IMAGE_SUNKEN
2293 || s
->hl
== DRAW_IMAGE_RAISED
)
2295 thick
= tool_bar_button_relief
>= 0 ? tool_bar_button_relief
: DEFAULT_TOOL_BAR_BUTTON_RELIEF
;
2296 raised_p
= s
->hl
== DRAW_IMAGE_RAISED
;
2300 thick
= abs (s
->img
->relief
);
2301 raised_p
= s
->img
->relief
> 0;
2306 x1
= x
+ s
->slice
.width
+ thick
- 1;
2307 y1
= y
+ s
->slice
.height
+ thick
- 1;
2309 x_setup_relief_colors (s
);
2310 get_glyph_string_clip_rect (s
, &r
);
2311 x_draw_relief_rect (s
->f
, x0
, y0
, x1
, y1
, thick
, raised_p
,
2313 s
->slice
.y
+ s
->slice
.height
== s
->img
->height
,
2315 s
->slice
.x
+ s
->slice
.width
== s
->img
->width
,
2320 /* Draw the foreground of image glyph string S to PIXMAP. */
2323 x_draw_image_foreground_1 (s
, pixmap
)
2324 struct glyph_string
*s
;
2328 int y
= s
->ybase
- s
->y
- image_ascent (s
->img
, s
->face
, &s
->slice
);
2330 /* If first glyph of S has a left box line, start drawing it to the
2331 right of that line. */
2332 if (s
->face
->box
!= FACE_NO_BOX
2333 && s
->first_glyph
->left_box_line_p
2335 x
+= abs (s
->face
->box_line_width
);
2337 /* If there is a margin around the image, adjust x- and y-position
2339 if (s
->slice
.x
== 0)
2340 x
+= s
->img
->hmargin
;
2341 if (s
->slice
.y
== 0)
2342 y
+= s
->img
->vmargin
;
2348 /* We can't set both a clip mask and use XSetClipRectangles
2349 because the latter also sets a clip mask. We also can't
2350 trust on the shape extension to be available
2351 (XShapeCombineRegion). So, compute the rectangle to draw
2353 unsigned long mask
= (GCClipMask
| GCClipXOrigin
| GCClipYOrigin
2357 xgcv
.clip_mask
= s
->img
->mask
;
2358 xgcv
.clip_x_origin
= x
- s
->slice
.x
;
2359 xgcv
.clip_y_origin
= y
- s
->slice
.y
;
2360 xgcv
.function
= GXcopy
;
2361 XChangeGC (s
->display
, s
->gc
, mask
, &xgcv
);
2363 XCopyArea (s
->display
, s
->img
->pixmap
, pixmap
, s
->gc
,
2364 s
->slice
.x
, s
->slice
.y
,
2365 s
->slice
.width
, s
->slice
.height
, x
, y
);
2366 XSetClipMask (s
->display
, s
->gc
, None
);
2370 XCopyArea (s
->display
, s
->img
->pixmap
, pixmap
, s
->gc
,
2371 s
->slice
.x
, s
->slice
.y
,
2372 s
->slice
.width
, s
->slice
.height
, x
, y
);
2374 /* When the image has a mask, we can expect that at
2375 least part of a mouse highlight or a block cursor will
2376 be visible. If the image doesn't have a mask, make
2377 a block cursor visible by drawing a rectangle around
2378 the image. I believe it's looking better if we do
2379 nothing here for mouse-face. */
2380 if (s
->hl
== DRAW_CURSOR
)
2382 int r
= s
->img
->relief
;
2384 XDrawRectangle (s
->display
, s
->window
, s
->gc
, x
- r
, y
- r
,
2385 s
->slice
.width
+ r
*2 - 1,
2386 s
->slice
.height
+ r
*2 - 1);
2391 /* Draw a rectangle if image could not be loaded. */
2392 XDrawRectangle (s
->display
, pixmap
, s
->gc
, x
, y
,
2393 s
->slice
.width
- 1, s
->slice
.height
- 1);
2397 /* Draw part of the background of glyph string S. X, Y, W, and H
2398 give the rectangle to draw. */
2401 x_draw_glyph_string_bg_rect (s
, x
, y
, w
, h
)
2402 struct glyph_string
*s
;
2407 /* Fill background with a stipple pattern. */
2408 XSetFillStyle (s
->display
, s
->gc
, FillOpaqueStippled
);
2409 XFillRectangle (s
->display
, s
->window
, s
->gc
, x
, y
, w
, h
);
2410 XSetFillStyle (s
->display
, s
->gc
, FillSolid
);
2413 x_clear_glyph_string_rect (s
, x
, y
, w
, h
);
2417 /* Draw image glyph string S.
2420 s->x +-------------------------
2423 | +-------------------------
2426 | | +-------------------
2432 x_draw_image_glyph_string (s
)
2433 struct glyph_string
*s
;
2435 int box_line_hwidth
= abs (s
->face
->box_line_width
);
2436 int box_line_vwidth
= max (s
->face
->box_line_width
, 0);
2438 Pixmap pixmap
= None
;
2441 if (s
->slice
.y
== 0)
2442 height
-= box_line_vwidth
;
2443 if (s
->slice
.y
+ s
->slice
.height
>= s
->img
->height
)
2444 height
-= box_line_vwidth
;
2446 /* Fill background with face under the image. Do it only if row is
2447 taller than image or if image has a clip mask to reduce
2449 s
->stippled_p
= s
->face
->stipple
!= 0;
2450 if (height
> s
->slice
.height
2454 || s
->img
->pixmap
== 0
2455 || s
->width
!= s
->background_width
)
2459 /* Create a pixmap as large as the glyph string. Fill it
2460 with the background color. Copy the image to it, using
2461 its mask. Copy the temporary pixmap to the display. */
2462 Screen
*screen
= FRAME_X_SCREEN (s
->f
);
2463 int depth
= DefaultDepthOfScreen (screen
);
2465 /* Create a pixmap as large as the glyph string. */
2466 pixmap
= XCreatePixmap (s
->display
, s
->window
,
2467 s
->background_width
,
2470 /* Don't clip in the following because we're working on the
2472 XSetClipMask (s
->display
, s
->gc
, None
);
2474 /* Fill the pixmap with the background color/stipple. */
2477 /* Fill background with a stipple pattern. */
2478 XSetFillStyle (s
->display
, s
->gc
, FillOpaqueStippled
);
2479 XFillRectangle (s
->display
, pixmap
, s
->gc
,
2480 0, 0, s
->background_width
, s
->height
);
2481 XSetFillStyle (s
->display
, s
->gc
, FillSolid
);
2486 XGetGCValues (s
->display
, s
->gc
, GCForeground
| GCBackground
,
2488 XSetForeground (s
->display
, s
->gc
, xgcv
.background
);
2489 XFillRectangle (s
->display
, pixmap
, s
->gc
,
2490 0, 0, s
->background_width
, s
->height
);
2491 XSetForeground (s
->display
, s
->gc
, xgcv
.foreground
);
2499 if (s
->first_glyph
->left_box_line_p
2501 x
+= box_line_hwidth
;
2503 if (s
->slice
.y
== 0)
2504 y
+= box_line_vwidth
;
2506 x_draw_glyph_string_bg_rect (s
, x
, y
, s
->background_width
, height
);
2509 s
->background_filled_p
= 1;
2512 /* Draw the foreground. */
2515 x_draw_image_foreground_1 (s
, pixmap
);
2516 x_set_glyph_string_clipping (s
);
2517 XCopyArea (s
->display
, pixmap
, s
->window
, s
->gc
,
2518 0, 0, s
->background_width
, s
->height
, s
->x
, s
->y
);
2519 XFreePixmap (s
->display
, pixmap
);
2522 x_draw_image_foreground (s
);
2524 /* If we must draw a relief around the image, do it. */
2526 || s
->hl
== DRAW_IMAGE_RAISED
2527 || s
->hl
== DRAW_IMAGE_SUNKEN
)
2528 x_draw_image_relief (s
);
2532 /* Draw stretch glyph string S. */
2535 x_draw_stretch_glyph_string (s
)
2536 struct glyph_string
*s
;
2538 xassert (s
->first_glyph
->type
== STRETCH_GLYPH
);
2539 s
->stippled_p
= s
->face
->stipple
!= 0;
2541 if (s
->hl
== DRAW_CURSOR
2542 && !x_stretch_cursor_p
)
2544 /* If `x-stretch-block-cursor' is nil, don't draw a block cursor
2545 as wide as the stretch glyph. */
2546 int width
= min (FRAME_COLUMN_WIDTH (s
->f
), s
->background_width
);
2549 x_draw_glyph_string_bg_rect (s
, s
->x
, s
->y
, width
, s
->height
);
2551 /* Clear rest using the GC of the original non-cursor face. */
2552 if (width
< s
->background_width
)
2554 int x
= s
->x
+ width
, y
= s
->y
;
2555 int w
= s
->background_width
- width
, h
= s
->height
;
2559 if (s
->row
->mouse_face_p
2560 && cursor_in_mouse_face_p (s
->w
))
2562 x_set_mouse_face_gc (s
);
2568 get_glyph_string_clip_rect (s
, &r
);
2569 XSetClipRectangles (s
->display
, gc
, 0, 0, &r
, 1, Unsorted
);
2571 if (s
->face
->stipple
)
2573 /* Fill background with a stipple pattern. */
2574 XSetFillStyle (s
->display
, gc
, FillOpaqueStippled
);
2575 XFillRectangle (s
->display
, s
->window
, gc
, x
, y
, w
, h
);
2576 XSetFillStyle (s
->display
, gc
, FillSolid
);
2581 XGetGCValues (s
->display
, gc
, GCForeground
| GCBackground
, &xgcv
);
2582 XSetForeground (s
->display
, gc
, xgcv
.background
);
2583 XFillRectangle (s
->display
, s
->window
, gc
, x
, y
, w
, h
);
2584 XSetForeground (s
->display
, gc
, xgcv
.foreground
);
2588 else if (!s
->background_filled_p
)
2589 x_draw_glyph_string_bg_rect (s
, s
->x
, s
->y
, s
->background_width
,
2592 s
->background_filled_p
= 1;
2596 /* Draw glyph string S. */
2599 x_draw_glyph_string (s
)
2600 struct glyph_string
*s
;
2602 int relief_drawn_p
= 0;
2604 /* If S draws into the background of its successor, draw the
2605 background of the successor first so that S can draw into it.
2606 This makes S->next use XDrawString instead of XDrawImageString. */
2607 if (s
->next
&& s
->right_overhang
&& !s
->for_overlaps
)
2609 xassert (s
->next
->img
== NULL
);
2610 x_set_glyph_string_gc (s
->next
);
2611 x_set_glyph_string_clipping (s
->next
);
2612 x_draw_glyph_string_background (s
->next
, 1);
2615 /* Set up S->gc, set clipping and draw S. */
2616 x_set_glyph_string_gc (s
);
2618 /* Draw relief (if any) in advance for char/composition so that the
2619 glyph string can be drawn over it. */
2620 if (!s
->for_overlaps
2621 && s
->face
->box
!= FACE_NO_BOX
2622 && (s
->first_glyph
->type
== CHAR_GLYPH
2623 || s
->first_glyph
->type
== COMPOSITE_GLYPH
))
2626 x_set_glyph_string_clipping (s
);
2627 x_draw_glyph_string_background (s
, 1);
2628 x_draw_glyph_string_box (s
);
2629 x_set_glyph_string_clipping (s
);
2633 x_set_glyph_string_clipping (s
);
2635 switch (s
->first_glyph
->type
)
2638 x_draw_image_glyph_string (s
);
2642 x_draw_stretch_glyph_string (s
);
2646 if (s
->for_overlaps
)
2647 s
->background_filled_p
= 1;
2649 x_draw_glyph_string_background (s
, 0);
2650 x_draw_glyph_string_foreground (s
);
2653 case COMPOSITE_GLYPH
:
2654 if (s
->for_overlaps
|| s
->gidx
> 0)
2655 s
->background_filled_p
= 1;
2657 x_draw_glyph_string_background (s
, 1);
2658 x_draw_composite_glyph_string_foreground (s
);
2665 if (!s
->for_overlaps
)
2667 /* Draw underline. */
2668 if (s
->face
->underline_p
)
2670 unsigned long tem
, h
;
2673 /* Get the underline thickness. Default is 1 pixel. */
2674 if (!XGetFontProperty (s
->font
, XA_UNDERLINE_THICKNESS
, &h
))
2677 /* Get the underline position. This is the recommended
2678 vertical offset in pixels from the baseline to the top of
2679 the underline. This is a signed value according to the
2680 specs, and its default is
2682 ROUND ((maximum descent) / 2), with
2683 ROUND(x) = floor (x + 0.5) */
2685 if (x_use_underline_position_properties
2686 && XGetFontProperty (s
->font
, XA_UNDERLINE_POSITION
, &tem
))
2687 y
= s
->ybase
+ (long) tem
;
2688 else if (s
->face
->font
)
2689 y
= s
->ybase
+ (s
->face
->font
->max_bounds
.descent
+ 1) / 2;
2691 y
= s
->y
+ s
->height
- h
;
2693 if (s
->face
->underline_defaulted_p
)
2694 XFillRectangle (s
->display
, s
->window
, s
->gc
,
2695 s
->x
, y
, s
->width
, h
);
2699 XGetGCValues (s
->display
, s
->gc
, GCForeground
, &xgcv
);
2700 XSetForeground (s
->display
, s
->gc
, s
->face
->underline_color
);
2701 XFillRectangle (s
->display
, s
->window
, s
->gc
,
2702 s
->x
, y
, s
->width
, h
);
2703 XSetForeground (s
->display
, s
->gc
, xgcv
.foreground
);
2707 /* Draw overline. */
2708 if (s
->face
->overline_p
)
2710 unsigned long dy
= 0, h
= 1;
2712 if (s
->face
->overline_color_defaulted_p
)
2713 XFillRectangle (s
->display
, s
->window
, s
->gc
, s
->x
, s
->y
+ dy
,
2718 XGetGCValues (s
->display
, s
->gc
, GCForeground
, &xgcv
);
2719 XSetForeground (s
->display
, s
->gc
, s
->face
->overline_color
);
2720 XFillRectangle (s
->display
, s
->window
, s
->gc
, s
->x
, s
->y
+ dy
,
2722 XSetForeground (s
->display
, s
->gc
, xgcv
.foreground
);
2726 /* Draw strike-through. */
2727 if (s
->face
->strike_through_p
)
2729 unsigned long h
= 1;
2730 unsigned long dy
= (s
->height
- h
) / 2;
2732 if (s
->face
->strike_through_color_defaulted_p
)
2733 XFillRectangle (s
->display
, s
->window
, s
->gc
, s
->x
, s
->y
+ dy
,
2738 XGetGCValues (s
->display
, s
->gc
, GCForeground
, &xgcv
);
2739 XSetForeground (s
->display
, s
->gc
, s
->face
->strike_through_color
);
2740 XFillRectangle (s
->display
, s
->window
, s
->gc
, s
->x
, s
->y
+ dy
,
2742 XSetForeground (s
->display
, s
->gc
, xgcv
.foreground
);
2746 /* Draw relief if not yet drawn. */
2747 if (!relief_drawn_p
&& s
->face
->box
!= FACE_NO_BOX
)
2748 x_draw_glyph_string_box (s
);
2751 /* Reset clipping. */
2752 XSetClipMask (s
->display
, s
->gc
, None
);
2755 /* Shift display to make room for inserted glyphs. */
2758 x_shift_glyphs_for_insert (f
, x
, y
, width
, height
, shift_by
)
2760 int x
, y
, width
, height
, shift_by
;
2762 XCopyArea (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), FRAME_X_WINDOW (f
),
2763 f
->output_data
.x
->normal_gc
,
2764 x
, y
, width
, height
,
2768 /* Delete N glyphs at the nominal cursor position. Not implemented
2772 x_delete_glyphs (f
, n
)
2780 /* Like XClearArea, but check that WIDTH and HEIGHT are reasonable.
2781 If they are <= 0, this is probably an error. */
2784 x_clear_area (dpy
, window
, x
, y
, width
, height
, exposures
)
2791 xassert (width
> 0 && height
> 0);
2792 XClearArea (dpy
, window
, x
, y
, width
, height
, exposures
);
2796 /* Clear an entire frame. */
2799 x_clear_frame (struct frame
*f
)
2801 /* Clearing the frame will erase any cursor, so mark them all as no
2803 mark_window_cursors_off (XWINDOW (FRAME_ROOT_WINDOW (f
)));
2804 output_cursor
.hpos
= output_cursor
.vpos
= 0;
2805 output_cursor
.x
= -1;
2807 /* We don't set the output cursor here because there will always
2808 follow an explicit cursor_to. */
2810 XClearWindow (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
));
2812 /* We have to clear the scroll bars, too. If we have changed
2813 colors or something like that, then they should be notified. */
2814 x_scroll_bar_clear (f
);
2816 XFlush (FRAME_X_DISPLAY (f
));
2823 /* Invert the middle quarter of the frame for .15 sec. */
2825 /* We use the select system call to do the waiting, so we have to make
2826 sure it's available. If it isn't, we just won't do visual bells. */
2828 #if defined (HAVE_TIMEVAL) && defined (HAVE_SELECT)
2831 /* Subtract the `struct timeval' values X and Y, storing the result in
2832 *RESULT. Return 1 if the difference is negative, otherwise 0. */
2835 timeval_subtract (result
, x
, y
)
2836 struct timeval
*result
, x
, y
;
2838 /* Perform the carry for the later subtraction by updating y. This
2839 is safer because on some systems the tv_sec member is unsigned. */
2840 if (x
.tv_usec
< y
.tv_usec
)
2842 int nsec
= (y
.tv_usec
- x
.tv_usec
) / 1000000 + 1;
2843 y
.tv_usec
-= 1000000 * nsec
;
2847 if (x
.tv_usec
- y
.tv_usec
> 1000000)
2849 int nsec
= (y
.tv_usec
- x
.tv_usec
) / 1000000;
2850 y
.tv_usec
+= 1000000 * nsec
;
2854 /* Compute the time remaining to wait. tv_usec is certainly
2856 result
->tv_sec
= x
.tv_sec
- y
.tv_sec
;
2857 result
->tv_usec
= x
.tv_usec
- y
.tv_usec
;
2859 /* Return indication of whether the result should be considered
2861 return x
.tv_sec
< y
.tv_sec
;
2873 /* Create a GC that will use the GXxor function to flip foreground
2874 pixels into background pixels. */
2878 values
.function
= GXxor
;
2879 values
.foreground
= (FRAME_FOREGROUND_PIXEL (f
)
2880 ^ FRAME_BACKGROUND_PIXEL (f
));
2882 gc
= XCreateGC (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2883 GCFunction
| GCForeground
, &values
);
2887 /* Get the height not including a menu bar widget. */
2888 int height
= FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f
, FRAME_LINES (f
));
2889 /* Height of each line to flash. */
2890 int flash_height
= FRAME_LINE_HEIGHT (f
);
2891 /* These will be the left and right margins of the rectangles. */
2892 int flash_left
= FRAME_INTERNAL_BORDER_WIDTH (f
);
2893 int flash_right
= FRAME_PIXEL_WIDTH (f
) - FRAME_INTERNAL_BORDER_WIDTH (f
);
2897 /* Don't flash the area between a scroll bar and the frame
2898 edge it is next to. */
2899 switch (FRAME_VERTICAL_SCROLL_BAR_TYPE (f
))
2901 case vertical_scroll_bar_left
:
2902 flash_left
+= VERTICAL_SCROLL_BAR_WIDTH_TRIM
;
2905 case vertical_scroll_bar_right
:
2906 flash_right
-= VERTICAL_SCROLL_BAR_WIDTH_TRIM
;
2913 width
= flash_right
- flash_left
;
2915 /* If window is tall, flash top and bottom line. */
2916 if (height
> 3 * FRAME_LINE_HEIGHT (f
))
2918 XFillRectangle (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), gc
,
2920 (FRAME_INTERNAL_BORDER_WIDTH (f
)
2921 + FRAME_TOOL_BAR_LINES (f
) * FRAME_LINE_HEIGHT (f
)),
2922 width
, flash_height
);
2923 XFillRectangle (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), gc
,
2925 (height
- flash_height
2926 - FRAME_INTERNAL_BORDER_WIDTH (f
)),
2927 width
, flash_height
);
2930 /* If it is short, flash it all. */
2931 XFillRectangle (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), gc
,
2932 flash_left
, FRAME_INTERNAL_BORDER_WIDTH (f
),
2933 width
, height
- 2 * FRAME_INTERNAL_BORDER_WIDTH (f
));
2938 struct timeval wakeup
;
2940 EMACS_GET_TIME (wakeup
);
2942 /* Compute time to wait until, propagating carry from usecs. */
2943 wakeup
.tv_usec
+= 150000;
2944 wakeup
.tv_sec
+= (wakeup
.tv_usec
/ 1000000);
2945 wakeup
.tv_usec
%= 1000000;
2947 /* Keep waiting until past the time wakeup or any input gets
2949 while (! detect_input_pending ())
2951 struct timeval current
;
2952 struct timeval timeout
;
2954 EMACS_GET_TIME (current
);
2956 /* Break if result would be negative. */
2957 if (timeval_subtract (¤t
, wakeup
, current
))
2960 /* How long `select' should wait. */
2962 timeout
.tv_usec
= 10000;
2964 /* Try to wait that long--but we might wake up sooner. */
2965 select (0, NULL
, NULL
, NULL
, &timeout
);
2969 /* If window is tall, flash top and bottom line. */
2970 if (height
> 3 * FRAME_LINE_HEIGHT (f
))
2972 XFillRectangle (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), gc
,
2974 (FRAME_INTERNAL_BORDER_WIDTH (f
)
2975 + FRAME_TOOL_BAR_LINES (f
) * FRAME_LINE_HEIGHT (f
)),
2976 width
, flash_height
);
2977 XFillRectangle (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), gc
,
2979 (height
- flash_height
2980 - FRAME_INTERNAL_BORDER_WIDTH (f
)),
2981 width
, flash_height
);
2984 /* If it is short, flash it all. */
2985 XFillRectangle (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), gc
,
2986 flash_left
, FRAME_INTERNAL_BORDER_WIDTH (f
),
2987 width
, height
- 2 * FRAME_INTERNAL_BORDER_WIDTH (f
));
2989 XFreeGC (FRAME_X_DISPLAY (f
), gc
);
2997 #endif /* defined (HAVE_TIMEVAL) && defined (HAVE_SELECT) */
3000 /* Make audible bell. */
3005 struct frame
*f
= SELECTED_FRAME ();
3007 if (FRAME_X_DISPLAY (f
))
3009 #if defined (HAVE_TIMEVAL) && defined (HAVE_SELECT)
3016 XBell (FRAME_X_DISPLAY (f
), 0);
3017 XFlush (FRAME_X_DISPLAY (f
));
3024 /* Specify how many text lines, from the top of the window,
3025 should be affected by insert-lines and delete-lines operations.
3026 This, and those operations, are used only within an update
3027 that is bounded by calls to x_update_begin and x_update_end. */
3030 XTset_terminal_window (n
)
3033 /* This function intentionally left blank. */
3038 /***********************************************************************
3040 ***********************************************************************/
3042 /* Perform an insert-lines or delete-lines operation, inserting N
3043 lines or deleting -N lines at vertical position VPOS. */
3046 x_ins_del_lines (f
, vpos
, n
)
3054 /* Scroll part of the display as described by RUN. */
3057 x_scroll_run (w
, run
)
3061 struct frame
*f
= XFRAME (w
->frame
);
3062 int x
, y
, width
, height
, from_y
, to_y
, bottom_y
;
3064 /* Get frame-relative bounding box of the text display area of W,
3065 without mode lines. Include in this box the left and right
3067 window_box (w
, -1, &x
, &y
, &width
, &height
);
3069 from_y
= WINDOW_TO_FRAME_PIXEL_Y (w
, run
->current_y
);
3070 to_y
= WINDOW_TO_FRAME_PIXEL_Y (w
, run
->desired_y
);
3071 bottom_y
= y
+ height
;
3075 /* Scrolling up. Make sure we don't copy part of the mode
3076 line at the bottom. */
3077 if (from_y
+ run
->height
> bottom_y
)
3078 height
= bottom_y
- from_y
;
3080 height
= run
->height
;
3084 /* Scolling down. Make sure we don't copy over the mode line.
3086 if (to_y
+ run
->height
> bottom_y
)
3087 height
= bottom_y
- to_y
;
3089 height
= run
->height
;
3094 /* Cursor off. Will be switched on again in x_update_window_end. */
3098 XCopyArea (FRAME_X_DISPLAY (f
),
3099 FRAME_X_WINDOW (f
), FRAME_X_WINDOW (f
),
3100 f
->output_data
.x
->normal_gc
,
3110 /***********************************************************************
3112 ***********************************************************************/
3119 /* We used to only do this if Vx_no_window_manager was non-nil, but
3120 the ICCCM (section 4.1.6) says that the window's border pixmap
3121 and border pixel are window attributes which are "private to the
3122 client", so we can always change it to whatever we want. */
3124 XSetWindowBorder (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
3125 f
->output_data
.x
->border_pixel
);
3127 x_update_cursor (f
, 1);
3131 frame_unhighlight (f
)
3134 /* We used to only do this if Vx_no_window_manager was non-nil, but
3135 the ICCCM (section 4.1.6) says that the window's border pixmap
3136 and border pixel are window attributes which are "private to the
3137 client", so we can always change it to whatever we want. */
3139 XSetWindowBorderPixmap (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
3140 f
->output_data
.x
->border_tile
);
3142 x_update_cursor (f
, 1);
3145 /* The focus has changed. Update the frames as necessary to reflect
3146 the new situation. Note that we can't change the selected frame
3147 here, because the Lisp code we are interrupting might become confused.
3148 Each event gets marked with the frame in which it occurred, so the
3149 Lisp code can tell when the switch took place by examining the events. */
3152 x_new_focus_frame (dpyinfo
, frame
)
3153 struct x_display_info
*dpyinfo
;
3154 struct frame
*frame
;
3156 struct frame
*old_focus
= dpyinfo
->x_focus_frame
;
3158 if (frame
!= dpyinfo
->x_focus_frame
)
3160 /* Set this before calling other routines, so that they see
3161 the correct value of x_focus_frame. */
3162 dpyinfo
->x_focus_frame
= frame
;
3164 if (old_focus
&& old_focus
->auto_lower
)
3165 x_lower_frame (old_focus
);
3168 selected_frame
= frame
;
3169 XSETFRAME (XWINDOW (selected_frame
->selected_window
)->frame
,
3171 Fselect_window (selected_frame
->selected_window
, Qnil
);
3172 choose_minibuf_frame ();
3175 if (dpyinfo
->x_focus_frame
&& dpyinfo
->x_focus_frame
->auto_raise
)
3176 pending_autoraise_frame
= dpyinfo
->x_focus_frame
;
3178 pending_autoraise_frame
= 0;
3181 x_frame_rehighlight (dpyinfo
);
3184 /* Handle FocusIn and FocusOut state changes for FRAME.
3185 If FRAME has focus and there exists more than one frame, puts
3186 a FOCUS_IN_EVENT into *BUFP. */
3189 x_focus_changed (type
, state
, dpyinfo
, frame
, bufp
)
3192 struct x_display_info
*dpyinfo
;
3193 struct frame
*frame
;
3194 struct input_event
*bufp
;
3196 if (type
== FocusIn
)
3198 if (dpyinfo
->x_focus_event_frame
!= frame
)
3200 x_new_focus_frame (dpyinfo
, frame
);
3201 dpyinfo
->x_focus_event_frame
= frame
;
3203 /* Don't stop displaying the initial startup message
3204 for a switch-frame event we don't need. */
3205 if (GC_NILP (Vterminal_frame
)
3206 && GC_CONSP (Vframe_list
)
3207 && !GC_NILP (XCDR (Vframe_list
)))
3209 bufp
->kind
= FOCUS_IN_EVENT
;
3210 XSETFRAME (bufp
->frame_or_window
, frame
);
3214 frame
->output_data
.x
->focus_state
|= state
;
3217 if (FRAME_XIC (frame
))
3218 XSetICFocus (FRAME_XIC (frame
));
3221 else if (type
== FocusOut
)
3223 frame
->output_data
.x
->focus_state
&= ~state
;
3225 if (dpyinfo
->x_focus_event_frame
== frame
)
3227 dpyinfo
->x_focus_event_frame
= 0;
3228 x_new_focus_frame (dpyinfo
, 0);
3232 if (FRAME_XIC (frame
))
3233 XUnsetICFocus (FRAME_XIC (frame
));
3238 /* The focus may have changed. Figure out if it is a real focus change,
3239 by checking both FocusIn/Out and Enter/LeaveNotify events.
3241 Returns FOCUS_IN_EVENT event in *BUFP. */
3244 x_detect_focus_change (dpyinfo
, event
, bufp
)
3245 struct x_display_info
*dpyinfo
;
3247 struct input_event
*bufp
;
3249 struct frame
*frame
;
3251 frame
= x_any_window_to_frame (dpyinfo
, event
->xany
.window
);
3255 switch (event
->type
)
3260 struct frame
*focus_frame
= dpyinfo
->x_focus_event_frame
;
3262 = focus_frame
? focus_frame
->output_data
.x
->focus_state
: 0;
3264 if (event
->xcrossing
.detail
!= NotifyInferior
3265 && event
->xcrossing
.focus
3266 && ! (focus_state
& FOCUS_EXPLICIT
))
3267 x_focus_changed ((event
->type
== EnterNotify
? FocusIn
: FocusOut
),
3269 dpyinfo
, frame
, bufp
);
3275 x_focus_changed (event
->type
,
3276 (event
->xfocus
.detail
== NotifyPointer
?
3277 FOCUS_IMPLICIT
: FOCUS_EXPLICIT
),
3278 dpyinfo
, frame
, bufp
);
3284 /* Handle an event saying the mouse has moved out of an Emacs frame. */
3287 x_mouse_leave (dpyinfo
)
3288 struct x_display_info
*dpyinfo
;
3290 x_new_focus_frame (dpyinfo
, dpyinfo
->x_focus_event_frame
);
3293 /* The focus has changed, or we have redirected a frame's focus to
3294 another frame (this happens when a frame uses a surrogate
3295 mini-buffer frame). Shift the highlight as appropriate.
3297 The FRAME argument doesn't necessarily have anything to do with which
3298 frame is being highlighted or un-highlighted; we only use it to find
3299 the appropriate X display info. */
3302 XTframe_rehighlight (frame
)
3303 struct frame
*frame
;
3305 x_frame_rehighlight (FRAME_X_DISPLAY_INFO (frame
));
3309 x_frame_rehighlight (dpyinfo
)
3310 struct x_display_info
*dpyinfo
;
3312 struct frame
*old_highlight
= dpyinfo
->x_highlight_frame
;
3314 if (dpyinfo
->x_focus_frame
)
3316 dpyinfo
->x_highlight_frame
3317 = ((GC_FRAMEP (FRAME_FOCUS_FRAME (dpyinfo
->x_focus_frame
)))
3318 ? XFRAME (FRAME_FOCUS_FRAME (dpyinfo
->x_focus_frame
))
3319 : dpyinfo
->x_focus_frame
);
3320 if (! FRAME_LIVE_P (dpyinfo
->x_highlight_frame
))
3322 FRAME_FOCUS_FRAME (dpyinfo
->x_focus_frame
) = Qnil
;
3323 dpyinfo
->x_highlight_frame
= dpyinfo
->x_focus_frame
;
3327 dpyinfo
->x_highlight_frame
= 0;
3329 if (dpyinfo
->x_highlight_frame
!= old_highlight
)
3332 frame_unhighlight (old_highlight
);
3333 if (dpyinfo
->x_highlight_frame
)
3334 frame_highlight (dpyinfo
->x_highlight_frame
);
3340 /* Keyboard processing - modifier keys, vendor-specific keysyms, etc. */
3342 /* Initialize mode_switch_bit and modifier_meaning. */
3344 x_find_modifier_meanings (dpyinfo
)
3345 struct x_display_info
*dpyinfo
;
3347 int min_code
, max_code
;
3350 XModifierKeymap
*mods
;
3352 dpyinfo
->meta_mod_mask
= 0;
3353 dpyinfo
->shift_lock_mask
= 0;
3354 dpyinfo
->alt_mod_mask
= 0;
3355 dpyinfo
->super_mod_mask
= 0;
3356 dpyinfo
->hyper_mod_mask
= 0;
3359 XDisplayKeycodes (dpyinfo
->display
, &min_code
, &max_code
);
3361 min_code
= dpyinfo
->display
->min_keycode
;
3362 max_code
= dpyinfo
->display
->max_keycode
;
3365 syms
= XGetKeyboardMapping (dpyinfo
->display
,
3366 min_code
, max_code
- min_code
+ 1,
3368 mods
= XGetModifierMapping (dpyinfo
->display
);
3370 /* Scan the modifier table to see which modifier bits the Meta and
3371 Alt keysyms are on. */
3373 int row
, col
; /* The row and column in the modifier table. */
3374 int found_alt_or_meta
;
3376 for (row
= 3; row
< 8; row
++)
3378 found_alt_or_meta
= 0;
3379 for (col
= 0; col
< mods
->max_keypermod
; col
++)
3381 KeyCode code
= mods
->modifiermap
[(row
* mods
->max_keypermod
) + col
];
3383 /* Zeroes are used for filler. Skip them. */
3387 /* Are any of this keycode's keysyms a meta key? */
3391 for (code_col
= 0; code_col
< syms_per_code
; code_col
++)
3393 int sym
= syms
[((code
- min_code
) * syms_per_code
) + code_col
];
3399 found_alt_or_meta
= 1;
3400 dpyinfo
->meta_mod_mask
|= (1 << row
);
3405 found_alt_or_meta
= 1;
3406 dpyinfo
->alt_mod_mask
|= (1 << row
);
3411 if (!found_alt_or_meta
)
3412 dpyinfo
->hyper_mod_mask
|= (1 << row
);
3413 code_col
= syms_per_code
;
3414 col
= mods
->max_keypermod
;
3419 if (!found_alt_or_meta
)
3420 dpyinfo
->super_mod_mask
|= (1 << row
);
3421 code_col
= syms_per_code
;
3422 col
= mods
->max_keypermod
;
3426 /* Ignore this if it's not on the lock modifier. */
3427 if (!found_alt_or_meta
&& ((1 << row
) == LockMask
))
3428 dpyinfo
->shift_lock_mask
= LockMask
;
3429 code_col
= syms_per_code
;
3430 col
= mods
->max_keypermod
;
3439 /* If we couldn't find any meta keys, accept any alt keys as meta keys. */
3440 if (! dpyinfo
->meta_mod_mask
)
3442 dpyinfo
->meta_mod_mask
= dpyinfo
->alt_mod_mask
;
3443 dpyinfo
->alt_mod_mask
= 0;
3446 /* If some keys are both alt and meta,
3447 make them just meta, not alt. */
3448 if (dpyinfo
->alt_mod_mask
& dpyinfo
->meta_mod_mask
)
3450 dpyinfo
->alt_mod_mask
&= ~dpyinfo
->meta_mod_mask
;
3453 XFree ((char *) syms
);
3454 XFreeModifiermap (mods
);
3457 /* Convert between the modifier bits X uses and the modifier bits
3461 x_x_to_emacs_modifiers (dpyinfo
, state
)
3462 struct x_display_info
*dpyinfo
;
3465 EMACS_UINT mod_meta
= meta_modifier
;
3466 EMACS_UINT mod_alt
= alt_modifier
;
3467 EMACS_UINT mod_hyper
= hyper_modifier
;
3468 EMACS_UINT mod_super
= super_modifier
;
3471 tem
= Fget (Vx_alt_keysym
, Qmodifier_value
);
3472 if (! EQ (tem
, Qnil
)) mod_alt
= XUINT (tem
);
3473 tem
= Fget (Vx_meta_keysym
, Qmodifier_value
);
3474 if (! EQ (tem
, Qnil
)) mod_meta
= XUINT (tem
);
3475 tem
= Fget (Vx_hyper_keysym
, Qmodifier_value
);
3476 if (! EQ (tem
, Qnil
)) mod_hyper
= XUINT (tem
);
3477 tem
= Fget (Vx_super_keysym
, Qmodifier_value
);
3478 if (! EQ (tem
, Qnil
)) mod_super
= XUINT (tem
);
3481 return ( ((state
& (ShiftMask
| dpyinfo
->shift_lock_mask
)) ? shift_modifier
: 0)
3482 | ((state
& ControlMask
) ? ctrl_modifier
: 0)
3483 | ((state
& dpyinfo
->meta_mod_mask
) ? mod_meta
: 0)
3484 | ((state
& dpyinfo
->alt_mod_mask
) ? mod_alt
: 0)
3485 | ((state
& dpyinfo
->super_mod_mask
) ? mod_super
: 0)
3486 | ((state
& dpyinfo
->hyper_mod_mask
) ? mod_hyper
: 0));
3490 x_emacs_to_x_modifiers (dpyinfo
, state
)
3491 struct x_display_info
*dpyinfo
;
3494 EMACS_UINT mod_meta
= meta_modifier
;
3495 EMACS_UINT mod_alt
= alt_modifier
;
3496 EMACS_UINT mod_hyper
= hyper_modifier
;
3497 EMACS_UINT mod_super
= super_modifier
;
3501 tem
= Fget (Vx_alt_keysym
, Qmodifier_value
);
3502 if (! EQ (tem
, Qnil
)) mod_alt
= XUINT (tem
);
3503 tem
= Fget (Vx_meta_keysym
, Qmodifier_value
);
3504 if (! EQ (tem
, Qnil
)) mod_meta
= XUINT (tem
);
3505 tem
= Fget (Vx_hyper_keysym
, Qmodifier_value
);
3506 if (! EQ (tem
, Qnil
)) mod_hyper
= XUINT (tem
);
3507 tem
= Fget (Vx_super_keysym
, Qmodifier_value
);
3508 if (! EQ (tem
, Qnil
)) mod_super
= XUINT (tem
);
3511 return ( ((state
& mod_alt
) ? dpyinfo
->alt_mod_mask
: 0)
3512 | ((state
& mod_super
) ? dpyinfo
->super_mod_mask
: 0)
3513 | ((state
& mod_hyper
) ? dpyinfo
->hyper_mod_mask
: 0)
3514 | ((state
& shift_modifier
) ? ShiftMask
: 0)
3515 | ((state
& ctrl_modifier
) ? ControlMask
: 0)
3516 | ((state
& mod_meta
) ? dpyinfo
->meta_mod_mask
: 0));
3519 /* Convert a keysym to its name. */
3522 x_get_keysym_name (keysym
)
3528 value
= XKeysymToString (keysym
);
3536 /* Mouse clicks and mouse movement. Rah. */
3538 /* Prepare a mouse-event in *RESULT for placement in the input queue.
3540 If the event is a button press, then note that we have grabbed
3544 construct_mouse_click (result
, event
, f
)
3545 struct input_event
*result
;
3546 XButtonEvent
*event
;
3549 /* Make the event type NO_EVENT; we'll change that when we decide
3551 result
->kind
= MOUSE_CLICK_EVENT
;
3552 result
->code
= event
->button
- Button1
;
3553 result
->timestamp
= event
->time
;
3554 result
->modifiers
= (x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO (f
),
3556 | (event
->type
== ButtonRelease
3560 XSETINT (result
->x
, event
->x
);
3561 XSETINT (result
->y
, event
->y
);
3562 XSETFRAME (result
->frame_or_window
, f
);
3568 /* Function to report a mouse movement to the mainstream Emacs code.
3569 The input handler calls this.
3571 We have received a mouse movement event, which is given in *event.
3572 If the mouse is over a different glyph than it was last time, tell
3573 the mainstream emacs code by setting mouse_moved. If not, ask for
3574 another motion event, so we can check again the next time it moves. */
3576 static XMotionEvent last_mouse_motion_event
;
3577 static Lisp_Object last_mouse_motion_frame
;
3580 note_mouse_movement (frame
, event
)
3582 XMotionEvent
*event
;
3584 last_mouse_movement_time
= event
->time
;
3585 last_mouse_motion_event
= *event
;
3586 XSETFRAME (last_mouse_motion_frame
, frame
);
3588 if (!FRAME_X_OUTPUT (frame
))
3591 if (event
->window
!= FRAME_X_WINDOW (frame
))
3593 frame
->mouse_moved
= 1;
3594 last_mouse_scroll_bar
= Qnil
;
3595 note_mouse_highlight (frame
, -1, -1);
3596 last_mouse_glyph_frame
= 0;
3601 /* Has the mouse moved off the glyph it was on at the last sighting? */
3602 if (frame
!= last_mouse_glyph_frame
3603 || event
->x
< last_mouse_glyph
.x
3604 || event
->x
>= last_mouse_glyph
.x
+ last_mouse_glyph
.width
3605 || event
->y
< last_mouse_glyph
.y
3606 || event
->y
>= last_mouse_glyph
.y
+ last_mouse_glyph
.height
)
3608 frame
->mouse_moved
= 1;
3609 last_mouse_scroll_bar
= Qnil
;
3610 note_mouse_highlight (frame
, event
->x
, event
->y
);
3611 /* Remember which glyph we're now on. */
3612 remember_mouse_glyph (frame
, event
->x
, event
->y
, &last_mouse_glyph
);
3613 last_mouse_glyph_frame
= frame
;
3621 /************************************************************************
3623 ************************************************************************/
3626 redo_mouse_highlight ()
3628 if (!NILP (last_mouse_motion_frame
)
3629 && FRAME_LIVE_P (XFRAME (last_mouse_motion_frame
)))
3630 note_mouse_highlight (XFRAME (last_mouse_motion_frame
),
3631 last_mouse_motion_event
.x
,
3632 last_mouse_motion_event
.y
);
3637 /* Return the current position of the mouse.
3638 *FP should be a frame which indicates which display to ask about.
3640 If the mouse movement started in a scroll bar, set *FP, *BAR_WINDOW,
3641 and *PART to the frame, window, and scroll bar part that the mouse
3642 is over. Set *X and *Y to the portion and whole of the mouse's
3643 position on the scroll bar.
3645 If the mouse movement started elsewhere, set *FP to the frame the
3646 mouse is on, *BAR_WINDOW to nil, and *X and *Y to the character cell
3649 Set *TIME to the server time-stamp for the time at which the mouse
3650 was at this position.
3652 Don't store anything if we don't have a valid set of values to report.
3654 This clears the mouse_moved flag, so we can wait for the next mouse
3658 XTmouse_position (fp
, insist
, bar_window
, part
, x
, y
, time
)
3661 Lisp_Object
*bar_window
;
3662 enum scroll_bar_part
*part
;
3664 unsigned long *time
;
3670 if (! NILP (last_mouse_scroll_bar
) && insist
== 0)
3671 x_scroll_bar_report_motion (fp
, bar_window
, part
, x
, y
, time
);
3677 Window dummy_window
;
3680 Lisp_Object frame
, tail
;
3682 /* Clear the mouse-moved flag for every frame on this display. */
3683 FOR_EACH_FRAME (tail
, frame
)
3684 if (FRAME_X_P (XFRAME (frame
))
3685 && FRAME_X_DISPLAY (XFRAME (frame
)) == FRAME_X_DISPLAY (*fp
))
3686 XFRAME (frame
)->mouse_moved
= 0;
3688 last_mouse_scroll_bar
= Qnil
;
3690 /* Figure out which root window we're on. */
3691 XQueryPointer (FRAME_X_DISPLAY (*fp
),
3692 DefaultRootWindow (FRAME_X_DISPLAY (*fp
)),
3694 /* The root window which contains the pointer. */
3697 /* Trash which we can't trust if the pointer is on
3698 a different screen. */
3701 /* The position on that root window. */
3704 /* More trash we can't trust. */
3707 /* Modifier keys and pointer buttons, about which
3709 (unsigned int *) &dummy
);
3711 /* Now we have a position on the root; find the innermost window
3712 containing the pointer. */
3716 int parent_x
= 0, parent_y
= 0;
3720 /* XTranslateCoordinates can get errors if the window
3721 structure is changing at the same time this function
3722 is running. So at least we must not crash from them. */
3724 x_catch_errors (FRAME_X_DISPLAY (*fp
));
3726 if (FRAME_X_DISPLAY_INFO (*fp
)->grabbed
&& last_mouse_frame
3727 && FRAME_LIVE_P (last_mouse_frame
))
3729 /* If mouse was grabbed on a frame, give coords for that frame
3730 even if the mouse is now outside it. */
3731 XTranslateCoordinates (FRAME_X_DISPLAY (*fp
),
3733 /* From-window, to-window. */
3734 root
, FRAME_X_WINDOW (last_mouse_frame
),
3736 /* From-position, to-position. */
3737 root_x
, root_y
, &win_x
, &win_y
,
3741 f1
= last_mouse_frame
;
3747 XTranslateCoordinates (FRAME_X_DISPLAY (*fp
),
3749 /* From-window, to-window. */
3752 /* From-position, to-position. */
3753 root_x
, root_y
, &win_x
, &win_y
,
3758 if (child
== None
|| child
== win
)
3766 /* Now we know that:
3767 win is the innermost window containing the pointer
3768 (XTC says it has no child containing the pointer),
3769 win_x and win_y are the pointer's position in it
3770 (XTC did this the last time through), and
3771 parent_x and parent_y are the pointer's position in win's parent.
3772 (They are what win_x and win_y were when win was child.
3773 If win is the root window, it has no parent, and
3774 parent_{x,y} are invalid, but that's okay, because we'll
3775 never use them in that case.) */
3777 /* Is win one of our frames? */
3778 f1
= x_any_window_to_frame (FRAME_X_DISPLAY_INFO (*fp
), win
);
3780 #ifdef USE_X_TOOLKIT
3781 /* If we end up with the menu bar window, say it's not
3784 && f1
->output_data
.x
->menubar_widget
3785 && win
== XtWindow (f1
->output_data
.x
->menubar_widget
))
3787 #endif /* USE_X_TOOLKIT */
3790 if (x_had_errors_p (FRAME_X_DISPLAY (*fp
)))
3793 x_uncatch_errors ();
3795 /* If not, is it one of our scroll bars? */
3798 struct scroll_bar
*bar
;
3800 bar
= x_window_to_scroll_bar (FRAME_X_DISPLAY (*fp
), win
);
3804 f1
= XFRAME (WINDOW_FRAME (XWINDOW (bar
->window
)));
3810 if (f1
== 0 && insist
> 0)
3811 f1
= SELECTED_FRAME ();
3815 /* Ok, we found a frame. Store all the values.
3816 last_mouse_glyph is a rectangle used to reduce the
3817 generation of mouse events. To not miss any motion
3818 events, we must divide the frame into rectangles of the
3819 size of the smallest character that could be displayed
3820 on it, i.e. into the same rectangles that matrices on
3821 the frame are divided into. */
3823 remember_mouse_glyph (f1
, win_x
, win_y
, &last_mouse_glyph
);
3824 last_mouse_glyph_frame
= f1
;
3829 XSETINT (*x
, win_x
);
3830 XSETINT (*y
, win_y
);
3831 *time
= last_mouse_movement_time
;
3841 /***********************************************************************
3843 ***********************************************************************/
3845 /* Scroll bar support. */
3847 /* Given an X window ID and a DISPLAY, find the struct scroll_bar which
3849 This can be called in GC, so we have to make sure to strip off mark
3852 static struct scroll_bar
*
3853 x_window_to_scroll_bar (display
, window_id
)
3859 #if defined (USE_GTK) && defined (USE_TOOLKIT_SCROLL_BARS)
3860 window_id
= (Window
) xg_get_scroll_id_for_window (display
, window_id
);
3861 #endif /* USE_GTK && USE_TOOLKIT_SCROLL_BARS */
3863 for (tail
= Vframe_list
;
3864 XGCTYPE (tail
) == Lisp_Cons
;
3867 Lisp_Object frame
, bar
, condemned
;
3869 frame
= XCAR (tail
);
3870 /* All elements of Vframe_list should be frames. */
3871 if (! GC_FRAMEP (frame
))
3874 if (! FRAME_X_P (XFRAME (frame
)))
3877 /* Scan this frame's scroll bar list for a scroll bar with the
3879 condemned
= FRAME_CONDEMNED_SCROLL_BARS (XFRAME (frame
));
3880 for (bar
= FRAME_SCROLL_BARS (XFRAME (frame
));
3881 /* This trick allows us to search both the ordinary and
3882 condemned scroll bar lists with one loop. */
3883 ! GC_NILP (bar
) || (bar
= condemned
,
3886 bar
= XSCROLL_BAR (bar
)->next
)
3887 if (SCROLL_BAR_X_WINDOW (XSCROLL_BAR (bar
)) == window_id
&&
3888 FRAME_X_DISPLAY (XFRAME (frame
)) == display
)
3889 return XSCROLL_BAR (bar
);
3896 #if defined USE_LUCID
3898 /* Return the Lucid menu bar WINDOW is part of. Return null
3899 if WINDOW is not part of a menu bar. */
3902 x_window_to_menu_bar (window
)
3907 for (tail
= Vframe_list
;
3908 XGCTYPE (tail
) == Lisp_Cons
;
3911 if (FRAME_X_P (XFRAME (XCAR (tail
))))
3913 Lisp_Object frame
= XCAR (tail
);
3914 Widget menu_bar
= XFRAME (frame
)->output_data
.x
->menubar_widget
;
3916 if (menu_bar
&& xlwmenu_window_p (menu_bar
, window
))
3924 #endif /* USE_LUCID */
3927 /************************************************************************
3929 ************************************************************************/
3931 #ifdef USE_TOOLKIT_SCROLL_BARS
3933 static void x_scroll_bar_to_input_event
P_ ((XEvent
*, struct input_event
*));
3934 static void x_send_scroll_bar_event
P_ ((Lisp_Object
, int, int, int));
3935 static void x_create_toolkit_scroll_bar
P_ ((struct frame
*,
3936 struct scroll_bar
*));
3937 static void x_set_toolkit_scroll_bar_thumb
P_ ((struct scroll_bar
*,
3941 /* Lisp window being scrolled. Set when starting to interact with
3942 a toolkit scroll bar, reset to nil when ending the interaction. */
3944 static Lisp_Object window_being_scrolled
;
3946 /* Last scroll bar part sent in xm_scroll_callback. */
3948 static int last_scroll_bar_part
;
3950 /* Whether this is an Xaw with arrow-scrollbars. This should imply
3951 that movements of 1/20 of the screen size are mapped to up/down. */
3954 /* Id of action hook installed for scroll bars. */
3956 static XtActionHookId action_hook_id
;
3958 static Boolean xaw3d_arrow_scroll
;
3960 /* Whether the drag scrolling maintains the mouse at the top of the
3961 thumb. If not, resizing the thumb needs to be done more carefully
3962 to avoid jerkyness. */
3964 static Boolean xaw3d_pick_top
;
3966 /* Action hook installed via XtAppAddActionHook when toolkit scroll
3967 bars are used.. The hook is responsible for detecting when
3968 the user ends an interaction with the scroll bar, and generates
3969 a `end-scroll' SCROLL_BAR_CLICK_EVENT' event if so. */
3972 xt_action_hook (widget
, client_data
, action_name
, event
, params
,
3975 XtPointer client_data
;
3979 Cardinal
*num_params
;
3985 scroll_bar_p
= XmIsScrollBar (widget
);
3986 end_action
= "Release";
3987 #else /* !USE_MOTIF i.e. use Xaw */
3988 scroll_bar_p
= XtIsSubclass (widget
, scrollbarWidgetClass
);
3989 end_action
= "EndScroll";
3990 #endif /* USE_MOTIF */
3993 && strcmp (action_name
, end_action
) == 0
3994 && WINDOWP (window_being_scrolled
))
3998 x_send_scroll_bar_event (window_being_scrolled
,
3999 scroll_bar_end_scroll
, 0, 0);
4000 w
= XWINDOW (window_being_scrolled
);
4002 if (!NILP (XSCROLL_BAR (w
->vertical_scroll_bar
)->dragging
))
4004 XSCROLL_BAR (w
->vertical_scroll_bar
)->dragging
= Qnil
;
4005 /* The thumb size is incorrect while dragging: fix it. */
4006 set_vertical_scroll_bar (w
);
4008 window_being_scrolled
= Qnil
;
4009 last_scroll_bar_part
= -1;
4011 /* Xt timeouts no longer needed. */
4012 toolkit_scroll_bar_interaction
= 0;
4015 #endif /* not USE_GTK */
4017 /* A vector of windows used for communication between
4018 x_send_scroll_bar_event and x_scroll_bar_to_input_event. */
4020 static struct window
**scroll_bar_windows
;
4021 static int scroll_bar_windows_size
;
4024 /* Send a client message with message type Xatom_Scrollbar for a
4025 scroll action to the frame of WINDOW. PART is a value identifying
4026 the part of the scroll bar that was clicked on. PORTION is the
4027 amount to scroll of a whole of WHOLE. */
4030 x_send_scroll_bar_event (window
, part
, portion
, whole
)
4032 int part
, portion
, whole
;
4035 XClientMessageEvent
*ev
= (XClientMessageEvent
*) &event
;
4036 struct window
*w
= XWINDOW (window
);
4037 struct frame
*f
= XFRAME (w
->frame
);
4042 /* Construct a ClientMessage event to send to the frame. */
4043 ev
->type
= ClientMessage
;
4044 ev
->message_type
= FRAME_X_DISPLAY_INFO (f
)->Xatom_Scrollbar
;
4045 ev
->display
= FRAME_X_DISPLAY (f
);
4046 ev
->window
= FRAME_X_WINDOW (f
);
4049 /* We can only transfer 32 bits in the XClientMessageEvent, which is
4050 not enough to store a pointer or Lisp_Object on a 64 bit system.
4051 So, store the window in scroll_bar_windows and pass the index
4052 into that array in the event. */
4053 for (i
= 0; i
< scroll_bar_windows_size
; ++i
)
4054 if (scroll_bar_windows
[i
] == NULL
)
4057 if (i
== scroll_bar_windows_size
)
4059 int new_size
= max (10, 2 * scroll_bar_windows_size
);
4060 size_t nbytes
= new_size
* sizeof *scroll_bar_windows
;
4061 size_t old_nbytes
= scroll_bar_windows_size
* sizeof *scroll_bar_windows
;
4063 scroll_bar_windows
= (struct window
**) xrealloc (scroll_bar_windows
,
4065 bzero (&scroll_bar_windows
[i
], nbytes
- old_nbytes
);
4066 scroll_bar_windows_size
= new_size
;
4069 scroll_bar_windows
[i
] = w
;
4070 ev
->data
.l
[0] = (long) i
;
4071 ev
->data
.l
[1] = (long) part
;
4072 ev
->data
.l
[2] = (long) 0;
4073 ev
->data
.l
[3] = (long) portion
;
4074 ev
->data
.l
[4] = (long) whole
;
4076 /* Make Xt timeouts work while the scroll bar is active. */
4077 toolkit_scroll_bar_interaction
= 1;
4079 /* Setting the event mask to zero means that the message will
4080 be sent to the client that created the window, and if that
4081 window no longer exists, no event will be sent. */
4082 XSendEvent (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), False
, 0, &event
);
4087 /* Transform a scroll bar ClientMessage EVENT to an Emacs input event
4091 x_scroll_bar_to_input_event (event
, ievent
)
4093 struct input_event
*ievent
;
4095 XClientMessageEvent
*ev
= (XClientMessageEvent
*) event
;
4100 w
= scroll_bar_windows
[ev
->data
.l
[0]];
4101 scroll_bar_windows
[ev
->data
.l
[0]] = NULL
;
4103 XSETWINDOW (window
, w
);
4104 f
= XFRAME (w
->frame
);
4106 ievent
->kind
= SCROLL_BAR_CLICK_EVENT
;
4107 ievent
->frame_or_window
= window
;
4110 ievent
->timestamp
= CurrentTime
;
4112 ievent
->timestamp
= XtLastTimestampProcessed (FRAME_X_DISPLAY (f
));
4114 ievent
->part
= ev
->data
.l
[1];
4115 ievent
->code
= ev
->data
.l
[2];
4116 ievent
->x
= make_number ((int) ev
->data
.l
[3]);
4117 ievent
->y
= make_number ((int) ev
->data
.l
[4]);
4118 ievent
->modifiers
= 0;
4124 /* Minimum and maximum values used for Motif scroll bars. */
4126 #define XM_SB_MAX 10000000
4129 /* Scroll bar callback for Motif scroll bars. WIDGET is the scroll
4130 bar widget. CLIENT_DATA is a pointer to the scroll_bar structure.
4131 CALL_DATA is a pointer to a XmScrollBarCallbackStruct. */
4134 xm_scroll_callback (widget
, client_data
, call_data
)
4136 XtPointer client_data
, call_data
;
4138 struct scroll_bar
*bar
= (struct scroll_bar
*) client_data
;
4139 XmScrollBarCallbackStruct
*cs
= (XmScrollBarCallbackStruct
*) call_data
;
4140 int part
= -1, whole
= 0, portion
= 0;
4144 case XmCR_DECREMENT
:
4145 bar
->dragging
= Qnil
;
4146 part
= scroll_bar_up_arrow
;
4149 case XmCR_INCREMENT
:
4150 bar
->dragging
= Qnil
;
4151 part
= scroll_bar_down_arrow
;
4154 case XmCR_PAGE_DECREMENT
:
4155 bar
->dragging
= Qnil
;
4156 part
= scroll_bar_above_handle
;
4159 case XmCR_PAGE_INCREMENT
:
4160 bar
->dragging
= Qnil
;
4161 part
= scroll_bar_below_handle
;
4165 bar
->dragging
= Qnil
;
4166 part
= scroll_bar_to_top
;
4169 case XmCR_TO_BOTTOM
:
4170 bar
->dragging
= Qnil
;
4171 part
= scroll_bar_to_bottom
;
4178 /* Get the slider size. */
4180 XtVaGetValues (widget
, XmNsliderSize
, &slider_size
, NULL
);
4183 whole
= XM_SB_MAX
- slider_size
;
4184 portion
= min (cs
->value
, whole
);
4185 part
= scroll_bar_handle
;
4186 bar
->dragging
= make_number (cs
->value
);
4190 case XmCR_VALUE_CHANGED
:
4196 window_being_scrolled
= bar
->window
;
4197 last_scroll_bar_part
= part
;
4198 x_send_scroll_bar_event (bar
->window
, part
, portion
, whole
);
4203 #else /* !USE_MOTIF, i.e. Xaw or GTK */
4205 /* Scroll bar callback for GTK scroll bars. WIDGET is the scroll
4206 bar widget. DATA is a pointer to the scroll_bar structure. */
4209 xg_scroll_callback (widget
, data
)
4213 struct scroll_bar
*bar
= (struct scroll_bar
*) data
;
4219 int part
= -1, whole
= 0, portion
= 0;
4220 GtkAdjustment
*adj
= GTK_ADJUSTMENT (gtk_range_get_adjustment (widget
));
4222 position
= gtk_adjustment_get_value (adj
);
4224 p
= g_object_get_data (G_OBJECT (widget
), XG_LAST_SB_DATA
);
4227 p
= (gdouble
*) xmalloc (sizeof (gdouble
));
4229 g_object_set_data (G_OBJECT (widget
), XG_LAST_SB_DATA
, p
);
4235 if (xg_ignore_gtk_scrollbar
) return;
4237 diff
= (int) (position
- previous
);
4239 if (diff
== (int) adj
->step_increment
)
4241 part
= scroll_bar_down_arrow
;
4242 bar
->dragging
= Qnil
;
4244 else if (-diff
== (int) adj
->step_increment
)
4246 part
= scroll_bar_up_arrow
;
4247 bar
->dragging
= Qnil
;
4249 else if (diff
== (int) adj
->page_increment
)
4251 part
= scroll_bar_below_handle
;
4252 bar
->dragging
= Qnil
;
4254 else if (-diff
== (int) adj
->page_increment
)
4256 part
= scroll_bar_above_handle
;
4257 bar
->dragging
= Qnil
;
4261 part
= scroll_bar_handle
;
4262 whole
= adj
->upper
- adj
->page_size
;
4263 portion
= min ((int)position
, whole
);
4264 bar
->dragging
= make_number ((int)portion
);
4269 window_being_scrolled
= bar
->window
;
4270 last_scroll_bar_part
= part
;
4271 x_send_scroll_bar_event (bar
->window
, part
, portion
, whole
);
4275 #else /* not USE_GTK */
4277 /* Xaw scroll bar callback. Invoked when the thumb is dragged.
4278 WIDGET is the scroll bar widget. CLIENT_DATA is a pointer to the
4279 scroll bar struct. CALL_DATA is a pointer to a float saying where
4283 xaw_jump_callback (widget
, client_data
, call_data
)
4285 XtPointer client_data
, call_data
;
4287 struct scroll_bar
*bar
= (struct scroll_bar
*) client_data
;
4288 float top
= *(float *) call_data
;
4290 int whole
, portion
, height
;
4293 /* Get the size of the thumb, a value between 0 and 1. */
4295 XtVaGetValues (widget
, XtNshown
, &shown
, XtNheight
, &height
, NULL
);
4299 portion
= shown
< 1 ? top
* whole
: 0;
4301 if (shown
< 1 && (abs (top
+ shown
- 1) < 1.0/height
))
4302 /* Some derivatives of Xaw refuse to shrink the thumb when you reach
4303 the bottom, so we force the scrolling whenever we see that we're
4304 too close to the bottom (in x_set_toolkit_scroll_bar_thumb
4305 we try to ensure that we always stay two pixels away from the
4307 part
= scroll_bar_down_arrow
;
4309 part
= scroll_bar_handle
;
4311 window_being_scrolled
= bar
->window
;
4312 bar
->dragging
= make_number (portion
);
4313 last_scroll_bar_part
= part
;
4314 x_send_scroll_bar_event (bar
->window
, part
, portion
, whole
);
4318 /* Xaw scroll bar callback. Invoked for incremental scrolling.,
4319 i.e. line or page up or down. WIDGET is the Xaw scroll bar
4320 widget. CLIENT_DATA is a pointer to the scroll_bar structure for
4321 the scroll bar. CALL_DATA is an integer specifying the action that
4322 has taken place. Its magnitude is in the range 0..height of the
4323 scroll bar. Negative values mean scroll towards buffer start.
4324 Values < height of scroll bar mean line-wise movement. */
4327 xaw_scroll_callback (widget
, client_data
, call_data
)
4329 XtPointer client_data
, call_data
;
4331 struct scroll_bar
*bar
= (struct scroll_bar
*) client_data
;
4332 /* The position really is stored cast to a pointer. */
4333 int position
= (long) call_data
;
4337 /* Get the height of the scroll bar. */
4339 XtVaGetValues (widget
, XtNheight
, &height
, NULL
);
4342 if (abs (position
) >= height
)
4343 part
= (position
< 0) ? scroll_bar_above_handle
: scroll_bar_below_handle
;
4345 /* If Xaw3d was compiled with ARROW_SCROLLBAR,
4346 it maps line-movement to call_data = max(5, height/20). */
4347 else if (xaw3d_arrow_scroll
&& abs (position
) <= max (5, height
/ 20))
4348 part
= (position
< 0) ? scroll_bar_up_arrow
: scroll_bar_down_arrow
;
4350 part
= scroll_bar_move_ratio
;
4352 window_being_scrolled
= bar
->window
;
4353 bar
->dragging
= Qnil
;
4354 last_scroll_bar_part
= part
;
4355 x_send_scroll_bar_event (bar
->window
, part
, position
, height
);
4358 #endif /* not USE_GTK */
4359 #endif /* not USE_MOTIF */
4361 #define SCROLL_BAR_NAME "verticalScrollBar"
4363 /* Create the widget for scroll bar BAR on frame F. Record the widget
4364 and X window of the scroll bar in BAR. */
4368 x_create_toolkit_scroll_bar (f
, bar
)
4370 struct scroll_bar
*bar
;
4372 char *scroll_bar_name
= SCROLL_BAR_NAME
;
4375 xg_create_scroll_bar (f
, bar
, G_CALLBACK (xg_scroll_callback
),
4380 #else /* not USE_GTK */
4383 x_create_toolkit_scroll_bar (f
, bar
)
4385 struct scroll_bar
*bar
;
4391 char *scroll_bar_name
= SCROLL_BAR_NAME
;
4392 unsigned long pixel
;
4397 /* Set resources. Create the widget. */
4398 XtSetArg (av
[ac
], XtNmappedWhenManaged
, False
); ++ac
;
4399 XtSetArg (av
[ac
], XmNminimum
, 0); ++ac
;
4400 XtSetArg (av
[ac
], XmNmaximum
, XM_SB_MAX
); ++ac
;
4401 XtSetArg (av
[ac
], XmNorientation
, XmVERTICAL
); ++ac
;
4402 XtSetArg (av
[ac
], XmNprocessingDirection
, XmMAX_ON_BOTTOM
), ++ac
;
4403 XtSetArg (av
[ac
], XmNincrement
, 1); ++ac
;
4404 XtSetArg (av
[ac
], XmNpageIncrement
, 1); ++ac
;
4406 pixel
= f
->output_data
.x
->scroll_bar_foreground_pixel
;
4409 XtSetArg (av
[ac
], XmNforeground
, pixel
);
4413 pixel
= f
->output_data
.x
->scroll_bar_background_pixel
;
4416 XtSetArg (av
[ac
], XmNbackground
, pixel
);
4420 widget
= XmCreateScrollBar (f
->output_data
.x
->edit_widget
,
4421 scroll_bar_name
, av
, ac
);
4423 /* Add one callback for everything that can happen. */
4424 XtAddCallback (widget
, XmNdecrementCallback
, xm_scroll_callback
,
4426 XtAddCallback (widget
, XmNdragCallback
, xm_scroll_callback
,
4428 XtAddCallback (widget
, XmNincrementCallback
, xm_scroll_callback
,
4430 XtAddCallback (widget
, XmNpageDecrementCallback
, xm_scroll_callback
,
4432 XtAddCallback (widget
, XmNpageIncrementCallback
, xm_scroll_callback
,
4434 XtAddCallback (widget
, XmNtoBottomCallback
, xm_scroll_callback
,
4436 XtAddCallback (widget
, XmNtoTopCallback
, xm_scroll_callback
,
4439 /* Realize the widget. Only after that is the X window created. */
4440 XtRealizeWidget (widget
);
4442 /* Set the cursor to an arrow. I didn't find a resource to do that.
4443 And I'm wondering why it hasn't an arrow cursor by default. */
4444 XDefineCursor (XtDisplay (widget
), XtWindow (widget
),
4445 f
->output_data
.x
->nontext_cursor
);
4447 #else /* !USE_MOTIF i.e. use Xaw */
4449 /* Set resources. Create the widget. The background of the
4450 Xaw3d scroll bar widget is a little bit light for my taste.
4451 We don't alter it here to let users change it according
4452 to their taste with `emacs*verticalScrollBar.background: xxx'. */
4453 XtSetArg (av
[ac
], XtNmappedWhenManaged
, False
); ++ac
;
4454 XtSetArg (av
[ac
], XtNorientation
, XtorientVertical
); ++ac
;
4455 /* For smoother scrolling with Xaw3d -sm */
4456 /* XtSetArg (av[ac], XtNpickTop, True); ++ac; */
4458 pixel
= f
->output_data
.x
->scroll_bar_foreground_pixel
;
4461 XtSetArg (av
[ac
], XtNforeground
, pixel
);
4465 pixel
= f
->output_data
.x
->scroll_bar_background_pixel
;
4468 XtSetArg (av
[ac
], XtNbackground
, pixel
);
4472 /* Top/bottom shadow colors. */
4474 /* Allocate them, if necessary. */
4475 if (f
->output_data
.x
->scroll_bar_top_shadow_pixel
== -1)
4477 pixel
= f
->output_data
.x
->scroll_bar_background_pixel
;
4478 if (!x_alloc_lighter_color (f
, FRAME_X_DISPLAY (f
), FRAME_X_COLORMAP (f
),
4479 &pixel
, 1.2, 0x8000))
4481 f
->output_data
.x
->scroll_bar_top_shadow_pixel
= pixel
;
4483 if (f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
== -1)
4485 pixel
= f
->output_data
.x
->scroll_bar_background_pixel
;
4486 if (!x_alloc_lighter_color (f
, FRAME_X_DISPLAY (f
), FRAME_X_COLORMAP (f
),
4487 &pixel
, 0.6, 0x4000))
4489 f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
= pixel
;
4492 #ifdef XtNbeNiceToColormap
4493 /* Tell the toolkit about them. */
4494 if (f
->output_data
.x
->scroll_bar_top_shadow_pixel
== -1
4495 || f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
== -1)
4496 /* We tried to allocate a color for the top/bottom shadow, and
4497 failed, so tell Xaw3d to use dithering instead. */
4499 XtSetArg (av
[ac
], XtNbeNiceToColormap
, True
);
4503 /* Tell what colors Xaw3d should use for the top/bottom shadow, to
4504 be more consistent with other emacs 3d colors, and since Xaw3d is
4505 not good at dealing with allocation failure. */
4507 /* This tells Xaw3d to use real colors instead of dithering for
4509 XtSetArg (av
[ac
], XtNbeNiceToColormap
, False
);
4512 /* Specify the colors. */
4513 pixel
= f
->output_data
.x
->scroll_bar_top_shadow_pixel
;
4516 XtSetArg (av
[ac
], XtNtopShadowPixel
, pixel
);
4519 pixel
= f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
;
4522 XtSetArg (av
[ac
], XtNbottomShadowPixel
, pixel
);
4528 widget
= XtCreateWidget (scroll_bar_name
, scrollbarWidgetClass
,
4529 f
->output_data
.x
->edit_widget
, av
, ac
);
4533 char *val
= initial
;
4534 XtVaGetValues (widget
, XtNscrollVCursor
, (XtPointer
) &val
,
4535 #ifdef XtNarrowScrollbars
4536 XtNarrowScrollbars
, (XtPointer
) &xaw3d_arrow_scroll
,
4538 XtNpickTop
, (XtPointer
) &xaw3d_pick_top
, NULL
);
4539 if (xaw3d_arrow_scroll
|| val
== initial
)
4540 { /* ARROW_SCROLL */
4541 xaw3d_arrow_scroll
= True
;
4542 /* Isn't that just a personal preference ? --Stef */
4543 XtVaSetValues (widget
, XtNcursorName
, "top_left_arrow", NULL
);
4547 /* Define callbacks. */
4548 XtAddCallback (widget
, XtNjumpProc
, xaw_jump_callback
, (XtPointer
) bar
);
4549 XtAddCallback (widget
, XtNscrollProc
, xaw_scroll_callback
,
4552 /* Realize the widget. Only after that is the X window created. */
4553 XtRealizeWidget (widget
);
4555 #endif /* !USE_MOTIF */
4557 /* Install an action hook that lets us detect when the user
4558 finishes interacting with a scroll bar. */
4559 if (action_hook_id
== 0)
4560 action_hook_id
= XtAppAddActionHook (Xt_app_con
, xt_action_hook
, 0);
4562 /* Remember X window and widget in the scroll bar vector. */
4563 SET_SCROLL_BAR_X_WIDGET (bar
, widget
);
4564 xwindow
= XtWindow (widget
);
4565 SET_SCROLL_BAR_X_WINDOW (bar
, xwindow
);
4569 #endif /* not USE_GTK */
4572 /* Set the thumb size and position of scroll bar BAR. We are currently
4573 displaying PORTION out of a whole WHOLE, and our position POSITION. */
4577 x_set_toolkit_scroll_bar_thumb (bar
, portion
, position
, whole
)
4578 struct scroll_bar
*bar
;
4579 int portion
, position
, whole
;
4581 xg_set_toolkit_scroll_bar_thumb (bar
, portion
, position
, whole
);
4584 #else /* not USE_GTK */
4586 x_set_toolkit_scroll_bar_thumb (bar
, portion
, position
, whole
)
4587 struct scroll_bar
*bar
;
4588 int portion
, position
, whole
;
4590 struct frame
*f
= XFRAME (WINDOW_FRAME (XWINDOW (bar
->window
)));
4591 Widget widget
= SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f
), bar
);
4598 /* We use an estimate of 30 chars per line rather than the real
4599 `portion' value. This has the disadvantage that the thumb size
4600 is not very representative, but it makes our life a lot easier.
4601 Otherwise, we have to constantly adjust the thumb size, which
4602 we can't always do quickly enough: while dragging, the size of
4603 the thumb might prevent the user from dragging the thumb all the
4604 way to the end. but Motif and some versions of Xaw3d don't allow
4605 updating the thumb size while dragging. Also, even if we can update
4606 its size, the update will often happen too late.
4607 If you don't believe it, check out revision 1.650 of xterm.c to see
4608 what hoops we were going through and the still poor behavior we got. */
4609 portion
= WINDOW_TOTAL_LINES (XWINDOW (bar
->window
)) * 30;
4610 /* When the thumb is at the bottom, position == whole.
4611 So we need to increase `whole' to make space for the thumb. */
4618 top
= (float) position
/ whole
;
4619 shown
= (float) portion
/ whole
;
4622 if (NILP (bar
->dragging
))
4626 /* Slider size. Must be in the range [1 .. MAX - MIN] where MAX
4627 is the scroll bar's maximum and MIN is the scroll bar's minimum
4629 size
= shown
* XM_SB_MAX
;
4630 size
= min (size
, XM_SB_MAX
);
4631 size
= max (size
, 1);
4633 /* Position. Must be in the range [MIN .. MAX - SLIDER_SIZE]. */
4634 value
= top
* XM_SB_MAX
;
4635 value
= min (value
, XM_SB_MAX
- size
);
4637 XmScrollBarSetValues (widget
, value
, size
, 0, 0, False
);
4639 #else /* !USE_MOTIF i.e. use Xaw */
4645 top
= (float) position
/ whole
;
4646 shown
= (float) portion
/ whole
;
4650 float old_top
, old_shown
;
4652 XtVaGetValues (widget
,
4653 XtNtopOfThumb
, &old_top
,
4654 XtNshown
, &old_shown
,
4658 /* Massage the top+shown values. */
4659 if (NILP (bar
->dragging
) || last_scroll_bar_part
== scroll_bar_down_arrow
)
4660 top
= max (0, min (1, top
));
4663 /* Keep two pixels available for moving the thumb down. */
4664 shown
= max (0, min (1 - top
- (2.0 / height
), shown
));
4666 /* If the call to XawScrollbarSetThumb below doesn't seem to work,
4667 check that your system's configuration file contains a define
4668 for `NARROWPROTO'. See s/freebsd.h for an example. */
4669 if (top
!= old_top
|| shown
!= old_shown
)
4671 if (NILP (bar
->dragging
))
4672 XawScrollbarSetThumb (widget
, top
, shown
);
4675 /* Try to make the scrolling a tad smoother. */
4676 if (!xaw3d_pick_top
)
4677 shown
= min (shown
, old_shown
);
4679 XawScrollbarSetThumb (widget
, top
, shown
);
4683 #endif /* !USE_MOTIF */
4687 #endif /* not USE_GTK */
4689 #endif /* USE_TOOLKIT_SCROLL_BARS */
4693 /************************************************************************
4694 Scroll bars, general
4695 ************************************************************************/
4697 /* Create a scroll bar and return the scroll bar vector for it. W is
4698 the Emacs window on which to create the scroll bar. TOP, LEFT,
4699 WIDTH and HEIGHT are the pixel coordinates and dimensions of the
4702 static struct scroll_bar
*
4703 x_scroll_bar_create (w
, top
, left
, width
, height
)
4705 int top
, left
, width
, height
;
4707 struct frame
*f
= XFRAME (w
->frame
);
4708 struct scroll_bar
*bar
4709 = XSCROLL_BAR (Fmake_vector (make_number (SCROLL_BAR_VEC_SIZE
), Qnil
));
4713 #ifdef USE_TOOLKIT_SCROLL_BARS
4714 x_create_toolkit_scroll_bar (f
, bar
);
4715 #else /* not USE_TOOLKIT_SCROLL_BARS */
4717 XSetWindowAttributes a
;
4721 a
.background_pixel
= f
->output_data
.x
->scroll_bar_background_pixel
;
4722 if (a
.background_pixel
== -1)
4723 a
.background_pixel
= FRAME_BACKGROUND_PIXEL (f
);
4725 a
.event_mask
= (ButtonPressMask
| ButtonReleaseMask
4726 | ButtonMotionMask
| PointerMotionHintMask
4728 a
.cursor
= FRAME_X_DISPLAY_INFO (f
)->vertical_scroll_bar_cursor
;
4730 mask
= (CWBackPixel
| CWEventMask
| CWCursor
);
4732 /* Clear the area of W that will serve as a scroll bar. This is
4733 for the case that a window has been split horizontally. In
4734 this case, no clear_frame is generated to reduce flickering. */
4735 if (width
> 0 && height
> 0)
4736 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
4738 window_box_height (w
), False
);
4740 window
= XCreateWindow (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
4741 /* Position and size of scroll bar. */
4742 left
+ VERTICAL_SCROLL_BAR_WIDTH_TRIM
,
4744 width
- VERTICAL_SCROLL_BAR_WIDTH_TRIM
* 2,
4746 /* Border width, depth, class, and visual. */
4753 SET_SCROLL_BAR_X_WINDOW (bar
, window
);
4755 #endif /* not USE_TOOLKIT_SCROLL_BARS */
4757 XSETWINDOW (bar
->window
, w
);
4758 XSETINT (bar
->top
, top
);
4759 XSETINT (bar
->left
, left
);
4760 XSETINT (bar
->width
, width
);
4761 XSETINT (bar
->height
, height
);
4762 XSETINT (bar
->start
, 0);
4763 XSETINT (bar
->end
, 0);
4764 bar
->dragging
= Qnil
;
4766 /* Add bar to its frame's list of scroll bars. */
4767 bar
->next
= FRAME_SCROLL_BARS (f
);
4769 XSETVECTOR (FRAME_SCROLL_BARS (f
), bar
);
4770 if (!NILP (bar
->next
))
4771 XSETVECTOR (XSCROLL_BAR (bar
->next
)->prev
, bar
);
4773 /* Map the window/widget. */
4774 #ifdef USE_TOOLKIT_SCROLL_BARS
4777 xg_update_scrollbar_pos (f
,
4778 SCROLL_BAR_X_WINDOW (bar
),
4780 left
+ VERTICAL_SCROLL_BAR_WIDTH_TRIM
,
4781 width
- VERTICAL_SCROLL_BAR_WIDTH_TRIM
* 2,
4783 xg_show_scroll_bar (SCROLL_BAR_X_WINDOW (bar
));
4784 #else /* not USE_GTK */
4785 Widget scroll_bar
= SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f
), bar
);
4786 XtConfigureWidget (scroll_bar
,
4787 left
+ VERTICAL_SCROLL_BAR_WIDTH_TRIM
,
4789 width
- VERTICAL_SCROLL_BAR_WIDTH_TRIM
* 2,
4790 max (height
, 1), 0);
4791 XtMapWidget (scroll_bar
);
4792 #endif /* not USE_GTK */
4794 #else /* not USE_TOOLKIT_SCROLL_BARS */
4795 XMapRaised (FRAME_X_DISPLAY (f
), SCROLL_BAR_X_WINDOW (bar
));
4796 #endif /* not USE_TOOLKIT_SCROLL_BARS */
4803 /* Draw BAR's handle in the proper position.
4805 If the handle is already drawn from START to END, don't bother
4806 redrawing it, unless REBUILD is non-zero; in that case, always
4807 redraw it. (REBUILD is handy for drawing the handle after expose
4810 Normally, we want to constrain the start and end of the handle to
4811 fit inside its rectangle, but if the user is dragging the scroll
4812 bar handle, we want to let them drag it down all the way, so that
4813 the bar's top is as far down as it goes; otherwise, there's no way
4814 to move to the very end of the buffer. */
4816 #ifndef USE_TOOLKIT_SCROLL_BARS
4819 x_scroll_bar_set_handle (bar
, start
, end
, rebuild
)
4820 struct scroll_bar
*bar
;
4824 int dragging
= ! NILP (bar
->dragging
);
4825 Window w
= SCROLL_BAR_X_WINDOW (bar
);
4826 FRAME_PTR f
= XFRAME (WINDOW_FRAME (XWINDOW (bar
->window
)));
4827 GC gc
= f
->output_data
.x
->normal_gc
;
4829 /* If the display is already accurate, do nothing. */
4831 && start
== XINT (bar
->start
)
4832 && end
== XINT (bar
->end
))
4838 int inside_width
= VERTICAL_SCROLL_BAR_INSIDE_WIDTH (f
, XINT (bar
->width
));
4839 int inside_height
= VERTICAL_SCROLL_BAR_INSIDE_HEIGHT (f
, XINT (bar
->height
));
4840 int top_range
= VERTICAL_SCROLL_BAR_TOP_RANGE (f
, XINT (bar
->height
));
4842 /* Make sure the values are reasonable, and try to preserve
4843 the distance between start and end. */
4845 int length
= end
- start
;
4849 else if (start
> top_range
)
4851 end
= start
+ length
;
4855 else if (end
> top_range
&& ! dragging
)
4859 /* Store the adjusted setting in the scroll bar. */
4860 XSETINT (bar
->start
, start
);
4861 XSETINT (bar
->end
, end
);
4863 /* Clip the end position, just for display. */
4864 if (end
> top_range
)
4867 /* Draw bottom positions VERTICAL_SCROLL_BAR_MIN_HANDLE pixels
4868 below top positions, to make sure the handle is always at least
4869 that many pixels tall. */
4870 end
+= VERTICAL_SCROLL_BAR_MIN_HANDLE
;
4872 /* Draw the empty space above the handle. Note that we can't clear
4873 zero-height areas; that means "clear to end of window." */
4875 x_clear_area (FRAME_X_DISPLAY (f
), w
,
4876 /* x, y, width, height, and exposures. */
4877 VERTICAL_SCROLL_BAR_LEFT_BORDER
,
4878 VERTICAL_SCROLL_BAR_TOP_BORDER
,
4879 inside_width
, start
,
4882 /* Change to proper foreground color if one is specified. */
4883 if (f
->output_data
.x
->scroll_bar_foreground_pixel
!= -1)
4884 XSetForeground (FRAME_X_DISPLAY (f
), gc
,
4885 f
->output_data
.x
->scroll_bar_foreground_pixel
);
4887 /* Draw the handle itself. */
4888 XFillRectangle (FRAME_X_DISPLAY (f
), w
, gc
,
4889 /* x, y, width, height */
4890 VERTICAL_SCROLL_BAR_LEFT_BORDER
,
4891 VERTICAL_SCROLL_BAR_TOP_BORDER
+ start
,
4892 inside_width
, end
- start
);
4894 /* Restore the foreground color of the GC if we changed it above. */
4895 if (f
->output_data
.x
->scroll_bar_foreground_pixel
!= -1)
4896 XSetForeground (FRAME_X_DISPLAY (f
), gc
,
4897 FRAME_FOREGROUND_PIXEL (f
));
4899 /* Draw the empty space below the handle. Note that we can't
4900 clear zero-height areas; that means "clear to end of window." */
4901 if (end
< inside_height
)
4902 x_clear_area (FRAME_X_DISPLAY (f
), w
,
4903 /* x, y, width, height, and exposures. */
4904 VERTICAL_SCROLL_BAR_LEFT_BORDER
,
4905 VERTICAL_SCROLL_BAR_TOP_BORDER
+ end
,
4906 inside_width
, inside_height
- end
,
4914 #endif /* !USE_TOOLKIT_SCROLL_BARS */
4916 /* Destroy scroll bar BAR, and set its Emacs window's scroll bar to
4920 x_scroll_bar_remove (bar
)
4921 struct scroll_bar
*bar
;
4923 struct frame
*f
= XFRAME (WINDOW_FRAME (XWINDOW (bar
->window
)));
4926 #ifdef USE_TOOLKIT_SCROLL_BARS
4928 xg_remove_scroll_bar (f
, SCROLL_BAR_X_WINDOW (bar
));
4929 #else /* not USE_GTK */
4930 XtDestroyWidget (SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f
), bar
));
4931 #endif /* not USE_GTK */
4933 XDestroyWindow (FRAME_X_DISPLAY (f
), SCROLL_BAR_X_WINDOW (bar
));
4936 /* Disassociate this scroll bar from its window. */
4937 XWINDOW (bar
->window
)->vertical_scroll_bar
= Qnil
;
4943 /* Set the handle of the vertical scroll bar for WINDOW to indicate
4944 that we are displaying PORTION characters out of a total of WHOLE
4945 characters, starting at POSITION. If WINDOW has no scroll bar,
4949 XTset_vertical_scroll_bar (w
, portion
, whole
, position
)
4951 int portion
, whole
, position
;
4953 struct frame
*f
= XFRAME (w
->frame
);
4954 struct scroll_bar
*bar
;
4955 int top
, height
, left
, sb_left
, width
, sb_width
;
4956 int window_y
, window_height
;
4958 /* Get window dimensions. */
4959 window_box (w
, -1, 0, &window_y
, 0, &window_height
);
4961 width
= WINDOW_CONFIG_SCROLL_BAR_COLS (w
) * FRAME_COLUMN_WIDTH (f
);
4962 height
= window_height
;
4964 /* Compute the left edge of the scroll bar area. */
4965 left
= WINDOW_SCROLL_BAR_AREA_X (w
);
4967 /* Compute the width of the scroll bar which might be less than
4968 the width of the area reserved for the scroll bar. */
4969 if (WINDOW_CONFIG_SCROLL_BAR_WIDTH (w
) > 0)
4970 sb_width
= WINDOW_CONFIG_SCROLL_BAR_WIDTH (w
);
4974 /* Compute the left edge of the scroll bar. */
4975 #ifdef USE_TOOLKIT_SCROLL_BARS
4976 if (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w
))
4978 (WINDOW_RIGHTMOST_P (w
)
4979 ? width
- sb_width
- (width
- sb_width
) / 2
4983 (WINDOW_LEFTMOST_P (w
)
4984 ? (width
- sb_width
) / 2
4985 : width
- sb_width
));
4987 if (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w
))
4988 sb_left
= left
+ width
- sb_width
;
4993 /* Does the scroll bar exist yet? */
4994 if (NILP (w
->vertical_scroll_bar
))
4996 if (width
> 0 && height
> 0)
4999 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
5000 left
, top
, width
, height
, False
);
5004 bar
= x_scroll_bar_create (w
, top
, sb_left
, sb_width
, height
);
5008 /* It may just need to be moved and resized. */
5009 unsigned int mask
= 0;
5011 bar
= XSCROLL_BAR (w
->vertical_scroll_bar
);
5015 if (sb_left
!= XINT (bar
->left
))
5017 if (top
!= XINT (bar
->top
))
5019 if (sb_width
!= XINT (bar
->width
))
5021 if (height
!= XINT (bar
->height
))
5024 #ifdef USE_TOOLKIT_SCROLL_BARS
5026 /* Move/size the scroll bar widget. */
5029 /* Since toolkit scroll bars are smaller than the space reserved
5030 for them on the frame, we have to clear "under" them. */
5031 if (width
> 0 && height
> 0)
5032 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
5033 left
, top
, width
, height
, False
);
5035 xg_update_scrollbar_pos (f
,
5036 SCROLL_BAR_X_WINDOW (bar
),
5038 sb_left
+ VERTICAL_SCROLL_BAR_WIDTH_TRIM
,
5039 sb_width
- VERTICAL_SCROLL_BAR_WIDTH_TRIM
*2,
5041 #else /* not USE_GTK */
5042 XtConfigureWidget (SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f
), bar
),
5043 sb_left
+ VERTICAL_SCROLL_BAR_WIDTH_TRIM
,
5045 sb_width
- VERTICAL_SCROLL_BAR_WIDTH_TRIM
* 2,
5046 max (height
, 1), 0);
5047 #endif /* not USE_GTK */
5049 #else /* not USE_TOOLKIT_SCROLL_BARS */
5051 /* Clear areas not covered by the scroll bar because of
5052 VERTICAL_SCROLL_BAR_WIDTH_TRIM. */
5053 if (VERTICAL_SCROLL_BAR_WIDTH_TRIM
)
5055 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
5056 left
, top
, VERTICAL_SCROLL_BAR_WIDTH_TRIM
,
5058 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
5059 left
+ width
- VERTICAL_SCROLL_BAR_WIDTH_TRIM
,
5060 top
, VERTICAL_SCROLL_BAR_WIDTH_TRIM
,
5064 /* Clear areas not covered by the scroll bar because it's not as
5065 wide as the area reserved for it. This makes sure a
5066 previous mode line display is cleared after C-x 2 C-x 1, for
5069 int area_width
= WINDOW_CONFIG_SCROLL_BAR_COLS (w
) * FRAME_COLUMN_WIDTH (f
);
5070 int rest
= area_width
- sb_width
;
5071 if (rest
> 0 && height
> 0)
5073 if (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w
))
5074 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
5075 left
+ area_width
- rest
, top
,
5076 rest
, height
, False
);
5078 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
5079 left
, top
, rest
, height
, False
);
5083 /* Move/size the scroll bar window. */
5088 wc
.x
= sb_left
+ VERTICAL_SCROLL_BAR_WIDTH_TRIM
;
5090 wc
.width
= sb_width
- VERTICAL_SCROLL_BAR_WIDTH_TRIM
* 2;
5092 XConfigureWindow (FRAME_X_DISPLAY (f
), SCROLL_BAR_X_WINDOW (bar
),
5096 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5098 /* Remember new settings. */
5099 XSETINT (bar
->left
, sb_left
);
5100 XSETINT (bar
->top
, top
);
5101 XSETINT (bar
->width
, sb_width
);
5102 XSETINT (bar
->height
, height
);
5107 #ifdef USE_TOOLKIT_SCROLL_BARS
5108 x_set_toolkit_scroll_bar_thumb (bar
, portion
, position
, whole
);
5109 #else /* not USE_TOOLKIT_SCROLL_BARS */
5110 /* Set the scroll bar's current state, unless we're currently being
5112 if (NILP (bar
->dragging
))
5114 int top_range
= VERTICAL_SCROLL_BAR_TOP_RANGE (f
, height
);
5117 x_scroll_bar_set_handle (bar
, 0, top_range
, 0);
5120 int start
= ((double) position
* top_range
) / whole
;
5121 int end
= ((double) (position
+ portion
) * top_range
) / whole
;
5122 x_scroll_bar_set_handle (bar
, start
, end
, 0);
5125 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5127 XSETVECTOR (w
->vertical_scroll_bar
, bar
);
5131 /* The following three hooks are used when we're doing a thorough
5132 redisplay of the frame. We don't explicitly know which scroll bars
5133 are going to be deleted, because keeping track of when windows go
5134 away is a real pain - "Can you say set-window-configuration, boys
5135 and girls?" Instead, we just assert at the beginning of redisplay
5136 that *all* scroll bars are to be removed, and then save a scroll bar
5137 from the fiery pit when we actually redisplay its window. */
5139 /* Arrange for all scroll bars on FRAME to be removed at the next call
5140 to `*judge_scroll_bars_hook'. A scroll bar may be spared if
5141 `*redeem_scroll_bar_hook' is applied to its window before the judgment. */
5144 XTcondemn_scroll_bars (frame
)
5147 /* Transfer all the scroll bars to FRAME_CONDEMNED_SCROLL_BARS. */
5148 while (! NILP (FRAME_SCROLL_BARS (frame
)))
5151 bar
= FRAME_SCROLL_BARS (frame
);
5152 FRAME_SCROLL_BARS (frame
) = XSCROLL_BAR (bar
)->next
;
5153 XSCROLL_BAR (bar
)->next
= FRAME_CONDEMNED_SCROLL_BARS (frame
);
5154 XSCROLL_BAR (bar
)->prev
= Qnil
;
5155 if (! NILP (FRAME_CONDEMNED_SCROLL_BARS (frame
)))
5156 XSCROLL_BAR (FRAME_CONDEMNED_SCROLL_BARS (frame
))->prev
= bar
;
5157 FRAME_CONDEMNED_SCROLL_BARS (frame
) = bar
;
5162 /* Un-mark WINDOW's scroll bar for deletion in this judgment cycle.
5163 Note that WINDOW isn't necessarily condemned at all. */
5166 XTredeem_scroll_bar (window
)
5167 struct window
*window
;
5169 struct scroll_bar
*bar
;
5172 /* We can't redeem this window's scroll bar if it doesn't have one. */
5173 if (NILP (window
->vertical_scroll_bar
))
5176 bar
= XSCROLL_BAR (window
->vertical_scroll_bar
);
5178 /* Unlink it from the condemned list. */
5179 f
= XFRAME (WINDOW_FRAME (window
));
5180 if (NILP (bar
->prev
))
5182 /* If the prev pointer is nil, it must be the first in one of
5184 if (EQ (FRAME_SCROLL_BARS (f
), window
->vertical_scroll_bar
))
5185 /* It's not condemned. Everything's fine. */
5187 else if (EQ (FRAME_CONDEMNED_SCROLL_BARS (f
),
5188 window
->vertical_scroll_bar
))
5189 FRAME_CONDEMNED_SCROLL_BARS (f
) = bar
->next
;
5191 /* If its prev pointer is nil, it must be at the front of
5192 one or the other! */
5196 XSCROLL_BAR (bar
->prev
)->next
= bar
->next
;
5198 if (! NILP (bar
->next
))
5199 XSCROLL_BAR (bar
->next
)->prev
= bar
->prev
;
5201 bar
->next
= FRAME_SCROLL_BARS (f
);
5203 XSETVECTOR (FRAME_SCROLL_BARS (f
), bar
);
5204 if (! NILP (bar
->next
))
5205 XSETVECTOR (XSCROLL_BAR (bar
->next
)->prev
, bar
);
5208 /* Remove all scroll bars on FRAME that haven't been saved since the
5209 last call to `*condemn_scroll_bars_hook'. */
5212 XTjudge_scroll_bars (f
)
5215 Lisp_Object bar
, next
;
5217 bar
= FRAME_CONDEMNED_SCROLL_BARS (f
);
5219 /* Clear out the condemned list now so we won't try to process any
5220 more events on the hapless scroll bars. */
5221 FRAME_CONDEMNED_SCROLL_BARS (f
) = Qnil
;
5223 for (; ! NILP (bar
); bar
= next
)
5225 struct scroll_bar
*b
= XSCROLL_BAR (bar
);
5227 x_scroll_bar_remove (b
);
5230 b
->next
= b
->prev
= Qnil
;
5233 /* Now there should be no references to the condemned scroll bars,
5234 and they should get garbage-collected. */
5238 #ifndef USE_TOOLKIT_SCROLL_BARS
5239 /* Handle an Expose or GraphicsExpose event on a scroll bar. This
5240 is a no-op when using toolkit scroll bars.
5242 This may be called from a signal handler, so we have to ignore GC
5246 x_scroll_bar_expose (bar
, event
)
5247 struct scroll_bar
*bar
;
5250 Window w
= SCROLL_BAR_X_WINDOW (bar
);
5251 FRAME_PTR f
= XFRAME (WINDOW_FRAME (XWINDOW (bar
->window
)));
5252 GC gc
= f
->output_data
.x
->normal_gc
;
5253 int width_trim
= VERTICAL_SCROLL_BAR_WIDTH_TRIM
;
5257 x_scroll_bar_set_handle (bar
, XINT (bar
->start
), XINT (bar
->end
), 1);
5259 /* Draw a one-pixel border just inside the edges of the scroll bar. */
5260 XDrawRectangle (FRAME_X_DISPLAY (f
), w
, gc
,
5262 /* x, y, width, height */
5264 XINT (bar
->width
) - 1 - width_trim
- width_trim
,
5265 XINT (bar
->height
) - 1);
5270 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5272 /* Handle a mouse click on the scroll bar BAR. If *EMACS_EVENT's kind
5273 is set to something other than NO_EVENT, it is enqueued.
5275 This may be called from a signal handler, so we have to ignore GC
5280 x_scroll_bar_handle_click (bar
, event
, emacs_event
)
5281 struct scroll_bar
*bar
;
5283 struct input_event
*emacs_event
;
5285 if (! GC_WINDOWP (bar
->window
))
5288 emacs_event
->kind
= SCROLL_BAR_CLICK_EVENT
;
5289 emacs_event
->code
= event
->xbutton
.button
- Button1
;
5290 emacs_event
->modifiers
5291 = (x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO
5292 (XFRAME (WINDOW_FRAME (XWINDOW (bar
->window
)))),
5293 event
->xbutton
.state
)
5294 | (event
->type
== ButtonRelease
5297 emacs_event
->frame_or_window
= bar
->window
;
5298 emacs_event
->arg
= Qnil
;
5299 emacs_event
->timestamp
= event
->xbutton
.time
;
5302 FRAME_PTR f
= XFRAME (WINDOW_FRAME (XWINDOW (bar
->window
)));
5304 = VERTICAL_SCROLL_BAR_INSIDE_HEIGHT (f
, XINT (bar
->height
));
5307 = VERTICAL_SCROLL_BAR_TOP_RANGE (f
, XINT (bar
->height
));
5308 int y
= event
->xbutton
.y
- VERTICAL_SCROLL_BAR_TOP_BORDER
;
5311 if (y
> top_range
) y
= top_range
;
5313 if (y
< XINT (bar
->start
))
5314 emacs_event
->part
= scroll_bar_above_handle
;
5315 else if (y
< XINT (bar
->end
) + VERTICAL_SCROLL_BAR_MIN_HANDLE
)
5316 emacs_event
->part
= scroll_bar_handle
;
5318 emacs_event
->part
= scroll_bar_below_handle
;
5320 /* Just because the user has clicked on the handle doesn't mean
5321 they want to drag it. Lisp code needs to be able to decide
5322 whether or not we're dragging. */
5324 /* If the user has just clicked on the handle, record where they're
5326 if (event
->type
== ButtonPress
5327 && emacs_event
->part
== scroll_bar_handle
)
5328 XSETINT (bar
->dragging
, y
- XINT (bar
->start
));
5331 #ifndef USE_TOOLKIT_SCROLL_BARS
5332 /* If the user has released the handle, set it to its final position. */
5333 if (event
->type
== ButtonRelease
5334 && ! NILP (bar
->dragging
))
5336 int new_start
= y
- XINT (bar
->dragging
);
5337 int new_end
= new_start
+ (XINT (bar
->end
) - XINT (bar
->start
));
5339 x_scroll_bar_set_handle (bar
, new_start
, new_end
, 0);
5340 bar
->dragging
= Qnil
;
5344 /* Same deal here as the other #if 0. */
5346 /* Clicks on the handle are always reported as occurring at the top of
5348 if (emacs_event
->part
== scroll_bar_handle
)
5349 emacs_event
->x
= bar
->start
;
5351 XSETINT (emacs_event
->x
, y
);
5353 XSETINT (emacs_event
->x
, y
);
5356 XSETINT (emacs_event
->y
, top_range
);
5360 #ifndef USE_TOOLKIT_SCROLL_BARS
5362 /* Handle some mouse motion while someone is dragging the scroll bar.
5364 This may be called from a signal handler, so we have to ignore GC
5368 x_scroll_bar_note_movement (bar
, event
)
5369 struct scroll_bar
*bar
;
5372 FRAME_PTR f
= XFRAME (XWINDOW (bar
->window
)->frame
);
5374 last_mouse_movement_time
= event
->xmotion
.time
;
5377 XSETVECTOR (last_mouse_scroll_bar
, bar
);
5379 /* If we're dragging the bar, display it. */
5380 if (! GC_NILP (bar
->dragging
))
5382 /* Where should the handle be now? */
5383 int new_start
= event
->xmotion
.y
- XINT (bar
->dragging
);
5385 if (new_start
!= XINT (bar
->start
))
5387 int new_end
= new_start
+ (XINT (bar
->end
) - XINT (bar
->start
));
5389 x_scroll_bar_set_handle (bar
, new_start
, new_end
, 0);
5394 #endif /* !USE_TOOLKIT_SCROLL_BARS */
5396 /* Return information to the user about the current position of the mouse
5397 on the scroll bar. */
5400 x_scroll_bar_report_motion (fp
, bar_window
, part
, x
, y
, time
)
5402 Lisp_Object
*bar_window
;
5403 enum scroll_bar_part
*part
;
5405 unsigned long *time
;
5407 struct scroll_bar
*bar
= XSCROLL_BAR (last_mouse_scroll_bar
);
5408 Window w
= SCROLL_BAR_X_WINDOW (bar
);
5409 FRAME_PTR f
= XFRAME (WINDOW_FRAME (XWINDOW (bar
->window
)));
5411 Window dummy_window
;
5413 unsigned int dummy_mask
;
5417 /* Get the mouse's position relative to the scroll bar window, and
5419 if (! XQueryPointer (FRAME_X_DISPLAY (f
), w
,
5421 /* Root, child, root x and root y. */
5422 &dummy_window
, &dummy_window
,
5423 &dummy_coord
, &dummy_coord
,
5425 /* Position relative to scroll bar. */
5428 /* Mouse buttons and modifier keys. */
5435 = VERTICAL_SCROLL_BAR_INSIDE_HEIGHT (f
, XINT (bar
->height
));
5438 = VERTICAL_SCROLL_BAR_TOP_RANGE (f
, XINT (bar
->height
));
5440 win_y
-= VERTICAL_SCROLL_BAR_TOP_BORDER
;
5442 if (! NILP (bar
->dragging
))
5443 win_y
-= XINT (bar
->dragging
);
5447 if (win_y
> top_range
)
5451 *bar_window
= bar
->window
;
5453 if (! NILP (bar
->dragging
))
5454 *part
= scroll_bar_handle
;
5455 else if (win_y
< XINT (bar
->start
))
5456 *part
= scroll_bar_above_handle
;
5457 else if (win_y
< XINT (bar
->end
) + VERTICAL_SCROLL_BAR_MIN_HANDLE
)
5458 *part
= scroll_bar_handle
;
5460 *part
= scroll_bar_below_handle
;
5462 XSETINT (*x
, win_y
);
5463 XSETINT (*y
, top_range
);
5466 last_mouse_scroll_bar
= Qnil
;
5469 *time
= last_mouse_movement_time
;
5475 /* The screen has been cleared so we may have changed foreground or
5476 background colors, and the scroll bars may need to be redrawn.
5477 Clear out the scroll bars, and ask for expose events, so we can
5481 x_scroll_bar_clear (f
)
5484 #ifndef USE_TOOLKIT_SCROLL_BARS
5487 /* We can have scroll bars even if this is 0,
5488 if we just turned off scroll bar mode.
5489 But in that case we should not clear them. */
5490 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f
))
5491 for (bar
= FRAME_SCROLL_BARS (f
); VECTORP (bar
);
5492 bar
= XSCROLL_BAR (bar
)->next
)
5493 XClearArea (FRAME_X_DISPLAY (f
),
5494 SCROLL_BAR_X_WINDOW (XSCROLL_BAR (bar
)),
5496 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5500 /* The main X event-reading loop - XTread_socket. */
5503 /* Time stamp of enter window event. This is only used by XTread_socket,
5504 but we have to put it out here, since static variables within functions
5505 sometimes don't work. */
5507 static Time enter_timestamp
;
5510 /* This holds the state XLookupString needs to implement dead keys
5511 and other tricks known as "compose processing". _X Window System_
5512 says that a portable program can't use this, but Stephen Gildea assures
5513 me that letting the compiler initialize it to zeros will work okay.
5515 This must be defined outside of XTread_socket, for the same reasons
5516 given for enter_timestamp, above. */
5518 static XComposeStatus compose_status
;
5520 /* Record the last 100 characters stored
5521 to help debug the loss-of-chars-during-GC problem. */
5523 static int temp_index
;
5524 static short temp_buffer
[100];
5526 #define STORE_KEYSYM_FOR_DEBUG(keysym) \
5527 if (temp_index == sizeof temp_buffer / sizeof (short)) \
5529 temp_buffer[temp_index++] = (keysym)
5531 /* Set this to nonzero to fake an "X I/O error"
5532 on a particular display. */
5534 struct x_display_info
*XTread_socket_fake_io_error
;
5536 /* When we find no input here, we occasionally do a no-op command
5537 to verify that the X server is still running and we can still talk with it.
5538 We try all the open displays, one by one.
5539 This variable is used for cycling thru the displays. */
5541 static struct x_display_info
*next_noop_dpyinfo
;
5543 #define SET_SAVED_MENU_EVENT(size) \
5546 if (f->output_data.x->saved_menu_event == 0) \
5547 f->output_data.x->saved_menu_event \
5548 = (XEvent *) xmalloc (sizeof (XEvent)); \
5549 bcopy (&event, f->output_data.x->saved_menu_event, size); \
5550 inev.ie.kind = MENU_BAR_ACTIVATE_EVENT; \
5551 XSETFRAME (inev.ie.frame_or_window, f); \
5555 #define SET_SAVED_BUTTON_EVENT SET_SAVED_MENU_EVENT (sizeof (XButtonEvent))
5556 #define SET_SAVED_KEY_EVENT SET_SAVED_MENU_EVENT (sizeof (XKeyEvent))
5566 /* Filter events for the current X input method.
5567 DPYINFO is the display this event is for.
5568 EVENT is the X event to filter.
5570 Returns non-zero if the event was filtered, caller shall not process
5572 Returns zero if event is wasn't filtered. */
5576 x_filter_event (dpyinfo
, event
)
5577 struct x_display_info
*dpyinfo
;
5580 /* XFilterEvent returns non-zero if the input method has
5581 consumed the event. We pass the frame's X window to
5582 XFilterEvent because that's the one for which the IC
5585 struct frame
*f1
= x_any_window_to_frame (dpyinfo
,
5586 event
->xclient
.window
);
5588 return XFilterEvent (event
, f1
? FRAME_X_WINDOW (f1
) : None
);
5593 static int current_count
;
5594 static int current_finish
;
5595 static struct input_event
*current_hold_quit
;
5597 /* This is the filter function invoked by the GTK event loop.
5598 It is invoked before the XEvent is translated to a GdkEvent,
5599 so we have a chance to act on the event before GTK. */
5600 static GdkFilterReturn
5601 event_handler_gdk (gxev
, ev
, data
)
5606 XEvent
*xev
= (XEvent
*) gxev
;
5608 if (current_count
>= 0)
5610 struct x_display_info
*dpyinfo
;
5612 dpyinfo
= x_display_info_for_display (xev
->xany
.display
);
5615 /* Filter events for the current X input method.
5616 GTK calls XFilterEvent but not for key press and release,
5617 so we do it here. */
5618 if (xev
->type
== KeyPress
|| xev
->type
== KeyRelease
)
5619 if (dpyinfo
&& x_filter_event (dpyinfo
, xev
))
5620 return GDK_FILTER_REMOVE
;
5624 current_finish
= X_EVENT_NORMAL
;
5628 handle_one_xevent (dpyinfo
, xev
, ¤t_finish
,
5633 current_finish
= x_dispatch_event (xev
, xev
->xany
.display
);
5635 if (current_finish
== X_EVENT_GOTO_OUT
|| current_finish
== X_EVENT_DROP
)
5636 return GDK_FILTER_REMOVE
;
5638 return GDK_FILTER_CONTINUE
;
5640 #endif /* USE_GTK */
5643 /* Handles the XEvent EVENT on display DPYINFO.
5645 *FINISH is X_EVENT_GOTO_OUT if caller should stop reading events.
5646 *FINISH is zero if caller should continue reading events.
5647 *FINISH is X_EVENT_DROP if event should not be passed to the toolkit.
5649 We return the number of characters stored into the buffer. */
5652 handle_one_xevent (dpyinfo
, eventp
, finish
, hold_quit
)
5653 struct x_display_info
*dpyinfo
;
5656 struct input_event
*hold_quit
;
5659 struct input_event ie
;
5660 struct selection_input_event sie
;
5665 struct frame
*f
= NULL
;
5666 struct coding_system coding
;
5667 XEvent event
= *eventp
;
5669 *finish
= X_EVENT_NORMAL
;
5671 EVENT_INIT (inev
.ie
);
5672 inev
.ie
.kind
= NO_EVENT
;
5679 if (event
.xclient
.message_type
5680 == dpyinfo
->Xatom_wm_protocols
5681 && event
.xclient
.format
== 32)
5683 if (event
.xclient
.data
.l
[0]
5684 == dpyinfo
->Xatom_wm_take_focus
)
5686 /* Use x_any_window_to_frame because this
5687 could be the shell widget window
5688 if the frame has no title bar. */
5689 f
= x_any_window_to_frame (dpyinfo
, event
.xclient
.window
);
5691 /* Not quite sure this is needed -pd */
5692 if (f
&& FRAME_XIC (f
))
5693 XSetICFocus (FRAME_XIC (f
));
5695 #if 0 /* Emacs sets WM hints whose `input' field is `true'. This
5696 instructs the WM to set the input focus automatically for
5697 Emacs with a call to XSetInputFocus. Setting WM_TAKE_FOCUS
5698 tells the WM to send us a ClientMessage WM_TAKE_FOCUS after
5699 it has set the focus. So, XSetInputFocus below is not
5702 The call to XSetInputFocus below has also caused trouble. In
5703 cases where the XSetInputFocus done by the WM and the one
5704 below are temporally close (on a fast machine), the call
5705 below can generate additional FocusIn events which confuse
5708 /* Since we set WM_TAKE_FOCUS, we must call
5709 XSetInputFocus explicitly. But not if f is null,
5710 since that might be an event for a deleted frame. */
5713 Display
*d
= event
.xclient
.display
;
5714 /* Catch and ignore errors, in case window has been
5715 iconified by a window manager such as GWM. */
5717 XSetInputFocus (d
, event
.xclient
.window
,
5718 /* The ICCCM says this is
5719 the only valid choice. */
5721 event
.xclient
.data
.l
[1]);
5722 /* This is needed to detect the error
5723 if there is an error. */
5725 x_uncatch_errors ();
5727 /* Not certain about handling scroll bars here */
5732 if (event
.xclient
.data
.l
[0]
5733 == dpyinfo
->Xatom_wm_save_yourself
)
5735 /* Save state modify the WM_COMMAND property to
5736 something which can reinstate us. This notifies
5737 the session manager, who's looking for such a
5738 PropertyNotify. Can restart processing when
5739 a keyboard or mouse event arrives. */
5740 /* If we have a session manager, don't set this.
5741 KDE will then start two Emacsen, one for the
5742 session manager and one for this. */
5744 if (! x_session_have_connection ())
5747 f
= x_top_window_to_frame (dpyinfo
,
5748 event
.xclient
.window
);
5749 /* This is just so we only give real data once
5750 for a single Emacs process. */
5751 if (f
== SELECTED_FRAME ())
5752 XSetCommand (FRAME_X_DISPLAY (f
),
5753 event
.xclient
.window
,
5754 initial_argv
, initial_argc
);
5756 XSetCommand (FRAME_X_DISPLAY (f
),
5757 event
.xclient
.window
,
5763 if (event
.xclient
.data
.l
[0]
5764 == dpyinfo
->Xatom_wm_delete_window
)
5766 f
= x_any_window_to_frame (dpyinfo
,
5767 event
.xclient
.window
);
5769 goto OTHER
; /* May be a dialog that is to be removed */
5771 inev
.ie
.kind
= DELETE_WINDOW_EVENT
;
5772 XSETFRAME (inev
.ie
.frame_or_window
, f
);
5779 if (event
.xclient
.message_type
5780 == dpyinfo
->Xatom_wm_configure_denied
)
5785 if (event
.xclient
.message_type
5786 == dpyinfo
->Xatom_wm_window_moved
)
5789 f
= x_window_to_frame (dpyinfo
, event
.xclient
.window
);
5791 new_x
= event
.xclient
.data
.s
[0];
5792 new_y
= event
.xclient
.data
.s
[1];
5796 f
->left_pos
= new_x
;
5803 if (event
.xclient
.message_type
5804 == dpyinfo
->Xatom_editres
)
5806 f
= x_any_window_to_frame (dpyinfo
, event
.xclient
.window
);
5808 _XEditResCheckMessages (f
->output_data
.x
->widget
, NULL
,
5812 #endif /* HACK_EDITRES */
5814 if ((event
.xclient
.message_type
5815 == dpyinfo
->Xatom_DONE
)
5816 || (event
.xclient
.message_type
5817 == dpyinfo
->Xatom_PAGE
))
5819 /* Ghostview job completed. Kill it. We could
5820 reply with "Next" if we received "Page", but we
5821 currently never do because we are interested in
5822 images, only, which should have 1 page. */
5823 Pixmap pixmap
= (Pixmap
) event
.xclient
.data
.l
[1];
5824 f
= x_window_to_frame (dpyinfo
, event
.xclient
.window
);
5827 x_kill_gs_process (pixmap
, f
);
5828 expose_frame (f
, 0, 0, 0, 0);
5832 #ifdef USE_TOOLKIT_SCROLL_BARS
5833 /* Scroll bar callbacks send a ClientMessage from which
5834 we construct an input_event. */
5835 if (event
.xclient
.message_type
5836 == dpyinfo
->Xatom_Scrollbar
)
5838 x_scroll_bar_to_input_event (&event
, &inev
.ie
);
5839 *finish
= X_EVENT_GOTO_OUT
;
5842 #endif /* USE_TOOLKIT_SCROLL_BARS */
5844 f
= x_any_window_to_frame (dpyinfo
, event
.xclient
.window
);
5847 if (x_handle_dnd_message (f
, &event
.xclient
, dpyinfo
, &inev
.ie
))
5848 *finish
= X_EVENT_DROP
;
5852 case SelectionNotify
:
5853 #ifdef USE_X_TOOLKIT
5854 if (! x_window_to_frame (dpyinfo
, event
.xselection
.requestor
))
5856 #endif /* not USE_X_TOOLKIT */
5857 x_handle_selection_notify (&event
.xselection
);
5860 case SelectionClear
: /* Someone has grabbed ownership. */
5861 #ifdef USE_X_TOOLKIT
5862 if (! x_window_to_frame (dpyinfo
, event
.xselectionclear
.window
))
5864 #endif /* USE_X_TOOLKIT */
5866 XSelectionClearEvent
*eventp
= (XSelectionClearEvent
*) &event
;
5868 inev
.ie
.kind
= SELECTION_CLEAR_EVENT
;
5869 SELECTION_EVENT_DISPLAY (&inev
.sie
) = eventp
->display
;
5870 SELECTION_EVENT_SELECTION (&inev
.sie
) = eventp
->selection
;
5871 SELECTION_EVENT_TIME (&inev
.sie
) = eventp
->time
;
5872 inev
.ie
.frame_or_window
= Qnil
;
5876 case SelectionRequest
: /* Someone wants our selection. */
5877 #ifdef USE_X_TOOLKIT
5878 if (!x_window_to_frame (dpyinfo
, event
.xselectionrequest
.owner
))
5880 #endif /* USE_X_TOOLKIT */
5882 XSelectionRequestEvent
*eventp
5883 = (XSelectionRequestEvent
*) &event
;
5885 inev
.ie
.kind
= SELECTION_REQUEST_EVENT
;
5886 SELECTION_EVENT_DISPLAY (&inev
.sie
) = eventp
->display
;
5887 SELECTION_EVENT_REQUESTOR (&inev
.sie
) = eventp
->requestor
;
5888 SELECTION_EVENT_SELECTION (&inev
.sie
) = eventp
->selection
;
5889 SELECTION_EVENT_TARGET (&inev
.sie
) = eventp
->target
;
5890 SELECTION_EVENT_PROPERTY (&inev
.sie
) = eventp
->property
;
5891 SELECTION_EVENT_TIME (&inev
.sie
) = eventp
->time
;
5892 inev
.ie
.frame_or_window
= Qnil
;
5896 case PropertyNotify
:
5897 #if 0 /* This is plain wrong. In the case that we are waiting for a
5898 PropertyNotify used as an ACK in incremental selection
5899 transfer, the property will be on the receiver's window. */
5900 #if defined USE_X_TOOLKIT
5901 if (!x_any_window_to_frame (dpyinfo
, event
.xproperty
.window
))
5905 x_handle_property_notify (&event
.xproperty
);
5908 case ReparentNotify
:
5909 f
= x_top_window_to_frame (dpyinfo
, event
.xreparent
.window
);
5913 f
->output_data
.x
->parent_desc
= event
.xreparent
.parent
;
5914 x_real_positions (f
, &x
, &y
);
5918 /* Perhaps reparented due to a WM restart. Reset this. */
5919 FRAME_X_DISPLAY_INFO (f
)->wm_type
= X_WMTYPE_UNKNOWN
;
5924 f
= x_window_to_frame (dpyinfo
, event
.xexpose
.window
);
5927 x_check_fullscreen (f
);
5930 /* This seems to be needed for GTK 2.6. */
5931 x_clear_area (event
.xexpose
.display
,
5932 event
.xexpose
.window
,
5933 event
.xexpose
.x
, event
.xexpose
.y
,
5934 event
.xexpose
.width
, event
.xexpose
.height
,
5937 if (f
->async_visible
== 0)
5939 f
->async_visible
= 1;
5940 f
->async_iconified
= 0;
5941 f
->output_data
.x
->has_been_visible
= 1;
5942 SET_FRAME_GARBAGED (f
);
5946 event
.xexpose
.x
, event
.xexpose
.y
,
5947 event
.xexpose
.width
, event
.xexpose
.height
);
5951 #ifndef USE_TOOLKIT_SCROLL_BARS
5952 struct scroll_bar
*bar
;
5954 #if defined USE_LUCID
5955 /* Submenus of the Lucid menu bar aren't widgets
5956 themselves, so there's no way to dispatch events
5957 to them. Recognize this case separately. */
5960 = x_window_to_menu_bar (event
.xexpose
.window
);
5962 xlwmenu_redisplay (widget
);
5964 #endif /* USE_LUCID */
5966 #ifdef USE_TOOLKIT_SCROLL_BARS
5967 /* Dispatch event to the widget. */
5969 #else /* not USE_TOOLKIT_SCROLL_BARS */
5970 bar
= x_window_to_scroll_bar (event
.xexpose
.display
,
5971 event
.xexpose
.window
);
5974 x_scroll_bar_expose (bar
, &event
);
5975 #ifdef USE_X_TOOLKIT
5978 #endif /* USE_X_TOOLKIT */
5979 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5983 case GraphicsExpose
: /* This occurs when an XCopyArea's
5984 source area was obscured or not
5986 f
= x_window_to_frame (dpyinfo
, event
.xgraphicsexpose
.drawable
);
5990 event
.xgraphicsexpose
.x
, event
.xgraphicsexpose
.y
,
5991 event
.xgraphicsexpose
.width
,
5992 event
.xgraphicsexpose
.height
);
5994 #ifdef USE_X_TOOLKIT
5997 #endif /* USE_X_TOOLKIT */
6000 case NoExpose
: /* This occurs when an XCopyArea's
6001 source area was completely
6006 /* Redo the mouse-highlight after the tooltip has gone. */
6007 if (event
.xmap
.window
== tip_window
)
6010 redo_mouse_highlight ();
6013 f
= x_top_window_to_frame (dpyinfo
, event
.xunmap
.window
);
6014 if (f
) /* F may no longer exist if
6015 the frame was deleted. */
6017 /* While a frame is unmapped, display generation is
6018 disabled; you don't want to spend time updating a
6019 display that won't ever be seen. */
6020 f
->async_visible
= 0;
6021 /* We can't distinguish, from the event, whether the window
6022 has become iconified or invisible. So assume, if it
6023 was previously visible, than now it is iconified.
6024 But x_make_frame_invisible clears both
6025 the visible flag and the iconified flag;
6026 and that way, we know the window is not iconified now. */
6027 if (FRAME_VISIBLE_P (f
) || FRAME_ICONIFIED_P (f
))
6029 f
->async_iconified
= 1;
6031 inev
.ie
.kind
= ICONIFY_EVENT
;
6032 XSETFRAME (inev
.ie
.frame_or_window
, f
);
6038 if (event
.xmap
.window
== tip_window
)
6039 /* The tooltip has been drawn already. Avoid
6040 the SET_FRAME_GARBAGED below. */
6043 /* We use x_top_window_to_frame because map events can
6044 come for sub-windows and they don't mean that the
6045 frame is visible. */
6046 f
= x_top_window_to_frame (dpyinfo
, event
.xmap
.window
);
6049 /* wait_reading_process_output will notice this and update
6050 the frame's display structures.
6051 If we where iconified, we should not set garbaged,
6052 because that stops redrawing on Expose events. This looks
6053 bad if we are called from a recursive event loop
6054 (x_dispatch_event), for example when a dialog is up. */
6055 if (! f
->async_iconified
)
6056 SET_FRAME_GARBAGED (f
);
6058 f
->async_visible
= 1;
6059 f
->async_iconified
= 0;
6060 f
->output_data
.x
->has_been_visible
= 1;
6064 inev
.ie
.kind
= DEICONIFY_EVENT
;
6065 XSETFRAME (inev
.ie
.frame_or_window
, f
);
6067 else if (! NILP (Vframe_list
)
6068 && ! NILP (XCDR (Vframe_list
)))
6069 /* Force a redisplay sooner or later
6070 to update the frame titles
6071 in case this is the second frame. */
6072 record_asynch_buffer_change ();
6078 ignore_next_mouse_click_timeout
= 0;
6080 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
6081 /* Dispatch KeyPress events when in menu. */
6082 if (popup_activated ())
6086 f
= x_any_window_to_frame (dpyinfo
, event
.xkey
.window
);
6088 /* If mouse-highlight is an integer, input clears out
6089 mouse highlighting. */
6090 if (!dpyinfo
->mouse_face_hidden
&& INTEGERP (Vmouse_highlight
)
6092 || !EQ (f
->tool_bar_window
, dpyinfo
->mouse_face_window
)))
6094 clear_mouse_face (dpyinfo
);
6095 dpyinfo
->mouse_face_hidden
= 1;
6098 #if defined USE_MOTIF && defined USE_TOOLKIT_SCROLL_BARS
6101 /* Scroll bars consume key events, but we want
6102 the keys to go to the scroll bar's frame. */
6103 Widget widget
= XtWindowToWidget (dpyinfo
->display
,
6105 if (widget
&& XmIsScrollBar (widget
))
6107 widget
= XtParent (widget
);
6108 f
= x_any_window_to_frame (dpyinfo
, XtWindow (widget
));
6111 #endif /* USE_MOTIF and USE_TOOLKIT_SCROLL_BARS */
6115 KeySym keysym
, orig_keysym
;
6116 /* al%imercury@uunet.uu.net says that making this 81
6117 instead of 80 fixed a bug whereby meta chars made
6120 It seems that some version of XmbLookupString has
6121 a bug of not returning XBufferOverflow in
6122 status_return even if the input is too long to
6123 fit in 81 bytes. So, we must prepare sufficient
6124 bytes for copy_buffer. 513 bytes (256 chars for
6125 two-byte character set) seems to be a fairly good
6126 approximation. -- 2000.8.10 handa@etl.go.jp */
6127 unsigned char copy_buffer
[513];
6128 unsigned char *copy_bufptr
= copy_buffer
;
6129 int copy_bufsiz
= sizeof (copy_buffer
);
6131 Lisp_Object coding_system
= Qlatin_1
;
6135 /* Don't pass keys to GTK. A Tab will shift focus to the
6136 tool bar in GTK 2.4. Keys will still go to menus and
6137 dialogs because in that case popup_activated is TRUE
6139 *finish
= X_EVENT_DROP
;
6143 |= x_emacs_to_x_modifiers (FRAME_X_DISPLAY_INFO (f
),
6144 extra_keyboard_modifiers
);
6145 modifiers
= event
.xkey
.state
;
6147 /* This will have to go some day... */
6149 /* make_lispy_event turns chars into control chars.
6150 Don't do it here because XLookupString is too eager. */
6151 event
.xkey
.state
&= ~ControlMask
;
6152 event
.xkey
.state
&= ~(dpyinfo
->meta_mod_mask
6153 | dpyinfo
->super_mod_mask
6154 | dpyinfo
->hyper_mod_mask
6155 | dpyinfo
->alt_mod_mask
);
6157 /* In case Meta is ComposeCharacter,
6158 clear its status. According to Markus Ehrnsperger
6159 Markus.Ehrnsperger@lehrstuhl-bross.physik.uni-muenchen.de
6160 this enables ComposeCharacter to work whether or
6161 not it is combined with Meta. */
6162 if (modifiers
& dpyinfo
->meta_mod_mask
)
6163 bzero (&compose_status
, sizeof (compose_status
));
6168 Status status_return
;
6170 coding_system
= Vlocale_coding_system
;
6171 nbytes
= XmbLookupString (FRAME_XIC (f
),
6172 &event
.xkey
, copy_bufptr
,
6173 copy_bufsiz
, &keysym
,
6175 if (status_return
== XBufferOverflow
)
6177 copy_bufsiz
= nbytes
+ 1;
6178 copy_bufptr
= (unsigned char *) alloca (copy_bufsiz
);
6179 nbytes
= XmbLookupString (FRAME_XIC (f
),
6180 &event
.xkey
, copy_bufptr
,
6181 copy_bufsiz
, &keysym
,
6184 /* Xutf8LookupString is a new but already deprecated interface. -stef */
6185 #if 0 && defined X_HAVE_UTF8_STRING
6186 else if (status_return
== XLookupKeySym
)
6187 { /* Try again but with utf-8. */
6188 coding_system
= Qutf_8
;
6189 nbytes
= Xutf8LookupString (FRAME_XIC (f
),
6190 &event
.xkey
, copy_bufptr
,
6191 copy_bufsiz
, &keysym
,
6193 if (status_return
== XBufferOverflow
)
6195 copy_bufsiz
= nbytes
+ 1;
6196 copy_bufptr
= (unsigned char *) alloca (copy_bufsiz
);
6197 nbytes
= Xutf8LookupString (FRAME_XIC (f
),
6200 copy_bufsiz
, &keysym
,
6206 if (status_return
== XLookupNone
)
6208 else if (status_return
== XLookupChars
)
6213 else if (status_return
!= XLookupKeySym
6214 && status_return
!= XLookupBoth
)
6218 nbytes
= XLookupString (&event
.xkey
, copy_bufptr
,
6219 copy_bufsiz
, &keysym
,
6222 nbytes
= XLookupString (&event
.xkey
, copy_bufptr
,
6223 copy_bufsiz
, &keysym
,
6227 /* If not using XIM/XIC, and a compose sequence is in progress,
6228 we break here. Otherwise, chars_matched is always 0. */
6229 if (compose_status
.chars_matched
> 0 && nbytes
== 0)
6232 bzero (&compose_status
, sizeof (compose_status
));
6233 orig_keysym
= keysym
;
6235 /* Common for all keysym input events. */
6236 XSETFRAME (inev
.ie
.frame_or_window
, f
);
6238 = x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO (f
), modifiers
);
6239 inev
.ie
.timestamp
= event
.xkey
.time
;
6241 /* First deal with keysyms which have defined
6242 translations to characters. */
6243 if (keysym
>= 32 && keysym
< 128)
6244 /* Avoid explicitly decoding each ASCII character. */
6246 inev
.ie
.kind
= ASCII_KEYSTROKE_EVENT
;
6247 inev
.ie
.code
= keysym
;
6251 /* Keysyms directly mapped to supported Unicode characters. */
6252 if ((keysym
>= 0x01000000 && keysym
<= 0x010033ff)
6253 || (keysym
>= 0x0100e000 && keysym
<= 0x0100ffff))
6255 int code
= keysym
& 0xFFFF, charset_id
, c1
, c2
;
6259 inev
.ie
.kind
= ASCII_KEYSTROKE_EVENT
;
6260 inev
.ie
.code
= code
;
6262 else if (code
< 0x100)
6265 charset_id
= CHARSET_8_BIT_CONTROL
;
6267 charset_id
= charset_latin_iso8859_1
;
6268 inev
.ie
.kind
= MULTIBYTE_CHAR_KEYSTROKE_EVENT
;
6269 inev
.ie
.code
= MAKE_CHAR (charset_id
, code
, 0);
6274 charset_id
= charset_mule_unicode_0100_24ff
,
6276 else if (code
< 0xE000)
6277 charset_id
= charset_mule_unicode_2500_33ff
,
6280 charset_id
= charset_mule_unicode_e000_ffff
,
6282 c1
= (code
/ 96) + 32, c2
= (code
% 96) + 32;
6283 inev
.ie
.kind
= MULTIBYTE_CHAR_KEYSTROKE_EVENT
;
6284 inev
.ie
.code
= MAKE_CHAR (charset_id
, c1
, c2
);
6289 /* Now non-ASCII. */
6290 if (HASH_TABLE_P (Vx_keysym_table
)
6291 && (NATNUMP (c
= Fgethash (make_number (keysym
),
6295 inev
.ie
.kind
= (SINGLE_BYTE_CHAR_P (XFASTINT (c
))
6296 ? ASCII_KEYSTROKE_EVENT
6297 : MULTIBYTE_CHAR_KEYSTROKE_EVENT
);
6298 inev
.ie
.code
= XFASTINT (c
);
6302 /* Random non-modifier sorts of keysyms. */
6303 if (((keysym
>= XK_BackSpace
&& keysym
<= XK_Escape
)
6304 || keysym
== XK_Delete
6305 #ifdef XK_ISO_Left_Tab
6306 || (keysym
>= XK_ISO_Left_Tab
6307 && keysym
<= XK_ISO_Enter
)
6309 || IsCursorKey (keysym
) /* 0xff50 <= x < 0xff60 */
6310 || IsMiscFunctionKey (keysym
) /* 0xff60 <= x < VARIES */
6312 /* This recognizes the "extended function
6313 keys". It seems there's no cleaner way.
6314 Test IsModifierKey to avoid handling
6315 mode_switch incorrectly. */
6316 || ((unsigned) (keysym
) >= XK_Select
6317 && (unsigned)(keysym
) < XK_KP_Space
)
6319 #ifdef XK_dead_circumflex
6320 || orig_keysym
== XK_dead_circumflex
6322 #ifdef XK_dead_grave
6323 || orig_keysym
== XK_dead_grave
6325 #ifdef XK_dead_tilde
6326 || orig_keysym
== XK_dead_tilde
6328 #ifdef XK_dead_diaeresis
6329 || orig_keysym
== XK_dead_diaeresis
6331 #ifdef XK_dead_macron
6332 || orig_keysym
== XK_dead_macron
6334 #ifdef XK_dead_degree
6335 || orig_keysym
== XK_dead_degree
6337 #ifdef XK_dead_acute
6338 || orig_keysym
== XK_dead_acute
6340 #ifdef XK_dead_cedilla
6341 || orig_keysym
== XK_dead_cedilla
6343 #ifdef XK_dead_breve
6344 || orig_keysym
== XK_dead_breve
6346 #ifdef XK_dead_ogonek
6347 || orig_keysym
== XK_dead_ogonek
6349 #ifdef XK_dead_caron
6350 || orig_keysym
== XK_dead_caron
6352 #ifdef XK_dead_doubleacute
6353 || orig_keysym
== XK_dead_doubleacute
6355 #ifdef XK_dead_abovedot
6356 || orig_keysym
== XK_dead_abovedot
6358 || IsKeypadKey (keysym
) /* 0xff80 <= x < 0xffbe */
6359 || IsFunctionKey (keysym
) /* 0xffbe <= x < 0xffe1 */
6360 /* Any "vendor-specific" key is ok. */
6361 || (orig_keysym
& (1 << 28))
6362 || (keysym
!= NoSymbol
&& nbytes
== 0))
6363 && ! (IsModifierKey (orig_keysym
)
6365 #ifdef XK_Mode_switch
6366 || ((unsigned)(orig_keysym
) == XK_Mode_switch
)
6369 || ((unsigned)(orig_keysym
) == XK_Num_Lock
)
6371 #endif /* not HAVE_X11R5 */
6372 /* The symbols from XK_ISO_Lock
6373 to XK_ISO_Last_Group_Lock
6374 don't have real modifiers but
6375 should be treated similarly to
6376 Mode_switch by Emacs. */
6377 #if defined XK_ISO_Lock && defined XK_ISO_Last_Group_Lock
6378 || ((unsigned)(orig_keysym
)
6380 && (unsigned)(orig_keysym
)
6381 <= XK_ISO_Last_Group_Lock
)
6385 STORE_KEYSYM_FOR_DEBUG (keysym
);
6386 /* make_lispy_event will convert this to a symbolic
6388 inev
.ie
.kind
= NON_ASCII_KEYSTROKE_EVENT
;
6389 inev
.ie
.code
= keysym
;
6393 { /* Raw bytes, not keysym. */
6398 /* The input should be decoded with `coding_system'
6399 which depends on which X*LookupString function
6400 we used just above and the locale. */
6401 setup_coding_system (coding_system
, &coding
);
6402 coding
.src_multibyte
= 0;
6403 coding
.dst_multibyte
= 1;
6404 /* The input is converted to events, thus we can't
6405 handle composition. Anyway, there's no XIM that
6406 gives us composition information. */
6407 coding
.composing
= COMPOSITION_DISABLED
;
6409 for (i
= 0; i
< nbytes
; i
++)
6411 STORE_KEYSYM_FOR_DEBUG (copy_bufptr
[i
]);
6415 /* Decode the input data. */
6419 require
= decoding_buffer_size (&coding
, nbytes
);
6420 p
= (unsigned char *) alloca (require
);
6421 coding
.mode
|= CODING_MODE_LAST_BLOCK
;
6422 /* We explicitly disable composition handling because
6423 key data should not contain any composition sequence. */
6424 coding
.composing
= COMPOSITION_DISABLED
;
6425 decode_coding (&coding
, copy_bufptr
, p
, nbytes
, require
);
6426 nbytes
= coding
.produced
;
6427 nchars
= coding
.produced_char
;
6431 /* Convert the input data to a sequence of
6432 character events. */
6433 for (i
= 0; i
< nbytes
; i
+= len
)
6435 if (nchars
== nbytes
)
6436 c
= copy_bufptr
[i
], len
= 1;
6438 c
= STRING_CHAR_AND_LENGTH (copy_bufptr
+ i
,
6440 inev
.ie
.kind
= (SINGLE_BYTE_CHAR_P (c
)
6441 ? ASCII_KEYSTROKE_EVENT
6442 : MULTIBYTE_CHAR_KEYSTROKE_EVENT
);
6444 kbd_buffer_store_event_hold (&inev
.ie
, hold_quit
);
6447 /* Previous code updated count by nchars rather than nbytes,
6448 but that seems bogus to me. ++kfs */
6451 inev
.ie
.kind
= NO_EVENT
; /* Already stored above. */
6453 if (keysym
== NoSymbol
)
6459 /* Don't dispatch this event since XtDispatchEvent calls
6460 XFilterEvent, and two calls in a row may freeze the
6469 /* Don't dispatch this event since XtDispatchEvent calls
6470 XFilterEvent, and two calls in a row may freeze the
6478 x_detect_focus_change (dpyinfo
, &event
, &inev
.ie
);
6480 f
= x_any_window_to_frame (dpyinfo
, event
.xcrossing
.window
);
6482 if (f
&& x_mouse_click_focus_ignore_position
)
6483 ignore_next_mouse_click_timeout
= event
.xmotion
.time
+ 200;
6486 if (event
.xcrossing
.focus
)
6488 /* Avoid nasty pop/raise loops. */
6489 if (f
&& (!(f
->auto_raise
)
6491 || (event
.xcrossing
.time
- enter_timestamp
) > 500))
6493 x_new_focus_frame (dpyinfo
, f
);
6494 enter_timestamp
= event
.xcrossing
.time
;
6497 else if (f
== dpyinfo
->x_focus_frame
)
6498 x_new_focus_frame (dpyinfo
, 0);
6501 /* EnterNotify counts as mouse movement,
6502 so update things that depend on mouse position. */
6503 if (f
&& !f
->output_data
.x
->hourglass_p
)
6504 note_mouse_movement (f
, &event
.xmotion
);
6506 /* We may get an EnterNotify on the buttons in the toolbar. In that
6507 case we moved out of any highlighted area and need to note this. */
6508 if (!f
&& last_mouse_glyph_frame
)
6509 note_mouse_movement (last_mouse_glyph_frame
, &event
);
6514 x_detect_focus_change (dpyinfo
, &event
, &inev
.ie
);
6518 x_detect_focus_change (dpyinfo
, &event
, &inev
.ie
);
6520 f
= x_top_window_to_frame (dpyinfo
, event
.xcrossing
.window
);
6523 if (f
== dpyinfo
->mouse_face_mouse_frame
)
6525 /* If we move outside the frame, then we're
6526 certainly no longer on any text in the frame. */
6527 clear_mouse_face (dpyinfo
);
6528 dpyinfo
->mouse_face_mouse_frame
= 0;
6531 /* Generate a nil HELP_EVENT to cancel a help-echo.
6532 Do it only if there's something to cancel.
6533 Otherwise, the startup message is cleared when
6534 the mouse leaves the frame. */
6535 if (any_help_event_p
)
6539 /* See comment in EnterNotify above */
6540 else if (last_mouse_glyph_frame
)
6541 note_mouse_movement (last_mouse_glyph_frame
, &event
);
6546 x_detect_focus_change (dpyinfo
, &event
, &inev
.ie
);
6551 previous_help_echo_string
= help_echo_string
;
6552 help_echo_string
= Qnil
;
6554 if (dpyinfo
->grabbed
&& last_mouse_frame
6555 && FRAME_LIVE_P (last_mouse_frame
))
6556 f
= last_mouse_frame
;
6558 f
= x_window_to_frame (dpyinfo
, event
.xmotion
.window
);
6560 if (dpyinfo
->mouse_face_hidden
)
6562 dpyinfo
->mouse_face_hidden
= 0;
6563 clear_mouse_face (dpyinfo
);
6569 /* Generate SELECT_WINDOW_EVENTs when needed. */
6570 if (mouse_autoselect_window
)
6574 window
= window_from_coordinates (f
,
6575 event
.xmotion
.x
, event
.xmotion
.y
,
6578 /* Window will be selected only when it is not selected now and
6579 last mouse movement event was not in it. Minibuffer window
6580 will be selected iff it is active. */
6581 if (WINDOWP (window
)
6582 && !EQ (window
, last_window
)
6583 && !EQ (window
, selected_window
))
6585 inev
.ie
.kind
= SELECT_WINDOW_EVENT
;
6586 inev
.ie
.frame_or_window
= window
;
6591 if (!note_mouse_movement (f
, &event
.xmotion
))
6592 help_echo_string
= previous_help_echo_string
;
6596 #ifndef USE_TOOLKIT_SCROLL_BARS
6597 struct scroll_bar
*bar
6598 = x_window_to_scroll_bar (event
.xmotion
.display
,
6599 event
.xmotion
.window
);
6602 x_scroll_bar_note_movement (bar
, &event
);
6603 #endif /* USE_TOOLKIT_SCROLL_BARS */
6605 /* If we move outside the frame, then we're
6606 certainly no longer on any text in the frame. */
6607 clear_mouse_face (dpyinfo
);
6610 /* If the contents of the global variable help_echo_string
6611 has changed, generate a HELP_EVENT. */
6612 if (!NILP (help_echo_string
)
6613 || !NILP (previous_help_echo_string
))
6618 case ConfigureNotify
:
6619 f
= x_top_window_to_frame (dpyinfo
, event
.xconfigure
.window
);
6622 #ifndef USE_X_TOOLKIT
6624 xg_resize_widgets (f
, event
.xconfigure
.width
,
6625 event
.xconfigure
.height
);
6626 #else /* not USE_GTK */
6627 /* If there is a pending resize for fullscreen, don't
6628 do this one, the right one will come later.
6629 The toolkit version doesn't seem to need this, but we
6630 need to reset it below. */
6632 = ((f
->want_fullscreen
& FULLSCREEN_WAIT
)
6633 && f
->new_text_cols
!= 0);
6634 int rows
= FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f
, event
.xconfigure
.height
);
6635 int columns
= FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f
, event
.xconfigure
.width
);
6640 /* In the toolkit version, change_frame_size
6641 is called by the code that handles resizing
6642 of the EmacsFrame widget. */
6644 /* Even if the number of character rows and columns has
6645 not changed, the font size may have changed, so we need
6646 to check the pixel dimensions as well. */
6647 if (columns
!= FRAME_COLS (f
)
6648 || rows
!= FRAME_LINES (f
)
6649 || event
.xconfigure
.width
!= FRAME_PIXEL_WIDTH (f
)
6650 || event
.xconfigure
.height
!= FRAME_PIXEL_HEIGHT (f
))
6652 change_frame_size (f
, rows
, columns
, 0, 1, 0);
6653 SET_FRAME_GARBAGED (f
);
6654 cancel_mouse_face (f
);
6656 #endif /* not USE_GTK */
6659 FRAME_PIXEL_WIDTH (f
) = event
.xconfigure
.width
;
6660 FRAME_PIXEL_HEIGHT (f
) = event
.xconfigure
.height
;
6663 /* GTK creates windows but doesn't map them.
6664 Only get real positions and check fullscreen when mapped. */
6665 if (FRAME_GTK_OUTER_WIDGET (f
)
6666 && GTK_WIDGET_MAPPED (FRAME_GTK_OUTER_WIDGET (f
)))
6669 /* What we have now is the position of Emacs's own window.
6670 Convert that to the position of the window manager window. */
6671 x_real_positions (f
, &f
->left_pos
, &f
->top_pos
);
6673 x_check_expected_move (f
);
6674 if (f
->want_fullscreen
& FULLSCREEN_WAIT
)
6675 f
->want_fullscreen
&= ~(FULLSCREEN_WAIT
|FULLSCREEN_BOTH
);
6679 if (FRAME_XIC (f
) && (FRAME_XIC_STYLE (f
) & XIMStatusArea
))
6680 xic_set_statusarea (f
);
6683 if (f
->output_data
.x
->parent_desc
!= FRAME_X_DISPLAY_INFO (f
)->root_window
)
6685 /* Since the WM decorations come below top_pos now,
6686 we must put them below top_pos in the future. */
6687 f
->win_gravity
= NorthWestGravity
;
6688 x_wm_set_size_hint (f
, (long) 0, 0);
6696 /* If we decide we want to generate an event to be seen
6697 by the rest of Emacs, we put it here. */
6700 bzero (&compose_status
, sizeof (compose_status
));
6701 last_mouse_glyph_frame
= 0;
6703 if (dpyinfo
->grabbed
6705 && FRAME_LIVE_P (last_mouse_frame
))
6706 f
= last_mouse_frame
;
6708 f
= x_window_to_frame (dpyinfo
, event
.xbutton
.window
);
6712 /* Is this in the tool-bar? */
6713 if (WINDOWP (f
->tool_bar_window
)
6714 && WINDOW_TOTAL_LINES (XWINDOW (f
->tool_bar_window
)))
6717 int x
= event
.xbutton
.x
;
6718 int y
= event
.xbutton
.y
;
6720 window
= window_from_coordinates (f
, x
, y
, 0, 0, 0, 1);
6721 if (EQ (window
, f
->tool_bar_window
))
6723 if (event
.xbutton
.type
== ButtonPress
)
6724 handle_tool_bar_click (f
, x
, y
, 1, 0);
6726 handle_tool_bar_click (f
, x
, y
, 0,
6727 x_x_to_emacs_modifiers (dpyinfo
,
6728 event
.xbutton
.state
));
6734 if (!dpyinfo
->x_focus_frame
6735 || f
== dpyinfo
->x_focus_frame
)
6737 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
6738 if (! popup_activated ())
6741 if (ignore_next_mouse_click_timeout
)
6743 if (event
.type
== ButtonPress
6744 && (int)(event
.xbutton
.time
- ignore_next_mouse_click_timeout
) > 0)
6746 ignore_next_mouse_click_timeout
= 0;
6747 construct_mouse_click (&inev
.ie
, &event
.xbutton
, f
);
6749 if (event
.type
== ButtonRelease
)
6750 ignore_next_mouse_click_timeout
= 0;
6753 construct_mouse_click (&inev
.ie
, &event
.xbutton
, f
);
6759 struct scroll_bar
*bar
6760 = x_window_to_scroll_bar (event
.xbutton
.display
,
6761 event
.xbutton
.window
);
6763 #ifdef USE_TOOLKIT_SCROLL_BARS
6764 /* Make the "Ctrl-Mouse-2 splits window" work for toolkit
6766 if (bar
&& event
.xbutton
.state
& ControlMask
)
6768 x_scroll_bar_handle_click (bar
, &event
, &inev
.ie
);
6769 *finish
= X_EVENT_DROP
;
6771 #else /* not USE_TOOLKIT_SCROLL_BARS */
6773 x_scroll_bar_handle_click (bar
, &event
, &inev
.ie
);
6774 #endif /* not USE_TOOLKIT_SCROLL_BARS */
6777 if (event
.type
== ButtonPress
)
6779 dpyinfo
->grabbed
|= (1 << event
.xbutton
.button
);
6780 last_mouse_frame
= f
;
6783 last_tool_bar_item
= -1;
6786 dpyinfo
->grabbed
&= ~(1 << event
.xbutton
.button
);
6788 /* Ignore any mouse motion that happened before this event;
6789 any subsequent mouse-movement Emacs events should reflect
6790 only motion after the ButtonPress/Release. */
6794 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
6795 f
= x_menubar_window_to_frame (dpyinfo
, event
.xbutton
.window
);
6796 /* For a down-event in the menu bar,
6797 don't pass it to Xt right now.
6798 Instead, save it away
6799 and we will pass it to Xt from kbd_buffer_get_event.
6800 That way, we can run some Lisp code first. */
6803 ! popup_activated ()
6806 f
&& event
.type
== ButtonPress
6807 /* Verify the event is really within the menu bar
6808 and not just sent to it due to grabbing. */
6809 && event
.xbutton
.x
>= 0
6810 && event
.xbutton
.x
< FRAME_PIXEL_WIDTH (f
)
6811 && event
.xbutton
.y
>= 0
6812 && event
.xbutton
.y
< f
->output_data
.x
->menubar_height
6813 && event
.xbutton
.same_screen
)
6815 SET_SAVED_BUTTON_EVENT
;
6816 XSETFRAME (last_mouse_press_frame
, f
);
6818 *finish
= X_EVENT_DROP
;
6821 else if (event
.type
== ButtonPress
)
6823 last_mouse_press_frame
= Qnil
;
6827 #ifdef USE_MOTIF /* This should do not harm for Lucid,
6828 but I am trying to be cautious. */
6829 else if (event
.type
== ButtonRelease
)
6831 if (!NILP (last_mouse_press_frame
))
6833 f
= XFRAME (last_mouse_press_frame
);
6834 if (f
->output_data
.x
)
6835 SET_SAVED_BUTTON_EVENT
;
6840 #endif /* USE_MOTIF */
6843 #endif /* USE_X_TOOLKIT || USE_GTK */
6847 case CirculateNotify
:
6850 case CirculateRequest
:
6853 case VisibilityNotify
:
6857 /* Someone has changed the keyboard mapping - update the
6859 switch (event
.xmapping
.request
)
6861 case MappingModifier
:
6862 x_find_modifier_meanings (dpyinfo
);
6863 /* This is meant to fall through. */
6864 case MappingKeyboard
:
6865 XRefreshKeyboardMapping (&event
.xmapping
);
6871 #ifdef USE_X_TOOLKIT
6873 if (*finish
!= X_EVENT_DROP
)
6874 XtDispatchEvent (&event
);
6876 #endif /* USE_X_TOOLKIT */
6881 if (inev
.ie
.kind
!= NO_EVENT
)
6883 kbd_buffer_store_event_hold (&inev
.ie
, hold_quit
);
6888 && !(hold_quit
&& hold_quit
->kind
!= NO_EVENT
))
6893 XSETFRAME (frame
, f
);
6899 any_help_event_p
= 1;
6900 gen_help_event (help_echo_string
, frame
, help_echo_window
,
6901 help_echo_object
, help_echo_pos
);
6905 help_echo_string
= Qnil
;
6906 gen_help_event (Qnil
, frame
, Qnil
, Qnil
, 0);
6916 /* Handles the XEvent EVENT on display DISPLAY.
6917 This is used for event loops outside the normal event handling,
6918 i.e. looping while a popup menu or a dialog is posted.
6920 Returns the value handle_one_xevent sets in the finish argument. */
6922 x_dispatch_event (event
, display
)
6926 struct x_display_info
*dpyinfo
;
6927 int finish
= X_EVENT_NORMAL
;
6929 dpyinfo
= x_display_info_for_display (display
);
6932 handle_one_xevent (dpyinfo
, event
, &finish
, 0);
6938 /* Read events coming from the X server.
6939 This routine is called by the SIGIO handler.
6940 We return as soon as there are no more events to be read.
6942 We return the number of characters stored into the buffer,
6943 thus pretending to be `read'.
6945 EXPECTED is nonzero if the caller knows input is available. */
6948 XTread_socket (terminal
, expected
, hold_quit
)
6949 struct terminal
*terminal
;
6951 struct input_event
*hold_quit
;
6955 int event_found
= 0;
6956 struct x_display_info
*dpyinfo
;
6958 if (interrupt_input_blocked
)
6960 interrupt_input_pending
= 1;
6964 interrupt_input_pending
= 0;
6967 /* So people can tell when we have read the available input. */
6968 input_signal_count
++;
6973 /* Only check session manager input for the primary display. */
6974 if (terminal
->id
== 1 && x_session_have_connection ())
6976 struct input_event inev
;
6978 /* We don't need to EVENT_INIT (inev) here, as
6979 x_session_check_input copies an entire input_event. */
6980 if (x_session_check_input (&inev
))
6982 kbd_buffer_store_event_hold (&inev
, hold_quit
);
6989 /* For debugging, this gives a way to fake an I/O error. */
6990 if (terminal
->display_info
.x
== XTread_socket_fake_io_error
)
6992 XTread_socket_fake_io_error
= 0;
6993 x_io_error_quitter (dpyinfo
->display
);
6996 #if 0 /* This loop is a noop now. */
6997 /* Find the display we are supposed to read input for.
6998 It's the one communicating on descriptor SD. */
6999 for (dpyinfo
= x_display_list
; dpyinfo
; dpyinfo
= dpyinfo
->next
)
7001 #if 0 /* This ought to be unnecessary; let's verify it. */
7003 /* If available, Xlib uses FIOSNBIO to make the socket
7004 non-blocking, and then looks for EWOULDBLOCK. If O_NDELAY is set,
7005 FIOSNBIO is ignored, and instead of signaling EWOULDBLOCK,
7006 a read returns 0, which Xlib interprets as equivalent to EPIPE. */
7007 fcntl (dpyinfo
->connection
, F_SETFL
, 0);
7008 #endif /* ! defined (FIOSNBIO) */
7011 #if 0 /* This code can't be made to work, with multiple displays,
7012 and appears not to be used on any system any more.
7013 Also keyboard.c doesn't turn O_NDELAY on and off
7014 for X connections. */
7017 if (! (fcntl (dpyinfo
->connection
, F_GETFL
, 0) & O_NDELAY
))
7019 extern int read_alarm_should_throw
;
7020 read_alarm_should_throw
= 1;
7021 XPeekEvent (dpyinfo
->display
, &event
);
7022 read_alarm_should_throw
= 0;
7024 #endif /* HAVE_SELECT */
7031 while (XPending (terminal
->display_info
.x
->display
))
7035 XNextEvent (terminal
->display_info
.x
->display
, &event
);
7038 /* Filter events for the current X input method. */
7039 if (x_filter_event (terminal
->display_info
.x
, &event
))
7044 count
+= handle_one_xevent (terminal
->display_info
.x
,
7045 &event
, &finish
, hold_quit
);
7047 if (finish
== X_EVENT_GOTO_OUT
)
7053 /* For GTK we must use the GTK event loop. But XEvents gets passed
7054 to our filter function above, and then to the big event switch.
7055 We use a bunch of globals to communicate with our filter function,
7056 that is kind of ugly, but it works.
7058 There is no way to do one display at the time, GTK just does events
7059 from all displays. */
7061 while (gtk_events_pending ())
7063 current_count
= count
;
7064 current_hold_quit
= hold_quit
;
7066 gtk_main_iteration ();
7068 count
= current_count
;
7070 current_hold_quit
= 0;
7072 if (current_finish
== X_EVENT_GOTO_OUT
)
7075 #endif /* USE_GTK */
7079 /* On some systems, an X bug causes Emacs to get no more events
7080 when the window is destroyed. Detect that. (1994.) */
7083 /* Emacs and the X Server eats up CPU time if XNoOp is done every time.
7084 One XNOOP in 100 loops will make Emacs terminate.
7085 B. Bretthauer, 1994 */
7087 if (x_noop_count
>= 100)
7091 if (next_noop_dpyinfo
== 0)
7092 next_noop_dpyinfo
= x_display_list
;
7094 XNoOp (next_noop_dpyinfo
->display
);
7096 /* Each time we get here, cycle through the displays now open. */
7097 next_noop_dpyinfo
= next_noop_dpyinfo
->next
;
7101 /* If the focus was just given to an auto-raising frame,
7103 /* ??? This ought to be able to handle more than one such frame. */
7104 if (pending_autoraise_frame
)
7106 x_raise_frame (pending_autoraise_frame
);
7107 pending_autoraise_frame
= 0;
7119 /***********************************************************************
7121 ***********************************************************************/
7123 /* Set clipping for output in glyph row ROW. W is the window in which
7124 we operate. GC is the graphics context to set clipping in.
7126 ROW may be a text row or, e.g., a mode line. Text rows must be
7127 clipped to the interior of the window dedicated to text display,
7128 mode lines must be clipped to the whole window. */
7131 x_clip_to_row (w
, row
, area
, gc
)
7133 struct glyph_row
*row
;
7137 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
7138 XRectangle clip_rect
;
7139 int window_x
, window_y
, window_width
;
7141 window_box (w
, area
, &window_x
, &window_y
, &window_width
, 0);
7143 clip_rect
.x
= window_x
;
7144 clip_rect
.y
= WINDOW_TO_FRAME_PIXEL_Y (w
, max (0, row
->y
));
7145 clip_rect
.y
= max (clip_rect
.y
, window_y
);
7146 clip_rect
.width
= window_width
;
7147 clip_rect
.height
= row
->visible_height
;
7149 XSetClipRectangles (FRAME_X_DISPLAY (f
), gc
, 0, 0, &clip_rect
, 1, Unsorted
);
7153 /* Draw a hollow box cursor on window W in glyph row ROW. */
7156 x_draw_hollow_cursor (w
, row
)
7158 struct glyph_row
*row
;
7160 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
7161 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
7162 Display
*dpy
= FRAME_X_DISPLAY (f
);
7165 struct glyph
*cursor_glyph
;
7168 /* Get the glyph the cursor is on. If we can't tell because
7169 the current matrix is invalid or such, give up. */
7170 cursor_glyph
= get_phys_cursor_glyph (w
);
7171 if (cursor_glyph
== NULL
)
7174 /* Compute frame-relative coordinates for phys cursor. */
7175 x
= WINDOW_TEXT_TO_FRAME_PIXEL_X (w
, w
->phys_cursor
.x
);
7176 y
= get_phys_cursor_geometry (w
, row
, cursor_glyph
, &h
);
7177 wd
= w
->phys_cursor_width
;
7179 /* The foreground of cursor_gc is typically the same as the normal
7180 background color, which can cause the cursor box to be invisible. */
7181 xgcv
.foreground
= f
->output_data
.x
->cursor_pixel
;
7182 if (dpyinfo
->scratch_cursor_gc
)
7183 XChangeGC (dpy
, dpyinfo
->scratch_cursor_gc
, GCForeground
, &xgcv
);
7185 dpyinfo
->scratch_cursor_gc
= XCreateGC (dpy
, FRAME_X_WINDOW (f
),
7186 GCForeground
, &xgcv
);
7187 gc
= dpyinfo
->scratch_cursor_gc
;
7189 /* Set clipping, draw the rectangle, and reset clipping again. */
7190 x_clip_to_row (w
, row
, TEXT_AREA
, gc
);
7191 XDrawRectangle (dpy
, FRAME_X_WINDOW (f
), gc
, x
, y
, wd
, h
- 1);
7192 XSetClipMask (dpy
, gc
, None
);
7196 /* Draw a bar cursor on window W in glyph row ROW.
7198 Implementation note: One would like to draw a bar cursor with an
7199 angle equal to the one given by the font property XA_ITALIC_ANGLE.
7200 Unfortunately, I didn't find a font yet that has this property set.
7204 x_draw_bar_cursor (w
, row
, width
, kind
)
7206 struct glyph_row
*row
;
7208 enum text_cursor_kinds kind
;
7210 struct frame
*f
= XFRAME (w
->frame
);
7211 struct glyph
*cursor_glyph
;
7213 /* If cursor is out of bounds, don't draw garbage. This can happen
7214 in mini-buffer windows when switching between echo area glyphs
7216 cursor_glyph
= get_phys_cursor_glyph (w
);
7217 if (cursor_glyph
== NULL
)
7220 /* If on an image, draw like a normal cursor. That's usually better
7221 visible than drawing a bar, esp. if the image is large so that
7222 the bar might not be in the window. */
7223 if (cursor_glyph
->type
== IMAGE_GLYPH
)
7225 struct glyph_row
*row
;
7226 row
= MATRIX_ROW (w
->current_matrix
, w
->phys_cursor
.vpos
);
7227 draw_phys_cursor_glyph (w
, row
, DRAW_CURSOR
);
7231 Display
*dpy
= FRAME_X_DISPLAY (f
);
7232 Window window
= FRAME_X_WINDOW (f
);
7233 GC gc
= FRAME_X_DISPLAY_INFO (f
)->scratch_cursor_gc
;
7234 unsigned long mask
= GCForeground
| GCBackground
| GCGraphicsExposures
;
7235 struct face
*face
= FACE_FROM_ID (f
, cursor_glyph
->face_id
);
7238 /* If the glyph's background equals the color we normally draw
7239 the bar cursor in, the bar cursor in its normal color is
7240 invisible. Use the glyph's foreground color instead in this
7241 case, on the assumption that the glyph's colors are chosen so
7242 that the glyph is legible. */
7243 if (face
->background
== f
->output_data
.x
->cursor_pixel
)
7244 xgcv
.background
= xgcv
.foreground
= face
->foreground
;
7246 xgcv
.background
= xgcv
.foreground
= f
->output_data
.x
->cursor_pixel
;
7247 xgcv
.graphics_exposures
= 0;
7250 XChangeGC (dpy
, gc
, mask
, &xgcv
);
7253 gc
= XCreateGC (dpy
, window
, mask
, &xgcv
);
7254 FRAME_X_DISPLAY_INFO (f
)->scratch_cursor_gc
= gc
;
7258 width
= FRAME_CURSOR_WIDTH (f
);
7259 width
= min (cursor_glyph
->pixel_width
, width
);
7261 w
->phys_cursor_width
= width
;
7262 x_clip_to_row (w
, row
, TEXT_AREA
, gc
);
7264 if (kind
== BAR_CURSOR
)
7265 XFillRectangle (dpy
, window
, gc
,
7266 WINDOW_TEXT_TO_FRAME_PIXEL_X (w
, w
->phys_cursor
.x
),
7267 WINDOW_TO_FRAME_PIXEL_Y (w
, w
->phys_cursor
.y
),
7268 width
, row
->height
);
7270 XFillRectangle (dpy
, window
, gc
,
7271 WINDOW_TEXT_TO_FRAME_PIXEL_X (w
, w
->phys_cursor
.x
),
7272 WINDOW_TO_FRAME_PIXEL_Y (w
, w
->phys_cursor
.y
+
7273 row
->height
- width
),
7274 cursor_glyph
->pixel_width
,
7277 XSetClipMask (dpy
, gc
, None
);
7282 /* RIF: Define cursor CURSOR on frame F. */
7285 x_define_frame_cursor (f
, cursor
)
7289 XDefineCursor (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), cursor
);
7293 /* RIF: Clear area on frame F. */
7296 x_clear_frame_area (f
, x
, y
, width
, height
)
7298 int x
, y
, width
, height
;
7300 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
7301 x
, y
, width
, height
, False
);
7305 /* RIF: Draw cursor on window W. */
7308 x_draw_window_cursor (w
, glyph_row
, x
, y
, cursor_type
, cursor_width
, on_p
, active_p
)
7310 struct glyph_row
*glyph_row
;
7312 int cursor_type
, cursor_width
;
7315 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
7319 w
->phys_cursor_type
= cursor_type
;
7320 w
->phys_cursor_on_p
= 1;
7322 if (glyph_row
->exact_window_width_line_p
7323 && w
->phys_cursor
.hpos
>= glyph_row
->used
[TEXT_AREA
])
7325 glyph_row
->cursor_in_fringe_p
= 1;
7326 draw_fringe_bitmap (w
, glyph_row
, 0);
7329 switch (cursor_type
)
7331 case HOLLOW_BOX_CURSOR
:
7332 x_draw_hollow_cursor (w
, glyph_row
);
7335 case FILLED_BOX_CURSOR
:
7336 draw_phys_cursor_glyph (w
, glyph_row
, DRAW_CURSOR
);
7340 x_draw_bar_cursor (w
, glyph_row
, cursor_width
, BAR_CURSOR
);
7344 x_draw_bar_cursor (w
, glyph_row
, cursor_width
, HBAR_CURSOR
);
7348 w
->phys_cursor_width
= 0;
7356 if (w
== XWINDOW (f
->selected_window
))
7357 if (FRAME_XIC (f
) && (FRAME_XIC_STYLE (f
) & XIMPreeditPosition
))
7358 xic_set_preeditarea (w
, x
, y
);
7363 XFlush (FRAME_X_DISPLAY (f
));
7370 /* Make the x-window of frame F use the gnu icon bitmap. */
7373 x_bitmap_icon (f
, file
)
7379 if (FRAME_X_WINDOW (f
) == 0)
7382 /* Free up our existing icon bitmap and mask if any. */
7383 if (f
->output_data
.x
->icon_bitmap
> 0)
7384 x_destroy_bitmap (f
, f
->output_data
.x
->icon_bitmap
);
7385 f
->output_data
.x
->icon_bitmap
= 0;
7390 /* Use gtk_window_set_icon_from_file () if available,
7391 It's not restricted to bitmaps */
7392 if (xg_set_icon (f
, file
))
7394 #endif /* USE_GTK */
7395 bitmap_id
= x_create_bitmap_from_file (f
, file
);
7396 x_create_bitmap_mask (f
, bitmap_id
);
7400 /* Create the GNU bitmap and mask if necessary. */
7401 if (FRAME_X_DISPLAY_INFO (f
)->icon_bitmap_id
< 0)
7405 #if defined (HAVE_XPM) && defined (HAVE_X_WINDOWS)
7407 if (xg_set_icon_from_xpm_data (f
, gnu_xpm_bits
))
7410 rc
= x_create_bitmap_from_xpm_data (f
, gnu_xpm_bits
);
7412 FRAME_X_DISPLAY_INFO (f
)->icon_bitmap_id
= rc
;
7413 #endif /* USE_GTK */
7414 #endif /* defined (HAVE_XPM) && defined (HAVE_X_WINDOWS) */
7416 /* If all else fails, use the (black and white) xbm image. */
7419 rc
= x_create_bitmap_from_data (f
, gnu_xbm_bits
,
7420 gnu_xbm_width
, gnu_xbm_height
);
7424 FRAME_X_DISPLAY_INFO (f
)->icon_bitmap_id
= rc
;
7425 x_create_bitmap_mask (f
, FRAME_X_DISPLAY_INFO (f
)->icon_bitmap_id
);
7429 /* The first time we create the GNU bitmap and mask,
7430 this increments the ref-count one extra time.
7431 As a result, the GNU bitmap and mask are never freed.
7432 That way, we don't have to worry about allocating it again. */
7433 x_reference_bitmap (f
, FRAME_X_DISPLAY_INFO (f
)->icon_bitmap_id
);
7435 bitmap_id
= FRAME_X_DISPLAY_INFO (f
)->icon_bitmap_id
;
7438 x_wm_set_icon_pixmap (f
, bitmap_id
);
7439 f
->output_data
.x
->icon_bitmap
= bitmap_id
;
7445 /* Make the x-window of frame F use a rectangle with text.
7446 Use ICON_NAME as the text. */
7449 x_text_icon (f
, icon_name
)
7453 if (FRAME_X_WINDOW (f
) == 0)
7459 text
.value
= (unsigned char *) icon_name
;
7460 text
.encoding
= XA_STRING
;
7462 text
.nitems
= strlen (icon_name
);
7463 XSetWMIconName (FRAME_X_DISPLAY (f
), FRAME_OUTER_WINDOW (f
), &text
);
7465 #else /* not HAVE_X11R4 */
7466 XSetIconName (FRAME_X_DISPLAY (f
), FRAME_OUTER_WINDOW (f
), icon_name
);
7467 #endif /* not HAVE_X11R4 */
7469 if (f
->output_data
.x
->icon_bitmap
> 0)
7470 x_destroy_bitmap (f
, f
->output_data
.x
->icon_bitmap
);
7471 f
->output_data
.x
->icon_bitmap
= 0;
7472 x_wm_set_icon_pixmap (f
, 0);
7477 #define X_ERROR_MESSAGE_SIZE 200
7479 /* If non-nil, this should be a string.
7480 It means catch X errors and store the error message in this string.
7482 The reason we use a stack is that x_catch_error/x_uncatch_error can
7483 be called from a signal handler.
7486 struct x_error_message_stack
{
7487 char string
[X_ERROR_MESSAGE_SIZE
];
7489 struct x_error_message_stack
*prev
;
7491 static struct x_error_message_stack
*x_error_message
;
7493 /* An X error handler which stores the error message in
7494 x_error_message_string. This is called from x_error_handler if
7495 x_catch_errors is in effect. */
7498 x_error_catcher (display
, error
)
7502 XGetErrorText (display
, error
->error_code
,
7503 x_error_message
->string
,
7504 X_ERROR_MESSAGE_SIZE
);
7507 /* Begin trapping X errors for display DPY. Actually we trap X errors
7508 for all displays, but DPY should be the display you are actually
7511 After calling this function, X protocol errors no longer cause
7512 Emacs to exit; instead, they are recorded in the string
7513 stored in x_error_message_string.
7515 Calling x_check_errors signals an Emacs error if an X error has
7516 occurred since the last call to x_catch_errors or x_check_errors.
7518 Calling x_uncatch_errors resumes the normal error handling. */
7520 void x_check_errors ();
7523 x_catch_errors (dpy
)
7526 struct x_error_message_stack
*data
= xmalloc (sizeof (*data
));
7528 /* Make sure any errors from previous requests have been dealt with. */
7532 data
->string
[0] = 0;
7533 data
->prev
= x_error_message
;
7534 x_error_message
= data
;
7537 /* Undo the last x_catch_errors call.
7538 DPY should be the display that was passed to x_catch_errors. */
7543 struct x_error_message_stack
*tmp
;
7547 /* The display may have been closed before this function is called.
7548 Check if it is still open before calling XSync. */
7549 if (x_display_info_for_display (x_error_message
->dpy
) != 0)
7550 XSync (x_error_message
->dpy
, False
);
7552 tmp
= x_error_message
;
7553 x_error_message
= x_error_message
->prev
;
7558 /* If any X protocol errors have arrived since the last call to
7559 x_catch_errors or x_check_errors, signal an Emacs error using
7560 sprintf (a buffer, FORMAT, the x error message text) as the text. */
7563 x_check_errors (dpy
, format
)
7567 /* Make sure to catch any errors incurred so far. */
7570 if (x_error_message
->string
[0])
7572 char string
[X_ERROR_MESSAGE_SIZE
];
7573 bcopy (x_error_message
->string
, string
, X_ERROR_MESSAGE_SIZE
);
7574 x_uncatch_errors ();
7575 error (format
, string
);
7579 /* Nonzero if we had any X protocol errors
7580 since we did x_catch_errors on DPY. */
7583 x_had_errors_p (dpy
)
7586 /* Make sure to catch any errors incurred so far. */
7589 return x_error_message
->string
[0] != 0;
7592 /* Forget about any errors we have had, since we did x_catch_errors on DPY. */
7595 x_clear_errors (dpy
)
7598 x_error_message
->string
[0] = 0;
7601 /* Close off all unclosed x_catch_errors calls. */
7604 x_fully_uncatch_errors ()
7606 while (x_error_message
)
7607 x_uncatch_errors ();
7610 /* Nonzero if x_catch_errors has been done and not yet canceled. */
7613 x_catching_errors ()
7615 return x_error_message
!= 0;
7619 static unsigned int x_wire_count
;
7622 fprintf (stderr
, "Lib call: %d\n", ++x_wire_count
);
7627 /* Handle SIGPIPE, which can happen when the connection to a server
7628 simply goes away. SIGPIPE is handled by x_connection_signal.
7629 Don't need to do anything, because the write which caused the
7630 SIGPIPE will fail, causing Xlib to invoke the X IO error handler,
7631 which will do the appropriate cleanup for us. */
7634 x_connection_signal (signalnum
) /* If we don't have an argument, */
7635 int signalnum
; /* some compilers complain in signal calls. */
7638 /* USG systems forget handlers when they are used;
7639 must reestablish each time */
7640 signal (signalnum
, x_connection_signal
);
7645 /************************************************************************
7647 ************************************************************************/
7649 /* Error message passed to x_connection_closed. */
7651 static char *error_msg
;
7653 /* Function installed as fatal_error_signal_hook in
7654 x_connection_closed. Print the X error message, and exit normally,
7655 instead of dumping core when XtCloseDisplay fails. */
7658 x_fatal_error_signal ()
7660 fprintf (stderr
, "%s\n", error_msg
);
7664 /* Handle the loss of connection to display DPY. ERROR_MESSAGE is
7665 the text of an error message that lead to the connection loss. */
7668 x_connection_closed (dpy
, error_message
)
7670 char *error_message
;
7672 struct x_display_info
*dpyinfo
= x_display_info_for_display (dpy
);
7673 Lisp_Object frame
, tail
;
7674 int index
= SPECPDL_INDEX ();
7676 error_msg
= (char *) alloca (strlen (error_message
) + 1);
7677 strcpy (error_msg
, error_message
);
7678 handling_signal
= 0;
7680 /* Prevent being called recursively because of an error condition
7681 below. Otherwise, we might end up with printing ``can't find per
7682 display information'' in the recursive call instead of printing
7683 the original message here. */
7684 x_catch_errors (dpy
);
7686 /* Inhibit redisplay while frames are being deleted. */
7687 specbind (Qinhibit_redisplay
, Qt
);
7691 /* Protect display from being closed when we delete the last
7693 dpyinfo
->reference_count
++;
7694 dpyinfo
->terminal
->reference_count
++;
7697 /* First delete frames whose mini-buffers are on frames
7698 that are on the dead display. */
7699 FOR_EACH_FRAME (tail
, frame
)
7701 Lisp_Object minibuf_frame
;
7703 = WINDOW_FRAME (XWINDOW (FRAME_MINIBUF_WINDOW (XFRAME (frame
))));
7704 if (FRAME_X_P (XFRAME (frame
))
7705 && FRAME_X_P (XFRAME (minibuf_frame
))
7706 && ! EQ (frame
, minibuf_frame
)
7707 && FRAME_X_DISPLAY_INFO (XFRAME (minibuf_frame
)) == dpyinfo
)
7708 Fdelete_frame (frame
, Qt
);
7711 /* Now delete all remaining frames on the dead display.
7712 We are now sure none of these is used as the mini-buffer
7713 for another frame that we need to delete. */
7714 FOR_EACH_FRAME (tail
, frame
)
7715 if (FRAME_X_P (XFRAME (frame
))
7716 && FRAME_X_DISPLAY_INFO (XFRAME (frame
)) == dpyinfo
)
7718 /* Set this to t so that Fdelete_frame won't get confused
7719 trying to find a replacement. */
7720 FRAME_KBOARD (XFRAME (frame
))->Vdefault_minibuffer_frame
= Qt
;
7721 Fdelete_frame (frame
, Qt
);
7724 /* We have to close the display to inform Xt that it doesn't
7725 exist anymore. If we don't, Xt will continue to wait for
7726 events from the display. As a consequence, a sequence of
7728 M-x make-frame-on-display RET :1 RET
7729 ...kill the new frame, so that we get an IO error...
7730 M-x make-frame-on-display RET :1 RET
7732 will indefinitely wait in Xt for events for display `:1', opened
7733 in the first class to make-frame-on-display.
7735 Closing the display is reported to lead to a bus error on
7736 OpenWindows in certain situations. I suspect that is a bug
7737 in OpenWindows. I don't know how to cicumvent it here. */
7739 #ifdef USE_X_TOOLKIT
7740 /* If DPYINFO is null, this means we didn't open the display
7741 in the first place, so don't try to close it. */
7744 extern void (*fatal_error_signal_hook
) P_ ((void));
7745 fatal_error_signal_hook
= x_fatal_error_signal
;
7746 XtCloseDisplay (dpy
);
7747 fatal_error_signal_hook
= NULL
;
7753 xg_display_close (dpyinfo
->display
);
7758 /* Indicate that this display is dead. */
7759 dpyinfo
->display
= 0;
7761 dpyinfo
->reference_count
--;
7762 dpyinfo
->terminal
->reference_count
--;
7763 if (dpyinfo
->reference_count
!= 0)
7764 /* We have just closed all frames on this display. */
7767 x_delete_display (dpyinfo
);
7770 x_uncatch_errors ();
7772 if (terminal_list
== 0)
7774 fprintf (stderr
, "%s\n", error_msg
);
7775 shut_down_emacs (0, 0, Qnil
);
7779 /* Ordinary stack unwind doesn't deal with these. */
7781 sigunblock (sigmask (SIGIO
));
7783 sigunblock (sigmask (SIGALRM
));
7784 TOTALLY_UNBLOCK_INPUT
;
7786 unbind_to (index
, Qnil
);
7787 clear_waiting_for_input ();
7788 error ("%s", error_msg
);
7791 /* We specifically use it before defining it, so that gcc doesn't inline it,
7792 otherwise gdb doesn't know how to properly put a breakpoint on it. */
7793 static void x_error_quitter (Display
*display
, XErrorEvent
*error
);
7795 /* This is the first-level handler for X protocol errors.
7796 It calls x_error_quitter or x_error_catcher. */
7799 x_error_handler (display
, error
)
7803 if (x_error_message
)
7804 x_error_catcher (display
, error
);
7806 x_error_quitter (display
, error
);
7810 /* This is the usual handler for X protocol errors.
7811 It kills all frames on the display that we got the error for.
7812 If that was the only one, it prints an error message and kills Emacs. */
7814 /* .gdbinit puts a breakpoint here, so make sure it is not inlined. */
7816 #if __GNUC__ >= 3 /* On GCC 3.0 we might get a warning. */
7817 #define NO_INLINE __attribute__((noinline))
7822 /* Some versions of GNU/Linux define noinline in their headers. */
7828 /* On older GCC versions, just putting x_error_quitter
7829 after x_error_handler prevents inlining into the former. */
7831 static void NO_INLINE
7832 x_error_quitter (display
, error
)
7836 char buf
[256], buf1
[356];
7838 /* Note that there is no real way portable across R3/R4 to get the
7839 original error handler. */
7841 XGetErrorText (display
, error
->error_code
, buf
, sizeof (buf
));
7842 sprintf (buf1
, "X protocol error: %s on protocol request %d",
7843 buf
, error
->request_code
);
7844 x_connection_closed (display
, buf1
);
7848 /* This is the handler for X IO errors, always.
7849 It kills all frames on the display that we lost touch with.
7850 If that was the only one, it prints an error message and kills Emacs. */
7853 x_io_error_quitter (display
)
7858 sprintf (buf
, "Connection lost to X server `%s'", DisplayString (display
));
7859 x_connection_closed (display
, buf
);
7863 /* Changing the font of the frame. */
7865 /* Give frame F the font named FONTNAME as its default font, and
7866 return the full name of that font. FONTNAME may be a wildcard
7867 pattern; in that case, we choose some font that fits the pattern.
7868 The return value shows which font we chose. */
7871 x_new_font (f
, fontname
)
7873 register char *fontname
;
7875 struct font_info
*fontp
7876 = FS_LOAD_FONT (f
, 0, fontname
, -1);
7881 FRAME_FONT (f
) = (XFontStruct
*) (fontp
->font
);
7882 FRAME_BASELINE_OFFSET (f
) = fontp
->baseline_offset
;
7883 FRAME_FONTSET (f
) = -1;
7885 FRAME_COLUMN_WIDTH (f
) = fontp
->average_width
;
7886 FRAME_SPACE_WIDTH (f
) = fontp
->space_width
;
7887 FRAME_LINE_HEIGHT (f
) = FONT_HEIGHT (FRAME_FONT (f
));
7889 compute_fringe_widths (f
, 1);
7891 /* Compute the scroll bar width in character columns. */
7892 if (FRAME_CONFIG_SCROLL_BAR_WIDTH (f
) > 0)
7894 int wid
= FRAME_COLUMN_WIDTH (f
);
7895 FRAME_CONFIG_SCROLL_BAR_COLS (f
)
7896 = (FRAME_CONFIG_SCROLL_BAR_WIDTH (f
) + wid
-1) / wid
;
7900 int wid
= FRAME_COLUMN_WIDTH (f
);
7901 FRAME_CONFIG_SCROLL_BAR_COLS (f
) = (14 + wid
- 1) / wid
;
7904 /* Now make the frame display the given font. */
7905 if (FRAME_X_WINDOW (f
) != 0)
7907 XSetFont (FRAME_X_DISPLAY (f
), f
->output_data
.x
->normal_gc
,
7908 FRAME_FONT (f
)->fid
);
7909 XSetFont (FRAME_X_DISPLAY (f
), f
->output_data
.x
->reverse_gc
,
7910 FRAME_FONT (f
)->fid
);
7911 XSetFont (FRAME_X_DISPLAY (f
), f
->output_data
.x
->cursor_gc
,
7912 FRAME_FONT (f
)->fid
);
7914 /* Don't change the size of a tip frame; there's no point in
7915 doing it because it's done in Fx_show_tip, and it leads to
7916 problems because the tip frame has no widget. */
7917 if (NILP (tip_frame
) || XFRAME (tip_frame
) != f
)
7918 x_set_window_size (f
, 0, FRAME_COLS (f
), FRAME_LINES (f
));
7921 return build_string (fontp
->full_name
);
7924 /* Give frame F the fontset named FONTSETNAME as its default font, and
7925 return the full name of that fontset. FONTSETNAME may be a wildcard
7926 pattern; in that case, we choose some fontset that fits the pattern.
7927 The return value shows which fontset we chose. */
7930 x_new_fontset (f
, fontsetname
)
7934 int fontset
= fs_query_fontset (build_string (fontsetname
), 0);
7940 if (FRAME_FONTSET (f
) == fontset
)
7941 /* This fontset is already set in frame F. There's nothing more
7943 return fontset_name (fontset
);
7945 result
= x_new_font (f
, (SDATA (fontset_ascii (fontset
))));
7947 if (!STRINGP (result
))
7948 /* Can't load ASCII font. */
7951 /* Since x_new_font doesn't update any fontset information, do it now. */
7952 FRAME_FONTSET (f
) = fontset
;
7956 && (FRAME_XIC_STYLE (f
) & (XIMPreeditPosition
| XIMStatusArea
)))
7957 xic_set_xfontset (f
, SDATA (fontset_ascii (fontset
)));
7960 return build_string (fontsetname
);
7964 /***********************************************************************
7966 ***********************************************************************/
7972 /* XIM destroy callback function, which is called whenever the
7973 connection to input method XIM dies. CLIENT_DATA contains a
7974 pointer to the x_display_info structure corresponding to XIM. */
7977 xim_destroy_callback (xim
, client_data
, call_data
)
7979 XPointer client_data
;
7982 struct x_display_info
*dpyinfo
= (struct x_display_info
*) client_data
;
7983 Lisp_Object frame
, tail
;
7987 /* No need to call XDestroyIC.. */
7988 FOR_EACH_FRAME (tail
, frame
)
7990 struct frame
*f
= XFRAME (frame
);
7991 if (FRAME_X_P (f
) && FRAME_X_DISPLAY_INFO (f
) == dpyinfo
)
7993 FRAME_XIC (f
) = NULL
;
7994 xic_free_xfontset (f
);
7998 /* No need to call XCloseIM. */
7999 dpyinfo
->xim
= NULL
;
8000 XFree (dpyinfo
->xim_styles
);
8004 #endif /* HAVE_X11R6 */
8007 /* This isn't prototyped in OSF 5.0 or 5.1a. */
8008 extern char *XSetIMValues
P_ ((XIM
, ...));
8011 /* Open the connection to the XIM server on display DPYINFO.
8012 RESOURCE_NAME is the resource name Emacs uses. */
8015 xim_open_dpy (dpyinfo
, resource_name
)
8016 struct x_display_info
*dpyinfo
;
8017 char *resource_name
;
8024 xim
= XOpenIM (dpyinfo
->display
, dpyinfo
->xrdb
, resource_name
,
8031 XIMCallback destroy
;
8034 /* Get supported styles and XIM values. */
8035 XGetIMValues (xim
, XNQueryInputStyle
, &dpyinfo
->xim_styles
, NULL
);
8038 destroy
.callback
= xim_destroy_callback
;
8039 destroy
.client_data
= (XPointer
)dpyinfo
;
8040 XSetIMValues (xim
, XNDestroyCallback
, &destroy
, NULL
);
8046 #endif /* HAVE_XIM */
8047 dpyinfo
->xim
= NULL
;
8051 #ifdef HAVE_X11R6_XIM
8055 struct x_display_info
*dpyinfo
;
8056 char *resource_name
;
8059 /* XIM instantiate callback function, which is called whenever an XIM
8060 server is available. DISPLAY is the display of the XIM.
8061 CLIENT_DATA contains a pointer to an xim_inst_t structure created
8062 when the callback was registered. */
8065 xim_instantiate_callback (display
, client_data
, call_data
)
8067 XPointer client_data
;
8070 struct xim_inst_t
*xim_inst
= (struct xim_inst_t
*) client_data
;
8071 struct x_display_info
*dpyinfo
= xim_inst
->dpyinfo
;
8073 /* We don't support multiple XIM connections. */
8077 xim_open_dpy (dpyinfo
, xim_inst
->resource_name
);
8079 /* Create XIC for the existing frames on the same display, as long
8080 as they have no XIC. */
8081 if (dpyinfo
->xim
&& dpyinfo
->reference_count
> 0)
8083 Lisp_Object tail
, frame
;
8086 FOR_EACH_FRAME (tail
, frame
)
8088 struct frame
*f
= XFRAME (frame
);
8091 && FRAME_X_DISPLAY_INFO (f
) == xim_inst
->dpyinfo
)
8092 if (FRAME_XIC (f
) == NULL
)
8094 create_frame_xic (f
);
8095 if (FRAME_XIC_STYLE (f
) & XIMStatusArea
)
8096 xic_set_statusarea (f
);
8097 if (FRAME_XIC_STYLE (f
) & XIMPreeditPosition
)
8099 struct window
*w
= XWINDOW (f
->selected_window
);
8100 xic_set_preeditarea (w
, w
->cursor
.x
, w
->cursor
.y
);
8109 #endif /* HAVE_X11R6_XIM */
8112 /* Open a connection to the XIM server on display DPYINFO.
8113 RESOURCE_NAME is the resource name for Emacs. On X11R5, open the
8114 connection only at the first time. On X11R6, open the connection
8115 in the XIM instantiate callback function. */
8118 xim_initialize (dpyinfo
, resource_name
)
8119 struct x_display_info
*dpyinfo
;
8120 char *resource_name
;
8125 #ifdef HAVE_X11R6_XIM
8126 struct xim_inst_t
*xim_inst
;
8129 dpyinfo
->xim
= NULL
;
8130 xim_inst
= (struct xim_inst_t
*) xmalloc (sizeof (struct xim_inst_t
));
8131 xim_inst
->dpyinfo
= dpyinfo
;
8132 len
= strlen (resource_name
);
8133 xim_inst
->resource_name
= (char *) xmalloc (len
+ 1);
8134 bcopy (resource_name
, xim_inst
->resource_name
, len
+ 1);
8135 XRegisterIMInstantiateCallback (dpyinfo
->display
, dpyinfo
->xrdb
,
8136 resource_name
, EMACS_CLASS
,
8137 xim_instantiate_callback
,
8138 /* This is XPointer in XFree86
8139 but (XPointer *) on Tru64, at
8140 least, hence the configure test. */
8141 (XRegisterIMInstantiateCallback_arg6
) xim_inst
);
8142 #else /* not HAVE_X11R6_XIM */
8143 dpyinfo
->xim
= NULL
;
8144 xim_open_dpy (dpyinfo
, resource_name
);
8145 #endif /* not HAVE_X11R6_XIM */
8149 #endif /* HAVE_XIM */
8150 dpyinfo
->xim
= NULL
;
8154 /* Close the connection to the XIM server on display DPYINFO. */
8157 xim_close_dpy (dpyinfo
)
8158 struct x_display_info
*dpyinfo
;
8163 #ifdef HAVE_X11R6_XIM
8164 if (dpyinfo
->display
)
8165 XUnregisterIMInstantiateCallback (dpyinfo
->display
, dpyinfo
->xrdb
,
8167 xim_instantiate_callback
, NULL
);
8168 #endif /* not HAVE_X11R6_XIM */
8169 if (dpyinfo
->display
)
8170 XCloseIM (dpyinfo
->xim
);
8171 dpyinfo
->xim
= NULL
;
8172 XFree (dpyinfo
->xim_styles
);
8174 #endif /* HAVE_XIM */
8177 #endif /* not HAVE_X11R6_XIM */
8181 /* Calculate the absolute position in frame F
8182 from its current recorded position values and gravity. */
8185 x_calc_absolute_position (f
)
8188 int flags
= f
->size_hint_flags
;
8190 /* We have nothing to do if the current position
8191 is already for the top-left corner. */
8192 if (! ((flags
& XNegative
) || (flags
& YNegative
)))
8195 /* Treat negative positions as relative to the leftmost bottommost
8196 position that fits on the screen. */
8197 if (flags
& XNegative
)
8198 f
->left_pos
= (FRAME_X_DISPLAY_INFO (f
)->width
8199 - FRAME_PIXEL_WIDTH (f
) + f
->left_pos
);
8202 int height
= FRAME_PIXEL_HEIGHT (f
);
8204 #if defined USE_X_TOOLKIT && defined USE_MOTIF
8205 /* Something is fishy here. When using Motif, starting Emacs with
8206 `-g -0-0', the frame appears too low by a few pixels.
8208 This seems to be so because initially, while Emacs is starting,
8209 the column widget's height and the frame's pixel height are
8210 different. The column widget's height is the right one. In
8211 later invocations, when Emacs is up, the frame's pixel height
8214 It's not obvious where the initial small difference comes from.
8215 2000-12-01, gerd. */
8217 XtVaGetValues (f
->output_data
.x
->column_widget
, XtNheight
, &height
, NULL
);
8220 if (flags
& YNegative
)
8221 f
->top_pos
= (FRAME_X_DISPLAY_INFO (f
)->height
- height
+ f
->top_pos
);
8224 /* The left_pos and top_pos
8225 are now relative to the top and left screen edges,
8226 so the flags should correspond. */
8227 f
->size_hint_flags
&= ~ (XNegative
| YNegative
);
8230 /* CHANGE_GRAVITY is 1 when calling from Fset_frame_position,
8231 to really change the position, and 0 when calling from
8232 x_make_frame_visible (in that case, XOFF and YOFF are the current
8233 position values). It is -1 when calling from x_set_frame_parameters,
8234 which means, do adjust for borders but don't change the gravity. */
8237 x_set_offset (f
, xoff
, yoff
, change_gravity
)
8239 register int xoff
, yoff
;
8242 int modified_top
, modified_left
;
8244 if (change_gravity
> 0)
8248 f
->size_hint_flags
&= ~ (XNegative
| YNegative
);
8250 f
->size_hint_flags
|= XNegative
;
8252 f
->size_hint_flags
|= YNegative
;
8253 f
->win_gravity
= NorthWestGravity
;
8255 x_calc_absolute_position (f
);
8258 x_wm_set_size_hint (f
, (long) 0, 0);
8260 modified_left
= f
->left_pos
;
8261 modified_top
= f
->top_pos
;
8263 if (FRAME_X_DISPLAY_INFO (f
)->wm_type
== X_WMTYPE_A
)
8265 /* Some WMs (twm, wmaker at least) has an offset that is smaller
8266 than the WM decorations. So we use the calculated offset instead
8267 of the WM decoration sizes here (x/y_pixels_outer_diff). */
8268 modified_left
+= FRAME_X_OUTPUT (f
)->move_offset_left
;
8269 modified_top
+= FRAME_X_OUTPUT (f
)->move_offset_top
;
8272 XMoveWindow (FRAME_X_DISPLAY (f
), FRAME_OUTER_WINDOW (f
),
8273 modified_left
, modified_top
);
8275 if (FRAME_VISIBLE_P (f
)
8276 && FRAME_X_DISPLAY_INFO (f
)->wm_type
== X_WMTYPE_UNKNOWN
)
8278 FRAME_X_OUTPUT (f
)->check_expected_move
= 1;
8279 FRAME_X_OUTPUT (f
)->expected_top
= f
->top_pos
;
8280 FRAME_X_OUTPUT (f
)->expected_left
= f
->left_pos
;
8286 /* Check if we need to resize the frame due to a fullscreen request.
8287 If so needed, resize the frame. */
8289 x_check_fullscreen (f
)
8292 if (f
->want_fullscreen
& FULLSCREEN_BOTH
)
8294 int width
, height
, ign
;
8296 x_real_positions (f
, &f
->left_pos
, &f
->top_pos
);
8298 x_fullscreen_adjust (f
, &width
, &height
, &ign
, &ign
);
8300 /* We do not need to move the window, it shall be taken care of
8301 when setting WM manager hints.
8302 If the frame is visible already, the position is checked by
8303 x_check_expected_move. */
8304 if (FRAME_COLS (f
) != width
|| FRAME_LINES (f
) != height
)
8306 change_frame_size (f
, height
, width
, 0, 1, 0);
8307 SET_FRAME_GARBAGED (f
);
8308 cancel_mouse_face (f
);
8310 /* Wait for the change of frame size to occur */
8311 f
->want_fullscreen
|= FULLSCREEN_WAIT
;
8316 /* If frame parameters are set after the frame is mapped, we need to move
8318 Some window managers moves the window to the right position, some
8319 moves the outer window manager window to the specified position.
8320 Here we check that we are in the right spot. If not, make a second
8321 move, assuming we are dealing with the second kind of window manager. */
8323 x_check_expected_move (f
)
8326 if (FRAME_X_OUTPUT (f
)->check_expected_move
)
8328 int expect_top
= FRAME_X_OUTPUT (f
)->expected_top
;
8329 int expect_left
= FRAME_X_OUTPUT (f
)->expected_left
;
8331 if (expect_top
!= f
->top_pos
|| expect_left
!= f
->left_pos
)
8333 FRAME_X_DISPLAY_INFO (f
)->wm_type
= X_WMTYPE_A
;
8334 FRAME_X_OUTPUT (f
)->move_offset_left
= expect_left
- f
->left_pos
;
8335 FRAME_X_OUTPUT (f
)->move_offset_top
= expect_top
- f
->top_pos
;
8337 f
->left_pos
= expect_left
;
8338 f
->top_pos
= expect_top
;
8339 x_set_offset (f
, expect_left
, expect_top
, 0);
8341 else if (FRAME_X_DISPLAY_INFO (f
)->wm_type
== X_WMTYPE_UNKNOWN
)
8342 FRAME_X_DISPLAY_INFO (f
)->wm_type
= X_WMTYPE_B
;
8344 /* Just do this once */
8345 FRAME_X_OUTPUT (f
)->check_expected_move
= 0;
8350 /* Change the size of frame F's X window to COLS/ROWS in the case F
8351 doesn't have a widget. If CHANGE_GRAVITY is 1, we change to
8352 top-left-corner window gravity for this size change and subsequent
8353 size changes. Otherwise we leave the window gravity unchanged. */
8356 x_set_window_size_1 (f
, change_gravity
, cols
, rows
)
8361 int pixelwidth
, pixelheight
;
8363 check_frame_size (f
, &rows
, &cols
);
8364 f
->scroll_bar_actual_width
8365 = (!FRAME_HAS_VERTICAL_SCROLL_BARS (f
)
8367 : FRAME_CONFIG_SCROLL_BAR_WIDTH (f
) > 0
8368 ? FRAME_CONFIG_SCROLL_BAR_WIDTH (f
)
8369 : (FRAME_CONFIG_SCROLL_BAR_COLS (f
) * FRAME_COLUMN_WIDTH (f
)));
8371 compute_fringe_widths (f
, 0);
8373 pixelwidth
= FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f
, cols
);
8374 pixelheight
= FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f
, rows
);
8376 f
->win_gravity
= NorthWestGravity
;
8377 x_wm_set_size_hint (f
, (long) 0, 0);
8379 XSync (FRAME_X_DISPLAY (f
), False
);
8380 XResizeWindow (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
8381 pixelwidth
, pixelheight
);
8383 /* Now, strictly speaking, we can't be sure that this is accurate,
8384 but the window manager will get around to dealing with the size
8385 change request eventually, and we'll hear how it went when the
8386 ConfigureNotify event gets here.
8388 We could just not bother storing any of this information here,
8389 and let the ConfigureNotify event set everything up, but that
8390 might be kind of confusing to the Lisp code, since size changes
8391 wouldn't be reported in the frame parameters until some random
8392 point in the future when the ConfigureNotify event arrives.
8394 We pass 1 for DELAY since we can't run Lisp code inside of
8396 change_frame_size (f
, rows
, cols
, 0, 1, 0);
8397 FRAME_PIXEL_WIDTH (f
) = pixelwidth
;
8398 FRAME_PIXEL_HEIGHT (f
) = pixelheight
;
8400 /* We've set {FRAME,PIXEL}_{WIDTH,HEIGHT} to the values we hope to
8401 receive in the ConfigureNotify event; if we get what we asked
8402 for, then the event won't cause the screen to become garbaged, so
8403 we have to make sure to do it here. */
8404 SET_FRAME_GARBAGED (f
);
8406 XFlush (FRAME_X_DISPLAY (f
));
8410 /* Call this to change the size of frame F's x-window.
8411 If CHANGE_GRAVITY is 1, we change to top-left-corner window gravity
8412 for this size change and subsequent size changes.
8413 Otherwise we leave the window gravity unchanged. */
8416 x_set_window_size (f
, change_gravity
, cols
, rows
)
8424 if (FRAME_GTK_WIDGET (f
))
8425 xg_frame_set_char_size (f
, cols
, rows
);
8427 x_set_window_size_1 (f
, change_gravity
, cols
, rows
);
8430 if (f
->output_data
.x
->widget
!= NULL
)
8432 /* The x and y position of the widget is clobbered by the
8433 call to XtSetValues within EmacsFrameSetCharSize.
8434 This is a real kludge, but I don't understand Xt so I can't
8435 figure out a correct fix. Can anyone else tell me? -- rms. */
8436 int xpos
= f
->output_data
.x
->widget
->core
.x
;
8437 int ypos
= f
->output_data
.x
->widget
->core
.y
;
8438 EmacsFrameSetCharSize (f
->output_data
.x
->edit_widget
, cols
, rows
);
8439 f
->output_data
.x
->widget
->core
.x
= xpos
;
8440 f
->output_data
.x
->widget
->core
.y
= ypos
;
8443 x_set_window_size_1 (f
, change_gravity
, cols
, rows
);
8445 #else /* not USE_X_TOOLKIT */
8447 x_set_window_size_1 (f
, change_gravity
, cols
, rows
);
8449 #endif /* not USE_X_TOOLKIT */
8451 /* If cursor was outside the new size, mark it as off. */
8452 mark_window_cursors_off (XWINDOW (f
->root_window
));
8454 /* Clear out any recollection of where the mouse highlighting was,
8455 since it might be in a place that's outside the new frame size.
8456 Actually checking whether it is outside is a pain in the neck,
8457 so don't try--just let the highlighting be done afresh with new size. */
8458 cancel_mouse_face (f
);
8463 /* Mouse warping. */
8466 x_set_mouse_position (f
, x
, y
)
8472 pix_x
= FRAME_COL_TO_PIXEL_X (f
, x
) + FRAME_COLUMN_WIDTH (f
) / 2;
8473 pix_y
= FRAME_LINE_TO_PIXEL_Y (f
, y
) + FRAME_LINE_HEIGHT (f
) / 2;
8475 if (pix_x
< 0) pix_x
= 0;
8476 if (pix_x
> FRAME_PIXEL_WIDTH (f
)) pix_x
= FRAME_PIXEL_WIDTH (f
);
8478 if (pix_y
< 0) pix_y
= 0;
8479 if (pix_y
> FRAME_PIXEL_HEIGHT (f
)) pix_y
= FRAME_PIXEL_HEIGHT (f
);
8483 XWarpPointer (FRAME_X_DISPLAY (f
), None
, FRAME_X_WINDOW (f
),
8484 0, 0, 0, 0, pix_x
, pix_y
);
8488 /* Move the mouse to position pixel PIX_X, PIX_Y relative to frame F. */
8491 x_set_mouse_pixel_position (f
, pix_x
, pix_y
)
8497 XWarpPointer (FRAME_X_DISPLAY (f
), None
, FRAME_X_WINDOW (f
),
8498 0, 0, 0, 0, pix_x
, pix_y
);
8502 /* focus shifting, raising and lowering. */
8505 x_focus_on_frame (f
)
8508 #if 0 /* This proves to be unpleasant. */
8512 /* I don't think that the ICCCM allows programs to do things like this
8513 without the interaction of the window manager. Whatever you end up
8514 doing with this code, do it to x_unfocus_frame too. */
8515 XSetInputFocus (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
8516 RevertToPointerRoot
, CurrentTime
);
8525 /* Look at the remarks in x_focus_on_frame. */
8526 if (FRAME_X_DISPLAY_INFO (f
)->x_focus_frame
== f
)
8527 XSetInputFocus (FRAME_X_DISPLAY (f
), PointerRoot
,
8528 RevertToPointerRoot
, CurrentTime
);
8532 /* Raise frame F. */
8538 if (f
->async_visible
)
8541 XRaiseWindow (FRAME_X_DISPLAY (f
), FRAME_OUTER_WINDOW (f
));
8542 XFlush (FRAME_X_DISPLAY (f
));
8547 /* Lower frame F. */
8553 if (f
->async_visible
)
8556 XLowerWindow (FRAME_X_DISPLAY (f
), FRAME_OUTER_WINDOW (f
));
8557 XFlush (FRAME_X_DISPLAY (f
));
8563 XTframe_raise_lower (f
, raise_flag
)
8573 /* Change of visibility. */
8575 /* This tries to wait until the frame is really visible.
8576 However, if the window manager asks the user where to position
8577 the frame, this will return before the user finishes doing that.
8578 The frame will not actually be visible at that time,
8579 but it will become visible later when the window manager
8580 finishes with it. */
8583 x_make_frame_visible (f
)
8587 int original_top
, original_left
;
8588 int retry_count
= 2;
8594 type
= x_icon_type (f
);
8596 x_bitmap_icon (f
, type
);
8598 if (! FRAME_VISIBLE_P (f
))
8600 /* We test FRAME_GARBAGED_P here to make sure we don't
8601 call x_set_offset a second time
8602 if we get to x_make_frame_visible a second time
8603 before the window gets really visible. */
8604 if (! FRAME_ICONIFIED_P (f
)
8605 && ! f
->output_data
.x
->asked_for_visible
)
8606 x_set_offset (f
, f
->left_pos
, f
->top_pos
, 0);
8608 f
->output_data
.x
->asked_for_visible
= 1;
8610 if (! EQ (Vx_no_window_manager
, Qt
))
8611 x_wm_set_window_state (f
, NormalState
);
8612 #ifdef USE_X_TOOLKIT
8613 /* This was XtPopup, but that did nothing for an iconified frame. */
8614 XtMapWidget (f
->output_data
.x
->widget
);
8615 #else /* not USE_X_TOOLKIT */
8617 gtk_widget_show_all (FRAME_GTK_OUTER_WIDGET (f
));
8618 gtk_window_deiconify (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)));
8620 XMapRaised (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
));
8621 #endif /* not USE_GTK */
8622 #endif /* not USE_X_TOOLKIT */
8623 #if 0 /* This seems to bring back scroll bars in the wrong places
8624 if the window configuration has changed. They seem
8625 to come back ok without this. */
8626 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f
))
8627 XMapSubwindows (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
));
8631 XFlush (FRAME_X_DISPLAY (f
));
8633 /* Synchronize to ensure Emacs knows the frame is visible
8634 before we do anything else. We do this loop with input not blocked
8635 so that incoming events are handled. */
8639 /* This must be before UNBLOCK_INPUT
8640 since events that arrive in response to the actions above
8641 will set it when they are handled. */
8642 int previously_visible
= f
->output_data
.x
->has_been_visible
;
8644 original_left
= f
->left_pos
;
8645 original_top
= f
->top_pos
;
8647 /* This must come after we set COUNT. */
8650 /* We unblock here so that arriving X events are processed. */
8652 /* Now move the window back to where it was "supposed to be".
8653 But don't do it if the gravity is negative.
8654 When the gravity is negative, this uses a position
8655 that is 3 pixels too low. Perhaps that's really the border width.
8657 Don't do this if the window has never been visible before,
8658 because the window manager may choose the position
8659 and we don't want to override it. */
8661 if (! FRAME_VISIBLE_P (f
) && ! FRAME_ICONIFIED_P (f
)
8662 && f
->win_gravity
== NorthWestGravity
8663 && previously_visible
)
8667 unsigned int width
, height
, border
, depth
;
8671 /* On some window managers (such as FVWM) moving an existing
8672 window, even to the same place, causes the window manager
8673 to introduce an offset. This can cause the window to move
8674 to an unexpected location. Check the geometry (a little
8675 slow here) and then verify that the window is in the right
8676 place. If the window is not in the right place, move it
8677 there, and take the potential window manager hit. */
8678 XGetGeometry (FRAME_X_DISPLAY (f
), FRAME_OUTER_WINDOW (f
),
8679 &rootw
, &x
, &y
, &width
, &height
, &border
, &depth
);
8681 if (original_left
!= x
|| original_top
!= y
)
8682 XMoveWindow (FRAME_X_DISPLAY (f
), FRAME_OUTER_WINDOW (f
),
8683 original_left
, original_top
);
8688 XSETFRAME (frame
, f
);
8690 /* Wait until the frame is visible. Process X events until a
8691 MapNotify event has been seen, or until we think we won't get a
8692 MapNotify at all.. */
8693 for (count
= input_signal_count
+ 10;
8694 input_signal_count
< count
&& !FRAME_VISIBLE_P (f
);)
8696 /* Force processing of queued events. */
8699 /* Machines that do polling rather than SIGIO have been
8700 observed to go into a busy-wait here. So we'll fake an
8701 alarm signal to let the handler know that there's something
8702 to be read. We used to raise a real alarm, but it seems
8703 that the handler isn't always enabled here. This is
8705 if (input_polling_used ())
8707 /* It could be confusing if a real alarm arrives while
8708 processing the fake one. Turn it off and let the
8709 handler reset it. */
8710 extern void poll_for_input_1
P_ ((void));
8711 int old_poll_suppress_count
= poll_suppress_count
;
8712 poll_suppress_count
= 1;
8713 poll_for_input_1 ();
8714 poll_suppress_count
= old_poll_suppress_count
;
8717 /* See if a MapNotify event has been processed. */
8718 FRAME_SAMPLE_VISIBILITY (f
);
8723 (let ((f (selected-frame)))
8727 the frame is not raised with various window managers on
8728 FreeBSD, GNU/Linux and Solaris. It turns out that, for some
8729 unknown reason, the call to XtMapWidget is completely ignored.
8730 Mapping the widget a second time works. */
8732 if (!FRAME_VISIBLE_P (f
) && --retry_count
> 0)
8737 /* Change from mapped state to withdrawn state. */
8739 /* Make the frame visible (mapped and not iconified). */
8742 x_make_frame_invisible (f
)
8747 /* Use the frame's outermost window, not the one we normally draw on. */
8748 window
= FRAME_OUTER_WINDOW (f
);
8750 /* Don't keep the highlight on an invisible frame. */
8751 if (FRAME_X_DISPLAY_INFO (f
)->x_highlight_frame
== f
)
8752 FRAME_X_DISPLAY_INFO (f
)->x_highlight_frame
= 0;
8754 #if 0/* This might add unreliability; I don't trust it -- rms. */
8755 if (! f
->async_visible
&& ! f
->async_iconified
)
8761 /* Before unmapping the window, update the WM_SIZE_HINTS property to claim
8762 that the current position of the window is user-specified, rather than
8763 program-specified, so that when the window is mapped again, it will be
8764 placed at the same location, without forcing the user to position it
8765 by hand again (they have already done that once for this window.) */
8766 x_wm_set_size_hint (f
, (long) 0, 1);
8769 if (FRAME_GTK_OUTER_WIDGET (f
))
8770 gtk_widget_hide (FRAME_GTK_OUTER_WIDGET (f
));
8776 if (! XWithdrawWindow (FRAME_X_DISPLAY (f
), window
,
8777 DefaultScreen (FRAME_X_DISPLAY (f
))))
8779 UNBLOCK_INPUT_RESIGNAL
;
8780 error ("Can't notify window manager of window withdrawal");
8782 #else /* ! defined (HAVE_X11R4) */
8784 /* Tell the window manager what we're going to do. */
8785 if (! EQ (Vx_no_window_manager
, Qt
))
8789 unmap
.xunmap
.type
= UnmapNotify
;
8790 unmap
.xunmap
.window
= window
;
8791 unmap
.xunmap
.event
= DefaultRootWindow (FRAME_X_DISPLAY (f
));
8792 unmap
.xunmap
.from_configure
= False
;
8793 if (! XSendEvent (FRAME_X_DISPLAY (f
),
8794 DefaultRootWindow (FRAME_X_DISPLAY (f
)),
8796 SubstructureRedirectMaskSubstructureNotifyMask
,
8799 UNBLOCK_INPUT_RESIGNAL
;
8800 error ("Can't notify window manager of withdrawal");
8804 /* Unmap the window ourselves. Cheeky! */
8805 XUnmapWindow (FRAME_X_DISPLAY (f
), window
);
8806 #endif /* ! defined (HAVE_X11R4) */
8809 /* We can't distinguish this from iconification
8810 just by the event that we get from the server.
8811 So we can't win using the usual strategy of letting
8812 FRAME_SAMPLE_VISIBILITY set this. So do it by hand,
8813 and synchronize with the server to make sure we agree. */
8815 FRAME_ICONIFIED_P (f
) = 0;
8816 f
->async_visible
= 0;
8817 f
->async_iconified
= 0;
8824 /* Change window state from mapped to iconified. */
8833 /* Don't keep the highlight on an invisible frame. */
8834 if (FRAME_X_DISPLAY_INFO (f
)->x_highlight_frame
== f
)
8835 FRAME_X_DISPLAY_INFO (f
)->x_highlight_frame
= 0;
8837 if (f
->async_iconified
)
8842 FRAME_SAMPLE_VISIBILITY (f
);
8844 type
= x_icon_type (f
);
8846 x_bitmap_icon (f
, type
);
8849 if (FRAME_GTK_OUTER_WIDGET (f
))
8851 if (! FRAME_VISIBLE_P (f
))
8852 gtk_widget_show_all (FRAME_GTK_OUTER_WIDGET (f
));
8854 gtk_window_iconify (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)));
8857 f
->async_iconified
= 1;
8858 f
->async_visible
= 0;
8864 #ifdef USE_X_TOOLKIT
8866 if (! FRAME_VISIBLE_P (f
))
8868 if (! EQ (Vx_no_window_manager
, Qt
))
8869 x_wm_set_window_state (f
, IconicState
);
8870 /* This was XtPopup, but that did nothing for an iconified frame. */
8871 XtMapWidget (f
->output_data
.x
->widget
);
8872 /* The server won't give us any event to indicate
8873 that an invisible frame was changed to an icon,
8874 so we have to record it here. */
8877 f
->async_iconified
= 1;
8878 f
->async_visible
= 0;
8883 result
= XIconifyWindow (FRAME_X_DISPLAY (f
),
8884 XtWindow (f
->output_data
.x
->widget
),
8885 DefaultScreen (FRAME_X_DISPLAY (f
)));
8889 error ("Can't notify window manager of iconification");
8891 f
->async_iconified
= 1;
8892 f
->async_visible
= 0;
8896 XFlush (FRAME_X_DISPLAY (f
));
8898 #else /* not USE_X_TOOLKIT */
8900 /* Make sure the X server knows where the window should be positioned,
8901 in case the user deiconifies with the window manager. */
8902 if (! FRAME_VISIBLE_P (f
) && !FRAME_ICONIFIED_P (f
))
8903 x_set_offset (f
, f
->left_pos
, f
->top_pos
, 0);
8905 /* Since we don't know which revision of X we're running, we'll use both
8906 the X11R3 and X11R4 techniques. I don't know if this is a good idea. */
8908 /* X11R4: send a ClientMessage to the window manager using the
8909 WM_CHANGE_STATE type. */
8913 message
.xclient
.window
= FRAME_X_WINDOW (f
);
8914 message
.xclient
.type
= ClientMessage
;
8915 message
.xclient
.message_type
= FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_change_state
;
8916 message
.xclient
.format
= 32;
8917 message
.xclient
.data
.l
[0] = IconicState
;
8919 if (! XSendEvent (FRAME_X_DISPLAY (f
),
8920 DefaultRootWindow (FRAME_X_DISPLAY (f
)),
8922 SubstructureRedirectMask
| SubstructureNotifyMask
,
8925 UNBLOCK_INPUT_RESIGNAL
;
8926 error ("Can't notify window manager of iconification");
8930 /* X11R3: set the initial_state field of the window manager hints to
8932 x_wm_set_window_state (f
, IconicState
);
8934 if (!FRAME_VISIBLE_P (f
))
8936 /* If the frame was withdrawn, before, we must map it. */
8937 XMapRaised (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
));
8940 f
->async_iconified
= 1;
8941 f
->async_visible
= 0;
8943 XFlush (FRAME_X_DISPLAY (f
));
8945 #endif /* not USE_X_TOOLKIT */
8949 /* Free X resources of frame F. */
8952 x_free_frame_resources (f
)
8955 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
8957 struct scroll_bar
*b
;
8961 /* If a display connection is dead, don't try sending more
8962 commands to the X server. */
8963 if (dpyinfo
->display
)
8965 if (f
->output_data
.x
->icon_desc
)
8966 XDestroyWindow (FRAME_X_DISPLAY (f
), f
->output_data
.x
->icon_desc
);
8968 #ifdef USE_X_TOOLKIT
8969 /* Explicitly destroy the scroll bars of the frame. Without
8970 this, we get "BadDrawable" errors from the toolkit later on,
8971 presumably from expose events generated for the disappearing
8972 toolkit scroll bars. */
8973 for (bar
= FRAME_SCROLL_BARS (f
); !NILP (bar
); bar
= b
->next
)
8975 b
= XSCROLL_BAR (bar
);
8976 x_scroll_bar_remove (b
);
8985 #ifdef USE_X_TOOLKIT
8986 if (f
->output_data
.x
->widget
)
8988 XtDestroyWidget (f
->output_data
.x
->widget
);
8989 f
->output_data
.x
->widget
= NULL
;
8991 /* Tooltips don't have widgets, only a simple X window, even if
8992 we are using a toolkit. */
8993 else if (FRAME_X_WINDOW (f
))
8994 XDestroyWindow (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
));
8996 free_frame_menubar (f
);
8997 #else /* !USE_X_TOOLKIT */
9000 /* In the GTK version, tooltips are normal X
9001 frames. We must check and free both types. */
9002 if (FRAME_GTK_OUTER_WIDGET (f
))
9004 gtk_widget_destroy (FRAME_GTK_OUTER_WIDGET (f
));
9005 FRAME_X_WINDOW (f
) = 0; /* Set to avoid XDestroyWindow below */
9006 FRAME_GTK_OUTER_WIDGET (f
) = 0;
9008 #endif /* USE_GTK */
9010 if (FRAME_X_WINDOW (f
))
9011 XDestroyWindow (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
));
9012 #endif /* !USE_X_TOOLKIT */
9014 unload_color (f
, FRAME_FOREGROUND_PIXEL (f
));
9015 unload_color (f
, FRAME_BACKGROUND_PIXEL (f
));
9016 unload_color (f
, f
->output_data
.x
->cursor_pixel
);
9017 unload_color (f
, f
->output_data
.x
->cursor_foreground_pixel
);
9018 unload_color (f
, f
->output_data
.x
->border_pixel
);
9019 unload_color (f
, f
->output_data
.x
->mouse_pixel
);
9021 if (f
->output_data
.x
->scroll_bar_background_pixel
!= -1)
9022 unload_color (f
, f
->output_data
.x
->scroll_bar_background_pixel
);
9023 if (f
->output_data
.x
->scroll_bar_foreground_pixel
!= -1)
9024 unload_color (f
, f
->output_data
.x
->scroll_bar_foreground_pixel
);
9025 #ifdef USE_TOOLKIT_SCROLL_BARS
9026 /* Scrollbar shadow colors. */
9027 if (f
->output_data
.x
->scroll_bar_top_shadow_pixel
!= -1)
9028 unload_color (f
, f
->output_data
.x
->scroll_bar_top_shadow_pixel
);
9029 if (f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
!= -1)
9030 unload_color (f
, f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
);
9031 #endif /* USE_TOOLKIT_SCROLL_BARS */
9032 if (f
->output_data
.x
->white_relief
.allocated_p
)
9033 unload_color (f
, f
->output_data
.x
->white_relief
.pixel
);
9034 if (f
->output_data
.x
->black_relief
.allocated_p
)
9035 unload_color (f
, f
->output_data
.x
->black_relief
.pixel
);
9037 if (FRAME_FACE_CACHE (f
))
9038 free_frame_faces (f
);
9041 XFlush (FRAME_X_DISPLAY (f
));
9044 if (f
->output_data
.x
->saved_menu_event
)
9045 xfree (f
->output_data
.x
->saved_menu_event
);
9047 xfree (f
->output_data
.x
);
9048 f
->output_data
.x
= NULL
;
9050 if (f
== dpyinfo
->x_focus_frame
)
9051 dpyinfo
->x_focus_frame
= 0;
9052 if (f
== dpyinfo
->x_focus_event_frame
)
9053 dpyinfo
->x_focus_event_frame
= 0;
9054 if (f
== dpyinfo
->x_highlight_frame
)
9055 dpyinfo
->x_highlight_frame
= 0;
9057 if (f
== dpyinfo
->mouse_face_mouse_frame
)
9059 dpyinfo
->mouse_face_beg_row
9060 = dpyinfo
->mouse_face_beg_col
= -1;
9061 dpyinfo
->mouse_face_end_row
9062 = dpyinfo
->mouse_face_end_col
= -1;
9063 dpyinfo
->mouse_face_window
= Qnil
;
9064 dpyinfo
->mouse_face_deferred_gc
= 0;
9065 dpyinfo
->mouse_face_mouse_frame
= 0;
9072 /* Destroy the X window of frame F. */
9075 x_destroy_window (f
)
9078 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
9080 /* If a display connection is dead, don't try sending more
9081 commands to the X server. */
9082 if (dpyinfo
->display
!= 0)
9083 x_free_frame_resources (f
);
9085 dpyinfo
->reference_count
--;
9089 /* Setting window manager hints. */
9091 /* Set the normal size hints for the window manager, for frame F.
9092 FLAGS is the flags word to use--or 0 meaning preserve the flags
9093 that the window now has.
9094 If USER_POSITION is nonzero, we set the USPosition
9095 flag (this is useful when FLAGS is 0).
9096 The GTK version is in gtkutils.c */
9100 x_wm_set_size_hint (f
, flags
, user_position
)
9105 XSizeHints size_hints
;
9107 #ifdef USE_X_TOOLKIT
9110 Dimension widget_width
, widget_height
;
9113 Window window
= FRAME_OUTER_WINDOW (f
);
9115 /* Setting PMaxSize caused various problems. */
9116 size_hints
.flags
= PResizeInc
| PMinSize
/* | PMaxSize */;
9118 size_hints
.x
= f
->left_pos
;
9119 size_hints
.y
= f
->top_pos
;
9121 #ifdef USE_X_TOOLKIT
9122 XtSetArg (al
[ac
], XtNwidth
, &widget_width
); ac
++;
9123 XtSetArg (al
[ac
], XtNheight
, &widget_height
); ac
++;
9124 XtGetValues (f
->output_data
.x
->widget
, al
, ac
);
9125 size_hints
.height
= widget_height
;
9126 size_hints
.width
= widget_width
;
9127 #else /* not USE_X_TOOLKIT */
9128 size_hints
.height
= FRAME_PIXEL_HEIGHT (f
);
9129 size_hints
.width
= FRAME_PIXEL_WIDTH (f
);
9130 #endif /* not USE_X_TOOLKIT */
9132 size_hints
.width_inc
= FRAME_COLUMN_WIDTH (f
);
9133 size_hints
.height_inc
= FRAME_LINE_HEIGHT (f
);
9134 size_hints
.max_width
9135 = FRAME_X_DISPLAY_INFO (f
)->width
- FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f
, 0);
9136 size_hints
.max_height
9137 = FRAME_X_DISPLAY_INFO (f
)->height
- FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f
, 0);
9139 /* Calculate the base and minimum sizes.
9141 (When we use the X toolkit, we don't do it here.
9142 Instead we copy the values that the widgets are using, below.) */
9143 #ifndef USE_X_TOOLKIT
9145 int base_width
, base_height
;
9146 int min_rows
= 0, min_cols
= 0;
9148 base_width
= FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f
, 0);
9149 base_height
= FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f
, 0);
9151 check_frame_size (f
, &min_rows
, &min_cols
);
9153 /* The window manager uses the base width hints to calculate the
9154 current number of rows and columns in the frame while
9155 resizing; min_width and min_height aren't useful for this
9156 purpose, since they might not give the dimensions for a
9157 zero-row, zero-column frame.
9159 We use the base_width and base_height members if we have
9160 them; otherwise, we set the min_width and min_height members
9161 to the size for a zero x zero frame. */
9164 size_hints
.flags
|= PBaseSize
;
9165 size_hints
.base_width
= base_width
;
9166 size_hints
.base_height
= base_height
;
9167 size_hints
.min_width
= base_width
+ min_cols
* size_hints
.width_inc
;
9168 size_hints
.min_height
= base_height
+ min_rows
* size_hints
.height_inc
;
9170 size_hints
.min_width
= base_width
;
9171 size_hints
.min_height
= base_height
;
9175 /* If we don't need the old flags, we don't need the old hint at all. */
9178 size_hints
.flags
|= flags
;
9181 #endif /* not USE_X_TOOLKIT */
9184 XSizeHints hints
; /* Sometimes I hate X Windows... */
9185 long supplied_return
;
9189 value
= XGetWMNormalHints (FRAME_X_DISPLAY (f
), window
, &hints
,
9192 value
= XGetNormalHints (FRAME_X_DISPLAY (f
), window
, &hints
);
9195 #ifdef USE_X_TOOLKIT
9196 size_hints
.base_height
= hints
.base_height
;
9197 size_hints
.base_width
= hints
.base_width
;
9198 size_hints
.min_height
= hints
.min_height
;
9199 size_hints
.min_width
= hints
.min_width
;
9203 size_hints
.flags
|= flags
;
9208 if (hints
.flags
& PSize
)
9209 size_hints
.flags
|= PSize
;
9210 if (hints
.flags
& PPosition
)
9211 size_hints
.flags
|= PPosition
;
9212 if (hints
.flags
& USPosition
)
9213 size_hints
.flags
|= USPosition
;
9214 if (hints
.flags
& USSize
)
9215 size_hints
.flags
|= USSize
;
9219 #ifndef USE_X_TOOLKIT
9224 size_hints
.win_gravity
= f
->win_gravity
;
9225 size_hints
.flags
|= PWinGravity
;
9229 size_hints
.flags
&= ~ PPosition
;
9230 size_hints
.flags
|= USPosition
;
9232 #endif /* PWinGravity */
9235 XSetWMNormalHints (FRAME_X_DISPLAY (f
), window
, &size_hints
);
9237 XSetNormalHints (FRAME_X_DISPLAY (f
), window
, &size_hints
);
9240 #endif /* not USE_GTK */
9242 /* Used for IconicState or NormalState */
9245 x_wm_set_window_state (f
, state
)
9249 #ifdef USE_X_TOOLKIT
9252 XtSetArg (al
[0], XtNinitialState
, state
);
9253 XtSetValues (f
->output_data
.x
->widget
, al
, 1);
9254 #else /* not USE_X_TOOLKIT */
9255 Window window
= FRAME_X_WINDOW (f
);
9257 f
->output_data
.x
->wm_hints
.flags
|= StateHint
;
9258 f
->output_data
.x
->wm_hints
.initial_state
= state
;
9260 XSetWMHints (FRAME_X_DISPLAY (f
), window
, &f
->output_data
.x
->wm_hints
);
9261 #endif /* not USE_X_TOOLKIT */
9265 x_wm_set_icon_pixmap (f
, pixmap_id
)
9269 Pixmap icon_pixmap
, icon_mask
;
9271 #ifndef USE_X_TOOLKIT
9272 Window window
= FRAME_OUTER_WINDOW (f
);
9277 icon_pixmap
= x_bitmap_pixmap (f
, pixmap_id
);
9278 f
->output_data
.x
->wm_hints
.icon_pixmap
= icon_pixmap
;
9279 icon_mask
= x_bitmap_mask (f
, pixmap_id
);
9280 f
->output_data
.x
->wm_hints
.icon_mask
= icon_mask
;
9284 /* It seems there is no way to turn off use of an icon pixmap.
9285 The following line does it, only if no icon has yet been created,
9286 for some window managers. But with mwm it crashes.
9287 Some people say it should clear the IconPixmapHint bit in this case,
9288 but that doesn't work, and the X consortium said it isn't the
9289 right thing at all. Since there is no way to win,
9290 best to explicitly give up. */
9292 f
->output_data
.x
->wm_hints
.icon_pixmap
= None
;
9293 f
->output_data
.x
->wm_hints
.icon_mask
= None
;
9302 xg_set_frame_icon (f
, icon_pixmap
, icon_mask
);
9306 #elif defined (USE_X_TOOLKIT) /* same as in x_wm_set_window_state. */
9310 XtSetArg (al
[0], XtNiconPixmap
, icon_pixmap
);
9311 XtSetValues (f
->output_data
.x
->widget
, al
, 1);
9312 XtSetArg (al
[0], XtNiconMask
, icon_mask
);
9313 XtSetValues (f
->output_data
.x
->widget
, al
, 1);
9316 #else /* not USE_X_TOOLKIT && not USE_GTK */
9318 f
->output_data
.x
->wm_hints
.flags
|= (IconPixmapHint
| IconMaskHint
);
9319 XSetWMHints (FRAME_X_DISPLAY (f
), window
, &f
->output_data
.x
->wm_hints
);
9321 #endif /* not USE_X_TOOLKIT && not USE_GTK */
9325 x_wm_set_icon_position (f
, icon_x
, icon_y
)
9329 Window window
= FRAME_OUTER_WINDOW (f
);
9331 f
->output_data
.x
->wm_hints
.flags
|= IconPositionHint
;
9332 f
->output_data
.x
->wm_hints
.icon_x
= icon_x
;
9333 f
->output_data
.x
->wm_hints
.icon_y
= icon_y
;
9335 XSetWMHints (FRAME_X_DISPLAY (f
), window
, &f
->output_data
.x
->wm_hints
);
9339 /***********************************************************************
9341 ***********************************************************************/
9343 /* Return a pointer to struct font_info of font FONT_IDX of frame F. */
9346 x_get_font_info (f
, font_idx
)
9350 return (FRAME_X_FONT_TABLE (f
) + font_idx
);
9354 /* Return a list of names of available fonts matching PATTERN on frame F.
9356 If SIZE is > 0, it is the size (maximum bounds width) of fonts
9359 SIZE < 0 means include scalable fonts.
9361 Frame F null means we have not yet created any frame on X, and
9362 consult the first display in x_display_list. MAXNAMES sets a limit
9363 on how many fonts to match. */
9366 x_list_fonts (f
, pattern
, size
, maxnames
)
9368 Lisp_Object pattern
;
9372 Lisp_Object list
= Qnil
, patterns
, newlist
= Qnil
, key
= Qnil
;
9373 Lisp_Object tem
, second_best
;
9374 struct x_display_info
*dpyinfo
9375 = f
? FRAME_X_DISPLAY_INFO (f
) : x_display_list
;
9376 Display
*dpy
= dpyinfo
->display
;
9377 int try_XLoadQueryFont
= 0;
9378 int allow_auto_scaled_font
= 0;
9382 allow_auto_scaled_font
= 1;
9386 patterns
= Fassoc (pattern
, Valternate_fontname_alist
);
9387 if (NILP (patterns
))
9388 patterns
= Fcons (pattern
, Qnil
);
9390 if (maxnames
== 1 && !size
)
9391 /* We can return any single font matching PATTERN. */
9392 try_XLoadQueryFont
= 1;
9394 for (; CONSP (patterns
); patterns
= XCDR (patterns
))
9397 char **names
= NULL
;
9399 pattern
= XCAR (patterns
);
9400 /* See if we cached the result for this particular query.
9401 The cache is an alist of the form:
9402 ((((PATTERN . MAXNAMES) . SCALABLE) (FONTNAME . WIDTH) ...) ...) */
9403 tem
= XCDR (dpyinfo
->name_list_element
);
9404 key
= Fcons (Fcons (pattern
, make_number (maxnames
)),
9405 allow_auto_scaled_font
? Qt
: Qnil
);
9406 list
= Fassoc (key
, tem
);
9409 list
= Fcdr_safe (list
);
9410 /* We have a cashed list. Don't have to get the list again. */
9414 /* At first, put PATTERN in the cache. */
9417 x_catch_errors (dpy
);
9419 if (try_XLoadQueryFont
)
9422 unsigned long value
;
9424 font
= XLoadQueryFont (dpy
, SDATA (pattern
));
9425 if (x_had_errors_p (dpy
))
9427 /* This error is perhaps due to insufficient memory on X
9428 server. Let's just ignore it. */
9430 x_clear_errors (dpy
);
9434 && XGetFontProperty (font
, XA_FONT
, &value
))
9436 char *name
= (char *) XGetAtomName (dpy
, (Atom
) value
);
9437 int len
= strlen (name
);
9440 /* If DXPC (a Differential X Protocol Compressor)
9441 Ver.3.7 is running, XGetAtomName will return null
9442 string. We must avoid such a name. */
9444 try_XLoadQueryFont
= 0;
9448 names
= (char **) alloca (sizeof (char *));
9449 /* Some systems only allow alloca assigned to a
9451 tmp
= (char *) alloca (len
+ 1); names
[0] = tmp
;
9452 bcopy (name
, names
[0], len
+ 1);
9457 try_XLoadQueryFont
= 0;
9460 XFreeFont (dpy
, font
);
9463 if (!try_XLoadQueryFont
)
9465 /* We try at least 10 fonts because XListFonts will return
9466 auto-scaled fonts at the head. */
9473 names
= XListFonts (dpy
, SDATA (pattern
), limit
, &num_fonts
);
9474 if (num_fonts
== limit
)
9477 XFreeFontNames (names
);
9486 names
= XListFonts (dpy
, SDATA (pattern
), max (maxnames
, 10),
9489 if (x_had_errors_p (dpy
))
9491 /* This error is perhaps due to insufficient memory on X
9492 server. Let's just ignore it. */
9494 x_clear_errors (dpy
);
9498 x_uncatch_errors ();
9505 /* Make a list of all the fonts we got back.
9506 Store that in the font cache for the display. */
9507 for (i
= 0; i
< num_fonts
; i
++)
9511 int average_width
= -1, resx
= 0, dashes
= 0;
9513 /* Count the number of dashes in NAMES[I]. If there are
9514 14 dashes, the field value following 9th dash
9515 (RESOLUTION_X) is nonzero, and the field value
9516 following 12th dash (AVERAGE_WIDTH) is 0, this is a
9517 auto-scaled font which is usually too ugly to be used
9518 for editing. Let's ignore it. */
9523 if (dashes
== 7) /* PIXEL_SIZE field */
9525 else if (dashes
== 9)
9527 else if (dashes
== 12) /* AVERAGE_WIDTH field */
9528 average_width
= atoi (p
);
9531 if (allow_auto_scaled_font
9532 || dashes
< 14 || average_width
!= 0 || resx
== 0)
9534 tem
= build_string (names
[i
]);
9535 if (NILP (Fassoc (tem
, list
)))
9537 if (STRINGP (Vx_pixel_size_width_font_regexp
)
9538 && ((fast_c_string_match_ignore_case
9539 (Vx_pixel_size_width_font_regexp
, names
[i
]))
9541 /* We can set the value of PIXEL_SIZE to the
9542 width of this font. */
9543 list
= Fcons (Fcons (tem
, make_number (width
)), list
);
9545 /* For the moment, width is not known. */
9546 list
= Fcons (Fcons (tem
, Qnil
), list
);
9551 if (!try_XLoadQueryFont
)
9554 XFreeFontNames (names
);
9559 /* Now store the result in the cache. */
9560 XSETCDR (dpyinfo
->name_list_element
,
9561 Fcons (Fcons (key
, list
), XCDR (dpyinfo
->name_list_element
)));
9564 if (NILP (list
)) continue; /* Try the remaining alternatives. */
9566 newlist
= second_best
= Qnil
;
9567 /* Make a list of the fonts that have the right width. */
9568 for (; CONSP (list
); list
= XCDR (list
))
9574 if (!CONSP (tem
) || NILP (XCAR (tem
)))
9578 newlist
= Fcons (XCAR (tem
), newlist
);
9582 if (!INTEGERP (XCDR (tem
)))
9584 /* Since we have not yet known the size of this font, we
9585 must try slow function call XLoadQueryFont. */
9586 XFontStruct
*thisinfo
;
9589 x_catch_errors (dpy
);
9590 thisinfo
= XLoadQueryFont (dpy
,
9591 SDATA (XCAR (tem
)));
9592 if (x_had_errors_p (dpy
))
9594 /* This error is perhaps due to insufficient memory on X
9595 server. Let's just ignore it. */
9597 x_clear_errors (dpy
);
9599 x_uncatch_errors ();
9605 (thisinfo
->min_bounds
.width
== 0
9607 : make_number (thisinfo
->max_bounds
.width
)));
9609 XFreeFont (dpy
, thisinfo
);
9613 /* For unknown reason, the previous call of XListFont had
9614 returned a font which can't be opened. Record the size
9615 as 0 not to try to open it again. */
9616 XSETCDR (tem
, make_number (0));
9619 found_size
= XINT (XCDR (tem
));
9620 if (found_size
== size
)
9621 newlist
= Fcons (XCAR (tem
), newlist
);
9622 else if (found_size
> 0)
9624 if (NILP (second_best
))
9626 else if (found_size
< size
)
9628 if (XINT (XCDR (second_best
)) > size
9629 || XINT (XCDR (second_best
)) < found_size
)
9634 if (XINT (XCDR (second_best
)) > size
9635 && XINT (XCDR (second_best
)) > found_size
)
9640 if (!NILP (newlist
))
9642 else if (!NILP (second_best
))
9644 newlist
= Fcons (XCAR (second_best
), Qnil
);
9655 /* Check that FONT is valid on frame F. It is if it can be found in F's
9659 x_check_font (f
, font
)
9664 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
9666 xassert (font
!= NULL
);
9668 for (i
= 0; i
< dpyinfo
->n_fonts
; i
++)
9669 if (dpyinfo
->font_table
[i
].name
9670 && font
== dpyinfo
->font_table
[i
].font
)
9673 xassert (i
< dpyinfo
->n_fonts
);
9676 #endif /* GLYPH_DEBUG != 0 */
9678 /* Set *W to the minimum width, *H to the minimum font height of FONT.
9679 Note: There are (broken) X fonts out there with invalid XFontStruct
9680 min_bounds contents. For example, handa@etl.go.jp reports that
9681 "-adobe-courier-medium-r-normal--*-180-*-*-m-*-iso8859-1" fonts
9682 have font->min_bounds.width == 0. */
9685 x_font_min_bounds (font
, w
, h
)
9689 *h
= FONT_HEIGHT (font
);
9690 *w
= font
->min_bounds
.width
;
9692 /* Try to handle the case where FONT->min_bounds has invalid
9693 contents. Since the only font known to have invalid min_bounds
9694 is fixed-width, use max_bounds if min_bounds seems to be invalid. */
9696 *w
= font
->max_bounds
.width
;
9700 /* Compute the smallest character width and smallest font height over
9701 all fonts available on frame F. Set the members smallest_char_width
9702 and smallest_font_height in F's x_display_info structure to
9703 the values computed. Value is non-zero if smallest_font_height or
9704 smallest_char_width become smaller than they were before. */
9707 x_compute_min_glyph_bounds (f
)
9711 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
9713 int old_width
= dpyinfo
->smallest_char_width
;
9714 int old_height
= dpyinfo
->smallest_font_height
;
9716 dpyinfo
->smallest_font_height
= 100000;
9717 dpyinfo
->smallest_char_width
= 100000;
9719 for (i
= 0; i
< dpyinfo
->n_fonts
; ++i
)
9720 if (dpyinfo
->font_table
[i
].name
)
9722 struct font_info
*fontp
= dpyinfo
->font_table
+ i
;
9725 font
= (XFontStruct
*) fontp
->font
;
9726 xassert (font
!= (XFontStruct
*) ~0);
9727 x_font_min_bounds (font
, &w
, &h
);
9729 dpyinfo
->smallest_font_height
= min (dpyinfo
->smallest_font_height
, h
);
9730 dpyinfo
->smallest_char_width
= min (dpyinfo
->smallest_char_width
, w
);
9733 xassert (dpyinfo
->smallest_char_width
> 0
9734 && dpyinfo
->smallest_font_height
> 0);
9736 return (dpyinfo
->n_fonts
== 1
9737 || dpyinfo
->smallest_char_width
< old_width
9738 || dpyinfo
->smallest_font_height
< old_height
);
9742 /* Load font named FONTNAME of the size SIZE for frame F, and return a
9743 pointer to the structure font_info while allocating it dynamically.
9744 If SIZE is 0, load any size of font.
9745 If loading is failed, return NULL. */
9748 x_load_font (f
, fontname
, size
)
9750 register char *fontname
;
9753 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
9754 Lisp_Object font_names
;
9756 /* Get a list of all the fonts that match this name. Once we
9757 have a list of matching fonts, we compare them against the fonts
9758 we already have by comparing names. */
9759 font_names
= x_list_fonts (f
, build_string (fontname
), size
, 1);
9761 if (!NILP (font_names
))
9766 for (i
= 0; i
< dpyinfo
->n_fonts
; i
++)
9767 for (tail
= font_names
; CONSP (tail
); tail
= XCDR (tail
))
9768 if (dpyinfo
->font_table
[i
].name
9769 && (!strcmp (dpyinfo
->font_table
[i
].name
,
9770 SDATA (XCAR (tail
)))
9771 || !strcmp (dpyinfo
->font_table
[i
].full_name
,
9772 SDATA (XCAR (tail
)))))
9773 return (dpyinfo
->font_table
+ i
);
9776 /* Load the font and add it to the table. */
9780 struct font_info
*fontp
;
9781 unsigned long value
;
9784 /* If we have found fonts by x_list_font, load one of them. If
9785 not, we still try to load a font by the name given as FONTNAME
9786 because XListFonts (called in x_list_font) of some X server has
9787 a bug of not finding a font even if the font surely exists and
9788 is loadable by XLoadQueryFont. */
9789 if (size
> 0 && !NILP (font_names
))
9790 fontname
= (char *) SDATA (XCAR (font_names
));
9793 x_catch_errors (FRAME_X_DISPLAY (f
));
9794 font
= (XFontStruct
*) XLoadQueryFont (FRAME_X_DISPLAY (f
), fontname
);
9795 if (x_had_errors_p (FRAME_X_DISPLAY (f
)))
9797 /* This error is perhaps due to insufficient memory on X
9798 server. Let's just ignore it. */
9800 x_clear_errors (FRAME_X_DISPLAY (f
));
9802 x_uncatch_errors ();
9807 /* Find a free slot in the font table. */
9808 for (i
= 0; i
< dpyinfo
->n_fonts
; ++i
)
9809 if (dpyinfo
->font_table
[i
].name
== NULL
)
9812 /* If no free slot found, maybe enlarge the font table. */
9813 if (i
== dpyinfo
->n_fonts
9814 && dpyinfo
->n_fonts
== dpyinfo
->font_table_size
)
9817 dpyinfo
->font_table_size
= max (16, 2 * dpyinfo
->font_table_size
);
9818 sz
= dpyinfo
->font_table_size
* sizeof *dpyinfo
->font_table
;
9820 = (struct font_info
*) xrealloc (dpyinfo
->font_table
, sz
);
9823 fontp
= dpyinfo
->font_table
+ i
;
9824 if (i
== dpyinfo
->n_fonts
)
9827 /* Now fill in the slots of *FONTP. */
9829 bzero (fontp
, sizeof (*fontp
));
9831 fontp
->font_idx
= i
;
9832 fontp
->name
= (char *) xmalloc (strlen (fontname
) + 1);
9833 bcopy (fontname
, fontp
->name
, strlen (fontname
) + 1);
9835 if (font
->min_bounds
.width
== font
->max_bounds
.width
)
9837 /* Fixed width font. */
9838 fontp
->average_width
= fontp
->space_width
= font
->min_bounds
.width
;
9845 char2b
.byte1
= 0x00, char2b
.byte2
= 0x20;
9846 pcm
= x_per_char_metric (font
, &char2b
, 0);
9848 fontp
->space_width
= pcm
->width
;
9850 fontp
->space_width
= FONT_WIDTH (font
);
9852 fontp
->average_width
9853 = (XGetFontProperty (font
, dpyinfo
->Xatom_AVERAGE_WIDTH
, &value
)
9854 ? (long) value
/ 10 : 0);
9855 if (fontp
->average_width
< 0)
9856 fontp
->average_width
= - fontp
->average_width
;
9857 if (fontp
->average_width
== 0)
9861 int width
= pcm
->width
;
9862 for (char2b
.byte2
= 33; char2b
.byte2
<= 126; char2b
.byte2
++)
9863 if ((pcm
= x_per_char_metric (font
, &char2b
, 0)) != NULL
)
9864 width
+= pcm
->width
;
9865 fontp
->average_width
= width
/ 95;
9868 fontp
->average_width
= FONT_WIDTH (font
);
9872 /* Try to get the full name of FONT. Put it in FULL_NAME. */
9874 if (XGetFontProperty (font
, XA_FONT
, &value
))
9876 char *name
= (char *) XGetAtomName (FRAME_X_DISPLAY (f
), (Atom
) value
);
9880 /* Count the number of dashes in the "full name".
9881 If it is too few, this isn't really the font's full name,
9883 In X11R4, the fonts did not come with their canonical names
9894 full_name
= (char *) xmalloc (p
- name
+ 1);
9895 bcopy (name
, full_name
, p
- name
+ 1);
9902 fontp
->full_name
= full_name
;
9904 fontp
->full_name
= fontp
->name
;
9906 fontp
->size
= font
->max_bounds
.width
;
9907 fontp
->height
= FONT_HEIGHT (font
);
9909 if (NILP (font_names
))
9911 /* We come here because of a bug of XListFonts mentioned at
9912 the head of this block. Let's store this information in
9913 the cache for x_list_fonts. */
9914 Lisp_Object lispy_name
= build_string (fontname
);
9915 Lisp_Object lispy_full_name
= build_string (fontp
->full_name
);
9916 Lisp_Object key
= Fcons (Fcons (lispy_name
, make_number (256)),
9919 XSETCDR (dpyinfo
->name_list_element
,
9921 Fcons (Fcons (lispy_full_name
,
9922 make_number (fontp
->size
)),
9924 XCDR (dpyinfo
->name_list_element
)));
9927 key
= Fcons (Fcons (lispy_full_name
, make_number (256)),
9929 XSETCDR (dpyinfo
->name_list_element
,
9931 Fcons (Fcons (lispy_full_name
,
9932 make_number (fontp
->size
)),
9934 XCDR (dpyinfo
->name_list_element
)));
9938 /* The slot `encoding' specifies how to map a character
9939 code-points (0x20..0x7F or 0x2020..0x7F7F) of each charset to
9940 the font code-points (0:0x20..0x7F, 1:0xA0..0xFF), or
9941 (0:0x2020..0x7F7F, 1:0xA0A0..0xFFFF, 3:0x20A0..0x7FFF,
9942 2:0xA020..0xFF7F). For the moment, we don't know which charset
9943 uses this font. So, we set information in fontp->encoding[1]
9944 which is never used by any charset. If mapping can't be
9945 decided, set FONT_ENCODING_NOT_DECIDED. */
9947 = (font
->max_byte1
== 0
9949 ? (font
->min_char_or_byte2
< 0x80
9950 ? (font
->max_char_or_byte2
< 0x80
9951 ? 0 /* 0x20..0x7F */
9952 : FONT_ENCODING_NOT_DECIDED
) /* 0x20..0xFF */
9953 : 1) /* 0xA0..0xFF */
9955 : (font
->min_byte1
< 0x80
9956 ? (font
->max_byte1
< 0x80
9957 ? (font
->min_char_or_byte2
< 0x80
9958 ? (font
->max_char_or_byte2
< 0x80
9959 ? 0 /* 0x2020..0x7F7F */
9960 : FONT_ENCODING_NOT_DECIDED
) /* 0x2020..0x7FFF */
9961 : 3) /* 0x20A0..0x7FFF */
9962 : FONT_ENCODING_NOT_DECIDED
) /* 0x20??..0xA0?? */
9963 : (font
->min_char_or_byte2
< 0x80
9964 ? (font
->max_char_or_byte2
< 0x80
9965 ? 2 /* 0xA020..0xFF7F */
9966 : FONT_ENCODING_NOT_DECIDED
) /* 0xA020..0xFFFF */
9967 : 1))); /* 0xA0A0..0xFFFF */
9969 fontp
->baseline_offset
9970 = (XGetFontProperty (font
, dpyinfo
->Xatom_MULE_BASELINE_OFFSET
, &value
)
9971 ? (long) value
: 0);
9972 fontp
->relative_compose
9973 = (XGetFontProperty (font
, dpyinfo
->Xatom_MULE_RELATIVE_COMPOSE
, &value
)
9974 ? (long) value
: 0);
9975 fontp
->default_ascent
9976 = (XGetFontProperty (font
, dpyinfo
->Xatom_MULE_DEFAULT_ASCENT
, &value
)
9977 ? (long) value
: 0);
9979 /* Set global flag fonts_changed_p to non-zero if the font loaded
9980 has a character with a smaller width than any other character
9981 before, or if the font loaded has a smaller height than any
9982 other font loaded before. If this happens, it will make a
9983 glyph matrix reallocation necessary. */
9984 fonts_changed_p
|= x_compute_min_glyph_bounds (f
);
9991 /* Return a pointer to struct font_info of a font named FONTNAME for
9992 frame F. If no such font is loaded, return NULL. */
9995 x_query_font (f
, fontname
)
9997 register char *fontname
;
9999 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
10002 for (i
= 0; i
< dpyinfo
->n_fonts
; i
++)
10003 if (dpyinfo
->font_table
[i
].name
10004 && (!strcmp (dpyinfo
->font_table
[i
].name
, fontname
)
10005 || !strcmp (dpyinfo
->font_table
[i
].full_name
, fontname
)))
10006 return (dpyinfo
->font_table
+ i
);
10011 /* Find a CCL program for a font specified by FONTP, and set the member
10012 `encoder' of the structure. */
10015 x_find_ccl_program (fontp
)
10016 struct font_info
*fontp
;
10018 Lisp_Object list
, elt
;
10021 for (list
= Vfont_ccl_encoder_alist
; CONSP (list
); list
= XCDR (list
))
10025 && STRINGP (XCAR (elt
))
10026 && ((fast_c_string_match_ignore_case (XCAR (elt
), fontp
->name
)
10028 || (fast_c_string_match_ignore_case (XCAR (elt
), fontp
->full_name
)
10035 struct ccl_program
*ccl
10036 = (struct ccl_program
*) xmalloc (sizeof (struct ccl_program
));
10038 if (setup_ccl_program (ccl
, XCDR (elt
)) < 0)
10041 fontp
->font_encoder
= ccl
;
10047 /***********************************************************************
10049 ***********************************************************************/
10051 #ifdef USE_X_TOOLKIT
10052 static XrmOptionDescRec emacs_options
[] = {
10053 {"-geometry", ".geometry", XrmoptionSepArg
, NULL
},
10054 {"-iconic", ".iconic", XrmoptionNoArg
, (XtPointer
) "yes"},
10056 {"-internal-border-width", "*EmacsScreen.internalBorderWidth",
10057 XrmoptionSepArg
, NULL
},
10058 {"-ib", "*EmacsScreen.internalBorderWidth", XrmoptionSepArg
, NULL
},
10060 {"-T", "*EmacsShell.title", XrmoptionSepArg
, (XtPointer
) NULL
},
10061 {"-wn", "*EmacsShell.title", XrmoptionSepArg
, (XtPointer
) NULL
},
10062 {"-title", "*EmacsShell.title", XrmoptionSepArg
, (XtPointer
) NULL
},
10063 {"-iconname", "*EmacsShell.iconName", XrmoptionSepArg
, (XtPointer
) NULL
},
10064 {"-in", "*EmacsShell.iconName", XrmoptionSepArg
, (XtPointer
) NULL
},
10065 {"-mc", "*pointerColor", XrmoptionSepArg
, (XtPointer
) NULL
},
10066 {"-cr", "*cursorColor", XrmoptionSepArg
, (XtPointer
) NULL
}
10068 #endif /* USE_X_TOOLKIT */
10070 static int x_initialized
;
10073 static int x_session_initialized
;
10076 #ifdef MULTI_KBOARD
10077 /* Test whether two display-name strings agree up to the dot that separates
10078 the screen number from the server number. */
10080 same_x_server (name1
, name2
)
10081 const char *name1
, *name2
;
10083 int seen_colon
= 0;
10084 const unsigned char *system_name
= SDATA (Vsystem_name
);
10085 int system_name_length
= strlen (system_name
);
10086 int length_until_period
= 0;
10088 while (system_name
[length_until_period
] != 0
10089 && system_name
[length_until_period
] != '.')
10090 length_until_period
++;
10092 /* Treat `unix' like an empty host name. */
10093 if (! strncmp (name1
, "unix:", 5))
10095 if (! strncmp (name2
, "unix:", 5))
10097 /* Treat this host's name like an empty host name. */
10098 if (! strncmp (name1
, system_name
, system_name_length
)
10099 && name1
[system_name_length
] == ':')
10100 name1
+= system_name_length
;
10101 if (! strncmp (name2
, system_name
, system_name_length
)
10102 && name2
[system_name_length
] == ':')
10103 name2
+= system_name_length
;
10104 /* Treat this host's domainless name like an empty host name. */
10105 if (! strncmp (name1
, system_name
, length_until_period
)
10106 && name1
[length_until_period
] == ':')
10107 name1
+= length_until_period
;
10108 if (! strncmp (name2
, system_name
, length_until_period
)
10109 && name2
[length_until_period
] == ':')
10110 name2
+= length_until_period
;
10112 for (; *name1
!= '\0' && *name1
== *name2
; name1
++, name2
++)
10116 if (seen_colon
&& *name1
== '.')
10120 && (*name1
== '.' || *name1
== '\0')
10121 && (*name2
== '.' || *name2
== '\0'));
10125 /* Count number of set bits in mask and number of bits to shift to
10126 get to the first bit. With MASK 0x7e0, *BITS is set to 6, and *OFFSET
10129 get_bits_and_offset (mask
, bits
, offset
)
10130 unsigned long mask
;
10137 while (!(mask
& 1))
10154 x_display_ok (display
)
10155 const char * display
;
10160 dpy
= XOpenDisplay (display
);
10162 XCloseDisplay (dpy
);
10168 struct x_display_info
*
10169 x_term_init (display_name
, xrm_option
, resource_name
)
10170 Lisp_Object display_name
;
10172 char *resource_name
;
10176 struct terminal
*terminal
;
10177 struct x_display_info
*dpyinfo
;
10182 if (!x_initialized
)
10190 #define NUM_ARGV 10
10192 char *argv
[NUM_ARGV
];
10193 char **argv2
= argv
;
10196 #ifndef HAVE_GTK_MULTIDISPLAY
10197 if (!EQ (Vinitial_window_system
, intern ("x")))
10198 error ("Sorry, you cannot connect to X servers with the GTK toolkit");
10201 if (x_initialized
++ > 1)
10203 #ifdef HAVE_GTK_MULTIDISPLAY
10204 /* Opening another display. If xg_display_open returns less
10205 than zero, we are probably on GTK 2.0, which can only handle
10206 one display. GTK 2.2 or later can handle more than one. */
10207 if (xg_display_open (SDATA (display_name
), &dpy
) < 0)
10208 error ("Sorry, this version of GTK can only handle one display");
10210 /* XXX Unfortunately, multiple display support is severely broken
10211 in recent GTK versions, so HAVE_GTK_MULTIDISPLAY is
10212 unconditionally disabled in configure.in. */
10213 error ("Sorry, multiple display support is broken in current GTK versions");
10218 for (argc
= 0; argc
< NUM_ARGV
; ++argc
)
10222 argv
[argc
++] = initial_argv
[0];
10224 if (! NILP (display_name
))
10226 argv
[argc
++] = "--display";
10227 argv
[argc
++] = SDATA (display_name
);
10230 argv
[argc
++] = "--name";
10231 argv
[argc
++] = resource_name
;
10234 XSetLocaleModifiers ("");
10237 gtk_init (&argc
, &argv2
);
10239 /* gtk_init does set_locale. We must fix locale after calling it. */
10243 dpy
= GDK_DISPLAY ();
10245 /* NULL window -> events for all windows go to our function */
10246 gdk_window_add_filter (NULL
, event_handler_gdk
, NULL
);
10248 /* Load our own gtkrc if it exists. */
10250 char *file
= "~/.emacs.d/gtkrc";
10251 Lisp_Object s
, abs_file
;
10253 s
= make_string (file
, strlen (file
));
10254 abs_file
= Fexpand_file_name (s
, Qnil
);
10256 if (! NILP (abs_file
) && !NILP (Ffile_readable_p (abs_file
)))
10257 gtk_rc_parse (SDATA (abs_file
));
10260 XSetErrorHandler (x_error_handler
);
10261 XSetIOErrorHandler (x_io_error_quitter
);
10264 #else /* not USE_GTK */
10265 #ifdef USE_X_TOOLKIT
10266 /* weiner@footloose.sps.mot.com reports that this causes
10268 X protocol error: BadAtom (invalid Atom parameter)
10269 on protocol request 18skiloaf.
10270 So let's not use it until R6. */
10271 #ifdef HAVE_X11XTR6
10272 XtSetLanguageProc (NULL
, NULL
, NULL
);
10283 argv
[argc
++] = "-xrm";
10284 argv
[argc
++] = xrm_option
;
10286 turn_on_atimers (0);
10287 dpy
= XtOpenDisplay (Xt_app_con
, SDATA (display_name
),
10288 resource_name
, EMACS_CLASS
,
10289 emacs_options
, XtNumber (emacs_options
),
10291 turn_on_atimers (1);
10293 #ifdef HAVE_X11XTR6
10294 /* I think this is to compensate for XtSetLanguageProc. */
10299 #else /* not USE_X_TOOLKIT */
10301 XSetLocaleModifiers ("");
10303 dpy
= XOpenDisplay (SDATA (display_name
));
10304 #endif /* not USE_X_TOOLKIT */
10305 #endif /* not USE_GTK*/
10307 /* Detect failure. */
10314 /* We have definitely succeeded. Record the new connection. */
10316 dpyinfo
= (struct x_display_info
*) xmalloc (sizeof (struct x_display_info
));
10317 bzero (dpyinfo
, sizeof *dpyinfo
);
10319 terminal
= x_create_terminal (dpyinfo
);
10321 #ifdef MULTI_KBOARD
10323 struct x_display_info
*share
;
10326 for (share
= x_display_list
, tail
= x_display_name_list
; share
;
10327 share
= share
->next
, tail
= XCDR (tail
))
10328 if (same_x_server (SDATA (XCAR (XCAR (tail
))),
10329 SDATA (display_name
)))
10332 terminal
->kboard
= share
->terminal
->kboard
;
10335 terminal
->kboard
= (KBOARD
*) xmalloc (sizeof (KBOARD
));
10336 init_kboard (terminal
->kboard
);
10337 if (!EQ (XSYMBOL (Qvendor_specific_keysyms
)->function
, Qunbound
))
10339 char *vendor
= ServerVendor (dpy
);
10341 terminal
->kboard
->Vsystem_key_alist
10342 = call1 (Qvendor_specific_keysyms
,
10343 build_string (vendor
? vendor
: ""));
10347 terminal
->kboard
->next_kboard
= all_kboards
;
10348 all_kboards
= terminal
->kboard
;
10349 /* Don't let the initial kboard remain current longer than necessary.
10350 That would cause problems if a file loaded on startup tries to
10351 prompt in the mini-buffer. */
10352 if (current_kboard
== initial_kboard
)
10353 current_kboard
= terminal
->kboard
;
10355 terminal
->kboard
->reference_count
++;
10359 /* Put this display on the chain. */
10360 dpyinfo
->next
= x_display_list
;
10361 x_display_list
= dpyinfo
;
10363 /* Put it on x_display_name_list as well, to keep them parallel. */
10364 x_display_name_list
= Fcons (Fcons (display_name
, Qnil
),
10365 x_display_name_list
);
10366 dpyinfo
->name_list_element
= XCAR (x_display_name_list
);
10368 dpyinfo
->display
= dpy
;
10370 /* Set the name of the terminal. */
10371 terminal
->name
= (char *) xmalloc (SBYTES (display_name
) + 1);
10372 strncpy (terminal
->name
, SDATA (display_name
), SBYTES (display_name
));
10373 terminal
->name
[SBYTES (display_name
)] = 0;
10376 XSetAfterFunction (x_current_display
, x_trace_wire
);
10380 = (char *) xmalloc (SBYTES (Vinvocation_name
)
10381 + SBYTES (Vsystem_name
)
10383 sprintf (dpyinfo
->x_id_name
, "%s@%s",
10384 SDATA (Vinvocation_name
), SDATA (Vsystem_name
));
10386 /* Figure out which modifier bits mean what. */
10387 x_find_modifier_meanings (dpyinfo
);
10389 /* Get the scroll bar cursor. */
10391 /* We must create a GTK cursor, it is required for GTK widgets. */
10392 dpyinfo
->xg_cursor
= xg_create_default_cursor (dpyinfo
->display
);
10393 #endif /* USE_GTK */
10395 dpyinfo
->vertical_scroll_bar_cursor
10396 = XCreateFontCursor (dpyinfo
->display
, XC_sb_v_double_arrow
);
10398 xrdb
= x_load_resources (dpyinfo
->display
, xrm_option
,
10399 resource_name
, EMACS_CLASS
);
10400 #ifdef HAVE_XRMSETDATABASE
10401 XrmSetDatabase (dpyinfo
->display
, xrdb
);
10403 dpyinfo
->display
->db
= xrdb
;
10405 /* Put the rdb where we can find it in a way that works on
10407 dpyinfo
->xrdb
= xrdb
;
10409 dpyinfo
->screen
= ScreenOfDisplay (dpyinfo
->display
,
10410 DefaultScreen (dpyinfo
->display
));
10411 select_visual (dpyinfo
);
10412 dpyinfo
->cmap
= DefaultColormapOfScreen (dpyinfo
->screen
);
10413 dpyinfo
->height
= HeightOfScreen (dpyinfo
->screen
);
10414 dpyinfo
->width
= WidthOfScreen (dpyinfo
->screen
);
10415 dpyinfo
->root_window
= RootWindowOfScreen (dpyinfo
->screen
);
10416 dpyinfo
->client_leader_window
= 0;
10417 dpyinfo
->grabbed
= 0;
10418 dpyinfo
->reference_count
= 0;
10419 dpyinfo
->icon_bitmap_id
= -1;
10420 dpyinfo
->font_table
= NULL
;
10421 dpyinfo
->n_fonts
= 0;
10422 dpyinfo
->font_table_size
= 0;
10423 dpyinfo
->bitmaps
= 0;
10424 dpyinfo
->bitmaps_size
= 0;
10425 dpyinfo
->bitmaps_last
= 0;
10426 dpyinfo
->scratch_cursor_gc
= 0;
10427 dpyinfo
->mouse_face_mouse_frame
= 0;
10428 dpyinfo
->mouse_face_deferred_gc
= 0;
10429 dpyinfo
->mouse_face_beg_row
= dpyinfo
->mouse_face_beg_col
= -1;
10430 dpyinfo
->mouse_face_end_row
= dpyinfo
->mouse_face_end_col
= -1;
10431 dpyinfo
->mouse_face_face_id
= DEFAULT_FACE_ID
;
10432 dpyinfo
->mouse_face_window
= Qnil
;
10433 dpyinfo
->mouse_face_overlay
= Qnil
;
10434 dpyinfo
->mouse_face_mouse_x
= dpyinfo
->mouse_face_mouse_y
= 0;
10435 dpyinfo
->mouse_face_defer
= 0;
10436 dpyinfo
->mouse_face_hidden
= 0;
10437 dpyinfo
->x_focus_frame
= 0;
10438 dpyinfo
->x_focus_event_frame
= 0;
10439 dpyinfo
->x_highlight_frame
= 0;
10440 dpyinfo
->image_cache
= make_image_cache ();
10441 dpyinfo
->wm_type
= X_WMTYPE_UNKNOWN
;
10443 /* See if we can construct pixel values from RGB values. */
10444 dpyinfo
->red_bits
= dpyinfo
->blue_bits
= dpyinfo
->green_bits
= 0;
10445 dpyinfo
->red_offset
= dpyinfo
->blue_offset
= dpyinfo
->green_offset
= 0;
10447 if (dpyinfo
->visual
->class == TrueColor
)
10449 get_bits_and_offset (dpyinfo
->visual
->red_mask
,
10450 &dpyinfo
->red_bits
, &dpyinfo
->red_offset
);
10451 get_bits_and_offset (dpyinfo
->visual
->blue_mask
,
10452 &dpyinfo
->blue_bits
, &dpyinfo
->blue_offset
);
10453 get_bits_and_offset (dpyinfo
->visual
->green_mask
,
10454 &dpyinfo
->green_bits
, &dpyinfo
->green_offset
);
10457 /* See if a private colormap is requested. */
10458 if (dpyinfo
->visual
== DefaultVisualOfScreen (dpyinfo
->screen
))
10460 if (dpyinfo
->visual
->class == PseudoColor
)
10463 value
= display_x_get_resource (dpyinfo
,
10464 build_string ("privateColormap"),
10465 build_string ("PrivateColormap"),
10467 if (STRINGP (value
)
10468 && (!strcmp (SDATA (value
), "true")
10469 || !strcmp (SDATA (value
), "on")))
10470 dpyinfo
->cmap
= XCopyColormapAndFree (dpyinfo
->display
, dpyinfo
->cmap
);
10474 dpyinfo
->cmap
= XCreateColormap (dpyinfo
->display
, dpyinfo
->root_window
,
10475 dpyinfo
->visual
, AllocNone
);
10478 int screen_number
= XScreenNumberOfScreen (dpyinfo
->screen
);
10479 double pixels
= DisplayHeight (dpyinfo
->display
, screen_number
);
10480 double mm
= DisplayHeightMM (dpyinfo
->display
, screen_number
);
10481 /* Mac OS X 10.3's Xserver sometimes reports 0.0mm. */
10482 dpyinfo
->resy
= (mm
< 1) ? 100 : pixels
* 25.4 / mm
;
10483 pixels
= DisplayWidth (dpyinfo
->display
, screen_number
);
10484 /* Mac OS X 10.3's Xserver sometimes reports 0.0mm. */
10485 mm
= DisplayWidthMM (dpyinfo
->display
, screen_number
);
10486 dpyinfo
->resx
= (mm
< 1) ? 100 : pixels
* 25.4 / mm
;
10489 dpyinfo
->Xatom_wm_protocols
10490 = XInternAtom (dpyinfo
->display
, "WM_PROTOCOLS", False
);
10491 dpyinfo
->Xatom_wm_take_focus
10492 = XInternAtom (dpyinfo
->display
, "WM_TAKE_FOCUS", False
);
10493 dpyinfo
->Xatom_wm_save_yourself
10494 = XInternAtom (dpyinfo
->display
, "WM_SAVE_YOURSELF", False
);
10495 dpyinfo
->Xatom_wm_delete_window
10496 = XInternAtom (dpyinfo
->display
, "WM_DELETE_WINDOW", False
);
10497 dpyinfo
->Xatom_wm_change_state
10498 = XInternAtom (dpyinfo
->display
, "WM_CHANGE_STATE", False
);
10499 dpyinfo
->Xatom_wm_configure_denied
10500 = XInternAtom (dpyinfo
->display
, "WM_CONFIGURE_DENIED", False
);
10501 dpyinfo
->Xatom_wm_window_moved
10502 = XInternAtom (dpyinfo
->display
, "WM_MOVED", False
);
10503 dpyinfo
->Xatom_wm_client_leader
10504 = XInternAtom (dpyinfo
->display
, "WM_CLIENT_LEADER", False
);
10505 dpyinfo
->Xatom_editres
10506 = XInternAtom (dpyinfo
->display
, "Editres", False
);
10507 dpyinfo
->Xatom_CLIPBOARD
10508 = XInternAtom (dpyinfo
->display
, "CLIPBOARD", False
);
10509 dpyinfo
->Xatom_TIMESTAMP
10510 = XInternAtom (dpyinfo
->display
, "TIMESTAMP", False
);
10511 dpyinfo
->Xatom_TEXT
10512 = XInternAtom (dpyinfo
->display
, "TEXT", False
);
10513 dpyinfo
->Xatom_COMPOUND_TEXT
10514 = XInternAtom (dpyinfo
->display
, "COMPOUND_TEXT", False
);
10515 dpyinfo
->Xatom_UTF8_STRING
10516 = XInternAtom (dpyinfo
->display
, "UTF8_STRING", False
);
10517 dpyinfo
->Xatom_DELETE
10518 = XInternAtom (dpyinfo
->display
, "DELETE", False
);
10519 dpyinfo
->Xatom_MULTIPLE
10520 = XInternAtom (dpyinfo
->display
, "MULTIPLE", False
);
10521 dpyinfo
->Xatom_INCR
10522 = XInternAtom (dpyinfo
->display
, "INCR", False
);
10523 dpyinfo
->Xatom_EMACS_TMP
10524 = XInternAtom (dpyinfo
->display
, "_EMACS_TMP_", False
);
10525 dpyinfo
->Xatom_TARGETS
10526 = XInternAtom (dpyinfo
->display
, "TARGETS", False
);
10527 dpyinfo
->Xatom_NULL
10528 = XInternAtom (dpyinfo
->display
, "NULL", False
);
10529 dpyinfo
->Xatom_ATOM_PAIR
10530 = XInternAtom (dpyinfo
->display
, "ATOM_PAIR", False
);
10531 /* For properties of font. */
10532 dpyinfo
->Xatom_PIXEL_SIZE
10533 = XInternAtom (dpyinfo
->display
, "PIXEL_SIZE", False
);
10534 dpyinfo
->Xatom_AVERAGE_WIDTH
10535 = XInternAtom (dpyinfo
->display
, "AVERAGE_WIDTH", False
);
10536 dpyinfo
->Xatom_MULE_BASELINE_OFFSET
10537 = XInternAtom (dpyinfo
->display
, "_MULE_BASELINE_OFFSET", False
);
10538 dpyinfo
->Xatom_MULE_RELATIVE_COMPOSE
10539 = XInternAtom (dpyinfo
->display
, "_MULE_RELATIVE_COMPOSE", False
);
10540 dpyinfo
->Xatom_MULE_DEFAULT_ASCENT
10541 = XInternAtom (dpyinfo
->display
, "_MULE_DEFAULT_ASCENT", False
);
10543 /* Ghostscript support. */
10544 dpyinfo
->Xatom_PAGE
= XInternAtom (dpyinfo
->display
, "PAGE", False
);
10545 dpyinfo
->Xatom_DONE
= XInternAtom (dpyinfo
->display
, "DONE", False
);
10547 dpyinfo
->Xatom_Scrollbar
= XInternAtom (dpyinfo
->display
, "SCROLLBAR",
10550 dpyinfo
->cut_buffers_initialized
= 0;
10552 connection
= ConnectionNumber (dpyinfo
->display
);
10553 dpyinfo
->connection
= connection
;
10558 null_bits
[0] = 0x00;
10560 dpyinfo
->null_pixel
10561 = XCreatePixmapFromBitmapData (dpyinfo
->display
, dpyinfo
->root_window
,
10562 null_bits
, 1, 1, (long) 0, (long) 0,
10567 extern int gray_bitmap_width
, gray_bitmap_height
;
10568 extern char *gray_bitmap_bits
;
10570 = XCreatePixmapFromBitmapData (dpyinfo
->display
, dpyinfo
->root_window
,
10572 gray_bitmap_width
, gray_bitmap_height
,
10573 (unsigned long) 1, (unsigned long) 0, 1);
10577 xim_initialize (dpyinfo
, resource_name
);
10580 #ifdef subprocesses
10581 /* This is only needed for distinguishing keyboard and process input. */
10582 if (connection
!= 0)
10583 add_keyboard_wait_descriptor (connection
);
10586 #ifndef F_SETOWN_BUG
10588 #ifdef F_SETOWN_SOCK_NEG
10589 /* stdin is a socket here */
10590 fcntl (connection
, F_SETOWN
, -getpid ());
10591 #else /* ! defined (F_SETOWN_SOCK_NEG) */
10592 fcntl (connection
, F_SETOWN
, getpid ());
10593 #endif /* ! defined (F_SETOWN_SOCK_NEG) */
10594 #endif /* ! defined (F_SETOWN) */
10595 #endif /* F_SETOWN_BUG */
10598 if (interrupt_input
)
10599 init_sigio (connection
);
10600 #endif /* ! defined (SIGIO) */
10603 #ifdef HAVE_X11R5 /* It seems X11R4 lacks XtCvtStringToFont, and XPointer. */
10604 /* Make sure that we have a valid font for dialog boxes
10605 so that Xt does not crash. */
10607 Display
*dpy
= dpyinfo
->display
;
10608 XrmValue d
, fr
, to
;
10611 d
.addr
= (XPointer
)&dpy
;
10612 d
.size
= sizeof (Display
*);
10613 fr
.addr
= XtDefaultFont
;
10614 fr
.size
= sizeof (XtDefaultFont
);
10615 to
.size
= sizeof (Font
*);
10616 to
.addr
= (XPointer
)&font
;
10617 x_catch_errors (dpy
);
10618 if (!XtCallConverter (dpy
, XtCvtStringToFont
, &d
, 1, &fr
, &to
, NULL
))
10620 if (x_had_errors_p (dpy
) || !XQueryFont (dpy
, font
))
10621 XrmPutLineResource (&xrdb
, "Emacs.dialog.*.font: 9x15");
10622 x_uncatch_errors ();
10627 /* See if we should run in synchronous mode. This is useful
10628 for debugging X code. */
10631 value
= display_x_get_resource (dpyinfo
,
10632 build_string ("synchronous"),
10633 build_string ("Synchronous"),
10635 if (STRINGP (value
)
10636 && (!strcmp (SDATA (value
), "true")
10637 || !strcmp (SDATA (value
), "on")))
10638 XSynchronize (dpyinfo
->display
, True
);
10643 value
= display_x_get_resource (dpyinfo
,
10644 build_string ("useXIM"),
10645 build_string ("UseXIM"),
10648 if (STRINGP (value
)
10649 && (!strcmp (XSTRING (value
)->data
, "false")
10650 || !strcmp (XSTRING (value
)->data
, "off")))
10653 if (STRINGP (value
)
10654 && (!strcmp (XSTRING (value
)->data
, "true")
10655 || !strcmp (XSTRING (value
)->data
, "on")))
10661 /* Only do this for the very first display in the Emacs session.
10662 Ignore X session management when Emacs was first started on a
10664 if (terminal
->id
== 1)
10665 x_session_initialize (dpyinfo
);
10673 /* Get rid of display DPYINFO, deleting all frames on it,
10674 and without sending any more commands to the X server. */
10677 x_delete_display (dpyinfo
)
10678 struct x_display_info
*dpyinfo
;
10681 struct terminal
*t
;
10683 /* Close all frames and delete the generic struct terminal for this
10685 for (t
= terminal_list
; t
; t
= t
->next_terminal
)
10686 if (t
->type
== output_x_window
&& t
->display_info
.x
== dpyinfo
)
10688 /* Close X session management when we close its display. */
10689 if (t
->id
== 1 && x_session_have_connection ())
10692 delete_terminal (t
);
10696 delete_keyboard_wait_descriptor (dpyinfo
->connection
);
10698 /* Discard this display from x_display_name_list and x_display_list.
10699 We can't use Fdelq because that can quit. */
10700 if (! NILP (x_display_name_list
)
10701 && EQ (XCAR (x_display_name_list
), dpyinfo
->name_list_element
))
10702 x_display_name_list
= XCDR (x_display_name_list
);
10707 tail
= x_display_name_list
;
10708 while (CONSP (tail
) && CONSP (XCDR (tail
)))
10710 if (EQ (XCAR (XCDR (tail
)), dpyinfo
->name_list_element
))
10712 XSETCDR (tail
, XCDR (XCDR (tail
)));
10715 tail
= XCDR (tail
);
10719 if (next_noop_dpyinfo
== dpyinfo
)
10720 next_noop_dpyinfo
= dpyinfo
->next
;
10722 if (x_display_list
== dpyinfo
)
10723 x_display_list
= dpyinfo
->next
;
10726 struct x_display_info
*tail
;
10728 for (tail
= x_display_list
; tail
; tail
= tail
->next
)
10729 if (tail
->next
== dpyinfo
)
10730 tail
->next
= tail
->next
->next
;
10733 #ifndef USE_X_TOOLKIT /* I'm told Xt does this itself. */
10734 #ifndef AIX /* On AIX, XCloseDisplay calls this. */
10735 XrmDestroyDatabase (dpyinfo
->xrdb
);
10740 xim_close_dpy (dpyinfo
);
10743 /* Free the font names in the font table. */
10744 for (i
= 0; i
< dpyinfo
->n_fonts
; i
++)
10745 if (dpyinfo
->font_table
[i
].name
)
10747 if (dpyinfo
->font_table
[i
].name
!= dpyinfo
->font_table
[i
].full_name
)
10748 xfree (dpyinfo
->font_table
[i
].full_name
);
10749 xfree (dpyinfo
->font_table
[i
].name
);
10752 if (dpyinfo
->font_table
&& dpyinfo
->font_table
->font_encoder
)
10753 xfree (dpyinfo
->font_table
->font_encoder
);
10755 if (dpyinfo
->font_table
)
10756 xfree (dpyinfo
->font_table
);
10757 xfree (dpyinfo
->x_id_name
);
10758 xfree (dpyinfo
->color_cells
);
10762 #ifdef USE_X_TOOLKIT
10764 /* Atimer callback function for TIMER. Called every 0.1s to process
10765 Xt timeouts, if needed. We must avoid calling XtAppPending as
10766 much as possible because that function does an implicit XFlush
10767 that slows us down. */
10770 x_process_timeouts (timer
)
10771 struct atimer
*timer
;
10773 if (toolkit_scroll_bar_interaction
|| popup_activated ())
10776 while (XtAppPending (Xt_app_con
) & XtIMTimer
)
10777 XtAppProcessEvent (Xt_app_con
, XtIMTimer
);
10782 #endif /* USE_X_TOOLKIT */
10785 /* Set up use of X before we make the first connection. */
10787 extern frame_parm_handler x_frame_parm_handlers
[];
10789 static struct redisplay_interface x_redisplay_interface
=
10791 x_frame_parm_handlers
,
10795 x_clear_end_of_line
,
10797 x_after_update_window_line
,
10798 x_update_window_begin
,
10799 x_update_window_end
,
10805 0, /* flush_display_optional */
10807 x_clear_window_mouse_face
,
10808 x_get_glyph_overhangs
,
10809 x_fix_overlapping_area
,
10810 x_draw_fringe_bitmap
,
10811 0, /* define_fringe_bitmap */
10812 0, /* destroy_fringe_bitmap */
10815 x_compute_glyph_string_overhangs
,
10816 x_draw_glyph_string
,
10817 x_define_frame_cursor
,
10818 x_clear_frame_area
,
10819 x_draw_window_cursor
,
10820 x_draw_vertical_window_border
,
10821 x_shift_glyphs_for_insert
10825 /* This function is called when the last frame on a display is deleted. */
10827 x_delete_terminal (struct terminal
*terminal
)
10829 struct x_display_info
*dpyinfo
= terminal
->display_info
.x
;
10832 /* Protect against recursive calls. Fdelete_frame in
10833 delete_terminal calls us back when it deletes our last frame. */
10834 if (terminal
->deleted
)
10838 /* Free the fonts in the font table. */
10839 for (i
= 0; i
< dpyinfo
->n_fonts
; i
++)
10840 if (dpyinfo
->font_table
[i
].name
)
10842 XFreeFont (dpyinfo
->display
, dpyinfo
->font_table
[i
].font
);
10845 x_destroy_all_bitmaps (dpyinfo
);
10846 XSetCloseDownMode (dpyinfo
->display
, DestroyAll
);
10848 #ifdef USE_X_TOOLKIT
10849 XtCloseDisplay (dpyinfo
->display
);
10852 xg_display_close (dpyinfo
->display
);
10854 XCloseDisplay (dpyinfo
->display
);
10858 x_delete_display (dpyinfo
);
10863 static struct terminal
*
10864 x_create_terminal (struct x_display_info
*dpyinfo
)
10866 struct terminal
*terminal
;
10868 terminal
= create_terminal ();
10870 terminal
->type
= output_x_window
;
10871 terminal
->display_info
.x
= dpyinfo
;
10872 dpyinfo
->terminal
= terminal
;
10874 /* kboard is initialized in x_term_init. */
10876 terminal
->clear_frame_hook
= x_clear_frame
;
10877 terminal
->ins_del_lines_hook
= x_ins_del_lines
;
10878 terminal
->delete_glyphs_hook
= x_delete_glyphs
;
10879 terminal
->ring_bell_hook
= XTring_bell
;
10880 terminal
->reset_terminal_modes_hook
= XTreset_terminal_modes
;
10881 terminal
->set_terminal_modes_hook
= XTset_terminal_modes
;
10882 terminal
->update_begin_hook
= x_update_begin
;
10883 terminal
->update_end_hook
= x_update_end
;
10884 terminal
->set_terminal_window_hook
= XTset_terminal_window
;
10885 terminal
->read_socket_hook
= XTread_socket
;
10886 terminal
->frame_up_to_date_hook
= XTframe_up_to_date
;
10887 terminal
->mouse_position_hook
= XTmouse_position
;
10888 terminal
->frame_rehighlight_hook
= XTframe_rehighlight
;
10889 terminal
->frame_raise_lower_hook
= XTframe_raise_lower
;
10890 terminal
->set_vertical_scroll_bar_hook
= XTset_vertical_scroll_bar
;
10891 terminal
->condemn_scroll_bars_hook
= XTcondemn_scroll_bars
;
10892 terminal
->redeem_scroll_bar_hook
= XTredeem_scroll_bar
;
10893 terminal
->judge_scroll_bars_hook
= XTjudge_scroll_bars
;
10895 terminal
->delete_frame_hook
= x_destroy_window
;
10896 terminal
->delete_terminal_hook
= x_delete_terminal
;
10898 terminal
->rif
= &x_redisplay_interface
;
10899 terminal
->scroll_region_ok
= 1; /* We'll scroll partial frames. */
10900 terminal
->char_ins_del_ok
= 1;
10901 terminal
->line_ins_del_ok
= 1; /* We'll just blt 'em. */
10902 terminal
->fast_clear_end_of_line
= 1; /* X does this well. */
10903 terminal
->memory_below_frame
= 0; /* We don't remember what scrolls
10915 last_tool_bar_item
= -1;
10916 any_help_event_p
= 0;
10917 ignore_next_mouse_click_timeout
= 0;
10919 x_session_initialized
= 0;
10923 current_count
= -1;
10926 /* Try to use interrupt input; if we can't, then start polling. */
10927 Fset_input_interrupt_mode (Qt
);
10929 #ifdef USE_X_TOOLKIT
10930 XtToolkitInitialize ();
10932 Xt_app_con
= XtCreateApplicationContext ();
10934 /* Register a converter from strings to pixels, which uses
10935 Emacs' color allocation infrastructure. */
10936 XtAppSetTypeConverter (Xt_app_con
,
10937 XtRString
, XtRPixel
, cvt_string_to_pixel
,
10938 cvt_string_to_pixel_args
,
10939 XtNumber (cvt_string_to_pixel_args
),
10940 XtCacheByDisplay
, cvt_pixel_dtor
);
10942 XtAppSetFallbackResources (Xt_app_con
, Xt_default_resources
);
10944 /* Install an asynchronous timer that processes Xt timeout events
10945 every 0.1s. This is necessary because some widget sets use
10946 timeouts internally, for example the LessTif menu bar, or the
10947 Xaw3d scroll bar. When Xt timouts aren't processed, these
10948 widgets don't behave normally. */
10950 EMACS_TIME interval
;
10951 EMACS_SET_SECS_USECS (interval
, 0, 100000);
10952 start_atimer (ATIMER_CONTINUOUS
, interval
, x_process_timeouts
, 0);
10956 #ifdef USE_TOOLKIT_SCROLL_BARS
10958 xaw3d_arrow_scroll
= False
;
10959 xaw3d_pick_top
= True
;
10963 /* Note that there is no real way portable across R3/R4 to get the
10964 original error handler. */
10965 XSetErrorHandler (x_error_handler
);
10966 XSetIOErrorHandler (x_io_error_quitter
);
10968 /* Disable Window Change signals; they are handled by X events. */
10969 #if 0 /* Don't. We may want to open tty frames later. */
10971 signal (SIGWINCH
, SIG_DFL
);
10972 #endif /* SIGWINCH */
10975 signal (SIGPIPE
, x_connection_signal
);
10982 x_error_message
= NULL
;
10984 staticpro (&x_display_name_list
);
10985 x_display_name_list
= Qnil
;
10987 staticpro (&last_mouse_scroll_bar
);
10988 last_mouse_scroll_bar
= Qnil
;
10990 staticpro (&Qvendor_specific_keysyms
);
10991 Qvendor_specific_keysyms
= intern ("vendor-specific-keysyms");
10993 staticpro (&Qutf_8
);
10994 Qutf_8
= intern ("utf-8");
10995 staticpro (&Qlatin_1
);
10996 Qlatin_1
= intern ("latin-1");
10998 staticpro (&last_mouse_press_frame
);
10999 last_mouse_press_frame
= Qnil
;
11001 DEFVAR_BOOL ("x-use-underline-position-properties",
11002 &x_use_underline_position_properties
,
11003 doc
: /* *Non-nil means make use of UNDERLINE_POSITION font properties.
11004 nil means ignore them. If you encounter fonts with bogus
11005 UNDERLINE_POSITION font properties, for example 7x13 on XFree prior
11006 to 4.1, set this to nil. */);
11007 x_use_underline_position_properties
= 1;
11009 DEFVAR_BOOL ("x-mouse-click-focus-ignore-position",
11010 &x_mouse_click_focus_ignore_position
,
11011 doc
: /* Non-nil means that a mouse click to focus a frame does not move point.
11012 This variable is only used when the window manager requires that you
11013 click on a frame to select it (give it focus). In that case, a value
11014 of nil, means that the selected window and cursor position changes to
11015 reflect the mouse click position, while a non-nil value means that the
11016 selected window or cursor position is preserved. */);
11017 x_mouse_click_focus_ignore_position
= 0;
11019 DEFVAR_LISP ("x-toolkit-scroll-bars", &Vx_toolkit_scroll_bars
,
11020 doc
: /* What X toolkit scroll bars Emacs uses.
11021 A value of nil means Emacs doesn't use X toolkit scroll bars.
11022 Otherwise, value is a symbol describing the X toolkit. */);
11023 #ifdef USE_TOOLKIT_SCROLL_BARS
11025 Vx_toolkit_scroll_bars
= intern ("motif");
11026 #elif defined HAVE_XAW3D
11027 Vx_toolkit_scroll_bars
= intern ("xaw3d");
11029 Vx_toolkit_scroll_bars
= intern ("gtk");
11031 Vx_toolkit_scroll_bars
= intern ("xaw");
11034 Vx_toolkit_scroll_bars
= Qnil
;
11037 staticpro (&last_mouse_motion_frame
);
11038 last_mouse_motion_frame
= Qnil
;
11040 Qmodifier_value
= intern ("modifier-value");
11041 Qalt
= intern ("alt");
11042 Fput (Qalt
, Qmodifier_value
, make_number (alt_modifier
));
11043 Qhyper
= intern ("hyper");
11044 Fput (Qhyper
, Qmodifier_value
, make_number (hyper_modifier
));
11045 Qmeta
= intern ("meta");
11046 Fput (Qmeta
, Qmodifier_value
, make_number (meta_modifier
));
11047 Qsuper
= intern ("super");
11048 Fput (Qsuper
, Qmodifier_value
, make_number (super_modifier
));
11050 DEFVAR_LISP ("x-alt-keysym", &Vx_alt_keysym
,
11051 doc
: /* Which keys Emacs uses for the alt modifier.
11052 This should be one of the symbols `alt', `hyper', `meta', `super'.
11053 For example, `alt' means use the Alt_L and Alt_R keysyms. The default
11054 is nil, which is the same as `alt'. */);
11055 Vx_alt_keysym
= Qnil
;
11057 DEFVAR_LISP ("x-hyper-keysym", &Vx_hyper_keysym
,
11058 doc
: /* Which keys Emacs uses for the hyper modifier.
11059 This should be one of the symbols `alt', `hyper', `meta', `super'.
11060 For example, `hyper' means use the Hyper_L and Hyper_R keysyms. The
11061 default is nil, which is the same as `hyper'. */);
11062 Vx_hyper_keysym
= Qnil
;
11064 DEFVAR_LISP ("x-meta-keysym", &Vx_meta_keysym
,
11065 doc
: /* Which keys Emacs uses for the meta modifier.
11066 This should be one of the symbols `alt', `hyper', `meta', `super'.
11067 For example, `meta' means use the Meta_L and Meta_R keysyms. The
11068 default is nil, which is the same as `meta'. */);
11069 Vx_meta_keysym
= Qnil
;
11071 DEFVAR_LISP ("x-super-keysym", &Vx_super_keysym
,
11072 doc
: /* Which keys Emacs uses for the super modifier.
11073 This should be one of the symbols `alt', `hyper', `meta', `super'.
11074 For example, `super' means use the Super_L and Super_R keysyms. The
11075 default is nil, which is the same as `super'. */);
11076 Vx_super_keysym
= Qnil
;
11078 DEFVAR_LISP ("x-keysym-table", &Vx_keysym_table
,
11079 doc
: /* Hash table of character codes indexed by X keysym codes. */);
11080 Vx_keysym_table
= make_hash_table (Qeql
, make_number (900),
11081 make_float (DEFAULT_REHASH_SIZE
),
11082 make_float (DEFAULT_REHASH_THRESHOLD
),
11086 #endif /* HAVE_X_WINDOWS */
11088 /* arch-tag: 6d4e4cb7-abc1-4302-9585-d84dcfb09d0f
11089 (do not change this comment) */