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

  1.  
  2. /* $Id: DataPane.h,v 1.1.1.1 1993/03/18 03:31:31 davis Exp $ */
  3.  
  4. #import <objc/List.h>
  5. #import "Pane.h"
  6.  
  7.  
  8. @interface DataPane:Pane
  9. {
  10.     BOOL didSwap;        /* True if we just became the current pane */
  11.  
  12.     id  dummyFormCellX;
  13.     id  dummyFormCellY;
  14.     List *functionObjects;
  15.     id  functionsScrollView;
  16.     id  functionsMatrix;
  17.     id  functionsForm;
  18.     id  functionsTitleField;
  19.     id  functionsStyleMatrix;
  20.     id  pointsStyleMatrix;
  21.     id  pointsStyleLabel;
  22.     id  lineStyleMatrix;
  23.     id  lineStyleLabel;
  24.  
  25.     id  deleteFunctionButton;
  26.     id  modifyFunctionButton;
  27. }
  28.  
  29.  
  30. - init;
  31.  
  32. - selectControl:sender;            /** Overridden from Pane    **/
  33. - updateStatus:aStatus doc:aDoc;
  34. - didSwapIn:sender;
  35.  
  36. - doSetDummy:sender;
  37. - findDataFile:sender;
  38.  
  39. - selectFunction:sender;
  40. - deleteSelectedFunctions:sender;
  41. - modifySelectedFunction:sender;
  42. - addFunction:sender;
  43.  
  44. - setFunctionTitle:sender;
  45. - setFunctionStyle:sender;
  46. - setFunctionPointsStyle:sender;
  47. - setFunctionLineStyle:sender;
  48.  
  49. - addDataFile:(const char *)aPath;
  50.  
  51. @end
  52.