HourGlassI.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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 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. /* $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. #ifndef _hourglassI_h
  46. #define _hourglassI_h
  47. /* DtHelpGetHourGlassCursor -
  48. *
  49. * Builds and returns the appropriate HourGlass cursor.
  50. */
  51. extern Cursor DtHelpGetHourGlassCursor(
  52. Display *dpy) ;
  53. /* DtHelpTurnOnHourGlass -
  54. *
  55. * Gets and displays an hourglass cursor in the window of the widget
  56. * which is passed in to the funciton.
  57. */
  58. extern void _DtHelpTurnOnHourGlass(
  59. Widget w) ;
  60. /* Widget widget;
  61. *
  62. * widget is the toplevel shell of the window you want
  63. * the hourglass cursor to appear in.
  64. */
  65. /* DtHelpTurnOffHourGlass -
  66. *
  67. * Removes the hourglass cursor from the window of the widget
  68. * which is passed in to the funciton.
  69. */
  70. extern void _DtHelpTurnOffHourGlass(
  71. Widget w) ;
  72. /* Widget widget;
  73. *
  74. * widget is the toplevel shell of the window you want
  75. * to remove hourglass cursor from.
  76. */
  77. /* DtHelpTurnOnNoEnter -
  78. *
  79. * Removes the hourglass cursor from the window of the widget
  80. * which is passed in to the funciton.
  81. */
  82. extern void _DtHelpTurnOnNoEnter(
  83. Widget w) ;
  84. /* Widget widget;
  85. *
  86. * widget is the toplevel shell of the window you want
  87. * to remove hourglass cursor from.
  88. */
  89. /* DtHelpTurnOffNoEnter -
  90. *
  91. * Removes the hourglass cursor from the window of the widget
  92. * which is passed in to the funciton.
  93. */
  94. extern void _DtHelpTurnOffNoEnter(
  95. Widget w) ;
  96. /* Widget widget;
  97. *
  98. * widget is the toplevel shell of the window you want
  99. * to remove hourglass cursor from.
  100. */
  101. #endif /* _hourglassI_h */
  102. /* DON'T ADD ANYTHING AFTER THIS #endif */