home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 594b.lha / Precognition_rel1 / CycleGadget.h < prev    next >
C/C++ Source or Header  |  1991-12-12  |  596b  |  27 lines

  1. #ifndef CYCLEGADGET_H
  2. #define CYCLEGADGET_H
  3.  
  4.  
  5. #include "BoolGadget.h"
  6. #include "StringList.h"
  7.  
  8. /* Object<GraphicObject<Interactor<Valuator<BoolGadget<CycleGadget */
  9.  
  10. typedef struct CycleGadget
  11. {
  12.    BoolGadget  bg;
  13.    StringList  sl;
  14.    IntuiText   Format;
  15. } CycleGadget;
  16.  
  17.  
  18. void CycleGadget_Init( CycleGadget *cyclegadget,
  19.                        PIXELS       LeftEdge,
  20.                        PIXELS       TopEdge,
  21.                        PIXELS       Width,
  22.                        pcg_3DPens   Pens,
  23.                        char        *label,
  24.                        char       **Choices );
  25.  
  26. #endif
  27.