ThreeD.h
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:3k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2. * $KK: ThreeD.h,v 0.3 92/11/04 xx:xx:xx keithley Exp $
  3. */
  4. /***********************************************************
  5. Copyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts,
  6. and the Massachusetts Institute of Technology, Cambridge, Massachusetts.
  7. Copyright 1992 by Kaleb Keithley
  8.                         All Rights Reserved
  9. Permission to use, copy, modify, and distribute this software and its 
  10. documentation for any purpose and without fee is hereby granted, 
  11. provided that the above copyright notice appear in all copies and that
  12. both that copyright notice and this permission notice appear in 
  13. supporting documentation, and that the names of Digital, MIT, or Kaleb
  14. Keithley not be used in advertising or publicity pertaining to distribution 
  15. of the software without specific, written prior permission.  
  16. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  17. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  18. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  19. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  20. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  21. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  22. SOFTWARE.
  23. ******************************************************************/
  24. #ifndef _XawThreeD_h
  25. #define _XawThreeD_h
  26. /***********************************************************************
  27.  *
  28.  * ThreeD Widget
  29.  *
  30.  ***********************************************************************/
  31. #include <X11/Xmu/Converters.h>
  32. /* Parameters:
  33.  Name                 Class              RepType         Default Value
  34.  ----                 -----              -------         -------------
  35.  shadowWidth       ShadowWidth          Dimension     2
  36.  topShadowPixel       TopShadowPixel       Pixel         dynamic
  37.  bottomShadowPixel    BottomShadowPixel    Pixel         dynamic
  38.  topShadowContrast    TopShadowContrast    Int           20
  39.  bottomShadowContrast BottomShadowContrast Int           40
  40.  userData             UserData             XtPointer     NULL
  41.  beNiceToColormap     BeNiceToColormap     Boolean       False
  42.  invertBorder         InvertBorder         Boolean       False
  43. */
  44. #define XtNshadowWidth "shadowWidth"
  45. #define XtCShadowWidth "ShadowWidth"
  46. #define XtNtopShadowPixel "topShadowPixel"
  47. #define XtCTopShadowPixel "TopShadowPixel"
  48. #define XtNbottomShadowPixel "bottomShadowPixel"
  49. #define XtCBottomShadowPixel "BottomShadowPixel"
  50. #define XtNtopShadowContrast "topShadowContrast"
  51. #define XtCTopShadowContrast "TopShadowContrast"
  52. #define XtNbottomShadowContrast "bottomShadowContrast"
  53. #define XtCBottomShadowContrast "BottomShadowContrast"
  54. #define XtNbeNiceToColormap "beNiceToColormap"
  55. #define XtCBeNiceToColormap "BeNiceToColormap"
  56. #define XtNbeNiceToColourmap "beNiceToColormap"
  57. #define XtCBeNiceToColourmap "BeNiceToColormap"
  58. #define XtNinvertBorder "invertBorder"
  59. #define XtCInvertBorder "InvertBorder"
  60. #define XtNuserData "userData"
  61. #define XtCUserData "UserData"
  62. typedef struct _ThreeDRec *ThreeDWidget;
  63. typedef struct _ThreeDClassRec *ThreeDWidgetClass;
  64. extern WidgetClass threeDWidgetClass;
  65. _XFUNCPROTOBEGIN
  66. extern void Xaw3dComputeTopShadowRGB (
  67. #if NeedFunctionPrototypes
  68.     Widget  /* new */,
  69.     XColor* /* xcol_out */
  70. #endif
  71. );
  72. extern void Xaw3dComputeBottomShadowRGB (
  73. #if NeedFunctionPrototypes
  74.     Widget /* new */,
  75.     XColor* /* xcol_out */
  76. #endif
  77. );
  78. _XFUNCPROTOEND
  79. #endif /* _XawThreeD_h */