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

  1. /* ==========================================================================
  2. **
  3. **                          CheckBox.h
  4. **
  5. ** Object<GraphicObject<Interactor<Valuator<BoolGadget<CheckBox
  6. **
  7. ** A 'CheckBox' is a gadget which toggles a check mark on and off.
  8. **
  9. ** ©1991 WILLISoft
  10. **
  11. ** ==========================================================================
  12. */
  13.  
  14. #ifndef CHECKBOX_H
  15. #define CHECKBOX_H
  16.  
  17.  
  18. #include "BoolGadget.h"
  19.  
  20.  
  21. typedef BoolGadget CheckBox;
  22.  
  23.  
  24. void CheckBox_Init( CheckBox   *self,
  25.                     PIXELS      LeftEdge,
  26.                     PIXELS      TopEdge,
  27.                     pcg_3DPens  Pens,
  28.                     char       *Label,
  29.                     BOOL        Selected );
  30.  
  31. #endif
  32.