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) DropTransP.h,v 1.1 1996/08/08 14:12:46 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/DropTrans.h";
36
+USE "motif/1_2", "Xm/XmP.h";
37
 
38
+TYPEDEF Widget (*XmDropTransferStartTransferProc)(Widget, ArgList, Cardinal);
39
+TYPEDEF void (*XmDropTransferAddTransferProc)(Widget, XmDropTransferEntry, Cardinal);
40
 
41
+FIELD (struct) _XmDropTransferClassPart := { 
42
 
43
	XmDropTransferStartTransferProc	start_drop_transfer;
44
	XmDropTransferAddTransferProc	add_drop_transfer;
45
	XtPointer			extension;
46
};
47
 
48
+TYPEDEF _XmDropTransferClassPart XmDropTransferClassPart;
49
 
50
+FIELD (struct) _XmDropTransferClassRec := { 
51
 
52
	ObjectClassPart		object_class;
53
	XmDropTransferClassPart	dropTransfer_class;
54
};
55
 
56
+TYPEDEF _XmDropTransferClassRec XmDropTransferClassRec;
57
 
58
+EXP lvalue XmDropTransferClassRec xmDropTransferClassRec;
59
 
60
+FIELD (struct) _XmDropTransferListRec := { 
61
 
62
	XmDropTransferEntry	transfer_list;
63
	Cardinal		num_transfers;
64
};
65
 
66
+TYPEDEF _XmDropTransferListRec XmDropTransferListRec;
67
+TYPEDEF _XmDropTransferListRec * XmDropTransferList;   
68
 
69
+FIELD (struct) _XmDropTransferPart := {
70
 
71
	XmDropTransferEntry	drop_transfers;
72
	Cardinal		num_drop_transfers;
73
	Atom			selection;
74
	Widget			dragContext;
75
	Time			timestamp;
76
	Boolean			incremental;
77
	Window			source_window;
78
	unsigned int		tag;
79
	XtSelectionCallbackProc	transfer_callback;
80
	unsigned char		transfer_status;
81
 
82
	Atom			motif_drop_atom;
83
 
84
	XmDropTransferList	drop_transfer_lists;
85
	Cardinal		num_drop_transfer_lists;
86
	Cardinal		cur_drop_transfer_list;
87
	Cardinal		cur_xfer;
88
	Atom			*cur_targets;
89
	XtPointer		*cur_client_data;
90
};
91
 
92
+TYPEDEF _XmDropTransferPart XmDropTransferPart;
93
 
94
+FIELD (struct) _XmDropTransferRec := { 
95
 
96
	ObjectPart		object;
97
	XmDropTransferPart	dropTransfer;
98
};
99
 
100
+TYPEDEF _XmDropTransferRec XmDropTransferRec;
101
 
102