home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Graphics / Plotting / aa_Intel_Only / Gnuplot / GnuplotSource / UserTicsPane.h < prev    next >
Encoding:
Text File  |  1995-06-12  |  777 b   |  38 lines

  1. /*
  2.  *  Copyright (C) 1993  Robert Davis
  3.  *
  4.  *  This program is free software; you can redistribute it and/or
  5.  *  modify it under the terms of Version 2, or any later version, of 
  6.  *  the GNU General Public License as published by the Free Software 
  7.  *  Foundation.
  8.  */
  9.  
  10.  
  11. /* $Id: UserTicsPane.h,v 1.4 1993/05/04 16:23:13 davis Exp $ */
  12.  
  13. #import "Pane.h"
  14.  
  15. @class DoubleValueSortedList, EditMatrix;
  16.  
  17. @interface UserTicsPane:Pane
  18. {
  19.     DoubleValueSortedList     *ticsList[3];
  20.     EditMatrix    *userMatrix;
  21.     id        userScrollView;
  22.     id        userTitleForm;
  23.     id        userValueForm;
  24.     id        addTicButton;
  25.     id        deleteTicButton;
  26.     id        modifyTicButton;
  27. }
  28.  
  29. - init;
  30. - (BOOL)updateStatus:aStatus doc:aDoc;
  31.  
  32. - addTic:sender;
  33. - deleteTics:sender;
  34. - modifyTic:sender;
  35. - selectTic:sender;
  36.  
  37. @end
  38.