home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Graphics / Plotting / aa_Intel_Only / Gnuplot / GnuplotSource / DataFileThreeDPane.h < prev    next >
Encoding:
Text File  |  1995-06-12  |  817 b   |  43 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: DataFileThreeDPane.h,v 1.3 1993/05/30 09:10:08 davis Exp $ */
  11.  
  12. #import "FunctionPane.h"
  13.  
  14. #define THREED_XCOL    0
  15. #define    THREED_YCOL    1
  16. #define    THREED_ZCOL    2
  17. #define    THREED_ZCOLONLY    3
  18.  
  19. #define Z_ONLY        0
  20.  
  21. @interface DataFileThreeDPane:FunctionPane
  22. {
  23.     id        detailedButton;
  24.     id        infoField;
  25.     id        infoLine2;
  26.     id        zOnlyRadioMatrix;
  27.  
  28.     id        xColField;
  29.     id        yColField;
  30.     id        zColField;
  31.     id        zOnlyColField;
  32. }
  33.  
  34. - init;
  35.  
  36. - setDetailed:sender;
  37. - setColumnsData:sender;
  38. - setZOnly:sender;
  39.  
  40. - (BOOL)updateStatus:aStatus doc:aDoc;
  41.  
  42. @end
  43.