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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2. * $KK: SmeThreeDP.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 _XawSmeThreeDP_h
  25. #define _XawSmeThreeDP_h
  26. #include <X11/Xaw3d/SmeThreeD.h>
  27. #include <X11/Xaw3d/SmeP.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.     GC     erase_GC;
  39.     XtPointer     user_data;
  40.     Boolean     be_nice_to_cmap;
  41.     Boolean     shadowed;
  42.   } SmeThreeDPart;
  43. /* Full instance record declaration */
  44. typedef struct _SmeThreeDRec {
  45.     ObjectPart     object;
  46.     RectObjPart     rectangle;
  47.     SmePart     sme;
  48.     SmeThreeDPart   sme_threeD;
  49.   } SmeThreeDRec;
  50. typedef void (*XawSme3dShadowDrawProc)(
  51. #if NeedFunctionPrototypes
  52.     Widget
  53. #endif
  54. );
  55. typedef struct {
  56.     XawSme3dShadowDrawProc shadowdraw;
  57.   } SmeThreeDClassPart;
  58. /* Full class record declaration. */
  59. typedef struct _SmeThreeDClassRec {
  60.     RectObjClassPart rect_class;
  61.     SmeClassPart sme_class;
  62.     SmeThreeDClassPart sme_threeD_class;
  63.   } SmeThreeDClassRec;
  64. /* Class pointer. */
  65. extern SmeThreeDClassRec smeThreeDClassRec;
  66. #define XtInheritXawSme3dShadowDraw ((XawSme3dShadowDrawProc) _XtInherit)
  67. #endif /* _XawSmeThreeDP_h */