home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Graphics / Plotting / aa_Intel_Only / Gnuplot / GnuplotSource / FunctionPane.h < prev    next >
Encoding:
Text File  |  1995-06-12  |  656 b   |  32 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. /* $Id: FunctionPane.h,v 1.3 1993/05/04 16:21:53 davis Exp $ */
  11.  
  12. #import "Pane.h"
  13.  
  14.  
  15. @interface FunctionPane:Pane
  16. {
  17.     id        styleMatrix;
  18.     id        pointsStyleMatrix;
  19.     id        pointsStyleLabel;
  20.     id        lineStyleMatrix;
  21.     id        lineStyleLabel;
  22. }
  23.  
  24. - init;
  25. - (BOOL)updateStatus:aStatus doc:aDoc;
  26.  
  27. - setFunctionStyle:sender;
  28. - setFunctionPointsStyle:sender;
  29. - setFunctionLineStyle:sender;
  30.  
  31. @end
  32.