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) ArrowBP.h,v 1.1 1996/08/08 14:12:12 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/ArrowB.h";
35
+USE "motif/1_2", "Xm/PrimitiveP.h";
36
 
37
+FIELD (struct) _XmArrowButtonClassPart :=
38
{
39
   XtPointer extension;
40
}; 
41
 
42
+TYPEDEF _XmArrowButtonClassPart XmArrowButtonClassPart;
43
 
44
+FIELD (struct) _XmArrowButtonClassRec :=
45
{
46
   CoreClassPart        	core_class;
47
   XmPrimitiveClassPart 	primitive_class;
48
   XmArrowButtonClassPart     	arrowbutton_class;
49
};
50
 
51
+TYPEDEF _XmArrowButtonClassRec XmArrowButtonClassRec;
52
 
53
+EXP lvalue XmArrowButtonClassRec xmArrowButtonClassRec;
54
 
55
+FIELD (struct) _XmArrowButtonPart :=
56
{
57
   XtCallbackList activate_callback;
58
   XtCallbackList arm_callback;
59
   XtCallbackList disarm_callback;
60
   unsigned char  direction;
61
 
62
   Boolean selected;
63
   short        top_count;
64
   short        cent_count;
65
   short        bot_count;
66
   XRectangle * top;
67
   XRectangle * cent;
68
   XRectangle * bot;
69
 
70
   GC      arrow_GC;
71
   XtIntervalId     timer;	
72
   unsigned char    multiClick;
73
   int              click_count;
74
   Time		    armTimeStamp;
75
   GC		    insensitive_GC;
76
};
77
 
78
+TYPEDEF _XmArrowButtonPart XmArrowButtonPart;
79
 
80
+FIELD (struct) _XmArrowButtonRec := 
81
{
82
   CorePart	   	core;
83
   XmPrimitivePart	primitive;
84
   XmArrowButtonPart    arrowbutton;
85
};
86
 
87
+TYPEDEF _XmArrowButtonRec XmArrowButtonRec;