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