home *** CD-ROM | disk | FTP | other *** search
/ NeXT Education Software Sampler 1992 Fall / NeXT Education Software Sampler 1992 Fall.iso / Programming / Source / TravelingSalesman / Source_code / PlotController.h < prev    next >
Encoding:
Text File  |  1991-09-03  |  698 b   |  27 lines

  1. /* 
  2.  * PlotController.h -- Interface file for the PlotController class 
  3.  *
  4.  * You may freely copy, distribute, and reuse the code in this example.
  5.  * NeXT disclaims any warranty of any kind, expressed or implied, as to its
  6.  * fitness for any particular use.
  7.  *
  8.  */
  9.  
  10. #import <objc/Object.h>
  11. #import <dpsclient/event.h>
  12.  
  13. @interface PlotController:Object
  14. {
  15.     id    theScrollView;
  16.     id    inputText;
  17.     id    thePlotView;
  18.     id    NukeCities;
  19. }
  20. - appDidInit:sender; 
  21. - textDidGetKeys:theText isEmpty:(BOOL)flag;
  22. - plotView:sender providePoints:(NXStream **)stream;
  23. - NukeCities:sender;
  24. - plotView:sender pointDidChange:(NXPoint *)aPoint;
  25. - requestPlot:pasteboard userData:(const char *)userData error:(char **)msg;
  26. @end
  27.