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

  1.  
  2. /* $Id: TicOptionsPanel.h,v 1.1.1.1 1993/03/18 03:36:30 davis Exp $ */
  3.  
  4. #import "OptionsPanel.h"
  5. #import <objc/List.h>
  6.  
  7. @interface TicOptionsPanel:OptionsPanel
  8. {
  9.     int        lastCoord;
  10.  
  11.     List    *ticsList[3];
  12.     id        coordButton;
  13.     id        typeMatrix;
  14.     id        startField;
  15.     id        incrementField;
  16.     id        endField;
  17.     id        userMatrix;
  18.     id        userScrollView;
  19.     id        userTitleForm;
  20.     id        userValueForm;
  21.     id        addTicButton;
  22.     id        deleteTicButton;
  23.     id        modifyTicButton;
  24.     id        seriesForm;
  25. }
  26.  
  27. - init;
  28.  
  29. - changeCoord:sender;
  30.  
  31. - doSetTicsType:sender;
  32. - doSetTicsSeries:sender;
  33.  
  34. - addTic:sender;
  35. - deleteTics:sender;
  36. - modifyTic:sender;
  37. - selectTic:sender;
  38.  
  39. @end
  40.  
  41.