home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / X / mit / demos / xeyes / Eyes.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-12-01  |  1.2 KB  |  45 lines

  1. /*
  2. * $XConsortium: Eyes.h,v 1.7 90/12/01 13:04:51 rws Exp $
  3. */
  4.  
  5. #ifndef _XtEyes_h
  6. #define _XtEyes_h
  7.  
  8. /***********************************************************************
  9.  *
  10.  * Eyes Widget
  11.  *
  12.  ***********************************************************************/
  13.  
  14. /* Parameters:
  15.  
  16.  Name             Class        RepType        Default Value
  17.  ----             -----        -------        -------------
  18.  background         Background        pixel        White
  19.  border             BorderColor    pixel        Black
  20.  borderWidth         BorderWidth    int        1
  21.  foreground         Foreground        Pixel        Black
  22.  outline         Outline        Pixel        Black
  23.  height             Height        int        120
  24.  mappedWhenManaged   MappedWhenManaged    Boolean        True
  25.  reverseVideo         ReverseVideo    Boolean        False
  26.  width             Width        int        120
  27.  x             Position        int        0
  28.  y             Position        int        0
  29.  
  30. */
  31.  
  32. #define XtNoutline    "outline"
  33. #define XtNcenterColor    "center"
  34.  
  35. #define XtNshapeWindow    "shapeWindow"
  36. #define XtCShapeWindow    "ShapeWindow"
  37.  
  38. typedef struct _EyesRec *EyesWidget;  /* completely defined in EyesPrivate.h */
  39. typedef struct _EyesClassRec *EyesWidgetClass;    /* completely defined in EyesPrivate.h */
  40.  
  41. extern WidgetClass eyesWidgetClass;
  42.  
  43. #endif /* _XtEyes_h */
  44. /* DON'T ADD STUFF AFTER THIS #endif */
  45.