home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1995 August / NEBULA.mdf / SourceCode / Database / SimpleTableView-1 / DataTableView.h < prev    next >
Encoding:
Text File  |  1993-06-01  |  620 b   |  20 lines

  1. // -------------------------------------------------------------------------------------
  2. //  TableView
  3. //  This software is without warranty of any kind.  Use at your own risk.
  4. // -------------------------------------------------------------------------------------
  5.  
  6. #import <dbkit/dbkit.h>
  7.  
  8. // -------------------------------------------------------------------------------------
  9. @interface TableView : DBTableView
  10. {
  11.     int                    lastMouseUpRow;
  12.     int                    lastMouseUpColumn;
  13. }
  14.  
  15. // -------------------------------------------------------------------------------------
  16. - (int)selectedCellRow;
  17. - (int)selectedCellColumn;
  18.  
  19. @end
  20.