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) ScaleP.h,v 1.1 1996/08/08 14:13:21 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/Scale.h";
36
+USE "motif/1_2", "Xm/ManagerP.h";
37
 
38
+FIELD (struct) _XmScaleConstraintPart := {
39
 
40
	char		unused;
41
};
42
 
43
+TYPEDEF _XmScaleConstraintPart XmScaleConstraintPart;
44
+TYPEDEF _XmScaleConstraintPart * XmScaleConstraint;
45
 
46
+FIELD (struct) XmScaleClassPart := { 
47
 
48
	XtPointer	extension;
49
};
50
 
51
 
52
+FIELD (struct) _XmScaleClassRec := { 
53
 
54
	CoreClassPart		core_class;
55
	CompositeClassPart	composite_class;
56
	ConstraintClassPart	constraint_class;
57
	XmManagerClassPart	manager_class;
58
	XmScaleClassPart	scale_class;
59
};
60
 
61
+TYPEDEF _XmScaleClassRec XmScaleClassRec;
62
 
63
+EXP lvalue XmScaleClassRec xmScaleClassRec;
64
 
65
+FIELD (struct) XmScalePart := { 
66
 
67
	int			value;
68
	int			maximum;
69
	int			minimum;
70
	unsigned char		orientation;
71
	unsigned char		processing_direction;
72
	XmString		title;
73
	XmFontList		font_list;
74
	XFontStruct		* font_struct;
75
	Boolean			show_value;
76
	short			decimal_points;
77
	Dimension		scale_width;
78
	Dimension		scale_height;
79
	Dimension		highlight_thickness;
80
	Boolean			highlight_on_enter;
81
	XtCallbackList		drag_callback;
82
	XtCallbackList		value_changed_callback;
83
 
84
	int			last_value;
85
	int			slider_size;
86
	GC			foreground_GC;
87
	int			show_value_x;
88
	int			show_value_y;
89
	int			show_value_width;
90
	int			show_value_height;
91
	int			scale_multiple;
92
};
93
 
94
 
95
+FIELD (struct) _XmScaleRec := { 
96
 
97
	CorePart		core;
98
	CompositePart		composite;
99
	ConstraintPart		constraint;
100
	XmManagerPart		manager;
101
	XmScalePart		scale;
102
};
103
 
104
+TYPEDEF _XmScaleRec XmScaleRec;
105
 
106
 
107
 
108