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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2. * $KK: ThreeDP.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 _ThreeDP_h
  25. #define _ThreeDP_h
  26. #include <X11/Xaw3d/ThreeD.h>
  27. #include <X11/Xaw3d/SimpleP.h>
  28. typedef struct {
  29.     Dimension shadow_width;
  30.     Pixel top_shadow_pixel;
  31.     Pixel bot_shadow_pixel;
  32.     Pixmap top_shadow_pxmap;
  33.     Pixmap bot_shadow_pxmap;
  34.     int top_shadow_contrast;
  35.     int bot_shadow_contrast;
  36.     GC top_shadow_GC;
  37.     GC bot_shadow_GC;
  38.     XtPointer user_data;
  39.     Boolean be_nice_to_cmap;
  40.     Boolean invert_border;
  41.   } ThreeDPart;
  42. /* Full instance record declaration */
  43. typedef struct _ThreeDRec {
  44.     CorePart core;
  45.     SimplePart simple;
  46.     ThreeDPart threeD;
  47.   } ThreeDRec;
  48. typedef struct {
  49.     void (*shadowdraw)();
  50.   } ThreeDClassPart;
  51. #define XtInheritXaw3dShadowDraw ((void (*)())_XtInherit)
  52. /* Full class record declaration. */
  53. typedef struct _ThreeDClassRec {
  54.     CoreClassPart core_class;
  55.     SimpleClassPart simple_class;
  56.     ThreeDClassPart threeD_class;
  57.   } ThreeDClassRec;
  58. /* Class pointer. */
  59. extern ThreeDClassRec threeDClassRec;
  60. #endif /* _ThreeDP_h */