home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / XAP / XFILEMAN / XFILEMAN.TAR / xfilemanager / Clock.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-09-22  |  1.3 KB  |  51 lines

  1. /*
  2.  * $XConsortium: Clock.h,v 1.7 90/12/01 13:04:08 rws Exp $
  3.  */
  4.  
  5. #ifndef _XtClock_h
  6. #define _XtClock_h
  7.  
  8. /***********************************************************************
  9.  *
  10.  * Clock 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.  minute             Foreground        Pixel        Black
  22.  hour             Foreground        Pixel        Black
  23.  height             Height        int        120
  24.  mappedWhenManaged   MappedWhenManaged    Boolean        True
  25.  width             Width        int        120
  26.  x             Position        int        0
  27.  y             Position        int        0
  28.  
  29. */
  30.  
  31. #define XtNminute    "minute"
  32. #define XtNhour        "hour"
  33. #define XtNjewel    "jewel"
  34.  
  35. #define XtNshapeWindow    "shapeWindow"
  36. #define XtCShapeWindow    "ShapeWindow"
  37. #define XtNtransparent    "transparent"
  38. #define XtCTransparent    "Transparent"
  39.  
  40. #define XtNjewelSize    "jewelSize"
  41. #define XtNborderSize    "borderSize"
  42. #define XtCBorderSize    "BorderSize"
  43.  
  44. typedef struct _ClockRec *ClockWidget;  /* completely defined in ClockPrivate.h */
  45. typedef struct _ClockClassRec *ClockWidgetClass;    /* completely defined in ClockPrivate.h */
  46.  
  47. extern WidgetClass clockWidgetClass;
  48.  
  49. #endif /* _XtClock_h */
  50. /* DON'T ADD STUFF AFTER THIS #endif */
  51.