home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1999 / MacHack 1999.toast / Papers / aSEPiA example source / Application / CPluginTable.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-06-25  |  537 b   |  26 lines  |  [TEXT/CWIE]

  1. /*---------------------------------------------------------------
  2.  
  3.     CPluginTable.h
  4.     
  5.     A table listing plugins
  6.  
  7. ---------------------------------------------------------------*/
  8.  
  9. #include <LTableView.h>
  10.  
  11. class CPluginTable:public LTableView
  12. {
  13. public:
  14.     enum { class_ID = FOUR_CHAR_CODE('PlgT') };
  15.  
  16.                         CPluginTable(LStream *inStream);
  17.  
  18.     virtual void        ClickCell(    const STableCell        &inCell,
  19.                                 const SMouseDownEvent    &inMouseDown);
  20.  
  21.     virtual void        DrawCell( const STableCell        &inCell,
  22.                                 const Rect                &inLocalRect);
  23.                                 
  24.  
  25.  
  26. };