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) DragOverSP.h,v 1.1 1996/08/08 14:12:39 wendland Exp */
28
 
29
%%
30
#ifndef __MOTIF_P_HEADERS
31
#error Unexpected access to Motif P headers
32
#endif
33
%%
34
 
35
+USE "x5/t", "X11/Shell.h";
36
+USE "x5/t", "X11/ShellP.h";
37
+USE "motif/1_2", "Xm/XmP.h";
38
+USE "motif/1_2", "Xm/DragIconP.h";
39
+USE "motif/1_2", "Xm/DragOverS.h";
40
 
41
/* unused */
42
 
43
+DEFINE DOExpose(do) %% ((XtClass(do))->core_class.expose) ((Widget)(do), NULL, NULL) %% ;
44
 
45
+FIELD (struct) XmDragOverShellClassPart := { 
46
 
47
	XtPointer		extension;
48
};
49
 
50
 
51
+FIELD (struct) _XmDragOverShellClassRec := { 
52
 
53
	CoreClassPart			core_class;
54
	CompositeClassPart		composite_class;
55
	ShellClassPart			shell_class;
56
	WMShellClassPart		wm_shell_class;
57
	VendorShellClassPart		vendor_shell_class;
58
	XmDragOverShellClassPart	dragOver_shell_class;
59
};
60
 
61
+TYPEDEF _XmDragOverShellClassRec XmDragOverShellClassRec;
62
 
63
+EXP lvalue XmDragOverShellClassRec xmDragOverShellClassRec;
64
 
65
+FIELD (struct) _XmBackingRec := { 
66
 
67
	Position	x;
68
	Position	y;
69
	Pixmap 		pixmap;
70
};
71
 
72
+TYPEDEF _XmBackingRec XmBackingRec;
73
+TYPEDEF _XmBackingRec *XmBacking;
74
 
75
+FIELD (struct) _XmDragOverBlendRec := { 
76
 
77
	XmDragIconObject	sourceIcon;
78
	Position		sourceX;
79
	Position		sourceY;
80
	XmDragIconObject	mixedIcon;
81
	GC			gc;
82
};
83
 
84
+TYPEDEF _XmDragOverBlendRec XmDragOverBlendRec;
85
+TYPEDEF _XmDragOverBlendRec *XmDragOverBlend;
86
 
87
+FIELD (struct) _XmDragOverShellPart :={ 
88
 
89
	Position		hotX;
90
	Position		hotY;
91
	unsigned char		cursorState;
92
	unsigned char		mode;
93
	unsigned char		activeMode;
94
 
95
	Position		initialX;
96
	Position		initialY;
97
 
98
	XmDragIconObject	stateIcon;
99
	XmDragIconObject	opIcon;
100
 
101
	XmDragOverBlendRec	cursorBlend;
102
	XmDragOverBlendRec	rootBlend;
103
	Pixel			cursorForeground;
104
	Pixel			cursorBackground;
105
	Cursor			ncCursor;
106
	Cursor			activeCursor;
107
 
108
	XmBackingRec		backing;
109
	Pixmap			tmpPix;
110
	Pixmap			tmpBit;
111
	Boolean			isVisible;
112
};
113
 
114
+TYPEDEF _XmDragOverShellPart XmDragOverShellPart;
115
 
116
+FIELD (struct) _XmDragOverShellRec := { 
117
 
118
	CorePart		core;
119
	CompositePart		composite;
120
	ShellPart		shell;
121
	WMShellPart		wm;
122
	VendorShellPart		vendor;
123
	XmDragOverShellPart	drag;
124
};
125
 
126
+TYPEDEF _XmDragOverShellRec XmDragOverShellRec;
127
 
128
 
129