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

  1. /* ==========================================================================
  2. **
  3. **                               BoolGadget.h
  4. **
  5. ** PObject<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, 1992 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. typedef EmbossedGadget BoolGadget; /* Gadget with a 3D border. */
  28.  
  29.  
  30. void BoolGadget_Init( 
  31.    #ifdef ANSI_HEADERS
  32.                       BoolGadget *self,
  33.                       PIXELS      LeftEdge,
  34.                       PIXELS      TopEdge,
  35.                       PIXELS      Width,
  36.                       PIXELS      Height,
  37.                       pcg_3DPens  Pens,
  38.                       char       *title 
  39.    #endif
  40.                     );
  41.  
  42. #endif
  43.