home *** CD-ROM | disk | FTP | other *** search
- /* ==========================================================================
- **
- ** ScrollingList.h
- **
- ** ©1991, 1992 WILLISoft
- **
- ** ==========================================================================
- */
-
- #ifndef SCROLLINGLIST_H
- #define SCROLLINGLIST_H
-
- #include "StringLister.h"
- #include "ListBrowser.h"
- #include "VScroller.h"
-
-
- typedef struct ScrollingList
- {
- StringLister slister;
- pcg_3DPens Pens;
- ListBrowser list;
- VScroller vscroller;
- } ScrollingList;
-
-
- void ScrollingList_Init(
- #ifdef ANSI_HEADERS
- ScrollingList *self,
- PIXELS LeftEdge,
- PIXELS TopEdge,
- PIXELS Width,
- PIXELS Height,
- pcg_3DPens Pens,
- BOOL SelectMany
- #endif
- );
-
-
-
-
- USHORT ScrollingList_SetYOffset(
- #ifdef ANSI_HEADERS
- ScrollingList *Browser,
- USHORT YOffset
- #endif
- );
-
-
-
- #endif
-