annotate src/EmacsFrame.h @ 269:b2472a1930f2 r20-5b33

Import from CVS: tag r20-5b33
author cvs
date Mon, 13 Aug 2007 10:27:19 +0200
parents 0e522484dd2a
children 74fd4e045ea6
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 /* Public header for the Emacs frame widget.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1993-1995 Sun Microsystems, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 Copyright (C) 1995 Ben Wing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 XEmacs is distributed in the hope that it will be useful, but WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 /* Synched up with: Not in FSF. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 #ifndef _EmacsFrame_h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 #define _EmacsFrame_h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 #ifndef XtNminibuffer
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
28 #define XtNminibuffer "minibuffer"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 #ifndef XtCMinibuffer
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
31 #define XtCMinibuffer "Minibuffer"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 #ifndef XtNunsplittable
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
35 #define XtNunsplittable "unsplittable"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 #ifndef XtCUnsplittable
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
38 #define XtCUnsplittable "Unsplittable"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 #ifndef XtNinternalBorderWidth
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
42 #define XtNinternalBorderWidth "internalBorderWidth"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 #ifndef XtCInternalBorderWidth
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
45 #define XtCInternalBorderWidth "InternalBorderWidth"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 #ifndef XtNscrollBarWidth
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
49 #define XtNscrollBarWidth "scrollBarWidth"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 #ifndef XtCScrollBarWidth
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
52 #define XtCScrollBarWidth "ScrollBarWidth"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 #ifndef XtNscrollBarHeight
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
56 #define XtNscrollBarHeight "scrollBarHeight"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 #ifndef XtCScrollBarHeight
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
59 #define XtCScrollBarHeight "ScrollBarHeight"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 #ifndef XtNtopToolBarHeight
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
63 #define XtNtopToolBarHeight "topToolBarHeight"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 #ifndef XtCTopToolBarHeight
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
66 #define XtCTopToolBarHeight "TopToolBarHeight"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 #ifndef XtNbottomToolBarHeight
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
70 #define XtNbottomToolBarHeight "bottomToolBarHeight"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 #ifndef XtCBottomToolBarHeight
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
73 #define XtCBottomToolBarHeight "BottomToolBarHeight"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 #ifndef XtNleftToolBarWidth
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
77 #define XtNleftToolBarWidth "leftToolBarWidth"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 #ifndef XtCLeftToolBarWidth
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
80 #define XtCLeftToolBarWidth "LeftToolBarWidth"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 #ifndef XtNrightToolBarWidth
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
84 #define XtNrightToolBarWidth "rightToolBarWidth"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 #ifndef XtCRightToolBarWidth
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
87 #define XtCRightToolBarWidth "RightToolBarWidth"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89
215
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 183
diff changeset
90 #ifndef XtNtopToolBarBorderWidth
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 183
diff changeset
91 #define XtNtopToolBarBorderWidth "topToolBarBorderWidth"
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 183
diff changeset
92 #endif
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 183
diff changeset
93 #ifndef XtCTopToolBarBorderWidth
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 183
diff changeset
94 #define XtCTopToolBarBorderWidth "TopToolBarBorderWidth"
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 183
diff changeset
95 #endif
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 183
diff changeset
96
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 183
diff changeset
97 #ifndef XtNbottomToolBarBorderWidth
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 183
diff changeset
98 #define XtNbottomToolBarBorderWidth "bottomToolBarBorderWidth"
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 183
diff changeset
99 #endif
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 183
diff changeset
100 #ifndef XtCBottomToolBarBorderWidth
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 183
diff changeset
101 #define XtCBottomToolBarBorderWidth "BottomToolBarBorderWidth"
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 183
diff changeset
102 #endif
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 183
diff changeset
103
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 183
diff changeset
104 #ifndef XtNleftToolBarBorderWidth
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 183
diff changeset
105 #define XtNleftToolBarBorderWidth "leftToolBarBorderWidth"
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 183
diff changeset
106 #endif
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 183
diff changeset
107 #ifndef XtCLeftToolBarBorderWidth
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 183
diff changeset
108 #define XtCLeftToolBarBorderWidth "LeftToolBarBorderWidth"
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 183
diff changeset
109 #endif
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 183
diff changeset
110
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 183
diff changeset
111 #ifndef XtNrightToolBarBorderWidth
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 183
diff changeset
112 #define XtNrightToolBarBorderWidth "rightToolBarBorderWidth"
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 183
diff changeset
113 #endif
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 183
diff changeset
114 #ifndef XtCRightToolBarBorderWidth
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 183
diff changeset
115 #define XtCRightToolBarBorderWidth "RightToolBarBorderWidth"
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 183
diff changeset
116 #endif
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 183
diff changeset
117
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 #ifndef XtNtopToolBarShadowColor
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
119 #define XtNtopToolBarShadowColor "topToolBarShadowColor"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 #ifndef XtCTopToolBarShadowColor
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
122 #define XtCTopToolBarShadowColor "TopToolBarShadowColor"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 #ifndef XtNbottomToolBarShadowColor
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
126 #define XtNbottomToolBarShadowColor "bottomToolBarShadowColor"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 #ifndef XtCBottomToolBarShadowColor
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
129 #define XtCBottomToolBarShadowColor "BottomToolBarShadowColor"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 #ifndef XtNbackgroundToolBarColor
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
133 #define XtNbackgroundToolBarColor "backgroundToolBarColor"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 #ifndef XtCBackgroundToolBarColor
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
136 #define XtCBackgroundToolBarColor "BackgroundToolBarColor"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138
227
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 215
diff changeset
139 #ifndef XtNforegroundToolBarColor
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 215
diff changeset
140 #define XtNforegroundToolBarColor "foregroundToolBarColor"
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 215
diff changeset
141 #endif
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 215
diff changeset
142 #ifndef XtCForegroundToolBarColor
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 215
diff changeset
143 #define XtCForegroundToolBarColor "ForegroundToolBarColor"
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 215
diff changeset
144 #endif
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 215
diff changeset
145
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 #ifndef XtNtopToolBarShadowPixmap
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
147 #define XtNtopToolBarShadowPixmap "topToolBarShadowPixmap"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 #ifndef XtCTopToolBarShadowPixmap
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
150 #define XtCTopToolBarShadowPixmap "TopToolBarShadowPixmap"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 #ifndef XtNbottomToolBarShadowPixmap
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
154 #define XtNbottomToolBarShadowPixmap "bottomToolBarShadowPixmap"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 #ifndef XtCBottomToolBarShadowPixmap
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
157 #define XtCBottomToolBarShadowPixmap "BottomToolBarShadowPixmap"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 #ifndef XtNtoolBarShadowThickness
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
161 #define XtNtoolBarShadowThickness "toolBarShadowThickness"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 #ifndef XtCToolBarShadowThickness
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
164 #define XtCToolBarShadowThickness "ToolBarShadowThickness"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 #ifndef XtNscrollBarPlacement
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
168 #define XtNscrollBarPlacement "scrollBarPlacement"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 #ifndef XtCScrollBarPlacement
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
171 #define XtCScrollBarPlacement "ScrollBarPlacement"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 #ifndef XtRScrollBarPlacement
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
174 #define XtRScrollBarPlacement "ScrollBarPlacement"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 #ifndef XtNinterline
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
178 #define XtNinterline "interline"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 #ifndef XtCInterline
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
181 #define XtCInterline "Interline"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 #ifndef XtNfont
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
185 #define XtNfont "font"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 #ifndef XtCFont
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
188 #define XtCFont "Font"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 #ifndef XtNforeground
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
192 #define XtNforeground "foreground"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 #ifndef XtCForeground
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
195 #define XtCForeground "Foreground"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197
215
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 183
diff changeset
198 #ifndef XtNbackground
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 183
diff changeset
199 #define XtNbackground "background"
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 183
diff changeset
200 #endif
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 183
diff changeset
201 #ifndef XtCBackground
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 183
diff changeset
202 #define XtCBackground "Background"
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 183
diff changeset
203 #endif
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 183
diff changeset
204
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 #ifndef XtNiconic
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
206 #define XtNiconic "iconic"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 #ifndef XtCIconic
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
209 #define XtCIconic "Iconic"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 #ifndef XtNcursorColor
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
213 #define XtNcursorColor "cursorColor"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 #ifndef XtCCursorColor
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
216 #define XtCCursorColor "CursorColor"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 #ifndef XtNbarCursor
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
220 #define XtNbarCursor "barCursor"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 #ifndef XtCBarCursor
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
223 #define XtCBarCursor "BarCursor"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 #ifndef XtNvisualBell
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
227 #define XtNvisualBell "visualBell"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 #ifndef XtCVisualBell
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
230 #define XtCVisualBell "VisualBell"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 #ifndef XtNbellVolume
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
234 #define XtNbellVolume "bellVolume"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 #ifndef XtCBellVolume
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
237 #define XtCBellVolume "BellVolume"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 #ifndef XtNpointerBackground
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
241 #define XtNpointerBackground "pointerBackground"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 #ifndef XtNpointerColor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 #define XtNpointerColor "pointerColor"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 #ifndef XtNtextPointer
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
249 #define XtNtextPointer "textPointer"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 #ifndef XtNspacePointer
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
253 #define XtNspacePointer "spacePointer"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 #ifndef XtNmodeLinePointer
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
257 #define XtNmodeLinePointer "modePointer"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 #ifndef XtNgcPointer
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
261 #define XtNgcPointer "gcPointer"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 #ifndef XtNemacsFrame
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
265 #define XtNemacsFrame "emacsFrame"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 #ifndef XtCEmacsFrame
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
268 #define XtCEmacsFrame "EmacsFrame"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 #ifndef XtNgeometry
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
272 #define XtNgeometry "geometry"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 #ifndef XtCGeometry
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
275 #define XtCGeometry "Geometry"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 #ifndef XtNinitialGeometry
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
279 #define XtNinitialGeometry "initialGeometry"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 #ifndef XtCInitialGeometry
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
282 #define XtCInitialGeometry "InitialGeometry"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 #ifndef XtNmenubar
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
286 #define XtNmenubar "menubar"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 #ifndef XtCMenubar
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
289 #define XtCMenubar "Menubar"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 #ifndef XtNinitiallyUnmapped
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
293 #define XtNinitiallyUnmapped "initiallyUnmapped"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 #ifndef XtCInitiallyUnmapped
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
296 #define XtCInitiallyUnmapped "InitiallyUnmapped"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 #ifndef XtNpreferredWidth
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
300 #define XtNpreferredWidth "preferredWidth"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 #ifndef XtCPreferredWidth
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
303 #define XtCPreferredWidth "PreferredWidth"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 #ifndef XtNpreferredHeight
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
307 #define XtNpreferredHeight "preferredHeight"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 #ifndef XtCPreferredHeight
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
310 #define XtCPreferredHeight "PreferredHeight"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 #ifndef XtNuseBackingStore
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
314 #define XtNuseBackingStore "useBackingStore"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 #ifndef XtCUseBackingStore
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
317 #define XtCUseBackingStore "UseBackingStore"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
320 #define XtNximStyles "ximStyles"
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
321 #define XtCXimStyles "XimStyles"
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
322 #define XtRXimStyles "XimStyles"
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
323
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
324 #define XtNximForeground "ximForeground"
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
325 #define XtNximBackground "ximBackground"
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
326
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 /* scrollbar placement types; like in ScrolledW.h */
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
328 #define EM_TOP 1
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
329 #define EM_BOTTOM 0
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
330 #define EM_LEFT 2
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
331 #define EM_RIGHT 0
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
332
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
333 #define XtTOP_LEFT (EM_TOP | EM_LEFT)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
334 #define XtBOTTOM_LEFT (EM_BOTTOM | EM_LEFT)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
335 #define XtTOP_RIGHT (EM_TOP | EM_RIGHT)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
336 #define XtBOTTOM_RIGHT (EM_BOTTOM | EM_RIGHT)
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 70
diff changeset
337
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
338 /* structures */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 typedef struct _EmacsFrameRec *EmacsFrame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 typedef struct _EmacsFrameClassRec *EmacsFrameClass;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 extern WidgetClass emacsFrameClass;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 extern struct _DisplayContext* display_context;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 /* Special entrypoints */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 void EmacsFrameRecomputeCellSize (Widget widget);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 void EmacsFrameSetCharSize (Widget widget, int rows, int cols);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 #endif /* _EmacsFrame_h */