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) DrawnBP.h,v 1.1 1996/08/08 14:12:43 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/DrawnB.h";
36
+USE "motif/1_2", "Xm/LabelP.h";
37
 
38
+FIELD (struct) _XmDrawnButtonClassPart := { 
39
 
40
	XtPointer	extension;
41
};
42
 
43
+TYPEDEF _XmDrawnButtonClassPart XmDrawnButtonClassPart;
44
 
45
+FIELD (struct) _XmDrawnButtonClassRec := { 
46
 
47
	CoreClassPart		core_class;
48
	XmPrimitiveClassPart	primitive_class;
49
	XmLabelClassPart	label_class;
50
	XmDrawnButtonClassPart	drawnbutton_class;
51
};
52
 
53
+TYPEDEF _XmDrawnButtonClassRec XmDrawnButtonClassRec;
54
 
55
 
56
+EXP lvalue XmDrawnButtonClassRec xmDrawnButtonClassRec;
57
 
58
+FIELD (struct) _XmDrawnButtonPart := { 
59
 
60
	Boolean			pushbutton_enabled;
61
	unsigned char		shadow_type;
62
	XtCallbackList		activate_callback;
63
	XtCallbackList		arm_callback;
64
	XtCallbackList		disarm_callback;
65
	XtCallbackList		expose_callback;
66
	XtCallbackList		resize_callback;
67
 
68
	Boolean			armed;
69
	Dimension		old_width;
70
	Dimension		old_height;
71
	Dimension		old_shadow_thickness;
72
	Dimension		old_highlight_thickness;
73
	XtIntervalId		timer;
74
	unsigned char		multiClick;
75
	int			click_count;
76
	Time			armTimeStamp;
77
};
78
 
79
+TYPEDEF _XmDrawnButtonPart XmDrawnButtonPart;
80
 
81
+FIELD (struct) _XmDrawnButtonRec := { 
82
 
83
	CorePart		core;
84
	XmPrimitivePart		primitive;
85
	XmLabelPart		label;
86
	XmDrawnButtonPart	drawnbutton;
87
};
88
 
89
+TYPEDEF _XmDrawnButtonRec XmDrawnButtonRec;
90
 
91
 
92