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