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) PanedWP.h,v 1.1 1996/08/08 14:13:09 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/PanedW.h";
36
+USE "motif/1_2", "Xm/ManagerP.h";
37
 
38
 
39
+FIELD (struct)  _XmPanedWindowClassPart := { 
40
 
41
	XtPointer	extension;
42
}; 
43
 
44
+TYPEDEF _XmPanedWindowClassPart XmPanedWindowClassPart;
45
 
46
+FIELD (struct) _XmPanedWindowClassRec := {
47
 
48
	CoreClassPart		core_class;
49
	CompositeClassPart	composite_class;
50
	ConstraintClassPart	constraint_class;
51
	XmManagerClassPart	manager_class;
52
	XmPanedWindowClassPart	paned_window_class;
53
};
54
 
55
+TYPEDEF _XmPanedWindowClassRec XmPanedWindowClassRec;
56
 
57
+EXP lvalue XmPanedWindowClassRec xmPanedWindowClassRec;
58
 
59
+FIELD (struct) _XmPanedWindowConstraintPart := { 
60
 
61
	int			position;
62
	int			dheight;
63
	Position		dy;
64
	Position		olddy;
65
	Dimension		min;
66
	Dimension		max;
67
	Boolean			isPane;
68
 
69
	Boolean			allow_resize;
70
	Boolean			skip_adjust;
71
 
72
	Widget			sash;
73
	Widget			separator;
74
	short			position_index;
75
};
76
 
77
+TYPEDEF _XmPanedWindowConstraintPart XmPanedWindowConstraintPart;
78
 
79
+FIELD (struct) _XmPanedWindowConstraintRec := { 
80
 
81
	XmManagerConstraintPart		manager;
82
	XmPanedWindowConstraintPart	panedw;
83
};
84
 
85
+TYPEDEF _XmPanedWindowConstraintRec XmPanedWindowConstraintRec;
86
+TYPEDEF _XmPanedWindowConstraintRec * XmPanedWindowConstraintPtr;
87
 
88
+FIELD (struct) XmPanedWindowPart := { 
89
 
90
	Boolean				refiguremode;
91
	Boolean				separator_on;
92
 
93
	Dimension			margin_width;
94
	Dimension			margin_height;
95
 
96
	Dimension			spacing;
97
 
98
	Dimension			sash_width;
99
	Dimension			sash_height;
100
	Dimension			sash_shadow_thickness;
101
 
102
	Position			sash_indent;
103
 
104
	int				starty;
105
 
106
	short				increment_count;
107
	short				pane_count;
108
	short				num_slots;
109
	short				num_managed_children;
110
 
111
	Boolean				recursively_called;
112
 
113
	Boolean				resize_at_realize;
114
 
115
	XmPanedWindowConstraintPtr	top_pane;
116
	XmPanedWindowConstraintPtr	bottom_pane;
117
 
118
	GC				flipgc;
119
 
120
	WidgetList			managed_children;
121
};
122
 
123
 
124
+FIELD (struct) _XmPanedWindowRec := { 
125
 
126
	CorePart		core;
127
	CompositePart		composite;
128
	ConstraintPart		constraint;
129
	XmManagerPart		manager;
130
	XmPanedWindowPart	paned_window;
131
};
132
 
133
+TYPEDEF _XmPanedWindowRec XmPanedWindowRec;
134
 
135
 
136
 
137
 
138