Subversion Repositories tendra.SVN

Rev

Rev 2 | Details | Compare with Previous | 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) $ID$ */
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/PushBP.h";
36
 
37
+FIELD (struct) _XmTearOffButtonClassPart := { 
38
 
39
	String		translations;
40
};
41
 
42
+TYPEDEF _XmTearOffButtonClassPart XmTearOffButtonClassPart;
43
 
44
+FIELD (struct) _XmTearOffButtonClassRec := { 
45
 
46
	CoreClassPart			core_class;
47
	XmPrimitiveClassPart		primitive_class;
48
	XmLabelClassPart		label_class;
49
	XmPushButtonClassPart		pushbutton_class;
50
	XmTearOffButtonClassPart	tearoffbutton_class;
51
};
52
 
53
+TYPEDEF _XmTearOffButtonClassRec XmTearOffButtonClassRec;
54
 
55
+TYPEDEF _XmTearOffButtonClassRec *XmTearOffButtonWidgetClass;
56
 
57
+EXP lvalue XmTearOffButtonClassRec xmTearOffButtonClassRec;
58
 
59
+FIELD (struct) XmTearOffButtonPart := { 
60
 
61
	Dimension	margin;
62
	unsigned char	orientation;
63
   	unsigned char	separator_type;
64
	GC		separator_GC;
65
};
66
 
67
 
68
+FIELD (struct) _XmTearOffButtonRec := { 
69
 
70
	CorePart		core;
71
	XmPrimitivePart		primitive;
72
	XmLabelPart		label;
73
	XmPushButtonPart	pushbutton;
74
	XmTearOffButtonPart	tear_off_button;
75
};
76
 
77
+TYPEDEF _XmTearOffButtonRec XmTearOffButtonRec;
78
+TYPEDEF _XmTearOffButtonRec  *XmTearOffButtonWidget;
79
 
80
+EXP lvalue WidgetClass xmTearOffButtonWidgetClass;
81
 
82
 
83