Initial import of the CDE 2.1.30 sources from the Open Group.
[oweals/cde.git] / cde / lib / DtSvc / DtUtil2 / HourGlass.h
1 /* $XConsortium: HourGlass.h /main/4 1995/10/26 15:23:08 rswiston $ */
2 /*
3  * (c) Copyright 1993, 1994 Hewlett-Packard Company                     *
4  * (c) Copyright 1993, 1994 International Business Machines Corp.       *
5  * (c) Copyright 1993, 1994 Sun Microsystems, Inc.                      *
6  * (c) Copyright 1993, 1994 Novell, Inc.                                *
7  */
8 /************************************<+>*************************************
9  ****************************************************************************
10  **
11  **   File:       HourGlass.h
12  **
13  **   Project:     DT
14  **
15  **   Description: Public include file for HourGlass Library.
16  **
17  **
18  **   (c) Copyright 1987, 1988, 1989 by Hewlett-Packard Company
19  **
20  **
21  **
22  ****************************************************************************
23  ************************************<+>*************************************/
24
25 #ifndef _hourglass_h
26 #define _hourglass_h
27
28 /* _DtGetHourGlassCursor -
29  *
30  *   Builds and returns the appropriate HourGlass cursor.
31  */
32
33 extern Cursor _DtGetHourGlassCursor( 
34                         Display *dpy) ;
35
36 /* _DtTurnOnHourGlass -
37  *
38  *   Gets and displays an hourglass cursor in the window of the widget
39  *   which is passed in to the funciton.
40  */
41
42 extern void _DtTurnOnHourGlass( 
43                         Widget w) ;
44  
45  /*  Widget widget;
46   *
47   * widget is the toplevel shell of the window you want
48   * the hourglass cursor to appear in.
49   */
50
51
52 /* _DtTurnOffHourGlass -
53  *
54  *   Removes the hourglass cursor from the window of the widget
55  *   which is passed in to the funciton.
56  */
57
58 extern void _DtTurnOffHourGlass( 
59                         Widget w) ;
60   
61  /* Widget widget;
62   *
63   *  widget is the toplevel shell of the window you want
64   *  to remove hourglass cursor from.
65   */
66
67
68 #endif /* _hourglass_h */
69 /* DON'T ADD ANYTHING AFTER THIS #endif */
70
71
72