Trailing whitespace deleted.
[bpt/emacs.git] / src / xterm.h
CommitLineData
3f930d20 1/* Definitions and headers for communication with X protocol.
59affd2f 2 Copyright (C) 1989, 1993, 1994, 1998, 1999, 2000, 2001, 2001
ae4a31d9 3 Free Software Foundation, Inc.
3f930d20
JB
4
5This file is part of GNU Emacs.
6
7GNU Emacs is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
4e027793 9the Free Software Foundation; either version 2, or (at your option)
3f930d20
JB
10any later version.
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with GNU Emacs; see the file COPYING. If not, write to
3b7ad313
EN
19the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20Boston, MA 02111-1307, USA. */
3f930d20 21
3f930d20
JB
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>
3f930d20 28
0be31d57
RS
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>
488dd4c4
JD
36
37typedef 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. */
45typedef GtkWidget *xt_or_gtk_widget;
46#define XtParent(x) (gtk_widget_get_parent (x))
47
0be31d57
RS
48#endif
49
579dd4be
RS
50/* The class of this X application. */
51#define EMACS_CLASS "Emacs"
52\f
53/* Bookkeeping to distinguish X versions. */
ef15f270 54
d2729198
JB
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
ef15f270
JB
75 with X11R3 or X11R4 by looking for the flag macros for R4 structure
76 members that R3 doesn't have. */
77#ifdef PBaseSize
3fe53836
RS
78/* AIX 3.1's X is somewhere between X11R3 and X11R4. It has
79 PBaseSize, but not XWithdrawWindow, XSetWMName, XSetWMNormalHints,
48508a3a
FP
80 XSetWMIconName.
81 AIX 3.2 is at least X11R4. */
82#if (!defined AIX) || (defined AIX3_2)
ef15f270
JB
83#define HAVE_X11R4
84#endif
3fe53836 85#endif
ef15f270 86
b1b57843 87#ifdef HAVE_X11R5
673fea7a
RS
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
6bde6341 91#endif
cfc57cea 92
9c763cca 93#ifdef HAVE_X_I18N
cfc57cea
RS
94#include <X11/Xlocale.h>
95#endif
579dd4be
RS
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)))
3f930d20
JB
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
3f930d20 106/* The mask of events that text windows always want to receive. This
d2f764d0
RS
107 includes mouse movement events, since handling the mouse-font text property
108 means that we must track mouse motion all the time. */
3f930d20
JB
109
110#define STANDARD_EVENT_SET \
111 (KeyPressMask \
112 | ExposureMask \
113 | ButtonPressMask \
8828b393
JB
114 | ButtonReleaseMask \
115 | PointerMotionMask \
3f930d20
JB
116 | StructureNotifyMask \
117 | FocusChangeMask \
118 | LeaveWindowMask \
119 | EnterWindowMask \
120 | VisibilityChangeMask)
121
e964ed22
RS
122/* Structure recording X pixmap and reference count.
123 If REFCOUNT is 0 then this record is free to be reused. */
124
125struct 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};
b242af88
RS
133\f
134/* For each X display, we have a structure that records
135 information about it. */
3f930d20 136
579dd4be 137struct x_display_info
b242af88 138{
e964ed22 139 /* Chain of all x_display_info structures. */
579dd4be 140 struct x_display_info *next;
a8cc2c53 141
579dd4be
RS
142 /* Connection number (normally a file descriptor number). */
143 int connection;
a8cc2c53 144
b242af88 145 /* This says how to access this display in Xlib. */
579dd4be 146 Display *display;
a8cc2c53 147
e964ed22
RS
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;
a8cc2c53 151
b242af88
RS
152 /* Number of frames that are on this display. */
153 int reference_count;
a8cc2c53 154
579dd4be
RS
155 /* The Screen this connection is connected to. */
156 Screen *screen;
a8cc2c53
GM
157
158 /* Dots per inch of the screen. */
159 double resx, resy;
160
579dd4be
RS
161 /* The Visual being used for this display. */
162 Visual *visual;
7353f3a3 163
baf10d8f 164 /* The colormap being used. */
7353f3a3 165 Colormap cmap;
a8cc2c53 166
579dd4be
RS
167 /* Number of panes on this screen. */
168 int n_planes;
a8cc2c53 169
579dd4be
RS
170 /* Dimensions of this screen. */
171 int height, width;
a8cc2c53 172
579dd4be
RS
173 /* Mask of things that cause the mouse to be grabbed. */
174 int grabbed;
a8cc2c53 175
579dd4be
RS
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;
a8cc2c53 179
579dd4be
RS
180 /* The root window of this screen. */
181 Window root_window;
a8cc2c53 182
e964ed22
RS
183 /* The cursor to use for vertical scroll bars. */
184 Cursor vertical_scroll_bar_cursor;
a8cc2c53 185
579dd4be
RS
186 /* X Resource data base */
187 XrmDatabase xrdb;
188
e964ed22
RS
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
a8cc2c53
GM
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
e964ed22
RS
201 /* Reusable Graphics Context for drawing a cursor in a non-default face. */
202 GC scratch_cursor_gc;
203
a8cc2c53
GM
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. */
e964ed22 209 int mouse_face_beg_row, mouse_face_beg_col;
a8cc2c53 210 int mouse_face_beg_x, mouse_face_beg_y;
e964ed22 211 int mouse_face_end_row, mouse_face_end_col;
a8cc2c53 212 int mouse_face_end_x, mouse_face_end_y;
e964ed22
RS
213 int mouse_face_past_end;
214 Lisp_Object mouse_face_window;
215 int mouse_face_face_id;
59affd2f 216 Lisp_Object mouse_face_overlay;
e964ed22
RS
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
64421b63
KS
230 /* Nonzero means that the mouse highlight should not be shown. */
231 int mouse_face_hidden;
232
a8cc2c53
GM
233 int mouse_face_image_state;
234
e964ed22
RS
235 char *x_id_name;
236
237 /* The number of fonts actually stored in x_font_table.
a8cc2c53
GM
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. */
e964ed22
RS
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
579dd4be
RS
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;
a8cc2c53 277
579dd4be
RS
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;
a8cc2c53 282
579dd4be
RS
283 /* Atom for indicating window state to the window manager. */
284 Atom Xatom_wm_change_state;
a8cc2c53 285
579dd4be
RS
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. */
a8cc2c53 289
579dd4be
RS
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,
18538ab3 295 Xatom_COMPOUND_TEXT, Xatom_UTF8_STRING,
579dd4be
RS
296 Xatom_MULTIPLE, Xatom_INCR, Xatom_EMACS_TMP, Xatom_TARGETS, Xatom_NULL,
297 Xatom_ATOM_PAIR;
adb572fb 298
7b341ec2 299 /* More atoms for font properties. The last three are private
adb572fb
KH
300 properties, see the comments in src/fontset.h. */
301 Atom Xatom_PIXEL_SIZE,
7b341ec2
KH
302 Xatom_MULE_BASELINE_OFFSET, Xatom_MULE_RELATIVE_COMPOSE,
303 Xatom_MULE_DEFAULT_ASCENT;
adb572fb 304
a8cc2c53
GM
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
6909e850 311#ifdef MULTI_KBOARD
e47a168b 312 struct kboard *kboard;
6909e850 313#endif
256d5bf6 314 int cut_buffers_initialized; /* Whether we're sure they all exist */
2820e308
KH
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;
adb572fb
KH
335
336 /* The null pixel used for filling a character background with
337 background color of a gc. */
338 Pixmap null_pixel;
a8cc2c53
GM
339
340 /* The gray pixmap. */
341 Pixmap gray;
342
343 /* Cache of images. */
344 struct image_cache *image_cache;
1c815a24
GM
345
346#ifdef HAVE_X_I18N
347 /* XIM (X Input method). */
348 XIM xim;
349 XIMStyles *xim_styles;
350#endif
70772ed1
GM
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;
b242af88 356};
579dd4be 357
952291d9
GM
358/* This checks to make sure we have a display. */
359extern void check_x P_ ((void));
360
361extern struct frame *x_window_to_frame P_ ((struct x_display_info *, int));
362
488dd4c4 363#if defined (USE_X_TOOLKIT) || defined (USE_GTK)
952291d9
GM
364extern struct frame *x_any_window_to_frame P_ ((struct x_display_info *, int));
365extern struct frame *x_non_menubar_window_to_frame P_ ((struct x_display_info *, int));
366extern struct frame *x_top_window_to_frame P_ ((struct x_display_info *, int));
367#endif
368
579dd4be
RS
369/* This is a chain of structures for all the X displays currently in use. */
370extern struct x_display_info *x_display_list;
371
e964ed22
RS
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. */
376extern Lisp_Object x_display_name_list;
377
adb572fb
KH
378/* Regexp matching a font name whose width is the same as `PIXEL_SIZE'. */
379extern Lisp_Object Vx_pixel_size_width_font_regexp;
380
ee8ddc1c 381/* A flag to control how to display unibyte 8-bit character. */
e3c55541 382extern int unibyte_display_via_language_environment;
ee8ddc1c 383
952291d9
GM
384extern struct x_display_info *x_display_info_for_display P_ ((Display *));
385extern struct x_display_info *x_display_info_for_name P_ ((Lisp_Object));
579dd4be 386
952291d9 387extern struct x_display_info *x_term_init P_ ((Lisp_Object, char *, char *));
adb572fb 388
a8cc2c53 389extern Lisp_Object x_list_fonts P_ ((struct frame *, Lisp_Object, int, int));
3997f048 390extern void select_visual P_ ((struct x_display_info *));
952291d9
GM
391extern struct font_info *x_get_font_info P_ ((struct frame *f, int));
392extern struct font_info *x_load_font P_ ((struct frame *, char *, int));
393extern struct font_info *x_query_font P_ ((struct frame *, char *));
394extern void x_find_ccl_program P_ ((struct font_info *));
b242af88 395\f
f39d1692
RS
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
3f930d20
JB
398 the information that is specific to X windows. */
399
f39d1692 400struct x_output
3f930d20
JB
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
f3942238 409 /* Size of the X window in pixels. */
3f930d20
JB
410 int pixel_height, pixel_width;
411
ab6c5d93
KH
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
488dd4c4
JD
418 /* Height of tool bar widget, in pixels.
419 Zero if not using an external tool bar. */
420 int toolbar_height;
421
2ba6876c
RS
422 /* Height of a line, in pixels. */
423 int line_height;
424
f3942238 425 /* The tiled border used when the mouse is out of the frame. */
3f930d20
JB
426 Pixmap border_tile;
427
f3942238 428 /* Here are the Graphics Contexts for the default font. */
3f930d20
JB
429 GC normal_gc; /* Normal video */
430 GC reverse_gc; /* Reverse video */
431 GC cursor_gc; /* cursor drawing */
3f930d20
JB
432
433 /* Width of the internal border. This is a line of background color
f676886a 434 just inside the window's border. When the frame is selected,
3f930d20
JB
435 a highlighting is displayed inside the internal border. */
436 int internal_border_width;
437
f676886a
JB
438 /* The X window used for this frame.
439 May be zero while the frame object is being created
3f930d20
JB
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.
dcc98b56
RS
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). */
3f930d20
JB
451 Window parent_desc;
452
0be31d57
RS
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
488dd4c4
JD
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
78c3981d
RS
485 /* If >=0, a bitmap index. The indicated bitmap is used for the
486 icon. */
487 int icon_bitmap;
3f930d20 488
adb572fb 489 /* Default ASCII font of this frame. */
579dd4be 490 XFontStruct *font;
3f930d20 491
b6c3d034
KH
492 /* The baseline offset of the default ASCII font. */
493 int baseline_offset;
adb572fb
KH
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
3f930d20
JB
499 /* Pixel values used for various purposes.
500 border_pixel may be -1 meaning use a gray tile. */
579dd4be
RS
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;
3f930d20 507
a8cc2c53
GM
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
f9fdaa6a
MB
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
3f930d20 522 /* Descriptor for the cursor in use for this window. */
3f930d20
JB
523 Cursor text_cursor;
524 Cursor nontext_cursor;
525 Cursor modeline_cursor;
6bfbdaeb 526 Cursor cross_cursor;
5fa36066 527 Cursor hourglass_cursor;
5c2242ce 528 Cursor horizontal_drag_cursor;
a8cc2c53 529
5fa36066
GM
530 /* Window whose cursor is hourglass_cursor. This window is temporarily
531 mapped to display an hourglass cursor. */
532 Window hourglass_window;
a8cc2c53 533
5fa36066
GM
534 /* Non-zero means hourglass cursor is currently displayed. */
535 unsigned hourglass_p : 1;
3f930d20 536
f3942238 537 /* Flag to set when the X window needs to be completely repainted. */
3f930d20
JB
538 int needs_exposure;
539
ef15f270
JB
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;
c8e3cbe0 552
c8e3cbe0 553 /* The size of the extra width currently allotted for vertical
a3c87d4e
JB
554 scroll bars, in pixels. */
555 int vertical_scroll_bar_extra;
13bd51a5 556
a8cc2c53
GM
557 /* The extra width currently allotted for the areas in which
558 truncation marks, continuation marks, and overlay arrows are
559 displayed. */
d246e558
KS
560 int left_fringe_width, right_fringe_width;
561 int fringe_cols, fringes_extra;
379564d6
RS
562
563 /* This is the gravity value for the specified window position. */
564 int win_gravity;
f3942238
RS
565
566 /* The geometry flags for this window. */
567 int size_hint_flags;
b242af88
RS
568
569 /* This is the Emacs structure for the X display this frame is on. */
579dd4be 570 struct x_display_info *display_info;
dcc98b56 571
51057b1f 572 /* This is a button event that wants to activate the menubar.
ff0113e7
KH
573 We save it here until the command loop gets to think about it. */
574 XEvent *saved_menu_event;
51057b1f
RS
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
dcc98b56
RS
581 /* Nonzero means our parent is another application's window
582 and was explicitly specified. */
583 char explicit_parent;
cbef58c0
KH
584
585 /* Nonzero means tried already to make this frame visible. */
586 char asked_for_visible;
7b8d4a3f 587
4fe2b2b6
RS
588 /* Nonzero if this frame was ever previously visible. */
589 char has_been_visible;
590
7b8d4a3f
RS
591#ifdef HAVE_X_I18N
592 /* Input context (currently, this means Compose key handler setup). */
593 XIC xic;
1c815a24
GM
594 XIMStyle xic_style;
595 XFontSet xic_xfs;
7b8d4a3f 596#endif
28f72798 597
a8cc2c53
GM
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;
80de57df
GM
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;
d517010a
EZ
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;
e5cd5390
JD
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;
d517010a
EZ
642};
643
644enum
645{
baf10d8f 646 /* Values used as a bit mask, BOTH == WIDTH | HEIGHT. */
d517010a
EZ
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,
a8cc2c53 653};
13bd51a5 654
e5cd5390
JD
655enum
656{
657 /* Values for focus_state, used as bit mask.
bf338245 658 EXPLICIT means we received a FocusIn for the frame and know it has
e5cd5390
JD
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
dca3296e 668/* Return the X window used for displaying data in frame F. */
f39d1692 669#define FRAME_X_WINDOW(f) ((f)->output_data.x->window_desc)
d2729198 670
dca3296e
RS
671/* Return the outermost X window associated with the frame F. */
672#ifdef USE_X_TOOLKIT
d517010a
EZ
673#define FRAME_OUTER_WINDOW(f) ((f)->output_data.x->widget ? \
674 XtWindow ((f)->output_data.x->widget) : \
675 FRAME_X_WINDOW (f))
dca3296e 676#else
488dd4c4
JD
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 */
dca3296e 689#define FRAME_OUTER_WINDOW(f) (FRAME_X_WINDOW (f))
488dd4c4 690#endif /* !USE_GTK */
dca3296e
RS
691#endif
692
488dd4c4 693
f39d1692 694#define FRAME_FONT(f) ((f)->output_data.x->font)
adb572fb 695#define FRAME_FONTSET(f) ((f)->output_data.x->fontset)
5c9ee165 696#define FRAME_INTERNAL_BORDER_WIDTH(f) ((f)->output_data.x->internal_border_width)
1c815a24 697#define FRAME_MENUBAR_HEIGHT(f) ((f)->output_data.x->menubar_height)
488dd4c4 698#define FRAME_TOOLBAR_HEIGHT(f) ((f)->output_data.x->toolbar_height)
5c9ee165 699#define FRAME_LINE_HEIGHT(f) ((f)->output_data.x->line_height)
8e533ff0 700
a8cc2c53
GM
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
579dd4be 705/* This gives the x_display_info structure for the display F is on. */
f39d1692 706#define FRAME_X_DISPLAY_INFO(f) ((f)->output_data.x->display_info)
b242af88
RS
707
708/* This is the `Display *' which frame F is on. */
579dd4be
RS
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)
9d536124 713#define FRAME_X_SCREEN_NUMBER(f) XScreenNumberOfScreen (FRAME_X_SCREEN (f))
b242af88 714
7353f3a3
GM
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
adb572fb
KH
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
dbc4e1c1 724/* These two really ought to be called FRAME_PIXEL_{WIDTH,HEIGHT}. */
f39d1692
RS
725#define PIXEL_WIDTH(f) ((f)->output_data.x->pixel_width)
726#define PIXEL_HEIGHT(f) ((f)->output_data.x->pixel_height)
dbc4e1c1 727
bf338245
JD
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 \
488dd4c4 735 + FRAME_MENUBAR_HEIGHT (f) + FRAME_TOOLBAR_HEIGHT (f))
bf338245
JD
736
737
7afa6068 738#define FRAME_XIC(f) ((f)->output_data.x->xic)
1c815a24
GM
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)
a8cc2c53
GM
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
f76e1b5f 759/* Total width of fringes reserved for drawing truncation bitmaps,
a8cc2c53
GM
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
d246e558 765#define FRAME_X_FRINGE_COLS(F) ((F)->output_data.x->fringe_cols)
a8cc2c53 766
f76e1b5f 767/* Total width of fringes in pixels. */
81fe0ce9 768
d246e558 769#define FRAME_X_FRINGE_WIDTH(F) ((F)->output_data.x->fringes_extra)
81fe0ce9 770
d246e558 771/* Pixel-width of the left and right fringe. */
81fe0ce9 772
d246e558
KS
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)
81fe0ce9
GM
775
776
3f930d20 777\f
a3c87d4e 778/* X-specific scroll bar stuff. */
c8e3cbe0 779
a3c87d4e 780/* We represent scroll bars as lisp vectors. This allows us to place
4e027793 781 references to them in windows without worrying about whether we'll
a3c87d4e 782 end up with windows referring to dead scroll bars; the garbage
4e027793
JB
783 collector will free it when its time comes.
784
a3c87d4e 785 We use struct scroll_bar as a template for accessing fields of the
4e027793
JB
786 vector. */
787
ae4a31d9
GM
788struct scroll_bar
789{
4e027793 790 /* These fields are shared by all vectors. */
820b2ca2 791 EMACS_INT size_from_Lisp_Vector_struct;
4e027793
JB
792 struct Lisp_Vector *next_from_Lisp_Vector_struct;
793
a3c87d4e 794 /* The window we're a scroll bar for. */
4e027793 795 Lisp_Object window;
c8e3cbe0 796
a3c87d4e 797 /* The next and previous in the chain of scroll bars in this frame. */
4e027793 798 Lisp_Object next, prev;
c8e3cbe0 799
a3c87d4e 800 /* The X window representing this scroll bar. Since this is a full
4e027793
JB
801 32-bit quantity, we store it split into two 32-bit values. */
802 Lisp_Object x_window_low, x_window_high;
c8e3cbe0 803
a3c87d4e 804 /* The position and size of the scroll bar in pixels, relative to the
c8e3cbe0 805 frame. */
4e027793 806 Lisp_Object top, left, width, height;
c8e3cbe0 807
4e027793
JB
808 /* The starting and ending positions of the handle, relative to the
809 handle area (i.e. zero is the top position, not
a3c87d4e 810 SCROLL_BAR_TOP_BORDER). If they're equal, that means the handle
4e027793 811 hasn't been drawn yet.
c8e3cbe0 812
4e027793
JB
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
a3c87d4e 816 drawing handle bottoms VERTICAL_SCROLL_BAR_MIN_HANDLE pixels below
4e027793
JB
817 where they would be normally; the bottom and top are in a
818 different co-ordinate system. */
819 Lisp_Object start, end;
c8e3cbe0 820
a3c87d4e 821 /* If the scroll bar handle is currently being dragged by the user,
c8e3cbe0
JB
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
4e027793
JB
824 being dragged, this is Qnil. */
825 Lisp_Object dragging;
c8e3cbe0
JB
826};
827
a3c87d4e 828/* The number of elements a vector holding a struct scroll_bar needs. */
35e5240a
KH
829#define SCROLL_BAR_VEC_SIZE \
830 ((sizeof (struct scroll_bar) \
831 - sizeof (EMACS_INT) - sizeof (struct Lisp_Vector *)) \
4e027793
JB
832 / sizeof (Lisp_Object))
833
a3c87d4e 834/* Turning a lisp vector value into a pointer to a struct scroll_bar. */
35e5240a 835#define XSCROLL_BAR(vec) ((struct scroll_bar *) XVECTOR (vec))
4e027793
JB
836
837
838/* Building a 32-bit C integer from two 16-bit lisp integers. */
a3c87d4e 839#define SCROLL_BAR_PACK(low, high) (XINT (high) << 16 | XINT (low))
4e027793
JB
840
841/* Setting two lisp integers to the low and high words of a 32-bit C int. */
a3c87d4e 842#define SCROLL_BAR_UNPACK(low, high, int32) \
df0f379b
KH
843 (XSETINT ((low), (int32) & 0xffff), \
844 XSETINT ((high), ((int32) >> 16) & 0xffff))
4e027793
JB
845
846
a3c87d4e
JB
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))
4e027793 850
a3c87d4e
JB
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))
4e027793 854
ae4a31d9
GM
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))
a8cc2c53
GM
861
862/* Store a widget id in a struct scroll_bar. */
ae4a31d9
GM
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)
4e027793 869
c8e3cbe0 870
a3c87d4e 871/* Return the inside width of a vertical scroll bar, given the outside
4e027793 872 width. */
aa5abbc0
RS
873#define VERTICAL_SCROLL_BAR_INSIDE_WIDTH(f, width) \
874 ((width) \
875 - VERTICAL_SCROLL_BAR_LEFT_BORDER \
876 - VERTICAL_SCROLL_BAR_RIGHT_BORDER \
36fe2f9a 877 - VERTICAL_SCROLL_BAR_WIDTH_TRIM * 2)
c8e3cbe0 878
4e027793
JB
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,
a3c87d4e 881 because the scroll bar handle has a minimum height.
4e027793 882
a3c87d4e
JB
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. */
aa5abbc0
RS
886#define VERTICAL_SCROLL_BAR_TOP_RANGE(f, height) \
887 (VERTICAL_SCROLL_BAR_INSIDE_HEIGHT (f, height) - VERTICAL_SCROLL_BAR_MIN_HANDLE)
4e027793 888
a3c87d4e
JB
889/* Return the inside height of vertical scroll bar, given the outside
890 height. See VERTICAL_SCROLL_BAR_TOP_RANGE too. */
aa5abbc0 891#define VERTICAL_SCROLL_BAR_INSIDE_HEIGHT(f, height) \
a3c87d4e 892 ((height) - VERTICAL_SCROLL_BAR_TOP_BORDER - VERTICAL_SCROLL_BAR_BOTTOM_BORDER)
4e027793
JB
893
894
a3c87d4e 895/* Border widths for scroll bars.
4e027793 896
a3c87d4e 897 Scroll bar windows don't have any X borders; their border width is
4e027793
JB
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
a3c87d4e 901 (used when sizing and drawing the scroll bar window itself).
4e027793 902
eb8c3be9 903 The handle moves up and down/back and forth in a rectangle inset
a3c87d4e
JB
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)
d68eb3a2 907#define VERTICAL_SCROLL_BAR_RIGHT_BORDER (2)
a3c87d4e
JB
908#define VERTICAL_SCROLL_BAR_TOP_BORDER (2)
909#define VERTICAL_SCROLL_BAR_BOTTOM_BORDER (2)
4e027793 910
a3c87d4e
JB
911/* Minimum lengths for scroll bar handles, in pixels. */
912#define VERTICAL_SCROLL_BAR_MIN_HANDLE (5)
c8e3cbe0 913
36fe2f9a 914/* Trimming off a few pixels from each side prevents
aa5abbc0 915 text from glomming up against the scroll bar */
056e4a0a 916#define VERTICAL_SCROLL_BAR_WIDTH_TRIM (0)
aa5abbc0 917
c8e3cbe0
JB
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
0cabaf31 923 Return the upper/left pixel position of the character cell on frame F
4e027793
JB
924 at ROW/COL. */
925#define CHAR_TO_PIXEL_ROW(f, row) \
f39d1692
RS
926 ((f)->output_data.x->internal_border_width \
927 + (row) * (f)->output_data.x->line_height)
4e027793 928#define CHAR_TO_PIXEL_COL(f, col) \
f39d1692
RS
929 ((f)->output_data.x->internal_border_width \
930 + (col) * FONT_WIDTH ((f)->output_data.x->font))
4e027793
JB
931
932/* Return the pixel width/height of frame F if it has
933 WIDTH columns/HEIGHT rows. */
c8e3cbe0 934#define CHAR_TO_PIXEL_WIDTH(f, width) \
4e027793 935 (CHAR_TO_PIXEL_COL (f, width) \
f39d1692 936 + (f)->output_data.x->vertical_scroll_bar_extra \
f76e1b5f 937 + (f)->output_data.x->fringes_extra \
f39d1692 938 + (f)->output_data.x->internal_border_width)
c8e3cbe0 939#define CHAR_TO_PIXEL_HEIGHT(f, height) \
4e027793 940 (CHAR_TO_PIXEL_ROW (f, height) \
f39d1692 941 + (f)->output_data.x->internal_border_width)
c8e3cbe0 942
c8e3cbe0 943
4e027793
JB
944/* Return the row/column (zero-based) of the character cell containing
945 the pixel on FRAME at ROW/COL. */
cecfe612 946#define PIXEL_TO_CHAR_ROW(f, row) \
f39d1692
RS
947 (((row) - (f)->output_data.x->internal_border_width) \
948 / (f)->output_data.x->line_height)
cecfe612 949#define PIXEL_TO_CHAR_COL(f, col) \
f39d1692
RS
950 (((col) - (f)->output_data.x->internal_border_width) \
951 / FONT_WIDTH ((f)->output_data.x->font))
c8e3cbe0 952
4e027793
JB
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) \
f39d1692 957 - (f)->output_data.x->internal_border_width \
f76e1b5f 958 - (f)->output_data.x->fringes_extra \
f39d1692 959 - (f)->output_data.x->vertical_scroll_bar_extra)))
4e027793
JB
960#define PIXEL_TO_CHAR_HEIGHT(f, height) \
961 (PIXEL_TO_CHAR_ROW (f, ((height) \
f39d1692 962 - (f)->output_data.x->internal_border_width)))
a8cc2c53 963
c352056c 964\f
e43bd4f5
PJ
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
c352056c
RS
967 by this structure. */
968
e43bd4f5 969/* For an event of kind SELECTION_REQUEST_EVENT,
d601ce45
RS
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. */
c352056c
RS
974struct selection_input_event
975{
976 int kind;
977 Display *display;
beaff27b
RS
978 /* We spell it with an "o" here because X does. */
979 Window requestor;
c352056c
RS
980 Atom selection, target, property;
981 Time time;
982};
983
984#define SELECTION_EVENT_DISPLAY(eventp) \
985 (((struct selection_input_event *) (eventp))->display)
beaff27b
RS
986/* We spell it with an "o" here because X does. */
987#define SELECTION_EVENT_REQUESTOR(eventp) \
988 (((struct selection_input_event *) (eventp))->requestor)
c352056c
RS
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)
bf489d26
JB
997
998\f
ec5d8db7 999struct window;
a8cc2c53
GM
1000struct glyph_matrix;
1001struct frame;
ec5d8db7 1002struct input_event;
a6ce5540
GM
1003struct face;
1004struct image;
ec5d8db7 1005
a8cc2c53
GM
1006/* From xselect.c. */
1007
1008void x_handle_selection_notify P_ ((XSelectionEvent *));
1009void x_handle_property_notify P_ ((XPropertyEvent *));
1010
1011/* From xfns.c. */
1012
a8cc2c53
GM
1013Lisp_Object display_x_get_resource P_ ((struct x_display_info *,
1014 Lisp_Object, Lisp_Object,
1015 Lisp_Object, Lisp_Object));
1016struct frame *check_x_frame P_ ((Lisp_Object));
1017EXFUN (Fx_display_color_p, 1);
1018EXFUN (Fx_display_grayscale_p, 1);
a6ce5540 1019int image_ascent P_ ((struct image *, struct face *));
bd637d69 1020extern void x_free_gcs P_ ((struct frame *));
a8cc2c53
GM
1021
1022/* From xrdb.c. */
1023
1024char *x_get_string_resource P_ ((XrmDatabase, char *, char *));
1025char *x_get_customization_string P_ ((XrmDatabase, char *, char *));
1026XrmDatabase x_load_resources P_ ((Display *, char *, char *, char *));
1027int x_get_resource P_ ((XrmDatabase, char *, char *,
1028 XrmRepresentation, XrmValue *));
1029void x_delete_display P_ ((struct x_display_info *));
1030void x_make_frame_visible P_ ((struct frame *));
1031void x_iconify_frame P_ ((struct frame *));
1032void x_wm_set_size_hint P_ ((struct frame *, long, int));
1033void x_set_offset P_ ((struct frame *, int, int, int));
1034void x_wm_set_icon_position P_ ((struct frame *, int, int));
1035int x_catch_errors P_ ((Display *));
1036int x_had_errors_p P_ ((Display *));
1037void x_uncatch_errors P_ ((Display *, int));
1038void x_check_errors P_ ((Display *, char *));
1039int x_text_icon P_ ((struct frame *, char *));
1040int x_bitmap_icon P_ ((struct frame *, Lisp_Object));
1041void x_set_window_size P_ ((struct frame *, int, int, int));
1042void x_wm_set_window_state P_ ((struct frame *, int));
55115f09 1043int x_alloc_nearest_color P_ ((struct frame *, Colormap, XColor *));
a8cc2c53
GM
1044
1045extern void pixel_to_glyph_coords P_ ((struct frame *, int, int,
1046 int *, int *, XRectangle *, int));
ec5d8db7
AS
1047
1048/* Defined in xterm.c */
1049
1050extern void cancel_mouse_face P_ ((struct frame *));
1051extern void x_scroll_bar_clear P_ ((struct frame *));
1052extern void x_start_queuing_selection_requests P_ ((Display *));
1053extern void x_stop_queuing_selection_requests P_ ((Display *));
ec5d8db7
AS
1054extern void x_update_cursor P_ ((struct frame *, int));
1055extern int x_text_icon P_ ((struct frame *, char *));
1056extern int x_bitmap_icon P_ ((struct frame *, Lisp_Object));
1057extern int x_catch_errors P_ ((Display *));
1058extern void x_check_errors P_ ((Display *, char *));
1059extern int x_had_errors_p P_ ((Display *));
1060extern void x_uncatch_errors P_ ((Display *, int));
1061extern Lisp_Object x_new_font P_ ((struct frame *, char *));
1062extern Lisp_Object x_new_fontset P_ ((struct frame *, char *));
d246e558 1063extern void x_compute_fringe_widths P_ ((struct frame *, int));
ec5d8db7
AS
1064extern void x_set_offset P_ ((struct frame *, int, int, int));
1065extern void x_set_window_size P_ ((struct frame *, int, int, int));
1066extern void x_set_mouse_position P_ ((struct frame *, int, int));
1067extern void x_set_mouse_pixel_position P_ ((struct frame *, int, int));
1068extern void x_raise_frame P_ ((struct frame *));
1069extern void x_lower_frame P_ ((struct frame *));
1070extern void x_make_frame_visible P_ ((struct frame *));
1071extern void x_make_frame_invisible P_ ((struct frame *));
1072extern void x_iconify_frame P_ ((struct frame *));
6dec8d78 1073extern void x_free_frame_resources P_ ((struct frame *));
ec5d8db7
AS
1074extern void x_destroy_window P_ ((struct frame *));
1075extern void x_wm_set_size_hint P_ ((struct frame *, long, int));
1076extern void x_wm_set_window_state P_ ((struct frame *, int));
1077extern void x_wm_set_icon_pixmap P_ ((struct frame *, int));
1078extern void x_wm_set_icon_position P_ ((struct frame *, int, int));
1079extern void x_delete_display P_ ((struct x_display_info *));
1080extern void x_initialize P_ ((void));
5c14c2b9 1081extern void x_display_cursor P_ ((struct window *, int, int, int, int, int));
5c14c2b9 1082extern unsigned long x_copy_color P_ ((struct frame *, unsigned long));
88453ab4
GM
1083#ifdef USE_X_TOOLKIT
1084extern XtAppContext Xt_app_con;
1085#endif
70772ed1
GM
1086extern void x_query_colors P_ ((struct frame *f, XColor *, int));
1087extern void x_query_color P_ ((struct frame *f, XColor *));
4629a73a 1088extern void x_clear_area P_ ((Display *, Window, int, int, int, int, int));
ec5d8db7 1089
d517010a
EZ
1090extern void x_fullscreen_adjust P_ ((struct frame *f, int *, int *,
1091 int *, int *));
1092
1fcfb866 1093extern int x_dispatch_event P_ ((XEvent *, Display *));
d517010a 1094
ec5d8db7
AS
1095/* Defined in xselect.c */
1096
1097extern void x_handle_property_notify P_ ((XPropertyEvent *));
1098extern void x_handle_selection_notify P_ ((XSelectionEvent *));
1099extern void x_handle_selection_request P_ ((struct input_event *));
1100extern void x_handle_selection_clear P_ ((struct input_event *));
1101extern void x_clear_frame_selections P_ ((struct frame *));
1102
1103/* Defined in xfns.c */
1104
1105extern int have_menus_p P_ ((void));
1106extern int x_bitmap_height P_ ((struct frame *, int));
1107extern int x_bitmap_width P_ ((struct frame *, int));
1108extern int x_bitmap_pixmap P_ ((struct frame *, int));
1109extern void x_reference_bitmap P_ ((struct frame *, int));
1110extern int x_create_bitmap_from_data P_ ((struct frame *, char *,
1111 unsigned int, unsigned int));
1112extern int x_create_bitmap_from_file P_ ((struct frame *, Lisp_Object));
1113extern void x_destroy_bitmap P_ ((struct frame *, int));
1114extern void x_set_frame_parameters P_ ((struct frame *, Lisp_Object));
1115extern void x_real_positions P_ ((struct frame *, int *, int *));
1116extern void x_report_frame_params P_ ((struct frame *, Lisp_Object *));
1117extern int defined_color P_ ((struct frame *, char *, XColor *, int));
1118extern void x_set_border_pixel P_ ((struct frame *, int));
1119extern void x_set_menu_bar_lines P_ ((struct frame *, Lisp_Object, Lisp_Object));
b443e0bd 1120extern unsigned char * x_encode_text P_ ((Lisp_Object, Lisp_Object, int,
0b8c21c2 1121 int *, int *));
ec5d8db7 1122extern void x_implicitly_set_name P_ ((struct frame *, Lisp_Object, Lisp_Object));
1c815a24
GM
1123extern void create_frame_xic P_ ((struct frame *));
1124extern void destroy_frame_xic P_ ((struct frame *));
1125extern void xic_set_preeditarea P_ ((struct window *, int, int));
1126extern void xic_set_statusarea P_ ((struct frame *));
1127extern void xic_set_xfontset P_ ((struct frame *, char *));
ec5d8db7
AS
1128extern int x_pixel_width P_ ((struct frame *));
1129extern int x_pixel_height P_ ((struct frame *));
1130extern int x_char_width P_ ((struct frame *));
1131extern int x_char_height P_ ((struct frame *));
1132extern int x_screen_planes P_ ((struct frame *));
1133extern void x_sync P_ ((struct frame *));
0385e83d
DL
1134extern int x_defined_color P_ ((struct frame *, char *, XColor *, int));
1135#ifdef HAVE_X_I18N
1136extern void free_frame_xic P_ ((struct frame *));
1137#endif
1138extern void x_set_tool_bar_lines P_ ((struct frame *, Lisp_Object, Lisp_Object));
ec5d8db7
AS
1139
1140/* Defined in xfaces.c */
a8cc2c53 1141
ec5d8db7 1142extern int frame_update_line_height P_ ((struct frame *));
ec5d8db7
AS
1143extern int compute_glyph_face P_ ((struct frame *, int, int));
1144extern int compute_glyph_face_1 P_ ((struct frame *, Lisp_Object, int));
4c175203
GM
1145extern void x_free_dpy_colors P_ ((Display *, Screen *, Colormap,
1146 unsigned long *, int));
ec5d8db7
AS
1147
1148/* Defined in xmenu.c */
a8cc2c53 1149
ec5d8db7
AS
1150extern void x_activate_menubar P_ ((struct frame *));
1151extern int popup_activated P_ ((void));
1152extern void initialize_frame_menubar P_ ((struct frame *));
1153
1154/* Defined in widget.c */
a8cc2c53 1155
09ba2aa0 1156#ifdef USE_X_TOOLKIT
ec5d8db7 1157extern void widget_store_internal_border P_ ((Widget));
09ba2aa0 1158#endif
3cf9b89e
JD
1159
1160/* Defined in xsmfns.c */
1161#ifdef HAVE_X_SM
1162extern void x_session_initialize P_ ((void));
1163extern int x_session_check_input P_ ((struct input_event *bufp,
1164 int *numchars));
1165extern int x_session_have_connection P_ ((void));
1166#endif