annotate src/EmacsFrame.h @ 0:376386a54a3c r19-14

Import from CVS: tag r19-14
author cvs
date Mon, 13 Aug 2007 08:45:50 +0200
parents
children ac2d302a0011
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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 #define XtNminibuffer "minibuffer"
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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 #define XtCMinibuffer "Minibuffer"
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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 #define XtNunsplittable "unsplittable"
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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 #define XtCUnsplittable "Unsplittable"
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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 #define XtNinternalBorderWidth "internalBorderWidth"
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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 #define XtCInternalBorderWidth "InternalBorderWidth"
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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 #define XtNscrollBarWidth "scrollBarWidth"
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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 #define XtCScrollBarWidth "ScrollBarWidth"
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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 #define XtNscrollBarHeight "scrollBarHeight"
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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 #define XtCScrollBarHeight "ScrollBarHeight"
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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 #define XtNtopToolBarHeight "topToolBarHeight"
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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 #define XtCTopToolBarHeight "TopToolBarHeight"
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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 #define XtNbottomToolBarHeight "bottomToolBarHeight"
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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 #define XtCBottomToolBarHeight "BottomToolBarHeight"
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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 #define XtNleftToolBarWidth "leftToolBarWidth"
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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 #define XtCLeftToolBarWidth "LeftToolBarWidth"
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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 #define XtNrightToolBarWidth "rightToolBarWidth"
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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 #define XtCRightToolBarWidth "RightToolBarWidth"
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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 #ifndef XtNtopToolBarShadowColor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 #define XtNtopToolBarShadowColor "topToolBarShadowColor"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 #ifndef XtCTopToolBarShadowColor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 #define XtCTopToolBarShadowColor "TopToolBarShadowColor"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 #ifndef XtNbottomToolBarShadowColor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 #define XtNbottomToolBarShadowColor "bottomToolBarShadowColor"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 #ifndef XtCBottomToolBarShadowColor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 #define XtCBottomToolBarShadowColor "BottomToolBarShadowColor"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 #ifndef XtNbackgroundToolBarColor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 #define XtNbackgroundToolBarColor "backgroundToolBarColor"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 #ifndef XtCBackgroundToolBarColor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 #define XtCBackgroundToolBarColor "BackgroundToolBarColor"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 #ifndef XtNtopToolBarShadowPixmap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 #define XtNtopToolBarShadowPixmap "topToolBarShadowPixmap"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 #ifndef XtCTopToolBarShadowPixmap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 #define XtCTopToolBarShadowPixmap "TopToolBarShadowPixmap"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 #ifndef XtNbottomToolBarShadowPixmap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 #define XtNbottomToolBarShadowPixmap "bottomToolBarShadowPixmap"
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 XtCBottomToolBarShadowPixmap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 #define XtCBottomToolBarShadowPixmap "BottomToolBarShadowPixmap"
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 XtNtoolBarShadowThickness
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 #define XtNtoolBarShadowThickness "toolBarShadowThickness"
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 XtCToolBarShadowThickness
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 #define XtCToolBarShadowThickness "ToolBarShadowThickness"
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 XtNscrollBarPlacement
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 #define XtNscrollBarPlacement "scrollBarPlacement"
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 XtCScrollBarPlacement
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 #define XtCScrollBarPlacement "ScrollBarPlacement"
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 #ifndef XtRScrollBarPlacement
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 #define XtRScrollBarPlacement "ScrollBarPlacement"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 #ifndef XtNinterline
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 #define XtNinterline "interline"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 #ifndef XtCInterline
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 #define XtCInterline "Interline"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 #ifndef XtNfont
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 #define XtNfont "font"
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 #ifndef XtCFont
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 #define XtCFont "Font"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 #ifndef XtNforeground
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 #define XtNforeground "foreground"
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 #ifndef XtCForeground
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 #define XtCForeground "Foreground"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 #ifndef XtNiconic
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 #define XtNiconic "iconic"
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 #ifndef XtCIconic
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 #define XtCIconic "Iconic"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 #ifndef XtNcursorColor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 #define XtNcursorColor "cursorColor"
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 XtCCursorColor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 #define XtCCursorColor "CursorColor"
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 XtNbarCursor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 #define XtNbarCursor "barCursor"
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 XtCBarCursor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 #define XtCBarCursor "BarCursor"
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 XtNvisualBell
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 #define XtNvisualBell "visualBell"
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 XtCVisualBell
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 #define XtCVisualBell "VisualBell"
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 XtNbellVolume
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 #define XtNbellVolume "bellVolume"
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 XtCBellVolume
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 #define XtCBellVolume "BellVolume"
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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 #ifndef XtNpointerBackground
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 #define XtNpointerBackground "pointerBackground"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 #ifndef XtNpointerColor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 #define XtNpointerColor "pointerColor"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 #ifndef XtNtextPointer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 #define XtNtextPointer "textPointer"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 #ifndef XtNspacePointer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 #define XtNspacePointer "spacePointer"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 #ifndef XtNmodeLinePointer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 #define XtNmodeLinePointer "modePointer"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 #ifndef XtNgcPointer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 #define XtNgcPointer "gcPointer"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 #ifndef XtNemacsFrame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 #define XtNemacsFrame "emacsFrame"
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 #ifndef XtCEmacsFrame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 #define XtCEmacsFrame "EmacsFrame"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 #ifndef XtNgeometry
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 #define XtNgeometry "geometry"
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 #ifndef XtCGeometry
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 #define XtCGeometry "Geometry"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 #ifndef XtNinitialGeometry
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 #define XtNinitialGeometry "initialGeometry"
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 #ifndef XtCInitialGeometry
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 #define XtCInitialGeometry "InitialGeometry"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 #ifndef XtNmenubar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 #define XtNmenubar "menubar"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 #ifndef XtCMenubar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 #define XtCMenubar "Menubar"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 #ifndef XtNinitiallyUnmapped
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 #define XtNinitiallyUnmapped "initiallyUnmapped"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 #ifndef XtCInitiallyUnmapped
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 #define XtCInitiallyUnmapped "InitiallyUnmapped"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 #ifndef XtNpreferredWidth
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 #define XtNpreferredWidth "preferredWidth"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 #ifndef XtCPreferredWidth
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 #define XtCPreferredWidth "PreferredWidth"
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 XtNpreferredHeight
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 #define XtNpreferredHeight "preferredHeight"
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 XtCPreferredHeight
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 #define XtCPreferredHeight "PreferredHeight"
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 XtNuseBackingStore
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 #define XtNuseBackingStore "useBackingStore"
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 XtCUseBackingStore
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 #define XtCUseBackingStore "UseBackingStore"
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 /* scrollbar placement types; like in ScrolledW.h */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 #define EM_TOP 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 #define EM_BOTTOM 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 #define EM_LEFT 2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 #define EM_RIGHT 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 #define XtTOP_LEFT (EM_TOP | EM_LEFT)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 #define XtBOTTOM_LEFT (EM_BOTTOM | EM_LEFT)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 #define XtTOP_RIGHT (EM_TOP | EM_RIGHT)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 #define XtBOTTOM_RIGHT (EM_BOTTOM | EM_RIGHT)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 /* structures
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 typedef struct _EmacsFrameRec *EmacsFrame;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 typedef struct _EmacsFrameClassRec *EmacsFrameClass;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 extern WidgetClass emacsFrameClass;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 extern struct _DisplayContext* display_context;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 /* Special entrypoints */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 void EmacsFrameRecomputeCellSize (Widget widget);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 void EmacsFrameSetCharSize (Widget widget, int rows, int cols);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 #endif /* _EmacsFrame_h */