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