Revision: miles@gnu.org--gnu-2004/emacs--unicode--0--patch-72
[bpt/emacs.git] / src / xterm.h
1 /* Definitions and headers for communication with X protocol.
2 Copyright (C) 1989, 1993, 1994, 1998, 1999, 2000,01,02,03,04
3 Free Software Foundation, Inc.
4
5 This file is part of GNU Emacs.
6
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
21
22 #include <X11/Xlib.h>
23 #include <X11/cursorfont.h>
24
25 /* Include Xutil.h after keysym.h to work around a bug that prevents
26 correct recognition of AltGr key in some X versions. */
27
28 #include <X11/keysym.h>
29 #include <X11/Xutil.h>
30
31 #include <X11/Xatom.h>
32 #include <X11/Xresource.h>
33
34 #ifdef USE_X_TOOLKIT
35 #include <X11/StringDefs.h>
36 #include <X11/IntrinsicP.h> /* CoreP.h needs this */
37 #include <X11/CoreP.h> /* foul, but we need this to use our own
38 window inside a widget instead of one
39 that Xt creates... */
40 #include <X11/StringDefs.h>
41
42 typedef Widget xt_or_gtk_widget;
43 #endif
44
45 #ifdef USE_GTK
46 #include <gtk/gtk.h>
47 #include <gdk/gdkx.h>
48
49 /* Some definitions to reduce conditionals. */
50 typedef GtkWidget *xt_or_gtk_widget;
51 #define XtParent(x) (gtk_widget_get_parent (x))
52 #undef XSync
53 #define XSync(d, b) do { gdk_window_process_all_updates (); \
54 XSync (d, b); } while (0)
55
56
57 #endif /* USE_GTK */
58
59 \f
60 /* Bookkeeping to distinguish X versions. */
61
62 /* HAVE_X11R4 is defined if we have the features of X11R4. It should
63 be defined when we're using X11R5, since X11R5 has the features of
64 X11R4. If, in the future, we find we need more of these flags
65 (HAVE_X11R5, for example), code should always be written to test
66 the most recent flag first:
67
68 #ifdef HAVE_X11R5
69 ...
70 #elif HAVE_X11R4
71 ...
72 #elif HAVE_X11
73 ...
74 #endif
75
76 If you ever find yourself writing a "#ifdef HAVE_FOO" clause that
77 looks a lot like another one, consider moving the text into a macro
78 whose definition is configuration-dependent, but whose usage is
79 universal - like the stuff in systime.h.
80
81 It turns out that we can auto-detect whether we're being compiled
82 with X11R3 or X11R4 by looking for the flag macros for R4 structure
83 members that R3 doesn't have. */
84 #ifdef PBaseSize
85 /* AIX 3.1's X is somewhere between X11R3 and X11R4. It has
86 PBaseSize, but not XWithdrawWindow, XSetWMName, XSetWMNormalHints,
87 XSetWMIconName.
88 AIX 3.2 is at least X11R4. */
89 #if (!defined AIX) || (defined AIX3_2)
90 #define HAVE_X11R4
91 #endif
92 #endif
93
94 #ifdef HAVE_X11R5
95 /* In case someone has X11R5 on AIX 3.1,
96 make sure HAVE_X11R4 is defined as well as HAVE_X11R5. */
97 #define HAVE_X11R4
98 #endif
99
100 #ifdef HAVE_X_I18N
101 #include <X11/Xlocale.h>
102 #endif
103 \f
104 #define BLACK_PIX_DEFAULT(f) BlackPixel (FRAME_X_DISPLAY (f), \
105 XScreenNumberOfScreen (FRAME_X_SCREEN (f)))
106 #define WHITE_PIX_DEFAULT(f) WhitePixel (FRAME_X_DISPLAY (f), \
107 XScreenNumberOfScreen (FRAME_X_SCREEN (f)))
108
109 #define FONT_WIDTH(f) ((f)->max_bounds.width)
110 #define FONT_HEIGHT(f) ((f)->ascent + (f)->descent)
111 #define FONT_BASE(f) ((f)->ascent)
112 #define FONT_DESCENT(f) ((f)->descent)
113
114 /* The mask of events that text windows always want to receive. This
115 includes mouse movement events, since handling the mouse-font text property
116 means that we must track mouse motion all the time. */
117
118 #define STANDARD_EVENT_SET \
119 (KeyPressMask \
120 | ExposureMask \
121 | ButtonPressMask \
122 | ButtonReleaseMask \
123 | PointerMotionMask \
124 | StructureNotifyMask \
125 | FocusChangeMask \
126 | LeaveWindowMask \
127 | EnterWindowMask \
128 | VisibilityChangeMask)
129
130 /* Structure recording X pixmap and reference count.
131 If REFCOUNT is 0 then this record is free to be reused. */
132
133 struct x_bitmap_record
134 {
135 Pixmap pixmap;
136 int have_mask;
137 Pixmap mask;
138 char *file;
139 int refcount;
140 /* Record some info about this pixmap. */
141 int height, width, depth;
142 };
143 \f
144 /* For each X display, we have a structure that records
145 information about it. */
146
147 struct x_display_info
148 {
149 /* Chain of all x_display_info structures. */
150 struct x_display_info *next;
151
152 /* Connection number (normally a file descriptor number). */
153 int connection;
154
155 /* This says how to access this display in Xlib. */
156 Display *display;
157
158 /* This is a cons cell of the form (NAME . FONT-LIST-CACHE).
159 The same cons cell also appears in x_display_name_list. */
160 Lisp_Object name_list_element;
161
162 /* Number of frames that are on this display. */
163 int reference_count;
164
165 /* The Screen this connection is connected to. */
166 Screen *screen;
167
168 /* Dots per inch of the screen. */
169 double resx, resy;
170
171 /* The Visual being used for this display. */
172 Visual *visual;
173
174 /* The colormap being used. */
175 Colormap cmap;
176
177 /* Number of planes on this screen. */
178 int n_planes;
179
180 /* Dimensions of this screen. */
181 int height, width;
182
183 /* Mask of things that cause the mouse to be grabbed. */
184 int grabbed;
185
186 /* Emacs bitmap-id of the default icon bitmap for this frame.
187 Or -1 if none has been allocated yet. */
188 int icon_bitmap_id;
189
190 /* The root window of this screen. */
191 Window root_window;
192
193 /* Client leader window. */
194 Window client_leader_window;
195
196 /* The cursor to use for vertical scroll bars. */
197 Cursor vertical_scroll_bar_cursor;
198
199 #ifdef USE_GTK
200 /* The GDK cursor for scroll bars and popup menus. */
201 GdkCursor *xg_cursor;
202 #endif
203
204 /* X Resource data base */
205 XrmDatabase xrdb;
206
207 /* A table of all the fonts we have already loaded. */
208 struct font_info *font_table;
209
210 /* The current capacity of x_font_table. */
211 int font_table_size;
212
213 /* Minimum width over all characters in all fonts in font_table. */
214 int smallest_char_width;
215
216 /* Minimum font height over all fonts in font_table. */
217 int smallest_font_height;
218
219 /* Reusable Graphics Context for drawing a cursor in a non-default face. */
220 GC scratch_cursor_gc;
221
222 /* These variables describe the range of text currently shown in its
223 mouse-face, together with the window they apply to. As long as
224 the mouse stays within this range, we need not redraw anything on
225 its account. Rows and columns are glyph matrix positions in
226 MOUSE_FACE_WINDOW. */
227 int mouse_face_beg_row, mouse_face_beg_col;
228 int mouse_face_beg_x, mouse_face_beg_y;
229 int mouse_face_end_row, mouse_face_end_col;
230 int mouse_face_end_x, mouse_face_end_y;
231 int mouse_face_past_end;
232 Lisp_Object mouse_face_window;
233 int mouse_face_face_id;
234 Lisp_Object mouse_face_overlay;
235
236 /* 1 if a mouse motion event came and we didn't handle it right away because
237 gc was in progress. */
238 int mouse_face_deferred_gc;
239
240 /* FRAME and X, Y position of mouse when last checked for
241 highlighting. X and Y can be negative or out of range for the frame. */
242 struct frame *mouse_face_mouse_frame;
243 int mouse_face_mouse_x, mouse_face_mouse_y;
244
245 /* Nonzero means defer mouse-motion highlighting. */
246 int mouse_face_defer;
247
248 /* Nonzero means that the mouse highlight should not be shown. */
249 int mouse_face_hidden;
250
251 int mouse_face_image_state;
252
253 char *x_id_name;
254
255 /* The number of fonts actually stored in x_font_table.
256 font_table[n] is used and valid iff 0 <= n < n_fonts. 0 <=
257 n_fonts <= font_table_size and font_table[i].name != 0. */
258 int n_fonts;
259
260 /* Pointer to bitmap records. */
261 struct x_bitmap_record *bitmaps;
262
263 /* Allocated size of bitmaps field. */
264 int bitmaps_size;
265
266 /* Last used bitmap index. */
267 int bitmaps_last;
268
269 /* Which modifier keys are on which modifier bits?
270
271 With each keystroke, X returns eight bits indicating which modifier
272 keys were held down when the key was pressed. The interpretation
273 of the top five modifier bits depends on what keys are attached
274 to them. If the Meta_L and Meta_R keysyms are on mod5, then mod5
275 is the meta bit.
276
277 meta_mod_mask is a mask containing the bits used for the meta key.
278 It may have more than one bit set, if more than one modifier bit
279 has meta keys on it. Basically, if EVENT is a KeyPress event,
280 the meta key is pressed if (EVENT.state & meta_mod_mask) != 0.
281
282 shift_lock_mask is LockMask if the XK_Shift_Lock keysym is on the
283 lock modifier bit, or zero otherwise. Non-alphabetic keys should
284 only be affected by the lock modifier bit if XK_Shift_Lock is in
285 use; XK_Caps_Lock should only affect alphabetic keys. With this
286 arrangement, the lock modifier should shift the character if
287 (EVENT.state & shift_lock_mask) != 0. */
288 int meta_mod_mask, shift_lock_mask;
289
290 /* These are like meta_mod_mask, but for different modifiers. */
291 int alt_mod_mask, super_mod_mask, hyper_mod_mask;
292
293 /* Communication with window managers. */
294 Atom Xatom_wm_protocols;
295
296 /* Kinds of protocol things we may receive. */
297 Atom Xatom_wm_take_focus;
298 Atom Xatom_wm_save_yourself;
299 Atom Xatom_wm_delete_window;
300
301 /* Atom for indicating window state to the window manager. */
302 Atom Xatom_wm_change_state;
303
304 /* Other WM communication */
305 Atom Xatom_wm_configure_denied; /* When our config request is denied */
306 Atom Xatom_wm_window_moved; /* When the WM moves us. */
307 Atom Xatom_wm_client_leader; /* Id of client leader window. */
308
309 /* EditRes protocol */
310 Atom Xatom_editres;
311
312 /* More atoms, which are selection types. */
313 Atom Xatom_CLIPBOARD, Xatom_TIMESTAMP, Xatom_TEXT, Xatom_DELETE,
314 Xatom_COMPOUND_TEXT, Xatom_UTF8_STRING,
315 Xatom_MULTIPLE, Xatom_INCR, Xatom_EMACS_TMP, Xatom_TARGETS, Xatom_NULL,
316 Xatom_ATOM_PAIR;
317
318 /* More atoms for font properties. The last three are private
319 properties, see the comments in src/fontset.h. */
320 Atom Xatom_PIXEL_SIZE,
321 Xatom_MULE_BASELINE_OFFSET, Xatom_MULE_RELATIVE_COMPOSE,
322 Xatom_MULE_DEFAULT_ASCENT;
323
324 /* More atoms for Ghostscript support. */
325 Atom Xatom_DONE, Xatom_PAGE;
326
327 /* Atom used in toolkit scroll bar client messages. */
328 Atom Xatom_Scrollbar;
329
330 #ifdef MULTI_KBOARD
331 struct kboard *kboard;
332 #endif
333 int cut_buffers_initialized; /* Whether we're sure they all exist */
334
335 /* The frame (if any) which has the X window that has keyboard focus.
336 Zero if none. This is examined by Ffocus_frame in xfns.c. Note
337 that a mere EnterNotify event can set this; if you need to know the
338 last frame specified in a FocusIn or FocusOut event, use
339 x_focus_event_frame. */
340 struct frame *x_focus_frame;
341
342 /* The last frame mentioned in a FocusIn or FocusOut event. This is
343 separate from x_focus_frame, because whether or not LeaveNotify
344 events cause us to lose focus depends on whether or not we have
345 received a FocusIn event for it. */
346 struct frame *x_focus_event_frame;
347
348 /* The frame which currently has the visual highlight, and should get
349 keyboard input (other sorts of input have the frame encoded in the
350 event). It points to the X focus frame's selected window's
351 frame. It differs from x_focus_frame when we're using a global
352 minibuffer. */
353 struct frame *x_highlight_frame;
354
355 /* The null pixel used for filling a character background with
356 background color of a gc. */
357 Pixmap null_pixel;
358
359 /* The gray pixmap. */
360 Pixmap gray;
361
362 /* Cache of images. */
363 struct image_cache *image_cache;
364
365 #ifdef HAVE_X_I18N
366 /* XIM (X Input method). */
367 XIM xim;
368 XIMStyles *xim_styles;
369 #endif
370
371 /* If non-null, a cache of the colors in the color map. Don't
372 use this directly, call x_color_cells instead. */
373 XColor *color_cells;
374 int ncolor_cells;
375
376 /* Bits and shifts to use to compose pixel values on TrueColor visuals. */
377 int red_bits, blue_bits, green_bits;
378 int red_offset, blue_offset, green_offset;
379
380 /* The type of window manager we have. If we move FRAME_OUTER_WINDOW
381 to x/y 0/0, some window managers (type A) puts the window manager
382 decorations outside the screen and FRAME_OUTER_WINDOW exactly at 0/0.
383 Other window managers (type B) puts the window including decorations
384 at 0/0, so FRAME_OUTER_WINDOW is a bit below 0/0.
385 Record the type of WM in use so we can compensate for type A WMs. */
386 enum
387 {
388 X_WMTYPE_UNKNOWN,
389 X_WMTYPE_A,
390 X_WMTYPE_B
391 } wm_type;
392 };
393
394 #ifdef HAVE_X_I18N
395 /* Whether or not to use XIM if we have it. */
396 extern int use_xim;
397 #endif
398
399 /* This checks to make sure we have a display. */
400 extern void check_x P_ ((void));
401
402 extern struct frame *x_window_to_frame P_ ((struct x_display_info *, int));
403
404 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
405 extern struct frame *x_any_window_to_frame P_ ((struct x_display_info *, int));
406 extern struct frame *x_non_menubar_window_to_frame P_ ((struct x_display_info *, int));
407 extern struct frame *x_top_window_to_frame P_ ((struct x_display_info *, int));
408 #endif
409
410 /* This is a chain of structures for all the X displays currently in use. */
411 extern struct x_display_info *x_display_list;
412
413 /* This is a list of cons cells, each of the form (NAME . FONT-LIST-CACHE),
414 one for each element of x_display_list and in the same order.
415 NAME is the name of the frame.
416 FONT-LIST-CACHE records previous values returned by x-list-fonts. */
417 extern Lisp_Object x_display_name_list;
418
419 /* Regexp matching a font name whose width is the same as `PIXEL_SIZE'. */
420 extern Lisp_Object Vx_pixel_size_width_font_regexp;
421
422 /* A flag to control how to display unibyte 8-bit character. */
423 extern int unibyte_display_via_language_environment;
424
425 extern struct x_display_info *x_display_info_for_display P_ ((Display *));
426 extern struct x_display_info *x_display_info_for_name P_ ((Lisp_Object));
427
428 extern struct x_display_info *x_term_init P_ ((Lisp_Object, char *, char *));
429
430 extern Lisp_Object x_list_fonts P_ ((struct frame *, Lisp_Object, int, int));
431 extern void select_visual P_ ((struct x_display_info *));
432 extern struct font_info *x_get_font_info P_ ((struct frame *f, int));
433 extern struct font_info *x_load_font P_ ((struct frame *, char *, int));
434 extern struct font_info *x_query_font P_ ((struct frame *, char *));
435 extern void x_find_ccl_program P_ ((struct font_info *));
436 extern Lisp_Object x_get_font_repertory P_ ((struct frame *,
437 struct font_info *));
438
439 \f
440 /* Each X frame object points to its own struct x_output object
441 in the output_data.x field. The x_output structure contains
442 the information that is specific to X windows. */
443
444 struct x_output
445 {
446 /* Height of menu bar widget, in pixels.
447 Zero if not using the X toolkit.
448 When using the toolkit, this value is not meaningful
449 if the menubar is turned off. */
450 int menubar_height;
451
452 /* Height of tool bar widget, in pixels.
453 Zero if not using an external tool bar. */
454 int toolbar_height;
455
456 /* The tiled border used when the mouse is out of the frame. */
457 Pixmap border_tile;
458
459 /* Here are the Graphics Contexts for the default font. */
460 GC normal_gc; /* Normal video */
461 GC reverse_gc; /* Reverse video */
462 GC cursor_gc; /* cursor drawing */
463
464 /* The X window used for this frame.
465 May be zero while the frame object is being created
466 and the X window has not yet been created. */
467 Window window_desc;
468
469 /* The X window used for the bitmap icon;
470 or 0 if we don't have a bitmap icon. */
471 Window icon_desc;
472
473 /* The X window that is the parent of this X window.
474 Usually this is a window that was made by the window manager,
475 but it can be the root window, and it can be explicitly specified
476 (see the explicit_parent field, below). */
477 Window parent_desc;
478
479 #ifdef USE_X_TOOLKIT
480 /* The widget of this screen. This is the window of a "shell" widget. */
481 Widget widget;
482 /* The XmPanedWindows... */
483 Widget column_widget;
484 /* The widget of the edit portion of this screen; the window in
485 "window_desc" is inside of this. */
486 Widget edit_widget;
487
488 Widget menubar_widget;
489 #endif
490
491 #ifdef USE_GTK
492 /* The widget of this screen. This is the window of a top widget. */
493 GtkWidget *widget;
494 /* The widget of the edit portion of this screen; the window in
495 "window_desc" is inside of this. */
496 GtkWidget *edit_widget;
497 /* The widget used for laying out widgets vertically. */
498 GtkWidget *vbox_widget;
499 /* The menubar in this frame. */
500 GtkWidget *menubar_widget;
501 /* The tool bar in this frame */
502 GtkWidget *toolbar_widget;
503 /* The handle box that makes the tool bar detachable. */
504 GtkWidget *handlebox_widget;
505
506 /* The last size hints set. */
507 GdkGeometry size_hints;
508 long hint_flags;
509 #endif
510
511 /* If >=0, a bitmap index. The indicated bitmap is used for the
512 icon. */
513 int icon_bitmap;
514
515 /* Default ASCII font of this frame. */
516 XFontStruct *font;
517
518 /* The baseline offset of the default ASCII font. */
519 int baseline_offset;
520
521 /* If a fontset is specified for this frame instead of font, this
522 value contains an ID of the fontset, else -1. */
523 int fontset;
524
525 /* Pixel values used for various purposes.
526 border_pixel may be -1 meaning use a gray tile. */
527 unsigned long background_pixel;
528 unsigned long foreground_pixel;
529 unsigned long cursor_pixel;
530 unsigned long border_pixel;
531 unsigned long mouse_pixel;
532 unsigned long cursor_foreground_pixel;
533
534 /* Foreground color for scroll bars. A value of -1 means use the
535 default (black for non-toolkit scroll bars). */
536 unsigned long scroll_bar_foreground_pixel;
537
538 /* Background color for scroll bars. A value of -1 means use the
539 default (background color of the frame for non-toolkit scroll
540 bars). */
541 unsigned long scroll_bar_background_pixel;
542
543 /* Top and bottom shadow colors for 3d toolkit scrollbars. -1 means
544 let the scroll compute them itself. */
545 unsigned long scroll_bar_top_shadow_pixel;
546 unsigned long scroll_bar_bottom_shadow_pixel;
547
548 /* Descriptor for the cursor in use for this window. */
549 Cursor text_cursor;
550 Cursor nontext_cursor;
551 Cursor modeline_cursor;
552 Cursor hand_cursor;
553 Cursor hourglass_cursor;
554 Cursor horizontal_drag_cursor;
555
556 /* Window whose cursor is hourglass_cursor. This window is temporarily
557 mapped to display an hourglass cursor. */
558 Window hourglass_window;
559
560 /* Non-zero means hourglass cursor is currently displayed. */
561 unsigned hourglass_p : 1;
562
563 /* Flag to set when the X window needs to be completely repainted. */
564 int needs_exposure;
565
566 /* These are the current window manager hints. It seems that
567 XSetWMHints, when presented with an unset bit in the `flags'
568 member of the hints structure, does not leave the corresponding
569 attribute unchanged; rather, it resets that attribute to its
570 default value. For example, unless you set the `icon_pixmap'
571 field and the `IconPixmapHint' bit, XSetWMHints will forget what
572 your icon pixmap was. This is rather troublesome, since some of
573 the members (for example, `input' and `icon_pixmap') want to stay
574 the same throughout the execution of Emacs. So, we keep this
575 structure around, just leaving values in it and adding new bits
576 to the mask as we go. */
577 XWMHints wm_hints;
578
579 /* This is the Emacs structure for the X display this frame is on. */
580 struct x_display_info *display_info;
581
582 /* This is a button event that wants to activate the menubar.
583 We save it here until the command loop gets to think about it. */
584 XEvent *saved_menu_event;
585
586 /* This is the widget id used for this frame's menubar in lwlib. */
587 #ifdef USE_X_TOOLKIT
588 int id;
589 #endif
590
591 /* Nonzero means our parent is another application's window
592 and was explicitly specified. */
593 char explicit_parent;
594
595 /* Nonzero means tried already to make this frame visible. */
596 char asked_for_visible;
597
598 /* Nonzero if this frame was ever previously visible. */
599 char has_been_visible;
600
601 #ifdef HAVE_X_I18N
602 /* Input context (currently, this means Compose key handler setup). */
603 XIC xic;
604 XIMStyle xic_style;
605 XFontSet xic_xfs;
606 char *xic_base_fontname;
607 #endif
608
609 /* Relief GCs, colors etc. */
610 struct relief
611 {
612 GC gc;
613 unsigned long pixel;
614 int allocated_p;
615 }
616 black_relief, white_relief;
617
618 /* The background for which the above relief GCs were set up.
619 They are changed only when a different background is involved. */
620 unsigned long relief_background;
621
622 /* Xt waits for a ConfigureNotify event from the window manager in
623 EmacsFrameSetCharSize when the shell widget is resized. For some
624 window managers like fvwm2 2.2.5 and KDE 2.1 this event doesn't
625 arrive for an unknown reason and Emacs hangs in Xt. If this is
626 zero, tell Xt not to wait. */
627 int wait_for_wm;
628
629 /* As x_pixels_diff, but to FRAME_OUTER_WINDOW. For some reason the
630 two might differ by a pixel, depending on WM */
631 int x_pixels_outer_diff;
632
633 /* As y_pixels_diff, but to FRAME_OUTER_WINDOW. In the toolkit version,
634 these may differ because this does not take into account possible
635 menubar. y_pixels_diff is with menubar height included */
636 int y_pixels_outer_diff;
637
638 /* Keep track of focus. May be EXPLICIT if we received a FocusIn for this
639 frame, or IMPLICIT if we received an EnterNotify.
640 FocusOut and LeaveNotify clears EXPLICIT/IMPLICIT. */
641 int focus_state;
642
643 /* The latest move we made to FRAME_OUTER_WINDOW. Saved so we can
644 compensate for type A WMs (see wm_type in dpyinfo above). */
645 int expected_top;
646 int expected_left;
647
648 /* The offset we need to add to compensate for type A WMs. */
649 int move_offset_top;
650 int move_offset_left;
651
652 /* Nonzero if we have made a move and needs to check if the WM placed us
653 at the right position. */
654 int check_expected_move;
655 };
656
657 #define No_Cursor (None)
658
659 enum
660 {
661 /* Values for focus_state, used as bit mask.
662 EXPLICIT means we received a FocusIn for the frame and know it has
663 the focus. IMPLICIT means we recevied an EnterNotify and the frame
664 may have the focus if no window manager is running.
665 FocusOut and LeaveNotify clears EXPLICIT/IMPLICIT. */
666 FOCUS_NONE = 0,
667 FOCUS_IMPLICIT = 1,
668 FOCUS_EXPLICIT = 2
669 };
670
671
672 /* Return the X output data for frame F. */
673 #define FRAME_X_OUTPUT(f) ((f)->output_data.x)
674
675 /* Return the X window used for displaying data in frame F. */
676 #define FRAME_X_WINDOW(f) ((f)->output_data.x->window_desc)
677
678 /* Return the outermost X window associated with the frame F. */
679 #ifdef USE_X_TOOLKIT
680 #define FRAME_OUTER_WINDOW(f) ((f)->output_data.x->widget ? \
681 XtWindow ((f)->output_data.x->widget) : \
682 FRAME_X_WINDOW (f))
683 #else
684 #ifdef USE_GTK
685 #define GTK_WIDGET_TO_X_WIN(w) \
686 ((w) && (w)->window ? GDK_WINDOW_XWINDOW ((w)->window) : 0)
687
688 #define FRAME_GTK_OUTER_WIDGET(f) ((f)->output_data.x->widget)
689 #define FRAME_GTK_WIDGET(f) ((f)->output_data.x->edit_widget)
690 #define FRAME_OUTER_WINDOW(f) \
691 (FRAME_GTK_OUTER_WIDGET (f) ? \
692 GTK_WIDGET_TO_X_WIN (FRAME_GTK_OUTER_WIDGET (f)) : \
693 FRAME_X_WINDOW (f))
694
695 #else /* !USE_GTK */
696 #define FRAME_OUTER_WINDOW(f) (FRAME_X_WINDOW (f))
697 #endif /* !USE_GTK */
698 #endif
699
700
701 #define FRAME_FONT(f) ((f)->output_data.x->font)
702 #define FRAME_FONTSET(f) ((f)->output_data.x->fontset)
703 #define FRAME_MENUBAR_HEIGHT(f) ((f)->output_data.x->menubar_height)
704 #define FRAME_TOOLBAR_HEIGHT(f) ((f)->output_data.x->toolbar_height)
705 #define FRAME_BASELINE_OFFSET(f) ((f)->output_data.x->baseline_offset)
706
707 /* This gives the x_display_info structure for the display F is on. */
708 #define FRAME_X_DISPLAY_INFO(f) ((f)->output_data.x->display_info)
709
710 /* This is the `Display *' which frame F is on. */
711 #define FRAME_X_DISPLAY(f) (FRAME_X_DISPLAY_INFO (f)->display)
712
713 /* This is the `Screen *' which frame F is on. */
714 #define FRAME_X_SCREEN(f) (FRAME_X_DISPLAY_INFO (f)->screen)
715 #define FRAME_X_SCREEN_NUMBER(f) XScreenNumberOfScreen (FRAME_X_SCREEN (f))
716
717 /* This is the Visual which frame F is on. */
718 #define FRAME_X_VISUAL(f) FRAME_X_DISPLAY_INFO (f)->visual
719
720 /* This is the Colormap which frame F uses. */
721 #define FRAME_X_COLORMAP(f) FRAME_X_DISPLAY_INFO (f)->cmap
722
723 /* This is the 'font_info *' which frame F has. */
724 #define FRAME_X_FONT_TABLE(f) (FRAME_X_DISPLAY_INFO (f)->font_table)
725
726 /* The difference in pixels between the top left corner of the
727 Emacs window (including possible window manager decorations)
728 and FRAME_X_WINDOW (f). */
729 #define FRAME_OUTER_TO_INNER_DIFF_X(f) \
730 ((f)->output_data.x->x_pixels_outer_diff)
731 #define FRAME_OUTER_TO_INNER_DIFF_Y(f) \
732 ((f)->output_data.x->y_pixels_outer_diff \
733 + FRAME_MENUBAR_HEIGHT (f) + FRAME_TOOLBAR_HEIGHT (f))
734
735
736 #define FRAME_XIC(f) ((f)->output_data.x->xic)
737 #define FRAME_X_XIM(f) (FRAME_X_DISPLAY_INFO (f)->xim)
738 #define FRAME_X_XIM_STYLES(f) (FRAME_X_DISPLAY_INFO (f)->xim_styles)
739 #define FRAME_XIC_STYLE(f) ((f)->output_data.x->xic_style)
740 #define FRAME_XIC_FONTSET(f) ((f)->output_data.x->xic_xfs)
741 #define FRAME_XIC_BASE_FONTNAME(f) ((f)->output_data.x->xic_base_fontname)
742
743 /* Value is the smallest width of any character in any font on frame F. */
744
745 #define FRAME_SMALLEST_CHAR_WIDTH(F) \
746 FRAME_X_DISPLAY_INFO(F)->smallest_char_width
747
748 /* Value is the smallest height of any font on frame F. */
749
750 #define FRAME_SMALLEST_FONT_HEIGHT(F) \
751 FRAME_X_DISPLAY_INFO(F)->smallest_font_height
752
753 /* Return a pointer to the image cache of frame F. */
754
755 #define FRAME_X_IMAGE_CACHE(F) FRAME_X_DISPLAY_INFO ((F))->image_cache
756
757 \f
758 /* X-specific scroll bar stuff. */
759
760 /* We represent scroll bars as lisp vectors. This allows us to place
761 references to them in windows without worrying about whether we'll
762 end up with windows referring to dead scroll bars; the garbage
763 collector will free it when its time comes.
764
765 We use struct scroll_bar as a template for accessing fields of the
766 vector. */
767
768 struct scroll_bar
769 {
770 /* These fields are shared by all vectors. */
771 EMACS_INT size_from_Lisp_Vector_struct;
772 struct Lisp_Vector *next_from_Lisp_Vector_struct;
773
774 /* The window we're a scroll bar for. */
775 Lisp_Object window;
776
777 /* The next and previous in the chain of scroll bars in this frame. */
778 Lisp_Object next, prev;
779
780 /* The X window representing this scroll bar. Since this is a full
781 32-bit quantity, we store it split into two 32-bit values. */
782 Lisp_Object x_window_low, x_window_high;
783
784 /* The position and size of the scroll bar in pixels, relative to the
785 frame. */
786 Lisp_Object top, left, width, height;
787
788 /* The starting and ending positions of the handle, relative to the
789 handle area (i.e. zero is the top position, not
790 SCROLL_BAR_TOP_BORDER). If they're equal, that means the handle
791 hasn't been drawn yet.
792
793 These are not actually the locations where the beginning and end
794 are drawn; in order to keep handles from becoming invisible when
795 editing large files, we establish a minimum height by always
796 drawing handle bottoms VERTICAL_SCROLL_BAR_MIN_HANDLE pixels below
797 where they would be normally; the bottom and top are in a
798 different co-ordinate system. */
799 Lisp_Object start, end;
800
801 /* If the scroll bar handle is currently being dragged by the user,
802 this is the number of pixels from the top of the handle to the
803 place where the user grabbed it. If the handle isn't currently
804 being dragged, this is Qnil. */
805 Lisp_Object dragging;
806 };
807
808 /* The number of elements a vector holding a struct scroll_bar needs. */
809 #define SCROLL_BAR_VEC_SIZE \
810 ((sizeof (struct scroll_bar) \
811 - sizeof (EMACS_INT) - sizeof (struct Lisp_Vector *)) \
812 / sizeof (Lisp_Object))
813
814 /* Turning a lisp vector value into a pointer to a struct scroll_bar. */
815 #define XSCROLL_BAR(vec) ((struct scroll_bar *) XVECTOR (vec))
816
817
818 /* Building a 32-bit C integer from two 16-bit lisp integers. */
819 #define SCROLL_BAR_PACK(low, high) (XINT (high) << 16 | XINT (low))
820
821 /* Setting two lisp integers to the low and high words of a 32-bit C int. */
822 #define SCROLL_BAR_UNPACK(low, high, int32) \
823 (XSETINT ((low), (int32) & 0xffff), \
824 XSETINT ((high), ((int32) >> 16) & 0xffff))
825
826
827 /* Extract the X window id of the scroll bar from a struct scroll_bar. */
828 #define SCROLL_BAR_X_WINDOW(ptr) \
829 ((Window) SCROLL_BAR_PACK ((ptr)->x_window_low, (ptr)->x_window_high))
830
831 /* Store a window id in a struct scroll_bar. */
832 #define SET_SCROLL_BAR_X_WINDOW(ptr, id) \
833 (SCROLL_BAR_UNPACK ((ptr)->x_window_low, (ptr)->x_window_high, (int) id))
834
835 /* Extract the X widget of the scroll bar from a struct scroll_bar.
836 XtWindowToWidget should be fast enough since Xt uses a hash table
837 to map windows to widgets. */
838
839 #define SCROLL_BAR_X_WIDGET(dpy, ptr) \
840 XtWindowToWidget (dpy, SCROLL_BAR_X_WINDOW (ptr))
841
842 /* Store a widget id in a struct scroll_bar. */
843
844 #define SET_SCROLL_BAR_X_WIDGET(ptr, w) \
845 do { \
846 Window window = XtWindow (w); \
847 SET_SCROLL_BAR_X_WINDOW (ptr, window); \
848 } while (0)
849
850
851 /* Return the inside width of a vertical scroll bar, given the outside
852 width. */
853 #define VERTICAL_SCROLL_BAR_INSIDE_WIDTH(f, width) \
854 ((width) \
855 - VERTICAL_SCROLL_BAR_LEFT_BORDER \
856 - VERTICAL_SCROLL_BAR_RIGHT_BORDER \
857 - VERTICAL_SCROLL_BAR_WIDTH_TRIM * 2)
858
859 /* Return the length of the rectangle within which the top of the
860 handle must stay. This isn't equivalent to the inside height,
861 because the scroll bar handle has a minimum height.
862
863 This is the real range of motion for the scroll bar, so when we're
864 scaling buffer positions to scroll bar positions, we use this, not
865 VERTICAL_SCROLL_BAR_INSIDE_HEIGHT. */
866 #define VERTICAL_SCROLL_BAR_TOP_RANGE(f, height) \
867 (VERTICAL_SCROLL_BAR_INSIDE_HEIGHT (f, height) - VERTICAL_SCROLL_BAR_MIN_HANDLE)
868
869 /* Return the inside height of vertical scroll bar, given the outside
870 height. See VERTICAL_SCROLL_BAR_TOP_RANGE too. */
871 #define VERTICAL_SCROLL_BAR_INSIDE_HEIGHT(f, height) \
872 ((height) - VERTICAL_SCROLL_BAR_TOP_BORDER - VERTICAL_SCROLL_BAR_BOTTOM_BORDER)
873
874
875 /* Border widths for scroll bars.
876
877 Scroll bar windows don't have any X borders; their border width is
878 set to zero, and we redraw borders ourselves. This makes the code
879 a bit cleaner, since we don't have to convert between outside width
880 (used when relating to the rest of the screen) and inside width
881 (used when sizing and drawing the scroll bar window itself).
882
883 The handle moves up and down/back and forth in a rectangle inset
884 from the edges of the scroll bar. These are widths by which we
885 inset the handle boundaries from the scroll bar edges. */
886 #define VERTICAL_SCROLL_BAR_LEFT_BORDER (2)
887 #define VERTICAL_SCROLL_BAR_RIGHT_BORDER (2)
888 #define VERTICAL_SCROLL_BAR_TOP_BORDER (2)
889 #define VERTICAL_SCROLL_BAR_BOTTOM_BORDER (2)
890
891 /* Minimum lengths for scroll bar handles, in pixels. */
892 #define VERTICAL_SCROLL_BAR_MIN_HANDLE (5)
893
894 /* Trimming off a few pixels from each side prevents
895 text from glomming up against the scroll bar */
896 #define VERTICAL_SCROLL_BAR_WIDTH_TRIM (0)
897
898 \f
899 /* If a struct input_event has a kind which is SELECTION_REQUEST_EVENT
900 or SELECTION_CLEAR_EVENT, then its contents are really described
901 by this structure. */
902
903 /* For an event of kind SELECTION_REQUEST_EVENT,
904 this structure really describes the contents.
905 **Don't make this struct longer!**
906 If it overlaps the frame_or_window field of struct input_event,
907 that will cause GC to crash. */
908 struct selection_input_event
909 {
910 int kind;
911 Display *display;
912 /* We spell it with an "o" here because X does. */
913 Window requestor;
914 Atom selection, target, property;
915 Time time;
916 };
917
918 #define SELECTION_EVENT_DISPLAY(eventp) \
919 (((struct selection_input_event *) (eventp))->display)
920 /* We spell it with an "o" here because X does. */
921 #define SELECTION_EVENT_REQUESTOR(eventp) \
922 (((struct selection_input_event *) (eventp))->requestor)
923 #define SELECTION_EVENT_SELECTION(eventp) \
924 (((struct selection_input_event *) (eventp))->selection)
925 #define SELECTION_EVENT_TARGET(eventp) \
926 (((struct selection_input_event *) (eventp))->target)
927 #define SELECTION_EVENT_PROPERTY(eventp) \
928 (((struct selection_input_event *) (eventp))->property)
929 #define SELECTION_EVENT_TIME(eventp) \
930 (((struct selection_input_event *) (eventp))->time)
931
932 \f
933 struct window;
934 struct glyph_matrix;
935 struct frame;
936 struct input_event;
937 struct face;
938 struct image;
939
940 /* From xselect.c. */
941
942 void x_handle_selection_notify P_ ((XSelectionEvent *));
943 void x_handle_property_notify P_ ((XPropertyEvent *));
944
945 /* From xfns.c. */
946
947 Lisp_Object display_x_get_resource P_ ((struct x_display_info *,
948 Lisp_Object, Lisp_Object,
949 Lisp_Object, Lisp_Object));
950 struct frame *check_x_frame P_ ((Lisp_Object));
951 EXFUN (Fx_display_color_p, 1);
952 EXFUN (Fx_display_grayscale_p, 1);
953 extern void x_free_gcs P_ ((struct frame *));
954
955 /* From xrdb.c. */
956
957 char *x_get_customization_string P_ ((XrmDatabase, char *, char *));
958 XrmDatabase x_load_resources P_ ((Display *, char *, char *, char *));
959 int x_get_resource P_ ((XrmDatabase, char *, char *,
960 XrmRepresentation, XrmValue *));
961 void x_delete_display P_ ((struct x_display_info *));
962 void x_make_frame_visible P_ ((struct frame *));
963 void x_iconify_frame P_ ((struct frame *));
964 void x_wm_set_size_hint P_ ((struct frame *, long, int));
965 int x_catch_errors P_ ((Display *));
966 int x_had_errors_p P_ ((Display *));
967 void x_uncatch_errors P_ ((Display *, int));
968 void x_check_errors P_ ((Display *, char *));
969 int x_text_icon P_ ((struct frame *, char *));
970 int x_bitmap_icon P_ ((struct frame *, Lisp_Object));
971 void x_set_window_size P_ ((struct frame *, int, int, int));
972 void x_wm_set_window_state P_ ((struct frame *, int));
973 int x_alloc_nearest_color P_ ((struct frame *, Colormap, XColor *));
974
975 /* Defined in xterm.c */
976
977 extern void cancel_mouse_face P_ ((struct frame *));
978 extern void x_scroll_bar_clear P_ ((struct frame *));
979 extern int x_text_icon P_ ((struct frame *, char *));
980 extern int x_bitmap_icon P_ ((struct frame *, Lisp_Object));
981 extern int x_catch_errors P_ ((Display *));
982 extern void x_check_errors P_ ((Display *, char *));
983 extern int x_had_errors_p P_ ((Display *));
984 extern void x_uncatch_errors P_ ((Display *, int));
985 extern void x_set_window_size P_ ((struct frame *, int, int, int));
986 extern void x_set_mouse_position P_ ((struct frame *, int, int));
987 extern void x_set_mouse_pixel_position P_ ((struct frame *, int, int));
988 extern void x_raise_frame P_ ((struct frame *));
989 extern void x_lower_frame P_ ((struct frame *));
990 extern void x_make_frame_visible P_ ((struct frame *));
991 extern void x_make_frame_invisible P_ ((struct frame *));
992 extern void x_iconify_frame P_ ((struct frame *));
993 extern void x_free_frame_resources P_ ((struct frame *));
994 extern void x_destroy_window P_ ((struct frame *));
995 extern void x_wm_set_size_hint P_ ((struct frame *, long, int));
996 extern void x_wm_set_window_state P_ ((struct frame *, int));
997 extern void x_wm_set_icon_pixmap P_ ((struct frame *, int));
998 extern void x_delete_display P_ ((struct x_display_info *));
999 extern void x_initialize P_ ((void));
1000 extern unsigned long x_copy_color P_ ((struct frame *, unsigned long));
1001 #ifdef USE_X_TOOLKIT
1002 extern XtAppContext Xt_app_con;
1003 #endif
1004 extern void x_query_colors P_ ((struct frame *f, XColor *, int));
1005 extern void x_query_color P_ ((struct frame *f, XColor *));
1006 extern void x_clear_area P_ ((Display *, Window, int, int, int, int, int));
1007
1008 extern int x_dispatch_event P_ ((XEvent *, Display *));
1009
1010 /* Defined in xselect.c */
1011
1012 extern void x_handle_property_notify P_ ((XPropertyEvent *));
1013 extern void x_handle_selection_notify P_ ((XSelectionEvent *));
1014 extern void x_handle_selection_event P_ ((struct input_event *));
1015 extern void x_clear_frame_selections P_ ((struct frame *));
1016
1017 extern int x_handle_dnd_message P_ ((struct frame *,
1018 XClientMessageEvent *,
1019 struct x_display_info *,
1020 struct input_event *bufp));
1021 extern int x_check_property_data P_ ((Lisp_Object));
1022 extern void x_fill_property_data P_ ((Display *,
1023 Lisp_Object,
1024 void *,
1025 int));
1026 extern Lisp_Object x_property_data_to_lisp P_ ((struct frame *,
1027 unsigned char *,
1028 Atom,
1029 int,
1030 unsigned long));
1031
1032 /* Defined in xfns.c */
1033
1034 extern struct x_display_info * check_x_display_info P_ ((Lisp_Object frame));
1035 extern int have_menus_p P_ ((void));
1036
1037 #ifdef USE_GTK
1038 extern int xg_set_icon P_ ((struct frame *, Lisp_Object));
1039 #endif /* USE_GTK */
1040
1041 extern void x_real_positions P_ ((struct frame *, int *, int *));
1042 extern int defined_color P_ ((struct frame *, char *, XColor *, int));
1043 extern void x_set_border_pixel P_ ((struct frame *, int));
1044 extern void x_set_menu_bar_lines P_ ((struct frame *, Lisp_Object, Lisp_Object));
1045 extern unsigned char * x_encode_text P_ ((Lisp_Object, Lisp_Object, int,
1046 int *, int *));
1047 extern void x_implicitly_set_name P_ ((struct frame *, Lisp_Object, Lisp_Object));
1048 extern void xic_free_xfontset P_ ((struct frame *));
1049 extern void create_frame_xic P_ ((struct frame *));
1050 extern void destroy_frame_xic P_ ((struct frame *));
1051 extern void xic_set_preeditarea P_ ((struct window *, int, int));
1052 extern void xic_set_statusarea P_ ((struct frame *));
1053 extern void xic_set_xfontset P_ ((struct frame *, char *));
1054 extern int x_pixel_width P_ ((struct frame *));
1055 extern int x_pixel_height P_ ((struct frame *));
1056 extern int x_char_width P_ ((struct frame *));
1057 extern int x_char_height P_ ((struct frame *));
1058 extern int x_screen_planes P_ ((struct frame *));
1059 extern void x_sync P_ ((struct frame *));
1060 extern int x_defined_color P_ ((struct frame *, char *, XColor *, int));
1061 #ifdef HAVE_X_I18N
1062 extern void free_frame_xic P_ ((struct frame *));
1063 #endif
1064 extern void x_set_tool_bar_lines P_ ((struct frame *, Lisp_Object, Lisp_Object));
1065
1066 /* Defined in xfaces.c */
1067
1068 extern int compute_glyph_face P_ ((struct frame *, int, int));
1069 extern int compute_glyph_face_1 P_ ((struct frame *, Lisp_Object, int));
1070 extern void x_free_dpy_colors P_ ((Display *, Screen *, Colormap,
1071 unsigned long *, int));
1072
1073 /* Defined in xmenu.c */
1074
1075 extern void x_menu_set_in_use P_ ((int));
1076 extern void x_menu_wait_for_event P_ ((void *data));
1077 extern void x_activate_menubar P_ ((struct frame *));
1078 extern int popup_activated P_ ((void));
1079 extern void initialize_frame_menubar P_ ((struct frame *));
1080 extern void free_frame_menubar P_ ((struct frame *));
1081
1082 /* Defined in widget.c */
1083
1084 #ifdef USE_X_TOOLKIT
1085 extern void widget_store_internal_border P_ ((Widget));
1086 #endif
1087
1088 /* Defined in xsmfns.c */
1089 #ifdef HAVE_X_SM
1090 extern void x_session_initialize P_ ((struct x_display_info *dpyinfo));
1091 extern int x_session_check_input P_ ((struct input_event *bufp));
1092 extern int x_session_have_connection P_ ((void));
1093 #endif
1094
1095 #define FONT_TYPE_FOR_UNIBYTE(font, ch) 0
1096 #define FONT_TYPE_FOR_MULTIBYTE(font, ch) 0
1097
1098 #define STORE_XCHAR2B(chp, b1, b2) \
1099 ((chp)->byte1 = (b1), (chp)->byte2 = (b2))
1100
1101 #define XCHAR2B_BYTE1(chp) \
1102 ((chp)->byte1)
1103
1104 #define XCHAR2B_BYTE2(chp) \
1105 ((chp)->byte2)
1106
1107
1108 #define STORE_NATIVE_RECT(nr,rx,ry,rwidth,rheight) \
1109 ((nr).x = (rx), \
1110 (nr).y = (ry), \
1111 (nr).width = (rwidth), \
1112 (nr).height = (rheight))
1113
1114 /* arch-tag: 78a7972a-b18f-4694-861a-0780c4b3090e
1115 (do not change this comment) */