1 /*
2  * Motif
3  *
4  * Copyright (c) 1987-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these librararies and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  *
23  */
24 /*
25  * HISTORY
26  */
27 /* $XConsortium: DragOverSI.h /main/6 1995/07/14 10:26:24 drk $ */
28 #ifndef _XmDragOverSI_h
29 #define _XmDragOverSI_h
30 
31 #include <Xm/DragOverSP.h>
32 
33 #ifdef __cplusplus
34 extern "C" {
35 #endif
36 
37 /********    Private Function Declarations for DragOverS.c    ********/
38 
39 extern void _XmDragOverHide(
40                         Widget w,
41 #if NeedWidePrototypes
42                         int clipOriginX,
43                         int clipOriginY,
44 #else
45                         Position clipOriginX,
46                         Position clipOriginY,
47 #endif /* NeedWidePrototypes */
48                         XmRegion clipRegion) ;
49 extern void _XmDragOverShow(
50                         Widget w,
51 #if NeedWidePrototypes
52                         int clipOriginX,
53                         int clipOriginY,
54 #else
55                         Position clipOriginX,
56                         Position clipOriginY,
57 #endif /* NeedWidePrototypes */
58                         XmRegion clipRegion) ;
59 extern void _XmDragOverMove(
60                         Widget w,
61 #if NeedWidePrototypes
62                         int x,
63                         int y) ;
64 #else
65                         Position x,
66                         Position y) ;
67 #endif /* NeedWidePrototypes */
68 extern void _XmDragOverChange(
69                         Widget w,
70 #if NeedWidePrototypes
71                         unsigned int dropSiteStatus) ;
72 #else
73                         unsigned char dropSiteStatus) ;
74 #endif /* NeedWidePrototypes */
75 extern void _XmDragOverFinish(
76                         Widget w,
77 #if NeedWidePrototypes
78                         unsigned int completionStatus) ;
79 #else
80                         unsigned char completionStatus) ;
81 #endif /* NeedWidePrototypes */
82 
83 extern Cursor _XmDragOverGetActiveCursor(
84 			Widget w) ;
85 extern void _XmDragOverSetInitialPosition(
86 			Widget w,
87 #if NeedWidePrototypes
88 			int initialX,
89 			int initialY) ;
90 #else
91 			Position initialX,
92 			Position initialY) ;
93 #endif /* NeedWidePrototypes */
94 
95 /********    End Private Function Declarations    ********/
96 
97 #ifdef __cplusplus
98 }  /* Close scope of 'extern "C"' declaration which encloses file. */
99 #endif
100 
101 #endif /* _XmDragOverSI_h */
102 /* DON'T ADD ANYTHING AFTER THIS #endif */
103