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

  1. /* ==========================================================================
  2. **
  3. **                               BoolGadget.h
  4. **
  5. ** Object<GraphicObject<Interactor<Valuator<BoolGadget
  6. **
  7. ** A BoolGadget is your basic boolean gadget with a 3D border, and
  8. ** a text label in its center.
  9. **
  10. ** See Interactor.h, Valuator.h for the list of functions supported by a
  11. ** BoolGadget.
  12. **
  13. **
  14. ** ©1991 WILLISoft
  15. **
  16. ** ==========================================================================
  17. */
  18.  
  19. #ifndef BOOLGADGET_H
  20. #define BOOLGADGET_H
  21.  
  22. #include "precognition3d.h"
  23. #include "Valuator.h"
  24. #include "EmbossedGadget.h"
  25.  
  26.  
  27. /* Object<GraphicObject<Interactor<Valuator<BoolGadget */
  28.  
  29. typedef EmbossedGadget BoolGadget; /* Gadget with a 3D border. */
  30.  
  31.  
  32. void BoolGadget_Init( BoolGadget *self,
  33.                       PIXELS      LeftEdge,
  34.                       PIXELS      TopEdge,
  35.                       PIXELS      Width,
  36.                       PIXELS      Height,
  37.                       pcg_3DPens  Pens,
  38.                       char       *Label );
  39.  
  40. #endif
  41.