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 |
|
|
|
27 |
/* SCO CID (IXI) DrawingAP.h,v 1.1 1996/08/08 14:12:42 wendland Exp */
|
|
|
28 |
|
|
|
29 |
%%
|
|
|
30 |
#ifndef __MOTIF_P_HEADERS
|
|
|
31 |
#error Unexpected access to Motif P headers
|
|
|
32 |
#endif
|
|
|
33 |
%%
|
|
|
34 |
|
|
|
35 |
+USE "motif/1_2", "Xm/ManagerP.h";
|
|
|
36 |
+USE "motif/1_2", "Xm/DrawingA.h";
|
|
|
37 |
|
|
|
38 |
+CONST int XmRESIZE_SWINDOW;
|
|
|
39 |
|
|
|
40 |
+FIELD (struct) _XmDrawingAreaConstraintPart := {
|
|
|
41 |
|
|
|
42 |
char unused;
|
|
|
43 |
};
|
|
|
44 |
|
|
|
45 |
+TYPEDEF _XmDrawingAreaConstraintPart XmDrawingAreaConstraintPart;
|
|
|
46 |
+TYPEDEF _XmDrawingAreaConstraintPart * XmDrawingAreaConstraint;
|
|
|
47 |
|
|
|
48 |
|
|
|
49 |
+FIELD (struct) XmDrawingAreaClassPart := {
|
|
|
50 |
|
|
|
51 |
XtPointer extension;
|
|
|
52 |
};
|
|
|
53 |
|
|
|
54 |
|
|
|
55 |
+FIELD (struct) _XmDrawingAreaClassRec := {
|
|
|
56 |
|
|
|
57 |
CoreClassPart core_class;
|
|
|
58 |
CompositeClassPart composite_class;
|
|
|
59 |
ConstraintClassPart constraint_class;
|
|
|
60 |
XmManagerClassPart manager_class;
|
|
|
61 |
XmDrawingAreaClassPart drawing_area_class;
|
|
|
62 |
};
|
|
|
63 |
|
|
|
64 |
+TYPEDEF _XmDrawingAreaClassRec XmDrawingAreaClassRec;
|
|
|
65 |
|
|
|
66 |
+EXP lvalue XmDrawingAreaClassRec xmDrawingAreaClassRec;
|
|
|
67 |
|
|
|
68 |
+FIELD (struct) XmDrawingAreaPart := {
|
|
|
69 |
|
|
|
70 |
Dimension margin_width;
|
|
|
71 |
Dimension margin_height;
|
|
|
72 |
|
|
|
73 |
XtCallbackList resize_callback;
|
|
|
74 |
XtCallbackList expose_callback;
|
|
|
75 |
XtCallbackList input_callback;
|
|
|
76 |
|
|
|
77 |
unsigned char resize_policy;
|
|
|
78 |
};
|
|
|
79 |
|
|
|
80 |
|
|
|
81 |
+FIELD (struct) _XmDrawingAreaRec := {
|
|
|
82 |
|
|
|
83 |
CorePart core;
|
|
|
84 |
CompositePart composite;
|
|
|
85 |
ConstraintPart constraint;
|
|
|
86 |
XmManagerPart manager;
|
|
|
87 |
XmDrawingAreaPart drawing_area;
|
|
|
88 |
};
|
|
|
89 |
|
|
|
90 |
+TYPEDEF _XmDrawingAreaRec XmDrawingAreaRec;
|
|
|
91 |
|
|
|
92 |
+FUNC void _XmDrawingAreaInput(Widget, XEvent *, String *, Cardinal *);
|
|
|
93 |
|
|
|
94 |
|