1 /* Define general toolbar support.
2 Copyright (C) 1995 Board of Trustees, University of Illinois.
3 Copyright (C) 1995, 1996 Ben Wing.
4 Copyright (C) 1996 Chuck Thompson.
6 This file is part of XEmacs.
8 XEmacs is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published by the
10 Free Software Foundation; either version 2, or (at your option) any
13 XEmacs is distributed in the hope that it will be useful, but WITHOUT
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 You should have received a copy of the GNU General Public License
19 along with XEmacs; see the file COPYING. If not, write to
20 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
23 /* Synched up with: Not in FSF. */
25 #ifndef INCLUDED_toolbar_h_
26 #define INCLUDED_toolbar_h_
30 #include "specifier.h"
32 #define FRAME_TOOLBAR_BUTTONS(frame, pos) \
33 ((frame)->toolbar_buttons[pos])
34 #define FRAME_CURRENT_TOOLBAR_SIZE(frame, pos) \
35 ((frame)->current_toolbar_size[pos])
36 #define DEVICE_SUPPORTS_TOOLBARS_P(d) \
37 HAS_DEVMETH_P (d, output_frame_toolbars)
41 struct lcrecord_header header;
47 Lisp_Object down_glyph;
48 Lisp_Object disabled_glyph;
50 Lisp_Object cap_up_glyph;
51 Lisp_Object cap_down_glyph;
52 Lisp_Object cap_disabled_glyph;
55 Lisp_Object enabled_p;
56 Lisp_Object help_string;
66 /* is this button in a left or right toolbar? */
68 /* border_width when this button was laid out */
72 DECLARE_LRECORD (toolbar_button, struct toolbar_button);
73 #define XTOOLBAR_BUTTON(x) XRECORD (x, toolbar_button, struct toolbar_button)
74 #define XSETTOOLBAR_BUTTON(x, p) XSETRECORD (x, p, toolbar_button)
75 #define TOOLBAR_BUTTONP(x) RECORDP (x, toolbar_button)
76 #define CHECK_TOOLBAR_BUTTON(x) CHECK_RECORD (x, toolbar_button)
77 #define CONCHECK_TOOLBAR_BUTTON(x) CONCHECK_RECORD (x, toolbar_button)
79 void get_toolbar_coords (struct frame *f, enum toolbar_pos pos, int *x,
80 int *y, int *width, int *height, int *vert,
82 Lisp_Object toolbar_button_at_pixpos (struct frame *f, int x_coord,
84 DECLARE_SPECIFIER_TYPE (toolbar);
85 #define XTOOLBAR_SPECIFIER(x) XSPECIFIER_TYPE (x, toolbar)
86 #define XSETTOOLBAR_SPECIFIER(x, p) XSETSPECIFIER_TYPE (x, p, toolbar)
87 #define TOOLBAR_SPECIFIERP(x) SPECIFIER_TYPEP (x, toolbar)
88 #define CHECK_TOOLBAR_SPECIFIER(x) CHECK_SPECIFIER_TYPE (x, toolbar)
89 #define CONCHECK_TOOLBAR_SPECIFIER(x) CONCHECK_SPECIFIER_TYPE (x, toolbar)
91 #define MSWINDOWS_DEFAULT_TOOLBAR_HEIGHT 37
92 #define MSWINDOWS_DEFAULT_TOOLBAR_WIDTH 40
93 #define MSWINDOWS_DEFAULT_TOOLBAR_BORDER_WIDTH 0
94 #define DEFAULT_TOOLBAR_HEIGHT 37
95 #define DEFAULT_TOOLBAR_WIDTH 40
96 #define DEFAULT_TOOLBAR_BLANK_SIZE 8
97 #define DEFAULT_TOOLBAR_BORDER_WIDTH 0
98 #define MINIMUM_SHADOW_THICKNESS 1
100 extern Lisp_Object Vtoolbar_size[4];
101 extern Lisp_Object Vtoolbar_border_width[4];
102 void update_frame_toolbars (struct frame *f);
103 void update_frame_toolbars_geometry (struct frame *f);
104 void init_frame_toolbars (struct frame *f);
105 void init_device_toolbars (struct device *d);
106 void init_global_toolbars (struct device *d);
107 void free_frame_toolbars (struct frame *f);
108 Lisp_Object get_toolbar_button_glyph (struct window *w,
109 struct toolbar_button *tb);
110 void mark_frame_toolbar_buttons_dirty (struct frame *f, enum toolbar_pos pos);
112 #endif /* HAVE_TOOLBARS */
114 #endif /* INCLUDED_toolbar_h_ */