Subversion Repositories tendra.SVN

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 7u83 1
/*
2
    Copyright (c) 1995 Open Software Foundation, Inc.
3
 
4
    All Rights Reserved
5
 
6
    Permission to use, copy, modify, and distribute this software and its
7
    documentation for any purpose and without fee is hereby granted, provided
8
    that the above copyright notice appears in all copies and that both the
9
    copyright notice and this permission notice appear in supporting
10
    documentation.
11
 
12
    OSF DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE
13
    INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
14
    FOR A PARTICULAR PURPOSE.
15
 
16
    IN NO EVENT SHALL OSF BE LIABLE FOR ANY SPECIAL, INDIRECT, OR
17
    CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
18
    LOSS OF USE, DATA OR PROFITS, WHETHER IN ACTION OF CONTRACT,
19
    NEGLIGENCE, OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
20
    CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
21
*/
22
 
23
/*
24
    COPYRIGHT NOTICE
25
 
26
    This program contains amendments to Motif 1.1 API headers in
27
    order to represent the Motif 1.2 API. These amendments are the
28
    property of IXI Ltd, a subsidiary of the Santa Cruz Operation (SCO).
29
    Use, reproduction, production of amended versions and/or transfer of
30
    this program is permitted PROVIDED THAT:
31
 
32
    (a)  This legend be preserved on any such reproduction and amended
33
         version.
34
 
35
    (b)  Any recipient of such reproduction or amended version accept
36
         the conditions set out in this legend.
37
 
38
    IXI accepts no liability whatsoever in relation to any use to
39
    which this program may be put and gives no warranty as to the
40
    program's suitability for any purpose.
41
 
42
    All rights reserved.
43
 
44
    Copyright (c) 1995, 1996
45
*/
46
 
47
 
48
/* SCO CID (IXI) Display.h,v 1.1 1996/08/08 14:12:32 wendland Exp */
49
 
50
+USE "motif/1_2", "Xm/Xm.h";
51
+USE "x5/t", "X11/Shell.h";
52
+USE "motif/1_2", "Xm/DragC.h";
53
+USE "motif/1_2", "Xm/DropSMgr.h";
54
 
55
 
56
+CONST int XmDRAG_NONE;
57
+CONST int XmDRAG_DROP_ONLY;
58
+CONST int XmDRAG_PREFER_PREREGISTER;
59
+CONST int XmDRAG_PREREGISTER;
60
+CONST int XmDRAG_PREFER_DYNAMIC;
61
+CONST int XmDRAG_DYNAMIC;
62
+CONST int XmDRAG_PREFER_RECEIVER;
63
 
64
+TYPE (struct) _XmDisplayRec;
65
+TYPE (struct) _XmDisplayClassRec;
66
+TYPEDEF _XmDisplayRec *XmDisplay;
67
+TYPEDEF _XmDisplayRec *XmDisplayObject;
68
+TYPEDEF _XmDisplayClassRec *XmDisplayClass;
69
 
70
+EXP lvalue WidgetClass xmDisplayClass;
71
 
72
+MACRO Widget XmGetDisplay(Widget);
73
 
74
+FUNC Widget XmGetDragContext(Widget, Time);
75
 
76
+FUNC Widget XmGetXmDisplay(Display *);
77
 
78