Subversion Repositories tendra.SVN

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
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) MainWP.h,v 1.1 1996/08/08 14:13:02 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/MainW.h";
36
+USE "motif/1_2", "Xm/ScrolledWP.h";
37
+USE "motif/1_2", "Xm/SeparatoG.h";
38
 
39
+FIELD (struct) _XmMainWindowConstraintPart := {
40
 
41
	char		unused;
42
};
43
 
44
+TYPEDEF _XmMainWindowConstraintPart XmMainWindowConstraintPart;
45
+TYPEDEF _XmMainWindowConstraintPart * XmMainWindowConstraint;
46
 
47
+FIELD (struct) XmMainWindowClassPart := { 
48
 
49
	XtPointer		extension;
50
};
51
 
52
 
53
+FIELD (struct) _XmMainWindowClassRec := { 
54
 
55
	CoreClassPart			core_class;
56
	CompositeClassPart		composite_class;
57
	ConstraintClassPart		constraint_class;
58
	XmManagerClassPart		manager_class;
59
	XmScrolledWindowClassPart	swindow_class;
60
	XmMainWindowClassPart		mwindow_class;
61
};
62
 
63
+TYPEDEF _XmMainWindowClassRec XmMainWindowClassRec;
64
 
65
+EXP lvalue XmMainWindowClassRec xmMainWindowClassRec;
66
 
67
+FIELD (struct) XmMainWindowPart := { 
68
 
69
	Dimension			AreaWidth;
70
	Dimension			AreaHeight;
71
	Dimension			margin_width;
72
	Dimension			margin_height;
73
	Widget				CommandWindow;
74
	Widget				MenuBar;
75
	Widget				Message;
76
	unsigned char			CommandLoc;
77
	XmSeparatorGadget		Sep1;
78
	XmSeparatorGadget		Sep2;
79
	XmSeparatorGadget		Sep3;
80
	Boolean				ManagingSep;
81
	Boolean				ShowSep;
82
};
83
 
84
 
85
+FIELD (struct) _XmMainWindowRec := {
86
 
87
	CorePart		core;
88
	CompositePart		composite;
89
	ConstraintPart		constraint;
90
	XmManagerPart		manager;
91
	XmScrolledWindowPart	swindow;
92
	XmMainWindowPart	mwindow;
93
};
94
 
95
+TYPEDEF _XmMainWindowRec XmMainWindowRec;
96
 
97