home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / programming / gui / precog2_1.lha / Precognition2_1 / include / CheckBox.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-10-13  |  883 b   |  40 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 "parms.h"
  19. #include "BoolGadget.h"
  20.  
  21.  
  22. typedef BoolGadget CheckBox;
  23.  
  24.  
  25. void CheckBox_Init __PARMS((
  26.  
  27.                     CheckBox   *self,
  28.                     PIXELS      LeftEdge,
  29.                     PIXELS      TopEdge,
  30.                     pcg_3DPens  Pens,
  31.                     char       *title,
  32.                     BOOL        Selected
  33.                   ));
  34.  
  35. /* Additions for Builder Prototypes -- EDB */
  36.  
  37. struct ValuatorClass *CheckBoxClass __PARMS(( void ));
  38.  
  39. #endif
  40.