home *** CD-ROM | disk | FTP | other *** search
- // Copyright 1991 (c), Lake View Software
- // 4321 Harborough Rd.
- // Columbus, OH 43220
- // Window Pick list class
-
- #include "winobj.hpp"
-
-
- class WinPick:public WinObj
- {
- protected:
- char **pick_list;
- int count;
- int bar_attr;
- int pointer,cursor;
- void up();
- void down();
- public:
- WinPick();
- ~WinPick(){close();};
-
- void prompt (char **list,int num=-1);
- int read();
- int set_barattr(int attr); // returns old value
- };
-