home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Graphics / Gnuplot / Source / CellScrollView.h < prev    next >
Encoding:
Text File  |  1993-03-18  |  612 b   |  27 lines

  1.  
  2. /* $Id: CellScrollView.h,v 1.1.1.1 1993/03/18 03:31:22 davis Exp $ */
  3.  
  4. /*
  5.  *  This ScrollView/Matrix combo is based heavily on the NeXTSTEP 
  6.  *  MiniExample CellScrollView by R. Dunbar Poor and Mai Nguyen.
  7.  */
  8.  
  9. #import <appkit/ScrollView.h>
  10. #import <objc/List.h>
  11.  
  12. @interface CellScrollView:ScrollView
  13. {
  14.     id    cellMatrix;            /* Underlying Matrix        */
  15.     id    cellClass;            /* The class object of the cell    */
  16. }
  17.  
  18. - init;
  19. - initFrame:(const NXRect *)frameRect;
  20. - initMatrix:classId;            /* Must be called before used    */
  21. - free;
  22.  
  23. - cellMatrix;
  24. - loadCellsFrom:(List *)cellObjects;    /* Reload & redisplay the list    */
  25.  
  26. @end
  27.