home *** CD-ROM | disk | FTP | other *** search
/ Garbo / Garbo.cdr / mac / source / netnwscd.sit / CGroupList.h < prev    next >
Text File  |  1990-10-13  |  458b  |  28 lines

  1. /*
  2.  * CGroupList
  3.  *
  4.  *     SUPERCLASS = CListWind
  5.  *
  6.  */
  7.  
  8. #define _H_CGroupList
  9.  
  10. #include "CListWind.h"
  11. #include "newslists.h"
  12.  
  13. struct CGroupList : CListWind {            /* Class Declaration                */
  14.  
  15.     Boolean    allActive;        /* use entire group list */
  16.     int            lastclickline;
  17.  
  18.     void    IGroupList(void);
  19.     
  20.     void    DoCommand(long theCommand);
  21.     void    UpdateMenus(void);
  22.     void    Dawdle(long *maxSleep);
  23.     
  24.     void    ReDo(void);
  25.     void     ReDoLine(grp_t *line_gp);
  26.     void    ClickLine(int line);
  27. };
  28.