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

  1. /* ==========================================================================
  2. **
  3. **                               IntegerGadget.h
  4. **
  5. ** PObject<GraphicObject<Interactor<Valuator<StringGadget<IntegerGadget
  6. **
  7. **
  8. ** ©1991 WILLISoft
  9. **
  10. */
  11.  
  12. #ifndef INTEGERGADGET_H
  13. #define INTEGERGADGET_H
  14.  
  15.  
  16. #include "StringGadget.h"
  17. #include "Valuator.h"
  18.  
  19.  
  20. typedef StringGadget IntegerGadget;
  21.  
  22.  
  23. void IntegerGadget_Init( 
  24.    #ifdef ANSI_HEADERS
  25.                         IntegerGadget *gadget,
  26.                          PIXELS        LeftEdge,
  27.                          PIXELS        TopEdge,
  28.                          PIXELS        Width,
  29.                          USHORT        nChars,
  30.                          pcg_3DPens    Pens,
  31.                          char         *label 
  32.    #endif
  33.                        );
  34.  
  35. #endif
  36.