home *** CD-ROM | disk | FTP | other *** search
/ The CDPD Public Domain Collection for CDTV 3 / CDPDIII.bin / pd / programming / utils / precognition / include / checkbox.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-12-24  |  785 b   |  36 lines

  1. /* ==========================================================================
  2. **
  3. **                          CheckBox.h
  4. **
  5. ** PObject<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( 
  25.    #ifdef ANSI_HEADERS
  26.                     CheckBox   *self,
  27.                     PIXELS      LeftEdge,
  28.                     PIXELS      TopEdge,
  29.                     pcg_3DPens  Pens,
  30.                     char       *title,
  31.                     BOOL        Selected 
  32.    #endif
  33.                   );
  34.  
  35. #endif
  36.