2 |
7u83 |
1 |
/*
|
|
|
2 |
COPYRIGHT NOTICE
|
|
|
3 |
|
|
|
4 |
This program is the proprietary property of IXI Ltd, a subsidiary
|
|
|
5 |
of the Santa Cruz Operation (SCO). Use, reproduction, production
|
|
|
6 |
of amended versions and/or transfer of this program is permitted
|
|
|
7 |
PROVIDED THAT:
|
|
|
8 |
|
|
|
9 |
(a) This legend be preserved on any such reproduction and amended
|
|
|
10 |
version.
|
|
|
11 |
|
|
|
12 |
(b) Any recipient of such reproduction or amended version accept
|
|
|
13 |
the conditions set out in this legend.
|
|
|
14 |
|
|
|
15 |
IXI accepts no liability whatsoever in relation to any use to
|
|
|
16 |
which this program may be put and gives no warranty as to the
|
|
|
17 |
program's suitability for any purpose.
|
|
|
18 |
|
|
|
19 |
All rights reserved.
|
|
|
20 |
|
|
|
21 |
Copyright (c) 1995, 1996
|
|
|
22 |
|
|
|
23 |
*/
|
|
|
24 |
|
|
|
25 |
|
|
|
26 |
/* SCO CID (IXI) SeparatorP.h,v 1.1 1996/08/08 14:13:32 wendland Exp */
|
|
|
27 |
|
|
|
28 |
%%
|
|
|
29 |
#ifndef __MOTIF_P_HEADERS
|
|
|
30 |
#error Unexpected access to Motif P headers
|
|
|
31 |
#endif
|
|
|
32 |
%%
|
|
|
33 |
|
|
|
34 |
+USE "motif/1_2", "Xm/Separator.h";
|
|
|
35 |
+USE "motif/1_2", "Xm/PrimitiveP.h";
|
|
|
36 |
|
|
|
37 |
+FIELD (struct) _XmSeparatorClassPart := {
|
|
|
38 |
XtPointer extension;
|
|
|
39 |
};
|
|
|
40 |
|
|
|
41 |
+TYPEDEF _XmSeparatorClassPart XmSeparatorClassPart;
|
|
|
42 |
|
|
|
43 |
+FIELD (struct) _XmSeparatorClassRec := {
|
|
|
44 |
|
|
|
45 |
CoreClassPart core_class;
|
|
|
46 |
XmPrimitiveClassPart primitive_class;
|
|
|
47 |
XmSeparatorClassPart separator_class;
|
|
|
48 |
};
|
|
|
49 |
|
|
|
50 |
+TYPEDEF _XmSeparatorClassRec XmSeparatorClassRec;
|
|
|
51 |
|
|
|
52 |
+EXP lvalue XmSeparatorClassRec xmSeparatorClassRec;
|
|
|
53 |
|
|
|
54 |
|
|
|
55 |
+FIELD (struct) _XmSeparatorPart := {
|
|
|
56 |
|
|
|
57 |
Dimension margin;
|
|
|
58 |
unsigned char orientation;
|
|
|
59 |
unsigned char separator_type;
|
|
|
60 |
GC separator_GC;
|
|
|
61 |
};
|
|
|
62 |
|
|
|
63 |
+TYPEDEF _XmSeparatorPart XmSeparatorPart;
|
|
|
64 |
|
|
|
65 |
+FIELD (struct) _XmSeparatorRec := {
|
|
|
66 |
|
|
|
67 |
CorePart core;
|
|
|
68 |
XmPrimitivePart primitive;
|
|
|
69 |
XmSeparatorPart separator;
|
|
|
70 |
};
|
|
|
71 |
|
|
|
72 |
+TYPEDEF _XmSeparatorRec XmSeparatorRec;
|
|
|
73 |
|
|
|
74 |
|