0
|
1 /* Generic toolbar implementation.
|
|
2 Copyright (C) 1995 Board of Trustees, University of Illinois.
|
|
3 Copyright (C) 1995 Sun Microsystems, Inc.
|
|
4 Copyright (C) 1995, 1996 Ben Wing.
|
|
5 Copyright (C) 1996 Chuck Thompson.
|
|
6
|
|
7 This file is part of XEmacs.
|
|
8
|
|
9 XEmacs is free software; you can redistribute it and/or modify it
|
|
10 under the terms of the GNU General Public License as published by the
|
|
11 Free Software Foundation; either version 2, or (at your option) any
|
|
12 later version.
|
|
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
|
|
20 along with XEmacs; see the file COPYING. If not, write to
|
|
21 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
22 Boston, MA 02111-1307, USA. */
|
|
23
|
|
24 /* Synched up with: Not in FSF. */
|
|
25
|
|
26 /* Original implementation by Chuck Thompson for 19.12.
|
|
27 Default-toolbar-position and specifier-related stuff by Ben Wing. */
|
|
28
|
|
29 #include <config.h>
|
|
30 #include "lisp.h"
|
|
31
|
|
32 #include "buffer.h"
|
|
33 #include "frame.h"
|
|
34 #include "device.h"
|
|
35 #include "glyphs.h"
|
|
36 #include "redisplay.h"
|
|
37 #include "toolbar.h"
|
|
38 #include "window.h"
|
|
39
|
|
40 Lisp_Object Vtoolbar[4];
|
|
41 Lisp_Object Vtoolbar_size[4];
|
|
42 Lisp_Object Vtoolbar_visible_p[4];
|
215
|
43 Lisp_Object Vtoolbar_border_width[4];
|
0
|
44
|
|
45 Lisp_Object Vdefault_toolbar, Vdefault_toolbar_visible_p;
|
|
46 Lisp_Object Vdefault_toolbar_width, Vdefault_toolbar_height;
|
215
|
47 Lisp_Object Vdefault_toolbar_border_width;
|
0
|
48
|
|
49 Lisp_Object Vdefault_toolbar_position;
|
|
50 Lisp_Object Vtoolbar_buttons_captioned_p;
|
|
51
|
|
52 Lisp_Object Qtoolbar_buttonp;
|
|
53 Lisp_Object Q2D, Q3D, Q2d, Q3d;
|
|
54 Lisp_Object Q_size;
|
|
55 extern Lisp_Object Q_style; /* defined in menubar.c */
|
|
56
|
|
57 Lisp_Object Qinit_toolbar_from_resources;
|
|
58
|
|
59
|
|
60 static Lisp_Object
|
|
61 mark_toolbar_data (Lisp_Object obj, void (*markobj) (Lisp_Object))
|
|
62 {
|
|
63 struct toolbar_data *data = (struct toolbar_data *) XPNTR (obj);
|
|
64 ((markobj) (data->last_toolbar_buffer));
|
173
|
65 return data->toolbar_buttons;
|
0
|
66 }
|
|
67
|
|
68 DEFINE_LRECORD_IMPLEMENTATION ("toolbar-data", toolbar_data,
|
|
69 mark_toolbar_data, internal_object_printer,
|
|
70 0, 0, 0, struct toolbar_data);
|
|
71
|
|
72 static Lisp_Object
|
|
73 mark_toolbar_button (Lisp_Object obj, void (*markobj) (Lisp_Object))
|
|
74 {
|
|
75 struct toolbar_button *data = (struct toolbar_button *) XPNTR (obj);
|
|
76 ((markobj) (data->next));
|
|
77 ((markobj) (data->frame));
|
|
78 ((markobj) (data->up_glyph));
|
|
79 ((markobj) (data->down_glyph));
|
|
80 ((markobj) (data->disabled_glyph));
|
|
81 ((markobj) (data->cap_up_glyph));
|
|
82 ((markobj) (data->cap_down_glyph));
|
|
83 ((markobj) (data->cap_disabled_glyph));
|
|
84 ((markobj) (data->callback));
|
|
85 ((markobj) (data->enabled_p));
|
173
|
86 return data->help_string;
|
0
|
87 }
|
|
88
|
|
89 static void
|
|
90 print_toolbar_button (Lisp_Object obj, Lisp_Object printcharfun,
|
|
91 int escapeflag)
|
|
92 {
|
|
93 struct toolbar_button *tb = XTOOLBAR_BUTTON (obj);
|
|
94 char buf[100];
|
|
95
|
|
96 if (print_readably)
|
|
97 error ("printing unreadable object #<toolbar-button 0x%x>",
|
|
98 tb->header.uid);
|
|
99
|
|
100 sprintf (buf, "#<toolbar-button 0x%x>", tb->header.uid);
|
|
101 write_c_string (buf, printcharfun);
|
|
102 }
|
|
103
|
|
104 DEFINE_LRECORD_IMPLEMENTATION ("toolbar-button", toolbar_button,
|
|
105 mark_toolbar_button, print_toolbar_button,
|
|
106 0, 0, 0,
|
|
107 struct toolbar_button);
|
|
108
|
20
|
109 DEFUN ("toolbar-button-p", Ftoolbar_button_p, 1, 1, 0, /*
|
0
|
110 Return non-nil if OBJECT is a toolbar button.
|
20
|
111 */
|
|
112 (object))
|
0
|
113 {
|
173
|
114 return TOOLBAR_BUTTONP (object) ? Qt : Qnil;
|
0
|
115 }
|
|
116
|
|
117 /* Only query functions are provided for toolbar buttons. They are
|
|
118 generated and updated from a toolbar description list. Any
|
|
119 directly made changes would be wiped out the first time the toolbar
|
|
120 was marked as dirty and was regenerated. The exception to this is
|
|
121 set-toolbar-button-down-flag. Having this allows us to control the
|
|
122 toolbar from elisp. Since we only trigger the button callbacks on
|
|
123 up-mouse events and we reset the flag first, there shouldn't be any
|
|
124 way for this to get us in trouble (like if someone decides to
|
|
125 change the toolbar from a toolbar callback). */
|
|
126
|
20
|
127 DEFUN ("toolbar-button-callback", Ftoolbar_button_callback, 1, 1, 0, /*
|
0
|
128 Return the callback function associated with the toolbar BUTTON.
|
20
|
129 */
|
|
130 (button))
|
0
|
131 {
|
|
132 CHECK_TOOLBAR_BUTTON (button);
|
|
133
|
173
|
134 return XTOOLBAR_BUTTON (button)->callback;
|
0
|
135 }
|
|
136
|
20
|
137 DEFUN ("toolbar-button-help-string", Ftoolbar_button_help_string, 1, 1, 0, /*
|
0
|
138 Return the help string function associated with the toolbar BUTTON.
|
20
|
139 */
|
|
140 (button))
|
0
|
141 {
|
|
142 CHECK_TOOLBAR_BUTTON (button);
|
|
143
|
173
|
144 return XTOOLBAR_BUTTON (button)->help_string;
|
0
|
145 }
|
|
146
|
20
|
147 DEFUN ("toolbar-button-enabled-p", Ftoolbar_button_enabled_p, 1, 1, 0, /*
|
0
|
148 Return t if BUTTON is active.
|
20
|
149 */
|
|
150 (button))
|
0
|
151 {
|
|
152 CHECK_TOOLBAR_BUTTON (button);
|
|
153
|
173
|
154 return XTOOLBAR_BUTTON (button)->enabled ? Qt : Qnil;
|
0
|
155 }
|
|
156
|
20
|
157 DEFUN ("set-toolbar-button-down-flag", Fset_toolbar_button_down_flag, 2, 2, 0, /*
|
0
|
158 Don't touch.
|
20
|
159 */
|
|
160 (button, flag))
|
0
|
161 {
|
|
162 struct toolbar_button *tb;
|
|
163 char old_flag;
|
|
164
|
|
165 CHECK_TOOLBAR_BUTTON (button);
|
|
166 tb = XTOOLBAR_BUTTON (button);
|
|
167 old_flag = tb->down;
|
|
168
|
|
169 /* If the button is ignored, don't do anything. */
|
|
170 if (!tb->enabled)
|
|
171 return Qnil;
|
|
172
|
|
173 /* If flag is nil, unset the down flag, otherwise set it to true.
|
|
174 This also triggers an immediate redraw of the button if the flag
|
|
175 does change. */
|
|
176
|
|
177 if (NILP (flag))
|
|
178 tb->down = 0;
|
|
179 else
|
|
180 tb->down = 1;
|
|
181
|
|
182 if (tb->down != old_flag)
|
|
183 {
|
|
184 struct frame *f = XFRAME (tb->frame);
|
|
185 struct device *d;
|
|
186
|
|
187 if (DEVICEP (f->device))
|
|
188 {
|
|
189 d = XDEVICE (f->device);
|
|
190
|
|
191 if (DEVICE_LIVE_P (XDEVICE (f->device)))
|
|
192 {
|
|
193 tb->dirty = 1;
|
|
194 MAYBE_DEVMETH (d, output_toolbar_button, (f, button));
|
|
195 }
|
|
196 }
|
|
197 }
|
|
198
|
|
199 return Qnil;
|
173
|
200 }
|
0
|
201
|
|
202 Lisp_Object
|
|
203 get_toolbar_button_glyph (struct window *w, struct toolbar_button *tb)
|
|
204 {
|
|
205 Lisp_Object glyph = Qnil;
|
|
206
|
|
207 /* The selected glyph logic:
|
|
208
|
|
209 UP: up
|
|
210 DOWN: down -> up
|
|
211 DISABLED: disabled -> up
|
|
212 CAP-UP: cap-up -> up
|
|
213 CAP-DOWN: cap-down -> cap-up -> down -> up
|
|
214 CAP-DISABLED: cap-disabled -> cap-up -> disabled -> up
|
|
215 */
|
|
216
|
|
217 if (!NILP (w->toolbar_buttons_captioned_p))
|
|
218 {
|
|
219 if (tb->enabled && tb->down)
|
|
220 glyph = tb->cap_down_glyph;
|
|
221 else if (!tb->enabled)
|
|
222 glyph = tb->cap_disabled_glyph;
|
173
|
223
|
0
|
224 if (NILP (glyph))
|
|
225 glyph = tb->cap_up_glyph;
|
|
226 }
|
|
227
|
|
228 if (NILP (glyph))
|
|
229 {
|
|
230 if (tb->enabled && tb->down)
|
|
231 glyph = tb->down_glyph;
|
|
232 else if (!tb->enabled)
|
|
233 glyph = tb->disabled_glyph;
|
|
234 }
|
|
235
|
|
236 /* The non-captioned up button is the ultimate fallback. It is
|
|
237 the only one we guarantee exists. */
|
|
238 if (NILP (glyph))
|
|
239 glyph = tb->up_glyph;
|
|
240
|
|
241 return glyph;
|
|
242 }
|
|
243
|
|
244
|
|
245 static enum toolbar_pos
|
|
246 decode_toolbar_position (Lisp_Object position)
|
|
247 {
|
2
|
248 if (EQ (position, Qtop)) return TOP_TOOLBAR;
|
|
249 if (EQ (position, Qbottom)) return BOTTOM_TOOLBAR;
|
|
250 if (EQ (position, Qleft)) return LEFT_TOOLBAR;
|
|
251 if (EQ (position, Qright)) return RIGHT_TOOLBAR;
|
0
|
252 signal_simple_error ("Invalid toolbar position", position);
|
173
|
253
|
2
|
254 return TOP_TOOLBAR; /* not reached */
|
0
|
255 }
|
|
256
|
20
|
257 DEFUN ("set-default-toolbar-position", Fset_default_toolbar_position, 1, 1, 0, /*
|
0
|
258 Set the position that the `default-toolbar' will be displayed at.
|
|
259 Valid positions are 'top, 'bottom, 'left and 'right.
|
|
260 See `default-toolbar-position'.
|
20
|
261 */
|
|
262 (position))
|
0
|
263 {
|
|
264 enum toolbar_pos cur = decode_toolbar_position (Vdefault_toolbar_position);
|
|
265 enum toolbar_pos new = decode_toolbar_position (position);
|
|
266
|
|
267 if (cur != new)
|
|
268 {
|
|
269 /* The following calls will automatically cause the dirty
|
|
270 flags to be set; we delay frame size changes to avoid
|
|
271 lots of frame flickering. */
|
|
272 hold_frame_size_changes ();
|
|
273 set_specifier_fallback (Vtoolbar[cur], list1 (Fcons (Qnil, Qnil)));
|
|
274 set_specifier_fallback (Vtoolbar[new], Vdefault_toolbar);
|
|
275 set_specifier_fallback (Vtoolbar_size[cur], list1 (Fcons (Qnil, Qzero)));
|
|
276 set_specifier_fallback (Vtoolbar_size[new],
|
|
277 new == TOP_TOOLBAR || new == BOTTOM_TOOLBAR
|
|
278 ? Vdefault_toolbar_height
|
|
279 : Vdefault_toolbar_width);
|
215
|
280 set_specifier_fallback (Vtoolbar_border_width[cur],
|
|
281 list1 (Fcons (Qnil, Qzero)));
|
|
282 set_specifier_fallback (Vtoolbar_border_width[new],
|
|
283 Vdefault_toolbar_border_width);
|
0
|
284 set_specifier_fallback (Vtoolbar_visible_p[cur],
|
|
285 list1 (Fcons (Qnil, Qt)));
|
|
286 set_specifier_fallback (Vtoolbar_visible_p[new],
|
|
287 Vdefault_toolbar_visible_p);
|
|
288 Vdefault_toolbar_position = position;
|
|
289 unhold_frame_size_changes ();
|
|
290 }
|
|
291
|
|
292 return position;
|
|
293 }
|
|
294
|
20
|
295 DEFUN ("default-toolbar-position", Fdefault_toolbar_position, 0, 0, 0, /*
|
0
|
296 Return the position that the `default-toolbar' will be displayed at.
|
|
297 The `default-toolbar' will only be displayed here if the corresponding
|
|
298 position-specific toolbar specifier does not provide a value.
|
20
|
299 */
|
|
300 ())
|
0
|
301 {
|
|
302 return Vdefault_toolbar_position;
|
|
303 }
|
|
304
|
|
305
|
|
306 static Lisp_Object
|
|
307 update_toolbar_button (struct frame *f, struct toolbar_button *tb,
|
|
308 Lisp_Object desc, int pushright)
|
|
309 {
|
|
310 Lisp_Object *elt, glyphs, retval, buffer;
|
|
311 struct gcpro gcpro1, gcpro2;
|
|
312
|
173
|
313 elt = XVECTOR_DATA (desc);
|
0
|
314 buffer = XWINDOW (FRAME_LAST_NONMINIBUF_WINDOW (f))->buffer;
|
|
315
|
|
316 if (!tb)
|
|
317 {
|
185
|
318 tb = alloc_lcrecord_type (struct toolbar_button, lrecord_toolbar_button);
|
0
|
319 tb->next = Qnil;
|
|
320 XSETFRAME (tb->frame, f);
|
|
321 tb->up_glyph = Qnil;
|
|
322 tb->down_glyph = Qnil;
|
|
323 tb->disabled_glyph = Qnil;
|
|
324 tb->cap_up_glyph = Qnil;
|
|
325 tb->cap_down_glyph = Qnil;
|
|
326 tb->cap_disabled_glyph = Qnil;
|
|
327 tb->callback = Qnil;
|
|
328 tb->enabled_p = Qnil;
|
|
329 tb->help_string = Qnil;
|
|
330
|
|
331 tb->enabled = 0;
|
|
332 tb->down = 0;
|
|
333 tb->pushright = pushright;
|
|
334 tb->blank = 0;
|
|
335 tb->x = tb->y = tb->width = tb->height = -1;
|
|
336 tb->dirty = 1;
|
|
337 }
|
|
338 XSETTOOLBAR_BUTTON (retval, tb);
|
|
339
|
|
340 /* Let's make sure nothing gets mucked up by the potential call to
|
|
341 eval farther down. */
|
|
342 GCPRO2 (retval, desc);
|
|
343
|
|
344 glyphs = (CONSP (elt[0]) ? elt[0] : symbol_value_in_buffer (elt[0], buffer));
|
|
345
|
|
346 /* If this is true we have a blank, otherwise it is an actual
|
|
347 button. */
|
|
348 if (KEYWORDP (glyphs))
|
|
349 {
|
|
350 int pos;
|
|
351 int style_seen = 0;
|
|
352 int size_seen = 0;
|
173
|
353 int len = XVECTOR_LENGTH (desc);
|
0
|
354
|
|
355 if (!tb->blank)
|
|
356 {
|
|
357 tb->blank = 1;
|
|
358 tb->dirty = 1;
|
|
359 }
|
|
360
|
173
|
361 for (pos = 0; pos < len; pos += 2)
|
0
|
362 {
|
|
363 Lisp_Object key = elt[pos];
|
|
364 Lisp_Object val = elt[pos + 1];
|
|
365
|
|
366 if (EQ (key, Q_style))
|
|
367 {
|
|
368 style_seen = 1;
|
|
369
|
|
370 if (EQ (val, Q2D) || EQ (val, Q2d))
|
|
371 {
|
|
372 if (!EQ (Qnil, tb->up_glyph) || !EQ (Qt, tb->disabled_glyph))
|
|
373 {
|
|
374 tb->up_glyph = Qnil;
|
|
375 tb->disabled_glyph = Qt;
|
|
376 tb->dirty = 1;
|
|
377 }
|
|
378 }
|
|
379 else if (EQ (val, Q3D) || (EQ (val, Q3d)))
|
|
380 {
|
|
381 if (!EQ (Qt, tb->up_glyph) || !EQ (Qnil, tb->disabled_glyph))
|
|
382 {
|
|
383 tb->up_glyph = Qt;
|
|
384 tb->disabled_glyph = Qnil;
|
|
385 tb->dirty = 1;
|
|
386 }
|
|
387 }
|
|
388 }
|
|
389 else if (EQ (key, Q_size))
|
|
390 {
|
|
391 size_seen = 1;
|
|
392
|
|
393 if (!EQ (val, tb->down_glyph))
|
|
394 {
|
|
395 tb->down_glyph = val;
|
|
396 tb->dirty = 1;
|
|
397 }
|
|
398 }
|
|
399 }
|
|
400
|
|
401 if (!style_seen)
|
|
402 {
|
|
403 /* The default style is 3D. */
|
|
404 if (!EQ (Qt, tb->up_glyph) || !EQ (Qnil, tb->disabled_glyph))
|
|
405 {
|
|
406 tb->up_glyph = Qt;
|
|
407 tb->disabled_glyph = Qnil;
|
|
408 tb->dirty = 1;
|
|
409 }
|
|
410 }
|
|
411
|
|
412 if (!size_seen)
|
|
413 {
|
|
414 /* The default width is set to nil. The device specific
|
|
415 code will fill it in at its discretion. */
|
|
416 if (!NILP (tb->down_glyph))
|
|
417 {
|
|
418 tb->down_glyph = Qnil;
|
|
419 tb->dirty = 1;
|
|
420 }
|
|
421 }
|
|
422
|
|
423 /* The rest of these fields are not used by blanks. We make
|
|
424 sure they are nulled out in case this button object formerly
|
|
425 represented a real button. */
|
|
426 if (!NILP (tb->callback)
|
|
427 || !NILP (tb->enabled_p)
|
|
428 || !NILP (tb->help_string))
|
|
429 {
|
|
430 tb->cap_up_glyph = Qnil;
|
|
431 tb->cap_down_glyph = Qnil;
|
|
432 tb->cap_disabled_glyph = Qnil;
|
|
433 tb->callback = Qnil;
|
|
434 tb->enabled_p = Qnil;
|
|
435 tb->help_string = Qnil;
|
|
436 tb->dirty = 1;
|
|
437 }
|
|
438 }
|
|
439 else
|
|
440 {
|
|
441 if (tb->blank)
|
|
442 {
|
|
443 tb->blank = 0;
|
|
444 tb->dirty = 1;
|
|
445 }
|
|
446
|
|
447 /* We know that we at least have an up_glyph. Well, no, we
|
|
448 don't. The user may have changed the button glyph on us. */
|
|
449 if (!NILP (glyphs) && CONSP (glyphs))
|
|
450 {
|
|
451 if (!EQ (XCAR (glyphs), tb->up_glyph))
|
|
452 {
|
|
453 tb->up_glyph = XCAR (glyphs);
|
|
454 tb->dirty = 1;
|
|
455 }
|
|
456 glyphs = XCDR (glyphs);
|
|
457 }
|
|
458 else
|
|
459 tb->up_glyph = Qnil;
|
|
460
|
|
461 /* We might have a down_glyph. */
|
|
462 if (!NILP (glyphs) && CONSP (glyphs))
|
|
463 {
|
|
464 if (!EQ (XCAR (glyphs), tb->down_glyph))
|
|
465 {
|
|
466 tb->down_glyph = XCAR (glyphs);
|
|
467 tb->dirty = 1;
|
|
468 }
|
|
469 glyphs = XCDR (glyphs);
|
|
470 }
|
|
471 else
|
|
472 tb->down_glyph = Qnil;
|
|
473
|
|
474 /* We might have a disabled_glyph. */
|
|
475 if (!NILP (glyphs) && CONSP (glyphs))
|
|
476 {
|
|
477 if (!EQ (XCAR (glyphs), tb->disabled_glyph))
|
|
478 {
|
|
479 tb->disabled_glyph = XCAR (glyphs);
|
|
480 tb->dirty = 1;
|
|
481 }
|
|
482 glyphs = XCDR (glyphs);
|
|
483 }
|
|
484 else
|
|
485 tb->disabled_glyph = Qnil;
|
|
486
|
|
487 /* We might have a cap_up_glyph. */
|
|
488 if (!NILP (glyphs) && CONSP (glyphs))
|
|
489 {
|
|
490 if (!EQ (XCAR (glyphs), tb->cap_up_glyph))
|
|
491 {
|
|
492 tb->cap_up_glyph = XCAR (glyphs);
|
|
493 tb->dirty = 1;
|
|
494 }
|
|
495 glyphs = XCDR (glyphs);
|
|
496 }
|
|
497 else
|
|
498 tb->cap_up_glyph = Qnil;
|
|
499
|
|
500 /* We might have a cap_down_glyph. */
|
|
501 if (!NILP (glyphs) && CONSP (glyphs))
|
|
502 {
|
|
503 if (!EQ (XCAR (glyphs), tb->cap_down_glyph))
|
|
504 {
|
|
505 tb->cap_down_glyph = XCAR (glyphs);
|
|
506 tb->dirty = 1;
|
|
507 }
|
|
508 glyphs = XCDR (glyphs);
|
|
509 }
|
|
510 else
|
|
511 tb->cap_down_glyph = Qnil;
|
|
512
|
|
513 /* We might have a cap_disabled_glyph. */
|
|
514 if (!NILP (glyphs) && CONSP (glyphs))
|
|
515 {
|
|
516 if (!EQ (XCAR (glyphs), tb->cap_disabled_glyph))
|
|
517 {
|
|
518 tb->cap_disabled_glyph = XCAR (glyphs);
|
|
519 tb->dirty = 1;
|
|
520 }
|
|
521 }
|
|
522 else
|
|
523 tb->cap_disabled_glyph = Qnil;
|
|
524
|
|
525 /* Update the callback. */
|
|
526 if (!EQ (tb->callback, elt[1]))
|
|
527 {
|
|
528 tb->callback = elt[1];
|
|
529 /* This does not have an impact on the display properties of the
|
|
530 button so we do not mark it as dirty if it has changed. */
|
|
531 }
|
|
532
|
|
533 /* Update the enabled field. */
|
|
534 if (!EQ (tb->enabled_p, elt[2]))
|
|
535 {
|
|
536 tb->enabled_p = elt[2];
|
|
537 tb->dirty = 1;
|
|
538 }
|
|
539
|
|
540 /* We always do the following because if the enabled status is
|
|
541 determined by a function its decision may change without us being
|
|
542 able to detect it. */
|
|
543 {
|
|
544 int old_enabled = tb->enabled;
|
|
545
|
|
546 if (NILP (tb->enabled_p))
|
|
547 tb->enabled = 0;
|
|
548 else if (EQ (tb->enabled_p, Qt))
|
|
549 tb->enabled = 1;
|
|
550 else
|
|
551 {
|
|
552 if (NILP (tb->enabled_p) || EQ (tb->enabled_p, Qt))
|
|
553 /* short-circuit the common case for speed */
|
|
554 tb->enabled = !NILP (tb->enabled_p);
|
|
555 else
|
|
556 {
|
|
557 Lisp_Object result =
|
|
558 eval_in_buffer_trapping_errors
|
|
559 ("Error in toolbar enabled-p form",
|
|
560 XBUFFER
|
|
561 (WINDOW_BUFFER
|
|
562 (XWINDOW (FRAME_LAST_NONMINIBUF_WINDOW (f)))),
|
|
563 tb->enabled_p);
|
|
564 if (UNBOUNDP (result))
|
|
565 /* #### if there was an error in the enabled-p
|
|
566 form, should we pretend like it's enabled
|
|
567 or disabled? */
|
|
568 tb->enabled = 0;
|
|
569 else
|
|
570 tb->enabled = !NILP (result);
|
|
571 }
|
|
572 }
|
|
573
|
|
574 if (old_enabled != tb->enabled)
|
|
575 tb->dirty = 1;
|
|
576 }
|
|
577
|
|
578 /* Update the help echo string. */
|
|
579 if (!EQ (tb->help_string, elt[3]))
|
|
580 {
|
|
581 tb->help_string = elt[3];
|
|
582 /* This does not have an impact on the display properties of the
|
|
583 button so we do not mark it as dirty if it has changed. */
|
|
584 }
|
|
585 }
|
|
586
|
|
587 /* If this flag changes, the position is changing for sure unless
|
|
588 some very unlikely geometry occurs. */
|
|
589 if (tb->pushright != pushright)
|
|
590 {
|
|
591 tb->pushright = pushright;
|
|
592 tb->dirty = 1;
|
|
593 }
|
|
594
|
|
595 /* The position and size fields are only manipulated in the
|
|
596 device-dependent code. */
|
|
597 UNGCPRO;
|
|
598 return retval;
|
|
599 }
|
|
600
|
215
|
601 void
|
|
602 mark_frame_toolbar_buttons_dirty (struct frame *f, enum toolbar_pos pos)
|
|
603 {
|
|
604 Lisp_Object button = FRAME_TOOLBAR_DATA (f, pos)->toolbar_buttons;
|
|
605
|
|
606 while (!NILP (button))
|
|
607 {
|
|
608 struct toolbar_button *tb = XTOOLBAR_BUTTON (button);
|
|
609 tb->dirty = 1;
|
|
610 button = tb->next;
|
|
611 }
|
|
612 return;
|
|
613 }
|
|
614
|
0
|
615 static Lisp_Object
|
|
616 compute_frame_toolbar_buttons (struct frame *f, enum toolbar_pos pos,
|
|
617 Lisp_Object toolbar)
|
|
618 {
|
|
619 Lisp_Object buttons, prev_button, first_button;
|
|
620 Lisp_Object orig_toolbar = toolbar;
|
|
621 int pushright_seen = 0;
|
|
622 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
|
|
623
|
|
624 first_button = FRAME_TOOLBAR_DATA (f, pos)->toolbar_buttons;
|
|
625 buttons = prev_button = first_button;
|
|
626
|
|
627 /* Yes, we're being paranoid. */
|
|
628 GCPRO5 (toolbar, buttons, prev_button, first_button, orig_toolbar);
|
|
629
|
|
630 if (NILP (toolbar))
|
|
631 {
|
|
632 /* The output mechanisms will take care of clearing the former
|
|
633 toolbar. */
|
|
634 UNGCPRO;
|
|
635 return Qnil;
|
|
636 }
|
|
637
|
|
638 if (!CONSP (toolbar))
|
|
639 signal_simple_error ("toolbar description must be a list", toolbar);
|
|
640
|
|
641 /* First synchronize any existing buttons. */
|
|
642 while (!NILP (toolbar) && !NILP (buttons))
|
|
643 {
|
|
644 struct toolbar_button *tb;
|
|
645
|
|
646 if (NILP (XCAR (toolbar)))
|
|
647 {
|
|
648 if (pushright_seen)
|
|
649 signal_simple_error
|
|
650 ("more than one partition (nil) in toolbar description",
|
|
651 orig_toolbar);
|
|
652 else
|
|
653 pushright_seen = 1;
|
|
654 }
|
|
655 else
|
|
656 {
|
|
657 tb = XTOOLBAR_BUTTON (buttons);
|
|
658 update_toolbar_button (f, tb, XCAR (toolbar), pushright_seen);
|
|
659 prev_button = buttons;
|
|
660 buttons = tb->next;
|
|
661 }
|
|
662
|
|
663 toolbar = XCDR (toolbar);
|
|
664 }
|
|
665
|
|
666 /* If we hit the end of the toolbar, then clean up any excess
|
|
667 buttons and return. */
|
|
668 if (NILP (toolbar))
|
|
669 {
|
|
670 if (!NILP (buttons))
|
|
671 {
|
2
|
672 /* If this is the case the only thing we saw was a
|
0
|
673 pushright marker. */
|
|
674 if (EQ (buttons, first_button))
|
|
675 {
|
|
676 UNGCPRO;
|
|
677 return Qnil;
|
|
678 }
|
|
679 else
|
|
680 XTOOLBAR_BUTTON (prev_button)->next = Qnil;
|
|
681 }
|
|
682 UNGCPRO;
|
|
683 return first_button;
|
|
684 }
|
|
685
|
|
686 /* At this point there are more buttons on the toolbar than we
|
|
687 actually have in existence. */
|
|
688 while (!NILP (toolbar))
|
|
689 {
|
|
690 Lisp_Object new_button;
|
|
691
|
|
692 if (NILP (XCAR (toolbar)))
|
|
693 {
|
|
694 if (pushright_seen)
|
|
695 signal_simple_error
|
|
696 ("more than one partition (nil) in toolbar description",
|
|
697 orig_toolbar);
|
|
698 else
|
|
699 pushright_seen = 1;
|
|
700 }
|
|
701 else
|
|
702 {
|
|
703 new_button = update_toolbar_button (f, NULL, XCAR (toolbar),
|
|
704 pushright_seen);
|
|
705
|
|
706 if (NILP (first_button))
|
|
707 {
|
|
708 first_button = prev_button = new_button;
|
|
709 }
|
|
710 else
|
|
711 {
|
|
712 XTOOLBAR_BUTTON (prev_button)->next = new_button;
|
|
713 prev_button = new_button;
|
|
714 }
|
|
715 }
|
|
716
|
|
717 toolbar = XCDR (toolbar);
|
|
718 }
|
|
719
|
|
720 UNGCPRO;
|
|
721 return first_button;
|
|
722 }
|
|
723
|
|
724 static int
|
|
725 set_frame_toolbar (struct frame *f, enum toolbar_pos pos, int first_time_p)
|
|
726 {
|
|
727 Lisp_Object toolbar, buttons;
|
|
728 struct window *w = XWINDOW (FRAME_LAST_NONMINIBUF_WINDOW (f));
|
|
729 Lisp_Object buffer = w->buffer;
|
|
730 int visible = FRAME_THEORETICAL_TOOLBAR_SIZE (f, pos);
|
|
731
|
|
732 toolbar = w->toolbar[pos];
|
|
733
|
|
734 if (NILP (f->toolbar_data[pos]))
|
|
735 {
|
185
|
736 struct toolbar_data *td = alloc_lcrecord_type (struct toolbar_data,
|
|
737 lrecord_toolbar_data);
|
0
|
738
|
|
739 td->last_toolbar_buffer = Qnil;
|
|
740 td->toolbar_buttons = Qnil;
|
|
741 XSETTOOLBAR_DATA (f->toolbar_data[pos], td);
|
|
742 }
|
|
743
|
185
|
744 buttons = visible ? compute_frame_toolbar_buttons (f, pos, toolbar) : Qnil;
|
0
|
745
|
|
746 FRAME_TOOLBAR_DATA (f, pos)->last_toolbar_buffer = buffer;
|
|
747 FRAME_TOOLBAR_DATA (f, pos)->toolbar_buttons = buttons;
|
|
748
|
173
|
749 return visible;
|
0
|
750 }
|
|
751
|
|
752 #define COMPUTE_TOOLBAR_DATA(position) \
|
|
753 do \
|
|
754 { \
|
|
755 local_toolbar_changed = \
|
|
756 (f->toolbar_changed \
|
|
757 || NILP (f->toolbar_data[position]) \
|
|
758 || (!EQ (FRAME_TOOLBAR_DATA (f, position)->last_toolbar_buffer, \
|
|
759 XWINDOW (FRAME_LAST_NONMINIBUF_WINDOW (f))->buffer))); \
|
|
760 \
|
|
761 toolbar_was_visible = \
|
|
762 (!NILP (f->toolbar_data[position]) \
|
|
763 && !NILP (FRAME_TOOLBAR_DATA (f, position)->toolbar_buttons)); \
|
|
764 toolbar_will_be_visible = toolbar_was_visible; \
|
|
765 \
|
|
766 if (local_toolbar_changed) \
|
|
767 toolbar_will_be_visible = \
|
|
768 set_frame_toolbar (f, position, first_time_p); \
|
|
769 \
|
|
770 toolbar_visibility_changed = \
|
|
771 (toolbar_was_visible != toolbar_will_be_visible); \
|
|
772 \
|
|
773 if (toolbar_visibility_changed) \
|
|
774 frame_changed_size = 1; \
|
|
775 } while (0)
|
|
776
|
|
777 static void
|
|
778 compute_frame_toolbars_data (struct frame *f, int first_time_p)
|
|
779 {
|
|
780 int local_toolbar_changed;
|
|
781 int toolbar_was_visible, toolbar_will_be_visible;
|
|
782 int toolbar_visibility_changed;
|
|
783 int frame_changed_size = 0;
|
|
784
|
|
785 COMPUTE_TOOLBAR_DATA (TOP_TOOLBAR);
|
|
786 COMPUTE_TOOLBAR_DATA (BOTTOM_TOOLBAR);
|
|
787 COMPUTE_TOOLBAR_DATA (LEFT_TOOLBAR);
|
|
788 COMPUTE_TOOLBAR_DATA (RIGHT_TOOLBAR);
|
|
789
|
|
790 /* The frame itself doesn't actually change size, but the usable
|
|
791 text area does. All we have to do is call change_frame_size with
|
|
792 the current height and width parameters and it will readjust for
|
|
793 all changes in the toolbars. */
|
|
794 if (frame_changed_size && !first_time_p)
|
|
795 change_frame_size (f, FRAME_HEIGHT (f), FRAME_WIDTH (f), 0);
|
|
796 }
|
|
797 #undef COMPUTE_TOOLBAR_DATA
|
|
798
|
|
799 void
|
|
800 update_frame_toolbars (struct frame *f)
|
|
801 {
|
|
802 struct device *d = XDEVICE (f->device);
|
|
803 Lisp_Object buffer = XWINDOW (FRAME_LAST_NONMINIBUF_WINDOW (f))->buffer;
|
|
804
|
|
805 /* If the buffer of the selected window is not equal to the
|
|
806 last_toolbar_buffer value for any of the toolbars, then the
|
|
807 toolbars need to be recomputed. */
|
|
808 if ((HAS_DEVMETH_P (d, output_frame_toolbars))
|
|
809 && (f->toolbar_changed
|
|
810 || !EQ (FRAME_TOOLBAR_BUFFER (f, TOP_TOOLBAR), buffer)
|
|
811 || !EQ (FRAME_TOOLBAR_BUFFER (f, BOTTOM_TOOLBAR), buffer)
|
|
812 || !EQ (FRAME_TOOLBAR_BUFFER (f, LEFT_TOOLBAR), buffer)
|
|
813 || !EQ (FRAME_TOOLBAR_BUFFER (f, RIGHT_TOOLBAR), buffer)))
|
|
814 {
|
|
815 /* Removed the check for the minibuffer here. We handle this
|
|
816 more correctly now by consistently using
|
|
817 FRAME_LAST_NONMINIBUF_WINDOW instead of FRAME_SELECTED_WINDOW
|
|
818 throughout the toolbar code. */
|
|
819 compute_frame_toolbars_data (f, 0);
|
|
820
|
|
821 DEVMETH (d, output_frame_toolbars, (f));
|
|
822 }
|
|
823
|
|
824 f->toolbar_changed = 0;
|
|
825 }
|
|
826
|
|
827 void
|
|
828 init_frame_toolbars (struct frame *f)
|
|
829 {
|
|
830 struct device *d = XDEVICE (f->device);
|
|
831
|
|
832 /* If there isn't any output routine, then this device type doesn't
|
|
833 support toolbars. */
|
|
834 if (HAS_DEVMETH_P (d, output_frame_toolbars))
|
|
835 {
|
|
836 Lisp_Object frame = Qnil;
|
|
837
|
|
838 compute_frame_toolbars_data (f, 1);
|
|
839 XSETFRAME (frame, f);
|
|
840 call_critical_lisp_code (XDEVICE (FRAME_DEVICE (f)),
|
|
841 Qinit_toolbar_from_resources,
|
|
842 frame);
|
|
843 MAYBE_DEVMETH (d, initialize_frame_toolbars, (f));
|
|
844 }
|
|
845 }
|
|
846
|
|
847 void
|
|
848 init_device_toolbars (struct device *d)
|
|
849 {
|
|
850 Lisp_Object device = Qnil;
|
|
851
|
|
852 XSETDEVICE (device, d);
|
|
853 if (HAS_DEVMETH_P (d, output_frame_toolbars))
|
|
854 call_critical_lisp_code (d,
|
|
855 Qinit_toolbar_from_resources,
|
|
856 device);
|
|
857 }
|
|
858
|
|
859 void
|
|
860 init_global_toolbars (struct device *d)
|
|
861 {
|
|
862 if (HAS_DEVMETH_P (d, output_frame_toolbars))
|
|
863 call_critical_lisp_code (d,
|
|
864 Qinit_toolbar_from_resources,
|
|
865 Qglobal);
|
|
866 }
|
|
867
|
|
868 void
|
|
869 free_frame_toolbars (struct frame *f)
|
|
870 {
|
|
871 /* If we had directly allocated any memory for the toolbars instead
|
|
872 of using all Lisp_Objects this is where we would now free it. */
|
|
873
|
|
874 MAYBE_FRAMEMETH (f, free_frame_toolbars, (f));
|
|
875 }
|
|
876
|
|
877 void
|
|
878 get_toolbar_coords (struct frame *f, enum toolbar_pos pos, int *x, int *y,
|
|
879 int *width, int *height, int *vert, int for_layout)
|
|
880 {
|
|
881 int visible_top_toolbar_height, visible_bottom_toolbar_height;
|
|
882 int adjust = (for_layout ? 1 : 0);
|
|
883
|
|
884 /* The top and bottom toolbars take precedence over the left and
|
|
885 right. */
|
|
886 visible_top_toolbar_height = (FRAME_REAL_TOP_TOOLBAR_VISIBLE (f)
|
215
|
887 ? FRAME_REAL_TOP_TOOLBAR_HEIGHT (f) +
|
|
888 2 * FRAME_REAL_TOP_TOOLBAR_BORDER_WIDTH (f)
|
0
|
889 : 0);
|
|
890 visible_bottom_toolbar_height = (FRAME_REAL_BOTTOM_TOOLBAR_VISIBLE (f)
|
215
|
891 ? FRAME_REAL_BOTTOM_TOOLBAR_HEIGHT (f) +
|
|
892 2 *
|
|
893 FRAME_REAL_BOTTOM_TOOLBAR_BORDER_WIDTH (f)
|
0
|
894 : 0);
|
|
895
|
|
896 /* We adjust the width and height by one to give us a narrow border
|
|
897 at the outside edges. However, when we are simply determining
|
|
898 toolbar location we don't want to do that. */
|
|
899
|
|
900 switch (pos)
|
|
901 {
|
|
902 case TOP_TOOLBAR:
|
|
903 *x = 1;
|
|
904 *y = 0; /* #### should be 1 if no menubar */
|
|
905 *width = FRAME_PIXWIDTH (f) - 2;
|
215
|
906 *height = FRAME_REAL_TOP_TOOLBAR_HEIGHT (f) +
|
|
907 2 * FRAME_REAL_TOP_TOOLBAR_BORDER_WIDTH (f) - adjust;
|
0
|
908 *vert = 0;
|
|
909 break;
|
|
910 case BOTTOM_TOOLBAR:
|
|
911 *x = 1;
|
215
|
912 *y = FRAME_PIXHEIGHT (f) - FRAME_REAL_BOTTOM_TOOLBAR_HEIGHT (f) -
|
|
913 2 * FRAME_REAL_BOTTOM_TOOLBAR_BORDER_WIDTH (f);
|
0
|
914 *width = FRAME_PIXWIDTH (f) - 2;
|
215
|
915 *height = FRAME_REAL_BOTTOM_TOOLBAR_HEIGHT (f) +
|
|
916 2 * FRAME_REAL_BOTTOM_TOOLBAR_BORDER_WIDTH (f) - adjust;
|
0
|
917 *vert = 0;
|
|
918 break;
|
|
919 case LEFT_TOOLBAR:
|
|
920 *x = 1;
|
|
921 *y = visible_top_toolbar_height;
|
215
|
922 *width = FRAME_REAL_LEFT_TOOLBAR_WIDTH (f) +
|
|
923 2 * FRAME_REAL_LEFT_TOOLBAR_BORDER_WIDTH (f) - adjust;
|
0
|
924 *height = (FRAME_PIXHEIGHT (f) - visible_top_toolbar_height -
|
|
925 visible_bottom_toolbar_height - 1);
|
|
926 *vert = 1;
|
|
927 break;
|
|
928 case RIGHT_TOOLBAR:
|
215
|
929 *x = FRAME_PIXWIDTH (f) - FRAME_REAL_RIGHT_TOOLBAR_WIDTH (f) -
|
|
930 2 * FRAME_REAL_RIGHT_TOOLBAR_BORDER_WIDTH (f);
|
0
|
931 *y = visible_top_toolbar_height;
|
215
|
932 *width = FRAME_REAL_RIGHT_TOOLBAR_WIDTH (f) +
|
|
933 2 * FRAME_REAL_RIGHT_TOOLBAR_BORDER_WIDTH (f) - adjust;
|
0
|
934 *height = (FRAME_PIXHEIGHT (f) - visible_top_toolbar_height -
|
|
935 visible_bottom_toolbar_height);
|
|
936 *vert = 1;
|
|
937 break;
|
|
938 default:
|
|
939 abort ();
|
|
940 }
|
|
941 }
|
|
942
|
|
943 #define CHECK_TOOLBAR(pos) \
|
|
944 do \
|
|
945 { \
|
|
946 get_toolbar_coords (f, pos, &x, &y, &width, &height, &vert, 0); \
|
|
947 if ((x_coord >= x) && (x_coord < (x + width))) \
|
|
948 { \
|
|
949 if ((y_coord >= y) && (y_coord < (y + height))) \
|
173
|
950 return FRAME_TOOLBAR_DATA (f, pos)->toolbar_buttons; \
|
0
|
951 } \
|
|
952 } while (0)
|
|
953
|
|
954 static Lisp_Object
|
|
955 toolbar_buttons_at_pixpos (struct frame *f, int x_coord, int y_coord)
|
|
956 {
|
|
957 int x, y, width, height, vert;
|
|
958
|
|
959 if (FRAME_REAL_TOP_TOOLBAR_VISIBLE (f))
|
|
960 CHECK_TOOLBAR (TOP_TOOLBAR);
|
|
961 if (FRAME_REAL_BOTTOM_TOOLBAR_VISIBLE (f))
|
|
962 CHECK_TOOLBAR (BOTTOM_TOOLBAR);
|
|
963 if (FRAME_REAL_LEFT_TOOLBAR_VISIBLE (f))
|
|
964 CHECK_TOOLBAR (LEFT_TOOLBAR);
|
|
965 if (FRAME_REAL_RIGHT_TOOLBAR_VISIBLE (f))
|
|
966 CHECK_TOOLBAR (RIGHT_TOOLBAR);
|
|
967
|
|
968 return Qnil;
|
|
969 }
|
|
970 #undef CHECK_TOOLBAR
|
|
971
|
|
972 /* The device dependent code actually does the work of positioning the
|
|
973 buttons, but we are free to access that information at this
|
|
974 level. */
|
|
975 Lisp_Object
|
|
976 toolbar_button_at_pixpos (struct frame *f, int x_coord, int y_coord)
|
|
977 {
|
|
978 Lisp_Object buttons = toolbar_buttons_at_pixpos (f, x_coord, y_coord);
|
|
979
|
|
980 if (NILP (buttons))
|
|
981 return Qnil;
|
|
982
|
|
983 while (!NILP (buttons))
|
|
984 {
|
|
985 struct toolbar_button *tb = XTOOLBAR_BUTTON (buttons);
|
|
986
|
|
987 if ((x_coord >= tb->x) && (x_coord < (tb->x + tb->width)))
|
|
988 {
|
|
989 if ((y_coord >= tb->y) && (y_coord < (tb->y + tb->height)))
|
|
990 {
|
|
991 /* If we are over a blank, return nil. */
|
|
992 if (tb->blank)
|
|
993 return Qnil;
|
|
994 else
|
|
995 return buttons;
|
|
996 }
|
|
997 }
|
|
998
|
|
999 buttons = tb->next;
|
|
1000 }
|
|
1001
|
|
1002 /* We must be over a blank in the toolbar. */
|
|
1003 return Qnil;
|
|
1004 }
|
|
1005
|
|
1006
|
|
1007 /************************************************************************/
|
|
1008 /* Toolbar specifier type */
|
|
1009 /************************************************************************/
|
|
1010
|
|
1011 DEFINE_SPECIFIER_TYPE (toolbar);
|
|
1012
|
|
1013 #define CTB_ERROR(msg) \
|
|
1014 do \
|
|
1015 { \
|
|
1016 maybe_signal_simple_error (msg, button, Qtoolbar, errb); \
|
|
1017 RETURN__ Qnil; \
|
|
1018 } \
|
|
1019 while (0)
|
|
1020
|
|
1021 /* Returns Q_style if key was :style, Qt if ok otherwise, Qnil if error. */
|
|
1022 static Lisp_Object
|
|
1023 check_toolbar_button_keywords (Lisp_Object button, Lisp_Object key,
|
|
1024 Lisp_Object val, Error_behavior errb)
|
|
1025 {
|
|
1026 if (!KEYWORDP (key))
|
|
1027 {
|
|
1028 maybe_signal_simple_error_2 ("not a keyword", key, button, Qtoolbar,
|
|
1029 errb);
|
|
1030 return Qnil;
|
|
1031 }
|
|
1032
|
|
1033 if (EQ (key, Q_style))
|
|
1034 {
|
|
1035 if (!EQ (val, Q2D)
|
|
1036 && !EQ (val, Q3D)
|
|
1037 && !EQ (val, Q2d)
|
|
1038 && !EQ (val, Q3d))
|
|
1039 CTB_ERROR ("unrecognized toolbar blank style");
|
|
1040
|
|
1041 return Q_style;
|
|
1042 }
|
|
1043 else if (EQ (key, Q_size))
|
|
1044 {
|
|
1045 if (!NATNUMP (val))
|
|
1046 CTB_ERROR ("invalid toolbar blank size");
|
|
1047 }
|
|
1048 else
|
|
1049 {
|
|
1050 CTB_ERROR ("invalid toolbar blank keyword");
|
|
1051 }
|
|
1052
|
|
1053 return Qt;
|
|
1054 }
|
|
1055
|
|
1056 /* toolbar button spec is [pixmap-pair function enabled-p help]
|
|
1057 or [:style 2d-or-3d :size width-or-height] */
|
|
1058
|
20
|
1059 DEFUN ("check-toolbar-button-syntax", Fcheck_toolbar_button_syntax, 1, 2, 0, /*
|
0
|
1060 Verify the syntax of entry BUTTON in a toolbar description list.
|
|
1061 If you want to verify the syntax of a toolbar description list as a
|
|
1062 whole, use `check-valid-instantiator' with a specifier type of 'toolbar.
|
20
|
1063 */
|
|
1064 (button, no_error))
|
0
|
1065 {
|
|
1066 Lisp_Object *elt, glyphs, value;
|
|
1067 int len;
|
|
1068 Error_behavior errb = decode_error_behavior_flag (no_error);
|
|
1069
|
|
1070 if (!VECTORP (button))
|
|
1071 CTB_ERROR ("toolbar button descriptors must be vectors");
|
173
|
1072 elt = XVECTOR_DATA (button);
|
0
|
1073
|
173
|
1074 if (XVECTOR_LENGTH (button) == 2)
|
0
|
1075 {
|
|
1076 if (!EQ (Q_style, check_toolbar_button_keywords (button, elt[0],
|
|
1077 elt[1], errb)))
|
|
1078 CTB_ERROR ("must specify toolbar blank style");
|
|
1079
|
|
1080 return Qt;
|
|
1081 }
|
|
1082
|
173
|
1083 if (XVECTOR_LENGTH (button) != 4)
|
0
|
1084 CTB_ERROR ("toolbar button descriptors must be 2 or 4 long");
|
|
1085
|
|
1086 /* The first element must be a list of glyphs of length 1-6. The
|
|
1087 first entry is the pixmap for the up state, the second for the
|
|
1088 down state, the third for the disabled state, the fourth for the
|
|
1089 captioned up state, the fifth for the captioned down state and
|
|
1090 the sixth for the captioned disabled state. Only the up state is
|
|
1091 mandatory. */
|
|
1092 if (!CONSP (elt[0]))
|
|
1093 {
|
|
1094 /* We can't check the buffer-local here because we don't know
|
|
1095 which buffer to check in. #### I think this is a bad thing.
|
|
1096 See if we can't get enough information to this function so
|
|
1097 that it can check.
|
|
1098
|
|
1099 #### Wrong. We shouldn't be checking the value at all here.
|
|
1100 The user might set or change the value at any time. */
|
|
1101 value = Fsymbol_value (elt[0]);
|
|
1102
|
|
1103 if (!CONSP (value))
|
|
1104 {
|
|
1105 if (KEYWORDP (elt[0]))
|
|
1106 {
|
|
1107 int fsty = 0;
|
|
1108
|
|
1109 if (EQ (Q_style, check_toolbar_button_keywords (button, elt[0],
|
|
1110 elt[1],
|
|
1111 errb)))
|
|
1112 fsty++;
|
|
1113
|
|
1114 if (EQ (Q_style, check_toolbar_button_keywords (button, elt[2],
|
|
1115 elt[3],
|
|
1116 errb)))
|
|
1117 fsty++;
|
|
1118
|
|
1119 if (!fsty)
|
|
1120 CTB_ERROR ("must specify toolbar blank style");
|
|
1121 else if (EQ (elt[0], elt[2]))
|
|
1122 CTB_ERROR
|
|
1123 ("duplicate keywords in toolbar button blank description");
|
|
1124
|
|
1125 return Qt;
|
|
1126 }
|
|
1127 else
|
|
1128 CTB_ERROR ("first element of button must be a list (of glyphs)");
|
|
1129 }
|
|
1130 }
|
|
1131 else
|
|
1132 value = elt[0];
|
|
1133
|
|
1134 len = XINT (Flength (value));
|
|
1135 if (len < 1)
|
|
1136 CTB_ERROR ("toolbar button glyph list must have at least 1 entry");
|
173
|
1137
|
0
|
1138 if (len > 6)
|
|
1139 CTB_ERROR ("toolbar button glyph list can have at most 6 entries");
|
|
1140
|
|
1141 glyphs = value;
|
|
1142 while (!NILP (glyphs))
|
|
1143 {
|
|
1144 if (!GLYPHP (XCAR (glyphs)))
|
|
1145 {
|
|
1146 /* We allow nil for the down and disabled glyphs but not for
|
|
1147 the up glyph. */
|
|
1148 if (EQ (glyphs, value) || !NILP (XCAR (glyphs)))
|
|
1149 {
|
|
1150 CTB_ERROR
|
|
1151 ("all elements of toolbar button glyph list must be glyphs.");
|
|
1152 }
|
|
1153 }
|
|
1154 glyphs = XCDR (glyphs);
|
|
1155 }
|
|
1156
|
|
1157 /* The second element is the function to run when the button is
|
|
1158 activated. We do not do any checking on it because it is legal
|
|
1159 for the function to not be defined until after the toolbar is.
|
|
1160 It is the user's problem to get this right.
|
|
1161
|
|
1162 The third element is either a boolean indicating the enabled
|
|
1163 status or a function used to determine it. Again, it is the
|
|
1164 user's problem if this is wrong.
|
|
1165
|
|
1166 The fourth element, if not nil, must be a string which will be
|
|
1167 displayed as the help echo. */
|
|
1168
|
|
1169 /* #### This should be allowed to be a function returning a string
|
|
1170 as well as just a string. */
|
|
1171 if (!NILP (elt[3]) && !STRINGP (elt[3]))
|
|
1172 CTB_ERROR ("toolbar button help echo string must be a string");
|
|
1173
|
|
1174 return Qt;
|
|
1175 }
|
|
1176 #undef CTB_ERROR
|
|
1177
|
|
1178 static void
|
|
1179 toolbar_validate (Lisp_Object instantiator)
|
|
1180 {
|
|
1181 int pushright_seen = 0;
|
|
1182 Lisp_Object rest;
|
|
1183
|
|
1184 if (NILP (instantiator))
|
|
1185 return;
|
|
1186
|
|
1187 if (!CONSP (instantiator))
|
|
1188 signal_simple_error ("toolbar spec must be list or nil", instantiator);
|
|
1189
|
|
1190 for (rest = instantiator; !NILP (rest); rest = XCDR (rest))
|
|
1191 {
|
|
1192 if (!CONSP (rest))
|
|
1193 signal_simple_error ("bad list in toolbar spec", instantiator);
|
|
1194
|
|
1195 if (NILP (XCAR (rest)))
|
|
1196 {
|
|
1197 if (pushright_seen)
|
|
1198 error
|
|
1199 ("more than one partition (nil) in instantiator description");
|
|
1200 else
|
|
1201 pushright_seen = 1;
|
|
1202 }
|
|
1203 else
|
|
1204 Fcheck_toolbar_button_syntax (XCAR (rest), Qnil);
|
|
1205 }
|
|
1206 }
|
|
1207
|
|
1208 static void
|
|
1209 toolbar_after_change (Lisp_Object specifier, Lisp_Object locale)
|
|
1210 {
|
|
1211 /* #### This is overkill. I really need to rethink the after-change
|
|
1212 functions to make them easier to use. */
|
|
1213 MARK_TOOLBAR_CHANGED;
|
|
1214 }
|
|
1215
|
20
|
1216 DEFUN ("toolbar-specifier-p", Ftoolbar_specifier_p, 1, 1, 0, /*
|
0
|
1217 Return non-nil if OBJECT is a toolbar specifier.
|
|
1218 Toolbar specifiers are used to specify the format of a toolbar.
|
|
1219 The values of the variables `default-toolbar', `top-toolbar',
|
|
1220 `left-toolbar', `right-toolbar', and `bottom-toolbar' are always
|
|
1221 toolbar specifiers.
|
|
1222
|
185
|
1223 Valid toolbar instantiators are called "toolbar descriptors"
|
0
|
1224 and are lists of vectors. See `default-toolbar' for a description
|
|
1225 of the exact format.
|
20
|
1226 */
|
|
1227 (object))
|
0
|
1228 {
|
173
|
1229 return TOOLBAR_SPECIFIERP (object) ? Qt : Qnil;
|
0
|
1230 }
|
|
1231
|
|
1232
|
|
1233 static void
|
|
1234 toolbar_specs_changed (Lisp_Object specifier, struct window *w,
|
|
1235 Lisp_Object oldval)
|
|
1236 {
|
|
1237 /* This could be smarter but I doubt that it would make any
|
|
1238 noticable difference given the infrequency with which this is
|
|
1239 probably going to be called.
|
|
1240 */
|
|
1241 MARK_TOOLBAR_CHANGED;
|
|
1242 }
|
|
1243
|
|
1244 static void
|
|
1245 default_toolbar_specs_changed (Lisp_Object specifier, struct window *w,
|
|
1246 Lisp_Object oldval)
|
|
1247 {
|
|
1248 enum toolbar_pos pos = decode_toolbar_position (Vdefault_toolbar_position);
|
|
1249
|
|
1250 Fset_specifier_dirty_flag (Vtoolbar[pos]);
|
|
1251 }
|
|
1252
|
|
1253 static void
|
|
1254 toolbar_size_changed_in_frame (Lisp_Object specifier, struct frame *f,
|
|
1255 Lisp_Object oldval)
|
|
1256 {
|
2
|
1257 int pos;
|
0
|
1258
|
2
|
1259 for (pos = 0; pos < countof (Vtoolbar_size); pos++)
|
|
1260 if (EQ (specifier, Vtoolbar_size[(enum toolbar_pos) pos]))
|
0
|
1261 break;
|
|
1262
|
2
|
1263 assert (pos < countof (Vtoolbar_size));
|
0
|
1264
|
|
1265 MAYBE_FRAMEMETH (f, toolbar_size_changed_in_frame,
|
185
|
1266 (f, (enum toolbar_pos) pos, oldval));
|
0
|
1267
|
|
1268 /* Let redisplay know that something has possibly changed. */
|
|
1269 MARK_TOOLBAR_CHANGED;
|
|
1270 }
|
|
1271
|
|
1272 static void
|
215
|
1273 toolbar_border_width_changed_in_frame (Lisp_Object specifier, struct frame *f,
|
|
1274 Lisp_Object oldval)
|
|
1275 {
|
|
1276 int pos;
|
|
1277
|
|
1278 for (pos = 0; pos < countof (Vtoolbar_border_width); pos++)
|
|
1279 {
|
|
1280 if (EQ (specifier, Vtoolbar_border_width[(enum toolbar_pos) pos]))
|
|
1281 break;
|
|
1282 }
|
|
1283
|
|
1284 assert (pos < countof (Vtoolbar_border_width));
|
|
1285
|
|
1286 MAYBE_FRAMEMETH (f, toolbar_border_width_changed_in_frame,
|
|
1287 (f, (enum toolbar_pos) pos, oldval));
|
|
1288
|
|
1289 /* Let redisplay know that something has possibly changed. */
|
|
1290 MARK_TOOLBAR_CHANGED;
|
|
1291 }
|
|
1292
|
|
1293 static void
|
0
|
1294 toolbar_visible_p_changed_in_frame (Lisp_Object specifier, struct frame *f,
|
|
1295 Lisp_Object oldval)
|
|
1296 {
|
2
|
1297 int pos;
|
0
|
1298
|
2
|
1299 for (pos = 0; pos < countof (Vtoolbar_visible_p); pos++)
|
|
1300 if (EQ (specifier, Vtoolbar_visible_p[(enum toolbar_pos) pos]))
|
0
|
1301 break;
|
|
1302
|
2
|
1303 assert (pos < countof (Vtoolbar_visible_p));
|
0
|
1304
|
|
1305 MAYBE_FRAMEMETH (f, toolbar_visible_p_changed_in_frame,
|
185
|
1306 (f, (enum toolbar_pos) pos, oldval));
|
0
|
1307
|
|
1308 /* Let redisplay know that something has possibly changed. */
|
|
1309 MARK_TOOLBAR_CHANGED;
|
|
1310 }
|
|
1311
|
|
1312 static void
|
|
1313 default_toolbar_size_changed_in_frame (Lisp_Object specifier, struct frame *f,
|
|
1314 Lisp_Object oldval)
|
|
1315 {
|
|
1316 enum toolbar_pos pos = decode_toolbar_position (Vdefault_toolbar_position);
|
|
1317
|
|
1318 Fset_specifier_dirty_flag (Vtoolbar_size[pos]);
|
|
1319
|
|
1320 /* Let redisplay know that something has possibly changed. */
|
|
1321 MARK_TOOLBAR_CHANGED;
|
|
1322 }
|
|
1323
|
|
1324 static void
|
215
|
1325 default_toolbar_border_width_changed_in_frame (Lisp_Object specifier,
|
|
1326 struct frame *f,
|
|
1327 Lisp_Object oldval)
|
|
1328 {
|
|
1329 enum toolbar_pos pos = decode_toolbar_position (Vdefault_toolbar_position);
|
|
1330
|
|
1331 Fset_specifier_dirty_flag (Vtoolbar_border_width[pos]);
|
|
1332
|
|
1333 /* Let redisplay know that something has possibly changed. */
|
|
1334 MARK_TOOLBAR_CHANGED;
|
|
1335 }
|
|
1336
|
|
1337 static void
|
0
|
1338 default_toolbar_visible_p_changed_in_frame (Lisp_Object specifier,
|
|
1339 struct frame *f,
|
|
1340 Lisp_Object oldval)
|
|
1341 {
|
|
1342 enum toolbar_pos pos = decode_toolbar_position (Vdefault_toolbar_position);
|
|
1343
|
|
1344 Fset_specifier_dirty_flag (Vtoolbar_visible_p[pos]);
|
|
1345
|
|
1346 /* Let redisplay know that something has possibly changed. */
|
|
1347 MARK_TOOLBAR_CHANGED;
|
|
1348 }
|
|
1349
|
|
1350
|
|
1351 static void
|
|
1352 toolbar_buttons_captioned_p_changed (Lisp_Object specifier, struct window *w,
|
|
1353 Lisp_Object oldval)
|
|
1354 {
|
|
1355 /* This could be smarter but I doubt that it would make any
|
|
1356 noticable difference given the infrequency with which this is
|
|
1357 probably going to be called. */
|
|
1358 MARK_TOOLBAR_CHANGED;
|
|
1359 }
|
|
1360
|
|
1361
|
|
1362 void
|
|
1363 syms_of_toolbar (void)
|
|
1364 {
|
|
1365 defsymbol (&Qtoolbar_buttonp, "toolbar-button-p");
|
|
1366 defsymbol (&Q2D, "2D");
|
|
1367 defsymbol (&Q3D, "3D");
|
|
1368 defsymbol (&Q2d, "2d");
|
|
1369 defsymbol (&Q3d, "3d");
|
|
1370 defsymbol (&Q_size, ":size"); Fset (Q_size, Q_size);
|
|
1371
|
|
1372 defsymbol (&Qinit_toolbar_from_resources, "init-toolbar-from-resources");
|
20
|
1373 DEFSUBR (Ftoolbar_button_p);
|
|
1374 DEFSUBR (Ftoolbar_button_callback);
|
|
1375 DEFSUBR (Ftoolbar_button_help_string);
|
|
1376 DEFSUBR (Ftoolbar_button_enabled_p);
|
|
1377 DEFSUBR (Fset_toolbar_button_down_flag);
|
|
1378 DEFSUBR (Fcheck_toolbar_button_syntax);
|
|
1379 DEFSUBR (Fset_default_toolbar_position);
|
|
1380 DEFSUBR (Fdefault_toolbar_position);
|
|
1381 DEFSUBR (Ftoolbar_specifier_p);
|
0
|
1382 }
|
|
1383
|
|
1384 void
|
|
1385 vars_of_toolbar (void)
|
|
1386 {
|
|
1387 staticpro (&Vdefault_toolbar_position);
|
|
1388 Vdefault_toolbar_position = Qtop;
|
|
1389
|
|
1390 #ifdef HAVE_WINDOW_SYSTEM
|
|
1391 Fprovide (Qtoolbar);
|
|
1392 #endif
|
|
1393 }
|
|
1394
|
|
1395 void
|
|
1396 specifier_type_create_toolbar (void)
|
|
1397 {
|
|
1398 INITIALIZE_SPECIFIER_TYPE (toolbar, "toolbar", "toolbar-specifier-p");
|
|
1399
|
|
1400 SPECIFIER_HAS_METHOD (toolbar, validate);
|
|
1401 SPECIFIER_HAS_METHOD (toolbar, after_change);
|
|
1402 }
|
|
1403
|
|
1404 void
|
|
1405 specifier_vars_of_toolbar (void)
|
|
1406 {
|
|
1407 Lisp_Object elt;
|
173
|
1408
|
0
|
1409 DEFVAR_SPECIFIER ("default-toolbar", &Vdefault_toolbar /*
|
|
1410 Specifier for a fallback toolbar.
|
|
1411 Use `set-specifier' to change this.
|
|
1412
|
|
1413 The position of this toolbar is specified in the function
|
|
1414 `default-toolbar-position'. If the corresponding position-specific
|
|
1415 toolbar (e.g. `top-toolbar' if `default-toolbar-position' is 'top)
|
|
1416 does not specify a toolbar in a particular domain (usually a window),
|
|
1417 then the value of `default-toolbar' in that domain, if any, will be
|
|
1418 used instead.
|
|
1419
|
|
1420 Note that the toolbar at any particular position will not be
|
|
1421 displayed unless its visibility flag is true and its thickness
|
|
1422 \(width or height, depending on orientation) is non-zero. The
|
|
1423 visibility is controlled by the specifiers `top-toolbar-visible-p',
|
|
1424 `bottom-toolbar-visible-p', `left-toolbar-visible-p', and
|
|
1425 `right-toolbar-visible-p', and the thickness is controlled by the
|
|
1426 specifiers `top-toolbar-height', `bottom-toolbar-height',
|
|
1427 `left-toolbar-width', and `right-toolbar-width'.
|
|
1428
|
|
1429 Note that one of the four visibility specifiers inherits from
|
|
1430 `default-toolbar-visibility' and one of the four thickness
|
|
1431 specifiers inherits from either `default-toolbar-width' or
|
|
1432 `default-toolbar-height' (depending on orientation), just
|
|
1433 like for the toolbar description specifiers (e.g. `top-toolbar')
|
|
1434 mentioned above.
|
|
1435
|
|
1436 Therefore, if you are setting `default-toolbar', you should control
|
|
1437 the visibility and thickness using `default-toolbar-visible-p',
|
|
1438 `default-toolbar-width', and `default-toolbar-height', rather than
|
|
1439 using position-specific specifiers. That way, you will get sane
|
|
1440 behavior if the user changes the default toolbar position.
|
|
1441
|
|
1442 The format of the instantiator for a toolbar is a list of
|
|
1443 toolbar-button-descriptors. Each toolbar-button-descriptor
|
|
1444 is a vector in one of the following formats:
|
|
1445
|
|
1446 [GLYPH-LIST FUNCTION ENABLED-P HELP] or
|
|
1447 [:style 2D-OR-3D] or
|
|
1448 [:style 2D-OR-3D :size WIDTH-OR-HEIGHT] or
|
|
1449 [:size WIDTH-OR-HEIGHT :style 2D-OR-3D]
|
|
1450
|
|
1451 Optionally, one of the toolbar-button-descriptors may be nil
|
|
1452 instead of a vector; this signifies the division between
|
|
1453 the toolbar buttons that are to be displayed flush-left,
|
|
1454 and the buttons to be displayed flush-right.
|
|
1455
|
|
1456 The first vector format above specifies a normal toolbar button;
|
|
1457 the others specify blank areas in the toolbar.
|
|
1458
|
|
1459 For the first vector format:
|
|
1460
|
|
1461 -- GLYPH-LIST should be a list of one to six glyphs (as created by
|
|
1462 `make-glyph') or a symbol whose value is such a list. The first
|
|
1463 glyph, which must be provided, is the glyph used to display the
|
185
|
1464 toolbar button when it is in the "up" (not pressed) state. The
|
0
|
1465 optional second glyph is for displaying the button when it is in
|
185
|
1466 the "down" (pressed) state. The optional third glyph is for when
|
0
|
1467 the button is disabled. The optional fourth, fifth and sixth glyphs
|
|
1468 are used to specify captioned versions for the up, down and disabled
|
|
1469 states respectively. The function `toolbar-make-button-list' is
|
|
1470 useful in creating these glyph lists. The specifier variable
|
|
1471 `toolbar-buttons-captioned-p' controls which glyphs are actually used.
|
|
1472
|
|
1473 -- Even if you do not provide separate down-state and disabled-state
|
|
1474 glyphs, the user will still get visual feedback to indicate which
|
|
1475 state the button is in. Buttons in the up-state are displayed
|
|
1476 with a shadowed border that gives a raised appearance to the
|
|
1477 button. Buttons in the down-state are displayed with shadows that
|
|
1478 give a recessed appearance. Buttons in the disabled state are
|
|
1479 displayed with no shadows, giving a 2-d effect.
|
|
1480
|
|
1481 -- If some of the toolbar glyphs are not provided, they inherit as follows:
|
|
1482
|
|
1483 UP: up
|
|
1484 DOWN: down -> up
|
|
1485 DISABLED: disabled -> up
|
|
1486 CAP-UP: cap-up -> up
|
|
1487 CAP-DOWN: cap-down -> cap-up -> down -> up
|
|
1488 CAP-DISABLED: cap-disabled -> cap-up -> disabled -> up
|
|
1489
|
|
1490 -- The second element FUNCTION is a function to be called when the
|
|
1491 toolbar button is activated (i.e. when the mouse is released over
|
|
1492 the toolbar button, if the press occurred in the toolbar). It
|
|
1493 can be any form accepted by `call-interactively', since this is
|
|
1494 how it is invoked.
|
|
1495
|
|
1496 -- The third element ENABLED-P specifies whether the toolbar button
|
|
1497 is enabled (disabled buttons do nothing when they are activated,
|
|
1498 and are displayed differently; see above). It should be either
|
|
1499 a boolean or a form that evaluates to a boolean.
|
|
1500
|
|
1501 -- The fourth element HELP, if non-nil, should be a string. This
|
|
1502 string is displayed in the echo area when the mouse passes over
|
|
1503 the toolbar button.
|
|
1504
|
|
1505 For the other vector formats (specifying blank areas of the toolbar):
|
|
1506
|
|
1507 -- 2D-OR-3D should be one of the symbols '2d or '3d, indicating
|
|
1508 whether the area is displayed with shadows (giving it a raised,
|
|
1509 3-d appearance) or without shadows (giving it a flat appearance).
|
|
1510
|
|
1511 -- WIDTH-OR-HEIGHT specifies the length, in pixels, of the blank
|
|
1512 area. If omitted, it defaults to a device-specific value
|
|
1513 (8 pixels for X devices).
|
|
1514 */ );
|
|
1515
|
|
1516 Vdefault_toolbar = Fmake_specifier (Qtoolbar);
|
|
1517 /* #### It would be even nicer if the specifier caching
|
|
1518 automatically knew about specifier fallbacks, so we didn't
|
|
1519 have to do it ourselves. */
|
|
1520 set_specifier_caching (Vdefault_toolbar,
|
|
1521 slot_offset (struct window,
|
|
1522 default_toolbar),
|
|
1523 default_toolbar_specs_changed,
|
|
1524 0, 0);
|
|
1525
|
|
1526 DEFVAR_SPECIFIER ("top-toolbar",
|
|
1527 &Vtoolbar[TOP_TOOLBAR] /*
|
|
1528 Specifier for the toolbar at the top of the frame.
|
|
1529 Use `set-specifier' to change this.
|
|
1530 See `default-toolbar' for a description of a valid toolbar instantiator.
|
|
1531 */ );
|
|
1532 Vtoolbar[TOP_TOOLBAR] = Fmake_specifier (Qtoolbar);
|
|
1533 set_specifier_caching (Vtoolbar[TOP_TOOLBAR],
|
|
1534 slot_offset (struct window,
|
|
1535 toolbar[TOP_TOOLBAR]),
|
|
1536 toolbar_specs_changed,
|
|
1537 0, 0);
|
|
1538
|
|
1539 DEFVAR_SPECIFIER ("bottom-toolbar",
|
|
1540 &Vtoolbar[BOTTOM_TOOLBAR] /*
|
|
1541 Specifier for the toolbar at the bottom of the frame.
|
|
1542 Use `set-specifier' to change this.
|
|
1543 See `default-toolbar' for a description of a valid toolbar instantiator.
|
|
1544
|
|
1545 Note that, unless the `default-toolbar-position' is `bottom', by
|
|
1546 default the height of the bottom toolbar (controlled by
|
|
1547 `bottom-toolbar-height') is 0; thus, a bottom toolbar will not be
|
|
1548 displayed even if you provide a value for `bottom-toolbar'.
|
|
1549 */ );
|
|
1550 Vtoolbar[BOTTOM_TOOLBAR] = Fmake_specifier (Qtoolbar);
|
|
1551 set_specifier_caching (Vtoolbar[BOTTOM_TOOLBAR],
|
|
1552 slot_offset (struct window,
|
|
1553 toolbar[BOTTOM_TOOLBAR]),
|
|
1554 toolbar_specs_changed,
|
|
1555 0, 0);
|
|
1556
|
|
1557 DEFVAR_SPECIFIER ("left-toolbar",
|
|
1558 &Vtoolbar[LEFT_TOOLBAR] /*
|
|
1559 Specifier for the toolbar at the left edge of the frame.
|
|
1560 Use `set-specifier' to change this.
|
|
1561 See `default-toolbar' for a description of a valid toolbar instantiator.
|
|
1562
|
|
1563 Note that, unless the `default-toolbar-position' is `left', by
|
|
1564 default the height of the left toolbar (controlled by
|
|
1565 `left-toolbar-width') is 0; thus, a left toolbar will not be
|
|
1566 displayed even if you provide a value for `left-toolbar'.
|
|
1567 */ );
|
|
1568 Vtoolbar[LEFT_TOOLBAR] = Fmake_specifier (Qtoolbar);
|
|
1569 set_specifier_caching (Vtoolbar[LEFT_TOOLBAR],
|
|
1570 slot_offset (struct window,
|
|
1571 toolbar[LEFT_TOOLBAR]),
|
|
1572 toolbar_specs_changed,
|
|
1573 0, 0);
|
|
1574
|
|
1575 DEFVAR_SPECIFIER ("right-toolbar",
|
|
1576 &Vtoolbar[RIGHT_TOOLBAR] /*
|
|
1577 Specifier for the toolbar at the right edge of the frame.
|
|
1578 Use `set-specifier' to change this.
|
|
1579 See `default-toolbar' for a description of a valid toolbar instantiator.
|
|
1580
|
|
1581 Note that, unless the `default-toolbar-position' is `right', by
|
|
1582 default the height of the right toolbar (controlled by
|
|
1583 `right-toolbar-width') is 0; thus, a right toolbar will not be
|
|
1584 displayed even if you provide a value for `right-toolbar'.
|
|
1585 */ );
|
|
1586 Vtoolbar[RIGHT_TOOLBAR] = Fmake_specifier (Qtoolbar);
|
|
1587 set_specifier_caching (Vtoolbar[RIGHT_TOOLBAR],
|
|
1588 slot_offset (struct window,
|
|
1589 toolbar[RIGHT_TOOLBAR]),
|
|
1590 toolbar_specs_changed,
|
|
1591 0, 0);
|
|
1592
|
|
1593 /* initially, top inherits from default; this can be
|
|
1594 changed with `set-default-toolbar-position'. */
|
|
1595 elt = list1 (Fcons (Qnil, Qnil));
|
|
1596 set_specifier_fallback (Vdefault_toolbar, elt);
|
|
1597 set_specifier_fallback (Vtoolbar[TOP_TOOLBAR], Vdefault_toolbar);
|
|
1598 set_specifier_fallback (Vtoolbar[BOTTOM_TOOLBAR], elt);
|
|
1599 set_specifier_fallback (Vtoolbar[LEFT_TOOLBAR], elt);
|
|
1600 set_specifier_fallback (Vtoolbar[RIGHT_TOOLBAR], elt);
|
|
1601
|
|
1602 DEFVAR_SPECIFIER ("default-toolbar-height", &Vdefault_toolbar_height /*
|
|
1603 *Height of the default toolbar, if it's oriented horizontally.
|
|
1604 This is a specifier; use `set-specifier' to change it.
|
|
1605
|
|
1606 The position of the default toolbar is specified by the function
|
|
1607 `set-default-toolbar-position'. If the corresponding position-specific
|
|
1608 toolbar thickness specifier (e.g. `top-toolbar-height' if
|
|
1609 `default-toolbar-position' is 'top) does not specify a thickness in a
|
|
1610 particular domain (a window or a frame), then the value of
|
|
1611 `default-toolbar-height' or `default-toolbar-width' (depending on the
|
|
1612 toolbar orientation) in that domain, if any, will be used instead.
|
|
1613
|
|
1614 Note that `default-toolbar-height' is only used when
|
|
1615 `default-toolbar-position' is 'top or 'bottom, and `default-toolbar-width'
|
|
1616 is only used when `default-toolbar-position' is 'left or 'right.
|
|
1617
|
|
1618 Note that all of the position-specific toolbar thickness specifiers
|
|
1619 have a fallback value of zero when they do not correspond to the
|
|
1620 default toolbar. Therefore, you will have to set a non-zero thickness
|
|
1621 value if you want a position-specific toolbar to be displayed.
|
|
1622
|
|
1623 Internally, toolbar thickness specifiers are instantiated in both
|
|
1624 window and frame domains, for different purposes. The value in the
|
|
1625 domain of a frame's selected window specifies the actual toolbar
|
|
1626 thickness that you will see in that frame. The value in the domain of
|
|
1627 a frame itself specifies the toolbar thickness that is used in frame
|
|
1628 geometry calculations.
|
|
1629
|
|
1630 Thus, for example, if you set the frame width to 80 characters and the
|
|
1631 left toolbar width for that frame to 68 pixels, then the frame will
|
|
1632 be sized to fit 80 characters plus a 68-pixel left toolbar. If you
|
|
1633 then set the left toolbar width to 0 for a particular buffer (or if
|
|
1634 that buffer does not specify a left toolbar or has a nil value
|
|
1635 specified for `left-toolbar-visible-p'), you will find that, when
|
|
1636 that buffer is displayed in the selected window, the window will have
|
|
1637 a width of 86 or 87 characters -- the frame is sized for a 68-pixel
|
|
1638 left toolbar but the selected window specifies that the left toolbar
|
|
1639 is not visible, so it is expanded to take up the slack.
|
|
1640 */ );
|
|
1641 Vdefault_toolbar_height = Fmake_specifier (Qnatnum);
|
|
1642 set_specifier_caching (Vdefault_toolbar_height,
|
|
1643 slot_offset (struct window,
|
|
1644 default_toolbar_height),
|
|
1645 some_window_value_changed,
|
|
1646 slot_offset (struct frame,
|
|
1647 default_toolbar_height),
|
|
1648 default_toolbar_size_changed_in_frame);
|
|
1649
|
|
1650 DEFVAR_SPECIFIER ("default-toolbar-width", &Vdefault_toolbar_width /*
|
|
1651 *Width of the default toolbar, if it's oriented vertically.
|
|
1652 This is a specifier; use `set-specifier' to change it.
|
|
1653
|
|
1654 See `default-toolbar-height' for more information.
|
|
1655 */ );
|
|
1656 Vdefault_toolbar_width = Fmake_specifier (Qnatnum);
|
|
1657 set_specifier_caching (Vdefault_toolbar_width,
|
|
1658 slot_offset (struct window,
|
|
1659 default_toolbar_width),
|
|
1660 some_window_value_changed,
|
|
1661 slot_offset (struct frame,
|
|
1662 default_toolbar_width),
|
|
1663 default_toolbar_size_changed_in_frame);
|
|
1664
|
|
1665 DEFVAR_SPECIFIER ("top-toolbar-height",
|
|
1666 &Vtoolbar_size[TOP_TOOLBAR] /*
|
|
1667 *Height of the top toolbar.
|
|
1668 This is a specifier; use `set-specifier' to change it.
|
|
1669
|
|
1670 See `default-toolbar-height' for more information.
|
|
1671 */ );
|
|
1672 Vtoolbar_size[TOP_TOOLBAR] = Fmake_specifier (Qnatnum);
|
|
1673 set_specifier_caching (Vtoolbar_size[TOP_TOOLBAR],
|
|
1674 slot_offset (struct window,
|
|
1675 toolbar_size[TOP_TOOLBAR]),
|
|
1676 some_window_value_changed,
|
|
1677 slot_offset (struct frame,
|
|
1678 toolbar_size[TOP_TOOLBAR]),
|
|
1679 toolbar_size_changed_in_frame);
|
|
1680
|
|
1681 DEFVAR_SPECIFIER ("bottom-toolbar-height",
|
|
1682 &Vtoolbar_size[BOTTOM_TOOLBAR] /*
|
|
1683 *Height of the bottom toolbar.
|
|
1684 This is a specifier; use `set-specifier' to change it.
|
|
1685
|
|
1686 See `default-toolbar-height' for more information.
|
|
1687 */ );
|
|
1688 Vtoolbar_size[BOTTOM_TOOLBAR] = Fmake_specifier (Qnatnum);
|
|
1689 set_specifier_caching (Vtoolbar_size[BOTTOM_TOOLBAR],
|
|
1690 slot_offset (struct window,
|
|
1691 toolbar_size[BOTTOM_TOOLBAR]),
|
|
1692 some_window_value_changed,
|
|
1693 slot_offset (struct frame,
|
|
1694 toolbar_size[BOTTOM_TOOLBAR]),
|
|
1695 toolbar_size_changed_in_frame);
|
|
1696
|
|
1697 DEFVAR_SPECIFIER ("left-toolbar-width",
|
|
1698 &Vtoolbar_size[LEFT_TOOLBAR] /*
|
|
1699 *Width of left toolbar.
|
|
1700 This is a specifier; use `set-specifier' to change it.
|
|
1701
|
|
1702 See `default-toolbar-height' for more information.
|
|
1703 */ );
|
|
1704 Vtoolbar_size[LEFT_TOOLBAR] = Fmake_specifier (Qnatnum);
|
|
1705 set_specifier_caching (Vtoolbar_size[LEFT_TOOLBAR],
|
|
1706 slot_offset (struct window,
|
|
1707 toolbar_size[LEFT_TOOLBAR]),
|
|
1708 some_window_value_changed,
|
|
1709 slot_offset (struct frame,
|
|
1710 toolbar_size[LEFT_TOOLBAR]),
|
|
1711 toolbar_size_changed_in_frame);
|
|
1712
|
|
1713 DEFVAR_SPECIFIER ("right-toolbar-width",
|
|
1714 &Vtoolbar_size[RIGHT_TOOLBAR] /*
|
|
1715 *Width of right toolbar.
|
|
1716 This is a specifier; use `set-specifier' to change it.
|
|
1717
|
|
1718 See `default-toolbar-height' for more information.
|
|
1719 */ );
|
|
1720 Vtoolbar_size[RIGHT_TOOLBAR] = Fmake_specifier (Qnatnum);
|
|
1721 set_specifier_caching (Vtoolbar_size[RIGHT_TOOLBAR],
|
|
1722 slot_offset (struct window,
|
|
1723 toolbar_size[RIGHT_TOOLBAR]),
|
|
1724 some_window_value_changed,
|
|
1725 slot_offset (struct frame,
|
|
1726 toolbar_size[RIGHT_TOOLBAR]),
|
|
1727 toolbar_size_changed_in_frame);
|
|
1728
|
|
1729 /* #### this is ugly. */
|
78
|
1730 /* sb - even uglier to make this work without console tty support, ugh. */
|
|
1731 elt = Qnil;
|
|
1732 #ifdef HAVE_TTY
|
0
|
1733 elt = list1 (Fcons (list1 (Qtty), Qzero));
|
78
|
1734 #endif
|
0
|
1735 #ifdef HAVE_X_WINDOWS
|
80
|
1736 if (!EQ(elt, Qnil))
|
78
|
1737 elt = Fcons (Fcons (list1 (Qx), make_int (DEFAULT_TOOLBAR_HEIGHT)), elt);
|
|
1738 else
|
|
1739 elt = list1 (Fcons (list1 (Qx), make_int (DEFAULT_TOOLBAR_HEIGHT)));
|
0
|
1740 #endif
|
80
|
1741 if (!EQ(elt, Qnil))
|
78
|
1742 set_specifier_fallback (Vdefault_toolbar_height, elt);
|
|
1743
|
|
1744 elt = Qnil;
|
|
1745 #ifdef HAVE_TTY
|
0
|
1746 elt = list1 (Fcons (list1 (Qtty), Qzero));
|
78
|
1747 #endif
|
0
|
1748 #ifdef HAVE_X_WINDOWS
|
80
|
1749 if (!EQ(elt, Qnil))
|
78
|
1750 elt = Fcons (Fcons (list1 (Qx), make_int (DEFAULT_TOOLBAR_WIDTH)), elt);
|
|
1751 else
|
|
1752 elt = list1 (Fcons (list1 (Qx), make_int (DEFAULT_TOOLBAR_WIDTH)));
|
0
|
1753 #endif
|
80
|
1754 if (!EQ(elt, Qnil))
|
78
|
1755 set_specifier_fallback (Vdefault_toolbar_width, elt);
|
0
|
1756
|
|
1757 set_specifier_fallback (Vtoolbar_size[TOP_TOOLBAR], Vdefault_toolbar_height);
|
|
1758 elt = list1 (Fcons (Qnil, Qzero));
|
|
1759 set_specifier_fallback (Vtoolbar_size[BOTTOM_TOOLBAR], elt);
|
|
1760 set_specifier_fallback (Vtoolbar_size[LEFT_TOOLBAR], elt);
|
|
1761 set_specifier_fallback (Vtoolbar_size[RIGHT_TOOLBAR], elt);
|
|
1762
|
215
|
1763 DEFVAR_SPECIFIER ("default-toolbar-border-width",
|
|
1764 &Vdefault_toolbar_border_width /*
|
|
1765 *Width of the border around the default toolbar.
|
|
1766 This is a specifier; use `set-specifier' to change it.
|
|
1767
|
|
1768 The position of the default toolbar is specified by the function
|
|
1769 `set-default-toolbar-position'. If the corresponding position-specific
|
|
1770 toolbar border width specifier (e.g. `top-toolbar-border-width' if
|
|
1771 `default-toolbar-position' is 'top) does not specify a border width in a
|
|
1772 particular domain (a window or a frame), then the value of
|
|
1773 `default-toolbar-border-width' in that domain, if any, will be used
|
|
1774 instead.
|
|
1775
|
|
1776 Internally, toolbar border width specifiers are instantiated in both
|
|
1777 window and frame domains, for different purposes. The value in the
|
|
1778 domain of a frame's selected window specifies the actual toolbar border
|
|
1779 width that you will see in that frame. The value in the domain of a
|
|
1780 frame itself specifies the toolbar border width that is used in frame
|
|
1781 geometry calculations. Changing the border width value in the frame
|
|
1782 domain will result in a size change in the frame itself, while changing
|
|
1783 the value in a window domain will not.
|
|
1784 */ );
|
|
1785 Vdefault_toolbar_border_width = Fmake_specifier (Qnatnum);
|
|
1786 set_specifier_caching (Vdefault_toolbar_border_width,
|
|
1787 slot_offset (struct window,
|
|
1788 default_toolbar_border_width),
|
|
1789 some_window_value_changed,
|
|
1790 slot_offset (struct frame,
|
|
1791 default_toolbar_border_width),
|
|
1792 default_toolbar_border_width_changed_in_frame);
|
|
1793
|
|
1794 DEFVAR_SPECIFIER ("top-toolbar-border-width",
|
|
1795 &Vtoolbar_border_width[TOP_TOOLBAR] /*
|
|
1796 *Border width of the top toolbar.
|
|
1797 This is a specifier; use `set-specifier' to change it.
|
|
1798
|
|
1799 See `default-toolbar-height' for more information.
|
|
1800 */ );
|
|
1801 Vtoolbar_border_width[TOP_TOOLBAR] = Fmake_specifier (Qnatnum);
|
|
1802 set_specifier_caching (Vtoolbar_border_width[TOP_TOOLBAR],
|
|
1803 slot_offset (struct window,
|
|
1804 toolbar_border_width[TOP_TOOLBAR]),
|
|
1805 some_window_value_changed,
|
|
1806 slot_offset (struct frame,
|
|
1807 toolbar_border_width[TOP_TOOLBAR]),
|
|
1808 toolbar_border_width_changed_in_frame);
|
|
1809
|
|
1810 DEFVAR_SPECIFIER ("bottom-toolbar-border-width",
|
|
1811 &Vtoolbar_border_width[BOTTOM_TOOLBAR] /*
|
|
1812 *Border width of the bottom toolbar.
|
|
1813 This is a specifier; use `set-specifier' to change it.
|
|
1814
|
|
1815 See `default-toolbar-height' for more information.
|
|
1816 */ );
|
|
1817 Vtoolbar_border_width[BOTTOM_TOOLBAR] = Fmake_specifier (Qnatnum);
|
|
1818 set_specifier_caching (Vtoolbar_border_width[BOTTOM_TOOLBAR],
|
|
1819 slot_offset (struct window,
|
|
1820 toolbar_border_width[BOTTOM_TOOLBAR]),
|
|
1821 some_window_value_changed,
|
|
1822 slot_offset (struct frame,
|
|
1823 toolbar_border_width[BOTTOM_TOOLBAR]),
|
|
1824 toolbar_border_width_changed_in_frame);
|
|
1825
|
|
1826 DEFVAR_SPECIFIER ("left-toolbar-border-width",
|
|
1827 &Vtoolbar_border_width[LEFT_TOOLBAR] /*
|
|
1828 *Border width of left toolbar.
|
|
1829 This is a specifier; use `set-specifier' to change it.
|
|
1830
|
|
1831 See `default-toolbar-height' for more information.
|
|
1832 */ );
|
|
1833 Vtoolbar_border_width[LEFT_TOOLBAR] = Fmake_specifier (Qnatnum);
|
|
1834 set_specifier_caching (Vtoolbar_border_width[LEFT_TOOLBAR],
|
|
1835 slot_offset (struct window,
|
|
1836 toolbar_border_width[LEFT_TOOLBAR]),
|
|
1837 some_window_value_changed,
|
|
1838 slot_offset (struct frame,
|
|
1839 toolbar_border_width[LEFT_TOOLBAR]),
|
|
1840 toolbar_border_width_changed_in_frame);
|
|
1841
|
|
1842 DEFVAR_SPECIFIER ("right-toolbar-border-width",
|
|
1843 &Vtoolbar_border_width[RIGHT_TOOLBAR] /*
|
|
1844 *Border width of right toolbar.
|
|
1845 This is a specifier; use `set-specifier' to change it.
|
|
1846
|
|
1847 See `default-toolbar-height' for more information.
|
|
1848 */ );
|
|
1849 Vtoolbar_border_width[RIGHT_TOOLBAR] = Fmake_specifier (Qnatnum);
|
|
1850 set_specifier_caching (Vtoolbar_border_width[RIGHT_TOOLBAR],
|
|
1851 slot_offset (struct window,
|
|
1852 toolbar_border_width[RIGHT_TOOLBAR]),
|
|
1853 some_window_value_changed,
|
|
1854 slot_offset (struct frame,
|
|
1855 toolbar_border_width[RIGHT_TOOLBAR]),
|
|
1856 toolbar_border_width_changed_in_frame);
|
|
1857
|
|
1858 /* #### this is ugly. */
|
|
1859 /* sb - even uglier to make this work without console tty support, ugh. */
|
|
1860 /* not if you get to copy it instead of writing it from scratch. --kyle */
|
|
1861 elt = Qnil;
|
|
1862 #ifdef HAVE_TTY
|
|
1863 elt = list1 (Fcons (list1 (Qtty), Qzero));
|
|
1864 #endif
|
|
1865 #ifdef HAVE_X_WINDOWS
|
|
1866 if (!EQ(elt, Qnil))
|
|
1867 elt = Fcons (Fcons (list1 (Qx), make_int (DEFAULT_TOOLBAR_BORDER_WIDTH)), elt);
|
|
1868 else
|
|
1869 elt = list1 (Fcons (list1 (Qx), make_int (DEFAULT_TOOLBAR_BORDER_WIDTH)));
|
|
1870 #endif
|
|
1871 if (!EQ(elt, Qnil))
|
|
1872 set_specifier_fallback (Vdefault_toolbar_border_width, elt);
|
|
1873
|
|
1874 set_specifier_fallback (Vtoolbar_border_width[TOP_TOOLBAR], Vdefault_toolbar_border_width);
|
|
1875 elt = list1 (Fcons (Qnil, Qzero));
|
|
1876 set_specifier_fallback (Vtoolbar_border_width[BOTTOM_TOOLBAR], elt);
|
|
1877 set_specifier_fallback (Vtoolbar_border_width[LEFT_TOOLBAR], elt);
|
|
1878 set_specifier_fallback (Vtoolbar_border_width[RIGHT_TOOLBAR], elt);
|
|
1879
|
0
|
1880 DEFVAR_SPECIFIER ("default-toolbar-visible-p", &Vdefault_toolbar_visible_p /*
|
|
1881 *Whether the default toolbar is visible.
|
|
1882 This is a specifier; use `set-specifier' to change it.
|
|
1883
|
|
1884 The position of the default toolbar is specified by the function
|
|
1885 `set-default-toolbar-position'. If the corresponding position-specific
|
|
1886 toolbar visibility specifier (e.g. `top-toolbar-visible-p' if
|
|
1887 `default-toolbar-position' is 'top) does not specify a visible-p value
|
|
1888 in a particular domain (a window or a frame), then the value of
|
|
1889 `default-toolbar-visible-p' in that domain, if any, will be used
|
|
1890 instead.
|
|
1891
|
|
1892 Both window domains and frame domains are used internally, for
|
|
1893 different purposes. The distinction here is exactly the same as
|
|
1894 for thickness specifiers; see `default-toolbar-height' for more
|
|
1895 information.
|
|
1896
|
|
1897 `default-toolbar-visible-p' and all of the position-specific toolbar
|
|
1898 visibility specifiers have a fallback value of true.
|
|
1899 */ );
|
|
1900 Vdefault_toolbar_visible_p = Fmake_specifier (Qboolean);
|
|
1901 set_specifier_caching (Vdefault_toolbar_visible_p,
|
|
1902 slot_offset (struct window,
|
|
1903 default_toolbar_visible_p),
|
|
1904 some_window_value_changed,
|
|
1905 slot_offset (struct frame,
|
|
1906 default_toolbar_visible_p),
|
|
1907 default_toolbar_visible_p_changed_in_frame);
|
|
1908
|
|
1909 DEFVAR_SPECIFIER ("top-toolbar-visible-p",
|
|
1910 &Vtoolbar_visible_p[TOP_TOOLBAR] /*
|
|
1911 *Whether the top toolbar is visible.
|
|
1912 This is a specifier; use `set-specifier' to change it.
|
|
1913
|
|
1914 See `default-toolbar-visible-p' for more information.
|
|
1915 */ );
|
|
1916 Vtoolbar_visible_p[TOP_TOOLBAR] = Fmake_specifier (Qboolean);
|
|
1917 set_specifier_caching (Vtoolbar_visible_p[TOP_TOOLBAR],
|
|
1918 slot_offset (struct window,
|
|
1919 toolbar_visible_p[TOP_TOOLBAR]),
|
|
1920 some_window_value_changed,
|
|
1921 slot_offset (struct frame,
|
|
1922 toolbar_visible_p[TOP_TOOLBAR]),
|
|
1923 toolbar_visible_p_changed_in_frame);
|
|
1924
|
|
1925 DEFVAR_SPECIFIER ("bottom-toolbar-visible-p",
|
|
1926 &Vtoolbar_visible_p[BOTTOM_TOOLBAR] /*
|
|
1927 *Whether the bottom toolbar is visible.
|
|
1928 This is a specifier; use `set-specifier' to change it.
|
|
1929
|
|
1930 See `default-toolbar-visible-p' for more information.
|
|
1931 */ );
|
|
1932 Vtoolbar_visible_p[BOTTOM_TOOLBAR] = Fmake_specifier (Qboolean);
|
|
1933 set_specifier_caching (Vtoolbar_visible_p[BOTTOM_TOOLBAR],
|
|
1934 slot_offset (struct window,
|
|
1935 toolbar_visible_p[BOTTOM_TOOLBAR]),
|
|
1936 some_window_value_changed,
|
|
1937 slot_offset (struct frame,
|
|
1938 toolbar_visible_p[BOTTOM_TOOLBAR]),
|
|
1939 toolbar_visible_p_changed_in_frame);
|
|
1940
|
|
1941 DEFVAR_SPECIFIER ("left-toolbar-visible-p",
|
|
1942 &Vtoolbar_visible_p[LEFT_TOOLBAR] /*
|
|
1943 *Whether the left toolbar is visible.
|
|
1944 This is a specifier; use `set-specifier' to change it.
|
|
1945
|
|
1946 See `default-toolbar-visible-p' for more information.
|
|
1947 */ );
|
|
1948 Vtoolbar_visible_p[LEFT_TOOLBAR] = Fmake_specifier (Qboolean);
|
|
1949 set_specifier_caching (Vtoolbar_visible_p[LEFT_TOOLBAR],
|
|
1950 slot_offset (struct window,
|
|
1951 toolbar_visible_p[LEFT_TOOLBAR]),
|
|
1952 some_window_value_changed,
|
|
1953 slot_offset (struct frame,
|
|
1954 toolbar_visible_p[LEFT_TOOLBAR]),
|
|
1955 toolbar_visible_p_changed_in_frame);
|
|
1956
|
|
1957 DEFVAR_SPECIFIER ("right-toolbar-visible-p",
|
|
1958 &Vtoolbar_visible_p[RIGHT_TOOLBAR] /*
|
|
1959 *Whether the right toolbar is visible.
|
|
1960 This is a specifier; use `set-specifier' to change it.
|
|
1961
|
|
1962 See `default-toolbar-visible-p' for more information.
|
|
1963 */ );
|
|
1964 Vtoolbar_visible_p[RIGHT_TOOLBAR] = Fmake_specifier (Qboolean);
|
|
1965 set_specifier_caching (Vtoolbar_visible_p[RIGHT_TOOLBAR],
|
|
1966 slot_offset (struct window,
|
|
1967 toolbar_visible_p[RIGHT_TOOLBAR]),
|
|
1968 some_window_value_changed,
|
|
1969 slot_offset (struct frame,
|
|
1970 toolbar_visible_p[RIGHT_TOOLBAR]),
|
|
1971 toolbar_visible_p_changed_in_frame);
|
|
1972
|
|
1973 /* initially, top inherits from default; this can be
|
|
1974 changed with `set-default-toolbar-position'. */
|
|
1975 elt = list1 (Fcons (Qnil, Qt));
|
|
1976 set_specifier_fallback (Vdefault_toolbar_visible_p, elt);
|
|
1977 set_specifier_fallback (Vtoolbar_visible_p[TOP_TOOLBAR],
|
|
1978 Vdefault_toolbar_visible_p);
|
|
1979 set_specifier_fallback (Vtoolbar_visible_p[BOTTOM_TOOLBAR], elt);
|
|
1980 set_specifier_fallback (Vtoolbar_visible_p[LEFT_TOOLBAR], elt);
|
|
1981 set_specifier_fallback (Vtoolbar_visible_p[RIGHT_TOOLBAR], elt);
|
|
1982
|
|
1983 DEFVAR_SPECIFIER ("toolbar-buttons-captioned-p",
|
|
1984 &Vtoolbar_buttons_captioned_p /*
|
|
1985 *Whether the toolbar buttons are captioned.
|
|
1986 This will only have a visible effect for those toolbar buttons which had
|
|
1987 captioned versions specified.
|
|
1988 This is a specifier; use `set-specifier' to change it.
|
|
1989 */ );
|
|
1990 Vtoolbar_buttons_captioned_p = Fmake_specifier (Qboolean);
|
|
1991 set_specifier_caching (Vtoolbar_buttons_captioned_p,
|
|
1992 slot_offset (struct window,
|
|
1993 toolbar_buttons_captioned_p),
|
|
1994 toolbar_buttons_captioned_p_changed,
|
|
1995 0, 0);
|
|
1996 set_specifier_fallback (Vtoolbar_buttons_captioned_p,
|
|
1997 list1 (Fcons (Qnil, Qt)));
|
|
1998 }
|