home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1995 August / NEBULA.mdf / SourceCode / Plotter / PlotController.h < prev    next >
Encoding:
Text File  |  1991-01-27  |  466 b   |  18 lines

  1. /* PlotController.h -- Interface file for the PlotController class */
  2.  
  3. #import <objc/Object.h>
  4. #import <dpsclient/event.h>
  5.  
  6. @interface PlotController:Object
  7. {
  8.     id    theScrollView;
  9.     id    inputText;
  10.     id    thePlotView;
  11. }
  12. - appDidInit:sender; 
  13. - textDidGetKeys:theText isEmpty:(BOOL)flag;
  14. - plotView:sender providePoints:(NXStream **)stream;
  15. - plotView:sender pointDidChange:(NXPoint *)aPoint;
  16. - requestPlot:pasteboard userData:(const char *)userData error:(char **)msg;
  17. @end
  18.