1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
|
/*
Copyright (c) 2005 X.Org Foundation L.L.C.
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
/*
* $Header: /cvs/xtest/xtest/xts5/include/AvsForm3.h,v 1.2 2005-11-03 08:42:00 jmichael Exp $
*
* Copyright (c) Applied Testing and Technology, Inc. 1995
* Copyright (c) 88open Consortium, Ltd. 1990, 1991, 1992, 1993
* Copyright 1987, 1988 by Digital Equipment Corporation, Maynard,
* Massachusetts, and the Massachusetts Institute of Technology,
* Cambridge, Massachusetts.
* All Rights Reserved.
*
* Project: VSW5
*
* File: xts5/include/AvsForm3.h
*
* Description:
* Widget Class
*
* Modifications:
* $Log: AvsForm3.h,v $
* Revision 1.2 2005-11-03 08:42:00 jmichael
* clean up all vsw5 paths to use xts5 instead.
*
* Revision 1.1.1.2 2005/04/15 14:05:07 anderson
* Reimport of the base with the legal name in the copyright fixed.
*
* Revision 8.0 1998/12/23 23:23:22 mar
* Branch point for Release 5.0.2
*
* Revision 7.0 1998/10/30 22:41:28 mar
* Branch point for Release 5.0.2b1
*
* Revision 6.0 1998/03/02 05:15:54 tbr
* Branch point for Release 5.0.1
*
* Revision 5.0 1998/01/26 03:12:25 tbr
* Branch point for Release 5.0.1b1
*
* Revision 4.0 1995/12/15 08:38:52 tbr
* Branch point for Release 5.0.0
*
* Revision 3.2 1995/12/15 02:08:48 andy
* Prepare for GA Release
*
*/
#ifndef avsForm3_h
#define avsForm3_h
#include <X11/Constraint.h>
/***********************************************************************
*
* Form Widget
*
***********************************************************************/
/* Parameters:
Name Class RepType Default Value
---- ----- ------- -------------
background Background Pixel XtDefaultBackground
border BorderColor Pixel XtDefaultForeground
borderWidth BorderWidth Dimension 1
defaultDistance Thickness int 4
destroyCallback Callback Pointer NULL
height Height Dimension computed at realize
mappedWhenManaged MappedWhenManaged Boolean True
sensitive Sensitive Boolean True
width Width Dimension computed at realize
x Position Position 0
y Position Position 0
*/
/* Constraint parameters:
Name Class RepType Default Value
---- ----- ------- -------------
bottom Edge XtEdgeType XtRubber
fromHoriz Widget Widget (left edge of form)
fromVert Widget Widget (top of form)
horizDistance Thickness int defaultDistance
left Edge XtEdgeType XtRubber
resizable Boolean Boolean False
right Edge XtEdgeType XtRubber
top Edge XtEdgeType XtRubber
vertDistance Thickness int defaultDistance
*/
#define XtNdefaultDistance "defaultDistance"
#ifndef XtNtop
#define XtNtop "top"
#endif
#define XtNbottom "bottom"
#define XtNleft "left"
#define XtNright "right"
#define XtNfromHoriz "fromHoriz"
#define XtNfromVert "fromVert"
#define XtNhorizDistance "horizDistance"
#define XtNvertDistance "vertDistance"
#define XtNresizable "resizable"
#define XtCEdge "Edge"
#define XtCWidget "Widget"
#ifndef XtRWidget
#define XtRWidget "Widget"
#endif
#ifndef _XawEdgeType_e
#define _XawEdgeType_e
typedef enum {
XawChainTop, /* Keep this edge a constant distance from
the top of the form */
XawChainBottom, /* Keep this edge a constant distance from
the bottom of the form */
XawChainLeft, /* Keep this edge a constant distance from
the left of the form */
XawChainRight, /* Keep this edge a constant distance from
the right of the form */
XawRubber /* Keep this edge a proportional distance
from the edges of the form*/
} XawEdgeType;
#endif /* _XawEdgeType_e */
/*
* Unfortunatly I missed this definition for R4, so I cannot
* protect it with XAW_BC, it looks like this particular problem is
* one that we will have to live with for a while.
*
* Chris D. Peterson - 3/23/90.
*/
#define XtEdgeType XawEdgeType
#define XtChainTop XawChainTop
#define XtChainBottom XawChainBottom
#define XtChainLeft XawChainLeft
#define XtChainRight XawChainRight
#define XtRubber XawRubber
typedef struct _avsForm3ClassRec *avsForm3WidgetClass;
typedef struct _avsForm3Rec *avsForm3Widget;
extern WidgetClass avsform3WidgetClass;
#ifdef XAW_BC
/*************************************************************
* For Compatibility only. */
#define XtFormDoLayout XawFormDoLayout
/*************************************************************/
#endif /* XAW_BC */
#ifdef __cplusplus
extern "C" { /* for C++ V2.0 */
#endif
extern void XawFormDoLayout(
#if NeedFunctionPrototypes
Widget /* w */,
#if NeedWidePrototypes
/* Boolean */ int /* do_layout */
#else
Boolean /* do_layout */
#endif
#endif
);
#ifdef __cplusplus
} /* for C++ V2.0 */
#endif
#endif /* XawForm_h */
|