Cleanup of -Wpointer-compare warnings.
[oweals/cde.git] / cde / lib / DtHelp / HourGlassI.h
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-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 libraries 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 /* $XConsortium: HourGlassI.h /main/5 1995/10/26 12:27:38 rswiston $ */
24 /************************************<+>*************************************
25  ****************************************************************************
26  **
27  **   File:       HourGlassI.h
28  **
29  **   Project:     Cache Creek
30  **
31  **   Description: Internal include file for HourGlass Library.
32  **
33  **
34  **  (c) Copyright 1987, 1988, 1989, 1990, 1991, 1992 Hewlett-Packard Company
35  **
36  **  (c) Copyright 1993, 1994 Hewlett-Packard Company
37  **  (c) Copyright 1993, 1994 International Business Machines Corp.
38  **  (c) Copyright 1993, 1994 Sun Microsystems, Inc.
39  **  (c) Copyright 1993, 1994 Novell, Inc.
40  **
41  **
42  **
43  ****************************************************************************
44  ************************************<+>*************************************/
45
46 #ifndef _hourglassI_h
47 #define _hourglassI_h
48
49 /* DtHelpGetHourGlassCursor -
50  *
51  *   Builds and returns the appropriate HourGlass cursor.
52  */
53
54 extern Cursor DtHelpGetHourGlassCursor( 
55                         Display *dpy) ;
56
57 /* DtHelpTurnOnHourGlass -
58  *
59  *   Gets and displays an hourglass cursor in the window of the widget
60  *   which is passed in to the funciton.
61  */
62
63 extern void _DtHelpTurnOnHourGlass( 
64                         Widget w) ;
65  
66  /*  Widget widget;
67   *
68   * widget is the toplevel shell of the window you want
69   * the hourglass cursor to appear in.
70   */
71
72
73 /* DtHelpTurnOffHourGlass -
74  *
75  *   Removes the hourglass cursor from the window of the widget
76  *   which is passed in to the funciton.
77  */
78
79 extern void _DtHelpTurnOffHourGlass( 
80                         Widget w) ;
81   
82  /* Widget widget;
83   *
84   *  widget is the toplevel shell of the window you want
85   *  to remove hourglass cursor from.
86   */
87
88 /* DtHelpTurnOnNoEnter -
89  *
90  *   Removes the hourglass cursor from the window of the widget
91  *   which is passed in to the funciton.
92  */
93
94 extern void _DtHelpTurnOnNoEnter( 
95                         Widget w) ;
96
97  /* Widget widget;
98   *
99   *  widget is the toplevel shell of the window you want
100   *  to remove hourglass cursor from.
101   */
102
103 /* DtHelpTurnOffNoEnter -
104  *
105  *   Removes the hourglass cursor from the window of the widget
106  *   which is passed in to the funciton.
107  */
108
109 extern void _DtHelpTurnOffNoEnter( 
110                         Widget w) ;
111
112  /* Widget widget;
113   *
114   *  widget is the toplevel shell of the window you want
115   *  to remove hourglass cursor from.
116   */
117
118
119 #endif /* _hourglassI_h */
120 /* DON'T ADD ANYTHING AFTER THIS #endif */