blob: 95162708cedbdd384ab9c2f593d01678b7f60342 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
/* Generated by wbuild from "Arrow.w"
** (generator version $Revision: 2.0 $ of $Date: 93/07/06 16:08:04 $)
*/
#ifndef _XfwfArrowP_H_
#define _XfwfArrowP_H_
#include "BoardP.h"
#include "Arrow.h"
typedef struct {
/* methods */
#define point(p, i, xx, yy) (p[i ].x =xx ),(p[i ].y =yy )
/* class variables */
int dummy;
} XfwfArrowClassPart;
typedef struct _XfwfArrowClassRec {
CoreClassPart core_class;
CompositeClassPart composite_class;
XfwfCommonClassPart xfwfCommon_class;
XfwfFrameClassPart xfwfFrame_class;
XfwfBoardClassPart xfwfBoard_class;
XfwfArrowClassPart xfwfArrow_class;
} XfwfArrowClassRec;
typedef struct {
/* resources */
Alignment direction;
Pixel foreground;
Dimension arrowShadow;
Cardinal initialDelay;
Cardinal repeatDelay;
XtCallbackList callback;
/* private state */
GC arrowgc;
GC arrowlightgc;
GC arrowdarkgc;
XtIntervalId timer;
} XfwfArrowPart;
typedef struct _XfwfArrowRec {
CorePart core;
CompositePart composite;
XfwfCommonPart xfwfCommon;
XfwfFramePart xfwfFrame;
XfwfBoardPart xfwfBoard;
XfwfArrowPart xfwfArrow;
} XfwfArrowRec;
externalref XfwfArrowClassRec xfwfArrowClassRec;
#endif /* _XfwfArrowP_H_ */
|