annotate src/console-x.h @ 163:0132846995bd r20-3b8

Import from CVS: tag r20-3b8
author cvs
date Mon, 13 Aug 2007 09:43:35 +0200
parents cca96a509cfe
children bfd6434d15b3
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* Define X specific console, device, and frame object for XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1989, 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 Copyright (C) 1994, 1995 Board of Trustees, University of Illinois.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 XEmacs is distributed in the hope that it will be useful, but WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 /* Synched up with: Not in FSF. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 /* Authorship:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 Ultimately based on FSF, then later on JWZ work for Lemacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 Rewritten over time by Ben Wing and Chuck Thompson (original
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 multi-device work by Chuck Thompson).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 #ifndef _XEMACS_CONSOLE_X_H_
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 #define _XEMACS_CONSOLE_X_H_
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 #ifdef HAVE_X_WINDOWS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 #include "console.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 #include "xintrinsic.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 #include <X11/cursorfont.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 #include <X11/keysym.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 #include <X11/Xatom.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 120
diff changeset
44 #if 0 /* mrb - Xos sux. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 #ifdef USG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 #undef USG /* ####KLUDGE for Solaris 2.2 and up */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 #include <X11/Xos.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 #define USG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 #include <X11/Xos.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 #endif
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 120
diff changeset
52 #endif /* 0 */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 #include <X11/StringDefs.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 #ifdef HAVE_XPM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 #include <X11/xpm.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 /* R5 defines the XPointer type, but R4 doesn't.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 R4 also doesn't define a version number, but R5 does. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 #if (XlibSpecificationRelease < 5)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 # define XPointer char *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 DECLARE_CONSOLE_TYPE (x);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 struct x_device
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 /* The X connection of this device. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 Display *display;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 /* Xt application info. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 Widget Xt_app_shell;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 /* Cache of GC's for frame's on this device. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 struct gc_cache *gc_cache;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 /* Used by x_bevel_modeline in redisplay-x.c */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 Pixmap gray_pixmap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 /* Atoms associated with this device. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 /* allocated in Xatoms_of_xfns in xfns.c */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 Atom Xatom_WM_PROTOCOLS;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 Atom Xatom_WM_DELETE_WINDOW;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 Atom Xatom_WM_SAVE_YOURSELF;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 Atom Xatom_WM_TAKE_FOCUS;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 Atom Xatom_WM_STATE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 /* allocated in Xatoms_of_xselect in xselect.c */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 Atom Xatom_CLIPBOARD;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 Atom Xatom_TIMESTAMP;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 Atom Xatom_TEXT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 Atom Xatom_DELETE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 Atom Xatom_MULTIPLE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 Atom Xatom_INCR;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 Atom Xatom_EMACS_TMP;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 Atom Xatom_TARGETS;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 Atom Xatom_NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 Atom Xatom_ATOM_PAIR;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 Atom Xatom_COMPOUND_TEXT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 /* allocated in Xatoms_of_objects_x in objects-x.c */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 Atom Xatom_FOUNDRY;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 Atom Xatom_FAMILY_NAME;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 Atom Xatom_WEIGHT_NAME;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 Atom Xatom_SLANT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 Atom Xatom_SETWIDTH_NAME;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 Atom Xatom_ADD_STYLE_NAME;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 Atom Xatom_PIXEL_SIZE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 Atom Xatom_POINT_SIZE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 Atom Xatom_RESOLUTION_X;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 Atom Xatom_RESOLUTION_Y;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 Atom Xatom_SPACING;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 Atom Xatom_AVERAGE_WIDTH;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 Atom Xatom_CHARSET_REGISTRY;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 Atom Xatom_CHARSET_ENCODING;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 /* The following items are all used exclusively in event-Xt.c. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 int MetaMask, HyperMask, SuperMask, AltMask, ModeMask;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 KeySym lock_interpretation;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 XModifierKeymap *x_modifier_keymap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 KeySym *x_keysym_map;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 int x_keysym_map_min_code;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 int x_keysym_map_keysyms_per_code;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 /* frame that holds the WM_COMMAND property; there should be exactly
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 one of these per device. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 Lisp_Object WM_COMMAND_frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 /* #### It's not clear that there is much distinction anymore
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 between mouse_timestamp and global_mouse_timestamp, now that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 Emacs doesn't see most (all?) events not destined for it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 /* The timestamp of the last button or key event used by emacs itself.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 This is used for asserting selections and input focus. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 Time mouse_timestamp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 /* This is the timestamp the last button or key event whether it was
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 dispatched to emacs or widgets. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 Time global_mouse_timestamp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 /* This is the last known timestamp received from the server. It is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 maintained by x_event_to_emacs_event and used to patch bogus
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 WM_TAKE_FOCUS messages sent by Mwm. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 Time last_server_timestamp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 /* Used by Xlib to preserve information across calls to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 XLookupString(), to implement compose processing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 According to The X Window System, p. 467, "The creation of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 XComposeStatus structures is implementation dependent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 a portable program must pass NULL for this argument."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 But this means that a portable program cannot implement
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 compose processing! WTF?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 So we just set it to all zeros. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
161 /* No X Server ever used this, AFAIK -- mrb */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
162 /* XComposeStatus x_compose_status; */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
163
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
164 #ifdef HAVE_XIM
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
165 XIM xim;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
166 XIMStyles *xim_styles;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
167 #endif /* HAVE_XIM */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 /* stuff for sticky modifiers: */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 unsigned int need_to_add_mask, down_mask;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 KeyCode last_downkey;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 Time release_time;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 #define DEVICE_X_DATA(d) DEVICE_TYPE_DATA (d, x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 #define FRAME_X_DISPLAY(f) (DEVICE_X_DISPLAY (XDEVICE (f->device)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 #define DEVICE_X_DISPLAY(d) (DEVICE_X_DATA (d)->display)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 #define DEVICE_XT_APP_SHELL(d) (DEVICE_X_DATA (d)->Xt_app_shell)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 #define DEVICE_X_GC_CACHE(d) (DEVICE_X_DATA (d)->gc_cache)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 #define DEVICE_X_GRAY_PIXMAP(d) (DEVICE_X_DATA (d)->gray_pixmap)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 #define DEVICE_X_WM_COMMAND_FRAME(d) (DEVICE_X_DATA (d)->WM_COMMAND_frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 #define DEVICE_X_MOUSE_TIMESTAMP(d) (DEVICE_X_DATA (d)->mouse_timestamp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 #define DEVICE_X_GLOBAL_MOUSE_TIMESTAMP(d) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 (DEVICE_X_DATA (d)->global_mouse_timestamp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 #define DEVICE_X_LAST_SERVER_TIMESTAMP(d) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 (DEVICE_X_DATA (d)->last_server_timestamp)
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
189 /* #define DEVICE_X_X_COMPOSE_STATUS(d)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
190 (DEVICE_X_DATA (d)->x_compose_status) */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
191 #ifdef HAVE_XIM
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
192 #define DEVICE_X_XIM(d) (DEVICE_X_DATA (d)->xim)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
193 #define DEVICE_X_XIM_STYLES(d) (DEVICE_X_DATA (d)->xim_styles)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
194 #define DEVICE_X_FONTSET(d) (DEVICE_X_DATA (d)->fontset)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
195 #endif /* HAVE_XIM */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 /* allocated in Xatoms_of_xfns in xfns.c */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 #define DEVICE_XATOM_WM_PROTOCOLS(d) (DEVICE_X_DATA (d)->Xatom_WM_PROTOCOLS)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 #define DEVICE_XATOM_WM_DELETE_WINDOW(d) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 (DEVICE_X_DATA (d)->Xatom_WM_DELETE_WINDOW)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 #define DEVICE_XATOM_WM_SAVE_YOURSELF(d) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 (DEVICE_X_DATA (d)->Xatom_WM_SAVE_YOURSELF)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 #define DEVICE_XATOM_WM_TAKE_FOCUS(d) (DEVICE_X_DATA (d)->Xatom_WM_TAKE_FOCUS)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 #define DEVICE_XATOM_WM_STATE(d) (DEVICE_X_DATA (d)->Xatom_WM_STATE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 /* allocated in Xatoms_of_xselect in xselect.c */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 #define DEVICE_XATOM_CLIPBOARD(d) (DEVICE_X_DATA (d)->Xatom_CLIPBOARD)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 #define DEVICE_XATOM_TIMESTAMP(d) (DEVICE_X_DATA (d)->Xatom_TIMESTAMP)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 #define DEVICE_XATOM_TEXT(d) (DEVICE_X_DATA (d)->Xatom_TEXT)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 #define DEVICE_XATOM_DELETE(d) (DEVICE_X_DATA (d)->Xatom_DELETE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 #define DEVICE_XATOM_MULTIPLE(d) (DEVICE_X_DATA (d)->Xatom_MULTIPLE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 #define DEVICE_XATOM_INCR(d) (DEVICE_X_DATA (d)->Xatom_INCR)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 #define DEVICE_XATOM_EMACS_TMP(d) (DEVICE_X_DATA (d)->Xatom_EMACS_TMP)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 #define DEVICE_XATOM_TARGETS(d) (DEVICE_X_DATA (d)->Xatom_TARGETS)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 #define DEVICE_XATOM_NULL(d) (DEVICE_X_DATA (d)->Xatom_NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 #define DEVICE_XATOM_ATOM_PAIR(d) (DEVICE_X_DATA (d)->Xatom_ATOM_PAIR)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 #define DEVICE_XATOM_COMPOUND_TEXT(d) (DEVICE_X_DATA (d)->Xatom_COMPOUND_TEXT)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 /* allocated in Xatoms_of_objects_x in objects-x.c */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 #define DEVICE_XATOM_FOUNDRY(d) (DEVICE_X_DATA (d)->Xatom_FOUNDRY)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 #define DEVICE_XATOM_FAMILY_NAME(d) (DEVICE_X_DATA (d)->Xatom_FAMILY_NAME)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 #define DEVICE_XATOM_WEIGHT_NAME(d) (DEVICE_X_DATA (d)->Xatom_WEIGHT_NAME)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 #define DEVICE_XATOM_SLANT(d) (DEVICE_X_DATA (d)->Xatom_SLANT)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 #define DEVICE_XATOM_SETWIDTH_NAME(d) (DEVICE_X_DATA (d)->Xatom_SETWIDTH_NAME)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 #define DEVICE_XATOM_ADD_STYLE_NAME(d) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 (DEVICE_X_DATA (d)->Xatom_ADD_STYLE_NAME)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 #define DEVICE_XATOM_PIXEL_SIZE(d) (DEVICE_X_DATA (d)->Xatom_PIXEL_SIZE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 #define DEVICE_XATOM_POINT_SIZE(d) (DEVICE_X_DATA (d)->Xatom_POINT_SIZE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 #define DEVICE_XATOM_RESOLUTION_X(d) (DEVICE_X_DATA (d)->Xatom_RESOLUTION_X)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 #define DEVICE_XATOM_RESOLUTION_Y(d) (DEVICE_X_DATA (d)->Xatom_RESOLUTION_Y)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 #define DEVICE_XATOM_SPACING(d) (DEVICE_X_DATA (d)->Xatom_SPACING)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 #define DEVICE_XATOM_AVERAGE_WIDTH(d) (DEVICE_X_DATA (d)->Xatom_AVERAGE_WIDTH)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 #define DEVICE_XATOM_CHARSET_REGISTRY(d) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 (DEVICE_X_DATA (d)->Xatom_CHARSET_REGISTRY)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 #define DEVICE_XATOM_CHARSET_ENCODING(d) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 (DEVICE_X_DATA (d)->Xatom_CHARSET_ENCODING)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 /* The maximum number of widgets that can be displayed above the text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 area at one time. Currently no more than 3 will ever actually be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 displayed (menubar, psheet, debugger panel). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 #define MAX_CONCURRENT_TOP_WIDGETS 8
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 struct x_frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 /* The widget of this frame. This is an EmacsShell or an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 ExternalShell. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 Widget widget;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 /* The parent of the EmacsFrame, the menubar, and the scrollbars.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 This is an EmacsManager. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 Widget container;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 /* The widget of the menubar, of whatever widget class it happens to be. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 Widget menubar_widget;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 /* The widget of the edit portion of this frame; this is an EmacsFrame,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 and the window of this widget is what the redisplay code draws on. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 Widget edit_widget;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 /* Lists the widgets above the text area, in the proper order.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 Used by the EmacsManager. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 Widget top_widgets[MAX_CONCURRENT_TOP_WIDGETS];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 int num_top_widgets;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 #ifdef ENERGIZE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 /* The Energize property-sheets. The current_ slots are the ones which are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 actually on the frame. The desired_ slots are the ones which should
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 be there. Redisplay synchs these.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 int *current_psheets;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 int *desired_psheets;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 int current_psheet_count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 int desired_psheet_count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 Lisp_Object current_psheet_buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 Lisp_Object desired_psheet_buffer;
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
276 #endif /* ENERGIZE */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 /*************************** Miscellaneous **************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 /* The icon pixmaps; these are Lisp_Image_Instance objects, or Qnil. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 Lisp_Object icon_pixmap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 Lisp_Object icon_pixmap_mask;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 /* We don't provide a mechanism for changing these are they are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 initialized so we might as well keep pointers to them and avoid
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 lots of expensive calls to gc_cache_lookup. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 GC toolbar_top_shadow_gc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 GC toolbar_bottom_shadow_gc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 GC toolbar_blank_background_gc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 GC toolbar_pixmap_background_gc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 /* geometry string that ought to be freed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 char *geom_free_me_please;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
295 #ifdef HAVE_XIM
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
296 XPoint xic_spot; /* Spot Location cache */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
297 #ifdef XIM_XLIB
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
298 XIC xic;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
299 /* Could get these at any time by asking xic, but... */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
300 XIMStyle xic_style; /* XIM Style cache */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
301 #endif /* XIM_XLIB */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
302 #endif /* HAVE_XIM */
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 0
diff changeset
303
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 int old_toolbar_size[4];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 /* 1 if the frame is completely visible on the display, 0 otherwise.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 if 0 the frame may have been iconified or may be totally
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 or partially hidden by another X window */
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
309 unsigned int totally_visible_p :1;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 /* NB: Both of the following flags are derivable from the 'shell'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 field above, but it's easier if we also have them separately here. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 /* Are we a top-level frame? This means that our shell is a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 TopLevelShell, and we should do certain things to interact with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 the window manager. */
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
317 unsigned int top_level_frame_p :1;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 #ifdef EXTERNAL_WIDGET
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 /* Are we using somebody else's window for our shell window? This
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 means that our shell is an ExternalShell. If this flag is set, then
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 `top_level_frame_p' will never be set. */
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
323 unsigned int external_window_p :1;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 #endif /* EXTERNAL_WIDGET */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 #define FRAME_X_DATA(f) FRAME_TYPE_DATA (f, x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 #define FRAME_X_SHELL_WIDGET(f) (FRAME_X_DATA (f)->widget)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 #define FRAME_X_CONTAINER_WIDGET(f) (FRAME_X_DATA (f)->container)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 #define FRAME_X_MENUBAR_WIDGET(f) (FRAME_X_DATA (f)->menubar_widget)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 #define FRAME_X_TEXT_WIDGET(f) (FRAME_X_DATA (f)->edit_widget)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 #define FRAME_X_TOP_WIDGETS(f) (FRAME_X_DATA (f)->top_widgets)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 #define FRAME_X_NUM_TOP_WIDGETS(f) (FRAME_X_DATA (f)->num_top_widgets)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 #define FRAME_X_OLD_TOOLBAR_SIZE(f, pos) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 (FRAME_X_DATA (f)->old_toolbar_size[pos])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 #ifdef ENERGIZE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 #define FRAME_X_CURRENT_PSHEETS(f) (FRAME_X_DATA (f)->current_psheets)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 #define FRAME_X_DESIRED_PSHEETS(f) (FRAME_X_DATA (f)->desired_psheets)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 #define FRAME_X_CURRENT_PSHEET_COUNT(f) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 (FRAME_X_DATA (f)->current_psheet_count)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 #define FRAME_X_DESIRED_PSHEET_COUNT(f) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 (FRAME_X_DATA (f)->desired_psheet_count)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 #define FRAME_X_CURRENT_PSHEET_BUFFER(f) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 (FRAME_X_DATA (f)->current_psheet_buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 #define FRAME_X_DESIRED_PSHEET_BUFFER(f) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 (FRAME_X_DATA (f)->desired_psheet_buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 #define FRAME_X_ICON_PIXMAP(f) (FRAME_X_DATA (f)->icon_pixmap)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 #define FRAME_X_ICON_PIXMAP_MASK(f) (FRAME_X_DATA (f)->icon_pixmap_mask)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 #define FRAME_X_TOOLBAR_TOP_SHADOW_GC(f) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 (FRAME_X_DATA (f)->toolbar_top_shadow_gc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 #define FRAME_X_TOOLBAR_BOTTOM_SHADOW_GC(f) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 (FRAME_X_DATA (f)->toolbar_bottom_shadow_gc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 #define FRAME_X_TOOLBAR_BLANK_BACKGROUND_GC(f) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 (FRAME_X_DATA (f)->toolbar_blank_background_gc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 #define FRAME_X_TOOLBAR_PIXMAP_BACKGROUND_GC(f) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 (FRAME_X_DATA (f)->toolbar_pixmap_background_gc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 #define FRAME_X_GEOM_FREE_ME_PLEASE(f) (FRAME_X_DATA (f)->geom_free_me_please)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 #define FRAME_X_TOTALLY_VISIBLE_P(f) (FRAME_X_DATA (f)->totally_visible_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 #define FRAME_X_TOP_LEVEL_FRAME_P(f) (FRAME_X_DATA (f)->top_level_frame_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 #ifdef EXTERNAL_WIDGET
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 #define FRAME_X_EXTERNAL_WINDOW_P(f) (FRAME_X_DATA (f)->external_window_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
373 #ifdef HAVE_XIM
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
374 #define FRAME_X_XIC_SPOT(f) (FRAME_X_DATA (f)->xic_spot)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
375 #ifdef XIM_XLIB
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
376 #define FRAME_X_XIC(f) (FRAME_X_DATA (f)->xic)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
377 #define FRAME_X_XIC_STYLE(f) (FRAME_X_DATA (f)->xic_style)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
378 #endif /* XIM_XLIB */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
379 #endif /* HAVE_XIM */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
380
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 /* Variables associated with the X display frame this emacs is using. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 extern XtAppContext Xt_app_con;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 extern Lisp_Object Vx_gc_pointer_shape;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 extern Lisp_Object Vx_scrollbar_pointer_shape;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 extern Lisp_Object Qx_error;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 extern struct console_type *x_console_type;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 extern Lisp_Object Vdefault_x_device;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 /* Number of pixels below each line. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 extern int x_interline_space;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 extern int x_selection_timeout;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 struct frame *x_any_window_to_frame (struct device *d, Window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 struct frame *x_any_widget_or_parent_to_frame (struct device *d,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 Widget widget);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 struct frame *decode_x_frame (Lisp_Object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 Display *get_x_display (Lisp_Object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 struct frame *x_window_to_frame (struct device *d, Window);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 struct device *get_device_from_display (Display *dpy);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 struct device *decode_x_device (Lisp_Object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 void x_handle_selection_notify (XSelectionEvent *event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 void x_handle_selection_request (XSelectionRequestEvent *event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 void x_handle_selection_clear (XSelectionClearEvent *event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 void x_handle_property_notify (XPropertyEvent *event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 void Xatoms_of_xselect (struct device *d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 void Xatoms_of_objects_x (struct device *d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 void x_wm_set_shell_iconic_p (Widget shell, int iconic_p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 void x_wm_set_cell_size (Widget wmshell, int cw, int ch);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 void x_wm_set_variable_size (Widget wmshell, int width, int height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 CONST char *x_event_name (int event_type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 int x_error_handler (Display *disp, XErrorEvent *event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 void expect_x_error (Display *dpy);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 int x_error_occurred_p (Display *dpy);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 int signal_if_x_error (Display *dpy, int resumable_p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 int x_IO_error_handler (Display *disp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 void x_redraw_exposed_area (struct frame *f, int x, int y,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 int width, int height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 struct Lisp_Image_Instance;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 void x_output_string (struct window *w, struct display_line *dl,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 emchar_dynarr *buf, int xpos, int xoffset,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 int start_pixpos, int width, face_index findex,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 int cursor, int cursor_start, int cursor_width,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 int cursor_height);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 void x_output_x_pixmap (struct frame *f, struct Lisp_Image_Instance *p,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 int x, int y, int clip_x, int clip_y,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434 int clip_width, int clip_height, int width,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 int height, int pixmap_offset,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 unsigned long fg, unsigned long bg,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 GC override_gc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 void x_output_shadows (struct frame *f, int x, int y, int width,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 int height, GC top_shadow_gc,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 GC bottom_shadow_gc, GC background_gc,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 int shadow_thickness);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 void x_generate_shadow_pixels (struct frame *f,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 unsigned long *top_shadow,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 unsigned long *bottom_shadow,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 unsigned long background,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 unsigned long core_background);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 int x_initialize_frame_menubar (struct frame *f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 void x_init_modifier_mapping (struct device *d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 #define X_ERROR_OCCURRED(dpy, body) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 (expect_x_error ((dpy)), (body), x_error_occurred_p (dpy))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 #define HANDLING_X_ERROR(dpy, body) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 ( expect_x_error ((dpy)), (body), signal_if_x_error ((dpy), 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 Lisp_Object x_atom_to_symbol (struct device *d, Atom atom);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 Atom symbol_to_x_atom (struct device *d, Lisp_Object sym,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 int only_if_exists);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
461 #ifdef HAVE_XIM
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
462 /* Locale */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
463 void Initialize_Locale (void);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
464
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
465 /* X Input Method `methods' */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
466 void XIM_init_device (struct device *d);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
467 void XIM_init_frame (struct frame *f);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
468 void XIM_SetSpotLocation (struct frame *f, int x, int y);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
469 void XIM_SetGeometry (struct frame *f);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
470 void XIM_focus_event (struct frame *f, int in_p);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
471
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
472 #ifdef XIM_XLIB
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
473 /* XtTypeConverter */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
474 Boolean EmacsXtCvtStringToXIMStyles (
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
475 Display *dpy,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
476 XrmValuePtr args,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
477 Cardinal *num_args,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
478 XrmValuePtr from,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
479 XrmValuePtr to_in_out,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
480 XtPointer *converter_data);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
481
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
482 /* XtDestructor */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
483 void EmacsFreeXIMStyles (
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
484 XtAppContext app,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
485 XrmValuePtr to,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
486 XtPointer converter_data,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
487 XrmValuePtr args,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
488 Cardinal *num_args);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
489
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
490 #ifdef DEBUG_XEMACS
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
491 void describe_Window (Window win);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
492 void describe_XFontSet (XFontSet font_set);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
493 void describe_XIM (XIM im);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
494 void describe_XIMStyle (XIMStyle style);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
495 void describe_XIMStyles (XIMStyles *styles);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
496 void describe_XIC (XIC ic);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
497 void describe_event_mask (unsigned long mask);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
498 void describe_XRectangle (char *name, XRectangle *rect);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
499 void describe_Status (Status status);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
500 #endif /* DEBUG_XEMACS */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
501 #endif /* XIM_XLIB */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
502 #endif /* HAVE_XIM */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
503
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 extern int in_resource_setting;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 extern int in_specifier_change_function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507 extern Lisp_Object Vx_initial_argv_list; /* #### ugh! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 #endif /* HAVE_X_WINDOWS */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 #endif /* _XEMACS_DEVICE_X_H_ */