home *** CD-ROM | disk | FTP | other *** search
/ Garbo / Garbo.cdr / mac / source / netnwscd.sit / CArticleList.h < prev    next >
Text File  |  1990-10-16  |  571b  |  33 lines

  1. /*
  2.  * CArticleList
  3.  *
  4.  *     SUPERCLASS = CListWind
  5.  *
  6.  */
  7.  
  8. #define _H_CArticleList
  9.  
  10. #include <CBureaucrat.h>
  11. #include "CListWind.h"
  12. #include "newslists.h"
  13.  
  14. struct CArticleList : CListWind {            /* Class Declaration                */
  15.     grp_t    *groupptr;
  16.     CBureaucrat *glist;
  17.     int        lastclickline;
  18.     
  19.     void    IArticleList(CBureaucrat *grouplist, grp_t *gp);
  20.     void    Dispose(void);
  21.     
  22.     Boolean    Close(Boolean quitting);
  23.  
  24.     void    DoCommand(long theCommand);
  25.     void    UpdateMenus(void);
  26.     
  27.     void    Dawdle(long *maxSleep);
  28.     
  29.     void    ReDo(void);
  30.     void     ModLine(art_t *ap, int what);
  31.     void    ClickLine(int line);
  32. };
  33.