Convert uses of XKeycodeToKeysym (deprecated) to XkbKeycodeToKeysym
[oweals/cde.git] / cde / lib / DtSvc / DtUtil2 / HourGlass.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: HourGlass.h /main/4 1995/10/26 15:23:08 rswiston $ */
24 /*
25  * (c) Copyright 1993, 1994 Hewlett-Packard Company                     *
26  * (c) Copyright 1993, 1994 International Business Machines Corp.       *
27  * (c) Copyright 1993, 1994 Sun Microsystems, Inc.                      *
28  * (c) Copyright 1993, 1994 Novell, Inc.                                *
29  */
30 /************************************<+>*************************************
31  ****************************************************************************
32  **
33  **   File:       HourGlass.h
34  **
35  **   Project:     DT
36  **
37  **   Description: Public include file for HourGlass Library.
38  **
39  **
40  **   (c) Copyright 1987, 1988, 1989 by Hewlett-Packard Company
41  **
42  **
43  **
44  ****************************************************************************
45  ************************************<+>*************************************/
46
47 #ifndef _hourglass_h
48 #define _hourglass_h
49
50 /* _DtGetHourGlassCursor -
51  *
52  *   Builds and returns the appropriate HourGlass cursor.
53  */
54
55 extern Cursor _DtGetHourGlassCursor( 
56                         Display *dpy) ;
57
58 /* _DtTurnOnHourGlass -
59  *
60  *   Gets and displays an hourglass cursor in the window of the widget
61  *   which is passed in to the funciton.
62  */
63
64 extern void _DtTurnOnHourGlass( 
65                         Widget w) ;
66  
67  /*  Widget widget;
68   *
69   * widget is the toplevel shell of the window you want
70   * the hourglass cursor to appear in.
71   */
72
73
74 /* _DtTurnOffHourGlass -
75  *
76  *   Removes the hourglass cursor from the window of the widget
77  *   which is passed in to the funciton.
78  */
79
80 extern void _DtTurnOffHourGlass( 
81                         Widget w) ;
82   
83  /* Widget widget;
84   *
85   *  widget is the toplevel shell of the window you want
86   *  to remove hourglass cursor from.
87   */
88
89
90 #endif /* _hourglass_h */
91 /* DON'T ADD ANYTHING AFTER THIS #endif */
92
93
94