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