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

  1. /* ==========================================================================
  2. **
  3. **                            ScrollingList.h
  4. **
  5. ** ©1991 WILLISoft
  6. **
  7. ** ==========================================================================
  8. */
  9.  
  10. #ifndef SCROLLINGLIST_H
  11. #define SCROLLINGLIST_H
  12.  
  13. #include "StringLister.h"
  14. #include "ListBrowser.h"
  15. #include "VScroller.h"
  16.  
  17.  
  18. typedef struct ScrollingList
  19.    {
  20.       StringLister       slister;
  21.       pcg_3DPens         Pens;
  22.       ListBrowser        list;
  23.       VScroller          vscroller;
  24.    } ScrollingList;
  25.  
  26.  
  27. void ScrollingList_Init(  ScrollingList *self,
  28.                           PIXELS         LeftEdge,
  29.                           PIXELS         TopEdge,
  30.                           PIXELS         Width,
  31.                           PIXELS         Height,
  32.                           pcg_3DPens     Pens,
  33.                           BOOL           SelectMany );
  34.  
  35.  
  36.  
  37.  
  38. USHORT ScrollingList_SetYOffset( ScrollingList *Browser,
  39.                                  USHORT         YOffset );
  40.  
  41.  
  42.  
  43. #endif
  44.