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
/* SCO CID (IXI) SashP.h,v 1.1 1996/08/08 14:13:20 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/PrimitiveP.h" ;
35
 
36
+FIELD (struct) XmSashClassPart := { 
37
 
38
	XtPointer	extension;
39
};
40
 
41
 
42
+FIELD (struct) _XmSashClassRec := { 
43
 
44
	CoreClassPart		core_class;
45
	XmPrimitiveClassPart	primitive_class;
46
	XmSashClassPart		sash_class;
47
};
48
 
49
+TYPEDEF _XmSashClassRec XmSashClassRec;
50
+TYPEDEF _XmSashClassRec *XmSashWidgetClass;
51
 
52
+EXP lvalue XmSashClassRec xmSashClassRec;
53
 
54
+FIELD (struct) XmSashPart := { 
55
 
56
	XtCallbackList		sash_action;
57
	Boolean			has_focus;
58
};
59
 
60
 
61
+FIELD (struct) _XmSashRec := {
62
 
63
	CorePart		core;
64
	XmPrimitivePart		primitive;
65
	XmSashPart		sash;
66
};
67
 
68
+TYPEDEF _XmSashRec XmSashRec;
69
+TYPEDEF _XmSashRec *XmSashWidget;
70
 
71
+FIELD (struct) SashCallDataRec := { 
72
 
73
	XEvent		*event;
74
	String		*params;
75
	Cardinal	num_params;
76
};
77
 
78
+TYPEDEF SashCallDataRec *SashCallData;
79
 
80
+EXP lvalue WidgetClass xmSashWidgetClass;
81
 
82
+IFNDEF XmIsSash
83
+DEFINE XmIsSash(w) %% XtIsSubclass(w, xmSashWidgetClass) %%;
84
+ENDIF
85