annotate src/toolbar.h @ 299:24cff6e8d715

Added tag r21-0b47 for changeset 70ad99077275
author cvs
date Mon, 13 Aug 2007 10:39:46 +0200
parents e11d67e05968
children 8626e4521993
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* Define general toolbar support.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1995 Board of Trustees, University of Illinois.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 Copyright (C) 1995, 1996 Ben Wing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 Copyright (C) 1996 Chuck Thompson.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 XEmacs is distributed in the hope that it will be useful, but WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 /* Synched up with: Not in FSF. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 #ifndef _XEMACS_TOOLBAR_H_
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 #define _XEMACS_TOOLBAR_H_
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 #include "specifier.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 #ifdef HAVE_TOOLBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31
286
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 278
diff changeset
32 #define FRAME_TOOLBAR_BUTTONS(frame, pos) \
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 278
diff changeset
33 ((frame)->toolbar_buttons[pos])
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 278
diff changeset
34 #define FRAME_CURRENT_TOOLBAR_SIZE(frame, pos) \
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 278
diff changeset
35 ((frame)->current_toolbar_size[pos])
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 278
diff changeset
36 #define DEVICE_SUPPORTS_TOOLBARS_P(d) \
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 278
diff changeset
37 (HAS_DEVMETH_P ((d), output_frame_toolbars))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 struct toolbar_button
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 struct lcrecord_header header;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 Lisp_Object next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 Lisp_Object frame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 Lisp_Object up_glyph;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 Lisp_Object down_glyph;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 Lisp_Object disabled_glyph;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 Lisp_Object cap_up_glyph;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 Lisp_Object cap_down_glyph;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 Lisp_Object cap_disabled_glyph;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 Lisp_Object callback;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 Lisp_Object enabled_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 Lisp_Object help_string;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 char enabled;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 char down;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 char pushright;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 char blank;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 int x, y;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 int width, height;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 int dirty;
215
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 207
diff changeset
66 /* is this button in a left or right toolbar? */
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 207
diff changeset
67 int vertical;
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 207
diff changeset
68 /* border_width when this button was layed out */
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 207
diff changeset
69 int border_width;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 DECLARE_LRECORD (toolbar_button, struct toolbar_button);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 #define XTOOLBAR_BUTTON(x) XRECORD (x, toolbar_button, struct toolbar_button)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 #define XSETTOOLBAR_BUTTON(x, p) XSETRECORD (x, p, toolbar_button)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 #define TOOLBAR_BUTTONP(x) RECORDP (x, toolbar_button)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 #define GC_TOOLBAR_BUTTONP(x) GC_RECORDP (x, toolbar_button)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 #define CHECK_TOOLBAR_BUTTON(x) CHECK_RECORD (x, toolbar_button)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 #define CONCHECK_TOOLBAR_BUTTON(x) CONCHECK_RECORD (x, toolbar_button)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 215
diff changeset
80 void get_toolbar_coords (struct frame *f, enum toolbar_pos pos, int *x,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 215
diff changeset
81 int *y, int *width, int *height, int *vert,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 215
diff changeset
82 int for_layout);
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 215
diff changeset
83 Lisp_Object toolbar_button_at_pixpos (struct frame *f, int x_coord,
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 215
diff changeset
84 int y_coord);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 DECLARE_SPECIFIER_TYPE (toolbar);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 #define XTOOLBAR_SPECIFIER(x) XSPECIFIER_TYPE (x, toolbar)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 #define XSETTOOLBAR_SPECIFIER(x, p) XSETSPECIFIER_TYPE (x, p, toolbar)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 #define TOOLBAR_SPECIFIERP(x) SPECIFIER_TYPEP (x, toolbar)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 #define CHECK_TOOLBAR_SPECIFIER(x) CHECK_SPECIFIER_TYPE (x, toolbar)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 #define CONCHECK_TOOLBAR_SPECIFIER(x) CONCHECK_SPECIFIER_TYPE (x, toolbar)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
92 #define MSWINDOWS_DEFAULT_TOOLBAR_HEIGHT 37
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
93 #define MSWINDOWS_DEFAULT_TOOLBAR_WIDTH 40
278
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
94 #define MSWINDOWS_DEFAULT_TOOLBAR_BORDER_WIDTH 0
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 #define DEFAULT_TOOLBAR_HEIGHT 37
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 272
diff changeset
96 #define DEFAULT_TOOLBAR_WIDTH 40
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 #define DEFAULT_TOOLBAR_BLANK_SIZE 8
215
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 207
diff changeset
98 #define DEFAULT_TOOLBAR_BORDER_WIDTH 0
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 0
diff changeset
99 #define MINIMUM_SHADOW_THICKNESS 1
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 extern Lisp_Object Vtoolbar_size[4];
215
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 207
diff changeset
102 extern Lisp_Object Vtoolbar_border_width[4];
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 void update_frame_toolbars (struct frame *f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 void init_frame_toolbars (struct frame *f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 void init_device_toolbars (struct device *d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 void init_global_toolbars (struct device *d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 void free_frame_toolbars (struct frame *f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 Lisp_Object get_toolbar_button_glyph (struct window *w,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 struct toolbar_button *tb);
215
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 207
diff changeset
110 void mark_frame_toolbar_buttons_dirty (struct frame *f, enum toolbar_pos pos);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 #endif /* HAVE_TOOLBARS */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 #endif /* _XEMACS_TOOLBAR_H_ */