Mercurial > hg > xemacs-beta
annotate src/console-x-impl.h @ 5882:bbe4146603db
Reduce regexp usage, now CL-oriented non-regexp code available, core Lisp
lisp/ChangeLog addition:
2015-04-01 Aidan Kehoe <kehoea@parhasard.net>
When calling #'string-match with a REGEXP without regular
expression special characters, call #'search, #'mismatch, #'find,
etc. instead, making our code less likely to side-effect other
functions' match data and a little faster.
* apropos.el (apropos-command):
* apropos.el (apropos):
Call (position ?\n ...) rather than (string-match "\n" ...) here.
* buff-menu.el:
* buff-menu.el (buffers-menu-omit-invisible-buffers):
Don't fire up the regexp engine just to check if a string starts
with a space.
* buff-menu.el (select-buffers-tab-buffers-by-mode):
Don't fire up the regexp engine just to compare mode basenames.
* buff-menu.el (format-buffers-tab-line):
* buff-menu.el (build-buffers-tab-internal): Moved to being a
label within the following.
* buff-menu.el (buffers-tab-items): Use the label.
* bytecomp.el (byte-compile-log-1):
Don't fire up the regexp engine just to look for a newline.
* cus-edit.el (get):
Ditto.
* cus-edit.el (custom-variable-value-create):
Ditto, but for a colon.
* descr-text.el (describe-text-sexp):
Ditto.
* descr-text.el (describe-char-unicode-data):
Use #'split-string-by-char given that we're just looking for a
semicolon.
* descr-text.el (describe-char):
Don't fire up the regexp engine just to look for a newline.
* disass.el (disassemble-internal):
Ditto.
* files.el (file-name-sans-extension):
Implement this using #'position.
* files.el (file-name-extension):
Correct this function's docstring, implement it in terms of
#'position.
* files.el (insert-directory):
Don't fire up the regexp engine to split a string by space; don't
reverse the list of switches, this is actually a longstand bug as
far as I can see.
* gnuserv.el (gnuserv-process-filter):
Use #'position here, instead of consing inside #'split-string
needlessly.
* gtk-file-dialog.el (gtk-file-dialog-update-dropdown):
Use #'split-string-by-char here, don't fire up #'split-string for
directory-sep-char.
* gtk-font-menu.el (hack-font-truename):
Implement this more cheaply in terms of #'find,
#'split-string-by-char, #'equal, rather than #'string-match,
#'split-string, #'string-equal.
* hyper-apropos.el (hyper-apropos-grok-functions):
* hyper-apropos.el (hyper-apropos-grok-variables):
Look for a newline using #'position rather than #'string-match in
these functions.
* info.el (Info-insert-dir):
* info.el (Info-insert-file-contents):
* info.el (Info-follow-reference):
* info.el (Info-extract-menu-node-name):
* info.el (Info-menu):
Look for fixed strings using #'position or #'search as appropriate
in this file.
* ldap.el (ldap-decode-string):
* ldap.el (ldap-encode-string):
#'encode-coding-string, #'decode-coding-string are always
available, don't check if they're fboundp.
* ldap.el (ldap-decode-address):
* ldap.el (ldap-encode-address):
Use #'split-string-by-char in these functions.
* lisp-mnt.el (lm-creation-date):
* lisp-mnt.el (lm-last-modified-date):
Don't fire up the regexp engine just to look for spaces in this file.
* menubar-items.el (default-menubar):
Use (not (mismatch ...)) rather than #'string-match here, for
simple regexp.
Use (search "beta" ...) rather than (string-match "beta" ...)
* menubar-items.el (sort-buffers-menu-alphabetically):
* menubar-items.el (sort-buffers-menu-by-mode-then-alphabetically):
* menubar-items.el (group-buffers-menu-by-mode-then-alphabetically):
Don't fire up the regexp engine to check if a string starts with
a space or an asterisk.
Use the more fine-grained results of #'compare-strings; compare
case-insensitively for the buffer menu.
* menubar-items.el (list-all-buffers):
* menubar-items.el (tutorials-menu-filter):
Use #'equal rather than #'string-equal, which, in this context,
has the drawback of not having a bytecode, and no redeeming
features.
* minibuf.el:
* minibuf.el (un-substitute-in-file-name):
Use #'count, rather than counting the occurences of $ using the
regexp engine.
* minibuf.el (read-file-name-internal-1):
Don't fire up the regexp engine to search for ?=.
* mouse.el (mouse-eval-sexp):
Check for newline with #'find.
* msw-font-menu.el (mswindows-reset-device-font-menus):
Split a string by newline with #'split-string-by-char.
* mule/japanese.el:
* mule/japanese.el ("Japanese"):
Use #'search rather than #'string-match; canoncase before
comparing; fix a bug I had introduced where I had been making case
insensitive comparisons where the case mattered.
* mule/korea-util.el (default-korean-keyboard):
Look for ?3 using #'find, not #'string-march.
* mule/korea-util.el (quail-hangul-switch-hanja):
Search for a fixed string using #'search.
* mule/mule-cmds.el (set-locale-for-language-environment):
#'position, #'substitute rather than #'string-match,
#'replace-in-string.
* newcomment.el (comment-make-extra-lines):
Use #'search rather than #'string-match for a simple string.
* package-get.el (package-get-remote-filename):
Use #'position when looking for ?@
* process.el (setenv):
* process.el (read-envvar-name):
Use #'position when looking for ?=.
* replace.el (map-query-replace-regexp):
Use #'split-string-by-char instead of using an inline
implementation of it.
* select.el (select-convert-from-cf-text):
* select.el (select-convert-from-cf-unicodetext):
Use #'position rather than #'string-match in these functions.
* setup-paths.el (paths-emacs-data-root-p):
Use #'search when looking for simple string.
* sound.el (load-sound-file):
Use #'split-string-by-char rather than an inline reimplementation
of same.
* startup.el (splash-screen-window-body):
* startup.el (splash-screen-tty-body):
Search for simple strings using #'search.
* version.el (emacs-version):
Ditto.
* x-font-menu.el (hack-font-truename):
Implement this more cheaply in terms of #'find,
#'split-string-by-char, #'equal, rather than #'string-match,
#'split-string, #'string-equal.
* x-font-menu.el (x-reset-device-font-menus-core):
Use #'split-string-by-char here.
* x-init.el (x-initialize-keyboard):
Search for a simple string using #'search.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Wed, 01 Apr 2015 14:28:20 +0100 |
parents | 308d34e9f07d |
children |
rev | line source |
---|---|
872 | 1 /* Define X specific console, device, and frame object for XEmacs. |
2 Copyright (C) 1989, 1992, 1993, 1994, 1995 Free Software Foundation, Inc. | |
3 Copyright (C) 1994, 1995 Board of Trustees, University of Illinois. | |
1346 | 4 Copyright (C) 1996, 2002, 2003 Ben Wing. |
5080
5502045ec510
The background-placement face property.
Didier Verna <didier@lrde.epita.fr>
parents:
4916
diff
changeset
|
5 Copyright (C) 2010 Didier Verna |
872 | 6 |
7 This file is part of XEmacs. | |
8 | |
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5239
diff
changeset
|
9 XEmacs is free software: you can redistribute it and/or modify it |
872 | 10 under the terms of the GNU General Public License as published by the |
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5239
diff
changeset
|
11 Free Software Foundation, either version 3 of the License, or (at your |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5239
diff
changeset
|
12 option) any later version. |
872 | 13 |
14 XEmacs is distributed in the hope that it will be useful, but WITHOUT | |
15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
17 for more details. | |
18 | |
19 You should have received a copy of the GNU General Public License | |
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5239
diff
changeset
|
20 along with XEmacs. If not, see <http://www.gnu.org/licenses/>. */ |
872 | 21 |
22 /* Synched up with: Not in FSF. */ | |
23 | |
24 | |
25 /* Authorship: | |
26 | |
27 Ultimately based on FSF, then later on JWZ work for Lemacs. | |
28 Rewritten over time by Ben Wing and Chuck Thompson (original | |
29 multi-device work by Chuck Thompson). | |
30 */ | |
31 | |
32 #ifndef INCLUDED_console_x_impl_h_ | |
33 #define INCLUDED_console_x_impl_h_ | |
34 | |
35 #ifdef HAVE_X_WINDOWS | |
36 | |
37 #include "console-impl.h" | |
38 #include "console-x.h" | |
39 | |
40 DECLARE_CONSOLE_TYPE (x); | |
41 | |
3381 | 42 extern int wedge_metacity; |
43 | |
872 | 44 struct x_device |
45 { | |
3092 | 46 #ifdef NEW_GC |
5127
a9c41067dd88
more cleanups, terminology clarification, lots of doc work
Ben Wing <ben@xemacs.org>
parents:
5125
diff
changeset
|
47 NORMAL_LISP_OBJECT_HEADER header; |
3092 | 48 #endif /* NEW_GC */ |
872 | 49 /* The X connection of this device. */ |
50 Display *display; | |
51 | |
52 /* Set by x_IO_error_handler(). */ | |
53 int being_deleted; | |
54 | |
55 /* Xt application info. */ | |
56 Widget Xt_app_shell; | |
57 | |
58 /* Cache of GC's for frames on this device. */ | |
59 struct gc_cache *gc_cache; | |
60 | |
61 /* Selected visual, depth and colormap for this device */ | |
62 Visual *visual; | |
63 int depth; | |
64 Colormap device_cmap; | |
65 | |
66 /* Used by x_bevel_modeline in redisplay-x.c */ | |
67 Pixmap gray_pixmap; | |
68 | |
69 /* Atoms associated with this device. */ | |
70 /* allocated in Xatoms_of_device_x */ | |
71 Atom Xatom_WM_PROTOCOLS; | |
72 Atom Xatom_WM_DELETE_WINDOW; | |
73 Atom Xatom_WM_SAVE_YOURSELF; | |
74 Atom Xatom_WM_TAKE_FOCUS; | |
75 Atom Xatom_WM_STATE; | |
76 | |
77 /* allocated in Xatoms_of_select_x */ | |
78 Atom Xatom_CLIPBOARD; | |
79 Atom Xatom_TIMESTAMP; | |
80 Atom Xatom_TEXT; | |
81 Atom Xatom_DELETE; | |
82 Atom Xatom_MULTIPLE; | |
83 Atom Xatom_INCR; | |
84 Atom Xatom_EMACS_TMP; | |
85 Atom Xatom_TARGETS; | |
86 Atom Xatom_NULL; | |
87 Atom Xatom_ATOM_PAIR; | |
88 Atom Xatom_COMPOUND_TEXT; | |
89 | |
5176
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
4916
diff
changeset
|
90 /* allocated in Xatoms_of_fontcolor_x */ |
872 | 91 Atom Xatom_FOUNDRY; |
92 Atom Xatom_FAMILY_NAME; | |
93 Atom Xatom_WEIGHT_NAME; | |
94 Atom Xatom_SLANT; | |
95 Atom Xatom_SETWIDTH_NAME; | |
96 Atom Xatom_ADD_STYLE_NAME; | |
97 Atom Xatom_PIXEL_SIZE; | |
98 Atom Xatom_POINT_SIZE; | |
99 Atom Xatom_RESOLUTION_X; | |
100 Atom Xatom_RESOLUTION_Y; | |
101 Atom Xatom_SPACING; | |
102 Atom Xatom_AVERAGE_WIDTH; | |
103 Atom Xatom_CHARSET_REGISTRY; | |
104 Atom Xatom_CHARSET_ENCODING; | |
105 | |
106 /* The following items are all used exclusively in event-Xt.c. */ | |
107 int MetaMask, HyperMask, SuperMask, AltMask, ModeMask; | |
108 KeySym lock_interpretation; | |
109 | |
110 XModifierKeymap *x_modifier_keymap; | |
111 | |
112 KeySym *x_keysym_map; | |
113 int x_keysym_map_min_code; | |
114 int x_keysym_map_max_code; | |
115 int x_keysym_map_keysyms_per_code; | |
116 Lisp_Object x_keysym_map_hash_table; | |
117 | |
118 /* frame that holds the WM_COMMAND property; there should be exactly | |
119 one of these per device. */ | |
120 Lisp_Object WM_COMMAND_frame; | |
121 | |
122 /* #### It's not clear that there is much distinction anymore | |
123 between mouse_timestamp and global_mouse_timestamp, now that | |
124 Emacs doesn't see most (all?) events not destined for it. */ | |
125 | |
126 /* The timestamp of the last button or key event used by emacs itself. | |
127 This is used for asserting selections and input focus. */ | |
128 Time mouse_timestamp; | |
129 | |
130 /* This is the timestamp the last button or key event whether it was | |
131 dispatched to emacs or widgets. */ | |
132 Time global_mouse_timestamp; | |
133 | |
134 /* This is the last known timestamp received from the server. It is | |
135 maintained by x_event_to_emacs_event and used to patch bogus | |
136 WM_TAKE_FOCUS messages sent by Mwm. */ | |
137 Time last_server_timestamp; | |
138 | |
139 /* Used by Xlib to preserve information across calls to | |
140 XLookupString(), to implement compose processing. | |
141 | |
142 According to The X Window System, p. 467, "The creation of | |
143 XComposeStatus structures is implementation dependent; | |
144 a portable program must pass NULL for this argument." | |
145 But this means that a portable program cannot implement | |
146 compose processing! WTF? | |
147 | |
148 So we just set it to all zeros. */ | |
149 | |
150 /* No X Server ever used this, AFAIK -- mrb */ | |
151 /* XComposeStatus x_compose_status; */ | |
152 | |
153 #ifdef HAVE_XIM | |
154 XIM xim; | |
155 XIMStyles *xim_styles; | |
156 #endif /* HAVE_XIM */ | |
157 | |
158 /* stuff for sticky modifiers: */ | |
159 | |
160 unsigned int need_to_add_mask, down_mask; | |
161 KeyCode last_downkey; | |
162 Time release_time; | |
163 Time modifier_release_time; | |
164 }; | |
165 | |
3092 | 166 #ifdef NEW_GC |
167 typedef struct x_device Lisp_X_Device; | |
168 | |
5118
e0db3c197671
merge up to latest default branch, doesn't compile yet
Ben Wing <ben@xemacs.org>
parents:
4584
diff
changeset
|
169 DECLARE_LISP_OBJECT (x_device, Lisp_X_Device); |
3092 | 170 |
171 #define XX_DEVICE(x) \ | |
172 XRECORD (x, x_device, Lisp_X_Device) | |
173 #define wrap_x_device(p) wrap_record (p, x_device) | |
174 #define X_DEVICE_P(x) RECORDP (x, x_device) | |
175 #endif /* NEW_GC */ | |
176 | |
872 | 177 #define DEVICE_X_DATA(d) DEVICE_TYPE_DATA (d, x) |
178 | |
179 #define FRAME_X_DISPLAY(f) (DEVICE_X_DISPLAY (XDEVICE (f->device))) | |
180 #define DEVICE_X_DISPLAY(d) (DEVICE_X_DATA (d)->display) | |
181 #define DEVICE_X_BEING_DELETED(d) (DEVICE_X_DATA (d)->being_deleted) | |
182 #define DEVICE_X_VISUAL(d) (DEVICE_X_DATA (d)->visual) | |
183 #define DEVICE_X_DEPTH(d) (DEVICE_X_DATA (d)->depth) | |
184 #define DEVICE_X_COLORMAP(d) (DEVICE_X_DATA (d)->device_cmap) | |
185 #define DEVICE_XT_APP_SHELL(d) (DEVICE_X_DATA (d)->Xt_app_shell) | |
186 #define DEVICE_X_GC_CACHE(d) (DEVICE_X_DATA (d)->gc_cache) | |
187 #define DEVICE_X_GRAY_PIXMAP(d) (DEVICE_X_DATA (d)->gray_pixmap) | |
188 #define DEVICE_X_WM_COMMAND_FRAME(d) (DEVICE_X_DATA (d)->WM_COMMAND_frame) | |
189 #define DEVICE_X_MOUSE_TIMESTAMP(d) (DEVICE_X_DATA (d)->mouse_timestamp) | |
190 #define DEVICE_X_GLOBAL_MOUSE_TIMESTAMP(d) (DEVICE_X_DATA (d)->global_mouse_timestamp) | |
191 #define DEVICE_X_LAST_SERVER_TIMESTAMP(d) (DEVICE_X_DATA (d)->last_server_timestamp) | |
192 #define DEVICE_X_KEYSYM_MAP_HASH_TABLE(d) (DEVICE_X_DATA (d)->x_keysym_map_hash_table) | |
193 /* #define DEVICE_X_X_COMPOSE_STATUS(d) (DEVICE_X_DATA (d)->x_compose_status) */ | |
194 #ifdef HAVE_XIM | |
195 #define DEVICE_X_XIM(d) (DEVICE_X_DATA (d)->xim) | |
196 #define DEVICE_X_XIM_STYLES(d) (DEVICE_X_DATA (d)->xim_styles) | |
197 #define DEVICE_X_FONTSET(d) (DEVICE_X_DATA (d)->fontset) | |
198 #endif /* HAVE_XIM */ | |
199 | |
200 /* allocated in Xatoms_of_device_x */ | |
201 #define DEVICE_XATOM_WM_PROTOCOLS(d) (DEVICE_X_DATA (d)->Xatom_WM_PROTOCOLS) | |
202 #define DEVICE_XATOM_WM_DELETE_WINDOW(d) (DEVICE_X_DATA (d)->Xatom_WM_DELETE_WINDOW) | |
203 #define DEVICE_XATOM_WM_SAVE_YOURSELF(d) (DEVICE_X_DATA (d)->Xatom_WM_SAVE_YOURSELF) | |
204 #define DEVICE_XATOM_WM_TAKE_FOCUS(d) (DEVICE_X_DATA (d)->Xatom_WM_TAKE_FOCUS) | |
205 #define DEVICE_XATOM_WM_STATE(d) (DEVICE_X_DATA (d)->Xatom_WM_STATE) | |
206 | |
207 /* allocated in Xatoms_of_select_x */ | |
208 #define DEVICE_XATOM_CLIPBOARD(d) (DEVICE_X_DATA (d)->Xatom_CLIPBOARD) | |
209 #define DEVICE_XATOM_TIMESTAMP(d) (DEVICE_X_DATA (d)->Xatom_TIMESTAMP) | |
210 #define DEVICE_XATOM_TEXT(d) (DEVICE_X_DATA (d)->Xatom_TEXT) | |
211 #define DEVICE_XATOM_DELETE(d) (DEVICE_X_DATA (d)->Xatom_DELETE) | |
212 #define DEVICE_XATOM_MULTIPLE(d) (DEVICE_X_DATA (d)->Xatom_MULTIPLE) | |
213 #define DEVICE_XATOM_INCR(d) (DEVICE_X_DATA (d)->Xatom_INCR) | |
214 #define DEVICE_XATOM_EMACS_TMP(d) (DEVICE_X_DATA (d)->Xatom_EMACS_TMP) | |
215 #define DEVICE_XATOM_TARGETS(d) (DEVICE_X_DATA (d)->Xatom_TARGETS) | |
216 #define DEVICE_XATOM_NULL(d) (DEVICE_X_DATA (d)->Xatom_NULL) | |
217 #define DEVICE_XATOM_ATOM_PAIR(d) (DEVICE_X_DATA (d)->Xatom_ATOM_PAIR) | |
218 #define DEVICE_XATOM_COMPOUND_TEXT(d) (DEVICE_X_DATA (d)->Xatom_COMPOUND_TEXT) | |
219 | |
5176
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
4916
diff
changeset
|
220 /* allocated in Xatoms_of_fontcolor_x */ |
872 | 221 #define DEVICE_XATOM_FOUNDRY(d) (DEVICE_X_DATA (d)->Xatom_FOUNDRY) |
222 #define DEVICE_XATOM_FAMILY_NAME(d) (DEVICE_X_DATA (d)->Xatom_FAMILY_NAME) | |
223 #define DEVICE_XATOM_WEIGHT_NAME(d) (DEVICE_X_DATA (d)->Xatom_WEIGHT_NAME) | |
224 #define DEVICE_XATOM_SLANT(d) (DEVICE_X_DATA (d)->Xatom_SLANT) | |
225 #define DEVICE_XATOM_SETWIDTH_NAME(d) (DEVICE_X_DATA (d)->Xatom_SETWIDTH_NAME) | |
226 #define DEVICE_XATOM_ADD_STYLE_NAME(d) (DEVICE_X_DATA (d)->Xatom_ADD_STYLE_NAME) | |
227 #define DEVICE_XATOM_PIXEL_SIZE(d) (DEVICE_X_DATA (d)->Xatom_PIXEL_SIZE) | |
228 #define DEVICE_XATOM_POINT_SIZE(d) (DEVICE_X_DATA (d)->Xatom_POINT_SIZE) | |
229 #define DEVICE_XATOM_RESOLUTION_X(d) (DEVICE_X_DATA (d)->Xatom_RESOLUTION_X) | |
230 #define DEVICE_XATOM_RESOLUTION_Y(d) (DEVICE_X_DATA (d)->Xatom_RESOLUTION_Y) | |
231 #define DEVICE_XATOM_SPACING(d) (DEVICE_X_DATA (d)->Xatom_SPACING) | |
232 #define DEVICE_XATOM_AVERAGE_WIDTH(d) (DEVICE_X_DATA (d)->Xatom_AVERAGE_WIDTH) | |
233 #define DEVICE_XATOM_CHARSET_REGISTRY(d) (DEVICE_X_DATA (d)->Xatom_CHARSET_REGISTRY) | |
234 #define DEVICE_XATOM_CHARSET_ENCODING(d) (DEVICE_X_DATA (d)->Xatom_CHARSET_ENCODING) | |
235 | |
236 /* The maximum number of widgets that can be displayed above the text | |
237 area at one time. Currently no more than 3 will ever actually be | |
3381 | 238 displayed (menubar, psheet, debugger panel). |
239 #### Are "psheet" and "debugger panel" relevant any more? */ | |
872 | 240 #define MAX_CONCURRENT_TOP_WIDGETS 8 |
241 | |
242 struct x_frame | |
243 { | |
3092 | 244 #ifdef NEW_GC |
5127
a9c41067dd88
more cleanups, terminology clarification, lots of doc work
Ben Wing <ben@xemacs.org>
parents:
5125
diff
changeset
|
245 NORMAL_LISP_OBJECT_HEADER header; |
3092 | 246 #endif /* NEW_GC */ |
247 | |
3381 | 248 /* The widget of this frame. |
249 This is an EmacsShell or an ExternalShell. | |
250 It negotiates with the window manager or containing app on behalf of | |
251 the container widget. Should be (but isn't) invisible to Emacs. */ | |
872 | 252 Widget widget; |
253 | |
254 /* The parent of the EmacsFrame, the menubar, and the scrollbars. | |
3381 | 255 This is an EmacsManager. |
256 It is responsible for managing the geometry of the frame. This is what | |
257 Emacs mostly talks to. Anything that affects its geometry will be | |
258 reflected in the Shell widget, and thus cause WM interaction. */ | |
872 | 259 Widget container; |
260 | |
261 /* The widget of the menubar, of whatever widget class it happens to be. */ | |
262 Widget menubar_widget; | |
263 | |
264 /* The widget of the edit portion of this frame; this is an EmacsFrame, | |
265 and the window of this widget is what the redisplay code draws on. */ | |
266 Widget edit_widget; | |
5080
5502045ec510
The background-placement face property.
Didier Verna <didier@lrde.epita.fr>
parents:
4916
diff
changeset
|
267 /* Position of the edit widget above, for absolute background placement. */ |
5502045ec510
The background-placement face property.
Didier Verna <didier@lrde.epita.fr>
parents:
4916
diff
changeset
|
268 int x, y; |
872 | 269 |
270 /* Lists the widgets above the text area, in the proper order. | |
271 Used by the EmacsManager. */ | |
272 Widget top_widgets[MAX_CONCURRENT_TOP_WIDGETS]; | |
273 int num_top_widgets; | |
274 | |
1346 | 275 /* lwlib ID of the tree of widgets corresponding to this popup. We pass |
276 this to lw_map_widget_values() to retrieve all of our Lispy call-data | |
277 and accel values that need to be GCPRO'd, and store them in the | |
278 following list. (We used to call lw_map_widget_values() during GC | |
279 mark, but that isn't compatible with KKCC.) */ | |
280 LWLIB_ID menubar_id; | |
281 | |
282 /* For the frame popup data, this is the last buffer for which the | |
283 menubar was displayed. If the buffer has changed, we may have to | |
284 update things. */ | |
285 Lisp_Object last_menubar_buffer; | |
286 | |
287 /* This flag tells us if the menubar contents are up-to-date with respect | |
288 to the current menubar structure. If we want to actually pull down a | |
289 menu and this is false, then we need to update things. */ | |
2367 | 290 Boolbyte menubar_contents_up_to_date; |
872 | 291 |
292 /* The icon pixmaps; these are Lisp_Image_Instance objects, or Qnil. */ | |
293 Lisp_Object icon_pixmap; | |
294 Lisp_Object icon_pixmap_mask; | |
295 | |
296 #ifdef HAVE_TOOLBARS | |
297 int old_toolbar_size[4]; | |
298 | |
299 /* We don't provide a mechanism for changing these after they are | |
300 initialized so we might as well keep pointers to them and avoid | |
301 lots of expensive calls to gc_cache_lookup. */ | |
302 GC toolbar_top_shadow_gc; | |
303 GC toolbar_bottom_shadow_gc; | |
304 GC toolbar_blank_background_gc; | |
305 GC toolbar_pixmap_background_gc; | |
306 #endif /* HAVE_TOOLBARS */ | |
307 | |
308 /* geometry string that ought to be freed. */ | |
2367 | 309 Ascbyte *geom_free_me_please; |
872 | 310 |
311 #ifdef HAVE_XIM | |
312 XPoint xic_spot; /* Spot Location cache */ | |
313 #ifdef XIM_XLIB | |
314 XIC xic; | |
315 /* Could get these at any time by asking xic, but... */ | |
316 XIMStyle xic_style; /* XIM Style cache */ | |
317 #endif /* XIM_XLIB */ | |
318 #endif /* HAVE_XIM */ | |
319 | |
5239
f19e6bc25969
Backed out changeset 6466bc9ebf15
Mike Sperber <sperber@deinprogramm.de>
parents:
5237
diff
changeset
|
320 #ifdef HAVE_XFT |
f19e6bc25969
Backed out changeset 6466bc9ebf15
Mike Sperber <sperber@deinprogramm.de>
parents:
5237
diff
changeset
|
321 /* The Xft Drawable wrapper for this device. |
f19e6bc25969
Backed out changeset 6466bc9ebf15
Mike Sperber <sperber@deinprogramm.de>
parents:
5237
diff
changeset
|
322 #### Should this be per-device, or per-frame? */ |
f19e6bc25969
Backed out changeset 6466bc9ebf15
Mike Sperber <sperber@deinprogramm.de>
parents:
5237
diff
changeset
|
323 /* This is persistent to take advantage of the ability of Xft's glyph |
f19e6bc25969
Backed out changeset 6466bc9ebf15
Mike Sperber <sperber@deinprogramm.de>
parents:
5237
diff
changeset
|
324 cache in the server, and avoid rendering the font again and again... |
f19e6bc25969
Backed out changeset 6466bc9ebf15
Mike Sperber <sperber@deinprogramm.de>
parents:
5237
diff
changeset
|
325 |
f19e6bc25969
Backed out changeset 6466bc9ebf15
Mike Sperber <sperber@deinprogramm.de>
parents:
5237
diff
changeset
|
326 This is created the first time through redisplay, and destroyed when our |
f19e6bc25969
Backed out changeset 6466bc9ebf15
Mike Sperber <sperber@deinprogramm.de>
parents:
5237
diff
changeset
|
327 connection to the X display is destroyed. */ |
f19e6bc25969
Backed out changeset 6466bc9ebf15
Mike Sperber <sperber@deinprogramm.de>
parents:
5237
diff
changeset
|
328 XftDraw *xftDraw; |
f19e6bc25969
Backed out changeset 6466bc9ebf15
Mike Sperber <sperber@deinprogramm.de>
parents:
5237
diff
changeset
|
329 #endif |
f19e6bc25969
Backed out changeset 6466bc9ebf15
Mike Sperber <sperber@deinprogramm.de>
parents:
5237
diff
changeset
|
330 |
872 | 331 /* 1 if the frame is completely visible on the display, 0 otherwise. |
332 if 0 the frame may have been iconified or may be totally | |
333 or partially hidden by another X window */ | |
334 unsigned int totally_visible_p :1; | |
335 | |
4584
56e67d42eb04
Clarify comment in struct x_frame.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
3381
diff
changeset
|
336 /* NB: Both of the following flags are derivable from the 'widget' |
872 | 337 field above, but it's easier if we also have them separately here. */ |
338 | |
339 /* Are we a top-level frame? This means that our shell is a | |
340 TopLevelShell, and we should do certain things to interact with | |
341 the window manager. */ | |
342 unsigned int top_level_frame_p :1; | |
343 | |
344 #ifdef EXTERNAL_WIDGET | |
345 /* Are we using somebody else's window for our shell window? This | |
346 means that our shell is an ExternalShell. If this flag is set, then | |
347 `top_level_frame_p' will never be set. */ | |
348 unsigned int external_window_p :1; | |
349 #endif /* EXTERNAL_WIDGET */ | |
350 }; | |
351 | |
3092 | 352 #ifdef NEW_GC |
353 typedef struct x_frame Lisp_X_Frame; | |
354 | |
5118
e0db3c197671
merge up to latest default branch, doesn't compile yet
Ben Wing <ben@xemacs.org>
parents:
4584
diff
changeset
|
355 DECLARE_LISP_OBJECT (x_frame, Lisp_X_Frame); |
3092 | 356 |
357 #define XX_FRAME(x) \ | |
358 XRECORD (x, x_frame, Lisp_X_Frame) | |
359 #define wrap_x_frame(p) wrap_record (p, x_frame) | |
360 #define X_FRAME_P(x) RECORDP (x, x_frame) | |
361 #endif /* NEW_GC */ | |
872 | 362 #define FRAME_X_DATA(f) FRAME_TYPE_DATA (f, x) |
363 | |
5080
5502045ec510
The background-placement face property.
Didier Verna <didier@lrde.epita.fr>
parents:
4916
diff
changeset
|
364 #define FRAME_X_X(f) (FRAME_X_DATA (f)->x) |
5502045ec510
The background-placement face property.
Didier Verna <didier@lrde.epita.fr>
parents:
4916
diff
changeset
|
365 #define FRAME_X_Y(f) (FRAME_X_DATA (f)->y) |
872 | 366 #define FRAME_X_SHELL_WIDGET(f) (FRAME_X_DATA (f)->widget) |
367 #define FRAME_X_CONTAINER_WIDGET(f) (FRAME_X_DATA (f)->container) | |
368 #define FRAME_X_MENUBAR_WIDGET(f) (FRAME_X_DATA (f)->menubar_widget) | |
369 #define FRAME_X_TEXT_WIDGET(f) (FRAME_X_DATA (f)->edit_widget) | |
370 #define FRAME_X_TOP_WIDGETS(f) (FRAME_X_DATA (f)->top_widgets) | |
371 #define FRAME_X_NUM_TOP_WIDGETS(f) (FRAME_X_DATA (f)->num_top_widgets) | |
372 | |
1346 | 373 #define FRAME_X_MENUBAR_ID(f) (FRAME_X_DATA (f)->menubar_id) |
374 #define FRAME_X_LAST_MENUBAR_BUFFER(f) (FRAME_X_DATA (f)->last_menubar_buffer) | |
375 #define FRAME_X_MENUBAR_CONTENTS_UP_TO_DATE(f) \ | |
376 (FRAME_X_DATA (f)->menubar_contents_up_to_date) | |
377 | |
872 | 378 #define FRAME_X_ICON_PIXMAP(f) (FRAME_X_DATA (f)->icon_pixmap) |
379 #define FRAME_X_ICON_PIXMAP_MASK(f) (FRAME_X_DATA (f)->icon_pixmap_mask) | |
380 | |
381 #ifdef HAVE_TOOLBARS | |
382 #define FRAME_X_OLD_TOOLBAR_SIZE(f, pos) (FRAME_X_DATA (f)->old_toolbar_size[pos]) | |
383 | |
384 #define FRAME_X_TOOLBAR_TOP_SHADOW_GC(f) (FRAME_X_DATA (f)->toolbar_top_shadow_gc) | |
385 #define FRAME_X_TOOLBAR_BOTTOM_SHADOW_GC(f) (FRAME_X_DATA (f)->toolbar_bottom_shadow_gc) | |
386 #define FRAME_X_TOOLBAR_BLANK_BACKGROUND_GC(f) (FRAME_X_DATA (f)->toolbar_blank_background_gc) | |
387 #define FRAME_X_TOOLBAR_PIXMAP_BACKGROUND_GC(f) (FRAME_X_DATA (f)->toolbar_pixmap_background_gc) | |
388 #endif /* HAVE_TOOLBARS */ | |
389 | |
390 #define FRAME_X_GEOM_FREE_ME_PLEASE(f) (FRAME_X_DATA (f)->geom_free_me_please) | |
391 | |
5239
f19e6bc25969
Backed out changeset 6466bc9ebf15
Mike Sperber <sperber@deinprogramm.de>
parents:
5237
diff
changeset
|
392 #ifdef HAVE_XFT |
f19e6bc25969
Backed out changeset 6466bc9ebf15
Mike Sperber <sperber@deinprogramm.de>
parents:
5237
diff
changeset
|
393 #define FRAME_X_XFTDRAW(f) (FRAME_X_DATA (f)->xftDraw) |
f19e6bc25969
Backed out changeset 6466bc9ebf15
Mike Sperber <sperber@deinprogramm.de>
parents:
5237
diff
changeset
|
394 #endif |
f19e6bc25969
Backed out changeset 6466bc9ebf15
Mike Sperber <sperber@deinprogramm.de>
parents:
5237
diff
changeset
|
395 |
872 | 396 #define FRAME_X_TOTALLY_VISIBLE_P(f) (FRAME_X_DATA (f)->totally_visible_p) |
397 #define FRAME_X_TOP_LEVEL_FRAME_P(f) (FRAME_X_DATA (f)->top_level_frame_p) | |
398 | |
399 #ifdef EXTERNAL_WIDGET | |
400 #define FRAME_X_EXTERNAL_WINDOW_P(f) (FRAME_X_DATA (f)->external_window_p) | |
401 #endif | |
402 | |
403 #ifdef HAVE_XIM | |
404 #define FRAME_X_XIC_SPOT(f) (FRAME_X_DATA (f)->xic_spot) | |
405 #ifdef XIM_XLIB | |
406 #define FRAME_X_XIC(f) (FRAME_X_DATA (f)->xic) | |
407 #define FRAME_X_XIC_STYLE(f) (FRAME_X_DATA (f)->xic_style) | |
408 #endif /* XIM_XLIB */ | |
409 #endif /* HAVE_XIM */ | |
410 | |
411 extern struct console_type *x_console_type; | |
412 | |
5080
5502045ec510
The background-placement face property.
Didier Verna <didier@lrde.epita.fr>
parents:
4916
diff
changeset
|
413 void x_get_frame_text_position (struct frame *); |
5502045ec510
The background-placement face property.
Didier Verna <didier@lrde.epita.fr>
parents:
4916
diff
changeset
|
414 |
872 | 415 #endif /* HAVE_X_WINDOWS */ |
416 | |
417 #endif /* INCLUDED_console_x_impl_h_ */ |