1 /* X Communication module for terminals which understand the X protocol.
2 Copyright (C) 1989, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
3 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
4 Free Software Foundation, Inc.
6 This file is part of GNU Emacs.
8 GNU Emacs is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
21 /* New display code by Gerd Moellmann <gerd@gnu.org>. */
22 /* Xt features made by Fred Pierresteguy. */
26 /* On 4.3 these lose if they come after xterm.h. */
27 /* Putting these at the beginning seems to be standard for other .c files. */
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> */
70 #include "character.h"
73 #include "dispextern.h"
75 #include "termhooks.h"
78 #include "emacs-icon.h"
83 #include "intervals.h"
89 #include "xsettings.h"
90 #include "sysselect.h"
93 #include <X11/Shell.h>
96 #ifdef HAVE_SYS_TIME_H
108 extern int xlwmenu_window_p
P_ ((Widget w
, Window window
));
109 extern void xlwmenu_redisplay
P_ ((Widget
));
112 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
114 extern void free_frame_menubar
P_ ((struct frame
*));
118 #if !defined(NO_EDITRES)
120 extern void _XEditResCheckMessages ();
121 #endif /* not NO_EDITRES */
123 /* Include toolkit specific headers for the scroll bar widget. */
125 #ifdef USE_TOOLKIT_SCROLL_BARS
126 #if defined USE_MOTIF
127 #include <Xm/Xm.h> /* for LESSTIF_VERSION */
128 #include <Xm/ScrollBar.h>
129 #else /* !USE_MOTIF i.e. use Xaw */
132 #include <X11/Xaw3d/Simple.h>
133 #include <X11/Xaw3d/Scrollbar.h>
134 #include <X11/Xaw3d/ThreeD.h>
135 #else /* !HAVE_XAW3D */
136 #include <X11/Xaw/Simple.h>
137 #include <X11/Xaw/Scrollbar.h>
138 #endif /* !HAVE_XAW3D */
140 #define XtNpickTop "pickTop"
141 #endif /* !XtNpickTop */
142 #endif /* !USE_MOTIF */
143 #endif /* USE_TOOLKIT_SCROLL_BARS */
145 #endif /* USE_X_TOOLKIT */
149 #ifndef XtNinitialState
150 #define XtNinitialState "initialState"
154 /* Default to using XIM if available. */
158 int use_xim
= 0; /* configure --without-xim */
163 /* Non-nil means Emacs uses toolkit scroll bars. */
165 Lisp_Object Vx_toolkit_scroll_bars
;
167 /* Non-zero means that a HELP_EVENT has been generated since Emacs
170 static int any_help_event_p
;
172 /* Last window where we saw the mouse. Used by mouse-autoselect-window. */
173 static Lisp_Object last_window
;
175 /* Non-zero means make use of UNDERLINE_POSITION font properties. */
177 int x_use_underline_position_properties
;
179 /* Non-zero means to draw the underline at the same place as the descent line. */
181 int x_underline_at_descent_line
;
183 /* This is a chain of structures for all the X displays currently in
186 struct x_display_info
*x_display_list
;
188 /* This is a list of cons cells, each of the form (NAME
189 . FONT-LIST-CACHE), one for each element of x_display_list and in
190 the same order. NAME is the name of the frame. FONT-LIST-CACHE
191 records previous values returned by x-list-fonts. */
193 Lisp_Object x_display_name_list
;
195 /* Frame being updated by update_frame. This is declared in term.c.
196 This is set by update_begin and looked at by all the XT functions.
197 It is zero while not inside an update. In that case, the XT
198 functions assume that `selected_frame' is the frame to apply to. */
200 extern struct frame
*updating_frame
;
202 /* This is a frame waiting to be auto-raised, within XTread_socket. */
204 static struct frame
*pending_autoraise_frame
;
206 /* This is a frame waiting for an event matching mask, within XTread_socket. */
211 } pending_event_wait
;
214 /* The application context for Xt use. */
215 XtAppContext Xt_app_con
;
216 static String Xt_default_resources
[] = {0};
217 #endif /* USE_X_TOOLKIT */
219 /* Non-zero means user is interacting with a toolkit scroll bar. */
221 static int toolkit_scroll_bar_interaction
;
223 /* Non-zero means to not move point as a result of clicking on a
224 frame to focus it (when focus-follows-mouse is nil). */
226 int x_mouse_click_focus_ignore_position
;
228 /* Non-zero timeout value means ignore next mouse click if it arrives
229 before that timeout elapses (i.e. as part of the same sequence of
230 events resulting from clicking on a frame to select it). */
232 static unsigned long ignore_next_mouse_click_timeout
;
236 Formerly, we used PointerMotionHintMask (in standard_event_mask)
237 so that we would have to call XQueryPointer after each MotionNotify
238 event to ask for another such event. However, this made mouse tracking
239 slow, and there was a bug that made it eventually stop.
241 Simply asking for MotionNotify all the time seems to work better.
243 In order to avoid asking for motion events and then throwing most
244 of them away or busy-polling the server for mouse positions, we ask
245 the server for pointer motion hints. This means that we get only
246 one event per group of mouse movements. "Groups" are delimited by
247 other kinds of events (focus changes and button clicks, for
248 example), or by XQueryPointer calls; when one of these happens, we
249 get another MotionNotify event the next time the mouse moves. This
250 is at least as efficient as getting motion events when mouse
251 tracking is on, and I suspect only negligibly worse when tracking
254 /* Where the mouse was last time we reported a mouse event. */
256 static XRectangle last_mouse_glyph
;
257 static FRAME_PTR last_mouse_glyph_frame
;
258 static Lisp_Object last_mouse_press_frame
;
260 /* The scroll bar in which the last X motion event occurred.
262 If the last X motion event occurred in a scroll bar, we set this so
263 XTmouse_position can know whether to report a scroll bar motion or
266 If the last X motion event didn't occur in a scroll bar, we set
267 this to Qnil, to tell XTmouse_position to return an ordinary motion
270 static Lisp_Object last_mouse_scroll_bar
;
272 /* This is a hack. We would really prefer that XTmouse_position would
273 return the time associated with the position it returns, but there
274 doesn't seem to be any way to wrest the time-stamp from the server
275 along with the position query. So, we just keep track of the time
276 of the last movement we received, and return that in hopes that
277 it's somewhat accurate. */
279 static Time last_mouse_movement_time
;
281 /* Time for last user interaction as returned in X events. */
283 static Time last_user_time
;
285 /* Incremented by XTread_socket whenever it really tries to read
289 static int volatile input_signal_count
;
291 static int input_signal_count
;
294 /* Used locally within XTread_socket. */
296 static int x_noop_count
;
298 /* Initial values of argv and argc. */
300 extern char **initial_argv
;
301 extern int initial_argc
;
303 extern Lisp_Object Vcommand_line_args
, Vsystem_name
;
305 /* Tells if a window manager is present or not. */
307 extern Lisp_Object Vx_no_window_manager
;
309 extern Lisp_Object Qeql
;
313 /* A mask of extra modifier bits to put into every keyboard char. */
315 extern EMACS_INT extra_keyboard_modifiers
;
317 /* The keysyms to use for the various modifiers. */
319 Lisp_Object Vx_alt_keysym
, Vx_hyper_keysym
, Vx_meta_keysym
, Vx_super_keysym
;
320 Lisp_Object Vx_keysym_table
;
321 static Lisp_Object Qalt
, Qhyper
, Qmeta
, Qsuper
, Qmodifier_value
;
323 static Lisp_Object Qvendor_specific_keysyms
;
324 static Lisp_Object Qlatin_1
;
327 /* The name of the Emacs icon file. */
328 static Lisp_Object xg_default_icon_file
;
330 /* Used in gtkutil.c. */
331 Lisp_Object Qx_gtk_map_stock
;
334 /* Used in x_flush. */
336 extern Lisp_Object Vinhibit_redisplay
;
338 extern XrmDatabase x_load_resources
P_ ((Display
*, char *, char *, char *));
339 extern int x_bitmap_mask
P_ ((FRAME_PTR
, int));
341 static int x_alloc_nearest_color_1
P_ ((Display
*, Colormap
, XColor
*));
342 static void x_set_window_size_1
P_ ((struct frame
*, int, int, int));
343 static const XColor
*x_color_cells
P_ ((Display
*, int *));
344 static void x_update_window_end
P_ ((struct window
*, int, int));
346 static int x_io_error_quitter
P_ ((Display
*));
347 static struct terminal
*x_create_terminal
P_ ((struct x_display_info
*));
348 void x_delete_terminal
P_ ((struct terminal
*));
349 static void x_update_end
P_ ((struct frame
*));
350 static void XTframe_up_to_date
P_ ((struct frame
*));
351 static void XTset_terminal_modes
P_ ((struct terminal
*));
352 static void XTreset_terminal_modes
P_ ((struct terminal
*));
353 static void x_clear_frame
P_ ((struct frame
*));
354 static void frame_highlight
P_ ((struct frame
*));
355 static void frame_unhighlight
P_ ((struct frame
*));
356 static void x_new_focus_frame
P_ ((struct x_display_info
*, struct frame
*));
357 static void x_focus_changed
P_ ((int, int, struct x_display_info
*,
358 struct frame
*, struct input_event
*));
359 static void x_detect_focus_change
P_ ((struct x_display_info
*,
360 XEvent
*, struct input_event
*));
361 static void XTframe_rehighlight
P_ ((struct frame
*));
362 static void x_frame_rehighlight
P_ ((struct x_display_info
*));
363 static void x_draw_hollow_cursor
P_ ((struct window
*, struct glyph_row
*));
364 static void x_draw_bar_cursor
P_ ((struct window
*, struct glyph_row
*, int,
365 enum text_cursor_kinds
));
367 static void x_clip_to_row
P_ ((struct window
*, struct glyph_row
*, int, GC
));
368 static void x_flush
P_ ((struct frame
*f
));
369 static void x_update_begin
P_ ((struct frame
*));
370 static void x_update_window_begin
P_ ((struct window
*));
371 static void x_after_update_window_line
P_ ((struct glyph_row
*));
372 static struct scroll_bar
*x_window_to_scroll_bar
P_ ((Display
*, Window
));
373 static void x_scroll_bar_report_motion
P_ ((struct frame
**, Lisp_Object
*,
374 enum scroll_bar_part
*,
375 Lisp_Object
*, Lisp_Object
*,
377 static void x_handle_net_wm_state
P_ ((struct frame
*, XPropertyEvent
*));
378 static void x_check_fullscreen
P_ ((struct frame
*));
379 static void x_check_expected_move
P_ ((struct frame
*, int, int));
380 static void x_sync_with_move
P_ ((struct frame
*, int, int, int));
381 static int handle_one_xevent
P_ ((struct x_display_info
*, XEvent
*,
382 int *, struct input_event
*));
383 /* Don't declare this NO_RETURN because we want no
384 interference with debugging failing X calls. */
385 static SIGTYPE x_connection_closed
P_ ((Display
*, char *));
388 /* Flush display of frame F, or of all frames if F is null. */
394 /* Don't call XFlush when it is not safe to redisplay; the X
395 connection may be broken. */
396 if (!NILP (Vinhibit_redisplay
))
402 Lisp_Object rest
, frame
;
403 FOR_EACH_FRAME (rest
, frame
)
404 if (FRAME_X_P (XFRAME (frame
)))
405 x_flush (XFRAME (frame
));
407 else if (FRAME_X_P (f
))
408 XFlush (FRAME_X_DISPLAY (f
));
413 /* Remove calls to XFlush by defining XFlush to an empty replacement.
414 Calls to XFlush should be unnecessary because the X output buffer
415 is flushed automatically as needed by calls to XPending,
416 XNextEvent, or XWindowEvent according to the XFlush man page.
417 XTread_socket calls XPending. Removing XFlush improves
420 #define XFlush(DISPLAY) (void) 0
423 /***********************************************************************
425 ***********************************************************************/
429 /* This is a function useful for recording debugging information about
430 the sequence of occurrences in this file. */
438 struct record event_record
[100];
440 int event_record_index
;
442 record_event (locus
, type
)
446 if (event_record_index
== sizeof (event_record
) / sizeof (struct record
))
447 event_record_index
= 0;
449 event_record
[event_record_index
].locus
= locus
;
450 event_record
[event_record_index
].type
= type
;
451 event_record_index
++;
458 /* Return the struct x_display_info corresponding to DPY. */
460 struct x_display_info
*
461 x_display_info_for_display (dpy
)
464 struct x_display_info
*dpyinfo
;
466 for (dpyinfo
= x_display_list
; dpyinfo
; dpyinfo
= dpyinfo
->next
)
467 if (dpyinfo
->display
== dpy
)
473 #define OPAQUE 0xffffffff
474 #define OPACITY "_NET_WM_WINDOW_OPACITY"
477 x_set_frame_alpha (f
)
480 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
481 Display
*dpy
= FRAME_X_DISPLAY (f
);
482 Window win
= FRAME_OUTER_WINDOW (f
);
484 double alpha_min
= 1.0;
487 if (FRAME_X_DISPLAY_INFO (f
)->root_window
!= FRAME_X_OUTPUT (f
)->parent_desc
)
488 /* Since the WM decoration lies under the FRAME_OUTER_WINDOW,
489 we must treat the former instead of the latter. */
490 win
= FRAME_X_OUTPUT(f
)->parent_desc
;
492 if (dpyinfo
->x_highlight_frame
== f
)
497 if (FLOATP (Vframe_alpha_lower_limit
))
498 alpha_min
= XFLOAT_DATA (Vframe_alpha_lower_limit
);
499 else if (INTEGERP (Vframe_alpha_lower_limit
))
500 alpha_min
= (XINT (Vframe_alpha_lower_limit
)) / 100.0;
504 else if (alpha
> 1.0)
506 else if (0.0 <= alpha
&& alpha
< alpha_min
&& alpha_min
<= 1.0)
509 opac
= alpha
* OPAQUE
;
511 /* return unless necessary */
516 unsigned long n
, left
;
518 x_catch_errors (dpy
);
519 rc
= XGetWindowProperty(dpy
, win
, XInternAtom(dpy
, OPACITY
, False
),
520 0L, 1L, False
, XA_CARDINAL
,
521 &actual
, &format
, &n
, &left
,
524 if (rc
== Success
&& actual
!= None
)
525 if (*(unsigned long *)data
== opac
)
527 XFree ((void *) data
);
532 XFree ((void *) data
);
536 x_catch_errors (dpy
);
537 XChangeProperty (dpy
, win
, XInternAtom (dpy
, OPACITY
, False
),
538 XA_CARDINAL
, 32, PropModeReplace
,
539 (unsigned char *) &opac
, 1L);
544 x_display_pixel_height (dpyinfo
)
545 struct x_display_info
*dpyinfo
;
547 return HeightOfScreen (dpyinfo
->screen
);
551 x_display_pixel_width (dpyinfo
)
552 struct x_display_info
*dpyinfo
;
554 return WidthOfScreen (dpyinfo
->screen
);
558 /***********************************************************************
559 Starting and ending an update
560 ***********************************************************************/
562 /* Start an update of frame F. This function is installed as a hook
563 for update_begin, i.e. it is called when update_begin is called.
564 This function is called prior to calls to x_update_window_begin for
565 each window being updated. Currently, there is nothing to do here
566 because all interesting stuff is done on a window basis. */
576 /* Start update of window W. Set the global variable updated_window
577 to the window being updated and set output_cursor to the cursor
581 x_update_window_begin (w
)
584 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
585 struct x_display_info
*display_info
= FRAME_X_DISPLAY_INFO (f
);
588 set_output_cursor (&w
->cursor
);
592 if (f
== display_info
->mouse_face_mouse_frame
)
594 /* Don't do highlighting for mouse motion during the update. */
595 display_info
->mouse_face_defer
= 1;
597 /* If F needs to be redrawn, simply forget about any prior mouse
599 if (FRAME_GARBAGED_P (f
))
600 display_info
->mouse_face_window
= Qnil
;
607 /* Draw a vertical window border from (x,y0) to (x,y1) */
610 x_draw_vertical_window_border (w
, x
, y0
, y1
)
614 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
617 face
= FACE_FROM_ID (f
, VERTICAL_BORDER_FACE_ID
);
619 XSetForeground (FRAME_X_DISPLAY (f
), f
->output_data
.x
->normal_gc
,
622 XDrawLine (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
623 f
->output_data
.x
->normal_gc
, x
, y0
, x
, y1
);
626 /* End update of window W (which is equal to updated_window).
628 Draw vertical borders between horizontally adjacent windows, and
629 display W's cursor if CURSOR_ON_P is non-zero.
631 MOUSE_FACE_OVERWRITTEN_P non-zero means that some row containing
632 glyphs in mouse-face were overwritten. In that case we have to
633 make sure that the mouse-highlight is properly redrawn.
635 W may be a menu bar pseudo-window in case we don't have X toolkit
636 support. Such windows don't have a cursor, so don't display it
640 x_update_window_end (w
, cursor_on_p
, mouse_face_overwritten_p
)
642 int cursor_on_p
, mouse_face_overwritten_p
;
644 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (XFRAME (w
->frame
));
646 if (!w
->pseudo_window_p
)
651 display_and_set_cursor (w
, 1, output_cursor
.hpos
,
653 output_cursor
.x
, output_cursor
.y
);
655 if (draw_window_fringes (w
, 1))
656 x_draw_vertical_border (w
);
661 /* If a row with mouse-face was overwritten, arrange for
662 XTframe_up_to_date to redisplay the mouse highlight. */
663 if (mouse_face_overwritten_p
)
665 dpyinfo
->mouse_face_beg_row
= dpyinfo
->mouse_face_beg_col
= -1;
666 dpyinfo
->mouse_face_end_row
= dpyinfo
->mouse_face_end_col
= -1;
667 dpyinfo
->mouse_face_window
= Qnil
;
670 updated_window
= NULL
;
674 /* End update of frame F. This function is installed as a hook in
681 /* Mouse highlight may be displayed again. */
682 FRAME_X_DISPLAY_INFO (f
)->mouse_face_defer
= 0;
686 XFlush (FRAME_X_DISPLAY (f
));
692 /* This function is called from various places in xdisp.c whenever a
693 complete update has been performed. The global variable
694 updated_window is not available here. */
697 XTframe_up_to_date (f
)
702 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
704 if (dpyinfo
->mouse_face_deferred_gc
705 || f
== dpyinfo
->mouse_face_mouse_frame
)
708 if (dpyinfo
->mouse_face_mouse_frame
)
709 note_mouse_highlight (dpyinfo
->mouse_face_mouse_frame
,
710 dpyinfo
->mouse_face_mouse_x
,
711 dpyinfo
->mouse_face_mouse_y
);
712 dpyinfo
->mouse_face_deferred_gc
= 0;
719 /* Draw truncation mark bitmaps, continuation mark bitmaps, overlay
720 arrow bitmaps, or clear the fringes if no bitmaps are required
721 before DESIRED_ROW is made current. The window being updated is
722 found in updated_window. This function It is called from
723 update_window_line only if it is known that there are differences
724 between bitmaps to be drawn between current row and DESIRED_ROW. */
727 x_after_update_window_line (desired_row
)
728 struct glyph_row
*desired_row
;
730 struct window
*w
= updated_window
;
736 if (!desired_row
->mode_line_p
&& !w
->pseudo_window_p
)
737 desired_row
->redraw_fringe_bitmaps_p
= 1;
739 /* When a window has disappeared, make sure that no rest of
740 full-width rows stays visible in the internal border. Could
741 check here if updated_window is the leftmost/rightmost window,
742 but I guess it's not worth doing since vertically split windows
743 are almost never used, internal border is rarely set, and the
744 overhead is very small. */
745 if (windows_or_buffers_changed
746 && desired_row
->full_width_p
747 && (f
= XFRAME (w
->frame
),
748 width
= FRAME_INTERNAL_BORDER_WIDTH (f
),
750 && (height
= desired_row
->visible_height
,
753 int y
= WINDOW_TO_FRAME_PIXEL_Y (w
, max (0, desired_row
->y
));
755 /* Internal border is drawn below the tool bar. */
756 if (WINDOWP (f
->tool_bar_window
)
757 && w
== XWINDOW (f
->tool_bar_window
))
761 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
762 0, y
, width
, height
, False
);
763 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
764 FRAME_PIXEL_WIDTH (f
) - width
,
765 y
, width
, height
, False
);
771 x_draw_fringe_bitmap (w
, row
, p
)
773 struct glyph_row
*row
;
774 struct draw_fringe_bitmap_params
*p
;
776 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
777 Display
*display
= FRAME_X_DISPLAY (f
);
778 Window window
= FRAME_X_WINDOW (f
);
779 GC gc
= f
->output_data
.x
->normal_gc
;
780 struct face
*face
= p
->face
;
783 /* Must clip because of partially visible lines. */
784 rowY
= WINDOW_TO_FRAME_PIXEL_Y (w
, row
->y
);
787 /* Adjust position of "bottom aligned" bitmap on partially
790 int oldVH
= row
->visible_height
;
791 row
->visible_height
= p
->h
;
792 row
->y
-= rowY
- p
->y
;
793 x_clip_to_row (w
, row
, -1, gc
);
795 row
->visible_height
= oldVH
;
798 x_clip_to_row (w
, row
, -1, gc
);
802 int bx
= p
->bx
, by
= p
->by
, nx
= p
->nx
, ny
= p
->ny
;
804 /* In case the same realized face is used for fringes and
805 for something displayed in the text (e.g. face `region' on
806 mono-displays, the fill style may have been changed to
807 FillSolid in x_draw_glyph_string_background. */
809 XSetFillStyle (display
, face
->gc
, FillOpaqueStippled
);
811 XSetForeground (display
, face
->gc
, face
->background
);
813 #ifdef USE_TOOLKIT_SCROLL_BARS
814 /* If the fringe is adjacent to the left (right) scroll bar of a
815 leftmost (rightmost, respectively) window, then extend its
816 background to the gap between the fringe and the bar. */
817 if ((WINDOW_LEFTMOST_P (w
)
818 && WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w
))
819 || (WINDOW_RIGHTMOST_P (w
)
820 && WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w
)))
822 int sb_width
= WINDOW_CONFIG_SCROLL_BAR_WIDTH (w
);
826 int left
= WINDOW_SCROLL_BAR_AREA_X (w
);
827 int width
= (WINDOW_CONFIG_SCROLL_BAR_COLS (w
)
828 * FRAME_COLUMN_WIDTH (f
));
832 /* Bitmap fills the fringe. */
833 if (left
+ width
== p
->x
)
834 bx
= left
+ sb_width
;
835 else if (p
->x
+ p
->wd
== left
)
839 int header_line_height
= WINDOW_HEADER_LINE_HEIGHT (w
);
841 nx
= width
- sb_width
;
842 by
= WINDOW_TO_FRAME_PIXEL_Y (w
, max (header_line_height
,
844 ny
= row
->visible_height
;
849 if (left
+ width
== bx
)
851 bx
= left
+ sb_width
;
852 nx
+= width
- sb_width
;
854 else if (bx
+ nx
== left
)
855 nx
+= width
- sb_width
;
860 if (bx
>= 0 && nx
> 0)
861 XFillRectangle (display
, window
, face
->gc
, bx
, by
, nx
, ny
);
864 XSetForeground (display
, face
->gc
, face
->foreground
);
870 Pixmap pixmap
, clipmask
= (Pixmap
) 0;
871 int depth
= DefaultDepthOfScreen (FRAME_X_SCREEN (f
));
875 bits
= (unsigned char *)(p
->bits
+ p
->dh
);
877 bits
= (unsigned char *)p
->bits
+ p
->dh
;
879 /* Draw the bitmap. I believe these small pixmaps can be cached
881 pixmap
= XCreatePixmapFromBitmapData (display
, window
, bits
, p
->wd
, p
->h
,
883 ? (p
->overlay_p
? face
->background
884 : f
->output_data
.x
->cursor_pixel
)
886 face
->background
, depth
);
890 clipmask
= XCreatePixmapFromBitmapData (display
,
891 FRAME_X_DISPLAY_INFO (f
)->root_window
,
894 gcv
.clip_mask
= clipmask
;
895 gcv
.clip_x_origin
= p
->x
;
896 gcv
.clip_y_origin
= p
->y
;
897 XChangeGC (display
, gc
, GCClipMask
| GCClipXOrigin
| GCClipYOrigin
, &gcv
);
900 XCopyArea (display
, pixmap
, window
, gc
, 0, 0,
901 p
->wd
, p
->h
, p
->x
, p
->y
);
902 XFreePixmap (display
, pixmap
);
906 gcv
.clip_mask
= (Pixmap
) 0;
907 XChangeGC (display
, gc
, GCClipMask
, &gcv
);
908 XFreePixmap (display
, clipmask
);
912 XSetClipMask (display
, gc
, None
);
917 /* This is called when starting Emacs and when restarting after
918 suspend. When starting Emacs, no X window is mapped. And nothing
919 must be done to Emacs's own window if it is suspended (though that
923 XTset_terminal_modes (struct terminal
*terminal
)
927 /* This is called when exiting or suspending Emacs. Exiting will make
928 the X-windows go away, and suspending requires no action. */
931 XTreset_terminal_modes (struct terminal
*terminal
)
936 /***********************************************************************
938 ***********************************************************************/
942 static void x_set_glyph_string_clipping
P_ ((struct glyph_string
*));
943 static void x_set_glyph_string_gc
P_ ((struct glyph_string
*));
944 static void x_draw_glyph_string_background
P_ ((struct glyph_string
*,
946 static void x_draw_glyph_string_foreground
P_ ((struct glyph_string
*));
947 static void x_draw_composite_glyph_string_foreground
P_ ((struct glyph_string
*));
948 static void x_draw_glyph_string_box
P_ ((struct glyph_string
*));
949 static void x_draw_glyph_string
P_ ((struct glyph_string
*));
950 static void x_compute_glyph_string_overhangs
P_ ((struct glyph_string
*));
951 static void x_set_cursor_gc
P_ ((struct glyph_string
*));
952 static void x_set_mode_line_face_gc
P_ ((struct glyph_string
*));
953 static void x_set_mouse_face_gc
P_ ((struct glyph_string
*));
954 static int x_alloc_lighter_color
P_ ((struct frame
*, Display
*, Colormap
,
955 unsigned long *, double, int));
956 static void x_setup_relief_color
P_ ((struct frame
*, struct relief
*,
957 double, int, unsigned long));
958 static void x_setup_relief_colors
P_ ((struct glyph_string
*));
959 static void x_draw_image_glyph_string
P_ ((struct glyph_string
*));
960 static void x_draw_image_relief
P_ ((struct glyph_string
*));
961 static void x_draw_image_foreground
P_ ((struct glyph_string
*));
962 static void x_draw_image_foreground_1
P_ ((struct glyph_string
*, Pixmap
));
963 static void x_clear_glyph_string_rect
P_ ((struct glyph_string
*, int,
965 static void x_draw_relief_rect
P_ ((struct frame
*, int, int, int, int,
966 int, int, int, int, int, int,
968 static void x_draw_box_rect
P_ ((struct glyph_string
*, int, int, int, int,
969 int, int, int, XRectangle
*));
972 static void x_check_font
P_ ((struct frame
*, struct font
*));
976 /* Set S->gc to a suitable GC for drawing glyph string S in cursor
981 struct glyph_string
*s
;
983 if (s
->font
== FRAME_FONT (s
->f
)
984 && s
->face
->background
== FRAME_BACKGROUND_PIXEL (s
->f
)
985 && s
->face
->foreground
== FRAME_FOREGROUND_PIXEL (s
->f
)
987 s
->gc
= s
->f
->output_data
.x
->cursor_gc
;
990 /* Cursor on non-default face: must merge. */
994 xgcv
.background
= s
->f
->output_data
.x
->cursor_pixel
;
995 xgcv
.foreground
= s
->face
->background
;
997 /* If the glyph would be invisible, try a different foreground. */
998 if (xgcv
.foreground
== xgcv
.background
)
999 xgcv
.foreground
= s
->face
->foreground
;
1000 if (xgcv
.foreground
== xgcv
.background
)
1001 xgcv
.foreground
= s
->f
->output_data
.x
->cursor_foreground_pixel
;
1002 if (xgcv
.foreground
== xgcv
.background
)
1003 xgcv
.foreground
= s
->face
->foreground
;
1005 /* Make sure the cursor is distinct from text in this face. */
1006 if (xgcv
.background
== s
->face
->background
1007 && xgcv
.foreground
== s
->face
->foreground
)
1009 xgcv
.background
= s
->face
->foreground
;
1010 xgcv
.foreground
= s
->face
->background
;
1013 IF_DEBUG (x_check_font (s
->f
, s
->font
));
1014 xgcv
.graphics_exposures
= False
;
1015 mask
= GCForeground
| GCBackground
| GCGraphicsExposures
;
1017 if (FRAME_X_DISPLAY_INFO (s
->f
)->scratch_cursor_gc
)
1018 XChangeGC (s
->display
, FRAME_X_DISPLAY_INFO (s
->f
)->scratch_cursor_gc
,
1021 FRAME_X_DISPLAY_INFO (s
->f
)->scratch_cursor_gc
1022 = XCreateGC (s
->display
, s
->window
, mask
, &xgcv
);
1024 s
->gc
= FRAME_X_DISPLAY_INFO (s
->f
)->scratch_cursor_gc
;
1029 /* Set up S->gc of glyph string S for drawing text in mouse face. */
1032 x_set_mouse_face_gc (s
)
1033 struct glyph_string
*s
;
1038 /* What face has to be used last for the mouse face? */
1039 face_id
= FRAME_X_DISPLAY_INFO (s
->f
)->mouse_face_face_id
;
1040 face
= FACE_FROM_ID (s
->f
, face_id
);
1042 face
= FACE_FROM_ID (s
->f
, MOUSE_FACE_ID
);
1044 if (s
->first_glyph
->type
== CHAR_GLYPH
)
1045 face_id
= FACE_FOR_CHAR (s
->f
, face
, s
->first_glyph
->u
.ch
, -1, Qnil
);
1047 face_id
= FACE_FOR_CHAR (s
->f
, face
, 0, -1, Qnil
);
1048 s
->face
= FACE_FROM_ID (s
->f
, face_id
);
1049 PREPARE_FACE_FOR_DISPLAY (s
->f
, s
->face
);
1051 if (s
->font
== s
->face
->font
)
1052 s
->gc
= s
->face
->gc
;
1055 /* Otherwise construct scratch_cursor_gc with values from FACE
1060 xgcv
.background
= s
->face
->background
;
1061 xgcv
.foreground
= s
->face
->foreground
;
1062 xgcv
.graphics_exposures
= False
;
1063 mask
= GCForeground
| GCBackground
| GCGraphicsExposures
;
1065 if (FRAME_X_DISPLAY_INFO (s
->f
)->scratch_cursor_gc
)
1066 XChangeGC (s
->display
, FRAME_X_DISPLAY_INFO (s
->f
)->scratch_cursor_gc
,
1069 FRAME_X_DISPLAY_INFO (s
->f
)->scratch_cursor_gc
1070 = XCreateGC (s
->display
, s
->window
, mask
, &xgcv
);
1072 s
->gc
= FRAME_X_DISPLAY_INFO (s
->f
)->scratch_cursor_gc
;
1075 xassert (s
->gc
!= 0);
1079 /* Set S->gc of glyph string S to a GC suitable for drawing a mode line.
1080 Faces to use in the mode line have already been computed when the
1081 matrix was built, so there isn't much to do, here. */
1084 x_set_mode_line_face_gc (s
)
1085 struct glyph_string
*s
;
1087 s
->gc
= s
->face
->gc
;
1091 /* Set S->gc of glyph string S for drawing that glyph string. Set
1092 S->stippled_p to a non-zero value if the face of S has a stipple
1096 x_set_glyph_string_gc (s
)
1097 struct glyph_string
*s
;
1099 PREPARE_FACE_FOR_DISPLAY (s
->f
, s
->face
);
1101 if (s
->hl
== DRAW_NORMAL_TEXT
)
1103 s
->gc
= s
->face
->gc
;
1104 s
->stippled_p
= s
->face
->stipple
!= 0;
1106 else if (s
->hl
== DRAW_INVERSE_VIDEO
)
1108 x_set_mode_line_face_gc (s
);
1109 s
->stippled_p
= s
->face
->stipple
!= 0;
1111 else if (s
->hl
== DRAW_CURSOR
)
1113 x_set_cursor_gc (s
);
1116 else if (s
->hl
== DRAW_MOUSE_FACE
)
1118 x_set_mouse_face_gc (s
);
1119 s
->stippled_p
= s
->face
->stipple
!= 0;
1121 else if (s
->hl
== DRAW_IMAGE_RAISED
1122 || s
->hl
== DRAW_IMAGE_SUNKEN
)
1124 s
->gc
= s
->face
->gc
;
1125 s
->stippled_p
= s
->face
->stipple
!= 0;
1129 s
->gc
= s
->face
->gc
;
1130 s
->stippled_p
= s
->face
->stipple
!= 0;
1133 /* GC must have been set. */
1134 xassert (s
->gc
!= 0);
1138 /* Set clipping for output of glyph string S. S may be part of a mode
1139 line or menu if we don't have X toolkit support. */
1142 x_set_glyph_string_clipping (s
)
1143 struct glyph_string
*s
;
1145 XRectangle
*r
= s
->clip
;
1146 int n
= get_glyph_string_clip_rects (s
, r
, 2);
1149 XSetClipRectangles (s
->display
, s
->gc
, 0, 0, r
, n
, Unsorted
);
1154 /* Set SRC's clipping for output of glyph string DST. This is called
1155 when we are drawing DST's left_overhang or right_overhang only in
1159 x_set_glyph_string_clipping_exactly (src
, dst
)
1160 struct glyph_string
*src
, *dst
;
1165 r
.width
= src
->width
;
1167 r
.height
= src
->height
;
1170 XSetClipRectangles (dst
->display
, dst
->gc
, 0, 0, &r
, 1, Unsorted
);
1175 Compute left and right overhang of glyph string S. */
1178 x_compute_glyph_string_overhangs (s
)
1179 struct glyph_string
*s
;
1182 && (s
->first_glyph
->type
== CHAR_GLYPH
1183 || s
->first_glyph
->type
== COMPOSITE_GLYPH
))
1185 struct font_metrics metrics
;
1187 if (s
->first_glyph
->type
== CHAR_GLYPH
)
1189 unsigned *code
= alloca (sizeof (unsigned) * s
->nchars
);
1190 struct font
*font
= s
->font
;
1193 for (i
= 0; i
< s
->nchars
; i
++)
1194 code
[i
] = (s
->char2b
[i
].byte1
<< 8) | s
->char2b
[i
].byte2
;
1195 font
->driver
->text_extents (font
, code
, s
->nchars
, &metrics
);
1199 Lisp_Object gstring
= composition_gstring_from_id (s
->cmp_id
);
1201 composition_gstring_width (gstring
, s
->cmp_from
, s
->cmp_to
, &metrics
);
1203 s
->right_overhang
= (metrics
.rbearing
> metrics
.width
1204 ? metrics
.rbearing
- metrics
.width
: 0);
1205 s
->left_overhang
= metrics
.lbearing
< 0 ? - metrics
.lbearing
: 0;
1209 s
->right_overhang
= s
->cmp
->rbearing
- s
->cmp
->pixel_width
;
1210 s
->left_overhang
= - s
->cmp
->lbearing
;
1215 /* Fill rectangle X, Y, W, H with background color of glyph string S. */
1218 x_clear_glyph_string_rect (s
, x
, y
, w
, h
)
1219 struct glyph_string
*s
;
1223 XGetGCValues (s
->display
, s
->gc
, GCForeground
| GCBackground
, &xgcv
);
1224 XSetForeground (s
->display
, s
->gc
, xgcv
.background
);
1225 XFillRectangle (s
->display
, s
->window
, s
->gc
, x
, y
, w
, h
);
1226 XSetForeground (s
->display
, s
->gc
, xgcv
.foreground
);
1230 /* Draw the background of glyph_string S. If S->background_filled_p
1231 is non-zero don't draw it. FORCE_P non-zero means draw the
1232 background even if it wouldn't be drawn normally. This is used
1233 when a string preceding S draws into the background of S, or S
1234 contains the first component of a composition. */
1237 x_draw_glyph_string_background (s
, force_p
)
1238 struct glyph_string
*s
;
1241 /* Nothing to do if background has already been drawn or if it
1242 shouldn't be drawn in the first place. */
1243 if (!s
->background_filled_p
)
1245 int box_line_width
= max (s
->face
->box_line_width
, 0);
1249 /* Fill background with a stipple pattern. */
1250 XSetFillStyle (s
->display
, s
->gc
, FillOpaqueStippled
);
1251 XFillRectangle (s
->display
, s
->window
, s
->gc
, s
->x
,
1252 s
->y
+ box_line_width
,
1253 s
->background_width
,
1254 s
->height
- 2 * box_line_width
);
1255 XSetFillStyle (s
->display
, s
->gc
, FillSolid
);
1256 s
->background_filled_p
= 1;
1258 else if (FONT_HEIGHT (s
->font
) < s
->height
- 2 * box_line_width
1259 || s
->font_not_found_p
1260 || s
->extends_to_end_of_line_p
1263 x_clear_glyph_string_rect (s
, s
->x
, s
->y
+ box_line_width
,
1264 s
->background_width
,
1265 s
->height
- 2 * box_line_width
);
1266 s
->background_filled_p
= 1;
1272 /* Draw the foreground of glyph string S. */
1275 x_draw_glyph_string_foreground (s
)
1276 struct glyph_string
*s
;
1280 /* If first glyph of S has a left box line, start drawing the text
1281 of S to the right of that box line. */
1282 if (s
->face
->box
!= FACE_NO_BOX
1283 && s
->first_glyph
->left_box_line_p
)
1284 x
= s
->x
+ eabs (s
->face
->box_line_width
);
1288 /* Draw characters of S as rectangles if S's font could not be
1290 if (s
->font_not_found_p
)
1292 for (i
= 0; i
< s
->nchars
; ++i
)
1294 struct glyph
*g
= s
->first_glyph
+ i
;
1295 XDrawRectangle (s
->display
, s
->window
,
1296 s
->gc
, x
, s
->y
, g
->pixel_width
- 1,
1298 x
+= g
->pixel_width
;
1303 struct font
*font
= s
->font
;
1304 int boff
= font
->baseline_offset
;
1307 if (font
->vertical_centering
)
1308 boff
= VCENTER_BASELINE_OFFSET (font
, s
->f
) - boff
;
1310 y
= s
->ybase
- boff
;
1312 || (s
->background_filled_p
&& s
->hl
!= DRAW_CURSOR
))
1313 font
->driver
->draw (s
, 0, s
->nchars
, x
, y
, 0);
1315 font
->driver
->draw (s
, 0, s
->nchars
, x
, y
, 1);
1316 if (s
->face
->overstrike
)
1317 font
->driver
->draw (s
, 0, s
->nchars
, x
+ 1, y
, 0);
1321 /* Draw the foreground of composite glyph string S. */
1324 x_draw_composite_glyph_string_foreground (s
)
1325 struct glyph_string
*s
;
1328 struct font
*font
= s
->font
;
1330 /* If first glyph of S has a left box line, start drawing the text
1331 of S to the right of that box line. */
1332 if (s
->face
&& s
->face
->box
!= FACE_NO_BOX
1333 && s
->first_glyph
->left_box_line_p
)
1334 x
= s
->x
+ eabs (s
->face
->box_line_width
);
1338 /* S is a glyph string for a composition. S->cmp_from is the index
1339 of the first character drawn for glyphs of this composition.
1340 S->cmp_from == 0 means we are drawing the very first character of
1341 this composition. */
1343 /* Draw a rectangle for the composition if the font for the very
1344 first character of the composition could not be loaded. */
1345 if (s
->font_not_found_p
)
1347 if (s
->cmp_from
== 0)
1348 XDrawRectangle (s
->display
, s
->window
, s
->gc
, x
, s
->y
,
1349 s
->width
- 1, s
->height
- 1);
1351 else if (! s
->first_glyph
->u
.cmp
.automatic
)
1355 for (i
= 0, j
= s
->cmp_from
; i
< s
->nchars
; i
++, j
++)
1356 if (COMPOSITION_GLYPH (s
->cmp
, j
) != '\t')
1358 int xx
= x
+ s
->cmp
->offsets
[j
* 2];
1359 int yy
= y
- s
->cmp
->offsets
[j
* 2 + 1];
1361 font
->driver
->draw (s
, j
, j
+ 1, xx
, yy
, 0);
1362 if (s
->face
->overstrike
)
1363 font
->driver
->draw (s
, j
, j
+ 1, xx
+ 1, yy
, 0);
1368 Lisp_Object gstring
= composition_gstring_from_id (s
->cmp_id
);
1373 for (i
= j
= s
->cmp_from
; i
< s
->cmp_to
; i
++)
1375 glyph
= LGSTRING_GLYPH (gstring
, i
);
1376 if (NILP (LGLYPH_ADJUSTMENT (glyph
)))
1377 width
+= LGLYPH_WIDTH (glyph
);
1380 int xoff
, yoff
, wadjust
;
1384 font
->driver
->draw (s
, j
, i
, x
, y
, 0);
1387 xoff
= LGLYPH_XOFF (glyph
);
1388 yoff
= LGLYPH_YOFF (glyph
);
1389 wadjust
= LGLYPH_WADJUST (glyph
);
1390 font
->driver
->draw (s
, i
, i
+ 1, x
+ xoff
, y
+ yoff
, 0);
1397 font
->driver
->draw (s
, j
, i
, x
, y
, 0);
1402 #ifdef USE_X_TOOLKIT
1404 static struct frame
*x_frame_of_widget
P_ ((Widget
));
1405 static Boolean cvt_string_to_pixel
P_ ((Display
*, XrmValue
*, Cardinal
*,
1406 XrmValue
*, XrmValue
*, XtPointer
*));
1407 static void cvt_pixel_dtor
P_ ((XtAppContext
, XrmValue
*, XtPointer
,
1408 XrmValue
*, Cardinal
*));
1411 /* Return the frame on which widget WIDGET is used.. Abort if frame
1412 cannot be determined. */
1414 static struct frame
*
1415 x_frame_of_widget (widget
)
1418 struct x_display_info
*dpyinfo
;
1422 dpyinfo
= x_display_info_for_display (XtDisplay (widget
));
1424 /* Find the top-level shell of the widget. Note that this function
1425 can be called when the widget is not yet realized, so XtWindow
1426 (widget) == 0. That's the reason we can't simply use
1427 x_any_window_to_frame. */
1428 while (!XtIsTopLevelShell (widget
))
1429 widget
= XtParent (widget
);
1431 /* Look for a frame with that top-level widget. Allocate the color
1432 on that frame to get the right gamma correction value. */
1433 for (tail
= Vframe_list
; CONSP (tail
); tail
= XCDR (tail
))
1434 if (FRAMEP (XCAR (tail
))
1435 && (f
= XFRAME (XCAR (tail
)),
1437 && f
->output_data
.nothing
!= 1
1438 && FRAME_X_DISPLAY_INFO (f
) == dpyinfo
))
1439 && f
->output_data
.x
->widget
== widget
)
1446 /* Allocate the color COLOR->pixel on the screen and display of
1447 widget WIDGET in colormap CMAP. If an exact match cannot be
1448 allocated, try the nearest color available. Value is non-zero
1449 if successful. This is called from lwlib. */
1452 x_alloc_nearest_color_for_widget (widget
, cmap
, color
)
1457 struct frame
*f
= x_frame_of_widget (widget
);
1458 return x_alloc_nearest_color (f
, cmap
, color
);
1462 /* Allocate a color which is lighter or darker than *PIXEL by FACTOR
1463 or DELTA. Try a color with RGB values multiplied by FACTOR first.
1464 If this produces the same color as PIXEL, try a color where all RGB
1465 values have DELTA added. Return the allocated color in *PIXEL.
1466 DISPLAY is the X display, CMAP is the colormap to operate on.
1467 Value is non-zero if successful. */
1470 x_alloc_lighter_color_for_widget (widget
, display
, cmap
, pixel
, factor
, delta
)
1474 unsigned long *pixel
;
1478 struct frame
*f
= x_frame_of_widget (widget
);
1479 return x_alloc_lighter_color (f
, display
, cmap
, pixel
, factor
, delta
);
1483 /* Structure specifying which arguments should be passed by Xt to
1484 cvt_string_to_pixel. We want the widget's screen and colormap. */
1486 static XtConvertArgRec cvt_string_to_pixel_args
[] =
1488 {XtWidgetBaseOffset
, (XtPointer
) XtOffset (Widget
, core
.screen
),
1490 {XtWidgetBaseOffset
, (XtPointer
) XtOffset (Widget
, core
.colormap
),
1495 /* The address of this variable is returned by
1496 cvt_string_to_pixel. */
1498 static Pixel cvt_string_to_pixel_value
;
1501 /* Convert a color name to a pixel color.
1503 DPY is the display we are working on.
1505 ARGS is an array of *NARGS XrmValue structures holding additional
1506 information about the widget for which the conversion takes place.
1507 The contents of this array are determined by the specification
1508 in cvt_string_to_pixel_args.
1510 FROM is a pointer to an XrmValue which points to the color name to
1511 convert. TO is an XrmValue in which to return the pixel color.
1513 CLOSURE_RET is a pointer to user-data, in which we record if
1514 we allocated the color or not.
1516 Value is True if successful, False otherwise. */
1519 cvt_string_to_pixel (dpy
, args
, nargs
, from
, to
, closure_ret
)
1523 XrmValue
*from
, *to
;
1524 XtPointer
*closure_ret
;
1534 XtAppWarningMsg (XtDisplayToApplicationContext (dpy
),
1535 "wrongParameters", "cvt_string_to_pixel",
1537 "Screen and colormap args required", NULL
, NULL
);
1541 screen
= *(Screen
**) args
[0].addr
;
1542 cmap
= *(Colormap
*) args
[1].addr
;
1543 color_name
= (String
) from
->addr
;
1545 if (strcmp (color_name
, XtDefaultBackground
) == 0)
1547 *closure_ret
= (XtPointer
) False
;
1548 pixel
= WhitePixelOfScreen (screen
);
1550 else if (strcmp (color_name
, XtDefaultForeground
) == 0)
1552 *closure_ret
= (XtPointer
) False
;
1553 pixel
= BlackPixelOfScreen (screen
);
1555 else if (XParseColor (dpy
, cmap
, color_name
, &color
)
1556 && x_alloc_nearest_color_1 (dpy
, cmap
, &color
))
1558 pixel
= color
.pixel
;
1559 *closure_ret
= (XtPointer
) True
;
1564 Cardinal nparams
= 1;
1566 params
[0] = color_name
;
1567 XtAppWarningMsg (XtDisplayToApplicationContext (dpy
),
1568 "badValue", "cvt_string_to_pixel",
1569 "XtToolkitError", "Invalid color `%s'",
1574 if (to
->addr
!= NULL
)
1576 if (to
->size
< sizeof (Pixel
))
1578 to
->size
= sizeof (Pixel
);
1582 *(Pixel
*) to
->addr
= pixel
;
1586 cvt_string_to_pixel_value
= pixel
;
1587 to
->addr
= (XtPointer
) &cvt_string_to_pixel_value
;
1590 to
->size
= sizeof (Pixel
);
1595 /* Free a pixel color which was previously allocated via
1596 cvt_string_to_pixel. This is registered as the destructor
1597 for this type of resource via XtSetTypeConverter.
1599 APP is the application context in which we work.
1601 TO is a pointer to an XrmValue holding the color to free.
1602 CLOSURE is the value we stored in CLOSURE_RET for this color
1603 in cvt_string_to_pixel.
1605 ARGS and NARGS are like for cvt_string_to_pixel. */
1608 cvt_pixel_dtor (app
, to
, closure
, args
, nargs
)
1617 XtAppWarningMsg (app
, "wrongParameters", "cvt_pixel_dtor",
1619 "Screen and colormap arguments required",
1622 else if (closure
!= NULL
)
1624 /* We did allocate the pixel, so free it. */
1625 Screen
*screen
= *(Screen
**) args
[0].addr
;
1626 Colormap cmap
= *(Colormap
*) args
[1].addr
;
1627 x_free_dpy_colors (DisplayOfScreen (screen
), screen
, cmap
,
1628 (Pixel
*) to
->addr
, 1);
1633 #endif /* USE_X_TOOLKIT */
1636 /* Value is an array of XColor structures for the contents of the
1637 color map of display DPY. Set *NCELLS to the size of the array.
1638 Note that this probably shouldn't be called for large color maps,
1639 say a 24-bit TrueColor map. */
1641 static const XColor
*
1642 x_color_cells (dpy
, ncells
)
1646 struct x_display_info
*dpyinfo
= x_display_info_for_display (dpy
);
1648 if (dpyinfo
->color_cells
== NULL
)
1650 Screen
*screen
= dpyinfo
->screen
;
1653 dpyinfo
->ncolor_cells
1654 = XDisplayCells (dpy
, XScreenNumberOfScreen (screen
));
1655 dpyinfo
->color_cells
1656 = (XColor
*) xmalloc (dpyinfo
->ncolor_cells
1657 * sizeof *dpyinfo
->color_cells
);
1659 for (i
= 0; i
< dpyinfo
->ncolor_cells
; ++i
)
1660 dpyinfo
->color_cells
[i
].pixel
= i
;
1662 XQueryColors (dpy
, dpyinfo
->cmap
,
1663 dpyinfo
->color_cells
, dpyinfo
->ncolor_cells
);
1666 *ncells
= dpyinfo
->ncolor_cells
;
1667 return dpyinfo
->color_cells
;
1671 /* On frame F, translate pixel colors to RGB values for the NCOLORS
1672 colors in COLORS. Use cached information, if available. */
1675 x_query_colors (f
, colors
, ncolors
)
1680 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
1682 if (dpyinfo
->color_cells
)
1685 for (i
= 0; i
< ncolors
; ++i
)
1687 unsigned long pixel
= colors
[i
].pixel
;
1688 xassert (pixel
< dpyinfo
->ncolor_cells
);
1689 xassert (dpyinfo
->color_cells
[pixel
].pixel
== pixel
);
1690 colors
[i
] = dpyinfo
->color_cells
[pixel
];
1694 XQueryColors (FRAME_X_DISPLAY (f
), FRAME_X_COLORMAP (f
), colors
, ncolors
);
1698 /* On frame F, translate pixel color to RGB values for the color in
1699 COLOR. Use cached information, if available. */
1702 x_query_color (f
, color
)
1706 x_query_colors (f
, color
, 1);
1710 /* Allocate the color COLOR->pixel on DISPLAY, colormap CMAP. If an
1711 exact match can't be allocated, try the nearest color available.
1712 Value is non-zero if successful. Set *COLOR to the color
1716 x_alloc_nearest_color_1 (dpy
, cmap
, color
)
1723 rc
= XAllocColor (dpy
, cmap
, color
);
1726 /* If we got to this point, the colormap is full, so we're going
1727 to try to get the next closest color. The algorithm used is
1728 a least-squares matching, which is what X uses for closest
1729 color matching with StaticColor visuals. */
1731 unsigned long nearest_delta
= ~0;
1733 const XColor
*cells
= x_color_cells (dpy
, &ncells
);
1735 for (nearest
= i
= 0; i
< ncells
; ++i
)
1737 long dred
= (color
->red
>> 8) - (cells
[i
].red
>> 8);
1738 long dgreen
= (color
->green
>> 8) - (cells
[i
].green
>> 8);
1739 long dblue
= (color
->blue
>> 8) - (cells
[i
].blue
>> 8);
1740 unsigned long delta
= dred
* dred
+ dgreen
* dgreen
+ dblue
* dblue
;
1742 if (delta
< nearest_delta
)
1745 nearest_delta
= delta
;
1749 color
->red
= cells
[nearest
].red
;
1750 color
->green
= cells
[nearest
].green
;
1751 color
->blue
= cells
[nearest
].blue
;
1752 rc
= XAllocColor (dpy
, cmap
, color
);
1756 /* If allocation succeeded, and the allocated pixel color is not
1757 equal to a cached pixel color recorded earlier, there was a
1758 change in the colormap, so clear the color cache. */
1759 struct x_display_info
*dpyinfo
= x_display_info_for_display (dpy
);
1760 XColor
*cached_color
;
1762 if (dpyinfo
->color_cells
1763 && (cached_color
= &dpyinfo
->color_cells
[color
->pixel
],
1764 (cached_color
->red
!= color
->red
1765 || cached_color
->blue
!= color
->blue
1766 || cached_color
->green
!= color
->green
)))
1768 xfree (dpyinfo
->color_cells
);
1769 dpyinfo
->color_cells
= NULL
;
1770 dpyinfo
->ncolor_cells
= 0;
1774 #ifdef DEBUG_X_COLORS
1776 register_color (color
->pixel
);
1777 #endif /* DEBUG_X_COLORS */
1783 /* Allocate the color COLOR->pixel on frame F, colormap CMAP. If an
1784 exact match can't be allocated, try the nearest color available.
1785 Value is non-zero if successful. Set *COLOR to the color
1789 x_alloc_nearest_color (f
, cmap
, color
)
1794 gamma_correct (f
, color
);
1795 return x_alloc_nearest_color_1 (FRAME_X_DISPLAY (f
), cmap
, color
);
1799 /* Allocate color PIXEL on frame F. PIXEL must already be allocated.
1800 It's necessary to do this instead of just using PIXEL directly to
1801 get color reference counts right. */
1804 x_copy_color (f
, pixel
)
1806 unsigned long pixel
;
1810 color
.pixel
= pixel
;
1812 x_query_color (f
, &color
);
1813 XAllocColor (FRAME_X_DISPLAY (f
), FRAME_X_COLORMAP (f
), &color
);
1815 #ifdef DEBUG_X_COLORS
1816 register_color (pixel
);
1822 /* Allocate color PIXEL on display DPY. PIXEL must already be allocated.
1823 It's necessary to do this instead of just using PIXEL directly to
1824 get color reference counts right. */
1827 x_copy_dpy_color (dpy
, cmap
, pixel
)
1830 unsigned long pixel
;
1834 color
.pixel
= pixel
;
1836 XQueryColor (dpy
, cmap
, &color
);
1837 XAllocColor (dpy
, cmap
, &color
);
1839 #ifdef DEBUG_X_COLORS
1840 register_color (pixel
);
1846 /* Brightness beyond which a color won't have its highlight brightness
1849 Nominally, highlight colors for `3d' faces are calculated by
1850 brightening an object's color by a constant scale factor, but this
1851 doesn't yield good results for dark colors, so for colors who's
1852 brightness is less than this value (on a scale of 0-65535) have an
1853 use an additional additive factor.
1855 The value here is set so that the default menu-bar/mode-line color
1856 (grey75) will not have its highlights changed at all. */
1857 #define HIGHLIGHT_COLOR_DARK_BOOST_LIMIT 48000
1860 /* Allocate a color which is lighter or darker than *PIXEL by FACTOR
1861 or DELTA. Try a color with RGB values multiplied by FACTOR first.
1862 If this produces the same color as PIXEL, try a color where all RGB
1863 values have DELTA added. Return the allocated color in *PIXEL.
1864 DISPLAY is the X display, CMAP is the colormap to operate on.
1865 Value is non-zero if successful. */
1868 x_alloc_lighter_color (f
, display
, cmap
, pixel
, factor
, delta
)
1872 unsigned long *pixel
;
1880 /* Get RGB color values. */
1881 color
.pixel
= *pixel
;
1882 x_query_color (f
, &color
);
1884 /* Change RGB values by specified FACTOR. Avoid overflow! */
1885 xassert (factor
>= 0);
1886 new.red
= min (0xffff, factor
* color
.red
);
1887 new.green
= min (0xffff, factor
* color
.green
);
1888 new.blue
= min (0xffff, factor
* color
.blue
);
1890 /* Calculate brightness of COLOR. */
1891 bright
= (2 * color
.red
+ 3 * color
.green
+ color
.blue
) / 6;
1893 /* We only boost colors that are darker than
1894 HIGHLIGHT_COLOR_DARK_BOOST_LIMIT. */
1895 if (bright
< HIGHLIGHT_COLOR_DARK_BOOST_LIMIT
)
1896 /* Make an additive adjustment to NEW, because it's dark enough so
1897 that scaling by FACTOR alone isn't enough. */
1899 /* How far below the limit this color is (0 - 1, 1 being darker). */
1900 double dimness
= 1 - (double)bright
/ HIGHLIGHT_COLOR_DARK_BOOST_LIMIT
;
1901 /* The additive adjustment. */
1902 int min_delta
= delta
* dimness
* factor
/ 2;
1906 new.red
= max (0, new.red
- min_delta
);
1907 new.green
= max (0, new.green
- min_delta
);
1908 new.blue
= max (0, new.blue
- min_delta
);
1912 new.red
= min (0xffff, min_delta
+ new.red
);
1913 new.green
= min (0xffff, min_delta
+ new.green
);
1914 new.blue
= min (0xffff, min_delta
+ new.blue
);
1918 /* Try to allocate the color. */
1919 success_p
= x_alloc_nearest_color (f
, cmap
, &new);
1922 if (new.pixel
== *pixel
)
1924 /* If we end up with the same color as before, try adding
1925 delta to the RGB values. */
1926 x_free_colors (f
, &new.pixel
, 1);
1928 new.red
= min (0xffff, delta
+ color
.red
);
1929 new.green
= min (0xffff, delta
+ color
.green
);
1930 new.blue
= min (0xffff, delta
+ color
.blue
);
1931 success_p
= x_alloc_nearest_color (f
, cmap
, &new);
1942 /* Set up the foreground color for drawing relief lines of glyph
1943 string S. RELIEF is a pointer to a struct relief containing the GC
1944 with which lines will be drawn. Use a color that is FACTOR or
1945 DELTA lighter or darker than the relief's background which is found
1946 in S->f->output_data.x->relief_background. If such a color cannot
1947 be allocated, use DEFAULT_PIXEL, instead. */
1950 x_setup_relief_color (f
, relief
, factor
, delta
, default_pixel
)
1952 struct relief
*relief
;
1955 unsigned long default_pixel
;
1958 struct x_output
*di
= f
->output_data
.x
;
1959 unsigned long mask
= GCForeground
| GCLineWidth
| GCGraphicsExposures
;
1960 unsigned long pixel
;
1961 unsigned long background
= di
->relief_background
;
1962 Colormap cmap
= FRAME_X_COLORMAP (f
);
1963 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
1964 Display
*dpy
= FRAME_X_DISPLAY (f
);
1966 xgcv
.graphics_exposures
= False
;
1967 xgcv
.line_width
= 1;
1969 /* Free previously allocated color. The color cell will be reused
1970 when it has been freed as many times as it was allocated, so this
1971 doesn't affect faces using the same colors. */
1973 && relief
->allocated_p
)
1975 x_free_colors (f
, &relief
->pixel
, 1);
1976 relief
->allocated_p
= 0;
1979 /* Allocate new color. */
1980 xgcv
.foreground
= default_pixel
;
1982 if (dpyinfo
->n_planes
!= 1
1983 && x_alloc_lighter_color (f
, dpy
, cmap
, &pixel
, factor
, delta
))
1985 relief
->allocated_p
= 1;
1986 xgcv
.foreground
= relief
->pixel
= pixel
;
1989 if (relief
->gc
== 0)
1991 xgcv
.stipple
= dpyinfo
->gray
;
1993 relief
->gc
= XCreateGC (dpy
, FRAME_X_WINDOW (f
), mask
, &xgcv
);
1996 XChangeGC (dpy
, relief
->gc
, mask
, &xgcv
);
2000 /* Set up colors for the relief lines around glyph string S. */
2003 x_setup_relief_colors (s
)
2004 struct glyph_string
*s
;
2006 struct x_output
*di
= s
->f
->output_data
.x
;
2007 unsigned long color
;
2009 if (s
->face
->use_box_color_for_shadows_p
)
2010 color
= s
->face
->box_color
;
2011 else if (s
->first_glyph
->type
== IMAGE_GLYPH
2013 && !IMAGE_BACKGROUND_TRANSPARENT (s
->img
, s
->f
, 0))
2014 color
= IMAGE_BACKGROUND (s
->img
, s
->f
, 0);
2019 /* Get the background color of the face. */
2020 XGetGCValues (s
->display
, s
->gc
, GCBackground
, &xgcv
);
2021 color
= xgcv
.background
;
2024 if (di
->white_relief
.gc
== 0
2025 || color
!= di
->relief_background
)
2027 di
->relief_background
= color
;
2028 x_setup_relief_color (s
->f
, &di
->white_relief
, 1.2, 0x8000,
2029 WHITE_PIX_DEFAULT (s
->f
));
2030 x_setup_relief_color (s
->f
, &di
->black_relief
, 0.6, 0x4000,
2031 BLACK_PIX_DEFAULT (s
->f
));
2036 /* Draw a relief on frame F inside the rectangle given by LEFT_X,
2037 TOP_Y, RIGHT_X, and BOTTOM_Y. WIDTH is the thickness of the relief
2038 to draw, it must be >= 0. RAISED_P non-zero means draw a raised
2039 relief. LEFT_P non-zero means draw a relief on the left side of
2040 the rectangle. RIGHT_P non-zero means draw a relief on the right
2041 side of the rectangle. CLIP_RECT is the clipping rectangle to use
2045 x_draw_relief_rect (f
, left_x
, top_y
, right_x
, bottom_y
, width
,
2046 raised_p
, top_p
, bot_p
, left_p
, right_p
, clip_rect
)
2048 int left_x
, top_y
, right_x
, bottom_y
, width
;
2049 int top_p
, bot_p
, left_p
, right_p
, raised_p
;
2050 XRectangle
*clip_rect
;
2052 Display
*dpy
= FRAME_X_DISPLAY (f
);
2053 Window window
= FRAME_X_WINDOW (f
);
2058 gc
= f
->output_data
.x
->white_relief
.gc
;
2060 gc
= f
->output_data
.x
->black_relief
.gc
;
2061 XSetClipRectangles (dpy
, gc
, 0, 0, clip_rect
, 1, Unsorted
);
2065 for (i
= 0; i
< width
; ++i
)
2066 XDrawLine (dpy
, window
, gc
,
2067 left_x
+ i
* left_p
, top_y
+ i
,
2068 right_x
+ 1 - i
* right_p
, top_y
+ i
);
2072 for (i
= 0; i
< width
; ++i
)
2073 XDrawLine (dpy
, window
, gc
,
2074 left_x
+ i
, top_y
+ i
, left_x
+ i
, bottom_y
- i
+ 1);
2076 XSetClipMask (dpy
, gc
, None
);
2078 gc
= f
->output_data
.x
->black_relief
.gc
;
2080 gc
= f
->output_data
.x
->white_relief
.gc
;
2081 XSetClipRectangles (dpy
, gc
, 0, 0, clip_rect
, 1, Unsorted
);
2085 for (i
= 0; i
< width
; ++i
)
2086 XDrawLine (dpy
, window
, gc
,
2087 left_x
+ i
* left_p
, bottom_y
- i
,
2088 right_x
+ 1 - i
* right_p
, bottom_y
- i
);
2092 for (i
= 0; i
< width
; ++i
)
2093 XDrawLine (dpy
, window
, gc
,
2094 right_x
- i
, top_y
+ i
+ 1, right_x
- i
, bottom_y
- i
);
2096 XSetClipMask (dpy
, gc
, None
);
2100 /* Draw a box on frame F inside the rectangle given by LEFT_X, TOP_Y,
2101 RIGHT_X, and BOTTOM_Y. WIDTH is the thickness of the lines to
2102 draw, it must be >= 0. LEFT_P non-zero means draw a line on the
2103 left side of the rectangle. RIGHT_P non-zero means draw a line
2104 on the right side of the rectangle. CLIP_RECT is the clipping
2105 rectangle to use when drawing. */
2108 x_draw_box_rect (s
, left_x
, top_y
, right_x
, bottom_y
, width
,
2109 left_p
, right_p
, clip_rect
)
2110 struct glyph_string
*s
;
2111 int left_x
, top_y
, right_x
, bottom_y
, width
, left_p
, right_p
;
2112 XRectangle
*clip_rect
;
2116 XGetGCValues (s
->display
, s
->gc
, GCForeground
, &xgcv
);
2117 XSetForeground (s
->display
, s
->gc
, s
->face
->box_color
);
2118 XSetClipRectangles (s
->display
, s
->gc
, 0, 0, clip_rect
, 1, Unsorted
);
2121 XFillRectangle (s
->display
, s
->window
, s
->gc
,
2122 left_x
, top_y
, right_x
- left_x
+ 1, width
);
2126 XFillRectangle (s
->display
, s
->window
, s
->gc
,
2127 left_x
, top_y
, width
, bottom_y
- top_y
+ 1);
2130 XFillRectangle (s
->display
, s
->window
, s
->gc
,
2131 left_x
, bottom_y
- width
+ 1, right_x
- left_x
+ 1, width
);
2135 XFillRectangle (s
->display
, s
->window
, s
->gc
,
2136 right_x
- width
+ 1, top_y
, width
, bottom_y
- top_y
+ 1);
2138 XSetForeground (s
->display
, s
->gc
, xgcv
.foreground
);
2139 XSetClipMask (s
->display
, s
->gc
, None
);
2143 /* Draw a box around glyph string S. */
2146 x_draw_glyph_string_box (s
)
2147 struct glyph_string
*s
;
2149 int width
, left_x
, right_x
, top_y
, bottom_y
, last_x
, raised_p
;
2150 int left_p
, right_p
;
2151 struct glyph
*last_glyph
;
2152 XRectangle clip_rect
;
2154 last_x
= ((s
->row
->full_width_p
&& !s
->w
->pseudo_window_p
)
2155 ? WINDOW_RIGHT_EDGE_X (s
->w
)
2156 : window_box_right (s
->w
, s
->area
));
2158 /* The glyph that may have a right box line. */
2159 last_glyph
= (s
->cmp
|| s
->img
2161 : s
->first_glyph
+ s
->nchars
- 1);
2163 width
= eabs (s
->face
->box_line_width
);
2164 raised_p
= s
->face
->box
== FACE_RAISED_BOX
;
2166 right_x
= (s
->row
->full_width_p
&& s
->extends_to_end_of_line_p
2168 : min (last_x
, s
->x
+ s
->background_width
) - 1);
2170 bottom_y
= top_y
+ s
->height
- 1;
2172 left_p
= (s
->first_glyph
->left_box_line_p
2173 || (s
->hl
== DRAW_MOUSE_FACE
2175 || s
->prev
->hl
!= s
->hl
)));
2176 right_p
= (last_glyph
->right_box_line_p
2177 || (s
->hl
== DRAW_MOUSE_FACE
2179 || s
->next
->hl
!= s
->hl
)));
2181 get_glyph_string_clip_rect (s
, &clip_rect
);
2183 if (s
->face
->box
== FACE_SIMPLE_BOX
)
2184 x_draw_box_rect (s
, left_x
, top_y
, right_x
, bottom_y
, width
,
2185 left_p
, right_p
, &clip_rect
);
2188 x_setup_relief_colors (s
);
2189 x_draw_relief_rect (s
->f
, left_x
, top_y
, right_x
, bottom_y
,
2190 width
, raised_p
, 1, 1, left_p
, right_p
, &clip_rect
);
2195 /* Draw foreground of image glyph string S. */
2198 x_draw_image_foreground (s
)
2199 struct glyph_string
*s
;
2202 int y
= s
->ybase
- image_ascent (s
->img
, s
->face
, &s
->slice
);
2204 /* If first glyph of S has a left box line, start drawing it to the
2205 right of that line. */
2206 if (s
->face
->box
!= FACE_NO_BOX
2207 && s
->first_glyph
->left_box_line_p
2209 x
+= eabs (s
->face
->box_line_width
);
2211 /* If there is a margin around the image, adjust x- and y-position
2213 if (s
->slice
.x
== 0)
2214 x
+= s
->img
->hmargin
;
2215 if (s
->slice
.y
== 0)
2216 y
+= s
->img
->vmargin
;
2222 /* We can't set both a clip mask and use XSetClipRectangles
2223 because the latter also sets a clip mask. We also can't
2224 trust on the shape extension to be available
2225 (XShapeCombineRegion). So, compute the rectangle to draw
2227 unsigned long mask
= (GCClipMask
| GCClipXOrigin
| GCClipYOrigin
2230 XRectangle clip_rect
, image_rect
, r
;
2232 xgcv
.clip_mask
= s
->img
->mask
;
2233 xgcv
.clip_x_origin
= x
;
2234 xgcv
.clip_y_origin
= y
;
2235 xgcv
.function
= GXcopy
;
2236 XChangeGC (s
->display
, s
->gc
, mask
, &xgcv
);
2238 get_glyph_string_clip_rect (s
, &clip_rect
);
2241 image_rect
.width
= s
->slice
.width
;
2242 image_rect
.height
= s
->slice
.height
;
2243 if (x_intersect_rectangles (&clip_rect
, &image_rect
, &r
))
2244 XCopyArea (s
->display
, s
->img
->pixmap
, s
->window
, s
->gc
,
2245 s
->slice
.x
+ r
.x
- x
, s
->slice
.y
+ r
.y
- y
,
2246 r
.width
, r
.height
, r
.x
, r
.y
);
2250 XRectangle clip_rect
, image_rect
, r
;
2252 get_glyph_string_clip_rect (s
, &clip_rect
);
2255 image_rect
.width
= s
->slice
.width
;
2256 image_rect
.height
= s
->slice
.height
;
2257 if (x_intersect_rectangles (&clip_rect
, &image_rect
, &r
))
2258 XCopyArea (s
->display
, s
->img
->pixmap
, s
->window
, s
->gc
,
2259 s
->slice
.x
+ r
.x
- x
, s
->slice
.y
+ r
.y
- y
,
2260 r
.width
, r
.height
, r
.x
, r
.y
);
2262 /* When the image has a mask, we can expect that at
2263 least part of a mouse highlight or a block cursor will
2264 be visible. If the image doesn't have a mask, make
2265 a block cursor visible by drawing a rectangle around
2266 the image. I believe it's looking better if we do
2267 nothing here for mouse-face. */
2268 if (s
->hl
== DRAW_CURSOR
)
2270 int r
= s
->img
->relief
;
2272 XDrawRectangle (s
->display
, s
->window
, s
->gc
,
2274 s
->slice
.width
+ r
*2 - 1,
2275 s
->slice
.height
+ r
*2 - 1);
2280 /* Draw a rectangle if image could not be loaded. */
2281 XDrawRectangle (s
->display
, s
->window
, s
->gc
, x
, y
,
2282 s
->slice
.width
- 1, s
->slice
.height
- 1);
2286 /* Draw a relief around the image glyph string S. */
2289 x_draw_image_relief (s
)
2290 struct glyph_string
*s
;
2292 int x0
, y0
, x1
, y1
, thick
, raised_p
;
2295 int y
= s
->ybase
- image_ascent (s
->img
, s
->face
, &s
->slice
);
2297 /* If first glyph of S has a left box line, start drawing it to the
2298 right of that line. */
2299 if (s
->face
->box
!= FACE_NO_BOX
2300 && s
->first_glyph
->left_box_line_p
2302 x
+= eabs (s
->face
->box_line_width
);
2304 /* If there is a margin around the image, adjust x- and y-position
2306 if (s
->slice
.x
== 0)
2307 x
+= s
->img
->hmargin
;
2308 if (s
->slice
.y
== 0)
2309 y
+= s
->img
->vmargin
;
2311 if (s
->hl
== DRAW_IMAGE_SUNKEN
2312 || s
->hl
== DRAW_IMAGE_RAISED
)
2314 thick
= tool_bar_button_relief
>= 0 ? tool_bar_button_relief
: DEFAULT_TOOL_BAR_BUTTON_RELIEF
;
2315 raised_p
= s
->hl
== DRAW_IMAGE_RAISED
;
2319 thick
= eabs (s
->img
->relief
);
2320 raised_p
= s
->img
->relief
> 0;
2325 x1
= x
+ s
->slice
.width
+ thick
- 1;
2326 y1
= y
+ s
->slice
.height
+ thick
- 1;
2328 x_setup_relief_colors (s
);
2329 get_glyph_string_clip_rect (s
, &r
);
2330 x_draw_relief_rect (s
->f
, x0
, y0
, x1
, y1
, thick
, raised_p
,
2332 s
->slice
.y
+ s
->slice
.height
== s
->img
->height
,
2334 s
->slice
.x
+ s
->slice
.width
== s
->img
->width
,
2339 /* Draw the foreground of image glyph string S to PIXMAP. */
2342 x_draw_image_foreground_1 (s
, pixmap
)
2343 struct glyph_string
*s
;
2347 int y
= s
->ybase
- s
->y
- image_ascent (s
->img
, s
->face
, &s
->slice
);
2349 /* If first glyph of S has a left box line, start drawing it to the
2350 right of that line. */
2351 if (s
->face
->box
!= FACE_NO_BOX
2352 && s
->first_glyph
->left_box_line_p
2354 x
+= eabs (s
->face
->box_line_width
);
2356 /* If there is a margin around the image, adjust x- and y-position
2358 if (s
->slice
.x
== 0)
2359 x
+= s
->img
->hmargin
;
2360 if (s
->slice
.y
== 0)
2361 y
+= s
->img
->vmargin
;
2367 /* We can't set both a clip mask and use XSetClipRectangles
2368 because the latter also sets a clip mask. We also can't
2369 trust on the shape extension to be available
2370 (XShapeCombineRegion). So, compute the rectangle to draw
2372 unsigned long mask
= (GCClipMask
| GCClipXOrigin
| GCClipYOrigin
2376 xgcv
.clip_mask
= s
->img
->mask
;
2377 xgcv
.clip_x_origin
= x
- s
->slice
.x
;
2378 xgcv
.clip_y_origin
= y
- s
->slice
.y
;
2379 xgcv
.function
= GXcopy
;
2380 XChangeGC (s
->display
, s
->gc
, mask
, &xgcv
);
2382 XCopyArea (s
->display
, s
->img
->pixmap
, pixmap
, s
->gc
,
2383 s
->slice
.x
, s
->slice
.y
,
2384 s
->slice
.width
, s
->slice
.height
, x
, y
);
2385 XSetClipMask (s
->display
, s
->gc
, None
);
2389 XCopyArea (s
->display
, s
->img
->pixmap
, pixmap
, s
->gc
,
2390 s
->slice
.x
, s
->slice
.y
,
2391 s
->slice
.width
, s
->slice
.height
, x
, y
);
2393 /* When the image has a mask, we can expect that at
2394 least part of a mouse highlight or a block cursor will
2395 be visible. If the image doesn't have a mask, make
2396 a block cursor visible by drawing a rectangle around
2397 the image. I believe it's looking better if we do
2398 nothing here for mouse-face. */
2399 if (s
->hl
== DRAW_CURSOR
)
2401 int r
= s
->img
->relief
;
2403 XDrawRectangle (s
->display
, s
->window
, s
->gc
, x
- r
, y
- r
,
2404 s
->slice
.width
+ r
*2 - 1,
2405 s
->slice
.height
+ r
*2 - 1);
2410 /* Draw a rectangle if image could not be loaded. */
2411 XDrawRectangle (s
->display
, pixmap
, s
->gc
, x
, y
,
2412 s
->slice
.width
- 1, s
->slice
.height
- 1);
2416 /* Draw part of the background of glyph string S. X, Y, W, and H
2417 give the rectangle to draw. */
2420 x_draw_glyph_string_bg_rect (s
, x
, y
, w
, h
)
2421 struct glyph_string
*s
;
2426 /* Fill background with a stipple pattern. */
2427 XSetFillStyle (s
->display
, s
->gc
, FillOpaqueStippled
);
2428 XFillRectangle (s
->display
, s
->window
, s
->gc
, x
, y
, w
, h
);
2429 XSetFillStyle (s
->display
, s
->gc
, FillSolid
);
2432 x_clear_glyph_string_rect (s
, x
, y
, w
, h
);
2436 /* Draw image glyph string S.
2439 s->x +-------------------------
2442 | +-------------------------
2445 | | +-------------------
2451 x_draw_image_glyph_string (s
)
2452 struct glyph_string
*s
;
2454 int box_line_hwidth
= eabs (s
->face
->box_line_width
);
2455 int box_line_vwidth
= max (s
->face
->box_line_width
, 0);
2457 Pixmap pixmap
= None
;
2460 if (s
->slice
.y
== 0)
2461 height
-= box_line_vwidth
;
2462 if (s
->slice
.y
+ s
->slice
.height
>= s
->img
->height
)
2463 height
-= box_line_vwidth
;
2465 /* Fill background with face under the image. Do it only if row is
2466 taller than image or if image has a clip mask to reduce
2468 s
->stippled_p
= s
->face
->stipple
!= 0;
2469 if (height
> s
->slice
.height
2473 || s
->img
->pixmap
== 0
2474 || s
->width
!= s
->background_width
)
2478 /* Create a pixmap as large as the glyph string. Fill it
2479 with the background color. Copy the image to it, using
2480 its mask. Copy the temporary pixmap to the display. */
2481 Screen
*screen
= FRAME_X_SCREEN (s
->f
);
2482 int depth
= DefaultDepthOfScreen (screen
);
2484 /* Create a pixmap as large as the glyph string. */
2485 pixmap
= XCreatePixmap (s
->display
, s
->window
,
2486 s
->background_width
,
2489 /* Don't clip in the following because we're working on the
2491 XSetClipMask (s
->display
, s
->gc
, None
);
2493 /* Fill the pixmap with the background color/stipple. */
2496 /* Fill background with a stipple pattern. */
2497 XSetFillStyle (s
->display
, s
->gc
, FillOpaqueStippled
);
2498 XSetTSOrigin (s
->display
, s
->gc
, - s
->x
, - s
->y
);
2499 XFillRectangle (s
->display
, pixmap
, s
->gc
,
2500 0, 0, s
->background_width
, s
->height
);
2501 XSetFillStyle (s
->display
, s
->gc
, FillSolid
);
2502 XSetTSOrigin (s
->display
, s
->gc
, 0, 0);
2507 XGetGCValues (s
->display
, s
->gc
, GCForeground
| GCBackground
,
2509 XSetForeground (s
->display
, s
->gc
, xgcv
.background
);
2510 XFillRectangle (s
->display
, pixmap
, s
->gc
,
2511 0, 0, s
->background_width
, s
->height
);
2512 XSetForeground (s
->display
, s
->gc
, xgcv
.foreground
);
2520 if (s
->first_glyph
->left_box_line_p
2522 x
+= box_line_hwidth
;
2524 if (s
->slice
.y
== 0)
2525 y
+= box_line_vwidth
;
2527 x_draw_glyph_string_bg_rect (s
, x
, y
, s
->background_width
, height
);
2530 s
->background_filled_p
= 1;
2533 /* Draw the foreground. */
2536 x_draw_image_foreground_1 (s
, pixmap
);
2537 x_set_glyph_string_clipping (s
);
2538 XCopyArea (s
->display
, pixmap
, s
->window
, s
->gc
,
2539 0, 0, s
->background_width
, s
->height
, s
->x
, s
->y
);
2540 XFreePixmap (s
->display
, pixmap
);
2543 x_draw_image_foreground (s
);
2545 /* If we must draw a relief around the image, do it. */
2547 || s
->hl
== DRAW_IMAGE_RAISED
2548 || s
->hl
== DRAW_IMAGE_SUNKEN
)
2549 x_draw_image_relief (s
);
2553 /* Draw stretch glyph string S. */
2556 x_draw_stretch_glyph_string (s
)
2557 struct glyph_string
*s
;
2559 xassert (s
->first_glyph
->type
== STRETCH_GLYPH
);
2561 if (s
->hl
== DRAW_CURSOR
2562 && !x_stretch_cursor_p
)
2564 /* If `x-stretch-block-cursor' is nil, don't draw a block cursor
2565 as wide as the stretch glyph. */
2566 int width
, background_width
= s
->background_width
;
2567 int x
= s
->x
, left_x
= window_box_left_offset (s
->w
, TEXT_AREA
);
2571 background_width
-= left_x
- x
;
2574 width
= min (FRAME_COLUMN_WIDTH (s
->f
), background_width
);
2577 x_draw_glyph_string_bg_rect (s
, x
, s
->y
, width
, s
->height
);
2579 /* Clear rest using the GC of the original non-cursor face. */
2580 if (width
< background_width
)
2583 int w
= background_width
- width
, h
= s
->height
;
2588 if (s
->row
->mouse_face_p
2589 && cursor_in_mouse_face_p (s
->w
))
2591 x_set_mouse_face_gc (s
);
2597 get_glyph_string_clip_rect (s
, &r
);
2598 XSetClipRectangles (s
->display
, gc
, 0, 0, &r
, 1, Unsorted
);
2600 if (s
->face
->stipple
)
2602 /* Fill background with a stipple pattern. */
2603 XSetFillStyle (s
->display
, gc
, FillOpaqueStippled
);
2604 XFillRectangle (s
->display
, s
->window
, gc
, x
, y
, w
, h
);
2605 XSetFillStyle (s
->display
, gc
, FillSolid
);
2610 XGetGCValues (s
->display
, gc
, GCForeground
| GCBackground
, &xgcv
);
2611 XSetForeground (s
->display
, gc
, xgcv
.background
);
2612 XFillRectangle (s
->display
, s
->window
, gc
, x
, y
, w
, h
);
2613 XSetForeground (s
->display
, gc
, xgcv
.foreground
);
2617 else if (!s
->background_filled_p
)
2619 int background_width
= s
->background_width
;
2620 int x
= s
->x
, left_x
= window_box_left_offset (s
->w
, TEXT_AREA
);
2622 /* Don't draw into left margin, fringe or scrollbar area
2623 except for header line and mode line. */
2624 if (x
< left_x
&& !s
->row
->mode_line_p
)
2626 background_width
-= left_x
- x
;
2629 if (background_width
> 0)
2630 x_draw_glyph_string_bg_rect (s
, x
, s
->y
, background_width
, s
->height
);
2633 s
->background_filled_p
= 1;
2637 /* Draw glyph string S. */
2640 x_draw_glyph_string (s
)
2641 struct glyph_string
*s
;
2643 int relief_drawn_p
= 0;
2645 /* If S draws into the background of its successors, draw the
2646 background of the successors first so that S can draw into it.
2647 This makes S->next use XDrawString instead of XDrawImageString. */
2648 if (s
->next
&& s
->right_overhang
&& !s
->for_overlaps
)
2651 struct glyph_string
*next
;
2653 for (width
= 0, next
= s
->next
;
2654 next
&& width
< s
->right_overhang
;
2655 width
+= next
->width
, next
= next
->next
)
2656 if (next
->first_glyph
->type
!= IMAGE_GLYPH
)
2658 x_set_glyph_string_gc (next
);
2659 x_set_glyph_string_clipping (next
);
2660 if (next
->first_glyph
->type
== STRETCH_GLYPH
)
2661 x_draw_stretch_glyph_string (next
);
2663 x_draw_glyph_string_background (next
, 1);
2664 next
->num_clips
= 0;
2668 /* Set up S->gc, set clipping and draw S. */
2669 x_set_glyph_string_gc (s
);
2671 /* Draw relief (if any) in advance for char/composition so that the
2672 glyph string can be drawn over it. */
2673 if (!s
->for_overlaps
2674 && s
->face
->box
!= FACE_NO_BOX
2675 && (s
->first_glyph
->type
== CHAR_GLYPH
2676 || s
->first_glyph
->type
== COMPOSITE_GLYPH
))
2679 x_set_glyph_string_clipping (s
);
2680 x_draw_glyph_string_background (s
, 1);
2681 x_draw_glyph_string_box (s
);
2682 x_set_glyph_string_clipping (s
);
2685 else if (!s
->clip_head
/* draw_glyphs didn't specify a clip mask. */
2687 && ((s
->prev
&& s
->prev
->hl
!= s
->hl
&& s
->left_overhang
)
2688 || (s
->next
&& s
->next
->hl
!= s
->hl
&& s
->right_overhang
)))
2689 /* We must clip just this glyph. left_overhang part has already
2690 drawn when s->prev was drawn, and right_overhang part will be
2691 drawn later when s->next is drawn. */
2692 x_set_glyph_string_clipping_exactly (s
, s
);
2694 x_set_glyph_string_clipping (s
);
2696 switch (s
->first_glyph
->type
)
2699 x_draw_image_glyph_string (s
);
2703 x_draw_stretch_glyph_string (s
);
2707 if (s
->for_overlaps
)
2708 s
->background_filled_p
= 1;
2710 x_draw_glyph_string_background (s
, 0);
2711 x_draw_glyph_string_foreground (s
);
2714 case COMPOSITE_GLYPH
:
2715 if (s
->for_overlaps
|| (s
->cmp_from
> 0
2716 && ! s
->first_glyph
->u
.cmp
.automatic
))
2717 s
->background_filled_p
= 1;
2719 x_draw_glyph_string_background (s
, 1);
2720 x_draw_composite_glyph_string_foreground (s
);
2727 if (!s
->for_overlaps
)
2729 /* Draw underline. */
2730 if (s
->face
->underline_p
)
2732 unsigned long thickness
, position
;
2735 if (s
->prev
&& s
->prev
->face
->underline_p
)
2737 /* We use the same underline style as the previous one. */
2738 thickness
= s
->prev
->underline_thickness
;
2739 position
= s
->prev
->underline_position
;
2743 /* Get the underline thickness. Default is 1 pixel. */
2744 if (s
->font
&& s
->font
->underline_thickness
> 0)
2745 thickness
= s
->font
->underline_thickness
;
2748 if (x_underline_at_descent_line
)
2749 position
= (s
->height
- thickness
) - (s
->ybase
- s
->y
);
2752 /* Get the underline position. This is the recommended
2753 vertical offset in pixels from the baseline to the top of
2754 the underline. This is a signed value according to the
2755 specs, and its default is
2757 ROUND ((maximum descent) / 2), with
2758 ROUND(x) = floor (x + 0.5) */
2760 if (x_use_underline_position_properties
2761 && s
->font
&& s
->font
->underline_position
>= 0)
2762 position
= s
->font
->underline_position
;
2764 position
= (s
->font
->descent
+ 1) / 2;
2766 position
= underline_minimum_offset
;
2768 position
= max (position
, underline_minimum_offset
);
2770 /* Check the sanity of thickness and position. We should
2771 avoid drawing underline out of the current line area. */
2772 if (s
->y
+ s
->height
<= s
->ybase
+ position
)
2773 position
= (s
->height
- 1) - (s
->ybase
- s
->y
);
2774 if (s
->y
+ s
->height
< s
->ybase
+ position
+ thickness
)
2775 thickness
= (s
->y
+ s
->height
) - (s
->ybase
+ position
);
2776 s
->underline_thickness
= thickness
;
2777 s
->underline_position
= position
;
2778 y
= s
->ybase
+ position
;
2779 if (s
->face
->underline_defaulted_p
)
2780 XFillRectangle (s
->display
, s
->window
, s
->gc
,
2781 s
->x
, y
, s
->width
, thickness
);
2785 XGetGCValues (s
->display
, s
->gc
, GCForeground
, &xgcv
);
2786 XSetForeground (s
->display
, s
->gc
, s
->face
->underline_color
);
2787 XFillRectangle (s
->display
, s
->window
, s
->gc
,
2788 s
->x
, y
, s
->width
, thickness
);
2789 XSetForeground (s
->display
, s
->gc
, xgcv
.foreground
);
2793 /* Draw overline. */
2794 if (s
->face
->overline_p
)
2796 unsigned long dy
= 0, h
= 1;
2798 if (s
->face
->overline_color_defaulted_p
)
2799 XFillRectangle (s
->display
, s
->window
, s
->gc
, s
->x
, s
->y
+ dy
,
2804 XGetGCValues (s
->display
, s
->gc
, GCForeground
, &xgcv
);
2805 XSetForeground (s
->display
, s
->gc
, s
->face
->overline_color
);
2806 XFillRectangle (s
->display
, s
->window
, s
->gc
, s
->x
, s
->y
+ dy
,
2808 XSetForeground (s
->display
, s
->gc
, xgcv
.foreground
);
2812 /* Draw strike-through. */
2813 if (s
->face
->strike_through_p
)
2815 unsigned long h
= 1;
2816 unsigned long dy
= (s
->height
- h
) / 2;
2818 if (s
->face
->strike_through_color_defaulted_p
)
2819 XFillRectangle (s
->display
, s
->window
, s
->gc
, s
->x
, s
->y
+ dy
,
2824 XGetGCValues (s
->display
, s
->gc
, GCForeground
, &xgcv
);
2825 XSetForeground (s
->display
, s
->gc
, s
->face
->strike_through_color
);
2826 XFillRectangle (s
->display
, s
->window
, s
->gc
, s
->x
, s
->y
+ dy
,
2828 XSetForeground (s
->display
, s
->gc
, xgcv
.foreground
);
2832 /* Draw relief if not yet drawn. */
2833 if (!relief_drawn_p
&& s
->face
->box
!= FACE_NO_BOX
)
2834 x_draw_glyph_string_box (s
);
2838 struct glyph_string
*prev
;
2840 for (prev
= s
->prev
; prev
; prev
= prev
->prev
)
2841 if (prev
->hl
!= s
->hl
2842 && prev
->x
+ prev
->width
+ prev
->right_overhang
> s
->x
)
2844 /* As prev was drawn while clipped to its own area, we
2845 must draw the right_overhang part using s->hl now. */
2846 enum draw_glyphs_face save
= prev
->hl
;
2849 x_set_glyph_string_gc (prev
);
2850 x_set_glyph_string_clipping_exactly (s
, prev
);
2851 if (prev
->first_glyph
->type
== CHAR_GLYPH
)
2852 x_draw_glyph_string_foreground (prev
);
2854 x_draw_composite_glyph_string_foreground (prev
);
2855 XSetClipMask (prev
->display
, prev
->gc
, None
);
2857 prev
->num_clips
= 0;
2863 struct glyph_string
*next
;
2865 for (next
= s
->next
; next
; next
= next
->next
)
2866 if (next
->hl
!= s
->hl
2867 && next
->x
- next
->left_overhang
< s
->x
+ s
->width
)
2869 /* As next will be drawn while clipped to its own area,
2870 we must draw the left_overhang part using s->hl now. */
2871 enum draw_glyphs_face save
= next
->hl
;
2874 x_set_glyph_string_gc (next
);
2875 x_set_glyph_string_clipping_exactly (s
, next
);
2876 if (next
->first_glyph
->type
== CHAR_GLYPH
)
2877 x_draw_glyph_string_foreground (next
);
2879 x_draw_composite_glyph_string_foreground (next
);
2880 XSetClipMask (next
->display
, next
->gc
, None
);
2882 next
->num_clips
= 0;
2887 /* Reset clipping. */
2888 XSetClipMask (s
->display
, s
->gc
, None
);
2892 /* Shift display to make room for inserted glyphs. */
2895 x_shift_glyphs_for_insert (f
, x
, y
, width
, height
, shift_by
)
2897 int x
, y
, width
, height
, shift_by
;
2899 XCopyArea (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), FRAME_X_WINDOW (f
),
2900 f
->output_data
.x
->normal_gc
,
2901 x
, y
, width
, height
,
2905 /* Delete N glyphs at the nominal cursor position. Not implemented
2909 x_delete_glyphs (f
, n
)
2917 /* Like XClearArea, but check that WIDTH and HEIGHT are reasonable.
2918 If they are <= 0, this is probably an error. */
2921 x_clear_area (dpy
, window
, x
, y
, width
, height
, exposures
)
2928 xassert (width
> 0 && height
> 0);
2929 XClearArea (dpy
, window
, x
, y
, width
, height
, exposures
);
2933 /* Clear an entire frame. */
2936 x_clear_frame (struct frame
*f
)
2938 /* Clearing the frame will erase any cursor, so mark them all as no
2940 mark_window_cursors_off (XWINDOW (FRAME_ROOT_WINDOW (f
)));
2941 output_cursor
.hpos
= output_cursor
.vpos
= 0;
2942 output_cursor
.x
= -1;
2944 /* We don't set the output cursor here because there will always
2945 follow an explicit cursor_to. */
2947 XClearWindow (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
));
2949 /* We have to clear the scroll bars, too. If we have changed
2950 colors or something like that, then they should be notified. */
2951 x_scroll_bar_clear (f
);
2953 XFlush (FRAME_X_DISPLAY (f
));
2960 /* Invert the middle quarter of the frame for .15 sec. */
2962 /* We use the select system call to do the waiting, so we have to make
2963 sure it's available. If it isn't, we just won't do visual bells. */
2965 #if defined (HAVE_TIMEVAL) && defined (HAVE_SELECT)
2968 /* Subtract the `struct timeval' values X and Y, storing the result in
2969 *RESULT. Return 1 if the difference is negative, otherwise 0. */
2972 timeval_subtract (result
, x
, y
)
2973 struct timeval
*result
, x
, y
;
2975 /* Perform the carry for the later subtraction by updating y. This
2976 is safer because on some systems the tv_sec member is unsigned. */
2977 if (x
.tv_usec
< y
.tv_usec
)
2979 int nsec
= (y
.tv_usec
- x
.tv_usec
) / 1000000 + 1;
2980 y
.tv_usec
-= 1000000 * nsec
;
2984 if (x
.tv_usec
- y
.tv_usec
> 1000000)
2986 int nsec
= (y
.tv_usec
- x
.tv_usec
) / 1000000;
2987 y
.tv_usec
+= 1000000 * nsec
;
2991 /* Compute the time remaining to wait. tv_usec is certainly
2993 result
->tv_sec
= x
.tv_sec
- y
.tv_sec
;
2994 result
->tv_usec
= x
.tv_usec
- y
.tv_usec
;
2996 /* Return indication of whether the result should be considered
2998 return x
.tv_sec
< y
.tv_sec
;
3010 /* Create a GC that will use the GXxor function to flip foreground
3011 pixels into background pixels. */
3015 values
.function
= GXxor
;
3016 values
.foreground
= (FRAME_FOREGROUND_PIXEL (f
)
3017 ^ FRAME_BACKGROUND_PIXEL (f
));
3019 gc
= XCreateGC (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
3020 GCFunction
| GCForeground
, &values
);
3024 /* Get the height not including a menu bar widget. */
3025 int height
= FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f
, FRAME_LINES (f
));
3026 /* Height of each line to flash. */
3027 int flash_height
= FRAME_LINE_HEIGHT (f
);
3028 /* These will be the left and right margins of the rectangles. */
3029 int flash_left
= FRAME_INTERNAL_BORDER_WIDTH (f
);
3030 int flash_right
= FRAME_PIXEL_WIDTH (f
) - FRAME_INTERNAL_BORDER_WIDTH (f
);
3034 /* Don't flash the area between a scroll bar and the frame
3035 edge it is next to. */
3036 switch (FRAME_VERTICAL_SCROLL_BAR_TYPE (f
))
3038 case vertical_scroll_bar_left
:
3039 flash_left
+= VERTICAL_SCROLL_BAR_WIDTH_TRIM
;
3042 case vertical_scroll_bar_right
:
3043 flash_right
-= VERTICAL_SCROLL_BAR_WIDTH_TRIM
;
3050 width
= flash_right
- flash_left
;
3052 /* If window is tall, flash top and bottom line. */
3053 if (height
> 3 * FRAME_LINE_HEIGHT (f
))
3055 XFillRectangle (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), gc
,
3057 (FRAME_INTERNAL_BORDER_WIDTH (f
)
3058 + FRAME_TOOL_BAR_LINES (f
) * FRAME_LINE_HEIGHT (f
)),
3059 width
, flash_height
);
3060 XFillRectangle (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), gc
,
3062 (height
- flash_height
3063 - FRAME_INTERNAL_BORDER_WIDTH (f
)),
3064 width
, flash_height
);
3067 /* If it is short, flash it all. */
3068 XFillRectangle (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), gc
,
3069 flash_left
, FRAME_INTERNAL_BORDER_WIDTH (f
),
3070 width
, height
- 2 * FRAME_INTERNAL_BORDER_WIDTH (f
));
3075 struct timeval wakeup
;
3077 EMACS_GET_TIME (wakeup
);
3079 /* Compute time to wait until, propagating carry from usecs. */
3080 wakeup
.tv_usec
+= 150000;
3081 wakeup
.tv_sec
+= (wakeup
.tv_usec
/ 1000000);
3082 wakeup
.tv_usec
%= 1000000;
3084 /* Keep waiting until past the time wakeup or any input gets
3086 while (! detect_input_pending ())
3088 struct timeval current
;
3089 struct timeval timeout
;
3091 EMACS_GET_TIME (current
);
3093 /* Break if result would be negative. */
3094 if (timeval_subtract (¤t
, wakeup
, current
))
3097 /* How long `select' should wait. */
3099 timeout
.tv_usec
= 10000;
3101 /* Try to wait that long--but we might wake up sooner. */
3102 select (0, NULL
, NULL
, NULL
, &timeout
);
3106 /* If window is tall, flash top and bottom line. */
3107 if (height
> 3 * FRAME_LINE_HEIGHT (f
))
3109 XFillRectangle (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), gc
,
3111 (FRAME_INTERNAL_BORDER_WIDTH (f
)
3112 + FRAME_TOOL_BAR_LINES (f
) * FRAME_LINE_HEIGHT (f
)),
3113 width
, flash_height
);
3114 XFillRectangle (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), gc
,
3116 (height
- flash_height
3117 - FRAME_INTERNAL_BORDER_WIDTH (f
)),
3118 width
, flash_height
);
3121 /* If it is short, flash it all. */
3122 XFillRectangle (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), gc
,
3123 flash_left
, FRAME_INTERNAL_BORDER_WIDTH (f
),
3124 width
, height
- 2 * FRAME_INTERNAL_BORDER_WIDTH (f
));
3126 XFreeGC (FRAME_X_DISPLAY (f
), gc
);
3134 #endif /* defined (HAVE_TIMEVAL) && defined (HAVE_SELECT) */
3138 XTtoggle_invisible_pointer (f
, invisible
)
3145 if (FRAME_X_DISPLAY_INFO (f
)->invisible_cursor
!= 0)
3146 XDefineCursor (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
3147 FRAME_X_DISPLAY_INFO (f
)->invisible_cursor
);
3150 XDefineCursor (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
3151 f
->output_data
.x
->current_cursor
);
3152 f
->pointer_invisible
= invisible
;
3157 /* Make audible bell. */
3162 struct frame
*f
= SELECTED_FRAME ();
3164 if (FRAME_X_DISPLAY (f
))
3166 #if defined (HAVE_TIMEVAL) && defined (HAVE_SELECT)
3173 XBell (FRAME_X_DISPLAY (f
), 0);
3174 XFlush (FRAME_X_DISPLAY (f
));
3181 /* Specify how many text lines, from the top of the window,
3182 should be affected by insert-lines and delete-lines operations.
3183 This, and those operations, are used only within an update
3184 that is bounded by calls to x_update_begin and x_update_end. */
3187 XTset_terminal_window (n
)
3190 /* This function intentionally left blank. */
3195 /***********************************************************************
3197 ***********************************************************************/
3199 /* Perform an insert-lines or delete-lines operation, inserting N
3200 lines or deleting -N lines at vertical position VPOS. */
3203 x_ins_del_lines (f
, vpos
, n
)
3211 /* Scroll part of the display as described by RUN. */
3214 x_scroll_run (w
, run
)
3218 struct frame
*f
= XFRAME (w
->frame
);
3219 int x
, y
, width
, height
, from_y
, to_y
, bottom_y
;
3221 /* Get frame-relative bounding box of the text display area of W,
3222 without mode lines. Include in this box the left and right
3224 window_box (w
, -1, &x
, &y
, &width
, &height
);
3226 from_y
= WINDOW_TO_FRAME_PIXEL_Y (w
, run
->current_y
);
3227 to_y
= WINDOW_TO_FRAME_PIXEL_Y (w
, run
->desired_y
);
3228 bottom_y
= y
+ height
;
3232 /* Scrolling up. Make sure we don't copy part of the mode
3233 line at the bottom. */
3234 if (from_y
+ run
->height
> bottom_y
)
3235 height
= bottom_y
- from_y
;
3237 height
= run
->height
;
3241 /* Scolling down. Make sure we don't copy over the mode line.
3243 if (to_y
+ run
->height
> bottom_y
)
3244 height
= bottom_y
- to_y
;
3246 height
= run
->height
;
3251 /* Cursor off. Will be switched on again in x_update_window_end. */
3255 XCopyArea (FRAME_X_DISPLAY (f
),
3256 FRAME_X_WINDOW (f
), FRAME_X_WINDOW (f
),
3257 f
->output_data
.x
->normal_gc
,
3267 /***********************************************************************
3269 ***********************************************************************/
3276 /* We used to only do this if Vx_no_window_manager was non-nil, but
3277 the ICCCM (section 4.1.6) says that the window's border pixmap
3278 and border pixel are window attributes which are "private to the
3279 client", so we can always change it to whatever we want. */
3281 XSetWindowBorder (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
3282 f
->output_data
.x
->border_pixel
);
3284 x_update_cursor (f
, 1);
3285 x_set_frame_alpha (f
);
3289 frame_unhighlight (f
)
3292 /* We used to only do this if Vx_no_window_manager was non-nil, but
3293 the ICCCM (section 4.1.6) says that the window's border pixmap
3294 and border pixel are window attributes which are "private to the
3295 client", so we can always change it to whatever we want. */
3297 XSetWindowBorderPixmap (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
3298 f
->output_data
.x
->border_tile
);
3300 x_update_cursor (f
, 1);
3301 x_set_frame_alpha (f
);
3304 /* The focus has changed. Update the frames as necessary to reflect
3305 the new situation. Note that we can't change the selected frame
3306 here, because the Lisp code we are interrupting might become confused.
3307 Each event gets marked with the frame in which it occurred, so the
3308 Lisp code can tell when the switch took place by examining the events. */
3311 x_new_focus_frame (dpyinfo
, frame
)
3312 struct x_display_info
*dpyinfo
;
3313 struct frame
*frame
;
3315 struct frame
*old_focus
= dpyinfo
->x_focus_frame
;
3317 if (frame
!= dpyinfo
->x_focus_frame
)
3319 /* Set this before calling other routines, so that they see
3320 the correct value of x_focus_frame. */
3321 dpyinfo
->x_focus_frame
= frame
;
3323 if (old_focus
&& old_focus
->auto_lower
)
3324 x_lower_frame (old_focus
);
3326 if (dpyinfo
->x_focus_frame
&& dpyinfo
->x_focus_frame
->auto_raise
)
3327 pending_autoraise_frame
= dpyinfo
->x_focus_frame
;
3329 pending_autoraise_frame
= 0;
3332 x_frame_rehighlight (dpyinfo
);
3335 /* Handle FocusIn and FocusOut state changes for FRAME.
3336 If FRAME has focus and there exists more than one frame, puts
3337 a FOCUS_IN_EVENT into *BUFP. */
3340 x_focus_changed (type
, state
, dpyinfo
, frame
, bufp
)
3343 struct x_display_info
*dpyinfo
;
3344 struct frame
*frame
;
3345 struct input_event
*bufp
;
3347 if (type
== FocusIn
)
3349 if (dpyinfo
->x_focus_event_frame
!= frame
)
3351 x_new_focus_frame (dpyinfo
, frame
);
3352 dpyinfo
->x_focus_event_frame
= frame
;
3354 /* Don't stop displaying the initial startup message
3355 for a switch-frame event we don't need. */
3356 if (NILP (Vterminal_frame
)
3357 && CONSP (Vframe_list
)
3358 && !NILP (XCDR (Vframe_list
)))
3360 bufp
->kind
= FOCUS_IN_EVENT
;
3361 XSETFRAME (bufp
->frame_or_window
, frame
);
3365 frame
->output_data
.x
->focus_state
|= state
;
3368 if (FRAME_XIC (frame
))
3369 XSetICFocus (FRAME_XIC (frame
));
3372 else if (type
== FocusOut
)
3374 frame
->output_data
.x
->focus_state
&= ~state
;
3376 if (dpyinfo
->x_focus_event_frame
== frame
)
3378 dpyinfo
->x_focus_event_frame
= 0;
3379 x_new_focus_frame (dpyinfo
, 0);
3383 if (FRAME_XIC (frame
))
3384 XUnsetICFocus (FRAME_XIC (frame
));
3386 if (frame
->pointer_invisible
)
3387 XTtoggle_invisible_pointer (frame
, 0);
3391 /* The focus may have changed. Figure out if it is a real focus change,
3392 by checking both FocusIn/Out and Enter/LeaveNotify events.
3394 Returns FOCUS_IN_EVENT event in *BUFP. */
3397 x_detect_focus_change (dpyinfo
, event
, bufp
)
3398 struct x_display_info
*dpyinfo
;
3400 struct input_event
*bufp
;
3402 struct frame
*frame
;
3404 frame
= x_any_window_to_frame (dpyinfo
, event
->xany
.window
);
3408 switch (event
->type
)
3413 struct frame
*focus_frame
= dpyinfo
->x_focus_event_frame
;
3415 = focus_frame
? focus_frame
->output_data
.x
->focus_state
: 0;
3417 if (event
->xcrossing
.detail
!= NotifyInferior
3418 && event
->xcrossing
.focus
3419 && ! (focus_state
& FOCUS_EXPLICIT
))
3420 x_focus_changed ((event
->type
== EnterNotify
? FocusIn
: FocusOut
),
3422 dpyinfo
, frame
, bufp
);
3428 x_focus_changed (event
->type
,
3429 (event
->xfocus
.detail
== NotifyPointer
?
3430 FOCUS_IMPLICIT
: FOCUS_EXPLICIT
),
3431 dpyinfo
, frame
, bufp
);
3435 if (event
->xclient
.message_type
== dpyinfo
->Xatom_XEMBED
)
3437 enum xembed_message msg
= event
->xclient
.data
.l
[1];
3438 x_focus_changed ((msg
== XEMBED_FOCUS_IN
? FocusIn
: FocusOut
),
3439 FOCUS_EXPLICIT
, dpyinfo
, frame
, bufp
);
3446 /* Handle an event saying the mouse has moved out of an Emacs frame. */
3449 x_mouse_leave (dpyinfo
)
3450 struct x_display_info
*dpyinfo
;
3452 x_new_focus_frame (dpyinfo
, dpyinfo
->x_focus_event_frame
);
3455 /* The focus has changed, or we have redirected a frame's focus to
3456 another frame (this happens when a frame uses a surrogate
3457 mini-buffer frame). Shift the highlight as appropriate.
3459 The FRAME argument doesn't necessarily have anything to do with which
3460 frame is being highlighted or un-highlighted; we only use it to find
3461 the appropriate X display info. */
3464 XTframe_rehighlight (frame
)
3465 struct frame
*frame
;
3467 x_frame_rehighlight (FRAME_X_DISPLAY_INFO (frame
));
3471 x_frame_rehighlight (dpyinfo
)
3472 struct x_display_info
*dpyinfo
;
3474 struct frame
*old_highlight
= dpyinfo
->x_highlight_frame
;
3476 if (dpyinfo
->x_focus_frame
)
3478 dpyinfo
->x_highlight_frame
3479 = ((FRAMEP (FRAME_FOCUS_FRAME (dpyinfo
->x_focus_frame
)))
3480 ? XFRAME (FRAME_FOCUS_FRAME (dpyinfo
->x_focus_frame
))
3481 : dpyinfo
->x_focus_frame
);
3482 if (! FRAME_LIVE_P (dpyinfo
->x_highlight_frame
))
3484 FRAME_FOCUS_FRAME (dpyinfo
->x_focus_frame
) = Qnil
;
3485 dpyinfo
->x_highlight_frame
= dpyinfo
->x_focus_frame
;
3489 dpyinfo
->x_highlight_frame
= 0;
3491 if (dpyinfo
->x_highlight_frame
!= old_highlight
)
3494 frame_unhighlight (old_highlight
);
3495 if (dpyinfo
->x_highlight_frame
)
3496 frame_highlight (dpyinfo
->x_highlight_frame
);
3502 /* Keyboard processing - modifier keys, vendor-specific keysyms, etc. */
3504 /* Initialize mode_switch_bit and modifier_meaning. */
3506 x_find_modifier_meanings (dpyinfo
)
3507 struct x_display_info
*dpyinfo
;
3509 int min_code
, max_code
;
3512 XModifierKeymap
*mods
;
3514 dpyinfo
->meta_mod_mask
= 0;
3515 dpyinfo
->shift_lock_mask
= 0;
3516 dpyinfo
->alt_mod_mask
= 0;
3517 dpyinfo
->super_mod_mask
= 0;
3518 dpyinfo
->hyper_mod_mask
= 0;
3520 XDisplayKeycodes (dpyinfo
->display
, &min_code
, &max_code
);
3522 syms
= XGetKeyboardMapping (dpyinfo
->display
,
3523 min_code
, max_code
- min_code
+ 1,
3525 mods
= XGetModifierMapping (dpyinfo
->display
);
3527 /* Scan the modifier table to see which modifier bits the Meta and
3528 Alt keysyms are on. */
3530 int row
, col
; /* The row and column in the modifier table. */
3531 int found_alt_or_meta
;
3533 for (row
= 3; row
< 8; row
++)
3535 found_alt_or_meta
= 0;
3536 for (col
= 0; col
< mods
->max_keypermod
; col
++)
3538 KeyCode code
= mods
->modifiermap
[(row
* mods
->max_keypermod
) + col
];
3540 /* Zeroes are used for filler. Skip them. */
3544 /* Are any of this keycode's keysyms a meta key? */
3548 for (code_col
= 0; code_col
< syms_per_code
; code_col
++)
3550 int sym
= syms
[((code
- min_code
) * syms_per_code
) + code_col
];
3556 found_alt_or_meta
= 1;
3557 dpyinfo
->meta_mod_mask
|= (1 << row
);
3562 found_alt_or_meta
= 1;
3563 dpyinfo
->alt_mod_mask
|= (1 << row
);
3568 if (!found_alt_or_meta
)
3569 dpyinfo
->hyper_mod_mask
|= (1 << row
);
3570 code_col
= syms_per_code
;
3571 col
= mods
->max_keypermod
;
3576 if (!found_alt_or_meta
)
3577 dpyinfo
->super_mod_mask
|= (1 << row
);
3578 code_col
= syms_per_code
;
3579 col
= mods
->max_keypermod
;
3583 /* Ignore this if it's not on the lock modifier. */
3584 if (!found_alt_or_meta
&& ((1 << row
) == LockMask
))
3585 dpyinfo
->shift_lock_mask
= LockMask
;
3586 code_col
= syms_per_code
;
3587 col
= mods
->max_keypermod
;
3596 /* If we couldn't find any meta keys, accept any alt keys as meta keys. */
3597 if (! dpyinfo
->meta_mod_mask
)
3599 dpyinfo
->meta_mod_mask
= dpyinfo
->alt_mod_mask
;
3600 dpyinfo
->alt_mod_mask
= 0;
3603 /* If some keys are both alt and meta,
3604 make them just meta, not alt. */
3605 if (dpyinfo
->alt_mod_mask
& dpyinfo
->meta_mod_mask
)
3607 dpyinfo
->alt_mod_mask
&= ~dpyinfo
->meta_mod_mask
;
3610 XFree ((char *) syms
);
3611 XFreeModifiermap (mods
);
3614 /* Convert between the modifier bits X uses and the modifier bits
3618 x_x_to_emacs_modifiers (dpyinfo
, state
)
3619 struct x_display_info
*dpyinfo
;
3622 EMACS_UINT mod_meta
= meta_modifier
;
3623 EMACS_UINT mod_alt
= alt_modifier
;
3624 EMACS_UINT mod_hyper
= hyper_modifier
;
3625 EMACS_UINT mod_super
= super_modifier
;
3628 tem
= Fget (Vx_alt_keysym
, Qmodifier_value
);
3629 if (! EQ (tem
, Qnil
)) mod_alt
= XUINT (tem
);
3630 tem
= Fget (Vx_meta_keysym
, Qmodifier_value
);
3631 if (! EQ (tem
, Qnil
)) mod_meta
= XUINT (tem
);
3632 tem
= Fget (Vx_hyper_keysym
, Qmodifier_value
);
3633 if (! EQ (tem
, Qnil
)) mod_hyper
= XUINT (tem
);
3634 tem
= Fget (Vx_super_keysym
, Qmodifier_value
);
3635 if (! EQ (tem
, Qnil
)) mod_super
= XUINT (tem
);
3638 return ( ((state
& (ShiftMask
| dpyinfo
->shift_lock_mask
)) ? shift_modifier
: 0)
3639 | ((state
& ControlMask
) ? ctrl_modifier
: 0)
3640 | ((state
& dpyinfo
->meta_mod_mask
) ? mod_meta
: 0)
3641 | ((state
& dpyinfo
->alt_mod_mask
) ? mod_alt
: 0)
3642 | ((state
& dpyinfo
->super_mod_mask
) ? mod_super
: 0)
3643 | ((state
& dpyinfo
->hyper_mod_mask
) ? mod_hyper
: 0));
3647 x_emacs_to_x_modifiers (dpyinfo
, state
)
3648 struct x_display_info
*dpyinfo
;
3651 EMACS_UINT mod_meta
= meta_modifier
;
3652 EMACS_UINT mod_alt
= alt_modifier
;
3653 EMACS_UINT mod_hyper
= hyper_modifier
;
3654 EMACS_UINT mod_super
= super_modifier
;
3658 tem
= Fget (Vx_alt_keysym
, Qmodifier_value
);
3659 if (! EQ (tem
, Qnil
)) mod_alt
= XUINT (tem
);
3660 tem
= Fget (Vx_meta_keysym
, Qmodifier_value
);
3661 if (! EQ (tem
, Qnil
)) mod_meta
= XUINT (tem
);
3662 tem
= Fget (Vx_hyper_keysym
, Qmodifier_value
);
3663 if (! EQ (tem
, Qnil
)) mod_hyper
= XUINT (tem
);
3664 tem
= Fget (Vx_super_keysym
, Qmodifier_value
);
3665 if (! EQ (tem
, Qnil
)) mod_super
= XUINT (tem
);
3668 return ( ((state
& mod_alt
) ? dpyinfo
->alt_mod_mask
: 0)
3669 | ((state
& mod_super
) ? dpyinfo
->super_mod_mask
: 0)
3670 | ((state
& mod_hyper
) ? dpyinfo
->hyper_mod_mask
: 0)
3671 | ((state
& shift_modifier
) ? ShiftMask
: 0)
3672 | ((state
& ctrl_modifier
) ? ControlMask
: 0)
3673 | ((state
& mod_meta
) ? dpyinfo
->meta_mod_mask
: 0));
3676 /* Convert a keysym to its name. */
3679 x_get_keysym_name (keysym
)
3685 value
= XKeysymToString (keysym
);
3693 /* Mouse clicks and mouse movement. Rah. */
3695 /* Prepare a mouse-event in *RESULT for placement in the input queue.
3697 If the event is a button press, then note that we have grabbed
3701 construct_mouse_click (result
, event
, f
)
3702 struct input_event
*result
;
3703 XButtonEvent
*event
;
3706 /* Make the event type NO_EVENT; we'll change that when we decide
3708 result
->kind
= MOUSE_CLICK_EVENT
;
3709 result
->code
= event
->button
- Button1
;
3710 result
->timestamp
= event
->time
;
3711 result
->modifiers
= (x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO (f
),
3713 | (event
->type
== ButtonRelease
3717 XSETINT (result
->x
, event
->x
);
3718 XSETINT (result
->y
, event
->y
);
3719 XSETFRAME (result
->frame_or_window
, f
);
3725 /* Function to report a mouse movement to the mainstream Emacs code.
3726 The input handler calls this.
3728 We have received a mouse movement event, which is given in *event.
3729 If the mouse is over a different glyph than it was last time, tell
3730 the mainstream emacs code by setting mouse_moved. If not, ask for
3731 another motion event, so we can check again the next time it moves. */
3733 static XMotionEvent last_mouse_motion_event
;
3734 static Lisp_Object last_mouse_motion_frame
;
3737 note_mouse_movement (frame
, event
)
3739 XMotionEvent
*event
;
3741 last_mouse_movement_time
= event
->time
;
3742 last_mouse_motion_event
= *event
;
3743 XSETFRAME (last_mouse_motion_frame
, frame
);
3745 if (!FRAME_X_OUTPUT (frame
))
3748 if (event
->window
!= FRAME_X_WINDOW (frame
))
3750 frame
->mouse_moved
= 1;
3751 last_mouse_scroll_bar
= Qnil
;
3752 note_mouse_highlight (frame
, -1, -1);
3753 last_mouse_glyph_frame
= 0;
3758 /* Has the mouse moved off the glyph it was on at the last sighting? */
3759 if (frame
!= last_mouse_glyph_frame
3760 || event
->x
< last_mouse_glyph
.x
3761 || event
->x
>= last_mouse_glyph
.x
+ last_mouse_glyph
.width
3762 || event
->y
< last_mouse_glyph
.y
3763 || event
->y
>= last_mouse_glyph
.y
+ last_mouse_glyph
.height
)
3765 frame
->mouse_moved
= 1;
3766 last_mouse_scroll_bar
= Qnil
;
3767 note_mouse_highlight (frame
, event
->x
, event
->y
);
3768 /* Remember which glyph we're now on. */
3769 remember_mouse_glyph (frame
, event
->x
, event
->y
, &last_mouse_glyph
);
3770 last_mouse_glyph_frame
= frame
;
3778 /************************************************************************
3780 ************************************************************************/
3783 redo_mouse_highlight ()
3785 if (!NILP (last_mouse_motion_frame
)
3786 && FRAME_LIVE_P (XFRAME (last_mouse_motion_frame
)))
3787 note_mouse_highlight (XFRAME (last_mouse_motion_frame
),
3788 last_mouse_motion_event
.x
,
3789 last_mouse_motion_event
.y
);
3794 /* Return the current position of the mouse.
3795 *FP should be a frame which indicates which display to ask about.
3797 If the mouse movement started in a scroll bar, set *FP, *BAR_WINDOW,
3798 and *PART to the frame, window, and scroll bar part that the mouse
3799 is over. Set *X and *Y to the portion and whole of the mouse's
3800 position on the scroll bar.
3802 If the mouse movement started elsewhere, set *FP to the frame the
3803 mouse is on, *BAR_WINDOW to nil, and *X and *Y to the character cell
3806 Set *TIME to the server time-stamp for the time at which the mouse
3807 was at this position.
3809 Don't store anything if we don't have a valid set of values to report.
3811 This clears the mouse_moved flag, so we can wait for the next mouse
3815 XTmouse_position (fp
, insist
, bar_window
, part
, x
, y
, time
)
3818 Lisp_Object
*bar_window
;
3819 enum scroll_bar_part
*part
;
3821 unsigned long *time
;
3827 if (! NILP (last_mouse_scroll_bar
) && insist
== 0)
3828 x_scroll_bar_report_motion (fp
, bar_window
, part
, x
, y
, time
);
3834 Window dummy_window
;
3837 Lisp_Object frame
, tail
;
3839 /* Clear the mouse-moved flag for every frame on this display. */
3840 FOR_EACH_FRAME (tail
, frame
)
3841 if (FRAME_X_P (XFRAME (frame
))
3842 && FRAME_X_DISPLAY (XFRAME (frame
)) == FRAME_X_DISPLAY (*fp
))
3843 XFRAME (frame
)->mouse_moved
= 0;
3845 last_mouse_scroll_bar
= Qnil
;
3847 /* Figure out which root window we're on. */
3848 XQueryPointer (FRAME_X_DISPLAY (*fp
),
3849 DefaultRootWindow (FRAME_X_DISPLAY (*fp
)),
3851 /* The root window which contains the pointer. */
3854 /* Trash which we can't trust if the pointer is on
3855 a different screen. */
3858 /* The position on that root window. */
3861 /* More trash we can't trust. */
3864 /* Modifier keys and pointer buttons, about which
3866 (unsigned int *) &dummy
);
3868 /* Now we have a position on the root; find the innermost window
3869 containing the pointer. */
3873 int parent_x
= 0, parent_y
= 0;
3877 /* XTranslateCoordinates can get errors if the window
3878 structure is changing at the same time this function
3879 is running. So at least we must not crash from them. */
3881 x_catch_errors (FRAME_X_DISPLAY (*fp
));
3883 if (FRAME_X_DISPLAY_INFO (*fp
)->grabbed
&& last_mouse_frame
3884 && FRAME_LIVE_P (last_mouse_frame
))
3886 /* If mouse was grabbed on a frame, give coords for that frame
3887 even if the mouse is now outside it. */
3888 XTranslateCoordinates (FRAME_X_DISPLAY (*fp
),
3890 /* From-window, to-window. */
3891 root
, FRAME_X_WINDOW (last_mouse_frame
),
3893 /* From-position, to-position. */
3894 root_x
, root_y
, &win_x
, &win_y
,
3898 f1
= last_mouse_frame
;
3904 XTranslateCoordinates (FRAME_X_DISPLAY (*fp
),
3906 /* From-window, to-window. */
3909 /* From-position, to-position. */
3910 root_x
, root_y
, &win_x
, &win_y
,
3915 if (child
== None
|| child
== win
)
3918 /* We don't wan't to know the innermost window. We
3919 want the edit window. For non-Gtk+ the innermost
3920 window is the edit window. For Gtk+ it might not
3921 be. It might be the tool bar for example. */
3922 if (x_window_to_frame (FRAME_X_DISPLAY_INFO (*fp
), win
))
3930 /* Now we know that:
3931 win is the innermost window containing the pointer
3932 (XTC says it has no child containing the pointer),
3933 win_x and win_y are the pointer's position in it
3934 (XTC did this the last time through), and
3935 parent_x and parent_y are the pointer's position in win's parent.
3936 (They are what win_x and win_y were when win was child.
3937 If win is the root window, it has no parent, and
3938 parent_{x,y} are invalid, but that's okay, because we'll
3939 never use them in that case.) */
3942 /* We don't wan't to know the innermost window. We
3943 want the edit window. */
3944 f1
= x_window_to_frame (FRAME_X_DISPLAY_INFO (*fp
), win
);
3946 /* Is win one of our frames? */
3947 f1
= x_any_window_to_frame (FRAME_X_DISPLAY_INFO (*fp
), win
);
3950 #ifdef USE_X_TOOLKIT
3951 /* If we end up with the menu bar window, say it's not
3954 && f1
->output_data
.x
->menubar_widget
3955 && win
== XtWindow (f1
->output_data
.x
->menubar_widget
))
3957 #endif /* USE_X_TOOLKIT */
3960 if (x_had_errors_p (FRAME_X_DISPLAY (*fp
)))
3963 x_uncatch_errors ();
3965 /* If not, is it one of our scroll bars? */
3968 struct scroll_bar
*bar
;
3970 bar
= x_window_to_scroll_bar (FRAME_X_DISPLAY (*fp
), win
);
3974 f1
= XFRAME (WINDOW_FRAME (XWINDOW (bar
->window
)));
3980 if (f1
== 0 && insist
> 0)
3981 f1
= SELECTED_FRAME ();
3985 /* Ok, we found a frame. Store all the values.
3986 last_mouse_glyph is a rectangle used to reduce the
3987 generation of mouse events. To not miss any motion
3988 events, we must divide the frame into rectangles of the
3989 size of the smallest character that could be displayed
3990 on it, i.e. into the same rectangles that matrices on
3991 the frame are divided into. */
3993 remember_mouse_glyph (f1
, win_x
, win_y
, &last_mouse_glyph
);
3994 last_mouse_glyph_frame
= f1
;
3999 XSETINT (*x
, win_x
);
4000 XSETINT (*y
, win_y
);
4001 *time
= last_mouse_movement_time
;
4011 /***********************************************************************
4013 ***********************************************************************/
4015 /* Scroll bar support. */
4017 /* Given an X window ID and a DISPLAY, find the struct scroll_bar which
4019 This can be called in GC, so we have to make sure to strip off mark
4022 static struct scroll_bar
*
4023 x_window_to_scroll_bar (display
, window_id
)
4029 #if defined (USE_GTK) && defined (USE_TOOLKIT_SCROLL_BARS)
4030 window_id
= (Window
) xg_get_scroll_id_for_window (display
, window_id
);
4031 #endif /* USE_GTK && USE_TOOLKIT_SCROLL_BARS */
4033 for (tail
= Vframe_list
; CONSP (tail
); tail
= XCDR (tail
))
4035 Lisp_Object frame
, bar
, condemned
;
4037 frame
= XCAR (tail
);
4038 /* All elements of Vframe_list should be frames. */
4039 if (! FRAMEP (frame
))
4042 if (! FRAME_X_P (XFRAME (frame
)))
4045 /* Scan this frame's scroll bar list for a scroll bar with the
4047 condemned
= FRAME_CONDEMNED_SCROLL_BARS (XFRAME (frame
));
4048 for (bar
= FRAME_SCROLL_BARS (XFRAME (frame
));
4049 /* This trick allows us to search both the ordinary and
4050 condemned scroll bar lists with one loop. */
4051 ! NILP (bar
) || (bar
= condemned
,
4054 bar
= XSCROLL_BAR (bar
)->next
)
4055 if (XSCROLL_BAR (bar
)->x_window
== window_id
&&
4056 FRAME_X_DISPLAY (XFRAME (frame
)) == display
)
4057 return XSCROLL_BAR (bar
);
4064 #if defined USE_LUCID
4066 /* Return the Lucid menu bar WINDOW is part of. Return null
4067 if WINDOW is not part of a menu bar. */
4070 x_window_to_menu_bar (window
)
4075 for (tail
= Vframe_list
; CONSP (tail
); tail
= XCDR (tail
))
4077 if (FRAME_X_P (XFRAME (XCAR (tail
))))
4079 Lisp_Object frame
= XCAR (tail
);
4080 Widget menu_bar
= XFRAME (frame
)->output_data
.x
->menubar_widget
;
4082 if (menu_bar
&& xlwmenu_window_p (menu_bar
, window
))
4090 #endif /* USE_LUCID */
4093 /************************************************************************
4095 ************************************************************************/
4097 #ifdef USE_TOOLKIT_SCROLL_BARS
4099 static void x_scroll_bar_to_input_event
P_ ((XEvent
*, struct input_event
*));
4100 static void x_send_scroll_bar_event
P_ ((Lisp_Object
, int, int, int));
4101 static void x_create_toolkit_scroll_bar
P_ ((struct frame
*,
4102 struct scroll_bar
*));
4103 static void x_set_toolkit_scroll_bar_thumb
P_ ((struct scroll_bar
*,
4107 /* Lisp window being scrolled. Set when starting to interact with
4108 a toolkit scroll bar, reset to nil when ending the interaction. */
4110 static Lisp_Object window_being_scrolled
;
4112 /* Last scroll bar part sent in xm_scroll_callback. */
4114 static int last_scroll_bar_part
;
4116 /* Whether this is an Xaw with arrow-scrollbars. This should imply
4117 that movements of 1/20 of the screen size are mapped to up/down. */
4120 /* Id of action hook installed for scroll bars. */
4122 static XtActionHookId action_hook_id
;
4124 static Boolean xaw3d_arrow_scroll
;
4126 /* Whether the drag scrolling maintains the mouse at the top of the
4127 thumb. If not, resizing the thumb needs to be done more carefully
4128 to avoid jerkyness. */
4130 static Boolean xaw3d_pick_top
;
4132 /* Action hook installed via XtAppAddActionHook when toolkit scroll
4133 bars are used.. The hook is responsible for detecting when
4134 the user ends an interaction with the scroll bar, and generates
4135 a `end-scroll' SCROLL_BAR_CLICK_EVENT' event if so. */
4138 xt_action_hook (widget
, client_data
, action_name
, event
, params
,
4141 XtPointer client_data
;
4145 Cardinal
*num_params
;
4151 scroll_bar_p
= XmIsScrollBar (widget
);
4152 end_action
= "Release";
4153 #else /* !USE_MOTIF i.e. use Xaw */
4154 scroll_bar_p
= XtIsSubclass (widget
, scrollbarWidgetClass
);
4155 end_action
= "EndScroll";
4156 #endif /* USE_MOTIF */
4159 && strcmp (action_name
, end_action
) == 0
4160 && WINDOWP (window_being_scrolled
))
4164 x_send_scroll_bar_event (window_being_scrolled
,
4165 scroll_bar_end_scroll
, 0, 0);
4166 w
= XWINDOW (window_being_scrolled
);
4168 if (!NILP (XSCROLL_BAR (w
->vertical_scroll_bar
)->dragging
))
4170 XSCROLL_BAR (w
->vertical_scroll_bar
)->dragging
= Qnil
;
4171 /* The thumb size is incorrect while dragging: fix it. */
4172 set_vertical_scroll_bar (w
);
4174 window_being_scrolled
= Qnil
;
4175 last_scroll_bar_part
= -1;
4177 /* Xt timeouts no longer needed. */
4178 toolkit_scroll_bar_interaction
= 0;
4181 #endif /* not USE_GTK */
4183 /* A vector of windows used for communication between
4184 x_send_scroll_bar_event and x_scroll_bar_to_input_event. */
4186 static struct window
**scroll_bar_windows
;
4187 static int scroll_bar_windows_size
;
4190 /* Send a client message with message type Xatom_Scrollbar for a
4191 scroll action to the frame of WINDOW. PART is a value identifying
4192 the part of the scroll bar that was clicked on. PORTION is the
4193 amount to scroll of a whole of WHOLE. */
4196 x_send_scroll_bar_event (window
, part
, portion
, whole
)
4198 int part
, portion
, whole
;
4201 XClientMessageEvent
*ev
= (XClientMessageEvent
*) &event
;
4202 struct window
*w
= XWINDOW (window
);
4203 struct frame
*f
= XFRAME (w
->frame
);
4208 /* Construct a ClientMessage event to send to the frame. */
4209 ev
->type
= ClientMessage
;
4210 ev
->message_type
= FRAME_X_DISPLAY_INFO (f
)->Xatom_Scrollbar
;
4211 ev
->display
= FRAME_X_DISPLAY (f
);
4212 ev
->window
= FRAME_X_WINDOW (f
);
4215 /* We can only transfer 32 bits in the XClientMessageEvent, which is
4216 not enough to store a pointer or Lisp_Object on a 64 bit system.
4217 So, store the window in scroll_bar_windows and pass the index
4218 into that array in the event. */
4219 for (i
= 0; i
< scroll_bar_windows_size
; ++i
)
4220 if (scroll_bar_windows
[i
] == NULL
)
4223 if (i
== scroll_bar_windows_size
)
4225 int new_size
= max (10, 2 * scroll_bar_windows_size
);
4226 size_t nbytes
= new_size
* sizeof *scroll_bar_windows
;
4227 size_t old_nbytes
= scroll_bar_windows_size
* sizeof *scroll_bar_windows
;
4229 scroll_bar_windows
= (struct window
**) xrealloc (scroll_bar_windows
,
4231 bzero (&scroll_bar_windows
[i
], nbytes
- old_nbytes
);
4232 scroll_bar_windows_size
= new_size
;
4235 scroll_bar_windows
[i
] = w
;
4236 ev
->data
.l
[0] = (long) i
;
4237 ev
->data
.l
[1] = (long) part
;
4238 ev
->data
.l
[2] = (long) 0;
4239 ev
->data
.l
[3] = (long) portion
;
4240 ev
->data
.l
[4] = (long) whole
;
4242 /* Make Xt timeouts work while the scroll bar is active. */
4243 toolkit_scroll_bar_interaction
= 1;
4244 #ifdef USE_X_TOOLKIT
4245 x_activate_timeout_atimer ();
4248 /* Setting the event mask to zero means that the message will
4249 be sent to the client that created the window, and if that
4250 window no longer exists, no event will be sent. */
4251 XSendEvent (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), False
, 0, &event
);
4256 /* Transform a scroll bar ClientMessage EVENT to an Emacs input event
4260 x_scroll_bar_to_input_event (event
, ievent
)
4262 struct input_event
*ievent
;
4264 XClientMessageEvent
*ev
= (XClientMessageEvent
*) event
;
4269 w
= scroll_bar_windows
[ev
->data
.l
[0]];
4270 scroll_bar_windows
[ev
->data
.l
[0]] = NULL
;
4272 XSETWINDOW (window
, w
);
4273 f
= XFRAME (w
->frame
);
4275 ievent
->kind
= SCROLL_BAR_CLICK_EVENT
;
4276 ievent
->frame_or_window
= window
;
4279 ievent
->timestamp
= CurrentTime
;
4281 ievent
->timestamp
= XtLastTimestampProcessed (FRAME_X_DISPLAY (f
));
4283 ievent
->part
= ev
->data
.l
[1];
4284 ievent
->code
= ev
->data
.l
[2];
4285 ievent
->x
= make_number ((int) ev
->data
.l
[3]);
4286 ievent
->y
= make_number ((int) ev
->data
.l
[4]);
4287 ievent
->modifiers
= 0;
4293 /* Minimum and maximum values used for Motif scroll bars. */
4295 #define XM_SB_MAX 10000000
4298 /* Scroll bar callback for Motif scroll bars. WIDGET is the scroll
4299 bar widget. CLIENT_DATA is a pointer to the scroll_bar structure.
4300 CALL_DATA is a pointer to a XmScrollBarCallbackStruct. */
4303 xm_scroll_callback (widget
, client_data
, call_data
)
4305 XtPointer client_data
, call_data
;
4307 struct scroll_bar
*bar
= (struct scroll_bar
*) client_data
;
4308 XmScrollBarCallbackStruct
*cs
= (XmScrollBarCallbackStruct
*) call_data
;
4309 int part
= -1, whole
= 0, portion
= 0;
4313 case XmCR_DECREMENT
:
4314 bar
->dragging
= Qnil
;
4315 part
= scroll_bar_up_arrow
;
4318 case XmCR_INCREMENT
:
4319 bar
->dragging
= Qnil
;
4320 part
= scroll_bar_down_arrow
;
4323 case XmCR_PAGE_DECREMENT
:
4324 bar
->dragging
= Qnil
;
4325 part
= scroll_bar_above_handle
;
4328 case XmCR_PAGE_INCREMENT
:
4329 bar
->dragging
= Qnil
;
4330 part
= scroll_bar_below_handle
;
4334 bar
->dragging
= Qnil
;
4335 part
= scroll_bar_to_top
;
4338 case XmCR_TO_BOTTOM
:
4339 bar
->dragging
= Qnil
;
4340 part
= scroll_bar_to_bottom
;
4347 /* Get the slider size. */
4349 XtVaGetValues (widget
, XmNsliderSize
, &slider_size
, NULL
);
4352 whole
= XM_SB_MAX
- slider_size
;
4353 portion
= min (cs
->value
, whole
);
4354 part
= scroll_bar_handle
;
4355 bar
->dragging
= make_number (cs
->value
);
4359 case XmCR_VALUE_CHANGED
:
4365 window_being_scrolled
= bar
->window
;
4366 last_scroll_bar_part
= part
;
4367 x_send_scroll_bar_event (bar
->window
, part
, portion
, whole
);
4371 #elif defined USE_GTK
4373 /* Scroll bar callback for GTK scroll bars. WIDGET is the scroll
4374 bar widget. DATA is a pointer to the scroll_bar structure. */
4377 xg_scroll_callback (widget
, data
)
4381 struct scroll_bar
*bar
= (struct scroll_bar
*) data
;
4387 int part
= -1, whole
= 0, portion
= 0;
4388 GtkAdjustment
*adj
= GTK_ADJUSTMENT (gtk_range_get_adjustment (widget
));
4390 position
= gtk_adjustment_get_value (adj
);
4392 p
= g_object_get_data (G_OBJECT (widget
), XG_LAST_SB_DATA
);
4395 p
= (gdouble
*) xmalloc (sizeof (gdouble
));
4397 g_object_set_data (G_OBJECT (widget
), XG_LAST_SB_DATA
, p
);
4403 if (xg_ignore_gtk_scrollbar
) return;
4405 diff
= (int) (position
- previous
);
4407 if (diff
== (int) adj
->step_increment
)
4409 part
= scroll_bar_down_arrow
;
4410 bar
->dragging
= Qnil
;
4412 else if (-diff
== (int) adj
->step_increment
)
4414 part
= scroll_bar_up_arrow
;
4415 bar
->dragging
= Qnil
;
4417 else if (diff
== (int) adj
->page_increment
)
4419 part
= scroll_bar_below_handle
;
4420 bar
->dragging
= Qnil
;
4422 else if (-diff
== (int) adj
->page_increment
)
4424 part
= scroll_bar_above_handle
;
4425 bar
->dragging
= Qnil
;
4429 part
= scroll_bar_handle
;
4430 whole
= adj
->upper
- adj
->page_size
;
4431 portion
= min ((int)position
, whole
);
4432 bar
->dragging
= make_number ((int)portion
);
4437 window_being_scrolled
= bar
->window
;
4438 last_scroll_bar_part
= part
;
4439 x_send_scroll_bar_event (bar
->window
, part
, portion
, whole
);
4443 #else /* not USE_GTK and not USE_MOTIF */
4445 /* Xaw scroll bar callback. Invoked when the thumb is dragged.
4446 WIDGET is the scroll bar widget. CLIENT_DATA is a pointer to the
4447 scroll bar struct. CALL_DATA is a pointer to a float saying where
4451 xaw_jump_callback (widget
, client_data
, call_data
)
4453 XtPointer client_data
, call_data
;
4455 struct scroll_bar
*bar
= (struct scroll_bar
*) client_data
;
4456 float top
= *(float *) call_data
;
4458 int whole
, portion
, height
;
4461 /* Get the size of the thumb, a value between 0 and 1. */
4463 XtVaGetValues (widget
, XtNshown
, &shown
, XtNheight
, &height
, NULL
);
4467 portion
= shown
< 1 ? top
* whole
: 0;
4469 if (shown
< 1 && (eabs (top
+ shown
- 1) < 1.0/height
))
4470 /* Some derivatives of Xaw refuse to shrink the thumb when you reach
4471 the bottom, so we force the scrolling whenever we see that we're
4472 too close to the bottom (in x_set_toolkit_scroll_bar_thumb
4473 we try to ensure that we always stay two pixels away from the
4475 part
= scroll_bar_down_arrow
;
4477 part
= scroll_bar_handle
;
4479 window_being_scrolled
= bar
->window
;
4480 bar
->dragging
= make_number (portion
);
4481 last_scroll_bar_part
= part
;
4482 x_send_scroll_bar_event (bar
->window
, part
, portion
, whole
);
4486 /* Xaw scroll bar callback. Invoked for incremental scrolling.,
4487 i.e. line or page up or down. WIDGET is the Xaw scroll bar
4488 widget. CLIENT_DATA is a pointer to the scroll_bar structure for
4489 the scroll bar. CALL_DATA is an integer specifying the action that
4490 has taken place. Its magnitude is in the range 0..height of the
4491 scroll bar. Negative values mean scroll towards buffer start.
4492 Values < height of scroll bar mean line-wise movement. */
4495 xaw_scroll_callback (widget
, client_data
, call_data
)
4497 XtPointer client_data
, call_data
;
4499 struct scroll_bar
*bar
= (struct scroll_bar
*) client_data
;
4500 /* The position really is stored cast to a pointer. */
4501 int position
= (long) call_data
;
4505 /* Get the height of the scroll bar. */
4507 XtVaGetValues (widget
, XtNheight
, &height
, NULL
);
4510 if (eabs (position
) >= height
)
4511 part
= (position
< 0) ? scroll_bar_above_handle
: scroll_bar_below_handle
;
4513 /* If Xaw3d was compiled with ARROW_SCROLLBAR,
4514 it maps line-movement to call_data = max(5, height/20). */
4515 else if (xaw3d_arrow_scroll
&& eabs (position
) <= max (5, height
/ 20))
4516 part
= (position
< 0) ? scroll_bar_up_arrow
: scroll_bar_down_arrow
;
4518 part
= scroll_bar_move_ratio
;
4520 window_being_scrolled
= bar
->window
;
4521 bar
->dragging
= Qnil
;
4522 last_scroll_bar_part
= part
;
4523 x_send_scroll_bar_event (bar
->window
, part
, position
, height
);
4526 #endif /* not USE_GTK and not USE_MOTIF */
4528 #define SCROLL_BAR_NAME "verticalScrollBar"
4530 /* Create the widget for scroll bar BAR on frame F. Record the widget
4531 and X window of the scroll bar in BAR. */
4535 x_create_toolkit_scroll_bar (f
, bar
)
4537 struct scroll_bar
*bar
;
4539 char *scroll_bar_name
= SCROLL_BAR_NAME
;
4542 xg_create_scroll_bar (f
, bar
, G_CALLBACK (xg_scroll_callback
),
4547 #else /* not USE_GTK */
4550 x_create_toolkit_scroll_bar (f
, bar
)
4552 struct scroll_bar
*bar
;
4558 char *scroll_bar_name
= SCROLL_BAR_NAME
;
4559 unsigned long pixel
;
4564 /* Set resources. Create the widget. */
4565 XtSetArg (av
[ac
], XtNmappedWhenManaged
, False
); ++ac
;
4566 XtSetArg (av
[ac
], XmNminimum
, 0); ++ac
;
4567 XtSetArg (av
[ac
], XmNmaximum
, XM_SB_MAX
); ++ac
;
4568 XtSetArg (av
[ac
], XmNorientation
, XmVERTICAL
); ++ac
;
4569 XtSetArg (av
[ac
], XmNprocessingDirection
, XmMAX_ON_BOTTOM
), ++ac
;
4570 XtSetArg (av
[ac
], XmNincrement
, 1); ++ac
;
4571 XtSetArg (av
[ac
], XmNpageIncrement
, 1); ++ac
;
4573 pixel
= f
->output_data
.x
->scroll_bar_foreground_pixel
;
4576 XtSetArg (av
[ac
], XmNforeground
, pixel
);
4580 pixel
= f
->output_data
.x
->scroll_bar_background_pixel
;
4583 XtSetArg (av
[ac
], XmNbackground
, pixel
);
4587 widget
= XmCreateScrollBar (f
->output_data
.x
->edit_widget
,
4588 scroll_bar_name
, av
, ac
);
4590 /* Add one callback for everything that can happen. */
4591 XtAddCallback (widget
, XmNdecrementCallback
, xm_scroll_callback
,
4593 XtAddCallback (widget
, XmNdragCallback
, xm_scroll_callback
,
4595 XtAddCallback (widget
, XmNincrementCallback
, xm_scroll_callback
,
4597 XtAddCallback (widget
, XmNpageDecrementCallback
, xm_scroll_callback
,
4599 XtAddCallback (widget
, XmNpageIncrementCallback
, xm_scroll_callback
,
4601 XtAddCallback (widget
, XmNtoBottomCallback
, xm_scroll_callback
,
4603 XtAddCallback (widget
, XmNtoTopCallback
, xm_scroll_callback
,
4606 /* Realize the widget. Only after that is the X window created. */
4607 XtRealizeWidget (widget
);
4609 /* Set the cursor to an arrow. I didn't find a resource to do that.
4610 And I'm wondering why it hasn't an arrow cursor by default. */
4611 XDefineCursor (XtDisplay (widget
), XtWindow (widget
),
4612 f
->output_data
.x
->nontext_cursor
);
4614 #else /* !USE_MOTIF i.e. use Xaw */
4616 /* Set resources. Create the widget. The background of the
4617 Xaw3d scroll bar widget is a little bit light for my taste.
4618 We don't alter it here to let users change it according
4619 to their taste with `emacs*verticalScrollBar.background: xxx'. */
4620 XtSetArg (av
[ac
], XtNmappedWhenManaged
, False
); ++ac
;
4621 XtSetArg (av
[ac
], XtNorientation
, XtorientVertical
); ++ac
;
4622 /* For smoother scrolling with Xaw3d -sm */
4623 /* XtSetArg (av[ac], XtNpickTop, True); ++ac; */
4625 pixel
= f
->output_data
.x
->scroll_bar_foreground_pixel
;
4628 XtSetArg (av
[ac
], XtNforeground
, pixel
);
4632 pixel
= f
->output_data
.x
->scroll_bar_background_pixel
;
4635 XtSetArg (av
[ac
], XtNbackground
, pixel
);
4639 /* Top/bottom shadow colors. */
4641 /* Allocate them, if necessary. */
4642 if (f
->output_data
.x
->scroll_bar_top_shadow_pixel
== -1)
4644 pixel
= f
->output_data
.x
->scroll_bar_background_pixel
;
4647 if (!x_alloc_lighter_color (f
, FRAME_X_DISPLAY (f
),
4648 FRAME_X_COLORMAP (f
),
4649 &pixel
, 1.2, 0x8000))
4651 f
->output_data
.x
->scroll_bar_top_shadow_pixel
= pixel
;
4654 if (f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
== -1)
4656 pixel
= f
->output_data
.x
->scroll_bar_background_pixel
;
4659 if (!x_alloc_lighter_color (f
, FRAME_X_DISPLAY (f
),
4660 FRAME_X_COLORMAP (f
),
4661 &pixel
, 0.6, 0x4000))
4663 f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
= pixel
;
4667 #ifdef XtNbeNiceToColormap
4668 /* Tell the toolkit about them. */
4669 if (f
->output_data
.x
->scroll_bar_top_shadow_pixel
== -1
4670 || f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
== -1)
4671 /* We tried to allocate a color for the top/bottom shadow, and
4672 failed, so tell Xaw3d to use dithering instead. */
4674 XtSetArg (av
[ac
], XtNbeNiceToColormap
, True
);
4678 /* Tell what colors Xaw3d should use for the top/bottom shadow, to
4679 be more consistent with other emacs 3d colors, and since Xaw3d is
4680 not good at dealing with allocation failure. */
4682 /* This tells Xaw3d to use real colors instead of dithering for
4684 XtSetArg (av
[ac
], XtNbeNiceToColormap
, False
);
4687 /* Specify the colors. */
4688 pixel
= f
->output_data
.x
->scroll_bar_top_shadow_pixel
;
4691 XtSetArg (av
[ac
], XtNtopShadowPixel
, pixel
);
4694 pixel
= f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
;
4697 XtSetArg (av
[ac
], XtNbottomShadowPixel
, pixel
);
4703 widget
= XtCreateWidget (scroll_bar_name
, scrollbarWidgetClass
,
4704 f
->output_data
.x
->edit_widget
, av
, ac
);
4708 char *val
= initial
;
4709 XtVaGetValues (widget
, XtNscrollVCursor
, (XtPointer
) &val
,
4710 #ifdef XtNarrowScrollbars
4711 XtNarrowScrollbars
, (XtPointer
) &xaw3d_arrow_scroll
,
4713 XtNpickTop
, (XtPointer
) &xaw3d_pick_top
, NULL
);
4714 if (xaw3d_arrow_scroll
|| val
== initial
)
4715 { /* ARROW_SCROLL */
4716 xaw3d_arrow_scroll
= True
;
4717 /* Isn't that just a personal preference ? --Stef */
4718 XtVaSetValues (widget
, XtNcursorName
, "top_left_arrow", NULL
);
4722 /* Define callbacks. */
4723 XtAddCallback (widget
, XtNjumpProc
, xaw_jump_callback
, (XtPointer
) bar
);
4724 XtAddCallback (widget
, XtNscrollProc
, xaw_scroll_callback
,
4727 /* Realize the widget. Only after that is the X window created. */
4728 XtRealizeWidget (widget
);
4730 #endif /* !USE_MOTIF */
4732 /* Install an action hook that lets us detect when the user
4733 finishes interacting with a scroll bar. */
4734 if (action_hook_id
== 0)
4735 action_hook_id
= XtAppAddActionHook (Xt_app_con
, xt_action_hook
, 0);
4737 /* Remember X window and widget in the scroll bar vector. */
4738 SET_SCROLL_BAR_X_WIDGET (bar
, widget
);
4739 xwindow
= XtWindow (widget
);
4740 bar
->x_window
= xwindow
;
4744 #endif /* not USE_GTK */
4747 /* Set the thumb size and position of scroll bar BAR. We are currently
4748 displaying PORTION out of a whole WHOLE, and our position POSITION. */
4752 x_set_toolkit_scroll_bar_thumb (bar
, portion
, position
, whole
)
4753 struct scroll_bar
*bar
;
4754 int portion
, position
, whole
;
4756 xg_set_toolkit_scroll_bar_thumb (bar
, portion
, position
, whole
);
4759 #else /* not USE_GTK */
4761 x_set_toolkit_scroll_bar_thumb (bar
, portion
, position
, whole
)
4762 struct scroll_bar
*bar
;
4763 int portion
, position
, whole
;
4765 struct frame
*f
= XFRAME (WINDOW_FRAME (XWINDOW (bar
->window
)));
4766 Widget widget
= SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f
), bar
);
4773 /* We use an estimate of 30 chars per line rather than the real
4774 `portion' value. This has the disadvantage that the thumb size
4775 is not very representative, but it makes our life a lot easier.
4776 Otherwise, we have to constantly adjust the thumb size, which
4777 we can't always do quickly enough: while dragging, the size of
4778 the thumb might prevent the user from dragging the thumb all the
4779 way to the end. but Motif and some versions of Xaw3d don't allow
4780 updating the thumb size while dragging. Also, even if we can update
4781 its size, the update will often happen too late.
4782 If you don't believe it, check out revision 1.650 of xterm.c to see
4783 what hoops we were going through and the still poor behavior we got. */
4784 portion
= WINDOW_TOTAL_LINES (XWINDOW (bar
->window
)) * 30;
4785 /* When the thumb is at the bottom, position == whole.
4786 So we need to increase `whole' to make space for the thumb. */
4793 top
= (float) position
/ whole
;
4794 shown
= (float) portion
/ whole
;
4797 if (NILP (bar
->dragging
))
4801 /* Slider size. Must be in the range [1 .. MAX - MIN] where MAX
4802 is the scroll bar's maximum and MIN is the scroll bar's minimum
4804 size
= shown
* XM_SB_MAX
;
4805 size
= min (size
, XM_SB_MAX
);
4806 size
= max (size
, 1);
4808 /* Position. Must be in the range [MIN .. MAX - SLIDER_SIZE]. */
4809 value
= top
* XM_SB_MAX
;
4810 value
= min (value
, XM_SB_MAX
- size
);
4812 XmScrollBarSetValues (widget
, value
, size
, 0, 0, False
);
4814 #else /* !USE_MOTIF i.e. use Xaw */
4820 top
= (float) position
/ whole
;
4821 shown
= (float) portion
/ whole
;
4825 float old_top
, old_shown
;
4827 XtVaGetValues (widget
,
4828 XtNtopOfThumb
, &old_top
,
4829 XtNshown
, &old_shown
,
4833 /* Massage the top+shown values. */
4834 if (NILP (bar
->dragging
) || last_scroll_bar_part
== scroll_bar_down_arrow
)
4835 top
= max (0, min (1, top
));
4838 /* Keep two pixels available for moving the thumb down. */
4839 shown
= max (0, min (1 - top
- (2.0 / height
), shown
));
4841 /* If the call to XawScrollbarSetThumb below doesn't seem to work,
4842 check that your system's configuration file contains a define
4843 for `NARROWPROTO'. See s/freebsd.h for an example. */
4844 if (top
!= old_top
|| shown
!= old_shown
)
4846 if (NILP (bar
->dragging
))
4847 XawScrollbarSetThumb (widget
, top
, shown
);
4850 /* Try to make the scrolling a tad smoother. */
4851 if (!xaw3d_pick_top
)
4852 shown
= min (shown
, old_shown
);
4854 XawScrollbarSetThumb (widget
, top
, shown
);
4858 #endif /* !USE_MOTIF */
4862 #endif /* not USE_GTK */
4864 #endif /* USE_TOOLKIT_SCROLL_BARS */
4868 /************************************************************************
4869 Scroll bars, general
4870 ************************************************************************/
4872 /* Create a scroll bar and return the scroll bar vector for it. W is
4873 the Emacs window on which to create the scroll bar. TOP, LEFT,
4874 WIDTH and HEIGHT are the pixel coordinates and dimensions of the
4877 static struct scroll_bar
*
4878 x_scroll_bar_create (w
, top
, left
, width
, height
)
4880 int top
, left
, width
, height
;
4882 struct frame
*f
= XFRAME (w
->frame
);
4883 struct scroll_bar
*bar
4884 = ALLOCATE_PSEUDOVECTOR (struct scroll_bar
, x_window
, PVEC_OTHER
);
4888 #ifdef USE_TOOLKIT_SCROLL_BARS
4889 x_create_toolkit_scroll_bar (f
, bar
);
4890 #else /* not USE_TOOLKIT_SCROLL_BARS */
4892 XSetWindowAttributes a
;
4896 a
.background_pixel
= f
->output_data
.x
->scroll_bar_background_pixel
;
4897 if (a
.background_pixel
== -1)
4898 a
.background_pixel
= FRAME_BACKGROUND_PIXEL (f
);
4900 a
.event_mask
= (ButtonPressMask
| ButtonReleaseMask
4901 | ButtonMotionMask
| PointerMotionHintMask
4903 a
.cursor
= FRAME_X_DISPLAY_INFO (f
)->vertical_scroll_bar_cursor
;
4905 mask
= (CWBackPixel
| CWEventMask
| CWCursor
);
4907 /* Clear the area of W that will serve as a scroll bar. This is
4908 for the case that a window has been split horizontally. In
4909 this case, no clear_frame is generated to reduce flickering. */
4910 if (width
> 0 && height
> 0)
4911 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
4913 window_box_height (w
), False
);
4915 window
= XCreateWindow (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
4916 /* Position and size of scroll bar. */
4917 left
+ VERTICAL_SCROLL_BAR_WIDTH_TRIM
,
4919 width
- VERTICAL_SCROLL_BAR_WIDTH_TRIM
* 2,
4921 /* Border width, depth, class, and visual. */
4928 bar
->x_window
= window
;
4930 #endif /* not USE_TOOLKIT_SCROLL_BARS */
4932 XSETWINDOW (bar
->window
, w
);
4936 bar
->height
= height
;
4939 bar
->dragging
= Qnil
;
4940 bar
->fringe_extended_p
= 0;
4942 /* Add bar to its frame's list of scroll bars. */
4943 bar
->next
= FRAME_SCROLL_BARS (f
);
4945 XSETVECTOR (FRAME_SCROLL_BARS (f
), bar
);
4946 if (!NILP (bar
->next
))
4947 XSETVECTOR (XSCROLL_BAR (bar
->next
)->prev
, bar
);
4949 /* Map the window/widget. */
4950 #ifdef USE_TOOLKIT_SCROLL_BARS
4953 xg_update_scrollbar_pos (f
,
4956 left
+ VERTICAL_SCROLL_BAR_WIDTH_TRIM
,
4957 width
- VERTICAL_SCROLL_BAR_WIDTH_TRIM
* 2,
4959 xg_show_scroll_bar (bar
->x_window
);
4960 #else /* not USE_GTK */
4961 Widget scroll_bar
= SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f
), bar
);
4962 XtConfigureWidget (scroll_bar
,
4963 left
+ VERTICAL_SCROLL_BAR_WIDTH_TRIM
,
4965 width
- VERTICAL_SCROLL_BAR_WIDTH_TRIM
* 2,
4966 max (height
, 1), 0);
4967 XtMapWidget (scroll_bar
);
4968 #endif /* not USE_GTK */
4970 #else /* not USE_TOOLKIT_SCROLL_BARS */
4971 XMapRaised (FRAME_X_DISPLAY (f
), bar
->x_window
);
4972 #endif /* not USE_TOOLKIT_SCROLL_BARS */
4979 #ifndef USE_TOOLKIT_SCROLL_BARS
4981 /* Draw BAR's handle in the proper position.
4983 If the handle is already drawn from START to END, don't bother
4984 redrawing it, unless REBUILD is non-zero; in that case, always
4985 redraw it. (REBUILD is handy for drawing the handle after expose
4988 Normally, we want to constrain the start and end of the handle to
4989 fit inside its rectangle, but if the user is dragging the scroll
4990 bar handle, we want to let them drag it down all the way, so that
4991 the bar's top is as far down as it goes; otherwise, there's no way
4992 to move to the very end of the buffer. */
4995 x_scroll_bar_set_handle (bar
, start
, end
, rebuild
)
4996 struct scroll_bar
*bar
;
5000 int dragging
= ! NILP (bar
->dragging
);
5001 Window w
= bar
->x_window
;
5002 FRAME_PTR f
= XFRAME (WINDOW_FRAME (XWINDOW (bar
->window
)));
5003 GC gc
= f
->output_data
.x
->normal_gc
;
5005 /* If the display is already accurate, do nothing. */
5007 && start
== bar
->start
5014 int inside_width
= VERTICAL_SCROLL_BAR_INSIDE_WIDTH (f
, bar
->width
);
5015 int inside_height
= VERTICAL_SCROLL_BAR_INSIDE_HEIGHT (f
, bar
->height
);
5016 int top_range
= VERTICAL_SCROLL_BAR_TOP_RANGE (f
, bar
->height
);
5018 /* Make sure the values are reasonable, and try to preserve
5019 the distance between start and end. */
5021 int length
= end
- start
;
5025 else if (start
> top_range
)
5027 end
= start
+ length
;
5031 else if (end
> top_range
&& ! dragging
)
5035 /* Store the adjusted setting in the scroll bar. */
5039 /* Clip the end position, just for display. */
5040 if (end
> top_range
)
5043 /* Draw bottom positions VERTICAL_SCROLL_BAR_MIN_HANDLE pixels
5044 below top positions, to make sure the handle is always at least
5045 that many pixels tall. */
5046 end
+= VERTICAL_SCROLL_BAR_MIN_HANDLE
;
5048 /* Draw the empty space above the handle. Note that we can't clear
5049 zero-height areas; that means "clear to end of window." */
5051 x_clear_area (FRAME_X_DISPLAY (f
), w
,
5052 /* x, y, width, height, and exposures. */
5053 VERTICAL_SCROLL_BAR_LEFT_BORDER
,
5054 VERTICAL_SCROLL_BAR_TOP_BORDER
,
5055 inside_width
, start
,
5058 /* Change to proper foreground color if one is specified. */
5059 if (f
->output_data
.x
->scroll_bar_foreground_pixel
!= -1)
5060 XSetForeground (FRAME_X_DISPLAY (f
), gc
,
5061 f
->output_data
.x
->scroll_bar_foreground_pixel
);
5063 /* Draw the handle itself. */
5064 XFillRectangle (FRAME_X_DISPLAY (f
), w
, gc
,
5065 /* x, y, width, height */
5066 VERTICAL_SCROLL_BAR_LEFT_BORDER
,
5067 VERTICAL_SCROLL_BAR_TOP_BORDER
+ start
,
5068 inside_width
, end
- start
);
5070 /* Restore the foreground color of the GC if we changed it above. */
5071 if (f
->output_data
.x
->scroll_bar_foreground_pixel
!= -1)
5072 XSetForeground (FRAME_X_DISPLAY (f
), gc
,
5073 FRAME_FOREGROUND_PIXEL (f
));
5075 /* Draw the empty space below the handle. Note that we can't
5076 clear zero-height areas; that means "clear to end of window." */
5077 if (end
< inside_height
)
5078 x_clear_area (FRAME_X_DISPLAY (f
), w
,
5079 /* x, y, width, height, and exposures. */
5080 VERTICAL_SCROLL_BAR_LEFT_BORDER
,
5081 VERTICAL_SCROLL_BAR_TOP_BORDER
+ end
,
5082 inside_width
, inside_height
- end
,
5090 #endif /* !USE_TOOLKIT_SCROLL_BARS */
5092 /* Destroy scroll bar BAR, and set its Emacs window's scroll bar to
5096 x_scroll_bar_remove (bar
)
5097 struct scroll_bar
*bar
;
5099 struct frame
*f
= XFRAME (WINDOW_FRAME (XWINDOW (bar
->window
)));
5102 #ifdef USE_TOOLKIT_SCROLL_BARS
5104 xg_remove_scroll_bar (f
, bar
->x_window
);
5105 #else /* not USE_GTK */
5106 XtDestroyWidget (SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f
), bar
));
5107 #endif /* not USE_GTK */
5109 XDestroyWindow (FRAME_X_DISPLAY (f
), bar
->x_window
);
5112 /* Disassociate this scroll bar from its window. */
5113 XWINDOW (bar
->window
)->vertical_scroll_bar
= Qnil
;
5119 /* Set the handle of the vertical scroll bar for WINDOW to indicate
5120 that we are displaying PORTION characters out of a total of WHOLE
5121 characters, starting at POSITION. If WINDOW has no scroll bar,
5125 XTset_vertical_scroll_bar (w
, portion
, whole
, position
)
5127 int portion
, whole
, position
;
5129 struct frame
*f
= XFRAME (w
->frame
);
5130 struct scroll_bar
*bar
;
5131 int top
, height
, left
, sb_left
, width
, sb_width
;
5132 int window_y
, window_height
;
5133 #ifdef USE_TOOLKIT_SCROLL_BARS
5134 int fringe_extended_p
;
5137 /* Get window dimensions. */
5138 window_box (w
, -1, 0, &window_y
, 0, &window_height
);
5140 width
= WINDOW_CONFIG_SCROLL_BAR_COLS (w
) * FRAME_COLUMN_WIDTH (f
);
5141 height
= window_height
;
5143 /* Compute the left edge of the scroll bar area. */
5144 left
= WINDOW_SCROLL_BAR_AREA_X (w
);
5146 /* Compute the width of the scroll bar which might be less than
5147 the width of the area reserved for the scroll bar. */
5148 if (WINDOW_CONFIG_SCROLL_BAR_WIDTH (w
) > 0)
5149 sb_width
= WINDOW_CONFIG_SCROLL_BAR_WIDTH (w
);
5153 /* Compute the left edge of the scroll bar. */
5154 #ifdef USE_TOOLKIT_SCROLL_BARS
5155 if (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w
))
5156 sb_left
= left
+ (WINDOW_RIGHTMOST_P (w
) ? width
- sb_width
: 0);
5158 sb_left
= left
+ (WINDOW_LEFTMOST_P (w
) ? 0 : width
- sb_width
);
5160 if (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w
))
5161 sb_left
= left
+ width
- sb_width
;
5166 #ifdef USE_TOOLKIT_SCROLL_BARS
5167 if (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w
))
5168 fringe_extended_p
= (WINDOW_LEFTMOST_P (w
)
5169 && WINDOW_LEFT_FRINGE_WIDTH (w
)
5170 && (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
)
5171 || WINDOW_LEFT_MARGIN_COLS (w
) == 0));
5173 fringe_extended_p
= (WINDOW_RIGHTMOST_P (w
)
5174 && WINDOW_RIGHT_FRINGE_WIDTH (w
)
5175 && (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
)
5176 || WINDOW_RIGHT_MARGIN_COLS (w
) == 0));
5179 /* Does the scroll bar exist yet? */
5180 if (NILP (w
->vertical_scroll_bar
))
5182 if (width
> 0 && height
> 0)
5185 #ifdef USE_TOOLKIT_SCROLL_BARS
5186 if (fringe_extended_p
)
5187 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
5188 sb_left
, top
, sb_width
, height
, False
);
5191 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
5192 left
, top
, width
, height
, False
);
5196 bar
= x_scroll_bar_create (w
, top
, sb_left
, sb_width
, height
);
5200 /* It may just need to be moved and resized. */
5201 unsigned int mask
= 0;
5203 bar
= XSCROLL_BAR (w
->vertical_scroll_bar
);
5207 if (sb_left
!= bar
->left
)
5209 if (top
!= bar
->top
)
5211 if (sb_width
!= bar
->width
)
5213 if (height
!= bar
->height
)
5216 #ifdef USE_TOOLKIT_SCROLL_BARS
5218 /* Move/size the scroll bar widget. */
5219 if (mask
|| bar
->fringe_extended_p
!= fringe_extended_p
)
5221 /* Since toolkit scroll bars are smaller than the space reserved
5222 for them on the frame, we have to clear "under" them. */
5223 if (width
> 0 && height
> 0)
5225 if (fringe_extended_p
)
5226 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
5227 sb_left
, top
, sb_width
, height
, False
);
5229 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
5230 left
, top
, width
, height
, False
);
5233 xg_update_scrollbar_pos (f
,
5236 sb_left
+ VERTICAL_SCROLL_BAR_WIDTH_TRIM
,
5237 sb_width
- VERTICAL_SCROLL_BAR_WIDTH_TRIM
*2,
5239 #else /* not USE_GTK */
5240 XtConfigureWidget (SCROLL_BAR_X_WIDGET (FRAME_X_DISPLAY (f
), bar
),
5241 sb_left
+ VERTICAL_SCROLL_BAR_WIDTH_TRIM
,
5243 sb_width
- VERTICAL_SCROLL_BAR_WIDTH_TRIM
* 2,
5244 max (height
, 1), 0);
5245 #endif /* not USE_GTK */
5247 #else /* not USE_TOOLKIT_SCROLL_BARS */
5249 /* Clear areas not covered by the scroll bar because of
5250 VERTICAL_SCROLL_BAR_WIDTH_TRIM. */
5251 if (VERTICAL_SCROLL_BAR_WIDTH_TRIM
)
5253 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
5254 left
, top
, VERTICAL_SCROLL_BAR_WIDTH_TRIM
,
5256 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
5257 left
+ width
- VERTICAL_SCROLL_BAR_WIDTH_TRIM
,
5258 top
, VERTICAL_SCROLL_BAR_WIDTH_TRIM
,
5262 /* Clear areas not covered by the scroll bar because it's not as
5263 wide as the area reserved for it. This makes sure a
5264 previous mode line display is cleared after C-x 2 C-x 1, for
5267 int area_width
= WINDOW_CONFIG_SCROLL_BAR_COLS (w
) * FRAME_COLUMN_WIDTH (f
);
5268 int rest
= area_width
- sb_width
;
5269 if (rest
> 0 && height
> 0)
5271 if (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w
))
5272 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
5273 left
+ area_width
- rest
, top
,
5274 rest
, height
, False
);
5276 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
5277 left
, top
, rest
, height
, False
);
5281 /* Move/size the scroll bar window. */
5286 wc
.x
= sb_left
+ VERTICAL_SCROLL_BAR_WIDTH_TRIM
;
5288 wc
.width
= sb_width
- VERTICAL_SCROLL_BAR_WIDTH_TRIM
* 2;
5290 XConfigureWindow (FRAME_X_DISPLAY (f
), bar
->x_window
,
5294 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5296 /* Remember new settings. */
5297 bar
->left
= sb_left
;
5299 bar
->width
= sb_width
;
5300 bar
->height
= height
;
5305 #ifdef USE_TOOLKIT_SCROLL_BARS
5306 bar
->fringe_extended_p
= fringe_extended_p
;
5308 x_set_toolkit_scroll_bar_thumb (bar
, portion
, position
, whole
);
5309 #else /* not USE_TOOLKIT_SCROLL_BARS */
5310 /* Set the scroll bar's current state, unless we're currently being
5312 if (NILP (bar
->dragging
))
5314 int top_range
= VERTICAL_SCROLL_BAR_TOP_RANGE (f
, height
);
5317 x_scroll_bar_set_handle (bar
, 0, top_range
, 0);
5320 int start
= ((double) position
* top_range
) / whole
;
5321 int end
= ((double) (position
+ portion
) * top_range
) / whole
;
5322 x_scroll_bar_set_handle (bar
, start
, end
, 0);
5325 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5327 XSETVECTOR (w
->vertical_scroll_bar
, bar
);
5331 /* The following three hooks are used when we're doing a thorough
5332 redisplay of the frame. We don't explicitly know which scroll bars
5333 are going to be deleted, because keeping track of when windows go
5334 away is a real pain - "Can you say set-window-configuration, boys
5335 and girls?" Instead, we just assert at the beginning of redisplay
5336 that *all* scroll bars are to be removed, and then save a scroll bar
5337 from the fiery pit when we actually redisplay its window. */
5339 /* Arrange for all scroll bars on FRAME to be removed at the next call
5340 to `*judge_scroll_bars_hook'. A scroll bar may be spared if
5341 `*redeem_scroll_bar_hook' is applied to its window before the judgment. */
5344 XTcondemn_scroll_bars (frame
)
5347 /* Transfer all the scroll bars to FRAME_CONDEMNED_SCROLL_BARS. */
5348 while (! NILP (FRAME_SCROLL_BARS (frame
)))
5351 bar
= FRAME_SCROLL_BARS (frame
);
5352 FRAME_SCROLL_BARS (frame
) = XSCROLL_BAR (bar
)->next
;
5353 XSCROLL_BAR (bar
)->next
= FRAME_CONDEMNED_SCROLL_BARS (frame
);
5354 XSCROLL_BAR (bar
)->prev
= Qnil
;
5355 if (! NILP (FRAME_CONDEMNED_SCROLL_BARS (frame
)))
5356 XSCROLL_BAR (FRAME_CONDEMNED_SCROLL_BARS (frame
))->prev
= bar
;
5357 FRAME_CONDEMNED_SCROLL_BARS (frame
) = bar
;
5362 /* Un-mark WINDOW's scroll bar for deletion in this judgment cycle.
5363 Note that WINDOW isn't necessarily condemned at all. */
5366 XTredeem_scroll_bar (window
)
5367 struct window
*window
;
5369 struct scroll_bar
*bar
;
5372 /* We can't redeem this window's scroll bar if it doesn't have one. */
5373 if (NILP (window
->vertical_scroll_bar
))
5376 bar
= XSCROLL_BAR (window
->vertical_scroll_bar
);
5378 /* Unlink it from the condemned list. */
5379 f
= XFRAME (WINDOW_FRAME (window
));
5380 if (NILP (bar
->prev
))
5382 /* If the prev pointer is nil, it must be the first in one of
5384 if (EQ (FRAME_SCROLL_BARS (f
), window
->vertical_scroll_bar
))
5385 /* It's not condemned. Everything's fine. */
5387 else if (EQ (FRAME_CONDEMNED_SCROLL_BARS (f
),
5388 window
->vertical_scroll_bar
))
5389 FRAME_CONDEMNED_SCROLL_BARS (f
) = bar
->next
;
5391 /* If its prev pointer is nil, it must be at the front of
5392 one or the other! */
5396 XSCROLL_BAR (bar
->prev
)->next
= bar
->next
;
5398 if (! NILP (bar
->next
))
5399 XSCROLL_BAR (bar
->next
)->prev
= bar
->prev
;
5401 bar
->next
= FRAME_SCROLL_BARS (f
);
5403 XSETVECTOR (FRAME_SCROLL_BARS (f
), bar
);
5404 if (! NILP (bar
->next
))
5405 XSETVECTOR (XSCROLL_BAR (bar
->next
)->prev
, bar
);
5408 /* Remove all scroll bars on FRAME that haven't been saved since the
5409 last call to `*condemn_scroll_bars_hook'. */
5412 XTjudge_scroll_bars (f
)
5415 Lisp_Object bar
, next
;
5417 bar
= FRAME_CONDEMNED_SCROLL_BARS (f
);
5419 /* Clear out the condemned list now so we won't try to process any
5420 more events on the hapless scroll bars. */
5421 FRAME_CONDEMNED_SCROLL_BARS (f
) = Qnil
;
5423 for (; ! NILP (bar
); bar
= next
)
5425 struct scroll_bar
*b
= XSCROLL_BAR (bar
);
5427 x_scroll_bar_remove (b
);
5430 b
->next
= b
->prev
= Qnil
;
5433 /* Now there should be no references to the condemned scroll bars,
5434 and they should get garbage-collected. */
5438 #ifndef USE_TOOLKIT_SCROLL_BARS
5439 /* Handle an Expose or GraphicsExpose event on a scroll bar. This
5440 is a no-op when using toolkit scroll bars.
5442 This may be called from a signal handler, so we have to ignore GC
5446 x_scroll_bar_expose (bar
, event
)
5447 struct scroll_bar
*bar
;
5450 Window w
= bar
->x_window
;
5451 FRAME_PTR f
= XFRAME (WINDOW_FRAME (XWINDOW (bar
->window
)));
5452 GC gc
= f
->output_data
.x
->normal_gc
;
5453 int width_trim
= VERTICAL_SCROLL_BAR_WIDTH_TRIM
;
5457 x_scroll_bar_set_handle (bar
, bar
->start
, bar
->end
, 1);
5459 /* Switch to scroll bar foreground color. */
5460 if (f
->output_data
.x
->scroll_bar_foreground_pixel
!= -1)
5461 XSetForeground (FRAME_X_DISPLAY (f
), gc
,
5462 f
->output_data
.x
->scroll_bar_foreground_pixel
);
5464 /* Draw a one-pixel border just inside the edges of the scroll bar. */
5465 XDrawRectangle (FRAME_X_DISPLAY (f
), w
, gc
,
5467 /* x, y, width, height */
5469 bar
->width
- 1 - width_trim
- width_trim
,
5472 /* Restore the foreground color of the GC if we changed it above. */
5473 if (f
->output_data
.x
->scroll_bar_foreground_pixel
!= -1)
5474 XSetForeground (FRAME_X_DISPLAY (f
), gc
,
5475 FRAME_FOREGROUND_PIXEL (f
));
5480 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5482 /* Handle a mouse click on the scroll bar BAR. If *EMACS_EVENT's kind
5483 is set to something other than NO_EVENT, it is enqueued.
5485 This may be called from a signal handler, so we have to ignore GC
5490 x_scroll_bar_handle_click (bar
, event
, emacs_event
)
5491 struct scroll_bar
*bar
;
5493 struct input_event
*emacs_event
;
5495 if (! WINDOWP (bar
->window
))
5498 emacs_event
->kind
= SCROLL_BAR_CLICK_EVENT
;
5499 emacs_event
->code
= event
->xbutton
.button
- Button1
;
5500 emacs_event
->modifiers
5501 = (x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO
5502 (XFRAME (WINDOW_FRAME (XWINDOW (bar
->window
)))),
5503 event
->xbutton
.state
)
5504 | (event
->type
== ButtonRelease
5507 emacs_event
->frame_or_window
= bar
->window
;
5508 emacs_event
->arg
= Qnil
;
5509 emacs_event
->timestamp
= event
->xbutton
.time
;
5512 = VERTICAL_SCROLL_BAR_TOP_RANGE (f
, bar
->height
);
5513 int y
= event
->xbutton
.y
- VERTICAL_SCROLL_BAR_TOP_BORDER
;
5516 if (y
> top_range
) y
= top_range
;
5519 emacs_event
->part
= scroll_bar_above_handle
;
5520 else if (y
< bar
->end
+ VERTICAL_SCROLL_BAR_MIN_HANDLE
)
5521 emacs_event
->part
= scroll_bar_handle
;
5523 emacs_event
->part
= scroll_bar_below_handle
;
5525 #ifndef USE_TOOLKIT_SCROLL_BARS
5526 /* If the user has released the handle, set it to its final position. */
5527 if (event
->type
== ButtonRelease
5528 && ! NILP (bar
->dragging
))
5530 int new_start
= y
- XINT (bar
->dragging
);
5531 int new_end
= new_start
+ bar
->end
- bar
->start
;
5533 x_scroll_bar_set_handle (bar
, new_start
, new_end
, 0);
5534 bar
->dragging
= Qnil
;
5538 XSETINT (emacs_event
->x
, y
);
5539 XSETINT (emacs_event
->y
, top_range
);
5543 #ifndef USE_TOOLKIT_SCROLL_BARS
5545 /* Handle some mouse motion while someone is dragging the scroll bar.
5547 This may be called from a signal handler, so we have to ignore GC
5551 x_scroll_bar_note_movement (bar
, event
)
5552 struct scroll_bar
*bar
;
5555 FRAME_PTR f
= XFRAME (XWINDOW (bar
->window
)->frame
);
5557 last_mouse_movement_time
= event
->xmotion
.time
;
5560 XSETVECTOR (last_mouse_scroll_bar
, bar
);
5562 /* If we're dragging the bar, display it. */
5563 if (! NILP (bar
->dragging
))
5565 /* Where should the handle be now? */
5566 int new_start
= event
->xmotion
.y
- XINT (bar
->dragging
);
5568 if (new_start
!= bar
->start
)
5570 int new_end
= new_start
+ bar
->end
- bar
->start
;
5572 x_scroll_bar_set_handle (bar
, new_start
, new_end
, 0);
5577 #endif /* !USE_TOOLKIT_SCROLL_BARS */
5579 /* Return information to the user about the current position of the mouse
5580 on the scroll bar. */
5583 x_scroll_bar_report_motion (fp
, bar_window
, part
, x
, y
, time
)
5585 Lisp_Object
*bar_window
;
5586 enum scroll_bar_part
*part
;
5588 unsigned long *time
;
5590 struct scroll_bar
*bar
= XSCROLL_BAR (last_mouse_scroll_bar
);
5591 Window w
= bar
->x_window
;
5592 FRAME_PTR f
= XFRAME (WINDOW_FRAME (XWINDOW (bar
->window
)));
5594 Window dummy_window
;
5596 unsigned int dummy_mask
;
5600 /* Get the mouse's position relative to the scroll bar window, and
5602 if (! XQueryPointer (FRAME_X_DISPLAY (f
), w
,
5604 /* Root, child, root x and root y. */
5605 &dummy_window
, &dummy_window
,
5606 &dummy_coord
, &dummy_coord
,
5608 /* Position relative to scroll bar. */
5611 /* Mouse buttons and modifier keys. */
5617 = VERTICAL_SCROLL_BAR_TOP_RANGE (f
, bar
->height
);
5619 win_y
-= VERTICAL_SCROLL_BAR_TOP_BORDER
;
5621 if (! NILP (bar
->dragging
))
5622 win_y
-= XINT (bar
->dragging
);
5626 if (win_y
> top_range
)
5630 *bar_window
= bar
->window
;
5632 if (! NILP (bar
->dragging
))
5633 *part
= scroll_bar_handle
;
5634 else if (win_y
< bar
->start
)
5635 *part
= scroll_bar_above_handle
;
5636 else if (win_y
< bar
->end
+ VERTICAL_SCROLL_BAR_MIN_HANDLE
)
5637 *part
= scroll_bar_handle
;
5639 *part
= scroll_bar_below_handle
;
5641 XSETINT (*x
, win_y
);
5642 XSETINT (*y
, top_range
);
5645 last_mouse_scroll_bar
= Qnil
;
5648 *time
= last_mouse_movement_time
;
5654 /* The screen has been cleared so we may have changed foreground or
5655 background colors, and the scroll bars may need to be redrawn.
5656 Clear out the scroll bars, and ask for expose events, so we can
5660 x_scroll_bar_clear (f
)
5663 #ifndef USE_TOOLKIT_SCROLL_BARS
5666 /* We can have scroll bars even if this is 0,
5667 if we just turned off scroll bar mode.
5668 But in that case we should not clear them. */
5669 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f
))
5670 for (bar
= FRAME_SCROLL_BARS (f
); VECTORP (bar
);
5671 bar
= XSCROLL_BAR (bar
)->next
)
5672 XClearArea (FRAME_X_DISPLAY (f
),
5673 XSCROLL_BAR (bar
)->x_window
,
5675 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5679 /* The main X event-reading loop - XTread_socket. */
5681 /* This holds the state XLookupString needs to implement dead keys
5682 and other tricks known as "compose processing". _X Window System_
5683 says that a portable program can't use this, but Stephen Gildea assures
5684 me that letting the compiler initialize it to zeros will work okay.
5686 This must be defined outside of XTread_socket, for the same reasons
5687 given for enter_timestamp, above. */
5689 static XComposeStatus compose_status
;
5691 /* Record the last 100 characters stored
5692 to help debug the loss-of-chars-during-GC problem. */
5694 static int temp_index
;
5695 static short temp_buffer
[100];
5697 #define STORE_KEYSYM_FOR_DEBUG(keysym) \
5698 if (temp_index == sizeof temp_buffer / sizeof (short)) \
5700 temp_buffer[temp_index++] = (keysym)
5702 /* Set this to nonzero to fake an "X I/O error"
5703 on a particular display. */
5705 struct x_display_info
*XTread_socket_fake_io_error
;
5707 /* When we find no input here, we occasionally do a no-op command
5708 to verify that the X server is still running and we can still talk with it.
5709 We try all the open displays, one by one.
5710 This variable is used for cycling thru the displays. */
5712 static struct x_display_info
*next_noop_dpyinfo
;
5714 #define SET_SAVED_MENU_EVENT(size) \
5717 if (f->output_data.x->saved_menu_event == 0) \
5718 f->output_data.x->saved_menu_event \
5719 = (XEvent *) xmalloc (sizeof (XEvent)); \
5720 bcopy (&event, f->output_data.x->saved_menu_event, size); \
5721 inev.ie.kind = MENU_BAR_ACTIVATE_EVENT; \
5722 XSETFRAME (inev.ie.frame_or_window, f); \
5726 #define SET_SAVED_BUTTON_EVENT SET_SAVED_MENU_EVENT (sizeof (XButtonEvent))
5727 #define SET_SAVED_KEY_EVENT SET_SAVED_MENU_EVENT (sizeof (XKeyEvent))
5737 /* Filter events for the current X input method.
5738 DPYINFO is the display this event is for.
5739 EVENT is the X event to filter.
5741 Returns non-zero if the event was filtered, caller shall not process
5743 Returns zero if event is wasn't filtered. */
5747 x_filter_event (dpyinfo
, event
)
5748 struct x_display_info
*dpyinfo
;
5751 /* XFilterEvent returns non-zero if the input method has
5752 consumed the event. We pass the frame's X window to
5753 XFilterEvent because that's the one for which the IC
5756 struct frame
*f1
= x_any_window_to_frame (dpyinfo
,
5757 event
->xclient
.window
);
5759 return XFilterEvent (event
, f1
? FRAME_X_WINDOW (f1
) : None
);
5764 static int current_count
;
5765 static int current_finish
;
5766 static struct input_event
*current_hold_quit
;
5768 /* This is the filter function invoked by the GTK event loop.
5769 It is invoked before the XEvent is translated to a GdkEvent,
5770 so we have a chance to act on the event before GTK. */
5771 static GdkFilterReturn
5772 event_handler_gdk (gxev
, ev
, data
)
5777 XEvent
*xev
= (XEvent
*) gxev
;
5779 if (current_count
>= 0)
5781 struct x_display_info
*dpyinfo
;
5783 dpyinfo
= x_display_info_for_display (xev
->xany
.display
);
5786 /* Filter events for the current X input method.
5787 GTK calls XFilterEvent but not for key press and release,
5788 so we do it here. */
5789 if (xev
->type
== KeyPress
|| xev
->type
== KeyRelease
)
5790 if (dpyinfo
&& x_filter_event (dpyinfo
, xev
))
5791 return GDK_FILTER_REMOVE
;
5795 current_finish
= X_EVENT_NORMAL
;
5799 handle_one_xevent (dpyinfo
, xev
, ¤t_finish
,
5804 current_finish
= x_dispatch_event (xev
, xev
->xany
.display
);
5806 if (current_finish
== X_EVENT_GOTO_OUT
|| current_finish
== X_EVENT_DROP
)
5807 return GDK_FILTER_REMOVE
;
5809 return GDK_FILTER_CONTINUE
;
5811 #endif /* USE_GTK */
5814 /* Handles the XEvent EVENT on display DPYINFO.
5816 *FINISH is X_EVENT_GOTO_OUT if caller should stop reading events.
5817 *FINISH is zero if caller should continue reading events.
5818 *FINISH is X_EVENT_DROP if event should not be passed to the toolkit.
5820 We return the number of characters stored into the buffer. */
5823 handle_one_xevent (dpyinfo
, eventp
, finish
, hold_quit
)
5824 struct x_display_info
*dpyinfo
;
5827 struct input_event
*hold_quit
;
5830 struct input_event ie
;
5831 struct selection_input_event sie
;
5836 struct frame
*f
= NULL
;
5837 struct coding_system coding
;
5838 XEvent event
= *eventp
;
5840 *finish
= X_EVENT_NORMAL
;
5842 EVENT_INIT (inev
.ie
);
5843 inev
.ie
.kind
= NO_EVENT
;
5846 if (pending_event_wait
.eventtype
== event
.type
)
5847 pending_event_wait
.eventtype
= 0; /* Indicates we got it. */
5853 if (event
.xclient
.message_type
5854 == dpyinfo
->Xatom_wm_protocols
5855 && event
.xclient
.format
== 32)
5857 if (event
.xclient
.data
.l
[0]
5858 == dpyinfo
->Xatom_wm_take_focus
)
5860 /* Use x_any_window_to_frame because this
5861 could be the shell widget window
5862 if the frame has no title bar. */
5863 f
= x_any_window_to_frame (dpyinfo
, event
.xclient
.window
);
5865 /* Not quite sure this is needed -pd */
5866 if (f
&& FRAME_XIC (f
))
5867 XSetICFocus (FRAME_XIC (f
));
5869 #if 0 /* Emacs sets WM hints whose `input' field is `true'. This
5870 instructs the WM to set the input focus automatically for
5871 Emacs with a call to XSetInputFocus. Setting WM_TAKE_FOCUS
5872 tells the WM to send us a ClientMessage WM_TAKE_FOCUS after
5873 it has set the focus. So, XSetInputFocus below is not
5876 The call to XSetInputFocus below has also caused trouble. In
5877 cases where the XSetInputFocus done by the WM and the one
5878 below are temporally close (on a fast machine), the call
5879 below can generate additional FocusIn events which confuse
5882 /* Since we set WM_TAKE_FOCUS, we must call
5883 XSetInputFocus explicitly. But not if f is null,
5884 since that might be an event for a deleted frame. */
5887 Display
*d
= event
.xclient
.display
;
5888 /* Catch and ignore errors, in case window has been
5889 iconified by a window manager such as GWM. */
5891 XSetInputFocus (d
, event
.xclient
.window
,
5892 /* The ICCCM says this is
5893 the only valid choice. */
5895 event
.xclient
.data
.l
[1]);
5896 /* This is needed to detect the error
5897 if there is an error. */
5899 x_uncatch_errors ();
5901 /* Not certain about handling scroll bars here */
5906 if (event
.xclient
.data
.l
[0]
5907 == dpyinfo
->Xatom_wm_save_yourself
)
5909 /* Save state modify the WM_COMMAND property to
5910 something which can reinstate us. This notifies
5911 the session manager, who's looking for such a
5912 PropertyNotify. Can restart processing when
5913 a keyboard or mouse event arrives. */
5914 /* If we have a session manager, don't set this.
5915 KDE will then start two Emacsen, one for the
5916 session manager and one for this. */
5918 if (! x_session_have_connection ())
5921 f
= x_top_window_to_frame (dpyinfo
,
5922 event
.xclient
.window
);
5923 /* This is just so we only give real data once
5924 for a single Emacs process. */
5925 if (f
== SELECTED_FRAME ())
5926 XSetCommand (FRAME_X_DISPLAY (f
),
5927 event
.xclient
.window
,
5928 initial_argv
, initial_argc
);
5930 XSetCommand (FRAME_X_DISPLAY (f
),
5931 event
.xclient
.window
,
5937 if (event
.xclient
.data
.l
[0]
5938 == dpyinfo
->Xatom_wm_delete_window
)
5940 f
= x_any_window_to_frame (dpyinfo
,
5941 event
.xclient
.window
);
5943 goto OTHER
; /* May be a dialog that is to be removed */
5945 inev
.ie
.kind
= DELETE_WINDOW_EVENT
;
5946 XSETFRAME (inev
.ie
.frame_or_window
, f
);
5953 if (event
.xclient
.message_type
5954 == dpyinfo
->Xatom_wm_configure_denied
)
5959 if (event
.xclient
.message_type
5960 == dpyinfo
->Xatom_wm_window_moved
)
5963 f
= x_window_to_frame (dpyinfo
, event
.xclient
.window
);
5965 new_x
= event
.xclient
.data
.s
[0];
5966 new_y
= event
.xclient
.data
.s
[1];
5970 f
->left_pos
= new_x
;
5977 if (event
.xclient
.message_type
5978 == dpyinfo
->Xatom_editres
)
5980 f
= x_any_window_to_frame (dpyinfo
, event
.xclient
.window
);
5982 _XEditResCheckMessages (f
->output_data
.x
->widget
, NULL
,
5986 #endif /* HACK_EDITRES */
5988 if ((event
.xclient
.message_type
5989 == dpyinfo
->Xatom_DONE
)
5990 || (event
.xclient
.message_type
5991 == dpyinfo
->Xatom_PAGE
))
5993 /* Ghostview job completed. Kill it. We could
5994 reply with "Next" if we received "Page", but we
5995 currently never do because we are interested in
5996 images, only, which should have 1 page. */
5997 Pixmap pixmap
= (Pixmap
) event
.xclient
.data
.l
[1];
5998 f
= x_window_to_frame (dpyinfo
, event
.xclient
.window
);
6001 x_kill_gs_process (pixmap
, f
);
6002 expose_frame (f
, 0, 0, 0, 0);
6006 #ifdef USE_TOOLKIT_SCROLL_BARS
6007 /* Scroll bar callbacks send a ClientMessage from which
6008 we construct an input_event. */
6009 if (event
.xclient
.message_type
6010 == dpyinfo
->Xatom_Scrollbar
)
6012 x_scroll_bar_to_input_event (&event
, &inev
.ie
);
6013 *finish
= X_EVENT_GOTO_OUT
;
6016 #endif /* USE_TOOLKIT_SCROLL_BARS */
6018 /* XEmbed messages from the embedder (if any). */
6019 if (event
.xclient
.message_type
6020 == dpyinfo
->Xatom_XEMBED
)
6022 enum xembed_message msg
= event
.xclient
.data
.l
[1];
6023 if (msg
== XEMBED_FOCUS_IN
|| msg
== XEMBED_FOCUS_OUT
)
6024 x_detect_focus_change (dpyinfo
, &event
, &inev
.ie
);
6026 *finish
= X_EVENT_GOTO_OUT
;
6030 xft_settings_event (dpyinfo
, &event
);
6032 f
= x_any_window_to_frame (dpyinfo
, event
.xclient
.window
);
6035 if (x_handle_dnd_message (f
, &event
.xclient
, dpyinfo
, &inev
.ie
))
6036 *finish
= X_EVENT_DROP
;
6040 case SelectionNotify
:
6041 last_user_time
= event
.xselection
.time
;
6042 #ifdef USE_X_TOOLKIT
6043 if (! x_window_to_frame (dpyinfo
, event
.xselection
.requestor
))
6045 #endif /* not USE_X_TOOLKIT */
6046 x_handle_selection_notify (&event
.xselection
);
6049 case SelectionClear
: /* Someone has grabbed ownership. */
6050 last_user_time
= event
.xselectionclear
.time
;
6051 #ifdef USE_X_TOOLKIT
6052 if (! x_window_to_frame (dpyinfo
, event
.xselectionclear
.window
))
6054 #endif /* USE_X_TOOLKIT */
6056 XSelectionClearEvent
*eventp
= (XSelectionClearEvent
*) &event
;
6058 inev
.ie
.kind
= SELECTION_CLEAR_EVENT
;
6059 SELECTION_EVENT_DISPLAY (&inev
.sie
) = eventp
->display
;
6060 SELECTION_EVENT_SELECTION (&inev
.sie
) = eventp
->selection
;
6061 SELECTION_EVENT_TIME (&inev
.sie
) = eventp
->time
;
6062 inev
.ie
.frame_or_window
= Qnil
;
6066 case SelectionRequest
: /* Someone wants our selection. */
6067 last_user_time
= event
.xselectionrequest
.time
;
6068 #ifdef USE_X_TOOLKIT
6069 if (!x_window_to_frame (dpyinfo
, event
.xselectionrequest
.owner
))
6071 #endif /* USE_X_TOOLKIT */
6073 XSelectionRequestEvent
*eventp
6074 = (XSelectionRequestEvent
*) &event
;
6076 inev
.ie
.kind
= SELECTION_REQUEST_EVENT
;
6077 SELECTION_EVENT_DISPLAY (&inev
.sie
) = eventp
->display
;
6078 SELECTION_EVENT_REQUESTOR (&inev
.sie
) = eventp
->requestor
;
6079 SELECTION_EVENT_SELECTION (&inev
.sie
) = eventp
->selection
;
6080 SELECTION_EVENT_TARGET (&inev
.sie
) = eventp
->target
;
6081 SELECTION_EVENT_PROPERTY (&inev
.sie
) = eventp
->property
;
6082 SELECTION_EVENT_TIME (&inev
.sie
) = eventp
->time
;
6083 inev
.ie
.frame_or_window
= Qnil
;
6087 case PropertyNotify
:
6088 last_user_time
= event
.xproperty
.time
;
6089 f
= x_top_window_to_frame (dpyinfo
, event
.xproperty
.window
);
6090 if (f
&& event
.xproperty
.atom
== dpyinfo
->Xatom_net_wm_state
)
6091 x_handle_net_wm_state (f
, &event
.xproperty
);
6093 x_handle_property_notify (&event
.xproperty
);
6094 xft_settings_event (dpyinfo
, &event
);
6097 case ReparentNotify
:
6098 f
= x_top_window_to_frame (dpyinfo
, event
.xreparent
.window
);
6102 f
->output_data
.x
->parent_desc
= event
.xreparent
.parent
;
6103 x_real_positions (f
, &x
, &y
);
6107 /* Perhaps reparented due to a WM restart. Reset this. */
6108 FRAME_X_DISPLAY_INFO (f
)->wm_type
= X_WMTYPE_UNKNOWN
;
6109 FRAME_X_DISPLAY_INFO (f
)->net_supported_window
= 0;
6114 f
= x_window_to_frame (dpyinfo
, event
.xexpose
.window
);
6118 /* This seems to be needed for GTK 2.6. */
6119 x_clear_area (event
.xexpose
.display
,
6120 event
.xexpose
.window
,
6121 event
.xexpose
.x
, event
.xexpose
.y
,
6122 event
.xexpose
.width
, event
.xexpose
.height
,
6125 if (f
->async_visible
== 0)
6127 f
->async_visible
= 1;
6128 f
->async_iconified
= 0;
6129 f
->output_data
.x
->has_been_visible
= 1;
6130 SET_FRAME_GARBAGED (f
);
6134 event
.xexpose
.x
, event
.xexpose
.y
,
6135 event
.xexpose
.width
, event
.xexpose
.height
);
6139 #ifndef USE_TOOLKIT_SCROLL_BARS
6140 struct scroll_bar
*bar
;
6142 #if defined USE_LUCID
6143 /* Submenus of the Lucid menu bar aren't widgets
6144 themselves, so there's no way to dispatch events
6145 to them. Recognize this case separately. */
6148 = x_window_to_menu_bar (event
.xexpose
.window
);
6150 xlwmenu_redisplay (widget
);
6152 #endif /* USE_LUCID */
6154 #ifdef USE_TOOLKIT_SCROLL_BARS
6155 /* Dispatch event to the widget. */
6157 #else /* not USE_TOOLKIT_SCROLL_BARS */
6158 bar
= x_window_to_scroll_bar (event
.xexpose
.display
,
6159 event
.xexpose
.window
);
6162 x_scroll_bar_expose (bar
, &event
);
6163 #ifdef USE_X_TOOLKIT
6166 #endif /* USE_X_TOOLKIT */
6167 #endif /* not USE_TOOLKIT_SCROLL_BARS */
6171 case GraphicsExpose
: /* This occurs when an XCopyArea's
6172 source area was obscured or not
6174 f
= x_window_to_frame (dpyinfo
, event
.xgraphicsexpose
.drawable
);
6178 event
.xgraphicsexpose
.x
, event
.xgraphicsexpose
.y
,
6179 event
.xgraphicsexpose
.width
,
6180 event
.xgraphicsexpose
.height
);
6182 #ifdef USE_X_TOOLKIT
6185 #endif /* USE_X_TOOLKIT */
6188 case NoExpose
: /* This occurs when an XCopyArea's
6189 source area was completely
6194 /* Redo the mouse-highlight after the tooltip has gone. */
6195 if (event
.xmap
.window
== tip_window
)
6198 redo_mouse_highlight ();
6201 f
= x_top_window_to_frame (dpyinfo
, event
.xunmap
.window
);
6202 if (f
) /* F may no longer exist if
6203 the frame was deleted. */
6205 /* While a frame is unmapped, display generation is
6206 disabled; you don't want to spend time updating a
6207 display that won't ever be seen. */
6208 f
->async_visible
= 0;
6209 /* We can't distinguish, from the event, whether the window
6210 has become iconified or invisible. So assume, if it
6211 was previously visible, than now it is iconified.
6212 But x_make_frame_invisible clears both
6213 the visible flag and the iconified flag;
6214 and that way, we know the window is not iconified now. */
6215 if (FRAME_VISIBLE_P (f
) || FRAME_ICONIFIED_P (f
))
6217 f
->async_iconified
= 1;
6219 inev
.ie
.kind
= ICONIFY_EVENT
;
6220 XSETFRAME (inev
.ie
.frame_or_window
, f
);
6226 if (event
.xmap
.window
== tip_window
)
6227 /* The tooltip has been drawn already. Avoid
6228 the SET_FRAME_GARBAGED below. */
6231 /* We use x_top_window_to_frame because map events can
6232 come for sub-windows and they don't mean that the
6233 frame is visible. */
6234 f
= x_top_window_to_frame (dpyinfo
, event
.xmap
.window
);
6237 /* wait_reading_process_output will notice this and update
6238 the frame's display structures.
6239 If we where iconified, we should not set garbaged,
6240 because that stops redrawing on Expose events. This looks
6241 bad if we are called from a recursive event loop
6242 (x_dispatch_event), for example when a dialog is up. */
6243 if (! f
->async_iconified
)
6244 SET_FRAME_GARBAGED (f
);
6246 /* Check if fullscreen was specified before we where mapped the
6247 first time, i.e. from the command line. */
6248 if (!f
->output_data
.x
->has_been_visible
)
6249 x_check_fullscreen (f
);
6251 f
->async_visible
= 1;
6252 f
->async_iconified
= 0;
6253 f
->output_data
.x
->has_been_visible
= 1;
6257 inev
.ie
.kind
= DEICONIFY_EVENT
;
6258 XSETFRAME (inev
.ie
.frame_or_window
, f
);
6260 else if (! NILP (Vframe_list
)
6261 && ! NILP (XCDR (Vframe_list
)))
6262 /* Force a redisplay sooner or later
6263 to update the frame titles
6264 in case this is the second frame. */
6265 record_asynch_buffer_change ();
6268 xg_frame_resized (f
, -1, -1);
6275 last_user_time
= event
.xkey
.time
;
6276 ignore_next_mouse_click_timeout
= 0;
6278 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
6279 /* Dispatch KeyPress events when in menu. */
6280 if (popup_activated ())
6284 f
= x_any_window_to_frame (dpyinfo
, event
.xkey
.window
);
6286 /* If mouse-highlight is an integer, input clears out
6287 mouse highlighting. */
6288 if (!dpyinfo
->mouse_face_hidden
&& INTEGERP (Vmouse_highlight
)
6290 || !EQ (f
->tool_bar_window
, dpyinfo
->mouse_face_window
)))
6292 clear_mouse_face (dpyinfo
);
6293 dpyinfo
->mouse_face_hidden
= 1;
6296 #if defined USE_MOTIF && defined USE_TOOLKIT_SCROLL_BARS
6299 /* Scroll bars consume key events, but we want
6300 the keys to go to the scroll bar's frame. */
6301 Widget widget
= XtWindowToWidget (dpyinfo
->display
,
6303 if (widget
&& XmIsScrollBar (widget
))
6305 widget
= XtParent (widget
);
6306 f
= x_any_window_to_frame (dpyinfo
, XtWindow (widget
));
6309 #endif /* USE_MOTIF and USE_TOOLKIT_SCROLL_BARS */
6313 KeySym keysym
, orig_keysym
;
6314 /* al%imercury@uunet.uu.net says that making this 81
6315 instead of 80 fixed a bug whereby meta chars made
6318 It seems that some version of XmbLookupString has
6319 a bug of not returning XBufferOverflow in
6320 status_return even if the input is too long to
6321 fit in 81 bytes. So, we must prepare sufficient
6322 bytes for copy_buffer. 513 bytes (256 chars for
6323 two-byte character set) seems to be a fairly good
6324 approximation. -- 2000.8.10 handa@etl.go.jp */
6325 unsigned char copy_buffer
[513];
6326 unsigned char *copy_bufptr
= copy_buffer
;
6327 int copy_bufsiz
= sizeof (copy_buffer
);
6329 Lisp_Object coding_system
= Qlatin_1
;
6333 /* Don't pass keys to GTK. A Tab will shift focus to the
6334 tool bar in GTK 2.4. Keys will still go to menus and
6335 dialogs because in that case popup_activated is TRUE
6337 *finish
= X_EVENT_DROP
;
6341 |= x_emacs_to_x_modifiers (FRAME_X_DISPLAY_INFO (f
),
6342 extra_keyboard_modifiers
);
6343 modifiers
= event
.xkey
.state
;
6345 /* This will have to go some day... */
6347 /* make_lispy_event turns chars into control chars.
6348 Don't do it here because XLookupString is too eager. */
6349 event
.xkey
.state
&= ~ControlMask
;
6350 event
.xkey
.state
&= ~(dpyinfo
->meta_mod_mask
6351 | dpyinfo
->super_mod_mask
6352 | dpyinfo
->hyper_mod_mask
6353 | dpyinfo
->alt_mod_mask
);
6355 /* In case Meta is ComposeCharacter,
6356 clear its status. According to Markus Ehrnsperger
6357 Markus.Ehrnsperger@lehrstuhl-bross.physik.uni-muenchen.de
6358 this enables ComposeCharacter to work whether or
6359 not it is combined with Meta. */
6360 if (modifiers
& dpyinfo
->meta_mod_mask
)
6361 bzero (&compose_status
, sizeof (compose_status
));
6366 Status status_return
;
6368 coding_system
= Vlocale_coding_system
;
6369 nbytes
= XmbLookupString (FRAME_XIC (f
),
6370 &event
.xkey
, copy_bufptr
,
6371 copy_bufsiz
, &keysym
,
6373 if (status_return
== XBufferOverflow
)
6375 copy_bufsiz
= nbytes
+ 1;
6376 copy_bufptr
= (unsigned char *) alloca (copy_bufsiz
);
6377 nbytes
= XmbLookupString (FRAME_XIC (f
),
6378 &event
.xkey
, copy_bufptr
,
6379 copy_bufsiz
, &keysym
,
6382 /* Xutf8LookupString is a new but already deprecated interface. -stef */
6383 if (status_return
== XLookupNone
)
6385 else if (status_return
== XLookupChars
)
6390 else if (status_return
!= XLookupKeySym
6391 && status_return
!= XLookupBoth
)
6395 nbytes
= XLookupString (&event
.xkey
, copy_bufptr
,
6396 copy_bufsiz
, &keysym
,
6399 nbytes
= XLookupString (&event
.xkey
, copy_bufptr
,
6400 copy_bufsiz
, &keysym
,
6404 /* If not using XIM/XIC, and a compose sequence is in progress,
6405 we break here. Otherwise, chars_matched is always 0. */
6406 if (compose_status
.chars_matched
> 0 && nbytes
== 0)
6409 bzero (&compose_status
, sizeof (compose_status
));
6410 orig_keysym
= keysym
;
6412 /* Common for all keysym input events. */
6413 XSETFRAME (inev
.ie
.frame_or_window
, f
);
6415 = x_x_to_emacs_modifiers (FRAME_X_DISPLAY_INFO (f
), modifiers
);
6416 inev
.ie
.timestamp
= event
.xkey
.time
;
6418 /* First deal with keysyms which have defined
6419 translations to characters. */
6420 if (keysym
>= 32 && keysym
< 128)
6421 /* Avoid explicitly decoding each ASCII character. */
6423 inev
.ie
.kind
= ASCII_KEYSTROKE_EVENT
;
6424 inev
.ie
.code
= keysym
;
6428 /* Keysyms directly mapped to Unicode characters. */
6429 if (keysym
>= 0x01000000 && keysym
<= 0x0110FFFF)
6431 if (keysym
< 0x01000080)
6432 inev
.ie
.kind
= ASCII_KEYSTROKE_EVENT
;
6434 inev
.ie
.kind
= MULTIBYTE_CHAR_KEYSTROKE_EVENT
;
6435 inev
.ie
.code
= keysym
& 0xFFFFFF;
6439 /* Now non-ASCII. */
6440 if (HASH_TABLE_P (Vx_keysym_table
)
6441 && (NATNUMP (c
= Fgethash (make_number (keysym
),
6445 inev
.ie
.kind
= (SINGLE_BYTE_CHAR_P (XFASTINT (c
))
6446 ? ASCII_KEYSTROKE_EVENT
6447 : MULTIBYTE_CHAR_KEYSTROKE_EVENT
);
6448 inev
.ie
.code
= XFASTINT (c
);
6452 /* Random non-modifier sorts of keysyms. */
6453 if (((keysym
>= XK_BackSpace
&& keysym
<= XK_Escape
)
6454 || keysym
== XK_Delete
6455 #ifdef XK_ISO_Left_Tab
6456 || (keysym
>= XK_ISO_Left_Tab
6457 && keysym
<= XK_ISO_Enter
)
6459 || IsCursorKey (keysym
) /* 0xff50 <= x < 0xff60 */
6460 || IsMiscFunctionKey (keysym
) /* 0xff60 <= x < VARIES */
6462 /* This recognizes the "extended function
6463 keys". It seems there's no cleaner way.
6464 Test IsModifierKey to avoid handling
6465 mode_switch incorrectly. */
6466 || ((unsigned) (keysym
) >= XK_Select
6467 && (unsigned)(keysym
) < XK_KP_Space
)
6469 #ifdef XK_dead_circumflex
6470 || orig_keysym
== XK_dead_circumflex
6472 #ifdef XK_dead_grave
6473 || orig_keysym
== XK_dead_grave
6475 #ifdef XK_dead_tilde
6476 || orig_keysym
== XK_dead_tilde
6478 #ifdef XK_dead_diaeresis
6479 || orig_keysym
== XK_dead_diaeresis
6481 #ifdef XK_dead_macron
6482 || orig_keysym
== XK_dead_macron
6484 #ifdef XK_dead_degree
6485 || orig_keysym
== XK_dead_degree
6487 #ifdef XK_dead_acute
6488 || orig_keysym
== XK_dead_acute
6490 #ifdef XK_dead_cedilla
6491 || orig_keysym
== XK_dead_cedilla
6493 #ifdef XK_dead_breve
6494 || orig_keysym
== XK_dead_breve
6496 #ifdef XK_dead_ogonek
6497 || orig_keysym
== XK_dead_ogonek
6499 #ifdef XK_dead_caron
6500 || orig_keysym
== XK_dead_caron
6502 #ifdef XK_dead_doubleacute
6503 || orig_keysym
== XK_dead_doubleacute
6505 #ifdef XK_dead_abovedot
6506 || orig_keysym
== XK_dead_abovedot
6508 || IsKeypadKey (keysym
) /* 0xff80 <= x < 0xffbe */
6509 || IsFunctionKey (keysym
) /* 0xffbe <= x < 0xffe1 */
6510 /* Any "vendor-specific" key is ok. */
6511 || (orig_keysym
& (1 << 28))
6512 || (keysym
!= NoSymbol
&& nbytes
== 0))
6513 && ! (IsModifierKey (orig_keysym
)
6514 /* The symbols from XK_ISO_Lock
6515 to XK_ISO_Last_Group_Lock
6516 don't have real modifiers but
6517 should be treated similarly to
6518 Mode_switch by Emacs. */
6519 #if defined XK_ISO_Lock && defined XK_ISO_Last_Group_Lock
6520 || ((unsigned)(orig_keysym
)
6522 && (unsigned)(orig_keysym
)
6523 <= XK_ISO_Last_Group_Lock
)
6527 STORE_KEYSYM_FOR_DEBUG (keysym
);
6528 /* make_lispy_event will convert this to a symbolic
6530 inev
.ie
.kind
= NON_ASCII_KEYSTROKE_EVENT
;
6531 inev
.ie
.code
= keysym
;
6535 { /* Raw bytes, not keysym. */
6540 for (i
= 0, nchars
= 0; i
< nbytes
; i
++)
6542 if (ASCII_BYTE_P (copy_bufptr
[i
]))
6544 STORE_KEYSYM_FOR_DEBUG (copy_bufptr
[i
]);
6547 if (nchars
< nbytes
)
6549 /* Decode the input data. */
6553 /* The input should be decoded with `coding_system'
6554 which depends on which X*LookupString function
6555 we used just above and the locale. */
6556 setup_coding_system (coding_system
, &coding
);
6557 coding
.src_multibyte
= 0;
6558 coding
.dst_multibyte
= 1;
6559 /* The input is converted to events, thus we can't
6560 handle composition. Anyway, there's no XIM that
6561 gives us composition information. */
6562 coding
.common_flags
&= ~CODING_ANNOTATION_MASK
;
6564 require
= MAX_MULTIBYTE_LENGTH
* nbytes
;
6565 coding
.destination
= alloca (require
);
6566 coding
.dst_bytes
= require
;
6567 coding
.mode
|= CODING_MODE_LAST_BLOCK
;
6568 decode_coding_c_string (&coding
, copy_bufptr
, nbytes
, Qnil
);
6569 nbytes
= coding
.produced
;
6570 nchars
= coding
.produced_char
;
6571 copy_bufptr
= coding
.destination
;
6574 /* Convert the input data to a sequence of
6575 character events. */
6576 for (i
= 0; i
< nbytes
; i
+= len
)
6578 if (nchars
== nbytes
)
6579 c
= copy_bufptr
[i
], len
= 1;
6581 c
= STRING_CHAR_AND_LENGTH (copy_bufptr
+ i
,
6583 inev
.ie
.kind
= (SINGLE_BYTE_CHAR_P (c
)
6584 ? ASCII_KEYSTROKE_EVENT
6585 : MULTIBYTE_CHAR_KEYSTROKE_EVENT
);
6587 kbd_buffer_store_event_hold (&inev
.ie
, hold_quit
);
6592 inev
.ie
.kind
= NO_EVENT
; /* Already stored above. */
6594 if (keysym
== NoSymbol
)
6600 /* Don't dispatch this event since XtDispatchEvent calls
6601 XFilterEvent, and two calls in a row may freeze the
6609 last_user_time
= event
.xkey
.time
;
6611 /* Don't dispatch this event since XtDispatchEvent calls
6612 XFilterEvent, and two calls in a row may freeze the
6620 last_user_time
= event
.xcrossing
.time
;
6621 x_detect_focus_change (dpyinfo
, &event
, &inev
.ie
);
6623 f
= x_any_window_to_frame (dpyinfo
, event
.xcrossing
.window
);
6625 if (f
&& x_mouse_click_focus_ignore_position
)
6626 ignore_next_mouse_click_timeout
= event
.xmotion
.time
+ 200;
6628 /* EnterNotify counts as mouse movement,
6629 so update things that depend on mouse position. */
6630 if (f
&& !f
->output_data
.x
->hourglass_p
)
6631 note_mouse_movement (f
, &event
.xmotion
);
6633 /* We may get an EnterNotify on the buttons in the toolbar. In that
6634 case we moved out of any highlighted area and need to note this. */
6635 if (!f
&& last_mouse_glyph_frame
)
6636 note_mouse_movement (last_mouse_glyph_frame
, &event
.xmotion
);
6641 x_detect_focus_change (dpyinfo
, &event
, &inev
.ie
);
6645 last_user_time
= event
.xcrossing
.time
;
6646 x_detect_focus_change (dpyinfo
, &event
, &inev
.ie
);
6648 f
= x_top_window_to_frame (dpyinfo
, event
.xcrossing
.window
);
6651 if (f
== dpyinfo
->mouse_face_mouse_frame
)
6653 /* If we move outside the frame, then we're
6654 certainly no longer on any text in the frame. */
6655 clear_mouse_face (dpyinfo
);
6656 dpyinfo
->mouse_face_mouse_frame
= 0;
6659 /* Generate a nil HELP_EVENT to cancel a help-echo.
6660 Do it only if there's something to cancel.
6661 Otherwise, the startup message is cleared when
6662 the mouse leaves the frame. */
6663 if (any_help_event_p
)
6667 /* See comment in EnterNotify above */
6668 else if (last_mouse_glyph_frame
)
6669 note_mouse_movement (last_mouse_glyph_frame
, &event
.xmotion
);
6674 x_detect_focus_change (dpyinfo
, &event
, &inev
.ie
);
6679 last_user_time
= event
.xmotion
.time
;
6680 previous_help_echo_string
= help_echo_string
;
6681 help_echo_string
= Qnil
;
6683 if (dpyinfo
->grabbed
&& last_mouse_frame
6684 && FRAME_LIVE_P (last_mouse_frame
))
6685 f
= last_mouse_frame
;
6687 f
= x_window_to_frame (dpyinfo
, event
.xmotion
.window
);
6689 if (dpyinfo
->mouse_face_hidden
)
6691 dpyinfo
->mouse_face_hidden
= 0;
6692 clear_mouse_face (dpyinfo
);
6696 if (f
&& xg_event_is_for_scrollbar (f
, &event
))
6702 /* Generate SELECT_WINDOW_EVENTs when needed.
6703 Don't let popup menus influence things (bug#1261). */
6704 if (!NILP (Vmouse_autoselect_window
) && !popup_activated ())
6708 window
= window_from_coordinates (f
,
6709 event
.xmotion
.x
, event
.xmotion
.y
,
6712 /* Window will be selected only when it is not selected now and
6713 last mouse movement event was not in it. Minibuffer window
6714 will be selected only when it is active. */
6715 if (WINDOWP (window
)
6716 && !EQ (window
, last_window
)
6717 && !EQ (window
, selected_window
)
6718 /* For click-to-focus window managers
6719 create event iff we don't leave the
6721 && (focus_follows_mouse
6722 || (EQ (XWINDOW (window
)->frame
,
6723 XWINDOW (selected_window
)->frame
))))
6725 inev
.ie
.kind
= SELECT_WINDOW_EVENT
;
6726 inev
.ie
.frame_or_window
= window
;
6731 if (!note_mouse_movement (f
, &event
.xmotion
))
6732 help_echo_string
= previous_help_echo_string
;
6736 #ifndef USE_TOOLKIT_SCROLL_BARS
6737 struct scroll_bar
*bar
6738 = x_window_to_scroll_bar (event
.xmotion
.display
,
6739 event
.xmotion
.window
);
6742 x_scroll_bar_note_movement (bar
, &event
);
6743 #endif /* USE_TOOLKIT_SCROLL_BARS */
6745 /* If we move outside the frame, then we're
6746 certainly no longer on any text in the frame. */
6747 clear_mouse_face (dpyinfo
);
6750 /* If the contents of the global variable help_echo_string
6751 has changed, generate a HELP_EVENT. */
6752 if (!NILP (help_echo_string
)
6753 || !NILP (previous_help_echo_string
))
6758 case ConfigureNotify
:
6759 f
= x_top_window_to_frame (dpyinfo
, event
.xconfigure
.window
);
6762 && (f
= x_any_window_to_frame (dpyinfo
, event
.xconfigure
.window
))
6763 && event
.xconfigure
.window
== FRAME_X_WINDOW (f
))
6765 xg_frame_resized (f
, event
.xconfigure
.width
,
6766 event
.xconfigure
.height
);
6772 #ifndef USE_X_TOOLKIT
6774 int rows
= FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f
, event
.xconfigure
.height
);
6775 int columns
= FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f
, event
.xconfigure
.width
);
6777 /* In the toolkit version, change_frame_size
6778 is called by the code that handles resizing
6779 of the EmacsFrame widget. */
6781 /* Even if the number of character rows and columns has
6782 not changed, the font size may have changed, so we need
6783 to check the pixel dimensions as well. */
6784 if (columns
!= FRAME_COLS (f
)
6785 || rows
!= FRAME_LINES (f
)
6786 || event
.xconfigure
.width
!= FRAME_PIXEL_WIDTH (f
)
6787 || event
.xconfigure
.height
!= FRAME_PIXEL_HEIGHT (f
))
6789 change_frame_size (f
, rows
, columns
, 0, 1, 0);
6790 SET_FRAME_GARBAGED (f
);
6791 cancel_mouse_face (f
);
6794 FRAME_PIXEL_WIDTH (f
) = event
.xconfigure
.width
;
6795 FRAME_PIXEL_HEIGHT (f
) = event
.xconfigure
.height
;
6796 #endif /* not USE_GTK */
6800 /* GTK creates windows but doesn't map them.
6801 Only get real positions when mapped. */
6802 if (FRAME_GTK_OUTER_WIDGET (f
)
6803 && GTK_WIDGET_MAPPED (FRAME_GTK_OUTER_WIDGET (f
)))
6806 x_real_positions (f
, &f
->left_pos
, &f
->top_pos
);
6810 if (FRAME_XIC (f
) && (FRAME_XIC_STYLE (f
) & XIMStatusArea
))
6811 xic_set_statusarea (f
);
6820 /* If we decide we want to generate an event to be seen
6821 by the rest of Emacs, we put it here. */
6824 bzero (&compose_status
, sizeof (compose_status
));
6825 last_mouse_glyph_frame
= 0;
6826 last_user_time
= event
.xbutton
.time
;
6828 if (dpyinfo
->grabbed
6830 && FRAME_LIVE_P (last_mouse_frame
))
6831 f
= last_mouse_frame
;
6833 f
= x_window_to_frame (dpyinfo
, event
.xbutton
.window
);
6836 if (f
&& xg_event_is_for_scrollbar (f
, &event
))
6841 /* Is this in the tool-bar? */
6842 if (WINDOWP (f
->tool_bar_window
)
6843 && WINDOW_TOTAL_LINES (XWINDOW (f
->tool_bar_window
)))
6846 int x
= event
.xbutton
.x
;
6847 int y
= event
.xbutton
.y
;
6849 window
= window_from_coordinates (f
, x
, y
, 0, 0, 0, 1);
6850 tool_bar_p
= EQ (window
, f
->tool_bar_window
);
6852 if (tool_bar_p
&& event
.xbutton
.button
< 4)
6854 handle_tool_bar_click (f
, x
, y
,
6855 event
.xbutton
.type
== ButtonPress
,
6856 x_x_to_emacs_modifiers (dpyinfo
,
6857 event
.xbutton
.state
));
6862 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
6863 if (! popup_activated ())
6866 if (ignore_next_mouse_click_timeout
)
6868 if (event
.type
== ButtonPress
6869 && (int)(event
.xbutton
.time
- ignore_next_mouse_click_timeout
) > 0)
6871 ignore_next_mouse_click_timeout
= 0;
6872 construct_mouse_click (&inev
.ie
, &event
.xbutton
, f
);
6874 if (event
.type
== ButtonRelease
)
6875 ignore_next_mouse_click_timeout
= 0;
6878 construct_mouse_click (&inev
.ie
, &event
.xbutton
, f
);
6880 if (FRAME_X_EMBEDDED_P (f
))
6881 xembed_send_message (f
, event
.xbutton
.time
,
6882 XEMBED_REQUEST_FOCUS
, 0, 0, 0);
6886 struct scroll_bar
*bar
6887 = x_window_to_scroll_bar (event
.xbutton
.display
,
6888 event
.xbutton
.window
);
6890 #ifdef USE_TOOLKIT_SCROLL_BARS
6891 /* Make the "Ctrl-Mouse-2 splits window" work for toolkit
6893 if (bar
&& event
.xbutton
.state
& ControlMask
)
6895 x_scroll_bar_handle_click (bar
, &event
, &inev
.ie
);
6896 *finish
= X_EVENT_DROP
;
6898 #else /* not USE_TOOLKIT_SCROLL_BARS */
6900 x_scroll_bar_handle_click (bar
, &event
, &inev
.ie
);
6901 #endif /* not USE_TOOLKIT_SCROLL_BARS */
6904 if (event
.type
== ButtonPress
)
6906 dpyinfo
->grabbed
|= (1 << event
.xbutton
.button
);
6907 last_mouse_frame
= f
;
6910 last_tool_bar_item
= -1;
6913 dpyinfo
->grabbed
&= ~(1 << event
.xbutton
.button
);
6915 /* Ignore any mouse motion that happened before this event;
6916 any subsequent mouse-movement Emacs events should reflect
6917 only motion after the ButtonPress/Release. */
6921 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
6922 f
= x_menubar_window_to_frame (dpyinfo
, event
.xbutton
.window
);
6923 /* For a down-event in the menu bar,
6924 don't pass it to Xt right now.
6925 Instead, save it away
6926 and we will pass it to Xt from kbd_buffer_get_event.
6927 That way, we can run some Lisp code first. */
6930 ! popup_activated ()
6931 /* Gtk+ menus only react to the first three buttons. */
6932 && event
.xbutton
.button
< 3
6935 f
&& event
.type
== ButtonPress
6936 /* Verify the event is really within the menu bar
6937 and not just sent to it due to grabbing. */
6938 && event
.xbutton
.x
>= 0
6939 && event
.xbutton
.x
< FRAME_PIXEL_WIDTH (f
)
6940 && event
.xbutton
.y
>= 0
6941 && event
.xbutton
.y
< f
->output_data
.x
->menubar_height
6942 && event
.xbutton
.same_screen
)
6944 SET_SAVED_BUTTON_EVENT
;
6945 XSETFRAME (last_mouse_press_frame
, f
);
6947 *finish
= X_EVENT_DROP
;
6950 else if (event
.type
== ButtonPress
)
6952 last_mouse_press_frame
= Qnil
;
6956 #ifdef USE_MOTIF /* This should do not harm for Lucid,
6957 but I am trying to be cautious. */
6958 else if (event
.type
== ButtonRelease
)
6960 if (!NILP (last_mouse_press_frame
))
6962 f
= XFRAME (last_mouse_press_frame
);
6963 if (f
->output_data
.x
)
6964 SET_SAVED_BUTTON_EVENT
;
6969 #endif /* USE_MOTIF */
6972 #endif /* USE_X_TOOLKIT || USE_GTK */
6976 case CirculateNotify
:
6979 case CirculateRequest
:
6982 case VisibilityNotify
:
6986 /* Someone has changed the keyboard mapping - update the
6988 switch (event
.xmapping
.request
)
6990 case MappingModifier
:
6991 x_find_modifier_meanings (dpyinfo
);
6992 /* This is meant to fall through. */
6993 case MappingKeyboard
:
6994 XRefreshKeyboardMapping (&event
.xmapping
);
6999 xft_settings_event (dpyinfo
, &event
);
7004 #ifdef USE_X_TOOLKIT
7006 if (*finish
!= X_EVENT_DROP
)
7007 XtDispatchEvent (&event
);
7009 #endif /* USE_X_TOOLKIT */
7014 if (inev
.ie
.kind
!= NO_EVENT
)
7016 kbd_buffer_store_event_hold (&inev
.ie
, hold_quit
);
7021 && !(hold_quit
&& hold_quit
->kind
!= NO_EVENT
))
7026 XSETFRAME (frame
, f
);
7032 any_help_event_p
= 1;
7033 gen_help_event (help_echo_string
, frame
, help_echo_window
,
7034 help_echo_object
, help_echo_pos
);
7038 help_echo_string
= Qnil
;
7039 gen_help_event (Qnil
, frame
, Qnil
, Qnil
, 0);
7049 /* Handles the XEvent EVENT on display DISPLAY.
7050 This is used for event loops outside the normal event handling,
7051 i.e. looping while a popup menu or a dialog is posted.
7053 Returns the value handle_one_xevent sets in the finish argument. */
7055 x_dispatch_event (event
, display
)
7059 struct x_display_info
*dpyinfo
;
7060 int finish
= X_EVENT_NORMAL
;
7062 dpyinfo
= x_display_info_for_display (display
);
7065 handle_one_xevent (dpyinfo
, event
, &finish
, 0);
7071 /* Read events coming from the X server.
7072 This routine is called by the SIGIO handler.
7073 We return as soon as there are no more events to be read.
7075 We return the number of characters stored into the buffer,
7076 thus pretending to be `read' (except the characters we store
7077 in the keyboard buffer can be multibyte, so are not necessarily
7080 EXPECTED is nonzero if the caller knows input is available. */
7083 XTread_socket (terminal
, expected
, hold_quit
)
7084 struct terminal
*terminal
;
7086 struct input_event
*hold_quit
;
7090 int event_found
= 0;
7092 if (interrupt_input_blocked
)
7094 interrupt_input_pending
= 1;
7096 pending_signals
= 1;
7101 interrupt_input_pending
= 0;
7103 pending_signals
= pending_atimers
;
7107 /* So people can tell when we have read the available input. */
7108 input_signal_count
++;
7113 /* Only check session manager input for the primary display. */
7114 if (terminal
->id
== 1 && x_session_have_connection ())
7116 struct input_event inev
;
7118 /* We don't need to EVENT_INIT (inev) here, as
7119 x_session_check_input copies an entire input_event. */
7120 if (x_session_check_input (&inev
))
7122 kbd_buffer_store_event_hold (&inev
, hold_quit
);
7129 /* For debugging, this gives a way to fake an I/O error. */
7130 if (terminal
->display_info
.x
== XTread_socket_fake_io_error
)
7132 XTread_socket_fake_io_error
= 0;
7133 x_io_error_quitter (terminal
->display_info
.x
->display
);
7137 while (XPending (terminal
->display_info
.x
->display
))
7141 XNextEvent (terminal
->display_info
.x
->display
, &event
);
7144 /* Filter events for the current X input method. */
7145 if (x_filter_event (terminal
->display_info
.x
, &event
))
7150 count
+= handle_one_xevent (terminal
->display_info
.x
,
7151 &event
, &finish
, hold_quit
);
7153 if (finish
== X_EVENT_GOTO_OUT
)
7159 /* For GTK we must use the GTK event loop. But XEvents gets passed
7160 to our filter function above, and then to the big event switch.
7161 We use a bunch of globals to communicate with our filter function,
7162 that is kind of ugly, but it works.
7164 There is no way to do one display at the time, GTK just does events
7165 from all displays. */
7167 while (gtk_events_pending ())
7169 current_count
= count
;
7170 current_hold_quit
= hold_quit
;
7172 gtk_main_iteration ();
7174 count
= current_count
;
7176 current_hold_quit
= 0;
7178 if (current_finish
== X_EVENT_GOTO_OUT
)
7181 #endif /* USE_GTK */
7185 /* On some systems, an X bug causes Emacs to get no more events
7186 when the window is destroyed. Detect that. (1994.) */
7189 /* Emacs and the X Server eats up CPU time if XNoOp is done every time.
7190 One XNOOP in 100 loops will make Emacs terminate.
7191 B. Bretthauer, 1994 */
7193 if (x_noop_count
>= 100)
7197 if (next_noop_dpyinfo
== 0)
7198 next_noop_dpyinfo
= x_display_list
;
7200 XNoOp (next_noop_dpyinfo
->display
);
7202 /* Each time we get here, cycle through the displays now open. */
7203 next_noop_dpyinfo
= next_noop_dpyinfo
->next
;
7207 /* If the focus was just given to an auto-raising frame,
7209 /* ??? This ought to be able to handle more than one such frame. */
7210 if (pending_autoraise_frame
)
7212 x_raise_frame (pending_autoraise_frame
);
7213 pending_autoraise_frame
= 0;
7225 /***********************************************************************
7227 ***********************************************************************/
7229 /* Set clipping for output in glyph row ROW. W is the window in which
7230 we operate. GC is the graphics context to set clipping in.
7232 ROW may be a text row or, e.g., a mode line. Text rows must be
7233 clipped to the interior of the window dedicated to text display,
7234 mode lines must be clipped to the whole window. */
7237 x_clip_to_row (w
, row
, area
, gc
)
7239 struct glyph_row
*row
;
7243 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
7244 XRectangle clip_rect
;
7245 int window_x
, window_y
, window_width
;
7247 window_box (w
, area
, &window_x
, &window_y
, &window_width
, 0);
7249 clip_rect
.x
= window_x
;
7250 clip_rect
.y
= WINDOW_TO_FRAME_PIXEL_Y (w
, max (0, row
->y
));
7251 clip_rect
.y
= max (clip_rect
.y
, window_y
);
7252 clip_rect
.width
= window_width
;
7253 clip_rect
.height
= row
->visible_height
;
7255 XSetClipRectangles (FRAME_X_DISPLAY (f
), gc
, 0, 0, &clip_rect
, 1, Unsorted
);
7259 /* Draw a hollow box cursor on window W in glyph row ROW. */
7262 x_draw_hollow_cursor (w
, row
)
7264 struct glyph_row
*row
;
7266 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
7267 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
7268 Display
*dpy
= FRAME_X_DISPLAY (f
);
7271 struct glyph
*cursor_glyph
;
7274 /* Get the glyph the cursor is on. If we can't tell because
7275 the current matrix is invalid or such, give up. */
7276 cursor_glyph
= get_phys_cursor_glyph (w
);
7277 if (cursor_glyph
== NULL
)
7280 /* Compute frame-relative coordinates for phys cursor. */
7281 get_phys_cursor_geometry (w
, row
, cursor_glyph
, &x
, &y
, &h
);
7282 wd
= w
->phys_cursor_width
;
7284 /* The foreground of cursor_gc is typically the same as the normal
7285 background color, which can cause the cursor box to be invisible. */
7286 xgcv
.foreground
= f
->output_data
.x
->cursor_pixel
;
7287 if (dpyinfo
->scratch_cursor_gc
)
7288 XChangeGC (dpy
, dpyinfo
->scratch_cursor_gc
, GCForeground
, &xgcv
);
7290 dpyinfo
->scratch_cursor_gc
= XCreateGC (dpy
, FRAME_X_WINDOW (f
),
7291 GCForeground
, &xgcv
);
7292 gc
= dpyinfo
->scratch_cursor_gc
;
7294 /* Set clipping, draw the rectangle, and reset clipping again. */
7295 x_clip_to_row (w
, row
, TEXT_AREA
, gc
);
7296 XDrawRectangle (dpy
, FRAME_X_WINDOW (f
), gc
, x
, y
, wd
, h
- 1);
7297 XSetClipMask (dpy
, gc
, None
);
7301 /* Draw a bar cursor on window W in glyph row ROW.
7303 Implementation note: One would like to draw a bar cursor with an
7304 angle equal to the one given by the font property XA_ITALIC_ANGLE.
7305 Unfortunately, I didn't find a font yet that has this property set.
7309 x_draw_bar_cursor (w
, row
, width
, kind
)
7311 struct glyph_row
*row
;
7313 enum text_cursor_kinds kind
;
7315 struct frame
*f
= XFRAME (w
->frame
);
7316 struct glyph
*cursor_glyph
;
7318 /* If cursor is out of bounds, don't draw garbage. This can happen
7319 in mini-buffer windows when switching between echo area glyphs
7321 cursor_glyph
= get_phys_cursor_glyph (w
);
7322 if (cursor_glyph
== NULL
)
7325 /* If on an image, draw like a normal cursor. That's usually better
7326 visible than drawing a bar, esp. if the image is large so that
7327 the bar might not be in the window. */
7328 if (cursor_glyph
->type
== IMAGE_GLYPH
)
7330 struct glyph_row
*row
;
7331 row
= MATRIX_ROW (w
->current_matrix
, w
->phys_cursor
.vpos
);
7332 draw_phys_cursor_glyph (w
, row
, DRAW_CURSOR
);
7336 Display
*dpy
= FRAME_X_DISPLAY (f
);
7337 Window window
= FRAME_X_WINDOW (f
);
7338 GC gc
= FRAME_X_DISPLAY_INFO (f
)->scratch_cursor_gc
;
7339 unsigned long mask
= GCForeground
| GCBackground
| GCGraphicsExposures
;
7340 struct face
*face
= FACE_FROM_ID (f
, cursor_glyph
->face_id
);
7343 /* If the glyph's background equals the color we normally draw
7344 the bars cursor in, the bar cursor in its normal color is
7345 invisible. Use the glyph's foreground color instead in this
7346 case, on the assumption that the glyph's colors are chosen so
7347 that the glyph is legible. */
7348 if (face
->background
== f
->output_data
.x
->cursor_pixel
)
7349 xgcv
.background
= xgcv
.foreground
= face
->foreground
;
7351 xgcv
.background
= xgcv
.foreground
= f
->output_data
.x
->cursor_pixel
;
7352 xgcv
.graphics_exposures
= 0;
7355 XChangeGC (dpy
, gc
, mask
, &xgcv
);
7358 gc
= XCreateGC (dpy
, window
, mask
, &xgcv
);
7359 FRAME_X_DISPLAY_INFO (f
)->scratch_cursor_gc
= gc
;
7362 x_clip_to_row (w
, row
, TEXT_AREA
, gc
);
7364 if (kind
== BAR_CURSOR
)
7367 width
= FRAME_CURSOR_WIDTH (f
);
7368 width
= min (cursor_glyph
->pixel_width
, width
);
7370 w
->phys_cursor_width
= width
;
7372 XFillRectangle (dpy
, window
, gc
,
7373 WINDOW_TEXT_TO_FRAME_PIXEL_X (w
, w
->phys_cursor
.x
),
7374 WINDOW_TO_FRAME_PIXEL_Y (w
, w
->phys_cursor
.y
),
7375 width
, row
->height
);
7379 int dummy_x
, dummy_y
, dummy_h
;
7382 width
= row
->height
;
7384 width
= min (row
->height
, width
);
7386 get_phys_cursor_geometry (w
, row
, cursor_glyph
, &dummy_x
,
7387 &dummy_y
, &dummy_h
);
7389 XFillRectangle (dpy
, window
, gc
,
7390 WINDOW_TEXT_TO_FRAME_PIXEL_X (w
, w
->phys_cursor
.x
),
7391 WINDOW_TO_FRAME_PIXEL_Y (w
, w
->phys_cursor
.y
+
7392 row
->height
- width
),
7393 w
->phys_cursor_width
, width
);
7396 XSetClipMask (dpy
, gc
, None
);
7401 /* RIF: Define cursor CURSOR on frame F. */
7404 x_define_frame_cursor (f
, cursor
)
7408 if (!f
->pointer_invisible
7409 && f
->output_data
.x
->current_cursor
!= cursor
)
7410 XDefineCursor (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), cursor
);
7411 f
->output_data
.x
->current_cursor
= cursor
;
7415 /* RIF: Clear area on frame F. */
7418 x_clear_frame_area (f
, x
, y
, width
, height
)
7420 int x
, y
, width
, height
;
7422 x_clear_area (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
7423 x
, y
, width
, height
, False
);
7427 /* RIF: Draw cursor on window W. */
7430 x_draw_window_cursor (w
, glyph_row
, x
, y
, cursor_type
, cursor_width
, on_p
, active_p
)
7432 struct glyph_row
*glyph_row
;
7434 int cursor_type
, cursor_width
;
7437 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
7441 w
->phys_cursor_type
= cursor_type
;
7442 w
->phys_cursor_on_p
= 1;
7444 if (glyph_row
->exact_window_width_line_p
7445 && w
->phys_cursor
.hpos
>= glyph_row
->used
[TEXT_AREA
])
7447 glyph_row
->cursor_in_fringe_p
= 1;
7448 draw_fringe_bitmap (w
, glyph_row
, 0);
7451 switch (cursor_type
)
7453 case HOLLOW_BOX_CURSOR
:
7454 x_draw_hollow_cursor (w
, glyph_row
);
7457 case FILLED_BOX_CURSOR
:
7458 draw_phys_cursor_glyph (w
, glyph_row
, DRAW_CURSOR
);
7462 x_draw_bar_cursor (w
, glyph_row
, cursor_width
, BAR_CURSOR
);
7466 x_draw_bar_cursor (w
, glyph_row
, cursor_width
, HBAR_CURSOR
);
7470 w
->phys_cursor_width
= 0;
7478 if (w
== XWINDOW (f
->selected_window
))
7479 if (FRAME_XIC (f
) && (FRAME_XIC_STYLE (f
) & XIMPreeditPosition
))
7480 xic_set_preeditarea (w
, x
, y
);
7485 XFlush (FRAME_X_DISPLAY (f
));
7492 /* Make the x-window of frame F use the gnu icon bitmap. */
7495 x_bitmap_icon (f
, file
)
7501 if (FRAME_X_WINDOW (f
) == 0)
7504 /* Free up our existing icon bitmap and mask if any. */
7505 if (f
->output_data
.x
->icon_bitmap
> 0)
7506 x_destroy_bitmap (f
, f
->output_data
.x
->icon_bitmap
);
7507 f
->output_data
.x
->icon_bitmap
= 0;
7512 /* Use gtk_window_set_icon_from_file () if available,
7513 It's not restricted to bitmaps */
7514 if (xg_set_icon (f
, file
))
7516 #endif /* USE_GTK */
7517 bitmap_id
= x_create_bitmap_from_file (f
, file
);
7518 x_create_bitmap_mask (f
, bitmap_id
);
7522 /* Create the GNU bitmap and mask if necessary. */
7523 if (FRAME_X_DISPLAY_INFO (f
)->icon_bitmap_id
< 0)
7529 if (xg_set_icon (f
, xg_default_icon_file
)
7530 || xg_set_icon_from_xpm_data (f
, gnu_xpm_bits
))
7533 #elif defined (HAVE_XPM) && defined (HAVE_X_WINDOWS)
7535 rc
= x_create_bitmap_from_xpm_data (f
, gnu_xpm_bits
);
7537 FRAME_X_DISPLAY_INFO (f
)->icon_bitmap_id
= rc
;
7541 /* If all else fails, use the (black and white) xbm image. */
7544 rc
= x_create_bitmap_from_data (f
, gnu_xbm_bits
,
7545 gnu_xbm_width
, gnu_xbm_height
);
7549 FRAME_X_DISPLAY_INFO (f
)->icon_bitmap_id
= rc
;
7550 x_create_bitmap_mask (f
, FRAME_X_DISPLAY_INFO (f
)->icon_bitmap_id
);
7554 /* The first time we create the GNU bitmap and mask,
7555 this increments the ref-count one extra time.
7556 As a result, the GNU bitmap and mask are never freed.
7557 That way, we don't have to worry about allocating it again. */
7558 x_reference_bitmap (f
, FRAME_X_DISPLAY_INFO (f
)->icon_bitmap_id
);
7560 bitmap_id
= FRAME_X_DISPLAY_INFO (f
)->icon_bitmap_id
;
7563 x_wm_set_icon_pixmap (f
, bitmap_id
);
7564 f
->output_data
.x
->icon_bitmap
= bitmap_id
;
7570 /* Make the x-window of frame F use a rectangle with text.
7571 Use ICON_NAME as the text. */
7574 x_text_icon (f
, icon_name
)
7578 if (FRAME_X_WINDOW (f
) == 0)
7583 text
.value
= (unsigned char *) icon_name
;
7584 text
.encoding
= XA_STRING
;
7586 text
.nitems
= strlen (icon_name
);
7587 XSetWMIconName (FRAME_X_DISPLAY (f
), FRAME_OUTER_WINDOW (f
), &text
);
7590 if (f
->output_data
.x
->icon_bitmap
> 0)
7591 x_destroy_bitmap (f
, f
->output_data
.x
->icon_bitmap
);
7592 f
->output_data
.x
->icon_bitmap
= 0;
7593 x_wm_set_icon_pixmap (f
, 0);
7598 #define X_ERROR_MESSAGE_SIZE 200
7600 /* If non-nil, this should be a string.
7601 It means catch X errors and store the error message in this string.
7603 The reason we use a stack is that x_catch_error/x_uncatch_error can
7604 be called from a signal handler.
7607 struct x_error_message_stack
{
7608 char string
[X_ERROR_MESSAGE_SIZE
];
7610 struct x_error_message_stack
*prev
;
7612 static struct x_error_message_stack
*x_error_message
;
7614 /* An X error handler which stores the error message in
7615 *x_error_message. This is called from x_error_handler if
7616 x_catch_errors is in effect. */
7619 x_error_catcher (display
, error
)
7623 XGetErrorText (display
, error
->error_code
,
7624 x_error_message
->string
,
7625 X_ERROR_MESSAGE_SIZE
);
7628 /* Begin trapping X errors for display DPY. Actually we trap X errors
7629 for all displays, but DPY should be the display you are actually
7632 After calling this function, X protocol errors no longer cause
7633 Emacs to exit; instead, they are recorded in the string
7634 stored in *x_error_message.
7636 Calling x_check_errors signals an Emacs error if an X error has
7637 occurred since the last call to x_catch_errors or x_check_errors.
7639 Calling x_uncatch_errors resumes the normal error handling. */
7641 void x_check_errors ();
7644 x_catch_errors (dpy
)
7647 struct x_error_message_stack
*data
= xmalloc (sizeof (*data
));
7649 /* Make sure any errors from previous requests have been dealt with. */
7653 data
->string
[0] = 0;
7654 data
->prev
= x_error_message
;
7655 x_error_message
= data
;
7658 /* Undo the last x_catch_errors call.
7659 DPY should be the display that was passed to x_catch_errors. */
7664 struct x_error_message_stack
*tmp
;
7668 /* The display may have been closed before this function is called.
7669 Check if it is still open before calling XSync. */
7670 if (x_display_info_for_display (x_error_message
->dpy
) != 0)
7671 XSync (x_error_message
->dpy
, False
);
7673 tmp
= x_error_message
;
7674 x_error_message
= x_error_message
->prev
;
7679 /* If any X protocol errors have arrived since the last call to
7680 x_catch_errors or x_check_errors, signal an Emacs error using
7681 sprintf (a buffer, FORMAT, the x error message text) as the text. */
7684 x_check_errors (dpy
, format
)
7688 /* Make sure to catch any errors incurred so far. */
7691 if (x_error_message
->string
[0])
7693 char string
[X_ERROR_MESSAGE_SIZE
];
7694 bcopy (x_error_message
->string
, string
, X_ERROR_MESSAGE_SIZE
);
7695 x_uncatch_errors ();
7696 error (format
, string
);
7700 /* Nonzero if we had any X protocol errors
7701 since we did x_catch_errors on DPY. */
7704 x_had_errors_p (dpy
)
7707 /* Make sure to catch any errors incurred so far. */
7710 return x_error_message
->string
[0] != 0;
7713 /* Forget about any errors we have had, since we did x_catch_errors on DPY. */
7716 x_clear_errors (dpy
)
7719 x_error_message
->string
[0] = 0;
7722 #if 0 /* See comment in unwind_to_catch why calling this is a bad
7723 * idea. --lorentey */
7724 /* Close off all unclosed x_catch_errors calls. */
7727 x_fully_uncatch_errors ()
7729 while (x_error_message
)
7730 x_uncatch_errors ();
7734 /* Nonzero if x_catch_errors has been done and not yet canceled. */
7737 x_catching_errors ()
7739 return x_error_message
!= 0;
7743 static unsigned int x_wire_count
;
7746 fprintf (stderr
, "Lib call: %d\n", ++x_wire_count
);
7751 /* Handle SIGPIPE, which can happen when the connection to a server
7752 simply goes away. SIGPIPE is handled by x_connection_signal.
7753 Don't need to do anything, because the write which caused the
7754 SIGPIPE will fail, causing Xlib to invoke the X IO error handler,
7755 which will do the appropriate cleanup for us. */
7758 x_connection_signal (signalnum
) /* If we don't have an argument, */
7759 int signalnum
; /* some compilers complain in signal calls. */
7762 /* USG systems forget handlers when they are used;
7763 must reestablish each time */
7764 signal (signalnum
, x_connection_signal
);
7769 /************************************************************************
7771 ************************************************************************/
7773 /* Error message passed to x_connection_closed. */
7775 static char *error_msg
;
7777 /* Function installed as fatal_error_signal_hook in
7778 x_connection_closed. Print the X error message, and exit normally,
7779 instead of dumping core when XtCloseDisplay fails. */
7782 x_fatal_error_signal ()
7784 fprintf (stderr
, "%s\n", error_msg
);
7788 /* Handle the loss of connection to display DPY. ERROR_MESSAGE is
7789 the text of an error message that lead to the connection loss. */
7792 x_connection_closed (dpy
, error_message
)
7794 char *error_message
;
7796 struct x_display_info
*dpyinfo
= x_display_info_for_display (dpy
);
7797 Lisp_Object frame
, tail
;
7798 int index
= SPECPDL_INDEX ();
7800 error_msg
= (char *) alloca (strlen (error_message
) + 1);
7801 strcpy (error_msg
, error_message
);
7802 handling_signal
= 0;
7804 /* Prevent being called recursively because of an error condition
7805 below. Otherwise, we might end up with printing ``can't find per
7806 display information'' in the recursive call instead of printing
7807 the original message here. */
7808 x_catch_errors (dpy
);
7810 /* Inhibit redisplay while frames are being deleted. */
7811 specbind (Qinhibit_redisplay
, Qt
);
7815 /* Protect display from being closed when we delete the last
7817 dpyinfo
->reference_count
++;
7818 dpyinfo
->terminal
->reference_count
++;
7821 /* First delete frames whose mini-buffers are on frames
7822 that are on the dead display. */
7823 FOR_EACH_FRAME (tail
, frame
)
7825 Lisp_Object minibuf_frame
;
7827 = WINDOW_FRAME (XWINDOW (FRAME_MINIBUF_WINDOW (XFRAME (frame
))));
7828 if (FRAME_X_P (XFRAME (frame
))
7829 && FRAME_X_P (XFRAME (minibuf_frame
))
7830 && ! EQ (frame
, minibuf_frame
)
7831 && FRAME_X_DISPLAY_INFO (XFRAME (minibuf_frame
)) == dpyinfo
)
7832 delete_frame (frame
, Qnoelisp
);
7835 /* Now delete all remaining frames on the dead display.
7836 We are now sure none of these is used as the mini-buffer
7837 for another frame that we need to delete. */
7838 FOR_EACH_FRAME (tail
, frame
)
7839 if (FRAME_X_P (XFRAME (frame
))
7840 && FRAME_X_DISPLAY_INFO (XFRAME (frame
)) == dpyinfo
)
7842 /* Set this to t so that delete_frame won't get confused
7843 trying to find a replacement. */
7844 FRAME_KBOARD (XFRAME (frame
))->Vdefault_minibuffer_frame
= Qt
;
7845 delete_frame (frame
, Qnoelisp
);
7848 /* We have to close the display to inform Xt that it doesn't
7849 exist anymore. If we don't, Xt will continue to wait for
7850 events from the display. As a consequence, a sequence of
7852 M-x make-frame-on-display RET :1 RET
7853 ...kill the new frame, so that we get an IO error...
7854 M-x make-frame-on-display RET :1 RET
7856 will indefinitely wait in Xt for events for display `:1', opened
7857 in the first call to make-frame-on-display.
7859 Closing the display is reported to lead to a bus error on
7860 OpenWindows in certain situations. I suspect that is a bug
7861 in OpenWindows. I don't know how to circumvent it here. */
7865 #ifdef USE_X_TOOLKIT
7866 /* If DPYINFO is null, this means we didn't open the display
7867 in the first place, so don't try to close it. */
7869 extern void (*fatal_error_signal_hook
) P_ ((void));
7870 fatal_error_signal_hook
= x_fatal_error_signal
;
7871 XtCloseDisplay (dpy
);
7872 fatal_error_signal_hook
= NULL
;
7877 /* Due to bugs in some Gtk+ versions, just exit here if this
7878 is the last display/terminal. */
7879 if (terminal_list
->next_terminal
== NULL
)
7881 fprintf (stderr
, "%s\n", error_msg
);
7882 shut_down_emacs (0, 0, Qnil
);
7885 xg_display_close (dpyinfo
->display
);
7888 /* Indicate that this display is dead. */
7889 dpyinfo
->display
= 0;
7891 dpyinfo
->reference_count
--;
7892 dpyinfo
->terminal
->reference_count
--;
7893 if (dpyinfo
->reference_count
!= 0)
7894 /* We have just closed all frames on this display. */
7899 XSETTERMINAL (tmp
, dpyinfo
->terminal
);
7900 Fdelete_terminal (tmp
, Qnoelisp
);
7904 x_uncatch_errors ();
7906 if (terminal_list
== 0)
7908 fprintf (stderr
, "%s\n", error_msg
);
7909 shut_down_emacs (0, 0, Qnil
);
7913 /* Ordinary stack unwind doesn't deal with these. */
7915 sigunblock (sigmask (SIGIO
));
7917 sigunblock (sigmask (SIGALRM
));
7918 TOTALLY_UNBLOCK_INPUT
;
7920 unbind_to (index
, Qnil
);
7921 clear_waiting_for_input ();
7922 /* Here, we absolutely have to use a non-local exit (e.g. signal, throw,
7923 longjmp), because returning from this function would get us back into
7924 Xlib's code which will directly call `exit'. */
7925 error ("%s", error_msg
);
7928 /* We specifically use it before defining it, so that gcc doesn't inline it,
7929 otherwise gdb doesn't know how to properly put a breakpoint on it. */
7930 static void x_error_quitter
P_ ((Display
*, XErrorEvent
*));
7932 /* This is the first-level handler for X protocol errors.
7933 It calls x_error_quitter or x_error_catcher. */
7936 x_error_handler (display
, error
)
7940 if (x_error_message
)
7941 x_error_catcher (display
, error
);
7943 x_error_quitter (display
, error
);
7947 /* This is the usual handler for X protocol errors.
7948 It kills all frames on the display that we got the error for.
7949 If that was the only one, it prints an error message and kills Emacs. */
7951 /* .gdbinit puts a breakpoint here, so make sure it is not inlined. */
7953 #if __GNUC__ >= 3 /* On GCC 3.0 we might get a warning. */
7954 #define NO_INLINE __attribute__((noinline))
7959 /* Some versions of GNU/Linux define noinline in their headers. */
7965 /* On older GCC versions, just putting x_error_quitter
7966 after x_error_handler prevents inlining into the former. */
7968 static void NO_INLINE
7969 x_error_quitter (display
, error
)
7973 char buf
[256], buf1
[356];
7975 /* Ignore BadName errors. They can happen because of fonts
7976 or colors that are not defined. */
7978 if (error
->error_code
== BadName
)
7981 /* Note that there is no real way portable across R3/R4 to get the
7982 original error handler. */
7984 XGetErrorText (display
, error
->error_code
, buf
, sizeof (buf
));
7985 sprintf (buf1
, "X protocol error: %s on protocol request %d",
7986 buf
, error
->request_code
);
7987 x_connection_closed (display
, buf1
);
7991 /* This is the handler for X IO errors, always.
7992 It kills all frames on the display that we lost touch with.
7993 If that was the only one, it prints an error message and kills Emacs. */
7996 x_io_error_quitter (display
)
8001 sprintf (buf
, "Connection lost to X server `%s'", DisplayString (display
));
8002 x_connection_closed (display
, buf
);
8006 /* Changing the font of the frame. */
8008 /* Give frame F the font FONT-OBJECT as its default font. The return
8009 value is FONT-OBJECT. FONTSET is an ID of the fontset for the
8010 frame. If it is negative, generate a new fontset from
8014 x_new_font (f
, font_object
, fontset
)
8016 Lisp_Object font_object
;
8019 struct font
*font
= XFONT_OBJECT (font_object
);
8022 fontset
= fontset_from_font (font_object
);
8023 FRAME_FONTSET (f
) = fontset
;
8024 if (FRAME_FONT (f
) == font
)
8025 /* This font is already set in frame F. There's nothing more to
8029 FRAME_FONT (f
) = font
;
8030 FRAME_BASELINE_OFFSET (f
) = font
->baseline_offset
;
8031 FRAME_COLUMN_WIDTH (f
) = font
->average_width
;
8032 FRAME_SPACE_WIDTH (f
) = font
->space_width
;
8033 FRAME_LINE_HEIGHT (f
) = FONT_HEIGHT (font
);
8035 compute_fringe_widths (f
, 1);
8037 /* Compute the scroll bar width in character columns. */
8038 if (FRAME_CONFIG_SCROLL_BAR_WIDTH (f
) > 0)
8040 int wid
= FRAME_COLUMN_WIDTH (f
);
8041 FRAME_CONFIG_SCROLL_BAR_COLS (f
)
8042 = (FRAME_CONFIG_SCROLL_BAR_WIDTH (f
) + wid
-1) / wid
;
8046 int wid
= FRAME_COLUMN_WIDTH (f
);
8047 FRAME_CONFIG_SCROLL_BAR_COLS (f
) = (14 + wid
- 1) / wid
;
8050 if (FRAME_X_WINDOW (f
) != 0)
8052 /* Don't change the size of a tip frame; there's no point in
8053 doing it because it's done in Fx_show_tip, and it leads to
8054 problems because the tip frame has no widget. */
8055 if (NILP (tip_frame
) || XFRAME (tip_frame
) != f
)
8057 /* When the frame is maximized/fullscreen or running under for
8058 example Xmonad, x_set_window_size will be a no-op.
8059 In that case, the right thing to do is extend rows/cols to
8060 the current frame size. We do that first if x_set_window_size
8061 turns out to not be a no-op (there is no way to know).
8062 The size will be adjusted again if the frame gets a
8063 ConfigureNotify event as a result of x_set_window_size. */
8064 int pixelh
= FRAME_PIXEL_HEIGHT (f
);
8065 #ifdef USE_X_TOOLKIT
8066 /* The menu bar is not part of text lines. The tool bar
8068 pixelh
-= FRAME_MENUBAR_HEIGHT (f
);
8070 int rows
= FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f
, pixelh
);
8071 int cols
= FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f
, FRAME_PIXEL_WIDTH (f
));
8073 change_frame_size (f
, rows
, cols
, 0, 1, 0);
8074 x_set_window_size (f
, 0, FRAME_COLS (f
), FRAME_LINES (f
));
8080 && (FRAME_XIC_STYLE (f
) & (XIMPreeditPosition
| XIMStatusArea
)))
8083 xic_set_xfontset (f
, SDATA (fontset_ascii (fontset
)));
8092 /***********************************************************************
8094 ***********************************************************************/
8100 /* XIM destroy callback function, which is called whenever the
8101 connection to input method XIM dies. CLIENT_DATA contains a
8102 pointer to the x_display_info structure corresponding to XIM. */
8105 xim_destroy_callback (xim
, client_data
, call_data
)
8107 XPointer client_data
;
8110 struct x_display_info
*dpyinfo
= (struct x_display_info
*) client_data
;
8111 Lisp_Object frame
, tail
;
8115 /* No need to call XDestroyIC.. */
8116 FOR_EACH_FRAME (tail
, frame
)
8118 struct frame
*f
= XFRAME (frame
);
8119 if (FRAME_X_P (f
) && FRAME_X_DISPLAY_INFO (f
) == dpyinfo
)
8121 FRAME_XIC (f
) = NULL
;
8122 xic_free_xfontset (f
);
8126 /* No need to call XCloseIM. */
8127 dpyinfo
->xim
= NULL
;
8128 XFree (dpyinfo
->xim_styles
);
8132 #endif /* HAVE_X11R6 */
8135 /* This isn't prototyped in OSF 5.0 or 5.1a. */
8136 extern char *XSetIMValues
P_ ((XIM
, ...));
8139 /* Open the connection to the XIM server on display DPYINFO.
8140 RESOURCE_NAME is the resource name Emacs uses. */
8143 xim_open_dpy (dpyinfo
, resource_name
)
8144 struct x_display_info
*dpyinfo
;
8145 char *resource_name
;
8153 XCloseIM (dpyinfo
->xim
);
8154 xim
= XOpenIM (dpyinfo
->display
, dpyinfo
->xrdb
, resource_name
,
8161 XIMCallback destroy
;
8164 /* Get supported styles and XIM values. */
8165 XGetIMValues (xim
, XNQueryInputStyle
, &dpyinfo
->xim_styles
, NULL
);
8168 destroy
.callback
= xim_destroy_callback
;
8169 destroy
.client_data
= (XPointer
)dpyinfo
;
8170 XSetIMValues (xim
, XNDestroyCallback
, &destroy
, NULL
);
8176 #endif /* HAVE_XIM */
8177 dpyinfo
->xim
= NULL
;
8181 #ifdef HAVE_X11R6_XIM
8183 /* XIM instantiate callback function, which is called whenever an XIM
8184 server is available. DISPLAY is the display of the XIM.
8185 CLIENT_DATA contains a pointer to an xim_inst_t structure created
8186 when the callback was registered. */
8189 xim_instantiate_callback (display
, client_data
, call_data
)
8191 XPointer client_data
;
8194 struct xim_inst_t
*xim_inst
= (struct xim_inst_t
*) client_data
;
8195 struct x_display_info
*dpyinfo
= xim_inst
->dpyinfo
;
8197 /* We don't support multiple XIM connections. */
8201 xim_open_dpy (dpyinfo
, xim_inst
->resource_name
);
8203 /* Create XIC for the existing frames on the same display, as long
8204 as they have no XIC. */
8205 if (dpyinfo
->xim
&& dpyinfo
->reference_count
> 0)
8207 Lisp_Object tail
, frame
;
8210 FOR_EACH_FRAME (tail
, frame
)
8212 struct frame
*f
= XFRAME (frame
);
8215 && FRAME_X_DISPLAY_INFO (f
) == xim_inst
->dpyinfo
)
8216 if (FRAME_XIC (f
) == NULL
)
8218 create_frame_xic (f
);
8219 if (FRAME_XIC_STYLE (f
) & XIMStatusArea
)
8220 xic_set_statusarea (f
);
8221 if (FRAME_XIC_STYLE (f
) & XIMPreeditPosition
)
8223 struct window
*w
= XWINDOW (f
->selected_window
);
8224 xic_set_preeditarea (w
, w
->cursor
.x
, w
->cursor
.y
);
8233 #endif /* HAVE_X11R6_XIM */
8236 /* Open a connection to the XIM server on display DPYINFO.
8237 RESOURCE_NAME is the resource name for Emacs. On X11R5, open the
8238 connection only at the first time. On X11R6, open the connection
8239 in the XIM instantiate callback function. */
8242 xim_initialize (dpyinfo
, resource_name
)
8243 struct x_display_info
*dpyinfo
;
8244 char *resource_name
;
8246 dpyinfo
->xim
= NULL
;
8250 #ifdef HAVE_X11R6_XIM
8251 struct xim_inst_t
*xim_inst
;
8254 xim_inst
= (struct xim_inst_t
*) xmalloc (sizeof (struct xim_inst_t
));
8255 dpyinfo
->xim_callback_data
= xim_inst
;
8256 xim_inst
->dpyinfo
= dpyinfo
;
8257 len
= strlen (resource_name
);
8258 xim_inst
->resource_name
= (char *) xmalloc (len
+ 1);
8259 bcopy (resource_name
, xim_inst
->resource_name
, len
+ 1);
8260 XRegisterIMInstantiateCallback (dpyinfo
->display
, dpyinfo
->xrdb
,
8261 resource_name
, EMACS_CLASS
,
8262 xim_instantiate_callback
,
8263 /* This is XPointer in XFree86
8264 but (XPointer *) on Tru64, at
8265 least, hence the configure test. */
8266 (XRegisterIMInstantiateCallback_arg6
) xim_inst
);
8267 #else /* not HAVE_X11R6_XIM */
8268 xim_open_dpy (dpyinfo
, resource_name
);
8269 #endif /* not HAVE_X11R6_XIM */
8271 #endif /* HAVE_XIM */
8275 /* Close the connection to the XIM server on display DPYINFO. */
8278 xim_close_dpy (dpyinfo
)
8279 struct x_display_info
*dpyinfo
;
8284 #ifdef HAVE_X11R6_XIM
8285 if (dpyinfo
->display
)
8286 XUnregisterIMInstantiateCallback (dpyinfo
->display
, dpyinfo
->xrdb
,
8288 xim_instantiate_callback
, NULL
);
8289 xfree (dpyinfo
->xim_callback_data
->resource_name
);
8290 xfree (dpyinfo
->xim_callback_data
);
8291 #endif /* HAVE_X11R6_XIM */
8292 if (dpyinfo
->display
)
8293 XCloseIM (dpyinfo
->xim
);
8294 dpyinfo
->xim
= NULL
;
8295 XFree (dpyinfo
->xim_styles
);
8297 #endif /* HAVE_XIM */
8300 #endif /* not HAVE_X11R6_XIM */
8304 /* Calculate the absolute position in frame F
8305 from its current recorded position values and gravity. */
8308 x_calc_absolute_position (f
)
8311 int flags
= f
->size_hint_flags
;
8313 /* We have nothing to do if the current position
8314 is already for the top-left corner. */
8315 if (! ((flags
& XNegative
) || (flags
& YNegative
)))
8318 /* Treat negative positions as relative to the leftmost bottommost
8319 position that fits on the screen. */
8320 if (flags
& XNegative
)
8321 f
->left_pos
= x_display_pixel_width (FRAME_X_DISPLAY_INFO (f
))
8322 - FRAME_PIXEL_WIDTH (f
) + f
->left_pos
;
8325 int height
= FRAME_PIXEL_HEIGHT (f
);
8327 #if defined USE_X_TOOLKIT && defined USE_MOTIF
8328 /* Something is fishy here. When using Motif, starting Emacs with
8329 `-g -0-0', the frame appears too low by a few pixels.
8331 This seems to be so because initially, while Emacs is starting,
8332 the column widget's height and the frame's pixel height are
8333 different. The column widget's height is the right one. In
8334 later invocations, when Emacs is up, the frame's pixel height
8337 It's not obvious where the initial small difference comes from.
8338 2000-12-01, gerd. */
8340 XtVaGetValues (f
->output_data
.x
->column_widget
, XtNheight
, &height
, NULL
);
8343 if (flags
& YNegative
)
8344 f
->top_pos
= x_display_pixel_height (FRAME_X_DISPLAY_INFO (f
))
8345 - height
+ f
->top_pos
;
8348 /* The left_pos and top_pos
8349 are now relative to the top and left screen edges,
8350 so the flags should correspond. */
8351 f
->size_hint_flags
&= ~ (XNegative
| YNegative
);
8354 /* CHANGE_GRAVITY is 1 when calling from Fset_frame_position,
8355 to really change the position, and 0 when calling from
8356 x_make_frame_visible (in that case, XOFF and YOFF are the current
8357 position values). It is -1 when calling from x_set_frame_parameters,
8358 which means, do adjust for borders but don't change the gravity. */
8361 x_set_offset (f
, xoff
, yoff
, change_gravity
)
8363 register int xoff
, yoff
;
8366 int modified_top
, modified_left
;
8368 if (change_gravity
> 0)
8370 FRAME_X_OUTPUT (f
)->left_before_move
= f
->left_pos
;
8371 FRAME_X_OUTPUT (f
)->top_before_move
= f
->top_pos
;
8375 f
->size_hint_flags
&= ~ (XNegative
| YNegative
);
8377 f
->size_hint_flags
|= XNegative
;
8379 f
->size_hint_flags
|= YNegative
;
8380 f
->win_gravity
= NorthWestGravity
;
8382 x_calc_absolute_position (f
);
8385 x_wm_set_size_hint (f
, (long) 0, 0);
8387 modified_left
= f
->left_pos
;
8388 modified_top
= f
->top_pos
;
8390 if (change_gravity
!= 0 && FRAME_X_DISPLAY_INFO (f
)->wm_type
== X_WMTYPE_A
)
8392 /* Some WMs (twm, wmaker at least) has an offset that is smaller
8393 than the WM decorations. So we use the calculated offset instead
8394 of the WM decoration sizes here (x/y_pixels_outer_diff). */
8395 modified_left
+= FRAME_X_OUTPUT (f
)->move_offset_left
;
8396 modified_top
+= FRAME_X_OUTPUT (f
)->move_offset_top
;
8399 XMoveWindow (FRAME_X_DISPLAY (f
), FRAME_OUTER_WINDOW (f
),
8400 modified_left
, modified_top
);
8402 x_sync_with_move (f
, f
->left_pos
, f
->top_pos
,
8403 FRAME_X_DISPLAY_INFO (f
)->wm_type
== X_WMTYPE_UNKNOWN
8406 /* change_gravity is non-zero when this function is called from Lisp to
8407 programmatically move a frame. In that case, we call
8408 x_check_expected_move to discover if we have a "Type A" or "Type B"
8409 window manager, and, for a "Type A" window manager, adjust the position
8412 We call x_check_expected_move if a programmatic move occurred, and
8413 either the window manager type (A/B) is unknown or it is Type A but we
8414 need to compute the top/left offset adjustment for this frame. */
8416 if (change_gravity
!= 0 &&
8417 (FRAME_X_DISPLAY_INFO (f
)->wm_type
== X_WMTYPE_UNKNOWN
8418 || (FRAME_X_DISPLAY_INFO (f
)->wm_type
== X_WMTYPE_A
8419 && (FRAME_X_OUTPUT (f
)->move_offset_left
== 0
8420 && FRAME_X_OUTPUT (f
)->move_offset_top
== 0))))
8421 x_check_expected_move (f
, modified_left
, modified_top
);
8426 /* Return non-zero if _NET_SUPPORTING_WM_CHECK window exists and _NET_SUPPORTED
8427 on the root window for frame F contains ATOMNAME.
8428 This is how a WM check shall be done according to the Window Manager
8429 Specification/Extended Window Manager Hints at
8430 http://freedesktop.org/wiki/Specifications/wm-spec. */
8433 wm_supports (f
, atomname
)
8435 const char *atomname
;
8438 unsigned long actual_size
, bytes_remaining
;
8439 int i
, rc
, actual_format
;
8441 Window wmcheck_window
;
8442 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
8443 Window target_window
= dpyinfo
->root_window
;
8444 long max_len
= 65536;
8445 Display
*dpy
= FRAME_X_DISPLAY (f
);
8446 unsigned char *tmp_data
= NULL
;
8447 Atom target_type
= XA_WINDOW
;
8452 prop_atom
= XInternAtom (dpy
, "_NET_SUPPORTING_WM_CHECK", False
);
8454 x_catch_errors (dpy
);
8455 rc
= XGetWindowProperty (dpy
, target_window
,
8456 prop_atom
, 0, max_len
, False
, target_type
,
8457 &actual_type
, &actual_format
, &actual_size
,
8458 &bytes_remaining
, &tmp_data
);
8460 if (rc
!= Success
|| actual_type
!= XA_WINDOW
|| x_had_errors_p (dpy
))
8462 if (tmp_data
) XFree (tmp_data
);
8463 x_uncatch_errors ();
8468 wmcheck_window
= *(Window
*) tmp_data
;
8471 /* Check if window exists. */
8472 XSelectInput (dpy
, wmcheck_window
, StructureNotifyMask
);
8474 if (x_had_errors_p (dpy
))
8476 x_uncatch_errors ();
8481 if (dpyinfo
->net_supported_window
!= wmcheck_window
)
8483 /* Window changed, reload atoms */
8484 if (dpyinfo
->net_supported_atoms
!= NULL
)
8485 XFree (dpyinfo
->net_supported_atoms
);
8486 dpyinfo
->net_supported_atoms
= NULL
;
8487 dpyinfo
->nr_net_supported_atoms
= 0;
8488 dpyinfo
->net_supported_window
= 0;
8490 target_type
= XA_ATOM
;
8491 prop_atom
= XInternAtom (dpy
, "_NET_SUPPORTED", False
);
8493 rc
= XGetWindowProperty (dpy
, target_window
,
8494 prop_atom
, 0, max_len
, False
, target_type
,
8495 &actual_type
, &actual_format
, &actual_size
,
8496 &bytes_remaining
, &tmp_data
);
8498 if (rc
!= Success
|| actual_type
!= XA_ATOM
|| x_had_errors_p (dpy
))
8500 if (tmp_data
) XFree (tmp_data
);
8501 x_uncatch_errors ();
8506 dpyinfo
->net_supported_atoms
= (Atom
*)tmp_data
;
8507 dpyinfo
->nr_net_supported_atoms
= actual_size
;
8508 dpyinfo
->net_supported_window
= wmcheck_window
;
8512 want_atom
= XInternAtom (dpy
, atomname
, False
);
8514 for (i
= 0; rc
== 0 && i
< dpyinfo
->nr_net_supported_atoms
; ++i
)
8515 rc
= dpyinfo
->net_supported_atoms
[i
] == want_atom
;
8517 x_uncatch_errors ();
8524 set_wm_state (frame
, add
, what
, what2
)
8530 const char *atom
= "_NET_WM_STATE";
8531 Fx_send_client_event (frame
, make_number (0), frame
,
8532 make_unibyte_string (atom
, strlen (atom
)),
8534 /* 1 = add, 0 = remove */
8536 (make_number (add
? 1 : 0),
8538 (make_unibyte_string (what
, strlen (what
)),
8540 ? Fcons (make_unibyte_string (what2
, strlen (what2
)),
8546 x_set_sticky (f
, new_value
, old_value
)
8548 Lisp_Object new_value
, old_value
;
8552 XSETFRAME (frame
, f
);
8553 set_wm_state (frame
, NILP (new_value
) ? 0 : 1,
8554 "_NET_WM_STATE_STICKY", NULL
);
8557 /* Do fullscreen as specified in extended window manager hints */
8560 do_ewmh_fullscreen (f
)
8563 int have_net_atom
= wm_supports (f
, "_NET_WM_STATE");
8565 /* Some window managers don't say they support _NET_WM_STATE, but they do say
8566 they support _NET_WM_STATE_FULLSCREEN. Try that also. */
8568 have_net_atom
= wm_supports (f
, "_NET_WM_STATE_FULLSCREEN");
8573 const char *fs
= "_NET_WM_STATE_FULLSCREEN";
8574 const char *fw
= "_NET_WM_STATE_MAXIMIZED_HORZ";
8575 const char *fh
= "_NET_WM_STATE_MAXIMIZED_VERT";
8577 XSETFRAME (frame
, f
);
8579 set_wm_state (frame
, 0, fs
, NULL
);
8580 set_wm_state (frame
, 0, fh
, NULL
);
8581 set_wm_state (frame
, 0, fw
, NULL
);
8583 /* If there are _NET_ atoms we assume we have extended window manager
8585 switch (f
->want_fullscreen
)
8587 case FULLSCREEN_BOTH
:
8588 set_wm_state (frame
, 1, fs
, NULL
);
8590 case FULLSCREEN_WIDTH
:
8591 set_wm_state (frame
, 1, fw
, NULL
);
8593 case FULLSCREEN_HEIGHT
:
8594 set_wm_state (frame
, 1, fh
, NULL
);
8596 case FULLSCREEN_MAXIMIZED
:
8597 set_wm_state (frame
, 1, fw
, fh
);
8601 f
->want_fullscreen
= FULLSCREEN_NONE
;
8605 return have_net_atom
;
8609 XTfullscreen_hook (f
)
8612 if (f
->async_visible
)
8615 x_check_fullscreen (f
);
8623 x_handle_net_wm_state (f
, event
)
8625 XPropertyEvent
*event
;
8628 unsigned long actual_size
, bytes_remaining
;
8629 int i
, rc
, actual_format
, value
= FULLSCREEN_NONE
;
8630 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
8631 long max_len
= 65536;
8632 Display
*dpy
= FRAME_X_DISPLAY (f
);
8633 unsigned char *tmp_data
= NULL
;
8634 Atom target_type
= XA_ATOM
;
8639 x_catch_errors (dpy
);
8640 rc
= XGetWindowProperty (dpy
, event
->window
,
8641 event
->atom
, 0, max_len
, False
, target_type
,
8642 &actual_type
, &actual_format
, &actual_size
,
8643 &bytes_remaining
, &tmp_data
);
8645 if (rc
!= Success
|| actual_type
!= target_type
|| x_had_errors_p (dpy
))
8647 if (tmp_data
) XFree (tmp_data
);
8648 x_uncatch_errors ();
8653 x_uncatch_errors ();
8655 for (i
= 0; i
< actual_size
; ++i
)
8657 Atom a
= ((Atom
*)tmp_data
)[i
];
8658 if (a
== dpyinfo
->Xatom_net_wm_state_maximized_horz
)
8660 if (value
== FULLSCREEN_HEIGHT
)
8661 value
= FULLSCREEN_MAXIMIZED
;
8663 value
= FULLSCREEN_WIDTH
;
8665 else if (a
== dpyinfo
->Xatom_net_wm_state_maximized_vert
)
8667 if (value
== FULLSCREEN_WIDTH
)
8668 value
= FULLSCREEN_MAXIMIZED
;
8670 value
= FULLSCREEN_HEIGHT
;
8672 else if (a
== dpyinfo
->Xatom_net_wm_state_fullscreen_atom
)
8673 value
= FULLSCREEN_BOTH
;
8674 else if (a
== dpyinfo
->Xatom_net_wm_state_sticky
)
8681 case FULLSCREEN_WIDTH
:
8684 case FULLSCREEN_HEIGHT
:
8687 case FULLSCREEN_BOTH
:
8690 case FULLSCREEN_MAXIMIZED
:
8695 store_frame_param (f
, Qfullscreen
, lval
);
8696 store_frame_param (f
, Qsticky
, sticky
? Qt
: Qnil
);
8698 if (tmp_data
) XFree (tmp_data
);
8702 /* Check if we need to resize the frame due to a fullscreen request.
8703 If so needed, resize the frame. */
8705 x_check_fullscreen (f
)
8708 if (do_ewmh_fullscreen (f
))
8711 if (f
->output_data
.x
->parent_desc
!= FRAME_X_DISPLAY_INFO (f
)->root_window
)
8712 return; /* Only fullscreen without WM or with EWM hints (above). */
8714 if (f
->want_fullscreen
!= FULLSCREEN_NONE
)
8716 int width
= FRAME_COLS (f
), height
= FRAME_LINES (f
);
8717 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
8719 switch (f
->want_fullscreen
)
8721 /* No difference between these two when there is no WM */
8722 case FULLSCREEN_BOTH
:
8723 case FULLSCREEN_MAXIMIZED
:
8724 width
= x_display_pixel_width (dpyinfo
);
8725 height
= x_display_pixel_height (dpyinfo
);
8727 case FULLSCREEN_WIDTH
:
8728 width
= x_display_pixel_width (dpyinfo
);
8730 case FULLSCREEN_HEIGHT
:
8731 height
= x_display_pixel_height (dpyinfo
);
8734 if (FRAME_COLS (f
) != width
|| FRAME_LINES (f
) != height
)
8736 change_frame_size (f
, height
, width
, 0, 1, 0);
8737 SET_FRAME_GARBAGED (f
);
8738 cancel_mouse_face (f
);
8743 /* This function is called by x_set_offset to determine whether the window
8744 manager interfered with the positioning of the frame. Type A window
8745 managers position the surrounding window manager decorations a small
8746 amount above and left of the user-supplied position. Type B window
8747 managers position the surrounding window manager decorations at the
8748 user-specified position. If we detect a Type A window manager, we
8749 compensate by moving the window right and down by the proper amount. */
8752 x_check_expected_move (f
, expected_left
, expected_top
)
8757 int current_left
= 0, current_top
= 0;
8759 /* x_real_positions returns the left and top offsets of the outermost
8760 window manager window around the frame. */
8762 x_real_positions (f
, ¤t_left
, ¤t_top
);
8764 if (current_left
!= expected_left
|| current_top
!= expected_top
)
8766 /* It's a "Type A" window manager. */
8771 FRAME_X_DISPLAY_INFO (f
)->wm_type
= X_WMTYPE_A
;
8772 FRAME_X_OUTPUT (f
)->move_offset_left
= expected_left
- current_left
;
8773 FRAME_X_OUTPUT (f
)->move_offset_top
= expected_top
- current_top
;
8775 /* Now fix the mispositioned frame's location. */
8777 adjusted_left
= expected_left
+ FRAME_X_OUTPUT (f
)->move_offset_left
;
8778 adjusted_top
= expected_top
+ FRAME_X_OUTPUT (f
)->move_offset_top
;
8780 XMoveWindow (FRAME_X_DISPLAY (f
), FRAME_OUTER_WINDOW (f
),
8781 adjusted_left
, adjusted_top
);
8783 x_sync_with_move (f
, expected_left
, expected_top
, 0);
8786 /* It's a "Type B" window manager. We don't have to adjust the
8787 frame's position. */
8789 FRAME_X_DISPLAY_INFO (f
)->wm_type
= X_WMTYPE_B
;
8793 /* Wait for XGetGeometry to return up-to-date position information for a
8794 recently-moved frame. Call this immediately after calling XMoveWindow.
8795 If FUZZY is non-zero, then LEFT and TOP are just estimates of where the
8796 frame has been moved to, so we use a fuzzy position comparison instead
8797 of an exact comparison. */
8800 x_sync_with_move (f
, left
, top
, fuzzy
)
8802 int left
, top
, fuzzy
;
8806 while (count
++ < 50)
8808 int current_left
= 0, current_top
= 0;
8810 /* In theory, this call to XSync only needs to happen once, but in
8811 practice, it doesn't seem to work, hence the need for the surrounding
8814 XSync (FRAME_X_DISPLAY (f
), False
);
8815 x_real_positions (f
, ¤t_left
, ¤t_top
);
8819 /* The left fuzz-factor is 10 pixels. The top fuzz-factor is 40
8822 if (eabs (current_left
- left
) <= 10
8823 && eabs (current_top
- top
) <= 40)
8826 else if (current_left
== left
&& current_top
== top
)
8830 /* As a last resort, just wait 0.5 seconds and hope that XGetGeometry
8831 will then return up-to-date position info. */
8833 wait_reading_process_output (0, 500000, 0, 0, Qnil
, NULL
, 0);
8837 /* Wait for an event on frame F matching EVENTTYPE. */
8839 x_wait_for_event (f
, eventtype
)
8843 int level
= interrupt_input_blocked
;
8846 EMACS_TIME tmo
, tmo_at
, time_now
;
8847 int fd
= ConnectionNumber (FRAME_X_DISPLAY (f
));
8849 pending_event_wait
.f
= f
;
8850 pending_event_wait
.eventtype
= eventtype
;
8852 /* Set timeout to 0.1 second. Hopefully not noticable.
8853 Maybe it should be configurable. */
8854 EMACS_SET_SECS_USECS (tmo
, 0, 100000);
8855 EMACS_GET_TIME (tmo_at
);
8856 EMACS_ADD_TIME (tmo_at
, tmo_at
, tmo
);
8858 while (pending_event_wait
.eventtype
)
8860 interrupt_input_pending
= 1;
8861 TOTALLY_UNBLOCK_INPUT
;
8862 /* XTread_socket is called after unblock. */
8864 interrupt_input_blocked
= level
;
8869 EMACS_GET_TIME (time_now
);
8870 EMACS_SUB_TIME (tmo
, tmo_at
, time_now
);
8872 if (EMACS_TIME_NEG_P (tmo
) || select (fd
+1, &fds
, NULL
, NULL
, &tmo
) == 0)
8873 break; /* Timeout */
8875 pending_event_wait
.f
= 0;
8876 pending_event_wait
.eventtype
= 0;
8880 /* Change the size of frame F's X window to COLS/ROWS in the case F
8881 doesn't have a widget. If CHANGE_GRAVITY is 1, we change to
8882 top-left-corner window gravity for this size change and subsequent
8883 size changes. Otherwise we leave the window gravity unchanged. */
8886 x_set_window_size_1 (f
, change_gravity
, cols
, rows
)
8891 int pixelwidth
, pixelheight
;
8893 check_frame_size (f
, &rows
, &cols
);
8894 f
->scroll_bar_actual_width
8895 = (!FRAME_HAS_VERTICAL_SCROLL_BARS (f
)
8897 : FRAME_CONFIG_SCROLL_BAR_WIDTH (f
) > 0
8898 ? FRAME_CONFIG_SCROLL_BAR_WIDTH (f
)
8899 : (FRAME_CONFIG_SCROLL_BAR_COLS (f
) * FRAME_COLUMN_WIDTH (f
)));
8901 compute_fringe_widths (f
, 0);
8903 pixelwidth
= FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f
, cols
)
8904 + 2*f
->border_width
;
8905 pixelheight
= FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f
, rows
)
8906 + FRAME_MENUBAR_HEIGHT (f
) + FRAME_TOOLBAR_HEIGHT (f
)
8907 + 2*f
->border_width
;
8909 if (change_gravity
) f
->win_gravity
= NorthWestGravity
;
8910 x_wm_set_size_hint (f
, (long) 0, 0);
8911 XResizeWindow (FRAME_X_DISPLAY (f
), FRAME_OUTER_WINDOW (f
),
8912 pixelwidth
, pixelheight
);
8915 /* We've set {FRAME,PIXEL}_{WIDTH,HEIGHT} to the values we hope to
8916 receive in the ConfigureNotify event; if we get what we asked
8917 for, then the event won't cause the screen to become garbaged, so
8918 we have to make sure to do it here. */
8919 SET_FRAME_GARBAGED (f
);
8921 /* Now, strictly speaking, we can't be sure that this is accurate,
8922 but the window manager will get around to dealing with the size
8923 change request eventually, and we'll hear how it went when the
8924 ConfigureNotify event gets here.
8926 We could just not bother storing any of this information here,
8927 and let the ConfigureNotify event set everything up, but that
8928 might be kind of confusing to the Lisp code, since size changes
8929 wouldn't be reported in the frame parameters until some random
8930 point in the future when the ConfigureNotify event arrives.
8932 We pass 1 for DELAY since we can't run Lisp code inside of
8935 /* But the ConfigureNotify may in fact never arrive, and then this is
8936 not right if the frame is visible. Instead wait (with timeout)
8937 for the ConfigureNotify. */
8938 if (f
->async_visible
)
8939 x_wait_for_event (f
, ConfigureNotify
);
8942 change_frame_size (f
, rows
, cols
, 0, 1, 0);
8943 FRAME_PIXEL_WIDTH (f
) = pixelwidth
;
8944 FRAME_PIXEL_HEIGHT (f
) = pixelheight
;
8950 /* Call this to change the size of frame F's x-window.
8951 If CHANGE_GRAVITY is 1, we change to top-left-corner window gravity
8952 for this size change and subsequent size changes.
8953 Otherwise we leave the window gravity unchanged. */
8956 x_set_window_size (f
, change_gravity
, cols
, rows
)
8964 if (FRAME_GTK_WIDGET (f
))
8965 xg_frame_set_char_size (f
, cols
, rows
);
8967 x_set_window_size_1 (f
, change_gravity
, cols
, rows
);
8968 #else /* not USE_GTK */
8970 x_set_window_size_1 (f
, change_gravity
, cols
, rows
);
8972 #endif /* not USE_GTK */
8974 /* If cursor was outside the new size, mark it as off. */
8975 mark_window_cursors_off (XWINDOW (f
->root_window
));
8977 /* Clear out any recollection of where the mouse highlighting was,
8978 since it might be in a place that's outside the new frame size.
8979 Actually checking whether it is outside is a pain in the neck,
8980 so don't try--just let the highlighting be done afresh with new size. */
8981 cancel_mouse_face (f
);
8986 /* Mouse warping. */
8989 x_set_mouse_position (f
, x
, y
)
8995 pix_x
= FRAME_COL_TO_PIXEL_X (f
, x
) + FRAME_COLUMN_WIDTH (f
) / 2;
8996 pix_y
= FRAME_LINE_TO_PIXEL_Y (f
, y
) + FRAME_LINE_HEIGHT (f
) / 2;
8998 if (pix_x
< 0) pix_x
= 0;
8999 if (pix_x
> FRAME_PIXEL_WIDTH (f
)) pix_x
= FRAME_PIXEL_WIDTH (f
);
9001 if (pix_y
< 0) pix_y
= 0;
9002 if (pix_y
> FRAME_PIXEL_HEIGHT (f
)) pix_y
= FRAME_PIXEL_HEIGHT (f
);
9006 XWarpPointer (FRAME_X_DISPLAY (f
), None
, FRAME_X_WINDOW (f
),
9007 0, 0, 0, 0, pix_x
, pix_y
);
9011 /* Move the mouse to position pixel PIX_X, PIX_Y relative to frame F. */
9014 x_set_mouse_pixel_position (f
, pix_x
, pix_y
)
9020 XWarpPointer (FRAME_X_DISPLAY (f
), None
, FRAME_X_WINDOW (f
),
9021 0, 0, 0, 0, pix_x
, pix_y
);
9025 /* focus shifting, raising and lowering. */
9028 x_focus_on_frame (f
)
9032 /* I don't think that the ICCCM allows programs to do things like this
9033 without the interaction of the window manager. Whatever you end up
9034 doing with this code, do it to x_unfocus_frame too. */
9035 XSetInputFocus (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
9036 RevertToPointerRoot
, CurrentTime
);
9045 /* Look at the remarks in x_focus_on_frame. */
9046 if (FRAME_X_DISPLAY_INFO (f
)->x_focus_frame
== f
)
9047 XSetInputFocus (FRAME_X_DISPLAY (f
), PointerRoot
,
9048 RevertToPointerRoot
, CurrentTime
);
9052 /* Raise frame F. */
9059 if (f
->async_visible
)
9060 XRaiseWindow (FRAME_X_DISPLAY (f
), FRAME_OUTER_WINDOW (f
));
9062 XFlush (FRAME_X_DISPLAY (f
));
9066 /* Lower frame F. */
9072 if (f
->async_visible
)
9075 XLowerWindow (FRAME_X_DISPLAY (f
), FRAME_OUTER_WINDOW (f
));
9076 XFlush (FRAME_X_DISPLAY (f
));
9081 /* Activate frame with Extended Window Manager Hints */
9084 x_ewmh_activate_frame (f
)
9087 /* See Window Manager Specification/Extended Window Manager Hints at
9088 http://freedesktop.org/wiki/Specifications/wm-spec */
9090 const char *atom
= "_NET_ACTIVE_WINDOW";
9091 if (f
->async_visible
&& wm_supports (f
, atom
))
9094 XSETFRAME (frame
, f
);
9095 Fx_send_client_event (frame
, make_number (0), frame
,
9096 make_unibyte_string (atom
, strlen (atom
)),
9098 Fcons (make_number (1),
9099 Fcons (make_number (last_user_time
),
9105 XTframe_raise_lower (f
, raise_flag
)
9115 /* XEmbed implementation. */
9118 xembed_set_info (f
, flags
)
9120 enum xembed_info flags
;
9123 unsigned long data
[2];
9125 atom
= XInternAtom (FRAME_X_DISPLAY (f
), "_XEMBED_INFO", False
);
9127 data
[0] = XEMBED_VERSION
;
9130 XChangeProperty (FRAME_X_DISPLAY (f
), FRAME_OUTER_WINDOW (f
), atom
, atom
,
9131 32, PropModeReplace
, (unsigned char *) data
, 2);
9135 xembed_send_message (f
, time
, message
, detail
, data1
, data2
)
9138 enum xembed_message message
;
9145 event
.xclient
.type
= ClientMessage
;
9146 event
.xclient
.window
= FRAME_X_OUTPUT (f
)->parent_desc
;
9147 event
.xclient
.message_type
= FRAME_X_DISPLAY_INFO (f
)->Xatom_XEMBED
;
9148 event
.xclient
.format
= 32;
9149 event
.xclient
.data
.l
[0] = time
;
9150 event
.xclient
.data
.l
[1] = message
;
9151 event
.xclient
.data
.l
[2] = detail
;
9152 event
.xclient
.data
.l
[3] = data1
;
9153 event
.xclient
.data
.l
[4] = data2
;
9155 XSendEvent (FRAME_X_DISPLAY (f
), FRAME_X_OUTPUT (f
)->parent_desc
,
9156 False
, NoEventMask
, &event
);
9157 XSync (FRAME_X_DISPLAY (f
), False
);
9160 /* Change of visibility. */
9162 /* This tries to wait until the frame is really visible.
9163 However, if the window manager asks the user where to position
9164 the frame, this will return before the user finishes doing that.
9165 The frame will not actually be visible at that time,
9166 but it will become visible later when the window manager
9167 finishes with it. */
9170 x_make_frame_visible (f
)
9174 int original_top
, original_left
;
9175 int retry_count
= 2;
9181 type
= x_icon_type (f
);
9183 x_bitmap_icon (f
, type
);
9185 if (! FRAME_VISIBLE_P (f
))
9187 /* We test FRAME_GARBAGED_P here to make sure we don't
9188 call x_set_offset a second time
9189 if we get to x_make_frame_visible a second time
9190 before the window gets really visible. */
9191 if (! FRAME_ICONIFIED_P (f
)
9192 && ! FRAME_X_EMBEDDED_P (f
)
9193 && ! f
->output_data
.x
->asked_for_visible
)
9194 x_set_offset (f
, f
->left_pos
, f
->top_pos
, 0);
9196 f
->output_data
.x
->asked_for_visible
= 1;
9198 if (! EQ (Vx_no_window_manager
, Qt
))
9199 x_wm_set_window_state (f
, NormalState
);
9200 #ifdef USE_X_TOOLKIT
9201 if (FRAME_X_EMBEDDED_P (f
))
9202 xembed_set_info (f
, XEMBED_MAPPED
);
9205 /* This was XtPopup, but that did nothing for an iconified frame. */
9206 XtMapWidget (f
->output_data
.x
->widget
);
9208 #else /* not USE_X_TOOLKIT */
9210 gtk_widget_show_all (FRAME_GTK_OUTER_WIDGET (f
));
9211 gtk_window_deiconify (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)));
9213 if (FRAME_X_EMBEDDED_P (f
))
9214 xembed_set_info (f
, XEMBED_MAPPED
);
9216 XMapRaised (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
));
9217 #endif /* not USE_GTK */
9218 #endif /* not USE_X_TOOLKIT */
9221 XFlush (FRAME_X_DISPLAY (f
));
9223 /* Synchronize to ensure Emacs knows the frame is visible
9224 before we do anything else. We do this loop with input not blocked
9225 so that incoming events are handled. */
9229 /* This must be before UNBLOCK_INPUT
9230 since events that arrive in response to the actions above
9231 will set it when they are handled. */
9232 int previously_visible
= f
->output_data
.x
->has_been_visible
;
9234 original_left
= f
->left_pos
;
9235 original_top
= f
->top_pos
;
9237 /* This must come after we set COUNT. */
9240 /* We unblock here so that arriving X events are processed. */
9242 /* Now move the window back to where it was "supposed to be".
9243 But don't do it if the gravity is negative.
9244 When the gravity is negative, this uses a position
9245 that is 3 pixels too low. Perhaps that's really the border width.
9247 Don't do this if the window has never been visible before,
9248 because the window manager may choose the position
9249 and we don't want to override it. */
9251 if (! FRAME_VISIBLE_P (f
)
9252 && ! FRAME_ICONIFIED_P (f
)
9253 && ! FRAME_X_EMBEDDED_P (f
)
9254 && f
->win_gravity
== NorthWestGravity
9255 && previously_visible
)
9259 unsigned int width
, height
, border
, depth
;
9263 /* On some window managers (such as FVWM) moving an existing
9264 window, even to the same place, causes the window manager
9265 to introduce an offset. This can cause the window to move
9266 to an unexpected location. Check the geometry (a little
9267 slow here) and then verify that the window is in the right
9268 place. If the window is not in the right place, move it
9269 there, and take the potential window manager hit. */
9270 XGetGeometry (FRAME_X_DISPLAY (f
), FRAME_OUTER_WINDOW (f
),
9271 &rootw
, &x
, &y
, &width
, &height
, &border
, &depth
);
9273 if (original_left
!= x
|| original_top
!= y
)
9274 XMoveWindow (FRAME_X_DISPLAY (f
), FRAME_OUTER_WINDOW (f
),
9275 original_left
, original_top
);
9280 XSETFRAME (frame
, f
);
9282 /* Wait until the frame is visible. Process X events until a
9283 MapNotify event has been seen, or until we think we won't get a
9284 MapNotify at all.. */
9285 for (count
= input_signal_count
+ 10;
9286 input_signal_count
< count
&& !FRAME_VISIBLE_P (f
);)
9288 /* Force processing of queued events. */
9291 /* Machines that do polling rather than SIGIO have been
9292 observed to go into a busy-wait here. So we'll fake an
9293 alarm signal to let the handler know that there's something
9294 to be read. We used to raise a real alarm, but it seems
9295 that the handler isn't always enabled here. This is
9297 if (input_polling_used ())
9299 /* It could be confusing if a real alarm arrives while
9300 processing the fake one. Turn it off and let the
9301 handler reset it. */
9302 extern void poll_for_input_1
P_ ((void));
9303 int old_poll_suppress_count
= poll_suppress_count
;
9304 poll_suppress_count
= 1;
9305 poll_for_input_1 ();
9306 poll_suppress_count
= old_poll_suppress_count
;
9309 /* See if a MapNotify event has been processed. */
9310 FRAME_SAMPLE_VISIBILITY (f
);
9315 (let ((f (selected-frame)))
9319 the frame is not raised with various window managers on
9320 FreeBSD, GNU/Linux and Solaris. It turns out that, for some
9321 unknown reason, the call to XtMapWidget is completely ignored.
9322 Mapping the widget a second time works. */
9324 if (!FRAME_VISIBLE_P (f
) && --retry_count
> 0)
9329 /* Change from mapped state to withdrawn state. */
9331 /* Make the frame visible (mapped and not iconified). */
9334 x_make_frame_invisible (f
)
9339 /* Use the frame's outermost window, not the one we normally draw on. */
9340 window
= FRAME_OUTER_WINDOW (f
);
9342 /* Don't keep the highlight on an invisible frame. */
9343 if (FRAME_X_DISPLAY_INFO (f
)->x_highlight_frame
== f
)
9344 FRAME_X_DISPLAY_INFO (f
)->x_highlight_frame
= 0;
9348 /* Before unmapping the window, update the WM_SIZE_HINTS property to claim
9349 that the current position of the window is user-specified, rather than
9350 program-specified, so that when the window is mapped again, it will be
9351 placed at the same location, without forcing the user to position it
9352 by hand again (they have already done that once for this window.) */
9353 x_wm_set_size_hint (f
, (long) 0, 1);
9356 if (FRAME_GTK_OUTER_WIDGET (f
))
9357 gtk_widget_hide (FRAME_GTK_OUTER_WIDGET (f
));
9360 if (FRAME_X_EMBEDDED_P (f
))
9361 xembed_set_info (f
, 0);
9366 if (! XWithdrawWindow (FRAME_X_DISPLAY (f
), window
,
9367 DefaultScreen (FRAME_X_DISPLAY (f
))))
9369 UNBLOCK_INPUT_RESIGNAL
;
9370 error ("Can't notify window manager of window withdrawal");
9374 /* We can't distinguish this from iconification
9375 just by the event that we get from the server.
9376 So we can't win using the usual strategy of letting
9377 FRAME_SAMPLE_VISIBILITY set this. So do it by hand,
9378 and synchronize with the server to make sure we agree. */
9380 FRAME_ICONIFIED_P (f
) = 0;
9381 f
->async_visible
= 0;
9382 f
->async_iconified
= 0;
9389 /* Change window state from mapped to iconified. */
9398 /* Don't keep the highlight on an invisible frame. */
9399 if (FRAME_X_DISPLAY_INFO (f
)->x_highlight_frame
== f
)
9400 FRAME_X_DISPLAY_INFO (f
)->x_highlight_frame
= 0;
9402 if (f
->async_iconified
)
9407 FRAME_SAMPLE_VISIBILITY (f
);
9409 type
= x_icon_type (f
);
9411 x_bitmap_icon (f
, type
);
9414 if (FRAME_GTK_OUTER_WIDGET (f
))
9416 if (! FRAME_VISIBLE_P (f
))
9417 gtk_widget_show_all (FRAME_GTK_OUTER_WIDGET (f
));
9419 gtk_window_iconify (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f
)));
9422 f
->async_iconified
= 1;
9423 f
->async_visible
= 0;
9429 #ifdef USE_X_TOOLKIT
9431 if (! FRAME_VISIBLE_P (f
))
9433 if (! EQ (Vx_no_window_manager
, Qt
))
9434 x_wm_set_window_state (f
, IconicState
);
9435 /* This was XtPopup, but that did nothing for an iconified frame. */
9436 XtMapWidget (f
->output_data
.x
->widget
);
9437 /* The server won't give us any event to indicate
9438 that an invisible frame was changed to an icon,
9439 so we have to record it here. */
9442 f
->async_iconified
= 1;
9443 f
->async_visible
= 0;
9448 result
= XIconifyWindow (FRAME_X_DISPLAY (f
),
9449 XtWindow (f
->output_data
.x
->widget
),
9450 DefaultScreen (FRAME_X_DISPLAY (f
)));
9454 error ("Can't notify window manager of iconification");
9456 f
->async_iconified
= 1;
9457 f
->async_visible
= 0;
9461 XFlush (FRAME_X_DISPLAY (f
));
9463 #else /* not USE_X_TOOLKIT */
9465 /* Make sure the X server knows where the window should be positioned,
9466 in case the user deiconifies with the window manager. */
9467 if (! FRAME_VISIBLE_P (f
)
9468 && ! FRAME_ICONIFIED_P (f
)
9469 && ! FRAME_X_EMBEDDED_P (f
))
9470 x_set_offset (f
, f
->left_pos
, f
->top_pos
, 0);
9472 /* Since we don't know which revision of X we're running, we'll use both
9473 the X11R3 and X11R4 techniques. I don't know if this is a good idea. */
9475 /* X11R4: send a ClientMessage to the window manager using the
9476 WM_CHANGE_STATE type. */
9480 message
.xclient
.window
= FRAME_X_WINDOW (f
);
9481 message
.xclient
.type
= ClientMessage
;
9482 message
.xclient
.message_type
= FRAME_X_DISPLAY_INFO (f
)->Xatom_wm_change_state
;
9483 message
.xclient
.format
= 32;
9484 message
.xclient
.data
.l
[0] = IconicState
;
9486 if (! XSendEvent (FRAME_X_DISPLAY (f
),
9487 DefaultRootWindow (FRAME_X_DISPLAY (f
)),
9489 SubstructureRedirectMask
| SubstructureNotifyMask
,
9492 UNBLOCK_INPUT_RESIGNAL
;
9493 error ("Can't notify window manager of iconification");
9497 /* X11R3: set the initial_state field of the window manager hints to
9499 x_wm_set_window_state (f
, IconicState
);
9501 if (!FRAME_VISIBLE_P (f
))
9503 /* If the frame was withdrawn, before, we must map it. */
9504 XMapRaised (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
));
9507 f
->async_iconified
= 1;
9508 f
->async_visible
= 0;
9510 XFlush (FRAME_X_DISPLAY (f
));
9512 #endif /* not USE_X_TOOLKIT */
9516 /* Free X resources of frame F. */
9519 x_free_frame_resources (f
)
9522 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
9524 struct scroll_bar
*b
;
9528 /* If a display connection is dead, don't try sending more
9529 commands to the X server. */
9530 if (dpyinfo
->display
)
9532 /* We must free faces before destroying windows because some
9533 font-driver (e.g. xft) access a window while finishing a
9535 if (FRAME_FACE_CACHE (f
))
9536 free_frame_faces (f
);
9538 if (f
->output_data
.x
->icon_desc
)
9539 XDestroyWindow (FRAME_X_DISPLAY (f
), f
->output_data
.x
->icon_desc
);
9541 #ifdef USE_X_TOOLKIT
9542 /* Explicitly destroy the scroll bars of the frame. Without
9543 this, we get "BadDrawable" errors from the toolkit later on,
9544 presumably from expose events generated for the disappearing
9545 toolkit scroll bars. */
9546 for (bar
= FRAME_SCROLL_BARS (f
); !NILP (bar
); bar
= b
->next
)
9548 b
= XSCROLL_BAR (bar
);
9549 x_scroll_bar_remove (b
);
9558 #ifdef USE_X_TOOLKIT
9559 if (f
->output_data
.x
->widget
)
9561 XtDestroyWidget (f
->output_data
.x
->widget
);
9562 f
->output_data
.x
->widget
= NULL
;
9564 /* Tooltips don't have widgets, only a simple X window, even if
9565 we are using a toolkit. */
9566 else if (FRAME_X_WINDOW (f
))
9567 XDestroyWindow (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
));
9569 free_frame_menubar (f
);
9570 #else /* !USE_X_TOOLKIT */
9573 /* In the GTK version, tooltips are normal X
9574 frames. We must check and free both types. */
9575 if (FRAME_GTK_OUTER_WIDGET (f
))
9577 gtk_widget_destroy (FRAME_GTK_OUTER_WIDGET (f
));
9578 FRAME_X_WINDOW (f
) = 0; /* Set to avoid XDestroyWindow below */
9579 FRAME_GTK_OUTER_WIDGET (f
) = 0;
9581 #endif /* USE_GTK */
9583 if (FRAME_X_WINDOW (f
))
9584 XDestroyWindow (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
));
9585 #endif /* !USE_X_TOOLKIT */
9587 unload_color (f
, FRAME_FOREGROUND_PIXEL (f
));
9588 unload_color (f
, FRAME_BACKGROUND_PIXEL (f
));
9589 unload_color (f
, f
->output_data
.x
->cursor_pixel
);
9590 unload_color (f
, f
->output_data
.x
->cursor_foreground_pixel
);
9591 unload_color (f
, f
->output_data
.x
->border_pixel
);
9592 unload_color (f
, f
->output_data
.x
->mouse_pixel
);
9594 if (f
->output_data
.x
->scroll_bar_background_pixel
!= -1)
9595 unload_color (f
, f
->output_data
.x
->scroll_bar_background_pixel
);
9596 if (f
->output_data
.x
->scroll_bar_foreground_pixel
!= -1)
9597 unload_color (f
, f
->output_data
.x
->scroll_bar_foreground_pixel
);
9598 #ifdef USE_TOOLKIT_SCROLL_BARS
9599 /* Scrollbar shadow colors. */
9600 if (f
->output_data
.x
->scroll_bar_top_shadow_pixel
!= -1)
9601 unload_color (f
, f
->output_data
.x
->scroll_bar_top_shadow_pixel
);
9602 if (f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
!= -1)
9603 unload_color (f
, f
->output_data
.x
->scroll_bar_bottom_shadow_pixel
);
9604 #endif /* USE_TOOLKIT_SCROLL_BARS */
9605 if (f
->output_data
.x
->white_relief
.allocated_p
)
9606 unload_color (f
, f
->output_data
.x
->white_relief
.pixel
);
9607 if (f
->output_data
.x
->black_relief
.allocated_p
)
9608 unload_color (f
, f
->output_data
.x
->black_relief
.pixel
);
9611 XFlush (FRAME_X_DISPLAY (f
));
9614 xfree (f
->output_data
.x
->saved_menu_event
);
9615 xfree (f
->output_data
.x
);
9616 f
->output_data
.x
= NULL
;
9618 if (f
== dpyinfo
->x_focus_frame
)
9619 dpyinfo
->x_focus_frame
= 0;
9620 if (f
== dpyinfo
->x_focus_event_frame
)
9621 dpyinfo
->x_focus_event_frame
= 0;
9622 if (f
== dpyinfo
->x_highlight_frame
)
9623 dpyinfo
->x_highlight_frame
= 0;
9625 if (f
== dpyinfo
->mouse_face_mouse_frame
)
9627 dpyinfo
->mouse_face_beg_row
9628 = dpyinfo
->mouse_face_beg_col
= -1;
9629 dpyinfo
->mouse_face_end_row
9630 = dpyinfo
->mouse_face_end_col
= -1;
9631 dpyinfo
->mouse_face_window
= Qnil
;
9632 dpyinfo
->mouse_face_deferred_gc
= 0;
9633 dpyinfo
->mouse_face_mouse_frame
= 0;
9640 /* Destroy the X window of frame F. */
9643 x_destroy_window (f
)
9646 struct x_display_info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
9648 /* If a display connection is dead, don't try sending more
9649 commands to the X server. */
9650 if (dpyinfo
->display
!= 0)
9651 x_free_frame_resources (f
);
9653 dpyinfo
->reference_count
--;
9657 /* Setting window manager hints. */
9659 /* Set the normal size hints for the window manager, for frame F.
9660 FLAGS is the flags word to use--or 0 meaning preserve the flags
9661 that the window now has.
9662 If USER_POSITION is nonzero, we set the USPosition
9663 flag (this is useful when FLAGS is 0).
9664 The GTK version is in gtkutils.c */
9668 x_wm_set_size_hint (f
, flags
, user_position
)
9673 XSizeHints size_hints
;
9674 Window window
= FRAME_OUTER_WINDOW (f
);
9676 /* Setting PMaxSize caused various problems. */
9677 size_hints
.flags
= PResizeInc
| PMinSize
/* | PMaxSize */;
9679 size_hints
.x
= f
->left_pos
;
9680 size_hints
.y
= f
->top_pos
;
9682 size_hints
.height
= FRAME_PIXEL_HEIGHT (f
);
9683 size_hints
.width
= FRAME_PIXEL_WIDTH (f
);
9685 size_hints
.width_inc
= FRAME_COLUMN_WIDTH (f
);
9686 size_hints
.height_inc
= FRAME_LINE_HEIGHT (f
);
9687 size_hints
.max_width
= x_display_pixel_width (FRAME_X_DISPLAY_INFO (f
))
9688 - FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f
, 0);
9689 size_hints
.max_height
= x_display_pixel_height (FRAME_X_DISPLAY_INFO (f
))
9690 - FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f
, 0);
9692 /* Calculate the base and minimum sizes. */
9694 int base_width
, base_height
;
9695 int min_rows
= 0, min_cols
= 0;
9697 base_width
= FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f
, 0);
9698 base_height
= FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f
, 0);
9700 check_frame_size (f
, &min_rows
, &min_cols
);
9702 /* The window manager uses the base width hints to calculate the
9703 current number of rows and columns in the frame while
9704 resizing; min_width and min_height aren't useful for this
9705 purpose, since they might not give the dimensions for a
9706 zero-row, zero-column frame.
9708 We use the base_width and base_height members if we have
9709 them; otherwise, we set the min_width and min_height members
9710 to the size for a zero x zero frame. */
9712 size_hints
.flags
|= PBaseSize
;
9713 size_hints
.base_width
= base_width
;
9714 size_hints
.base_height
= base_height
+ FRAME_MENUBAR_HEIGHT (f
);
9715 size_hints
.min_width
= base_width
+ min_cols
* size_hints
.width_inc
;
9716 size_hints
.min_height
= base_height
+ min_rows
* size_hints
.height_inc
;
9719 /* If we don't need the old flags, we don't need the old hint at all. */
9722 size_hints
.flags
|= flags
;
9727 XSizeHints hints
; /* Sometimes I hate X Windows... */
9728 long supplied_return
;
9731 value
= XGetWMNormalHints (FRAME_X_DISPLAY (f
), window
, &hints
,
9735 size_hints
.flags
|= flags
;
9740 if (hints
.flags
& PSize
)
9741 size_hints
.flags
|= PSize
;
9742 if (hints
.flags
& PPosition
)
9743 size_hints
.flags
|= PPosition
;
9744 if (hints
.flags
& USPosition
)
9745 size_hints
.flags
|= USPosition
;
9746 if (hints
.flags
& USSize
)
9747 size_hints
.flags
|= USSize
;
9754 size_hints
.win_gravity
= f
->win_gravity
;
9755 size_hints
.flags
|= PWinGravity
;
9759 size_hints
.flags
&= ~ PPosition
;
9760 size_hints
.flags
|= USPosition
;
9762 #endif /* PWinGravity */
9764 XSetWMNormalHints (FRAME_X_DISPLAY (f
), window
, &size_hints
);
9766 #endif /* not USE_GTK */
9768 /* Used for IconicState or NormalState */
9771 x_wm_set_window_state (f
, state
)
9775 #ifdef USE_X_TOOLKIT
9778 XtSetArg (al
[0], XtNinitialState
, state
);
9779 XtSetValues (f
->output_data
.x
->widget
, al
, 1);
9780 #else /* not USE_X_TOOLKIT */
9781 Window window
= FRAME_X_WINDOW (f
);
9783 f
->output_data
.x
->wm_hints
.flags
|= StateHint
;
9784 f
->output_data
.x
->wm_hints
.initial_state
= state
;
9786 XSetWMHints (FRAME_X_DISPLAY (f
), window
, &f
->output_data
.x
->wm_hints
);
9787 #endif /* not USE_X_TOOLKIT */
9791 x_wm_set_icon_pixmap (f
, pixmap_id
)
9795 Pixmap icon_pixmap
, icon_mask
;
9797 #ifndef USE_X_TOOLKIT
9798 Window window
= FRAME_OUTER_WINDOW (f
);
9803 icon_pixmap
= x_bitmap_pixmap (f
, pixmap_id
);
9804 f
->output_data
.x
->wm_hints
.icon_pixmap
= icon_pixmap
;
9805 icon_mask
= x_bitmap_mask (f
, pixmap_id
);
9806 f
->output_data
.x
->wm_hints
.icon_mask
= icon_mask
;
9810 /* It seems there is no way to turn off use of an icon
9818 xg_set_frame_icon (f
, icon_pixmap
, icon_mask
);
9822 #elif defined (USE_X_TOOLKIT) /* same as in x_wm_set_window_state. */
9826 XtSetArg (al
[0], XtNiconPixmap
, icon_pixmap
);
9827 XtSetValues (f
->output_data
.x
->widget
, al
, 1);
9828 XtSetArg (al
[0], XtNiconMask
, icon_mask
);
9829 XtSetValues (f
->output_data
.x
->widget
, al
, 1);
9832 #else /* not USE_X_TOOLKIT && not USE_GTK */
9834 f
->output_data
.x
->wm_hints
.flags
|= (IconPixmapHint
| IconMaskHint
);
9835 XSetWMHints (FRAME_X_DISPLAY (f
), window
, &f
->output_data
.x
->wm_hints
);
9837 #endif /* not USE_X_TOOLKIT && not USE_GTK */
9841 x_wm_set_icon_position (f
, icon_x
, icon_y
)
9845 Window window
= FRAME_OUTER_WINDOW (f
);
9847 f
->output_data
.x
->wm_hints
.flags
|= IconPositionHint
;
9848 f
->output_data
.x
->wm_hints
.icon_x
= icon_x
;
9849 f
->output_data
.x
->wm_hints
.icon_y
= icon_y
;
9851 XSetWMHints (FRAME_X_DISPLAY (f
), window
, &f
->output_data
.x
->wm_hints
);
9855 /***********************************************************************
9857 ***********************************************************************/
9861 /* Check that FONT is valid on frame F. It is if it can be found in F's
9865 x_check_font (f
, font
)
9871 xassert (font
!= NULL
&& ! NILP (font
->props
[FONT_TYPE_INDEX
]));
9872 if (font
->driver
->check
)
9873 xassert (font
->driver
->check (f
, font
) == 0);
9876 #endif /* GLYPH_DEBUG != 0 */
9879 /***********************************************************************
9881 ***********************************************************************/
9883 #ifdef USE_X_TOOLKIT
9884 static XrmOptionDescRec emacs_options
[] = {
9885 {"-geometry", ".geometry", XrmoptionSepArg
, NULL
},
9886 {"-iconic", ".iconic", XrmoptionNoArg
, (XtPointer
) "yes"},
9888 {"-internal-border-width", "*EmacsScreen.internalBorderWidth",
9889 XrmoptionSepArg
, NULL
},
9890 {"-ib", "*EmacsScreen.internalBorderWidth", XrmoptionSepArg
, NULL
},
9892 {"-T", "*EmacsShell.title", XrmoptionSepArg
, (XtPointer
) NULL
},
9893 {"-wn", "*EmacsShell.title", XrmoptionSepArg
, (XtPointer
) NULL
},
9894 {"-title", "*EmacsShell.title", XrmoptionSepArg
, (XtPointer
) NULL
},
9895 {"-iconname", "*EmacsShell.iconName", XrmoptionSepArg
, (XtPointer
) NULL
},
9896 {"-in", "*EmacsShell.iconName", XrmoptionSepArg
, (XtPointer
) NULL
},
9897 {"-mc", "*pointerColor", XrmoptionSepArg
, (XtPointer
) NULL
},
9898 {"-cr", "*cursorColor", XrmoptionSepArg
, (XtPointer
) NULL
}
9901 /* Whether atimer for Xt timeouts is activated or not. */
9903 static int x_timeout_atimer_activated_flag
;
9905 #endif /* USE_X_TOOLKIT */
9907 static int x_initialized
;
9910 static int x_session_initialized
;
9913 /* Test whether two display-name strings agree up to the dot that separates
9914 the screen number from the server number. */
9916 same_x_server (name1
, name2
)
9917 const char *name1
, *name2
;
9920 const unsigned char *system_name
= SDATA (Vsystem_name
);
9921 int system_name_length
= strlen (system_name
);
9922 int length_until_period
= 0;
9924 while (system_name
[length_until_period
] != 0
9925 && system_name
[length_until_period
] != '.')
9926 length_until_period
++;
9928 /* Treat `unix' like an empty host name. */
9929 if (! strncmp (name1
, "unix:", 5))
9931 if (! strncmp (name2
, "unix:", 5))
9933 /* Treat this host's name like an empty host name. */
9934 if (! strncmp (name1
, system_name
, system_name_length
)
9935 && name1
[system_name_length
] == ':')
9936 name1
+= system_name_length
;
9937 if (! strncmp (name2
, system_name
, system_name_length
)
9938 && name2
[system_name_length
] == ':')
9939 name2
+= system_name_length
;
9940 /* Treat this host's domainless name like an empty host name. */
9941 if (! strncmp (name1
, system_name
, length_until_period
)
9942 && name1
[length_until_period
] == ':')
9943 name1
+= length_until_period
;
9944 if (! strncmp (name2
, system_name
, length_until_period
)
9945 && name2
[length_until_period
] == ':')
9946 name2
+= length_until_period
;
9948 for (; *name1
!= '\0' && *name1
== *name2
; name1
++, name2
++)
9952 if (seen_colon
&& *name1
== '.')
9956 && (*name1
== '.' || *name1
== '\0')
9957 && (*name2
== '.' || *name2
== '\0'));
9960 /* Count number of set bits in mask and number of bits to shift to
9961 get to the first bit. With MASK 0x7e0, *BITS is set to 6, and *OFFSET
9964 get_bits_and_offset (mask
, bits
, offset
)
9988 /* Return 1 if display DISPLAY is available for use, 0 otherwise.
9989 But don't permanently open it, just test its availability. */
9992 x_display_ok (display
)
9993 const char *display
;
9998 dpy
= XOpenDisplay (display
);
10000 XCloseDisplay (dpy
);
10006 /* Open a connection to X display DISPLAY_NAME, and return
10007 the structure that describes the open display.
10008 If we cannot contact the display, return null. */
10010 struct x_display_info
*
10011 x_term_init (display_name
, xrm_option
, resource_name
)
10012 Lisp_Object display_name
;
10014 char *resource_name
;
10018 struct terminal
*terminal
;
10019 struct x_display_info
*dpyinfo
;
10024 if (!x_initialized
)
10030 if (! x_display_ok (SDATA (display_name
)))
10031 error ("Display %s can't be opened", SDATA (display_name
));
10035 #define NUM_ARGV 10
10037 char *argv
[NUM_ARGV
];
10038 char **argv2
= argv
;
10041 #ifndef HAVE_GTK_MULTIDISPLAY
10042 if (!EQ (Vinitial_window_system
, Qx
))
10043 error ("Sorry, you cannot connect to X servers with the GTK toolkit");
10046 if (x_initialized
++ > 1)
10048 #ifdef HAVE_GTK_MULTIDISPLAY
10049 /* Opening another display. If xg_display_open returns less
10050 than zero, we are probably on GTK 2.0, which can only handle
10051 one display. GTK 2.2 or later can handle more than one. */
10052 if (xg_display_open (SDATA (display_name
), &dpy
) < 0)
10054 error ("Sorry, this version of GTK can only handle one display");
10058 for (argc
= 0; argc
< NUM_ARGV
; ++argc
)
10062 argv
[argc
++] = initial_argv
[0];
10064 if (! NILP (display_name
))
10066 argv
[argc
++] = "--display";
10067 argv
[argc
++] = SDATA (display_name
);
10070 argv
[argc
++] = "--name";
10071 argv
[argc
++] = resource_name
;
10073 XSetLocaleModifiers ("");
10075 gtk_init (&argc
, &argv2
);
10077 /* gtk_init does set_locale. We must fix locale after calling it. */
10081 dpy
= GDK_DISPLAY ();
10083 /* NULL window -> events for all windows go to our function */
10084 gdk_window_add_filter (NULL
, event_handler_gdk
, NULL
);
10086 /* Load our own gtkrc if it exists. */
10088 char *file
= "~/.emacs.d/gtkrc";
10089 Lisp_Object s
, abs_file
;
10091 s
= make_string (file
, strlen (file
));
10092 abs_file
= Fexpand_file_name (s
, Qnil
);
10094 if (! NILP (abs_file
) && !NILP (Ffile_readable_p (abs_file
)))
10095 gtk_rc_parse (SDATA (abs_file
));
10098 XSetErrorHandler (x_error_handler
);
10099 XSetIOErrorHandler (x_io_error_quitter
);
10102 #else /* not USE_GTK */
10103 #ifdef USE_X_TOOLKIT
10104 /* weiner@footloose.sps.mot.com reports that this causes
10106 X protocol error: BadAtom (invalid Atom parameter)
10107 on protocol request 18skiloaf.
10108 So let's not use it until R6. */
10109 #ifdef HAVE_X11XTR6
10110 XtSetLanguageProc (NULL
, NULL
, NULL
);
10121 argv
[argc
++] = "-xrm";
10122 argv
[argc
++] = xrm_option
;
10124 turn_on_atimers (0);
10125 dpy
= XtOpenDisplay (Xt_app_con
, SDATA (display_name
),
10126 resource_name
, EMACS_CLASS
,
10127 emacs_options
, XtNumber (emacs_options
),
10129 turn_on_atimers (1);
10131 #ifdef HAVE_X11XTR6
10132 /* I think this is to compensate for XtSetLanguageProc. */
10137 #else /* not USE_X_TOOLKIT */
10138 XSetLocaleModifiers ("");
10139 dpy
= XOpenDisplay (SDATA (display_name
));
10140 #endif /* not USE_X_TOOLKIT */
10141 #endif /* not USE_GTK*/
10143 /* Detect failure. */
10150 /* We have definitely succeeded. Record the new connection. */
10152 dpyinfo
= (struct x_display_info
*) xmalloc (sizeof (struct x_display_info
));
10153 bzero (dpyinfo
, sizeof *dpyinfo
);
10155 terminal
= x_create_terminal (dpyinfo
);
10158 struct x_display_info
*share
;
10161 for (share
= x_display_list
, tail
= x_display_name_list
; share
;
10162 share
= share
->next
, tail
= XCDR (tail
))
10163 if (same_x_server (SDATA (XCAR (XCAR (tail
))),
10164 SDATA (display_name
)))
10167 terminal
->kboard
= share
->terminal
->kboard
;
10170 terminal
->kboard
= (KBOARD
*) xmalloc (sizeof (KBOARD
));
10171 init_kboard (terminal
->kboard
);
10172 terminal
->kboard
->Vwindow_system
= Qx
;
10173 if (!EQ (XSYMBOL (Qvendor_specific_keysyms
)->function
, Qunbound
))
10175 char *vendor
= ServerVendor (dpy
);
10176 /* Temporarily hide the partially initialized terminal */
10177 terminal_list
= terminal
->next_terminal
;
10179 terminal
->kboard
->Vsystem_key_alist
10180 = call1 (Qvendor_specific_keysyms
,
10181 vendor
? build_string (vendor
) : empty_unibyte_string
);
10183 terminal
->next_terminal
= terminal_list
;
10184 terminal_list
= terminal
;
10187 terminal
->kboard
->next_kboard
= all_kboards
;
10188 all_kboards
= terminal
->kboard
;
10189 /* Don't let the initial kboard remain current longer than necessary.
10190 That would cause problems if a file loaded on startup tries to
10191 prompt in the mini-buffer. */
10192 if (current_kboard
== initial_kboard
)
10193 current_kboard
= terminal
->kboard
;
10195 terminal
->kboard
->reference_count
++;
10198 /* Put this display on the chain. */
10199 dpyinfo
->next
= x_display_list
;
10200 x_display_list
= dpyinfo
;
10202 /* Put it on x_display_name_list as well, to keep them parallel. */
10203 x_display_name_list
= Fcons (Fcons (display_name
, Qnil
),
10204 x_display_name_list
);
10205 dpyinfo
->name_list_element
= XCAR (x_display_name_list
);
10207 dpyinfo
->display
= dpy
;
10209 /* Set the name of the terminal. */
10210 terminal
->name
= (char *) xmalloc (SBYTES (display_name
) + 1);
10211 strncpy (terminal
->name
, SDATA (display_name
), SBYTES (display_name
));
10212 terminal
->name
[SBYTES (display_name
)] = 0;
10215 XSetAfterFunction (x_current_display
, x_trace_wire
);
10219 = (char *) xmalloc (SBYTES (Vinvocation_name
)
10220 + SBYTES (Vsystem_name
)
10222 sprintf (dpyinfo
->x_id_name
, "%s@%s",
10223 SDATA (Vinvocation_name
), SDATA (Vsystem_name
));
10225 /* Figure out which modifier bits mean what. */
10226 x_find_modifier_meanings (dpyinfo
);
10228 /* Get the scroll bar cursor. */
10230 /* We must create a GTK cursor, it is required for GTK widgets. */
10231 dpyinfo
->xg_cursor
= xg_create_default_cursor (dpyinfo
->display
);
10232 #endif /* USE_GTK */
10234 dpyinfo
->vertical_scroll_bar_cursor
10235 = XCreateFontCursor (dpyinfo
->display
, XC_sb_v_double_arrow
);
10237 xrdb
= x_load_resources (dpyinfo
->display
, xrm_option
,
10238 resource_name
, EMACS_CLASS
);
10239 #ifdef HAVE_XRMSETDATABASE
10240 XrmSetDatabase (dpyinfo
->display
, xrdb
);
10242 dpyinfo
->display
->db
= xrdb
;
10244 /* Put the rdb where we can find it in a way that works on
10246 dpyinfo
->xrdb
= xrdb
;
10248 dpyinfo
->screen
= ScreenOfDisplay (dpyinfo
->display
,
10249 DefaultScreen (dpyinfo
->display
));
10250 select_visual (dpyinfo
);
10251 dpyinfo
->cmap
= DefaultColormapOfScreen (dpyinfo
->screen
);
10252 dpyinfo
->root_window
= RootWindowOfScreen (dpyinfo
->screen
);
10253 dpyinfo
->client_leader_window
= 0;
10254 dpyinfo
->grabbed
= 0;
10255 dpyinfo
->reference_count
= 0;
10256 dpyinfo
->icon_bitmap_id
= -1;
10257 dpyinfo
->n_fonts
= 0;
10258 dpyinfo
->bitmaps
= 0;
10259 dpyinfo
->bitmaps_size
= 0;
10260 dpyinfo
->bitmaps_last
= 0;
10261 dpyinfo
->scratch_cursor_gc
= 0;
10262 dpyinfo
->mouse_face_mouse_frame
= 0;
10263 dpyinfo
->mouse_face_deferred_gc
= 0;
10264 dpyinfo
->mouse_face_beg_row
= dpyinfo
->mouse_face_beg_col
= -1;
10265 dpyinfo
->mouse_face_end_row
= dpyinfo
->mouse_face_end_col
= -1;
10266 dpyinfo
->mouse_face_face_id
= DEFAULT_FACE_ID
;
10267 dpyinfo
->mouse_face_window
= Qnil
;
10268 dpyinfo
->mouse_face_overlay
= Qnil
;
10269 dpyinfo
->mouse_face_mouse_x
= dpyinfo
->mouse_face_mouse_y
= 0;
10270 dpyinfo
->mouse_face_defer
= 0;
10271 dpyinfo
->mouse_face_hidden
= 0;
10272 dpyinfo
->x_focus_frame
= 0;
10273 dpyinfo
->x_focus_event_frame
= 0;
10274 dpyinfo
->x_highlight_frame
= 0;
10275 dpyinfo
->wm_type
= X_WMTYPE_UNKNOWN
;
10277 /* See if we can construct pixel values from RGB values. */
10278 dpyinfo
->red_bits
= dpyinfo
->blue_bits
= dpyinfo
->green_bits
= 0;
10279 dpyinfo
->red_offset
= dpyinfo
->blue_offset
= dpyinfo
->green_offset
= 0;
10281 if (dpyinfo
->visual
->class == TrueColor
)
10283 get_bits_and_offset (dpyinfo
->visual
->red_mask
,
10284 &dpyinfo
->red_bits
, &dpyinfo
->red_offset
);
10285 get_bits_and_offset (dpyinfo
->visual
->blue_mask
,
10286 &dpyinfo
->blue_bits
, &dpyinfo
->blue_offset
);
10287 get_bits_and_offset (dpyinfo
->visual
->green_mask
,
10288 &dpyinfo
->green_bits
, &dpyinfo
->green_offset
);
10291 /* See if a private colormap is requested. */
10292 if (dpyinfo
->visual
== DefaultVisualOfScreen (dpyinfo
->screen
))
10294 if (dpyinfo
->visual
->class == PseudoColor
)
10297 value
= display_x_get_resource (dpyinfo
,
10298 build_string ("privateColormap"),
10299 build_string ("PrivateColormap"),
10301 if (STRINGP (value
)
10302 && (!strcmp (SDATA (value
), "true")
10303 || !strcmp (SDATA (value
), "on")))
10304 dpyinfo
->cmap
= XCopyColormapAndFree (dpyinfo
->display
, dpyinfo
->cmap
);
10308 dpyinfo
->cmap
= XCreateColormap (dpyinfo
->display
, dpyinfo
->root_window
,
10309 dpyinfo
->visual
, AllocNone
);
10313 /* If we are using Xft, check dpi value in X resources.
10314 It is better we use it as well, since Xft will use it, as will all
10315 Gnome applications. If our real DPI is smaller or larger than the
10316 one Xft uses, our font will look smaller or larger than other
10317 for other applications, even if it is the same font name (monospace-10
10319 char *v
= XGetDefault (dpyinfo
->display
, "Xft", "dpi");
10321 if (v
!= NULL
&& sscanf (v
, "%lf", &d
) == 1)
10322 dpyinfo
->resy
= dpyinfo
->resx
= d
;
10326 if (dpyinfo
->resy
< 1)
10328 int screen_number
= XScreenNumberOfScreen (dpyinfo
->screen
);
10329 double pixels
= DisplayHeight (dpyinfo
->display
, screen_number
);
10330 double mm
= DisplayHeightMM (dpyinfo
->display
, screen_number
);
10331 /* Mac OS X 10.3's Xserver sometimes reports 0.0mm. */
10332 dpyinfo
->resy
= (mm
< 1) ? 100 : pixels
* 25.4 / mm
;
10333 pixels
= DisplayWidth (dpyinfo
->display
, screen_number
);
10334 mm
= DisplayWidthMM (dpyinfo
->display
, screen_number
);
10335 /* Mac OS X 10.3's Xserver sometimes reports 0.0mm. */
10336 dpyinfo
->resx
= (mm
< 1) ? 100 : pixels
* 25.4 / mm
;
10339 dpyinfo
->Xatom_wm_protocols
10340 = XInternAtom (dpyinfo
->display
, "WM_PROTOCOLS", False
);
10341 dpyinfo
->Xatom_wm_take_focus
10342 = XInternAtom (dpyinfo
->display
, "WM_TAKE_FOCUS", False
);
10343 dpyinfo
->Xatom_wm_save_yourself
10344 = XInternAtom (dpyinfo
->display
, "WM_SAVE_YOURSELF", False
);
10345 dpyinfo
->Xatom_wm_delete_window
10346 = XInternAtom (dpyinfo
->display
, "WM_DELETE_WINDOW", False
);
10347 dpyinfo
->Xatom_wm_change_state
10348 = XInternAtom (dpyinfo
->display
, "WM_CHANGE_STATE", False
);
10349 dpyinfo
->Xatom_wm_configure_denied
10350 = XInternAtom (dpyinfo
->display
, "WM_CONFIGURE_DENIED", False
);
10351 dpyinfo
->Xatom_wm_window_moved
10352 = XInternAtom (dpyinfo
->display
, "WM_MOVED", False
);
10353 dpyinfo
->Xatom_wm_client_leader
10354 = XInternAtom (dpyinfo
->display
, "WM_CLIENT_LEADER", False
);
10355 dpyinfo
->Xatom_editres
10356 = XInternAtom (dpyinfo
->display
, "Editres", False
);
10357 dpyinfo
->Xatom_CLIPBOARD
10358 = XInternAtom (dpyinfo
->display
, "CLIPBOARD", False
);
10359 dpyinfo
->Xatom_TIMESTAMP
10360 = XInternAtom (dpyinfo
->display
, "TIMESTAMP", False
);
10361 dpyinfo
->Xatom_TEXT
10362 = XInternAtom (dpyinfo
->display
, "TEXT", False
);
10363 dpyinfo
->Xatom_COMPOUND_TEXT
10364 = XInternAtom (dpyinfo
->display
, "COMPOUND_TEXT", False
);
10365 dpyinfo
->Xatom_UTF8_STRING
10366 = XInternAtom (dpyinfo
->display
, "UTF8_STRING", False
);
10367 dpyinfo
->Xatom_DELETE
10368 = XInternAtom (dpyinfo
->display
, "DELETE", False
);
10369 dpyinfo
->Xatom_MULTIPLE
10370 = XInternAtom (dpyinfo
->display
, "MULTIPLE", False
);
10371 dpyinfo
->Xatom_INCR
10372 = XInternAtom (dpyinfo
->display
, "INCR", False
);
10373 dpyinfo
->Xatom_EMACS_TMP
10374 = XInternAtom (dpyinfo
->display
, "_EMACS_TMP_", False
);
10375 dpyinfo
->Xatom_TARGETS
10376 = XInternAtom (dpyinfo
->display
, "TARGETS", False
);
10377 dpyinfo
->Xatom_NULL
10378 = XInternAtom (dpyinfo
->display
, "NULL", False
);
10379 dpyinfo
->Xatom_ATOM_PAIR
10380 = XInternAtom (dpyinfo
->display
, "ATOM_PAIR", False
);
10381 /* For properties of font. */
10382 dpyinfo
->Xatom_PIXEL_SIZE
10383 = XInternAtom (dpyinfo
->display
, "PIXEL_SIZE", False
);
10384 dpyinfo
->Xatom_AVERAGE_WIDTH
10385 = XInternAtom (dpyinfo
->display
, "AVERAGE_WIDTH", False
);
10386 dpyinfo
->Xatom_MULE_BASELINE_OFFSET
10387 = XInternAtom (dpyinfo
->display
, "_MULE_BASELINE_OFFSET", False
);
10388 dpyinfo
->Xatom_MULE_RELATIVE_COMPOSE
10389 = XInternAtom (dpyinfo
->display
, "_MULE_RELATIVE_COMPOSE", False
);
10390 dpyinfo
->Xatom_MULE_DEFAULT_ASCENT
10391 = XInternAtom (dpyinfo
->display
, "_MULE_DEFAULT_ASCENT", False
);
10393 /* Ghostscript support. */
10394 dpyinfo
->Xatom_PAGE
= XInternAtom (dpyinfo
->display
, "PAGE", False
);
10395 dpyinfo
->Xatom_DONE
= XInternAtom (dpyinfo
->display
, "DONE", False
);
10397 dpyinfo
->Xatom_Scrollbar
= XInternAtom (dpyinfo
->display
, "SCROLLBAR",
10400 dpyinfo
->Xatom_XEMBED
= XInternAtom (dpyinfo
->display
, "_XEMBED",
10403 dpyinfo
->Xatom_net_wm_state
10404 = XInternAtom (dpyinfo
->display
, "_NET_WM_STATE", False
);
10405 dpyinfo
->Xatom_net_wm_state_fullscreen_atom
10406 = XInternAtom (dpyinfo
->display
, "_NET_WM_STATE_FULLSCREEN", False
);
10407 dpyinfo
->Xatom_net_wm_state_maximized_horz
10408 = XInternAtom (dpyinfo
->display
, "_NET_WM_STATE_MAXIMIZED_HORZ", False
);
10409 dpyinfo
->Xatom_net_wm_state_maximized_vert
10410 = XInternAtom (dpyinfo
->display
, "_NET_WM_STATE_MAXIMIZED_VERT", False
);
10411 dpyinfo
->Xatom_net_wm_state_sticky
10412 = XInternAtom (dpyinfo
->display
, "_NET_WM_STATE_STICKY", False
);
10414 dpyinfo
->cut_buffers_initialized
= 0;
10416 dpyinfo
->x_dnd_atoms_size
= 8;
10417 dpyinfo
->x_dnd_atoms_length
= 0;
10418 dpyinfo
->x_dnd_atoms
= xmalloc (sizeof (*dpyinfo
->x_dnd_atoms
)
10419 * dpyinfo
->x_dnd_atoms_size
);
10421 dpyinfo
->net_supported_atoms
= NULL
;
10422 dpyinfo
->nr_net_supported_atoms
= 0;
10423 dpyinfo
->net_supported_window
= 0;
10425 connection
= ConnectionNumber (dpyinfo
->display
);
10426 dpyinfo
->connection
= connection
;
10429 extern int gray_bitmap_width
, gray_bitmap_height
;
10430 extern char *gray_bitmap_bits
;
10432 = XCreatePixmapFromBitmapData (dpyinfo
->display
, dpyinfo
->root_window
,
10434 gray_bitmap_width
, gray_bitmap_height
,
10435 (unsigned long) 1, (unsigned long) 0, 1);
10439 xim_initialize (dpyinfo
, resource_name
);
10442 xsettings_initialize (dpyinfo
);
10444 #ifdef subprocesses
10445 /* This is only needed for distinguishing keyboard and process input. */
10446 if (connection
!= 0)
10447 add_keyboard_wait_descriptor (connection
);
10451 fcntl (connection
, F_SETOWN
, getpid ());
10452 #endif /* ! defined (F_SETOWN) */
10455 if (interrupt_input
)
10456 init_sigio (connection
);
10457 #endif /* ! defined (SIGIO) */
10461 Display
*dpy
= dpyinfo
->display
;
10462 XrmValue d
, fr
, to
;
10465 d
.addr
= (XPointer
)&dpy
;
10466 d
.size
= sizeof (Display
*);
10467 fr
.addr
= XtDefaultFont
;
10468 fr
.size
= sizeof (XtDefaultFont
);
10469 to
.size
= sizeof (Font
*);
10470 to
.addr
= (XPointer
)&font
;
10471 x_catch_errors (dpy
);
10472 if (!XtCallConverter (dpy
, XtCvtStringToFont
, &d
, 1, &fr
, &to
, NULL
))
10474 if (x_had_errors_p (dpy
) || !XQueryFont (dpy
, font
))
10475 XrmPutLineResource (&xrdb
, "Emacs.dialog.*.font: 9x15");
10476 x_uncatch_errors ();
10480 /* See if we should run in synchronous mode. This is useful
10481 for debugging X code. */
10484 value
= display_x_get_resource (dpyinfo
,
10485 build_string ("synchronous"),
10486 build_string ("Synchronous"),
10488 if (STRINGP (value
)
10489 && (!strcmp (SDATA (value
), "true")
10490 || !strcmp (SDATA (value
), "on")))
10491 XSynchronize (dpyinfo
->display
, True
);
10496 value
= display_x_get_resource (dpyinfo
,
10497 build_string ("useXIM"),
10498 build_string ("UseXIM"),
10501 if (STRINGP (value
)
10502 && (!strcmp (SDATA (value
), "false")
10503 || !strcmp (SDATA (value
), "off")))
10506 if (STRINGP (value
)
10507 && (!strcmp (SDATA (value
), "true")
10508 || !strcmp (SDATA (value
), "on")))
10514 /* Only do this for the very first display in the Emacs session.
10515 Ignore X session management when Emacs was first started on a
10517 if (terminal
->id
== 1)
10518 x_session_initialize (dpyinfo
);
10526 /* Get rid of display DPYINFO, deleting all frames on it,
10527 and without sending any more commands to the X server. */
10530 x_delete_display (dpyinfo
)
10531 struct x_display_info
*dpyinfo
;
10534 struct terminal
*t
;
10536 /* Close all frames and delete the generic struct terminal for this
10538 for (t
= terminal_list
; t
; t
= t
->next_terminal
)
10539 if (t
->type
== output_x_window
&& t
->display_info
.x
== dpyinfo
)
10542 /* Close X session management when we close its display. */
10543 if (t
->id
== 1 && x_session_have_connection ())
10546 delete_terminal (t
);
10550 delete_keyboard_wait_descriptor (dpyinfo
->connection
);
10552 /* Discard this display from x_display_name_list and x_display_list.
10553 We can't use Fdelq because that can quit. */
10554 if (! NILP (x_display_name_list
)
10555 && EQ (XCAR (x_display_name_list
), dpyinfo
->name_list_element
))
10556 x_display_name_list
= XCDR (x_display_name_list
);
10561 tail
= x_display_name_list
;
10562 while (CONSP (tail
) && CONSP (XCDR (tail
)))
10564 if (EQ (XCAR (XCDR (tail
)), dpyinfo
->name_list_element
))
10566 XSETCDR (tail
, XCDR (XCDR (tail
)));
10569 tail
= XCDR (tail
);
10573 if (next_noop_dpyinfo
== dpyinfo
)
10574 next_noop_dpyinfo
= dpyinfo
->next
;
10576 if (x_display_list
== dpyinfo
)
10577 x_display_list
= dpyinfo
->next
;
10580 struct x_display_info
*tail
;
10582 for (tail
= x_display_list
; tail
; tail
= tail
->next
)
10583 if (tail
->next
== dpyinfo
)
10584 tail
->next
= tail
->next
->next
;
10587 xfree (dpyinfo
->x_id_name
);
10588 xfree (dpyinfo
->x_dnd_atoms
);
10589 xfree (dpyinfo
->color_cells
);
10593 #ifdef USE_X_TOOLKIT
10595 /* Atimer callback function for TIMER. Called every 0.1s to process
10596 Xt timeouts, if needed. We must avoid calling XtAppPending as
10597 much as possible because that function does an implicit XFlush
10598 that slows us down. */
10601 x_process_timeouts (timer
)
10602 struct atimer
*timer
;
10605 x_timeout_atimer_activated_flag
= 0;
10606 if (toolkit_scroll_bar_interaction
|| popup_activated ())
10608 while (XtAppPending (Xt_app_con
) & XtIMTimer
)
10609 XtAppProcessEvent (Xt_app_con
, XtIMTimer
);
10610 /* Reactivate the atimer for next time. */
10611 x_activate_timeout_atimer ();
10616 /* Install an asynchronous timer that processes Xt timeout events
10617 every 0.1s as long as either `toolkit_scroll_bar_interaction' or
10618 `popup_activated_flag' (in xmenu.c) is set. Make sure to call this
10619 function whenever these variables are set. This is necessary
10620 because some widget sets use timeouts internally, for example the
10621 LessTif menu bar, or the Xaw3d scroll bar. When Xt timeouts aren't
10622 processed, these widgets don't behave normally. */
10625 x_activate_timeout_atimer ()
10628 if (!x_timeout_atimer_activated_flag
)
10630 EMACS_TIME interval
;
10632 EMACS_SET_SECS_USECS (interval
, 0, 100000);
10633 start_atimer (ATIMER_RELATIVE
, interval
, x_process_timeouts
, 0);
10634 x_timeout_atimer_activated_flag
= 1;
10639 #endif /* USE_X_TOOLKIT */
10642 /* Set up use of X before we make the first connection. */
10644 extern frame_parm_handler x_frame_parm_handlers
[];
10646 static struct redisplay_interface x_redisplay_interface
=
10648 x_frame_parm_handlers
,
10652 x_clear_end_of_line
,
10654 x_after_update_window_line
,
10655 x_update_window_begin
,
10656 x_update_window_end
,
10662 0, /* flush_display_optional */
10664 x_clear_window_mouse_face
,
10665 x_get_glyph_overhangs
,
10666 x_fix_overlapping_area
,
10667 x_draw_fringe_bitmap
,
10668 0, /* define_fringe_bitmap */
10669 0, /* destroy_fringe_bitmap */
10670 x_compute_glyph_string_overhangs
,
10671 x_draw_glyph_string
,
10672 x_define_frame_cursor
,
10673 x_clear_frame_area
,
10674 x_draw_window_cursor
,
10675 x_draw_vertical_window_border
,
10676 x_shift_glyphs_for_insert
10680 /* This function is called when the last frame on a display is deleted. */
10682 x_delete_terminal (struct terminal
*terminal
)
10684 struct x_display_info
*dpyinfo
= terminal
->display_info
.x
;
10687 /* Protect against recursive calls. delete_frame in
10688 delete_terminal calls us back when it deletes our last frame. */
10689 if (!terminal
->name
)
10694 /* We must close our connection to the XIM server before closing the
10697 xim_close_dpy (dpyinfo
);
10700 /* If called from x_connection_closed, the display may already be closed
10701 and dpyinfo->display was set to 0 to indicate that. */
10702 if (dpyinfo
->display
)
10704 x_destroy_all_bitmaps (dpyinfo
);
10705 XSetCloseDownMode (dpyinfo
->display
, DestroyAll
);
10707 /* Whether or not XCloseDisplay destroys the associated resource
10708 database depends on the version of libX11. To avoid both
10709 crash and memory leak, we dissociate the database from the
10710 display and then destroy dpyinfo->xrdb ourselves.
10712 Unfortunately, the above strategy does not work in some
10713 situations due to a bug in newer versions of libX11: because
10714 XrmSetDatabase doesn't clear the flag XlibDisplayDfltRMDB if
10715 dpy->db is NULL, XCloseDisplay destroys the associated
10716 database whereas it has not been created by XGetDefault
10717 (Bug#21974 in freedesktop.org Bugzilla). As a workaround, we
10718 don't destroy the database here in order to avoid the crash
10719 in the above situations for now, though that may cause memory
10720 leaks in other situations. */
10722 #ifdef HAVE_XRMSETDATABASE
10723 XrmSetDatabase (dpyinfo
->display
, NULL
);
10725 dpyinfo
->display
->db
= NULL
;
10727 /* We used to call XrmDestroyDatabase from x_delete_display, but
10728 some older versions of libX11 crash if we call it after
10729 closing all the displays. */
10730 XrmDestroyDatabase (dpyinfo
->xrdb
);
10734 xg_display_close (dpyinfo
->display
);
10736 #ifdef USE_X_TOOLKIT
10737 XtCloseDisplay (dpyinfo
->display
);
10739 XCloseDisplay (dpyinfo
->display
);
10741 #endif /* ! USE_GTK */
10744 x_delete_display (dpyinfo
);
10748 /* Create a struct terminal, initialize it with the X11 specific
10749 functions and make DISPLAY->TERMINAL point to it. */
10751 static struct terminal
*
10752 x_create_terminal (struct x_display_info
*dpyinfo
)
10754 struct terminal
*terminal
;
10756 terminal
= create_terminal ();
10758 terminal
->type
= output_x_window
;
10759 terminal
->display_info
.x
= dpyinfo
;
10760 dpyinfo
->terminal
= terminal
;
10762 /* kboard is initialized in x_term_init. */
10764 terminal
->clear_frame_hook
= x_clear_frame
;
10765 terminal
->ins_del_lines_hook
= x_ins_del_lines
;
10766 terminal
->delete_glyphs_hook
= x_delete_glyphs
;
10767 terminal
->ring_bell_hook
= XTring_bell
;
10768 terminal
->toggle_invisible_pointer_hook
= XTtoggle_invisible_pointer
;
10769 terminal
->reset_terminal_modes_hook
= XTreset_terminal_modes
;
10770 terminal
->set_terminal_modes_hook
= XTset_terminal_modes
;
10771 terminal
->update_begin_hook
= x_update_begin
;
10772 terminal
->update_end_hook
= x_update_end
;
10773 terminal
->set_terminal_window_hook
= XTset_terminal_window
;
10774 terminal
->read_socket_hook
= XTread_socket
;
10775 terminal
->frame_up_to_date_hook
= XTframe_up_to_date
;
10776 terminal
->mouse_position_hook
= XTmouse_position
;
10777 terminal
->frame_rehighlight_hook
= XTframe_rehighlight
;
10778 terminal
->frame_raise_lower_hook
= XTframe_raise_lower
;
10779 terminal
->fullscreen_hook
= XTfullscreen_hook
;
10780 terminal
->set_vertical_scroll_bar_hook
= XTset_vertical_scroll_bar
;
10781 terminal
->condemn_scroll_bars_hook
= XTcondemn_scroll_bars
;
10782 terminal
->redeem_scroll_bar_hook
= XTredeem_scroll_bar
;
10783 terminal
->judge_scroll_bars_hook
= XTjudge_scroll_bars
;
10785 terminal
->delete_frame_hook
= x_destroy_window
;
10786 terminal
->delete_terminal_hook
= x_delete_terminal
;
10788 terminal
->rif
= &x_redisplay_interface
;
10789 terminal
->scroll_region_ok
= 1; /* We'll scroll partial frames. */
10790 terminal
->char_ins_del_ok
= 1;
10791 terminal
->line_ins_del_ok
= 1; /* We'll just blt 'em. */
10792 terminal
->fast_clear_end_of_line
= 1; /* X does this well. */
10793 terminal
->memory_below_frame
= 0; /* We don't remember what scrolls
10805 last_tool_bar_item
= -1;
10806 any_help_event_p
= 0;
10807 ignore_next_mouse_click_timeout
= 0;
10809 x_session_initialized
= 0;
10813 current_count
= -1;
10816 /* Try to use interrupt input; if we can't, then start polling. */
10817 Fset_input_interrupt_mode (Qt
);
10819 #ifdef USE_X_TOOLKIT
10820 XtToolkitInitialize ();
10822 Xt_app_con
= XtCreateApplicationContext ();
10824 /* Register a converter from strings to pixels, which uses
10825 Emacs' color allocation infrastructure. */
10826 XtAppSetTypeConverter (Xt_app_con
,
10827 XtRString
, XtRPixel
, cvt_string_to_pixel
,
10828 cvt_string_to_pixel_args
,
10829 XtNumber (cvt_string_to_pixel_args
),
10830 XtCacheByDisplay
, cvt_pixel_dtor
);
10832 XtAppSetFallbackResources (Xt_app_con
, Xt_default_resources
);
10835 #ifdef USE_TOOLKIT_SCROLL_BARS
10837 xaw3d_arrow_scroll
= False
;
10838 xaw3d_pick_top
= True
;
10842 pending_autoraise_frame
= 0;
10843 pending_event_wait
.f
= 0;
10844 pending_event_wait
.eventtype
= 0;
10846 /* Note that there is no real way portable across R3/R4 to get the
10847 original error handler. */
10848 XSetErrorHandler (x_error_handler
);
10849 XSetIOErrorHandler (x_io_error_quitter
);
10851 signal (SIGPIPE
, x_connection_signal
);
10858 x_error_message
= NULL
;
10860 staticpro (&x_display_name_list
);
10861 x_display_name_list
= Qnil
;
10863 staticpro (&last_mouse_scroll_bar
);
10864 last_mouse_scroll_bar
= Qnil
;
10866 staticpro (&Qvendor_specific_keysyms
);
10867 Qvendor_specific_keysyms
= intern_c_string ("vendor-specific-keysyms");
10869 staticpro (&Qlatin_1
);
10870 Qlatin_1
= intern_c_string ("latin-1");
10872 staticpro (&last_mouse_press_frame
);
10873 last_mouse_press_frame
= Qnil
;
10876 xg_default_icon_file
= make_pure_c_string ("icons/hicolor/scalable/apps/emacs.svg");
10877 staticpro (&xg_default_icon_file
);
10879 Qx_gtk_map_stock
= intern_c_string ("x-gtk-map-stock");
10880 staticpro (&Qx_gtk_map_stock
);
10883 DEFVAR_BOOL ("x-use-underline-position-properties",
10884 &x_use_underline_position_properties
,
10885 doc
: /* *Non-nil means make use of UNDERLINE_POSITION font properties.
10886 A value of nil means ignore them. If you encounter fonts with bogus
10887 UNDERLINE_POSITION font properties, for example 7x13 on XFree prior
10888 to 4.1, set this to nil. You can also use `underline-minimum-offset'
10889 to override the font's UNDERLINE_POSITION for small font display
10891 x_use_underline_position_properties
= 1;
10893 DEFVAR_BOOL ("x-underline-at-descent-line",
10894 &x_underline_at_descent_line
,
10895 doc
: /* *Non-nil means to draw the underline at the same place as the descent line.
10896 A value of nil means to draw the underline according to the value of the
10897 variable `x-use-underline-position-properties', which is usually at the
10898 baseline level. The default value is nil. */);
10899 x_underline_at_descent_line
= 0;
10901 DEFVAR_BOOL ("x-mouse-click-focus-ignore-position",
10902 &x_mouse_click_focus_ignore_position
,
10903 doc
: /* Non-nil means that a mouse click to focus a frame does not move point.
10904 This variable is only used when the window manager requires that you
10905 click on a frame to select it (give it focus). In that case, a value
10906 of nil, means that the selected window and cursor position changes to
10907 reflect the mouse click position, while a non-nil value means that the
10908 selected window or cursor position is preserved. */);
10909 x_mouse_click_focus_ignore_position
= 0;
10911 DEFVAR_LISP ("x-toolkit-scroll-bars", &Vx_toolkit_scroll_bars
,
10912 doc
: /* What X toolkit scroll bars Emacs uses.
10913 A value of nil means Emacs doesn't use X toolkit scroll bars.
10914 Otherwise, value is a symbol describing the X toolkit. */);
10915 #ifdef USE_TOOLKIT_SCROLL_BARS
10917 Vx_toolkit_scroll_bars
= intern_c_string ("motif");
10918 #elif defined HAVE_XAW3D
10919 Vx_toolkit_scroll_bars
= intern_c_string ("xaw3d");
10921 Vx_toolkit_scroll_bars
= intern_c_string ("gtk");
10923 Vx_toolkit_scroll_bars
= intern_c_string ("xaw");
10926 Vx_toolkit_scroll_bars
= Qnil
;
10929 staticpro (&last_mouse_motion_frame
);
10930 last_mouse_motion_frame
= Qnil
;
10932 Qmodifier_value
= intern_c_string ("modifier-value");
10933 Qalt
= intern_c_string ("alt");
10934 Fput (Qalt
, Qmodifier_value
, make_number (alt_modifier
));
10935 Qhyper
= intern_c_string ("hyper");
10936 Fput (Qhyper
, Qmodifier_value
, make_number (hyper_modifier
));
10937 Qmeta
= intern_c_string ("meta");
10938 Fput (Qmeta
, Qmodifier_value
, make_number (meta_modifier
));
10939 Qsuper
= intern_c_string ("super");
10940 Fput (Qsuper
, Qmodifier_value
, make_number (super_modifier
));
10942 DEFVAR_LISP ("x-alt-keysym", &Vx_alt_keysym
,
10943 doc
: /* Which keys Emacs uses for the alt modifier.
10944 This should be one of the symbols `alt', `hyper', `meta', `super'.
10945 For example, `alt' means use the Alt_L and Alt_R keysyms. The default
10946 is nil, which is the same as `alt'. */);
10947 Vx_alt_keysym
= Qnil
;
10949 DEFVAR_LISP ("x-hyper-keysym", &Vx_hyper_keysym
,
10950 doc
: /* Which keys Emacs uses for the hyper modifier.
10951 This should be one of the symbols `alt', `hyper', `meta', `super'.
10952 For example, `hyper' means use the Hyper_L and Hyper_R keysyms. The
10953 default is nil, which is the same as `hyper'. */);
10954 Vx_hyper_keysym
= Qnil
;
10956 DEFVAR_LISP ("x-meta-keysym", &Vx_meta_keysym
,
10957 doc
: /* Which keys Emacs uses for the meta modifier.
10958 This should be one of the symbols `alt', `hyper', `meta', `super'.
10959 For example, `meta' means use the Meta_L and Meta_R keysyms. The
10960 default is nil, which is the same as `meta'. */);
10961 Vx_meta_keysym
= Qnil
;
10963 DEFVAR_LISP ("x-super-keysym", &Vx_super_keysym
,
10964 doc
: /* Which keys Emacs uses for the super modifier.
10965 This should be one of the symbols `alt', `hyper', `meta', `super'.
10966 For example, `super' means use the Super_L and Super_R keysyms. The
10967 default is nil, which is the same as `super'. */);
10968 Vx_super_keysym
= Qnil
;
10970 DEFVAR_LISP ("x-keysym-table", &Vx_keysym_table
,
10971 doc
: /* Hash table of character codes indexed by X keysym codes. */);
10972 Vx_keysym_table
= make_hash_table (Qeql
, make_number (900),
10973 make_float (DEFAULT_REHASH_SIZE
),
10974 make_float (DEFAULT_REHASH_THRESHOLD
),
10978 #endif /* HAVE_X_WINDOWS */
10980 /* arch-tag: 6d4e4cb7-abc1-4302-9585-d84dcfb09d0f
10981 (do not change this comment) */