home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Educational / Dual / Source / AbstractView.h < prev    next >
Encoding:
Text File  |  1995-06-12  |  438 b   |  27 lines

  1. // AbstractView.h
  2.  
  3. #import <appkit/appkit.h>
  4.  
  5. @interface AbstractView:View
  6. {
  7.     id controller;
  8.     id xMinField;
  9.     id xMaxField;
  10.     id yMinField;
  11.     id yMaxField;
  12.     id showLabels;
  13.     float xMin, xMax, yMin, yMax;
  14. }
  15.  
  16. - initFrame:(const NXRect *)frameRect;
  17. - drawSelf:(const NXRect *)rects :(int)rectCount;
  18. - (BOOL)acceptsFirstResponder;
  19. - copy:sender;
  20. - zoomIn:sender;
  21. - zoomOut:sender;
  22. - newLimits:sender;
  23. - awakeFromNib;
  24. - (void)displayLimits;
  25.  
  26. @end
  27.